apparmor: Update MAINTAINERS file with new email address
[linux-2.6-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 Q:      https://patchwork.kernel.org/project/linux-wireless/list/
194 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless.git
195 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless-next.git
196 F:      Documentation/driver-api/80211/cfg80211.rst
197 F:      Documentation/networking/regulatory.rst
198 F:      include/linux/ieee80211.h
199 F:      include/net/cfg80211.h
200 F:      include/net/ieee80211_radiotap.h
201 F:      include/net/iw_handler.h
202 F:      include/net/wext.h
203 F:      include/uapi/linux/nl80211.h
204 F:      include/uapi/linux/wireless.h
205 F:      net/wireless/
206
207 8169 10/100/1000 GIGABIT ETHERNET DRIVER
208 M:      Heiner Kallweit <hkallweit1@gmail.com>
209 M:      nic_swsd@realtek.com
210 L:      netdev@vger.kernel.org
211 S:      Maintained
212 F:      drivers/net/ethernet/realtek/r8169*
213
214 8250/16?50 (AND CLONE UARTS) SERIAL DRIVER
215 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
216 L:      linux-serial@vger.kernel.org
217 S:      Maintained
218 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
219 F:      drivers/tty/serial/8250*
220 F:      include/linux/serial_8250.h
221
222 8390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.]
223 L:      netdev@vger.kernel.org
224 S:      Orphan / Obsolete
225 F:      drivers/net/ethernet/8390/
226
227 9P FILE SYSTEM
228 M:      Eric Van Hensbergen <ericvh@gmail.com>
229 M:      Latchesar Ionkov <lucho@ionkov.net>
230 M:      Dominique Martinet <asmadeus@codewreck.org>
231 R:      Christian Schoenebeck <linux_oss@crudebyte.com>
232 L:      v9fs-developer@lists.sourceforge.net
233 S:      Maintained
234 W:      http://swik.net/v9fs
235 Q:      http://patchwork.kernel.org/project/v9fs-devel/list/
236 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs.git
237 T:      git git://github.com/martinetd/linux.git
238 F:      Documentation/filesystems/9p.rst
239 F:      fs/9p/
240 F:      include/net/9p/
241 F:      include/trace/events/9p.h
242 F:      include/uapi/linux/virtio_9p.h
243 F:      net/9p/
244
245 A8293 MEDIA DRIVER
246 M:      Antti Palosaari <crope@iki.fi>
247 L:      linux-media@vger.kernel.org
248 S:      Maintained
249 W:      https://linuxtv.org
250 W:      http://palosaari.fi/linux/
251 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
252 T:      git git://linuxtv.org/anttip/media_tree.git
253 F:      drivers/media/dvb-frontends/a8293*
254
255 AACRAID SCSI RAID DRIVER
256 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
257 L:      linux-scsi@vger.kernel.org
258 S:      Supported
259 W:      http://www.adaptec.com/
260 F:      Documentation/scsi/aacraid.rst
261 F:      drivers/scsi/aacraid/
262
263 ABI/API
264 L:      linux-api@vger.kernel.org
265 F:      include/linux/syscalls.h
266 F:      kernel/sys_ni.c
267 X:      include/uapi/
268 X:      arch/*/include/uapi/
269
270 ABIT UGURU 1,2 HARDWARE MONITOR DRIVER
271 M:      Hans de Goede <hdegoede@redhat.com>
272 L:      linux-hwmon@vger.kernel.org
273 S:      Maintained
274 F:      drivers/hwmon/abituguru.c
275
276 ABIT UGURU 3 HARDWARE MONITOR DRIVER
277 M:      Alistair John Strachan <alistair@devzero.co.uk>
278 L:      linux-hwmon@vger.kernel.org
279 S:      Maintained
280 F:      drivers/hwmon/abituguru3.c
281
282 ACCES 104-DIO-48E GPIO DRIVER
283 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
284 L:      linux-gpio@vger.kernel.org
285 S:      Maintained
286 F:      drivers/gpio/gpio-104-dio-48e.c
287
288 ACCES 104-IDI-48 GPIO DRIVER
289 M:      "William Breathitt Gray" <vilhelm.gray@gmail.com>
290 L:      linux-gpio@vger.kernel.org
291 S:      Maintained
292 F:      drivers/gpio/gpio-104-idi-48.c
293
294 ACCES 104-IDIO-16 GPIO DRIVER
295 M:      "William Breathitt Gray" <vilhelm.gray@gmail.com>
296 L:      linux-gpio@vger.kernel.org
297 S:      Maintained
298 F:      drivers/gpio/gpio-104-idio-16.c
299
300 ACCES 104-QUAD-8 DRIVER
301 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
302 M:      Syed Nayyar Waris <syednwaris@gmail.com>
303 L:      linux-iio@vger.kernel.org
304 S:      Maintained
305 F:      drivers/counter/104-quad-8.c
306
307 ACCES PCI-IDIO-16 GPIO DRIVER
308 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
309 L:      linux-gpio@vger.kernel.org
310 S:      Maintained
311 F:      drivers/gpio/gpio-pci-idio-16.c
312
313 ACCES PCIe-IDIO-24 GPIO DRIVER
314 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
315 L:      linux-gpio@vger.kernel.org
316 S:      Maintained
317 F:      drivers/gpio/gpio-pcie-idio-24.c
318
319 ACENIC DRIVER
320 M:      Jes Sorensen <jes@trained-monkey.org>
321 L:      linux-acenic@sunsite.dk
322 S:      Maintained
323 F:      drivers/net/ethernet/alteon/acenic*
324
325 ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER
326 M:      Peter Kaestle <peter@piie.net>
327 L:      platform-driver-x86@vger.kernel.org
328 S:      Maintained
329 W:      http://piie.net/?section=acerhdf
330 F:      drivers/platform/x86/acerhdf.c
331
332 ACER WMI LAPTOP EXTRAS
333 M:      "Lee, Chun-Yi" <jlee@suse.com>
334 L:      platform-driver-x86@vger.kernel.org
335 S:      Maintained
336 F:      drivers/platform/x86/acer-wmi.c
337
338 ACPI
339 M:      "Rafael J. Wysocki" <rafael@kernel.org>
340 R:      Len Brown <lenb@kernel.org>
341 L:      linux-acpi@vger.kernel.org
342 S:      Supported
343 W:      https://01.org/linux-acpi
344 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
345 B:      https://bugzilla.kernel.org
346 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
347 F:      Documentation/ABI/testing/configfs-acpi
348 F:      Documentation/ABI/testing/sysfs-bus-acpi
349 F:      Documentation/firmware-guide/acpi/
350 F:      drivers/acpi/
351 F:      drivers/pci/*/*acpi*
352 F:      drivers/pci/*acpi*
353 F:      drivers/pnp/pnpacpi/
354 F:      include/acpi/
355 F:      include/linux/acpi.h
356 F:      include/linux/fwnode.h
357 F:      tools/power/acpi/
358
359 ACPI APEI
360 M:      "Rafael J. Wysocki" <rafael@kernel.org>
361 R:      Len Brown <lenb@kernel.org>
362 R:      James Morse <james.morse@arm.com>
363 R:      Tony Luck <tony.luck@intel.com>
364 R:      Borislav Petkov <bp@alien8.de>
365 L:      linux-acpi@vger.kernel.org
366 F:      drivers/acpi/apei/
367
368 ACPI COMPONENT ARCHITECTURE (ACPICA)
369 M:      Robert Moore <robert.moore@intel.com>
370 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
371 L:      linux-acpi@vger.kernel.org
372 L:      devel@acpica.org
373 S:      Supported
374 W:      https://acpica.org/
375 W:      https://github.com/acpica/acpica/
376 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
377 B:      https://bugzilla.kernel.org
378 B:      https://bugs.acpica.org
379 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
380 F:      drivers/acpi/acpica/
381 F:      include/acpi/
382 F:      tools/power/acpi/
383
384 ACPI FOR ARM64 (ACPI/arm64)
385 M:      Lorenzo Pieralisi <lpieralisi@kernel.org>
386 M:      Hanjun Guo <guohanjun@huawei.com>
387 M:      Sudeep Holla <sudeep.holla@arm.com>
388 L:      linux-acpi@vger.kernel.org
389 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
390 S:      Maintained
391 F:      drivers/acpi/arm64
392
393 ACPI SERIAL MULTI INSTANTIATE DRIVER
394 M:      Hans de Goede <hdegoede@redhat.com>
395 L:      platform-driver-x86@vger.kernel.org
396 S:      Maintained
397 F:      drivers/platform/x86/serial-multi-instantiate.c
398
399 ACPI PCC(Platform Communication Channel) MAILBOX DRIVER
400 M:      Sudeep Holla <sudeep.holla@arm.com>
401 L:      linux-acpi@vger.kernel.org
402 S:      Supported
403 F:      drivers/mailbox/pcc.c
404
405 ACPI PMIC DRIVERS
406 M:      "Rafael J. Wysocki" <rafael@kernel.org>
407 M:      Len Brown <lenb@kernel.org>
408 R:      Andy Shevchenko <andy@kernel.org>
409 R:      Mika Westerberg <mika.westerberg@linux.intel.com>
410 L:      linux-acpi@vger.kernel.org
411 S:      Supported
412 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
413 B:      https://bugzilla.kernel.org
414 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
415 F:      drivers/acpi/pmic/
416
417 ACPI THERMAL DRIVER
418 M:      Rafael J. Wysocki <rafael@kernel.org>
419 R:      Zhang Rui <rui.zhang@intel.com>
420 L:      linux-acpi@vger.kernel.org
421 S:      Supported
422 W:      https://01.org/linux-acpi
423 B:      https://bugzilla.kernel.org
424 F:      drivers/acpi/*thermal*
425
426 ACPI VIOT DRIVER
427 M:      Jean-Philippe Brucker <jean-philippe@linaro.org>
428 L:      linux-acpi@vger.kernel.org
429 L:      iommu@lists.linux-foundation.org
430 S:      Maintained
431 F:      drivers/acpi/viot.c
432 F:      include/linux/acpi_viot.h
433
434 ACPI WMI DRIVER
435 L:      platform-driver-x86@vger.kernel.org
436 S:      Orphan
437 F:      drivers/platform/x86/wmi.c
438 F:      include/uapi/linux/wmi.h
439
440 ACRN HYPERVISOR SERVICE MODULE
441 M:      Fei Li <fei1.li@intel.com>
442 L:      acrn-dev@lists.projectacrn.org (subscribers-only)
443 S:      Supported
444 W:      https://projectacrn.org
445 F:      Documentation/virt/acrn/
446 F:      drivers/virt/acrn/
447 F:      include/uapi/linux/acrn.h
448
449 AD1889 ALSA SOUND DRIVER
450 L:      linux-parisc@vger.kernel.org
451 S:      Maintained
452 W:      https://parisc.wiki.kernel.org/index.php/AD1889
453 F:      sound/pci/ad1889.*
454
455 AD5110 ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
456 M:      Mugilraj Dhavachelvan <dmugil2000@gmail.com>
457 L:      linux-iio@vger.kernel.org
458 S:      Supported
459 F:      drivers/iio/potentiometer/ad5110.c
460
461 AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
462 M:      Michael Hennerich <michael.hennerich@analog.com>
463 S:      Supported
464 W:      http://wiki.analog.com/AD5254
465 W:      https://ez.analog.com/linux-software-drivers
466 F:      drivers/misc/ad525x_dpot.c
467
468 AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821)
469 M:      Michael Hennerich <michael.hennerich@analog.com>
470 S:      Supported
471 W:      http://wiki.analog.com/AD5398
472 W:      https://ez.analog.com/linux-software-drivers
473 F:      drivers/regulator/ad5398.c
474
475 AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A)
476 M:      Michael Hennerich <michael.hennerich@analog.com>
477 S:      Supported
478 W:      http://wiki.analog.com/AD7142
479 W:      https://ez.analog.com/linux-software-drivers
480 F:      drivers/input/misc/ad714x.c
481
482 AD7877 TOUCHSCREEN DRIVER
483 M:      Michael Hennerich <michael.hennerich@analog.com>
484 S:      Supported
485 W:      http://wiki.analog.com/AD7877
486 W:      https://ez.analog.com/linux-software-drivers
487 F:      drivers/input/touchscreen/ad7877.c
488
489 AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889)
490 M:      Michael Hennerich <michael.hennerich@analog.com>
491 S:      Supported
492 W:      http://wiki.analog.com/AD7879
493 W:      https://ez.analog.com/linux-software-drivers
494 F:      drivers/input/touchscreen/ad7879.c
495
496 ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR)
497 M:      Jiri Kosina <jikos@kernel.org>
498 S:      Maintained
499
500 ADF7242 IEEE 802.15.4 RADIO DRIVER
501 M:      Michael Hennerich <michael.hennerich@analog.com>
502 L:      linux-wpan@vger.kernel.org
503 S:      Supported
504 W:      https://wiki.analog.com/ADF7242
505 W:      https://ez.analog.com/linux-software-drivers
506 F:      Documentation/devicetree/bindings/net/ieee802154/adf7242.txt
507 F:      drivers/net/ieee802154/adf7242.c
508
509 ADM1025 HARDWARE MONITOR DRIVER
510 M:      Jean Delvare <jdelvare@suse.com>
511 L:      linux-hwmon@vger.kernel.org
512 S:      Maintained
513 F:      Documentation/hwmon/adm1025.rst
514 F:      drivers/hwmon/adm1025.c
515
516 ADM1029 HARDWARE MONITOR DRIVER
517 M:      Corentin Labbe <clabbe.montjoie@gmail.com>
518 L:      linux-hwmon@vger.kernel.org
519 S:      Maintained
520 F:      drivers/hwmon/adm1029.c
521
522 ADM8211 WIRELESS DRIVER
523 L:      linux-wireless@vger.kernel.org
524 S:      Orphan
525 W:      https://wireless.wiki.kernel.org/
526 F:      drivers/net/wireless/admtek/adm8211.*
527
528 ADP1653 FLASH CONTROLLER DRIVER
529 M:      Sakari Ailus <sakari.ailus@iki.fi>
530 L:      linux-media@vger.kernel.org
531 S:      Maintained
532 F:      drivers/media/i2c/adp1653.c
533 F:      include/media/i2c/adp1653.h
534
535 ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501)
536 M:      Michael Hennerich <michael.hennerich@analog.com>
537 S:      Supported
538 W:      http://wiki.analog.com/ADP5520
539 W:      https://ez.analog.com/linux-software-drivers
540 F:      drivers/gpio/gpio-adp5520.c
541 F:      drivers/input/keyboard/adp5520-keys.c
542 F:      drivers/leds/leds-adp5520.c
543 F:      drivers/mfd/adp5520.c
544 F:      drivers/video/backlight/adp5520_bl.c
545
546 ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587)
547 M:      Michael Hennerich <michael.hennerich@analog.com>
548 S:      Supported
549 W:      http://wiki.analog.com/ADP5588
550 W:      https://ez.analog.com/linux-software-drivers
551 F:      drivers/gpio/gpio-adp5588.c
552 F:      drivers/input/keyboard/adp5588-keys.c
553
554 ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863)
555 M:      Michael Hennerich <michael.hennerich@analog.com>
556 S:      Supported
557 W:      http://wiki.analog.com/ADP8860
558 W:      https://ez.analog.com/linux-software-drivers
559 F:      drivers/video/backlight/adp8860_bl.c
560
561 ADT746X FAN DRIVER
562 M:      Colin Leroy <colin@colino.net>
563 S:      Maintained
564 F:      drivers/macintosh/therm_adt746x.c
565
566 ADT7475 HARDWARE MONITOR DRIVER
567 M:      Jean Delvare <jdelvare@suse.com>
568 L:      linux-hwmon@vger.kernel.org
569 S:      Maintained
570 F:      Documentation/hwmon/adt7475.rst
571 F:      drivers/hwmon/adt7475.c
572
573 ADVANSYS SCSI DRIVER
574 M:      Matthew Wilcox <willy@infradead.org>
575 M:      Hannes Reinecke <hare@suse.com>
576 L:      linux-scsi@vger.kernel.org
577 S:      Maintained
578 F:      Documentation/scsi/advansys.rst
579 F:      drivers/scsi/advansys.c
580
581 ADVANTECH SWBTN DRIVER
582 M:      Andrea Ho <Andrea.Ho@advantech.com.tw>
583 L:      platform-driver-x86@vger.kernel.org
584 S:      Maintained
585 F:      drivers/platform/x86/adv_swbutton.c
586
587 ADXL313 THREE-AXIS DIGITAL ACCELEROMETER DRIVER
588 M:      Lucas Stankus <lucas.p.stankus@gmail.com>
589 S:      Supported
590 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl313.yaml
591 F:      drivers/iio/accel/adxl313*
592
593 ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346)
594 M:      Michael Hennerich <michael.hennerich@analog.com>
595 S:      Supported
596 W:      http://wiki.analog.com/ADXL345
597 W:      https://ez.analog.com/linux-software-drivers
598 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl345.yaml
599 F:      drivers/input/misc/adxl34x.c
600
601 ADXL355 THREE-AXIS DIGITAL ACCELEROMETER DRIVER
602 M:      Puranjay Mohan <puranjay12@gmail.com>
603 L:      linux-iio@vger.kernel.org
604 S:      Supported
605 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl355.yaml
606 F:      drivers/iio/accel/adxl355.h
607 F:      drivers/iio/accel/adxl355_core.c
608 F:      drivers/iio/accel/adxl355_i2c.c
609 F:      drivers/iio/accel/adxl355_spi.c
610
611 ADXL367 THREE-AXIS DIGITAL ACCELEROMETER DRIVER
612 M:      Cosmin Tanislav <cosmin.tanislav@analog.com>
613 L:      linux-iio@vger.kernel.org
614 S:      Supported
615 W:      http://ez.analog.com/community/linux-device-drivers
616 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl367.yaml
617 F:      drivers/iio/accel/adxl367*
618
619 ADXL372 THREE-AXIS DIGITAL ACCELEROMETER DRIVER
620 M:      Michael Hennerich <michael.hennerich@analog.com>
621 S:      Supported
622 W:      https://ez.analog.com/linux-software-drivers
623 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl372.yaml
624 F:      drivers/iio/accel/adxl372.c
625 F:      drivers/iio/accel/adxl372_i2c.c
626 F:      drivers/iio/accel/adxl372_spi.c
627
628 AF9013 MEDIA DRIVER
629 M:      Antti Palosaari <crope@iki.fi>
630 L:      linux-media@vger.kernel.org
631 S:      Maintained
632 W:      https://linuxtv.org
633 W:      http://palosaari.fi/linux/
634 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
635 T:      git git://linuxtv.org/anttip/media_tree.git
636 F:      drivers/media/dvb-frontends/af9013*
637
638 AF9033 MEDIA DRIVER
639 M:      Antti Palosaari <crope@iki.fi>
640 L:      linux-media@vger.kernel.org
641 S:      Maintained
642 W:      https://linuxtv.org
643 W:      http://palosaari.fi/linux/
644 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
645 T:      git git://linuxtv.org/anttip/media_tree.git
646 F:      drivers/media/dvb-frontends/af9033*
647
648 AFFS FILE SYSTEM
649 M:      David Sterba <dsterba@suse.com>
650 L:      linux-fsdevel@vger.kernel.org
651 S:      Odd Fixes
652 F:      Documentation/filesystems/affs.rst
653 F:      fs/affs/
654
655 AFS FILESYSTEM
656 M:      David Howells <dhowells@redhat.com>
657 M:      Marc Dionne <marc.dionne@auristor.com>
658 L:      linux-afs@lists.infradead.org
659 S:      Supported
660 W:      https://www.infradead.org/~dhowells/kafs/
661 F:      Documentation/filesystems/afs.rst
662 F:      fs/afs/
663 F:      include/trace/events/afs.h
664
665 AGPGART DRIVER
666 M:      David Airlie <airlied@linux.ie>
667 S:      Maintained
668 T:      git git://anongit.freedesktop.org/drm/drm
669 F:      drivers/char/agp/
670 F:      include/linux/agp*
671 F:      include/uapi/linux/agp*
672
673 AHA152X SCSI DRIVER
674 M:      "Juergen E. Fischer" <fischer@norbit.de>
675 L:      linux-scsi@vger.kernel.org
676 S:      Maintained
677 F:      drivers/scsi/aha152x*
678 F:      drivers/scsi/pcmcia/aha152x*
679
680 AIC7XXX / AIC79XX SCSI DRIVER
681 M:      Hannes Reinecke <hare@suse.com>
682 L:      linux-scsi@vger.kernel.org
683 S:      Maintained
684 F:      drivers/scsi/aic7xxx/
685
686 AIMSLAB FM RADIO RECEIVER DRIVER
687 M:      Hans Verkuil <hverkuil@xs4all.nl>
688 L:      linux-media@vger.kernel.org
689 S:      Maintained
690 W:      https://linuxtv.org
691 T:      git git://linuxtv.org/media_tree.git
692 F:      drivers/media/radio/radio-aimslab*
693
694 AIO
695 M:      Benjamin LaHaise <bcrl@kvack.org>
696 L:      linux-aio@kvack.org
697 S:      Supported
698 F:      fs/aio.c
699 F:      include/linux/*aio*.h
700
701 AIRSPY MEDIA DRIVER
702 M:      Antti Palosaari <crope@iki.fi>
703 L:      linux-media@vger.kernel.org
704 S:      Maintained
705 W:      https://linuxtv.org
706 W:      http://palosaari.fi/linux/
707 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
708 T:      git git://linuxtv.org/anttip/media_tree.git
709 F:      drivers/media/usb/airspy/
710
711 ALACRITECH GIGABIT ETHERNET DRIVER
712 M:      Lino Sanfilippo <LinoSanfilippo@gmx.de>
713 S:      Maintained
714 F:      drivers/net/ethernet/alacritech/*
715
716 ALCATEL SPEEDTOUCH USB DRIVER
717 M:      Duncan Sands <duncan.sands@free.fr>
718 L:      linux-usb@vger.kernel.org
719 S:      Maintained
720 W:      http://www.linux-usb.org/SpeedTouch/
721 F:      drivers/usb/atm/speedtch.c
722 F:      drivers/usb/atm/usbatm.c
723
724 ALCHEMY AU1XX0 MMC DRIVER
725 M:      Manuel Lauss <manuel.lauss@gmail.com>
726 S:      Maintained
727 F:      drivers/mmc/host/au1xmmc.c
728
729 ALI1563 I2C DRIVER
730 M:      Rudolf Marek <r.marek@assembler.cz>
731 L:      linux-i2c@vger.kernel.org
732 S:      Maintained
733 F:      Documentation/i2c/busses/i2c-ali1563.rst
734 F:      drivers/i2c/busses/i2c-ali1563.c
735
736 ALIENWARE WMI DRIVER
737 L:      Dell.Client.Kernel@dell.com
738 S:      Maintained
739 F:      drivers/platform/x86/dell/alienware-wmi.c
740
741 ALL SENSORS DLH SERIES PRESSURE SENSORS DRIVER
742 M:      Tomislav Denis <tomislav.denis@avl.com>
743 L:      linux-iio@vger.kernel.org
744 S:      Maintained
745 W:      http://www.allsensors.com/
746 F:      Documentation/devicetree/bindings/iio/pressure/asc,dlhl60d.yaml
747 F:      drivers/iio/pressure/dlhl60d.c
748
749 ALLEGRO DVT VIDEO IP CORE DRIVER
750 M:      Michael Tretter <m.tretter@pengutronix.de>
751 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
752 L:      linux-media@vger.kernel.org
753 S:      Maintained
754 F:      Documentation/devicetree/bindings/media/allegro,al5e.yaml
755 F:      drivers/media/platform/allegro-dvt/
756
757 ALLWINNER A10 CSI DRIVER
758 M:      Maxime Ripard <mripard@kernel.org>
759 L:      linux-media@vger.kernel.org
760 S:      Maintained
761 T:      git git://linuxtv.org/media_tree.git
762 F:      Documentation/devicetree/bindings/media/allwinner,sun4i-a10-csi.yaml
763 F:      drivers/media/platform/sunxi/sun4i-csi/
764
765 ALLWINNER CPUFREQ DRIVER
766 M:      Yangtao Li <tiny.windzz@gmail.com>
767 L:      linux-pm@vger.kernel.org
768 S:      Maintained
769 F:      Documentation/devicetree/bindings/opp/allwinner,sun50i-h6-operating-points.yaml
770 F:      drivers/cpufreq/sun50i-cpufreq-nvmem.c
771
772 ALLWINNER CRYPTO DRIVERS
773 M:      Corentin Labbe <clabbe.montjoie@gmail.com>
774 L:      linux-crypto@vger.kernel.org
775 S:      Maintained
776 F:      drivers/crypto/allwinner/
777
778 ALLWINNER HARDWARE SPINLOCK SUPPORT
779 M:      Wilken Gottwalt <wilken.gottwalt@posteo.net>
780 S:      Maintained
781 F:      Documentation/devicetree/bindings/hwlock/allwinner,sun6i-a31-hwspinlock.yaml
782 F:      drivers/hwspinlock/sun6i_hwspinlock.c
783
784 ALLWINNER THERMAL DRIVER
785 M:      Vasily Khoruzhick <anarsoul@gmail.com>
786 M:      Yangtao Li <tiny.windzz@gmail.com>
787 L:      linux-pm@vger.kernel.org
788 S:      Maintained
789 F:      Documentation/devicetree/bindings/thermal/allwinner,sun8i-a83t-ths.yaml
790 F:      drivers/thermal/sun8i_thermal.c
791
792 ALLWINNER VPU DRIVER
793 M:      Maxime Ripard <mripard@kernel.org>
794 M:      Paul Kocialkowski <paul.kocialkowski@bootlin.com>
795 L:      linux-media@vger.kernel.org
796 S:      Maintained
797 F:      drivers/staging/media/sunxi/cedrus/
798
799 ALPHA PORT
800 M:      Richard Henderson <rth@twiddle.net>
801 M:      Ivan Kokshaysky <ink@jurassic.park.msu.ru>
802 M:      Matt Turner <mattst88@gmail.com>
803 L:      linux-alpha@vger.kernel.org
804 S:      Odd Fixes
805 F:      arch/alpha/
806
807 ALPS PS/2 TOUCHPAD DRIVER
808 R:      Pali Rohár <pali@kernel.org>
809 F:      drivers/input/mouse/alps.*
810
811 ALTERA I2C CONTROLLER DRIVER
812 M:      Thor Thayer <thor.thayer@linux.intel.com>
813 S:      Maintained
814 F:      Documentation/devicetree/bindings/i2c/i2c-altera.txt
815 F:      drivers/i2c/busses/i2c-altera.c
816
817 ALTERA MAILBOX DRIVER
818 M:      Mun Yew Tham <mun.yew.tham@intel.com>
819 S:      Maintained
820 F:      drivers/mailbox/mailbox-altera.c
821
822 ALTERA MSGDMA IP CORE DRIVER
823 M:      Olivier Dautricourt <olivierdautricourt@gmail.com>
824 R:      Stefan Roese <sr@denx.de>
825 L:      dmaengine@vger.kernel.org
826 S:      Odd Fixes
827 F:      Documentation/devicetree/bindings/dma/altr,msgdma.yaml
828 F:      drivers/dma/altera-msgdma.c
829
830 ALTERA PIO DRIVER
831 M:      Mun Yew Tham <mun.yew.tham@intel.com>
832 L:      linux-gpio@vger.kernel.org
833 S:      Maintained
834 F:      drivers/gpio/gpio-altera.c
835
836 ALTERA SYSTEM MANAGER DRIVER
837 M:      Thor Thayer <thor.thayer@linux.intel.com>
838 S:      Maintained
839 F:      drivers/mfd/altera-sysmgr.c
840 F:      include/linux/mfd/altera-sysmgr.h
841
842 ALTERA SYSTEM RESOURCE DRIVER FOR ARRIA10 DEVKIT
843 M:      Thor Thayer <thor.thayer@linux.intel.com>
844 S:      Maintained
845 F:      drivers/gpio/gpio-altera-a10sr.c
846 F:      drivers/mfd/altera-a10sr.c
847 F:      drivers/reset/reset-a10sr.c
848 F:      include/dt-bindings/reset/altr,rst-mgr-a10sr.h
849 F:      include/linux/mfd/altera-a10sr.h
850
851 ALTERA TRIPLE SPEED ETHERNET DRIVER
852 M:      Joyce Ooi <joyce.ooi@intel.com>
853 L:      netdev@vger.kernel.org
854 S:      Maintained
855 F:      drivers/net/ethernet/altera/
856
857 ALTERA UART/JTAG UART SERIAL DRIVERS
858 M:      Tobias Klauser <tklauser@distanz.ch>
859 L:      linux-serial@vger.kernel.org
860 S:      Maintained
861 F:      drivers/tty/serial/altera_jtaguart.c
862 F:      drivers/tty/serial/altera_uart.c
863 F:      include/linux/altera_jtaguart.h
864 F:      include/linux/altera_uart.h
865
866 AMAZON ANNAPURNA LABS FIC DRIVER
867 M:      Talel Shenhar <talel@amazon.com>
868 S:      Maintained
869 F:      Documentation/devicetree/bindings/interrupt-controller/amazon,al-fic.txt
870 F:      drivers/irqchip/irq-al-fic.c
871
872 AMAZON ANNAPURNA LABS MEMORY CONTROLLER EDAC
873 M:      Talel Shenhar <talel@amazon.com>
874 M:      Talel Shenhar <talelshenhar@gmail.com>
875 S:      Maintained
876 F:      Documentation/devicetree/bindings/edac/amazon,al-mc-edac.yaml
877 F:      drivers/edac/al_mc_edac.c
878
879 AMAZON ANNAPURNA LABS THERMAL MMIO DRIVER
880 M:      Talel Shenhar <talel@amazon.com>
881 S:      Maintained
882 F:      Documentation/devicetree/bindings/thermal/amazon,al-thermal.txt
883 F:      drivers/thermal/thermal_mmio.c
884
885 AMAZON ETHERNET DRIVERS
886 M:      Shay Agroskin <shayagr@amazon.com>
887 M:      Arthur Kiyanovski <akiyano@amazon.com>
888 R:      David Arinzon <darinzon@amazon.com>
889 R:      Noam Dagan <ndagan@amazon.com>
890 R:      Saeed Bishara <saeedb@amazon.com>
891 L:      netdev@vger.kernel.org
892 S:      Supported
893 F:      Documentation/networking/device_drivers/ethernet/amazon/ena.rst
894 F:      drivers/net/ethernet/amazon/
895
896 AMAZON RDMA EFA DRIVER
897 M:      Gal Pressman <galpress@amazon.com>
898 R:      Yossi Leybovich <sleybo@amazon.com>
899 L:      linux-rdma@vger.kernel.org
900 S:      Supported
901 Q:      https://patchwork.kernel.org/project/linux-rdma/list/
902 F:      drivers/infiniband/hw/efa/
903 F:      include/uapi/rdma/efa-abi.h
904
905 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER
906 M:      Tom Lendacky <thomas.lendacky@amd.com>
907 M:      John Allen <john.allen@amd.com>
908 L:      linux-crypto@vger.kernel.org
909 S:      Supported
910 F:      drivers/crypto/ccp/
911 F:      include/linux/ccp.h
912
913 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER - SEV SUPPORT
914 M:      Brijesh Singh <brijesh.singh@amd.com>
915 M:      Tom Lendacky <thomas.lendacky@amd.com>
916 L:      linux-crypto@vger.kernel.org
917 S:      Supported
918 F:      drivers/crypto/ccp/sev*
919 F:      include/uapi/linux/psp-sev.h
920
921 AMD DISPLAY CORE
922 M:      Harry Wentland <harry.wentland@amd.com>
923 M:      Leo Li <sunpeng.li@amd.com>
924 M:      Rodrigo Siqueira <Rodrigo.Siqueira@amd.com>
925 L:      amd-gfx@lists.freedesktop.org
926 S:      Supported
927 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
928 F:      drivers/gpu/drm/amd/display/
929
930 AMD FAM15H PROCESSOR POWER MONITORING DRIVER
931 M:      Huang Rui <ray.huang@amd.com>
932 L:      linux-hwmon@vger.kernel.org
933 S:      Supported
934 F:      Documentation/hwmon/fam15h_power.rst
935 F:      drivers/hwmon/fam15h_power.c
936
937 AMD FCH GPIO DRIVER
938 M:      Enrico Weigelt, metux IT consult <info@metux.net>
939 L:      linux-gpio@vger.kernel.org
940 S:      Maintained
941 F:      drivers/gpio/gpio-amd-fch.c
942 F:      include/linux/platform_data/gpio/gpio-amd-fch.h
943
944 AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
945 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
946 S:      Orphan
947 F:      drivers/usb/gadget/udc/amd5536udc.*
948
949 AMD GEODE PROCESSOR/CHIPSET SUPPORT
950 M:      Andres Salomon <dilinger@queued.net>
951 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
952 S:      Supported
953 W:      http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
954 F:      arch/x86/include/asm/geode.h
955 F:      drivers/char/hw_random/geode-rng.c
956 F:      drivers/crypto/geode*
957 F:      drivers/video/fbdev/geode/
958
959 AMD IOMMU (AMD-VI)
960 M:      Joerg Roedel <joro@8bytes.org>
961 R:      Suravee Suthikulpanit <suravee.suthikulpanit@amd.com>
962 L:      iommu@lists.linux-foundation.org
963 S:      Maintained
964 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
965 F:      drivers/iommu/amd/
966 F:      include/linux/amd-iommu.h
967
968 AMD KFD
969 M:      Felix Kuehling <Felix.Kuehling@amd.com>
970 L:      amd-gfx@lists.freedesktop.org
971 S:      Supported
972 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
973 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd*.[ch]
974 F:      drivers/gpu/drm/amd/amdkfd/
975 F:      drivers/gpu/drm/amd/include/cik_structs.h
976 F:      drivers/gpu/drm/amd/include/kgd_kfd_interface.h
977 F:      drivers/gpu/drm/amd/include/v9_structs.h
978 F:      drivers/gpu/drm/amd/include/vi_structs.h
979 F:      include/uapi/linux/kfd_ioctl.h
980 F:      include/uapi/linux/kfd_sysfs.h
981
982 AMD SPI DRIVER
983 M:      Sanjay R Mehta <sanju.mehta@amd.com>
984 S:      Maintained
985 F:      drivers/spi/spi-amd.c
986
987 AMD MP2 I2C DRIVER
988 M:      Elie Morisse <syniurge@gmail.com>
989 M:      Nehal Shah <nehal-bakulchandra.shah@amd.com>
990 M:      Shyam Sundar S K <shyam-sundar.s-k@amd.com>
991 L:      linux-i2c@vger.kernel.org
992 S:      Maintained
993 F:      drivers/i2c/busses/i2c-amd-mp2*
994
995 AMD PMC DRIVER
996 M:      Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
997 L:      platform-driver-x86@vger.kernel.org
998 S:      Maintained
999 F:      drivers/platform/x86/amd-pmc.*
1000
1001 AMD HSMP DRIVER
1002 M:      Naveen Krishna Chatradhi <naveenkrishna.chatradhi@amd.com>
1003 R:      Carlos Bilbao <carlos.bilbao@amd.com>
1004 L:      platform-driver-x86@vger.kernel.org
1005 S:      Maintained
1006 F:      Documentation/x86/amd_hsmp.rst
1007 F:      arch/x86/include/asm/amd_hsmp.h
1008 F:      arch/x86/include/uapi/asm/amd_hsmp.h
1009 F:      drivers/platform/x86/amd_hsmp.c
1010
1011 AMD POWERPLAY AND SWSMU
1012 M:      Evan Quan <evan.quan@amd.com>
1013 L:      amd-gfx@lists.freedesktop.org
1014 S:      Supported
1015 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
1016 F:      drivers/gpu/drm/amd/pm/
1017
1018 AMD PSTATE DRIVER
1019 M:      Huang Rui <ray.huang@amd.com>
1020 L:      linux-pm@vger.kernel.org
1021 S:      Supported
1022 F:      Documentation/admin-guide/pm/amd-pstate.rst
1023 F:      drivers/cpufreq/amd-pstate*
1024 F:      tools/power/x86/amd_pstate_tracer/amd_pstate_trace.py
1025
1026 AMD PTDMA DRIVER
1027 M:      Sanjay R Mehta <sanju.mehta@amd.com>
1028 L:      dmaengine@vger.kernel.org
1029 S:      Maintained
1030 F:      drivers/dma/ptdma/
1031
1032 AMD SEATTLE DEVICE TREE SUPPORT
1033 M:      Brijesh Singh <brijeshkumar.singh@amd.com>
1034 M:      Suravee Suthikulpanit <suravee.suthikulpanit@amd.com>
1035 M:      Tom Lendacky <thomas.lendacky@amd.com>
1036 S:      Supported
1037 F:      arch/arm64/boot/dts/amd/
1038
1039 AMD XGBE DRIVER
1040 M:      Tom Lendacky <thomas.lendacky@amd.com>
1041 L:      netdev@vger.kernel.org
1042 S:      Supported
1043 F:      arch/arm64/boot/dts/amd/amd-seattle-xgbe*.dtsi
1044 F:      drivers/net/ethernet/amd/xgbe/
1045
1046 AMD SENSOR FUSION HUB DRIVER
1047 M:      Basavaraj Natikar <basavaraj.natikar@amd.com>
1048 L:      linux-input@vger.kernel.org
1049 S:      Maintained
1050 F:      Documentation/hid/amd-sfh*
1051 F:      drivers/hid/amd-sfh-hid/
1052
1053 AMPHION VPU CODEC V4L2 DRIVER
1054 M:      Ming Qian <ming.qian@nxp.com>
1055 M:      Shijie Qin <shijie.qin@nxp.com>
1056 M:      Zhou Peng <eagle.zhou@nxp.com>
1057 L:      linux-media@vger.kernel.org
1058 S:      Maintained
1059 F:      Documentation/devicetree/bindings/media/amphion,vpu.yaml
1060 F:      drivers/media/platform/amphion/
1061
1062 AMS AS73211 DRIVER
1063 M:      Christian Eggers <ceggers@arri.de>
1064 L:      linux-iio@vger.kernel.org
1065 S:      Maintained
1066 F:      Documentation/devicetree/bindings/iio/light/ams,as73211.yaml
1067 F:      drivers/iio/light/as73211.c
1068
1069 AMT (Automatic Multicast Tunneling)
1070 M:      Taehee Yoo <ap420073@gmail.com>
1071 L:      netdev@vger.kernel.org
1072 S:      Maintained
1073 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
1074 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
1075 F:      drivers/net/amt.c
1076
1077 ANALOG DEVICES INC AD7192 DRIVER
1078 M:      Alexandru Tachici <alexandru.tachici@analog.com>
1079 L:      linux-iio@vger.kernel.org
1080 S:      Supported
1081 W:      https://ez.analog.com/linux-software-drivers
1082 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7192.yaml
1083 F:      drivers/iio/adc/ad7192.c
1084
1085 ANALOG DEVICES INC AD7292 DRIVER
1086 M:      Marcelo Schmitt <marcelo.schmitt1@gmail.com>
1087 L:      linux-iio@vger.kernel.org
1088 S:      Supported
1089 W:      https://ez.analog.com/linux-software-drivers
1090 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7292.yaml
1091 F:      drivers/iio/adc/ad7292.c
1092
1093 ANALOG DEVICES INC AD3552R DRIVER
1094 M:      Nuno Sá <nuno.sa@analog.com>
1095 L:      linux-iio@vger.kernel.org
1096 S:      Supported
1097 W:      https://ez.analog.com/linux-software-drivers
1098 F:      Documentation/devicetree/bindings/iio/dac/adi,ad3552r.yaml
1099 F:      drivers/iio/dac/ad3552r.c
1100
1101 ANALOG DEVICES INC AD7293 DRIVER
1102 M:      Antoniu Miclaus <antoniu.miclaus@analog.com>
1103 L:      linux-iio@vger.kernel.org
1104 S:      Supported
1105 W:      https://ez.analog.com/linux-software-drivers
1106 F:      Documentation/devicetree/bindings/iio/dac/adi,ad7293.yaml
1107 F:      drivers/iio/dac/ad7293.c
1108
1109 ANALOG DEVICES INC AD7768-1 DRIVER
1110 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1111 L:      linux-iio@vger.kernel.org
1112 S:      Supported
1113 W:      https://ez.analog.com/linux-software-drivers
1114 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7768-1.yaml
1115 F:      drivers/iio/adc/ad7768-1.c
1116
1117 ANALOG DEVICES INC AD7780 DRIVER
1118 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1119 M:      Renato Lui Geh <renatogeh@gmail.com>
1120 L:      linux-iio@vger.kernel.org
1121 S:      Supported
1122 W:      https://ez.analog.com/linux-software-drivers
1123 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7780.yaml
1124 F:      drivers/iio/adc/ad7780.c
1125
1126 ANALOG DEVICES INC AD74413R DRIVER
1127 M:      Cosmin Tanislav <cosmin.tanislav@analog.com>
1128 L:      linux-iio@vger.kernel.org
1129 S:      Supported
1130 W:      http://ez.analog.com/community/linux-device-drivers
1131 F:      Documentation/devicetree/bindings/iio/addac/adi,ad74413r.yaml
1132 F:      drivers/iio/addac/ad74413r.c
1133 F:      include/dt-bindings/iio/addac/adi,ad74413r.h
1134
1135 ANALOG DEVICES INC AD9389B DRIVER
1136 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1137 L:      linux-media@vger.kernel.org
1138 S:      Maintained
1139 F:      drivers/media/i2c/ad9389b*
1140
1141 ANALOG DEVICES INC ADA4250 DRIVER
1142 M:      Antoniu Miclaus <antoniu.miclaus@analog.com>
1143 L:      linux-iio@vger.kernel.org
1144 S:      Supported
1145 W:      https://ez.analog.com/linux-software-drivers
1146 F:      Documentation/devicetree/bindings/iio/amplifiers/adi,ada4250.yaml
1147 F:      drivers/iio/amplifiers/ada4250.c
1148
1149 ANALOG DEVICES INC ADGS1408 DRIVER
1150 M:      Mircea Caprioru <mircea.caprioru@analog.com>
1151 S:      Supported
1152 F:      Documentation/devicetree/bindings/mux/adi,adgs1408.txt
1153 F:      drivers/mux/adgs1408.c
1154
1155 ANALOG DEVICES INC ADIN DRIVER
1156 M:      Michael Hennerich <michael.hennerich@analog.com>
1157 L:      netdev@vger.kernel.org
1158 S:      Supported
1159 W:      https://ez.analog.com/linux-software-drivers
1160 F:      Documentation/devicetree/bindings/net/adi,adin.yaml
1161 F:      drivers/net/phy/adin.c
1162
1163 ANALOG DEVICES INC ADIS DRIVER LIBRARY
1164 M:      Nuno Sa <nuno.sa@analog.com>
1165 L:      linux-iio@vger.kernel.org
1166 S:      Supported
1167 F:      drivers/iio/imu/adis.c
1168 F:      drivers/iio/imu/adis_buffer.c
1169 F:      drivers/iio/imu/adis_trigger.c
1170 F:      include/linux/iio/imu/adis.h
1171
1172 ANALOG DEVICES INC ADIS16460 DRIVER
1173 M:      Dragos Bogdan <dragos.bogdan@analog.com>
1174 L:      linux-iio@vger.kernel.org
1175 S:      Supported
1176 W:      https://ez.analog.com/linux-software-drivers
1177 F:      Documentation/devicetree/bindings/iio/imu/adi,adis16460.yaml
1178 F:      drivers/iio/imu/adis16460.c
1179
1180 ANALOG DEVICES INC ADIS16475 DRIVER
1181 M:      Nuno Sa <nuno.sa@analog.com>
1182 L:      linux-iio@vger.kernel.org
1183 W:      https://ez.analog.com/linux-software-drivers
1184 S:      Supported
1185 F:      drivers/iio/imu/adis16475.c
1186 F:      Documentation/devicetree/bindings/iio/imu/adi,adis16475.yaml
1187
1188 ANALOG DEVICES INC ADM1177 DRIVER
1189 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1190 L:      linux-hwmon@vger.kernel.org
1191 S:      Supported
1192 W:      https://ez.analog.com/linux-software-drivers
1193 F:      Documentation/devicetree/bindings/hwmon/adi,adm1177.yaml
1194 F:      drivers/hwmon/adm1177.c
1195
1196 ANALOG DEVICES INC ADMV1013 DRIVER
1197 M:      Antoniu Miclaus <antoniu.miclaus@analog.com>
1198 L:      linux-iio@vger.kernel.org
1199 S:      Supported
1200 W:      https://ez.analog.com/linux-software-drivers
1201 F:      Documentation/devicetree/bindings/iio/frequency/adi,admv1013.yaml
1202 F:      drivers/iio/frequency/admv1013.c
1203
1204 ANALOG DEVICES INC ADMV8818 DRIVER
1205 M:      Antoniu Miclaus <antoniu.miclaus@analog.com>
1206 L:      linux-iio@vger.kernel.org
1207 S:      Supported
1208 W:      https://ez.analog.com/linux-software-drivers
1209 F:      Documentation/devicetree/bindings/iio/filter/adi,admv8818.yaml
1210 F:      drivers/iio/filter/admv8818.c
1211
1212 ANALOG DEVICES INC ADMV1014 DRIVER
1213 M:      Antoniu Miclaus <antoniu.miclaus@analog.com>
1214 L:      linux-iio@vger.kernel.org
1215 S:      Supported
1216 W:      https://ez.analog.com/linux-software-drivers
1217 F:      Documentation/devicetree/bindings/iio/frequency/adi,admv1014.yaml
1218 F:      drivers/iio/frequency/admv1014.c
1219
1220 ANALOG DEVICES INC ADP5061 DRIVER
1221 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1222 L:      linux-pm@vger.kernel.org
1223 S:      Supported
1224 W:      https://ez.analog.com/linux-software-drivers
1225 F:      drivers/power/supply/adp5061.c
1226
1227 ANALOG DEVICES INC ADRF6780 DRIVER
1228 M:      Antoniu Miclaus <antoniu.miclaus@analog.com>
1229 L:      linux-iio@vger.kernel.org
1230 S:      Supported
1231 W:      https://ez.analog.com/linux-software-drivers
1232 F:      Documentation/devicetree/bindings/iio/frequency/adi,adrf6780.yaml
1233 F:      drivers/iio/frequency/adrf6780.c
1234
1235 ANALOG DEVICES INC ADV7180 DRIVER
1236 M:      Lars-Peter Clausen <lars@metafoo.de>
1237 L:      linux-media@vger.kernel.org
1238 S:      Supported
1239 W:      https://ez.analog.com/linux-software-drivers
1240 F:      drivers/media/i2c/adv7180.c
1241 F:      Documentation/devicetree/bindings/media/i2c/adv7180.yaml
1242
1243 ANALOG DEVICES INC ADV748X DRIVER
1244 M:      Kieran Bingham <kieran.bingham@ideasonboard.com>
1245 L:      linux-media@vger.kernel.org
1246 S:      Maintained
1247 F:      Documentation/devicetree/bindings/media/i2c/adv748x.yaml
1248 F:      drivers/media/i2c/adv748x/*
1249
1250 ANALOG DEVICES INC ADV7511 DRIVER
1251 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1252 L:      linux-media@vger.kernel.org
1253 S:      Maintained
1254 F:      drivers/media/i2c/adv7511*
1255
1256 ANALOG DEVICES INC ADV7604 DRIVER
1257 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1258 L:      linux-media@vger.kernel.org
1259 S:      Maintained
1260 F:      drivers/media/i2c/adv7604*
1261 F:      Documentation/devicetree/bindings/media/i2c/adv7604.yaml
1262
1263 ANALOG DEVICES INC ADV7842 DRIVER
1264 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1265 L:      linux-media@vger.kernel.org
1266 S:      Maintained
1267 F:      drivers/media/i2c/adv7842*
1268
1269 ANALOG DEVICES INC ADXRS290 DRIVER
1270 M:      Nishant Malpani <nish.malpani25@gmail.com>
1271 L:      linux-iio@vger.kernel.org
1272 S:      Supported
1273 F:      drivers/iio/gyro/adxrs290.c
1274 F:      Documentation/devicetree/bindings/iio/gyroscope/adi,adxrs290.yaml
1275
1276 ANALOG DEVICES INC ASOC CODEC DRIVERS
1277 M:      Lars-Peter Clausen <lars@metafoo.de>
1278 M:      Nuno Sá <nuno.sa@analog.com>
1279 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1280 S:      Supported
1281 W:      http://wiki.analog.com/
1282 W:      https://ez.analog.com/linux-software-drivers
1283 F:      sound/soc/codecs/ad1*
1284 F:      sound/soc/codecs/ad7*
1285 F:      sound/soc/codecs/adau*
1286 F:      sound/soc/codecs/adav*
1287 F:      sound/soc/codecs/sigmadsp.*
1288 F:      sound/soc/codecs/ssm*
1289
1290 ANALOG DEVICES INC DMA DRIVERS
1291 M:      Lars-Peter Clausen <lars@metafoo.de>
1292 S:      Supported
1293 W:      https://ez.analog.com/linux-software-drivers
1294 F:      drivers/dma/dma-axi-dmac.c
1295
1296 ANALOG DEVICES INC IIO DRIVERS
1297 M:      Lars-Peter Clausen <lars@metafoo.de>
1298 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1299 S:      Supported
1300 W:      http://wiki.analog.com/
1301 W:      https://ez.analog.com/linux-software-drivers
1302 F:      Documentation/ABI/testing/sysfs-bus-iio-frequency-ad9523
1303 F:      Documentation/ABI/testing/sysfs-bus-iio-frequency-adf4350
1304 F:      Documentation/devicetree/bindings/iio/*/adi,*
1305 F:      Documentation/devicetree/bindings/iio/dac/adi,ad5758.yaml
1306 F:      drivers/iio/*/ad*
1307 F:      drivers/iio/adc/ltc249*
1308 F:      drivers/iio/amplifiers/hmc425a.c
1309 F:      drivers/staging/iio/*/ad*
1310 X:      drivers/iio/*/adjd*
1311
1312 ANALOGBITS PLL LIBRARIES
1313 M:      Paul Walmsley <paul.walmsley@sifive.com>
1314 S:      Supported
1315 F:      drivers/clk/analogbits/*
1316 F:      include/linux/clk/analogbits*
1317
1318 ANDROID CONFIG FRAGMENTS
1319 M:      Rob Herring <robh@kernel.org>
1320 S:      Supported
1321 F:      kernel/configs/android*
1322
1323 ANDROID DRIVERS
1324 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
1325 M:      Arve Hjønnevåg <arve@android.com>
1326 M:      Todd Kjos <tkjos@android.com>
1327 M:      Martijn Coenen <maco@android.com>
1328 M:      Joel Fernandes <joel@joelfernandes.org>
1329 M:      Christian Brauner <christian@brauner.io>
1330 M:      Hridya Valsaraju <hridya@google.com>
1331 M:      Suren Baghdasaryan <surenb@google.com>
1332 L:      linux-kernel@vger.kernel.org
1333 S:      Supported
1334 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
1335 F:      drivers/android/
1336
1337 ANDROID GOLDFISH PIC DRIVER
1338 M:      Miodrag Dinic <miodrag.dinic@mips.com>
1339 S:      Supported
1340 F:      Documentation/devicetree/bindings/interrupt-controller/google,goldfish-pic.txt
1341 F:      drivers/irqchip/irq-goldfish-pic.c
1342
1343 ANDROID GOLDFISH RTC DRIVER
1344 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
1345 S:      Supported
1346 F:      Documentation/devicetree/bindings/rtc/google,goldfish-rtc.txt
1347 F:      drivers/rtc/rtc-goldfish.c
1348
1349 AOA (Apple Onboard Audio) ALSA DRIVER
1350 M:      Johannes Berg <johannes@sipsolutions.net>
1351 L:      linuxppc-dev@lists.ozlabs.org
1352 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1353 S:      Maintained
1354 F:      sound/aoa/
1355
1356 APEX EMBEDDED SYSTEMS STX104 IIO DRIVER
1357 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
1358 L:      linux-iio@vger.kernel.org
1359 S:      Maintained
1360 F:      drivers/iio/adc/stx104.c
1361
1362 APM DRIVER
1363 M:      Jiri Kosina <jikos@kernel.org>
1364 S:      Odd fixes
1365 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/apm.git
1366 F:      arch/x86/kernel/apm_32.c
1367 F:      drivers/char/apm-emulation.c
1368 F:      include/linux/apm_bios.h
1369 F:      include/uapi/linux/apm_bios.h
1370
1371 APPARMOR SECURITY MODULE
1372 M:      John Johansen <john.johansen@canonical.com>
1373 M:      John Johansen <john@apparmor.net>
1374 L:      apparmor@lists.ubuntu.com (moderated for non-subscribers)
1375 S:      Supported
1376 W:      apparmor.net
1377 B:      https://gitlab.com/apparmor/apparmor-kernel
1378 C:      irc://irc.oftc.net/apparmor
1379 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jj/linux-apparmor
1380 T:      https://gitlab.com/apparmor/apparmor-kernel.git
1381 F:      Documentation/admin-guide/LSM/apparmor.rst
1382 F:      security/apparmor/
1383
1384 APPLE BCM5974 MULTITOUCH DRIVER
1385 M:      Henrik Rydberg <rydberg@bitmath.org>
1386 L:      linux-input@vger.kernel.org
1387 S:      Odd fixes
1388 F:      drivers/input/mouse/bcm5974.c
1389
1390 APPLE PCIE CONTROLLER DRIVER
1391 M:      Alyssa Rosenzweig <alyssa@rosenzweig.io>
1392 M:      Marc Zyngier <maz@kernel.org>
1393 L:      linux-pci@vger.kernel.org
1394 S:      Maintained
1395 F:      drivers/pci/controller/pcie-apple.c
1396
1397 APPLE SMC DRIVER
1398 M:      Henrik Rydberg <rydberg@bitmath.org>
1399 L:      linux-hwmon@vger.kernel.org
1400 S:      Odd fixes
1401 F:      drivers/hwmon/applesmc.c
1402
1403 APPLETALK NETWORK LAYER
1404 L:      netdev@vger.kernel.org
1405 S:      Odd fixes
1406 F:      drivers/net/appletalk/
1407 F:      include/linux/atalk.h
1408 F:      include/uapi/linux/atalk.h
1409 F:      net/appletalk/
1410
1411 APPLIED MICRO (APM) X-GENE DEVICE TREE SUPPORT
1412 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1413 S:      Supported
1414 F:      arch/arm64/boot/dts/apm/
1415
1416 APPLIED MICRO (APM) X-GENE SOC EDAC
1417 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1418 S:      Supported
1419 F:      Documentation/devicetree/bindings/edac/apm-xgene-edac.txt
1420 F:      drivers/edac/xgene_edac.c
1421
1422 APPLIED MICRO (APM) X-GENE SOC ETHERNET (V2) DRIVER
1423 M:      Iyappan Subramanian <iyappan@os.amperecomputing.com>
1424 M:      Keyur Chudgar <keyur@os.amperecomputing.com>
1425 S:      Supported
1426 F:      drivers/net/ethernet/apm/xgene-v2/
1427
1428 APPLIED MICRO (APM) X-GENE SOC ETHERNET DRIVER
1429 M:      Iyappan Subramanian <iyappan@os.amperecomputing.com>
1430 M:      Keyur Chudgar <keyur@os.amperecomputing.com>
1431 M:      Quan Nguyen <quan@os.amperecomputing.com>
1432 S:      Supported
1433 F:      Documentation/devicetree/bindings/net/apm-xgene-enet.txt
1434 F:      Documentation/devicetree/bindings/net/apm-xgene-mdio.txt
1435 F:      drivers/net/ethernet/apm/xgene/
1436 F:      drivers/net/mdio/mdio-xgene.c
1437
1438 APPLIED MICRO (APM) X-GENE SOC PMU
1439 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1440 S:      Supported
1441 F:      Documentation/admin-guide/perf/xgene-pmu.rst
1442 F:      Documentation/devicetree/bindings/perf/apm-xgene-pmu.txt
1443 F:      drivers/perf/xgene_pmu.c
1444
1445 APTINA CAMERA SENSOR PLL
1446 M:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
1447 L:      linux-media@vger.kernel.org
1448 S:      Maintained
1449 F:      drivers/media/i2c/aptina-pll.*
1450
1451 AQUACOMPUTER D5 NEXT PUMP SENSOR DRIVER
1452 M:      Aleksa Savic <savicaleksa83@gmail.com>
1453 M:      Jack Doan <me@jackdoan.com>
1454 L:      linux-hwmon@vger.kernel.org
1455 S:      Maintained
1456 F:      Documentation/hwmon/aquacomputer_d5next.rst
1457 F:      drivers/hwmon/aquacomputer_d5next.c
1458
1459 AQUANTIA ETHERNET DRIVER (atlantic)
1460 M:      Igor Russkikh <irusskikh@marvell.com>
1461 L:      netdev@vger.kernel.org
1462 S:      Supported
1463 W:      https://www.marvell.com/
1464 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
1465 F:      Documentation/networking/device_drivers/ethernet/aquantia/atlantic.rst
1466 F:      drivers/net/ethernet/aquantia/atlantic/
1467
1468 AQUANTIA ETHERNET DRIVER PTP SUBSYSTEM
1469 M:      Egor Pomozov <epomozov@marvell.com>
1470 L:      netdev@vger.kernel.org
1471 S:      Supported
1472 W:      http://www.aquantia.com
1473 F:      drivers/net/ethernet/aquantia/atlantic/aq_ptp*
1474
1475 ARASAN NAND CONTROLLER DRIVER
1476 M:      Miquel Raynal <miquel.raynal@bootlin.com>
1477 M:      Naga Sureshkumar Relli <nagasure@xilinx.com>
1478 L:      linux-mtd@lists.infradead.org
1479 S:      Maintained
1480 F:      Documentation/devicetree/bindings/mtd/arasan,nand-controller.yaml
1481 F:      drivers/mtd/nand/raw/arasan-nand-controller.c
1482
1483 ARC FRAMEBUFFER DRIVER
1484 M:      Jaya Kumar <jayalk@intworks.biz>
1485 S:      Maintained
1486 F:      drivers/video/fbdev/arcfb.c
1487 F:      drivers/video/fbdev/core/fb_defio.c
1488
1489 ARC PGU DRM DRIVER
1490 M:      Alexey Brodkin <abrodkin@synopsys.com>
1491 S:      Supported
1492 F:      Documentation/devicetree/bindings/display/snps,arcpgu.txt
1493 F:      drivers/gpu/drm/tiny/arcpgu.c
1494
1495 ARCNET NETWORK LAYER
1496 M:      Michael Grzeschik <m.grzeschik@pengutronix.de>
1497 L:      netdev@vger.kernel.org
1498 S:      Maintained
1499 F:      drivers/net/arcnet/
1500 F:      include/uapi/linux/if_arcnet.h
1501
1502 ARM ARCHITECTED TIMER DRIVER
1503 M:      Mark Rutland <mark.rutland@arm.com>
1504 M:      Marc Zyngier <maz@kernel.org>
1505 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1506 S:      Maintained
1507 F:      arch/arm/include/asm/arch_timer.h
1508 F:      arch/arm64/include/asm/arch_timer.h
1509 F:      drivers/clocksource/arm_arch_timer.c
1510
1511 ARM HDLCD DRM DRIVER
1512 M:      Liviu Dudau <liviu.dudau@arm.com>
1513 S:      Supported
1514 F:      Documentation/devicetree/bindings/display/arm,hdlcd.txt
1515 F:      drivers/gpu/drm/arm/hdlcd_*
1516
1517 ARM INTEGRATOR, VERSATILE AND REALVIEW SUPPORT
1518 M:      Linus Walleij <linus.walleij@linaro.org>
1519 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1520 S:      Maintained
1521 F:      Documentation/devicetree/bindings/arm/arm,integrator.yaml
1522 F:      Documentation/devicetree/bindings/arm/arm,realview.yaml
1523 F:      Documentation/devicetree/bindings/arm/arm,versatile.yaml
1524 F:      Documentation/devicetree/bindings/arm/arm,vexpress-juno.yaml
1525 F:      Documentation/devicetree/bindings/auxdisplay/arm,versatile-lcd.yaml
1526 F:      Documentation/devicetree/bindings/clock/arm,syscon-icst.yaml
1527 F:      Documentation/devicetree/bindings/i2c/i2c-versatile.txt
1528 F:      Documentation/devicetree/bindings/interrupt-controller/arm,versatile-fpga-irq.txt
1529 F:      Documentation/devicetree/bindings/mtd/mtd-physmap.yaml
1530 F:      arch/arm/boot/dts/arm-realview-*
1531 F:      arch/arm/boot/dts/integrator*
1532 F:      arch/arm/boot/dts/versatile*
1533 F:      arch/arm/mach-versatile/
1534 F:      drivers/bus/arm-integrator-lm.c
1535 F:      drivers/clk/versatile/
1536 F:      drivers/i2c/busses/i2c-versatile.c
1537 F:      drivers/irqchip/irq-versatile-fpga.c
1538 F:      drivers/mtd/maps/physmap-versatile.*
1539 F:      drivers/power/reset/arm-versatile-reboot.c
1540 F:      drivers/soc/versatile/
1541
1542 ARM KOMEDA DRM-KMS DRIVER
1543 M:      James (Qian) Wang <james.qian.wang@arm.com>
1544 M:      Liviu Dudau <liviu.dudau@arm.com>
1545 M:      Mihail Atanassov <mihail.atanassov@arm.com>
1546 L:      Mali DP Maintainers <malidp@foss.arm.com>
1547 S:      Supported
1548 T:      git git://anongit.freedesktop.org/drm/drm-misc
1549 F:      Documentation/devicetree/bindings/display/arm,komeda.txt
1550 F:      Documentation/gpu/komeda-kms.rst
1551 F:      drivers/gpu/drm/arm/display/include/
1552 F:      drivers/gpu/drm/arm/display/komeda/
1553
1554 ARM MALI PANFROST DRM DRIVER
1555 M:      Rob Herring <robh@kernel.org>
1556 M:      Tomeu Vizoso <tomeu.vizoso@collabora.com>
1557 R:      Steven Price <steven.price@arm.com>
1558 R:      Alyssa Rosenzweig <alyssa.rosenzweig@collabora.com>
1559 L:      dri-devel@lists.freedesktop.org
1560 S:      Supported
1561 T:      git git://anongit.freedesktop.org/drm/drm-misc
1562 F:      drivers/gpu/drm/panfrost/
1563 F:      include/uapi/drm/panfrost_drm.h
1564
1565 ARM MALI-DP DRM DRIVER
1566 M:      Liviu Dudau <liviu.dudau@arm.com>
1567 M:      Brian Starkey <brian.starkey@arm.com>
1568 L:      Mali DP Maintainers <malidp@foss.arm.com>
1569 S:      Supported
1570 T:      git git://anongit.freedesktop.org/drm/drm-misc
1571 F:      Documentation/devicetree/bindings/display/arm,malidp.txt
1572 F:      Documentation/gpu/afbc.rst
1573 F:      drivers/gpu/drm/arm/
1574
1575 ARM MFM AND FLOPPY DRIVERS
1576 M:      Ian Molton <spyro@f2s.com>
1577 S:      Maintained
1578 F:      arch/arm/include/asm/floppy.h
1579 F:      arch/arm/mach-rpc/floppydma.S
1580
1581 ARM PMU PROFILING AND DEBUGGING
1582 M:      Will Deacon <will@kernel.org>
1583 M:      Mark Rutland <mark.rutland@arm.com>
1584 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1585 S:      Maintained
1586 F:      Documentation/devicetree/bindings/arm/pmu.yaml
1587 F:      Documentation/devicetree/bindings/perf/
1588 F:      arch/arm*/include/asm/hw_breakpoint.h
1589 F:      arch/arm*/include/asm/perf_event.h
1590 F:      arch/arm*/kernel/hw_breakpoint.c
1591 F:      arch/arm*/kernel/perf_*
1592 F:      drivers/perf/
1593 F:      include/linux/perf/arm_pmu.h
1594
1595 ARM PORT
1596 M:      Russell King <linux@armlinux.org.uk>
1597 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1598 S:      Odd Fixes
1599 W:      http://www.armlinux.org.uk/
1600 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git
1601 F:      arch/arm/
1602 X:      arch/arm/boot/dts/
1603
1604 ARM PRIMECELL AACI PL041 DRIVER
1605 M:      Russell King <linux@armlinux.org.uk>
1606 S:      Odd Fixes
1607 F:      sound/arm/aaci.*
1608
1609 ARM PRIMECELL BUS SUPPORT
1610 M:      Russell King <linux@armlinux.org.uk>
1611 S:      Odd Fixes
1612 F:      drivers/amba/
1613 F:      include/linux/amba/bus.h
1614
1615 ARM PRIMECELL PL35X NAND CONTROLLER DRIVER
1616 M:      Miquel Raynal <miquel.raynal@bootlin.com>
1617 M:      Naga Sureshkumar Relli <nagasure@xilinx.com>
1618 L:      linux-mtd@lists.infradead.org
1619 S:      Maintained
1620 F:      Documentation/devicetree/bindings/mtd/arm,pl353-nand-r2p1.yaml
1621 F:      drivers/mtd/nand/raw/pl35x-nand-controller.c
1622
1623 ARM PRIMECELL PL35X SMC DRIVER
1624 M:      Miquel Raynal <miquel.raynal@bootlin.com>
1625 M:      Naga Sureshkumar Relli <nagasure@xilinx.com>
1626 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1627 S:      Maintained
1628 F:      Documentation/devicetree/bindings/memory-controllers/arm,pl353-smc.yaml
1629 F:      drivers/memory/pl353-smc.c
1630
1631 ARM PRIMECELL CLCD PL110 DRIVER
1632 M:      Russell King <linux@armlinux.org.uk>
1633 S:      Odd Fixes
1634 F:      drivers/video/fbdev/amba-clcd.*
1635
1636 ARM PRIMECELL KMI PL050 DRIVER
1637 M:      Russell King <linux@armlinux.org.uk>
1638 S:      Odd Fixes
1639 F:      drivers/input/serio/ambakmi.*
1640 F:      include/linux/amba/kmi.h
1641
1642 ARM PRIMECELL MMCI PL180/1 DRIVER
1643 M:      Russell King <linux@armlinux.org.uk>
1644 S:      Odd Fixes
1645 F:      drivers/mmc/host/mmci.*
1646 F:      include/linux/amba/mmci.h
1647
1648 ARM PRIMECELL SSP PL022 SPI DRIVER
1649 M:      Linus Walleij <linus.walleij@linaro.org>
1650 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1651 S:      Maintained
1652 F:      Documentation/devicetree/bindings/spi/spi-pl022.yaml
1653 F:      drivers/spi/spi-pl022.c
1654
1655 ARM PRIMECELL UART PL010 AND PL011 DRIVERS
1656 M:      Russell King <linux@armlinux.org.uk>
1657 S:      Odd Fixes
1658 F:      drivers/tty/serial/amba-pl01*.c
1659 F:      include/linux/amba/serial.h
1660
1661 ARM PRIMECELL VIC PL190/PL192 DRIVER
1662 M:      Linus Walleij <linus.walleij@linaro.org>
1663 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1664 S:      Maintained
1665 F:      Documentation/devicetree/bindings/interrupt-controller/arm,vic.yaml
1666 F:      drivers/irqchip/irq-vic.c
1667
1668 ARM SMC WATCHDOG DRIVER
1669 M:      Julius Werner <jwerner@chromium.org>
1670 R:      Evan Benn <evanbenn@chromium.org>
1671 S:      Maintained
1672 F:      Documentation/devicetree/bindings/watchdog/arm-smc-wdt.yaml
1673 F:      drivers/watchdog/arm_smc_wdt.c
1674
1675 ARM SMMU DRIVERS
1676 M:      Will Deacon <will@kernel.org>
1677 R:      Robin Murphy <robin.murphy@arm.com>
1678 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1679 S:      Maintained
1680 F:      Documentation/devicetree/bindings/iommu/arm,smmu*
1681 F:      drivers/iommu/arm/
1682 F:      drivers/iommu/io-pgtable-arm*
1683
1684 ARM AND ARM64 SoC SUB-ARCHITECTURES (COMMON PARTS)
1685 M:      Arnd Bergmann <arnd@arndb.de>
1686 M:      Olof Johansson <olof@lixom.net>
1687 M:      soc@kernel.org
1688 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1689 S:      Maintained
1690 C:      irc://irc.libera.chat/armlinux
1691 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/soc/soc.git
1692 F:      arch/arm/boot/dts/Makefile
1693 F:      arch/arm64/boot/dts/Makefile
1694
1695 ARM SUB-ARCHITECTURES
1696 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1697 S:      Maintained
1698 C:      irc://irc.libera.chat/armlinux
1699 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/soc/soc.git
1700 F:      arch/arm/mach-*/
1701 F:      arch/arm/plat-*/
1702
1703 ARM/ACTIONS SEMI ARCHITECTURE
1704 M:      Andreas Färber <afaerber@suse.de>
1705 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
1706 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1707 L:      linux-actions@lists.infradead.org (moderated for non-subscribers)
1708 S:      Maintained
1709 F:      Documentation/devicetree/bindings/arm/actions.yaml
1710 F:      Documentation/devicetree/bindings/clock/actions,owl-cmu.txt
1711 F:      Documentation/devicetree/bindings/dma/owl-dma.yaml
1712 F:      Documentation/devicetree/bindings/i2c/i2c-owl.yaml
1713 F:      Documentation/devicetree/bindings/interrupt-controller/actions,owl-sirq.yaml
1714 F:      Documentation/devicetree/bindings/mmc/owl-mmc.yaml
1715 F:      Documentation/devicetree/bindings/net/actions,owl-emac.yaml
1716 F:      Documentation/devicetree/bindings/pinctrl/actions,*
1717 F:      Documentation/devicetree/bindings/power/actions,owl-sps.txt
1718 F:      Documentation/devicetree/bindings/timer/actions,owl-timer.txt
1719 F:      arch/arm/boot/dts/owl-*
1720 F:      arch/arm/mach-actions/
1721 F:      arch/arm64/boot/dts/actions/
1722 F:      drivers/clk/actions/
1723 F:      drivers/clocksource/timer-owl*
1724 F:      drivers/dma/owl-dma.c
1725 F:      drivers/i2c/busses/i2c-owl.c
1726 F:      drivers/irqchip/irq-owl-sirq.c
1727 F:      drivers/mmc/host/owl-mmc.c
1728 F:      drivers/net/ethernet/actions/
1729 F:      drivers/pinctrl/actions/*
1730 F:      drivers/soc/actions/
1731 F:      include/dt-bindings/power/owl-*
1732 F:      include/dt-bindings/reset/actions,*
1733 F:      include/linux/soc/actions/
1734 N:      owl
1735
1736 ARM/ADS SPHERE MACHINE SUPPORT
1737 M:      Lennert Buytenhek <kernel@wantstofly.org>
1738 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1739 S:      Maintained
1740
1741 ARM/AFEB9260 MACHINE SUPPORT
1742 M:      Sergey Lapin <slapin@ossfans.org>
1743 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1744 S:      Maintained
1745
1746 ARM/AJECO 1ARM MACHINE SUPPORT
1747 M:      Lennert Buytenhek <kernel@wantstofly.org>
1748 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1749 S:      Maintained
1750
1751 ARM/Allwinner SoC Clock Support
1752 M:      Emilio López <emilio@elopez.com.ar>
1753 S:      Maintained
1754 F:      drivers/clk/sunxi/
1755
1756 ARM/Allwinner sunXi SoC support
1757 M:      Chen-Yu Tsai <wens@csie.org>
1758 M:      Jernej Skrabec <jernej.skrabec@gmail.com>
1759 M:      Samuel Holland <samuel@sholland.org>
1760 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1761 S:      Maintained
1762 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sunxi/linux.git
1763 L:      linux-sunxi@lists.linux.dev
1764 F:      arch/arm/mach-sunxi/
1765 F:      arch/arm64/boot/dts/allwinner/
1766 F:      drivers/clk/sunxi-ng/
1767 F:      drivers/pinctrl/sunxi/
1768 F:      drivers/soc/sunxi/
1769 N:      allwinner
1770 N:      sun[x456789]i
1771 N:      sun50i
1772
1773 ARM/Amlogic Meson SoC CLOCK FRAMEWORK
1774 M:      Neil Armstrong <narmstrong@baylibre.com>
1775 M:      Jerome Brunet <jbrunet@baylibre.com>
1776 L:      linux-amlogic@lists.infradead.org
1777 S:      Maintained
1778 F:      Documentation/devicetree/bindings/clock/amlogic*
1779 F:      drivers/clk/meson/
1780 F:      include/dt-bindings/clock/gxbb*
1781 F:      include/dt-bindings/clock/meson*
1782
1783 ARM/Amlogic Meson SoC Crypto Drivers
1784 M:      Corentin Labbe <clabbe@baylibre.com>
1785 L:      linux-crypto@vger.kernel.org
1786 L:      linux-amlogic@lists.infradead.org
1787 S:      Maintained
1788 F:      Documentation/devicetree/bindings/crypto/amlogic*
1789 F:      drivers/crypto/amlogic/
1790
1791 ARM/Amlogic Meson SoC Sound Drivers
1792 M:      Jerome Brunet <jbrunet@baylibre.com>
1793 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1794 S:      Maintained
1795 F:      Documentation/devicetree/bindings/sound/amlogic*
1796 F:      sound/soc/meson/
1797
1798 ARM/Amlogic Meson SoC support
1799 M:      Neil Armstrong <narmstrong@baylibre.com>
1800 M:      Kevin Hilman <khilman@baylibre.com>
1801 R:      Jerome Brunet <jbrunet@baylibre.com>
1802 R:      Martin Blumenstingl <martin.blumenstingl@googlemail.com>
1803 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1804 L:      linux-amlogic@lists.infradead.org
1805 S:      Maintained
1806 W:      http://linux-meson.com/
1807 F:      arch/arm/boot/dts/meson*
1808 F:      arch/arm/mach-meson/
1809 F:      arch/arm64/boot/dts/amlogic/
1810 F:      drivers/mmc/host/meson*
1811 F:      drivers/pinctrl/meson/
1812 F:      drivers/rtc/rtc-meson*
1813 F:      drivers/soc/amlogic/
1814 N:      meson
1815
1816 ARM/Annapurna Labs ALPINE ARCHITECTURE
1817 M:      Tsahee Zidenberg <tsahee@annapurnalabs.com>
1818 M:      Antoine Tenart <atenart@kernel.org>
1819 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1820 S:      Maintained
1821 F:      arch/arm/boot/dts/alpine*
1822 F:      arch/arm/mach-alpine/
1823 F:      arch/arm64/boot/dts/amazon/
1824 F:      drivers/*/*alpine*
1825
1826 ARM/APPLE MACHINE SUPPORT
1827 M:      Hector Martin <marcan@marcan.st>
1828 M:      Sven Peter <sven@svenpeter.dev>
1829 R:      Alyssa Rosenzweig <alyssa@rosenzweig.io>
1830 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1831 S:      Maintained
1832 W:      https://asahilinux.org
1833 B:      https://github.com/AsahiLinux/linux/issues
1834 C:      irc://irc.oftc.net/asahi-dev
1835 T:      git https://github.com/AsahiLinux/linux.git
1836 F:      Documentation/devicetree/bindings/arm/apple.yaml
1837 F:      Documentation/devicetree/bindings/arm/apple/*
1838 F:      Documentation/devicetree/bindings/clock/apple,nco.yaml
1839 F:      Documentation/devicetree/bindings/i2c/apple,i2c.yaml
1840 F:      Documentation/devicetree/bindings/interrupt-controller/apple,*
1841 F:      Documentation/devicetree/bindings/iommu/apple,dart.yaml
1842 F:      Documentation/devicetree/bindings/iommu/apple,sart.yaml
1843 F:      Documentation/devicetree/bindings/mailbox/apple,mailbox.yaml
1844 F:      Documentation/devicetree/bindings/nvme/apple,nvme-ans.yaml
1845 F:      Documentation/devicetree/bindings/nvmem/apple,efuses.yaml
1846 F:      Documentation/devicetree/bindings/pci/apple,pcie.yaml
1847 F:      Documentation/devicetree/bindings/pinctrl/apple,pinctrl.yaml
1848 F:      Documentation/devicetree/bindings/power/apple*
1849 F:      Documentation/devicetree/bindings/watchdog/apple,wdt.yaml
1850 F:      arch/arm64/boot/dts/apple/
1851 F:      drivers/clk/clk-apple-nco.c
1852 F:      drivers/i2c/busses/i2c-pasemi-core.c
1853 F:      drivers/i2c/busses/i2c-pasemi-platform.c
1854 F:      drivers/iommu/apple-dart.c
1855 F:      drivers/irqchip/irq-apple-aic.c
1856 F:      drivers/mailbox/apple-mailbox.c
1857 F:      drivers/nvme/host/apple.c
1858 F:      drivers/nvmem/apple-efuses.c
1859 F:      drivers/pinctrl/pinctrl-apple-gpio.c
1860 F:      drivers/soc/apple/*
1861 F:      drivers/watchdog/apple_wdt.c
1862 F:      include/dt-bindings/interrupt-controller/apple-aic.h
1863 F:      include/dt-bindings/pinctrl/apple.h
1864 F:      include/linux/apple-mailbox.h
1865 F:      include/linux/soc/apple/*
1866
1867 ARM/ARTPEC MACHINE SUPPORT
1868 M:      Jesper Nilsson <jesper.nilsson@axis.com>
1869 M:      Lars Persson <lars.persson@axis.com>
1870 L:      linux-arm-kernel@axis.com
1871 S:      Maintained
1872 F:      Documentation/devicetree/bindings/pinctrl/axis,artpec6-pinctrl.txt
1873 F:      arch/arm/boot/dts/artpec6*
1874 F:      arch/arm/mach-artpec
1875 F:      drivers/clk/axis
1876 F:      drivers/crypto/axis
1877 F:      drivers/mmc/host/usdhi6rol0.c
1878 F:      drivers/pinctrl/pinctrl-artpec*
1879
1880 ARM/ASPEED I2C DRIVER
1881 M:      Brendan Higgins <brendanhiggins@google.com>
1882 R:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
1883 R:      Joel Stanley <joel@jms.id.au>
1884 L:      linux-i2c@vger.kernel.org
1885 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
1886 S:      Maintained
1887 F:      Documentation/devicetree/bindings/i2c/aspeed,i2c.yaml
1888 F:      Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2400-i2c-ic.txt
1889 F:      drivers/i2c/busses/i2c-aspeed.c
1890 F:      drivers/irqchip/irq-aspeed-i2c-ic.c
1891
1892 ARM/ASPEED MACHINE SUPPORT
1893 M:      Joel Stanley <joel@jms.id.au>
1894 R:      Andrew Jeffery <andrew@aj.id.au>
1895 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1896 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
1897 S:      Supported
1898 Q:      https://patchwork.ozlabs.org/project/linux-aspeed/list/
1899 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joel/aspeed.git
1900 F:      arch/arm/boot/dts/aspeed-*
1901 F:      arch/arm/mach-aspeed/
1902 N:      aspeed
1903
1904 ARM/BITMAIN ARCHITECTURE
1905 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
1906 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1907 S:      Maintained
1908 F:      Documentation/devicetree/bindings/arm/bitmain.yaml
1909 F:      Documentation/devicetree/bindings/clock/bitmain,bm1880-clk.yaml
1910 F:      Documentation/devicetree/bindings/pinctrl/bitmain,bm1880-pinctrl.txt
1911 F:      arch/arm64/boot/dts/bitmain/
1912 F:      drivers/clk/clk-bm1880.c
1913 F:      drivers/pinctrl/pinctrl-bm1880.c
1914
1915 ARM/CALXEDA HIGHBANK ARCHITECTURE
1916 M:      Andre Przywara <andre.przywara@arm.com>
1917 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1918 S:      Maintained
1919 F:      arch/arm/boot/dts/ecx-*.dts*
1920 F:      arch/arm/boot/dts/highbank.dts
1921 F:      arch/arm/mach-highbank/
1922
1923 ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
1924 M:      Krzysztof Halasa <khalasa@piap.pl>
1925 S:      Maintained
1926 F:      arch/arm/mach-cns3xxx/
1927
1928 ARM/CAVIUM THUNDER NETWORK DRIVER
1929 M:      Sunil Goutham <sgoutham@marvell.com>
1930 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1931 S:      Supported
1932 F:      drivers/net/ethernet/cavium/thunder/
1933
1934 ARM/CIRRUS LOGIC BK3 MACHINE SUPPORT
1935 M:      Lukasz Majewski <lukma@denx.de>
1936 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1937 S:      Maintained
1938 F:      arch/arm/mach-ep93xx/ts72xx.c
1939
1940 ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
1941 M:      Alexander Shiyan <shc_work@mail.ru>
1942 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1943 S:      Odd Fixes
1944 N:      clps711x
1945
1946 ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
1947 M:      Lennert Buytenhek <kernel@wantstofly.org>
1948 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1949 S:      Maintained
1950
1951 ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
1952 M:      Hartley Sweeten <hsweeten@visionengravers.com>
1953 M:      Alexander Sverdlin <alexander.sverdlin@gmail.com>
1954 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1955 S:      Maintained
1956 F:      arch/arm/mach-ep93xx/
1957 F:      arch/arm/mach-ep93xx/include/mach/
1958
1959 ARM/CLKDEV SUPPORT
1960 M:      Russell King <linux@armlinux.org.uk>
1961 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1962 S:      Maintained
1963 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git clkdev
1964 F:      drivers/clk/clkdev.c
1965
1966 ARM/CONEXANT DIGICOLOR MACHINE SUPPORT
1967 M:      Baruch Siach <baruch@tkos.co.il>
1968 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1969 S:      Maintained
1970 F:      arch/arm/boot/dts/cx92755*
1971 N:      digicolor
1972
1973 ARM/CONTEC MICRO9 MACHINE SUPPORT
1974 M:      Hubert Feurstein <hubert.feurstein@contec.at>
1975 S:      Maintained
1976 F:      arch/arm/mach-ep93xx/micro9.c
1977
1978 ARM/CORESIGHT FRAMEWORK AND DRIVERS
1979 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
1980 M:      Suzuki K Poulose <suzuki.poulose@arm.com>
1981 R:      Mike Leach <mike.leach@linaro.org>
1982 R:      Leo Yan <leo.yan@linaro.org>
1983 L:      coresight@lists.linaro.org (moderated for non-subscribers)
1984 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1985 S:      Maintained
1986 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/coresight/linux.git
1987 F:      Documentation/ABI/testing/sysfs-bus-coresight-devices-*
1988 F:      Documentation/devicetree/bindings/arm/coresight-cpu-debug.txt
1989 F:      Documentation/devicetree/bindings/arm/coresight-cti.yaml
1990 F:      Documentation/devicetree/bindings/arm/coresight.txt
1991 F:      Documentation/devicetree/bindings/arm/ete.yaml
1992 F:      Documentation/devicetree/bindings/arm/trbe.yaml
1993 F:      Documentation/trace/coresight/*
1994 F:      drivers/hwtracing/coresight/*
1995 F:      include/dt-bindings/arm/coresight-cti-dt.h
1996 F:      include/linux/coresight*
1997 F:      samples/coresight/*
1998 F:      tools/perf/arch/arm/util/auxtrace.c
1999 F:      tools/perf/arch/arm/util/cs-etm.c
2000 F:      tools/perf/arch/arm/util/cs-etm.h
2001 F:      tools/perf/arch/arm/util/pmu.c
2002 F:      tools/perf/util/cs-etm-decoder/*
2003 F:      tools/perf/util/cs-etm.*
2004
2005 ARM/CORGI MACHINE SUPPORT
2006 M:      Richard Purdie <rpurdie@rpsys.net>
2007 S:      Maintained
2008
2009 ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
2010 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
2011 M:      Linus Walleij <linus.walleij@linaro.org>
2012 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2013 S:      Maintained
2014 T:      git git://github.com/ulli-kroll/linux.git
2015 F:      Documentation/devicetree/bindings/arm/gemini.yaml
2016 F:      Documentation/devicetree/bindings/net/cortina,gemini-ethernet.txt
2017 F:      Documentation/devicetree/bindings/pinctrl/cortina,gemini-pinctrl.txt
2018 F:      Documentation/devicetree/bindings/rtc/faraday,ftrtc010.yaml
2019 F:      arch/arm/boot/dts/gemini*
2020 F:      arch/arm/mach-gemini/
2021 F:      drivers/crypto/gemini/
2022 F:      drivers/net/ethernet/cortina/
2023 F:      drivers/pinctrl/pinctrl-gemini.c
2024 F:      drivers/rtc/rtc-ftrtc010.c
2025
2026 ARM/CZ.NIC TURRIS SUPPORT
2027 M:      Marek Behún <kabel@kernel.org>
2028 S:      Maintained
2029 W:      https://www.turris.cz/
2030 F:      Documentation/ABI/testing/debugfs-moxtet
2031 F:      Documentation/ABI/testing/sysfs-bus-moxtet-devices
2032 F:      Documentation/ABI/testing/sysfs-firmware-turris-mox-rwtm
2033 F:      Documentation/devicetree/bindings/bus/moxtet.txt
2034 F:      Documentation/devicetree/bindings/firmware/cznic,turris-mox-rwtm.txt
2035 F:      Documentation/devicetree/bindings/gpio/gpio-moxtet.txt
2036 F:      Documentation/devicetree/bindings/leds/cznic,turris-omnia-leds.yaml
2037 F:      Documentation/devicetree/bindings/watchdog/armada-37xx-wdt.txt
2038 F:      drivers/bus/moxtet.c
2039 F:      drivers/firmware/turris-mox-rwtm.c
2040 F:      drivers/leds/leds-turris-omnia.c
2041 F:      drivers/mailbox/armada-37xx-rwtm-mailbox.c
2042 F:      drivers/gpio/gpio-moxtet.c
2043 F:      drivers/watchdog/armada_37xx_wdt.c
2044 F:      include/dt-bindings/bus/moxtet.h
2045 F:      include/linux/armada-37xx-rwtm-mailbox.h
2046 F:      include/linux/moxtet.h
2047
2048 ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
2049 M:      Robert Jarzmik <robert.jarzmik@free.fr>
2050 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2051 S:      Maintained
2052 F:      arch/arm/mach-pxa/ezx.c
2053
2054 ARM/FARADAY FA526 PORT
2055 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
2056 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2057 S:      Maintained
2058 T:      git git://git.berlios.de/gemini-board
2059 F:      arch/arm/mm/*-fa*
2060
2061 ARM/FOOTBRIDGE ARCHITECTURE
2062 M:      Russell King <linux@armlinux.org.uk>
2063 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2064 S:      Maintained
2065 W:      http://www.armlinux.org.uk/
2066 F:      arch/arm/include/asm/hardware/dec21285.h
2067 F:      arch/arm/mach-footbridge/
2068
2069 ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
2070 M:      Shawn Guo <shawnguo@kernel.org>
2071 M:      Sascha Hauer <s.hauer@pengutronix.de>
2072 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
2073 R:      Fabio Estevam <festevam@gmail.com>
2074 R:      NXP Linux Team <linux-imx@nxp.com>
2075 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2076 S:      Maintained
2077 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
2078 X:      drivers/media/i2c/
2079 N:      imx
2080 N:      mxs
2081
2082 ARM/FREESCALE LAYERSCAPE ARM ARCHITECTURE
2083 M:      Shawn Guo <shawnguo@kernel.org>
2084 M:      Li Yang <leoyang.li@nxp.com>
2085 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2086 S:      Maintained
2087 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
2088 F:      arch/arm/boot/dts/ls1021a*
2089 F:      arch/arm64/boot/dts/freescale/fsl-*
2090 F:      arch/arm64/boot/dts/freescale/qoriq-*
2091
2092 ARM/FREESCALE VYBRID ARM ARCHITECTURE
2093 M:      Shawn Guo <shawnguo@kernel.org>
2094 M:      Sascha Hauer <s.hauer@pengutronix.de>
2095 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
2096 R:      Stefan Agner <stefan@agner.ch>
2097 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2098 S:      Maintained
2099 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
2100 F:      arch/arm/boot/dts/vf*
2101 F:      arch/arm/mach-imx/*vf610*
2102
2103 ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
2104 M:      Lennert Buytenhek <kernel@wantstofly.org>
2105 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2106 S:      Maintained
2107
2108 ARM/GUMSTIX MACHINE SUPPORT
2109 M:      Steve Sakoman <sakoman@gmail.com>
2110 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2111 S:      Maintained
2112
2113 ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
2114 M:      Philipp Zabel <philipp.zabel@gmail.com>
2115 M:      Paul Parsons <lost.distance@yahoo.com>
2116 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2117 S:      Maintained
2118 F:      arch/arm/mach-pxa/hx4700.c
2119 F:      arch/arm/mach-pxa/include/mach/hx4700.h
2120 F:      sound/soc/pxa/hx4700.c
2121
2122 ARM/HISILICON SOC SUPPORT
2123 M:      Wei Xu <xuwei5@hisilicon.com>
2124 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2125 S:      Supported
2126 W:      http://www.hisilicon.com
2127 T:      git git://github.com/hisilicon/linux-hisi.git
2128 F:      arch/arm/boot/dts/hi3*
2129 F:      arch/arm/boot/dts/hip*
2130 F:      arch/arm/boot/dts/hisi*
2131 F:      arch/arm/mach-hisi/
2132 F:      arch/arm64/boot/dts/hisilicon/
2133
2134 ARM/HP JORNADA 7XX MACHINE SUPPORT
2135 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
2136 S:      Maintained
2137 W:      www.jlime.com
2138 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
2139 F:      arch/arm/mach-sa1100/include/mach/jornada720.h
2140 F:      arch/arm/mach-sa1100/jornada720.c
2141
2142 ARM/HPE GXP ARCHITECTURE
2143 M:      Jean-Marie Verdun <verdun@hpe.com>
2144 M:      Nick Hawkins <nick.hawkins@hpe.com>
2145 S:      Maintained
2146 F:      Documentation/devicetree/bindings/arm/hpe,gxp.yaml
2147 F:      Documentation/devicetree/bindings/timer/hpe,gxp-timer.yaml
2148 F:      arch/arm/boot/dts/hpe-bmc*
2149 F:      arch/arm/boot/dts/hpe-gxp*
2150 F:      arch/arm/mach-hpe/
2151 F:      drivers/clocksource/timer-gxp.c
2152 F:      drivers/watchdog/gxp-wdt.c
2153
2154 ARM/IGEP MACHINE SUPPORT
2155 M:      Enric Balletbo i Serra <eballetbo@gmail.com>
2156 M:      Javier Martinez Canillas <javier@dowhile0.org>
2157 L:      linux-omap@vger.kernel.org
2158 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2159 S:      Maintained
2160 F:      arch/arm/boot/dts/omap3-igep*
2161
2162 ARM/INCOME PXA270 SUPPORT
2163 M:      Marek Vasut <marek.vasut@gmail.com>
2164 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2165 S:      Maintained
2166 F:      arch/arm/mach-pxa/colibri-pxa270-income.c
2167
2168 ARM/INTEL IOP32X ARM ARCHITECTURE
2169 M:      Lennert Buytenhek <kernel@wantstofly.org>
2170 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2171 S:      Maintained
2172
2173 ARM/INTEL IQ81342EX MACHINE SUPPORT
2174 M:      Lennert Buytenhek <kernel@wantstofly.org>
2175 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2176 S:      Maintained
2177
2178 ARM/INTEL IXDP2850 MACHINE SUPPORT
2179 M:      Lennert Buytenhek <kernel@wantstofly.org>
2180 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2181 S:      Maintained
2182
2183 ARM/INTEL IXP4XX ARM ARCHITECTURE
2184 M:      Linus Walleij <linusw@kernel.org>
2185 M:      Imre Kaloz <kaloz@openwrt.org>
2186 M:      Krzysztof Halasa <khalasa@piap.pl>
2187 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2188 S:      Maintained
2189 F:      Documentation/devicetree/bindings/arm/intel-ixp4xx.yaml
2190 F:      Documentation/devicetree/bindings/bus/intel,ixp4xx-expansion-bus-controller.yaml
2191 F:      Documentation/devicetree/bindings/gpio/intel,ixp4xx-gpio.txt
2192 F:      Documentation/devicetree/bindings/interrupt-controller/intel,ixp4xx-interrupt.yaml
2193 F:      Documentation/devicetree/bindings/timer/intel,ixp4xx-timer.yaml
2194 F:      arch/arm/mach-ixp4xx/
2195 F:      drivers/bus/intel-ixp4xx-eb.c
2196 F:      drivers/clocksource/timer-ixp4xx.c
2197 F:      drivers/crypto/ixp4xx_crypto.c
2198 F:      drivers/gpio/gpio-ixp4xx.c
2199 F:      drivers/irqchip/irq-ixp4xx.c
2200 F:      include/linux/irqchip/irq-ixp4xx.h
2201 F:      include/linux/platform_data/timer-ixp4xx.h
2202
2203 ARM/INTEL KEEMBAY ARCHITECTURE
2204 M:      Paul J. Murphy <paul.j.murphy@intel.com>
2205 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
2206 S:      Maintained
2207 F:      Documentation/devicetree/bindings/arm/intel,keembay.yaml
2208 F:      arch/arm64/boot/dts/intel/keembay-evm.dts
2209 F:      arch/arm64/boot/dts/intel/keembay-soc.dtsi
2210
2211 ARM/INTEL XSC3 (MANZANO) ARM CORE
2212 M:      Lennert Buytenhek <kernel@wantstofly.org>
2213 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2214 S:      Maintained
2215
2216 ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
2217 M:      Lennert Buytenhek <kernel@wantstofly.org>
2218 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2219 S:      Maintained
2220
2221 ARM/LG1K ARCHITECTURE
2222 M:      Chanho Min <chanho.min@lge.com>
2223 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2224 S:      Maintained
2225 F:      arch/arm64/boot/dts/lg/
2226
2227 ARM/LOGICPD PXA270 MACHINE SUPPORT
2228 M:      Lennert Buytenhek <kernel@wantstofly.org>
2229 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2230 S:      Maintained
2231
2232 ARM/LPC18XX ARCHITECTURE
2233 M:      Vladimir Zapolskiy <vz@mleia.com>
2234 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2235 S:      Maintained
2236 F:      Documentation/devicetree/bindings/i2c/i2c-lpc2k.txt
2237 F:      arch/arm/boot/dts/lpc43*
2238 F:      drivers/i2c/busses/i2c-lpc2k.c
2239 F:      drivers/memory/pl172.c
2240 F:      drivers/mtd/spi-nor/controllers/nxp-spifi.c
2241 F:      drivers/rtc/rtc-lpc24xx.c
2242 N:      lpc18xx
2243
2244 ARM/LPC32XX SOC SUPPORT
2245 M:      Vladimir Zapolskiy <vz@mleia.com>
2246 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2247 S:      Maintained
2248 T:      git git://github.com/vzapolskiy/linux-lpc32xx.git
2249 F:      Documentation/devicetree/bindings/i2c/i2c-pnx.txt
2250 F:      arch/arm/boot/dts/lpc32*
2251 F:      arch/arm/mach-lpc32xx/
2252 F:      drivers/i2c/busses/i2c-pnx.c
2253 F:      drivers/net/ethernet/nxp/lpc_eth.c
2254 F:      drivers/usb/host/ohci-nxp.c
2255 F:      drivers/watchdog/pnx4008_wdt.c
2256 N:      lpc32xx
2257
2258 ARM/MAGICIAN MACHINE SUPPORT
2259 M:      Philipp Zabel <philipp.zabel@gmail.com>
2260 S:      Maintained
2261
2262 ARM/Marvell Dove/MV78xx0/Orion SOC support
2263 M:      Andrew Lunn <andrew@lunn.ch>
2264 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2265 M:      Gregory Clement <gregory.clement@bootlin.com>
2266 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2267 S:      Maintained
2268 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gclement/mvebu.git
2269 F:      Documentation/devicetree/bindings/soc/dove/
2270 F:      arch/arm/boot/dts/dove*
2271 F:      arch/arm/boot/dts/orion5x*
2272 F:      arch/arm/mach-dove/
2273 F:      arch/arm/mach-mv78xx0/
2274 F:      arch/arm/mach-orion5x/
2275 F:      arch/arm/plat-orion/
2276 F:      drivers/soc/dove/
2277
2278 ARM/Marvell Kirkwood and Armada 370, 375, 38x, 39x, XP, 3700, 7K/8K, CN9130 SOC support
2279 M:      Andrew Lunn <andrew@lunn.ch>
2280 M:      Gregory Clement <gregory.clement@bootlin.com>
2281 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2282 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2283 S:      Maintained
2284 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gclement/mvebu.git
2285 F:      arch/arm/boot/dts/armada*
2286 F:      arch/arm/boot/dts/kirkwood*
2287 F:      arch/arm/configs/mvebu_*_defconfig
2288 F:      arch/arm/mach-mvebu/
2289 F:      arch/arm64/boot/dts/marvell/armada*
2290 F:      arch/arm64/boot/dts/marvell/cn913*
2291 F:      drivers/cpufreq/armada-37xx-cpufreq.c
2292 F:      drivers/cpufreq/armada-8k-cpufreq.c
2293 F:      drivers/cpufreq/mvebu-cpufreq.c
2294 F:      drivers/irqchip/irq-armada-370-xp.c
2295 F:      drivers/irqchip/irq-mvebu-*
2296 F:      drivers/pinctrl/mvebu/
2297 F:      drivers/rtc/rtc-armada38x.c
2298
2299 ARM/Mediatek RTC DRIVER
2300 M:      Eddie Huang <eddie.huang@mediatek.com>
2301 M:      Sean Wang <sean.wang@mediatek.com>
2302 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2303 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2304 S:      Maintained
2305 F:      Documentation/devicetree/bindings/rtc/rtc-mt2712.txt
2306 F:      Documentation/devicetree/bindings/rtc/rtc-mt7622.txt
2307 F:      drivers/rtc/rtc-mt2712.c
2308 F:      drivers/rtc/rtc-mt6397.c
2309 F:      drivers/rtc/rtc-mt7622.c
2310
2311 ARM/Mediatek SoC support
2312 M:      Matthias Brugger <matthias.bgg@gmail.com>
2313 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2314 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2315 S:      Maintained
2316 W:      https://mtk.wiki.kernel.org/
2317 C:      irc://chat.freenode.net/linux-mediatek
2318 F:      arch/arm/boot/dts/mt6*
2319 F:      arch/arm/boot/dts/mt7*
2320 F:      arch/arm/boot/dts/mt8*
2321 F:      arch/arm/mach-mediatek/
2322 F:      arch/arm64/boot/dts/mediatek/
2323 F:      drivers/soc/mediatek/
2324 N:      mtk
2325 N:      mt[678]
2326 K:      mediatek
2327
2328 ARM/Mediatek USB3 PHY DRIVER
2329 M:      Chunfeng Yun <chunfeng.yun@mediatek.com>
2330 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2331 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2332 S:      Maintained
2333 F:      Documentation/devicetree/bindings/phy/mediatek,*
2334 F:      drivers/phy/mediatek/
2335
2336 ARM/Microchip (AT91) SoC support
2337 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
2338 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
2339 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
2340 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2341 S:      Supported
2342 W:      http://www.linux4sam.org
2343 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/at91/linux.git
2344 F:      arch/arm/boot/dts/at91*.dts
2345 F:      arch/arm/boot/dts/at91*.dtsi
2346 F:      arch/arm/boot/dts/sama*.dts
2347 F:      arch/arm/boot/dts/sama*.dtsi
2348 F:      arch/arm/include/debug/at91.S
2349 F:      arch/arm/mach-at91/
2350 F:      drivers/memory/atmel*
2351 F:      drivers/watchdog/sama5d4_wdt.c
2352 F:      include/soc/at91/
2353 X:      drivers/input/touchscreen/atmel_mxt_ts.c
2354 X:      drivers/net/wireless/atmel/
2355 N:      at91
2356 N:      atmel
2357
2358 ARM/Microchip Sparx5 SoC support
2359 M:      Lars Povlsen <lars.povlsen@microchip.com>
2360 M:      Steen Hegelund <Steen.Hegelund@microchip.com>
2361 M:      UNGLinuxDriver@microchip.com
2362 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2363 S:      Supported
2364 T:      git git://github.com/microchip-ung/linux-upstream.git
2365 F:      arch/arm64/boot/dts/microchip/
2366 F:      drivers/pinctrl/pinctrl-microchip-sgpio.c
2367 N:      sparx5
2368
2369 Microchip Timer Counter Block (TCB) Capture Driver
2370 M:      Kamel Bouhara <kamel.bouhara@bootlin.com>
2371 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2372 L:      linux-iio@vger.kernel.org
2373 S:      Maintained
2374 F:      drivers/counter/microchip-tcb-capture.c
2375
2376 ARM/MILBEAUT ARCHITECTURE
2377 M:      Taichi Sugaya <sugaya.taichi@socionext.com>
2378 M:      Takao Orito <orito.takao@socionext.com>
2379 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2380 S:      Maintained
2381 F:      arch/arm/boot/dts/milbeaut*
2382 F:      arch/arm/mach-milbeaut/
2383 N:      milbeaut
2384
2385 ARM/MIOA701 MACHINE SUPPORT
2386 M:      Robert Jarzmik <robert.jarzmik@free.fr>
2387 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2388 S:      Maintained
2389 F:      arch/arm/mach-pxa/mioa701.c
2390
2391 ARM/MStar/Sigmastar Armv7 SoC support
2392 M:      Daniel Palmer <daniel@thingy.jp>
2393 M:      Romain Perier <romain.perier@gmail.com>
2394 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2395 S:      Maintained
2396 W:      http://linux-chenxing.org/
2397 T:      git git://github.com/linux-chenxing/linux.git
2398 F:      Documentation/devicetree/bindings/arm/mstar/*
2399 F:      Documentation/devicetree/bindings/clock/mstar,msc313-mpll.yaml
2400 F:      Documentation/devicetree/bindings/gpio/mstar,msc313-gpio.yaml
2401 F:      arch/arm/boot/dts/mstar-*
2402 F:      arch/arm/mach-mstar/
2403 F:      drivers/clk/mstar/
2404 F:      drivers/clocksource/timer-msc313e.c
2405 F:      drivers/gpio/gpio-msc313.c
2406 F:      drivers/rtc/rtc-msc313.c
2407 F:      drivers/watchdog/msc313e_wdt.c
2408 F:      include/dt-bindings/clock/mstar-*
2409 F:      include/dt-bindings/gpio/msc313-gpio.h
2410
2411 ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
2412 M:      Michael Petchkovsky <mkpetch@internode.on.net>
2413 S:      Maintained
2414
2415 ARM/NOMADIK/Ux500 ARCHITECTURES
2416 M:      Linus Walleij <linus.walleij@linaro.org>
2417 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2418 S:      Maintained
2419 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
2420 F:      Documentation/devicetree/bindings/arm/ste-*
2421 F:      Documentation/devicetree/bindings/arm/ux500.yaml
2422 F:      Documentation/devicetree/bindings/arm/ux500/
2423 F:      Documentation/devicetree/bindings/i2c/i2c-nomadik.txt
2424 F:      arch/arm/boot/dts/ste-*
2425 F:      arch/arm/mach-nomadik/
2426 F:      arch/arm/mach-ux500/
2427 F:      drivers/clk/clk-nomadik.c
2428 F:      drivers/clocksource/clksrc-dbx500-prcmu.c
2429 F:      drivers/dma/ste_dma40*
2430 F:      drivers/hwspinlock/u8500_hsem.c
2431 F:      drivers/i2c/busses/i2c-nomadik.c
2432 F:      drivers/iio/adc/ab8500-gpadc.c
2433 F:      drivers/mfd/ab8500*
2434 F:      drivers/mfd/abx500*
2435 F:      drivers/mfd/db8500*
2436 F:      drivers/pinctrl/nomadik/
2437 F:      drivers/rtc/rtc-ab8500.c
2438 F:      drivers/rtc/rtc-pl031.c
2439 F:      drivers/soc/ux500/
2440
2441 ARM/NUVOTON NPCM ARCHITECTURE
2442 M:      Avi Fishman <avifishman70@gmail.com>
2443 M:      Tomer Maimon <tmaimon77@gmail.com>
2444 M:      Tali Perry <tali.perry1@gmail.com>
2445 R:      Patrick Venture <venture@google.com>
2446 R:      Nancy Yuen <yuenn@google.com>
2447 R:      Benjamin Fair <benjaminfair@google.com>
2448 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2449 S:      Supported
2450 F:      Documentation/devicetree/bindings/*/*/*npcm*
2451 F:      Documentation/devicetree/bindings/*/*npcm*
2452 F:      Documentation/devicetree/bindings/arm/npcm/*
2453 F:      arch/arm/boot/dts/nuvoton-npcm*
2454 F:      arch/arm/mach-npcm/
2455 F:      drivers/*/*npcm*
2456 F:      drivers/*/*/*npcm*
2457 F:      include/dt-bindings/clock/nuvoton,npcm7xx-clock.h
2458
2459 ARM/NUVOTON WPCM450 ARCHITECTURE
2460 M:      Jonathan Neuschäfer <j.neuschaefer@gmx.net>
2461 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2462 S:      Maintained
2463 W:      https://github.com/neuschaefer/wpcm450/wiki
2464 F:      Documentation/devicetree/bindings/*/*wpcm*
2465 F:      arch/arm/boot/dts/nuvoton-wpcm450*
2466 F:      arch/arm/mach-npcm/wpcm450.c
2467 F:      drivers/*/*/*wpcm*
2468 F:      drivers/*/*wpcm*
2469
2470 ARM/NXP S32G ARCHITECTURE
2471 M:      Chester Lin <clin@suse.com>
2472 R:      Andreas Färber <afaerber@suse.de>
2473 R:      Matthias Brugger <mbrugger@suse.com>
2474 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2475 S:      Maintained
2476 F:      arch/arm64/boot/dts/freescale/s32g*.dts*
2477
2478 ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
2479 L:      openmoko-kernel@lists.openmoko.org (subscribers-only)
2480 S:      Orphan
2481 W:      http://wiki.openmoko.org/wiki/Neo_FreeRunner
2482 F:      arch/arm/mach-s3c/gta02.h
2483 F:      arch/arm/mach-s3c/mach-gta02.c
2484
2485 ARM/Orion SoC/Technologic Systems TS-78xx platform support
2486 M:      Alexander Clouter <alex@digriz.org.uk>
2487 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2488 S:      Maintained
2489 W:      http://www.digriz.org.uk/ts78xx/kernel
2490 F:      arch/arm/mach-orion5x/ts78xx-*
2491
2492 ARM/OXNAS platform support
2493 M:      Neil Armstrong <narmstrong@baylibre.com>
2494 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2495 L:      linux-oxnas@groups.io (moderated for non-subscribers)
2496 S:      Maintained
2497 F:      arch/arm/boot/dts/ox8*.dts*
2498 F:      arch/arm/mach-oxnas/
2499 F:      drivers/power/reset/oxnas-restart.c
2500 N:      oxnas
2501
2502 ARM/PALM TREO SUPPORT
2503 M:      Tomas Cech <sleep_walker@suse.com>
2504 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2505 S:      Maintained
2506 W:      http://hackndev.com
2507 F:      arch/arm/mach-pxa/palmtreo.*
2508
2509 ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
2510 M:      Marek Vasut <marek.vasut@gmail.com>
2511 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2512 S:      Maintained
2513 W:      http://hackndev.com
2514 F:      arch/arm/mach-pxa/include/mach/palmld.h
2515 F:      arch/arm/mach-pxa/include/mach/palmtc.h
2516 F:      arch/arm/mach-pxa/include/mach/palmtx.h
2517 F:      arch/arm/mach-pxa/palmld.c
2518 F:      arch/arm/mach-pxa/palmt5.*
2519 F:      arch/arm/mach-pxa/palmtc.c
2520 F:      arch/arm/mach-pxa/palmte2.*
2521 F:      arch/arm/mach-pxa/palmtx.c
2522
2523 ARM/PALMZ72 SUPPORT
2524 M:      Sergey Lapin <slapin@ossfans.org>
2525 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2526 S:      Maintained
2527 W:      http://hackndev.com
2528 F:      arch/arm/mach-pxa/palmz72.*
2529
2530 ARM/PLEB SUPPORT
2531 M:      Peter Chubb <pleb@gelato.unsw.edu.au>
2532 S:      Maintained
2533 W:      http://www.disy.cse.unsw.edu.au/Hardware/PLEB
2534
2535 ARM/PT DIGITAL BOARD PORT
2536 M:      Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
2537 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2538 S:      Maintained
2539 W:      http://www.armlinux.org.uk/
2540
2541 ARM/QUALCOMM SUPPORT
2542 M:      Andy Gross <agross@kernel.org>
2543 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
2544 L:      linux-arm-msm@vger.kernel.org
2545 S:      Maintained
2546 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/qcom/linux.git
2547 F:      Documentation/devicetree/bindings/*/qcom*
2548 F:      Documentation/devicetree/bindings/soc/qcom/
2549 F:      arch/arm/boot/dts/qcom-*.dts
2550 F:      arch/arm/boot/dts/qcom-*.dtsi
2551 F:      arch/arm/mach-qcom/
2552 F:      arch/arm64/boot/dts/qcom/
2553 F:      drivers/*/*/qcom*
2554 F:      drivers/*/*/qcom/
2555 F:      drivers/*/pm8???-*
2556 F:      drivers/*/qcom*
2557 F:      drivers/*/qcom/
2558 F:      drivers/bluetooth/btqcomsmd.c
2559 F:      drivers/clocksource/timer-qcom.c
2560 F:      drivers/cpuidle/cpuidle-qcom-spm.c
2561 F:      drivers/extcon/extcon-qcom*
2562 F:      drivers/i2c/busses/i2c-qcom-geni.c
2563 F:      drivers/i2c/busses/i2c-qup.c
2564 F:      drivers/iommu/msm*
2565 F:      drivers/mfd/ssbi.c
2566 F:      drivers/mmc/host/mmci_qcom*
2567 F:      drivers/mmc/host/sdhci-msm.c
2568 F:      drivers/pci/controller/dwc/pcie-qcom.c
2569 F:      drivers/phy/qualcomm/
2570 F:      drivers/power/*/msm*
2571 F:      drivers/reset/reset-qcom-*
2572 F:      drivers/ufs/host/ufs-qcom*
2573 F:      drivers/spi/spi-geni-qcom.c
2574 F:      drivers/spi/spi-qcom-qspi.c
2575 F:      drivers/spi/spi-qup.c
2576 F:      drivers/tty/serial/msm_serial.c
2577 F:      drivers/usb/dwc3/dwc3-qcom.c
2578 F:      include/dt-bindings/*/qcom*
2579 F:      include/linux/*/qcom*
2580 F:      include/linux/soc/qcom/
2581
2582 ARM/RADISYS ENP2611 MACHINE SUPPORT
2583 M:      Lennert Buytenhek <kernel@wantstofly.org>
2584 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2585 S:      Maintained
2586
2587 ARM/RDA MICRO ARCHITECTURE
2588 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
2589 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2590 L:      linux-unisoc@lists.infradead.org (moderated for non-subscribers)
2591 S:      Maintained
2592 F:      Documentation/devicetree/bindings/arm/rda.yaml
2593 F:      Documentation/devicetree/bindings/gpio/gpio-rda.yaml
2594 F:      Documentation/devicetree/bindings/interrupt-controller/rda,8810pl-intc.txt
2595 F:      Documentation/devicetree/bindings/serial/rda,8810pl-uart.yaml
2596 F:      Documentation/devicetree/bindings/timer/rda,8810pl-timer.yaml
2597 F:      arch/arm/boot/dts/rda8810pl-*
2598 F:      drivers/clocksource/timer-rda.c
2599 F:      drivers/gpio/gpio-rda.c
2600 F:      drivers/irqchip/irq-rda-intc.c
2601 F:      drivers/tty/serial/rda-uart.c
2602
2603 ARM/REALTEK ARCHITECTURE
2604 M:      Andreas Färber <afaerber@suse.de>
2605 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2606 L:      linux-realtek-soc@lists.infradead.org (moderated for non-subscribers)
2607 S:      Maintained
2608 F:      Documentation/devicetree/bindings/arm/realtek.yaml
2609 F:      arch/arm/boot/dts/rtd*
2610 F:      arch/arm/mach-realtek/
2611 F:      arch/arm64/boot/dts/realtek/
2612
2613 ARM/RENESAS ARM64 ARCHITECTURE
2614 M:      Geert Uytterhoeven <geert+renesas@glider.be>
2615 M:      Magnus Damm <magnus.damm@gmail.com>
2616 L:      linux-renesas-soc@vger.kernel.org
2617 S:      Supported
2618 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
2619 C:      irc://irc.libera.chat/renesas-soc
2620 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git next
2621 F:      Documentation/devicetree/bindings/arm/renesas.yaml
2622 F:      arch/arm64/boot/dts/renesas/
2623 F:      drivers/soc/renesas/
2624 F:      include/linux/soc/renesas/
2625
2626 ARM/RISCPC ARCHITECTURE
2627 M:      Russell King <linux@armlinux.org.uk>
2628 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2629 S:      Maintained
2630 W:      http://www.armlinux.org.uk/
2631 F:      arch/arm/include/asm/hardware/entry-macro-iomd.S
2632 F:      arch/arm/include/asm/hardware/ioc.h
2633 F:      arch/arm/include/asm/hardware/iomd.h
2634 F:      arch/arm/include/asm/hardware/memc.h
2635 F:      arch/arm/mach-rpc/
2636 F:      drivers/net/ethernet/8390/etherh.c
2637 F:      drivers/net/ethernet/i825xx/ether1*
2638 F:      drivers/net/ethernet/seeq/ether3*
2639 F:      drivers/scsi/arm/
2640
2641 ARM/Rockchip SoC support
2642 M:      Heiko Stuebner <heiko@sntech.de>
2643 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2644 L:      linux-rockchip@lists.infradead.org
2645 S:      Maintained
2646 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmind/linux-rockchip.git
2647 F:      Documentation/devicetree/bindings/i2c/i2c-rk3x.yaml
2648 F:      Documentation/devicetree/bindings/mmc/rockchip-dw-mshc.yaml
2649 F:      Documentation/devicetree/bindings/spi/spi-rockchip.yaml
2650 F:      arch/arm/boot/dts/rk3*
2651 F:      arch/arm/boot/dts/rv1108*
2652 F:      arch/arm/mach-rockchip/
2653 F:      drivers/*/*/*rockchip*
2654 F:      drivers/*/*rockchip*
2655 F:      drivers/clk/rockchip/
2656 F:      drivers/i2c/busses/i2c-rk3x.c
2657 F:      sound/soc/rockchip/
2658 N:      rockchip
2659
2660 ARM/SAMSUNG S3C, S5P AND EXYNOS ARM ARCHITECTURES
2661 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
2662 R:      Alim Akhtar <alim.akhtar@samsung.com>
2663 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2664 L:      linux-samsung-soc@vger.kernel.org
2665 S:      Maintained
2666 C:      irc://irc.libera.chat/linux-exynos
2667 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
2668 B:      mailto:linux-samsung-soc@vger.kernel.org
2669 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/krzk/linux.git
2670 F:      Documentation/arm/samsung/
2671 F:      Documentation/devicetree/bindings/arm/samsung/
2672 F:      Documentation/devicetree/bindings/power/pd-samsung.yaml
2673 F:      Documentation/devicetree/bindings/soc/samsung/
2674 F:      arch/arm/boot/dts/exynos*
2675 F:      arch/arm/boot/dts/s3c*
2676 F:      arch/arm/boot/dts/s5p*
2677 F:      arch/arm/mach-exynos*/
2678 F:      arch/arm/mach-s3c/
2679 F:      arch/arm/mach-s5p*/
2680 F:      arch/arm64/boot/dts/exynos/
2681 F:      drivers/*/*/*s3c24*
2682 F:      drivers/*/*s3c24*
2683 F:      drivers/*/*s3c64xx*
2684 F:      drivers/*/*s5pv210*
2685 F:      drivers/clocksource/samsung_pwm_timer.c
2686 F:      drivers/memory/samsung/
2687 F:      drivers/pwm/pwm-samsung.c
2688 F:      drivers/soc/samsung/
2689 F:      drivers/tty/serial/samsung*
2690 F:      include/clocksource/samsung_pwm.h
2691 F:      include/linux/platform_data/*s3c*
2692 F:      include/linux/serial_s3c.h
2693 F:      include/linux/soc/samsung/
2694 N:      exynos
2695 N:      s3c2410
2696 N:      s3c64xx
2697 N:      s5pv210
2698
2699 ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT
2700 M:      Łukasz Stelmach <l.stelmach@samsung.com>
2701 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2702 L:      linux-media@vger.kernel.org
2703 S:      Maintained
2704 F:      drivers/media/platform/samsung/s5p-g2d/
2705
2706 ARM/SAMSUNG S5P SERIES HDMI CEC SUBSYSTEM SUPPORT
2707 M:      Marek Szyprowski <m.szyprowski@samsung.com>
2708 L:      linux-samsung-soc@vger.kernel.org
2709 L:      linux-media@vger.kernel.org
2710 S:      Maintained
2711 F:      Documentation/devicetree/bindings/media/s5p-cec.txt
2712 F:      drivers/media/cec/platform/s5p/
2713
2714 ARM/SAMSUNG S5P SERIES JPEG CODEC SUPPORT
2715 M:      Andrzej Pietrasiewicz <andrzejtp2010@gmail.com>
2716 M:      Jacek Anaszewski <jacek.anaszewski@gmail.com>
2717 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
2718 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2719 L:      linux-media@vger.kernel.org
2720 S:      Maintained
2721 F:      drivers/media/platform/samsung/s5p-jpeg/
2722
2723 ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
2724 M:      Marek Szyprowski <m.szyprowski@samsung.com>
2725 M:      Andrzej Hajda <andrzej.hajda@intel.com>
2726 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2727 L:      linux-media@vger.kernel.org
2728 S:      Maintained
2729 F:      drivers/media/platform/samsung/s5p-mfc/
2730
2731 ARM/SHMOBILE ARM ARCHITECTURE
2732 M:      Geert Uytterhoeven <geert+renesas@glider.be>
2733 M:      Magnus Damm <magnus.damm@gmail.com>
2734 L:      linux-renesas-soc@vger.kernel.org
2735 S:      Supported
2736 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
2737 C:      irc://irc.libera.chat/renesas-soc
2738 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git next
2739 F:      Documentation/devicetree/bindings/arm/renesas.yaml
2740 F:      arch/arm/boot/dts/emev2*
2741 F:      arch/arm/boot/dts/gr-peach*
2742 F:      arch/arm/boot/dts/iwg20d-q7*
2743 F:      arch/arm/boot/dts/r7s*
2744 F:      arch/arm/boot/dts/r8a*
2745 F:      arch/arm/boot/dts/r9a*
2746 F:      arch/arm/boot/dts/sh*
2747 F:      arch/arm/configs/shmobile_defconfig
2748 F:      arch/arm/include/debug/renesas-scif.S
2749 F:      arch/arm/mach-shmobile/
2750 F:      drivers/soc/renesas/
2751 F:      include/linux/soc/renesas/
2752
2753 ARM/SOCFPGA ARCHITECTURE
2754 M:      Dinh Nguyen <dinguyen@kernel.org>
2755 S:      Maintained
2756 W:      http://www.rocketboards.org
2757 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
2758 F:      arch/arm/boot/dts/socfpga*
2759 F:      arch/arm/configs/socfpga_defconfig
2760 F:      arch/arm/mach-socfpga/
2761 F:      arch/arm64/boot/dts/altera/
2762 F:      arch/arm64/boot/dts/intel/
2763
2764 ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
2765 M:      Dinh Nguyen <dinguyen@kernel.org>
2766 S:      Maintained
2767 F:      drivers/clk/socfpga/
2768
2769 ARM/SOCFPGA EDAC SUPPORT
2770 M:      Dinh Nguyen <dinguyen@kernel.org>
2771 S:      Maintained
2772 F:      drivers/edac/altera_edac.[ch]
2773
2774 ARM/SPREADTRUM SoC SUPPORT
2775 M:      Orson Zhai <orsonzhai@gmail.com>
2776 M:      Baolin Wang <baolin.wang7@gmail.com>
2777 M:      Chunyan Zhang <zhang.lyra@gmail.com>
2778 S:      Maintained
2779 F:      arch/arm64/boot/dts/sprd
2780 N:      sprd
2781 N:      sc27xx
2782 N:      sc2731
2783
2784 ARM/STI ARCHITECTURE
2785 M:      Patrice Chotard <patrice.chotard@foss.st.com>
2786 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2787 S:      Maintained
2788 W:      http://www.stlinux.com
2789 F:      Documentation/devicetree/bindings/i2c/i2c-st.txt
2790 F:      arch/arm/boot/dts/sti*
2791 F:      arch/arm/mach-sti/
2792 F:      drivers/ata/ahci_st.c
2793 F:      drivers/char/hw_random/st-rng.c
2794 F:      drivers/clocksource/arm_global_timer.c
2795 F:      drivers/clocksource/clksrc_st_lpc.c
2796 F:      drivers/cpufreq/sti-cpufreq.c
2797 F:      drivers/dma/st_fdma*
2798 F:      drivers/i2c/busses/i2c-st.c
2799 F:      drivers/media/platform/st/sti/c8sectpfe/
2800 F:      drivers/media/rc/st_rc.c
2801 F:      drivers/mmc/host/sdhci-st.c
2802 F:      drivers/phy/st/phy-miphy28lp.c
2803 F:      drivers/phy/st/phy-stih407-usb.c
2804 F:      drivers/pinctrl/pinctrl-st.c
2805 F:      drivers/remoteproc/st_remoteproc.c
2806 F:      drivers/remoteproc/st_slim_rproc.c
2807 F:      drivers/reset/sti/
2808 F:      drivers/rtc/rtc-st-lpc.c
2809 F:      drivers/tty/serial/st-asc.c
2810 F:      drivers/usb/dwc3/dwc3-st.c
2811 F:      drivers/usb/host/ehci-st.c
2812 F:      drivers/usb/host/ohci-st.c
2813 F:      drivers/watchdog/st_lpc_wdt.c
2814 F:      include/linux/remoteproc/st_slim_rproc.h
2815
2816 ARM/STM32 ARCHITECTURE
2817 M:      Maxime Coquelin <mcoquelin.stm32@gmail.com>
2818 M:      Alexandre Torgue <alexandre.torgue@foss.st.com>
2819 L:      linux-stm32@st-md-mailman.stormreply.com (moderated for non-subscribers)
2820 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2821 S:      Maintained
2822 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/atorgue/stm32.git stm32-next
2823 F:      arch/arm/boot/dts/stm32*
2824 F:      arch/arm/mach-stm32/
2825 F:      drivers/clocksource/armv7m_systick.c
2826 N:      stm32
2827 N:      stm
2828
2829 ARM/Synaptics SoC support
2830 M:      Jisheng Zhang <jszhang@kernel.org>
2831 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2832 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2833 S:      Maintained
2834 F:      arch/arm/boot/dts/berlin*
2835 F:      arch/arm/mach-berlin/
2836 F:      arch/arm64/boot/dts/synaptics/
2837
2838 ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
2839 M:      Lennert Buytenhek <kernel@wantstofly.org>
2840 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2841 S:      Maintained
2842
2843 ARM/TEGRA HDMI CEC SUBSYSTEM SUPPORT
2844 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
2845 L:      linux-tegra@vger.kernel.org
2846 L:      linux-media@vger.kernel.org
2847 S:      Maintained
2848 F:      Documentation/devicetree/bindings/media/tegra-cec.txt
2849 F:      drivers/media/cec/platform/tegra/
2850
2851 ARM/TESLA FSD SoC SUPPORT
2852 M:      Alim Akhtar <alim.akhtar@samsung.com>
2853 M:      linux-fsd@tesla.com
2854 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2855 L:      linux-samsung-soc@vger.kernel.org
2856 S:      Maintained
2857 F:      arch/arm64/boot/dts/tesla*
2858
2859 ARM/TETON BGA MACHINE SUPPORT
2860 M:      "Mark F. Brown" <mark.brown314@gmail.com>
2861 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2862 S:      Maintained
2863
2864 ARM/TEXAS INSTRUMENT AEMIF/EMIF DRIVERS
2865 M:      Santosh Shilimkar <ssantosh@kernel.org>
2866 L:      linux-kernel@vger.kernel.org
2867 S:      Maintained
2868 F:      drivers/memory/*emif*
2869
2870 ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE
2871 M:      Nishanth Menon <nm@ti.com>
2872 M:      Santosh Shilimkar <ssantosh@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/ti/linux.git
2876 F:      arch/arm/boot/dts/keystone-*
2877 F:      arch/arm/mach-keystone/
2878
2879 ARM/TEXAS INSTRUMENT KEYSTONE CLOCK FRAMEWORK
2880 M:      Santosh Shilimkar <ssantosh@kernel.org>
2881 L:      linux-kernel@vger.kernel.org
2882 S:      Maintained
2883 F:      drivers/clk/keystone/
2884
2885 ARM/TEXAS INSTRUMENT KEYSTONE CLOCKSOURCE
2886 M:      Santosh Shilimkar <ssantosh@kernel.org>
2887 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2888 L:      linux-kernel@vger.kernel.org
2889 S:      Maintained
2890 F:      drivers/clocksource/timer-keystone.c
2891
2892 ARM/TEXAS INSTRUMENT KEYSTONE RESET DRIVER
2893 M:      Santosh Shilimkar <ssantosh@kernel.org>
2894 L:      linux-kernel@vger.kernel.org
2895 S:      Maintained
2896 F:      drivers/power/reset/keystone-reset.c
2897
2898 ARM/TEXAS INSTRUMENTS K3 ARCHITECTURE
2899 M:      Nishanth Menon <nm@ti.com>
2900 M:      Vignesh Raghavendra <vigneshr@ti.com>
2901 M:      Tero Kristo <kristo@kernel.org>
2902 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2903 S:      Supported
2904 F:      Documentation/devicetree/bindings/arm/ti/k3.yaml
2905 F:      arch/arm64/boot/dts/ti/Makefile
2906 F:      arch/arm64/boot/dts/ti/k3-*
2907 F:      include/dt-bindings/pinctrl/k3.h
2908
2909 ARM/THECUS N2100 MACHINE SUPPORT
2910 M:      Lennert Buytenhek <kernel@wantstofly.org>
2911 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2912 S:      Maintained
2913
2914 ARM/TOSA MACHINE SUPPORT
2915 M:      Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
2916 M:      Dirk Opfer <dirk@opfer-online.de>
2917 S:      Maintained
2918
2919 ARM/TOSHIBA VISCONTI ARCHITECTURE
2920 M:      Nobuhiro Iwamatsu <nobuhiro1.iwamatsu@toshiba.co.jp>
2921 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2922 S:      Supported
2923 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwamatsu/linux-visconti.git
2924 F:      Documentation/devicetree/bindings/arm/toshiba.yaml
2925 F:      Documentation/devicetree/bindings/clock/toshiba,tmpv770x-pipllct.yaml
2926 F:      Documentation/devicetree/bindings/clock/toshiba,tmpv770x-pismu.yaml
2927 F:      Documentation/devicetree/bindings/net/toshiba,visconti-dwmac.yaml
2928 F:      Documentation/devicetree/bindings/gpio/toshiba,gpio-visconti.yaml
2929 F:      Documentation/devicetree/bindings/pci/toshiba,visconti-pcie.yaml
2930 F:      Documentation/devicetree/bindings/pinctrl/toshiba,visconti-pinctrl.yaml
2931 F:      Documentation/devicetree/bindings/watchdog/toshiba,visconti-wdt.yaml
2932 F:      arch/arm64/boot/dts/toshiba/
2933 F:      drivers/clk/visconti/
2934 F:      drivers/net/ethernet/stmicro/stmmac/dwmac-visconti.c
2935 F:      drivers/gpio/gpio-visconti.c
2936 F:      drivers/pci/controller/dwc/pcie-visconti.c
2937 F:      drivers/pinctrl/visconti/
2938 F:      drivers/watchdog/visconti_wdt.c
2939 N:      visconti
2940
2941 ARM/UNIPHIER ARCHITECTURE
2942 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
2943 M:      Masami Hiramatsu <mhiramat@kernel.org>
2944 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2945 S:      Maintained
2946 F:      Documentation/devicetree/bindings/arm/socionext/uniphier.yaml
2947 F:      Documentation/devicetree/bindings/gpio/socionext,uniphier-gpio.yaml
2948 F:      Documentation/devicetree/bindings/pinctrl/socionext,uniphier-pinctrl.yaml
2949 F:      arch/arm/boot/dts/uniphier*
2950 F:      arch/arm/include/asm/hardware/cache-uniphier.h
2951 F:      arch/arm/mach-uniphier/
2952 F:      arch/arm/mm/cache-uniphier.c
2953 F:      arch/arm64/boot/dts/socionext/uniphier*
2954 F:      drivers/bus/uniphier-system-bus.c
2955 F:      drivers/clk/uniphier/
2956 F:      drivers/dma/uniphier-mdmac.c
2957 F:      drivers/gpio/gpio-uniphier.c
2958 F:      drivers/i2c/busses/i2c-uniphier*
2959 F:      drivers/irqchip/irq-uniphier-aidet.c
2960 F:      drivers/mmc/host/uniphier-sd.c
2961 F:      drivers/pinctrl/uniphier/
2962 F:      drivers/reset/reset-uniphier.c
2963 F:      drivers/tty/serial/8250/8250_uniphier.c
2964 N:      uniphier
2965
2966 ARM/VERSATILE EXPRESS PLATFORM
2967 M:      Liviu Dudau <liviu.dudau@arm.com>
2968 M:      Sudeep Holla <sudeep.holla@arm.com>
2969 M:      Lorenzo Pieralisi <lpieralisi@kernel.org>
2970 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2971 S:      Maintained
2972 F:      */*/*/vexpress*
2973 F:      */*/vexpress*
2974 F:      arch/arm/boot/dts/vexpress*
2975 F:      arch/arm/mach-vexpress/
2976 F:      arch/arm64/boot/dts/arm/
2977 F:      drivers/clk/versatile/clk-vexpress-osc.c
2978 F:      drivers/clocksource/timer-versatile.c
2979 N:      mps2
2980
2981 ARM/VFP SUPPORT
2982 M:      Russell King <linux@armlinux.org.uk>
2983 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2984 S:      Maintained
2985 W:      http://www.armlinux.org.uk/
2986 F:      arch/arm/vfp/
2987
2988 ARM/VOIPAC PXA270 SUPPORT
2989 M:      Marek Vasut <marek.vasut@gmail.com>
2990 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2991 S:      Maintained
2992 F:      arch/arm/mach-pxa/include/mach/vpac270.h
2993 F:      arch/arm/mach-pxa/vpac270.c
2994
2995 ARM/VT8500 ARM ARCHITECTURE
2996 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2997 S:      Orphan
2998 F:      Documentation/devicetree/bindings/i2c/i2c-wmt.txt
2999 F:      arch/arm/mach-vt8500/
3000 F:      drivers/clocksource/timer-vt8500.c
3001 F:      drivers/i2c/busses/i2c-wmt.c
3002 F:      drivers/mmc/host/wmt-sdmmc.c
3003 F:      drivers/pwm/pwm-vt8500.c
3004 F:      drivers/rtc/rtc-vt8500.c
3005 F:      drivers/tty/serial/vt8500_serial.c
3006 F:      drivers/usb/host/ehci-platform.c
3007 F:      drivers/usb/host/uhci-platform.c
3008 F:      drivers/video/fbdev/vt8500lcdfb.*
3009 F:      drivers/video/fbdev/wm8505fb*
3010 F:      drivers/video/fbdev/wmt_ge_rops.*
3011
3012 ARM/ZIPIT Z2 SUPPORT
3013 M:      Marek Vasut <marek.vasut@gmail.com>
3014 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3015 S:      Maintained
3016 F:      arch/arm/mach-pxa/include/mach/z2.h
3017 F:      arch/arm/mach-pxa/z2.c
3018
3019 ARM/ZYNQ ARCHITECTURE
3020 M:      Michal Simek <michal.simek@xilinx.com>
3021 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3022 S:      Supported
3023 W:      http://wiki.xilinx.com
3024 T:      git https://github.com/Xilinx/linux-xlnx.git
3025 F:      Documentation/devicetree/bindings/i2c/cdns,i2c-r1p10.yaml
3026 F:      Documentation/devicetree/bindings/i2c/xlnx,xps-iic-2.00.a.yaml
3027 F:      Documentation/devicetree/bindings/spi/xlnx,zynq-qspi.yaml
3028 F:      arch/arm/mach-zynq/
3029 F:      drivers/clocksource/timer-cadence-ttc.c
3030 F:      drivers/cpuidle/cpuidle-zynq.c
3031 F:      drivers/edac/synopsys_edac.c
3032 F:      drivers/i2c/busses/i2c-cadence.c
3033 F:      drivers/i2c/busses/i2c-xiic.c
3034 F:      drivers/mmc/host/sdhci-of-arasan.c
3035 N:      zynq
3036 N:      xilinx
3037
3038 ARM64 PORT (AARCH64 ARCHITECTURE)
3039 M:      Catalin Marinas <catalin.marinas@arm.com>
3040 M:      Will Deacon <will@kernel.org>
3041 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3042 S:      Maintained
3043 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux.git
3044 F:      Documentation/arm64/
3045 F:      arch/arm64/
3046 F:      tools/testing/selftests/arm64/
3047 X:      arch/arm64/boot/dts/
3048
3049 ARROW SPEEDCHIPS XRS7000 SERIES ETHERNET SWITCH DRIVER
3050 M:      George McCollister <george.mccollister@gmail.com>
3051 L:      netdev@vger.kernel.org
3052 S:      Maintained
3053 F:      Documentation/devicetree/bindings/net/dsa/arrow,xrs700x.yaml
3054 F:      drivers/net/dsa/xrs700x/*
3055 F:      net/dsa/tag_xrs700x.c
3056
3057 AS3645A LED FLASH CONTROLLER DRIVER
3058 M:      Sakari Ailus <sakari.ailus@iki.fi>
3059 L:      linux-leds@vger.kernel.org
3060 S:      Maintained
3061 F:      drivers/leds/flash/leds-as3645a.c
3062
3063 ASAHI KASEI AK7375 LENS VOICE COIL DRIVER
3064 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
3065 L:      linux-media@vger.kernel.org
3066 S:      Maintained
3067 T:      git git://linuxtv.org/media_tree.git
3068 F:      Documentation/devicetree/bindings/media/i2c/ak7375.txt
3069 F:      drivers/media/i2c/ak7375.c
3070
3071 ASAHI KASEI AK8974 DRIVER
3072 M:      Linus Walleij <linus.walleij@linaro.org>
3073 L:      linux-iio@vger.kernel.org
3074 S:      Supported
3075 W:      http://www.akm.com/
3076 F:      drivers/iio/magnetometer/ak8974.c
3077
3078 ASC7621 HARDWARE MONITOR DRIVER
3079 M:      George Joseph <george.joseph@fairview5.com>
3080 L:      linux-hwmon@vger.kernel.org
3081 S:      Maintained
3082 F:      Documentation/hwmon/asc7621.rst
3083 F:      drivers/hwmon/asc7621.c
3084
3085 ASIX AX88796C SPI ETHERNET ADAPTER
3086 M:      Łukasz Stelmach <l.stelmach@samsung.com>
3087 S:      Maintained
3088 F:      Documentation/devicetree/bindings/net/asix,ax88796c.yaml
3089 F:      drivers/net/ethernet/asix/ax88796c_*
3090
3091 ASPEED PECI CONTROLLER
3092 M:      Iwona Winiarska <iwona.winiarska@intel.com>
3093 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
3094 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
3095 S:      Supported
3096 F:      Documentation/devicetree/bindings/peci/peci-aspeed.yaml
3097 F:      drivers/peci/controller/peci-aspeed.c
3098
3099 ASPEED PINCTRL DRIVERS
3100 M:      Andrew Jeffery <andrew@aj.id.au>
3101 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
3102 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
3103 L:      linux-gpio@vger.kernel.org
3104 S:      Maintained
3105 F:      Documentation/devicetree/bindings/pinctrl/aspeed,*
3106 F:      drivers/pinctrl/aspeed/
3107
3108 ASPEED SCU INTERRUPT CONTROLLER DRIVER
3109 M:      Eddie James <eajames@linux.ibm.com>
3110 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
3111 S:      Maintained
3112 F:      Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2xxx-scu-ic.txt
3113 F:      drivers/irqchip/irq-aspeed-scu-ic.c
3114 F:      include/dt-bindings/interrupt-controller/aspeed-scu-ic.h
3115
3116 ASPEED SD/MMC DRIVER
3117 M:      Andrew Jeffery <andrew@aj.id.au>
3118 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
3119 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
3120 L:      linux-mmc@vger.kernel.org
3121 S:      Maintained
3122 F:      Documentation/devicetree/bindings/mmc/aspeed,sdhci.yaml
3123 F:      drivers/mmc/host/sdhci-of-aspeed*
3124
3125 ASPEED SMC SPI DRIVER
3126 M:      Chin-Ting Kuo <chin-ting_kuo@aspeedtech.com>
3127 M:      Cédric Le Goater <clg@kaod.org>
3128 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
3129 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
3130 L:      linux-spi@vger.kernel.org
3131 S:      Maintained
3132 F:      Documentation/devicetree/bindings/spi/aspeed,ast2600-fmc.yaml
3133 F:      drivers/spi/spi-aspeed-smc.c
3134
3135 ASPEED VIDEO ENGINE DRIVER
3136 M:      Eddie James <eajames@linux.ibm.com>
3137 L:      linux-media@vger.kernel.org
3138 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
3139 S:      Maintained
3140 F:      Documentation/devicetree/bindings/media/aspeed-video.txt
3141 F:      drivers/media/platform/aspeed/
3142
3143 ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
3144 M:      Corentin Chary <corentin.chary@gmail.com>
3145 L:      acpi4asus-user@lists.sourceforge.net
3146 L:      platform-driver-x86@vger.kernel.org
3147 S:      Maintained
3148 W:      http://acpi4asus.sf.net
3149 F:      drivers/platform/x86/asus*.c
3150 F:      drivers/platform/x86/eeepc*.c
3151
3152 ASUS TF103C DOCK DRIVER
3153 M:      Hans de Goede <hdegoede@redhat.com>
3154 L:      platform-driver-x86@vger.kernel.org
3155 S:      Maintained
3156 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
3157 F:      drivers/platform/x86/asus-tf103c-dock.c
3158
3159 ASUS WMI HARDWARE MONITOR DRIVER
3160 M:      Ed Brindley <kernel@maidavale.org>
3161 M:      Denis Pauk <pauk.denis@gmail.com>
3162 L:      linux-hwmon@vger.kernel.org
3163 S:      Maintained
3164 F:      drivers/hwmon/asus_wmi_sensors.c
3165
3166 ASUS WMI EC HARDWARE MONITOR DRIVER
3167 M:      Eugene Shalygin <eugene.shalygin@gmail.com>
3168 M:      Denis Pauk <pauk.denis@gmail.com>
3169 L:      linux-hwmon@vger.kernel.org
3170 S:      Maintained
3171 F:      drivers/hwmon/asus_wmi_ec_sensors.c
3172
3173 ASUS EC HARDWARE MONITOR DRIVER
3174 M:      Eugene Shalygin <eugene.shalygin@gmail.com>
3175 L:      linux-hwmon@vger.kernel.org
3176 S:      Maintained
3177 F:      drivers/hwmon/asus-ec-sensors.c
3178
3179 ASUS WIRELESS RADIO CONTROL DRIVER
3180 M:      João Paulo Rechi Vita <jprvita@gmail.com>
3181 L:      platform-driver-x86@vger.kernel.org
3182 S:      Maintained
3183 F:      drivers/platform/x86/asus-wireless.c
3184
3185 ASYMMETRIC KEYS
3186 M:      David Howells <dhowells@redhat.com>
3187 L:      keyrings@vger.kernel.org
3188 S:      Maintained
3189 F:      Documentation/crypto/asymmetric-keys.rst
3190 F:      crypto/asymmetric_keys/
3191 F:      include/crypto/pkcs7.h
3192 F:      include/crypto/public_key.h
3193 F:      include/linux/verification.h
3194
3195 ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
3196 R:      Dan Williams <dan.j.williams@intel.com>
3197 S:      Odd fixes
3198 W:      http://sourceforge.net/projects/xscaleiop
3199 F:      Documentation/crypto/async-tx-api.rst
3200 F:      crypto/async_tx/
3201 F:      include/linux/async_tx.h
3202
3203 AT24 EEPROM DRIVER
3204 M:      Bartosz Golaszewski <brgl@bgdev.pl>
3205 L:      linux-i2c@vger.kernel.org
3206 S:      Maintained
3207 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux.git
3208 F:      Documentation/devicetree/bindings/eeprom/at24.yaml
3209 F:      drivers/misc/eeprom/at24.c
3210
3211 ATA OVER ETHERNET (AOE) DRIVER
3212 M:      "Justin Sanders" <justin@coraid.com>
3213 S:      Supported
3214 W:      http://www.openaoe.org/
3215 F:      Documentation/admin-guide/aoe/
3216 F:      drivers/block/aoe/
3217
3218 ATC260X PMIC MFD DRIVER
3219 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
3220 M:      Cristian Ciocaltea <cristian.ciocaltea@gmail.com>
3221 L:      linux-actions@lists.infradead.org
3222 S:      Maintained
3223 F:      Documentation/devicetree/bindings/mfd/actions,atc260x.yaml
3224 F:      drivers/input/misc/atc260x-onkey.c
3225 F:      drivers/mfd/atc260*
3226 F:      drivers/power/reset/atc260x-poweroff.c
3227 F:      drivers/regulator/atc260x-regulator.c
3228 F:      include/linux/mfd/atc260x/*
3229
3230 ATHEROS 71XX/9XXX GPIO DRIVER
3231 M:      Alban Bedel <albeu@free.fr>
3232 S:      Maintained
3233 W:      https://github.com/AlbanBedel/linux
3234 T:      git git://github.com/AlbanBedel/linux
3235 F:      Documentation/devicetree/bindings/gpio/gpio-ath79.txt
3236 F:      drivers/gpio/gpio-ath79.c
3237
3238 ATHEROS 71XX/9XXX USB PHY DRIVER
3239 M:      Alban Bedel <albeu@free.fr>
3240 S:      Maintained
3241 W:      https://github.com/AlbanBedel/linux
3242 T:      git git://github.com/AlbanBedel/linux
3243 F:      Documentation/devicetree/bindings/phy/phy-ath79-usb.txt
3244 F:      drivers/phy/qualcomm/phy-ath79-usb.c
3245
3246 ATHEROS ATH GENERIC UTILITIES
3247 M:      Kalle Valo <kvalo@kernel.org>
3248 L:      linux-wireless@vger.kernel.org
3249 S:      Supported
3250 F:      drivers/net/wireless/ath/*
3251
3252 ATHEROS ATH5K WIRELESS DRIVER
3253 M:      Jiri Slaby <jirislaby@kernel.org>
3254 M:      Nick Kossifidis <mickflemm@gmail.com>
3255 M:      Luis Chamberlain <mcgrof@kernel.org>
3256 L:      linux-wireless@vger.kernel.org
3257 S:      Maintained
3258 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath5k
3259 F:      drivers/net/wireless/ath/ath5k/
3260
3261 ATHEROS ATH6KL WIRELESS DRIVER
3262 L:      linux-wireless@vger.kernel.org
3263 S:      Orphan
3264 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath6kl
3265 F:      drivers/net/wireless/ath/ath6kl/
3266
3267 ATI_REMOTE2 DRIVER
3268 M:      Ville Syrjala <syrjala@sci.fi>
3269 S:      Maintained
3270 F:      drivers/input/misc/ati_remote2.c
3271
3272 ATK0110 HWMON DRIVER
3273 M:      Luca Tettamanti <kronos.it@gmail.com>
3274 L:      linux-hwmon@vger.kernel.org
3275 S:      Maintained
3276 F:      drivers/hwmon/asus_atk0110.c
3277
3278 ATLX ETHERNET DRIVERS
3279 M:      Chris Snook <chris.snook@gmail.com>
3280 L:      netdev@vger.kernel.org
3281 S:      Maintained
3282 W:      http://sourceforge.net/projects/atl1
3283 W:      http://atl1.sourceforge.net
3284 F:      drivers/net/ethernet/atheros/
3285
3286 ATM
3287 M:      Chas Williams <3chas3@gmail.com>
3288 L:      linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
3289 L:      netdev@vger.kernel.org
3290 S:      Maintained
3291 W:      http://linux-atm.sourceforge.net
3292 F:      drivers/atm/
3293 F:      include/linux/atm*
3294 F:      include/uapi/linux/atm*
3295
3296 ATMEL MACB ETHERNET DRIVER
3297 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
3298 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
3299 S:      Supported
3300 F:      drivers/net/ethernet/cadence/
3301
3302 ATMEL MAXTOUCH DRIVER
3303 M:      Nick Dyer <nick@shmanahar.org>
3304 S:      Maintained
3305 T:      git git://github.com/ndyer/linux.git
3306 F:      Documentation/devicetree/bindings/input/atmel,maxtouch.yaml
3307 F:      drivers/input/touchscreen/atmel_mxt_ts.c
3308
3309 ATMEL WIRELESS DRIVER
3310 M:      Simon Kelley <simon@thekelleys.org.uk>
3311 L:      linux-wireless@vger.kernel.org
3312 S:      Maintained
3313 W:      http://www.thekelleys.org.uk/atmel
3314 W:      http://atmelwlandriver.sourceforge.net/
3315 F:      drivers/net/wireless/atmel/atmel*
3316
3317 ATOMIC INFRASTRUCTURE
3318 M:      Will Deacon <will@kernel.org>
3319 M:      Peter Zijlstra <peterz@infradead.org>
3320 R:      Boqun Feng <boqun.feng@gmail.com>
3321 R:      Mark Rutland <mark.rutland@arm.com>
3322 L:      linux-kernel@vger.kernel.org
3323 S:      Maintained
3324 F:      arch/*/include/asm/atomic*.h
3325 F:      include/*/atomic*.h
3326 F:      include/linux/refcount.h
3327 F:      Documentation/atomic_*.txt
3328 F:      scripts/atomic/
3329
3330 ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER
3331 M:      Bradley Grove <linuxdrivers@attotech.com>
3332 L:      linux-scsi@vger.kernel.org
3333 S:      Supported
3334 W:      http://www.attotech.com
3335 F:      drivers/scsi/esas2r
3336
3337 ATUSB IEEE 802.15.4 RADIO DRIVER
3338 M:      Stefan Schmidt <stefan@datenfreihafen.org>
3339 L:      linux-wpan@vger.kernel.org
3340 S:      Maintained
3341 F:      drivers/net/ieee802154/at86rf230.h
3342 F:      drivers/net/ieee802154/atusb.c
3343 F:      drivers/net/ieee802154/atusb.h
3344
3345 AUDIT SUBSYSTEM
3346 M:      Paul Moore <paul@paul-moore.com>
3347 M:      Eric Paris <eparis@redhat.com>
3348 L:      linux-audit@redhat.com (moderated for non-subscribers)
3349 S:      Supported
3350 W:      https://github.com/linux-audit
3351 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/audit.git
3352 F:      include/asm-generic/audit_*.h
3353 F:      include/linux/audit.h
3354 F:      include/linux/audit_arch.h
3355 F:      include/uapi/linux/audit.h
3356 F:      kernel/audit*
3357 F:      lib/*audit.c
3358
3359 AUXILIARY DISPLAY DRIVERS
3360 M:      Miguel Ojeda <ojeda@kernel.org>
3361 S:      Maintained
3362 F:      Documentation/devicetree/bindings/auxdisplay/
3363 F:      drivers/auxdisplay/
3364 F:      include/linux/cfag12864b.h
3365
3366 AVIA HX711 ANALOG DIGITAL CONVERTER IIO DRIVER
3367 M:      Andreas Klinger <ak@it-klinger.de>
3368 L:      linux-iio@vger.kernel.org
3369 S:      Maintained
3370 F:      Documentation/devicetree/bindings/iio/adc/avia-hx711.yaml
3371 F:      drivers/iio/adc/hx711.c
3372
3373 AX.25 NETWORK LAYER
3374 M:      Ralf Baechle <ralf@linux-mips.org>
3375 L:      linux-hams@vger.kernel.org
3376 S:      Maintained
3377 W:      http://www.linux-ax25.org/
3378 F:      include/net/ax25.h
3379 F:      include/uapi/linux/ax25.h
3380 F:      net/ax25/
3381
3382 AXENTIA ARM DEVICES
3383 M:      Peter Rosin <peda@axentia.se>
3384 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3385 S:      Maintained
3386 F:      arch/arm/boot/dts/at91-linea.dtsi
3387 F:      arch/arm/boot/dts/at91-natte.dtsi
3388 F:      arch/arm/boot/dts/at91-nattis-2-natte-2.dts
3389 F:      arch/arm/boot/dts/at91-tse850-3.dts
3390
3391 AXENTIA ASOC DRIVERS
3392 M:      Peter Rosin <peda@axentia.se>
3393 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3394 S:      Maintained
3395 F:      Documentation/devicetree/bindings/sound/axentia,*
3396 F:      sound/soc/atmel/tse850-pcm5142.c
3397
3398 AXI-FAN-CONTROL HARDWARE MONITOR DRIVER
3399 M:      Nuno Sá <nuno.sa@analog.com>
3400 L:      linux-hwmon@vger.kernel.org
3401 S:      Supported
3402 W:      https://ez.analog.com/linux-software-drivers
3403 F:      Documentation/devicetree/bindings/hwmon/adi,axi-fan-control.yaml
3404 F:      drivers/hwmon/axi-fan-control.c
3405
3406 AXXIA I2C CONTROLLER
3407 M:      Krzysztof Adamski <krzysztof.adamski@nokia.com>
3408 L:      linux-i2c@vger.kernel.org
3409 S:      Maintained
3410 F:      Documentation/devicetree/bindings/i2c/i2c-axxia.txt
3411 F:      drivers/i2c/busses/i2c-axxia.c
3412
3413 AZ6007 DVB DRIVER
3414 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
3415 L:      linux-media@vger.kernel.org
3416 S:      Maintained
3417 W:      https://linuxtv.org
3418 T:      git git://linuxtv.org/media_tree.git
3419 F:      drivers/media/usb/dvb-usb-v2/az6007.c
3420
3421 AZTECH FM RADIO RECEIVER DRIVER
3422 M:      Hans Verkuil <hverkuil@xs4all.nl>
3423 L:      linux-media@vger.kernel.org
3424 S:      Maintained
3425 W:      https://linuxtv.org
3426 T:      git git://linuxtv.org/media_tree.git
3427 F:      drivers/media/radio/radio-aztech*
3428
3429 B43 WIRELESS DRIVER
3430 L:      linux-wireless@vger.kernel.org
3431 L:      b43-dev@lists.infradead.org
3432 S:      Odd Fixes
3433 W:      https://wireless.wiki.kernel.org/en/users/Drivers/b43
3434 F:      drivers/net/wireless/broadcom/b43/
3435
3436 B43LEGACY WIRELESS DRIVER
3437 M:      Larry Finger <Larry.Finger@lwfinger.net>
3438 L:      linux-wireless@vger.kernel.org
3439 L:      b43-dev@lists.infradead.org
3440 S:      Maintained
3441 W:      https://wireless.wiki.kernel.org/en/users/Drivers/b43
3442 F:      drivers/net/wireless/broadcom/b43legacy/
3443
3444 BACKLIGHT CLASS/SUBSYSTEM
3445 M:      Lee Jones <lee.jones@linaro.org>
3446 M:      Daniel Thompson <daniel.thompson@linaro.org>
3447 M:      Jingoo Han <jingoohan1@gmail.com>
3448 L:      dri-devel@lists.freedesktop.org
3449 S:      Maintained
3450 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/backlight.git
3451 F:      Documentation/ABI/stable/sysfs-class-backlight
3452 F:      Documentation/ABI/testing/sysfs-class-backlight
3453 F:      Documentation/devicetree/bindings/leds/backlight
3454 F:      drivers/video/backlight/
3455 F:      include/linux/backlight.h
3456 F:      include/linux/pwm_backlight.h
3457
3458 BARCO P50 GPIO DRIVER
3459 M:      Santosh Kumar Yadav <santoshkumar.yadav@barco.com>
3460 M:      Peter Korsgaard <peter.korsgaard@barco.com>
3461 S:      Maintained
3462 F:      drivers/platform/x86/barco-p50-gpio.c
3463
3464 BATMAN ADVANCED
3465 M:      Marek Lindner <mareklindner@neomailbox.ch>
3466 M:      Simon Wunderlich <sw@simonwunderlich.de>
3467 M:      Antonio Quartulli <a@unstable.cc>
3468 M:      Sven Eckelmann <sven@narfation.org>
3469 L:      b.a.t.m.a.n@lists.open-mesh.org (moderated for non-subscribers)
3470 S:      Maintained
3471 W:      https://www.open-mesh.org/
3472 Q:      https://patchwork.open-mesh.org/project/batman/list/
3473 B:      https://www.open-mesh.org/projects/batman-adv/issues
3474 C:      ircs://irc.hackint.org/batadv
3475 T:      git https://git.open-mesh.org/linux-merge.git
3476 F:      Documentation/networking/batman-adv.rst
3477 F:      include/uapi/linux/batadv_packet.h
3478 F:      include/uapi/linux/batman_adv.h
3479 F:      net/batman-adv/
3480
3481 BAYCOM/HDLCDRV DRIVERS FOR AX.25
3482 M:      Thomas Sailer <t.sailer@alumni.ethz.ch>
3483 L:      linux-hams@vger.kernel.org
3484 S:      Maintained
3485 W:      http://www.baycom.org/~tom/ham/ham.html
3486 F:      drivers/net/hamradio/baycom*
3487
3488 BCACHE (BLOCK LAYER CACHE)
3489 M:      Coly Li <colyli@suse.de>
3490 M:      Kent Overstreet <kent.overstreet@gmail.com>
3491 L:      linux-bcache@vger.kernel.org
3492 S:      Maintained
3493 W:      http://bcache.evilpiepirate.org
3494 C:      irc://irc.oftc.net/bcache
3495 F:      drivers/md/bcache/
3496
3497 BDISP ST MEDIA DRIVER
3498 M:      Fabien Dessenne <fabien.dessenne@foss.st.com>
3499 L:      linux-media@vger.kernel.org
3500 S:      Supported
3501 W:      https://linuxtv.org
3502 T:      git git://linuxtv.org/media_tree.git
3503 F:      drivers/media/platform/st/sti/bdisp
3504
3505 BECKHOFF CX5020 ETHERCAT MASTER DRIVER
3506 M:      Dariusz Marcinkiewicz <reksio@newterm.pl>
3507 L:      netdev@vger.kernel.org
3508 S:      Maintained
3509 F:      drivers/net/ethernet/ec_bhf.c
3510
3511 BEFS FILE SYSTEM
3512 M:      Luis de Bethencourt <luisbg@kernel.org>
3513 M:      Salah Triki <salah.triki@gmail.com>
3514 S:      Maintained
3515 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luisbg/linux-befs.git
3516 F:      Documentation/filesystems/befs.rst
3517 F:      fs/befs/
3518
3519 BFQ I/O SCHEDULER
3520 M:      Paolo Valente <paolo.valente@linaro.org>
3521 M:      Jens Axboe <axboe@kernel.dk>
3522 L:      linux-block@vger.kernel.org
3523 S:      Maintained
3524 F:      Documentation/block/bfq-iosched.rst
3525 F:      block/bfq-*
3526
3527 BFS FILE SYSTEM
3528 M:      "Tigran A. Aivazian" <aivazian.tigran@gmail.com>
3529 S:      Maintained
3530 F:      Documentation/filesystems/bfs.rst
3531 F:      fs/bfs/
3532 F:      include/uapi/linux/bfs_fs.h
3533
3534 BITMAP API
3535 M:      Yury Norov <yury.norov@gmail.com>
3536 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
3537 R:      Rasmus Villemoes <linux@rasmusvillemoes.dk>
3538 S:      Maintained
3539 F:      include/linux/bitmap.h
3540 F:      include/linux/cpumask.h
3541 F:      include/linux/find.h
3542 F:      include/linux/nodemask.h
3543 F:      lib/bitmap.c
3544 F:      lib/cpumask.c
3545 F:      lib/find_bit.c
3546 F:      lib/find_bit_benchmark.c
3547 F:      lib/nodemask.c
3548 F:      lib/test_bitmap.c
3549 F:      tools/include/linux/bitmap.h
3550 F:      tools/include/linux/find.h
3551 F:      tools/lib/bitmap.c
3552 F:      tools/lib/find_bit.c
3553
3554 BLINKM RGB LED DRIVER
3555 M:      Jan-Simon Moeller <jansimon.moeller@gmx.de>
3556 S:      Maintained
3557 F:      drivers/leds/leds-blinkm.c
3558
3559 BLOCK LAYER
3560 M:      Jens Axboe <axboe@kernel.dk>
3561 L:      linux-block@vger.kernel.org
3562 S:      Maintained
3563 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
3564 F:      Documentation/ABI/stable/sysfs-block
3565 F:      Documentation/block/
3566 F:      block/
3567 F:      drivers/block/
3568 F:      include/linux/bio.h
3569 F:      include/linux/blk*
3570 F:      kernel/trace/blktrace.c
3571 F:      lib/sbitmap.c
3572
3573 BLOCK2MTD DRIVER
3574 M:      Joern Engel <joern@lazybastard.org>
3575 L:      linux-mtd@lists.infradead.org
3576 S:      Maintained
3577 F:      drivers/mtd/devices/block2mtd.c
3578
3579 BLUETOOTH DRIVERS
3580 M:      Marcel Holtmann <marcel@holtmann.org>
3581 M:      Johan Hedberg <johan.hedberg@gmail.com>
3582 M:      Luiz Augusto von Dentz <luiz.dentz@gmail.com>
3583 L:      linux-bluetooth@vger.kernel.org
3584 S:      Supported
3585 W:      http://www.bluez.org/
3586 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3587 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3588 F:      drivers/bluetooth/
3589
3590 BLUETOOTH SUBSYSTEM
3591 M:      Marcel Holtmann <marcel@holtmann.org>
3592 M:      Johan Hedberg <johan.hedberg@gmail.com>
3593 M:      Luiz Augusto von Dentz <luiz.dentz@gmail.com>
3594 L:      linux-bluetooth@vger.kernel.org
3595 S:      Supported
3596 W:      http://www.bluez.org/
3597 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3598 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3599 F:      include/net/bluetooth/
3600 F:      net/bluetooth/
3601
3602 BONDING DRIVER
3603 M:      Jay Vosburgh <j.vosburgh@gmail.com>
3604 M:      Veaceslav Falico <vfalico@gmail.com>
3605 M:      Andy Gospodarek <andy@greyhouse.net>
3606 L:      netdev@vger.kernel.org
3607 S:      Supported
3608 W:      http://sourceforge.net/projects/bonding/
3609 F:      Documentation/networking/bonding.rst
3610 F:      drivers/net/bonding/
3611 F:      include/net/bond*
3612 F:      include/uapi/linux/if_bonding.h
3613
3614 BOSCH SENSORTEC BMA400 ACCELEROMETER IIO DRIVER
3615 M:      Dan Robertson <dan@dlrobertson.com>
3616 L:      linux-iio@vger.kernel.org
3617 S:      Maintained
3618 F:      Documentation/devicetree/bindings/iio/accel/bosch,bma400.yaml
3619 F:      drivers/iio/accel/bma400*
3620
3621 BPF (Safe dynamic programs and tools)
3622 M:      Alexei Starovoitov <ast@kernel.org>
3623 M:      Daniel Borkmann <daniel@iogearbox.net>
3624 M:      Andrii Nakryiko <andrii@kernel.org>
3625 R:      Martin KaFai Lau <kafai@fb.com>
3626 R:      Song Liu <songliubraving@fb.com>
3627 R:      Yonghong Song <yhs@fb.com>
3628 R:      John Fastabend <john.fastabend@gmail.com>
3629 R:      KP Singh <kpsingh@kernel.org>
3630 L:      netdev@vger.kernel.org
3631 L:      bpf@vger.kernel.org
3632 S:      Supported
3633 W:      https://bpf.io/
3634 Q:      https://patchwork.kernel.org/project/netdevbpf/list/?delegate=121173
3635 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf.git
3636 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-next.git
3637 F:      Documentation/bpf/
3638 F:      Documentation/networking/filter.rst
3639 F:      Documentation/userspace-api/ebpf/
3640 F:      arch/*/net/*
3641 F:      include/linux/bpf*
3642 F:      include/linux/btf*
3643 F:      include/linux/filter.h
3644 F:      include/trace/events/xdp.h
3645 F:      include/uapi/linux/bpf*
3646 F:      include/uapi/linux/btf*
3647 F:      include/uapi/linux/filter.h
3648 F:      kernel/bpf/
3649 F:      kernel/trace/bpf_trace.c
3650 F:      lib/test_bpf.c
3651 F:      net/bpf/
3652 F:      net/core/filter.c
3653 F:      net/sched/act_bpf.c
3654 F:      net/sched/cls_bpf.c
3655 F:      samples/bpf/
3656 F:      scripts/bpf_doc.py
3657 F:      scripts/pahole-flags.sh
3658 F:      scripts/pahole-version.sh
3659 F:      tools/bpf/
3660 F:      tools/lib/bpf/
3661 F:      tools/testing/selftests/bpf/
3662 N:      bpf
3663 K:      bpf
3664
3665 BPF JIT for ARM
3666 M:      Shubham Bansal <illusionist.neo@gmail.com>
3667 L:      netdev@vger.kernel.org
3668 L:      bpf@vger.kernel.org
3669 S:      Maintained
3670 F:      arch/arm/net/
3671
3672 BPF JIT for ARM64
3673 M:      Daniel Borkmann <daniel@iogearbox.net>
3674 M:      Alexei Starovoitov <ast@kernel.org>
3675 M:      Zi Shen Lim <zlim.lnx@gmail.com>
3676 L:      netdev@vger.kernel.org
3677 L:      bpf@vger.kernel.org
3678 S:      Supported
3679 F:      arch/arm64/net/
3680
3681 BPF JIT for MIPS (32-BIT AND 64-BIT)
3682 M:      Johan Almbladh <johan.almbladh@anyfinetworks.com>
3683 M:      Paul Burton <paulburton@kernel.org>
3684 L:      netdev@vger.kernel.org
3685 L:      bpf@vger.kernel.org
3686 S:      Maintained
3687 F:      arch/mips/net/
3688
3689 BPF JIT for NFP NICs
3690 M:      Jakub Kicinski <kuba@kernel.org>
3691 L:      netdev@vger.kernel.org
3692 L:      bpf@vger.kernel.org
3693 S:      Supported
3694 F:      drivers/net/ethernet/netronome/nfp/bpf/
3695
3696 BPF JIT for POWERPC (32-BIT AND 64-BIT)
3697 M:      Naveen N. Rao <naveen.n.rao@linux.ibm.com>
3698 L:      netdev@vger.kernel.org
3699 L:      bpf@vger.kernel.org
3700 S:      Maintained
3701 F:      arch/powerpc/net/
3702
3703 BPF JIT for RISC-V (32-bit)
3704 M:      Luke Nelson <luke.r.nels@gmail.com>
3705 M:      Xi Wang <xi.wang@gmail.com>
3706 L:      netdev@vger.kernel.org
3707 L:      bpf@vger.kernel.org
3708 S:      Maintained
3709 F:      arch/riscv/net/
3710 X:      arch/riscv/net/bpf_jit_comp64.c
3711
3712 BPF JIT for RISC-V (64-bit)
3713 M:      Björn Töpel <bjorn@kernel.org>
3714 L:      netdev@vger.kernel.org
3715 L:      bpf@vger.kernel.org
3716 S:      Maintained
3717 F:      arch/riscv/net/
3718 X:      arch/riscv/net/bpf_jit_comp32.c
3719
3720 BPF JIT for S390
3721 M:      Ilya Leoshkevich <iii@linux.ibm.com>
3722 M:      Heiko Carstens <hca@linux.ibm.com>
3723 M:      Vasily Gorbik <gor@linux.ibm.com>
3724 L:      netdev@vger.kernel.org
3725 L:      bpf@vger.kernel.org
3726 S:      Maintained
3727 F:      arch/s390/net/
3728 X:      arch/s390/net/pnet.c
3729
3730 BPF JIT for SPARC (32-BIT AND 64-BIT)
3731 M:      David S. Miller <davem@davemloft.net>
3732 L:      netdev@vger.kernel.org
3733 L:      bpf@vger.kernel.org
3734 S:      Maintained
3735 F:      arch/sparc/net/
3736
3737 BPF JIT for X86 32-BIT
3738 M:      Wang YanQing <udknight@gmail.com>
3739 L:      netdev@vger.kernel.org
3740 L:      bpf@vger.kernel.org
3741 S:      Maintained
3742 F:      arch/x86/net/bpf_jit_comp32.c
3743
3744 BPF JIT for X86 64-BIT
3745 M:      Alexei Starovoitov <ast@kernel.org>
3746 M:      Daniel Borkmann <daniel@iogearbox.net>
3747 L:      netdev@vger.kernel.org
3748 L:      bpf@vger.kernel.org
3749 S:      Supported
3750 F:      arch/x86/net/
3751 X:      arch/x86/net/bpf_jit_comp32.c
3752
3753 BPF LSM (Security Audit and Enforcement using BPF)
3754 M:      KP Singh <kpsingh@kernel.org>
3755 R:      Florent Revest <revest@chromium.org>
3756 R:      Brendan Jackman <jackmanb@chromium.org>
3757 L:      bpf@vger.kernel.org
3758 S:      Maintained
3759 F:      Documentation/bpf/prog_lsm.rst
3760 F:      include/linux/bpf_lsm.h
3761 F:      kernel/bpf/bpf_lsm.c
3762 F:      security/bpf/
3763
3764 BROADCOM B44 10/100 ETHERNET DRIVER
3765 M:      Michael Chan <michael.chan@broadcom.com>
3766 L:      netdev@vger.kernel.org
3767 S:      Supported
3768 F:      drivers/net/ethernet/broadcom/b44.*
3769
3770 BROADCOM B53/SF2 ETHERNET SWITCH DRIVER
3771 M:      Florian Fainelli <f.fainelli@gmail.com>
3772 L:      netdev@vger.kernel.org
3773 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
3774 S:      Supported
3775 F:      Documentation/devicetree/bindings/net/dsa/brcm,b53.yaml
3776 F:      drivers/net/dsa/b53/*
3777 F:      drivers/net/dsa/bcm_sf2*
3778 F:      include/linux/dsa/brcm.h
3779 F:      include/linux/platform_data/b53.h
3780
3781 BROADCOM BCMBCA ARM ARCHITECTURE
3782 M:      William Zhang <william.zhang@broadcom.com>
3783 M:      Anand Gore <anand.gore@broadcom.com>
3784 M:      Kursad Oney <kursad.oney@broadcom.com>
3785 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
3786 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3787 S:      Maintained
3788 T:      git git://github.com/broadcom/stblinux.git
3789 F:      Documentation/devicetree/bindings/arm/bcm/brcm,bcmbca.yaml
3790 F:      arch/arm/boot/dts/bcm47622.dtsi
3791 F:      arch/arm/boot/dts/bcm947622.dts
3792 N:      bcmbca
3793 N:      bcm[9]?47622
3794
3795 BROADCOM BCM2711/BCM2835 ARM ARCHITECTURE
3796 M:      Nicolas Saenz Julienne <nsaenz@kernel.org>
3797 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
3798 L:      linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
3799 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3800 S:      Maintained
3801 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nsaenz/linux-rpi.git
3802 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3803 F:      drivers/pci/controller/pcie-brcmstb.c
3804 F:      drivers/staging/vc04_services
3805 N:      bcm2711
3806 N:      bcm283*
3807 N:      raspberrypi
3808
3809 BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE
3810 M:      Florian Fainelli <f.fainelli@gmail.com>
3811 M:      Ray Jui <rjui@broadcom.com>
3812 M:      Scott Branden <sbranden@broadcom.com>
3813 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
3814 S:      Maintained
3815 T:      git git://github.com/broadcom/mach-bcm
3816 F:      arch/arm/mach-bcm/
3817 N:      bcm281*
3818 N:      bcm113*
3819 N:      bcm216*
3820 N:      kona
3821
3822 BROADCOM BCM47XX MIPS ARCHITECTURE
3823 M:      Hauke Mehrtens <hauke@hauke-m.de>
3824 M:      Rafał Miłecki <zajec5@gmail.com>
3825 L:      linux-mips@vger.kernel.org
3826 S:      Maintained
3827 F:      Documentation/devicetree/bindings/mips/brcm/
3828 F:      arch/mips/bcm47xx/*
3829 F:      arch/mips/include/asm/mach-bcm47xx/*
3830
3831 BROADCOM BCM4908 ETHERNET DRIVER
3832 M:      Rafał Miłecki <rafal@milecki.pl>
3833 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
3834 L:      netdev@vger.kernel.org
3835 S:      Maintained
3836 F:      Documentation/devicetree/bindings/net/brcm,bcm4908-enet.yaml
3837 F:      drivers/net/ethernet/broadcom/bcm4908_enet.*
3838 F:      drivers/net/ethernet/broadcom/unimac.h
3839
3840 BROADCOM BCM4908 PINMUX DRIVER
3841 M:      Rafał Miłecki <rafal@milecki.pl>
3842 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
3843 L:      linux-gpio@vger.kernel.org
3844 S:      Maintained
3845 F:      Documentation/devicetree/bindings/pinctrl/brcm,bcm4908-pinctrl.yaml
3846 F:      drivers/pinctrl/bcm/pinctrl-bcm4908.c
3847
3848 BROADCOM BCM5301X ARM ARCHITECTURE
3849 M:      Florian Fainelli <f.fainelli@gmail.com>
3850 M:      Hauke Mehrtens <hauke@hauke-m.de>
3851 M:      Rafał Miłecki <zajec5@gmail.com>
3852 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
3853 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3854 S:      Maintained
3855 F:      arch/arm/boot/dts/bcm470*
3856 F:      arch/arm/boot/dts/bcm5301*
3857 F:      arch/arm/boot/dts/bcm953012*
3858 F:      arch/arm/mach-bcm/bcm_5301x.c
3859
3860 BROADCOM BCM53573 ARM ARCHITECTURE
3861 M:      Florian Fainelli <f.fainelli@gmail.com>
3862 M:      Rafał Miłecki <rafal@milecki.pl>
3863 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
3864 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3865 S:      Maintained
3866 F:      arch/arm/boot/dts/bcm47189*
3867 F:      arch/arm/boot/dts/bcm53573*
3868
3869 BROADCOM BCM63XX ARM ARCHITECTURE
3870 M:      Florian Fainelli <f.fainelli@gmail.com>
3871 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
3872 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3873 S:      Maintained
3874 T:      git git://github.com/broadcom/stblinux.git
3875 N:      bcm63xx
3876
3877 BROADCOM BCM63XX/BCM33XX UDC DRIVER
3878 M:      Kevin Cernekee <cernekee@gmail.com>
3879 L:      linux-usb@vger.kernel.org
3880 S:      Maintained
3881 F:      drivers/usb/gadget/udc/bcm63xx_udc.*
3882
3883 BROADCOM BCM7XXX ARM ARCHITECTURE
3884 M:      Florian Fainelli <f.fainelli@gmail.com>
3885 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
3886 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3887 S:      Maintained
3888 T:      git git://github.com/broadcom/stblinux.git
3889 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3890 F:      arch/arm/boot/dts/bcm7*.dts*
3891 F:      arch/arm/include/asm/hardware/cache-b15-rac.h
3892 F:      arch/arm/mach-bcm/*brcmstb*
3893 F:      arch/arm/mm/cache-b15-rac.c
3894 F:      drivers/bus/brcmstb_gisb.c
3895 F:      drivers/pci/controller/pcie-brcmstb.c
3896 N:      brcmstb
3897 N:      bcm7038
3898 N:      bcm7120
3899
3900 BROADCOM BDC DRIVER
3901 M:      Al Cooper <alcooperx@gmail.com>
3902 L:      linux-usb@vger.kernel.org
3903 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
3904 S:      Maintained
3905 F:      Documentation/devicetree/bindings/usb/brcm,bdc.yaml
3906 F:      drivers/usb/gadget/udc/bdc/
3907
3908 BROADCOM BMIPS CPUFREQ DRIVER
3909 M:      Markus Mayer <mmayer@broadcom.com>
3910 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
3911 L:      linux-pm@vger.kernel.org
3912 S:      Maintained
3913 F:      drivers/cpufreq/bmips-cpufreq.c
3914
3915 BROADCOM BMIPS MIPS ARCHITECTURE
3916 M:      Florian Fainelli <f.fainelli@gmail.com>
3917 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
3918 L:      linux-mips@vger.kernel.org
3919 S:      Maintained
3920 T:      git git://github.com/broadcom/stblinux.git
3921 F:      arch/mips/bmips/*
3922 F:      arch/mips/boot/dts/brcm/bcm*.dts*
3923 F:      arch/mips/include/asm/mach-bmips/*
3924 F:      arch/mips/kernel/*bmips*
3925 F:      drivers/soc/bcm/bcm63xx
3926 F:      drivers/irqchip/irq-bcm63*
3927 F:      drivers/irqchip/irq-bcm7*
3928 F:      drivers/irqchip/irq-brcmstb*
3929 F:      include/linux/bcm963xx_nvram.h
3930 F:      include/linux/bcm963xx_tag.h
3931
3932 BROADCOM BNX2 GIGABIT ETHERNET DRIVER
3933 M:      Rasesh Mody <rmody@marvell.com>
3934 M:      GR-Linux-NIC-Dev@marvell.com
3935 L:      netdev@vger.kernel.org
3936 S:      Supported
3937 F:      drivers/net/ethernet/broadcom/bnx2.*
3938 F:      drivers/net/ethernet/broadcom/bnx2_*
3939
3940 BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
3941 M:      Saurav Kashyap <skashyap@marvell.com>
3942 M:      Javed Hasan <jhasan@marvell.com>
3943 M:      GR-QLogic-Storage-Upstream@marvell.com
3944 L:      linux-scsi@vger.kernel.org
3945 S:      Supported
3946 F:      drivers/scsi/bnx2fc/
3947
3948 BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER
3949 M:      Nilesh Javali <njavali@marvell.com>
3950 M:      Manish Rangankar <mrangankar@marvell.com>
3951 M:      GR-QLogic-Storage-Upstream@marvell.com
3952 L:      linux-scsi@vger.kernel.org
3953 S:      Supported
3954 F:      drivers/scsi/bnx2i/
3955
3956 BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
3957 M:      Ariel Elior <aelior@marvell.com>
3958 M:      Sudarsana Kalluru <skalluru@marvell.com>
3959 M:      Manish Chopra <manishc@marvell.com>
3960 L:      netdev@vger.kernel.org
3961 S:      Supported
3962 F:      drivers/net/ethernet/broadcom/bnx2x/
3963
3964 BROADCOM BNXT_EN 50 GIGABIT ETHERNET DRIVER
3965 M:      Michael Chan <michael.chan@broadcom.com>
3966 L:      netdev@vger.kernel.org
3967 S:      Supported
3968 F:      drivers/firmware/broadcom/tee_bnxt_fw.c
3969 F:      drivers/net/ethernet/broadcom/bnxt/
3970 F:      include/linux/firmware/broadcom/tee_bnxt_fw.h
3971
3972 BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
3973 M:      Arend van Spriel <aspriel@gmail.com>
3974 M:      Franky Lin <franky.lin@broadcom.com>
3975 M:      Hante Meuleman <hante.meuleman@broadcom.com>
3976 L:      linux-wireless@vger.kernel.org
3977 L:      brcm80211-dev-list.pdl@broadcom.com
3978 L:      SHA-cyfmac-dev-list@infineon.com
3979 S:      Supported
3980 F:      drivers/net/wireless/broadcom/brcm80211/
3981
3982 BROADCOM BRCMSTB GPIO DRIVER
3983 M:      Doug Berger <opendmb@gmail.com>
3984 M:      Florian Fainelli <f.fainelli@gmail.com>
3985 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
3986 S:      Supported
3987 F:      Documentation/devicetree/bindings/gpio/brcm,brcmstb-gpio.yaml
3988 F:      drivers/gpio/gpio-brcmstb.c
3989
3990 BROADCOM BRCMSTB I2C DRIVER
3991 M:      Kamal Dasu <kdasu.kdev@gmail.com>
3992 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
3993 L:      linux-i2c@vger.kernel.org
3994 S:      Supported
3995 F:      Documentation/devicetree/bindings/i2c/brcm,brcmstb-i2c.yaml
3996 F:      drivers/i2c/busses/i2c-brcmstb.c
3997
3998 BROADCOM BRCMSTB UART DRIVER
3999 M:      Al Cooper <alcooperx@gmail.com>
4000 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4001 L:      linux-serial@vger.kernel.org
4002 S:      Maintained
4003 F:      Documentation/devicetree/bindings/serial/brcm,bcm7271-uart.yaml
4004 F:      drivers/tty/serial/8250/8250_bcm7271.c
4005
4006 BROADCOM BRCMSTB USB EHCI DRIVER
4007 M:      Al Cooper <alcooperx@gmail.com>
4008 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4009 L:      linux-usb@vger.kernel.org
4010 S:      Maintained
4011 F:      Documentation/devicetree/bindings/usb/brcm,bcm7445-ehci.yaml
4012 F:      drivers/usb/host/ehci-brcm.*
4013
4014 BROADCOM BRCMSTB USB PIN MAP DRIVER
4015 M:      Al Cooper <alcooperx@gmail.com>
4016 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4017 L:      linux-usb@vger.kernel.org
4018 S:      Maintained
4019 F:      Documentation/devicetree/bindings/usb/brcm,usb-pinmap.yaml
4020 F:      drivers/usb/misc/brcmstb-usb-pinmap.c
4021
4022 BROADCOM BRCMSTB USB2 and USB3 PHY DRIVER
4023 M:      Al Cooper <alcooperx@gmail.com>
4024 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4025 L:      linux-kernel@vger.kernel.org
4026 S:      Maintained
4027 F:      drivers/phy/broadcom/phy-brcm-usb*
4028
4029 BROADCOM ETHERNET PHY DRIVERS
4030 M:      Florian Fainelli <f.fainelli@gmail.com>
4031 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4032 L:      netdev@vger.kernel.org
4033 S:      Supported
4034 F:      Documentation/devicetree/bindings/net/broadcom-bcm87xx.txt
4035 F:      drivers/net/phy/bcm*.[ch]
4036 F:      drivers/net/phy/broadcom.c
4037 F:      include/linux/brcmphy.h
4038
4039 BROADCOM GENET ETHERNET DRIVER
4040 M:      Doug Berger <opendmb@gmail.com>
4041 M:      Florian Fainelli <f.fainelli@gmail.com>
4042 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4043 L:      netdev@vger.kernel.org
4044 S:      Supported
4045 F:      Documentation/devicetree/bindings/net/brcm,bcmgenet.yaml
4046 F:      Documentation/devicetree/bindings/net/brcm,unimac-mdio.yaml
4047 F:      drivers/net/ethernet/broadcom/genet/
4048 F:      drivers/net/ethernet/broadcom/unimac.h
4049 F:      drivers/net/mdio/mdio-bcm-unimac.c
4050 F:      include/linux/platform_data/bcmgenet.h
4051 F:      include/linux/platform_data/mdio-bcm-unimac.h
4052
4053 BROADCOM IPROC ARM ARCHITECTURE
4054 M:      Ray Jui <rjui@broadcom.com>
4055 M:      Scott Branden <sbranden@broadcom.com>
4056 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4057 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4058 S:      Maintained
4059 T:      git git://github.com/broadcom/stblinux.git
4060 F:      arch/arm64/boot/dts/broadcom/northstar2/*
4061 F:      arch/arm64/boot/dts/broadcom/stingray/*
4062 F:      drivers/clk/bcm/clk-ns*
4063 F:      drivers/clk/bcm/clk-sr*
4064 F:      drivers/pinctrl/bcm/pinctrl-ns*
4065 F:      include/dt-bindings/clock/bcm-sr*
4066 N:      iproc
4067 N:      cygnus
4068 N:      bcm[-_]nsp
4069 N:      bcm9113*
4070 N:      bcm9583*
4071 N:      bcm9585*
4072 N:      bcm9586*
4073 N:      bcm988312
4074 N:      bcm113*
4075 N:      bcm583*
4076 N:      bcm585*
4077 N:      bcm586*
4078 N:      bcm88312
4079 N:      hr2
4080 N:      stingray
4081
4082 BROADCOM IPROC GBIT ETHERNET DRIVER
4083 M:      Rafał Miłecki <rafal@milecki.pl>
4084 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4085 L:      netdev@vger.kernel.org
4086 S:      Maintained
4087 F:      Documentation/devicetree/bindings/net/brcm,amac.yaml
4088 F:      drivers/net/ethernet/broadcom/bgmac*
4089 F:      drivers/net/ethernet/broadcom/unimac.h
4090
4091 BROADCOM KONA GPIO DRIVER
4092 M:      Ray Jui <rjui@broadcom.com>
4093 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4094 S:      Supported
4095 F:      Documentation/devicetree/bindings/gpio/brcm,kona-gpio.txt
4096 F:      drivers/gpio/gpio-bcm-kona.c
4097
4098 BROADCOM MPI3 STORAGE CONTROLLER DRIVER
4099 M:      Sathya Prakash Veerichetty <sathya.prakash@broadcom.com>
4100 M:      Kashyap Desai <kashyap.desai@broadcom.com>
4101 M:      Sumit Saxena <sumit.saxena@broadcom.com>
4102 M:      Sreekanth Reddy <sreekanth.reddy@broadcom.com>
4103 L:      mpi3mr-linuxdrv.pdl@broadcom.com
4104 L:      linux-scsi@vger.kernel.org
4105 S:      Supported
4106 W:      https://www.broadcom.com/support/storage
4107 F:      drivers/scsi/mpi3mr/
4108
4109 BROADCOM NETXTREME-E ROCE DRIVER
4110 M:      Selvin Xavier <selvin.xavier@broadcom.com>
4111 L:      linux-rdma@vger.kernel.org
4112 S:      Supported
4113 W:      http://www.broadcom.com
4114 F:      drivers/infiniband/hw/bnxt_re/
4115 F:      include/uapi/rdma/bnxt_re-abi.h
4116
4117 BROADCOM NVRAM DRIVER
4118 M:      Rafał Miłecki <zajec5@gmail.com>
4119 L:      linux-mips@vger.kernel.org
4120 S:      Maintained
4121 F:      drivers/firmware/broadcom/*
4122
4123 BROADCOM PMB (POWER MANAGEMENT BUS) DRIVER
4124 M:      Rafał Miłecki <rafal@milecki.pl>
4125 M:      Florian Fainelli <f.fainelli@gmail.com>
4126 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4127 L:      linux-pm@vger.kernel.org
4128 S:      Maintained
4129 T:      git git://github.com/broadcom/stblinux.git
4130 F:      drivers/soc/bcm/bcm63xx/bcm-pmb.c
4131 F:      include/dt-bindings/soc/bcm-pmb.h
4132
4133 BROADCOM SPECIFIC AMBA DRIVER (BCMA)
4134 M:      Rafał Miłecki <zajec5@gmail.com>
4135 L:      linux-wireless@vger.kernel.org
4136 S:      Maintained
4137 F:      drivers/bcma/
4138 F:      include/linux/bcma/
4139
4140 BROADCOM SPI DRIVER
4141 M:      Kamal Dasu <kdasu.kdev@gmail.com>
4142 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4143 S:      Maintained
4144 F:      Documentation/devicetree/bindings/spi/brcm,spi-bcm-qspi.yaml
4145 F:      drivers/spi/spi-bcm-qspi.*
4146 F:      drivers/spi/spi-brcmstb-qspi.c
4147 F:      drivers/spi/spi-iproc-qspi.c
4148
4149 BROADCOM STB AVS CPUFREQ DRIVER
4150 M:      Markus Mayer <mmayer@broadcom.com>
4151 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4152 L:      linux-pm@vger.kernel.org
4153 S:      Maintained
4154 F:      Documentation/devicetree/bindings/cpufreq/brcm,stb-avs-cpu-freq.txt
4155 F:      drivers/cpufreq/brcmstb*
4156
4157 BROADCOM STB AVS TMON DRIVER
4158 M:      Markus Mayer <mmayer@broadcom.com>
4159 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4160 L:      linux-pm@vger.kernel.org
4161 S:      Maintained
4162 F:      Documentation/devicetree/bindings/thermal/brcm,avs-tmon.yaml
4163 F:      drivers/thermal/broadcom/brcmstb*
4164
4165 BROADCOM STB DPFE DRIVER
4166 M:      Markus Mayer <mmayer@broadcom.com>
4167 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4168 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4169 S:      Maintained
4170 F:      Documentation/devicetree/bindings/memory-controllers/brcm,dpfe-cpu.yaml
4171 F:      drivers/memory/brcmstb_dpfe.c
4172
4173 BROADCOM STB NAND FLASH DRIVER
4174 M:      Brian Norris <computersforpeace@gmail.com>
4175 M:      Kamal Dasu <kdasu.kdev@gmail.com>
4176 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4177 L:      linux-mtd@lists.infradead.org
4178 S:      Maintained
4179 F:      drivers/mtd/nand/raw/brcmnand/
4180 F:      include/linux/platform_data/brcmnand.h
4181
4182 BROADCOM STB PCIE DRIVER
4183 M:      Jim Quinlan <jim2101024@gmail.com>
4184 M:      Nicolas Saenz Julienne <nsaenz@kernel.org>
4185 M:      Florian Fainelli <f.fainelli@gmail.com>
4186 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4187 L:      linux-pci@vger.kernel.org
4188 S:      Maintained
4189 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
4190 F:      drivers/pci/controller/pcie-brcmstb.c
4191
4192 BROADCOM SYSTEMPORT ETHERNET DRIVER
4193 M:      Florian Fainelli <f.fainelli@gmail.com>
4194 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4195 L:      netdev@vger.kernel.org
4196 S:      Supported
4197 F:      drivers/net/ethernet/broadcom/bcmsysport.*
4198 F:      drivers/net/ethernet/broadcom/unimac.h
4199 F:      Documentation/devicetree/bindings/net/brcm,systemport.yaml
4200
4201 BROADCOM TG3 GIGABIT ETHERNET DRIVER
4202 M:      Siva Reddy Kallam <siva.kallam@broadcom.com>
4203 M:      Prashant Sreedharan <prashant@broadcom.com>
4204 M:      Michael Chan <mchan@broadcom.com>
4205 L:      netdev@vger.kernel.org
4206 S:      Supported
4207 F:      drivers/net/ethernet/broadcom/tg3.*
4208
4209 BROADCOM VK DRIVER
4210 M:      Scott Branden <scott.branden@broadcom.com>
4211 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4212 S:      Supported
4213 F:      drivers/misc/bcm-vk/
4214 F:      include/uapi/linux/misc/bcm_vk.h
4215
4216 BROCADE BFA FC SCSI DRIVER
4217 M:      Anil Gurumurthy <anil.gurumurthy@qlogic.com>
4218 M:      Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
4219 L:      linux-scsi@vger.kernel.org
4220 S:      Supported
4221 F:      drivers/scsi/bfa/
4222
4223 BROCADE BNA 10 GIGABIT ETHERNET DRIVER
4224 M:      Rasesh Mody <rmody@marvell.com>
4225 M:      Sudarsana Kalluru <skalluru@marvell.com>
4226 M:      GR-Linux-NIC-Dev@marvell.com
4227 L:      netdev@vger.kernel.org
4228 S:      Supported
4229 F:      drivers/net/ethernet/brocade/bna/
4230
4231 BSG (block layer generic sg v4 driver)
4232 M:      FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
4233 L:      linux-scsi@vger.kernel.org
4234 S:      Supported
4235 F:      block/bsg.c
4236 F:      include/linux/bsg.h
4237 F:      include/uapi/linux/bsg.h
4238
4239 BT87X AUDIO DRIVER
4240 M:      Clemens Ladisch <clemens@ladisch.de>
4241 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4242 S:      Maintained
4243 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
4244 F:      Documentation/sound/cards/bt87x.rst
4245 F:      sound/pci/bt87x.c
4246
4247 BT8XXGPIO DRIVER
4248 M:      Michael Buesch <m@bues.ch>
4249 S:      Maintained
4250 W:      http://bu3sch.de/btgpio.php
4251 F:      drivers/gpio/gpio-bt8xx.c
4252
4253 BTRFS FILE SYSTEM
4254 M:      Chris Mason <clm@fb.com>
4255 M:      Josef Bacik <josef@toxicpanda.com>
4256 M:      David Sterba <dsterba@suse.com>
4257 L:      linux-btrfs@vger.kernel.org
4258 S:      Maintained
4259 W:      http://btrfs.wiki.kernel.org/
4260 Q:      http://patchwork.kernel.org/project/linux-btrfs/list/
4261 C:      irc://irc.libera.chat/btrfs
4262 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kdave/linux.git
4263 F:      Documentation/filesystems/btrfs.rst
4264 F:      fs/btrfs/
4265 F:      include/linux/btrfs*
4266 F:      include/uapi/linux/btrfs*
4267
4268 BTTV VIDEO4LINUX DRIVER
4269 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
4270 L:      linux-media@vger.kernel.org
4271 S:      Odd fixes
4272 W:      https://linuxtv.org
4273 T:      git git://linuxtv.org/media_tree.git
4274 F:      Documentation/driver-api/media/drivers/bttv*
4275 F:      drivers/media/pci/bt8xx/bttv*
4276
4277 BUS FREQUENCY DRIVER FOR SAMSUNG EXYNOS
4278 M:      Chanwoo Choi <cw00.choi@samsung.com>
4279 L:      linux-pm@vger.kernel.org
4280 L:      linux-samsung-soc@vger.kernel.org
4281 S:      Maintained
4282 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
4283 F:      Documentation/devicetree/bindings/devfreq/exynos-bus.txt
4284 F:      drivers/devfreq/exynos-bus.c
4285
4286 BUSLOGIC SCSI DRIVER
4287 M:      Khalid Aziz <khalid@gonehiking.org>
4288 L:      linux-scsi@vger.kernel.org
4289 S:      Maintained
4290 F:      drivers/scsi/BusLogic.*
4291 F:      drivers/scsi/FlashPoint.*
4292
4293 C-MEDIA CMI8788 DRIVER
4294 M:      Clemens Ladisch <clemens@ladisch.de>
4295 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4296 S:      Maintained
4297 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
4298 F:      sound/pci/oxygen/
4299
4300 C-SKY ARCHITECTURE
4301 M:      Guo Ren <guoren@kernel.org>
4302 L:      linux-csky@vger.kernel.org
4303 S:      Supported
4304 T:      git https://github.com/c-sky/csky-linux.git
4305 F:      Documentation/devicetree/bindings/csky/
4306 F:      Documentation/devicetree/bindings/interrupt-controller/csky,*
4307 F:      Documentation/devicetree/bindings/timer/csky,*
4308 F:      arch/csky/
4309 F:      drivers/clocksource/timer-gx6605s.c
4310 F:      drivers/clocksource/timer-mp-csky.c
4311 F:      drivers/irqchip/irq-csky-*
4312 N:      csky
4313 K:      csky
4314
4315 CA8210 IEEE-802.15.4 RADIO DRIVER
4316 L:      linux-wpan@vger.kernel.org
4317 S:      Orphan
4318 W:      https://github.com/Cascoda/ca8210-linux.git
4319 F:      Documentation/devicetree/bindings/net/ieee802154/ca8210.txt
4320 F:      drivers/net/ieee802154/ca8210.c
4321
4322 CANAAN/KENDRYTE K210 SOC FPIOA DRIVER
4323 M:      Damien Le Moal <damien.lemoal@wdc.com>
4324 L:      linux-riscv@lists.infradead.org
4325 L:      linux-gpio@vger.kernel.org (pinctrl driver)
4326 F:      Documentation/devicetree/bindings/pinctrl/canaan,k210-fpioa.yaml
4327 F:      drivers/pinctrl/pinctrl-k210.c
4328
4329 CANAAN/KENDRYTE K210 SOC RESET CONTROLLER DRIVER
4330 M:      Damien Le Moal <damien.lemoal@wdc.com>
4331 L:      linux-kernel@vger.kernel.org
4332 L:      linux-riscv@lists.infradead.org
4333 S:      Maintained
4334 F:      Documentation/devicetree/bindings/reset/canaan,k210-rst.yaml
4335 F:      drivers/reset/reset-k210.c
4336
4337 CANAAN/KENDRYTE K210 SOC SYSTEM CONTROLLER DRIVER
4338 M:      Damien Le Moal <damien.lemoal@wdc.com>
4339 L:      linux-riscv@lists.infradead.org
4340 S:      Maintained
4341 F:      Documentation/devicetree/bindings/mfd/canaan,k210-sysctl.yaml
4342 F:      drivers/soc/canaan/
4343 F:      include/soc/canaan/
4344
4345 CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
4346 M:      David Howells <dhowells@redhat.com>
4347 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
4348 S:      Supported
4349 F:      Documentation/filesystems/caching/cachefiles.rst
4350 F:      fs/cachefiles/
4351
4352 CADENCE MIPI-CSI2 BRIDGES
4353 M:      Maxime Ripard <mripard@kernel.org>
4354 L:      linux-media@vger.kernel.org
4355 S:      Maintained
4356 F:      Documentation/devicetree/bindings/media/cdns,*.txt
4357 F:      drivers/media/platform/cadence/cdns-csi2*
4358
4359 CADENCE NAND DRIVER
4360 L:      linux-mtd@lists.infradead.org
4361 S:      Orphan
4362 F:      Documentation/devicetree/bindings/mtd/cadence-nand-controller.txt
4363 F:      drivers/mtd/nand/raw/cadence-nand-controller.c
4364
4365 CADENCE USB3 DRD IP DRIVER
4366 M:      Peter Chen <peter.chen@kernel.org>
4367 M:      Pawel Laszczak <pawell@cadence.com>
4368 R:      Roger Quadros <rogerq@kernel.org>
4369 R:      Aswath Govindraju <a-govindraju@ti.com>
4370 L:      linux-usb@vger.kernel.org
4371 S:      Maintained
4372 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4373 F:      Documentation/devicetree/bindings/usb/cdns,usb3.yaml
4374 F:      drivers/usb/cdns3/
4375 X:      drivers/usb/cdns3/cdnsp*
4376
4377 CADENCE USBSSP DRD IP DRIVER
4378 M:      Pawel Laszczak <pawell@cadence.com>
4379 L:      linux-usb@vger.kernel.org
4380 S:      Maintained
4381 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4382 F:      drivers/usb/cdns3/
4383 X:      drivers/usb/cdns3/cdns3*
4384
4385 CADET FM/AM RADIO RECEIVER DRIVER
4386 M:      Hans Verkuil <hverkuil@xs4all.nl>
4387 L:      linux-media@vger.kernel.org
4388 S:      Maintained
4389 W:      https://linuxtv.org
4390 T:      git git://linuxtv.org/media_tree.git
4391 F:      drivers/media/radio/radio-cadet*
4392
4393 CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
4394 L:      linux-media@vger.kernel.org
4395 S:      Orphan
4396 T:      git git://linuxtv.org/media_tree.git
4397 F:      Documentation/admin-guide/media/cafe_ccic*
4398 F:      drivers/media/platform/marvell/
4399
4400 CAIF NETWORK LAYER
4401 L:      netdev@vger.kernel.org
4402 S:      Orphan
4403 F:      Documentation/networking/caif/
4404 F:      drivers/net/caif/
4405 F:      include/net/caif/
4406 F:      include/uapi/linux/caif/
4407 F:      net/caif/
4408
4409 CAKE QDISC
4410 M:      Toke Høiland-Jørgensen <toke@toke.dk>
4411 L:      cake@lists.bufferbloat.net (moderated for non-subscribers)
4412 S:      Maintained
4413 F:      net/sched/sch_cake.c
4414
4415 CAN NETWORK DRIVERS
4416 M:      Wolfgang Grandegger <wg@grandegger.com>
4417 M:      Marc Kleine-Budde <mkl@pengutronix.de>
4418 L:      linux-can@vger.kernel.org
4419 S:      Maintained
4420 W:      https://github.com/linux-can
4421 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
4422 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
4423 F:      Documentation/devicetree/bindings/net/can/
4424 F:      Documentation/devicetree/bindings/phy/ti,tcan104x-can.yaml
4425 F:      drivers/net/can/
4426 F:      drivers/phy/phy-can-transceiver.c
4427 F:      include/linux/can/bittiming.h
4428 F:      include/linux/can/dev.h
4429 F:      include/linux/can/length.h
4430 F:      include/linux/can/platform/
4431 F:      include/linux/can/rx-offload.h
4432 F:      include/uapi/linux/can/error.h
4433 F:      include/uapi/linux/can/netlink.h
4434 F:      include/uapi/linux/can/vxcan.h
4435
4436 CAN NETWORK LAYER
4437 M:      Oliver Hartkopp <socketcan@hartkopp.net>
4438 M:      Marc Kleine-Budde <mkl@pengutronix.de>
4439 L:      linux-can@vger.kernel.org
4440 S:      Maintained
4441 W:      https://github.com/linux-can
4442 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
4443 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
4444 F:      Documentation/networking/can.rst
4445 F:      include/linux/can/can-ml.h
4446 F:      include/linux/can/core.h
4447 F:      include/linux/can/skb.h
4448 F:      include/net/netns/can.h
4449 F:      include/uapi/linux/can.h
4450 F:      include/uapi/linux/can/bcm.h
4451 F:      include/uapi/linux/can/gw.h
4452 F:      include/uapi/linux/can/isotp.h
4453 F:      include/uapi/linux/can/raw.h
4454 F:      net/can/
4455
4456 CAN-J1939 NETWORK LAYER
4457 M:      Robin van der Gracht <robin@protonic.nl>
4458 M:      Oleksij Rempel <o.rempel@pengutronix.de>
4459 R:      kernel@pengutronix.de
4460 L:      linux-can@vger.kernel.org
4461 S:      Maintained
4462 F:      Documentation/networking/j1939.rst
4463 F:      include/uapi/linux/can/j1939.h
4464 F:      net/can/j1939/
4465
4466 CAPABILITIES
4467 M:      Serge Hallyn <serge@hallyn.com>
4468 L:      linux-security-module@vger.kernel.org
4469 S:      Supported
4470 F:      include/linux/capability.h
4471 F:      include/uapi/linux/capability.h
4472 F:      kernel/capability.c
4473 F:      security/commoncap.c
4474
4475 CAPELLA MICROSYSTEMS LIGHT SENSOR DRIVER
4476 M:      Kevin Tsai <ktsai@capellamicro.com>
4477 S:      Maintained
4478 F:      drivers/iio/light/cm*
4479
4480 CARL9170 LINUX COMMUNITY WIRELESS DRIVER
4481 M:      Christian Lamparter <chunkeey@googlemail.com>
4482 L:      linux-wireless@vger.kernel.org
4483 S:      Maintained
4484 W:      https://wireless.wiki.kernel.org/en/users/Drivers/carl9170
4485 F:      drivers/net/wireless/ath/carl9170/
4486
4487 CAVIUM I2C DRIVER
4488 M:      Robert Richter <rric@kernel.org>
4489 S:      Odd Fixes
4490 W:      http://www.marvell.com
4491 F:      drivers/i2c/busses/i2c-octeon*
4492 F:      drivers/i2c/busses/i2c-thunderx*
4493
4494 CAVIUM LIQUIDIO NETWORK DRIVER
4495 M:      Derek Chickles <dchickles@marvell.com>
4496 M:      Satanand Burla <sburla@marvell.com>
4497 M:      Felix Manlunas <fmanlunas@marvell.com>
4498 L:      netdev@vger.kernel.org
4499 S:      Supported
4500 W:      http://www.marvell.com
4501 F:      drivers/net/ethernet/cavium/liquidio/
4502
4503 CAVIUM MMC DRIVER
4504 M:      Robert Richter <rric@kernel.org>
4505 S:      Odd Fixes
4506 W:      http://www.marvell.com
4507 F:      drivers/mmc/host/cavium*
4508
4509 CAVIUM OCTEON-TX CRYPTO DRIVER
4510 M:      George Cherian <gcherian@marvell.com>
4511 L:      linux-crypto@vger.kernel.org
4512 S:      Supported
4513 W:      http://www.marvell.com
4514 F:      drivers/crypto/cavium/cpt/
4515
4516 CAVIUM THUNDERX2 ARM64 SOC
4517 M:      Robert Richter <rric@kernel.org>
4518 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4519 S:      Odd Fixes
4520 F:      Documentation/devicetree/bindings/arm/cavium-thunder2.txt
4521 F:      arch/arm64/boot/dts/cavium/thunder2-99xx*
4522
4523 CBS/ETF/TAPRIO QDISCS
4524 M:      Vinicius Costa Gomes <vinicius.gomes@intel.com>
4525 S:      Maintained
4526 L:      netdev@vger.kernel.org
4527 F:      net/sched/sch_cbs.c
4528 F:      net/sched/sch_etf.c
4529 F:      net/sched/sch_taprio.c
4530
4531 CC2520 IEEE-802.15.4 RADIO DRIVER
4532 M:      Varka Bhadram <varkabhadram@gmail.com>
4533 L:      linux-wpan@vger.kernel.org
4534 S:      Maintained
4535 F:      Documentation/devicetree/bindings/net/ieee802154/cc2520.txt
4536 F:      drivers/net/ieee802154/cc2520.c
4537 F:      include/linux/spi/cc2520.h
4538
4539 CCREE ARM TRUSTZONE CRYPTOCELL REE DRIVER
4540 M:      Gilad Ben-Yossef <gilad@benyossef.com>
4541 L:      linux-crypto@vger.kernel.org
4542 S:      Supported
4543 W:      https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
4544 F:      drivers/crypto/ccree/
4545
4546 CCTRNG ARM TRUSTZONE CRYPTOCELL TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
4547 M:      Hadar Gat <hadar.gat@arm.com>
4548 L:      linux-crypto@vger.kernel.org
4549 S:      Supported
4550 F:      drivers/char/hw_random/cctrng.c
4551 F:      drivers/char/hw_random/cctrng.h
4552 F:      Documentation/devicetree/bindings/rng/arm-cctrng.yaml
4553 W:      https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
4554
4555 CEC FRAMEWORK
4556 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
4557 L:      linux-media@vger.kernel.org
4558 S:      Supported
4559 W:      http://linuxtv.org
4560 T:      git git://linuxtv.org/media_tree.git
4561 F:      Documentation/ABI/testing/debugfs-cec-error-inj
4562 F:      Documentation/devicetree/bindings/media/cec.txt
4563 F:      Documentation/driver-api/media/cec-core.rst
4564 F:      Documentation/userspace-api/media/cec
4565 F:      drivers/media/cec/
4566 F:      drivers/media/rc/keymaps/rc-cec.c
4567 F:      include/media/cec-notifier.h
4568 F:      include/media/cec.h
4569 F:      include/uapi/linux/cec-funcs.h
4570 F:      include/uapi/linux/cec.h
4571
4572 CEC GPIO DRIVER
4573 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
4574 L:      linux-media@vger.kernel.org
4575 S:      Supported
4576 W:      http://linuxtv.org
4577 T:      git git://linuxtv.org/media_tree.git
4578 F:      Documentation/devicetree/bindings/media/cec-gpio.txt
4579 F:      drivers/media/cec/platform/cec-gpio/
4580
4581 CELL BROADBAND ENGINE ARCHITECTURE
4582 M:      Arnd Bergmann <arnd@arndb.de>
4583 L:      linuxppc-dev@lists.ozlabs.org
4584 S:      Supported
4585 W:      http://www.ibm.com/developerworks/power/cell/
4586 F:      arch/powerpc/include/asm/cell*.h
4587 F:      arch/powerpc/include/asm/spu*.h
4588 F:      arch/powerpc/include/uapi/asm/spu*.h
4589 F:      arch/powerpc/platforms/cell/
4590
4591 CELLWISE CW2015 BATTERY DRIVER
4592 M:      Tobias Schrammm <t.schramm@manjaro.org>
4593 S:      Maintained
4594 F:      Documentation/devicetree/bindings/power/supply/cw2015_battery.yaml
4595 F:      drivers/power/supply/cw2015_battery.c
4596
4597 CEPH COMMON CODE (LIBCEPH)
4598 M:      Ilya Dryomov <idryomov@gmail.com>
4599 M:      Xiubo Li <xiubli@redhat.com>
4600 R:      Jeff Layton <jlayton@kernel.org>
4601 L:      ceph-devel@vger.kernel.org
4602 S:      Supported
4603 W:      http://ceph.com/
4604 T:      git git://github.com/ceph/ceph-client.git
4605 F:      include/linux/ceph/
4606 F:      include/linux/crush/
4607 F:      net/ceph/
4608
4609 CEPH DISTRIBUTED FILE SYSTEM CLIENT (CEPH)
4610 M:      Xiubo Li <xiubli@redhat.com>
4611 M:      Ilya Dryomov <idryomov@gmail.com>
4612 R:      Jeff Layton <jlayton@kernel.org>
4613 L:      ceph-devel@vger.kernel.org
4614 S:      Supported
4615 W:      http://ceph.com/
4616 T:      git git://github.com/ceph/ceph-client.git
4617 F:      Documentation/filesystems/ceph.rst
4618 F:      fs/ceph/
4619
4620 CERTIFICATE HANDLING
4621 M:      David Howells <dhowells@redhat.com>
4622 M:      David Woodhouse <dwmw2@infradead.org>
4623 L:      keyrings@vger.kernel.org
4624 S:      Maintained
4625 F:      Documentation/admin-guide/module-signing.rst
4626 F:      certs/
4627 F:      scripts/check-blacklist-hashes.awk
4628 F:      scripts/sign-file.c
4629 F:      tools/certs/
4630
4631 CFAG12864B LCD DRIVER
4632 M:      Miguel Ojeda <ojeda@kernel.org>
4633 S:      Maintained
4634 F:      drivers/auxdisplay/cfag12864b.c
4635 F:      include/linux/cfag12864b.h
4636
4637 CFAG12864BFB LCD FRAMEBUFFER DRIVER
4638 M:      Miguel Ojeda <ojeda@kernel.org>
4639 S:      Maintained
4640 F:      drivers/auxdisplay/cfag12864bfb.c
4641 F:      include/linux/cfag12864b.h
4642
4643 CHAR and MISC DRIVERS
4644 M:      Arnd Bergmann <arnd@arndb.de>
4645 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4646 S:      Supported
4647 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
4648 F:      drivers/char/
4649 F:      drivers/misc/
4650 F:      include/linux/miscdevice.h
4651 X:      drivers/char/agp/
4652 X:      drivers/char/hw_random/
4653 X:      drivers/char/ipmi/
4654 X:      drivers/char/random.c
4655 X:      drivers/char/tpm/
4656
4657 CHECKPATCH
4658 M:      Andy Whitcroft <apw@canonical.com>
4659 M:      Joe Perches <joe@perches.com>
4660 R:      Dwaipayan Ray <dwaipayanray1@gmail.com>
4661 R:      Lukas Bulwahn <lukas.bulwahn@gmail.com>
4662 S:      Maintained
4663 F:      scripts/checkpatch.pl
4664
4665 CHECKPATCH DOCUMENTATION
4666 M:      Dwaipayan Ray <dwaipayanray1@gmail.com>
4667 M:      Lukas Bulwahn <lukas.bulwahn@gmail.com>
4668 R:      Joe Perches <joe@perches.com>
4669 S:      Maintained
4670 F:      Documentation/dev-tools/checkpatch.rst
4671
4672 CHINESE DOCUMENTATION
4673 M:      Alex Shi <alexs@kernel.org>
4674 M:      Yanteng Si <siyanteng@loongson.cn>
4675 S:      Maintained
4676 F:      Documentation/translations/zh_CN/
4677
4678 CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
4679 M:      Peter Chen <peter.chen@kernel.org>
4680 L:      linux-usb@vger.kernel.org
4681 S:      Maintained
4682 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4683 F:      drivers/usb/chipidea/
4684
4685 CHIPONE ICN8318 I2C TOUCHSCREEN DRIVER
4686 M:      Hans de Goede <hdegoede@redhat.com>
4687 L:      linux-input@vger.kernel.org
4688 S:      Maintained
4689 F:      Documentation/devicetree/bindings/input/touchscreen/chipone,icn8318.yaml
4690 F:      drivers/input/touchscreen/chipone_icn8318.c
4691
4692 CHIPONE ICN8505 I2C TOUCHSCREEN DRIVER
4693 M:      Hans de Goede <hdegoede@redhat.com>
4694 L:      linux-input@vger.kernel.org
4695 S:      Maintained
4696 F:      drivers/input/touchscreen/chipone_icn8505.c
4697
4698 CHROME HARDWARE PLATFORM SUPPORT
4699 M:      Benson Leung <bleung@chromium.org>
4700 L:      chrome-platform@lists.linux.dev
4701 S:      Maintained
4702 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chrome-platform/linux.git
4703 F:      drivers/platform/chrome/
4704
4705 CHROMEOS EC CODEC DRIVER
4706 M:      Cheng-Yi Chiang <cychiang@chromium.org>
4707 M:      Tzung-Bi Shih <tzungbi@google.com>
4708 R:      Guenter Roeck <groeck@chromium.org>
4709 L:      chrome-platform@lists.linux.dev
4710 S:      Maintained
4711 F:      Documentation/devicetree/bindings/sound/google,cros-ec-codec.yaml
4712 F:      sound/soc/codecs/cros_ec_codec.*
4713
4714 CHROMEOS EC SUBDRIVERS
4715 M:      Benson Leung <bleung@chromium.org>
4716 R:      Guenter Roeck <groeck@chromium.org>
4717 L:      chrome-platform@lists.linux.dev
4718 S:      Maintained
4719 F:      drivers/power/supply/cros_usbpd-charger.c
4720 N:      cros_ec
4721 N:      cros-ec
4722
4723 CHROMEOS EC USB TYPE-C DRIVER
4724 M:      Prashant Malani <pmalani@chromium.org>
4725 L:      chrome-platform@lists.linux.dev
4726 S:      Maintained
4727 F:      drivers/platform/chrome/cros_ec_typec.c
4728
4729 CHROMEOS EC USB PD NOTIFY DRIVER
4730 M:      Prashant Malani <pmalani@chromium.org>
4731 L:      chrome-platform@lists.linux.dev
4732 S:      Maintained
4733 F:      drivers/platform/chrome/cros_usbpd_notify.c
4734 F:      include/linux/platform_data/cros_usbpd_notify.h
4735
4736 CHRONTEL CH7322 CEC DRIVER
4737 M:      Joe Tessler <jrt@google.com>
4738 L:      linux-media@vger.kernel.org
4739 S:      Maintained
4740 T:      git git://linuxtv.org/media_tree.git
4741 F:      Documentation/devicetree/bindings/media/i2c/chrontel,ch7322.yaml
4742 F:      drivers/media/cec/i2c/ch7322.c
4743
4744 CIRRUS LOGIC AUDIO CODEC DRIVERS
4745 M:      James Schulman <james.schulman@cirrus.com>
4746 M:      David Rhodes <david.rhodes@cirrus.com>
4747 M:      Lucas Tanure <tanureal@opensource.cirrus.com>
4748 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4749 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4750 L:      patches@opensource.cirrus.com
4751 S:      Maintained
4752 F:      Documentation/devicetree/bindings/sound/cirrus,cs*
4753 F:      include/dt-bindings/sound/cs*
4754 F:      sound/pci/hda/cs*
4755 F:      sound/soc/codecs/cs*
4756
4757 CIRRUS LOGIC DSP FIRMWARE DRIVER
4758 M:      Simon Trimmer <simont@opensource.cirrus.com>
4759 M:      Charles Keepax <ckeepax@opensource.cirrus.com>
4760 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4761 L:      patches@opensource.cirrus.com
4762 S:      Supported
4763 W:      https://github.com/CirrusLogic/linux-drivers/wiki
4764 T:      git https://github.com/CirrusLogic/linux-drivers.git
4765 F:      drivers/firmware/cirrus/*
4766 F:      include/linux/firmware/cirrus/*
4767
4768 CIRRUS LOGIC EP93XX ETHERNET DRIVER
4769 M:      Hartley Sweeten <hsweeten@visionengravers.com>
4770 L:      netdev@vger.kernel.org
4771 S:      Maintained
4772 F:      drivers/net/ethernet/cirrus/ep93xx_eth.c
4773
4774 CIRRUS LOGIC LOCHNAGAR DRIVER
4775 M:      Charles Keepax <ckeepax@opensource.cirrus.com>
4776 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4777 L:      patches@opensource.cirrus.com
4778 S:      Supported
4779 F:      Documentation/devicetree/bindings/clock/cirrus,lochnagar.yaml
4780 F:      Documentation/devicetree/bindings/hwmon/cirrus,lochnagar.yaml
4781 F:      Documentation/devicetree/bindings/mfd/cirrus,lochnagar.yaml
4782 F:      Documentation/devicetree/bindings/pinctrl/cirrus,lochnagar.yaml
4783 F:      Documentation/devicetree/bindings/sound/cirrus,lochnagar.yaml
4784 F:      Documentation/hwmon/lochnagar.rst
4785 F:      drivers/clk/clk-lochnagar.c
4786 F:      drivers/hwmon/lochnagar-hwmon.c
4787 F:      drivers/mfd/lochnagar-i2c.c
4788 F:      drivers/pinctrl/cirrus/pinctrl-lochnagar.c
4789 F:      drivers/regulator/lochnagar-regulator.c
4790 F:      include/dt-bindings/clk/lochnagar.h
4791 F:      include/dt-bindings/pinctrl/lochnagar.h
4792 F:      include/linux/mfd/lochnagar*
4793 F:      sound/soc/codecs/lochnagar-sc.c
4794
4795 CIRRUS LOGIC MADERA CODEC DRIVERS
4796 M:      Charles Keepax <ckeepax@opensource.cirrus.com>
4797 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4798 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4799 L:      patches@opensource.cirrus.com
4800 S:      Supported
4801 W:      https://github.com/CirrusLogic/linux-drivers/wiki
4802 T:      git https://github.com/CirrusLogic/linux-drivers.git
4803 F:      Documentation/devicetree/bindings/mfd/cirrus,madera.yaml
4804 F:      Documentation/devicetree/bindings/pinctrl/cirrus,madera.yaml
4805 F:      Documentation/devicetree/bindings/sound/cirrus,madera.yaml
4806 F:      drivers/gpio/gpio-madera*
4807 F:      drivers/irqchip/irq-madera*
4808 F:      drivers/mfd/cs47l*
4809 F:      drivers/mfd/madera*
4810 F:      drivers/pinctrl/cirrus/*
4811 F:      include/dt-bindings/sound/madera*
4812 F:      include/linux/irqchip/irq-madera*
4813 F:      include/linux/mfd/madera/*
4814 F:      include/sound/madera*
4815 F:      sound/soc/codecs/cs47l*
4816 F:      sound/soc/codecs/madera*
4817
4818 CISCO FCOE HBA DRIVER
4819 M:      Satish Kharat <satishkh@cisco.com>
4820 M:      Sesidhar Baddela <sebaddel@cisco.com>
4821 M:      Karan Tilak Kumar <kartilak@cisco.com>
4822 L:      linux-scsi@vger.kernel.org
4823 S:      Supported
4824 F:      drivers/scsi/fnic/
4825
4826 CISCO SCSI HBA DRIVER
4827 M:      Karan Tilak Kumar <kartilak@cisco.com>
4828 M:      Sesidhar Baddela <sebaddel@cisco.com>
4829 L:      linux-scsi@vger.kernel.org
4830 S:      Supported
4831 F:      drivers/scsi/snic/
4832
4833 CISCO VIC ETHERNET NIC DRIVER
4834 M:      Christian Benvenuti <benve@cisco.com>
4835 M:      Govindarajulu Varadarajan <_govind@gmx.com>
4836 S:      Supported
4837 F:      drivers/net/ethernet/cisco/enic/
4838
4839 CISCO VIC LOW LATENCY NIC DRIVER
4840 M:      Christian Benvenuti <benve@cisco.com>
4841 M:      Nelson Escobar <neescoba@cisco.com>
4842 S:      Supported
4843 F:      drivers/infiniband/hw/usnic/
4844
4845 CLANG-FORMAT FILE
4846 M:      Miguel Ojeda <ojeda@kernel.org>
4847 S:      Maintained
4848 F:      .clang-format
4849
4850 CLANG/LLVM BUILD SUPPORT
4851 M:      Nathan Chancellor <nathan@kernel.org>
4852 M:      Nick Desaulniers <ndesaulniers@google.com>
4853 R:      Tom Rix <trix@redhat.com>
4854 L:      llvm@lists.linux.dev
4855 S:      Supported
4856 W:      https://clangbuiltlinux.github.io/
4857 B:      https://github.com/ClangBuiltLinux/linux/issues
4858 C:      irc://irc.libera.chat/clangbuiltlinux
4859 F:      Documentation/kbuild/llvm.rst
4860 F:      include/linux/compiler-clang.h
4861 F:      scripts/Makefile.clang
4862 F:      scripts/clang-tools/
4863 K:      \b(?i:clang|llvm)\b
4864
4865 CLANG CONTROL FLOW INTEGRITY SUPPORT
4866 M:      Sami Tolvanen <samitolvanen@google.com>
4867 M:      Kees Cook <keescook@chromium.org>
4868 R:      Nathan Chancellor <nathan@kernel.org>
4869 R:      Nick Desaulniers <ndesaulniers@google.com>
4870 L:      llvm@lists.linux.dev
4871 S:      Supported
4872 B:      https://github.com/ClangBuiltLinux/linux/issues
4873 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/clang/features
4874 F:      include/linux/cfi.h
4875 F:      kernel/cfi.c
4876
4877 CLK API
4878 M:      Russell King <linux@armlinux.org.uk>
4879 L:      linux-clk@vger.kernel.org
4880 S:      Maintained
4881 F:      include/linux/clk.h
4882
4883 CLOCKSOURCE, CLOCKEVENT DRIVERS
4884 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4885 M:      Thomas Gleixner <tglx@linutronix.de>
4886 L:      linux-kernel@vger.kernel.org
4887 S:      Supported
4888 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
4889 F:      Documentation/devicetree/bindings/timer/
4890 F:      drivers/clocksource/
4891
4892 CMPC ACPI DRIVER
4893 M:      Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
4894 M:      Daniel Oliveira Nascimento <don@syst.com.br>
4895 L:      platform-driver-x86@vger.kernel.org
4896 S:      Supported
4897 F:      drivers/platform/x86/classmate-laptop.c
4898
4899 COBALT MEDIA DRIVER
4900 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
4901 L:      linux-media@vger.kernel.org
4902 S:      Supported
4903 W:      https://linuxtv.org
4904 T:      git git://linuxtv.org/media_tree.git
4905 F:      drivers/media/pci/cobalt/
4906
4907 COCCINELLE/Semantic Patches (SmPL)
4908 M:      Julia Lawall <Julia.Lawall@inria.fr>
4909 M:      Nicolas Palix <nicolas.palix@imag.fr>
4910 L:      cocci@inria.fr (moderated for non-subscribers)
4911 S:      Supported
4912 W:      https://coccinelle.gitlabpages.inria.fr/website/
4913 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jlawall/linux.git
4914 F:      Documentation/dev-tools/coccinelle.rst
4915 F:      scripts/coccicheck
4916 F:      scripts/coccinelle/
4917
4918 CODA FILE SYSTEM
4919 M:      Jan Harkes <jaharkes@cs.cmu.edu>
4920 M:      coda@cs.cmu.edu
4921 L:      codalist@coda.cs.cmu.edu
4922 S:      Maintained
4923 W:      http://www.coda.cs.cmu.edu/
4924 F:      Documentation/filesystems/coda.rst
4925 F:      fs/coda/
4926 F:      include/linux/coda*.h
4927 F:      include/uapi/linux/coda*.h
4928
4929 CODA V4L2 MEM2MEM DRIVER
4930 M:      Philipp Zabel <p.zabel@pengutronix.de>
4931 L:      linux-media@vger.kernel.org
4932 S:      Maintained
4933 F:      Documentation/devicetree/bindings/media/coda.yaml
4934 F:      drivers/media/platform/chips-media/
4935
4936 CODE OF CONDUCT
4937 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4938 S:      Supported
4939 F:      Documentation/process/code-of-conduct-interpretation.rst
4940 F:      Documentation/process/code-of-conduct.rst
4941
4942 COMEDI DRIVERS
4943 M:      Ian Abbott <abbotti@mev.co.uk>
4944 M:      H Hartley Sweeten <hsweeten@visionengravers.com>
4945 S:      Odd Fixes
4946 F:      drivers/comedi/
4947 F:      include/linux/comedi/
4948 F:      include/uapi/linux/comedi.h
4949
4950 COMMON CLK FRAMEWORK
4951 M:      Michael Turquette <mturquette@baylibre.com>
4952 M:      Stephen Boyd <sboyd@kernel.org>
4953 L:      linux-clk@vger.kernel.org
4954 S:      Maintained
4955 Q:      http://patchwork.kernel.org/project/linux-clk/list/
4956 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git
4957 F:      Documentation/devicetree/bindings/clock/
4958 F:      drivers/clk/
4959 F:      include/linux/clk-pr*
4960 F:      include/linux/clk/
4961 F:      include/linux/of_clk.h
4962 X:      drivers/clk/clkdev.c
4963
4964 COMMON INTERNET FILE SYSTEM CLIENT (CIFS)
4965 M:      Steve French <sfrench@samba.org>
4966 L:      linux-cifs@vger.kernel.org
4967 L:      samba-technical@lists.samba.org (moderated for non-subscribers)
4968 S:      Supported
4969 W:      http://linux-cifs.samba.org/
4970 T:      git git://git.samba.org/sfrench/cifs-2.6.git
4971 F:      Documentation/admin-guide/cifs/
4972 F:      fs/cifs/
4973 F:      fs/smbfs_common/
4974
4975 COMPACTPCI HOTPLUG CORE
4976 M:      Scott Murray <scott@spiteful.org>
4977 L:      linux-pci@vger.kernel.org
4978 S:      Maintained
4979 F:      drivers/pci/hotplug/cpci_hotplug*
4980
4981 COMPACTPCI HOTPLUG GENERIC DRIVER
4982 M:      Scott Murray <scott@spiteful.org>
4983 L:      linux-pci@vger.kernel.org
4984 S:      Maintained
4985 F:      drivers/pci/hotplug/cpcihp_generic.c
4986
4987 COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
4988 M:      Scott Murray <scott@spiteful.org>
4989 L:      linux-pci@vger.kernel.org
4990 S:      Maintained
4991 F:      drivers/pci/hotplug/cpcihp_zt5550.*
4992
4993 COMPAL LAPTOP SUPPORT
4994 M:      Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
4995 L:      platform-driver-x86@vger.kernel.org
4996 S:      Maintained
4997 F:      drivers/platform/x86/compal-laptop.c
4998
4999 COMPILER ATTRIBUTES
5000 M:      Miguel Ojeda <ojeda@kernel.org>
5001 R:      Nick Desaulniers <ndesaulniers@google.com>
5002 S:      Maintained
5003 F:      include/linux/compiler_attributes.h
5004
5005 COMPUTE EXPRESS LINK (CXL)
5006 M:      Alison Schofield <alison.schofield@intel.com>
5007 M:      Vishal Verma <vishal.l.verma@intel.com>
5008 M:      Ira Weiny <ira.weiny@intel.com>
5009 M:      Ben Widawsky <ben.widawsky@intel.com>
5010 M:      Dan Williams <dan.j.williams@intel.com>
5011 L:      linux-cxl@vger.kernel.org
5012 S:      Maintained
5013 F:      drivers/cxl/
5014 F:      include/uapi/linux/cxl_mem.h
5015
5016 CONEXANT ACCESSRUNNER USB DRIVER
5017 L:      accessrunner-general@lists.sourceforge.net
5018 S:      Orphan
5019 W:      http://accessrunner.sourceforge.net/
5020 F:      drivers/usb/atm/cxacru.c
5021
5022 CONFIGFS
5023 M:      Joel Becker <jlbec@evilplan.org>
5024 M:      Christoph Hellwig <hch@lst.de>
5025 S:      Supported
5026 T:      git git://git.infradead.org/users/hch/configfs.git
5027 F:      fs/configfs/
5028 F:      include/linux/configfs.h
5029 F:      samples/configfs/
5030
5031 CONSOLE SUBSYSTEM
5032 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
5033 S:      Supported
5034 F:      drivers/video/console/
5035 F:      include/linux/console*
5036
5037 CONTEXT TRACKING
5038 M:      Frederic Weisbecker <frederic@kernel.org>
5039 S:      Maintained
5040 F:      kernel/context_tracking.c
5041 F:      include/linux/context_tracking*
5042
5043 CONTROL GROUP (CGROUP)
5044 M:      Tejun Heo <tj@kernel.org>
5045 M:      Zefan Li <lizefan.x@bytedance.com>
5046 M:      Johannes Weiner <hannes@cmpxchg.org>
5047 L:      cgroups@vger.kernel.org
5048 S:      Maintained
5049 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
5050 F:      Documentation/admin-guide/cgroup-v1/
5051 F:      Documentation/admin-guide/cgroup-v2.rst
5052 F:      include/linux/cgroup*
5053 F:      kernel/cgroup/
5054 F:      tools/testing/selftests/cgroup/
5055
5056 CONTROL GROUP - BLOCK IO CONTROLLER (BLKIO)
5057 M:      Tejun Heo <tj@kernel.org>
5058 M:      Jens Axboe <axboe@kernel.dk>
5059 L:      cgroups@vger.kernel.org
5060 L:      linux-block@vger.kernel.org
5061 T:      git git://git.kernel.dk/linux-block
5062 F:      Documentation/admin-guide/cgroup-v1/blkio-controller.rst
5063 F:      block/bfq-cgroup.c
5064 F:      block/blk-cgroup.c
5065 F:      block/blk-iolatency.c
5066 F:      block/blk-throttle.c
5067 F:      include/linux/blk-cgroup.h
5068
5069 CONTROL GROUP - CPUSET
5070 M:      Zefan Li <lizefan.x@bytedance.com>
5071 L:      cgroups@vger.kernel.org
5072 S:      Maintained
5073 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
5074 F:      Documentation/admin-guide/cgroup-v1/cpusets.rst
5075 F:      include/linux/cpuset.h
5076 F:      kernel/cgroup/cpuset.c
5077
5078 CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG)
5079 M:      Johannes Weiner <hannes@cmpxchg.org>
5080 M:      Michal Hocko <mhocko@kernel.org>
5081 M:      Roman Gushchin <roman.gushchin@linux.dev>
5082 M:      Shakeel Butt <shakeelb@google.com>
5083 R:      Muchun Song <songmuchun@bytedance.com>
5084 L:      cgroups@vger.kernel.org
5085 L:      linux-mm@kvack.org
5086 S:      Maintained
5087 F:      mm/memcontrol.c
5088 F:      mm/swap_cgroup.c
5089 F:      tools/testing/selftests/cgroup/memcg_protection.m
5090 F:      tools/testing/selftests/cgroup/test_kmem.c
5091 F:      tools/testing/selftests/cgroup/test_memcontrol.c
5092
5093 CORETEMP HARDWARE MONITORING DRIVER
5094 M:      Fenghua Yu <fenghua.yu@intel.com>
5095 L:      linux-hwmon@vger.kernel.org
5096 S:      Maintained
5097 F:      Documentation/hwmon/coretemp.rst
5098 F:      drivers/hwmon/coretemp.c
5099
5100 CORSAIR-CPRO HARDWARE MONITOR DRIVER
5101 M:      Marius Zachmann <mail@mariuszachmann.de>
5102 L:      linux-hwmon@vger.kernel.org
5103 S:      Maintained
5104 F:      drivers/hwmon/corsair-cpro.c
5105
5106 CORSAIR-PSU HARDWARE MONITOR DRIVER
5107 M:      Wilken Gottwalt <wilken.gottwalt@posteo.net>
5108 L:      linux-hwmon@vger.kernel.org
5109 S:      Maintained
5110 F:      Documentation/hwmon/corsair-psu.rst
5111 F:      drivers/hwmon/corsair-psu.c
5112
5113 COUNTER SUBSYSTEM
5114 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
5115 L:      linux-iio@vger.kernel.org
5116 S:      Maintained
5117 T:      git git@gitlab.com:vilhelmgray/counter.git
5118 F:      Documentation/ABI/testing/sysfs-bus-counter
5119 F:      Documentation/driver-api/generic-counter.rst
5120 F:      drivers/counter/
5121 F:      include/linux/counter.h
5122 F:      include/uapi/linux/counter.h
5123 F:      tools/counter/
5124
5125 CP2615 I2C DRIVER
5126 M:      Bence Csókás <bence98@sch.bme.hu>
5127 S:      Maintained
5128 F:      drivers/i2c/busses/i2c-cp2615.c
5129
5130 CPMAC ETHERNET DRIVER
5131 M:      Florian Fainelli <f.fainelli@gmail.com>
5132 L:      netdev@vger.kernel.org
5133 S:      Maintained
5134 F:      drivers/net/ethernet/ti/cpmac.c
5135
5136 CPU FREQUENCY DRIVERS - VEXPRESS SPC ARM BIG LITTLE
5137 M:      Viresh Kumar <viresh.kumar@linaro.org>
5138 M:      Sudeep Holla <sudeep.holla@arm.com>
5139 L:      linux-pm@vger.kernel.org
5140 S:      Maintained
5141 W:      http://www.arm.com/products/processors/technologies/biglittleprocessing.php
5142 F:      drivers/cpufreq/vexpress-spc-cpufreq.c
5143
5144 CPU FREQUENCY SCALING FRAMEWORK
5145 M:      "Rafael J. Wysocki" <rafael@kernel.org>
5146 M:      Viresh Kumar <viresh.kumar@linaro.org>
5147 L:      linux-pm@vger.kernel.org
5148 S:      Maintained
5149 B:      https://bugzilla.kernel.org
5150 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
5151 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git (For ARM Updates)
5152 F:      Documentation/admin-guide/pm/cpufreq.rst
5153 F:      Documentation/admin-guide/pm/intel_pstate.rst
5154 F:      Documentation/cpu-freq/
5155 F:      Documentation/devicetree/bindings/cpufreq/
5156 F:      drivers/cpufreq/
5157 F:      include/linux/cpufreq.h
5158 F:      include/linux/sched/cpufreq.h
5159 F:      kernel/sched/cpufreq*.c
5160 F:      tools/testing/selftests/cpufreq/
5161
5162 CPU IDLE TIME MANAGEMENT FRAMEWORK
5163 M:      "Rafael J. Wysocki" <rafael@kernel.org>
5164 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
5165 L:      linux-pm@vger.kernel.org
5166 S:      Maintained
5167 B:      https://bugzilla.kernel.org
5168 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
5169 F:      Documentation/admin-guide/pm/cpuidle.rst
5170 F:      Documentation/driver-api/pm/cpuidle.rst
5171 F:      drivers/cpuidle/
5172 F:      include/linux/cpuidle.h
5173
5174 CPU POWER MONITORING SUBSYSTEM
5175 M:      Thomas Renninger <trenn@suse.com>
5176 M:      Shuah Khan <shuah@kernel.org>
5177 M:      Shuah Khan <skhan@linuxfoundation.org>
5178 L:      linux-pm@vger.kernel.org
5179 S:      Maintained
5180 F:      tools/power/cpupower/
5181
5182 CPUID/MSR DRIVER
5183 M:      "H. Peter Anvin" <hpa@zytor.com>
5184 S:      Maintained
5185 F:      arch/x86/kernel/cpuid.c
5186 F:      arch/x86/kernel/msr.c
5187
5188 CPUIDLE DRIVER - ARM BIG LITTLE
5189 M:      Lorenzo Pieralisi <lpieralisi@kernel.org>
5190 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
5191 L:      linux-pm@vger.kernel.org
5192 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5193 S:      Maintained
5194 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
5195 F:      drivers/cpuidle/cpuidle-big_little.c
5196
5197 CPUIDLE DRIVER - ARM EXYNOS
5198 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
5199 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
5200 M:      Kukjin Kim <kgene@kernel.org>
5201 L:      linux-pm@vger.kernel.org
5202 L:      linux-samsung-soc@vger.kernel.org
5203 S:      Supported
5204 F:      arch/arm/mach-exynos/pm.c
5205 F:      drivers/cpuidle/cpuidle-exynos.c
5206 F:      include/linux/platform_data/cpuidle-exynos.h
5207
5208 CPUIDLE DRIVER - ARM PSCI
5209 M:      Lorenzo Pieralisi <lpieralisi@kernel.org>
5210 M:      Sudeep Holla <sudeep.holla@arm.com>
5211 L:      linux-pm@vger.kernel.org
5212 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5213 S:      Supported
5214 F:      drivers/cpuidle/cpuidle-psci.c
5215
5216 CPUIDLE DRIVER - ARM PSCI PM DOMAIN
5217 M:      Ulf Hansson <ulf.hansson@linaro.org>
5218 L:      linux-pm@vger.kernel.org
5219 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5220 S:      Supported
5221 F:      drivers/cpuidle/cpuidle-psci.h
5222 F:      drivers/cpuidle/cpuidle-psci-domain.c
5223
5224 CPUIDLE DRIVER - DT IDLE PM DOMAIN
5225 M:      Ulf Hansson <ulf.hansson@linaro.org>
5226 L:      linux-pm@vger.kernel.org
5227 S:      Supported
5228 F:      drivers/cpuidle/dt_idle_genpd.c
5229 F:      drivers/cpuidle/dt_idle_genpd.h
5230
5231 CPUIDLE DRIVER - RISC-V SBI
5232 M:      Anup Patel <anup@brainfault.org>
5233 L:      linux-pm@vger.kernel.org
5234 L:      linux-riscv@lists.infradead.org
5235 S:      Maintained
5236 F:      drivers/cpuidle/cpuidle-riscv-sbi.c
5237
5238 CRAMFS FILESYSTEM
5239 M:      Nicolas Pitre <nico@fluxnic.net>
5240 S:      Maintained
5241 F:      Documentation/filesystems/cramfs.rst
5242 F:      fs/cramfs/
5243
5244 CREATIVE SB0540
5245 M:      Bastien Nocera <hadess@hadess.net>
5246 L:      linux-input@vger.kernel.org
5247 S:      Maintained
5248 F:      drivers/hid/hid-creative-sb0540.c
5249
5250 CRYPTO API
5251 M:      Herbert Xu <herbert@gondor.apana.org.au>
5252 M:      "David S. Miller" <davem@davemloft.net>
5253 L:      linux-crypto@vger.kernel.org
5254 S:      Maintained
5255 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
5256 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
5257 F:      Documentation/crypto/
5258 F:      Documentation/devicetree/bindings/crypto/
5259 F:      arch/*/crypto/
5260 F:      crypto/
5261 F:      drivers/crypto/
5262 F:      include/crypto/
5263 F:      include/linux/crypto*
5264 F:      lib/crypto/
5265
5266 CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
5267 M:      Neil Horman <nhorman@tuxdriver.com>
5268 L:      linux-crypto@vger.kernel.org
5269 S:      Maintained
5270 F:      crypto/ansi_cprng.c
5271 F:      crypto/rng.c
5272
5273 CS3308 MEDIA DRIVER
5274 M:      Hans Verkuil <hverkuil@xs4all.nl>
5275 L:      linux-media@vger.kernel.org
5276 S:      Odd Fixes
5277 W:      http://linuxtv.org
5278 T:      git git://linuxtv.org/media_tree.git
5279 F:      drivers/media/i2c/cs3308.c
5280
5281 CS5535 Audio ALSA driver
5282 M:      Jaya Kumar <jayakumar.alsa@gmail.com>
5283 S:      Maintained
5284 F:      sound/pci/cs5535audio/
5285
5286 CSI DRIVERS FOR ALLWINNER V3s
5287 M:      Yong Deng <yong.deng@magewell.com>
5288 L:      linux-media@vger.kernel.org
5289 S:      Maintained
5290 T:      git git://linuxtv.org/media_tree.git
5291 F:      Documentation/devicetree/bindings/media/allwinner,sun6i-a31-csi.yaml
5292 F:      drivers/media/platform/sunxi/sun6i-csi/
5293
5294 CTU CAN FD DRIVER
5295 M:      Pavel Pisa <pisa@cmp.felk.cvut.cz>
5296 M:      Ondrej Ille <ondrej.ille@gmail.com>
5297 L:      linux-can@vger.kernel.org
5298 S:      Maintained
5299 F:      Documentation/devicetree/bindings/net/can/ctu,ctucanfd.yaml
5300 F:      drivers/net/can/ctucanfd/
5301
5302 CW1200 WLAN driver
5303 M:      Solomon Peachy <pizza@shaftnet.org>
5304 S:      Maintained
5305 F:      drivers/net/wireless/st/cw1200/
5306
5307 CX18 VIDEO4LINUX DRIVER
5308 M:      Andy Walls <awalls@md.metrocast.net>
5309 L:      linux-media@vger.kernel.org
5310 S:      Maintained
5311 W:      https://linuxtv.org
5312 T:      git git://linuxtv.org/media_tree.git
5313 F:      drivers/media/pci/cx18/
5314 F:      include/uapi/linux/ivtv*
5315
5316 CX2341X MPEG ENCODER HELPER MODULE
5317 M:      Hans Verkuil <hverkuil@xs4all.nl>
5318 L:      linux-media@vger.kernel.org
5319 S:      Maintained
5320 W:      https://linuxtv.org
5321 T:      git git://linuxtv.org/media_tree.git
5322 F:      drivers/media/common/cx2341x*
5323 F:      include/media/drv-intf/cx2341x.h
5324
5325 CX24120 MEDIA DRIVER
5326 M:      Jemma Denson <jdenson@gmail.com>
5327 M:      Patrick Boettcher <patrick.boettcher@posteo.de>
5328 L:      linux-media@vger.kernel.org
5329 S:      Maintained
5330 W:      https://linuxtv.org
5331 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5332 F:      drivers/media/dvb-frontends/cx24120*
5333
5334 CX88 VIDEO4LINUX DRIVER
5335 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
5336 L:      linux-media@vger.kernel.org
5337 S:      Odd fixes
5338 W:      https://linuxtv.org
5339 T:      git git://linuxtv.org/media_tree.git
5340 F:      Documentation/driver-api/media/drivers/cx88*
5341 F:      drivers/media/pci/cx88/
5342
5343 CXD2820R MEDIA DRIVER
5344 M:      Antti Palosaari <crope@iki.fi>
5345 L:      linux-media@vger.kernel.org
5346 S:      Maintained
5347 W:      https://linuxtv.org
5348 W:      http://palosaari.fi/linux/
5349 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5350 T:      git git://linuxtv.org/anttip/media_tree.git
5351 F:      drivers/media/dvb-frontends/cxd2820r*
5352
5353 CXGB3 ETHERNET DRIVER (CXGB3)
5354 M:      Raju Rangoju <rajur@chelsio.com>
5355 L:      netdev@vger.kernel.org
5356 S:      Supported
5357 W:      http://www.chelsio.com
5358 F:      drivers/net/ethernet/chelsio/cxgb3/
5359
5360 CXGB3 ISCSI DRIVER (CXGB3I)
5361 M:      Karen Xie <kxie@chelsio.com>
5362 L:      linux-scsi@vger.kernel.org
5363 S:      Supported
5364 W:      http://www.chelsio.com
5365 F:      drivers/scsi/cxgbi/cxgb3i
5366
5367 CXGB4 CRYPTO DRIVER (chcr)
5368 M:      Ayush Sawal <ayush.sawal@chelsio.com>
5369 M:      Vinay Kumar Yadav <vinay.yadav@chelsio.com>
5370 M:      Rohit Maheshwari <rohitm@chelsio.com>
5371 L:      linux-crypto@vger.kernel.org
5372 S:      Supported
5373 W:      http://www.chelsio.com
5374 F:      drivers/crypto/chelsio
5375
5376 CXGB4 INLINE CRYPTO DRIVER
5377 M:      Ayush Sawal <ayush.sawal@chelsio.com>
5378 M:      Vinay Kumar Yadav <vinay.yadav@chelsio.com>
5379 M:      Rohit Maheshwari <rohitm@chelsio.com>
5380 L:      netdev@vger.kernel.org
5381 S:      Supported
5382 W:      http://www.chelsio.com
5383 F:      drivers/net/ethernet/chelsio/inline_crypto/
5384
5385 CXGB4 ETHERNET DRIVER (CXGB4)
5386 M:      Raju Rangoju <rajur@chelsio.com>
5387 L:      netdev@vger.kernel.org
5388 S:      Supported
5389 W:      http://www.chelsio.com
5390 F:      drivers/net/ethernet/chelsio/cxgb4/
5391
5392 CXGB4 ISCSI DRIVER (CXGB4I)
5393 M:      Karen Xie <kxie@chelsio.com>
5394 L:      linux-scsi@vger.kernel.org
5395 S:      Supported
5396 W:      http://www.chelsio.com
5397 F:      drivers/scsi/cxgbi/cxgb4i
5398
5399 CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
5400 M:      Potnuri Bharat Teja <bharat@chelsio.com>
5401 L:      linux-rdma@vger.kernel.org
5402 S:      Supported
5403 W:      http://www.openfabrics.org
5404 F:      drivers/infiniband/hw/cxgb4/
5405 F:      include/uapi/rdma/cxgb4-abi.h
5406
5407 CXGB4VF ETHERNET DRIVER (CXGB4VF)
5408 M:      Raju Rangoju <rajur@chelsio.com>
5409 L:      netdev@vger.kernel.org
5410 S:      Supported
5411 W:      http://www.chelsio.com
5412 F:      drivers/net/ethernet/chelsio/cxgb4vf/
5413
5414 CXL (IBM Coherent Accelerator Processor Interface CAPI) DRIVER
5415 M:      Frederic Barrat <fbarrat@linux.ibm.com>
5416 M:      Andrew Donnellan <ajd@linux.ibm.com>
5417 L:      linuxppc-dev@lists.ozlabs.org
5418 S:      Supported
5419 F:      Documentation/ABI/testing/sysfs-class-cxl
5420 F:      Documentation/powerpc/cxl.rst
5421 F:      arch/powerpc/platforms/powernv/pci-cxl.c
5422 F:      drivers/misc/cxl/
5423 F:      include/misc/cxl*
5424 F:      include/uapi/misc/cxl.h
5425
5426 CXLFLASH (IBM Coherent Accelerator Processor Interface CAPI Flash) SCSI DRIVER
5427 M:      Manoj N. Kumar <manoj@linux.ibm.com>
5428 M:      Matthew R. Ochs <mrochs@linux.ibm.com>
5429 M:      Uma Krishnan <ukrishn@linux.ibm.com>
5430 L:      linux-scsi@vger.kernel.org
5431 S:      Supported
5432 F:      Documentation/powerpc/cxlflash.rst
5433 F:      drivers/scsi/cxlflash/
5434 F:      include/uapi/scsi/cxlflash_ioctl.h
5435
5436 CYBERPRO FB DRIVER
5437 M:      Russell King <linux@armlinux.org.uk>
5438 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5439 S:      Maintained
5440 W:      http://www.armlinux.org.uk/
5441 F:      drivers/video/fbdev/cyber2000fb.*
5442
5443 CYCLADES PC300 DRIVER
5444 S:      Orphan
5445 F:      drivers/net/wan/pc300*
5446
5447 CYPRESS_FIRMWARE MEDIA DRIVER
5448 M:      Antti Palosaari <crope@iki.fi>
5449 L:      linux-media@vger.kernel.org
5450 S:      Maintained
5451 W:      https://linuxtv.org
5452 W:      http://palosaari.fi/linux/
5453 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5454 T:      git git://linuxtv.org/anttip/media_tree.git
5455 F:      drivers/media/common/cypress_firmware*
5456
5457 CYPRESS CY8CTMA140 TOUCHSCREEN DRIVER
5458 M:      Linus Walleij <linus.walleij@linaro.org>
5459 L:      linux-input@vger.kernel.org
5460 S:      Maintained
5461 F:      drivers/input/touchscreen/cy8ctma140.c
5462
5463 CYPRESS STREETFIGHTER TOUCHKEYS DRIVER
5464 M:      Yassine Oudjana <y.oudjana@protonmail.com>
5465 L:      linux-input@vger.kernel.org
5466 S:      Maintained
5467 F:      Documentation/devicetree/bindings/input/cypress-sf.yaml
5468 F:      drivers/input/keyboard/cypress-sf.c
5469
5470 CYTTSP TOUCHSCREEN DRIVER
5471 M:      Linus Walleij <linus.walleij@linaro.org>
5472 L:      linux-input@vger.kernel.org
5473 S:      Maintained
5474 F:      drivers/input/touchscreen/cyttsp*
5475
5476 D-LINK DIR-685 TOUCHKEYS DRIVER
5477 M:      Linus Walleij <linus.walleij@linaro.org>
5478 L:      linux-input@vger.kernel.org
5479 S:      Supported
5480 F:      drivers/input/keyboard/dlink-dir685-touchkeys.c
5481
5482 DALLAS/MAXIM DS1685-FAMILY REAL TIME CLOCK
5483 M:      Joshua Kinard <kumba@gentoo.org>
5484 S:      Maintained
5485 F:      drivers/rtc/rtc-ds1685.c
5486 F:      include/linux/rtc/ds1685.h
5487
5488 DAMA SLAVE for AX.25
5489 M:      Joerg Reuter <jreuter@yaina.de>
5490 L:      linux-hams@vger.kernel.org
5491 S:      Maintained
5492 W:      http://yaina.de/jreuter/
5493 W:      http://www.qsl.net/dl1bke/
5494 F:      net/ax25/af_ax25.c
5495 F:      net/ax25/ax25_dev.c
5496 F:      net/ax25/ax25_ds_*
5497 F:      net/ax25/ax25_in.c
5498 F:      net/ax25/ax25_out.c
5499 F:      net/ax25/ax25_timer.c
5500 F:      net/ax25/sysctl_net_ax25.c
5501
5502 DATA ACCESS MONITOR
5503 M:      SeongJae Park <sj@kernel.org>
5504 L:      damon@lists.linux.dev
5505 L:      linux-mm@kvack.org
5506 S:      Maintained
5507 F:      Documentation/ABI/testing/sysfs-kernel-mm-damon
5508 F:      Documentation/admin-guide/mm/damon/
5509 F:      Documentation/vm/damon/
5510 F:      include/linux/damon.h
5511 F:      include/trace/events/damon.h
5512 F:      mm/damon/
5513 F:      tools/testing/selftests/damon/
5514
5515 DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
5516 L:      netdev@vger.kernel.org
5517 S:      Orphan
5518 F:      Documentation/networking/device_drivers/ethernet/dec/dmfe.rst
5519 F:      drivers/net/ethernet/dec/tulip/dmfe.c
5520
5521 DC390/AM53C974 SCSI driver
5522 M:      Hannes Reinecke <hare@suse.com>
5523 L:      linux-scsi@vger.kernel.org
5524 S:      Maintained
5525 F:      drivers/scsi/am53c974.c
5526
5527 DC395x SCSI driver
5528 M:      Oliver Neukum <oliver@neukum.org>
5529 M:      Ali Akcaagac <aliakc@web.de>
5530 M:      Jamie Lenehan <lenehan@twibble.org>
5531 L:      dc395x@twibble.org
5532 S:      Maintained
5533 W:      http://twibble.org/dist/dc395x/
5534 W:      http://lists.twibble.org/mailman/listinfo/dc395x/
5535 F:      Documentation/scsi/dc395x.rst
5536 F:      drivers/scsi/dc395x.*
5537
5538 DCCP PROTOCOL
5539 L:      dccp@vger.kernel.org
5540 S:      Orphan
5541 W:      http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
5542 F:      include/linux/dccp.h
5543 F:      include/linux/tfrc.h
5544 F:      include/uapi/linux/dccp.h
5545 F:      net/dccp/
5546
5547 DECnet NETWORK LAYER
5548 L:      linux-decnet-user@lists.sourceforge.net
5549 S:      Orphan
5550 W:      http://linux-decnet.sourceforge.net
5551 F:      Documentation/networking/decnet.rst
5552 F:      net/decnet/
5553
5554 DECSTATION PLATFORM SUPPORT
5555 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
5556 L:      linux-mips@vger.kernel.org
5557 S:      Maintained
5558 W:      http://www.linux-mips.org/wiki/DECstation
5559 F:      arch/mips/dec/
5560 F:      arch/mips/include/asm/dec/
5561 F:      arch/mips/include/asm/mach-dec/
5562
5563 DEFXX FDDI NETWORK DRIVER
5564 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
5565 S:      Maintained
5566 F:      drivers/net/fddi/defxx.*
5567
5568 DEFZA FDDI NETWORK DRIVER
5569 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
5570 S:      Maintained
5571 F:      drivers/net/fddi/defza.*
5572
5573 DEINTERLACE DRIVERS FOR ALLWINNER H3
5574 M:      Jernej Skrabec <jernej.skrabec@gmail.com>
5575 L:      linux-media@vger.kernel.org
5576 S:      Maintained
5577 T:      git git://linuxtv.org/media_tree.git
5578 F:      Documentation/devicetree/bindings/media/allwinner,sun8i-h3-deinterlace.yaml
5579 F:      drivers/media/platform/sunxi/sun8i-di/
5580
5581 DELL LAPTOP DRIVER
5582 M:      Matthew Garrett <mjg59@srcf.ucam.org>
5583 M:      Pali Rohár <pali@kernel.org>
5584 L:      platform-driver-x86@vger.kernel.org
5585 S:      Maintained
5586 F:      drivers/platform/x86/dell/dell-laptop.c
5587
5588 DELL LAPTOP FREEFALL DRIVER
5589 M:      Pali Rohár <pali@kernel.org>
5590 S:      Maintained
5591 F:      drivers/platform/x86/dell/dell-smo8800.c
5592
5593 DELL LAPTOP RBTN DRIVER
5594 M:      Pali Rohár <pali@kernel.org>
5595 S:      Maintained
5596 F:      drivers/platform/x86/dell/dell-rbtn.*
5597
5598 DELL LAPTOP SMM DRIVER
5599 M:      Pali Rohár <pali@kernel.org>
5600 S:      Maintained
5601 F:      Documentation/ABI/obsolete/procfs-i8k
5602 F:      drivers/hwmon/dell-smm-hwmon.c
5603 F:      include/uapi/linux/i8k.h
5604
5605 DELL REMOTE BIOS UPDATE DRIVER
5606 M:      Stuart Hayes <stuart.w.hayes@gmail.com>
5607 L:      platform-driver-x86@vger.kernel.org
5608 S:      Maintained
5609 F:      drivers/platform/x86/dell/dell_rbu.c
5610
5611 DELL SMBIOS DRIVER
5612 M:      Pali Rohár <pali@kernel.org>
5613 L:      Dell.Client.Kernel@dell.com
5614 L:      platform-driver-x86@vger.kernel.org
5615 S:      Maintained
5616 F:      drivers/platform/x86/dell/dell-smbios.*
5617
5618 DELL SMBIOS SMM DRIVER
5619 L:      Dell.Client.Kernel@dell.com
5620 L:      platform-driver-x86@vger.kernel.org
5621 S:      Maintained
5622 F:      drivers/platform/x86/dell/dell-smbios-smm.c
5623
5624 DELL SMBIOS WMI DRIVER
5625 L:      Dell.Client.Kernel@dell.com
5626 L:      platform-driver-x86@vger.kernel.org
5627 S:      Maintained
5628 F:      drivers/platform/x86/dell/dell-smbios-wmi.c
5629 F:      tools/wmi/dell-smbios-example.c
5630
5631 DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
5632 M:      Stuart Hayes <stuart.w.hayes@gmail.com>
5633 L:      platform-driver-x86@vger.kernel.org
5634 S:      Maintained
5635 F:      Documentation/driver-api/dcdbas.rst
5636 F:      drivers/platform/x86/dell/dcdbas.*
5637
5638 DELL WMI DESCRIPTOR DRIVER
5639 L:      Dell.Client.Kernel@dell.com
5640 S:      Maintained
5641 F:      drivers/platform/x86/dell/dell-wmi-descriptor.c
5642
5643 DELL WMI SYSMAN DRIVER
5644 M:      Divya Bharathi <divya.bharathi@dell.com>
5645 M:      Prasanth Ksr <prasanth.ksr@dell.com>
5646 L:      Dell.Client.Kernel@dell.com
5647 L:      platform-driver-x86@vger.kernel.org
5648 S:      Maintained
5649 F:      Documentation/ABI/testing/sysfs-class-firmware-attributes
5650 F:      drivers/platform/x86/dell/dell-wmi-sysman/
5651
5652 DELL WMI NOTIFICATIONS DRIVER
5653 M:      Matthew Garrett <mjg59@srcf.ucam.org>
5654 M:      Pali Rohár <pali@kernel.org>
5655 S:      Maintained
5656 F:      drivers/platform/x86/dell/dell-wmi-base.c
5657
5658 DELL WMI HARDWARE PRIVACY SUPPORT
5659 M:      Perry Yuan <Perry.Yuan@dell.com>
5660 L:      Dell.Client.Kernel@dell.com
5661 L:      platform-driver-x86@vger.kernel.org
5662 S:      Maintained
5663 F:      drivers/platform/x86/dell/dell-wmi-privacy.c
5664
5665 DELTA ST MEDIA DRIVER
5666 M:      Hugues Fruchet <hugues.fruchet@foss.st.com>
5667 L:      linux-media@vger.kernel.org
5668 S:      Supported
5669 W:      https://linuxtv.org
5670 T:      git git://linuxtv.org/media_tree.git
5671 F:      drivers/media/platform/st/sti/delta
5672
5673 DELTA AHE-50DC FAN CONTROL MODULE DRIVER
5674 M:      Zev Weiss <zev@bewilderbeest.net>
5675 L:      linux-hwmon@vger.kernel.org
5676 S:      Maintained
5677 F:      drivers/hwmon/pmbus/delta-ahe50dc-fan.c
5678
5679 DELTA DPS920AB PSU DRIVER
5680 M:      Robert Marko <robert.marko@sartura.hr>
5681 L:      linux-hwmon@vger.kernel.org
5682 S:      Maintained
5683 F:      Documentation/hwmon/dps920ab.rst
5684 F:      drivers/hwmon/pmbus/dps920ab.c
5685
5686 DELTA NETWORKS TN48M CPLD DRIVERS
5687 M:      Robert Marko <robert.marko@sartura.hr>
5688 S:      Maintained
5689 F:      Documentation/devicetree/bindings/gpio/delta,tn48m-gpio.yaml
5690 F:      Documentation/devicetree/bindings/mfd/delta,tn48m-cpld.yaml
5691 F:      Documentation/devicetree/bindings/reset/delta,tn48m-reset.yaml
5692 F:      drivers/gpio/gpio-tn48m.c
5693 F:      include/dt-bindings/reset/delta,tn48m-reset.h
5694
5695 DENALI NAND DRIVER
5696 L:      linux-mtd@lists.infradead.org
5697 S:      Orphan
5698 F:      drivers/mtd/nand/raw/denali*
5699
5700 DESIGNWARE EDMA CORE IP DRIVER
5701 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
5702 L:      dmaengine@vger.kernel.org
5703 S:      Maintained
5704 F:      drivers/dma/dw-edma/
5705 F:      include/linux/dma/edma.h
5706
5707 DESIGNWARE XDATA IP DRIVER
5708 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
5709 L:      linux-pci@vger.kernel.org
5710 S:      Maintained
5711 F:      Documentation/misc-devices/dw-xdata-pcie.rst
5712 F:      drivers/misc/dw-xdata-pcie.c
5713
5714 DESIGNWARE USB2 DRD IP DRIVER
5715 M:      Minas Harutyunyan <hminas@synopsys.com>
5716 L:      linux-usb@vger.kernel.org
5717 S:      Maintained
5718 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
5719 F:      drivers/usb/dwc2/
5720
5721 DESIGNWARE USB3 DRD IP DRIVER
5722 M:      Felipe Balbi <balbi@kernel.org>
5723 L:      linux-usb@vger.kernel.org
5724 S:      Maintained
5725 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
5726 F:      drivers/usb/dwc3/
5727
5728 DEVANTECH SRF ULTRASONIC RANGER IIO DRIVER
5729 M:      Andreas Klinger <ak@it-klinger.de>
5730 L:      linux-iio@vger.kernel.org
5731 S:      Maintained
5732 F:      Documentation/ABI/testing/sysfs-bus-iio-distance-srf08
5733 F:      drivers/iio/proximity/srf*.c
5734
5735 DEVICE COREDUMP (DEV_COREDUMP)
5736 M:      Johannes Berg <johannes@sipsolutions.net>
5737 L:      linux-kernel@vger.kernel.org
5738 S:      Maintained
5739 F:      drivers/base/devcoredump.c
5740 F:      include/linux/devcoredump.h
5741
5742 DEVICE DEPENDENCY HELPER SCRIPT
5743 M:      Saravana Kannan <saravanak@google.com>
5744 L:      linux-kernel@vger.kernel.org
5745 S:      Maintained
5746 F:      scripts/dev-needs.sh
5747
5748 DEVICE DIRECT ACCESS (DAX)
5749 M:      Dan Williams <dan.j.williams@intel.com>
5750 M:      Vishal Verma <vishal.l.verma@intel.com>
5751 M:      Dave Jiang <dave.jiang@intel.com>
5752 L:      nvdimm@lists.linux.dev
5753 S:      Supported
5754 F:      drivers/dax/
5755
5756 DEVICE FREQUENCY (DEVFREQ)
5757 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
5758 M:      Kyungmin Park <kyungmin.park@samsung.com>
5759 M:      Chanwoo Choi <cw00.choi@samsung.com>
5760 L:      linux-pm@vger.kernel.org
5761 S:      Maintained
5762 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
5763 F:      Documentation/devicetree/bindings/devfreq/
5764 F:      drivers/devfreq/
5765 F:      include/linux/devfreq.h
5766 F:      include/trace/events/devfreq.h
5767
5768 DEVICE FREQUENCY EVENT (DEVFREQ-EVENT)
5769 M:      Chanwoo Choi <cw00.choi@samsung.com>
5770 L:      linux-pm@vger.kernel.org
5771 S:      Supported
5772 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
5773 F:      Documentation/devicetree/bindings/devfreq/event/
5774 F:      drivers/devfreq/devfreq-event.c
5775 F:      drivers/devfreq/event/
5776 F:      include/dt-bindings/pmu/exynos_ppmu.h
5777 F:      include/linux/devfreq-event.h
5778
5779 DEVICE NUMBER REGISTRY
5780 M:      Torben Mathiasen <device@lanana.org>
5781 S:      Maintained
5782 W:      http://lanana.org/docs/device-list/index.html
5783
5784 DEVICE RESOURCE MANAGEMENT HELPERS
5785 M:      Hans de Goede <hdegoede@redhat.com>
5786 R:      Matti Vaittinen <mazziesaccount@gmail.com>
5787 S:      Maintained
5788 F:      include/linux/devm-helpers.h
5789
5790 DEVICE-MAPPER  (LVM)
5791 M:      Alasdair Kergon <agk@redhat.com>
5792 M:      Mike Snitzer <snitzer@kernel.org>
5793 M:      dm-devel@redhat.com
5794 L:      dm-devel@redhat.com
5795 S:      Maintained
5796 W:      http://sources.redhat.com/dm
5797 Q:      http://patchwork.kernel.org/project/dm-devel/list/
5798 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git
5799 T:      quilt http://people.redhat.com/agk/patches/linux/editing/
5800 F:      Documentation/admin-guide/device-mapper/
5801 F:      drivers/md/Kconfig
5802 F:      drivers/md/Makefile
5803 F:      drivers/md/dm*
5804 F:      drivers/md/persistent-data/
5805 F:      include/linux/device-mapper.h
5806 F:      include/linux/dm-*.h
5807 F:      include/uapi/linux/dm-*.h
5808
5809 DEVLINK
5810 M:      Jiri Pirko <jiri@nvidia.com>
5811 L:      netdev@vger.kernel.org
5812 S:      Supported
5813 F:      Documentation/networking/devlink
5814 F:      include/net/devlink.h
5815 F:      include/uapi/linux/devlink.h
5816 F:      net/core/devlink.c
5817
5818 DH ELECTRONICS IMX6 DHCOM BOARD SUPPORT
5819 M:      Christoph Niedermaier <cniedermaier@dh-electronics.com>
5820 L:      kernel@dh-electronics.com
5821 S:      Maintained
5822 F:      arch/arm/boot/dts/imx6*-dhcom-*
5823
5824 DH ELECTRONICS STM32MP1 DHCOM/DHCOR BOARD SUPPORT
5825 M:      Marek Vasut <marex@denx.de>
5826 L:      kernel@dh-electronics.com
5827 S:      Maintained
5828 F:      arch/arm/boot/dts/stm32mp1*-dhcom-*
5829 F:      arch/arm/boot/dts/stm32mp1*-dhcor-*
5830
5831 DIALOG SEMICONDUCTOR DRIVERS
5832 M:      Support Opensource <support.opensource@diasemi.com>
5833 S:      Supported
5834 W:      http://www.dialog-semiconductor.com/products
5835 F:      Documentation/devicetree/bindings/input/da90??-onkey.txt
5836 F:      Documentation/devicetree/bindings/input/dlg,da72??.txt
5837 F:      Documentation/devicetree/bindings/mfd/da90*.txt
5838 F:      Documentation/devicetree/bindings/regulator/dlg,da9*.yaml
5839 F:      Documentation/devicetree/bindings/regulator/da92*.txt
5840 F:      Documentation/devicetree/bindings/regulator/slg51000.txt
5841 F:      Documentation/devicetree/bindings/sound/da[79]*.txt
5842 F:      Documentation/devicetree/bindings/thermal/da90??-thermal.txt
5843 F:      Documentation/devicetree/bindings/watchdog/da90??-wdt.txt
5844 F:      Documentation/hwmon/da90??.rst
5845 F:      drivers/gpio/gpio-da90??.c
5846 F:      drivers/hwmon/da90??-hwmon.c
5847 F:      drivers/iio/adc/da91??-*.c
5848 F:      drivers/input/misc/da72??.[ch]
5849 F:      drivers/input/misc/da90??_onkey.c
5850 F:      drivers/input/touchscreen/da9052_tsi.c
5851 F:      drivers/leds/leds-da90??.c
5852 F:      drivers/mfd/da903x.c
5853 F:      drivers/mfd/da90??-*.c
5854 F:      drivers/mfd/da91??-*.c
5855 F:      drivers/pinctrl/pinctrl-da90??.c
5856 F:      drivers/power/supply/da9052-battery.c
5857 F:      drivers/power/supply/da91??-*.c
5858 F:      drivers/regulator/da9???-regulator.[ch]
5859 F:      drivers/regulator/slg51000-regulator.[ch]
5860 F:      drivers/rtc/rtc-da90??.c
5861 F:      drivers/thermal/da90??-thermal.c
5862 F:      drivers/video/backlight/da90??_bl.c
5863 F:      drivers/watchdog/da90??_wdt.c
5864 F:      include/dt-bindings/regulator/dlg,da9*-regulator.h
5865 F:      include/linux/mfd/da903x.h
5866 F:      include/linux/mfd/da9052/
5867 F:      include/linux/mfd/da9055/
5868 F:      include/linux/mfd/da9062/
5869 F:      include/linux/mfd/da9063/
5870 F:      include/linux/mfd/da9150/
5871 F:      include/linux/regulator/da9211.h
5872 F:      include/sound/da[79]*.h
5873 F:      sound/soc/codecs/da[79]*.[ch]
5874
5875 DIAMOND SYSTEMS GPIO-MM GPIO DRIVER
5876 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
5877 L:      linux-gpio@vger.kernel.org
5878 S:      Maintained
5879 F:      drivers/gpio/gpio-gpio-mm.c
5880
5881 DIOLAN U2C-12 I2C DRIVER
5882 M:      Guenter Roeck <linux@roeck-us.net>
5883 L:      linux-i2c@vger.kernel.org
5884 S:      Maintained
5885 F:      drivers/i2c/busses/i2c-diolan-u2c.c
5886
5887 DIRECTORY NOTIFICATION (DNOTIFY)
5888 M:      Jan Kara <jack@suse.cz>
5889 R:      Amir Goldstein <amir73il@gmail.com>
5890 L:      linux-fsdevel@vger.kernel.org
5891 S:      Maintained
5892 F:      Documentation/filesystems/dnotify.rst
5893 F:      fs/notify/dnotify/
5894 F:      include/linux/dnotify.h
5895
5896 DISK GEOMETRY AND PARTITION HANDLING
5897 M:      Andries Brouwer <aeb@cwi.nl>
5898 S:      Maintained
5899 W:      http://www.win.tue.nl/~aeb/linux/Large-Disk.html
5900 W:      http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
5901 W:      http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
5902
5903 DISKQUOTA
5904 M:      Jan Kara <jack@suse.com>
5905 S:      Maintained
5906 F:      Documentation/filesystems/quota.rst
5907 F:      fs/quota/
5908 F:      include/linux/quota*.h
5909 F:      include/uapi/linux/quota*.h
5910
5911 DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
5912 M:      Bernie Thompson <bernie@plugable.com>
5913 L:      linux-fbdev@vger.kernel.org
5914 S:      Maintained
5915 W:      http://plugable.com/category/projects/udlfb/
5916 F:      Documentation/fb/udlfb.rst
5917 F:      drivers/video/fbdev/udlfb.c
5918 F:      include/video/udlfb.h
5919
5920 DISTRIBUTED LOCK MANAGER (DLM)
5921 M:      Christine Caulfield <ccaulfie@redhat.com>
5922 M:      David Teigland <teigland@redhat.com>
5923 L:      cluster-devel@redhat.com
5924 S:      Supported
5925 W:      http://sources.redhat.com/cluster/
5926 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/linux-dlm.git
5927 F:      fs/dlm/
5928
5929 DMA BUFFER SHARING FRAMEWORK
5930 M:      Sumit Semwal <sumit.semwal@linaro.org>
5931 M:      Christian König <christian.koenig@amd.com>
5932 L:      linux-media@vger.kernel.org
5933 L:      dri-devel@lists.freedesktop.org
5934 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
5935 S:      Maintained
5936 T:      git git://anongit.freedesktop.org/drm/drm-misc
5937 F:      Documentation/driver-api/dma-buf.rst
5938 F:      drivers/dma-buf/
5939 F:      include/linux/*fence.h
5940 F:      include/linux/dma-buf.h
5941 F:      include/linux/dma-resv.h
5942 K:      \bdma_(?:buf|fence|resv)\b
5943
5944 DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
5945 M:      Vinod Koul <vkoul@kernel.org>
5946 L:      dmaengine@vger.kernel.org
5947 S:      Maintained
5948 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
5949 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vkoul/dmaengine.git
5950 F:      Documentation/devicetree/bindings/dma/
5951 F:      Documentation/driver-api/dmaengine/
5952 F:      drivers/dma/
5953 F:      include/linux/dma/
5954 F:      include/linux/dmaengine.h
5955 F:      include/linux/of_dma.h
5956
5957 DMA MAPPING HELPERS
5958 M:      Christoph Hellwig <hch@lst.de>
5959 M:      Marek Szyprowski <m.szyprowski@samsung.com>
5960 R:      Robin Murphy <robin.murphy@arm.com>
5961 L:      iommu@lists.linux-foundation.org
5962 S:      Supported
5963 W:      http://git.infradead.org/users/hch/dma-mapping.git
5964 T:      git git://git.infradead.org/users/hch/dma-mapping.git
5965 F:      include/asm-generic/dma-mapping.h
5966 F:      include/linux/dma-direct.h
5967 F:      include/linux/dma-mapping.h
5968 F:      include/linux/dma-map-ops.h
5969 F:      kernel/dma/
5970
5971 DMA MAPPING BENCHMARK
5972 M:      Xiang Chen <chenxiang66@hisilicon.com>
5973 L:      iommu@lists.linux-foundation.org
5974 F:      kernel/dma/map_benchmark.c
5975 F:      tools/testing/selftests/dma/
5976
5977 DMA-BUF HEAPS FRAMEWORK
5978 M:      Sumit Semwal <sumit.semwal@linaro.org>
5979 R:      Benjamin Gaignard <benjamin.gaignard@collabora.com>
5980 R:      Liam Mark <lmark@codeaurora.org>
5981 R:      Laura Abbott <labbott@redhat.com>
5982 R:      Brian Starkey <Brian.Starkey@arm.com>
5983 R:      John Stultz <jstultz@google.com>
5984 L:      linux-media@vger.kernel.org
5985 L:      dri-devel@lists.freedesktop.org
5986 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
5987 S:      Maintained
5988 T:      git git://anongit.freedesktop.org/drm/drm-misc
5989 F:      drivers/dma-buf/dma-heap.c
5990 F:      drivers/dma-buf/heaps/*
5991 F:      include/linux/dma-heap.h
5992 F:      include/uapi/linux/dma-heap.h
5993
5994 DMC FREQUENCY DRIVER FOR SAMSUNG EXYNOS5422
5995 M:      Lukasz Luba <lukasz.luba@arm.com>
5996 L:      linux-pm@vger.kernel.org
5997 L:      linux-samsung-soc@vger.kernel.org
5998 S:      Maintained
5999 F:      Documentation/devicetree/bindings/memory-controllers/samsung,exynos5422-dmc.yaml
6000 F:      drivers/memory/samsung/exynos5422-dmc.c
6001
6002 DME1737 HARDWARE MONITOR DRIVER
6003 M:      Juerg Haefliger <juergh@gmail.com>
6004 L:      linux-hwmon@vger.kernel.org
6005 S:      Maintained
6006 F:      Documentation/hwmon/dme1737.rst
6007 F:      drivers/hwmon/dme1737.c
6008
6009 DMI/SMBIOS SUPPORT
6010 M:      Jean Delvare <jdelvare@suse.com>
6011 S:      Maintained
6012 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jdelvare/staging.git dmi-for-next
6013 F:      Documentation/ABI/testing/sysfs-firmware-dmi-tables
6014 F:      drivers/firmware/dmi-id.c
6015 F:      drivers/firmware/dmi_scan.c
6016 F:      include/linux/dmi.h
6017
6018 DOCUMENTATION
6019 M:      Jonathan Corbet <corbet@lwn.net>
6020 L:      linux-doc@vger.kernel.org
6021 S:      Maintained
6022 P:      Documentation/doc-guide/maintainer-profile.rst
6023 T:      git git://git.lwn.net/linux.git docs-next
6024 F:      Documentation/
6025 F:      scripts/documentation-file-ref-check
6026 F:      scripts/kernel-doc
6027 F:      scripts/sphinx-pre-install
6028 X:      Documentation/ABI/
6029 X:      Documentation/admin-guide/media/
6030 X:      Documentation/devicetree/
6031 X:      Documentation/driver-api/media/
6032 X:      Documentation/firmware-guide/acpi/
6033 X:      Documentation/i2c/
6034 X:      Documentation/power/
6035 X:      Documentation/spi/
6036 X:      Documentation/userspace-api/media/
6037
6038 DOCUMENTATION REPORTING ISSUES
6039 M:      Thorsten Leemhuis <linux@leemhuis.info>
6040 L:      linux-doc@vger.kernel.org
6041 S:      Maintained
6042 F:      Documentation/admin-guide/reporting-issues.rst
6043
6044 DOCUMENTATION SCRIPTS
6045 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6046 L:      linux-doc@vger.kernel.org
6047 S:      Maintained
6048 F:      Documentation/sphinx/parse-headers.pl
6049 F:      scripts/documentation-file-ref-check
6050 F:      scripts/sphinx-pre-install
6051
6052 DOCUMENTATION/ITALIAN
6053 M:      Federico Vaga <federico.vaga@vaga.pv.it>
6054 L:      linux-doc@vger.kernel.org
6055 S:      Maintained
6056 F:      Documentation/translations/it_IT
6057
6058 DOCUMENTATION/JAPANESE
6059 R:      Akira Yokosawa <akiyks@gmail.com>
6060 L:      linux-doc@vger.kernel.org
6061 S:      Maintained
6062 F:      Documentation/translations/ja_JP
6063
6064 DONGWOON DW9714 LENS VOICE COIL DRIVER
6065 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
6066 L:      linux-media@vger.kernel.org
6067 S:      Maintained
6068 T:      git git://linuxtv.org/media_tree.git
6069 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9714.txt
6070 F:      drivers/media/i2c/dw9714.c
6071
6072 DONGWOON DW9768 LENS VOICE COIL DRIVER
6073 M:      Dongchun Zhu <dongchun.zhu@mediatek.com>
6074 L:      linux-media@vger.kernel.org
6075 S:      Maintained
6076 T:      git git://linuxtv.org/media_tree.git
6077 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9768.yaml
6078 F:      drivers/media/i2c/dw9768.c
6079
6080 DONGWOON DW9807 LENS VOICE COIL DRIVER
6081 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
6082 L:      linux-media@vger.kernel.org
6083 S:      Maintained
6084 T:      git git://linuxtv.org/media_tree.git
6085 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9807-vcm.txt
6086 F:      drivers/media/i2c/dw9807-vcm.c
6087
6088 DOUBLETALK DRIVER
6089 M:      "James R. Van Zandt" <jrv@vanzandt.mv.com>
6090 L:      blinux-list@redhat.com
6091 S:      Maintained
6092 F:      drivers/char/dtlk.c
6093 F:      include/linux/dtlk.h
6094
6095 DPAA2 DATAPATH I/O (DPIO) DRIVER
6096 M:      Roy Pledge <Roy.Pledge@nxp.com>
6097 L:      linux-kernel@vger.kernel.org
6098 S:      Maintained
6099 F:      drivers/soc/fsl/dpio
6100
6101 DPAA2 ETHERNET DRIVER
6102 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
6103 L:      netdev@vger.kernel.org
6104 S:      Maintained
6105 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/ethernet-driver.rst
6106 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/mac-phy-support.rst
6107 F:      drivers/net/ethernet/freescale/dpaa2/Kconfig
6108 F:      drivers/net/ethernet/freescale/dpaa2/Makefile
6109 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-eth*
6110 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-mac*
6111 F:      drivers/net/ethernet/freescale/dpaa2/dpkg.h
6112 F:      drivers/net/ethernet/freescale/dpaa2/dpmac*
6113 F:      drivers/net/ethernet/freescale/dpaa2/dpni*
6114
6115 DPAA2 ETHERNET SWITCH DRIVER
6116 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
6117 L:      netdev@vger.kernel.org
6118 S:      Maintained
6119 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/switch-driver.rst
6120 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-switch*
6121 F:      drivers/net/ethernet/freescale/dpaa2/dpsw*
6122
6123 DPT_I2O SCSI RAID DRIVER
6124 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
6125 L:      linux-scsi@vger.kernel.org
6126 S:      Maintained
6127 W:      http://www.adaptec.com/
6128 F:      drivers/scsi/dpt*
6129 F:      drivers/scsi/dpt/
6130
6131 DRBD DRIVER
6132 M:      Philipp Reisner <philipp.reisner@linbit.com>
6133 M:      Lars Ellenberg <lars.ellenberg@linbit.com>
6134 M:      Christoph Böhmwalder <christoph.boehmwalder@linbit.com>
6135 L:      drbd-dev@lists.linbit.com
6136 S:      Supported
6137 W:      http://www.drbd.org
6138 T:      git git://git.linbit.com/linux-drbd.git
6139 T:      git git://git.linbit.com/drbd-8.4.git
6140 F:      Documentation/admin-guide/blockdev/
6141 F:      drivers/block/drbd/
6142 F:      lib/lru_cache.c
6143
6144 DRIVER COMPONENT FRAMEWORK
6145 L:      dri-devel@lists.freedesktop.org
6146 F:      drivers/base/component.c
6147 F:      include/linux/component.h
6148
6149 DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS
6150 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
6151 R:      "Rafael J. Wysocki" <rafael@kernel.org>
6152 S:      Supported
6153 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
6154 F:      Documentation/core-api/kobject.rst
6155 F:      drivers/base/
6156 F:      fs/debugfs/
6157 F:      fs/sysfs/
6158 F:      include/linux/debugfs.h
6159 F:      include/linux/kobj*
6160 F:      lib/kobj*
6161
6162 DRIVERS FOR OMAP ADAPTIVE VOLTAGE SCALING (AVS)
6163 M:      Nishanth Menon <nm@ti.com>
6164 L:      linux-pm@vger.kernel.org
6165 S:      Maintained
6166 F:      drivers/soc/ti/smartreflex.c
6167 F:      include/linux/power/smartreflex.h
6168
6169 DRM DRIVER FOR ALLWINNER DE2 AND DE3 ENGINE
6170 M:      Maxime Ripard <mripard@kernel.org>
6171 M:      Chen-Yu Tsai <wens@csie.org>
6172 R:      Jernej Skrabec <jernej.skrabec@gmail.com>
6173 L:      dri-devel@lists.freedesktop.org
6174 S:      Supported
6175 T:      git git://anongit.freedesktop.org/drm/drm-misc
6176 F:      drivers/gpu/drm/sun4i/sun8i*
6177
6178 DRM DRIVER FOR ARM PL111 CLCD
6179 M:      Emma Anholt <emma@anholt.net>
6180 S:      Supported
6181 T:      git git://anongit.freedesktop.org/drm/drm-misc
6182 F:      drivers/gpu/drm/pl111/
6183
6184 DRM DRIVER FOR ARM VERSATILE TFT PANELS
6185 M:      Linus Walleij <linus.walleij@linaro.org>
6186 S:      Maintained
6187 T:      git git://anongit.freedesktop.org/drm/drm-misc
6188 F:      Documentation/devicetree/bindings/display/panel/arm,versatile-tft-panel.yaml
6189 F:      drivers/gpu/drm/panel/panel-arm-versatile.c
6190
6191 DRM DRIVER FOR ASPEED BMC GFX
6192 M:      Joel Stanley <joel@jms.id.au>
6193 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
6194 S:      Supported
6195 T:      git git://anongit.freedesktop.org/drm/drm-misc
6196 F:      Documentation/devicetree/bindings/gpu/aspeed-gfx.txt
6197 F:      drivers/gpu/drm/aspeed/
6198
6199 DRM DRIVER FOR AST SERVER GRAPHICS CHIPS
6200 M:      Dave Airlie <airlied@redhat.com>
6201 R:      Thomas Zimmermann <tzimmermann@suse.de>
6202 L:      dri-devel@lists.freedesktop.org
6203 S:      Supported
6204 T:      git git://anongit.freedesktop.org/drm/drm-misc
6205 F:      drivers/gpu/drm/ast/
6206
6207 DRM DRIVER FOR BOCHS VIRTUAL GPU
6208 M:      Gerd Hoffmann <kraxel@redhat.com>
6209 L:      virtualization@lists.linux-foundation.org
6210 S:      Maintained
6211 T:      git git://anongit.freedesktop.org/drm/drm-misc
6212 F:      drivers/gpu/drm/tiny/bochs.c
6213
6214 DRM DRIVER FOR BOE HIMAX8279D PANELS
6215 M:      Jerry Han <hanxu5@huaqin.corp-partner.google.com>
6216 S:      Maintained
6217 F:      Documentation/devicetree/bindings/display/panel/boe,himax8279d.yaml
6218 F:      drivers/gpu/drm/panel/panel-boe-himax8279d.c
6219
6220 DRM DRIVER FOR CHIPONE ICN6211 MIPI-DSI to RGB CONVERTER BRIDGE
6221 M:      Jagan Teki <jagan@amarulasolutions.com>
6222 S:      Maintained
6223 F:      Documentation/devicetree/bindings/display/bridge/chipone,icn6211.yaml
6224 F:      drivers/gpu/drm/bridge/chipone-icn6211.c
6225
6226 DRM DRIVER FOR FARADAY TVE200 TV ENCODER
6227 M:      Linus Walleij <linus.walleij@linaro.org>
6228 S:      Maintained
6229 T:      git git://anongit.freedesktop.org/drm/drm-misc
6230 F:      drivers/gpu/drm/tve200/
6231
6232 DRM DRIVER FOR FEIXIN K101 IM2BA02 MIPI-DSI LCD PANELS
6233 M:      Icenowy Zheng <icenowy@aosc.io>
6234 S:      Maintained
6235 F:      Documentation/devicetree/bindings/display/panel/feixin,k101-im2ba02.yaml
6236 F:      drivers/gpu/drm/panel/panel-feixin-k101-im2ba02.c
6237
6238 DRM DRIVER FOR FEIYANG FY07024DI26A30-D MIPI-DSI LCD PANELS
6239 M:      Jagan Teki <jagan@amarulasolutions.com>
6240 S:      Maintained
6241 F:      Documentation/devicetree/bindings/display/panel/feiyang,fy07024di26a30d.yaml
6242 F:      drivers/gpu/drm/panel/panel-feiyang-fy07024di26a30d.c
6243
6244 DRM DRIVER FOR GENERIC USB DISPLAY
6245 M:      Noralf Trønnes <noralf@tronnes.org>
6246 S:      Maintained
6247 W:      https://github.com/notro/gud/wiki
6248 T:      git git://anongit.freedesktop.org/drm/drm-misc
6249 F:      drivers/gpu/drm/gud/
6250 F:      include/drm/gud.h
6251
6252 DRM DRIVER FOR GRAIN MEDIA GM12U320 PROJECTORS
6253 M:      Hans de Goede <hdegoede@redhat.com>
6254 S:      Maintained
6255 T:      git git://anongit.freedesktop.org/drm/drm-misc
6256 F:      drivers/gpu/drm/tiny/gm12u320.c
6257
6258 DRM DRIVER FOR HX8357D PANELS
6259 M:      Emma Anholt <emma@anholt.net>
6260 S:      Maintained
6261 T:      git git://anongit.freedesktop.org/drm/drm-misc
6262 F:      Documentation/devicetree/bindings/display/himax,hx8357d.txt
6263 F:      drivers/gpu/drm/tiny/hx8357d.c
6264
6265 DRM DRIVER FOR ILITEK ILI9225 PANELS
6266 M:      David Lechner <david@lechnology.com>
6267 S:      Maintained
6268 T:      git git://anongit.freedesktop.org/drm/drm-misc
6269 F:      Documentation/devicetree/bindings/display/ilitek,ili9225.txt
6270 F:      drivers/gpu/drm/tiny/ili9225.c
6271
6272 DRM DRIVER FOR ILITEK ILI9486 PANELS
6273 M:      Kamlesh Gurudasani <kamlesh.gurudasani@gmail.com>
6274 S:      Maintained
6275 T:      git git://anongit.freedesktop.org/drm/drm-misc
6276 F:      Documentation/devicetree/bindings/display/ilitek,ili9486.yaml
6277 F:      drivers/gpu/drm/tiny/ili9486.c
6278
6279 DRM DRIVER FOR INTEL I810 VIDEO CARDS
6280 S:      Orphan / Obsolete
6281 F:      drivers/gpu/drm/i810/
6282 F:      include/uapi/drm/i810_drm.h
6283
6284 DRM DRIVER FOR LVDS PANELS
6285 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6286 L:      dri-devel@lists.freedesktop.org
6287 T:      git git://anongit.freedesktop.org/drm/drm-misc
6288 S:      Maintained
6289 F:      drivers/gpu/drm/panel/panel-lvds.c
6290 F:      Documentation/devicetree/bindings/display/lvds.yaml
6291 F:      Documentation/devicetree/bindings/display/panel/panel-lvds.yaml
6292
6293 DRM DRIVER FOR MANTIX MLAF057WE51 PANELS
6294 M:      Guido Günther <agx@sigxcpu.org>
6295 R:      Purism Kernel Team <kernel@puri.sm>
6296 S:      Maintained
6297 F:      Documentation/devicetree/bindings/display/panel/mantix,mlaf057we51-x.yaml
6298 F:      drivers/gpu/drm/panel/panel-mantix-mlaf057we51.c
6299
6300 DRM DRIVER FOR MATROX G200/G400 GRAPHICS CARDS
6301 S:      Orphan / Obsolete
6302 F:      drivers/gpu/drm/mga/
6303 F:      include/uapi/drm/mga_drm.h
6304
6305 DRM DRIVER FOR MGA G200 GRAPHICS CHIPS
6306 M:      Dave Airlie <airlied@redhat.com>
6307 R:      Thomas Zimmermann <tzimmermann@suse.de>
6308 L:      dri-devel@lists.freedesktop.org
6309 S:      Supported
6310 T:      git git://anongit.freedesktop.org/drm/drm-misc
6311 F:      drivers/gpu/drm/mgag200/
6312
6313 DRM DRIVER FOR MI0283QT
6314 M:      Noralf Trønnes <noralf@tronnes.org>
6315 S:      Maintained
6316 T:      git git://anongit.freedesktop.org/drm/drm-misc
6317 F:      Documentation/devicetree/bindings/display/multi-inno,mi0283qt.txt
6318 F:      drivers/gpu/drm/tiny/mi0283qt.c
6319
6320 DRM DRIVER FOR MIPI DBI compatible panels
6321 M:      Noralf Trønnes <noralf@tronnes.org>
6322 S:      Maintained
6323 W:      https://github.com/notro/panel-mipi-dbi/wiki
6324 T:      git git://anongit.freedesktop.org/drm/drm-misc
6325 F:      Documentation/devicetree/bindings/display/panel/panel-mipi-dbi-spi.yaml
6326 F:      drivers/gpu/drm/tiny/panel-mipi-dbi.c
6327
6328 DRM DRIVER FOR MSM ADRENO GPU
6329 M:      Rob Clark <robdclark@gmail.com>
6330 M:      Abhinav Kumar <quic_abhinavk@quicinc.com>
6331 M:      Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
6332 R:      Sean Paul <sean@poorly.run>
6333 L:      linux-arm-msm@vger.kernel.org
6334 L:      dri-devel@lists.freedesktop.org
6335 L:      freedreno@lists.freedesktop.org
6336 S:      Maintained
6337 T:      git https://gitlab.freedesktop.org/drm/msm.git
6338 F:      Documentation/devicetree/bindings/display/msm/
6339 F:      drivers/gpu/drm/msm/
6340 F:      include/uapi/drm/msm_drm.h
6341
6342 DRM DRIVER FOR NOVATEK NT35510 PANELS
6343 M:      Linus Walleij <linus.walleij@linaro.org>
6344 S:      Maintained
6345 T:      git git://anongit.freedesktop.org/drm/drm-misc
6346 F:      Documentation/devicetree/bindings/display/panel/novatek,nt35510.yaml
6347 F:      drivers/gpu/drm/panel/panel-novatek-nt35510.c
6348
6349 DRM DRIVER FOR NOVATEK NT35560 PANELS
6350 M:      Linus Walleij <linus.walleij@linaro.org>
6351 S:      Maintained
6352 T:      git git://anongit.freedesktop.org/drm/drm-misc
6353 F:      Documentation/devicetree/bindings/display/panel/sony,acx424akp.yaml
6354 F:      drivers/gpu/drm/panel/panel-novatek-nt35560.c
6355
6356 DRM DRIVER FOR NOVATEK NT36672A PANELS
6357 M:      Sumit Semwal <sumit.semwal@linaro.org>
6358 S:      Maintained
6359 T:      git git://anongit.freedesktop.org/drm/drm-misc
6360 F:      Documentation/devicetree/bindings/display/panel/novatek,nt36672a.yaml
6361 F:      drivers/gpu/drm/panel/panel-novatek-nt36672a.c
6362
6363 DRM DRIVER FOR NVIDIA GEFORCE/QUADRO GPUS
6364 M:      Ben Skeggs <bskeggs@redhat.com>
6365 M:      Karol Herbst <kherbst@redhat.com>
6366 M:      Lyude Paul <lyude@redhat.com>
6367 L:      dri-devel@lists.freedesktop.org
6368 L:      nouveau@lists.freedesktop.org
6369 S:      Supported
6370 W:      https://nouveau.freedesktop.org/
6371 Q:      https://patchwork.freedesktop.org/project/nouveau/
6372 Q:      https://gitlab.freedesktop.org/drm/nouveau/-/merge_requests
6373 B:      https://gitlab.freedesktop.org/drm/nouveau/-/issues
6374 C:      irc://irc.oftc.net/nouveau
6375 T:      git https://gitlab.freedesktop.org/drm/nouveau.git
6376 F:      drivers/gpu/drm/nouveau/
6377 F:      include/uapi/drm/nouveau_drm.h
6378
6379 DRM DRIVER FOR OLIMEX LCD-OLINUXINO PANELS
6380 M:      Stefan Mavrodiev <stefan@olimex.com>
6381 S:      Maintained
6382 F:      Documentation/devicetree/bindings/display/panel/olimex,lcd-olinuxino.yaml
6383 F:      drivers/gpu/drm/panel/panel-olimex-lcd-olinuxino.c
6384
6385 DRM DRIVER FOR PARADE PS8640 BRIDGE CHIP
6386 R:      Douglas Anderson <dianders@chromium.org>
6387 F:      Documentation/devicetree/bindings/display/bridge/ps8640.yaml
6388 F:      drivers/gpu/drm/bridge/parade-ps8640.c
6389
6390 DRM DRIVER FOR PERVASIVE DISPLAYS REPAPER PANELS
6391 M:      Noralf Trønnes <noralf@tronnes.org>
6392 S:      Maintained
6393 T:      git git://anongit.freedesktop.org/drm/drm-misc
6394 F:      Documentation/devicetree/bindings/display/repaper.txt
6395 F:      drivers/gpu/drm/tiny/repaper.c
6396
6397 DRM DRIVER FOR SOLOMON SSD130X OLED DISPLAYS
6398 M:      Javier Martinez Canillas <javierm@redhat.com>
6399 S:      Maintained
6400 T:      git git://anongit.freedesktop.org/drm/drm-misc
6401 F:      Documentation/devicetree/bindings/display/solomon,ssd1307fb.yaml
6402 F:      drivers/gpu/drm/solomon/ssd130x*
6403
6404 DRM DRIVER FOR QEMU'S CIRRUS DEVICE
6405 M:      Dave Airlie <airlied@redhat.com>
6406 M:      Gerd Hoffmann <kraxel@redhat.com>
6407 L:      virtualization@lists.linux-foundation.org
6408 S:      Obsolete
6409 W:      https://www.kraxel.org/blog/2014/10/qemu-using-cirrus-considered-harmful/
6410 T:      git git://anongit.freedesktop.org/drm/drm-misc
6411 F:      drivers/gpu/drm/tiny/cirrus.c
6412
6413 DRM DRIVER FOR QXL VIRTUAL GPU
6414 M:      Dave Airlie <airlied@redhat.com>
6415 M:      Gerd Hoffmann <kraxel@redhat.com>
6416 L:      virtualization@lists.linux-foundation.org
6417 L:      spice-devel@lists.freedesktop.org
6418 S:      Maintained
6419 T:      git git://anongit.freedesktop.org/drm/drm-misc
6420 F:      drivers/gpu/drm/qxl/
6421 F:      include/uapi/drm/qxl_drm.h
6422
6423 DRM DRIVER FOR RAGE 128 VIDEO CARDS
6424 S:      Orphan / Obsolete
6425 F:      drivers/gpu/drm/r128/
6426 F:      include/uapi/drm/r128_drm.h
6427
6428 DRM DRIVER FOR RAYDIUM RM67191 PANELS
6429 M:      Robert Chiras <robert.chiras@nxp.com>
6430 S:      Maintained
6431 F:      Documentation/devicetree/bindings/display/panel/raydium,rm67191.yaml
6432 F:      drivers/gpu/drm/panel/panel-raydium-rm67191.c
6433
6434 DRM DRIVER FOR SAMSUNG DB7430 PANELS
6435 M:      Linus Walleij <linus.walleij@linaro.org>
6436 S:      Maintained
6437 T:      git git://anongit.freedesktop.org/drm/drm-misc
6438 F:      Documentation/devicetree/bindings/display/panel/samsung,lms397kf04.yaml
6439 F:      drivers/gpu/drm/panel/panel-samsung-db7430.c
6440
6441 DRM DRIVER FOR SAMSUNG S6D27A1 PANELS
6442 M:      Markuss Broks <markuss.broks@gmail.com>
6443 S:      Maintained
6444 F:      Documentation/devicetree/bindings/display/panel/samsung,s6d27a1.yaml
6445 F:      drivers/gpu/drm/panel/panel-samsung-s6d27a1.c
6446
6447 DRM DRIVER FOR SITRONIX ST7703 PANELS
6448 M:      Guido Günther <agx@sigxcpu.org>
6449 R:      Purism Kernel Team <kernel@puri.sm>
6450 R:      Ondrej Jirman <megous@megous.com>
6451 S:      Maintained
6452 F:      Documentation/devicetree/bindings/display/panel/rocktech,jh057n00900.yaml
6453 F:      drivers/gpu/drm/panel/panel-sitronix-st7703.c
6454
6455 DRM DRIVER FOR SAVAGE VIDEO CARDS
6456 S:      Orphan / Obsolete
6457 F:      drivers/gpu/drm/savage/
6458 F:      include/uapi/drm/savage_drm.h
6459
6460 DRM DRIVER FOR SIMPLE FRAMEBUFFERS
6461 M:      Thomas Zimmermann <tzimmermann@suse.de>
6462 L:      dri-devel@lists.freedesktop.org
6463 S:      Maintained
6464 T:      git git://anongit.freedesktop.org/drm/drm-misc
6465 F:      drivers/gpu/drm/tiny/simpledrm.c
6466
6467 DRM DRIVER FOR SIS VIDEO CARDS
6468 S:      Orphan / Obsolete
6469 F:      drivers/gpu/drm/sis/
6470 F:      include/uapi/drm/sis_drm.h
6471
6472 DRM DRIVER FOR SITRONIX ST7586 PANELS
6473 M:      David Lechner <david@lechnology.com>
6474 S:      Maintained
6475 T:      git git://anongit.freedesktop.org/drm/drm-misc
6476 F:      Documentation/devicetree/bindings/display/sitronix,st7586.txt
6477 F:      drivers/gpu/drm/tiny/st7586.c
6478
6479 DRM DRIVER FOR SITRONIX ST7701 PANELS
6480 M:      Jagan Teki <jagan@amarulasolutions.com>
6481 S:      Maintained
6482 F:      Documentation/devicetree/bindings/display/panel/sitronix,st7701.yaml
6483 F:      drivers/gpu/drm/panel/panel-sitronix-st7701.c
6484
6485 DRM DRIVER FOR SITRONIX ST7735R PANELS
6486 M:      David Lechner <david@lechnology.com>
6487 S:      Maintained
6488 T:      git git://anongit.freedesktop.org/drm/drm-misc
6489 F:      Documentation/devicetree/bindings/display/sitronix,st7735r.yaml
6490 F:      drivers/gpu/drm/tiny/st7735r.c
6491
6492 DRM DRIVER FOR ST-ERICSSON MCDE
6493 M:      Linus Walleij <linus.walleij@linaro.org>
6494 S:      Maintained
6495 T:      git git://anongit.freedesktop.org/drm/drm-misc
6496 F:      Documentation/devicetree/bindings/display/ste,mcde.yaml
6497 F:      drivers/gpu/drm/mcde/
6498
6499 DRM DRIVER FOR TDFX VIDEO CARDS
6500 S:      Orphan / Obsolete
6501 F:      drivers/gpu/drm/tdfx/
6502
6503 DRM DRIVER FOR TI SN65DSI86 BRIDGE CHIP
6504 R:      Douglas Anderson <dianders@chromium.org>
6505 F:      Documentation/devicetree/bindings/display/bridge/ti,sn65dsi86.yaml
6506 F:      drivers/gpu/drm/bridge/ti-sn65dsi86.c
6507
6508 DRM DRIVER FOR TPO TPG110 PANELS
6509 M:      Linus Walleij <linus.walleij@linaro.org>
6510 S:      Maintained
6511 T:      git git://anongit.freedesktop.org/drm/drm-misc
6512 F:      Documentation/devicetree/bindings/display/panel/tpo,tpg110.yaml
6513 F:      drivers/gpu/drm/panel/panel-tpo-tpg110.c
6514
6515 DRM DRIVER FOR USB DISPLAYLINK VIDEO ADAPTERS
6516 M:      Dave Airlie <airlied@redhat.com>
6517 R:      Sean Paul <sean@poorly.run>
6518 R:      Thomas Zimmermann <tzimmermann@suse.de>
6519 L:      dri-devel@lists.freedesktop.org
6520 S:      Supported
6521 T:      git git://anongit.freedesktop.org/drm/drm-misc
6522 F:      drivers/gpu/drm/udl/
6523
6524 DRM DRIVER FOR VIRTUAL KERNEL MODESETTING (VKMS)
6525 M:      Rodrigo Siqueira <rodrigosiqueiramelo@gmail.com>
6526 M:      Melissa Wen <melissa.srw@gmail.com>
6527 R:      Haneen Mohammed <hamohammed.sa@gmail.com>
6528 R:      Daniel Vetter <daniel@ffwll.ch>
6529 L:      dri-devel@lists.freedesktop.org
6530 S:      Maintained
6531 T:      git git://anongit.freedesktop.org/drm/drm-misc
6532 F:      Documentation/gpu/vkms.rst
6533 F:      drivers/gpu/drm/vkms/
6534
6535 DRM DRIVER FOR VIRTUALBOX VIRTUAL GPU
6536 M:      Hans de Goede <hdegoede@redhat.com>
6537 L:      dri-devel@lists.freedesktop.org
6538 S:      Maintained
6539 T:      git git://anongit.freedesktop.org/drm/drm-misc
6540 F:      drivers/gpu/drm/vboxvideo/
6541
6542 DRM DRIVER FOR VMWARE VIRTUAL GPU
6543 M:      Zack Rusin <zackr@vmware.com>
6544 R:      VMware Graphics Reviewers <linux-graphics-maintainer@vmware.com>
6545 L:      dri-devel@lists.freedesktop.org
6546 S:      Supported
6547 T:      git git://anongit.freedesktop.org/drm/drm-misc
6548 F:      drivers/gpu/drm/vmwgfx/
6549 F:      include/uapi/drm/vmwgfx_drm.h
6550
6551 DRM DRIVER FOR WIDECHIPS WS2401 PANELS
6552 M:      Linus Walleij <linus.walleij@linaro.org>
6553 S:      Maintained
6554 T:      git git://anongit.freedesktop.org/drm/drm-misc
6555 F:      Documentation/devicetree/bindings/display/panel/samsung,lms380kf01.yaml
6556 F:      drivers/gpu/drm/panel/panel-widechips-ws2401.c
6557
6558 DRM DRIVERS
6559 M:      David Airlie <airlied@linux.ie>
6560 M:      Daniel Vetter <daniel@ffwll.ch>
6561 L:      dri-devel@lists.freedesktop.org
6562 S:      Maintained
6563 B:      https://gitlab.freedesktop.org/drm
6564 C:      irc://irc.oftc.net/dri-devel
6565 T:      git git://anongit.freedesktop.org/drm/drm
6566 F:      Documentation/devicetree/bindings/display/
6567 F:      Documentation/devicetree/bindings/gpu/
6568 F:      Documentation/gpu/
6569 F:      drivers/gpu/
6570 F:      include/drm/
6571 F:      include/linux/vga*
6572 F:      include/uapi/drm/
6573
6574 DRM DRIVERS AND MISC GPU PATCHES
6575 M:      Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
6576 M:      Maxime Ripard <mripard@kernel.org>
6577 M:      Thomas Zimmermann <tzimmermann@suse.de>
6578 S:      Maintained
6579 W:      https://01.org/linuxgraphics/gfx-docs/maintainer-tools/drm-misc.html
6580 T:      git git://anongit.freedesktop.org/drm/drm-misc
6581 F:      Documentation/gpu/
6582 F:      drivers/gpu/drm/*
6583 F:      drivers/gpu/vga/
6584 F:      include/drm/drm*
6585 F:      include/linux/vga*
6586 F:      include/uapi/drm/drm*
6587
6588 DRM DRIVERS FOR ALLWINNER A10
6589 M:      Maxime Ripard <mripard@kernel.org>
6590 M:      Chen-Yu Tsai <wens@csie.org>
6591 L:      dri-devel@lists.freedesktop.org
6592 S:      Supported
6593 T:      git git://anongit.freedesktop.org/drm/drm-misc
6594 F:      Documentation/devicetree/bindings/display/allwinner*
6595 F:      drivers/gpu/drm/sun4i/
6596
6597 DRM DRIVERS FOR AMLOGIC SOCS
6598 M:      Neil Armstrong <narmstrong@baylibre.com>
6599 L:      dri-devel@lists.freedesktop.org
6600 L:      linux-amlogic@lists.infradead.org
6601 S:      Supported
6602 W:      http://linux-meson.com/
6603 T:      git git://anongit.freedesktop.org/drm/drm-misc
6604 F:      Documentation/devicetree/bindings/display/amlogic,meson-dw-hdmi.yaml
6605 F:      Documentation/devicetree/bindings/display/amlogic,meson-vpu.yaml
6606 F:      Documentation/gpu/meson.rst
6607 F:      drivers/gpu/drm/meson/
6608
6609 DRM DRIVERS FOR ATMEL HLCDC
6610 M:      Sam Ravnborg <sam@ravnborg.org>
6611 M:      Boris Brezillon <bbrezillon@kernel.org>
6612 L:      dri-devel@lists.freedesktop.org
6613 S:      Supported
6614 T:      git git://anongit.freedesktop.org/drm/drm-misc
6615 F:      Documentation/devicetree/bindings/display/atmel/
6616 F:      drivers/gpu/drm/atmel-hlcdc/
6617
6618 DRM DRIVERS FOR BRIDGE CHIPS
6619 M:      Andrzej Hajda <andrzej.hajda@intel.com>
6620 M:      Neil Armstrong <narmstrong@baylibre.com>
6621 M:      Robert Foss <robert.foss@linaro.org>
6622 R:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
6623 R:      Jonas Karlman <jonas@kwiboo.se>
6624 R:      Jernej Skrabec <jernej.skrabec@gmail.com>
6625 S:      Maintained
6626 T:      git git://anongit.freedesktop.org/drm/drm-misc
6627 F:      Documentation/devicetree/bindings/display/bridge/
6628 F:      drivers/gpu/drm/bridge/
6629
6630 DRM DRIVERS FOR EXYNOS
6631 M:      Inki Dae <inki.dae@samsung.com>
6632 M:      Joonyoung Shim <jy0922.shim@samsung.com>
6633 M:      Seung-Woo Kim <sw0312.kim@samsung.com>
6634 M:      Kyungmin Park <kyungmin.park@samsung.com>
6635 L:      dri-devel@lists.freedesktop.org
6636 S:      Supported
6637 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
6638 F:      Documentation/devicetree/bindings/display/exynos/
6639 F:      Documentation/devicetree/bindings/display/samsung/
6640 F:      drivers/gpu/drm/exynos/
6641 F:      include/uapi/drm/exynos_drm.h
6642
6643 DRM DRIVERS FOR FREESCALE DCU
6644 M:      Stefan Agner <stefan@agner.ch>
6645 M:      Alison Wang <alison.wang@nxp.com>
6646 L:      dri-devel@lists.freedesktop.org
6647 S:      Supported
6648 T:      git git://anongit.freedesktop.org/drm/drm-misc
6649 F:      Documentation/devicetree/bindings/display/fsl,dcu.txt
6650 F:      Documentation/devicetree/bindings/display/fsl,tcon.txt
6651 F:      drivers/gpu/drm/fsl-dcu/
6652
6653 DRM DRIVERS FOR FREESCALE IMX
6654 M:      Philipp Zabel <p.zabel@pengutronix.de>
6655 L:      dri-devel@lists.freedesktop.org
6656 S:      Maintained
6657 F:      Documentation/devicetree/bindings/display/imx/
6658 F:      drivers/gpu/drm/imx/
6659 F:      drivers/gpu/ipu-v3/
6660
6661 DRM DRIVERS FOR GMA500 (Poulsbo, Moorestown and derivative chipsets)
6662 M:      Patrik Jakobsson <patrik.r.jakobsson@gmail.com>
6663 L:      dri-devel@lists.freedesktop.org
6664 S:      Maintained
6665 T:      git git://github.com/patjak/drm-gma500
6666 F:      drivers/gpu/drm/gma500/
6667
6668 DRM DRIVERS FOR HISILICON
6669 M:      Xinliang Liu <xinliang.liu@linaro.org>
6670 M:      Tian Tao  <tiantao6@hisilicon.com>
6671 R:      John Stultz <jstultz@google.com>
6672 R:      Xinwei Kong <kong.kongxinwei@hisilicon.com>
6673 R:      Chen Feng <puck.chen@hisilicon.com>
6674 L:      dri-devel@lists.freedesktop.org
6675 S:      Maintained
6676 T:      git git://anongit.freedesktop.org/drm/drm-misc
6677 F:      Documentation/devicetree/bindings/display/hisilicon/
6678 F:      drivers/gpu/drm/hisilicon/
6679
6680 DRM DRIVER FOR HYPERV SYNTHETIC VIDEO DEVICE
6681 M:      Deepak Rawat <drawat.floss@gmail.com>
6682 L:      linux-hyperv@vger.kernel.org
6683 L:      dri-devel@lists.freedesktop.org
6684 S:      Maintained
6685 T:      git git://anongit.freedesktop.org/drm/drm-misc
6686 F:      drivers/gpu/drm/hyperv
6687
6688 DRM DRIVERS FOR LIMA
6689 M:      Qiang Yu <yuq825@gmail.com>
6690 L:      dri-devel@lists.freedesktop.org
6691 L:      lima@lists.freedesktop.org (moderated for non-subscribers)
6692 S:      Maintained
6693 T:      git git://anongit.freedesktop.org/drm/drm-misc
6694 F:      drivers/gpu/drm/lima/
6695 F:      include/uapi/drm/lima_drm.h
6696
6697 DRM DRIVERS FOR MEDIATEK
6698 M:      Chun-Kuang Hu <chunkuang.hu@kernel.org>
6699 M:      Philipp Zabel <p.zabel@pengutronix.de>
6700 L:      dri-devel@lists.freedesktop.org
6701 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
6702 S:      Supported
6703 F:      Documentation/devicetree/bindings/display/mediatek/
6704 F:      drivers/gpu/drm/mediatek/
6705 F:      drivers/phy/mediatek/phy-mtk-hdmi*
6706 F:      drivers/phy/mediatek/phy-mtk-mipi*
6707
6708 DRM DRIVERS FOR NVIDIA TEGRA
6709 M:      Thierry Reding <thierry.reding@gmail.com>
6710 L:      dri-devel@lists.freedesktop.org
6711 L:      linux-tegra@vger.kernel.org
6712 S:      Supported
6713 T:      git git://anongit.freedesktop.org/tegra/linux.git
6714 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
6715 F:      Documentation/devicetree/bindings/gpu/host1x/
6716 F:      drivers/gpu/drm/tegra/
6717 F:      drivers/gpu/host1x/
6718 F:      include/linux/host1x.h
6719 F:      include/uapi/drm/tegra_drm.h
6720
6721 DRM DRIVERS FOR RENESAS
6722 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6723 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
6724 L:      dri-devel@lists.freedesktop.org
6725 L:      linux-renesas-soc@vger.kernel.org
6726 S:      Supported
6727 T:      git git://linuxtv.org/pinchartl/media drm/du/next
6728 F:      Documentation/devicetree/bindings/display/bridge/renesas,dsi-csi2-tx.yaml
6729 F:      Documentation/devicetree/bindings/display/bridge/renesas,dw-hdmi.yaml
6730 F:      Documentation/devicetree/bindings/display/bridge/renesas,lvds.yaml
6731 F:      Documentation/devicetree/bindings/display/renesas,du.yaml
6732 F:      drivers/gpu/drm/rcar-du/
6733 F:      drivers/gpu/drm/shmobile/
6734 F:      include/linux/platform_data/shmob_drm.h
6735
6736 DRM DRIVERS FOR ROCKCHIP
6737 M:      Sandy Huang <hjc@rock-chips.com>
6738 M:      Heiko Stübner <heiko@sntech.de>
6739 L:      dri-devel@lists.freedesktop.org
6740 S:      Maintained
6741 T:      git git://anongit.freedesktop.org/drm/drm-misc
6742 F:      Documentation/devicetree/bindings/display/rockchip/
6743 F:      drivers/gpu/drm/rockchip/
6744
6745 DRM DRIVERS FOR STI
6746 M:      Alain Volmat <alain.volmat@foss.st.com>
6747 L:      dri-devel@lists.freedesktop.org
6748 S:      Maintained
6749 T:      git git://anongit.freedesktop.org/drm/drm-misc
6750 F:      Documentation/devicetree/bindings/display/st,stih4xx.txt
6751 F:      drivers/gpu/drm/sti
6752
6753 DRM DRIVERS FOR STM
6754 M:      Yannick Fertre <yannick.fertre@foss.st.com>
6755 M:      Raphael Gallais-Pou <raphael.gallais-pou@foss.st.com>
6756 M:      Philippe Cornu <philippe.cornu@foss.st.com>
6757 L:      dri-devel@lists.freedesktop.org
6758 S:      Maintained
6759 T:      git git://anongit.freedesktop.org/drm/drm-misc
6760 F:      Documentation/devicetree/bindings/display/st,stm32-ltdc.yaml
6761 F:      drivers/gpu/drm/stm
6762
6763 DRM DRIVERS FOR TI KEYSTONE
6764 M:      Jyri Sarha <jyri.sarha@iki.fi>
6765 M:      Tomi Valkeinen <tomba@kernel.org>
6766 L:      dri-devel@lists.freedesktop.org
6767 S:      Maintained
6768 T:      git git://anongit.freedesktop.org/drm/drm-misc
6769 F:      Documentation/devicetree/bindings/display/ti/ti,am65x-dss.yaml
6770 F:      Documentation/devicetree/bindings/display/ti/ti,j721e-dss.yaml
6771 F:      Documentation/devicetree/bindings/display/ti/ti,k2g-dss.yaml
6772 F:      drivers/gpu/drm/tidss/
6773
6774 DRM DRIVERS FOR TI LCDC
6775 M:      Jyri Sarha <jyri.sarha@iki.fi>
6776 R:      Tomi Valkeinen <tomba@kernel.org>
6777 L:      dri-devel@lists.freedesktop.org
6778 S:      Maintained
6779 F:      Documentation/devicetree/bindings/display/tilcdc/
6780 F:      drivers/gpu/drm/tilcdc/
6781
6782 DRM DRIVERS FOR TI OMAP
6783 M:      Tomi Valkeinen <tomba@kernel.org>
6784 L:      dri-devel@lists.freedesktop.org
6785 S:      Maintained
6786 F:      Documentation/devicetree/bindings/display/ti/
6787 F:      drivers/gpu/drm/omapdrm/
6788
6789 DRM DRIVERS FOR V3D
6790 M:      Emma Anholt <emma@anholt.net>
6791 S:      Supported
6792 T:      git git://anongit.freedesktop.org/drm/drm-misc
6793 F:      Documentation/devicetree/bindings/gpu/brcm,bcm-v3d.yaml
6794 F:      drivers/gpu/drm/v3d/
6795 F:      include/uapi/drm/v3d_drm.h
6796
6797 DRM DRIVERS FOR VC4
6798 M:      Emma Anholt <emma@anholt.net>
6799 M:      Maxime Ripard <mripard@kernel.org>
6800 S:      Supported
6801 T:      git git://github.com/anholt/linux
6802 T:      git git://anongit.freedesktop.org/drm/drm-misc
6803 F:      Documentation/devicetree/bindings/display/brcm,bcm2835-*.yaml
6804 F:      drivers/gpu/drm/vc4/
6805 F:      include/uapi/drm/vc4_drm.h
6806
6807 DRM DRIVERS FOR VIVANTE GPU IP
6808 M:      Lucas Stach <l.stach@pengutronix.de>
6809 R:      Russell King <linux+etnaviv@armlinux.org.uk>
6810 R:      Christian Gmeiner <christian.gmeiner@gmail.com>
6811 L:      etnaviv@lists.freedesktop.org (moderated for non-subscribers)
6812 L:      dri-devel@lists.freedesktop.org
6813 S:      Maintained
6814 F:      Documentation/devicetree/bindings/gpu/vivante,gc.yaml
6815 F:      drivers/gpu/drm/etnaviv/
6816 F:      include/uapi/drm/etnaviv_drm.h
6817
6818 DRM DRIVERS FOR XEN
6819 M:      Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
6820 L:      dri-devel@lists.freedesktop.org
6821 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
6822 S:      Supported
6823 T:      git git://anongit.freedesktop.org/drm/drm-misc
6824 F:      Documentation/gpu/xen-front.rst
6825 F:      drivers/gpu/drm/xen/
6826
6827 DRM DRIVERS FOR XILINX
6828 M:      Hyun Kwon <hyun.kwon@xilinx.com>
6829 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6830 L:      dri-devel@lists.freedesktop.org
6831 S:      Maintained
6832 T:      git git://anongit.freedesktop.org/drm/drm-misc
6833 F:      Documentation/devicetree/bindings/display/xlnx/
6834 F:      drivers/gpu/drm/xlnx/
6835
6836 DRM PANEL DRIVERS
6837 M:      Thierry Reding <thierry.reding@gmail.com>
6838 R:      Sam Ravnborg <sam@ravnborg.org>
6839 L:      dri-devel@lists.freedesktop.org
6840 S:      Maintained
6841 T:      git git://anongit.freedesktop.org/drm/drm-misc
6842 F:      Documentation/devicetree/bindings/display/panel/
6843 F:      drivers/gpu/drm/drm_panel.c
6844 F:      drivers/gpu/drm/panel/
6845 F:      include/drm/drm_panel.h
6846
6847 DRM PRIVACY-SCREEN CLASS
6848 M:      Hans de Goede <hdegoede@redhat.com>
6849 L:      dri-devel@lists.freedesktop.org
6850 S:      Maintained
6851 T:      git git://anongit.freedesktop.org/drm/drm-misc
6852 F:      drivers/gpu/drm/drm_privacy_screen*
6853 F:      include/drm/drm_privacy_screen*
6854
6855 DRM TTM SUBSYSTEM
6856 M:      Christian Koenig <christian.koenig@amd.com>
6857 M:      Huang Rui <ray.huang@amd.com>
6858 L:      dri-devel@lists.freedesktop.org
6859 S:      Maintained
6860 T:      git git://anongit.freedesktop.org/drm/drm-misc
6861 F:      drivers/gpu/drm/ttm/
6862 F:      include/drm/ttm/
6863
6864 DRM GPU SCHEDULER
6865 M:      Andrey Grodzovsky <andrey.grodzovsky@amd.com>
6866 L:      dri-devel@lists.freedesktop.org
6867 S:      Maintained
6868 T:      git git://anongit.freedesktop.org/drm/drm-misc
6869 F:      drivers/gpu/drm/scheduler/
6870 F:      include/drm/gpu_scheduler.h
6871
6872 DSBR100 USB FM RADIO DRIVER
6873 M:      Alexey Klimov <klimov.linux@gmail.com>
6874 L:      linux-media@vger.kernel.org
6875 S:      Maintained
6876 T:      git git://linuxtv.org/media_tree.git
6877 F:      drivers/media/radio/dsbr100.c
6878
6879 DT3155 MEDIA DRIVER
6880 M:      Hans Verkuil <hverkuil@xs4all.nl>
6881 L:      linux-media@vger.kernel.org
6882 S:      Odd Fixes
6883 W:      https://linuxtv.org
6884 T:      git git://linuxtv.org/media_tree.git
6885 F:      drivers/media/pci/dt3155/
6886
6887 DVB_USB_AF9015 MEDIA DRIVER
6888 M:      Antti Palosaari <crope@iki.fi>
6889 L:      linux-media@vger.kernel.org
6890 S:      Maintained
6891 W:      https://linuxtv.org
6892 W:      http://palosaari.fi/linux/
6893 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6894 T:      git git://linuxtv.org/anttip/media_tree.git
6895 F:      drivers/media/usb/dvb-usb-v2/af9015*
6896
6897 DVB_USB_AF9035 MEDIA DRIVER
6898 M:      Antti Palosaari <crope@iki.fi>
6899 L:      linux-media@vger.kernel.org
6900 S:      Maintained
6901 W:      https://linuxtv.org
6902 W:      http://palosaari.fi/linux/
6903 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6904 T:      git git://linuxtv.org/anttip/media_tree.git
6905 F:      drivers/media/usb/dvb-usb-v2/af9035*
6906
6907 DVB_USB_ANYSEE MEDIA DRIVER
6908 M:      Antti Palosaari <crope@iki.fi>
6909 L:      linux-media@vger.kernel.org
6910 S:      Maintained
6911 W:      https://linuxtv.org
6912 W:      http://palosaari.fi/linux/
6913 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6914 T:      git git://linuxtv.org/anttip/media_tree.git
6915 F:      drivers/media/usb/dvb-usb-v2/anysee*
6916
6917 DVB_USB_AU6610 MEDIA DRIVER
6918 M:      Antti Palosaari <crope@iki.fi>
6919 L:      linux-media@vger.kernel.org
6920 S:      Maintained
6921 W:      https://linuxtv.org
6922 W:      http://palosaari.fi/linux/
6923 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6924 T:      git git://linuxtv.org/anttip/media_tree.git
6925 F:      drivers/media/usb/dvb-usb-v2/au6610*
6926
6927 DVB_USB_CE6230 MEDIA DRIVER
6928 M:      Antti Palosaari <crope@iki.fi>
6929 L:      linux-media@vger.kernel.org
6930 S:      Maintained
6931 W:      https://linuxtv.org
6932 W:      http://palosaari.fi/linux/
6933 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6934 T:      git git://linuxtv.org/anttip/media_tree.git
6935 F:      drivers/media/usb/dvb-usb-v2/ce6230*
6936
6937 DVB_USB_CXUSB MEDIA DRIVER
6938 M:      Michael Krufky <mkrufky@linuxtv.org>
6939 L:      linux-media@vger.kernel.org
6940 S:      Maintained
6941 W:      https://linuxtv.org
6942 W:      http://github.com/mkrufky
6943 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6944 T:      git git://linuxtv.org/media_tree.git
6945 F:      drivers/media/usb/dvb-usb/cxusb*
6946
6947 DVB_USB_EC168 MEDIA DRIVER
6948 M:      Antti Palosaari <crope@iki.fi>
6949 L:      linux-media@vger.kernel.org
6950 S:      Maintained
6951 W:      https://linuxtv.org
6952 W:      http://palosaari.fi/linux/
6953 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6954 T:      git git://linuxtv.org/anttip/media_tree.git
6955 F:      drivers/media/usb/dvb-usb-v2/ec168*
6956
6957 DVB_USB_GL861 MEDIA DRIVER
6958 M:      Antti Palosaari <crope@iki.fi>
6959 L:      linux-media@vger.kernel.org
6960 S:      Maintained
6961 W:      https://linuxtv.org
6962 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6963 T:      git git://linuxtv.org/anttip/media_tree.git
6964 F:      drivers/media/usb/dvb-usb-v2/gl861*
6965
6966 DVB_USB_MXL111SF MEDIA DRIVER
6967 M:      Michael Krufky <mkrufky@linuxtv.org>
6968 L:      linux-media@vger.kernel.org
6969 S:      Maintained
6970 W:      https://linuxtv.org
6971 W:      http://github.com/mkrufky
6972 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6973 T:      git git://linuxtv.org/mkrufky/mxl111sf.git
6974 F:      drivers/media/usb/dvb-usb-v2/mxl111sf*
6975
6976 DVB_USB_RTL28XXU MEDIA DRIVER
6977 M:      Antti Palosaari <crope@iki.fi>
6978 L:      linux-media@vger.kernel.org
6979 S:      Maintained
6980 W:      https://linuxtv.org
6981 W:      http://palosaari.fi/linux/
6982 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6983 T:      git git://linuxtv.org/anttip/media_tree.git
6984 F:      drivers/media/usb/dvb-usb-v2/rtl28xxu*
6985
6986 DVB_USB_V2 MEDIA DRIVER
6987 M:      Antti Palosaari <crope@iki.fi>
6988 L:      linux-media@vger.kernel.org
6989 S:      Maintained
6990 W:      https://linuxtv.org
6991 W:      http://palosaari.fi/linux/
6992 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6993 T:      git git://linuxtv.org/anttip/media_tree.git
6994 F:      drivers/media/usb/dvb-usb-v2/dvb_usb*
6995 F:      drivers/media/usb/dvb-usb-v2/usb_urb.c
6996
6997 DYNAMIC DEBUG
6998 M:      Jason Baron <jbaron@akamai.com>
6999 S:      Maintained
7000 F:      include/linux/dynamic_debug.h
7001 F:      lib/dynamic_debug.c
7002
7003 DYNAMIC INTERRUPT MODERATION
7004 M:      Tal Gilboa <talgi@nvidia.com>
7005 S:      Maintained
7006 F:      Documentation/networking/net_dim.rst
7007 F:      include/linux/dim.h
7008 F:      lib/dim/
7009
7010 DZ DECSTATION DZ11 SERIAL DRIVER
7011 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
7012 S:      Maintained
7013 F:      drivers/tty/serial/dz.*
7014
7015 E3X0 POWER BUTTON DRIVER
7016 M:      Moritz Fischer <moritz.fischer@ettus.com>
7017 L:      usrp-users@lists.ettus.com
7018 S:      Supported
7019 W:      http://www.ettus.com
7020 F:      Documentation/devicetree/bindings/input/e3x0-button.txt
7021 F:      drivers/input/misc/e3x0-button.c
7022
7023 E4000 MEDIA DRIVER
7024 M:      Antti Palosaari <crope@iki.fi>
7025 L:      linux-media@vger.kernel.org
7026 S:      Maintained
7027 W:      https://linuxtv.org
7028 W:      http://palosaari.fi/linux/
7029 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7030 T:      git git://linuxtv.org/anttip/media_tree.git
7031 F:      drivers/media/tuners/e4000*
7032
7033 EARTH_PT1 MEDIA DRIVER
7034 M:      Akihiro Tsukada <tskd08@gmail.com>
7035 L:      linux-media@vger.kernel.org
7036 S:      Odd Fixes
7037 F:      drivers/media/pci/pt1/
7038
7039 EARTH_PT3 MEDIA DRIVER
7040 M:      Akihiro Tsukada <tskd08@gmail.com>
7041 L:      linux-media@vger.kernel.org
7042 S:      Odd Fixes
7043 F:      drivers/media/pci/pt3/
7044
7045 EC100 MEDIA DRIVER
7046 M:      Antti Palosaari <crope@iki.fi>
7047 L:      linux-media@vger.kernel.org
7048 S:      Maintained
7049 W:      https://linuxtv.org
7050 W:      http://palosaari.fi/linux/
7051 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7052 T:      git git://linuxtv.org/anttip/media_tree.git
7053 F:      drivers/media/dvb-frontends/ec100*
7054
7055 ECRYPT FILE SYSTEM
7056 M:      Tyler Hicks <code@tyhicks.com>
7057 L:      ecryptfs@vger.kernel.org
7058 S:      Odd Fixes
7059 W:      http://ecryptfs.org
7060 W:      https://launchpad.net/ecryptfs
7061 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tyhicks/ecryptfs.git
7062 F:      Documentation/filesystems/ecryptfs.rst
7063 F:      fs/ecryptfs/
7064
7065 EDAC-AMD64
7066 M:      Yazen Ghannam <yazen.ghannam@amd.com>
7067 L:      linux-edac@vger.kernel.org
7068 S:      Supported
7069 F:      drivers/edac/amd64_edac*
7070 F:      drivers/edac/mce_amd*
7071
7072 EDAC-ARMADA
7073 M:      Jan Luebbe <jlu@pengutronix.de>
7074 L:      linux-edac@vger.kernel.org
7075 S:      Maintained
7076 F:      Documentation/devicetree/bindings/memory-controllers/marvell,mvebu-sdram-controller.yaml
7077 F:      drivers/edac/armada_xp_*
7078
7079 EDAC-AST2500
7080 M:      Stefan Schaeckeler <sschaeck@cisco.com>
7081 S:      Supported
7082 F:      Documentation/devicetree/bindings/edac/aspeed-sdram-edac.txt
7083 F:      drivers/edac/aspeed_edac.c
7084
7085 EDAC-BLUEFIELD
7086 M:      Shravan Kumar Ramani <shravankr@nvidia.com>
7087 S:      Supported
7088 F:      drivers/edac/bluefield_edac.c
7089
7090 EDAC-CALXEDA
7091 M:      Andre Przywara <andre.przywara@arm.com>
7092 L:      linux-edac@vger.kernel.org
7093 S:      Maintained
7094 F:      drivers/edac/highbank*
7095
7096 EDAC-CAVIUM OCTEON
7097 M:      Ralf Baechle <ralf@linux-mips.org>
7098 L:      linux-edac@vger.kernel.org
7099 L:      linux-mips@vger.kernel.org
7100 S:      Supported
7101 F:      drivers/edac/octeon_edac*
7102
7103 EDAC-CAVIUM THUNDERX
7104 M:      Robert Richter <rric@kernel.org>
7105 L:      linux-edac@vger.kernel.org
7106 S:      Odd Fixes
7107 F:      drivers/edac/thunderx_edac*
7108
7109 EDAC-CORE
7110 M:      Borislav Petkov <bp@alien8.de>
7111 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
7112 M:      Tony Luck <tony.luck@intel.com>
7113 R:      James Morse <james.morse@arm.com>
7114 R:      Robert Richter <rric@kernel.org>
7115 L:      linux-edac@vger.kernel.org
7116 S:      Supported
7117 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ras/ras.git edac-for-next
7118 F:      Documentation/admin-guide/ras.rst
7119 F:      Documentation/driver-api/edac.rst
7120 F:      drivers/edac/
7121 F:      include/linux/edac.h
7122
7123 EDAC-DMC520
7124 M:      Lei Wang <lewan@microsoft.com>
7125 L:      linux-edac@vger.kernel.org
7126 S:      Supported
7127 F:      drivers/edac/dmc520_edac.c
7128
7129 EDAC-E752X
7130 M:      Mark Gross <markgross@kernel.org>
7131 L:      linux-edac@vger.kernel.org
7132 S:      Maintained
7133 F:      drivers/edac/e752x_edac.c
7134
7135 EDAC-E7XXX
7136 L:      linux-edac@vger.kernel.org
7137 S:      Maintained
7138 F:      drivers/edac/e7xxx_edac.c
7139
7140 EDAC-FSL_DDR
7141 M:      York Sun <york.sun@nxp.com>
7142 L:      linux-edac@vger.kernel.org
7143 S:      Maintained
7144 F:      drivers/edac/fsl_ddr_edac.*
7145
7146 EDAC-GHES
7147 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
7148 L:      linux-edac@vger.kernel.org
7149 S:      Maintained
7150 F:      drivers/edac/ghes_edac.c
7151
7152 EDAC-I10NM
7153 M:      Tony Luck <tony.luck@intel.com>
7154 L:      linux-edac@vger.kernel.org
7155 S:      Maintained
7156 F:      drivers/edac/i10nm_base.c
7157
7158 EDAC-I3000
7159 L:      linux-edac@vger.kernel.org
7160 S:      Orphan
7161 F:      drivers/edac/i3000_edac.c
7162
7163 EDAC-I5000
7164 L:      linux-edac@vger.kernel.org
7165 S:      Maintained
7166 F:      drivers/edac/i5000_edac.c
7167
7168 EDAC-I5400
7169 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
7170 L:      linux-edac@vger.kernel.org
7171 S:      Maintained
7172 F:      drivers/edac/i5400_edac.c
7173
7174 EDAC-I7300
7175 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
7176 L:      linux-edac@vger.kernel.org
7177 S:      Maintained
7178 F:      drivers/edac/i7300_edac.c
7179
7180 EDAC-I7CORE
7181 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
7182 L:      linux-edac@vger.kernel.org
7183 S:      Maintained
7184 F:      drivers/edac/i7core_edac.c
7185
7186 EDAC-I82443BXGX
7187 M:      Tim Small <tim@buttersideup.com>
7188 L:      linux-edac@vger.kernel.org
7189 S:      Maintained
7190 F:      drivers/edac/i82443bxgx_edac.c
7191
7192 EDAC-I82975X
7193 M:      "Arvind R." <arvino55@gmail.com>
7194 L:      linux-edac@vger.kernel.org
7195 S:      Maintained
7196 F:      drivers/edac/i82975x_edac.c
7197
7198 EDAC-IE31200
7199 M:      Jason Baron <jbaron@akamai.com>
7200 L:      linux-edac@vger.kernel.org
7201 S:      Maintained
7202 F:      drivers/edac/ie31200_edac.c
7203
7204 EDAC-IGEN6
7205 M:      Tony Luck <tony.luck@intel.com>
7206 R:      Qiuxu Zhuo <qiuxu.zhuo@intel.com>
7207 L:      linux-edac@vger.kernel.org
7208 S:      Maintained
7209 F:      drivers/edac/igen6_edac.c
7210
7211 EDAC-MPC85XX
7212 M:      Johannes Thumshirn <morbidrsa@gmail.com>
7213 L:      linux-edac@vger.kernel.org
7214 S:      Maintained
7215 F:      drivers/edac/mpc85xx_edac.[ch]
7216
7217 EDAC-PASEMI
7218 M:      Egor Martovetsky <egor@pasemi.com>
7219 L:      linux-edac@vger.kernel.org
7220 S:      Maintained
7221 F:      drivers/edac/pasemi_edac.c
7222
7223 EDAC-PND2
7224 M:      Tony Luck <tony.luck@intel.com>
7225 L:      linux-edac@vger.kernel.org
7226 S:      Maintained
7227 F:      drivers/edac/pnd2_edac.[ch]
7228
7229 EDAC-QCOM
7230 M:      Channagoud Kadabi <ckadabi@codeaurora.org>
7231 M:      Venkata Narendra Kumar Gutta <vnkgutta@codeaurora.org>
7232 L:      linux-arm-msm@vger.kernel.org
7233 L:      linux-edac@vger.kernel.org
7234 S:      Maintained
7235 F:      drivers/edac/qcom_edac.c
7236
7237 EDAC-R82600
7238 M:      Tim Small <tim@buttersideup.com>
7239 L:      linux-edac@vger.kernel.org
7240 S:      Maintained
7241 F:      drivers/edac/r82600_edac.c
7242
7243 EDAC-SBRIDGE
7244 M:      Tony Luck <tony.luck@intel.com>
7245 R:      Qiuxu Zhuo <qiuxu.zhuo@intel.com>
7246 L:      linux-edac@vger.kernel.org
7247 S:      Maintained
7248 F:      drivers/edac/sb_edac.c
7249
7250 EDAC-SKYLAKE
7251 M:      Tony Luck <tony.luck@intel.com>
7252 L:      linux-edac@vger.kernel.org
7253 S:      Maintained
7254 F:      drivers/edac/skx_*.[ch]
7255
7256 EDAC-TI
7257 M:      Tero Kristo <kristo@kernel.org>
7258 L:      linux-edac@vger.kernel.org
7259 S:      Odd Fixes
7260 F:      drivers/edac/ti_edac.c
7261
7262 EDIROL UA-101/UA-1000 DRIVER
7263 M:      Clemens Ladisch <clemens@ladisch.de>
7264 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7265 S:      Maintained
7266 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
7267 F:      sound/usb/misc/ua101.c
7268
7269 EFI TEST DRIVER
7270 M:      Ivan Hu <ivan.hu@canonical.com>
7271 M:      Ard Biesheuvel <ardb@kernel.org>
7272 L:      linux-efi@vger.kernel.org
7273 S:      Maintained
7274 F:      drivers/firmware/efi/test/
7275
7276 EFI VARIABLE FILESYSTEM
7277 M:      Matthew Garrett <matthew.garrett@nebula.com>
7278 M:      Jeremy Kerr <jk@ozlabs.org>
7279 M:      Ard Biesheuvel <ardb@kernel.org>
7280 L:      linux-efi@vger.kernel.org
7281 S:      Maintained
7282 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
7283 F:      fs/efivarfs/
7284
7285 EFIFB FRAMEBUFFER DRIVER
7286 M:      Peter Jones <pjones@redhat.com>
7287 L:      linux-fbdev@vger.kernel.org
7288 S:      Maintained
7289 F:      drivers/video/fbdev/efifb.c
7290
7291 EFS FILESYSTEM
7292 S:      Orphan
7293 W:      http://aeschi.ch.eu.org/efs/
7294 F:      fs/efs/
7295
7296 EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
7297 M:      Douglas Miller <dougmill@linux.ibm.com>
7298 L:      netdev@vger.kernel.org
7299 S:      Maintained
7300 F:      drivers/net/ethernet/ibm/ehea/
7301
7302 EM28XX VIDEO4LINUX DRIVER
7303 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
7304 L:      linux-media@vger.kernel.org
7305 S:      Maintained
7306 W:      https://linuxtv.org
7307 T:      git git://linuxtv.org/media_tree.git
7308 F:      Documentation/admin-guide/media/em28xx*
7309 F:      drivers/media/usb/em28xx/
7310
7311 EMBEDDED LINUX
7312 M:      Matt Mackall <mpm@selenic.com>
7313 M:      David Woodhouse <dwmw2@infradead.org>
7314 L:      linux-embedded@vger.kernel.org
7315 S:      Maintained
7316
7317 EMMC CMDQ HOST CONTROLLER INTERFACE (CQHCI) DRIVER
7318 M:      Adrian Hunter <adrian.hunter@intel.com>
7319 M:      Ritesh Harjani <riteshh@codeaurora.org>
7320 M:      Asutosh Das <asutoshd@codeaurora.org>
7321 L:      linux-mmc@vger.kernel.org
7322 S:      Maintained
7323 F:      drivers/mmc/host/cqhci*
7324
7325 EMULEX 10Gbps iSCSI - OneConnect DRIVER
7326 M:      Ketan Mukadam <ketan.mukadam@broadcom.com>
7327 L:      linux-scsi@vger.kernel.org
7328 S:      Supported
7329 W:      http://www.broadcom.com
7330 F:      drivers/scsi/be2iscsi/
7331
7332 EMULEX 10Gbps NIC BE2, BE3-R, Lancer, Skyhawk-R DRIVER (be2net)
7333 M:      Ajit Khaparde <ajit.khaparde@broadcom.com>
7334 M:      Sriharsha Basavapatna <sriharsha.basavapatna@broadcom.com>
7335 M:      Somnath Kotur <somnath.kotur@broadcom.com>
7336 L:      netdev@vger.kernel.org
7337 S:      Supported
7338 W:      http://www.emulex.com
7339 F:      drivers/net/ethernet/emulex/benet/
7340
7341 EMULEX ONECONNECT ROCE DRIVER
7342 M:      Selvin Xavier <selvin.xavier@broadcom.com>
7343 L:      linux-rdma@vger.kernel.org
7344 S:      Odd Fixes
7345 W:      http://www.broadcom.com
7346 F:      drivers/infiniband/hw/ocrdma/
7347 F:      include/uapi/rdma/ocrdma-abi.h
7348
7349 EMULEX/BROADCOM LPFC FC/FCOE SCSI DRIVER
7350 M:      James Smart <james.smart@broadcom.com>
7351 M:      Dick Kennedy <dick.kennedy@broadcom.com>
7352 L:      linux-scsi@vger.kernel.org
7353 S:      Supported
7354 W:      http://www.broadcom.com
7355 F:      drivers/scsi/lpfc/
7356
7357 EMULEX/BROADCOM EFCT FC/FCOE SCSI TARGET DRIVER
7358 M:      James Smart <james.smart@broadcom.com>
7359 M:      Ram Vegesna <ram.vegesna@broadcom.com>
7360 L:      linux-scsi@vger.kernel.org
7361 L:      target-devel@vger.kernel.org
7362 S:      Supported
7363 W:      http://www.broadcom.com
7364 F:      drivers/scsi/elx/
7365
7366 ENE CB710 FLASH CARD READER DRIVER
7367 M:      Michał Mirosław <mirq-linux@rere.qmqm.pl>
7368 S:      Maintained
7369 F:      drivers/misc/cb710/
7370 F:      drivers/mmc/host/cb710-mmc.*
7371 F:      include/linux/cb710.h
7372
7373 ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
7374 M:      Maxim Levitsky <maximlevitsky@gmail.com>
7375 S:      Maintained
7376 F:      drivers/media/rc/ene_ir.*
7377
7378 EPAPR HYPERVISOR BYTE CHANNEL DEVICE DRIVER
7379 M:      Laurentiu Tudor <laurentiu.tudor@nxp.com>
7380 L:      linuxppc-dev@lists.ozlabs.org
7381 S:      Maintained
7382 F:      drivers/tty/ehv_bytechan.c
7383
7384 EPSON S1D13XXX FRAMEBUFFER DRIVER
7385 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
7386 S:      Maintained
7387 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
7388 F:      drivers/video/fbdev/s1d13xxxfb.c
7389 F:      include/video/s1d13xxxfb.h
7390
7391 EROFS FILE SYSTEM
7392 M:      Gao Xiang <xiang@kernel.org>
7393 M:      Chao Yu <chao@kernel.org>
7394 L:      linux-erofs@lists.ozlabs.org
7395 S:      Maintained
7396 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs.git
7397 F:      Documentation/filesystems/erofs.rst
7398 F:      fs/erofs/
7399 F:      include/trace/events/erofs.h
7400
7401 ERRSEQ ERROR TRACKING INFRASTRUCTURE
7402 M:      Jeff Layton <jlayton@kernel.org>
7403 S:      Maintained
7404 F:      include/linux/errseq.h
7405 F:      lib/errseq.c
7406
7407 ET131X NETWORK DRIVER
7408 M:      Mark Einon <mark.einon@gmail.com>
7409 S:      Odd Fixes
7410 F:      drivers/net/ethernet/agere/
7411
7412 ETAS ES58X CAN/USB DRIVER
7413 M:      Vincent Mailhol <mailhol.vincent@wanadoo.fr>
7414 L:      linux-can@vger.kernel.org
7415 S:      Maintained
7416 F:      drivers/net/can/usb/etas_es58x/
7417
7418 ETHERNET BRIDGE
7419 M:      Roopa Prabhu <roopa@nvidia.com>
7420 M:      Nikolay Aleksandrov <razor@blackwall.org>
7421 L:      bridge@lists.linux-foundation.org (moderated for non-subscribers)
7422 L:      netdev@vger.kernel.org
7423 S:      Maintained
7424 W:      http://www.linuxfoundation.org/en/Net:Bridge
7425 F:      include/linux/netfilter_bridge/
7426 F:      net/bridge/
7427
7428 ETHERNET PHY LIBRARY
7429 M:      Andrew Lunn <andrew@lunn.ch>
7430 M:      Heiner Kallweit <hkallweit1@gmail.com>
7431 R:      Russell King <linux@armlinux.org.uk>
7432 L:      netdev@vger.kernel.org
7433 S:      Maintained
7434 F:      Documentation/ABI/testing/sysfs-class-net-phydev
7435 F:      Documentation/devicetree/bindings/net/ethernet-phy.yaml
7436 F:      Documentation/devicetree/bindings/net/mdio*
7437 F:      Documentation/devicetree/bindings/net/qca,ar803x.yaml
7438 F:      Documentation/networking/phy.rst
7439 F:      drivers/net/mdio/
7440 F:      drivers/net/mdio/acpi_mdio.c
7441 F:      drivers/net/mdio/fwnode_mdio.c
7442 F:      drivers/net/mdio/of_mdio.c
7443 F:      drivers/net/pcs/
7444 F:      drivers/net/phy/
7445 F:      include/dt-bindings/net/qca-ar803x.h
7446 F:      include/linux/linkmode.h
7447 F:      include/linux/*mdio*.h
7448 F:      include/linux/mdio/*.h
7449 F:      include/linux/mii.h
7450 F:      include/linux/of_net.h
7451 F:      include/linux/phy.h
7452 F:      include/linux/phy_fixed.h
7453 F:      include/linux/platform_data/mdio-bcm-unimac.h
7454 F:      include/linux/platform_data/mdio-gpio.h
7455 F:      include/trace/events/mdio.h
7456 F:      include/uapi/linux/mdio.h
7457 F:      include/uapi/linux/mii.h
7458 F:      net/core/of_net.c
7459
7460 EXEC & BINFMT API
7461 R:      Eric Biederman <ebiederm@xmission.com>
7462 R:      Kees Cook <keescook@chromium.org>
7463 L:      linux-mm@kvack.org
7464 S:      Supported
7465 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/execve
7466 F:      arch/alpha/kernel/binfmt_loader.c
7467 F:      fs/*binfmt_*.c
7468 F:      fs/exec.c
7469 F:      include/linux/binfmts.h
7470 F:      include/linux/elf.h
7471 F:      include/uapi/linux/binfmts.h
7472 F:      include/uapi/linux/elf.h
7473 F:      tools/testing/selftests/exec/
7474 N:      asm/elf.h
7475 N:      binfmt
7476
7477 EXFAT FILE SYSTEM
7478 M:      Namjae Jeon <linkinjeon@kernel.org>
7479 M:      Sungjong Seo <sj1557.seo@samsung.com>
7480 L:      linux-fsdevel@vger.kernel.org
7481 S:      Maintained
7482 F:      fs/exfat/
7483
7484 EXT2 FILE SYSTEM
7485 M:      Jan Kara <jack@suse.com>
7486 L:      linux-ext4@vger.kernel.org
7487 S:      Maintained
7488 F:      Documentation/filesystems/ext2.rst
7489 F:      fs/ext2/
7490 F:      include/linux/ext2*
7491
7492 EXT4 FILE SYSTEM
7493 M:      "Theodore Ts'o" <tytso@mit.edu>
7494 M:      Andreas Dilger <adilger.kernel@dilger.ca>
7495 L:      linux-ext4@vger.kernel.org
7496 S:      Maintained
7497 W:      http://ext4.wiki.kernel.org
7498 Q:      http://patchwork.ozlabs.org/project/linux-ext4/list/
7499 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tytso/ext4.git
7500 F:      Documentation/filesystems/ext4/
7501 F:      fs/ext4/
7502 F:      include/trace/events/ext4.h
7503
7504 Extended Verification Module (EVM)
7505 M:      Mimi Zohar <zohar@linux.ibm.com>
7506 L:      linux-integrity@vger.kernel.org
7507 S:      Supported
7508 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/zohar/linux-integrity.git
7509 F:      security/integrity/evm/
7510 F:      security/integrity/
7511
7512 EXTENSIBLE FIRMWARE INTERFACE (EFI)
7513 M:      Ard Biesheuvel <ardb@kernel.org>
7514 L:      linux-efi@vger.kernel.org
7515 S:      Maintained
7516 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
7517 F:      Documentation/admin-guide/efi-stub.rst
7518 F:      arch/*/include/asm/efi.h
7519 F:      arch/*/kernel/efi.c
7520 F:      arch/arm/boot/compressed/efi-header.S
7521 F:      arch/arm64/kernel/efi-entry.S
7522 F:      arch/x86/platform/efi/
7523 F:      drivers/firmware/efi/
7524 F:      include/linux/efi*.h
7525
7526 EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
7527 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
7528 M:      Chanwoo Choi <cw00.choi@samsung.com>
7529 L:      linux-kernel@vger.kernel.org
7530 S:      Maintained
7531 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git
7532 F:      Documentation/devicetree/bindings/extcon/
7533 F:      Documentation/firmware-guide/acpi/extcon-intel-int3496.rst
7534 F:      drivers/extcon/
7535 F:      include/linux/extcon.h
7536 F:      include/linux/extcon/
7537
7538 EXTRA BOOT CONFIG
7539 M:      Masami Hiramatsu <mhiramat@kernel.org>
7540 S:      Maintained
7541 F:      Documentation/admin-guide/bootconfig.rst
7542 F:      fs/proc/bootconfig.c
7543 F:      include/linux/bootconfig.h
7544 F:      lib/bootconfig-data.S
7545 F:      lib/bootconfig.c
7546 F:      tools/bootconfig/*
7547 F:      tools/bootconfig/scripts/*
7548
7549 EXYNOS DP DRIVER
7550 M:      Jingoo Han <jingoohan1@gmail.com>
7551 L:      dri-devel@lists.freedesktop.org
7552 S:      Maintained
7553 F:      drivers/gpu/drm/exynos/exynos_dp*
7554
7555 EXYNOS SYSMMU (IOMMU) driver
7556 M:      Marek Szyprowski <m.szyprowski@samsung.com>
7557 L:      iommu@lists.linux-foundation.org
7558 S:      Maintained
7559 F:      drivers/iommu/exynos-iommu.c
7560
7561 F2FS FILE SYSTEM
7562 M:      Jaegeuk Kim <jaegeuk@kernel.org>
7563 M:      Chao Yu <chao@kernel.org>
7564 L:      linux-f2fs-devel@lists.sourceforge.net
7565 S:      Maintained
7566 W:      https://f2fs.wiki.kernel.org/
7567 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
7568 F:      Documentation/ABI/testing/sysfs-fs-f2fs
7569 F:      Documentation/filesystems/f2fs.rst
7570 F:      fs/f2fs/
7571 F:      include/linux/f2fs_fs.h
7572 F:      include/trace/events/f2fs.h
7573 F:      include/uapi/linux/f2fs.h
7574
7575 F71805F HARDWARE MONITORING DRIVER
7576 M:      Jean Delvare <jdelvare@suse.com>
7577 L:      linux-hwmon@vger.kernel.org
7578 S:      Maintained
7579 F:      Documentation/hwmon/f71805f.rst
7580 F:      drivers/hwmon/f71805f.c
7581
7582 FADDR2LINE
7583 M:      Josh Poimboeuf <jpoimboe@kernel.org>
7584 S:      Maintained
7585 F:      scripts/faddr2line
7586
7587 FAILOVER MODULE
7588 M:      Sridhar Samudrala <sridhar.samudrala@intel.com>
7589 L:      netdev@vger.kernel.org
7590 S:      Supported
7591 F:      Documentation/networking/failover.rst
7592 F:      include/net/failover.h
7593 F:      net/core/failover.c
7594
7595 FANOTIFY
7596 M:      Jan Kara <jack@suse.cz>
7597 R:      Amir Goldstein <amir73il@gmail.com>
7598 R:      Matthew Bobrowski <repnop@google.com>
7599 L:      linux-fsdevel@vger.kernel.org
7600 S:      Maintained
7601 F:      fs/notify/fanotify/
7602 F:      include/linux/fanotify.h
7603 F:      include/uapi/linux/fanotify.h
7604
7605 FARSYNC SYNCHRONOUS DRIVER
7606 M:      Kevin Curtis <kevin.curtis@farsite.co.uk>
7607 S:      Supported
7608 W:      http://www.farsite.co.uk/
7609 F:      drivers/net/wan/farsync.*
7610
7611 FAULT INJECTION SUPPORT
7612 M:      Akinobu Mita <akinobu.mita@gmail.com>
7613 S:      Supported
7614 F:      Documentation/fault-injection/
7615 F:      lib/fault-inject.c
7616
7617 FBTFT Framebuffer drivers
7618 L:      dri-devel@lists.freedesktop.org
7619 L:      linux-fbdev@vger.kernel.org
7620 S:      Orphan
7621 F:      drivers/staging/fbtft/
7622
7623 FC0011 TUNER DRIVER
7624 M:      Michael Buesch <m@bues.ch>
7625 L:      linux-media@vger.kernel.org
7626 S:      Maintained
7627 F:      drivers/media/tuners/fc0011.c
7628 F:      drivers/media/tuners/fc0011.h
7629
7630 FC2580 MEDIA DRIVER
7631 M:      Antti Palosaari <crope@iki.fi>
7632 L:      linux-media@vger.kernel.org
7633 S:      Maintained
7634 W:      https://linuxtv.org
7635 W:      http://palosaari.fi/linux/
7636 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7637 T:      git git://linuxtv.org/anttip/media_tree.git
7638 F:      drivers/media/tuners/fc2580*
7639
7640 FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
7641 M:      Hannes Reinecke <hare@suse.de>
7642 L:      linux-scsi@vger.kernel.org
7643 S:      Supported
7644 W:      www.Open-FCoE.org
7645 F:      drivers/scsi/fcoe/
7646 F:      drivers/scsi/libfc/
7647 F:      include/scsi/fc/
7648 F:      include/scsi/libfc.h
7649 F:      include/scsi/libfcoe.h
7650 F:      include/uapi/scsi/fc/
7651
7652 FILE LOCKING (flock() and fcntl()/lockf())
7653 M:      Jeff Layton <jlayton@kernel.org>
7654 L:      linux-fsdevel@vger.kernel.org
7655 S:      Maintained
7656 F:      fs/fcntl.c
7657 F:      fs/locks.c
7658 F:      include/linux/fcntl.h
7659 F:      include/uapi/linux/fcntl.h
7660
7661 FILESYSTEM DIRECT ACCESS (DAX)
7662 M:      Dan Williams <dan.j.williams@intel.com>
7663 R:      Matthew Wilcox <willy@infradead.org>
7664 R:      Jan Kara <jack@suse.cz>
7665 L:      linux-fsdevel@vger.kernel.org
7666 L:      nvdimm@lists.linux.dev
7667 S:      Supported
7668 F:      fs/dax.c
7669 F:      include/linux/dax.h
7670 F:      include/trace/events/fs_dax.h
7671
7672 FILESYSTEMS (VFS and infrastructure)
7673 M:      Alexander Viro <viro@zeniv.linux.org.uk>
7674 L:      linux-fsdevel@vger.kernel.org
7675 S:      Maintained
7676 F:      fs/*
7677 F:      include/linux/fs.h
7678 F:      include/linux/fs_types.h
7679 F:      include/uapi/linux/fs.h
7680 F:      include/uapi/linux/openat2.h
7681 X:      fs/io-wq.c
7682 X:      fs/io-wq.h
7683 X:      fs/io_uring.c
7684
7685 FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
7686 M:      Riku Voipio <riku.voipio@iki.fi>
7687 L:      linux-hwmon@vger.kernel.org
7688 S:      Maintained
7689 F:      drivers/hwmon/f75375s.c
7690 F:      include/linux/f75375s.h
7691
7692 FIREWIRE AUDIO DRIVERS and IEC 61883-1/6 PACKET STREAMING ENGINE
7693 M:      Clemens Ladisch <clemens@ladisch.de>
7694 M:      Takashi Sakamoto <o-takashi@sakamocchi.jp>
7695 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7696 S:      Maintained
7697 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
7698 F:      include/uapi/sound/firewire.h
7699 F:      sound/firewire/
7700
7701 FIREWIRE MEDIA DRIVERS (firedtv)
7702 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
7703 L:      linux-media@vger.kernel.org
7704 L:      linux1394-devel@lists.sourceforge.net
7705 S:      Maintained
7706 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
7707 F:      drivers/media/firewire/
7708
7709 FIREWIRE SBP-2 TARGET
7710 M:      Chris Boot <bootc@bootc.net>
7711 L:      linux-scsi@vger.kernel.org
7712 L:      target-devel@vger.kernel.org
7713 L:      linux1394-devel@lists.sourceforge.net
7714 S:      Maintained
7715 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
7716 F:      drivers/target/sbp/
7717
7718 FIREWIRE SUBSYSTEM
7719 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
7720 L:      linux1394-devel@lists.sourceforge.net
7721 S:      Maintained
7722 W:      http://ieee1394.wiki.kernel.org/
7723 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
7724 F:      drivers/firewire/
7725 F:      include/linux/firewire.h
7726 F:      include/uapi/linux/firewire*.h
7727 F:      tools/firewire/
7728
7729 FIRMWARE FRAMEWORK FOR ARMV8-A
7730 M:      Sudeep Holla <sudeep.holla@arm.com>
7731 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7732 S:      Maintained
7733 F:      drivers/firmware/arm_ffa/
7734 F:      include/linux/arm_ffa.h
7735
7736 FIRMWARE LOADER (request_firmware)
7737 M:      Luis Chamberlain <mcgrof@kernel.org>
7738 M:      Russ Weight <russell.h.weight@intel.com>
7739 L:      linux-kernel@vger.kernel.org
7740 S:      Maintained
7741 F:      Documentation/firmware_class/
7742 F:      drivers/base/firmware_loader/
7743 F:      include/linux/firmware.h
7744
7745 FLEXTIMER FTM-QUADDEC DRIVER
7746 M:      Patrick Havelange <patrick.havelange@essensium.com>
7747 L:      linux-iio@vger.kernel.org
7748 S:      Maintained
7749 F:      Documentation/devicetree/bindings/counter/ftm-quaddec.txt
7750 F:      drivers/counter/ftm-quaddec.c
7751
7752 FLOPPY DRIVER
7753 M:      Denis Efremov <efremov@linux.com>
7754 L:      linux-block@vger.kernel.org
7755 S:      Odd Fixes
7756 F:      drivers/block/floppy.c
7757
7758 FLYSKY FSIA6B RC RECEIVER
7759 M:      Markus Koch <markus@notsyncing.net>
7760 L:      linux-input@vger.kernel.org
7761 S:      Maintained
7762 F:      drivers/input/joystick/fsia6b.c
7763
7764 FOCUSRITE SCARLETT GEN 2/3 MIXER DRIVER
7765 M:      Geoffrey D. Bennett <g@b4.vu>
7766 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7767 S:      Maintained
7768 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
7769 F:      sound/usb/mixer_scarlett_gen2.c
7770
7771 FORCEDETH GIGABIT ETHERNET DRIVER
7772 M:      Rain River <rain.1986.08.12@gmail.com>
7773 M:      Zhu Yanjun <zyjzyj2000@gmail.com>
7774 L:      netdev@vger.kernel.org
7775 S:      Maintained
7776 F:      drivers/net/ethernet/nvidia/*
7777
7778 FORTIFY_SOURCE
7779 M:      Kees Cook <keescook@chromium.org>
7780 L:      linux-hardening@vger.kernel.org
7781 S:      Supported
7782 F:      include/linux/fortify-string.h
7783 F:      lib/test_fortify/*
7784 F:      scripts/test_fortify.sh
7785 K:      \b__NO_FORTIFY\b
7786
7787 FPGA DFL DRIVERS
7788 M:      Wu Hao <hao.wu@intel.com>
7789 R:      Tom Rix <trix@redhat.com>
7790 L:      linux-fpga@vger.kernel.org
7791 S:      Maintained
7792 F:      Documentation/ABI/testing/sysfs-bus-dfl*
7793 F:      Documentation/fpga/dfl.rst
7794 F:      drivers/fpga/dfl*
7795 F:      drivers/uio/uio_dfl.c
7796 F:      include/linux/dfl.h
7797 F:      include/uapi/linux/fpga-dfl.h
7798
7799 FPGA MANAGER FRAMEWORK
7800 M:      Moritz Fischer <mdf@kernel.org>
7801 M:      Wu Hao <hao.wu@intel.com>
7802 M:      Xu Yilun <yilun.xu@intel.com>
7803 R:      Tom Rix <trix@redhat.com>
7804 L:      linux-fpga@vger.kernel.org
7805 S:      Maintained
7806 Q:      http://patchwork.kernel.org/project/linux-fpga/list/
7807 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/fpga/linux-fpga.git
7808 F:      Documentation/devicetree/bindings/fpga/
7809 F:      Documentation/driver-api/fpga/
7810 F:      Documentation/fpga/
7811 F:      drivers/fpga/
7812 F:      include/linux/fpga/
7813
7814 FPU EMULATOR
7815 M:      Bill Metzenthen <billm@melbpc.org.au>
7816 S:      Maintained
7817 W:      http://floatingpoint.sourceforge.net/emulator/index.html
7818 F:      arch/x86/math-emu/
7819
7820 FRAMEBUFFER CORE
7821 M:      Daniel Vetter <daniel@ffwll.ch>
7822 F:      drivers/video/fbdev/core/
7823 S:      Odd Fixes
7824 T:      git git://anongit.freedesktop.org/drm/drm-misc
7825
7826 FRAMEBUFFER LAYER
7827 M:      Helge Deller <deller@gmx.de>
7828 L:      linux-fbdev@vger.kernel.org
7829 L:      dri-devel@lists.freedesktop.org
7830 S:      Maintained
7831 Q:      http://patchwork.kernel.org/project/linux-fbdev/list/
7832 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/deller/linux-fbdev.git
7833 F:      Documentation/fb/
7834 F:      drivers/video/
7835 F:      include/linux/fb.h
7836 F:      include/uapi/linux/fb.h
7837 F:      include/uapi/video/
7838 F:      include/video/
7839
7840 FREESCALE CAAM (Cryptographic Acceleration and Assurance Module) DRIVER
7841 M:      Horia Geantă <horia.geanta@nxp.com>
7842 M:      Pankaj Gupta <pankaj.gupta@nxp.com>
7843 M:      Gaurav Jain <gaurav.jain@nxp.com>
7844 L:      linux-crypto@vger.kernel.org
7845 S:      Maintained
7846 F:      Documentation/devicetree/bindings/crypto/fsl-sec4.txt
7847 F:      drivers/crypto/caam/
7848
7849 FREESCALE COLDFIRE M5441X MMC DRIVER
7850 M:      Angelo Dureghello <angelo.dureghello@timesys.com>
7851 L:      linux-mmc@vger.kernel.org
7852 S:      Maintained
7853 F:      drivers/mmc/host/sdhci-esdhc-mcf.c
7854 F:      include/linux/platform_data/mmc-esdhc-mcf.h
7855
7856 FREESCALE DIU FRAMEBUFFER DRIVER
7857 M:      Timur Tabi <timur@kernel.org>
7858 L:      linux-fbdev@vger.kernel.org
7859 S:      Maintained
7860 F:      drivers/video/fbdev/fsl-diu-fb.*
7861
7862 FREESCALE DMA DRIVER
7863 M:      Li Yang <leoyang.li@nxp.com>
7864 M:      Zhang Wei <zw@zh-kernel.org>
7865 L:      linuxppc-dev@lists.ozlabs.org
7866 S:      Maintained
7867 F:      drivers/dma/fsldma.*
7868
7869 FREESCALE DSPI DRIVER
7870 M:      Vladimir Oltean <olteanv@gmail.com>
7871 L:      linux-spi@vger.kernel.org
7872 S:      Maintained
7873 F:      Documentation/devicetree/bindings/spi/spi-fsl-dspi.txt
7874 F:      drivers/spi/spi-fsl-dspi.c
7875 F:      include/linux/spi/spi-fsl-dspi.h
7876
7877 FREESCALE ENETC ETHERNET DRIVERS
7878 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
7879 L:      netdev@vger.kernel.org
7880 S:      Maintained
7881 F:      drivers/net/ethernet/freescale/enetc/
7882
7883 FREESCALE eTSEC ETHERNET DRIVER (GIANFAR)
7884 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
7885 L:      netdev@vger.kernel.org
7886 S:      Maintained
7887 F:      Documentation/devicetree/bindings/net/fsl-tsec-phy.txt
7888 F:      drivers/net/ethernet/freescale/gianfar*
7889
7890 FREESCALE GPMI NAND DRIVER
7891 M:      Han Xu <han.xu@nxp.com>
7892 L:      linux-mtd@lists.infradead.org
7893 S:      Maintained
7894 F:      drivers/mtd/nand/raw/gpmi-nand/*
7895
7896 FREESCALE I2C CPM DRIVER
7897 M:      Jochen Friedrich <jochen@scram.de>
7898 L:      linuxppc-dev@lists.ozlabs.org
7899 L:      linux-i2c@vger.kernel.org
7900 S:      Maintained
7901 F:      drivers/i2c/busses/i2c-cpm.c
7902
7903 FREESCALE IMX / MXC FEC DRIVER
7904 M:      Joakim Zhang <qiangqing.zhang@nxp.com>
7905 L:      netdev@vger.kernel.org
7906 S:      Maintained
7907 F:      Documentation/devicetree/bindings/net/fsl,fec.yaml
7908 F:      drivers/net/ethernet/freescale/fec.h
7909 F:      drivers/net/ethernet/freescale/fec_main.c
7910 F:      drivers/net/ethernet/freescale/fec_ptp.c
7911
7912 FREESCALE IMX / MXC FRAMEBUFFER DRIVER
7913 M:      Sascha Hauer <s.hauer@pengutronix.de>
7914 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
7915 L:      linux-fbdev@vger.kernel.org
7916 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7917 S:      Maintained
7918 F:      drivers/video/fbdev/imxfb.c
7919 F:      include/linux/platform_data/video-imxfb.h
7920
7921 FREESCALE IMX DDR PMU DRIVER
7922 M:      Frank Li <Frank.li@nxp.com>
7923 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7924 S:      Maintained
7925 F:      Documentation/admin-guide/perf/imx-ddr.rst
7926 F:      Documentation/devicetree/bindings/perf/fsl-imx-ddr.yaml
7927 F:      drivers/perf/fsl_imx8_ddr_perf.c
7928
7929 FREESCALE IMX I2C DRIVER
7930 M:      Oleksij Rempel <o.rempel@pengutronix.de>
7931 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
7932 L:      linux-i2c@vger.kernel.org
7933 S:      Maintained
7934 F:      Documentation/devicetree/bindings/i2c/i2c-imx.yaml
7935 F:      drivers/i2c/busses/i2c-imx.c
7936
7937 FREESCALE IMX LPI2C DRIVER
7938 M:      Dong Aisheng <aisheng.dong@nxp.com>
7939 L:      linux-i2c@vger.kernel.org
7940 L:      linux-imx@nxp.com
7941 S:      Maintained
7942 F:      Documentation/devicetree/bindings/i2c/i2c-imx-lpi2c.yaml
7943 F:      drivers/i2c/busses/i2c-imx-lpi2c.c
7944
7945 FREESCALE MPC I2C DRIVER
7946 M:      Chris Packham <chris.packham@alliedtelesis.co.nz>
7947 L:      linux-i2c@vger.kernel.org
7948 S:      Maintained
7949 F:      Documentation/devicetree/bindings/i2c/i2c-mpc.yaml
7950 F:      drivers/i2c/busses/i2c-mpc.c
7951
7952 FREESCALE QORIQ DPAA ETHERNET DRIVER
7953 M:      Madalin Bucur <madalin.bucur@nxp.com>
7954 L:      netdev@vger.kernel.org
7955 S:      Maintained
7956 F:      drivers/net/ethernet/freescale/dpaa
7957
7958 FREESCALE QORIQ DPAA FMAN DRIVER
7959 M:      Madalin Bucur <madalin.bucur@nxp.com>
7960 L:      netdev@vger.kernel.org
7961 S:      Maintained
7962 F:      Documentation/devicetree/bindings/net/fsl-fman.txt
7963 F:      drivers/net/ethernet/freescale/fman
7964
7965 FREESCALE QORIQ PTP CLOCK DRIVER
7966 M:      Yangbo Lu <yangbo.lu@nxp.com>
7967 L:      netdev@vger.kernel.org
7968 S:      Maintained
7969 F:      Documentation/devicetree/bindings/ptp/ptp-qoriq.txt
7970 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-ptp*
7971 F:      drivers/net/ethernet/freescale/dpaa2/dprtc*
7972 F:      drivers/net/ethernet/freescale/enetc/enetc_ptp.c
7973 F:      drivers/ptp/ptp_qoriq.c
7974 F:      drivers/ptp/ptp_qoriq_debugfs.c
7975 F:      include/linux/fsl/ptp_qoriq.h
7976
7977 FREESCALE QUAD SPI DRIVER
7978 M:      Han Xu <han.xu@nxp.com>
7979 L:      linux-spi@vger.kernel.org
7980 S:      Maintained
7981 F:      Documentation/devicetree/bindings/spi/fsl,spi-fsl-qspi.yaml
7982 F:      drivers/spi/spi-fsl-qspi.c
7983
7984 FREESCALE QUICC ENGINE LIBRARY
7985 M:      Qiang Zhao <qiang.zhao@nxp.com>
7986 L:      linuxppc-dev@lists.ozlabs.org
7987 S:      Maintained
7988 F:      drivers/soc/fsl/qe/
7989 F:      include/soc/fsl/qe/
7990
7991 FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
7992 M:      Li Yang <leoyang.li@nxp.com>
7993 L:      netdev@vger.kernel.org
7994 L:      linuxppc-dev@lists.ozlabs.org
7995 S:      Maintained
7996 F:      drivers/net/ethernet/freescale/ucc_geth*
7997
7998 FREESCALE QUICC ENGINE UCC HDLC DRIVER
7999 M:      Zhao Qiang <qiang.zhao@nxp.com>
8000 L:      netdev@vger.kernel.org
8001 L:      linuxppc-dev@lists.ozlabs.org
8002 S:      Maintained
8003 F:      drivers/net/wan/fsl_ucc_hdlc*
8004
8005 FREESCALE QUICC ENGINE UCC UART DRIVER
8006 M:      Timur Tabi <timur@kernel.org>
8007 L:      linuxppc-dev@lists.ozlabs.org
8008 S:      Maintained
8009 F:      drivers/tty/serial/ucc_uart.c
8010
8011 FREESCALE SOC DRIVERS
8012 M:      Li Yang <leoyang.li@nxp.com>
8013 L:      linuxppc-dev@lists.ozlabs.org
8014 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8015 S:      Maintained
8016 F:      Documentation/devicetree/bindings/misc/fsl,dpaa2-console.yaml
8017 F:      Documentation/devicetree/bindings/soc/fsl/
8018 F:      drivers/soc/fsl/
8019 F:      include/linux/fsl/
8020 F:      include/soc/fsl/
8021
8022 FREESCALE SOC FS_ENET DRIVER
8023 M:      Pantelis Antoniou <pantelis.antoniou@gmail.com>
8024 L:      linuxppc-dev@lists.ozlabs.org
8025 L:      netdev@vger.kernel.org
8026 S:      Maintained
8027 F:      drivers/net/ethernet/freescale/fs_enet/
8028 F:      include/linux/fs_enet_pd.h
8029
8030 FREESCALE SOC SOUND DRIVERS
8031 M:      Shengjiu Wang <shengjiu.wang@gmail.com>
8032 M:      Xiubo Li <Xiubo.Lee@gmail.com>
8033 R:      Fabio Estevam <festevam@gmail.com>
8034 R:      Nicolin Chen <nicoleotsuka@gmail.com>
8035 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
8036 L:      linuxppc-dev@lists.ozlabs.org
8037 S:      Maintained
8038 F:      sound/soc/fsl/fsl*
8039 F:      sound/soc/fsl/imx*
8040 F:      sound/soc/fsl/mpc8610_hpcd.c
8041
8042 FREESCALE USB PERIPHERAL DRIVERS
8043 M:      Li Yang <leoyang.li@nxp.com>
8044 L:      linux-usb@vger.kernel.org
8045 L:      linuxppc-dev@lists.ozlabs.org
8046 S:      Maintained
8047 F:      drivers/usb/gadget/udc/fsl*
8048
8049 FREESCALE USB PHY DRIVER
8050 M:      Ran Wang <ran.wang_1@nxp.com>
8051 L:      linux-usb@vger.kernel.org
8052 L:      linuxppc-dev@lists.ozlabs.org
8053 S:      Maintained
8054 F:      drivers/usb/phy/phy-fsl-usb*
8055
8056 FREEVXFS FILESYSTEM
8057 M:      Christoph Hellwig <hch@infradead.org>
8058 S:      Maintained
8059 W:      ftp://ftp.openlinux.org/pub/people/hch/vxfs
8060 F:      fs/freevxfs/
8061
8062 FREEZER
8063 M:      "Rafael J. Wysocki" <rafael@kernel.org>
8064 M:      Pavel Machek <pavel@ucw.cz>
8065 L:      linux-pm@vger.kernel.org
8066 S:      Supported
8067 F:      Documentation/power/freezing-of-tasks.rst
8068 F:      include/linux/freezer.h
8069 F:      kernel/freezer.c
8070
8071 FRONTSWAP API
8072 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
8073 L:      linux-kernel@vger.kernel.org
8074 S:      Maintained
8075 F:      include/linux/frontswap.h
8076 F:      mm/frontswap.c
8077
8078 FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
8079 M:      David Howells <dhowells@redhat.com>
8080 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
8081 S:      Supported
8082 F:      Documentation/filesystems/caching/
8083 F:      fs/fscache/
8084 F:      include/linux/fscache*.h
8085
8086 FSCRYPT: FILE SYSTEM LEVEL ENCRYPTION SUPPORT
8087 M:      Theodore Y. Ts'o <tytso@mit.edu>
8088 M:      Jaegeuk Kim <jaegeuk@kernel.org>
8089 M:      Eric Biggers <ebiggers@kernel.org>
8090 L:      linux-fscrypt@vger.kernel.org
8091 S:      Supported
8092 Q:      https://patchwork.kernel.org/project/linux-fscrypt/list/
8093 T:      git git://git.kernel.org/pub/scm/fs/fscrypt/fscrypt.git
8094 F:      Documentation/filesystems/fscrypt.rst
8095 F:      fs/crypto/
8096 F:      include/linux/fscrypt*.h
8097 F:      include/uapi/linux/fscrypt.h
8098
8099 FSI SUBSYSTEM
8100 M:      Jeremy Kerr <jk@ozlabs.org>
8101 M:      Joel Stanley <joel@jms.id.au>
8102 R:      Alistar Popple <alistair@popple.id.au>
8103 R:      Eddie James <eajames@linux.ibm.com>
8104 L:      linux-fsi@lists.ozlabs.org
8105 S:      Supported
8106 Q:      http://patchwork.ozlabs.org/project/linux-fsi/list/
8107 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joel/fsi.git
8108 F:      drivers/fsi/
8109 F:      include/linux/fsi*.h
8110 F:      include/trace/events/fsi*.h
8111
8112 FSI-ATTACHED I2C DRIVER
8113 M:      Eddie James <eajames@linux.ibm.com>
8114 L:      linux-i2c@vger.kernel.org
8115 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
8116 S:      Maintained
8117 F:      Documentation/devicetree/bindings/i2c/i2c-fsi.txt
8118 F:      drivers/i2c/busses/i2c-fsi.c
8119
8120 FSI-ATTACHED SPI DRIVER
8121 M:      Eddie James <eajames@linux.ibm.com>
8122 L:      linux-spi@vger.kernel.org
8123 S:      Maintained
8124 F:      Documentation/devicetree/bindings/fsi/ibm,fsi2spi.yaml
8125 F:      drivers/spi/spi-fsi.c
8126
8127 FSNOTIFY: FILESYSTEM NOTIFICATION INFRASTRUCTURE
8128 M:      Jan Kara <jack@suse.cz>
8129 R:      Amir Goldstein <amir73il@gmail.com>
8130 L:      linux-fsdevel@vger.kernel.org
8131 S:      Maintained
8132 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jack/linux-fs.git fsnotify
8133 F:      fs/notify/
8134 F:      include/linux/fsnotify*.h
8135
8136 FSVERITY: READ-ONLY FILE-BASED AUTHENTICITY PROTECTION
8137 M:      Eric Biggers <ebiggers@kernel.org>
8138 M:      Theodore Y. Ts'o <tytso@mit.edu>
8139 L:      linux-fscrypt@vger.kernel.org
8140 S:      Supported
8141 Q:      https://patchwork.kernel.org/project/linux-fscrypt/list/
8142 T:      git git://git.kernel.org/pub/scm/fs/fscrypt/fscrypt.git fsverity
8143 F:      Documentation/filesystems/fsverity.rst
8144 F:      fs/verity/
8145 F:      include/linux/fsverity.h
8146 F:      include/uapi/linux/fsverity.h
8147
8148 FT260 FTDI USB-HID TO I2C BRIDGE DRIVER
8149 M:      Michael Zaidman <michael.zaidman@gmail.com>
8150 L:      linux-i2c@vger.kernel.org
8151 L:      linux-input@vger.kernel.org
8152 S:      Maintained
8153 F:      drivers/hid/hid-ft260.c
8154
8155 FUJITSU LAPTOP EXTRAS
8156 M:      Jonathan Woithe <jwoithe@just42.net>
8157 L:      platform-driver-x86@vger.kernel.org
8158 S:      Maintained
8159 F:      drivers/platform/x86/fujitsu-laptop.c
8160
8161 FUJITSU M-5MO LS CAMERA ISP DRIVER
8162 M:      Kyungmin Park <kyungmin.park@samsung.com>
8163 M:      Heungjun Kim <riverful.kim@samsung.com>
8164 L:      linux-media@vger.kernel.org
8165 S:      Maintained
8166 F:      drivers/media/i2c/m5mols/
8167 F:      include/media/i2c/m5mols.h
8168
8169 FUJITSU TABLET EXTRAS
8170 M:      Robert Gerlach <khnz@gmx.de>
8171 L:      platform-driver-x86@vger.kernel.org
8172 S:      Maintained
8173 F:      drivers/platform/x86/fujitsu-tablet.c
8174
8175 FUNGIBLE ETHERNET DRIVERS
8176 M:      Dimitris Michailidis <dmichail@fungible.com>
8177 L:      netdev@vger.kernel.org
8178 S:      Supported
8179 F:      drivers/net/ethernet/fungible/
8180
8181 FUSE: FILESYSTEM IN USERSPACE
8182 M:      Miklos Szeredi <miklos@szeredi.hu>
8183 L:      linux-fsdevel@vger.kernel.org
8184 S:      Maintained
8185 W:      https://github.com/libfuse/
8186 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse.git
8187 F:      Documentation/filesystems/fuse.rst
8188 F:      fs/fuse/
8189 F:      include/uapi/linux/fuse.h
8190
8191 FUTEX SUBSYSTEM
8192 M:      Thomas Gleixner <tglx@linutronix.de>
8193 M:      Ingo Molnar <mingo@redhat.com>
8194 R:      Peter Zijlstra <peterz@infradead.org>
8195 R:      Darren Hart <dvhart@infradead.org>
8196 R:      Davidlohr Bueso <dave@stgolabs.net>
8197 R:      André Almeida <andrealmeid@igalia.com>
8198 L:      linux-kernel@vger.kernel.org
8199 S:      Maintained
8200 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
8201 F:      Documentation/locking/*futex*
8202 F:      include/asm-generic/futex.h
8203 F:      include/linux/futex.h
8204 F:      include/uapi/linux/futex.h
8205 F:      kernel/futex/*
8206 F:      tools/perf/bench/futex*
8207 F:      tools/testing/selftests/futex/
8208
8209 GATEWORKS SYSTEM CONTROLLER (GSC) DRIVER
8210 M:      Tim Harvey <tharvey@gateworks.com>
8211 M:      Robert Jones <rjones@gateworks.com>
8212 S:      Maintained
8213 F:      Documentation/devicetree/bindings/mfd/gateworks-gsc.yaml
8214 F:      drivers/mfd/gateworks-gsc.c
8215 F:      include/linux/mfd/gsc.h
8216 F:      Documentation/hwmon/gsc-hwmon.rst
8217 F:      drivers/hwmon/gsc-hwmon.c
8218 F:      include/linux/platform_data/gsc_hwmon.h
8219
8220 GCC PLUGINS
8221 M:      Kees Cook <keescook@chromium.org>
8222 L:      linux-hardening@vger.kernel.org
8223 S:      Maintained
8224 F:      Documentation/kbuild/gcc-plugins.rst
8225 F:      scripts/Makefile.gcc-plugins
8226 F:      scripts/gcc-plugins/
8227
8228 GCOV BASED KERNEL PROFILING
8229 M:      Peter Oberparleiter <oberpar@linux.ibm.com>
8230 S:      Maintained
8231 F:      Documentation/dev-tools/gcov.rst
8232 F:      kernel/gcov/
8233
8234 GDB KERNEL DEBUGGING HELPER SCRIPTS
8235 M:      Jan Kiszka <jan.kiszka@siemens.com>
8236 M:      Kieran Bingham <kbingham@kernel.org>
8237 S:      Supported
8238 F:      scripts/gdb/
8239
8240 GEMINI CRYPTO DRIVER
8241 M:      Corentin Labbe <clabbe@baylibre.com>
8242 L:      linux-crypto@vger.kernel.org
8243 S:      Maintained
8244 F:      drivers/crypto/gemini/
8245
8246 GEMTEK FM RADIO RECEIVER DRIVER
8247 M:      Hans Verkuil <hverkuil@xs4all.nl>
8248 L:      linux-media@vger.kernel.org
8249 S:      Maintained
8250 W:      https://linuxtv.org
8251 T:      git git://linuxtv.org/media_tree.git
8252 F:      drivers/media/radio/radio-gemtek*
8253
8254 GENERIC ARCHITECTURE TOPOLOGY
8255 M:      Sudeep Holla <sudeep.holla@arm.com>
8256 L:      linux-kernel@vger.kernel.org
8257 S:      Maintained
8258 F:      drivers/base/arch_topology.c
8259 F:      include/linux/arch_topology.h
8260
8261 GENERIC ENTRY CODE
8262 M:      Thomas Gleixner <tglx@linutronix.de>
8263 M:      Peter Zijlstra <peterz@infradead.org>
8264 M:      Andy Lutomirski <luto@kernel.org>
8265 L:      linux-kernel@vger.kernel.org
8266 S:      Maintained
8267 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/entry
8268 F:      include/linux/entry-common.h
8269 F:      include/linux/entry-kvm.h
8270 F:      kernel/entry/
8271
8272 GENERIC GPIO I2C DRIVER
8273 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
8274 S:      Supported
8275 F:      drivers/i2c/busses/i2c-gpio.c
8276 F:      include/linux/platform_data/i2c-gpio.h
8277
8278 GENERIC GPIO I2C MULTIPLEXER DRIVER
8279 M:      Peter Korsgaard <peter.korsgaard@barco.com>
8280 L:      linux-i2c@vger.kernel.org
8281 S:      Supported
8282 F:      Documentation/i2c/muxes/i2c-mux-gpio.rst
8283 F:      drivers/i2c/muxes/i2c-mux-gpio.c
8284 F:      include/linux/platform_data/i2c-mux-gpio.h
8285
8286 GENERIC HDLC (WAN) DRIVERS
8287 M:      Krzysztof Halasa <khc@pm.waw.pl>
8288 S:      Maintained
8289 W:      http://www.kernel.org/pub/linux/utils/net/hdlc/
8290 F:      drivers/net/wan/c101.c
8291 F:      drivers/net/wan/hd6457*
8292 F:      drivers/net/wan/hdlc*
8293 F:      drivers/net/wan/n2.c
8294 F:      drivers/net/wan/pc300too.c
8295 F:      drivers/net/wan/pci200syn.c
8296 F:      drivers/net/wan/wanxl*
8297
8298 GENERIC INCLUDE/ASM HEADER FILES
8299 M:      Arnd Bergmann <arnd@arndb.de>
8300 L:      linux-arch@vger.kernel.org
8301 S:      Maintained
8302 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
8303 F:      include/asm-generic/
8304 F:      include/uapi/asm-generic/
8305
8306 GENERIC PHY FRAMEWORK
8307 M:      Kishon Vijay Abraham I <kishon@ti.com>
8308 M:      Vinod Koul <vkoul@kernel.org>
8309 L:      linux-phy@lists.infradead.org
8310 S:      Supported
8311 Q:      https://patchwork.kernel.org/project/linux-phy/list/
8312 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/phy/linux-phy.git
8313 F:      Documentation/devicetree/bindings/phy/
8314 F:      drivers/phy/
8315 F:      include/linux/phy/
8316
8317 GENERIC PINCTRL I2C DEMULTIPLEXER DRIVER
8318 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
8319 S:      Supported
8320 F:      drivers/i2c/muxes/i2c-demux-pinctrl.c
8321
8322 GENERIC PM DOMAINS
8323 M:      "Rafael J. Wysocki" <rafael@kernel.org>
8324 M:      Kevin Hilman <khilman@kernel.org>
8325 M:      Ulf Hansson <ulf.hansson@linaro.org>
8326 L:      linux-pm@vger.kernel.org
8327 S:      Supported
8328 F:      Documentation/devicetree/bindings/power/power?domain*
8329 F:      drivers/base/power/domain*.c
8330 F:      include/linux/pm_domain.h
8331
8332 GENERIC RESISTIVE TOUCHSCREEN ADC DRIVER
8333 M:      Eugen Hristev <eugen.hristev@microchip.com>
8334 L:      linux-input@vger.kernel.org
8335 S:      Maintained
8336 F:      drivers/input/touchscreen/resistive-adc-touch.c
8337
8338 GENERIC STRING LIBRARY
8339 R:      Andy Shevchenko <andy@kernel.org>
8340 S:      Maintained
8341 F:      lib/string.c
8342 F:      lib/string_helpers.c
8343 F:      lib/test_string.c
8344 F:      lib/test-string_helpers.c
8345
8346 GENERIC UIO DRIVER FOR PCI DEVICES
8347 M:      "Michael S. Tsirkin" <mst@redhat.com>
8348 L:      kvm@vger.kernel.org
8349 S:      Supported
8350 F:      drivers/uio/uio_pci_generic.c
8351
8352 GENERIC VDSO LIBRARY
8353 M:      Andy Lutomirski <luto@kernel.org>
8354 M:      Thomas Gleixner <tglx@linutronix.de>
8355 M:      Vincenzo Frascino <vincenzo.frascino@arm.com>
8356 L:      linux-kernel@vger.kernel.org
8357 S:      Maintained
8358 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/vdso
8359 F:      include/asm-generic/vdso/vsyscall.h
8360 F:      include/vdso/
8361 F:      kernel/time/vsyscall.c
8362 F:      lib/vdso/
8363
8364 GENWQE (IBM Generic Workqueue Card)
8365 M:      Frank Haverkamp <haver@linux.ibm.com>
8366 S:      Supported
8367 F:      drivers/misc/genwqe/
8368
8369 GET_MAINTAINER SCRIPT
8370 M:      Joe Perches <joe@perches.com>
8371 S:      Maintained
8372 F:      scripts/get_maintainer.pl
8373
8374 GFS2 FILE SYSTEM
8375 M:      Bob Peterson <rpeterso@redhat.com>
8376 M:      Andreas Gruenbacher <agruenba@redhat.com>
8377 L:      cluster-devel@redhat.com
8378 S:      Supported
8379 B:      https://bugzilla.kernel.org/enter_bug.cgi?product=File%20System&component=gfs2
8380 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git
8381 F:      Documentation/filesystems/gfs2*
8382 F:      fs/gfs2/
8383 F:      include/uapi/linux/gfs2_ondisk.h
8384
8385 GIGABYTE WMI DRIVER
8386 M:      Thomas Weißschuh <thomas@weissschuh.net>
8387 L:      platform-driver-x86@vger.kernel.org
8388 S:      Maintained
8389 F:      drivers/platform/x86/gigabyte-wmi.c
8390
8391 GNSS SUBSYSTEM
8392 M:      Johan Hovold <johan@kernel.org>
8393 S:      Maintained
8394 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/gnss.git
8395 F:      Documentation/ABI/testing/sysfs-class-gnss
8396 F:      Documentation/devicetree/bindings/gnss/
8397 F:      drivers/gnss/
8398 F:      include/linux/gnss.h
8399
8400 GO7007 MPEG CODEC
8401 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
8402 L:      linux-media@vger.kernel.org
8403 S:      Maintained
8404 F:      drivers/media/usb/go7007/
8405
8406 GOODIX TOUCHSCREEN
8407 M:      Bastien Nocera <hadess@hadess.net>
8408 M:      Hans de Goede <hdegoede@redhat.com>
8409 L:      linux-input@vger.kernel.org
8410 S:      Maintained
8411 F:      drivers/input/touchscreen/goodix*
8412
8413 GOOGLE ETHERNET DRIVERS
8414 M:      Jeroen de Borst <jeroendb@google.com>
8415 R:      Catherine Sullivan <csully@google.com>
8416 R:      David Awogbemila <awogbemila@google.com>
8417 L:      netdev@vger.kernel.org
8418 S:      Supported
8419 F:      Documentation/networking/device_drivers/ethernet/google/gve.rst
8420 F:      drivers/net/ethernet/google
8421
8422 GPD POCKET FAN DRIVER
8423 M:      Hans de Goede <hdegoede@redhat.com>
8424 L:      platform-driver-x86@vger.kernel.org
8425 S:      Maintained
8426 F:      drivers/platform/x86/gpd-pocket-fan.c
8427
8428 GPIO ACPI SUPPORT
8429 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
8430 M:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
8431 L:      linux-gpio@vger.kernel.org
8432 L:      linux-acpi@vger.kernel.org
8433 S:      Supported
8434 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
8435 F:      Documentation/firmware-guide/acpi/gpio-properties.rst
8436 F:      drivers/gpio/gpiolib-acpi.c
8437 F:      drivers/gpio/gpiolib-acpi.h
8438
8439 GPIO AGGREGATOR
8440 M:      Geert Uytterhoeven <geert+renesas@glider.be>
8441 L:      linux-gpio@vger.kernel.org
8442 S:      Supported
8443 F:      Documentation/admin-guide/gpio/gpio-aggregator.rst
8444 F:      drivers/gpio/gpio-aggregator.c
8445
8446 GPIO IR Transmitter
8447 M:      Sean Young <sean@mess.org>
8448 L:      linux-media@vger.kernel.org
8449 S:      Maintained
8450 F:      drivers/media/rc/gpio-ir-tx.c
8451
8452 GPIO MOCKUP DRIVER
8453 M:      Bamvor Jian Zhang <bamv2005@gmail.com>
8454 L:      linux-gpio@vger.kernel.org
8455 S:      Maintained
8456 F:      drivers/gpio/gpio-mockup.c
8457 F:      tools/testing/selftests/gpio/
8458
8459 GPIO REGMAP
8460 R:      Michael Walle <michael@walle.cc>
8461 S:      Maintained
8462 F:      drivers/gpio/gpio-regmap.c
8463 F:      include/linux/gpio/regmap.h
8464
8465 GPIO SUBSYSTEM
8466 M:      Linus Walleij <linus.walleij@linaro.org>
8467 M:      Bartosz Golaszewski <brgl@bgdev.pl>
8468 L:      linux-gpio@vger.kernel.org
8469 S:      Maintained
8470 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux.git
8471 F:      Documentation/ABI/obsolete/sysfs-gpio
8472 F:      Documentation/ABI/testing/gpio-cdev
8473 F:      Documentation/admin-guide/gpio/
8474 F:      Documentation/devicetree/bindings/gpio/
8475 F:      Documentation/driver-api/gpio/
8476 F:      drivers/gpio/
8477 F:      include/asm-generic/gpio.h
8478 F:      include/linux/gpio.h
8479 F:      include/linux/gpio/
8480 F:      include/linux/of_gpio.h
8481 F:      include/uapi/linux/gpio.h
8482 F:      tools/gpio/
8483
8484 GRE DEMULTIPLEXER DRIVER
8485 M:      Dmitry Kozlov <xeb@mail.ru>
8486 L:      netdev@vger.kernel.org
8487 S:      Maintained
8488 F:      include/net/gre.h
8489 F:      net/ipv4/gre_demux.c
8490 F:      net/ipv4/gre_offload.c
8491
8492 GRETH 10/100/1G Ethernet MAC device driver
8493 M:      Andreas Larsson <andreas@gaisler.com>
8494 L:      netdev@vger.kernel.org
8495 S:      Maintained
8496 F:      drivers/net/ethernet/aeroflex/
8497
8498 GREYBUS AUDIO PROTOCOLS DRIVERS
8499 M:      Vaibhav Agarwal <vaibhav.sr@gmail.com>
8500 M:      Mark Greer <mgreer@animalcreek.com>
8501 S:      Maintained
8502 F:      drivers/staging/greybus/audio_apbridgea.c
8503 F:      drivers/staging/greybus/audio_apbridgea.h
8504 F:      drivers/staging/greybus/audio_codec.c
8505 F:      drivers/staging/greybus/audio_codec.h
8506 F:      drivers/staging/greybus/audio_gb.c
8507 F:      drivers/staging/greybus/audio_manager.c
8508 F:      drivers/staging/greybus/audio_manager.h
8509 F:      drivers/staging/greybus/audio_manager_module.c
8510 F:      drivers/staging/greybus/audio_manager_private.h
8511 F:      drivers/staging/greybus/audio_manager_sysfs.c
8512 F:      drivers/staging/greybus/audio_module.c
8513 F:      drivers/staging/greybus/audio_topology.c
8514
8515 GREYBUS FW/HID/SPI PROTOCOLS DRIVERS
8516 M:      Viresh Kumar <vireshk@kernel.org>
8517 S:      Maintained
8518 F:      drivers/staging/greybus/authentication.c
8519 F:      drivers/staging/greybus/bootrom.c
8520 F:      drivers/staging/greybus/firmware.h
8521 F:      drivers/staging/greybus/fw-core.c
8522 F:      drivers/staging/greybus/fw-download.c
8523 F:      drivers/staging/greybus/fw-management.c
8524 F:      drivers/staging/greybus/greybus_authentication.h
8525 F:      drivers/staging/greybus/greybus_firmware.h
8526 F:      drivers/staging/greybus/hid.c
8527 F:      drivers/staging/greybus/i2c.c
8528 F:      drivers/staging/greybus/spi.c
8529 F:      drivers/staging/greybus/spilib.c
8530 F:      drivers/staging/greybus/spilib.h
8531
8532 GREYBUS LOOPBACK DRIVER
8533 M:      Bryan O'Donoghue <pure.logic@nexus-software.ie>
8534 S:      Maintained
8535 F:      drivers/staging/greybus/loopback.c
8536
8537 GREYBUS PLATFORM DRIVERS
8538 M:      Vaibhav Hiremath <hvaibhav.linux@gmail.com>
8539 S:      Maintained
8540 F:      drivers/staging/greybus/arche-apb-ctrl.c
8541 F:      drivers/staging/greybus/arche-platform.c
8542 F:      drivers/staging/greybus/arche_platform.h
8543
8544 GREYBUS SDIO/GPIO/SPI PROTOCOLS DRIVERS
8545 M:      Rui Miguel Silva <rmfrfs@gmail.com>
8546 S:      Maintained
8547 F:      drivers/staging/greybus/gpio.c
8548 F:      drivers/staging/greybus/light.c
8549 F:      drivers/staging/greybus/power_supply.c
8550 F:      drivers/staging/greybus/sdio.c
8551 F:      drivers/staging/greybus/spi.c
8552 F:      drivers/staging/greybus/spilib.c
8553
8554 GREYBUS SUBSYSTEM
8555 M:      Johan Hovold <johan@kernel.org>
8556 M:      Alex Elder <elder@kernel.org>
8557 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
8558 L:      greybus-dev@lists.linaro.org (moderated for non-subscribers)
8559 S:      Maintained
8560 F:      drivers/greybus/
8561 F:      drivers/staging/greybus/
8562 F:      include/linux/greybus.h
8563 F:      include/linux/greybus/
8564
8565 GREYBUS UART PROTOCOLS DRIVERS
8566 M:      David Lin <dtwlin@gmail.com>
8567 S:      Maintained
8568 F:      drivers/staging/greybus/log.c
8569 F:      drivers/staging/greybus/uart.c
8570
8571 GS1662 VIDEO SERIALIZER
8572 M:      Charles-Antoine Couret <charles-antoine.couret@nexvision.fr>
8573 L:      linux-media@vger.kernel.org
8574 S:      Maintained
8575 T:      git git://linuxtv.org/media_tree.git
8576 F:      drivers/media/spi/gs1662.c
8577
8578 GSPCA FINEPIX SUBDRIVER
8579 M:      Frank Zago <frank@zago.net>
8580 L:      linux-media@vger.kernel.org
8581 S:      Maintained
8582 T:      git git://linuxtv.org/media_tree.git
8583 F:      drivers/media/usb/gspca/finepix.c
8584
8585 GSPCA GL860 SUBDRIVER
8586 M:      Olivier Lorin <o.lorin@laposte.net>
8587 L:      linux-media@vger.kernel.org
8588 S:      Maintained
8589 T:      git git://linuxtv.org/media_tree.git
8590 F:      drivers/media/usb/gspca/gl860/
8591
8592 GSPCA M5602 SUBDRIVER
8593 M:      Erik Andren <erik.andren@gmail.com>
8594 L:      linux-media@vger.kernel.org
8595 S:      Maintained
8596 T:      git git://linuxtv.org/media_tree.git
8597 F:      drivers/media/usb/gspca/m5602/
8598
8599 GSPCA PAC207 SONIXB SUBDRIVER
8600 M:      Hans Verkuil <hverkuil@xs4all.nl>
8601 L:      linux-media@vger.kernel.org
8602 S:      Odd Fixes
8603 T:      git git://linuxtv.org/media_tree.git
8604 F:      drivers/media/usb/gspca/pac207.c
8605
8606 GSPCA SN9C20X SUBDRIVER
8607 M:      Brian Johnson <brijohn@gmail.com>
8608 L:      linux-media@vger.kernel.org
8609 S:      Maintained
8610 T:      git git://linuxtv.org/media_tree.git
8611 F:      drivers/media/usb/gspca/sn9c20x.c
8612
8613 GSPCA T613 SUBDRIVER
8614 M:      Leandro Costantino <lcostantino@gmail.com>
8615 L:      linux-media@vger.kernel.org
8616 S:      Maintained
8617 T:      git git://linuxtv.org/media_tree.git
8618 F:      drivers/media/usb/gspca/t613.c
8619
8620 GSPCA USB WEBCAM DRIVER
8621 M:      Hans Verkuil <hverkuil@xs4all.nl>
8622 L:      linux-media@vger.kernel.org
8623 S:      Odd Fixes
8624 T:      git git://linuxtv.org/media_tree.git
8625 F:      drivers/media/usb/gspca/
8626
8627 GTP (GPRS Tunneling Protocol)
8628 M:      Pablo Neira Ayuso <pablo@netfilter.org>
8629 M:      Harald Welte <laforge@gnumonks.org>
8630 L:      osmocom-net-gprs@lists.osmocom.org
8631 S:      Maintained
8632 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/gtp.git
8633 F:      drivers/net/gtp.c
8634
8635 GUID PARTITION TABLE (GPT)
8636 M:      Davidlohr Bueso <dave@stgolabs.net>
8637 L:      linux-efi@vger.kernel.org
8638 S:      Maintained
8639 F:      block/partitions/efi.*
8640
8641 HABANALABS PCI DRIVER
8642 M:      Oded Gabbay <ogabbay@kernel.org>
8643 S:      Supported
8644 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/ogabbay/linux.git
8645 F:      Documentation/ABI/testing/debugfs-driver-habanalabs
8646 F:      Documentation/ABI/testing/sysfs-driver-habanalabs
8647 F:      drivers/misc/habanalabs/
8648 F:      include/uapi/misc/habanalabs.h
8649
8650 HACKRF MEDIA DRIVER
8651 M:      Antti Palosaari <crope@iki.fi>
8652 L:      linux-media@vger.kernel.org
8653 S:      Maintained
8654 W:      https://linuxtv.org
8655 W:      http://palosaari.fi/linux/
8656 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8657 T:      git git://linuxtv.org/anttip/media_tree.git
8658 F:      drivers/media/usb/hackrf/
8659
8660 HANTRO VPU CODEC DRIVER
8661 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
8662 M:      Philipp Zabel <p.zabel@pengutronix.de>
8663 L:      linux-media@vger.kernel.org
8664 L:      linux-rockchip@lists.infradead.org
8665 S:      Maintained
8666 F:      Documentation/devicetree/bindings/media/nxp,imx8mq-vpu.yaml
8667 F:      Documentation/devicetree/bindings/media/rockchip-vpu.yaml
8668 F:      drivers/staging/media/hantro/
8669
8670 HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
8671 M:      Frank Seidel <frank@f-seidel.de>
8672 L:      platform-driver-x86@vger.kernel.org
8673 S:      Maintained
8674 W:      http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
8675 F:      drivers/platform/x86/hdaps.c
8676
8677 HARDWARE MONITORING
8678 M:      Jean Delvare <jdelvare@suse.com>
8679 M:      Guenter Roeck <linux@roeck-us.net>
8680 L:      linux-hwmon@vger.kernel.org
8681 S:      Maintained
8682 W:      http://hwmon.wiki.kernel.org/
8683 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
8684 F:      Documentation/ABI/testing/sysfs-class-hwmon
8685 F:      Documentation/devicetree/bindings/hwmon/
8686 F:      Documentation/hwmon/
8687 F:      drivers/hwmon/
8688 F:      include/linux/hwmon*.h
8689 F:      include/trace/events/hwmon*.h
8690 K:      (devm_)?hwmon_device_(un)?register(|_with_groups|_with_info)
8691
8692 HARDWARE RANDOM NUMBER GENERATOR CORE
8693 M:      Matt Mackall <mpm@selenic.com>
8694 M:      Herbert Xu <herbert@gondor.apana.org.au>
8695 L:      linux-crypto@vger.kernel.org
8696 S:      Odd fixes
8697 F:      Documentation/admin-guide/hw_random.rst
8698 F:      Documentation/devicetree/bindings/rng/
8699 F:      drivers/char/hw_random/
8700 F:      include/linux/hw_random.h
8701
8702 HARDWARE SPINLOCK CORE
8703 M:      Ohad Ben-Cohen <ohad@wizery.com>
8704 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
8705 R:      Baolin Wang <baolin.wang7@gmail.com>
8706 L:      linux-remoteproc@vger.kernel.org
8707 S:      Maintained
8708 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git hwspinlock-next
8709 F:      Documentation/devicetree/bindings/hwlock/
8710 F:      Documentation/locking/hwspinlock.rst
8711 F:      drivers/hwspinlock/
8712 F:      include/linux/hwspinlock.h
8713
8714 HARDWARE TRACING FACILITIES
8715 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
8716 S:      Maintained
8717 F:      drivers/hwtracing/
8718
8719 HARMONY SOUND DRIVER
8720 L:      linux-parisc@vger.kernel.org
8721 S:      Maintained
8722 F:      sound/parisc/harmony.*
8723
8724 HDPVR USB VIDEO ENCODER DRIVER
8725 M:      Hans Verkuil <hverkuil@xs4all.nl>
8726 L:      linux-media@vger.kernel.org
8727 S:      Odd Fixes
8728 W:      https://linuxtv.org
8729 T:      git git://linuxtv.org/media_tree.git
8730 F:      drivers/media/usb/hdpvr/
8731
8732 HEWLETT PACKARD ENTERPRISE ILO CHIF DRIVER
8733 M:      Matt Hsiao <matt.hsiao@hpe.com>
8734 S:      Supported
8735 F:      drivers/misc/hpilo.[ch]
8736
8737 HEWLETT PACKARD ENTERPRISE ILO NMI WATCHDOG DRIVER
8738 M:      Jerry Hoemann <jerry.hoemann@hpe.com>
8739 S:      Supported
8740 F:      Documentation/watchdog/hpwdt.rst
8741 F:      drivers/watchdog/hpwdt.c
8742
8743 HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
8744 M:      Don Brace <don.brace@microchip.com>
8745 L:      storagedev@microchip.com
8746 L:      linux-scsi@vger.kernel.org
8747 S:      Supported
8748 F:      Documentation/scsi/hpsa.rst
8749 F:      drivers/scsi/hpsa*.[ch]
8750 F:      include/linux/cciss*.h
8751 F:      include/uapi/linux/cciss*.h
8752
8753 HFI1 DRIVER
8754 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
8755 L:      linux-rdma@vger.kernel.org
8756 S:      Supported
8757 F:      drivers/infiniband/hw/hfi1
8758
8759 HFS FILESYSTEM
8760 L:      linux-fsdevel@vger.kernel.org
8761 S:      Orphan
8762 F:      Documentation/filesystems/hfs.rst
8763 F:      fs/hfs/
8764
8765 HFSPLUS FILESYSTEM
8766 L:      linux-fsdevel@vger.kernel.org
8767 S:      Orphan
8768 F:      Documentation/filesystems/hfsplus.rst
8769 F:      fs/hfsplus/
8770
8771 HGA FRAMEBUFFER DRIVER
8772 M:      Ferenc Bakonyi <fero@drama.obuda.kando.hu>
8773 L:      linux-nvidia@lists.surfsouth.com
8774 S:      Maintained
8775 W:      http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
8776 F:      drivers/video/fbdev/hgafb.c
8777
8778 HIBERNATION (aka Software Suspend, aka swsusp)
8779 M:      "Rafael J. Wysocki" <rafael@kernel.org>
8780 M:      Pavel Machek <pavel@ucw.cz>
8781 L:      linux-pm@vger.kernel.org
8782 S:      Supported
8783 B:      https://bugzilla.kernel.org
8784 F:      arch/*/include/asm/suspend*.h
8785 F:      arch/x86/power/
8786 F:      drivers/base/power/
8787 F:      include/linux/freezer.h
8788 F:      include/linux/pm.h
8789 F:      include/linux/suspend.h
8790 F:      kernel/power/
8791
8792 HID CORE LAYER
8793 M:      Jiri Kosina <jikos@kernel.org>
8794 M:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
8795 L:      linux-input@vger.kernel.org
8796 S:      Maintained
8797 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
8798 F:      drivers/hid/
8799 F:      include/linux/hid*
8800 F:      include/uapi/linux/hid*
8801
8802 HID LOGITECH DRIVERS
8803 R:      Filipe Laíns <lains@riseup.net>
8804 L:      linux-input@vger.kernel.org
8805 S:      Maintained
8806 F:      drivers/hid/hid-logitech-*
8807
8808 HID PLAYSTATION DRIVER
8809 M:      Roderick Colenbrander <roderick.colenbrander@sony.com>
8810 L:      linux-input@vger.kernel.org
8811 S:      Supported
8812 F:      drivers/hid/hid-playstation.c
8813
8814 HID SENSOR HUB DRIVERS
8815 M:      Jiri Kosina <jikos@kernel.org>
8816 M:      Jonathan Cameron <jic23@kernel.org>
8817 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
8818 L:      linux-input@vger.kernel.org
8819 L:      linux-iio@vger.kernel.org
8820 S:      Maintained
8821 F:      Documentation/hid/hid-sensor*
8822 F:      drivers/hid/hid-sensor-*
8823 F:      drivers/iio/*/hid-*
8824 F:      include/linux/hid-sensor-*
8825
8826 HID WACOM DRIVER
8827 M:      Ping Cheng <ping.cheng@wacom.com>
8828 M:      Jason Gerecke  <jason.gerecke@wacom.com>
8829 L:      linux-input@vger.kernel.org
8830 S:      Maintained
8831 F:      drivers/hid/wacom.h
8832 F:      drivers/hid/wacom_*
8833
8834 HIGH-RESOLUTION TIMERS, CLOCKEVENTS
8835 M:      Thomas Gleixner <tglx@linutronix.de>
8836 L:      linux-kernel@vger.kernel.org
8837 S:      Maintained
8838 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
8839 F:      Documentation/timers/
8840 F:      include/linux/clockchips.h
8841 F:      include/linux/hrtimer.h
8842 F:      kernel/time/clockevents.c
8843 F:      kernel/time/hrtimer.c
8844 F:      kernel/time/timer_*.c
8845
8846 HIGH-SPEED SCC DRIVER FOR AX.25
8847 L:      linux-hams@vger.kernel.org
8848 S:      Orphan
8849 F:      drivers/net/hamradio/scc.c
8850
8851 HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
8852 M:      HighPoint Linux Team <linux@highpoint-tech.com>
8853 S:      Supported
8854 W:      http://www.highpoint-tech.com
8855 F:      Documentation/scsi/hptiop.rst
8856 F:      drivers/scsi/hptiop.c
8857
8858 HIPPI
8859 M:      Jes Sorensen <jes@trained-monkey.org>
8860 L:      linux-hippi@sunsite.dk
8861 S:      Maintained
8862 F:      drivers/net/hippi/
8863 F:      include/linux/hippidevice.h
8864 F:      include/uapi/linux/if_hippi.h
8865 F:      net/802/hippi.c
8866
8867 HIRSCHMANN HELLCREEK ETHERNET SWITCH DRIVER
8868 M:      Kurt Kanzenbach <kurt@linutronix.de>
8869 L:      netdev@vger.kernel.org
8870 S:      Maintained
8871 F:      Documentation/devicetree/bindings/net/dsa/hirschmann,hellcreek.yaml
8872 F:      drivers/net/dsa/hirschmann/*
8873 F:      include/linux/platform_data/hirschmann-hellcreek.h
8874 F:      net/dsa/tag_hellcreek.c
8875
8876 HISILICON DMA DRIVER
8877 M:      Zhou Wang <wangzhou1@hisilicon.com>
8878 L:      dmaengine@vger.kernel.org
8879 S:      Maintained
8880 F:      drivers/dma/hisi_dma.c
8881
8882 HISILICON GPIO DRIVER
8883 M:      Luo Jiaxing <luojiaxing@huawei.com>
8884 L:      linux-gpio@vger.kernel.org
8885 S:      Maintained
8886 F:      drivers/gpio/gpio-hisi.c
8887
8888 HISILICON HIGH PERFORMANCE RSA ENGINE DRIVER (HPRE)
8889 M:      Longfang Liu <liulongfang@huawei.com>
8890 L:      linux-crypto@vger.kernel.org
8891 S:      Maintained
8892 F:      Documentation/ABI/testing/debugfs-hisi-hpre
8893 F:      drivers/crypto/hisilicon/hpre/hpre.h
8894 F:      drivers/crypto/hisilicon/hpre/hpre_crypto.c
8895 F:      drivers/crypto/hisilicon/hpre/hpre_main.c
8896
8897 HISILICON I2C CONTROLLER DRIVER
8898 M:      Yicong Yang <yangyicong@hisilicon.com>
8899 L:      linux-i2c@vger.kernel.org
8900 S:      Maintained
8901 W:      https://www.hisilicon.com
8902 F:      drivers/i2c/busses/i2c-hisi.c
8903
8904 HISILICON LPC BUS DRIVER
8905 M:      john.garry@huawei.com
8906 S:      Maintained
8907 W:      http://www.hisilicon.com
8908 F:      Documentation/devicetree/bindings/arm/hisilicon/low-pin-count.yaml
8909 F:      drivers/bus/hisi_lpc.c
8910
8911 HISILICON NETWORK SUBSYSTEM 3 DRIVER (HNS3)
8912 M:      Yisen Zhuang <yisen.zhuang@huawei.com>
8913 M:      Salil Mehta <salil.mehta@huawei.com>
8914 L:      netdev@vger.kernel.org
8915 S:      Maintained
8916 W:      http://www.hisilicon.com
8917 F:      drivers/net/ethernet/hisilicon/hns3/
8918
8919 HISILICON NETWORK SUBSYSTEM DRIVER
8920 M:      Yisen Zhuang <yisen.zhuang@huawei.com>
8921 M:      Salil Mehta <salil.mehta@huawei.com>
8922 L:      netdev@vger.kernel.org
8923 S:      Maintained
8924 W:      http://www.hisilicon.com
8925 F:      Documentation/devicetree/bindings/net/hisilicon*.txt
8926 F:      drivers/net/ethernet/hisilicon/
8927
8928 HIKEY960 ONBOARD USB GPIO HUB DRIVER
8929 M:      John Stultz <jstultz@google.com>
8930 L:      linux-kernel@vger.kernel.org
8931 S:      Maintained
8932 F:      drivers/misc/hisi_hikey_usb.c
8933
8934 HISILICON PMU DRIVER
8935 M:      Shaokun Zhang <zhangshaokun@hisilicon.com>
8936 M:      Qi Liu <liuqi115@huawei.com>
8937 S:      Supported
8938 W:      http://www.hisilicon.com
8939 F:      Documentation/admin-guide/perf/hisi-pcie-pmu.rst
8940 F:      Documentation/admin-guide/perf/hisi-pmu.rst
8941 F:      drivers/perf/hisilicon
8942
8943 HISILICON QM AND ZIP Controller DRIVER
8944 M:      Zhou Wang <wangzhou1@hisilicon.com>
8945 L:      linux-crypto@vger.kernel.org
8946 S:      Maintained
8947 F:      Documentation/ABI/testing/debugfs-hisi-zip
8948 F:      drivers/crypto/hisilicon/qm.c
8949 F:      drivers/crypto/hisilicon/sgl.c
8950 F:      drivers/crypto/hisilicon/zip/
8951 F:      include/linux/hisi_acc_qm.h
8952
8953 HISILICON ROCE DRIVER
8954 M:      Wenpeng Liang <liangwenpeng@huawei.com>
8955 M:      Weihang Li <liweihang@huawei.com>
8956 L:      linux-rdma@vger.kernel.org
8957 S:      Maintained
8958 F:      Documentation/devicetree/bindings/infiniband/hisilicon-hns-roce.txt
8959 F:      drivers/infiniband/hw/hns/
8960
8961 HISILICON SAS Controller
8962 M:      John Garry <john.garry@huawei.com>
8963 S:      Supported
8964 W:      http://www.hisilicon.com
8965 F:      Documentation/devicetree/bindings/scsi/hisilicon-sas.txt
8966 F:      drivers/scsi/hisi_sas/
8967
8968 HISILICON SECURITY ENGINE V2 DRIVER (SEC2)
8969 M:      Kai Ye <yekai13@huawei.com>
8970 M:      Longfang Liu <liulongfang@huawei.com>
8971 L:      linux-crypto@vger.kernel.org
8972 S:      Maintained
8973 F:      Documentation/ABI/testing/debugfs-hisi-sec
8974 F:      drivers/crypto/hisilicon/sec2/sec.h
8975 F:      drivers/crypto/hisilicon/sec2/sec_crypto.c
8976 F:      drivers/crypto/hisilicon/sec2/sec_crypto.h
8977 F:      drivers/crypto/hisilicon/sec2/sec_main.c
8978
8979 HISILICON SPI Controller DRIVER FOR KUNPENG SOCS
8980 M:      Jay Fang <f.fangjian@huawei.com>
8981 L:      linux-spi@vger.kernel.org
8982 S:      Maintained
8983 W:      http://www.hisilicon.com
8984 F:      drivers/spi/spi-hisi-kunpeng.c
8985
8986 HISILICON SPMI CONTROLLER DRIVER FOR HIKEY 970
8987 M:      Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
8988 L:      linux-kernel@vger.kernel.org
8989 S:      Maintained
8990 F:      Documentation/devicetree/bindings/spmi/hisilicon,hisi-spmi-controller.yaml
8991 F:      drivers/spmi/hisi-spmi-controller.c
8992
8993 HISILICON SPMI PMIC DRIVER FOR HIKEY 6421v600
8994 M:      Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
8995 L:      linux-kernel@vger.kernel.org
8996 S:      Maintained
8997 F:      Documentation/devicetree/bindings/mfd/hisilicon,hi6421-spmi-pmic.yaml
8998 F:      drivers/mfd/hi6421-spmi-pmic.c
8999
9000 HISILICON TRUE RANDOM NUMBER GENERATOR V2 SUPPORT
9001 M:      Weili Qian <qianweili@huawei.com>
9002 S:      Maintained
9003 F:      drivers/crypto/hisilicon/trng/trng.c
9004
9005 HISILICON V3XX SPI NOR FLASH Controller Driver
9006 M:      John Garry <john.garry@huawei.com>
9007 S:      Maintained
9008 W:      http://www.hisilicon.com
9009 F:      drivers/spi/spi-hisi-sfc-v3xx.c
9010
9011 HMM - Heterogeneous Memory Management
9012 M:      Jérôme Glisse <jglisse@redhat.com>
9013 L:      linux-mm@kvack.org
9014 S:      Maintained
9015 F:      Documentation/vm/hmm.rst
9016 F:      include/linux/hmm*
9017 F:      lib/test_hmm*
9018 F:      mm/hmm*
9019 F:      tools/testing/selftests/vm/*hmm*
9020
9021 HOST AP DRIVER
9022 M:      Jouni Malinen <j@w1.fi>
9023 L:      linux-wireless@vger.kernel.org
9024 S:      Obsolete
9025 W:      http://w1.fi/hostap-driver.html
9026 F:      drivers/net/wireless/intersil/hostap/
9027
9028 HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
9029 L:      platform-driver-x86@vger.kernel.org
9030 S:      Orphan
9031 F:      drivers/platform/x86/tc1100-wmi.c
9032
9033 HPET:   High Precision Event Timers driver
9034 M:      Clemens Ladisch <clemens@ladisch.de>
9035 S:      Maintained
9036 F:      Documentation/timers/hpet.rst
9037 F:      drivers/char/hpet.c
9038 F:      include/linux/hpet.h
9039 F:      include/uapi/linux/hpet.h
9040
9041 HPET:   x86
9042 S:      Orphan
9043 F:      arch/x86/include/asm/hpet.h
9044 F:      arch/x86/kernel/hpet.c
9045
9046 HPFS FILESYSTEM
9047 M:      Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
9048 S:      Maintained
9049 W:      http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
9050 F:      fs/hpfs/
9051
9052 HSI SUBSYSTEM
9053 M:      Sebastian Reichel <sre@kernel.org>
9054 S:      Maintained
9055 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git
9056 F:      Documentation/ABI/testing/sysfs-bus-hsi
9057 F:      Documentation/driver-api/hsi.rst
9058 F:      drivers/hsi/
9059 F:      include/linux/hsi/
9060 F:      include/uapi/linux/hsi/
9061
9062 HSO 3G MODEM DRIVER
9063 L:      linux-usb@vger.kernel.org
9064 S:      Orphan
9065 F:      drivers/net/usb/hso.c
9066
9067 HSR NETWORK PROTOCOL
9068 L:      netdev@vger.kernel.org
9069 S:      Orphan
9070 F:      net/hsr/
9071
9072 HT16K33 LED CONTROLLER DRIVER
9073 M:      Robin van der Gracht <robin@protonic.nl>
9074 S:      Maintained
9075 F:      Documentation/devicetree/bindings/auxdisplay/holtek,ht16k33.yaml
9076 F:      drivers/auxdisplay/ht16k33.c
9077
9078 HTCPEN TOUCHSCREEN DRIVER
9079 M:      Pau Oliva Fora <pof@eslack.org>
9080 L:      linux-input@vger.kernel.org
9081 S:      Maintained
9082 F:      drivers/input/touchscreen/htcpen.c
9083
9084 HTE SUBSYSTEM
9085 M:      Dipen Patel <dipenp@nvidia.com>
9086 S:      Maintained
9087 F:      Documentation/devicetree/bindings/timestamp/
9088 F:      Documentation/hte/
9089 F:      drivers/hte/
9090 F:      include/linux/hte.h
9091
9092 HTS221 TEMPERATURE-HUMIDITY IIO DRIVER
9093 M:      Lorenzo Bianconi <lorenzo@kernel.org>
9094 L:      linux-iio@vger.kernel.org
9095 S:      Maintained
9096 W:      http://www.st.com/
9097 F:      Documentation/devicetree/bindings/iio/humidity/st,hts221.yaml
9098 F:      drivers/iio/humidity/hts221*
9099
9100 HUAWEI ETHERNET DRIVER
9101 L:      netdev@vger.kernel.org
9102 S:      Orphan
9103 F:      Documentation/networking/device_drivers/ethernet/huawei/hinic.rst
9104 F:      drivers/net/ethernet/huawei/hinic/
9105
9106 HUGETLB SUBSYSTEM
9107 M:      Mike Kravetz <mike.kravetz@oracle.com>
9108 M:      Muchun Song <songmuchun@bytedance.com>
9109 L:      linux-mm@kvack.org
9110 S:      Maintained
9111 F:      Documentation/ABI/testing/sysfs-kernel-mm-hugepages
9112 F:      Documentation/admin-guide/mm/hugetlbpage.rst
9113 F:      Documentation/vm/hugetlbfs_reserv.rst
9114 F:      Documentation/vm/vmemmap_dedup.rst
9115 F:      fs/hugetlbfs/
9116 F:      include/linux/hugetlb.h
9117 F:      mm/hugetlb.c
9118 F:      mm/hugetlb_vmemmap.c
9119 F:      mm/hugetlb_vmemmap.h
9120
9121 HVA ST MEDIA DRIVER
9122 M:      Jean-Christophe Trotin <jean-christophe.trotin@foss.st.com>
9123 L:      linux-media@vger.kernel.org
9124 S:      Supported
9125 W:      https://linuxtv.org
9126 T:      git git://linuxtv.org/media_tree.git
9127 F:      drivers/media/platform/st/sti/hva
9128
9129 HWPOISON MEMORY FAILURE HANDLING
9130 M:      Naoya Horiguchi <naoya.horiguchi@nec.com>
9131 L:      linux-mm@kvack.org
9132 S:      Maintained
9133 F:      mm/hwpoison-inject.c
9134 F:      mm/memory-failure.c
9135
9136 HYCON HY46XX TOUCHSCREEN SUPPORT
9137 M:      Giulio Benetti <giulio.benetti@benettiengineering.com>
9138 L:      linux-input@vger.kernel.org
9139 S:      Maintained
9140 F:      Documentation/devicetree/bindings/input/touchscreen/hycon,hy46xx.yaml
9141 F:      drivers/input/touchscreen/hycon-hy46xx.c
9142
9143 HYGON PROCESSOR SUPPORT
9144 M:      Pu Wen <puwen@hygon.cn>
9145 L:      linux-kernel@vger.kernel.org
9146 S:      Maintained
9147 F:      arch/x86/kernel/cpu/hygon.c
9148
9149 HYNIX HI556 SENSOR DRIVER
9150 M:      Shawn Tu <shawnx.tu@intel.com>
9151 L:      linux-media@vger.kernel.org
9152 S:      Maintained
9153 T:      git git://linuxtv.org/media_tree.git
9154 F:      drivers/media/i2c/hi556.c
9155
9156 HYNIX HI846 SENSOR DRIVER
9157 M:      Martin Kepplinger <martin.kepplinger@puri.sm>
9158 L:      linux-media@vger.kernel.org
9159 S:      Maintained
9160 F:      drivers/media/i2c/hi846.c
9161
9162 HYNIX HI847 SENSOR DRIVER
9163 M:      Shawn Tu <shawnx.tu@intel.com>
9164 L:      linux-media@vger.kernel.org
9165 S:      Maintained
9166 F:      drivers/media/i2c/hi847.c
9167
9168 Hyper-V/Azure CORE AND DRIVERS
9169 M:      "K. Y. Srinivasan" <kys@microsoft.com>
9170 M:      Haiyang Zhang <haiyangz@microsoft.com>
9171 M:      Stephen Hemminger <sthemmin@microsoft.com>
9172 M:      Wei Liu <wei.liu@kernel.org>
9173 M:      Dexuan Cui <decui@microsoft.com>
9174 L:      linux-hyperv@vger.kernel.org
9175 S:      Supported
9176 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hyperv/linux.git
9177 F:      Documentation/ABI/stable/sysfs-bus-vmbus
9178 F:      Documentation/ABI/testing/debugfs-hyperv
9179 F:      Documentation/networking/device_drivers/ethernet/microsoft/netvsc.rst
9180 F:      arch/arm64/hyperv
9181 F:      arch/arm64/include/asm/hyperv-tlfs.h
9182 F:      arch/arm64/include/asm/mshyperv.h
9183 F:      arch/x86/hyperv
9184 F:      arch/x86/include/asm/hyperv-tlfs.h
9185 F:      arch/x86/include/asm/mshyperv.h
9186 F:      arch/x86/include/asm/trace/hyperv.h
9187 F:      arch/x86/kernel/cpu/mshyperv.c
9188 F:      drivers/clocksource/hyperv_timer.c
9189 F:      drivers/hid/hid-hyperv.c
9190 F:      drivers/hv/
9191 F:      drivers/input/serio/hyperv-keyboard.c
9192 F:      drivers/iommu/hyperv-iommu.c
9193 F:      drivers/net/ethernet/microsoft/
9194 F:      drivers/net/hyperv/
9195 F:      drivers/pci/controller/pci-hyperv-intf.c
9196 F:      drivers/pci/controller/pci-hyperv.c
9197 F:      drivers/scsi/storvsc_drv.c
9198 F:      drivers/uio/uio_hv_generic.c
9199 F:      drivers/video/fbdev/hyperv_fb.c
9200 F:      include/asm-generic/hyperv-tlfs.h
9201 F:      include/asm-generic/mshyperv.h
9202 F:      include/clocksource/hyperv_timer.h
9203 F:      include/linux/hyperv.h
9204 F:      include/uapi/linux/hyperv.h
9205 F:      net/vmw_vsock/hyperv_transport.c
9206 F:      tools/hv/
9207
9208 HYPERBUS SUPPORT
9209 M:      Vignesh Raghavendra <vigneshr@ti.com>
9210 L:      linux-mtd@lists.infradead.org
9211 S:      Supported
9212 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
9213 C:      irc://irc.oftc.net/mtd
9214 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git cfi/next
9215 F:      Documentation/devicetree/bindings/mtd/ti,am654-hbmc.yaml
9216 F:      drivers/mtd/hyperbus/
9217 F:      include/linux/mtd/hyperbus.h
9218
9219 HYPERVISOR VIRTUAL CONSOLE DRIVER
9220 L:      linuxppc-dev@lists.ozlabs.org
9221 S:      Odd Fixes
9222 F:      drivers/tty/hvc/
9223
9224 I2C ACPI SUPPORT
9225 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
9226 L:      linux-i2c@vger.kernel.org
9227 L:      linux-acpi@vger.kernel.org
9228 S:      Maintained
9229 F:      drivers/i2c/i2c-core-acpi.c
9230
9231 I2C CONTROLLER DRIVER FOR NVIDIA GPU
9232 M:      Ajay Gupta <ajayg@nvidia.com>
9233 L:      linux-i2c@vger.kernel.org
9234 S:      Maintained
9235 F:      Documentation/i2c/busses/i2c-nvidia-gpu.rst
9236 F:      drivers/i2c/busses/i2c-nvidia-gpu.c
9237
9238 I2C MUXES
9239 M:      Peter Rosin <peda@axentia.se>
9240 L:      linux-i2c@vger.kernel.org
9241 S:      Maintained
9242 F:      Documentation/devicetree/bindings/i2c/i2c-arb*
9243 F:      Documentation/devicetree/bindings/i2c/i2c-gate*
9244 F:      Documentation/devicetree/bindings/i2c/i2c-mux*
9245 F:      Documentation/i2c/i2c-topology.rst
9246 F:      Documentation/i2c/muxes/
9247 F:      drivers/i2c/i2c-mux.c
9248 F:      drivers/i2c/muxes/
9249 F:      include/linux/i2c-mux.h
9250
9251 I2C MV64XXX MARVELL AND ALLWINNER DRIVER
9252 M:      Gregory CLEMENT <gregory.clement@bootlin.com>
9253 L:      linux-i2c@vger.kernel.org
9254 S:      Maintained
9255 F:      Documentation/devicetree/bindings/i2c/marvell,mv64xxx-i2c.yaml
9256 F:      drivers/i2c/busses/i2c-mv64xxx.c
9257
9258 I2C OVER PARALLEL PORT
9259 M:      Jean Delvare <jdelvare@suse.com>
9260 L:      linux-i2c@vger.kernel.org
9261 S:      Maintained
9262 F:      Documentation/i2c/busses/i2c-parport.rst
9263 F:      drivers/i2c/busses/i2c-parport.c
9264
9265 I2C SUBSYSTEM
9266 M:      Wolfram Sang <wsa@kernel.org>
9267 L:      linux-i2c@vger.kernel.org
9268 S:      Maintained
9269 W:      https://i2c.wiki.kernel.org/
9270 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
9271 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
9272 F:      Documentation/devicetree/bindings/i2c/i2c.txt
9273 F:      Documentation/i2c/
9274 F:      drivers/i2c/*
9275 F:      include/linux/i2c-dev.h
9276 F:      include/linux/i2c-smbus.h
9277 F:      include/linux/i2c.h
9278 F:      include/uapi/linux/i2c-*.h
9279 F:      include/uapi/linux/i2c.h
9280
9281 I2C SUBSYSTEM HOST DRIVERS
9282 L:      linux-i2c@vger.kernel.org
9283 S:      Odd Fixes
9284 W:      https://i2c.wiki.kernel.org/
9285 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
9286 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
9287 F:      Documentation/devicetree/bindings/i2c/
9288 F:      drivers/i2c/algos/
9289 F:      drivers/i2c/busses/
9290
9291 I2C-TAOS-EVM DRIVER
9292 M:      Jean Delvare <jdelvare@suse.com>
9293 L:      linux-i2c@vger.kernel.org
9294 S:      Maintained
9295 F:      Documentation/i2c/busses/i2c-taos-evm.rst
9296 F:      drivers/i2c/busses/i2c-taos-evm.c
9297
9298 I2C-TINY-USB DRIVER
9299 M:      Till Harbaum <till@harbaum.org>
9300 L:      linux-i2c@vger.kernel.org
9301 S:      Maintained
9302 W:      http://www.harbaum.org/till/i2c_tiny_usb
9303 F:      drivers/i2c/busses/i2c-tiny-usb.c
9304
9305 I2C/SMBUS CONTROLLER DRIVERS FOR PC
9306 M:      Jean Delvare <jdelvare@suse.com>
9307 L:      linux-i2c@vger.kernel.org
9308 S:      Maintained
9309 F:      Documentation/i2c/busses/i2c-ali1535.rst
9310 F:      Documentation/i2c/busses/i2c-ali1563.rst
9311 F:      Documentation/i2c/busses/i2c-ali15x3.rst
9312 F:      Documentation/i2c/busses/i2c-amd756.rst
9313 F:      Documentation/i2c/busses/i2c-amd8111.rst
9314 F:      Documentation/i2c/busses/i2c-i801.rst
9315 F:      Documentation/i2c/busses/i2c-nforce2.rst
9316 F:      Documentation/i2c/busses/i2c-piix4.rst
9317 F:      Documentation/i2c/busses/i2c-sis5595.rst
9318 F:      Documentation/i2c/busses/i2c-sis630.rst
9319 F:      Documentation/i2c/busses/i2c-sis96x.rst
9320 F:      Documentation/i2c/busses/i2c-via.rst
9321 F:      Documentation/i2c/busses/i2c-viapro.rst
9322 F:      drivers/i2c/busses/i2c-ali1535.c
9323 F:      drivers/i2c/busses/i2c-ali1563.c
9324 F:      drivers/i2c/busses/i2c-ali15x3.c
9325 F:      drivers/i2c/busses/i2c-amd756-s4882.c
9326 F:      drivers/i2c/busses/i2c-amd756.c
9327 F:      drivers/i2c/busses/i2c-amd8111.c
9328 F:      drivers/i2c/busses/i2c-i801.c
9329 F:      drivers/i2c/busses/i2c-isch.c
9330 F:      drivers/i2c/busses/i2c-nforce2-s4985.c
9331 F:      drivers/i2c/busses/i2c-nforce2.c
9332 F:      drivers/i2c/busses/i2c-piix4.c
9333 F:      drivers/i2c/busses/i2c-sis5595.c
9334 F:      drivers/i2c/busses/i2c-sis630.c
9335 F:      drivers/i2c/busses/i2c-sis96x.c
9336 F:      drivers/i2c/busses/i2c-via.c
9337 F:      drivers/i2c/busses/i2c-viapro.c
9338
9339 I2C/SMBUS INTEL CHT WHISKEY COVE PMIC DRIVER
9340 M:      Hans de Goede <hdegoede@redhat.com>
9341 L:      linux-i2c@vger.kernel.org
9342 S:      Maintained
9343 F:      drivers/i2c/busses/i2c-cht-wc.c
9344
9345 I2C/SMBUS ISMT DRIVER
9346 M:      Seth Heasley <seth.heasley@intel.com>
9347 M:      Neil Horman <nhorman@tuxdriver.com>
9348 L:      linux-i2c@vger.kernel.org
9349 F:      Documentation/i2c/busses/i2c-ismt.rst
9350 F:      drivers/i2c/busses/i2c-ismt.c
9351
9352 I2C/SMBUS STUB DRIVER
9353 M:      Jean Delvare <jdelvare@suse.com>
9354 L:      linux-i2c@vger.kernel.org
9355 S:      Maintained
9356 F:      drivers/i2c/i2c-stub.c
9357
9358 I3C DRIVER FOR CADENCE I3C MASTER IP
9359 M:      Przemysław Gaj <pgaj@cadence.com>
9360 S:      Maintained
9361 F:      Documentation/devicetree/bindings/i3c/cdns,i3c-master.yaml
9362 F:      drivers/i3c/master/i3c-master-cdns.c
9363
9364 I3C DRIVER FOR SYNOPSYS DESIGNWARE
9365 M:      Vitor Soares <vitor.soares@synopsys.com>
9366 S:      Maintained
9367 F:      Documentation/devicetree/bindings/i3c/snps,dw-i3c-master.yaml
9368 F:      drivers/i3c/master/dw*
9369
9370 I3C SUBSYSTEM
9371 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
9372 L:      linux-i3c@lists.infradead.org (moderated for non-subscribers)
9373 S:      Maintained
9374 C:      irc://chat.freenode.net/linux-i3c
9375 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/i3c/linux.git
9376 F:      Documentation/ABI/testing/sysfs-bus-i3c
9377 F:      Documentation/devicetree/bindings/i3c/
9378 F:      Documentation/driver-api/i3c
9379 F:      drivers/i3c/
9380 F:      include/linux/i3c/
9381
9382 IA64 (Itanium) PLATFORM
9383 L:      linux-ia64@vger.kernel.org
9384 S:      Orphan
9385 F:      Documentation/ia64/
9386 F:      arch/ia64/
9387
9388 IBM Power 842 compression accelerator
9389 M:      Haren Myneni <haren@us.ibm.com>
9390 S:      Supported
9391 F:      crypto/842.c
9392 F:      drivers/crypto/nx/Kconfig
9393 F:      drivers/crypto/nx/Makefile
9394 F:      drivers/crypto/nx/nx-842*
9395 F:      include/linux/sw842.h
9396 F:      lib/842/
9397
9398 IBM Power in-Nest Crypto Acceleration
9399 M:      Breno Leitão <leitao@debian.org>
9400 M:      Nayna Jain <nayna@linux.ibm.com>
9401 M:      Paulo Flabiano Smorigo <pfsmorigo@gmail.com>
9402 L:      linux-crypto@vger.kernel.org
9403 S:      Supported
9404 F:      drivers/crypto/nx/Kconfig
9405 F:      drivers/crypto/nx/Makefile
9406 F:      drivers/crypto/nx/nx-aes*
9407 F:      drivers/crypto/nx/nx-sha*
9408 F:      drivers/crypto/nx/nx.*
9409 F:      drivers/crypto/nx/nx_csbcpb.h
9410 F:      drivers/crypto/nx/nx_debugfs.c
9411
9412 IBM Power IO DLPAR Driver for RPA-compliant PPC64 platform
9413 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
9414 L:      linux-pci@vger.kernel.org
9415 L:      linuxppc-dev@lists.ozlabs.org
9416 S:      Supported
9417 F:      drivers/pci/hotplug/rpadlpar*
9418
9419 IBM Power Linux RAID adapter
9420 M:      Brian King <brking@us.ibm.com>
9421 S:      Supported
9422 F:      drivers/scsi/ipr.*
9423
9424 IBM Power PCI Hotplug Driver for RPA-compliant PPC64 platform
9425 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
9426 L:      linux-pci@vger.kernel.org
9427 L:      linuxppc-dev@lists.ozlabs.org
9428 S:      Supported
9429 F:      drivers/pci/hotplug/rpaphp*
9430
9431 IBM Power SRIOV Virtual NIC Device Driver
9432 M:      Dany Madden <drt@linux.ibm.com>
9433 R:      Thomas Falcon <tlfalcon@linux.ibm.com>
9434 L:      netdev@vger.kernel.org
9435 S:      Supported
9436 F:      drivers/net/ethernet/ibm/ibmvnic.*
9437
9438 IBM Power Virtual Accelerator Switchboard
9439 L:      linuxppc-dev@lists.ozlabs.org
9440 S:      Supported
9441 F:      arch/powerpc/include/asm/vas.h
9442 F:      arch/powerpc/platforms/powernv/copy-paste.h
9443 F:      arch/powerpc/platforms/powernv/vas*
9444
9445 IBM Power Virtual Ethernet Device Driver
9446 M:      Cristobal Forno <cforno12@linux.ibm.com>
9447 L:      netdev@vger.kernel.org
9448 S:      Supported
9449 F:      drivers/net/ethernet/ibm/ibmveth.*
9450
9451 IBM Power Virtual FC Device Drivers
9452 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
9453 L:      linux-scsi@vger.kernel.org
9454 S:      Supported
9455 F:      drivers/scsi/ibmvscsi/ibmvfc*
9456
9457 IBM Power Virtual Management Channel Driver
9458 M:      Brad Warrum <bwarrum@linux.ibm.com>
9459 M:      Ritu Agarwal <rituagar@linux.ibm.com>
9460 S:      Supported
9461 F:      drivers/misc/ibmvmc.*
9462
9463 IBM Power Virtual SCSI Device Drivers
9464 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
9465 L:      linux-scsi@vger.kernel.org
9466 S:      Supported
9467 F:      drivers/scsi/ibmvscsi/ibmvscsi*
9468 F:      include/scsi/viosrp.h
9469
9470 IBM Power Virtual SCSI Device Target Driver
9471 M:      Michael Cyr <mikecyr@linux.ibm.com>
9472 L:      linux-scsi@vger.kernel.org
9473 L:      target-devel@vger.kernel.org
9474 S:      Supported
9475 F:      drivers/scsi/ibmvscsi_tgt/
9476
9477 IBM Power VMX Cryptographic instructions
9478 M:      Breno Leitão <leitao@debian.org>
9479 M:      Nayna Jain <nayna@linux.ibm.com>
9480 M:      Paulo Flabiano Smorigo <pfsmorigo@gmail.com>
9481 L:      linux-crypto@vger.kernel.org
9482 S:      Supported
9483 F:      drivers/crypto/vmx/Kconfig
9484 F:      drivers/crypto/vmx/Makefile
9485 F:      drivers/crypto/vmx/aes*
9486 F:      drivers/crypto/vmx/ghash*
9487 F:      drivers/crypto/vmx/ppc-xlate.pl
9488 F:      drivers/crypto/vmx/vmx.c
9489
9490 IBM ServeRAID RAID DRIVER
9491 S:      Orphan
9492 F:      drivers/scsi/ips.*
9493
9494 ICH LPC AND GPIO DRIVER
9495 M:      Peter Tyser <ptyser@xes-inc.com>
9496 S:      Maintained
9497 F:      drivers/gpio/gpio-ich.c
9498 F:      drivers/mfd/lpc_ich.c
9499
9500 ICY I2C DRIVER
9501 M:      Max Staudt <max@enpas.org>
9502 L:      linux-i2c@vger.kernel.org
9503 S:      Maintained
9504 F:      drivers/i2c/busses/i2c-icy.c
9505
9506 IDEAPAD LAPTOP EXTRAS DRIVER
9507 M:      Ike Panhc <ike.pan@canonical.com>
9508 L:      platform-driver-x86@vger.kernel.org
9509 S:      Maintained
9510 W:      http://launchpad.net/ideapad-laptop
9511 F:      drivers/platform/x86/ideapad-laptop.c
9512
9513 IDEAPAD LAPTOP SLIDEBAR DRIVER
9514 M:      Andrey Moiseev <o2g.org.ru@gmail.com>
9515 L:      linux-input@vger.kernel.org
9516 S:      Maintained
9517 W:      https://github.com/o2genum/ideapad-slidebar
9518 F:      drivers/input/misc/ideapad_slidebar.c
9519
9520 IDMAPPED MOUNTS
9521 M:      Christian Brauner <brauner@kernel.org>
9522 L:      linux-fsdevel@vger.kernel.org
9523 S:      Maintained
9524 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brauner/linux.git
9525 F:      Documentation/filesystems/idmappings.rst
9526 F:      tools/testing/selftests/mount_setattr/
9527 F:      include/linux/mnt_idmapping.h
9528
9529 IDT VersaClock 5 CLOCK DRIVER
9530 M:      Luca Ceresoli <luca@lucaceresoli.net>
9531 S:      Maintained
9532 F:      Documentation/devicetree/bindings/clock/idt,versaclock5.yaml
9533 F:      drivers/clk/clk-versaclock5.c
9534
9535 IEEE 802.15.4 SUBSYSTEM
9536 M:      Alexander Aring <alex.aring@gmail.com>
9537 M:      Stefan Schmidt <stefan@datenfreihafen.org>
9538 L:      linux-wpan@vger.kernel.org
9539 S:      Maintained
9540 W:      https://linux-wpan.org/
9541 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan.git
9542 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan-next.git
9543 F:      Documentation/networking/ieee802154.rst
9544 F:      drivers/net/ieee802154/
9545 F:      include/linux/ieee802154.h
9546 F:      include/linux/nl802154.h
9547 F:      include/net/af_ieee802154.h
9548 F:      include/net/cfg802154.h
9549 F:      include/net/ieee802154_netdev.h
9550 F:      include/net/mac802154.h
9551 F:      include/net/nl802154.h
9552 F:      net/ieee802154/
9553 F:      net/mac802154/
9554
9555 IFE PROTOCOL
9556 M:      Yotam Gigi <yotam.gi@gmail.com>
9557 M:      Jamal Hadi Salim <jhs@mojatatu.com>
9558 F:      include/net/ife.h
9559 F:      include/uapi/linux/ife.h
9560 F:      net/ife
9561
9562 IGORPLUG-USB IR RECEIVER
9563 M:      Sean Young <sean@mess.org>
9564 L:      linux-media@vger.kernel.org
9565 S:      Maintained
9566 F:      drivers/media/rc/igorplugusb.c
9567
9568 IGUANAWORKS USB IR TRANSCEIVER
9569 M:      Sean Young <sean@mess.org>
9570 L:      linux-media@vger.kernel.org
9571 S:      Maintained
9572 F:      drivers/media/rc/iguanair.c
9573
9574 IIO DIGITAL POTENTIOMETER DAC
9575 M:      Peter Rosin <peda@axentia.se>
9576 L:      linux-iio@vger.kernel.org
9577 S:      Maintained
9578 F:      Documentation/ABI/testing/sysfs-bus-iio-dac-dpot-dac
9579 F:      Documentation/devicetree/bindings/iio/dac/dpot-dac.yaml
9580 F:      drivers/iio/dac/dpot-dac.c
9581
9582 IIO ENVELOPE DETECTOR
9583 M:      Peter Rosin <peda@axentia.se>
9584 L:      linux-iio@vger.kernel.org
9585 S:      Maintained
9586 F:      Documentation/ABI/testing/sysfs-bus-iio-adc-envelope-detector
9587 F:      Documentation/devicetree/bindings/iio/adc/envelope-detector.yaml
9588 F:      drivers/iio/adc/envelope-detector.c
9589
9590 IIO MULTIPLEXER
9591 M:      Peter Rosin <peda@axentia.se>
9592 L:      linux-iio@vger.kernel.org
9593 S:      Maintained
9594 F:      Documentation/devicetree/bindings/iio/multiplexer/io-channel-mux.yaml
9595 F:      drivers/iio/multiplexer/iio-mux.c
9596
9597 IIO SCMI BASED DRIVER
9598 M:      Jyoti Bhayana <jbhayana@google.com>
9599 L:      linux-iio@vger.kernel.org
9600 S:      Maintained
9601 F:      drivers/iio/common/scmi_sensors/scmi_iio.c
9602
9603 IIO SUBSYSTEM AND DRIVERS
9604 M:      Jonathan Cameron <jic23@kernel.org>
9605 R:      Lars-Peter Clausen <lars@metafoo.de>
9606 L:      linux-iio@vger.kernel.org
9607 S:      Maintained
9608 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
9609 F:      Documentation/ABI/testing/configfs-iio*
9610 F:      Documentation/ABI/testing/sysfs-bus-iio*
9611 F:      Documentation/devicetree/bindings/iio/
9612 F:      drivers/iio/
9613 F:      drivers/staging/iio/
9614 F:      include/linux/iio/
9615 F:      tools/iio/
9616
9617 IIO UNIT CONVERTER
9618 M:      Peter Rosin <peda@axentia.se>
9619 L:      linux-iio@vger.kernel.org
9620 S:      Maintained
9621 F:      Documentation/devicetree/bindings/iio/afe/current-sense-amplifier.yaml
9622 F:      Documentation/devicetree/bindings/iio/afe/current-sense-shunt.yaml
9623 F:      Documentation/devicetree/bindings/iio/afe/voltage-divider.yaml
9624 F:      drivers/iio/afe/iio-rescale.c
9625
9626 IKANOS/ADI EAGLE ADSL USB DRIVER
9627 M:      Matthieu Castet <castet.matthieu@free.fr>
9628 M:      Stanislaw Gruszka <stf_xl@wp.pl>
9629 S:      Maintained
9630 F:      drivers/usb/atm/ueagle-atm.c
9631
9632 IMAGIS TOUCHSCREEN DRIVER
9633 M:      Markuss Broks <markuss.broks@gmail.com>
9634 S:      Maintained
9635 F:      Documentation/devicetree/bindings/input/touchscreen/imagis,ist3038c.yaml
9636 F:      drivers/input/touchscreen/imagis.c
9637
9638 IMGTEC ASCII LCD DRIVER
9639 M:      Paul Burton <paulburton@kernel.org>
9640 S:      Maintained
9641 F:      Documentation/devicetree/bindings/auxdisplay/img,ascii-lcd.yaml
9642 F:      drivers/auxdisplay/img-ascii-lcd.c
9643
9644 IMGTEC IR DECODER DRIVER
9645 S:      Orphan
9646 F:      drivers/media/rc/img-ir/
9647
9648 IMON SOUNDGRAPH USB IR RECEIVER
9649 M:      Sean Young <sean@mess.org>
9650 L:      linux-media@vger.kernel.org
9651 S:      Maintained
9652 F:      drivers/media/rc/imon.c
9653 F:      drivers/media/rc/imon_raw.c
9654
9655 IMS TWINTURBO FRAMEBUFFER DRIVER
9656 L:      linux-fbdev@vger.kernel.org
9657 S:      Orphan
9658 F:      drivers/video/fbdev/imsttfb.c
9659
9660 INA209 HARDWARE MONITOR DRIVER
9661 M:      Guenter Roeck <linux@roeck-us.net>
9662 L:      linux-hwmon@vger.kernel.org
9663 S:      Maintained
9664 F:      Documentation/devicetree/bindings/hwmon/ti,ina2xx.yaml
9665 F:      Documentation/hwmon/ina209.rst
9666 F:      drivers/hwmon/ina209.c
9667
9668 INA2XX HARDWARE MONITOR DRIVER
9669 M:      Guenter Roeck <linux@roeck-us.net>
9670 L:      linux-hwmon@vger.kernel.org
9671 S:      Maintained
9672 F:      Documentation/hwmon/ina2xx.rst
9673 F:      drivers/hwmon/ina2xx.c
9674 F:      include/linux/platform_data/ina2xx.h
9675
9676 INDUSTRY PACK SUBSYSTEM (IPACK)
9677 M:      Samuel Iglesias Gonsalvez <siglesias@igalia.com>
9678 M:      Jens Taprogge <jens.taprogge@taprogge.org>
9679 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
9680 L:      industrypack-devel@lists.sourceforge.net
9681 S:      Maintained
9682 W:      http://industrypack.sourceforge.net
9683 F:      drivers/ipack/
9684
9685 INFINEON DPS310 Driver
9686 M:      Eddie James <eajames@linux.ibm.com>
9687 L:      linux-iio@vger.kernel.org
9688 S:      Maintained
9689 F:      drivers/iio/pressure/dps310.c
9690
9691 INFINIBAND SUBSYSTEM
9692 M:      Jason Gunthorpe <jgg@nvidia.com>
9693 M:      Leon Romanovsky <leonro@nvidia.com>
9694 L:      linux-rdma@vger.kernel.org
9695 S:      Supported
9696 W:      https://github.com/linux-rdma/rdma-core
9697 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
9698 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rdma/rdma.git
9699 F:      Documentation/devicetree/bindings/infiniband/
9700 F:      Documentation/infiniband/
9701 F:      drivers/infiniband/
9702 F:      include/rdma/
9703 F:      include/trace/events/ib_mad.h
9704 F:      include/trace/events/ib_umad.h
9705 F:      include/uapi/linux/if_infiniband.h
9706 F:      include/uapi/rdma/
9707 F:      samples/bpf/ibumad_kern.c
9708 F:      samples/bpf/ibumad_user.c
9709
9710 INGENIC JZ4780 NAND DRIVER
9711 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
9712 L:      linux-mtd@lists.infradead.org
9713 L:      linux-mips@vger.kernel.org
9714 S:      Maintained
9715 F:      drivers/mtd/nand/raw/ingenic/
9716
9717 INGENIC JZ47xx SoCs
9718 M:      Paul Cercueil <paul@crapouillou.net>
9719 L:      linux-mips@vger.kernel.org
9720 S:      Maintained
9721 F:      arch/mips/boot/dts/ingenic/
9722 F:      arch/mips/generic/board-ingenic.c
9723 F:      arch/mips/include/asm/mach-ingenic/
9724 F:      arch/mips/ingenic/Kconfig
9725 F:      drivers/clk/ingenic/
9726 F:      drivers/dma/dma-jz4780.c
9727 F:      drivers/gpu/drm/ingenic/
9728 F:      drivers/i2c/busses/i2c-jz4780.c
9729 F:      drivers/iio/adc/ingenic-adc.c
9730 F:      drivers/irqchip/irq-ingenic.c
9731 F:      drivers/memory/jz4780-nemc.c
9732 F:      drivers/mmc/host/jz4740_mmc.c
9733 F:      drivers/mtd/nand/raw/ingenic/
9734 F:      drivers/pinctrl/pinctrl-ingenic.c
9735 F:      drivers/power/supply/ingenic-battery.c
9736 F:      drivers/pwm/pwm-jz4740.c
9737 F:      drivers/remoteproc/ingenic_rproc.c
9738 F:      drivers/rtc/rtc-jz4740.c
9739 F:      drivers/tty/serial/8250/8250_ingenic.c
9740 F:      drivers/usb/musb/jz4740.c
9741 F:      drivers/watchdog/jz4740_wdt.c
9742 F:      include/dt-bindings/iio/adc/ingenic,adc.h
9743 F:      include/linux/mfd/ingenic-tcu.h
9744 F:      sound/soc/codecs/jz47*
9745 F:      sound/soc/jz4740/
9746
9747 INJOINIC IP5xxx POWER BANK IC DRIVER
9748 M:      Samuel Holland <samuel@sholland.org>
9749 S:      Maintained
9750 F:      drivers/power/supply/ip5xxx_power.c
9751
9752 INOTIFY
9753 M:      Jan Kara <jack@suse.cz>
9754 R:      Amir Goldstein <amir73il@gmail.com>
9755 L:      linux-fsdevel@vger.kernel.org
9756 S:      Maintained
9757 F:      Documentation/filesystems/inotify.rst
9758 F:      fs/notify/inotify/
9759 F:      include/linux/inotify.h
9760 F:      include/uapi/linux/inotify.h
9761
9762 INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
9763 M:      Dmitry Torokhov <dmitry.torokhov@gmail.com>
9764 L:      linux-input@vger.kernel.org
9765 S:      Maintained
9766 Q:      http://patchwork.kernel.org/project/linux-input/list/
9767 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
9768 F:      Documentation/devicetree/bindings/input/
9769 F:      Documentation/devicetree/bindings/serio/
9770 F:      Documentation/input/
9771 F:      drivers/input/
9772 F:      include/linux/input.h
9773 F:      include/linux/input/
9774 F:      include/uapi/linux/input-event-codes.h
9775 F:      include/uapi/linux/input.h
9776
9777 INPUT MULTITOUCH (MT) PROTOCOL
9778 M:      Henrik Rydberg <rydberg@bitmath.org>
9779 L:      linux-input@vger.kernel.org
9780 S:      Odd fixes
9781 F:      Documentation/input/multi-touch-protocol.rst
9782 F:      drivers/input/input-mt.c
9783 K:      \b(ABS|SYN)_MT_
9784
9785 INSIDE SECURE CRYPTO DRIVER
9786 M:      Antoine Tenart <atenart@kernel.org>
9787 L:      linux-crypto@vger.kernel.org
9788 S:      Maintained
9789 F:      drivers/crypto/inside-secure/
9790
9791 INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
9792 M:      Mimi Zohar <zohar@linux.ibm.com>
9793 M:      Dmitry Kasatkin <dmitry.kasatkin@gmail.com>
9794 L:      linux-integrity@vger.kernel.org
9795 S:      Supported
9796 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/zohar/linux-integrity.git
9797 F:      security/integrity/ima/
9798 F:      security/integrity/
9799
9800 INTEL 810/815 FRAMEBUFFER DRIVER
9801 M:      Antonino Daplas <adaplas@gmail.com>
9802 L:      linux-fbdev@vger.kernel.org
9803 S:      Maintained
9804 F:      drivers/video/fbdev/i810/
9805
9806 INTEL ASoC DRIVERS
9807 M:      Cezary Rojewski <cezary.rojewski@intel.com>
9808 M:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
9809 M:      Liam Girdwood <liam.r.girdwood@linux.intel.com>
9810 M:      Jie Yang <yang.jie@linux.intel.com>
9811 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
9812 S:      Supported
9813 F:      sound/soc/intel/
9814
9815 INTEL ATOMISP2 DUMMY / POWER-MANAGEMENT DRIVER
9816 M:      Hans de Goede <hdegoede@redhat.com>
9817 L:      platform-driver-x86@vger.kernel.org
9818 S:      Maintained
9819 F:      drivers/platform/x86/intel/atomisp2/pm.c
9820
9821 INTEL ATOMISP2 LED DRIVER
9822 M:      Hans de Goede <hdegoede@redhat.com>
9823 L:      platform-driver-x86@vger.kernel.org
9824 S:      Maintained
9825 F:      drivers/platform/x86/intel/atomisp2/led.c
9826
9827 INTEL BIOS SAR INT1092 DRIVER
9828 M:      Shravan Sudhakar <s.shravan@intel.com>
9829 M:      Intel Corporation <linuxwwan@intel.com>
9830 L:      platform-driver-x86@vger.kernel.org
9831 S:      Maintained
9832 F:      drivers/platform/x86/intel/int1092/
9833
9834 INTEL BROXTON PMC DRIVER
9835 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
9836 M:      Zha Qipeng <qipeng.zha@intel.com>
9837 S:      Maintained
9838 F:      drivers/mfd/intel_pmc_bxt.c
9839 F:      include/linux/mfd/intel_pmc_bxt.h
9840
9841 INTEL C600 SERIES SAS CONTROLLER DRIVER
9842 M:      Artur Paszkiewicz <artur.paszkiewicz@intel.com>
9843 L:      linux-scsi@vger.kernel.org
9844 S:      Supported
9845 T:      git git://git.code.sf.net/p/intel-sas/isci
9846 F:      drivers/scsi/isci/
9847
9848 INTEL CPU family model numbers
9849 M:      Tony Luck <tony.luck@intel.com>
9850 M:      x86@kernel.org
9851 L:      linux-kernel@vger.kernel.org
9852 S:      Supported
9853 F:      arch/x86/include/asm/intel-family.h
9854
9855 INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
9856 M:      Jani Nikula <jani.nikula@linux.intel.com>
9857 M:      Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
9858 M:      Rodrigo Vivi <rodrigo.vivi@intel.com>
9859 M:      Tvrtko Ursulin <tvrtko.ursulin@linux.intel.com>
9860 L:      intel-gfx@lists.freedesktop.org
9861 S:      Supported
9862 W:      https://01.org/linuxgraphics/
9863 Q:      http://patchwork.freedesktop.org/project/intel-gfx/
9864 B:      https://gitlab.freedesktop.org/drm/intel/-/wikis/How-to-file-i915-bugs
9865 C:      irc://irc.oftc.net/intel-gfx
9866 T:      git git://anongit.freedesktop.org/drm-intel
9867 F:      Documentation/gpu/i915.rst
9868 F:      drivers/gpu/drm/i915/
9869 F:      include/drm/i915*
9870 F:      include/uapi/drm/i915_drm.h
9871
9872 INTEL ETHERNET DRIVERS
9873 M:      Jesse Brandeburg <jesse.brandeburg@intel.com>
9874 M:      Tony Nguyen <anthony.l.nguyen@intel.com>
9875 L:      intel-wired-lan@lists.osuosl.org (moderated for non-subscribers)
9876 S:      Supported
9877 W:      http://www.intel.com/support/feedback.htm
9878 W:      http://e1000.sourceforge.net/
9879 Q:      http://patchwork.ozlabs.org/project/intel-wired-lan/list/
9880 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tnguy/net-queue.git
9881 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tnguy/next-queue.git
9882 F:      Documentation/networking/device_drivers/ethernet/intel/
9883 F:      drivers/net/ethernet/intel/
9884 F:      drivers/net/ethernet/intel/*/
9885 F:      include/linux/avf/virtchnl.h
9886 F:      include/linux/net/intel/iidc.h
9887
9888 INTEL ETHERNET PROTOCOL DRIVER FOR RDMA
9889 M:      Mustafa Ismail <mustafa.ismail@intel.com>
9890 M:      Shiraz Saleem <shiraz.saleem@intel.com>
9891 L:      linux-rdma@vger.kernel.org
9892 S:      Supported
9893 F:      drivers/infiniband/hw/irdma/
9894 F:      include/uapi/rdma/irdma-abi.h
9895
9896 INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
9897 M:      Maik Broemme <mbroemme@libmpq.org>
9898 L:      linux-fbdev@vger.kernel.org
9899 S:      Maintained
9900 F:      Documentation/fb/intelfb.rst
9901 F:      drivers/video/fbdev/intelfb/
9902
9903 INTEL GPIO DRIVERS
9904 M:      Andy Shevchenko <andy@kernel.org>
9905 L:      linux-gpio@vger.kernel.org
9906 S:      Supported
9907 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
9908 F:      drivers/gpio/gpio-ich.c
9909 F:      drivers/gpio/gpio-merrifield.c
9910 F:      drivers/gpio/gpio-ml-ioh.c
9911 F:      drivers/gpio/gpio-pch.c
9912 F:      drivers/gpio/gpio-sch.c
9913 F:      drivers/gpio/gpio-sodaville.c
9914
9915 INTEL GVT-g DRIVERS (Intel GPU Virtualization)
9916 M:      Zhenyu Wang <zhenyuw@linux.intel.com>
9917 M:      Zhi Wang <zhi.a.wang@intel.com>
9918 L:      intel-gvt-dev@lists.freedesktop.org
9919 L:      intel-gfx@lists.freedesktop.org
9920 S:      Supported
9921 W:      https://01.org/igvt-g
9922 T:      git https://github.com/intel/gvt-linux.git
9923 F:      drivers/gpu/drm/i915/gvt/
9924
9925 INTEL HID EVENT DRIVER
9926 M:      Alex Hung <alex.hung@canonical.com>
9927 L:      platform-driver-x86@vger.kernel.org
9928 S:      Maintained
9929 F:      drivers/platform/x86/intel/hid.c
9930
9931 INTEL I/OAT DMA DRIVER
9932 M:      Dave Jiang <dave.jiang@intel.com>
9933 R:      Dan Williams <dan.j.williams@intel.com>
9934 L:      dmaengine@vger.kernel.org
9935 S:      Supported
9936 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
9937 F:      drivers/dma/ioat*
9938
9939 INTEL IADX DRIVER
9940 M:      Dave Jiang <dave.jiang@intel.com>
9941 L:      dmaengine@vger.kernel.org
9942 S:      Supported
9943 F:      drivers/dma/idxd/*
9944 F:      include/uapi/linux/idxd.h
9945
9946 INTEL IDLE DRIVER
9947 M:      Jacob Pan <jacob.jun.pan@linux.intel.com>
9948 M:      Len Brown <lenb@kernel.org>
9949 L:      linux-pm@vger.kernel.org
9950 S:      Supported
9951 B:      https://bugzilla.kernel.org
9952 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
9953 F:      drivers/idle/intel_idle.c
9954
9955 INTEL IN FIELD SCAN (IFS) DEVICE
9956 M:      Jithu Joseph <jithu.joseph@intel.com>
9957 R:      Ashok Raj <ashok.raj@intel.com>
9958 R:      Tony Luck <tony.luck@intel.com>
9959 S:      Maintained
9960 F:      drivers/platform/x86/intel/ifs
9961 F:      include/trace/events/intel_ifs.h
9962
9963 INTEL INTEGRATED SENSOR HUB DRIVER
9964 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
9965 M:      Jiri Kosina <jikos@kernel.org>
9966 L:      linux-input@vger.kernel.org
9967 S:      Maintained
9968 F:      drivers/hid/intel-ish-hid/
9969
9970 INTEL IOMMU (VT-d)
9971 M:      David Woodhouse <dwmw2@infradead.org>
9972 M:      Lu Baolu <baolu.lu@linux.intel.com>
9973 L:      iommu@lists.linux-foundation.org
9974 S:      Supported
9975 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
9976 F:      drivers/iommu/intel/
9977 F:      include/linux/intel-iommu.h
9978 F:      include/linux/intel-svm.h
9979
9980 INTEL IOP-ADMA DMA DRIVER
9981 R:      Dan Williams <dan.j.williams@intel.com>
9982 S:      Odd fixes
9983 F:      drivers/dma/iop-adma.c
9984
9985 INTEL IPU3 CSI-2 CIO2 DRIVER
9986 M:      Yong Zhi <yong.zhi@intel.com>
9987 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
9988 M:      Bingbu Cao <bingbu.cao@intel.com>
9989 M:      Dan Scally <djrscally@gmail.com>
9990 R:      Tianshu Qiu <tian.shu.qiu@intel.com>
9991 L:      linux-media@vger.kernel.org
9992 S:      Maintained
9993 T:      git git://linuxtv.org/media_tree.git
9994 F:      Documentation/userspace-api/media/v4l/pixfmt-srggb10-ipu3.rst
9995 F:      drivers/media/pci/intel/ipu3/
9996
9997 INTEL IPU3 CSI-2 IMGU DRIVER
9998 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
9999 R:      Bingbu Cao <bingbu.cao@intel.com>
10000 R:      Tianshu Qiu <tian.shu.qiu@intel.com>
10001 L:      linux-media@vger.kernel.org
10002 S:      Maintained
10003 F:      Documentation/admin-guide/media/ipu3.rst
10004 F:      Documentation/admin-guide/media/ipu3_rcb.svg
10005 F:      Documentation/userspace-api/media/v4l/pixfmt-meta-intel-ipu3.rst
10006 F:      drivers/staging/media/ipu3/
10007
10008 INTEL IXP4XX CRYPTO SUPPORT
10009 M:      Corentin Labbe <clabbe@baylibre.com>
10010 L:      linux-crypto@vger.kernel.org
10011 S:      Maintained
10012 F:      drivers/crypto/ixp4xx_crypto.c
10013
10014 INTEL ISHTP ECLITE DRIVER
10015 M:      Sumesh K Naduvalath <sumesh.k.naduvalath@intel.com>
10016 L:      platform-driver-x86@vger.kernel.org
10017 S:      Supported
10018 F:      drivers/platform/x86/intel/ishtp_eclite.c
10019
10020 INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
10021 M:      Krzysztof Halasa <khalasa@piap.pl>
10022 S:      Maintained
10023 F:      drivers/net/ethernet/xscale/ixp4xx_eth.c
10024 F:      drivers/net/wan/ixp4xx_hss.c
10025 F:      drivers/soc/ixp4xx/ixp4xx-npe.c
10026 F:      drivers/soc/ixp4xx/ixp4xx-qmgr.c
10027 F:      include/linux/soc/ixp4xx/npe.h
10028 F:      include/linux/soc/ixp4xx/qmgr.h
10029
10030 INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
10031 M:      Deepak Saxena <dsaxena@plexity.net>
10032 S:      Maintained
10033 F:      Documentation/devicetree/bindings/rng/intel,ixp46x-rng.yaml
10034 F:      drivers/char/hw_random/ixp4xx-rng.c
10035
10036 INTEL KEEM BAY DRM DRIVER
10037 M:      Anitha Chrisanthus <anitha.chrisanthus@intel.com>
10038 M:      Edmund Dea <edmund.j.dea@intel.com>
10039 S:      Maintained
10040 F:      Documentation/devicetree/bindings/display/intel,keembay-display.yaml
10041 F:      drivers/gpu/drm/kmb/
10042
10043 INTEL KEEM BAY OCS AES/SM4 CRYPTO DRIVER
10044 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
10045 S:      Maintained
10046 F:      Documentation/devicetree/bindings/crypto/intel,keembay-ocs-aes.yaml
10047 F:      drivers/crypto/keembay/Kconfig
10048 F:      drivers/crypto/keembay/Makefile
10049 F:      drivers/crypto/keembay/keembay-ocs-aes-core.c
10050 F:      drivers/crypto/keembay/ocs-aes.c
10051 F:      drivers/crypto/keembay/ocs-aes.h
10052
10053 INTEL KEEM BAY OCS ECC CRYPTO DRIVER
10054 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
10055 M:      Prabhjot Khurana <prabhjot.khurana@intel.com>
10056 M:      Mark Gross <mgross@linux.intel.com>
10057 S:      Maintained
10058 F:      Documentation/devicetree/bindings/crypto/intel,keembay-ocs-ecc.yaml
10059 F:      drivers/crypto/keembay/Kconfig
10060 F:      drivers/crypto/keembay/Makefile
10061 F:      drivers/crypto/keembay/keembay-ocs-ecc.c
10062
10063 INTEL KEEM BAY OCS HCU CRYPTO DRIVER
10064 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
10065 M:      Declan Murphy <declan.murphy@intel.com>
10066 S:      Maintained
10067 F:      Documentation/devicetree/bindings/crypto/intel,keembay-ocs-hcu.yaml
10068 F:      drivers/crypto/keembay/Kconfig
10069 F:      drivers/crypto/keembay/Makefile
10070 F:      drivers/crypto/keembay/keembay-ocs-hcu-core.c
10071 F:      drivers/crypto/keembay/ocs-hcu.c
10072 F:      drivers/crypto/keembay/ocs-hcu.h
10073
10074 INTEL THUNDER BAY EMMC PHY DRIVER
10075 M:      Nandhini Srikandan <nandhini.srikandan@intel.com>
10076 M:      Rashmi A <rashmi.a@intel.com>
10077 S:      Maintained
10078 F:      Documentation/devicetree/bindings/phy/intel,phy-thunderbay-emmc.yaml
10079 F:      drivers/phy/intel/phy-intel-thunderbay-emmc.c
10080
10081 INTEL MANAGEMENT ENGINE (mei)
10082 M:      Tomas Winkler <tomas.winkler@intel.com>
10083 L:      linux-kernel@vger.kernel.org
10084 S:      Supported
10085 F:      Documentation/driver-api/mei/*
10086 F:      drivers/misc/mei/
10087 F:      drivers/watchdog/mei_wdt.c
10088 F:      include/linux/mei_aux.h
10089 F:      include/linux/mei_cl_bus.h
10090 F:      include/uapi/linux/mei.h
10091 F:      samples/mei/*
10092
10093 INTEL MAX 10 BMC MFD DRIVER
10094 M:      Xu Yilun <yilun.xu@intel.com>
10095 R:      Tom Rix <trix@redhat.com>
10096 S:      Maintained
10097 F:      Documentation/ABI/testing/sysfs-driver-intel-m10-bmc
10098 F:      Documentation/hwmon/intel-m10-bmc-hwmon.rst
10099 F:      drivers/hwmon/intel-m10-bmc-hwmon.c
10100 F:      drivers/mfd/intel-m10-bmc.c
10101 F:      include/linux/mfd/intel-m10-bmc.h
10102
10103 INTEL MENLOW THERMAL DRIVER
10104 M:      Sujith Thomas <sujith.thomas@intel.com>
10105 L:      linux-pm@vger.kernel.org
10106 S:      Supported
10107 W:      https://01.org/linux-acpi
10108 F:      drivers/thermal/intel/intel_menlow.c
10109
10110 INTEL P-Unit IPC DRIVER
10111 M:      Zha Qipeng <qipeng.zha@intel.com>
10112 L:      platform-driver-x86@vger.kernel.org
10113 S:      Maintained
10114 F:      arch/x86/include/asm/intel_punit_ipc.h
10115 F:      drivers/platform/x86/intel/punit_ipc.c
10116
10117 INTEL PMC CORE DRIVER
10118 M:      Rajneesh Bhardwaj <irenic.rajneesh@gmail.com>
10119 M:      David E Box <david.e.box@intel.com>
10120 L:      platform-driver-x86@vger.kernel.org
10121 S:      Maintained
10122 F:      Documentation/ABI/testing/sysfs-platform-intel-pmc
10123 F:      drivers/platform/x86/intel/pmc/
10124
10125 INTEL PMIC GPIO DRIVERS
10126 M:      Andy Shevchenko <andy@kernel.org>
10127 S:      Supported
10128 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
10129 F:      drivers/gpio/gpio-*cove.c
10130
10131 INTEL PMIC MULTIFUNCTION DEVICE DRIVERS
10132 M:      Andy Shevchenko <andy@kernel.org>
10133 S:      Maintained
10134 F:      drivers/mfd/intel_soc_pmic*
10135 F:      include/linux/mfd/intel_soc_pmic*
10136
10137 INTEL PMT DRIVERS
10138 M:      David E. Box <david.e.box@linux.intel.com>
10139 S:      Supported
10140 F:      drivers/platform/x86/intel/pmt/
10141
10142 INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
10143 M:      Stanislav Yakovlev <stas.yakovlev@gmail.com>
10144 L:      linux-wireless@vger.kernel.org
10145 S:      Maintained
10146 F:      Documentation/networking/device_drivers/wifi/intel/ipw2100.rst
10147 F:      Documentation/networking/device_drivers/wifi/intel/ipw2200.rst
10148 F:      drivers/net/wireless/intel/ipw2x00/
10149
10150 INTEL PSTATE DRIVER
10151 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
10152 M:      Len Brown <lenb@kernel.org>
10153 L:      linux-pm@vger.kernel.org
10154 S:      Supported
10155 F:      drivers/cpufreq/intel_pstate.c
10156
10157 INTEL QUADRATURE ENCODER PERIPHERAL DRIVER
10158 M:      Jarkko Nikula <jarkko.nikula@linux.intel.com>
10159 L:      linux-iio@vger.kernel.org
10160 F:      drivers/counter/intel-qep.c
10161
10162 INTEL SCU DRIVERS
10163 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
10164 S:      Maintained
10165 F:      arch/x86/include/asm/intel_scu_ipc.h
10166 F:      drivers/platform/x86/intel_scu_*
10167
10168 INTEL SDSI DRIVER
10169 M:      David E. Box <david.e.box@linux.intel.com>
10170 S:      Supported
10171 F:      drivers/platform/x86/intel/sdsi.c
10172 F:      tools/arch/x86/intel_sdsi/
10173 F:      tools/testing/selftests/drivers/sdsi/
10174
10175 INTEL SKYLAKE INT3472 ACPI DEVICE DRIVER
10176 M:      Daniel Scally <djrscally@gmail.com>
10177 S:      Maintained
10178 F:      drivers/platform/x86/intel/int3472/
10179
10180 INTEL SPEED SELECT TECHNOLOGY
10181 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
10182 L:      platform-driver-x86@vger.kernel.org
10183 S:      Maintained
10184 F:      drivers/platform/x86/intel/speed_select_if/
10185 F:      include/uapi/linux/isst_if.h
10186 F:      tools/power/x86/intel-speed-select/
10187
10188 INTEL STRATIX10 FIRMWARE DRIVERS
10189 M:      Dinh Nguyen <dinguyen@kernel.org>
10190 L:      linux-kernel@vger.kernel.org
10191 S:      Maintained
10192 F:      Documentation/ABI/testing/sysfs-devices-platform-stratix10-rsu
10193 F:      Documentation/devicetree/bindings/firmware/intel,stratix10-svc.txt
10194 F:      drivers/firmware/stratix10-rsu.c
10195 F:      drivers/firmware/stratix10-svc.c
10196 F:      include/linux/firmware/intel/stratix10-smc.h
10197 F:      include/linux/firmware/intel/stratix10-svc-client.h
10198 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
10199
10200 INTEL TELEMETRY DRIVER
10201 M:      Rajneesh Bhardwaj <irenic.rajneesh@gmail.com>
10202 M:      "David E. Box" <david.e.box@linux.intel.com>
10203 L:      platform-driver-x86@vger.kernel.org
10204 S:      Maintained
10205 F:      arch/x86/include/asm/intel_telemetry.h
10206 F:      drivers/platform/x86/intel/telemetry/
10207
10208 INTEL UNCORE FREQUENCY CONTROL
10209 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
10210 L:      platform-driver-x86@vger.kernel.org
10211 S:      Maintained
10212 F:      Documentation/admin-guide/pm/intel_uncore_frequency_scaling.rst
10213 F:      drivers/platform/x86/intel/uncore-frequency/
10214
10215 INTEL VENDOR SPECIFIC EXTENDED CAPABILITIES DRIVER
10216 M:      David E. Box <david.e.box@linux.intel.com>
10217 S:      Supported
10218 F:      drivers/platform/x86/intel/vsec.*
10219
10220 INTEL VIRTUAL BUTTON DRIVER
10221 M:      AceLan Kao <acelan.kao@canonical.com>
10222 L:      platform-driver-x86@vger.kernel.org
10223 S:      Maintained
10224 F:      drivers/platform/x86/intel/vbtn.c
10225
10226 INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
10227 M:      Stanislaw Gruszka <stf_xl@wp.pl>
10228 L:      linux-wireless@vger.kernel.org
10229 S:      Supported
10230 F:      drivers/net/wireless/intel/iwlegacy/
10231
10232 INTEL WIRELESS WIFI LINK (iwlwifi)
10233 M:      Gregory Greenman <gregory.greenman@intel.com>
10234 L:      linux-wireless@vger.kernel.org
10235 S:      Supported
10236 W:      https://wireless.wiki.kernel.org/en/users/drivers/iwlwifi
10237 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
10238 F:      drivers/net/wireless/intel/iwlwifi/
10239
10240 INTEL WMI SLIM BOOTLOADER (SBL) FIRMWARE UPDATE DRIVER
10241 M:      Jithu Joseph <jithu.joseph@intel.com>
10242 R:      Maurice Ma <maurice.ma@intel.com>
10243 S:      Maintained
10244 W:      https://slimbootloader.github.io/security/firmware-update.html
10245 F:      drivers/platform/x86/intel/wmi/sbl-fw-update.c
10246
10247 INTEL WMI THUNDERBOLT FORCE POWER DRIVER
10248 L:      Dell.Client.Kernel@dell.com
10249 S:      Maintained
10250 F:      drivers/platform/x86/intel/wmi/thunderbolt.c
10251
10252 INTEL WWAN IOSM DRIVER
10253 M:      M Chetan Kumar <m.chetan.kumar@intel.com>
10254 M:      Intel Corporation <linuxwwan@intel.com>
10255 L:      netdev@vger.kernel.org
10256 S:      Maintained
10257 F:      drivers/net/wwan/iosm/
10258
10259 INTEL(R) TRACE HUB
10260 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
10261 S:      Supported
10262 F:      Documentation/trace/intel_th.rst
10263 F:      drivers/hwtracing/intel_th/
10264 F:      include/linux/intel_th.h
10265
10266 INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
10267 M:      Ning Sun <ning.sun@intel.com>
10268 L:      tboot-devel@lists.sourceforge.net
10269 S:      Supported
10270 W:      http://tboot.sourceforge.net
10271 T:      hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
10272 F:      Documentation/x86/intel_txt.rst
10273 F:      arch/x86/kernel/tboot.c
10274 F:      include/linux/tboot.h
10275
10276 INTEL SGX
10277 M:      Jarkko Sakkinen <jarkko@kernel.org>
10278 R:      Dave Hansen <dave.hansen@linux.intel.com>
10279 L:      linux-sgx@vger.kernel.org
10280 S:      Supported
10281 Q:      https://patchwork.kernel.org/project/intel-sgx/list/
10282 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/sgx
10283 F:      Documentation/x86/sgx.rst
10284 F:      arch/x86/entry/vdso/vsgx.S
10285 F:      arch/x86/include/asm/sgx.h
10286 F:      arch/x86/include/uapi/asm/sgx.h
10287 F:      arch/x86/kernel/cpu/sgx/*
10288 F:      tools/testing/selftests/sgx/*
10289 K:      \bSGX_
10290
10291 INTERCONNECT API
10292 M:      Georgi Djakov <djakov@kernel.org>
10293 L:      linux-pm@vger.kernel.org
10294 S:      Maintained
10295 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/djakov/icc.git
10296 F:      Documentation/devicetree/bindings/interconnect/
10297 F:      Documentation/driver-api/interconnect.rst
10298 F:      drivers/interconnect/
10299 F:      include/dt-bindings/interconnect/
10300 F:      include/linux/interconnect-provider.h
10301 F:      include/linux/interconnect.h
10302
10303 INTERRUPT COUNTER DRIVER
10304 M:      Oleksij Rempel <o.rempel@pengutronix.de>
10305 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
10306 L:      linux-iio@vger.kernel.org
10307 F:      Documentation/devicetree/bindings/counter/interrupt-counter.yaml
10308 F:      drivers/counter/interrupt-cnt.c
10309
10310 INTERSIL ISL7998X VIDEO DECODER DRIVER
10311 M:      Michael Tretter <m.tretter@pengutronix.de>
10312 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
10313 L:      linux-media@vger.kernel.org
10314 S:      Maintained
10315 F:      Documentation/devicetree/bindings/media/i2c/isil,isl79987.yaml
10316 F:      drivers/media/i2c/isl7998x.c
10317
10318 INVENSENSE ICM-426xx IMU DRIVER
10319 M:      Jean-Baptiste Maneyrol <jmaneyrol@invensense.com>
10320 L:      linux-iio@vger.kernel.org
10321 S:      Maintained
10322 W:      https://invensense.tdk.com/
10323 F:      Documentation/devicetree/bindings/iio/imu/invensense,icm42600.yaml
10324 F:      drivers/iio/imu/inv_icm42600/
10325
10326 INVENSENSE MPU-3050 GYROSCOPE DRIVER
10327 M:      Linus Walleij <linus.walleij@linaro.org>
10328 L:      linux-iio@vger.kernel.org
10329 S:      Maintained
10330 F:      Documentation/devicetree/bindings/iio/gyroscope/invensense,mpu3050.yaml
10331 F:      drivers/iio/gyro/mpu3050*
10332
10333 IOC3 ETHERNET DRIVER
10334 M:      Ralf Baechle <ralf@linux-mips.org>
10335 L:      linux-mips@vger.kernel.org
10336 S:      Maintained
10337 F:      drivers/net/ethernet/sgi/ioc3-eth.c
10338
10339 IOMAP FILESYSTEM LIBRARY
10340 M:      Christoph Hellwig <hch@infradead.org>
10341 M:      Darrick J. Wong <djwong@kernel.org>
10342 L:      linux-xfs@vger.kernel.org
10343 L:      linux-fsdevel@vger.kernel.org
10344 S:      Supported
10345 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
10346 F:      fs/iomap/
10347 F:      include/linux/iomap.h
10348
10349 IOMMU DRIVERS
10350 M:      Joerg Roedel <joro@8bytes.org>
10351 M:      Will Deacon <will@kernel.org>
10352 L:      iommu@lists.linux-foundation.org
10353 S:      Maintained
10354 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
10355 F:      Documentation/devicetree/bindings/iommu/
10356 F:      Documentation/userspace-api/iommu.rst
10357 F:      drivers/iommu/
10358 F:      include/linux/iommu.h
10359 F:      include/linux/iova.h
10360 F:      include/linux/of_iommu.h
10361 F:      include/uapi/linux/iommu.h
10362
10363 IOSYS-MAP HELPERS
10364 M:      Thomas Zimmermann <tzimmermann@suse.de>
10365 L:      dri-devel@lists.freedesktop.org
10366 S:      Maintained
10367 T:      git git://anongit.freedesktop.org/drm/drm-misc
10368 F:      include/linux/iosys-map.h
10369
10370 IO_URING
10371 M:      Jens Axboe <axboe@kernel.dk>
10372 R:      Pavel Begunkov <asml.silence@gmail.com>
10373 L:      io-uring@vger.kernel.org
10374 S:      Maintained
10375 T:      git git://git.kernel.dk/linux-block
10376 T:      git git://git.kernel.dk/liburing
10377 F:      fs/io-wq.c
10378 F:      fs/io-wq.h
10379 F:      fs/io_uring.c
10380 F:      include/linux/io_uring.h
10381 F:      include/uapi/linux/io_uring.h
10382 F:      tools/io_uring/
10383
10384 IPMI SUBSYSTEM
10385 M:      Corey Minyard <minyard@acm.org>
10386 L:      openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
10387 S:      Supported
10388 W:      http://openipmi.sourceforge.net/
10389 T:      git https://github.com/cminyard/linux-ipmi.git for-next
10390 F:      Documentation/driver-api/ipmi.rst
10391 F:      Documentation/devicetree/bindings/ipmi/
10392 F:      drivers/char/ipmi/
10393 F:      include/linux/ipmi*
10394 F:      include/uapi/linux/ipmi*
10395
10396 IPS SCSI RAID DRIVER
10397 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
10398 L:      linux-scsi@vger.kernel.org
10399 S:      Maintained
10400 W:      http://www.adaptec.com/
10401 F:      drivers/scsi/ips*
10402
10403 IPVS
10404 M:      Simon Horman <horms@verge.net.au>
10405 M:      Julian Anastasov <ja@ssi.bg>
10406 L:      netdev@vger.kernel.org
10407 L:      lvs-devel@vger.kernel.org
10408 S:      Maintained
10409 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs-next.git
10410 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs.git
10411 F:      Documentation/networking/ipvs-sysctl.rst
10412 F:      include/net/ip_vs.h
10413 F:      include/uapi/linux/ip_vs.h
10414 F:      net/netfilter/ipvs/
10415
10416 IPWIRELESS DRIVER
10417 M:      Jiri Kosina <jikos@kernel.org>
10418 M:      David Sterba <dsterba@suse.com>
10419 S:      Odd Fixes
10420 F:      drivers/tty/ipwireless/
10421
10422 IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
10423 M:      Marc Zyngier <maz@kernel.org>
10424 S:      Maintained
10425 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
10426 F:      Documentation/core-api/irq/irq-domain.rst
10427 F:      include/linux/irqdomain.h
10428 F:      kernel/irq/irqdomain.c
10429 F:      kernel/irq/msi.c
10430
10431 IRQ SUBSYSTEM
10432 M:      Thomas Gleixner <tglx@linutronix.de>
10433 L:      linux-kernel@vger.kernel.org
10434 S:      Maintained
10435 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
10436 F:      kernel/irq/
10437
10438 IRQCHIP DRIVERS
10439 M:      Thomas Gleixner <tglx@linutronix.de>
10440 M:      Marc Zyngier <maz@kernel.org>
10441 L:      linux-kernel@vger.kernel.org
10442 S:      Maintained
10443 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
10444 F:      Documentation/devicetree/bindings/interrupt-controller/
10445 F:      drivers/irqchip/
10446
10447 ISA
10448 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
10449 S:      Maintained
10450 F:      Documentation/driver-api/isa.rst
10451 F:      drivers/base/isa.c
10452 F:      include/linux/isa.h
10453
10454 ISA RADIO MODULE
10455 M:      Hans Verkuil <hverkuil@xs4all.nl>
10456 L:      linux-media@vger.kernel.org
10457 S:      Maintained
10458 W:      https://linuxtv.org
10459 T:      git git://linuxtv.org/media_tree.git
10460 F:      drivers/media/radio/radio-isa*
10461
10462 ISAPNP
10463 M:      Jaroslav Kysela <perex@perex.cz>
10464 S:      Maintained
10465 F:      Documentation/driver-api/isapnp.rst
10466 F:      drivers/pnp/isapnp/
10467 F:      include/linux/isapnp.h
10468
10469 ISCSI
10470 M:      Lee Duncan <lduncan@suse.com>
10471 M:      Chris Leech <cleech@redhat.com>
10472 M:      Mike Christie <michael.christie@oracle.com>
10473 L:      open-iscsi@googlegroups.com
10474 L:      linux-scsi@vger.kernel.org
10475 S:      Maintained
10476 W:      www.open-iscsi.com
10477 F:      drivers/scsi/*iscsi*
10478 F:      include/scsi/*iscsi*
10479
10480 iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
10481 M:      Peter Jones <pjones@redhat.com>
10482 M:      Konrad Rzeszutek Wilk <konrad@kernel.org>
10483 S:      Maintained
10484 F:      drivers/firmware/iscsi_ibft*
10485
10486 ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR
10487 M:      Sagi Grimberg <sagi@grimberg.me>
10488 M:      Max Gurtovoy <mgurtovoy@nvidia.com>
10489 L:      linux-rdma@vger.kernel.org
10490 S:      Supported
10491 W:      http://www.openfabrics.org
10492 W:      www.open-iscsi.org
10493 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
10494 F:      drivers/infiniband/ulp/iser/
10495
10496 ISCSI EXTENSIONS FOR RDMA (ISER) TARGET
10497 M:      Sagi Grimberg <sagi@grimberg.me>
10498 L:      linux-rdma@vger.kernel.org
10499 L:      target-devel@vger.kernel.org
10500 S:      Supported
10501 W:      http://www.linux-iscsi.org
10502 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
10503 F:      drivers/infiniband/ulp/isert
10504
10505 ISDN/CMTP OVER BLUETOOTH
10506 M:      Karsten Keil <isdn@linux-pingi.de>
10507 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
10508 L:      netdev@vger.kernel.org
10509 S:      Odd Fixes
10510 W:      http://www.isdn4linux.de
10511 F:      Documentation/isdn/
10512 F:      drivers/isdn/capi/
10513 F:      include/linux/isdn/
10514 F:      include/uapi/linux/isdn/
10515 F:      net/bluetooth/cmtp/
10516
10517 ISDN/mISDN SUBSYSTEM
10518 M:      Karsten Keil <isdn@linux-pingi.de>
10519 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
10520 L:      netdev@vger.kernel.org
10521 S:      Maintained
10522 W:      http://www.isdn4linux.de
10523 F:      drivers/isdn/Kconfig
10524 F:      drivers/isdn/Makefile
10525 F:      drivers/isdn/hardware/
10526 F:      drivers/isdn/mISDN/
10527
10528 IT87 HARDWARE MONITORING DRIVER
10529 M:      Jean Delvare <jdelvare@suse.com>
10530 L:      linux-hwmon@vger.kernel.org
10531 S:      Maintained
10532 F:      Documentation/hwmon/it87.rst
10533 F:      drivers/hwmon/it87.c
10534
10535 IT913X MEDIA DRIVER
10536 M:      Antti Palosaari <crope@iki.fi>
10537 L:      linux-media@vger.kernel.org
10538 S:      Maintained
10539 W:      https://linuxtv.org
10540 W:      http://palosaari.fi/linux/
10541 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10542 T:      git git://linuxtv.org/anttip/media_tree.git
10543 F:      drivers/media/tuners/it913x*
10544
10545 ITE IT66121 HDMI BRIDGE DRIVER
10546 M:      Phong LE <ple@baylibre.com>
10547 M:      Neil Armstrong <narmstrong@baylibre.com>
10548 S:      Maintained
10549 T:      git git://anongit.freedesktop.org/drm/drm-misc
10550 F:      Documentation/devicetree/bindings/display/bridge/ite,it66121.yaml
10551 F:      drivers/gpu/drm/bridge/ite-it66121.c
10552
10553 IVTV VIDEO4LINUX DRIVER
10554 M:      Andy Walls <awalls@md.metrocast.net>
10555 L:      linux-media@vger.kernel.org
10556 S:      Maintained
10557 W:      https://linuxtv.org
10558 T:      git git://linuxtv.org/media_tree.git
10559 F:      Documentation/admin-guide/media/ivtv*
10560 F:      drivers/media/pci/ivtv/
10561 F:      include/uapi/linux/ivtv*
10562
10563 IX2505V MEDIA DRIVER
10564 M:      Malcolm Priestley <tvboxspy@gmail.com>
10565 L:      linux-media@vger.kernel.org
10566 S:      Maintained
10567 W:      https://linuxtv.org
10568 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10569 F:      drivers/media/dvb-frontends/ix2505v*
10570
10571 JAILHOUSE HYPERVISOR INTERFACE
10572 M:      Jan Kiszka <jan.kiszka@siemens.com>
10573 L:      jailhouse-dev@googlegroups.com
10574 S:      Maintained
10575 F:      arch/x86/include/asm/jailhouse_para.h
10576 F:      arch/x86/kernel/jailhouse.c
10577
10578 JC42.4 TEMPERATURE SENSOR DRIVER
10579 M:      Guenter Roeck <linux@roeck-us.net>
10580 L:      linux-hwmon@vger.kernel.org
10581 S:      Maintained
10582 F:      Documentation/devicetree/bindings/hwmon/jedec,jc42.yaml
10583 F:      Documentation/hwmon/jc42.rst
10584 F:      drivers/hwmon/jc42.c
10585
10586 JFS FILESYSTEM
10587 M:      Dave Kleikamp <shaggy@kernel.org>
10588 L:      jfs-discussion@lists.sourceforge.net
10589 S:      Maintained
10590 W:      http://jfs.sourceforge.net/
10591 T:      git git://github.com/kleikamp/linux-shaggy.git
10592 F:      Documentation/admin-guide/jfs.rst
10593 F:      fs/jfs/
10594
10595 JME NETWORK DRIVER
10596 M:      Guo-Fu Tseng <cooldavid@cooldavid.org>
10597 L:      netdev@vger.kernel.org
10598 S:      Maintained
10599 F:      drivers/net/ethernet/jme.*
10600
10601 JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
10602 M:      David Woodhouse <dwmw2@infradead.org>
10603 M:      Richard Weinberger <richard@nod.at>
10604 L:      linux-mtd@lists.infradead.org
10605 S:      Odd Fixes
10606 W:      http://www.linux-mtd.infradead.org/doc/jffs2.html
10607 T:      git git://git.infradead.org/ubifs-2.6.git
10608 F:      fs/jffs2/
10609 F:      include/uapi/linux/jffs2.h
10610
10611 JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
10612 M:      "Theodore Ts'o" <tytso@mit.edu>
10613 M:      Jan Kara <jack@suse.com>
10614 L:      linux-ext4@vger.kernel.org
10615 S:      Maintained
10616 F:      fs/jbd2/
10617 F:      include/linux/jbd2.h
10618
10619 JPU V4L2 MEM2MEM DRIVER FOR RENESAS
10620 M:      Mikhail Ulyanov <mikhail.ulyanov@cogentembedded.com>
10621 L:      linux-media@vger.kernel.org
10622 L:      linux-renesas-soc@vger.kernel.org
10623 S:      Maintained
10624 F:      drivers/media/platform/renesas/rcar_jpu.c
10625
10626 JSM Neo PCI based serial card
10627 L:      linux-serial@vger.kernel.org
10628 S:      Orphan
10629 F:      drivers/tty/serial/jsm/
10630
10631 K10TEMP HARDWARE MONITORING DRIVER
10632 M:      Clemens Ladisch <clemens@ladisch.de>
10633 L:      linux-hwmon@vger.kernel.org
10634 S:      Maintained
10635 F:      Documentation/hwmon/k10temp.rst
10636 F:      drivers/hwmon/k10temp.c
10637
10638 K8TEMP HARDWARE MONITORING DRIVER
10639 M:      Rudolf Marek <r.marek@assembler.cz>
10640 L:      linux-hwmon@vger.kernel.org
10641 S:      Maintained
10642 F:      Documentation/hwmon/k8temp.rst
10643 F:      drivers/hwmon/k8temp.c
10644
10645 KASAN
10646 M:      Andrey Ryabinin <ryabinin.a.a@gmail.com>
10647 R:      Alexander Potapenko <glider@google.com>
10648 R:      Andrey Konovalov <andreyknvl@gmail.com>
10649 R:      Dmitry Vyukov <dvyukov@google.com>
10650 R:      Vincenzo Frascino <vincenzo.frascino@arm.com>
10651 L:      kasan-dev@googlegroups.com
10652 S:      Maintained
10653 F:      Documentation/dev-tools/kasan.rst
10654 F:      arch/*/include/asm/*kasan.h
10655 F:      arch/*/mm/kasan_init*
10656 F:      include/linux/kasan*.h
10657 F:      lib/Kconfig.kasan
10658 F:      lib/test_kasan*.c
10659 F:      mm/kasan/
10660 F:      scripts/Makefile.kasan
10661
10662 KCONFIG
10663 M:      Masahiro Yamada <masahiroy@kernel.org>
10664 L:      linux-kbuild@vger.kernel.org
10665 S:      Maintained
10666 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git kconfig
10667 F:      Documentation/kbuild/kconfig*
10668 F:      scripts/Kconfig.include
10669 F:      scripts/kconfig/
10670
10671 KCOV
10672 R:      Dmitry Vyukov <dvyukov@google.com>
10673 R:      Andrey Konovalov <andreyknvl@gmail.com>
10674 L:      kasan-dev@googlegroups.com
10675 S:      Maintained
10676 F:      Documentation/dev-tools/kcov.rst
10677 F:      include/linux/kcov.h
10678 F:      include/uapi/linux/kcov.h
10679 F:      kernel/kcov.c
10680 F:      scripts/Makefile.kcov
10681
10682 KCSAN
10683 M:      Marco Elver <elver@google.com>
10684 R:      Dmitry Vyukov <dvyukov@google.com>
10685 L:      kasan-dev@googlegroups.com
10686 S:      Maintained
10687 F:      Documentation/dev-tools/kcsan.rst
10688 F:      include/linux/kcsan*.h
10689 F:      kernel/kcsan/
10690 F:      lib/Kconfig.kcsan
10691 F:      scripts/Makefile.kcsan
10692
10693 KDUMP
10694 M:      Baoquan He <bhe@redhat.com>
10695 R:      Vivek Goyal <vgoyal@redhat.com>
10696 R:      Dave Young <dyoung@redhat.com>
10697 L:      kexec@lists.infradead.org
10698 S:      Maintained
10699 W:      http://lse.sourceforge.net/kdump/
10700 F:      Documentation/admin-guide/kdump/
10701 F:      fs/proc/vmcore.c
10702 F:      include/linux/crash_core.h
10703 F:      include/linux/crash_dump.h
10704 F:      include/uapi/linux/vmcore.h
10705 F:      kernel/crash_*.c
10706
10707 KEENE FM RADIO TRANSMITTER DRIVER
10708 M:      Hans Verkuil <hverkuil@xs4all.nl>
10709 L:      linux-media@vger.kernel.org
10710 S:      Maintained
10711 W:      https://linuxtv.org
10712 T:      git git://linuxtv.org/media_tree.git
10713 F:      drivers/media/radio/radio-keene*
10714
10715 KERNEL AUTOMOUNTER
10716 M:      Ian Kent <raven@themaw.net>
10717 L:      autofs@vger.kernel.org
10718 S:      Maintained
10719 F:      fs/autofs/
10720
10721 KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
10722 M:      Masahiro Yamada <masahiroy@kernel.org>
10723 M:      Michal Marek <michal.lkml@markovi.net>
10724 R:      Nick Desaulniers <ndesaulniers@google.com>
10725 L:      linux-kbuild@vger.kernel.org
10726 S:      Maintained
10727 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git
10728 F:      Documentation/kbuild/
10729 F:      Makefile
10730 F:      scripts/*vmlinux*
10731 F:      scripts/Kbuild*
10732 F:      scripts/Makefile*
10733 F:      scripts/basic/
10734 F:      scripts/dummy-tools/
10735 F:      scripts/mk*
10736 F:      scripts/mod/
10737 F:      scripts/package/
10738
10739 KERNEL JANITORS
10740 L:      kernel-janitors@vger.kernel.org
10741 S:      Odd Fixes
10742 W:      http://kernelnewbies.org/KernelJanitors
10743
10744 KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
10745 M:      Chuck Lever <chuck.lever@oracle.com>
10746 L:      linux-nfs@vger.kernel.org
10747 S:      Supported
10748 W:      http://nfs.sourceforge.net/
10749 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/cel/linux.git
10750 F:      fs/lockd/
10751 F:      fs/nfs_common/
10752 F:      fs/nfsd/
10753 F:      include/linux/lockd/
10754 F:      include/linux/sunrpc/
10755 F:      include/uapi/linux/nfsd/
10756 F:      include/uapi/linux/sunrpc/
10757 F:      net/sunrpc/
10758 F:      Documentation/filesystems/nfs/
10759
10760 KERNEL REGRESSIONS
10761 M:      Thorsten Leemhuis <linux@leemhuis.info>
10762 L:      regressions@lists.linux.dev
10763 S:      Supported
10764 F:      Documentation/admin-guide/reporting-regressions.rst
10765 F:      Documentation/process/handling-regressions.rst
10766
10767 KERNEL SELFTEST FRAMEWORK
10768 M:      Shuah Khan <shuah@kernel.org>
10769 M:      Shuah Khan <skhan@linuxfoundation.org>
10770 L:      linux-kselftest@vger.kernel.org
10771 S:      Maintained
10772 Q:      https://patchwork.kernel.org/project/linux-kselftest/list/
10773 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest.git
10774 F:      Documentation/dev-tools/kselftest*
10775 F:      tools/testing/selftests/
10776
10777 KERNEL SMB3 SERVER (KSMBD)
10778 M:      Namjae Jeon <linkinjeon@kernel.org>
10779 M:      Steve French <sfrench@samba.org>
10780 M:      Hyunchul Lee <hyc.lee@gmail.com>
10781 R:      Sergey Senozhatsky <senozhatsky@chromium.org>
10782 L:      linux-cifs@vger.kernel.org
10783 S:      Maintained
10784 T:      git git://git.samba.org/ksmbd.git
10785 F:      fs/ksmbd/
10786 F:      fs/smbfs_common/
10787
10788 KERNEL UNIT TESTING FRAMEWORK (KUnit)
10789 M:      Brendan Higgins <brendanhiggins@google.com>
10790 L:      linux-kselftest@vger.kernel.org
10791 L:      kunit-dev@googlegroups.com
10792 S:      Maintained
10793 W:      https://google.github.io/kunit-docs/third_party/kernel/docs/
10794 F:      Documentation/dev-tools/kunit/
10795 F:      include/kunit/
10796 F:      lib/kunit/
10797 F:      tools/testing/kunit/
10798
10799 KERNEL USERMODE HELPER
10800 M:      Luis Chamberlain <mcgrof@kernel.org>
10801 L:      linux-kernel@vger.kernel.org
10802 S:      Maintained
10803 F:      include/linux/umh.h
10804 F:      kernel/umh.c
10805
10806 KERNEL VIRTUAL MACHINE (KVM)
10807 M:      Paolo Bonzini <pbonzini@redhat.com>
10808 L:      kvm@vger.kernel.org
10809 S:      Supported
10810 W:      http://www.linux-kvm.org
10811 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
10812 F:      Documentation/virt/kvm/
10813 F:      include/asm-generic/kvm*
10814 F:      include/kvm/iodev.h
10815 F:      include/linux/kvm*
10816 F:      include/trace/events/kvm.h
10817 F:      include/uapi/asm-generic/kvm*
10818 F:      include/uapi/linux/kvm*
10819 F:      tools/kvm/
10820 F:      tools/testing/selftests/kvm/
10821 F:      virt/kvm/*
10822
10823 KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64)
10824 M:      Marc Zyngier <maz@kernel.org>
10825 R:      James Morse <james.morse@arm.com>
10826 R:      Alexandru Elisei <alexandru.elisei@arm.com>
10827 R:      Suzuki K Poulose <suzuki.poulose@arm.com>
10828 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10829 L:      kvmarm@lists.cs.columbia.edu (moderated for non-subscribers)
10830 S:      Maintained
10831 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvmarm/kvmarm.git
10832 F:      arch/arm64/include/asm/kvm*
10833 F:      arch/arm64/include/uapi/asm/kvm*
10834 F:      arch/arm64/kvm/
10835 F:      include/kvm/arm_*
10836 F:      tools/testing/selftests/kvm/*/aarch64/
10837 F:      tools/testing/selftests/kvm/aarch64/
10838
10839 KERNEL VIRTUAL MACHINE FOR MIPS (KVM/mips)
10840 M:      Huacai Chen <chenhuacai@kernel.org>
10841 M:      Aleksandar Markovic <aleksandar.qemu.devel@gmail.com>
10842 L:      linux-mips@vger.kernel.org
10843 L:      kvm@vger.kernel.org
10844 S:      Maintained
10845 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
10846 F:      arch/mips/include/asm/kvm*
10847 F:      arch/mips/include/uapi/asm/kvm*
10848 F:      arch/mips/kvm/
10849
10850 KERNEL VIRTUAL MACHINE FOR POWERPC (KVM/powerpc)
10851 L:      linuxppc-dev@lists.ozlabs.org
10852 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git topic/ppc-kvm
10853 F:      arch/powerpc/include/asm/kvm*
10854 F:      arch/powerpc/include/uapi/asm/kvm*
10855 F:      arch/powerpc/kernel/kvm*
10856 F:      arch/powerpc/kvm/
10857
10858 KERNEL VIRTUAL MACHINE FOR RISC-V (KVM/riscv)
10859 M:      Anup Patel <anup@brainfault.org>
10860 R:      Atish Patra <atishp@atishpatra.org>
10861 L:      kvm@vger.kernel.org
10862 L:      kvm-riscv@lists.infradead.org
10863 L:      linux-riscv@lists.infradead.org
10864 S:      Maintained
10865 T:      git git://github.com/kvm-riscv/linux.git
10866 F:      arch/riscv/include/asm/kvm*
10867 F:      arch/riscv/include/uapi/asm/kvm*
10868 F:      arch/riscv/kvm/
10869 F:      tools/testing/selftests/kvm/*/riscv/
10870 F:      tools/testing/selftests/kvm/riscv/
10871
10872 KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
10873 M:      Christian Borntraeger <borntraeger@linux.ibm.com>
10874 M:      Janosch Frank <frankja@linux.ibm.com>
10875 M:      Claudio Imbrenda <imbrenda@linux.ibm.com>
10876 R:      David Hildenbrand <david@redhat.com>
10877 L:      kvm@vger.kernel.org
10878 S:      Supported
10879 W:      http://www.ibm.com/developerworks/linux/linux390/
10880 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvms390/linux.git
10881 F:      Documentation/virt/kvm/s390*
10882 F:      arch/s390/include/asm/gmap.h
10883 F:      arch/s390/include/asm/kvm*
10884 F:      arch/s390/include/uapi/asm/kvm*
10885 F:      arch/s390/include/uapi/asm/uvdevice.h
10886 F:      arch/s390/kernel/uv.c
10887 F:      arch/s390/kvm/
10888 F:      arch/s390/mm/gmap.c
10889 F:      drivers/s390/char/uvdevice.c
10890 F:      tools/testing/selftests/drivers/s390x/uvdevice/
10891 F:      tools/testing/selftests/kvm/*/s390x/
10892 F:      tools/testing/selftests/kvm/s390x/
10893
10894 KERNEL VIRTUAL MACHINE FOR X86 (KVM/x86)
10895 M:      Paolo Bonzini <pbonzini@redhat.com>
10896 R:      Sean Christopherson <seanjc@google.com>
10897 R:      Vitaly Kuznetsov <vkuznets@redhat.com>
10898 R:      Wanpeng Li <wanpengli@tencent.com>
10899 R:      Jim Mattson <jmattson@google.com>
10900 R:      Joerg Roedel <joro@8bytes.org>
10901 L:      kvm@vger.kernel.org
10902 S:      Supported
10903 W:      http://www.linux-kvm.org
10904 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
10905 F:      arch/x86/include/asm/kvm*
10906 F:      arch/x86/include/asm/pvclock-abi.h
10907 F:      arch/x86/include/asm/svm.h
10908 F:      arch/x86/include/asm/vmx*.h
10909 F:      arch/x86/include/uapi/asm/kvm*
10910 F:      arch/x86/include/uapi/asm/svm.h
10911 F:      arch/x86/include/uapi/asm/vmx.h
10912 F:      arch/x86/kernel/kvm.c
10913 F:      arch/x86/kernel/kvmclock.c
10914 F:      arch/x86/kvm/
10915 F:      arch/x86/kvm/*/
10916
10917 KERNFS
10918 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10919 M:      Tejun Heo <tj@kernel.org>
10920 S:      Supported
10921 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
10922 F:      fs/kernfs/
10923 F:      include/linux/kernfs.h
10924
10925 KEXEC
10926 M:      Eric Biederman <ebiederm@xmission.com>
10927 L:      kexec@lists.infradead.org
10928 S:      Maintained
10929 W:      http://kernel.org/pub/linux/utils/kernel/kexec/
10930 F:      include/linux/kexec.h
10931 F:      include/uapi/linux/kexec.h
10932 F:      kernel/kexec*
10933
10934 KEYS-ENCRYPTED
10935 M:      Mimi Zohar <zohar@linux.ibm.com>
10936 L:      linux-integrity@vger.kernel.org
10937 L:      keyrings@vger.kernel.org
10938 S:      Supported
10939 F:      Documentation/security/keys/trusted-encrypted.rst
10940 F:      include/keys/encrypted-type.h
10941 F:      security/keys/encrypted-keys/
10942
10943 KEYS-TRUSTED
10944 M:      James Bottomley <jejb@linux.ibm.com>
10945 M:      Jarkko Sakkinen <jarkko@kernel.org>
10946 M:      Mimi Zohar <zohar@linux.ibm.com>
10947 L:      linux-integrity@vger.kernel.org
10948 L:      keyrings@vger.kernel.org
10949 S:      Supported
10950 F:      Documentation/security/keys/trusted-encrypted.rst
10951 F:      include/keys/trusted-type.h
10952 F:      include/keys/trusted_tpm.h
10953 F:      security/keys/trusted-keys/
10954
10955 KEYS-TRUSTED-TEE
10956 M:      Sumit Garg <sumit.garg@linaro.org>
10957 L:      linux-integrity@vger.kernel.org
10958 L:      keyrings@vger.kernel.org
10959 S:      Supported
10960 F:      include/keys/trusted_tee.h
10961 F:      security/keys/trusted-keys/trusted_tee.c
10962
10963 KEYS-TRUSTED-CAAM
10964 M:      Ahmad Fatoum <a.fatoum@pengutronix.de>
10965 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
10966 L:      linux-integrity@vger.kernel.org
10967 L:      keyrings@vger.kernel.org
10968 S:      Maintained
10969 F:      include/keys/trusted_caam.h
10970 F:      security/keys/trusted-keys/trusted_caam.c
10971
10972 KEYS/KEYRINGS
10973 M:      David Howells <dhowells@redhat.com>
10974 M:      Jarkko Sakkinen <jarkko@kernel.org>
10975 L:      keyrings@vger.kernel.org
10976 S:      Maintained
10977 F:      Documentation/security/keys/core.rst
10978 F:      include/keys/
10979 F:      include/linux/key-type.h
10980 F:      include/linux/key.h
10981 F:      include/linux/keyctl.h
10982 F:      include/uapi/linux/keyctl.h
10983 F:      security/keys/
10984
10985 KEYS/KEYRINGS_INTEGRITY
10986 M:      Jarkko Sakkinen <jarkko@kernel.org>
10987 M:      Mimi Zohar <zohar@linux.ibm.com>
10988 L:      linux-integrity@vger.kernel.org
10989 L:      keyrings@vger.kernel.org
10990 S:      Supported
10991 F:      security/integrity/platform_certs
10992
10993 KFENCE
10994 M:      Alexander Potapenko <glider@google.com>
10995 M:      Marco Elver <elver@google.com>
10996 R:      Dmitry Vyukov <dvyukov@google.com>
10997 L:      kasan-dev@googlegroups.com
10998 S:      Maintained
10999 F:      Documentation/dev-tools/kfence.rst
11000 F:      arch/*/include/asm/kfence.h
11001 F:      include/linux/kfence.h
11002 F:      lib/Kconfig.kfence
11003 F:      mm/kfence/
11004
11005 KFIFO
11006 M:      Stefani Seibold <stefani@seibold.net>
11007 S:      Maintained
11008 F:      include/linux/kfifo.h
11009 F:      lib/kfifo.c
11010 F:      samples/kfifo/
11011
11012 KGDB / KDB /debug_core
11013 M:      Jason Wessel <jason.wessel@windriver.com>
11014 M:      Daniel Thompson <daniel.thompson@linaro.org>
11015 R:      Douglas Anderson <dianders@chromium.org>
11016 L:      kgdb-bugreport@lists.sourceforge.net
11017 S:      Maintained
11018 W:      http://kgdb.wiki.kernel.org/
11019 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jwessel/kgdb.git
11020 F:      Documentation/dev-tools/kgdb.rst
11021 F:      drivers/misc/kgdbts.c
11022 F:      drivers/tty/serial/kgdboc.c
11023 F:      include/linux/kdb.h
11024 F:      include/linux/kgdb.h
11025 F:      kernel/debug/
11026 F:      kernel/module/kdb.c
11027
11028 KHADAS MCU MFD DRIVER
11029 M:      Neil Armstrong <narmstrong@baylibre.com>
11030 L:      linux-amlogic@lists.infradead.org
11031 S:      Maintained
11032 F:      Documentation/devicetree/bindings/mfd/khadas,mcu.yaml
11033 F:      drivers/mfd/khadas-mcu.c
11034 F:      include/linux/mfd/khadas-mcu.h
11035 F:      drivers/thermal/khadas_mcu_fan.c
11036
11037 KMEMLEAK
11038 M:      Catalin Marinas <catalin.marinas@arm.com>
11039 S:      Maintained
11040 F:      Documentation/dev-tools/kmemleak.rst
11041 F:      include/linux/kmemleak.h
11042 F:      mm/kmemleak.c
11043 F:      samples/kmemleak/kmemleak-test.c
11044
11045 KMOD KERNEL MODULE LOADER - USERMODE HELPER
11046 M:      Luis Chamberlain <mcgrof@kernel.org>
11047 L:      linux-kernel@vger.kernel.org
11048 L:      linux-modules@vger.kernel.org
11049 S:      Maintained
11050 F:      include/linux/kmod.h
11051 F:      kernel/kmod.c
11052 F:      lib/test_kmod.c
11053 F:      tools/testing/selftests/kmod/
11054
11055 KPROBES
11056 M:      Naveen N. Rao <naveen.n.rao@linux.ibm.com>
11057 M:      Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
11058 M:      "David S. Miller" <davem@davemloft.net>
11059 M:      Masami Hiramatsu <mhiramat@kernel.org>
11060 S:      Maintained
11061 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rostedt/linux-trace.git
11062 F:      Documentation/trace/kprobes.rst
11063 F:      include/asm-generic/kprobes.h
11064 F:      include/linux/kprobes.h
11065 F:      kernel/kprobes.c
11066 F:      lib/test_kprobes.c
11067 F:      samples/kprobes
11068
11069 KS0108 LCD CONTROLLER DRIVER
11070 M:      Miguel Ojeda <ojeda@kernel.org>
11071 S:      Maintained
11072 F:      Documentation/admin-guide/auxdisplay/ks0108.rst
11073 F:      drivers/auxdisplay/ks0108.c
11074 F:      include/linux/ks0108.h
11075
11076 KTD253 BACKLIGHT DRIVER
11077 M:      Linus Walleij <linus.walleij@linaro.org>
11078 S:      Maintained
11079 F:      Documentation/devicetree/bindings/leds/backlight/kinetic,ktd253.yaml
11080 F:      drivers/video/backlight/ktd253-backlight.c
11081
11082 KTEST
11083 M:      Steven Rostedt <rostedt@goodmis.org>
11084 M:      John Hawley <warthog9@eaglescrag.net>
11085 S:      Maintained
11086 F:      tools/testing/ktest
11087
11088 L3MDEV
11089 M:      David Ahern <dsahern@kernel.org>
11090 L:      netdev@vger.kernel.org
11091 S:      Maintained
11092 F:      include/net/l3mdev.h
11093 F:      net/l3mdev
11094
11095 L7 BPF FRAMEWORK
11096 M:      John Fastabend <john.fastabend@gmail.com>
11097 M:      Daniel Borkmann <daniel@iogearbox.net>
11098 M:      Jakub Sitnicki <jakub@cloudflare.com>
11099 L:      netdev@vger.kernel.org
11100 L:      bpf@vger.kernel.org
11101 S:      Maintained
11102 F:      include/linux/skmsg.h
11103 F:      net/core/skmsg.c
11104 F:      net/core/sock_map.c
11105 F:      net/ipv4/tcp_bpf.c
11106 F:      net/ipv4/udp_bpf.c
11107 F:      net/unix/unix_bpf.c
11108
11109 LANDLOCK SECURITY MODULE
11110 M:      Mickaël Salaün <mic@digikod.net>
11111 L:      linux-security-module@vger.kernel.org
11112 S:      Supported
11113 W:      https://landlock.io
11114 T:      git https://github.com/landlock-lsm/linux.git
11115 F:      Documentation/security/landlock.rst
11116 F:      Documentation/userspace-api/landlock.rst
11117 F:      include/uapi/linux/landlock.h
11118 F:      samples/landlock/
11119 F:      security/landlock/
11120 F:      tools/testing/selftests/landlock/
11121 K:      landlock
11122 K:      LANDLOCK
11123
11124 LANTIQ / INTEL Ethernet drivers
11125 M:      Hauke Mehrtens <hauke@hauke-m.de>
11126 L:      netdev@vger.kernel.org
11127 S:      Maintained
11128 F:      drivers/net/dsa/lantiq_gswip.c
11129 F:      drivers/net/dsa/lantiq_pce.h
11130 F:      drivers/net/ethernet/lantiq_xrx200.c
11131 F:      net/dsa/tag_gswip.c
11132
11133 LANTIQ MIPS ARCHITECTURE
11134 M:      John Crispin <john@phrozen.org>
11135 L:      linux-mips@vger.kernel.org
11136 S:      Maintained
11137 F:      arch/mips/lantiq
11138 F:      drivers/soc/lantiq
11139
11140 LASI 53c700 driver for PARISC
11141 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
11142 L:      linux-scsi@vger.kernel.org
11143 S:      Maintained
11144 F:      Documentation/scsi/53c700.rst
11145 F:      drivers/scsi/53c700*
11146
11147 LEAKING_ADDRESSES
11148 M:      Tobin C. Harding <me@tobin.cc>
11149 M:      Tycho Andersen <tycho@tycho.pizza>
11150 L:      linux-hardening@vger.kernel.org
11151 S:      Maintained
11152 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tobin/leaks.git
11153 F:      scripts/leaking_addresses.pl
11154
11155 LED SUBSYSTEM
11156 M:      Pavel Machek <pavel@ucw.cz>
11157 L:      linux-leds@vger.kernel.org
11158 S:      Maintained
11159 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pavel/linux-leds.git
11160 F:      Documentation/devicetree/bindings/leds/
11161 F:      drivers/leds/
11162 F:      include/linux/leds.h
11163
11164 LEGACY EEPROM DRIVER
11165 M:      Jean Delvare <jdelvare@suse.com>
11166 S:      Maintained
11167 F:      Documentation/misc-devices/eeprom.rst
11168 F:      drivers/misc/eeprom/eeprom.c
11169
11170 LEGO MINDSTORMS EV3
11171 R:      David Lechner <david@lechnology.com>
11172 S:      Maintained
11173 F:      Documentation/devicetree/bindings/power/supply/lego,ev3-battery.yaml
11174 F:      arch/arm/boot/dts/da850-lego-ev3.dts
11175 F:      drivers/power/supply/lego_ev3_battery.c
11176
11177 LEGO USB Tower driver
11178 M:      Juergen Stuber <starblue@users.sourceforge.net>
11179 L:      legousb-devel@lists.sourceforge.net
11180 S:      Maintained
11181 W:      http://legousb.sourceforge.net/
11182 F:      drivers/usb/misc/legousbtower.c
11183
11184 LETSKETCH HID TABLET DRIVER
11185 M:      Hans de Goede <hdegoede@redhat.com>
11186 L:      linux-input@vger.kernel.org
11187 S:      Maintained
11188 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
11189 F:      drivers/hid/hid-letsketch.c
11190
11191 LG LAPTOP EXTRAS
11192 M:      Matan Ziv-Av <matan@svgalib.org>
11193 L:      platform-driver-x86@vger.kernel.org
11194 S:      Maintained
11195 F:      Documentation/ABI/testing/sysfs-platform-lg-laptop
11196 F:      Documentation/admin-guide/laptops/lg-laptop.rst
11197 F:      drivers/platform/x86/lg-laptop.c
11198
11199 LG2160 MEDIA DRIVER
11200 M:      Michael Krufky <mkrufky@linuxtv.org>
11201 L:      linux-media@vger.kernel.org
11202 S:      Maintained
11203 W:      https://linuxtv.org
11204 W:      http://github.com/mkrufky
11205 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11206 T:      git git://linuxtv.org/mkrufky/tuners.git
11207 F:      drivers/media/dvb-frontends/lg2160.*
11208
11209 LGDT3305 MEDIA DRIVER
11210 M:      Michael Krufky <mkrufky@linuxtv.org>
11211 L:      linux-media@vger.kernel.org
11212 S:      Maintained
11213 W:      https://linuxtv.org
11214 W:      http://github.com/mkrufky
11215 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11216 T:      git git://linuxtv.org/mkrufky/tuners.git
11217 F:      drivers/media/dvb-frontends/lgdt3305.*
11218
11219 LIBATA PATA ARASAN COMPACT FLASH CONTROLLER
11220 M:      Viresh Kumar <vireshk@kernel.org>
11221 L:      linux-ide@vger.kernel.org
11222 S:      Maintained
11223 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
11224 F:      drivers/ata/pata_arasan_cf.c
11225 F:      include/linux/pata_arasan_cf_data.h
11226
11227 LIBATA PATA DRIVERS
11228 R:      Sergey Shtylyov <s.shtylyov@omp.ru>
11229 L:      linux-ide@vger.kernel.org
11230 F:      drivers/ata/ata_*.c
11231 F:      drivers/ata/pata_*.c
11232
11233 LIBATA PATA FARADAY FTIDE010 AND GEMINI SATA BRIDGE DRIVERS
11234 M:      Linus Walleij <linus.walleij@linaro.org>
11235 L:      linux-ide@vger.kernel.org
11236 S:      Maintained
11237 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
11238 F:      drivers/ata/pata_ftide010.c
11239 F:      drivers/ata/sata_gemini.c
11240 F:      drivers/ata/sata_gemini.h
11241
11242 LIBATA SATA AHCI PLATFORM devices support
11243 M:      Hans de Goede <hdegoede@redhat.com>
11244 M:      Jens Axboe <axboe@kernel.dk>
11245 L:      linux-ide@vger.kernel.org
11246 S:      Maintained
11247 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
11248 F:      drivers/ata/ahci_platform.c
11249 F:      drivers/ata/libahci_platform.c
11250 F:      include/linux/ahci_platform.h
11251
11252 LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER
11253 M:      Mikael Pettersson <mikpelinux@gmail.com>
11254 L:      linux-ide@vger.kernel.org
11255 S:      Maintained
11256 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
11257 F:      drivers/ata/sata_promise.*
11258
11259 LIBATA SUBSYSTEM (Serial and Parallel ATA drivers)
11260 M:      Damien Le Moal <damien.lemoal@opensource.wdc.com>
11261 L:      linux-ide@vger.kernel.org
11262 S:      Maintained
11263 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dlemoal/libata.git
11264 F:      Documentation/devicetree/bindings/ata/
11265 F:      drivers/ata/
11266 F:      include/linux/ata.h
11267 F:      include/linux/libata.h
11268
11269 LIBNVDIMM BTT: BLOCK TRANSLATION TABLE
11270 M:      Vishal Verma <vishal.l.verma@intel.com>
11271 M:      Dan Williams <dan.j.williams@intel.com>
11272 M:      Dave Jiang <dave.jiang@intel.com>
11273 L:      nvdimm@lists.linux.dev
11274 S:      Supported
11275 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
11276 P:      Documentation/nvdimm/maintainer-entry-profile.rst
11277 F:      drivers/nvdimm/btt*
11278
11279 LIBNVDIMM PMEM: PERSISTENT MEMORY DRIVER
11280 M:      Dan Williams <dan.j.williams@intel.com>
11281 M:      Vishal Verma <vishal.l.verma@intel.com>
11282 M:      Dave Jiang <dave.jiang@intel.com>
11283 L:      nvdimm@lists.linux.dev
11284 S:      Supported
11285 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
11286 P:      Documentation/nvdimm/maintainer-entry-profile.rst
11287 F:      drivers/nvdimm/pmem*
11288
11289 LIBNVDIMM: DEVICETREE BINDINGS
11290 M:      Oliver O'Halloran <oohall@gmail.com>
11291 L:      nvdimm@lists.linux.dev
11292 S:      Supported
11293 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
11294 F:      Documentation/devicetree/bindings/pmem/pmem-region.txt
11295 F:      drivers/nvdimm/of_pmem.c
11296
11297 LIBNVDIMM: NON-VOLATILE MEMORY DEVICE SUBSYSTEM
11298 M:      Dan Williams <dan.j.williams@intel.com>
11299 M:      Vishal Verma <vishal.l.verma@intel.com>
11300 M:      Dave Jiang <dave.jiang@intel.com>
11301 M:      Ira Weiny <ira.weiny@intel.com>
11302 L:      nvdimm@lists.linux.dev
11303 S:      Supported
11304 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
11305 P:      Documentation/nvdimm/maintainer-entry-profile.rst
11306 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nvdimm/nvdimm.git
11307 F:      drivers/acpi/nfit/*
11308 F:      drivers/nvdimm/*
11309 F:      include/linux/libnvdimm.h
11310 F:      include/linux/nd.h
11311 F:      include/uapi/linux/ndctl.h
11312 F:      tools/testing/nvdimm/
11313
11314 LICENSES and SPDX stuff
11315 M:      Thomas Gleixner <tglx@linutronix.de>
11316 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
11317 L:      linux-spdx@vger.kernel.org
11318 S:      Maintained
11319 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/spdx.git
11320 F:      COPYING
11321 F:      Documentation/process/license-rules.rst
11322 F:      LICENSES/
11323 F:      scripts/spdxcheck-test.sh
11324 F:      scripts/spdxcheck.py
11325
11326 LINEAR RANGES HELPERS
11327 M:      Mark Brown <broonie@kernel.org>
11328 R:      Matti Vaittinen <mazziesaccount@gmail.com>
11329 F:      lib/linear_ranges.c
11330 F:      lib/test_linear_ranges.c
11331 F:      include/linux/linear_range.h
11332
11333 LINUX FOR POWER MACINTOSH
11334 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
11335 L:      linuxppc-dev@lists.ozlabs.org
11336 S:      Odd Fixes
11337 F:      arch/powerpc/platforms/powermac/
11338 F:      drivers/macintosh/
11339
11340 LINUX FOR POWERPC (32-BIT AND 64-BIT)
11341 M:      Michael Ellerman <mpe@ellerman.id.au>
11342 R:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
11343 R:      Paul Mackerras <paulus@samba.org>
11344 L:      linuxppc-dev@lists.ozlabs.org
11345 S:      Supported
11346 W:      https://github.com/linuxppc/wiki/wiki
11347 Q:      http://patchwork.ozlabs.org/project/linuxppc-dev/list/
11348 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git
11349 F:      Documentation/ABI/stable/sysfs-firmware-opal-*
11350 F:      Documentation/devicetree/bindings/i2c/i2c-opal.txt
11351 F:      Documentation/devicetree/bindings/powerpc/
11352 F:      Documentation/devicetree/bindings/rtc/rtc-opal.txt
11353 F:      Documentation/powerpc/
11354 F:      arch/powerpc/
11355 F:      drivers/*/*/*pasemi*
11356 F:      drivers/*/*pasemi*
11357 F:      drivers/char/tpm/tpm_ibmvtpm*
11358 F:      drivers/crypto/nx/
11359 F:      drivers/crypto/vmx/
11360 F:      drivers/i2c/busses/i2c-opal.c
11361 F:      drivers/net/ethernet/ibm/ibmveth.*
11362 F:      drivers/net/ethernet/ibm/ibmvnic.*
11363 F:      drivers/pci/hotplug/pnv_php.c
11364 F:      drivers/pci/hotplug/rpa*
11365 F:      drivers/rtc/rtc-opal.c
11366 F:      drivers/scsi/ibmvscsi/
11367 F:      drivers/tty/hvc/hvc_opal.c
11368 F:      drivers/watchdog/wdrtas.c
11369 F:      tools/testing/selftests/powerpc
11370 N:      /pmac
11371 N:      powermac
11372 N:      powernv
11373 N:      [^a-z0-9]ps3
11374 N:      pseries
11375
11376 LINUX FOR POWERPC EMBEDDED MPC5XXX
11377 M:      Anatolij Gustschin <agust@denx.de>
11378 L:      linuxppc-dev@lists.ozlabs.org
11379 S:      Odd Fixes
11380 F:      arch/powerpc/platforms/512x/
11381 F:      arch/powerpc/platforms/52xx/
11382
11383 LINUX FOR POWERPC EMBEDDED PPC4XX
11384 L:      linuxppc-dev@lists.ozlabs.org
11385 S:      Orphan
11386 F:      arch/powerpc/platforms/40x/
11387 F:      arch/powerpc/platforms/44x/
11388
11389 LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
11390 M:      Scott Wood <oss@buserror.net>
11391 L:      linuxppc-dev@lists.ozlabs.org
11392 S:      Odd fixes
11393 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git
11394 F:      Documentation/devicetree/bindings/powerpc/fsl/
11395 F:      arch/powerpc/platforms/83xx/
11396 F:      arch/powerpc/platforms/85xx/
11397
11398 LINUX FOR POWERPC EMBEDDED PPC8XX
11399 M:      Christophe Leroy <christophe.leroy@csgroup.eu>
11400 L:      linuxppc-dev@lists.ozlabs.org
11401 S:      Maintained
11402 F:      arch/powerpc/platforms/8xx/
11403
11404 LINUX KERNEL DUMP TEST MODULE (LKDTM)
11405 M:      Kees Cook <keescook@chromium.org>
11406 S:      Maintained
11407 F:      drivers/misc/lkdtm/*
11408 F:      tools/testing/selftests/lkdtm/*
11409
11410 LINUX KERNEL MEMORY CONSISTENCY MODEL (LKMM)
11411 M:      Alan Stern <stern@rowland.harvard.edu>
11412 M:      Andrea Parri <parri.andrea@gmail.com>
11413 M:      Will Deacon <will@kernel.org>
11414 M:      Peter Zijlstra <peterz@infradead.org>
11415 M:      Boqun Feng <boqun.feng@gmail.com>
11416 M:      Nicholas Piggin <npiggin@gmail.com>
11417 M:      David Howells <dhowells@redhat.com>
11418 M:      Jade Alglave <j.alglave@ucl.ac.uk>
11419 M:      Luc Maranget <luc.maranget@inria.fr>
11420 M:      "Paul E. McKenney" <paulmck@kernel.org>
11421 R:      Akira Yokosawa <akiyks@gmail.com>
11422 R:      Daniel Lustig <dlustig@nvidia.com>
11423 R:      Joel Fernandes <joel@joelfernandes.org>
11424 L:      linux-kernel@vger.kernel.org
11425 L:      linux-arch@vger.kernel.org
11426 S:      Supported
11427 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
11428 F:      Documentation/atomic_bitops.txt
11429 F:      Documentation/atomic_t.txt
11430 F:      Documentation/core-api/refcount-vs-atomic.rst
11431 F:      Documentation/litmus-tests/
11432 F:      Documentation/memory-barriers.txt
11433 F:      tools/memory-model/
11434
11435 LIS3LV02D ACCELEROMETER DRIVER
11436 M:      Eric Piel <eric.piel@tremplin-utc.net>
11437 S:      Maintained
11438 F:      Documentation/misc-devices/lis3lv02d.rst
11439 F:      drivers/misc/lis3lv02d/
11440 F:      drivers/platform/x86/hp_accel.c
11441
11442 LIST KUNIT TEST
11443 M:      David Gow <davidgow@google.com>
11444 L:      linux-kselftest@vger.kernel.org
11445 L:      kunit-dev@googlegroups.com
11446 S:      Maintained
11447 F:      lib/list-test.c
11448
11449 LITEX PLATFORM
11450 M:      Karol Gugala <kgugala@antmicro.com>
11451 M:      Mateusz Holenko <mholenko@antmicro.com>
11452 M:      Gabriel Somlo <gsomlo@gmail.com>
11453 M:      Joel Stanley <joel@jms.id.au>
11454 S:      Maintained
11455 F:      Documentation/devicetree/bindings/*/litex,*.yaml
11456 F:      arch/openrisc/boot/dts/or1klitex.dts
11457 F:      include/linux/litex.h
11458 F:      drivers/tty/serial/liteuart.c
11459 F:      drivers/soc/litex/*
11460 F:      drivers/net/ethernet/litex/*
11461 F:      drivers/mmc/host/litex_mmc.c
11462 N:      litex
11463
11464 LIVE PATCHING
11465 M:      Josh Poimboeuf <jpoimboe@kernel.org>
11466 M:      Jiri Kosina <jikos@kernel.org>
11467 M:      Miroslav Benes <mbenes@suse.cz>
11468 M:      Petr Mladek <pmladek@suse.com>
11469 R:      Joe Lawrence <joe.lawrence@redhat.com>
11470 L:      live-patching@vger.kernel.org
11471 S:      Maintained
11472 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/livepatching/livepatching.git
11473 F:      Documentation/ABI/testing/sysfs-kernel-livepatch
11474 F:      Documentation/livepatch/
11475 F:      arch/powerpc/include/asm/livepatch.h
11476 F:      include/linux/livepatch.h
11477 F:      kernel/livepatch/
11478 F:      kernel/module/livepatch.c
11479 F:      lib/livepatch/
11480 F:      samples/livepatch/
11481 F:      tools/testing/selftests/livepatch/
11482
11483 LLC (802.2)
11484 L:      netdev@vger.kernel.org
11485 S:      Odd fixes
11486 F:      include/linux/llc.h
11487 F:      include/net/llc*
11488 F:      include/uapi/linux/llc.h
11489 F:      net/llc/
11490
11491 LM73 HARDWARE MONITOR DRIVER
11492 M:      Guillaume Ligneul <guillaume.ligneul@gmail.com>
11493 L:      linux-hwmon@vger.kernel.org
11494 S:      Maintained
11495 F:      drivers/hwmon/lm73.c
11496
11497 LM78 HARDWARE MONITOR DRIVER
11498 M:      Jean Delvare <jdelvare@suse.com>
11499 L:      linux-hwmon@vger.kernel.org
11500 S:      Maintained
11501 F:      Documentation/hwmon/lm78.rst
11502 F:      drivers/hwmon/lm78.c
11503
11504 LM83 HARDWARE MONITOR DRIVER
11505 M:      Jean Delvare <jdelvare@suse.com>
11506 L:      linux-hwmon@vger.kernel.org
11507 S:      Maintained
11508 F:      Documentation/hwmon/lm83.rst
11509 F:      drivers/hwmon/lm83.c
11510
11511 LM90 HARDWARE MONITOR DRIVER
11512 M:      Jean Delvare <jdelvare@suse.com>
11513 L:      linux-hwmon@vger.kernel.org
11514 S:      Maintained
11515 F:      Documentation/devicetree/bindings/hwmon/national,lm90.yaml
11516 F:      Documentation/hwmon/lm90.rst
11517 F:      drivers/hwmon/lm90.c
11518 F:      include/dt-bindings/thermal/lm90.h
11519
11520 LM95234 HARDWARE MONITOR DRIVER
11521 M:      Guenter Roeck <linux@roeck-us.net>
11522 L:      linux-hwmon@vger.kernel.org
11523 S:      Maintained
11524 F:      Documentation/hwmon/lm95234.rst
11525 F:      drivers/hwmon/lm95234.c
11526
11527 LME2510 MEDIA DRIVER
11528 M:      Malcolm Priestley <tvboxspy@gmail.com>
11529 L:      linux-media@vger.kernel.org
11530 S:      Maintained
11531 W:      https://linuxtv.org
11532 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11533 F:      drivers/media/usb/dvb-usb-v2/lmedm04*
11534
11535 LOADPIN SECURITY MODULE
11536 M:      Kees Cook <keescook@chromium.org>
11537 S:      Supported
11538 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git lsm/loadpin
11539 F:      Documentation/admin-guide/LSM/LoadPin.rst
11540 F:      security/loadpin/
11541
11542 LOCKING PRIMITIVES
11543 M:      Peter Zijlstra <peterz@infradead.org>
11544 M:      Ingo Molnar <mingo@redhat.com>
11545 M:      Will Deacon <will@kernel.org>
11546 R:      Waiman Long <longman@redhat.com>
11547 R:      Boqun Feng <boqun.feng@gmail.com> (LOCKDEP)
11548 L:      linux-kernel@vger.kernel.org
11549 S:      Maintained
11550 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
11551 F:      Documentation/locking/
11552 F:      arch/*/include/asm/spinlock*.h
11553 F:      include/linux/lockdep.h
11554 F:      include/linux/mutex*.h
11555 F:      include/linux/rwlock*.h
11556 F:      include/linux/rwsem*.h
11557 F:      include/linux/seqlock.h
11558 F:      include/linux/spinlock*.h
11559 F:      kernel/locking/
11560 F:      lib/locking*.[ch]
11561 X:      kernel/locking/locktorture.c
11562
11563 LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
11564 M:      "Richard Russon (FlatCap)" <ldm@flatcap.org>
11565 L:      linux-ntfs-dev@lists.sourceforge.net
11566 S:      Maintained
11567 W:      http://www.linux-ntfs.org/content/view/19/37/
11568 F:      Documentation/admin-guide/ldm.rst
11569 F:      block/partitions/ldm.*
11570
11571 LOGITECH HID GAMING KEYBOARDS
11572 M:      Hans de Goede <hdegoede@redhat.com>
11573 L:      linux-input@vger.kernel.org
11574 S:      Maintained
11575 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
11576 F:      drivers/hid/hid-lg-g15.c
11577
11578 LONTIUM LT8912B MIPI TO HDMI BRIDGE
11579 M:      Adrien Grassein <adrien.grassein@gmail.com>
11580 S:      Maintained
11581 F:      Documentation/devicetree/bindings/display/bridge/lontium,lt8912b.yaml
11582 F:      drivers/gpu/drm/bridge/lontium-lt8912b.c
11583
11584 LOONGARCH
11585 M:      Huacai Chen <chenhuacai@kernel.org>
11586 R:      WANG Xuerui <kernel@xen0n.name>
11587 S:      Maintained
11588 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chenhuacai/linux-loongson.git
11589 F:      arch/loongarch/
11590 F:      drivers/*/*loongarch*
11591 F:      Documentation/loongarch/
11592 F:      Documentation/translations/zh_CN/loongarch/
11593
11594 LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
11595 M:      Sathya Prakash <sathya.prakash@broadcom.com>
11596 M:      Sreekanth Reddy <sreekanth.reddy@broadcom.com>
11597 M:      Suganath Prabu Subramani <suganath-prabu.subramani@broadcom.com>
11598 L:      MPT-FusionLinux.pdl@broadcom.com
11599 L:      linux-scsi@vger.kernel.org
11600 S:      Supported
11601 W:      http://www.avagotech.com/support/
11602 F:      drivers/message/fusion/
11603 F:      drivers/scsi/mpt3sas/
11604
11605 LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
11606 M:      Matthew Wilcox <willy@infradead.org>
11607 L:      linux-scsi@vger.kernel.org
11608 S:      Maintained
11609 F:      drivers/scsi/sym53c8xx_2/
11610
11611 LTC1660 DAC DRIVER
11612 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
11613 L:      linux-iio@vger.kernel.org
11614 S:      Maintained
11615 F:      Documentation/devicetree/bindings/iio/dac/lltc,ltc1660.yaml
11616 F:      drivers/iio/dac/ltc1660.c
11617
11618 LTC2688 IIO DAC DRIVER
11619 M:      Nuno Sá <nuno.sa@analog.com>
11620 L:      linux-iio@vger.kernel.org
11621 S:      Supported
11622 W:      http://ez.analog.com/community/linux-device-drivers
11623 F:      Documentation/ABI/testing/sysfs-bus-iio-dac-ltc2688
11624 F:      Documentation/devicetree/bindings/iio/dac/adi,ltc2688.yaml
11625 F:      drivers/iio/dac/ltc2688.c
11626
11627 LTC2947 HARDWARE MONITOR DRIVER
11628 M:      Nuno Sá <nuno.sa@analog.com>
11629 L:      linux-hwmon@vger.kernel.org
11630 S:      Supported
11631 W:      https://ez.analog.com/linux-software-drivers
11632 F:      Documentation/devicetree/bindings/hwmon/adi,ltc2947.yaml
11633 F:      drivers/hwmon/ltc2947-core.c
11634 F:      drivers/hwmon/ltc2947-i2c.c
11635 F:      drivers/hwmon/ltc2947-spi.c
11636 F:      drivers/hwmon/ltc2947.h
11637
11638 LTC2983 IIO TEMPERATURE DRIVER
11639 M:      Nuno Sá <nuno.sa@analog.com>
11640 L:      linux-iio@vger.kernel.org
11641 S:      Supported
11642 W:      https://ez.analog.com/linux-software-drivers
11643 F:      Documentation/devicetree/bindings/iio/temperature/adi,ltc2983.yaml
11644 F:      drivers/iio/temperature/ltc2983.c
11645
11646 LTC4261 HARDWARE MONITOR DRIVER
11647 M:      Guenter Roeck <linux@roeck-us.net>
11648 L:      linux-hwmon@vger.kernel.org
11649 S:      Maintained
11650 F:      Documentation/hwmon/ltc4261.rst
11651 F:      drivers/hwmon/ltc4261.c
11652
11653 LTC4306 I2C MULTIPLEXER DRIVER
11654 M:      Michael Hennerich <michael.hennerich@analog.com>
11655 L:      linux-i2c@vger.kernel.org
11656 S:      Supported
11657 W:      https://ez.analog.com/linux-software-drivers
11658 F:      Documentation/devicetree/bindings/i2c/i2c-mux-ltc4306.txt
11659 F:      drivers/i2c/muxes/i2c-mux-ltc4306.c
11660
11661 LTP (Linux Test Project)
11662 M:      Mike Frysinger <vapier@gentoo.org>
11663 M:      Cyril Hrubis <chrubis@suse.cz>
11664 M:      Wanlong Gao <wanlong.gao@gmail.com>
11665 M:      Jan Stancek <jstancek@redhat.com>
11666 M:      Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com>
11667 M:      Alexey Kodanev <alexey.kodanev@oracle.com>
11668 L:      ltp@lists.linux.it (subscribers-only)
11669 S:      Maintained
11670 W:      http://linux-test-project.github.io/
11671 T:      git git://github.com/linux-test-project/ltp.git
11672
11673 LYNX 28G SERDES PHY DRIVER
11674 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
11675 L:      netdev@vger.kernel.org
11676 S:      Supported
11677 F:      Documentation/devicetree/bindings/phy/fsl,lynx-28g.yaml
11678 F:      drivers/phy/freescale/phy-fsl-lynx-28g.c
11679
11680 LYNX PCS MODULE
11681 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
11682 L:      netdev@vger.kernel.org
11683 S:      Supported
11684 F:      drivers/net/pcs/pcs-lynx.c
11685 F:      include/linux/pcs-lynx.h
11686
11687 M68K ARCHITECTURE
11688 M:      Geert Uytterhoeven <geert@linux-m68k.org>
11689 L:      linux-m68k@lists.linux-m68k.org
11690 S:      Maintained
11691 W:      http://www.linux-m68k.org/
11692 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
11693 F:      arch/m68k/
11694 F:      drivers/zorro/
11695
11696 M68K ON APPLE MACINTOSH
11697 M:      Joshua Thompson <funaho@jurai.org>
11698 L:      linux-m68k@lists.linux-m68k.org
11699 S:      Maintained
11700 W:      http://www.mac.linux-m68k.org/
11701 F:      arch/m68k/mac/
11702 F:      drivers/macintosh/adb-iop.c
11703 F:      drivers/macintosh/via-macii.c
11704
11705 M68K ON HP9000/300
11706 M:      Philip Blundell <philb@gnu.org>
11707 S:      Maintained
11708 W:      http://www.tazenda.demon.co.uk/phil/linux-hp
11709 F:      arch/m68k/hp300/
11710
11711 M88DS3103 MEDIA DRIVER
11712 M:      Antti Palosaari <crope@iki.fi>
11713 L:      linux-media@vger.kernel.org
11714 S:      Maintained
11715 W:      https://linuxtv.org
11716 W:      http://palosaari.fi/linux/
11717 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11718 T:      git git://linuxtv.org/anttip/media_tree.git
11719 F:      drivers/media/dvb-frontends/m88ds3103*
11720
11721 M88RS2000 MEDIA DRIVER
11722 M:      Malcolm Priestley <tvboxspy@gmail.com>
11723 L:      linux-media@vger.kernel.org
11724 S:      Maintained
11725 W:      https://linuxtv.org
11726 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11727 F:      drivers/media/dvb-frontends/m88rs2000*
11728
11729 MA901 MASTERKIT USB FM RADIO DRIVER
11730 M:      Alexey Klimov <klimov.linux@gmail.com>
11731 L:      linux-media@vger.kernel.org
11732 S:      Maintained
11733 T:      git git://linuxtv.org/media_tree.git
11734 F:      drivers/media/radio/radio-ma901.c
11735
11736 MAC80211
11737 M:      Johannes Berg <johannes@sipsolutions.net>
11738 L:      linux-wireless@vger.kernel.org
11739 S:      Maintained
11740 W:      https://wireless.wiki.kernel.org/
11741 Q:      https://patchwork.kernel.org/project/linux-wireless/list/
11742 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless.git
11743 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless-next.git
11744 F:      Documentation/networking/mac80211-injection.rst
11745 F:      Documentation/networking/mac80211_hwsim/mac80211_hwsim.rst
11746 F:      drivers/net/wireless/mac80211_hwsim.[ch]
11747 F:      include/net/mac80211.h
11748 F:      net/mac80211/
11749
11750 MAILBOX API
11751 M:      Jassi Brar <jassisinghbrar@gmail.com>
11752 L:      linux-kernel@vger.kernel.org
11753 S:      Maintained
11754 F:      drivers/mailbox/
11755 F:      include/linux/mailbox_client.h
11756 F:      include/linux/mailbox_controller.h
11757 F:      include/dt-bindings/mailbox/
11758 F:      Documentation/devicetree/bindings/mailbox/
11759
11760 MAILBOX ARM MHUv2
11761 M:      Viresh Kumar <viresh.kumar@linaro.org>
11762 M:      Tushar Khandelwal <Tushar.Khandelwal@arm.com>
11763 L:      linux-kernel@vger.kernel.org
11764 S:      Maintained
11765 F:      drivers/mailbox/arm_mhuv2.c
11766 F:      include/linux/mailbox/arm_mhuv2_message.h
11767 F:      Documentation/devicetree/bindings/mailbox/arm,mhuv2.yaml
11768
11769 MANAGEMENT COMPONENT TRANSPORT PROTOCOL (MCTP)
11770 M:      Jeremy Kerr <jk@codeconstruct.com.au>
11771 M:      Matt Johnston <matt@codeconstruct.com.au>
11772 L:      netdev@vger.kernel.org
11773 S:      Maintained
11774 F:      Documentation/networking/mctp.rst
11775 F:      drivers/net/mctp/
11776 F:      include/net/mctp.h
11777 F:      include/net/mctpdevice.h
11778 F:      include/net/netns/mctp.h
11779 F:      net/mctp/
11780
11781 MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
11782 M:      Michael Kerrisk <mtk.manpages@gmail.com>
11783 L:      linux-man@vger.kernel.org
11784 S:      Maintained
11785 W:      http://www.kernel.org/doc/man-pages
11786
11787 MARDUK (CREATOR CI40) DEVICE TREE SUPPORT
11788 M:      Rahul Bedarkar <rahulbedarkar89@gmail.com>
11789 L:      linux-mips@vger.kernel.org
11790 S:      Maintained
11791 F:      arch/mips/boot/dts/img/pistachio*
11792
11793 MARVELL 88E6XXX ETHERNET SWITCH FABRIC DRIVER
11794 M:      Andrew Lunn <andrew@lunn.ch>
11795 M:      Vivien Didelot <vivien.didelot@gmail.com>
11796 L:      netdev@vger.kernel.org
11797 S:      Maintained
11798 F:      Documentation/devicetree/bindings/net/dsa/marvell.txt
11799 F:      Documentation/networking/devlink/mv88e6xxx.rst
11800 F:      drivers/net/dsa/mv88e6xxx/
11801 F:      include/linux/dsa/mv88e6xxx.h
11802 F:      include/linux/platform_data/mv88e6xxx.h
11803
11804 MARVELL ARMADA 3700 PHY DRIVERS
11805 M:      Miquel Raynal <miquel.raynal@bootlin.com>
11806 S:      Maintained
11807 F:      Documentation/devicetree/bindings/phy/phy-mvebu-comphy.txt
11808 F:      Documentation/devicetree/bindings/phy/marvell,armada-3700-utmi-phy.yaml
11809 F:      drivers/phy/marvell/phy-mvebu-a3700-comphy.c
11810 F:      drivers/phy/marvell/phy-mvebu-a3700-utmi.c
11811
11812 MARVELL ARMADA 3700 SERIAL DRIVER
11813 M:      Pali Rohár <pali@kernel.org>
11814 S:      Maintained
11815 F:      Documentation/devicetree/bindings/clock/marvell,armada-3700-uart-clock.yaml
11816 F:      Documentation/devicetree/bindings/serial/mvebu-uart.txt
11817 F:      drivers/tty/serial/mvebu-uart.c
11818
11819 MARVELL ARMADA DRM SUPPORT
11820 M:      Russell King <linux@armlinux.org.uk>
11821 S:      Maintained
11822 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-devel
11823 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-fixes
11824 F:      Documentation/devicetree/bindings/display/armada/
11825 F:      drivers/gpu/drm/armada/
11826 F:      include/uapi/drm/armada_drm.h
11827
11828 MARVELL CRYPTO DRIVER
11829 M:      Boris Brezillon <bbrezillon@kernel.org>
11830 M:      Arnaud Ebalard <arno@natisbad.org>
11831 M:      Srujana Challa <schalla@marvell.com>
11832 L:      linux-crypto@vger.kernel.org
11833 S:      Maintained
11834 F:      drivers/crypto/marvell/
11835 F:      include/linux/soc/marvell/octeontx2/
11836
11837 MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
11838 M:      Mirko Lindner <mlindner@marvell.com>
11839 M:      Stephen Hemminger <stephen@networkplumber.org>
11840 L:      netdev@vger.kernel.org
11841 S:      Maintained
11842 F:      drivers/net/ethernet/marvell/sk*
11843
11844 MARVELL LIBERTAS WIRELESS DRIVER
11845 L:      libertas-dev@lists.infradead.org
11846 S:      Orphan
11847 F:      drivers/net/wireless/marvell/libertas/
11848
11849 MARVELL MACCHIATOBIN SUPPORT
11850 M:      Russell King <linux@armlinux.org.uk>
11851 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11852 S:      Maintained
11853 F:      arch/arm64/boot/dts/marvell/armada-8040-mcbin.dts
11854
11855 MARVELL MV643XX ETHERNET DRIVER
11856 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
11857 L:      netdev@vger.kernel.org
11858 S:      Maintained
11859 F:      drivers/net/ethernet/marvell/mv643xx_eth.*
11860 F:      include/linux/mv643xx.h
11861
11862 MARVELL MV88X3310 PHY DRIVER
11863 M:      Russell King <linux@armlinux.org.uk>
11864 M:      Marek Behún <kabel@kernel.org>
11865 L:      netdev@vger.kernel.org
11866 S:      Maintained
11867 F:      drivers/net/phy/marvell10g.c
11868
11869 MARVELL MVEBU THERMAL DRIVER
11870 M:      Miquel Raynal <miquel.raynal@bootlin.com>
11871 S:      Maintained
11872 F:      drivers/thermal/armada_thermal.c
11873
11874 MARVELL MVNETA ETHERNET DRIVER
11875 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
11876 L:      netdev@vger.kernel.org
11877 S:      Maintained
11878 F:      drivers/net/ethernet/marvell/mvneta.*
11879
11880 MARVELL MVPP2 ETHERNET DRIVER
11881 M:      Marcin Wojtas <mw@semihalf.com>
11882 M:      Russell King <linux@armlinux.org.uk>
11883 L:      netdev@vger.kernel.org
11884 S:      Maintained
11885 F:      Documentation/devicetree/bindings/net/marvell-pp2.txt
11886 F:      drivers/net/ethernet/marvell/mvpp2/
11887
11888 MARVELL MWIFIEX WIRELESS DRIVER
11889 M:      Amitkumar Karwar <amitkarwar@gmail.com>
11890 M:      Ganapathi Bhat <ganapathi017@gmail.com>
11891 M:      Sharvari Harisangam <sharvari.harisangam@nxp.com>
11892 M:      Xinming Hu <huxinming820@gmail.com>
11893 L:      linux-wireless@vger.kernel.org
11894 S:      Maintained
11895 F:      drivers/net/wireless/marvell/mwifiex/
11896
11897 MARVELL MWL8K WIRELESS DRIVER
11898 M:      Lennert Buytenhek <buytenh@wantstofly.org>
11899 L:      linux-wireless@vger.kernel.org
11900 S:      Odd Fixes
11901 F:      drivers/net/wireless/marvell/mwl8k.c
11902
11903 MARVELL NAND CONTROLLER DRIVER
11904 M:      Miquel Raynal <miquel.raynal@bootlin.com>
11905 L:      linux-mtd@lists.infradead.org
11906 S:      Maintained
11907 F:      Documentation/devicetree/bindings/mtd/marvell-nand.txt
11908 F:      drivers/mtd/nand/raw/marvell_nand.c
11909
11910 MARVELL OCTEONTX2 PHYSICAL FUNCTION DRIVER
11911 M:      Sunil Goutham <sgoutham@marvell.com>
11912 M:      Geetha sowjanya <gakula@marvell.com>
11913 M:      Subbaraya Sundeep <sbhatta@marvell.com>
11914 M:      hariprasad <hkelam@marvell.com>
11915 L:      netdev@vger.kernel.org
11916 S:      Supported
11917 F:      drivers/net/ethernet/marvell/octeontx2/nic/
11918 F:      include/linux/soc/marvell/octeontx2/
11919
11920 MARVELL OCTEONTX2 RVU ADMIN FUNCTION DRIVER
11921 M:      Sunil Goutham <sgoutham@marvell.com>
11922 M:      Linu Cherian <lcherian@marvell.com>
11923 M:      Geetha sowjanya <gakula@marvell.com>
11924 M:      Jerin Jacob <jerinj@marvell.com>
11925 M:      hariprasad <hkelam@marvell.com>
11926 M:      Subbaraya Sundeep <sbhatta@marvell.com>
11927 L:      netdev@vger.kernel.org
11928 S:      Supported
11929 F:      Documentation/networking/device_drivers/ethernet/marvell/octeontx2.rst
11930 F:      drivers/net/ethernet/marvell/octeontx2/af/
11931
11932 MARVELL PRESTERA ETHERNET SWITCH DRIVER
11933 M:      Taras Chornyi <tchornyi@marvell.com>
11934 S:      Supported
11935 W:      https://github.com/Marvell-switching/switchdev-prestera
11936 F:      drivers/net/ethernet/marvell/prestera/
11937
11938 MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
11939 M:      Nicolas Pitre <nico@fluxnic.net>
11940 S:      Odd Fixes
11941 F:      drivers/mmc/host/mvsdio.*
11942
11943 MARVELL USB MDIO CONTROLLER DRIVER
11944 M:      Tobias Waldekranz <tobias@waldekranz.com>
11945 L:      netdev@vger.kernel.org
11946 S:      Maintained
11947 F:      Documentation/devicetree/bindings/net/marvell,mvusb.yaml
11948 F:      drivers/net/mdio/mdio-mvusb.c
11949
11950 MARVELL XENON MMC/SD/SDIO HOST CONTROLLER DRIVER
11951 M:      Hu Ziji <huziji@marvell.com>
11952 L:      linux-mmc@vger.kernel.org
11953 S:      Supported
11954 F:      Documentation/devicetree/bindings/mmc/marvell,xenon-sdhci.yaml
11955 F:      drivers/mmc/host/sdhci-xenon*
11956
11957 MARVELL OCTEON ENDPOINT DRIVER
11958 M:      Veerasenareddy Burru <vburru@marvell.com>
11959 M:      Abhijit Ayarekar <aayarekar@marvell.com>
11960 L:      netdev@vger.kernel.org
11961 S:      Supported
11962 F:      drivers/net/ethernet/marvell/octeon_ep
11963
11964 MATROX FRAMEBUFFER DRIVER
11965 L:      linux-fbdev@vger.kernel.org
11966 S:      Orphan
11967 F:      drivers/video/fbdev/matrox/matroxfb_*
11968 F:      include/uapi/linux/matroxfb.h
11969
11970 MAX15301 DRIVER
11971 M:      Daniel Nilsson <daniel.nilsson@flex.com>
11972 L:      linux-hwmon@vger.kernel.org
11973 S:      Maintained
11974 F:      Documentation/hwmon/max15301.rst
11975 F:      drivers/hwmon/pmbus/max15301.c
11976
11977 MAX16065 HARDWARE MONITOR DRIVER
11978 M:      Guenter Roeck <linux@roeck-us.net>
11979 L:      linux-hwmon@vger.kernel.org
11980 S:      Maintained
11981 F:      Documentation/hwmon/max16065.rst
11982 F:      drivers/hwmon/max16065.c
11983
11984 MAX2175 SDR TUNER DRIVER
11985 M:      Ramesh Shanmugasundaram <rashanmu@gmail.com>
11986 L:      linux-media@vger.kernel.org
11987 S:      Maintained
11988 T:      git git://linuxtv.org/media_tree.git
11989 F:      Documentation/devicetree/bindings/media/i2c/max2175.txt
11990 F:      Documentation/userspace-api/media/drivers/max2175.rst
11991 F:      drivers/media/i2c/max2175*
11992 F:      include/uapi/linux/max2175.h
11993
11994 MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
11995 L:      linux-hwmon@vger.kernel.org
11996 S:      Orphan
11997 F:      Documentation/hwmon/max6650.rst
11998 F:      drivers/hwmon/max6650.c
11999
12000 MAX6697 HARDWARE MONITOR DRIVER
12001 M:      Guenter Roeck <linux@roeck-us.net>
12002 L:      linux-hwmon@vger.kernel.org
12003 S:      Maintained
12004 F:      Documentation/devicetree/bindings/hwmon/max6697.txt
12005 F:      Documentation/hwmon/max6697.rst
12006 F:      drivers/hwmon/max6697.c
12007 F:      include/linux/platform_data/max6697.h
12008
12009 MAX9286 QUAD GMSL DESERIALIZER DRIVER
12010 M:      Jacopo Mondi <jacopo+renesas@jmondi.org>
12011 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
12012 M:      Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
12013 M:      Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
12014 L:      linux-media@vger.kernel.org
12015 S:      Maintained
12016 F:      Documentation/devicetree/bindings/media/i2c/maxim,max9286.yaml
12017 F:      drivers/media/i2c/max9286.c
12018
12019 MAX96712 QUAD GMSL2 DESERIALIZER DRIVER
12020 M:      Niklas Söderlund <niklas.soderlund@ragnatech.se>
12021 L:      linux-media@vger.kernel.org
12022 S:      Maintained
12023 F:      drivers/staging/media/max96712/max96712.c
12024
12025 MAX9860 MONO AUDIO VOICE CODEC DRIVER
12026 M:      Peter Rosin <peda@axentia.se>
12027 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12028 S:      Maintained
12029 F:      Documentation/devicetree/bindings/sound/max9860.txt
12030 F:      sound/soc/codecs/max9860.*
12031
12032 MAXBOTIX ULTRASONIC RANGER IIO DRIVER
12033 M:      Andreas Klinger <ak@it-klinger.de>
12034 L:      linux-iio@vger.kernel.org
12035 S:      Maintained
12036 F:      Documentation/devicetree/bindings/iio/proximity/maxbotix,mb1232.yaml
12037 F:      drivers/iio/proximity/mb1232.c
12038
12039 MAXIM MAX17040 FAMILY FUEL GAUGE DRIVERS
12040 R:      Iskren Chernev <iskren.chernev@gmail.com>
12041 R:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
12042 R:      Marek Szyprowski <m.szyprowski@samsung.com>
12043 R:      Matheus Castello <matheus@castello.eng.br>
12044 L:      linux-pm@vger.kernel.org
12045 S:      Maintained
12046 F:      Documentation/devicetree/bindings/power/supply/maxim,max17040.yaml
12047 F:      drivers/power/supply/max17040_battery.c
12048
12049 MAXIM MAX17042 FAMILY FUEL GAUGE DRIVERS
12050 R:      Hans de Goede <hdegoede@redhat.com>
12051 R:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
12052 R:      Marek Szyprowski <m.szyprowski@samsung.com>
12053 R:      Sebastian Krzyszkowiak <sebastian.krzyszkowiak@puri.sm>
12054 R:      Purism Kernel Team <kernel@puri.sm>
12055 L:      linux-pm@vger.kernel.org
12056 S:      Maintained
12057 F:      Documentation/devicetree/bindings/power/supply/maxim,max17042.yaml
12058 F:      drivers/power/supply/max17042_battery.c
12059
12060 MAXIM MAX20086 CAMERA POWER PROTECTOR DRIVER
12061 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12062 L:      linux-kernel@vger.kernel.org
12063 S:      Maintained
12064 F:      Documentation/devicetree/bindings/regulator/maxim,max20086.yaml
12065 F:      drivers/regulator/max20086-regulator.c
12066
12067 MAXIM MAX77650 PMIC MFD DRIVER
12068 M:      Bartosz Golaszewski <brgl@bgdev.pl>
12069 L:      linux-kernel@vger.kernel.org
12070 S:      Maintained
12071 F:      Documentation/devicetree/bindings/*/*max77650.yaml
12072 F:      Documentation/devicetree/bindings/*/max77650*.yaml
12073 F:      drivers/gpio/gpio-max77650.c
12074 F:      drivers/input/misc/max77650-onkey.c
12075 F:      drivers/leds/leds-max77650.c
12076 F:      drivers/mfd/max77650.c
12077 F:      drivers/power/supply/max77650-charger.c
12078 F:      drivers/regulator/max77650-regulator.c
12079 F:      include/linux/mfd/max77650.h
12080
12081 MAXIM MAX77714 PMIC MFD DRIVER
12082 M:      Luca Ceresoli <luca@lucaceresoli.net>
12083 S:      Maintained
12084 F:      Documentation/devicetree/bindings/mfd/maxim,max77714.yaml
12085 F:      drivers/mfd/max77714.c
12086 F:      include/linux/mfd/max77714.h
12087
12088 MAXIM MAX77802 PMIC REGULATOR DEVICE DRIVER
12089 M:      Javier Martinez Canillas <javier@dowhile0.org>
12090 L:      linux-kernel@vger.kernel.org
12091 S:      Supported
12092 F:      Documentation/devicetree/bindings/*/*max77802.yaml
12093 F:      drivers/regulator/max77802-regulator.c
12094 F:      include/dt-bindings/*/*max77802.h
12095
12096 MAXIM MAX77976 BATTERY CHARGER
12097 M:      Luca Ceresoli <luca@lucaceresoli.net>
12098 S:      Supported
12099 F:      Documentation/devicetree/bindings/power/supply/maxim,max77976.yaml
12100 F:      drivers/power/supply/max77976_charger.c
12101
12102 MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS
12103 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
12104 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
12105 L:      linux-pm@vger.kernel.org
12106 S:      Supported
12107 B:      mailto:linux-samsung-soc@vger.kernel.org
12108 F:      Documentation/devicetree/bindings/power/supply/maxim,max14577.yaml
12109 F:      Documentation/devicetree/bindings/power/supply/maxim,max77693.yaml
12110 F:      drivers/power/supply/max14577_charger.c
12111 F:      drivers/power/supply/max77693_charger.c
12112
12113 MAXIM PMIC AND MUIC DRIVERS FOR EXYNOS BASED BOARDS
12114 M:      Chanwoo Choi <cw00.choi@samsung.com>
12115 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
12116 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
12117 L:      linux-kernel@vger.kernel.org
12118 S:      Supported
12119 B:      mailto:linux-samsung-soc@vger.kernel.org
12120 F:      Documentation/devicetree/bindings/*/maxim,max14577.yaml
12121 F:      Documentation/devicetree/bindings/*/maxim,max77686.yaml
12122 F:      Documentation/devicetree/bindings/*/maxim,max77693.yaml
12123 F:      Documentation/devicetree/bindings/*/maxim,max77843.yaml
12124 F:      Documentation/devicetree/bindings/clock/maxim,max77686.txt
12125 F:      Documentation/devicetree/bindings/mfd/max77693.txt
12126 F:      drivers/*/*max77843.c
12127 F:      drivers/*/max14577*.c
12128 F:      drivers/*/max77686*.c
12129 F:      drivers/*/max77693*.c
12130 F:      drivers/clk/clk-max77686.c
12131 F:      drivers/extcon/extcon-max14577.c
12132 F:      drivers/extcon/extcon-max77693.c
12133 F:      drivers/rtc/rtc-max77686.c
12134 F:      include/linux/mfd/max14577*.h
12135 F:      include/linux/mfd/max77686*.h
12136 F:      include/linux/mfd/max77693*.h
12137
12138 MAXIRADIO FM RADIO RECEIVER DRIVER
12139 M:      Hans Verkuil <hverkuil@xs4all.nl>
12140 L:      linux-media@vger.kernel.org
12141 S:      Maintained
12142 W:      https://linuxtv.org
12143 T:      git git://linuxtv.org/media_tree.git
12144 F:      drivers/media/radio/radio-maxiradio*
12145
12146 MAXLINEAR ETHERNET PHY DRIVER
12147 M:      Xu Liang <lxu@maxlinear.com>
12148 L:      netdev@vger.kernel.org
12149 S:      Supported
12150 F:      drivers/net/phy/mxl-gpy.c
12151
12152 MCBA MICROCHIP CAN BUS ANALYZER TOOL DRIVER
12153 R:      Yasushi SHOJI <yashi@spacecubics.com>
12154 L:      linux-can@vger.kernel.org
12155 S:      Maintained
12156 F:      drivers/net/can/usb/mcba_usb.c
12157
12158 MCAN MMIO DEVICE DRIVER
12159 M:      Chandrasekar Ramakrishnan <rcsekar@samsung.com>
12160 L:      linux-can@vger.kernel.org
12161 S:      Maintained
12162 F:      Documentation/devicetree/bindings/net/can/bosch,m_can.yaml
12163 F:      drivers/net/can/m_can/m_can.c
12164 F:      drivers/net/can/m_can/m_can.h
12165 F:      drivers/net/can/m_can/m_can_platform.c
12166
12167 MCP2221A MICROCHIP USB-HID TO I2C BRIDGE DRIVER
12168 M:      Rishi Gupta <gupt21@gmail.com>
12169 L:      linux-i2c@vger.kernel.org
12170 L:      linux-input@vger.kernel.org
12171 S:      Maintained
12172 F:      drivers/hid/hid-mcp2221.c
12173
12174 MCP251XFD SPI-CAN NETWORK DRIVER
12175 M:      Marc Kleine-Budde <mkl@pengutronix.de>
12176 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
12177 R:      Thomas Kopp <thomas.kopp@microchip.com>
12178 L:      linux-can@vger.kernel.org
12179 S:      Maintained
12180 F:      Documentation/devicetree/bindings/net/can/microchip,mcp251xfd.yaml
12181 F:      drivers/net/can/spi/mcp251xfd/
12182
12183 MCP4018 AND MCP4531 MICROCHIP DIGITAL POTENTIOMETER DRIVERS
12184 M:      Peter Rosin <peda@axentia.se>
12185 L:      linux-iio@vger.kernel.org
12186 S:      Maintained
12187 F:      Documentation/ABI/testing/sysfs-bus-iio-potentiometer-mcp4531
12188 F:      drivers/iio/potentiometer/mcp4018.c
12189 F:      drivers/iio/potentiometer/mcp4531.c
12190
12191 MCR20A IEEE-802.15.4 RADIO DRIVER
12192 M:      Xue Liu <liuxuenetmail@gmail.com>
12193 L:      linux-wpan@vger.kernel.org
12194 S:      Maintained
12195 W:      https://github.com/xueliu/mcr20a-linux
12196 F:      Documentation/devicetree/bindings/net/ieee802154/mcr20a.txt
12197 F:      drivers/net/ieee802154/mcr20a.c
12198 F:      drivers/net/ieee802154/mcr20a.h
12199
12200 MEASUREMENT COMPUTING CIO-DAC IIO DRIVER
12201 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
12202 L:      linux-iio@vger.kernel.org
12203 S:      Maintained
12204 F:      drivers/iio/dac/cio-dac.c
12205
12206 MEDIA CONTROLLER FRAMEWORK
12207 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
12208 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12209 L:      linux-media@vger.kernel.org
12210 S:      Supported
12211 W:      https://www.linuxtv.org
12212 T:      git git://linuxtv.org/media_tree.git
12213 F:      drivers/media/mc/
12214 F:      include/media/media-*.h
12215 F:      include/uapi/linux/media.h
12216
12217 MEDIA DRIVER FOR FREESCALE IMX PXP
12218 M:      Philipp Zabel <p.zabel@pengutronix.de>
12219 L:      linux-media@vger.kernel.org
12220 S:      Maintained
12221 T:      git git://linuxtv.org/media_tree.git
12222 F:      drivers/media/platform/nxp/imx-pxp.[ch]
12223
12224 MEDIA DRIVERS FOR ASCOT2E
12225 M:      Sergey Kozlov <serjk@netup.ru>
12226 M:      Abylay Ospan <aospan@netup.ru>
12227 L:      linux-media@vger.kernel.org
12228 S:      Supported
12229 W:      https://linuxtv.org
12230 W:      http://netup.tv/
12231 T:      git git://linuxtv.org/media_tree.git
12232 F:      drivers/media/dvb-frontends/ascot2e*
12233
12234 MEDIA DRIVERS FOR CXD2099AR CI CONTROLLERS
12235 M:      Jasmin Jessich <jasmin@anw.at>
12236 L:      linux-media@vger.kernel.org
12237 S:      Maintained
12238 W:      https://linuxtv.org
12239 T:      git git://linuxtv.org/media_tree.git
12240 F:      drivers/media/dvb-frontends/cxd2099*
12241
12242 MEDIA DRIVERS FOR CXD2841ER
12243 M:      Sergey Kozlov <serjk@netup.ru>
12244 M:      Abylay Ospan <aospan@netup.ru>
12245 L:      linux-media@vger.kernel.org
12246 S:      Supported
12247 W:      https://linuxtv.org
12248 W:      http://netup.tv/
12249 T:      git git://linuxtv.org/media_tree.git
12250 F:      drivers/media/dvb-frontends/cxd2841er*
12251
12252 MEDIA DRIVERS FOR CXD2880
12253 M:      Yasunari Takiguchi <Yasunari.Takiguchi@sony.com>
12254 L:      linux-media@vger.kernel.org
12255 S:      Supported
12256 W:      http://linuxtv.org/
12257 T:      git git://linuxtv.org/media_tree.git
12258 F:      drivers/media/dvb-frontends/cxd2880/*
12259 F:      drivers/media/spi/cxd2880*
12260
12261 MEDIA DRIVERS FOR DIGITAL DEVICES PCIE DEVICES
12262 L:      linux-media@vger.kernel.org
12263 S:      Orphan
12264 W:      https://linuxtv.org
12265 T:      git git://linuxtv.org/media_tree.git
12266 F:      drivers/media/pci/ddbridge/*
12267
12268 MEDIA DRIVERS FOR FREESCALE IMX
12269 M:      Steve Longerbeam <slongerbeam@gmail.com>
12270 M:      Philipp Zabel <p.zabel@pengutronix.de>
12271 L:      linux-media@vger.kernel.org
12272 S:      Maintained
12273 T:      git git://linuxtv.org/media_tree.git
12274 F:      Documentation/admin-guide/media/imx.rst
12275 F:      Documentation/devicetree/bindings/media/imx.txt
12276 F:      drivers/staging/media/imx/
12277 F:      include/linux/imx-media.h
12278 F:      include/media/imx.h
12279
12280 MEDIA DRIVERS FOR FREESCALE IMX7
12281 M:      Rui Miguel Silva <rmfrfs@gmail.com>
12282 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12283 L:      linux-media@vger.kernel.org
12284 S:      Maintained
12285 T:      git git://linuxtv.org/media_tree.git
12286 F:      Documentation/admin-guide/media/imx7.rst
12287 F:      Documentation/devicetree/bindings/media/nxp,imx-mipi-csi2.yaml
12288 F:      Documentation/devicetree/bindings/media/nxp,imx7-csi.yaml
12289 F:      drivers/media/platform/nxp/imx-mipi-csis.c
12290 F:      drivers/staging/media/imx/imx7-media-csi.c
12291
12292 MEDIA DRIVERS FOR HELENE
12293 M:      Abylay Ospan <aospan@netup.ru>
12294 L:      linux-media@vger.kernel.org
12295 S:      Supported
12296 W:      https://linuxtv.org
12297 W:      http://netup.tv/
12298 T:      git git://linuxtv.org/media_tree.git
12299 F:      drivers/media/dvb-frontends/helene*
12300
12301 MEDIA DRIVERS FOR HORUS3A
12302 M:      Sergey Kozlov <serjk@netup.ru>
12303 M:      Abylay Ospan <aospan@netup.ru>
12304 L:      linux-media@vger.kernel.org
12305 S:      Supported
12306 W:      https://linuxtv.org
12307 W:      http://netup.tv/
12308 T:      git git://linuxtv.org/media_tree.git
12309 F:      drivers/media/dvb-frontends/horus3a*
12310
12311 MEDIA DRIVERS FOR LNBH25
12312 M:      Sergey Kozlov <serjk@netup.ru>
12313 M:      Abylay Ospan <aospan@netup.ru>
12314 L:      linux-media@vger.kernel.org
12315 S:      Supported
12316 W:      https://linuxtv.org
12317 W:      http://netup.tv/
12318 T:      git git://linuxtv.org/media_tree.git
12319 F:      drivers/media/dvb-frontends/lnbh25*
12320
12321 MEDIA DRIVERS FOR MXL5XX TUNER DEMODULATORS
12322 L:      linux-media@vger.kernel.org
12323 S:      Orphan
12324 W:      https://linuxtv.org
12325 T:      git git://linuxtv.org/media_tree.git
12326 F:      drivers/media/dvb-frontends/mxl5xx*
12327
12328 MEDIA DRIVERS FOR NETUP PCI UNIVERSAL DVB devices
12329 M:      Sergey Kozlov <serjk@netup.ru>
12330 M:      Abylay Ospan <aospan@netup.ru>
12331 L:      linux-media@vger.kernel.org
12332 S:      Supported
12333 W:      https://linuxtv.org
12334 W:      http://netup.tv/
12335 T:      git git://linuxtv.org/media_tree.git
12336 F:      drivers/media/pci/netup_unidvb/*
12337
12338 MEDIA DRIVERS FOR NVIDIA TEGRA - VDE
12339 M:      Dmitry Osipenko <digetx@gmail.com>
12340 L:      linux-media@vger.kernel.org
12341 L:      linux-tegra@vger.kernel.org
12342 S:      Maintained
12343 T:      git git://linuxtv.org/media_tree.git
12344 F:      Documentation/devicetree/bindings/media/nvidia,tegra-vde.yaml
12345 F:      drivers/media/platform/nvidia/tegra-vde/
12346
12347 MEDIA DRIVERS FOR RENESAS - CEU
12348 M:      Jacopo Mondi <jacopo@jmondi.org>
12349 L:      linux-media@vger.kernel.org
12350 L:      linux-renesas-soc@vger.kernel.org
12351 S:      Supported
12352 T:      git git://linuxtv.org/media_tree.git
12353 F:      Documentation/devicetree/bindings/media/renesas,ceu.yaml
12354 F:      drivers/media/platform/renesas/renesas-ceu.c
12355 F:      include/media/drv-intf/renesas-ceu.h
12356
12357 MEDIA DRIVERS FOR RENESAS - DRIF
12358 M:      Fabrizio Castro <fabrizio.castro.jz@renesas.com>
12359 L:      linux-media@vger.kernel.org
12360 L:      linux-renesas-soc@vger.kernel.org
12361 S:      Supported
12362 T:      git git://linuxtv.org/media_tree.git
12363 F:      Documentation/devicetree/bindings/media/renesas,drif.yaml
12364 F:      drivers/media/platform/renesas/rcar_drif.c
12365
12366 MEDIA DRIVERS FOR RENESAS - FCP
12367 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12368 L:      linux-media@vger.kernel.org
12369 L:      linux-renesas-soc@vger.kernel.org
12370 S:      Supported
12371 T:      git git://linuxtv.org/media_tree.git
12372 F:      Documentation/devicetree/bindings/media/renesas,fcp.yaml
12373 F:      drivers/media/platform/renesas/rcar-fcp.c
12374 F:      include/media/rcar-fcp.h
12375
12376 MEDIA DRIVERS FOR RENESAS - FDP1
12377 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
12378 L:      linux-media@vger.kernel.org
12379 L:      linux-renesas-soc@vger.kernel.org
12380 S:      Supported
12381 T:      git git://linuxtv.org/media_tree.git
12382 F:      Documentation/devicetree/bindings/media/renesas,fdp1.yaml
12383 F:      drivers/media/platform/renesas/rcar_fdp1.c
12384
12385 MEDIA DRIVERS FOR RENESAS - VIN
12386 M:      Niklas Söderlund <niklas.soderlund@ragnatech.se>
12387 L:      linux-media@vger.kernel.org
12388 L:      linux-renesas-soc@vger.kernel.org
12389 S:      Supported
12390 T:      git git://linuxtv.org/media_tree.git
12391 F:      Documentation/devicetree/bindings/media/renesas,csi2.yaml
12392 F:      Documentation/devicetree/bindings/media/renesas,isp.yaml
12393 F:      Documentation/devicetree/bindings/media/renesas,vin.yaml
12394 F:      drivers/media/platform/renesas/rcar-isp.c
12395 F:      drivers/media/platform/renesas/rcar-vin/
12396
12397 MEDIA DRIVERS FOR RENESAS - VSP1
12398 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12399 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
12400 L:      linux-media@vger.kernel.org
12401 L:      linux-renesas-soc@vger.kernel.org
12402 S:      Supported
12403 T:      git git://linuxtv.org/media_tree.git
12404 F:      Documentation/devicetree/bindings/media/renesas,vsp1.yaml
12405 F:      drivers/media/platform/renesas/vsp1/
12406
12407 MEDIA DRIVERS FOR ST STV0910 DEMODULATOR ICs
12408 L:      linux-media@vger.kernel.org
12409 S:      Orphan
12410 W:      https://linuxtv.org
12411 T:      git git://linuxtv.org/media_tree.git
12412 F:      drivers/media/dvb-frontends/stv0910*
12413
12414 MEDIA DRIVERS FOR ST STV6111 TUNER ICs
12415 L:      linux-media@vger.kernel.org
12416 S:      Orphan
12417 W:      https://linuxtv.org
12418 T:      git git://linuxtv.org/media_tree.git
12419 F:      drivers/media/dvb-frontends/stv6111*
12420
12421 MEDIA DRIVERS FOR STM32 - DCMI
12422 M:      Hugues Fruchet <hugues.fruchet@foss.st.com>
12423 L:      linux-media@vger.kernel.org
12424 S:      Supported
12425 T:      git git://linuxtv.org/media_tree.git
12426 F:      Documentation/devicetree/bindings/media/st,stm32-dcmi.yaml
12427 F:      drivers/media/platform/st/stm32/stm32-dcmi.c
12428
12429 MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
12430 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
12431 L:      linux-media@vger.kernel.org
12432 S:      Maintained
12433 W:      https://linuxtv.org
12434 Q:      http://patchwork.kernel.org/project/linux-media/list/
12435 T:      git git://linuxtv.org/media_tree.git
12436 F:      Documentation/admin-guide/media/
12437 F:      Documentation/devicetree/bindings/media/
12438 F:      Documentation/driver-api/media/
12439 F:      Documentation/userspace-api/media/
12440 F:      drivers/media/
12441 F:      drivers/staging/media/
12442 F:      include/linux/platform_data/media/
12443 F:      include/media/
12444 F:      include/uapi/linux/dvb/
12445 F:      include/uapi/linux/ivtv*
12446 F:      include/uapi/linux/media.h
12447 F:      include/uapi/linux/meye.h
12448 F:      include/uapi/linux/uvcvideo.h
12449 F:      include/uapi/linux/v4l2-*
12450 F:      include/uapi/linux/videodev2.h
12451
12452 MEDIATEK BLUETOOTH DRIVER
12453 M:      Sean Wang <sean.wang@mediatek.com>
12454 L:      linux-bluetooth@vger.kernel.org
12455 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
12456 S:      Maintained
12457 F:      Documentation/devicetree/bindings/net/mediatek-bluetooth.txt
12458 F:      drivers/bluetooth/btmtkuart.c
12459
12460 MEDIATEK BOARD LEVEL SHUTDOWN DRIVERS
12461 M:      Sean Wang <sean.wang@mediatek.com>
12462 L:      linux-pm@vger.kernel.org
12463 S:      Maintained
12464 F:      Documentation/devicetree/bindings/power/reset/mt6323-poweroff.txt
12465 F:      drivers/power/reset/mt6323-poweroff.c
12466
12467 MEDIATEK CIR DRIVER
12468 M:      Sean Wang <sean.wang@mediatek.com>
12469 S:      Maintained
12470 F:      drivers/media/rc/mtk-cir.c
12471
12472 MEDIATEK DMA DRIVER
12473 M:      Sean Wang <sean.wang@mediatek.com>
12474 L:      dmaengine@vger.kernel.org
12475 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12476 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
12477 S:      Maintained
12478 F:      Documentation/devicetree/bindings/dma/mtk-*
12479 F:      drivers/dma/mediatek/
12480
12481 MEDIATEK ETHERNET DRIVER
12482 M:      Felix Fietkau <nbd@nbd.name>
12483 M:      John Crispin <john@phrozen.org>
12484 M:      Sean Wang <sean.wang@mediatek.com>
12485 M:      Mark Lee <Mark-MC.Lee@mediatek.com>
12486 L:      netdev@vger.kernel.org
12487 S:      Maintained
12488 F:      drivers/net/ethernet/mediatek/
12489
12490 MEDIATEK I2C CONTROLLER DRIVER
12491 M:      Qii Wang <qii.wang@mediatek.com>
12492 L:      linux-i2c@vger.kernel.org
12493 S:      Maintained
12494 F:      Documentation/devicetree/bindings/i2c/i2c-mt65xx.yaml
12495 F:      drivers/i2c/busses/i2c-mt65xx.c
12496
12497 MEDIATEK IOMMU DRIVER
12498 M:      Yong Wu <yong.wu@mediatek.com>
12499 L:      iommu@lists.linux-foundation.org
12500 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
12501 S:      Supported
12502 F:      Documentation/devicetree/bindings/iommu/mediatek*
12503 F:      drivers/iommu/mtk_iommu*
12504 F:      include/dt-bindings/memory/mt*-port.h
12505
12506 MEDIATEK JPEG DRIVER
12507 M:      Bin Liu <bin.liu@mediatek.com>
12508 S:      Supported
12509 F:      Documentation/devicetree/bindings/media/mediatek-jpeg-*.yaml
12510 F:      drivers/media/platform/mediatek/jpeg/
12511
12512 MEDIATEK MDP DRIVER
12513 M:      Minghsiu Tsai <minghsiu.tsai@mediatek.com>
12514 M:      Houlong Wei <houlong.wei@mediatek.com>
12515 M:      Andrew-CT Chen <andrew-ct.chen@mediatek.com>
12516 S:      Supported
12517 F:      Documentation/devicetree/bindings/media/mediatek-mdp.txt
12518 F:      drivers/media/platform/mediatek/mdp/
12519 F:      drivers/media/platform/mediatek/vpu/
12520
12521 MEDIATEK MEDIA DRIVER
12522 M:      Tiffany Lin <tiffany.lin@mediatek.com>
12523 M:      Andrew-CT Chen <andrew-ct.chen@mediatek.com>
12524 S:      Supported
12525 F:      Documentation/devicetree/bindings/media/mediatek,vcodec*.yaml
12526 F:      Documentation/devicetree/bindings/media/mediatek-vpu.txt
12527 F:      drivers/media/platform/mediatek/vcodec/
12528 F:      drivers/media/platform/mediatek/vpu/
12529
12530 MEDIATEK MMC/SD/SDIO DRIVER
12531 M:      Chaotian Jing <chaotian.jing@mediatek.com>
12532 S:      Maintained
12533 F:      Documentation/devicetree/bindings/mmc/mtk-sd.yaml
12534 F:      drivers/mmc/host/mtk-sd.c
12535
12536 MEDIATEK MT76 WIRELESS LAN DRIVER
12537 M:      Felix Fietkau <nbd@nbd.name>
12538 M:      Lorenzo Bianconi <lorenzo@kernel.org>
12539 M:      Ryder Lee <ryder.lee@mediatek.com>
12540 R:      Shayne Chen <shayne.chen@mediatek.com>
12541 R:      Sean Wang <sean.wang@mediatek.com>
12542 L:      linux-wireless@vger.kernel.org
12543 S:      Maintained
12544 F:      Documentation/devicetree/bindings/net/wireless/mediatek,mt76.yaml
12545 F:      drivers/net/wireless/mediatek/mt76/
12546
12547 MEDIATEK MT7601U WIRELESS LAN DRIVER
12548 M:      Jakub Kicinski <kubakici@wp.pl>
12549 L:      linux-wireless@vger.kernel.org
12550 S:      Maintained
12551 F:      drivers/net/wireless/mediatek/mt7601u/
12552
12553 MEDIATEK MT7621 CLOCK DRIVER
12554 M:      Sergio Paracuellos <sergio.paracuellos@gmail.com>
12555 S:      Maintained
12556 F:      Documentation/devicetree/bindings/clock/mediatek,mt7621-sysc.yaml
12557 F:      drivers/clk/ralink/clk-mt7621.c
12558
12559 MEDIATEK MT7621/28/88 I2C DRIVER
12560 M:      Stefan Roese <sr@denx.de>
12561 L:      linux-i2c@vger.kernel.org
12562 S:      Maintained
12563 F:      Documentation/devicetree/bindings/i2c/i2c-mt7621.txt
12564 F:      drivers/i2c/busses/i2c-mt7621.c
12565
12566 MEDIATEK MT7621 PCIE CONTROLLER DRIVER
12567 M:      Sergio Paracuellos <sergio.paracuellos@gmail.com>
12568 S:      Maintained
12569 F:      Documentation/devicetree/bindings/pci/mediatek,mt7621-pcie.yaml
12570 F:      drivers/pci/controller/pcie-mt7621.c
12571
12572 MEDIATEK MT7621 PHY PCI DRIVER
12573 M:      Sergio Paracuellos <sergio.paracuellos@gmail.com>
12574 S:      Maintained
12575 F:      Documentation/devicetree/bindings/phy/mediatek,mt7621-pci-phy.yaml
12576 F:      drivers/phy/ralink/phy-mt7621-pci.c
12577
12578 MEDIATEK NAND CONTROLLER DRIVER
12579 L:      linux-mtd@lists.infradead.org
12580 S:      Orphan
12581 F:      Documentation/devicetree/bindings/mtd/mtk-nand.txt
12582 F:      drivers/mtd/nand/raw/mtk_*
12583
12584 MEDIATEK PMIC LED DRIVER
12585 M:      Sean Wang <sean.wang@mediatek.com>
12586 S:      Maintained
12587 F:      Documentation/devicetree/bindings/leds/leds-mt6323.txt
12588 F:      drivers/leds/leds-mt6323.c
12589
12590 MEDIATEK RANDOM NUMBER GENERATOR SUPPORT
12591 M:      Sean Wang <sean.wang@mediatek.com>
12592 S:      Maintained
12593 F:      drivers/char/hw_random/mtk-rng.c
12594
12595 MEDIATEK SMI DRIVER
12596 M:      Yong Wu <yong.wu@mediatek.com>
12597 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
12598 S:      Supported
12599 F:      Documentation/devicetree/bindings/memory-controllers/mediatek,smi*
12600 F:      drivers/memory/mtk-smi.c
12601 F:      include/soc/mediatek/smi.h
12602
12603 MEDIATEK SWITCH DRIVER
12604 M:      Sean Wang <sean.wang@mediatek.com>
12605 M:      Landen Chao <Landen.Chao@mediatek.com>
12606 M:      DENG Qingfang <dqfext@gmail.com>
12607 L:      netdev@vger.kernel.org
12608 S:      Maintained
12609 F:      drivers/net/dsa/mt7530.*
12610 F:      net/dsa/tag_mtk.c
12611
12612 MEDIATEK T7XX 5G WWAN MODEM DRIVER
12613 M:      Chandrashekar Devegowda <chandrashekar.devegowda@intel.com>
12614 M:      Intel Corporation <linuxwwan@intel.com>
12615 R:      Chiranjeevi Rapolu <chiranjeevi.rapolu@linux.intel.com>
12616 R:      Liu Haijun <haijun.liu@mediatek.com>
12617 R:      M Chetan Kumar <m.chetan.kumar@linux.intel.com>
12618 R:      Ricardo Martinez <ricardo.martinez@linux.intel.com>
12619 L:      netdev@vger.kernel.org
12620 S:      Supported
12621 F:      drivers/net/wwan/t7xx/
12622
12623 MEDIATEK USB3 DRD IP DRIVER
12624 M:      Chunfeng Yun <chunfeng.yun@mediatek.com>
12625 L:      linux-usb@vger.kernel.org
12626 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12627 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
12628 S:      Maintained
12629 F:      Documentation/devicetree/bindings/usb/mediatek,*
12630 F:      drivers/usb/host/xhci-mtk*
12631 F:      drivers/usb/mtu3/
12632
12633 MEGACHIPS STDPXXXX-GE-B850V3-FW LVDS/DP++ BRIDGES
12634 M:      Peter Senna Tschudin <peter.senna@gmail.com>
12635 M:      Martin Donnelly <martin.donnelly@ge.com>
12636 M:      Martyn Welch <martyn.welch@collabora.co.uk>
12637 S:      Maintained
12638 F:      Documentation/devicetree/bindings/display/bridge/megachips-stdpxxxx-ge-b850v3-fw.txt
12639 F:      drivers/gpu/drm/bridge/megachips-stdpxxxx-ge-b850v3-fw.c
12640
12641 MEGARAID SCSI/SAS DRIVERS
12642 M:      Kashyap Desai <kashyap.desai@broadcom.com>
12643 M:      Sumit Saxena <sumit.saxena@broadcom.com>
12644 M:      Shivasharan S <shivasharan.srikanteshwara@broadcom.com>
12645 L:      megaraidlinux.pdl@broadcom.com
12646 L:      linux-scsi@vger.kernel.org
12647 S:      Maintained
12648 W:      http://www.avagotech.com/support/
12649 F:      Documentation/scsi/megaraid.rst
12650 F:      drivers/scsi/megaraid.*
12651 F:      drivers/scsi/megaraid/
12652
12653 MELEXIS MLX90614 DRIVER
12654 M:      Crt Mori <cmo@melexis.com>
12655 L:      linux-iio@vger.kernel.org
12656 S:      Supported
12657 W:      http://www.melexis.com
12658 F:      drivers/iio/temperature/mlx90614.c
12659
12660 MELEXIS MLX90632 DRIVER
12661 M:      Crt Mori <cmo@melexis.com>
12662 L:      linux-iio@vger.kernel.org
12663 S:      Supported
12664 W:      http://www.melexis.com
12665 F:      drivers/iio/temperature/mlx90632.c
12666
12667 MELFAS MIP4 TOUCHSCREEN DRIVER
12668 M:      Sangwon Jee <jeesw@melfas.com>
12669 S:      Supported
12670 W:      http://www.melfas.com
12671 F:      Documentation/devicetree/bindings/input/touchscreen/melfas_mip4.txt
12672 F:      drivers/input/touchscreen/melfas_mip4.c
12673
12674 MELLANOX BLUEFIELD I2C DRIVER
12675 M:      Khalil Blaiech <kblaiech@nvidia.com>
12676 L:      linux-i2c@vger.kernel.org
12677 S:      Supported
12678 F:      Documentation/devicetree/bindings/i2c/mellanox,i2c-mlxbf.yaml
12679 F:      drivers/i2c/busses/i2c-mlxbf.c
12680
12681 MELLANOX ETHERNET DRIVER (mlx4_en)
12682 M:      Tariq Toukan <tariqt@nvidia.com>
12683 L:      netdev@vger.kernel.org
12684 S:      Supported
12685 W:      http://www.mellanox.com
12686 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12687 F:      drivers/net/ethernet/mellanox/mlx4/en_*
12688
12689 MELLANOX ETHERNET DRIVER (mlx5e)
12690 M:      Saeed Mahameed <saeedm@nvidia.com>
12691 L:      netdev@vger.kernel.org
12692 S:      Supported
12693 W:      http://www.mellanox.com
12694 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12695 F:      drivers/net/ethernet/mellanox/mlx5/core/en_*
12696
12697 MELLANOX ETHERNET INNOVA DRIVERS
12698 R:      Boris Pismenny <borisp@nvidia.com>
12699 L:      netdev@vger.kernel.org
12700 S:      Supported
12701 W:      http://www.mellanox.com
12702 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12703 F:      drivers/net/ethernet/mellanox/mlx5/core/accel/*
12704 F:      drivers/net/ethernet/mellanox/mlx5/core/en_accel/*
12705 F:      drivers/net/ethernet/mellanox/mlx5/core/fpga/*
12706 F:      include/linux/mlx5/mlx5_ifc_fpga.h
12707
12708 MELLANOX ETHERNET SWITCH DRIVERS
12709 M:      Ido Schimmel <idosch@nvidia.com>
12710 M:      Petr Machata <petrm@nvidia.com>
12711 L:      netdev@vger.kernel.org
12712 S:      Supported
12713 W:      http://www.mellanox.com
12714 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12715 F:      drivers/net/ethernet/mellanox/mlxsw/
12716 F:      tools/testing/selftests/drivers/net/mlxsw/
12717
12718 MELLANOX FIRMWARE FLASH LIBRARY (mlxfw)
12719 M:      mlxsw@nvidia.com
12720 L:      netdev@vger.kernel.org
12721 S:      Supported
12722 W:      http://www.mellanox.com
12723 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12724 F:      drivers/net/ethernet/mellanox/mlxfw/
12725
12726 MELLANOX HARDWARE PLATFORM SUPPORT
12727 M:      Hans de Goede <hdegoede@redhat.com>
12728 M:      Mark Gross <markgross@kernel.org>
12729 M:      Vadim Pasternak <vadimp@nvidia.com>
12730 L:      platform-driver-x86@vger.kernel.org
12731 S:      Supported
12732 F:      Documentation/ABI/testing/sysfs-platform-mellanox-bootctl
12733 F:      drivers/platform/mellanox/
12734 F:      include/linux/platform_data/mlxreg.h
12735
12736 MELLANOX MLX4 core VPI driver
12737 M:      Tariq Toukan <tariqt@nvidia.com>
12738 L:      netdev@vger.kernel.org
12739 L:      linux-rdma@vger.kernel.org
12740 S:      Supported
12741 W:      http://www.mellanox.com
12742 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12743 F:      drivers/net/ethernet/mellanox/mlx4/
12744 F:      include/linux/mlx4/
12745
12746 MELLANOX MLX4 IB driver
12747 M:      Yishai Hadas <yishaih@nvidia.com>
12748 L:      linux-rdma@vger.kernel.org
12749 S:      Supported
12750 W:      http://www.mellanox.com
12751 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
12752 F:      drivers/infiniband/hw/mlx4/
12753 F:      include/linux/mlx4/
12754 F:      include/uapi/rdma/mlx4-abi.h
12755
12756 MELLANOX MLX5 core VPI driver
12757 M:      Saeed Mahameed <saeedm@nvidia.com>
12758 M:      Leon Romanovsky <leonro@nvidia.com>
12759 L:      netdev@vger.kernel.org
12760 L:      linux-rdma@vger.kernel.org
12761 S:      Supported
12762 W:      http://www.mellanox.com
12763 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12764 F:      Documentation/networking/device_drivers/ethernet/mellanox/
12765 F:      drivers/net/ethernet/mellanox/mlx5/core/
12766 F:      include/linux/mlx5/
12767
12768 MELLANOX MLX5 IB driver
12769 M:      Leon Romanovsky <leonro@nvidia.com>
12770 L:      linux-rdma@vger.kernel.org
12771 S:      Supported
12772 W:      http://www.mellanox.com
12773 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
12774 F:      drivers/infiniband/hw/mlx5/
12775 F:      include/linux/mlx5/
12776 F:      include/uapi/rdma/mlx5-abi.h
12777
12778 MELLANOX MLXCPLD I2C AND MUX DRIVER
12779 M:      Vadim Pasternak <vadimp@nvidia.com>
12780 M:      Michael Shych <michaelsh@nvidia.com>
12781 L:      linux-i2c@vger.kernel.org
12782 S:      Supported
12783 F:      Documentation/i2c/busses/i2c-mlxcpld.rst
12784 F:      drivers/i2c/busses/i2c-mlxcpld.c
12785 F:      drivers/i2c/muxes/i2c-mux-mlxcpld.c
12786
12787 MELLANOX MLXCPLD LED DRIVER
12788 M:      Vadim Pasternak <vadimp@nvidia.com>
12789 L:      linux-leds@vger.kernel.org
12790 S:      Supported
12791 F:      Documentation/leds/leds-mlxcpld.rst
12792 F:      drivers/leds/leds-mlxcpld.c
12793 F:      drivers/leds/leds-mlxreg.c
12794
12795 MELLANOX PLATFORM DRIVER
12796 M:      Vadim Pasternak <vadimp@nvidia.com>
12797 L:      platform-driver-x86@vger.kernel.org
12798 S:      Supported
12799 F:      drivers/platform/x86/mlx-platform.c
12800
12801 MEMBARRIER SUPPORT
12802 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
12803 M:      "Paul E. McKenney" <paulmck@kernel.org>
12804 L:      linux-kernel@vger.kernel.org
12805 S:      Supported
12806 F:      arch/powerpc/include/asm/membarrier.h
12807 F:      include/uapi/linux/membarrier.h
12808 F:      kernel/sched/membarrier.c
12809
12810 MEMBLOCK
12811 M:      Mike Rapoport <rppt@kernel.org>
12812 L:      linux-mm@kvack.org
12813 S:      Maintained
12814 F:      Documentation/core-api/boot-time-mm.rst
12815 F:      include/linux/memblock.h
12816 F:      mm/memblock.c
12817 F:      tools/testing/memblock/
12818
12819 MEMORY CONTROLLER DRIVERS
12820 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
12821 L:      linux-kernel@vger.kernel.org
12822 S:      Maintained
12823 B:      mailto:krzysztof.kozlowski@linaro.org
12824 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/krzk/linux-mem-ctrl.git
12825 F:      Documentation/devicetree/bindings/memory-controllers/
12826 F:      drivers/memory/
12827 F:      include/dt-bindings/memory/
12828 F:      include/memory/
12829
12830 MEMORY FREQUENCY SCALING DRIVERS FOR NVIDIA TEGRA
12831 M:      Dmitry Osipenko <digetx@gmail.com>
12832 L:      linux-pm@vger.kernel.org
12833 L:      linux-tegra@vger.kernel.org
12834 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
12835 S:      Maintained
12836 F:      drivers/devfreq/tegra30-devfreq.c
12837
12838 MEMORY MANAGEMENT
12839 M:      Andrew Morton <akpm@linux-foundation.org>
12840 L:      linux-mm@kvack.org
12841 S:      Maintained
12842 W:      http://www.linux-mm.org
12843 T:      quilt https://ozlabs.org/~akpm/mmotm/
12844 T:      quilt https://ozlabs.org/~akpm/mmots/
12845 T:      git git://github.com/hnaz/linux-mm.git
12846 F:      include/linux/gfp.h
12847 F:      include/linux/memory_hotplug.h
12848 F:      include/linux/mm.h
12849 F:      include/linux/mmzone.h
12850 F:      include/linux/pagewalk.h
12851 F:      include/linux/vmalloc.h
12852 F:      mm/
12853 F:      tools/testing/selftests/vm/
12854
12855 MEMORY TECHNOLOGY DEVICES (MTD)
12856 M:      Miquel Raynal <miquel.raynal@bootlin.com>
12857 M:      Richard Weinberger <richard@nod.at>
12858 M:      Vignesh Raghavendra <vigneshr@ti.com>
12859 L:      linux-mtd@lists.infradead.org
12860 S:      Maintained
12861 W:      http://www.linux-mtd.infradead.org/
12862 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
12863 C:      irc://irc.oftc.net/mtd
12864 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/fixes
12865 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/next
12866 F:      Documentation/devicetree/bindings/mtd/
12867 F:      drivers/mtd/
12868 F:      include/linux/mtd/
12869 F:      include/uapi/mtd/
12870
12871 MEN A21 WATCHDOG DRIVER
12872 M:      Johannes Thumshirn <morbidrsa@gmail.com>
12873 L:      linux-watchdog@vger.kernel.org
12874 S:      Maintained
12875 F:      drivers/watchdog/mena21_wdt.c
12876
12877 MEN CHAMELEON BUS (mcb)
12878 M:      Johannes Thumshirn <morbidrsa@gmail.com>
12879 S:      Maintained
12880 F:      Documentation/driver-api/men-chameleon-bus.rst
12881 F:      drivers/mcb/
12882 F:      include/linux/mcb.h
12883
12884 MEN F21BMC (Board Management Controller)
12885 M:      Andreas Werner <andreas.werner@men.de>
12886 S:      Supported
12887 F:      Documentation/hwmon/menf21bmc.rst
12888 F:      drivers/hwmon/menf21bmc_hwmon.c
12889 F:      drivers/leds/leds-menf21bmc.c
12890 F:      drivers/mfd/menf21bmc.c
12891 F:      drivers/watchdog/menf21bmc_wdt.c
12892
12893 MEN Z069 WATCHDOG DRIVER
12894 M:      Johannes Thumshirn <jth@kernel.org>
12895 L:      linux-watchdog@vger.kernel.org
12896 S:      Maintained
12897 F:      drivers/watchdog/menz69_wdt.c
12898
12899 MESON AO CEC DRIVER FOR AMLOGIC SOCS
12900 M:      Neil Armstrong <narmstrong@baylibre.com>
12901 L:      linux-media@vger.kernel.org
12902 L:      linux-amlogic@lists.infradead.org
12903 S:      Supported
12904 W:      http://linux-meson.com/
12905 T:      git git://linuxtv.org/media_tree.git
12906 F:      Documentation/devicetree/bindings/media/amlogic,meson-gx-ao-cec.yaml
12907 F:      drivers/media/cec/platform/meson/ao-cec-g12a.c
12908 F:      drivers/media/cec/platform/meson/ao-cec.c
12909
12910 MESON GE2D DRIVER FOR AMLOGIC SOCS
12911 M:      Neil Armstrong <narmstrong@baylibre.com>
12912 L:      linux-media@vger.kernel.org
12913 L:      linux-amlogic@lists.infradead.org
12914 S:      Supported
12915 T:      git git://linuxtv.org/media_tree.git
12916 F:      Documentation/devicetree/bindings/media/amlogic,axg-ge2d.yaml
12917 F:      drivers/media/platform/amlogic/meson-ge2d/
12918
12919 MESON NAND CONTROLLER DRIVER FOR AMLOGIC SOCS
12920 M:      Liang Yang <liang.yang@amlogic.com>
12921 L:      linux-mtd@lists.infradead.org
12922 S:      Maintained
12923 F:      Documentation/devicetree/bindings/mtd/amlogic,meson-nand.txt
12924 F:      drivers/mtd/nand/raw/meson_*
12925
12926 MESON VIDEO DECODER DRIVER FOR AMLOGIC SOCS
12927 M:      Neil Armstrong <narmstrong@baylibre.com>
12928 L:      linux-media@vger.kernel.org
12929 L:      linux-amlogic@lists.infradead.org
12930 S:      Supported
12931 T:      git git://linuxtv.org/media_tree.git
12932 F:      Documentation/devicetree/bindings/media/amlogic,gx-vdec.yaml
12933 F:      drivers/staging/media/meson/vdec/
12934
12935 METHODE UDPU SUPPORT
12936 M:      Vladimir Vid <vladimir.vid@sartura.hr>
12937 S:      Maintained
12938 F:      arch/arm64/boot/dts/marvell/armada-3720-uDPU.dts
12939
12940 MHI BUS
12941 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
12942 R:      Hemant Kumar <quic_hemantk@quicinc.com>
12943 L:      mhi@lists.linux.dev
12944 L:      linux-arm-msm@vger.kernel.org
12945 S:      Maintained
12946 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mani/mhi.git
12947 F:      Documentation/ABI/stable/sysfs-bus-mhi
12948 F:      Documentation/mhi/
12949 F:      drivers/bus/mhi/
12950 F:      include/linux/mhi.h
12951
12952 MICROBLAZE ARCHITECTURE
12953 M:      Michal Simek <monstr@monstr.eu>
12954 S:      Supported
12955 W:      http://www.monstr.eu/fdt/
12956 T:      git git://git.monstr.eu/linux-2.6-microblaze.git
12957 F:      arch/microblaze/
12958
12959 MICROCHIP AT91 DMA DRIVERS
12960 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
12961 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
12962 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12963 L:      dmaengine@vger.kernel.org
12964 S:      Supported
12965 F:      Documentation/devicetree/bindings/dma/atmel-dma.txt
12966 F:      drivers/dma/at_hdmac.c
12967 F:      drivers/dma/at_hdmac_regs.h
12968 F:      drivers/dma/at_xdmac.c
12969 F:      include/dt-bindings/dma/at91.h
12970
12971 MICROCHIP AT91 SERIAL DRIVER
12972 M:      Richard Genoud <richard.genoud@gmail.com>
12973 S:      Maintained
12974 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
12975 F:      drivers/tty/serial/atmel_serial.c
12976 F:      drivers/tty/serial/atmel_serial.h
12977
12978 MICROCHIP AT91 USART MFD DRIVER
12979 M:      Radu Pirea <radu_nicolae.pirea@upb.ro>
12980 L:      linux-kernel@vger.kernel.org
12981 S:      Supported
12982 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
12983 F:      drivers/mfd/at91-usart.c
12984 F:      include/dt-bindings/mfd/at91-usart.h
12985
12986 MICROCHIP AT91 USART SPI DRIVER
12987 M:      Radu Pirea <radu_nicolae.pirea@upb.ro>
12988 L:      linux-spi@vger.kernel.org
12989 S:      Supported
12990 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
12991 F:      drivers/spi/spi-at91-usart.c
12992
12993 MICROCHIP AUDIO ASOC DRIVERS
12994 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
12995 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12996 S:      Supported
12997 F:      sound/soc/atmel
12998
12999 MICROCHIP CSI2DC DRIVER
13000 M:      Eugen Hristev <eugen.hristev@microchip.com>
13001 L:      linux-media@vger.kernel.org
13002 S:      Supported
13003 F:      Documentation/devicetree/bindings/media/microchip,csi2dc.yaml
13004 F:      drivers/media/platform/atmel/microchip-csi2dc.c
13005
13006 MICROCHIP ECC DRIVER
13007 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
13008 L:      linux-crypto@vger.kernel.org
13009 S:      Maintained
13010 F:      drivers/crypto/atmel-ecc.*
13011
13012 MICROCHIP EIC DRIVER
13013 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
13014 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13015 S:      Supported
13016 F:      drivers/irqchip/irq-mchp-eic.c
13017
13018 MICROCHIP I2C DRIVER
13019 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
13020 L:      linux-i2c@vger.kernel.org
13021 S:      Supported
13022 F:      drivers/i2c/busses/i2c-at91-*.c
13023 F:      drivers/i2c/busses/i2c-at91.h
13024
13025 MICROCHIP ISC DRIVER
13026 M:      Eugen Hristev <eugen.hristev@microchip.com>
13027 L:      linux-media@vger.kernel.org
13028 S:      Supported
13029 F:      Documentation/devicetree/bindings/media/atmel,isc.yaml
13030 F:      Documentation/devicetree/bindings/media/microchip,xisc.yaml
13031 F:      drivers/media/platform/atmel/atmel-isc*
13032 F:      drivers/media/platform/atmel/atmel-sama*-isc*
13033 F:      include/linux/atmel-isc-media.h
13034
13035 MICROCHIP ISI DRIVER
13036 M:      Eugen Hristev <eugen.hristev@microchip.com>
13037 L:      linux-media@vger.kernel.org
13038 S:      Supported
13039 F:      drivers/media/platform/atmel/atmel-isi.c
13040 F:      drivers/media/platform/atmel/atmel-isi.h
13041
13042 MICROCHIP KSZ SERIES ETHERNET SWITCH DRIVER
13043 M:      Woojung Huh <woojung.huh@microchip.com>
13044 M:      UNGLinuxDriver@microchip.com
13045 L:      netdev@vger.kernel.org
13046 S:      Maintained
13047 F:      Documentation/devicetree/bindings/net/dsa/microchip,ksz.yaml
13048 F:      drivers/net/dsa/microchip/*
13049 F:      include/linux/platform_data/microchip-ksz.h
13050 F:      net/dsa/tag_ksz.c
13051
13052 MICROCHIP LAN87xx/LAN937x T1 PHY DRIVER
13053 M:      Arun Ramadoss <arun.ramadoss@microchip.com>
13054 R:      UNGLinuxDriver@microchip.com
13055 L:      netdev@vger.kernel.org
13056 S:      Maintained
13057 F:      drivers/net/phy/microchip_t1.c
13058
13059 MICROCHIP LAN743X ETHERNET DRIVER
13060 M:      Bryan Whitehead <bryan.whitehead@microchip.com>
13061 M:      UNGLinuxDriver@microchip.com
13062 L:      netdev@vger.kernel.org
13063 S:      Maintained
13064 F:      drivers/net/ethernet/microchip/lan743x_*
13065
13066 MICROCHIP LAN966X ETHERNET DRIVER
13067 M:      Horatiu Vultur <horatiu.vultur@microchip.com>
13068 M:      UNGLinuxDriver@microchip.com
13069 L:      netdev@vger.kernel.org
13070 S:      Maintained
13071 F:      drivers/net/ethernet/microchip/lan966x/*
13072
13073 MICROCHIP LCDFB DRIVER
13074 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
13075 L:      linux-fbdev@vger.kernel.org
13076 S:      Maintained
13077 F:      drivers/video/fbdev/atmel_lcdfb.c
13078 F:      include/video/atmel_lcdc.h
13079
13080 MICROCHIP MCP16502 PMIC DRIVER
13081 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
13082 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13083 S:      Supported
13084 F:      Documentation/devicetree/bindings/regulator/mcp16502-regulator.txt
13085 F:      drivers/regulator/mcp16502.c
13086
13087 MICROCHIP MCP3911 ADC DRIVER
13088 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
13089 M:      Kent Gustavsson <kent@minoris.se>
13090 L:      linux-iio@vger.kernel.org
13091 S:      Supported
13092 F:      Documentation/devicetree/bindings/iio/adc/microchip,mcp3911.yaml
13093 F:      drivers/iio/adc/mcp3911.c
13094
13095 MICROCHIP MMC/SD/SDIO MCI DRIVER
13096 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
13097 S:      Maintained
13098 F:      drivers/mmc/host/atmel-mci.c
13099
13100 MICROCHIP NAND DRIVER
13101 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
13102 L:      linux-mtd@lists.infradead.org
13103 S:      Supported
13104 F:      Documentation/devicetree/bindings/mtd/atmel-nand.txt
13105 F:      drivers/mtd/nand/raw/atmel/*
13106
13107 MICROCHIP PWM DRIVER
13108 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
13109 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13110 L:      linux-pwm@vger.kernel.org
13111 S:      Supported
13112 F:      Documentation/devicetree/bindings/pwm/atmel,at91sam-pwm.yaml
13113 F:      drivers/pwm/pwm-atmel.c
13114
13115 MICROCHIP SAMA5D2-COMPATIBLE ADC DRIVER
13116 M:      Eugen Hristev <eugen.hristev@microchip.com>
13117 L:      linux-iio@vger.kernel.org
13118 S:      Supported
13119 F:      Documentation/devicetree/bindings/iio/adc/atmel,sama5d2-adc.yaml
13120 F:      drivers/iio/adc/at91-sama5d2_adc.c
13121 F:      include/dt-bindings/iio/adc/at91-sama5d2_adc.h
13122
13123 MICROCHIP SAMA5D2-COMPATIBLE SHUTDOWN CONTROLLER
13124 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
13125 S:      Supported
13126 F:      drivers/power/reset/at91-sama5d2_shdwc.c
13127
13128 MICROCHIP SPI DRIVER
13129 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
13130 S:      Supported
13131 F:      drivers/spi/spi-atmel.*
13132
13133 MICROCHIP SSC DRIVER
13134 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
13135 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13136 S:      Supported
13137 F:      drivers/misc/atmel-ssc.c
13138 F:      include/linux/atmel-ssc.h
13139
13140 MICROCHIP USB251XB DRIVER
13141 M:      Richard Leitner <richard.leitner@skidata.com>
13142 L:      linux-usb@vger.kernel.org
13143 S:      Maintained
13144 F:      Documentation/devicetree/bindings/usb/usb251xb.txt
13145 F:      drivers/usb/misc/usb251xb.c
13146
13147 MICROCHIP USBA UDC DRIVER
13148 M:      Cristian Birsan <cristian.birsan@microchip.com>
13149 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13150 S:      Supported
13151 F:      drivers/usb/gadget/udc/atmel_usba_udc.*
13152
13153 MICROCHIP WILC1000 WIFI DRIVER
13154 M:      Ajay Singh <ajay.kathat@microchip.com>
13155 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
13156 L:      linux-wireless@vger.kernel.org
13157 S:      Supported
13158 F:      drivers/net/wireless/microchip/wilc1000/
13159
13160 MICROSEMI MIPS SOCS
13161 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
13162 M:      UNGLinuxDriver@microchip.com
13163 L:      linux-mips@vger.kernel.org
13164 S:      Supported
13165 F:      Documentation/devicetree/bindings/mips/mscc.txt
13166 F:      Documentation/devicetree/bindings/power/reset/ocelot-reset.txt
13167 F:      arch/mips/boot/dts/mscc/
13168 F:      arch/mips/configs/generic/board-ocelot.config
13169 F:      arch/mips/generic/board-ocelot.c
13170
13171 MICROSEMI SMART ARRAY SMARTPQI DRIVER (smartpqi)
13172 M:      Don Brace <don.brace@microchip.com>
13173 L:      storagedev@microchip.com
13174 L:      linux-scsi@vger.kernel.org
13175 S:      Supported
13176 F:      Documentation/scsi/smartpqi.rst
13177 F:      drivers/scsi/smartpqi/Kconfig
13178 F:      drivers/scsi/smartpqi/Makefile
13179 F:      drivers/scsi/smartpqi/smartpqi*.[ch]
13180 F:      include/linux/cciss*.h
13181 F:      include/uapi/linux/cciss*.h
13182
13183 MICROSOFT SURFACE BATTERY AND AC DRIVERS
13184 M:      Maximilian Luz <luzmaximilian@gmail.com>
13185 L:      linux-pm@vger.kernel.org
13186 L:      platform-driver-x86@vger.kernel.org
13187 S:      Maintained
13188 F:      drivers/power/supply/surface_battery.c
13189 F:      drivers/power/supply/surface_charger.c
13190
13191 MICROSOFT SURFACE DTX DRIVER
13192 M:      Maximilian Luz <luzmaximilian@gmail.com>
13193 L:      platform-driver-x86@vger.kernel.org
13194 S:      Maintained
13195 F:      Documentation/driver-api/surface_aggregator/clients/dtx.rst
13196 F:      drivers/platform/surface/surface_dtx.c
13197 F:      include/uapi/linux/surface_aggregator/dtx.h
13198
13199 MICROSOFT SURFACE GPE LID SUPPORT DRIVER
13200 M:      Maximilian Luz <luzmaximilian@gmail.com>
13201 L:      platform-driver-x86@vger.kernel.org
13202 S:      Maintained
13203 F:      drivers/platform/surface/surface_gpe.c
13204
13205 MICROSOFT SURFACE HARDWARE PLATFORM SUPPORT
13206 M:      Hans de Goede <hdegoede@redhat.com>
13207 M:      Mark Gross <markgross@kernel.org>
13208 M:      Maximilian Luz <luzmaximilian@gmail.com>
13209 L:      platform-driver-x86@vger.kernel.org
13210 S:      Maintained
13211 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
13212 F:      drivers/platform/surface/
13213
13214 MICROSOFT SURFACE HID TRANSPORT DRIVER
13215 M:      Maximilian Luz <luzmaximilian@gmail.com>
13216 L:      linux-input@vger.kernel.org
13217 L:      platform-driver-x86@vger.kernel.org
13218 S:      Maintained
13219 F:      drivers/hid/surface-hid/
13220
13221 MICROSOFT SURFACE HOT-PLUG DRIVER
13222 M:      Maximilian Luz <luzmaximilian@gmail.com>
13223 L:      platform-driver-x86@vger.kernel.org
13224 S:      Maintained
13225 F:      drivers/platform/surface/surface_hotplug.c
13226
13227 MICROSOFT SURFACE PLATFORM PROFILE DRIVER
13228 M:      Maximilian Luz <luzmaximilian@gmail.com>
13229 L:      platform-driver-x86@vger.kernel.org
13230 S:      Maintained
13231 F:      drivers/platform/surface/surface_platform_profile.c
13232
13233 MICROSOFT SURFACE PRO 3 BUTTON DRIVER
13234 M:      Chen Yu <yu.c.chen@intel.com>
13235 L:      platform-driver-x86@vger.kernel.org
13236 S:      Supported
13237 F:      drivers/platform/surface/surfacepro3_button.c
13238
13239 MICROSOFT SURFACE SYSTEM AGGREGATOR SUBSYSTEM
13240 M:      Maximilian Luz <luzmaximilian@gmail.com>
13241 L:      platform-driver-x86@vger.kernel.org
13242 S:      Maintained
13243 W:      https://github.com/linux-surface/surface-aggregator-module
13244 C:      irc://irc.libera.chat/linux-surface
13245 F:      Documentation/driver-api/surface_aggregator/
13246 F:      drivers/platform/surface/aggregator/
13247 F:      drivers/platform/surface/surface_acpi_notify.c
13248 F:      drivers/platform/surface/surface_aggregator_cdev.c
13249 F:      drivers/platform/surface/surface_aggregator_registry.c
13250 F:      include/linux/surface_acpi_notify.h
13251 F:      include/linux/surface_aggregator/
13252 F:      include/uapi/linux/surface_aggregator/
13253
13254 MICROTEK X6 SCANNER
13255 M:      Oliver Neukum <oliver@neukum.org>
13256 S:      Maintained
13257 F:      drivers/usb/image/microtek.*
13258
13259 MIKROTIK CRS3XX 98DX3236 BOARD SUPPORT
13260 M:      Luka Kovacic <luka.kovacic@sartura.hr>
13261 M:      Luka Perkov <luka.perkov@sartura.hr>
13262 S:      Maintained
13263 F:      arch/arm/boot/dts/armada-xp-crs305-1g-4s-bit.dts
13264 F:      arch/arm/boot/dts/armada-xp-crs305-1g-4s.dts
13265 F:      arch/arm/boot/dts/armada-xp-crs326-24g-2s-bit.dts
13266 F:      arch/arm/boot/dts/armada-xp-crs326-24g-2s.dts
13267 F:      arch/arm/boot/dts/armada-xp-crs328-4c-20s-4s-bit.dts
13268 F:      arch/arm/boot/dts/armada-xp-crs328-4c-20s-4s.dts
13269
13270 MIPI CCS, SMIA AND SMIA++ IMAGE SENSOR DRIVER
13271 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
13272 L:      linux-media@vger.kernel.org
13273 S:      Maintained
13274 F:      Documentation/devicetree/bindings/media/i2c/mipi-ccs.yaml
13275 F:      Documentation/driver-api/media/drivers/ccs/
13276 F:      Documentation/userspace-api/media/drivers/ccs.rst
13277 F:      drivers/media/i2c/ccs-pll.c
13278 F:      drivers/media/i2c/ccs-pll.h
13279 F:      drivers/media/i2c/ccs/
13280 F:      include/uapi/linux/ccs.h
13281 F:      include/uapi/linux/smiapp.h
13282
13283 MIPS
13284 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
13285 L:      linux-mips@vger.kernel.org
13286 S:      Maintained
13287 W:      http://www.linux-mips.org/
13288 Q:      https://patchwork.kernel.org/project/linux-mips/list/
13289 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mips/linux.git
13290 F:      Documentation/devicetree/bindings/mips/
13291 F:      Documentation/mips/
13292 F:      arch/mips/
13293 F:      drivers/platform/mips/
13294
13295 MIPS BOSTON DEVELOPMENT BOARD
13296 M:      Paul Burton <paulburton@kernel.org>
13297 L:      linux-mips@vger.kernel.org
13298 S:      Maintained
13299 F:      Documentation/devicetree/bindings/clock/img,boston-clock.txt
13300 F:      arch/mips/boot/dts/img/boston.dts
13301 F:      arch/mips/configs/generic/board-boston.config
13302 F:      drivers/clk/imgtec/clk-boston.c
13303 F:      include/dt-bindings/clock/boston-clock.h
13304
13305 MIPS CORE DRIVERS
13306 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
13307 M:      Serge Semin <fancer.lancer@gmail.com>
13308 L:      linux-mips@vger.kernel.org
13309 S:      Supported
13310 F:      drivers/bus/mips_cdmm.c
13311 F:      drivers/clocksource/mips-gic-timer.c
13312 F:      drivers/cpuidle/cpuidle-cps.c
13313 F:      drivers/irqchip/irq-mips-cpu.c
13314 F:      drivers/irqchip/irq-mips-gic.c
13315
13316 MIPS GENERIC PLATFORM
13317 M:      Paul Burton <paulburton@kernel.org>
13318 L:      linux-mips@vger.kernel.org
13319 S:      Supported
13320 F:      Documentation/devicetree/bindings/power/mti,mips-cpc.yaml
13321 F:      arch/mips/generic/
13322 F:      arch/mips/tools/generic-board-config.sh
13323
13324 MIPS RINT INSTRUCTION EMULATION
13325 M:      Aleksandar Markovic <aleksandar.markovic@mips.com>
13326 L:      linux-mips@vger.kernel.org
13327 S:      Supported
13328 F:      arch/mips/math-emu/dp_rint.c
13329 F:      arch/mips/math-emu/sp_rint.c
13330
13331 MIPS/LOONGSON1 ARCHITECTURE
13332 M:      Keguang Zhang <keguang.zhang@gmail.com>
13333 L:      linux-mips@vger.kernel.org
13334 S:      Maintained
13335 F:      arch/mips/include/asm/mach-loongson32/
13336 F:      arch/mips/loongson32/
13337 F:      drivers/*/*/*loongson1*
13338 F:      drivers/*/*loongson1*
13339
13340 MIPS/LOONGSON2EF ARCHITECTURE
13341 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
13342 L:      linux-mips@vger.kernel.org
13343 S:      Maintained
13344 F:      arch/mips/include/asm/mach-loongson2ef/
13345 F:      arch/mips/loongson2ef/
13346 F:      drivers/cpufreq/loongson2_cpufreq.c
13347
13348 MIPS/LOONGSON64 ARCHITECTURE
13349 M:      Huacai Chen <chenhuacai@kernel.org>
13350 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
13351 L:      linux-mips@vger.kernel.org
13352 S:      Maintained
13353 F:      arch/mips/include/asm/mach-loongson64/
13354 F:      arch/mips/loongson64/
13355 F:      drivers/irqchip/irq-loongson*
13356 F:      drivers/platform/mips/cpu_hwmon.c
13357
13358 MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
13359 M:      Hans Verkuil <hverkuil@xs4all.nl>
13360 L:      linux-media@vger.kernel.org
13361 S:      Odd Fixes
13362 W:      https://linuxtv.org
13363 T:      git git://linuxtv.org/media_tree.git
13364 F:      drivers/media/radio/radio-miropcm20*
13365
13366 MMP SUPPORT
13367 R:      Lubomir Rintel <lkundrak@v3.sk>
13368 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13369 S:      Odd Fixes
13370 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lkundrak/linux-mmp.git
13371 F:      arch/arm/boot/dts/mmp*
13372 F:      arch/arm/mach-mmp/
13373 F:      include/linux/soc/mmp/
13374
13375 MMP USB PHY DRIVERS
13376 R:      Lubomir Rintel <lkundrak@v3.sk>
13377 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13378 S:      Maintained
13379 F:      drivers/phy/marvell/phy-mmp3-usb.c
13380 F:      drivers/phy/marvell/phy-pxa-usb.c
13381
13382 MMU GATHER AND TLB INVALIDATION
13383 M:      Will Deacon <will@kernel.org>
13384 M:      "Aneesh Kumar K.V" <aneesh.kumar@linux.ibm.com>
13385 M:      Andrew Morton <akpm@linux-foundation.org>
13386 M:      Nick Piggin <npiggin@gmail.com>
13387 M:      Peter Zijlstra <peterz@infradead.org>
13388 L:      linux-arch@vger.kernel.org
13389 L:      linux-mm@kvack.org
13390 S:      Maintained
13391 F:      arch/*/include/asm/tlb.h
13392 F:      include/asm-generic/tlb.h
13393 F:      mm/mmu_gather.c
13394
13395 MN88472 MEDIA DRIVER
13396 M:      Antti Palosaari <crope@iki.fi>
13397 L:      linux-media@vger.kernel.org
13398 S:      Maintained
13399 W:      https://linuxtv.org
13400 W:      http://palosaari.fi/linux/
13401 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13402 F:      drivers/media/dvb-frontends/mn88472*
13403
13404 MN88473 MEDIA DRIVER
13405 M:      Antti Palosaari <crope@iki.fi>
13406 L:      linux-media@vger.kernel.org
13407 S:      Maintained
13408 W:      https://linuxtv.org
13409 W:      http://palosaari.fi/linux/
13410 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13411 F:      drivers/media/dvb-frontends/mn88473*
13412
13413 MODULE SUPPORT
13414 M:      Luis Chamberlain <mcgrof@kernel.org>
13415 L:      linux-modules@vger.kernel.org
13416 L:      linux-kernel@vger.kernel.org
13417 S:      Maintained
13418 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mcgrof/linux.git modules-next
13419 F:      include/linux/module.h
13420 F:      kernel/module/
13421
13422 MONOLITHIC POWER SYSTEM PMIC DRIVER
13423 M:      Saravanan Sekar <sravanhome@gmail.com>
13424 S:      Maintained
13425 F:      Documentation/devicetree/bindings/mfd/mps,mp2629.yaml
13426 F:      Documentation/devicetree/bindings/regulator/mps,mp*.yaml
13427 F:      drivers/iio/adc/mp2629_adc.c
13428 F:      drivers/mfd/mp2629.c
13429 F:      drivers/power/supply/mp2629_charger.c
13430 F:      drivers/regulator/mp5416.c
13431 F:      drivers/regulator/mpq7920.c
13432 F:      drivers/regulator/mpq7920.h
13433 F:      include/linux/mfd/mp2629.h
13434
13435 MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
13436 S:      Orphan
13437 W:      http://popies.net/meye/
13438 F:      Documentation/userspace-api/media/drivers/meye*
13439 F:      drivers/media/pci/meye/
13440 F:      include/uapi/linux/meye.h
13441
13442 MOTORCOMM PHY DRIVER
13443 M:      Peter Geis <pgwipeout@gmail.com>
13444 L:      netdev@vger.kernel.org
13445 S:      Maintained
13446 F:      drivers/net/phy/motorcomm.c
13447
13448 MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
13449 M:      Jiri Slaby <jirislaby@kernel.org>
13450 S:      Maintained
13451 F:      Documentation/driver-api/tty/moxa-smartio.rst
13452 F:      drivers/tty/mxser.*
13453
13454 MR800 AVERMEDIA USB FM RADIO DRIVER
13455 M:      Alexey Klimov <klimov.linux@gmail.com>
13456 L:      linux-media@vger.kernel.org
13457 S:      Maintained
13458 T:      git git://linuxtv.org/media_tree.git
13459 F:      drivers/media/radio/radio-mr800.c
13460
13461 MRF24J40 IEEE 802.15.4 RADIO DRIVER
13462 M:      Alan Ott <alan@signal11.us>
13463 L:      linux-wpan@vger.kernel.org
13464 S:      Maintained
13465 F:      Documentation/devicetree/bindings/net/ieee802154/mrf24j40.txt
13466 F:      drivers/net/ieee802154/mrf24j40.c
13467
13468 MSI LAPTOP SUPPORT
13469 M:      "Lee, Chun-Yi" <jlee@suse.com>
13470 L:      platform-driver-x86@vger.kernel.org
13471 S:      Maintained
13472 F:      drivers/platform/x86/msi-laptop.c
13473
13474 MSI WMI SUPPORT
13475 L:      platform-driver-x86@vger.kernel.org
13476 S:      Orphan
13477 F:      drivers/platform/x86/msi-wmi.c
13478
13479 MSI001 MEDIA DRIVER
13480 M:      Antti Palosaari <crope@iki.fi>
13481 L:      linux-media@vger.kernel.org
13482 S:      Maintained
13483 W:      https://linuxtv.org
13484 W:      http://palosaari.fi/linux/
13485 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13486 T:      git git://linuxtv.org/anttip/media_tree.git
13487 F:      drivers/media/tuners/msi001*
13488
13489 MSI2500 MEDIA DRIVER
13490 M:      Antti Palosaari <crope@iki.fi>
13491 L:      linux-media@vger.kernel.org
13492 S:      Maintained
13493 W:      https://linuxtv.org
13494 W:      http://palosaari.fi/linux/
13495 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13496 T:      git git://linuxtv.org/anttip/media_tree.git
13497 F:      drivers/media/usb/msi2500/
13498
13499 MSTAR INTERRUPT CONTROLLER DRIVER
13500 M:      Mark-PK Tsai <mark-pk.tsai@mediatek.com>
13501 M:      Daniel Palmer <daniel@thingy.jp>
13502 S:      Maintained
13503 F:      Documentation/devicetree/bindings/interrupt-controller/mstar,mst-intc.yaml
13504 F:      drivers/irqchip/irq-mst-intc.c
13505
13506 MSYSTEMS DISKONCHIP G3 MTD DRIVER
13507 M:      Robert Jarzmik <robert.jarzmik@free.fr>
13508 L:      linux-mtd@lists.infradead.org
13509 S:      Maintained
13510 F:      drivers/mtd/devices/docg3*
13511
13512 MT9M032 APTINA SENSOR DRIVER
13513 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
13514 L:      linux-media@vger.kernel.org
13515 S:      Maintained
13516 T:      git git://linuxtv.org/media_tree.git
13517 F:      drivers/media/i2c/mt9m032.c
13518 F:      include/media/i2c/mt9m032.h
13519
13520 MT9P031 APTINA CAMERA SENSOR
13521 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
13522 L:      linux-media@vger.kernel.org
13523 S:      Maintained
13524 T:      git git://linuxtv.org/media_tree.git
13525 F:      Documentation/devicetree/bindings/media/i2c/aptina,mt9p031.yaml
13526 F:      drivers/media/i2c/mt9p031.c
13527 F:      include/media/i2c/mt9p031.h
13528
13529 MT9T001 APTINA CAMERA SENSOR
13530 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
13531 L:      linux-media@vger.kernel.org
13532 S:      Maintained
13533 T:      git git://linuxtv.org/media_tree.git
13534 F:      drivers/media/i2c/mt9t001.c
13535 F:      include/media/i2c/mt9t001.h
13536
13537 MT9T112 APTINA CAMERA SENSOR
13538 M:      Jacopo Mondi <jacopo@jmondi.org>
13539 L:      linux-media@vger.kernel.org
13540 S:      Odd Fixes
13541 T:      git git://linuxtv.org/media_tree.git
13542 F:      drivers/media/i2c/mt9t112.c
13543 F:      include/media/i2c/mt9t112.h
13544
13545 MT9V032 APTINA CAMERA SENSOR
13546 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
13547 L:      linux-media@vger.kernel.org
13548 S:      Maintained
13549 T:      git git://linuxtv.org/media_tree.git
13550 F:      Documentation/devicetree/bindings/media/i2c/mt9v032.txt
13551 F:      drivers/media/i2c/mt9v032.c
13552 F:      include/media/i2c/mt9v032.h
13553
13554 MT9V111 APTINA CAMERA SENSOR
13555 M:      Jacopo Mondi <jacopo@jmondi.org>
13556 L:      linux-media@vger.kernel.org
13557 S:      Maintained
13558 T:      git git://linuxtv.org/media_tree.git
13559 F:      Documentation/devicetree/bindings/media/i2c/aptina,mt9v111.yaml
13560 F:      drivers/media/i2c/mt9v111.c
13561
13562 MULTIFUNCTION DEVICES (MFD)
13563 M:      Lee Jones <lee.jones@linaro.org>
13564 S:      Supported
13565 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
13566 F:      Documentation/devicetree/bindings/mfd/
13567 F:      drivers/mfd/
13568 F:      include/dt-bindings/mfd/
13569 F:      include/linux/mfd/
13570
13571 MULTIMEDIA CARD (MMC) ETC. OVER SPI
13572 S:      Orphan
13573 F:      drivers/mmc/host/mmc_spi.c
13574 F:      include/linux/spi/mmc_spi.h
13575
13576 MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
13577 M:      Ulf Hansson <ulf.hansson@linaro.org>
13578 L:      linux-mmc@vger.kernel.org
13579 S:      Maintained
13580 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
13581 F:      Documentation/devicetree/bindings/mmc/
13582 F:      drivers/mmc/
13583 F:      include/linux/mmc/
13584 F:      include/uapi/linux/mmc/
13585
13586 MULTIPLEXER SUBSYSTEM
13587 M:      Peter Rosin <peda@axentia.se>
13588 S:      Maintained
13589 F:      Documentation/ABI/testing/sysfs-class-mux*
13590 F:      Documentation/devicetree/bindings/mux/
13591 F:      drivers/mux/
13592 F:      include/dt-bindings/mux/
13593 F:      include/linux/mux/
13594
13595 MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
13596 M:      Bin Liu <b-liu@ti.com>
13597 L:      linux-usb@vger.kernel.org
13598 S:      Maintained
13599 F:      drivers/usb/musb/
13600
13601 MXL301RF MEDIA DRIVER
13602 M:      Akihiro Tsukada <tskd08@gmail.com>
13603 L:      linux-media@vger.kernel.org
13604 S:      Odd Fixes
13605 F:      drivers/media/tuners/mxl301rf*
13606
13607 MXL5007T MEDIA DRIVER
13608 M:      Michael Krufky <mkrufky@linuxtv.org>
13609 L:      linux-media@vger.kernel.org
13610 S:      Maintained
13611 W:      https://linuxtv.org
13612 W:      http://github.com/mkrufky
13613 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13614 T:      git git://linuxtv.org/mkrufky/tuners.git
13615 F:      drivers/media/tuners/mxl5007t.*
13616
13617 MXSFB DRM DRIVER
13618 M:      Marek Vasut <marex@denx.de>
13619 M:      Stefan Agner <stefan@agner.ch>
13620 L:      dri-devel@lists.freedesktop.org
13621 S:      Supported
13622 T:      git git://anongit.freedesktop.org/drm/drm-misc
13623 F:      Documentation/devicetree/bindings/display/fsl,lcdif.yaml
13624 F:      drivers/gpu/drm/mxsfb/
13625
13626 MYLEX DAC960 PCI RAID Controller
13627 M:      Hannes Reinecke <hare@kernel.org>
13628 L:      linux-scsi@vger.kernel.org
13629 S:      Supported
13630 F:      drivers/scsi/myrb.*
13631 F:      drivers/scsi/myrs.*
13632
13633 MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
13634 M:      Chris Lee <christopher.lee@cspi.com>
13635 L:      netdev@vger.kernel.org
13636 S:      Supported
13637 W:      https://www.cspi.com/ethernet-products/support/downloads/
13638 F:      drivers/net/ethernet/myricom/myri10ge/
13639
13640 NAND FLASH SUBSYSTEM
13641 M:      Miquel Raynal <miquel.raynal@bootlin.com>
13642 R:      Richard Weinberger <richard@nod.at>
13643 L:      linux-mtd@lists.infradead.org
13644 S:      Maintained
13645 W:      http://www.linux-mtd.infradead.org/
13646 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
13647 C:      irc://irc.oftc.net/mtd
13648 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git nand/next
13649 F:      drivers/mtd/nand/
13650 F:      include/linux/mtd/*nand*.h
13651
13652 NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
13653 M:      Daniel Mack <zonque@gmail.com>
13654 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
13655 S:      Maintained
13656 W:      http://www.native-instruments.com
13657 F:      sound/usb/caiaq/
13658
13659 NATSEMI ETHERNET DRIVER (DP8381x)
13660 S:      Orphan
13661 F:      drivers/net/ethernet/natsemi/natsemi.c
13662
13663 NCR 5380 SCSI DRIVERS
13664 M:      Finn Thain <fthain@linux-m68k.org>
13665 M:      Michael Schmitz <schmitzmic@gmail.com>
13666 L:      linux-scsi@vger.kernel.org
13667 S:      Maintained
13668 F:      Documentation/scsi/g_NCR5380.rst
13669 F:      drivers/scsi/NCR5380.*
13670 F:      drivers/scsi/arm/cumana_1.c
13671 F:      drivers/scsi/arm/oak.c
13672 F:      drivers/scsi/atari_scsi.*
13673 F:      drivers/scsi/dmx3191d.c
13674 F:      drivers/scsi/g_NCR5380.*
13675 F:      drivers/scsi/mac_scsi.*
13676 F:      drivers/scsi/sun3_scsi.*
13677 F:      drivers/scsi/sun3_scsi_vme.c
13678
13679 NCSI LIBRARY
13680 M:      Samuel Mendoza-Jonas <sam@mendozajonas.com>
13681 S:      Maintained
13682 F:      net/ncsi/
13683
13684 NCT6775 HARDWARE MONITOR DRIVER - CORE & PLATFORM DRIVER
13685 M:      Guenter Roeck <linux@roeck-us.net>
13686 L:      linux-hwmon@vger.kernel.org
13687 S:      Maintained
13688 F:      Documentation/hwmon/nct6775.rst
13689 F:      drivers/hwmon/nct6775-core.c
13690 F:      drivers/hwmon/nct6775-platform.c
13691 F:      drivers/hwmon/nct6775.h
13692
13693 NCT6775 HARDWARE MONITOR DRIVER - I2C DRIVER
13694 M:      Zev Weiss <zev@bewilderbeest.net>
13695 L:      linux-hwmon@vger.kernel.org
13696 S:      Maintained
13697 F:      Documentation/devicetree/bindings/hwmon/nuvoton,nct6775.yaml
13698 F:      drivers/hwmon/nct6775-i2c.c
13699
13700 NETDEVSIM
13701 M:      Jakub Kicinski <kuba@kernel.org>
13702 S:      Maintained
13703 F:      drivers/net/netdevsim/*
13704
13705 NETEM NETWORK EMULATOR
13706 M:      Stephen Hemminger <stephen@networkplumber.org>
13707 L:      netdev@vger.kernel.org
13708 S:      Maintained
13709 F:      net/sched/sch_netem.c
13710
13711 NETERION 10GbE DRIVERS (s2io/vxge)
13712 M:      Jon Mason <jdmason@kudzu.us>
13713 L:      netdev@vger.kernel.org
13714 S:      Supported
13715 F:      Documentation/networking/device_drivers/ethernet/neterion/s2io.rst
13716 F:      Documentation/networking/device_drivers/ethernet/neterion/vxge.rst
13717 F:      drivers/net/ethernet/neterion/
13718
13719 NETFILTER
13720 M:      Pablo Neira Ayuso <pablo@netfilter.org>
13721 M:      Jozsef Kadlecsik <kadlec@netfilter.org>
13722 M:      Florian Westphal <fw@strlen.de>
13723 L:      netfilter-devel@vger.kernel.org
13724 L:      coreteam@netfilter.org
13725 S:      Maintained
13726 W:      http://www.netfilter.org/
13727 W:      http://www.iptables.org/
13728 W:      http://www.nftables.org/
13729 Q:      http://patchwork.ozlabs.org/project/netfilter-devel/list/
13730 C:      irc://irc.libera.chat/netfilter
13731 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netfilter/nf.git
13732 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netfilter/nf-next.git
13733 F:      include/linux/netfilter*
13734 F:      include/linux/netfilter/
13735 F:      include/net/netfilter/
13736 F:      include/uapi/linux/netfilter*
13737 F:      include/uapi/linux/netfilter/
13738 F:      net/*/netfilter.c
13739 F:      net/*/netfilter/
13740 F:      net/bridge/br_netfilter*.c
13741 F:      net/netfilter/
13742
13743 NETROM NETWORK LAYER
13744 M:      Ralf Baechle <ralf@linux-mips.org>
13745 L:      linux-hams@vger.kernel.org
13746 S:      Maintained
13747 W:      http://www.linux-ax25.org/
13748 F:      include/net/netrom.h
13749 F:      include/uapi/linux/netrom.h
13750 F:      net/netrom/
13751
13752 NETRONIX EMBEDDED CONTROLLER
13753 M:      Jonathan Neuschäfer <j.neuschaefer@gmx.net>
13754 S:      Maintained
13755 F:      Documentation/devicetree/bindings/mfd/netronix,ntxec.yaml
13756 F:      drivers/mfd/ntxec.c
13757 F:      drivers/pwm/pwm-ntxec.c
13758 F:      drivers/rtc/rtc-ntxec.c
13759 F:      include/linux/mfd/ntxec.h
13760
13761 NETRONOME ETHERNET DRIVERS
13762 M:      Simon Horman <simon.horman@corigine.com>
13763 R:      Jakub Kicinski <kuba@kernel.org>
13764 L:      oss-drivers@corigine.com
13765 S:      Maintained
13766 F:      drivers/net/ethernet/netronome/
13767
13768 NETWORK BLOCK DEVICE (NBD)
13769 M:      Josef Bacik <josef@toxicpanda.com>
13770 L:      linux-block@vger.kernel.org
13771 L:      nbd@other.debian.org
13772 S:      Maintained
13773 F:      Documentation/admin-guide/blockdev/nbd.rst
13774 F:      drivers/block/nbd.c
13775 F:      include/trace/events/nbd.h
13776 F:      include/uapi/linux/nbd.h
13777
13778 NETWORK DROP MONITOR
13779 M:      Neil Horman <nhorman@tuxdriver.com>
13780 L:      netdev@vger.kernel.org
13781 S:      Maintained
13782 W:      https://fedorahosted.org/dropwatch/
13783 F:      include/uapi/linux/net_dropmon.h
13784 F:      net/core/drop_monitor.c
13785
13786 NETWORKING DRIVERS
13787 M:      "David S. Miller" <davem@davemloft.net>
13788 M:      Eric Dumazet <edumazet@google.com>
13789 M:      Jakub Kicinski <kuba@kernel.org>
13790 M:      Paolo Abeni <pabeni@redhat.com>
13791 L:      netdev@vger.kernel.org
13792 S:      Maintained
13793 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
13794 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
13795 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
13796 F:      Documentation/devicetree/bindings/net/
13797 F:      drivers/connector/
13798 F:      drivers/net/
13799 F:      include/linux/etherdevice.h
13800 F:      include/linux/fcdevice.h
13801 F:      include/linux/fddidevice.h
13802 F:      include/linux/hippidevice.h
13803 F:      include/linux/if_*
13804 F:      include/linux/inetdevice.h
13805 F:      include/linux/netdevice.h
13806 F:      include/uapi/linux/if_*
13807 F:      include/uapi/linux/netdevice.h
13808
13809 NETWORKING DRIVERS (WIRELESS)
13810 M:      Kalle Valo <kvalo@kernel.org>
13811 L:      linux-wireless@vger.kernel.org
13812 S:      Maintained
13813 W:      https://wireless.wiki.kernel.org/
13814 Q:      https://patchwork.kernel.org/project/linux-wireless/list/
13815 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless.git
13816 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless-next.git
13817 F:      Documentation/devicetree/bindings/net/wireless/
13818 F:      drivers/net/wireless/
13819
13820 NETWORKING [DSA]
13821 M:      Andrew Lunn <andrew@lunn.ch>
13822 M:      Vivien Didelot <vivien.didelot@gmail.com>
13823 M:      Florian Fainelli <f.fainelli@gmail.com>
13824 M:      Vladimir Oltean <olteanv@gmail.com>
13825 S:      Maintained
13826 F:      Documentation/devicetree/bindings/net/dsa/
13827 F:      drivers/net/dsa/
13828 F:      include/linux/dsa/
13829 F:      include/linux/platform_data/dsa.h
13830 F:      include/net/dsa.h
13831 F:      net/dsa/
13832 F:      tools/testing/selftests/drivers/net/dsa/
13833
13834 NETWORKING [GENERAL]
13835 M:      "David S. Miller" <davem@davemloft.net>
13836 M:      Eric Dumazet <edumazet@google.com>
13837 M:      Jakub Kicinski <kuba@kernel.org>
13838 M:      Paolo Abeni <pabeni@redhat.com>
13839 L:      netdev@vger.kernel.org
13840 S:      Maintained
13841 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
13842 B:      mailto:netdev@vger.kernel.org
13843 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
13844 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
13845 F:      Documentation/networking/
13846 F:      Documentation/process/maintainer-netdev.rst
13847 F:      include/linux/in.h
13848 F:      include/linux/net.h
13849 F:      include/linux/netdevice.h
13850 F:      include/net/
13851 F:      include/uapi/linux/in.h
13852 F:      include/uapi/linux/net.h
13853 F:      include/uapi/linux/net_namespace.h
13854 F:      include/uapi/linux/netdevice.h
13855 F:      lib/net_utils.c
13856 F:      lib/random32.c
13857 F:      net/
13858 F:      tools/testing/selftests/net/
13859
13860 NETWORKING [IPSEC]
13861 M:      Steffen Klassert <steffen.klassert@secunet.com>
13862 M:      Herbert Xu <herbert@gondor.apana.org.au>
13863 M:      "David S. Miller" <davem@davemloft.net>
13864 L:      netdev@vger.kernel.org
13865 S:      Maintained
13866 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git
13867 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git
13868 F:      include/net/xfrm.h
13869 F:      include/uapi/linux/xfrm.h
13870 F:      net/ipv4/ah4.c
13871 F:      net/ipv4/esp4*
13872 F:      net/ipv4/ip_vti.c
13873 F:      net/ipv4/ipcomp.c
13874 F:      net/ipv4/xfrm*
13875 F:      net/ipv6/ah6.c
13876 F:      net/ipv6/esp6*
13877 F:      net/ipv6/ip6_vti.c
13878 F:      net/ipv6/ipcomp6.c
13879 F:      net/ipv6/xfrm*
13880 F:      net/key/
13881 F:      net/xfrm/
13882 F:      tools/testing/selftests/net/ipsec.c
13883
13884 NETWORKING [IPv4/IPv6]
13885 M:      "David S. Miller" <davem@davemloft.net>
13886 M:      Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
13887 M:      David Ahern <dsahern@kernel.org>
13888 L:      netdev@vger.kernel.org
13889 S:      Maintained
13890 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
13891 F:      arch/x86/net/*
13892 F:      include/linux/ip.h
13893 F:      include/linux/ipv6*
13894 F:      include/net/fib*
13895 F:      include/net/ip*
13896 F:      include/net/route.h
13897 F:      net/ipv4/
13898 F:      net/ipv6/
13899
13900 NETWORKING [LABELED] (NetLabel, Labeled IPsec, SECMARK)
13901 M:      Paul Moore <paul@paul-moore.com>
13902 L:      netdev@vger.kernel.org
13903 L:      linux-security-module@vger.kernel.org
13904 S:      Maintained
13905 W:      https://github.com/netlabel
13906 F:      Documentation/netlabel/
13907 F:      include/net/calipso.h
13908 F:      include/net/cipso_ipv4.h
13909 F:      include/net/netlabel.h
13910 F:      include/uapi/linux/netfilter/xt_CONNSECMARK.h
13911 F:      include/uapi/linux/netfilter/xt_SECMARK.h
13912 F:      net/ipv4/cipso_ipv4.c
13913 F:      net/ipv6/calipso.c
13914 F:      net/netfilter/xt_CONNSECMARK.c
13915 F:      net/netfilter/xt_SECMARK.c
13916 F:      net/netlabel/
13917
13918 NETWORKING [MPTCP]
13919 M:      Mat Martineau <mathew.j.martineau@linux.intel.com>
13920 M:      Matthieu Baerts <matthieu.baerts@tessares.net>
13921 L:      netdev@vger.kernel.org
13922 L:      mptcp@lists.linux.dev
13923 S:      Maintained
13924 W:      https://github.com/multipath-tcp/mptcp_net-next/wiki
13925 B:      https://github.com/multipath-tcp/mptcp_net-next/issues
13926 F:      Documentation/networking/mptcp-sysctl.rst
13927 F:      include/net/mptcp.h
13928 F:      include/trace/events/mptcp.h
13929 F:      include/uapi/linux/mptcp.h
13930 F:      net/mptcp/
13931 F:      tools/testing/selftests/bpf/*/*mptcp*.c
13932 F:      tools/testing/selftests/net/mptcp/
13933
13934 NETWORKING [TCP]
13935 M:      Eric Dumazet <edumazet@google.com>
13936 L:      netdev@vger.kernel.org
13937 S:      Maintained
13938 F:      include/linux/tcp.h
13939 F:      include/net/tcp.h
13940 F:      include/trace/events/tcp.h
13941 F:      include/uapi/linux/tcp.h
13942 F:      net/ipv4/syncookies.c
13943 F:      net/ipv4/tcp*.c
13944 F:      net/ipv6/syncookies.c
13945 F:      net/ipv6/tcp*.c
13946
13947 NETWORKING [TLS]
13948 M:      Boris Pismenny <borisp@nvidia.com>
13949 M:      John Fastabend <john.fastabend@gmail.com>
13950 M:      Daniel Borkmann <daniel@iogearbox.net>
13951 M:      Jakub Kicinski <kuba@kernel.org>
13952 L:      netdev@vger.kernel.org
13953 S:      Maintained
13954 F:      include/net/tls.h
13955 F:      include/uapi/linux/tls.h
13956 F:      net/tls/*
13957
13958 NETXEN (1/10) GbE SUPPORT
13959 M:      Manish Chopra <manishc@marvell.com>
13960 M:      Rahul Verma <rahulv@marvell.com>
13961 M:      GR-Linux-NIC-Dev@marvell.com
13962 L:      netdev@vger.kernel.org
13963 S:      Supported
13964 F:      drivers/net/ethernet/qlogic/netxen/
13965
13966 NET_FAILOVER MODULE
13967 M:      Sridhar Samudrala <sridhar.samudrala@intel.com>
13968 L:      netdev@vger.kernel.org
13969 S:      Supported
13970 F:      Documentation/networking/net_failover.rst
13971 F:      drivers/net/net_failover.c
13972 F:      include/net/net_failover.h
13973
13974 NEXTHOP
13975 M:      David Ahern <dsahern@kernel.org>
13976 L:      netdev@vger.kernel.org
13977 S:      Maintained
13978 F:      include/net/netns/nexthop.h
13979 F:      include/net/nexthop.h
13980 F:      include/uapi/linux/nexthop.h
13981 F:      net/ipv4/nexthop.c
13982
13983 NFC SUBSYSTEM
13984 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
13985 L:      linux-nfc@lists.01.org (subscribers-only)
13986 L:      netdev@vger.kernel.org
13987 S:      Maintained
13988 B:      mailto:linux-nfc@lists.01.org
13989 F:      Documentation/devicetree/bindings/net/nfc/
13990 F:      drivers/nfc/
13991 F:      include/linux/platform_data/nfcmrvl.h
13992 F:      include/net/nfc/
13993 F:      include/uapi/linux/nfc.h
13994 F:      net/nfc/
13995
13996 NFC VIRTUAL NCI DEVICE DRIVER
13997 M:      Bongsu Jeon <bongsu.jeon@samsung.com>
13998 L:      netdev@vger.kernel.org
13999 L:      linux-nfc@lists.01.org (subscribers-only)
14000 S:      Supported
14001 F:      drivers/nfc/virtual_ncidev.c
14002 F:      tools/testing/selftests/nci/
14003
14004 NFS, SUNRPC, AND LOCKD CLIENTS
14005 M:      Trond Myklebust <trond.myklebust@hammerspace.com>
14006 M:      Anna Schumaker <anna@kernel.org>
14007 L:      linux-nfs@vger.kernel.org
14008 S:      Maintained
14009 W:      http://client.linux-nfs.org
14010 T:      git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git
14011 F:      fs/lockd/
14012 F:      fs/nfs/
14013 F:      fs/nfs_common/
14014 F:      include/linux/lockd/
14015 F:      include/linux/nfs*
14016 F:      include/linux/sunrpc/
14017 F:      include/uapi/linux/nfs*
14018 F:      include/uapi/linux/sunrpc/
14019 F:      net/sunrpc/
14020 F:      Documentation/filesystems/nfs/
14021
14022 NILFS2 FILESYSTEM
14023 M:      Ryusuke Konishi <konishi.ryusuke@gmail.com>
14024 L:      linux-nilfs@vger.kernel.org
14025 S:      Supported
14026 W:      https://nilfs.sourceforge.io/
14027 W:      https://nilfs.osdn.jp/
14028 T:      git git://github.com/konis/nilfs2.git
14029 F:      Documentation/filesystems/nilfs2.rst
14030 F:      fs/nilfs2/
14031 F:      include/trace/events/nilfs2.h
14032 F:      include/uapi/linux/nilfs2_api.h
14033 F:      include/uapi/linux/nilfs2_ondisk.h
14034
14035 NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
14036 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
14037 S:      Maintained
14038 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
14039 F:      Documentation/scsi/NinjaSCSI.rst
14040 F:      drivers/scsi/pcmcia/nsp_*
14041
14042 NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
14043 M:      GOTO Masanori <gotom@debian.or.jp>
14044 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
14045 S:      Maintained
14046 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
14047 F:      Documentation/scsi/NinjaSCSI.rst
14048 F:      drivers/scsi/nsp32*
14049
14050 NINTENDO HID DRIVER
14051 M:      Daniel J. Ogorchock <djogorchock@gmail.com>
14052 L:      linux-input@vger.kernel.org
14053 S:      Maintained
14054 F:      drivers/hid/hid-nintendo*
14055
14056 NIOS2 ARCHITECTURE
14057 M:      Dinh Nguyen <dinguyen@kernel.org>
14058 S:      Maintained
14059 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
14060 F:      arch/nios2/
14061
14062 NITRO ENCLAVES (NE)
14063 M:      Andra Paraschiv <andraprs@amazon.com>
14064 M:      Alexandru Vasile <lexnv@amazon.com>
14065 M:      Alexandru Ciobotaru <alcioa@amazon.com>
14066 L:      linux-kernel@vger.kernel.org
14067 S:      Supported
14068 W:      https://aws.amazon.com/ec2/nitro/nitro-enclaves/
14069 F:      Documentation/virt/ne_overview.rst
14070 F:      drivers/virt/nitro_enclaves/
14071 F:      include/linux/nitro_enclaves.h
14072 F:      include/uapi/linux/nitro_enclaves.h
14073 F:      samples/nitro_enclaves/
14074
14075 NOHZ, DYNTICKS SUPPORT
14076 M:      Frederic Weisbecker <fweisbec@gmail.com>
14077 M:      Thomas Gleixner <tglx@linutronix.de>
14078 M:      Ingo Molnar <mingo@kernel.org>
14079 L:      linux-kernel@vger.kernel.org
14080 S:      Maintained
14081 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/nohz
14082 F:      include/linux/sched/nohz.h
14083 F:      include/linux/tick.h
14084 F:      kernel/time/tick*.*
14085
14086 NOKIA N900 CAMERA SUPPORT (ET8EK8 SENSOR, AD5820 FOCUS)
14087 M:      Pavel Machek <pavel@ucw.cz>
14088 M:      Sakari Ailus <sakari.ailus@iki.fi>
14089 L:      linux-media@vger.kernel.org
14090 S:      Maintained
14091 F:      drivers/media/i2c/ad5820.c
14092 F:      drivers/media/i2c/et8ek8
14093
14094 NOKIA N900 POWER SUPPLY DRIVERS
14095 R:      Pali Rohár <pali@kernel.org>
14096 F:      drivers/power/supply/bq2415x_charger.c
14097 F:      drivers/power/supply/bq27xxx_battery.c
14098 F:      drivers/power/supply/bq27xxx_battery_i2c.c
14099 F:      drivers/power/supply/isp1704_charger.c
14100 F:      drivers/power/supply/rx51_battery.c
14101 F:      include/linux/power/bq2415x_charger.h
14102 F:      include/linux/power/bq27xxx_battery.h
14103
14104 NOLIBC HEADER FILE
14105 M:      Willy Tarreau <w@1wt.eu>
14106 S:      Maintained
14107 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wtarreau/nolibc.git
14108 F:      tools/include/nolibc/
14109
14110 NSDEPS
14111 M:      Matthias Maennich <maennich@google.com>
14112 S:      Maintained
14113 F:      Documentation/core-api/symbol-namespaces.rst
14114 F:      scripts/nsdeps
14115
14116 NTB AMD DRIVER
14117 M:      Sanjay R Mehta <sanju.mehta@amd.com>
14118 M:      Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
14119 L:      ntb@lists.linux.dev
14120 S:      Supported
14121 F:      drivers/ntb/hw/amd/
14122
14123 NTB DRIVER CORE
14124 M:      Jon Mason <jdmason@kudzu.us>
14125 M:      Dave Jiang <dave.jiang@intel.com>
14126 M:      Allen Hubbe <allenbh@gmail.com>
14127 L:      ntb@lists.linux.dev
14128 S:      Supported
14129 W:      https://github.com/jonmason/ntb/wiki
14130 T:      git git://github.com/jonmason/ntb.git
14131 F:      drivers/net/ntb_netdev.c
14132 F:      drivers/ntb/
14133 F:      include/linux/ntb.h
14134 F:      include/linux/ntb_transport.h
14135 F:      tools/testing/selftests/ntb/
14136
14137 NTB IDT DRIVER
14138 M:      Serge Semin <fancer.lancer@gmail.com>
14139 L:      ntb@lists.linux.dev
14140 S:      Supported
14141 F:      drivers/ntb/hw/idt/
14142
14143 NTB INTEL DRIVER
14144 M:      Dave Jiang <dave.jiang@intel.com>
14145 L:      ntb@lists.linux.dev
14146 S:      Supported
14147 W:      https://github.com/davejiang/linux/wiki
14148 T:      git https://github.com/davejiang/linux.git
14149 F:      drivers/ntb/hw/intel/
14150
14151 NTFS FILESYSTEM
14152 M:      Anton Altaparmakov <anton@tuxera.com>
14153 L:      linux-ntfs-dev@lists.sourceforge.net
14154 S:      Supported
14155 W:      http://www.tuxera.com/
14156 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
14157 F:      Documentation/filesystems/ntfs.rst
14158 F:      fs/ntfs/
14159
14160 NTFS3 FILESYSTEM
14161 M:      Konstantin Komarov <almaz.alexandrovich@paragon-software.com>
14162 L:      ntfs3@lists.linux.dev
14163 S:      Supported
14164 W:      http://www.paragon-software.com/
14165 T:      git https://github.com/Paragon-Software-Group/linux-ntfs3.git
14166 F:      Documentation/filesystems/ntfs3.rst
14167 F:      fs/ntfs3/
14168
14169 NUBUS SUBSYSTEM
14170 M:      Finn Thain <fthain@linux-m68k.org>
14171 L:      linux-m68k@lists.linux-m68k.org
14172 S:      Maintained
14173 F:      arch/*/include/asm/nubus.h
14174 F:      drivers/nubus/
14175 F:      include/linux/nubus.h
14176 F:      include/uapi/linux/nubus.h
14177
14178 NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
14179 M:      Antonino Daplas <adaplas@gmail.com>
14180 L:      linux-fbdev@vger.kernel.org
14181 S:      Maintained
14182 F:      drivers/video/fbdev/nvidia/
14183 F:      drivers/video/fbdev/riva/
14184
14185 NVIDIA WMI EC BACKLIGHT DRIVER
14186 M:      Daniel Dadap <ddadap@nvidia.com>
14187 L:      platform-driver-x86@vger.kernel.org
14188 S:      Supported
14189 F:      drivers/platform/x86/nvidia-wmi-ec-backlight.c
14190
14191 NVM EXPRESS DRIVER
14192 M:      Keith Busch <kbusch@kernel.org>
14193 M:      Jens Axboe <axboe@fb.com>
14194 M:      Christoph Hellwig <hch@lst.de>
14195 M:      Sagi Grimberg <sagi@grimberg.me>
14196 L:      linux-nvme@lists.infradead.org
14197 S:      Supported
14198 W:      http://git.infradead.org/nvme.git
14199 T:      git://git.infradead.org/nvme.git
14200 F:      drivers/nvme/host/
14201 F:      include/linux/nvme.h
14202 F:      include/uapi/linux/nvme_ioctl.h
14203
14204 NVM EXPRESS FC TRANSPORT DRIVERS
14205 M:      James Smart <james.smart@broadcom.com>
14206 L:      linux-nvme@lists.infradead.org
14207 S:      Supported
14208 F:      drivers/nvme/host/fc.c
14209 F:      drivers/nvme/target/fc.c
14210 F:      drivers/nvme/target/fcloop.c
14211 F:      include/linux/nvme-fc-driver.h
14212 F:      include/linux/nvme-fc.h
14213
14214 NVM EXPRESS TARGET DRIVER
14215 M:      Christoph Hellwig <hch@lst.de>
14216 M:      Sagi Grimberg <sagi@grimberg.me>
14217 M:      Chaitanya Kulkarni <kch@nvidia.com>
14218 L:      linux-nvme@lists.infradead.org
14219 S:      Supported
14220 W:      http://git.infradead.org/nvme.git
14221 T:      git://git.infradead.org/nvme.git
14222 F:      drivers/nvme/target/
14223
14224 NVMEM FRAMEWORK
14225 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
14226 S:      Maintained
14227 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/srini/nvmem.git
14228 F:      Documentation/ABI/stable/sysfs-bus-nvmem
14229 F:      Documentation/devicetree/bindings/nvmem/
14230 F:      drivers/nvmem/
14231 F:      include/linux/nvmem-consumer.h
14232 F:      include/linux/nvmem-provider.h
14233
14234 NXP C45 TJA11XX PHY DRIVER
14235 M:      Radu Pirea <radu-nicolae.pirea@oss.nxp.com>
14236 L:      netdev@vger.kernel.org
14237 S:      Maintained
14238 F:      drivers/net/phy/nxp-c45-tja11xx.c
14239
14240 NXP FSPI DRIVER
14241 M:      Ashish Kumar <ashish.kumar@nxp.com>
14242 R:      Yogesh Gaur <yogeshgaur.83@gmail.com>
14243 L:      linux-spi@vger.kernel.org
14244 S:      Maintained
14245 F:      Documentation/devicetree/bindings/spi/spi-nxp-fspi.yaml
14246 F:      drivers/spi/spi-nxp-fspi.c
14247
14248 NXP FXAS21002C DRIVER
14249 M:      Rui Miguel Silva <rmfrfs@gmail.com>
14250 L:      linux-iio@vger.kernel.org
14251 S:      Maintained
14252 F:      Documentation/devicetree/bindings/iio/gyroscope/nxp,fxas21002c.yaml
14253 F:      drivers/iio/gyro/fxas21002c.h
14254 F:      drivers/iio/gyro/fxas21002c_core.c
14255 F:      drivers/iio/gyro/fxas21002c_i2c.c
14256 F:      drivers/iio/gyro/fxas21002c_spi.c
14257
14258 NXP i.MX CLOCK DRIVERS
14259 M:      Abel Vesa <abel.vesa@nxp.com>
14260 L:      linux-clk@vger.kernel.org
14261 L:      linux-imx@nxp.com
14262 S:      Maintained
14263 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/abelvesa/linux.git clk/imx
14264 F:      Documentation/devicetree/bindings/clock/imx*
14265 F:      drivers/clk/imx/
14266 F:      include/dt-bindings/clock/imx*
14267
14268 NXP i.MX 8MQ DCSS DRIVER
14269 M:      Laurentiu Palcu <laurentiu.palcu@oss.nxp.com>
14270 R:      Lucas Stach <l.stach@pengutronix.de>
14271 L:      dri-devel@lists.freedesktop.org
14272 S:      Maintained
14273 F:      Documentation/devicetree/bindings/display/imx/nxp,imx8mq-dcss.yaml
14274 F:      drivers/gpu/drm/imx/dcss/
14275
14276 NXP i.MX 8QXP ADC DRIVER
14277 M:      Cai Huoqing <cai.huoqing@linux.dev>
14278 M:      Haibo Chen <haibo.chen@nxp.com>
14279 L:      linux-imx@nxp.com
14280 L:      linux-iio@vger.kernel.org
14281 S:      Maintained
14282 F:      Documentation/devicetree/bindings/iio/adc/nxp,imx8qxp-adc.yaml
14283 F:      drivers/iio/adc/imx8qxp-adc.c
14284
14285 NXP i.MX 7D/6SX/6UL AND VF610 ADC DRIVER
14286 M:      Haibo Chen <haibo.chen@nxp.com>
14287 L:      linux-iio@vger.kernel.org
14288 L:      linux-imx@nxp.com
14289 S:      Maintained
14290 F:      Documentation/devicetree/bindings/iio/adc/fsl,imx7d-adc.yaml
14291 F:      Documentation/devicetree/bindings/iio/adc/fsl,vf610-adc.yaml
14292 F:      drivers/iio/adc/imx7d_adc.c
14293 F:      drivers/iio/adc/vf610_adc.c
14294
14295 NXP PF8100/PF8121A/PF8200 PMIC REGULATOR DEVICE DRIVER
14296 M:      Jagan Teki <jagan@amarulasolutions.com>
14297 S:      Maintained
14298 F:      Documentation/devicetree/bindings/regulator/nxp,pf8x00-regulator.yaml
14299 F:      drivers/regulator/pf8x00-regulator.c
14300
14301 NXP PTN5150A CC LOGIC AND EXTCON DRIVER
14302 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
14303 L:      linux-kernel@vger.kernel.org
14304 S:      Maintained
14305 F:      Documentation/devicetree/bindings/extcon/extcon-ptn5150.yaml
14306 F:      drivers/extcon/extcon-ptn5150.c
14307
14308 NXP SGTL5000 DRIVER
14309 M:      Fabio Estevam <festevam@gmail.com>
14310 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
14311 S:      Maintained
14312 F:      Documentation/devicetree/bindings/sound/sgtl5000.yaml
14313 F:      sound/soc/codecs/sgtl5000*
14314
14315 NXP SJA1105 ETHERNET SWITCH DRIVER
14316 M:      Vladimir Oltean <olteanv@gmail.com>
14317 L:      linux-kernel@vger.kernel.org
14318 S:      Maintained
14319 F:      drivers/net/dsa/sja1105
14320 F:      drivers/net/pcs/pcs-xpcs-nxp.c
14321
14322 NXP TDA998X DRM DRIVER
14323 M:      Russell King <linux@armlinux.org.uk>
14324 S:      Maintained
14325 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-devel
14326 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-fixes
14327 F:      drivers/gpu/drm/i2c/tda998x_drv.c
14328 F:      include/drm/i2c/tda998x.h
14329 F:      include/dt-bindings/display/tda998x.h
14330 K:      "nxp,tda998x"
14331
14332 NXP TFA9879 DRIVER
14333 M:      Peter Rosin <peda@axentia.se>
14334 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
14335 S:      Maintained
14336 F:      Documentation/devicetree/bindings/sound/tfa9879.txt
14337 F:      sound/soc/codecs/tfa9879*
14338
14339 NXP/Goodix TFA989X (TFA1) DRIVER
14340 M:      Stephan Gerhold <stephan@gerhold.net>
14341 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
14342 S:      Maintained
14343 F:      Documentation/devicetree/bindings/sound/nxp,tfa989x.yaml
14344 F:      sound/soc/codecs/tfa989x.c
14345
14346 NXP-NCI NFC DRIVER
14347 R:      Charles Gorand <charles.gorand@effinnov.com>
14348 L:      linux-nfc@lists.01.org (subscribers-only)
14349 S:      Supported
14350 F:      Documentation/devicetree/bindings/net/nfc/nxp,nci.yaml
14351 F:      drivers/nfc/nxp-nci
14352
14353 NXP i.MX 8QXP/8QM JPEG V4L2 DRIVER
14354 M:      Mirela Rabulea <mirela.rabulea@nxp.com>
14355 R:      NXP Linux Team <linux-imx@nxp.com>
14356 L:      linux-media@vger.kernel.org
14357 S:      Maintained
14358 F:      Documentation/devicetree/bindings/media/nxp,imx8-jpeg.yaml
14359 F:      drivers/media/platform/nxp/imx-jpeg
14360
14361 NZXT-KRAKEN2 HARDWARE MONITORING DRIVER
14362 M:      Jonas Malaco <jonas@protocubo.io>
14363 L:      linux-hwmon@vger.kernel.org
14364 S:      Maintained
14365 F:      Documentation/hwmon/nzxt-kraken2.rst
14366 F:      drivers/hwmon/nzxt-kraken2.c
14367
14368 NZXT-SMART2 HARDWARE MONITORING DRIVER
14369 M:      Aleksandr Mezin <mezin.alexander@gmail.com>
14370 L:      linux-hwmon@vger.kernel.org
14371 S:      Maintained
14372 F:      Documentation/hwmon/nzxt-smart2.rst
14373 F:      drivers/hwmon/nzxt-smart2.c
14374
14375 OBJAGG
14376 M:      Jiri Pirko <jiri@nvidia.com>
14377 L:      netdev@vger.kernel.org
14378 S:      Supported
14379 F:      include/linux/objagg.h
14380 F:      lib/objagg.c
14381 F:      lib/test_objagg.c
14382
14383 OBJTOOL
14384 M:      Josh Poimboeuf <jpoimboe@kernel.org>
14385 M:      Peter Zijlstra <peterz@infradead.org>
14386 S:      Supported
14387 F:      tools/objtool/
14388 F:      include/linux/objtool.h
14389
14390 OCELOT ETHERNET SWITCH DRIVER
14391 M:      Vladimir Oltean <vladimir.oltean@nxp.com>
14392 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
14393 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
14394 M:      UNGLinuxDriver@microchip.com
14395 L:      netdev@vger.kernel.org
14396 S:      Supported
14397 F:      drivers/net/dsa/ocelot/*
14398 F:      drivers/net/ethernet/mscc/
14399 F:      include/soc/mscc/ocelot*
14400 F:      net/dsa/tag_ocelot.c
14401 F:      net/dsa/tag_ocelot_8021q.c
14402 F:      tools/testing/selftests/drivers/net/ocelot/*
14403
14404 OCXL (Open Coherent Accelerator Processor Interface OpenCAPI) DRIVER
14405 M:      Frederic Barrat <fbarrat@linux.ibm.com>
14406 M:      Andrew Donnellan <ajd@linux.ibm.com>
14407 L:      linuxppc-dev@lists.ozlabs.org
14408 S:      Supported
14409 F:      Documentation/userspace-api/accelerators/ocxl.rst
14410 F:      arch/powerpc/include/asm/pnv-ocxl.h
14411 F:      arch/powerpc/platforms/powernv/ocxl.c
14412 F:      drivers/misc/ocxl/
14413 F:      include/misc/ocxl*
14414 F:      include/uapi/misc/ocxl.h
14415
14416 OMAP AUDIO SUPPORT
14417 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
14418 M:      Jarkko Nikula <jarkko.nikula@bitmer.com>
14419 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
14420 L:      linux-omap@vger.kernel.org
14421 S:      Maintained
14422 F:      sound/soc/ti/n810.c
14423 F:      sound/soc/ti/omap*
14424 F:      sound/soc/ti/rx51.c
14425 F:      sound/soc/ti/sdma-pcm.*
14426
14427 OMAP CLOCK FRAMEWORK SUPPORT
14428 M:      Paul Walmsley <paul@pwsan.com>
14429 L:      linux-omap@vger.kernel.org
14430 S:      Maintained
14431 F:      arch/arm/*omap*/*clock*
14432
14433 OMAP DEVICE TREE SUPPORT
14434 M:      Benoît Cousson <bcousson@baylibre.com>
14435 M:      Tony Lindgren <tony@atomide.com>
14436 L:      linux-omap@vger.kernel.org
14437 L:      devicetree@vger.kernel.org
14438 S:      Maintained
14439 F:      arch/arm/boot/dts/*am3*
14440 F:      arch/arm/boot/dts/*am4*
14441 F:      arch/arm/boot/dts/*am5*
14442 F:      arch/arm/boot/dts/*dra7*
14443 F:      arch/arm/boot/dts/*omap*
14444 F:      arch/arm/boot/dts/logicpd-som-lv*
14445 F:      arch/arm/boot/dts/logicpd-torpedo*
14446
14447 OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
14448 L:      linux-omap@vger.kernel.org
14449 L:      linux-fbdev@vger.kernel.org
14450 S:      Orphan
14451 F:      Documentation/arm/omap/dss.rst
14452 F:      drivers/video/fbdev/omap2/
14453
14454 OMAP FRAMEBUFFER SUPPORT
14455 L:      linux-fbdev@vger.kernel.org
14456 L:      linux-omap@vger.kernel.org
14457 S:      Orphan
14458 F:      drivers/video/fbdev/omap/
14459
14460 OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT
14461 M:      Roger Quadros <rogerq@kernel.org>
14462 M:      Tony Lindgren <tony@atomide.com>
14463 L:      linux-omap@vger.kernel.org
14464 S:      Maintained
14465 F:      arch/arm/mach-omap2/*gpmc*
14466 F:      drivers/memory/omap-gpmc.c
14467
14468 OMAP GPIO DRIVER
14469 M:      Grygorii Strashko <grygorii.strashko@ti.com>
14470 M:      Santosh Shilimkar <ssantosh@kernel.org>
14471 M:      Kevin Hilman <khilman@kernel.org>
14472 L:      linux-omap@vger.kernel.org
14473 S:      Maintained
14474 F:      Documentation/devicetree/bindings/gpio/ti,omap-gpio.yaml
14475 F:      drivers/gpio/gpio-omap.c
14476
14477 OMAP HARDWARE SPINLOCK SUPPORT
14478 M:      Ohad Ben-Cohen <ohad@wizery.com>
14479 L:      linux-omap@vger.kernel.org
14480 S:      Maintained
14481 F:      drivers/hwspinlock/omap_hwspinlock.c
14482
14483 OMAP HS MMC SUPPORT
14484 L:      linux-mmc@vger.kernel.org
14485 L:      linux-omap@vger.kernel.org
14486 S:      Orphan
14487 F:      drivers/mmc/host/omap_hsmmc.c
14488
14489 OMAP HWMOD DATA
14490 M:      Paul Walmsley <paul@pwsan.com>
14491 L:      linux-omap@vger.kernel.org
14492 S:      Maintained
14493 F:      arch/arm/mach-omap2/omap_hwmod*data*
14494
14495 OMAP HWMOD SUPPORT
14496 M:      Benoît Cousson <bcousson@baylibre.com>
14497 M:      Paul Walmsley <paul@pwsan.com>
14498 L:      linux-omap@vger.kernel.org
14499 S:      Maintained
14500 F:      arch/arm/mach-omap2/omap_hwmod.*
14501
14502 OMAP I2C DRIVER
14503 M:      Vignesh R <vigneshr@ti.com>
14504 L:      linux-omap@vger.kernel.org
14505 L:      linux-i2c@vger.kernel.org
14506 S:      Maintained
14507 F:      Documentation/devicetree/bindings/i2c/ti,omap4-i2c.yaml
14508 F:      drivers/i2c/busses/i2c-omap.c
14509
14510 OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS)
14511 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
14512 L:      linux-media@vger.kernel.org
14513 S:      Maintained
14514 F:      Documentation/devicetree/bindings/media/ti,omap3isp.txt
14515 F:      drivers/media/platform/ti/omap3isp/
14516 F:      drivers/staging/media/omap4iss/
14517
14518 OMAP MMC SUPPORT
14519 M:      Aaro Koskinen <aaro.koskinen@iki.fi>
14520 L:      linux-omap@vger.kernel.org
14521 S:      Odd Fixes
14522 F:      drivers/mmc/host/omap.c
14523
14524 OMAP POWER MANAGEMENT SUPPORT
14525 M:      Kevin Hilman <khilman@kernel.org>
14526 L:      linux-omap@vger.kernel.org
14527 S:      Maintained
14528 F:      arch/arm/*omap*/*pm*
14529 F:      drivers/cpufreq/omap-cpufreq.c
14530
14531 OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT
14532 M:      Paul Walmsley <paul@pwsan.com>
14533 L:      linux-omap@vger.kernel.org
14534 S:      Maintained
14535 F:      arch/arm/mach-omap2/prm*
14536
14537 OMAP RANDOM NUMBER GENERATOR SUPPORT
14538 M:      Deepak Saxena <dsaxena@plexity.net>
14539 S:      Maintained
14540 F:      drivers/char/hw_random/omap-rng.c
14541
14542 OMAP USB SUPPORT
14543 L:      linux-usb@vger.kernel.org
14544 L:      linux-omap@vger.kernel.org
14545 S:      Orphan
14546 F:      arch/arm/*omap*/usb*
14547 F:      drivers/usb/*/*omap*
14548
14549 OMAP/NEWFLOW NANOBONE MACHINE SUPPORT
14550 M:      Mark Jackson <mpfj@newflow.co.uk>
14551 L:      linux-omap@vger.kernel.org
14552 S:      Maintained
14553 F:      arch/arm/boot/dts/am335x-nano.dts
14554
14555 OMAP1 SUPPORT
14556 M:      Aaro Koskinen <aaro.koskinen@iki.fi>
14557 M:      Janusz Krzysztofik <jmkrzyszt@gmail.com>
14558 M:      Tony Lindgren <tony@atomide.com>
14559 L:      linux-omap@vger.kernel.org
14560 S:      Maintained
14561 Q:      http://patchwork.kernel.org/project/linux-omap/list/
14562 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
14563 F:      arch/arm/configs/omap1_defconfig
14564 F:      arch/arm/mach-omap1/
14565 F:      arch/arm/plat-omap/
14566 F:      drivers/i2c/busses/i2c-omap.c
14567 F:      include/linux/platform_data/ams-delta-fiq.h
14568 F:      include/linux/platform_data/i2c-omap.h
14569
14570 OMAP2+ SUPPORT
14571 M:      Tony Lindgren <tony@atomide.com>
14572 L:      linux-omap@vger.kernel.org
14573 S:      Maintained
14574 W:      http://www.muru.com/linux/omap/
14575 W:      http://linux.omap.com/
14576 Q:      http://patchwork.kernel.org/project/linux-omap/list/
14577 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
14578 F:      arch/arm/configs/omap2plus_defconfig
14579 F:      arch/arm/mach-omap2/
14580 F:      arch/arm/plat-omap/
14581 F:      drivers/bus/ti-sysc.c
14582 F:      drivers/i2c/busses/i2c-omap.c
14583 F:      drivers/irqchip/irq-omap-intc.c
14584 F:      drivers/mfd/*omap*.c
14585 F:      drivers/mfd/menelaus.c
14586 F:      drivers/mfd/palmas.c
14587 F:      drivers/mfd/tps65217.c
14588 F:      drivers/mfd/tps65218.c
14589 F:      drivers/mfd/tps65910.c
14590 F:      drivers/mfd/twl-core.[ch]
14591 F:      drivers/mfd/twl4030*.c
14592 F:      drivers/mfd/twl6030*.c
14593 F:      drivers/mfd/twl6040*.c
14594 F:      drivers/regulator/palmas-regulator*.c
14595 F:      drivers/regulator/pbias-regulator.c
14596 F:      drivers/regulator/tps65217-regulator.c
14597 F:      drivers/regulator/tps65218-regulator.c
14598 F:      drivers/regulator/tps65910-regulator.c
14599 F:      drivers/regulator/twl-regulator.c
14600 F:      drivers/regulator/twl6030-regulator.c
14601 F:      include/linux/platform_data/i2c-omap.h
14602 F:      include/linux/platform_data/ti-sysc.h
14603
14604 OMFS FILESYSTEM
14605 M:      Bob Copeland <me@bobcopeland.com>
14606 L:      linux-karma-devel@lists.sourceforge.net
14607 S:      Maintained
14608 F:      Documentation/filesystems/omfs.rst
14609 F:      fs/omfs/
14610
14611 OMNIKEY CARDMAN 4000 DRIVER
14612 M:      Harald Welte <laforge@gnumonks.org>
14613 S:      Maintained
14614 F:      drivers/char/pcmcia/cm4000_cs.c
14615 F:      include/linux/cm4000_cs.h
14616 F:      include/uapi/linux/cm4000_cs.h
14617
14618 OMNIKEY CARDMAN 4040 DRIVER
14619 M:      Harald Welte <laforge@gnumonks.org>
14620 S:      Maintained
14621 F:      drivers/char/pcmcia/cm4040_cs.*
14622
14623 OMNIVISION OG01A1B SENSOR DRIVER
14624 M:      Shawn Tu <shawnx.tu@intel.com>
14625 L:      linux-media@vger.kernel.org
14626 S:      Maintained
14627 F:      drivers/media/i2c/og01a1b.c
14628
14629 OMNIVISION OV02A10 SENSOR DRIVER
14630 M:      Dongchun Zhu <dongchun.zhu@mediatek.com>
14631 L:      linux-media@vger.kernel.org
14632 S:      Maintained
14633 T:      git git://linuxtv.org/media_tree.git
14634 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov02a10.yaml
14635 F:      drivers/media/i2c/ov02a10.c
14636
14637 OMNIVISION OV08D10 SENSOR DRIVER
14638 M:      Jimmy Su <jimmy.su@intel.com>
14639 L:      linux-media@vger.kernel.org
14640 S:      Maintained
14641 T:      git git://linuxtv.org/media_tree.git
14642 F:      drivers/media/i2c/ov08d10.c
14643
14644 OMNIVISION OV13858 SENSOR DRIVER
14645 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
14646 L:      linux-media@vger.kernel.org
14647 S:      Maintained
14648 T:      git git://linuxtv.org/media_tree.git
14649 F:      drivers/media/i2c/ov13858.c
14650
14651 OMNIVISION OV13B10 SENSOR DRIVER
14652 M:      Arec Kao <arec.kao@intel.com>
14653 L:      linux-media@vger.kernel.org
14654 S:      Maintained
14655 T:      git git://linuxtv.org/media_tree.git
14656 F:      drivers/media/i2c/ov13b10.c
14657
14658 OMNIVISION OV2680 SENSOR DRIVER
14659 M:      Rui Miguel Silva <rmfrfs@gmail.com>
14660 L:      linux-media@vger.kernel.org
14661 S:      Maintained
14662 T:      git git://linuxtv.org/media_tree.git
14663 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov2680.yaml
14664 F:      drivers/media/i2c/ov2680.c
14665
14666 OMNIVISION OV2685 SENSOR DRIVER
14667 M:      Shunqian Zheng <zhengsq@rock-chips.com>
14668 L:      linux-media@vger.kernel.org
14669 S:      Maintained
14670 T:      git git://linuxtv.org/media_tree.git
14671 F:      drivers/media/i2c/ov2685.c
14672
14673 OMNIVISION OV2740 SENSOR DRIVER
14674 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
14675 R:      Shawn Tu <shawnx.tu@intel.com>
14676 R:      Bingbu Cao <bingbu.cao@intel.com>
14677 L:      linux-media@vger.kernel.org
14678 S:      Maintained
14679 T:      git git://linuxtv.org/media_tree.git
14680 F:      drivers/media/i2c/ov2740.c
14681
14682 OMNIVISION OV5640 SENSOR DRIVER
14683 M:      Steve Longerbeam <slongerbeam@gmail.com>
14684 L:      linux-media@vger.kernel.org
14685 S:      Maintained
14686 T:      git git://linuxtv.org/media_tree.git
14687 F:      drivers/media/i2c/ov5640.c
14688
14689 OMNIVISION OV5647 SENSOR DRIVER
14690 M:      Dave Stevenson <dave.stevenson@raspberrypi.com>
14691 M:      Jacopo Mondi <jacopo@jmondi.org>
14692 L:      linux-media@vger.kernel.org
14693 S:      Maintained
14694 T:      git git://linuxtv.org/media_tree.git
14695 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov5647.yaml
14696 F:      drivers/media/i2c/ov5647.c
14697
14698 OMNIVISION OV5670 SENSOR DRIVER
14699 M:      Chiranjeevi Rapolu <chiranjeevi.rapolu@intel.com>
14700 L:      linux-media@vger.kernel.org
14701 S:      Maintained
14702 T:      git git://linuxtv.org/media_tree.git
14703 F:      drivers/media/i2c/ov5670.c
14704
14705 OMNIVISION OV5675 SENSOR DRIVER
14706 M:      Shawn Tu <shawnx.tu@intel.com>
14707 L:      linux-media@vger.kernel.org
14708 S:      Maintained
14709 T:      git git://linuxtv.org/media_tree.git
14710 F:      drivers/media/i2c/ov5675.c
14711
14712 OMNIVISION OV5693 SENSOR DRIVER
14713 M:      Daniel Scally <djrscally@gmail.com>
14714 L:      linux-media@vger.kernel.org
14715 S:      Maintained
14716 T:      git git://linuxtv.org/media_tree.git
14717 F:      drivers/media/i2c/ov5693.c
14718
14719 OMNIVISION OV5695 SENSOR DRIVER
14720 M:      Shunqian Zheng <zhengsq@rock-chips.com>
14721 L:      linux-media@vger.kernel.org
14722 S:      Maintained
14723 T:      git git://linuxtv.org/media_tree.git
14724 F:      drivers/media/i2c/ov5695.c
14725
14726 OMNIVISION OV7670 SENSOR DRIVER
14727 L:      linux-media@vger.kernel.org
14728 S:      Orphan
14729 T:      git git://linuxtv.org/media_tree.git
14730 F:      Documentation/devicetree/bindings/media/i2c/ov7670.txt
14731 F:      drivers/media/i2c/ov7670.c
14732
14733 OMNIVISION OV772x SENSOR DRIVER
14734 M:      Jacopo Mondi <jacopo@jmondi.org>
14735 L:      linux-media@vger.kernel.org
14736 S:      Odd fixes
14737 T:      git git://linuxtv.org/media_tree.git
14738 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov772x.yaml
14739 F:      drivers/media/i2c/ov772x.c
14740 F:      include/media/i2c/ov772x.h
14741
14742 OMNIVISION OV7740 SENSOR DRIVER
14743 M:      Wenyou Yang <wenyou.yang@microchip.com>
14744 L:      linux-media@vger.kernel.org
14745 S:      Maintained
14746 T:      git git://linuxtv.org/media_tree.git
14747 F:      Documentation/devicetree/bindings/media/i2c/ov7740.txt
14748 F:      drivers/media/i2c/ov7740.c
14749
14750 OMNIVISION OV8856 SENSOR DRIVER
14751 M:      Dongchun Zhu <dongchun.zhu@mediatek.com>
14752 L:      linux-media@vger.kernel.org
14753 S:      Maintained
14754 T:      git git://linuxtv.org/media_tree.git
14755 F:      Documentation/devicetree/bindings/media/i2c/ov8856.yaml
14756 F:      drivers/media/i2c/ov8856.c
14757
14758 OMNIVISION OV9282 SENSOR DRIVER
14759 M:      Paul J. Murphy <paul.j.murphy@intel.com>
14760 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
14761 L:      linux-media@vger.kernel.org
14762 S:      Maintained
14763 T:      git git://linuxtv.org/media_tree.git
14764 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov9282.yaml
14765 F:      drivers/media/i2c/ov9282.c
14766
14767 OMNIVISION OV9640 SENSOR DRIVER
14768 M:      Petr Cvek <petrcvekcz@gmail.com>
14769 L:      linux-media@vger.kernel.org
14770 S:      Maintained
14771 F:      drivers/media/i2c/ov9640.*
14772
14773 OMNIVISION OV9650 SENSOR DRIVER
14774 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
14775 R:      Akinobu Mita <akinobu.mita@gmail.com>
14776 R:      Sylwester Nawrocki <s.nawrocki@samsung.com>
14777 L:      linux-media@vger.kernel.org
14778 S:      Maintained
14779 T:      git git://linuxtv.org/media_tree.git
14780 F:      Documentation/devicetree/bindings/media/i2c/ov9650.txt
14781 F:      drivers/media/i2c/ov9650.c
14782
14783 OMNIVISION OV9734 SENSOR DRIVER
14784 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
14785 R:      Bingbu Cao <bingbu.cao@intel.com>
14786 L:      linux-media@vger.kernel.org
14787 S:      Maintained
14788 T:      git git://linuxtv.org/media_tree.git
14789 F:      drivers/media/i2c/ov9734.c
14790
14791 ONENAND FLASH DRIVER
14792 M:      Kyungmin Park <kyungmin.park@samsung.com>
14793 L:      linux-mtd@lists.infradead.org
14794 S:      Maintained
14795 F:      drivers/mtd/nand/onenand/
14796 F:      include/linux/mtd/onenand*.h
14797
14798 ONION OMEGA2+ BOARD
14799 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
14800 L:      linux-mips@vger.kernel.org
14801 S:      Maintained
14802 F:      arch/mips/boot/dts/ralink/omega2p.dts
14803
14804 OP-TEE DRIVER
14805 M:      Jens Wiklander <jens.wiklander@linaro.org>
14806 L:      op-tee@lists.trustedfirmware.org
14807 S:      Maintained
14808 F:      Documentation/ABI/testing/sysfs-bus-optee-devices
14809 F:      drivers/tee/optee/
14810
14811 OP-TEE RANDOM NUMBER GENERATOR (RNG) DRIVER
14812 M:      Sumit Garg <sumit.garg@linaro.org>
14813 L:      op-tee@lists.trustedfirmware.org
14814 S:      Maintained
14815 F:      drivers/char/hw_random/optee-rng.c
14816
14817 OP-TEE RTC DRIVER
14818 M:      Clément Léger <clement.leger@bootlin.com>
14819 L:      linux-rtc@vger.kernel.org
14820 S:      Maintained
14821 F:      drivers/rtc/rtc-optee.c
14822
14823 OPA-VNIC DRIVER
14824 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
14825 L:      linux-rdma@vger.kernel.org
14826 S:      Supported
14827 F:      drivers/infiniband/ulp/opa_vnic
14828
14829 OPEN FIRMWARE AND DEVICE TREE OVERLAYS
14830 M:      Pantelis Antoniou <pantelis.antoniou@konsulko.com>
14831 M:      Frank Rowand <frowand.list@gmail.com>
14832 L:      devicetree@vger.kernel.org
14833 S:      Maintained
14834 F:      Documentation/devicetree/dynamic-resolution-notes.rst
14835 F:      Documentation/devicetree/overlay-notes.rst
14836 F:      drivers/of/overlay.c
14837 F:      drivers/of/resolver.c
14838 K:      of_overlay_notifier_
14839
14840 OPEN FIRMWARE AND FLATTENED DEVICE TREE
14841 M:      Rob Herring <robh+dt@kernel.org>
14842 M:      Frank Rowand <frowand.list@gmail.com>
14843 L:      devicetree@vger.kernel.org
14844 S:      Maintained
14845 C:      irc://irc.libera.chat/devicetree
14846 W:      http://www.devicetree.org/
14847 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
14848 F:      Documentation/ABI/testing/sysfs-firmware-ofw
14849 F:      drivers/of/
14850 F:      include/linux/of*.h
14851 F:      scripts/dtc/
14852
14853 OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
14854 M:      Rob Herring <robh+dt@kernel.org>
14855 M:      Krzysztof Kozlowski <krzysztof.kozlowski+dt@linaro.org>
14856 L:      devicetree@vger.kernel.org
14857 S:      Maintained
14858 C:      irc://irc.libera.chat/devicetree
14859 Q:      http://patchwork.ozlabs.org/project/devicetree-bindings/list/
14860 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
14861 F:      Documentation/devicetree/
14862 F:      arch/*/boot/dts/
14863 F:      include/dt-bindings/
14864
14865 OPENCOMPUTE PTP CLOCK DRIVER
14866 M:      Jonathan Lemon <jonathan.lemon@gmail.com>
14867 L:      netdev@vger.kernel.org
14868 S:      Maintained
14869 F:      drivers/ptp/ptp_ocp.c
14870
14871 OPENCORES I2C BUS DRIVER
14872 M:      Peter Korsgaard <peter@korsgaard.com>
14873 M:      Andrew Lunn <andrew@lunn.ch>
14874 L:      linux-i2c@vger.kernel.org
14875 S:      Maintained
14876 F:      Documentation/devicetree/bindings/i2c/i2c-ocores.txt
14877 F:      Documentation/i2c/busses/i2c-ocores.rst
14878 F:      drivers/i2c/busses/i2c-ocores.c
14879 F:      include/linux/platform_data/i2c-ocores.h
14880
14881 OPENRISC ARCHITECTURE
14882 M:      Jonas Bonn <jonas@southpole.se>
14883 M:      Stefan Kristiansson <stefan.kristiansson@saunalahti.fi>
14884 M:      Stafford Horne <shorne@gmail.com>
14885 L:      openrisc@lists.librecores.org
14886 S:      Maintained
14887 W:      http://openrisc.io
14888 T:      git git://github.com/openrisc/linux.git
14889 F:      Documentation/devicetree/bindings/openrisc/
14890 F:      Documentation/openrisc/
14891 F:      arch/openrisc/
14892 F:      drivers/irqchip/irq-ompic.c
14893 F:      drivers/irqchip/irq-or1k-*
14894
14895 OPENVSWITCH
14896 M:      Pravin B Shelar <pshelar@ovn.org>
14897 L:      netdev@vger.kernel.org
14898 L:      dev@openvswitch.org
14899 S:      Maintained
14900 W:      http://openvswitch.org
14901 F:      include/uapi/linux/openvswitch.h
14902 F:      net/openvswitch/
14903
14904 OPERATING PERFORMANCE POINTS (OPP)
14905 M:      Viresh Kumar <vireshk@kernel.org>
14906 M:      Nishanth Menon <nm@ti.com>
14907 M:      Stephen Boyd <sboyd@kernel.org>
14908 L:      linux-pm@vger.kernel.org
14909 S:      Maintained
14910 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git
14911 F:      Documentation/devicetree/bindings/opp/
14912 F:      Documentation/power/opp.rst
14913 F:      drivers/opp/
14914 F:      include/linux/pm_opp.h
14915
14916 OPL4 DRIVER
14917 M:      Clemens Ladisch <clemens@ladisch.de>
14918 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
14919 S:      Maintained
14920 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
14921 F:      sound/drivers/opl4/
14922
14923 ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
14924 M:      Mark Fasheh <mark@fasheh.com>
14925 M:      Joel Becker <jlbec@evilplan.org>
14926 M:      Joseph Qi <joseph.qi@linux.alibaba.com>
14927 L:      ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
14928 S:      Supported
14929 W:      http://ocfs2.wiki.kernel.org
14930 F:      Documentation/filesystems/dlmfs.rst
14931 F:      Documentation/filesystems/ocfs2.rst
14932 F:      fs/ocfs2/
14933
14934 ORANGEFS FILESYSTEM
14935 M:      Mike Marshall <hubcap@omnibond.com>
14936 R:      Martin Brandenburg <martin@omnibond.com>
14937 L:      devel@lists.orangefs.org
14938 S:      Supported
14939 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hubcap/linux.git
14940 F:      Documentation/filesystems/orangefs.rst
14941 F:      fs/orangefs/
14942
14943 ORINOCO DRIVER
14944 L:      linux-wireless@vger.kernel.org
14945 S:      Orphan
14946 W:      https://wireless.wiki.kernel.org/en/users/Drivers/orinoco
14947 W:      http://www.nongnu.org/orinoco/
14948 F:      drivers/net/wireless/intersil/orinoco/
14949
14950 OV2659 OMNIVISION SENSOR DRIVER
14951 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
14952 L:      linux-media@vger.kernel.org
14953 S:      Maintained
14954 W:      https://linuxtv.org
14955 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14956 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
14957 F:      drivers/media/i2c/ov2659.c
14958 F:      include/media/i2c/ov2659.h
14959
14960 OVERLAY FILESYSTEM
14961 M:      Miklos Szeredi <miklos@szeredi.hu>
14962 L:      linux-unionfs@vger.kernel.org
14963 S:      Supported
14964 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git
14965 F:      Documentation/filesystems/overlayfs.rst
14966 F:      fs/overlayfs/
14967
14968 P54 WIRELESS DRIVER
14969 M:      Christian Lamparter <chunkeey@googlemail.com>
14970 L:      linux-wireless@vger.kernel.org
14971 S:      Maintained
14972 W:      https://wireless.wiki.kernel.org/en/users/Drivers/p54
14973 F:      drivers/net/wireless/intersil/p54/
14974
14975 PACKING
14976 M:      Vladimir Oltean <olteanv@gmail.com>
14977 L:      netdev@vger.kernel.org
14978 S:      Supported
14979 F:      Documentation/core-api/packing.rst
14980 F:      include/linux/packing.h
14981 F:      lib/packing.c
14982
14983 PADATA PARALLEL EXECUTION MECHANISM
14984 M:      Steffen Klassert <steffen.klassert@secunet.com>
14985 M:      Daniel Jordan <daniel.m.jordan@oracle.com>
14986 L:      linux-crypto@vger.kernel.org
14987 L:      linux-kernel@vger.kernel.org
14988 S:      Maintained
14989 F:      Documentation/core-api/padata.rst
14990 F:      include/linux/padata.h
14991 F:      kernel/padata.c
14992
14993 PAGE CACHE
14994 M:      Matthew Wilcox (Oracle) <willy@infradead.org>
14995 L:      linux-fsdevel@vger.kernel.org
14996 S:      Supported
14997 T:      git git://git.infradead.org/users/willy/pagecache.git
14998 F:      Documentation/filesystems/locking.rst
14999 F:      Documentation/filesystems/vfs.rst
15000 F:      include/linux/pagemap.h
15001 F:      mm/filemap.c
15002 F:      mm/page-writeback.c
15003 F:      mm/readahead.c
15004 F:      mm/truncate.c
15005
15006 PAGE POOL
15007 M:      Jesper Dangaard Brouer <hawk@kernel.org>
15008 M:      Ilias Apalodimas <ilias.apalodimas@linaro.org>
15009 L:      netdev@vger.kernel.org
15010 S:      Supported
15011 F:      Documentation/networking/page_pool.rst
15012 F:      include/net/page_pool.h
15013 F:      include/trace/events/page_pool.h
15014 F:      net/core/page_pool.c
15015
15016 PAGE TABLE CHECK
15017 M:      Pasha Tatashin <pasha.tatashin@soleen.com>
15018 M:      Andrew Morton <akpm@linux-foundation.org>
15019 L:      linux-mm@kvack.org
15020 S:      Maintained
15021 F:      Documentation/vm/page_table_check.rst
15022 F:      include/linux/page_table_check.h
15023 F:      mm/page_table_check.c
15024
15025 PANASONIC LAPTOP ACPI EXTRAS DRIVER
15026 M:      Kenneth Chan <kenneth.t.chan@gmail.com>
15027 L:      platform-driver-x86@vger.kernel.org
15028 S:      Maintained
15029 F:      drivers/platform/x86/panasonic-laptop.c
15030
15031 PARALLAX PING IIO SENSOR DRIVER
15032 M:      Andreas Klinger <ak@it-klinger.de>
15033 L:      linux-iio@vger.kernel.org
15034 S:      Maintained
15035 F:      Documentation/devicetree/bindings/iio/proximity/parallax-ping.yaml
15036 F:      drivers/iio/proximity/ping.c
15037
15038 PARALLEL LCD/KEYPAD PANEL DRIVER
15039 M:      Willy Tarreau <willy@haproxy.com>
15040 M:      Ksenija Stanojevic <ksenija.stanojevic@gmail.com>
15041 S:      Odd Fixes
15042 F:      Documentation/admin-guide/lcd-panel-cgram.rst
15043 F:      drivers/auxdisplay/panel.c
15044
15045 PARALLEL PORT SUBSYSTEM
15046 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
15047 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
15048 L:      linux-parport@lists.infradead.org (subscribers-only)
15049 S:      Maintained
15050 F:      Documentation/driver-api/parport*.rst
15051 F:      drivers/char/ppdev.c
15052 F:      drivers/parport/
15053 F:      include/linux/parport*.h
15054 F:      include/uapi/linux/ppdev.h
15055
15056 PARAVIRT_OPS INTERFACE
15057 M:      Juergen Gross <jgross@suse.com>
15058 M:      Srivatsa S. Bhat (VMware) <srivatsa@csail.mit.edu>
15059 R:      Alexey Makhalov <amakhalov@vmware.com>
15060 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
15061 L:      virtualization@lists.linux-foundation.org
15062 L:      x86@kernel.org
15063 S:      Supported
15064 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
15065 F:      Documentation/virt/paravirt_ops.rst
15066 F:      arch/*/include/asm/paravirt*.h
15067 F:      arch/*/kernel/paravirt*
15068 F:      include/linux/hypervisor.h
15069
15070 PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
15071 M:      Tim Waugh <tim@cyberelk.net>
15072 L:      linux-parport@lists.infradead.org (subscribers-only)
15073 S:      Maintained
15074 F:      Documentation/admin-guide/blockdev/paride.rst
15075 F:      drivers/block/paride/
15076
15077 PARISC ARCHITECTURE
15078 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
15079 M:      Helge Deller <deller@gmx.de>
15080 L:      linux-parisc@vger.kernel.org
15081 S:      Maintained
15082 W:      https://parisc.wiki.kernel.org
15083 Q:      http://patchwork.kernel.org/project/linux-parisc/list/
15084 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
15085 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git
15086 F:      Documentation/parisc/
15087 F:      arch/parisc/
15088 F:      drivers/char/agp/parisc-agp.c
15089 F:      drivers/input/misc/hp_sdc_rtc.c
15090 F:      drivers/input/serio/gscps2.c
15091 F:      drivers/input/serio/hp_sdc*
15092 F:      drivers/parisc/
15093 F:      drivers/parport/parport_gsc.*
15094 F:      drivers/tty/serial/8250/8250_gsc.c
15095 F:      drivers/video/console/sti*
15096 F:      drivers/video/fbdev/sti*
15097 F:      drivers/video/logo/logo_parisc*
15098 F:      include/linux/hp_sdc.h
15099
15100 PARMAN
15101 M:      Jiri Pirko <jiri@nvidia.com>
15102 L:      netdev@vger.kernel.org
15103 S:      Supported
15104 F:      include/linux/parman.h
15105 F:      lib/parman.c
15106 F:      lib/test_parman.c
15107
15108 PC ENGINES APU BOARD DRIVER
15109 M:      Enrico Weigelt, metux IT consult <info@metux.net>
15110 S:      Maintained
15111 F:      drivers/platform/x86/pcengines-apuv2.c
15112
15113 PC87360 HARDWARE MONITORING DRIVER
15114 M:      Jim Cromie <jim.cromie@gmail.com>
15115 L:      linux-hwmon@vger.kernel.org
15116 S:      Maintained
15117 F:      Documentation/hwmon/pc87360.rst
15118 F:      drivers/hwmon/pc87360.c
15119
15120 PC8736x GPIO DRIVER
15121 M:      Jim Cromie <jim.cromie@gmail.com>
15122 S:      Maintained
15123 F:      drivers/char/pc8736x_gpio.c
15124
15125 PC87427 HARDWARE MONITORING DRIVER
15126 M:      Jean Delvare <jdelvare@suse.com>
15127 L:      linux-hwmon@vger.kernel.org
15128 S:      Maintained
15129 F:      Documentation/hwmon/pc87427.rst
15130 F:      drivers/hwmon/pc87427.c
15131
15132 PCA9532 LED DRIVER
15133 M:      Riku Voipio <riku.voipio@iki.fi>
15134 S:      Maintained
15135 F:      drivers/leds/leds-pca9532.c
15136 F:      include/linux/leds-pca9532.h
15137
15138 PCA9541 I2C BUS MASTER SELECTOR DRIVER
15139 M:      Guenter Roeck <linux@roeck-us.net>
15140 L:      linux-i2c@vger.kernel.org
15141 S:      Maintained
15142 F:      drivers/i2c/muxes/i2c-mux-pca9541.c
15143
15144 PCDP - PRIMARY CONSOLE AND DEBUG PORT
15145 M:      Khalid Aziz <khalid@gonehiking.org>
15146 S:      Maintained
15147 F:      drivers/firmware/pcdp.*
15148
15149 PCI DRIVER FOR AARDVARK (Marvell Armada 3700)
15150 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
15151 M:      Pali Rohár <pali@kernel.org>
15152 L:      linux-pci@vger.kernel.org
15153 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15154 S:      Maintained
15155 F:      Documentation/devicetree/bindings/pci/aardvark-pci.txt
15156 F:      drivers/pci/controller/pci-aardvark.c
15157
15158 PCI DRIVER FOR ALTERA PCIE IP
15159 M:      Joyce Ooi <joyce.ooi@intel.com>
15160 L:      linux-pci@vger.kernel.org
15161 S:      Supported
15162 F:      Documentation/devicetree/bindings/pci/altera-pcie.txt
15163 F:      drivers/pci/controller/pcie-altera.c
15164
15165 PCI DRIVER FOR APPLIEDMICRO XGENE
15166 M:      Toan Le <toan@os.amperecomputing.com>
15167 L:      linux-pci@vger.kernel.org
15168 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15169 S:      Maintained
15170 F:      Documentation/devicetree/bindings/pci/xgene-pci.txt
15171 F:      drivers/pci/controller/pci-xgene.c
15172
15173 PCI DRIVER FOR ARM VERSATILE PLATFORM
15174 M:      Rob Herring <robh@kernel.org>
15175 L:      linux-pci@vger.kernel.org
15176 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15177 S:      Maintained
15178 F:      Documentation/devicetree/bindings/pci/versatile.yaml
15179 F:      drivers/pci/controller/pci-versatile.c
15180
15181 PCI DRIVER FOR ARMADA 8K
15182 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
15183 L:      linux-pci@vger.kernel.org
15184 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15185 S:      Maintained
15186 F:      Documentation/devicetree/bindings/pci/pci-armada8k.txt
15187 F:      drivers/pci/controller/dwc/pcie-armada8k.c
15188
15189 PCI DRIVER FOR CADENCE PCIE IP
15190 M:      Tom Joseph <tjoseph@cadence.com>
15191 L:      linux-pci@vger.kernel.org
15192 S:      Maintained
15193 F:      Documentation/devicetree/bindings/pci/cdns,*
15194 F:      drivers/pci/controller/cadence/
15195
15196 PCI DRIVER FOR FREESCALE LAYERSCAPE
15197 M:      Minghuan Lian <minghuan.Lian@nxp.com>
15198 M:      Mingkai Hu <mingkai.hu@nxp.com>
15199 M:      Roy Zang <roy.zang@nxp.com>
15200 L:      linuxppc-dev@lists.ozlabs.org
15201 L:      linux-pci@vger.kernel.org
15202 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15203 S:      Maintained
15204 F:      drivers/pci/controller/dwc/*layerscape*
15205
15206 PCI DRIVER FOR GENERIC OF HOSTS
15207 M:      Will Deacon <will@kernel.org>
15208 L:      linux-pci@vger.kernel.org
15209 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15210 S:      Maintained
15211 F:      Documentation/devicetree/bindings/pci/host-generic-pci.yaml
15212 F:      drivers/pci/controller/pci-host-common.c
15213 F:      drivers/pci/controller/pci-host-generic.c
15214
15215 PCI DRIVER FOR IMX6
15216 M:      Richard Zhu <hongxing.zhu@nxp.com>
15217 M:      Lucas Stach <l.stach@pengutronix.de>
15218 L:      linux-pci@vger.kernel.org
15219 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15220 S:      Maintained
15221 F:      Documentation/devicetree/bindings/pci/fsl,imx6q-pcie.yaml
15222 F:      drivers/pci/controller/dwc/*imx6*
15223
15224 PCI DRIVER FOR FU740
15225 M:      Paul Walmsley <paul.walmsley@sifive.com>
15226 M:      Greentime Hu <greentime.hu@sifive.com>
15227 L:      linux-pci@vger.kernel.org
15228 S:      Maintained
15229 F:      Documentation/devicetree/bindings/pci/sifive,fu740-pcie.yaml
15230 F:      drivers/pci/controller/dwc/pcie-fu740.c
15231
15232 PCI DRIVER FOR INTEL IXP4XX
15233 M:      Linus Walleij <linus.walleij@linaro.org>
15234 S:      Maintained
15235 F:      Documentation/devicetree/bindings/pci/intel,ixp4xx-pci.yaml
15236 F:      drivers/pci/controller/pci-ixp4xx.c
15237
15238 PCI DRIVER FOR INTEL VOLUME MANAGEMENT DEVICE (VMD)
15239 M:      Nirmal Patel <nirmal.patel@linux.intel.com>
15240 R:      Jonathan Derrick <jonathan.derrick@linux.dev>
15241 L:      linux-pci@vger.kernel.org
15242 S:      Supported
15243 F:      drivers/pci/controller/vmd.c
15244
15245 PCI DRIVER FOR MICROSEMI SWITCHTEC
15246 M:      Kurt Schwemmer <kurt.schwemmer@microsemi.com>
15247 M:      Logan Gunthorpe <logang@deltatee.com>
15248 L:      linux-pci@vger.kernel.org
15249 S:      Maintained
15250 F:      Documentation/ABI/testing/sysfs-class-switchtec
15251 F:      Documentation/driver-api/switchtec.rst
15252 F:      drivers/ntb/hw/mscc/
15253 F:      drivers/pci/switch/switchtec*
15254 F:      include/linux/switchtec.h
15255 F:      include/uapi/linux/switchtec_ioctl.h
15256
15257 PCI DRIVER FOR MOBIVEIL PCIE IP
15258 M:      Karthikeyan Mitran <m.karthikeyan@mobiveil.co.in>
15259 M:      Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
15260 L:      linux-pci@vger.kernel.org
15261 S:      Supported
15262 F:      Documentation/devicetree/bindings/pci/mobiveil-pcie.txt
15263 F:      drivers/pci/controller/mobiveil/pcie-mobiveil*
15264
15265 PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support)
15266 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
15267 M:      Pali Rohár <pali@kernel.org>
15268 L:      linux-pci@vger.kernel.org
15269 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15270 S:      Maintained
15271 F:      drivers/pci/controller/*mvebu*
15272
15273 PCI DRIVER FOR NVIDIA TEGRA
15274 M:      Thierry Reding <thierry.reding@gmail.com>
15275 L:      linux-tegra@vger.kernel.org
15276 L:      linux-pci@vger.kernel.org
15277 S:      Supported
15278 F:      Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt
15279 F:      drivers/pci/controller/pci-tegra.c
15280
15281 PCI DRIVER FOR NXP LAYERSCAPE GEN4 CONTROLLER
15282 M:      Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
15283 L:      linux-pci@vger.kernel.org
15284 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15285 S:      Maintained
15286 F:      Documentation/devicetree/bindings/pci/layerscape-pcie-gen4.txt
15287 F:      drivers/pci/controller/mobiveil/pcie-layerscape-gen4.c
15288
15289 PCI DRIVER FOR RENESAS R-CAR
15290 M:      Marek Vasut <marek.vasut+renesas@gmail.com>
15291 M:      Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
15292 L:      linux-pci@vger.kernel.org
15293 L:      linux-renesas-soc@vger.kernel.org
15294 S:      Maintained
15295 F:      Documentation/devicetree/bindings/pci/*rcar*
15296 F:      drivers/pci/controller/*rcar*
15297
15298 PCI DRIVER FOR SAMSUNG EXYNOS
15299 M:      Jingoo Han <jingoohan1@gmail.com>
15300 L:      linux-pci@vger.kernel.org
15301 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15302 L:      linux-samsung-soc@vger.kernel.org
15303 S:      Maintained
15304 F:      drivers/pci/controller/dwc/pci-exynos.c
15305
15306 PCI DRIVER FOR SYNOPSYS DESIGNWARE
15307 M:      Jingoo Han <jingoohan1@gmail.com>
15308 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
15309 L:      linux-pci@vger.kernel.org
15310 S:      Maintained
15311 F:      Documentation/devicetree/bindings/pci/snps,dw-pcie.yaml
15312 F:      Documentation/devicetree/bindings/pci/snps,dw-pcie-ep.yaml
15313 F:      drivers/pci/controller/dwc/*designware*
15314
15315 PCI DRIVER FOR TI DRA7XX/J721E
15316 M:      Kishon Vijay Abraham I <kishon@ti.com>
15317 L:      linux-omap@vger.kernel.org
15318 L:      linux-pci@vger.kernel.org
15319 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15320 S:      Supported
15321 F:      Documentation/devicetree/bindings/pci/ti-pci.txt
15322 F:      drivers/pci/controller/cadence/pci-j721e.c
15323 F:      drivers/pci/controller/dwc/pci-dra7xx.c
15324
15325 PCI DRIVER FOR V3 SEMICONDUCTOR V360EPC
15326 M:      Linus Walleij <linus.walleij@linaro.org>
15327 L:      linux-pci@vger.kernel.org
15328 S:      Maintained
15329 F:      Documentation/devicetree/bindings/pci/v3-v360epc-pci.txt
15330 F:      drivers/pci/controller/pci-v3-semi.c
15331
15332 PCI ENDPOINT SUBSYSTEM
15333 M:      Kishon Vijay Abraham I <kishon@ti.com>
15334 M:      Lorenzo Pieralisi <lpieralisi@kernel.org>
15335 R:      Krzysztof Wilczyński <kw@linux.com>
15336 L:      linux-pci@vger.kernel.org
15337 S:      Supported
15338 Q:      https://patchwork.kernel.org/project/linux-pci/list/
15339 B:      https://bugzilla.kernel.org
15340 C:      irc://irc.oftc.net/linux-pci
15341 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lpieralisi/pci.git
15342 F:      Documentation/PCI/endpoint/*
15343 F:      Documentation/misc-devices/pci-endpoint-test.rst
15344 F:      drivers/misc/pci_endpoint_test.c
15345 F:      drivers/pci/endpoint/
15346 F:      tools/pci/
15347
15348 PCI ENHANCED ERROR HANDLING (EEH) FOR POWERPC
15349 M:      Russell Currey <ruscur@russell.cc>
15350 M:      Oliver O'Halloran <oohall@gmail.com>
15351 L:      linuxppc-dev@lists.ozlabs.org
15352 S:      Supported
15353 F:      Documentation/PCI/pci-error-recovery.rst
15354 F:      Documentation/powerpc/eeh-pci-error-recovery.rst
15355 F:      arch/powerpc/include/*/eeh*.h
15356 F:      arch/powerpc/kernel/eeh*.c
15357 F:      arch/powerpc/platforms/*/eeh*.c
15358 F:      drivers/pci/pcie/aer.c
15359 F:      drivers/pci/pcie/dpc.c
15360 F:      drivers/pci/pcie/err.c
15361
15362 PCI ERROR RECOVERY
15363 M:      Linas Vepstas <linasvepstas@gmail.com>
15364 L:      linux-pci@vger.kernel.org
15365 S:      Supported
15366 F:      Documentation/PCI/pci-error-recovery.rst
15367
15368 PCI PEER-TO-PEER DMA (P2PDMA)
15369 M:      Bjorn Helgaas <bhelgaas@google.com>
15370 M:      Logan Gunthorpe <logang@deltatee.com>
15371 L:      linux-pci@vger.kernel.org
15372 S:      Supported
15373 Q:      https://patchwork.kernel.org/project/linux-pci/list/
15374 B:      https://bugzilla.kernel.org
15375 C:      irc://irc.oftc.net/linux-pci
15376 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
15377 F:      Documentation/driver-api/pci/p2pdma.rst
15378 F:      drivers/pci/p2pdma.c
15379 F:      include/linux/pci-p2pdma.h
15380
15381 PCI MSI DRIVER FOR ALTERA MSI IP
15382 M:      Joyce Ooi <joyce.ooi@intel.com>
15383 L:      linux-pci@vger.kernel.org
15384 S:      Supported
15385 F:      Documentation/devicetree/bindings/pci/altera-pcie-msi.txt
15386 F:      drivers/pci/controller/pcie-altera-msi.c
15387
15388 PCI MSI DRIVER FOR APPLIEDMICRO XGENE
15389 M:      Toan Le <toan@os.amperecomputing.com>
15390 L:      linux-pci@vger.kernel.org
15391 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15392 S:      Maintained
15393 F:      Documentation/devicetree/bindings/pci/xgene-pci-msi.txt
15394 F:      drivers/pci/controller/pci-xgene-msi.c
15395
15396 PCI NATIVE HOST BRIDGE AND ENDPOINT DRIVERS
15397 M:      Lorenzo Pieralisi <lpieralisi@kernel.org>
15398 R:      Rob Herring <robh@kernel.org>
15399 R:      Krzysztof Wilczyński <kw@linux.com>
15400 L:      linux-pci@vger.kernel.org
15401 S:      Supported
15402 Q:      https://patchwork.kernel.org/project/linux-pci/list/
15403 B:      https://bugzilla.kernel.org
15404 C:      irc://irc.oftc.net/linux-pci
15405 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lpieralisi/pci.git
15406 F:      drivers/pci/controller/
15407 F:      drivers/pci/pci-bridge-emul.c
15408 F:      drivers/pci/pci-bridge-emul.h
15409
15410 PCI SUBSYSTEM
15411 M:      Bjorn Helgaas <bhelgaas@google.com>
15412 L:      linux-pci@vger.kernel.org
15413 S:      Supported
15414 Q:      https://patchwork.kernel.org/project/linux-pci/list/
15415 B:      https://bugzilla.kernel.org
15416 C:      irc://irc.oftc.net/linux-pci
15417 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
15418 F:      Documentation/PCI/
15419 F:      Documentation/devicetree/bindings/pci/
15420 F:      arch/x86/kernel/early-quirks.c
15421 F:      arch/x86/kernel/quirks.c
15422 F:      arch/x86/pci/
15423 F:      drivers/acpi/pci*
15424 F:      drivers/pci/
15425 F:      include/asm-generic/pci*
15426 F:      include/linux/of_pci.h
15427 F:      include/linux/pci*
15428 F:      include/uapi/linux/pci*
15429 F:      lib/pci*
15430
15431 PCIE DRIVER FOR AMAZON ANNAPURNA LABS
15432 M:      Jonathan Chocron <jonnyc@amazon.com>
15433 L:      linux-pci@vger.kernel.org
15434 S:      Maintained
15435 F:      Documentation/devicetree/bindings/pci/pcie-al.txt
15436 F:      drivers/pci/controller/dwc/pcie-al.c
15437
15438 PCIE DRIVER FOR AMLOGIC MESON
15439 M:      Yue Wang <yue.wang@Amlogic.com>
15440 L:      linux-pci@vger.kernel.org
15441 L:      linux-amlogic@lists.infradead.org
15442 S:      Maintained
15443 F:      drivers/pci/controller/dwc/pci-meson.c
15444
15445 PCIE DRIVER FOR AXIS ARTPEC
15446 M:      Jesper Nilsson <jesper.nilsson@axis.com>
15447 L:      linux-arm-kernel@axis.com
15448 L:      linux-pci@vger.kernel.org
15449 S:      Maintained
15450 F:      Documentation/devicetree/bindings/pci/axis,artpec*
15451 F:      drivers/pci/controller/dwc/*artpec*
15452
15453 PCIE DRIVER FOR CAVIUM THUNDERX
15454 M:      Robert Richter <rric@kernel.org>
15455 L:      linux-pci@vger.kernel.org
15456 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15457 S:      Odd Fixes
15458 F:      drivers/pci/controller/pci-thunder-*
15459
15460 PCIE DRIVER FOR HISILICON
15461 M:      Zhou Wang <wangzhou1@hisilicon.com>
15462 L:      linux-pci@vger.kernel.org
15463 S:      Maintained
15464 F:      drivers/pci/controller/dwc/pcie-hisi.c
15465
15466 PCIE DRIVER FOR HISILICON KIRIN
15467 M:      Xiaowei Song <songxiaowei@hisilicon.com>
15468 M:      Binghui Wang <wangbinghui@hisilicon.com>
15469 L:      linux-pci@vger.kernel.org
15470 S:      Maintained
15471 F:      Documentation/devicetree/bindings/pci/hisilicon,kirin-pcie.yaml
15472 F:      drivers/pci/controller/dwc/pcie-kirin.c
15473
15474 PCIE DRIVER FOR HISILICON STB
15475 M:      Shawn Guo <shawn.guo@linaro.org>
15476 L:      linux-pci@vger.kernel.org
15477 S:      Maintained
15478 F:      Documentation/devicetree/bindings/pci/hisilicon-histb-pcie.txt
15479 F:      drivers/pci/controller/dwc/pcie-histb.c
15480
15481 PCIE DRIVER FOR INTEL KEEM BAY
15482 M:      Srikanth Thokala <srikanth.thokala@intel.com>
15483 L:      linux-pci@vger.kernel.org
15484 S:      Supported
15485 F:      Documentation/devicetree/bindings/pci/intel,keembay-pcie*
15486 F:      drivers/pci/controller/dwc/pcie-keembay.c
15487
15488 PCIE DRIVER FOR INTEL LGM GW SOC
15489 M:      Rahul Tanwar <rtanwar@maxlinear.com>
15490 L:      linux-pci@vger.kernel.org
15491 S:      Maintained
15492 F:      Documentation/devicetree/bindings/pci/intel-gw-pcie.yaml
15493 F:      drivers/pci/controller/dwc/pcie-intel-gw.c
15494
15495 PCIE DRIVER FOR MEDIATEK
15496 M:      Ryder Lee <ryder.lee@mediatek.com>
15497 M:      Jianjun Wang <jianjun.wang@mediatek.com>
15498 L:      linux-pci@vger.kernel.org
15499 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
15500 S:      Supported
15501 F:      Documentation/devicetree/bindings/pci/mediatek*
15502 F:      drivers/pci/controller/*mediatek*
15503
15504 PCIE DRIVER FOR MICROCHIP
15505 M:      Daire McNamara <daire.mcnamara@microchip.com>
15506 L:      linux-pci@vger.kernel.org
15507 S:      Supported
15508 F:      Documentation/devicetree/bindings/pci/microchip*
15509 F:      drivers/pci/controller/*microchip*
15510
15511 PCIE DRIVER FOR QUALCOMM MSM
15512 M:      Stanimir Varbanov <svarbanov@mm-sol.com>
15513 L:      linux-pci@vger.kernel.org
15514 L:      linux-arm-msm@vger.kernel.org
15515 S:      Maintained
15516 F:      drivers/pci/controller/dwc/pcie-qcom.c
15517
15518 PCIE ENDPOINT DRIVER FOR QUALCOMM
15519 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
15520 L:      linux-pci@vger.kernel.org
15521 L:      linux-arm-msm@vger.kernel.org
15522 S:      Maintained
15523 F:      Documentation/devicetree/bindings/pci/qcom,pcie-ep.yaml
15524 F:      drivers/pci/controller/dwc/pcie-qcom-ep.c
15525
15526 PCIE DRIVER FOR ROCKCHIP
15527 M:      Shawn Lin <shawn.lin@rock-chips.com>
15528 L:      linux-pci@vger.kernel.org
15529 L:      linux-rockchip@lists.infradead.org
15530 S:      Maintained
15531 F:      Documentation/devicetree/bindings/pci/rockchip-pcie*
15532 F:      drivers/pci/controller/pcie-rockchip*
15533
15534 PCIE DRIVER FOR SOCIONEXT UNIPHIER
15535 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
15536 L:      linux-pci@vger.kernel.org
15537 S:      Maintained
15538 F:      Documentation/devicetree/bindings/pci/socionext,uniphier-pcie*
15539 F:      drivers/pci/controller/dwc/pcie-uniphier*
15540
15541 PCIE DRIVER FOR ST SPEAR13XX
15542 M:      Pratyush Anand <pratyush.anand@gmail.com>
15543 L:      linux-pci@vger.kernel.org
15544 S:      Maintained
15545 F:      drivers/pci/controller/dwc/*spear*
15546
15547 PCMCIA SUBSYSTEM
15548 M:      Dominik Brodowski <linux@dominikbrodowski.net>
15549 S:      Odd Fixes
15550 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/linux.git
15551 F:      Documentation/pcmcia/
15552 F:      drivers/pcmcia/
15553 F:      include/pcmcia/
15554 F:      tools/pcmcia/
15555
15556 PCNET32 NETWORK DRIVER
15557 M:      Don Fry <pcnet32@frontier.com>
15558 L:      netdev@vger.kernel.org
15559 S:      Maintained
15560 F:      drivers/net/ethernet/amd/pcnet32.c
15561
15562 PCRYPT PARALLEL CRYPTO ENGINE
15563 M:      Steffen Klassert <steffen.klassert@secunet.com>
15564 L:      linux-crypto@vger.kernel.org
15565 S:      Maintained
15566 F:      crypto/pcrypt.c
15567 F:      include/crypto/pcrypt.h
15568
15569 PEAQ WMI HOTKEYS DRIVER
15570 M:      Hans de Goede <hdegoede@redhat.com>
15571 L:      platform-driver-x86@vger.kernel.org
15572 S:      Maintained
15573 F:      drivers/platform/x86/peaq-wmi.c
15574
15575 PECI HARDWARE MONITORING DRIVERS
15576 M:      Iwona Winiarska <iwona.winiarska@intel.com>
15577 L:      linux-hwmon@vger.kernel.org
15578 S:      Supported
15579 F:      Documentation/hwmon/peci-cputemp.rst
15580 F:      Documentation/hwmon/peci-dimmtemp.rst
15581 F:      drivers/hwmon/peci/
15582
15583 PECI SUBSYSTEM
15584 M:      Iwona Winiarska <iwona.winiarska@intel.com>
15585 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
15586 S:      Supported
15587 F:      Documentation/devicetree/bindings/peci/
15588 F:      Documentation/peci/
15589 F:      drivers/peci/
15590 F:      include/linux/peci-cpu.h
15591 F:      include/linux/peci.h
15592
15593 PENSANDO ETHERNET DRIVERS
15594 M:      Shannon Nelson <snelson@pensando.io>
15595 M:      drivers@pensando.io
15596 L:      netdev@vger.kernel.org
15597 S:      Supported
15598 F:      Documentation/networking/device_drivers/ethernet/pensando/ionic.rst
15599 F:      drivers/net/ethernet/pensando/
15600
15601 PER-CPU MEMORY ALLOCATOR
15602 M:      Dennis Zhou <dennis@kernel.org>
15603 M:      Tejun Heo <tj@kernel.org>
15604 M:      Christoph Lameter <cl@linux.com>
15605 L:      linux-mm@kvack.org
15606 S:      Maintained
15607 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dennis/percpu.git
15608 F:      arch/*/include/asm/percpu.h
15609 F:      include/linux/percpu*.h
15610 F:      lib/percpu*.c
15611 F:      mm/percpu*.c
15612
15613 PER-TASK DELAY ACCOUNTING
15614 M:      Balbir Singh <bsingharora@gmail.com>
15615 S:      Maintained
15616 F:      include/linux/delayacct.h
15617 F:      kernel/delayacct.c
15618
15619 PERFORMANCE EVENTS SUBSYSTEM
15620 M:      Peter Zijlstra <peterz@infradead.org>
15621 M:      Ingo Molnar <mingo@redhat.com>
15622 M:      Arnaldo Carvalho de Melo <acme@kernel.org>
15623 R:      Mark Rutland <mark.rutland@arm.com>
15624 R:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
15625 R:      Jiri Olsa <jolsa@kernel.org>
15626 R:      Namhyung Kim <namhyung@kernel.org>
15627 L:      linux-perf-users@vger.kernel.org
15628 L:      linux-kernel@vger.kernel.org
15629 S:      Supported
15630 W:      https://perf.wiki.kernel.org/
15631 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
15632 F:      arch/*/events/*
15633 F:      arch/*/events/*/*
15634 F:      arch/*/include/asm/perf_event.h
15635 F:      arch/*/kernel/*/*/perf_event*.c
15636 F:      arch/*/kernel/*/perf_event*.c
15637 F:      arch/*/kernel/perf_callchain.c
15638 F:      arch/*/kernel/perf_event*.c
15639 F:      include/linux/perf_event.h
15640 F:      include/uapi/linux/perf_event.h
15641 F:      kernel/events/*
15642 F:      tools/lib/perf/
15643 F:      tools/perf/
15644
15645 PERFORMANCE EVENTS TOOLING ARM64
15646 R:      John Garry <john.garry@huawei.com>
15647 R:      Will Deacon <will@kernel.org>
15648 R:      James Clark <james.clark@arm.com>
15649 R:      Mike Leach <mike.leach@linaro.org>
15650 R:      Leo Yan <leo.yan@linaro.org>
15651 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15652 S:      Supported
15653 F:      tools/build/feature/test-libopencsd.c
15654 F:      tools/perf/arch/arm*/
15655 F:      tools/perf/pmu-events/arch/arm64/
15656 F:      tools/perf/util/arm-spe*
15657 F:      tools/perf/util/cs-etm*
15658
15659 PERSONALITY HANDLING
15660 M:      Christoph Hellwig <hch@infradead.org>
15661 L:      linux-abi-devel@lists.sourceforge.net
15662 S:      Maintained
15663 F:      include/linux/personality.h
15664 F:      include/uapi/linux/personality.h
15665
15666 PHOENIX RC FLIGHT CONTROLLER ADAPTER
15667 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
15668 L:      linux-input@vger.kernel.org
15669 S:      Maintained
15670 F:      Documentation/input/devices/pxrc.rst
15671 F:      drivers/input/joystick/pxrc.c
15672
15673 PHONET PROTOCOL
15674 M:      Remi Denis-Courmont <courmisch@gmail.com>
15675 S:      Supported
15676 F:      Documentation/networking/phonet.rst
15677 F:      include/linux/phonet.h
15678 F:      include/net/phonet/
15679 F:      include/uapi/linux/phonet.h
15680 F:      net/phonet/
15681
15682 PHRAM MTD DRIVER
15683 M:      Joern Engel <joern@lazybastard.org>
15684 L:      linux-mtd@lists.infradead.org
15685 S:      Maintained
15686 F:      drivers/mtd/devices/phram.c
15687
15688 PICOLCD HID DRIVER
15689 M:      Bruno Prémont <bonbons@linux-vserver.org>
15690 L:      linux-input@vger.kernel.org
15691 S:      Maintained
15692 F:      drivers/hid/hid-picolcd*
15693
15694 PIDFD API
15695 M:      Christian Brauner <christian@brauner.io>
15696 L:      linux-kernel@vger.kernel.org
15697 S:      Maintained
15698 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brauner/linux.git
15699 F:      samples/pidfd/
15700 F:      tools/testing/selftests/clone3/
15701 F:      tools/testing/selftests/pid_namespace/
15702 F:      tools/testing/selftests/pidfd/
15703 K:      (?i)pidfd
15704 K:      (?i)clone3
15705 K:      \b(clone_args|kernel_clone_args)\b
15706
15707 PIN CONTROL SUBSYSTEM
15708 M:      Linus Walleij <linus.walleij@linaro.org>
15709 L:      linux-gpio@vger.kernel.org
15710 S:      Maintained
15711 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git
15712 F:      Documentation/devicetree/bindings/pinctrl/
15713 F:      Documentation/driver-api/pin-control.rst
15714 F:      drivers/pinctrl/
15715 F:      include/linux/pinctrl/
15716
15717 PIN CONTROLLER - AMD
15718 M:      Basavaraj Natikar <Basavaraj.Natikar@amd.com>
15719 M:      Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
15720 S:      Maintained
15721 F:      drivers/pinctrl/pinctrl-amd.c
15722
15723 PIN CONTROLLER - FREESCALE
15724 M:      Dong Aisheng <aisheng.dong@nxp.com>
15725 M:      Fabio Estevam <festevam@gmail.com>
15726 M:      Shawn Guo <shawnguo@kernel.org>
15727 M:      Stefan Agner <stefan@agner.ch>
15728 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
15729 L:      linux-gpio@vger.kernel.org
15730 S:      Maintained
15731 F:      Documentation/devicetree/bindings/pinctrl/fsl,*
15732 F:      drivers/pinctrl/freescale/
15733
15734 PIN CONTROLLER - INTEL
15735 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
15736 M:      Andy Shevchenko <andy@kernel.org>
15737 S:      Maintained
15738 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/intel.git
15739 F:      drivers/pinctrl/intel/
15740
15741 PIN CONTROLLER - KEEMBAY
15742 M:      Lakshmi Sowjanya D <lakshmi.sowjanya.d@intel.com>
15743 S:      Supported
15744 F:      drivers/pinctrl/pinctrl-keembay*
15745
15746 PIN CONTROLLER - MEDIATEK
15747 M:      Sean Wang <sean.wang@kernel.org>
15748 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
15749 S:      Maintained
15750 F:      Documentation/devicetree/bindings/pinctrl/mediatek,mt65xx-pinctrl.yaml
15751 F:      Documentation/devicetree/bindings/pinctrl/mediatek,mt6797-pinctrl.yaml
15752 F:      Documentation/devicetree/bindings/pinctrl/mediatek,mt7622-pinctrl.yaml
15753 F:      Documentation/devicetree/bindings/pinctrl/mediatek,mt8183-pinctrl.yaml
15754 F:      drivers/pinctrl/mediatek/
15755
15756 PIN CONTROLLER - MICROCHIP AT91
15757 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
15758 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15759 L:      linux-gpio@vger.kernel.org
15760 S:      Supported
15761 F:      drivers/gpio/gpio-sama5d2-piobu.c
15762 F:      drivers/pinctrl/pinctrl-at91*
15763
15764 PIN CONTROLLER - QUALCOMM
15765 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
15766 L:      linux-arm-msm@vger.kernel.org
15767 S:      Maintained
15768 F:      Documentation/devicetree/bindings/pinctrl/qcom,*.txt
15769 F:      drivers/pinctrl/qcom/
15770
15771 PIN CONTROLLER - RENESAS
15772 M:      Geert Uytterhoeven <geert+renesas@glider.be>
15773 L:      linux-renesas-soc@vger.kernel.org
15774 S:      Supported
15775 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git renesas-pinctrl
15776 F:      Documentation/devicetree/bindings/pinctrl/renesas,*
15777 F:      drivers/pinctrl/renesas/
15778
15779 PIN CONTROLLER - SAMSUNG
15780 M:      Tomasz Figa <tomasz.figa@gmail.com>
15781 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
15782 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
15783 R:      Alim Akhtar <alim.akhtar@samsung.com>
15784 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15785 L:      linux-samsung-soc@vger.kernel.org
15786 S:      Maintained
15787 C:      irc://irc.libera.chat/linux-exynos
15788 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
15789 B:      mailto:linux-samsung-soc@vger.kernel.org
15790 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/samsung.git
15791 F:      Documentation/devicetree/bindings/pinctrl/samsung,pinctrl*yaml
15792 F:      drivers/pinctrl/samsung/
15793 F:      include/dt-bindings/pinctrl/samsung.h
15794
15795 PIN CONTROLLER - SINGLE
15796 M:      Tony Lindgren <tony@atomide.com>
15797 M:      Haojian Zhuang <haojian.zhuang@linaro.org>
15798 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15799 L:      linux-omap@vger.kernel.org
15800 S:      Maintained
15801 F:      drivers/pinctrl/pinctrl-single.c
15802
15803 PIN CONTROLLER - THUNDERBAY
15804 M:      Lakshmi Sowjanya D <lakshmi.sowjanya.d@intel.com>
15805 S:      Supported
15806 F:      drivers/pinctrl/pinctrl-thunderbay.c
15807
15808 PIN CONTROLLER - SUNPLUS / TIBBO
15809 M:      Dvorkin Dmitry <dvorkin@tibbo.com>
15810 M:      Wells Lu <wellslutw@gmail.com>
15811 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15812 S:      Maintained
15813 W:      https://sunplus.atlassian.net/wiki/spaces/doc/overview
15814 F:      Documentation/devicetree/bindings/pinctrl/sunplus,*
15815 F:      drivers/pinctrl/sunplus/
15816 F:      include/dt-bindings/pinctrl/sppctl*.h
15817
15818 PKTCDVD DRIVER
15819 M:      linux-block@vger.kernel.org
15820 S:      Orphan
15821 F:      drivers/block/pktcdvd.c
15822 F:      include/linux/pktcdvd.h
15823 F:      include/uapi/linux/pktcdvd.h
15824
15825 PLANTOWER PMS7003 AIR POLLUTION SENSOR DRIVER
15826 M:      Tomasz Duszynski <tduszyns@gmail.com>
15827 S:      Maintained
15828 F:      Documentation/devicetree/bindings/iio/chemical/plantower,pms7003.yaml
15829 F:      drivers/iio/chemical/pms7003.c
15830
15831 PLDMFW LIBRARY
15832 M:      Jacob Keller <jacob.e.keller@intel.com>
15833 S:      Maintained
15834 F:      Documentation/driver-api/pldmfw/
15835 F:      include/linux/pldmfw.h
15836 F:      lib/pldmfw/
15837
15838 PLX DMA DRIVER
15839 M:      Logan Gunthorpe <logang@deltatee.com>
15840 S:      Maintained
15841 F:      drivers/dma/plx_dma.c
15842
15843 PM6764TR DRIVER
15844 M:      Charles Hsu     <hsu.yungteng@gmail.com>
15845 L:      linux-hwmon@vger.kernel.org
15846 S:      Maintained
15847 F:      Documentation/hwmon/pm6764tr.rst
15848 F:      drivers/hwmon/pmbus/pm6764tr.c
15849
15850 PM-GRAPH UTILITY
15851 M:      "Todd E Brandt" <todd.e.brandt@linux.intel.com>
15852 L:      linux-pm@vger.kernel.org
15853 S:      Supported
15854 W:      https://01.org/pm-graph
15855 B:      https://bugzilla.kernel.org/buglist.cgi?component=pm-graph&product=Tools
15856 T:      git git://github.com/intel/pm-graph
15857 F:      tools/power/pm-graph
15858
15859 PMBUS HARDWARE MONITORING DRIVERS
15860 M:      Guenter Roeck <linux@roeck-us.net>
15861 L:      linux-hwmon@vger.kernel.org
15862 S:      Maintained
15863 W:      http://hwmon.wiki.kernel.org/
15864 W:      http://www.roeck-us.net/linux/drivers/
15865 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
15866 F:      Documentation/devicetree/bindings/hwmon/ltc2978.txt
15867 F:      Documentation/devicetree/bindings/hwmon/max31785.txt
15868 F:      Documentation/hwmon/adm1275.rst
15869 F:      Documentation/hwmon/ibm-cffps.rst
15870 F:      Documentation/hwmon/ir35221.rst
15871 F:      Documentation/hwmon/lm25066.rst
15872 F:      Documentation/hwmon/ltc2978.rst
15873 F:      Documentation/hwmon/ltc3815.rst
15874 F:      Documentation/hwmon/max16064.rst
15875 F:      Documentation/hwmon/max20751.rst
15876 F:      Documentation/hwmon/max31785.rst
15877 F:      Documentation/hwmon/max34440.rst
15878 F:      Documentation/hwmon/max8688.rst
15879 F:      Documentation/hwmon/pmbus-core.rst
15880 F:      Documentation/hwmon/pmbus.rst
15881 F:      Documentation/hwmon/tps40422.rst
15882 F:      Documentation/hwmon/ucd9000.rst
15883 F:      Documentation/hwmon/ucd9200.rst
15884 F:      Documentation/hwmon/zl6100.rst
15885 F:      drivers/hwmon/pmbus/
15886 F:      include/linux/pmbus.h
15887
15888 PMC SIERRA MaxRAID DRIVER
15889 L:      linux-scsi@vger.kernel.org
15890 S:      Orphan
15891 W:      http://www.pmc-sierra.com/
15892 F:      drivers/scsi/pmcraid.*
15893
15894 PMC SIERRA PM8001 DRIVER
15895 M:      Jack Wang <jinpu.wang@cloud.ionos.com>
15896 L:      linux-scsi@vger.kernel.org
15897 S:      Supported
15898 F:      drivers/scsi/pm8001/
15899
15900 PNI RM3100 IIO DRIVER
15901 M:      Song Qiang <songqiang1304521@gmail.com>
15902 L:      linux-iio@vger.kernel.org
15903 S:      Maintained
15904 F:      Documentation/devicetree/bindings/iio/magnetometer/pni,rm3100.yaml
15905 F:      drivers/iio/magnetometer/rm3100*
15906
15907 PNP SUPPORT
15908 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
15909 L:      linux-acpi@vger.kernel.org
15910 S:      Maintained
15911 F:      drivers/pnp/
15912 F:      include/linux/pnp.h
15913
15914 POSIX CLOCKS and TIMERS
15915 M:      Thomas Gleixner <tglx@linutronix.de>
15916 L:      linux-kernel@vger.kernel.org
15917 S:      Maintained
15918 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
15919 F:      fs/timerfd.c
15920 F:      include/linux/time_namespace.h
15921 F:      include/linux/timer*
15922 F:      kernel/time/*timer*
15923 F:      kernel/time/namespace.c
15924
15925 POWER MANAGEMENT CORE
15926 M:      "Rafael J. Wysocki" <rafael@kernel.org>
15927 L:      linux-pm@vger.kernel.org
15928 S:      Supported
15929 B:      https://bugzilla.kernel.org
15930 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
15931 F:      drivers/base/power/
15932 F:      drivers/powercap/
15933 F:      include/linux/intel_rapl.h
15934 F:      include/linux/pm.h
15935 F:      include/linux/pm_*
15936 F:      include/linux/powercap.h
15937 F:      kernel/configs/nopm.config
15938
15939 DYNAMIC THERMAL POWER MANAGEMENT (DTPM)
15940 M:      Daniel Lezcano <daniel.lezcano@kernel.org>
15941 L:      linux-pm@vger.kernel.org
15942 S:      Supported
15943 B:      https://bugzilla.kernel.org
15944 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
15945 F:      drivers/powercap/dtpm*
15946 F:      include/linux/dtpm.h
15947
15948 POWER STATE COORDINATION INTERFACE (PSCI)
15949 M:      Mark Rutland <mark.rutland@arm.com>
15950 M:      Lorenzo Pieralisi <lpieralisi@kernel.org>
15951 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15952 S:      Maintained
15953 F:      drivers/firmware/psci/
15954 F:      include/linux/psci.h
15955 F:      include/uapi/linux/psci.h
15956
15957 POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
15958 M:      Sebastian Reichel <sre@kernel.org>
15959 L:      linux-pm@vger.kernel.org
15960 S:      Maintained
15961 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
15962 F:      Documentation/ABI/testing/sysfs-class-power
15963 F:      Documentation/devicetree/bindings/power/supply/
15964 F:      drivers/power/supply/
15965 F:      include/linux/power/
15966 F:      include/linux/power_supply.h
15967
15968 POWERNV OPERATOR PANEL LCD DISPLAY DRIVER
15969 M:      Suraj Jitindar Singh <sjitindarsingh@gmail.com>
15970 L:      linuxppc-dev@lists.ozlabs.org
15971 S:      Maintained
15972 F:      drivers/char/powernv-op-panel.c
15973
15974 PPP OVER ATM (RFC 2364)
15975 M:      Mitchell Blank Jr <mitch@sfgoth.com>
15976 S:      Maintained
15977 F:      include/uapi/linux/atmppp.h
15978 F:      net/atm/pppoatm.c
15979
15980 PPP OVER ETHERNET
15981 M:      Michal Ostrowski <mostrows@earthlink.net>
15982 S:      Maintained
15983 F:      drivers/net/ppp/pppoe.c
15984 F:      drivers/net/ppp/pppox.c
15985
15986 PPP OVER L2TP
15987 M:      James Chapman <jchapman@katalix.com>
15988 S:      Maintained
15989 F:      include/linux/if_pppol2tp.h
15990 F:      include/uapi/linux/if_pppol2tp.h
15991 F:      net/l2tp/l2tp_ppp.c
15992
15993 PPP PROTOCOL DRIVERS AND COMPRESSORS
15994 M:      Paul Mackerras <paulus@samba.org>
15995 L:      linux-ppp@vger.kernel.org
15996 S:      Maintained
15997 F:      drivers/net/ppp/ppp_*
15998
15999 PPS SUPPORT
16000 M:      Rodolfo Giometti <giometti@enneenne.com>
16001 L:      linuxpps@ml.enneenne.com (subscribers-only)
16002 S:      Maintained
16003 W:      http://wiki.enneenne.com/index.php/LinuxPPS_support
16004 F:      Documentation/ABI/testing/sysfs-pps
16005 F:      Documentation/devicetree/bindings/pps/pps-gpio.txt
16006 F:      Documentation/driver-api/pps.rst
16007 F:      drivers/pps/
16008 F:      include/linux/pps*.h
16009 F:      include/uapi/linux/pps.h
16010
16011 PPTP DRIVER
16012 M:      Dmitry Kozlov <xeb@mail.ru>
16013 L:      netdev@vger.kernel.org
16014 S:      Maintained
16015 W:      http://sourceforge.net/projects/accel-pptp
16016 F:      drivers/net/ppp/pptp.c
16017
16018 PRESSURE STALL INFORMATION (PSI)
16019 M:      Johannes Weiner <hannes@cmpxchg.org>
16020 M:      Suren Baghdasaryan <surenb@google.com>
16021 S:      Maintained
16022 F:      include/linux/psi*
16023 F:      kernel/sched/psi.c
16024
16025 PRINTK
16026 M:      Petr Mladek <pmladek@suse.com>
16027 M:      Sergey Senozhatsky <senozhatsky@chromium.org>
16028 R:      Steven Rostedt <rostedt@goodmis.org>
16029 R:      John Ogness <john.ogness@linutronix.de>
16030 S:      Maintained
16031 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/printk/linux.git
16032 F:      include/linux/printk.h
16033 F:      kernel/printk/
16034
16035 PRINTK INDEXING
16036 R:      Chris Down <chris@chrisdown.name>
16037 S:      Maintained
16038 F:      Documentation/core-api/printk-index.rst
16039 F:      kernel/printk/index.c
16040 K:      printk_index
16041
16042 PROC FILESYSTEM
16043 L:      linux-kernel@vger.kernel.org
16044 L:      linux-fsdevel@vger.kernel.org
16045 S:      Maintained
16046 F:      Documentation/filesystems/proc.rst
16047 F:      fs/proc/
16048 F:      include/linux/proc_fs.h
16049 F:      tools/testing/selftests/proc/
16050
16051 PROC SYSCTL
16052 M:      Luis Chamberlain <mcgrof@kernel.org>
16053 M:      Kees Cook <keescook@chromium.org>
16054 M:      Iurii Zaikin <yzaikin@google.com>
16055 L:      linux-kernel@vger.kernel.org
16056 L:      linux-fsdevel@vger.kernel.org
16057 S:      Maintained
16058 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mcgrof/linux.git sysctl-next
16059 F:      fs/proc/proc_sysctl.c
16060 F:      include/linux/sysctl.h
16061 F:      kernel/sysctl-test.c
16062 F:      kernel/sysctl.c
16063 F:      tools/testing/selftests/sysctl/
16064
16065 PS3 NETWORK SUPPORT
16066 M:      Geoff Levand <geoff@infradead.org>
16067 L:      netdev@vger.kernel.org
16068 L:      linuxppc-dev@lists.ozlabs.org
16069 S:      Maintained
16070 F:      drivers/net/ethernet/toshiba/ps3_gelic_net.*
16071
16072 PS3 PLATFORM SUPPORT
16073 M:      Geoff Levand <geoff@infradead.org>
16074 L:      linuxppc-dev@lists.ozlabs.org
16075 S:      Maintained
16076 F:      arch/powerpc/boot/ps3*
16077 F:      arch/powerpc/include/asm/lv1call.h
16078 F:      arch/powerpc/include/asm/ps3*.h
16079 F:      arch/powerpc/platforms/ps3/
16080 F:      drivers/*/ps3*
16081 F:      drivers/ps3/
16082 F:      drivers/rtc/rtc-ps3.c
16083 F:      drivers/usb/host/*ps3.c
16084 F:      sound/ppc/snd_ps3*
16085
16086 PS3VRAM DRIVER
16087 M:      Jim Paris <jim@jtan.com>
16088 M:      Geoff Levand <geoff@infradead.org>
16089 L:      linuxppc-dev@lists.ozlabs.org
16090 S:      Maintained
16091 F:      drivers/block/ps3vram.c
16092
16093 PSAMPLE PACKET SAMPLING SUPPORT
16094 M:      Yotam Gigi <yotam.gi@gmail.com>
16095 S:      Maintained
16096 F:      include/net/psample.h
16097 F:      include/uapi/linux/psample.h
16098 F:      net/psample
16099
16100 PSTORE FILESYSTEM
16101 M:      Kees Cook <keescook@chromium.org>
16102 M:      Anton Vorontsov <anton@enomsg.org>
16103 M:      Colin Cross <ccross@android.com>
16104 M:      Tony Luck <tony.luck@intel.com>
16105 S:      Maintained
16106 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/pstore
16107 F:      Documentation/admin-guide/ramoops.rst
16108 F:      Documentation/admin-guide/pstore-blk.rst
16109 F:      Documentation/devicetree/bindings/reserved-memory/ramoops.yaml
16110 F:      drivers/acpi/apei/erst.c
16111 F:      drivers/firmware/efi/efi-pstore.c
16112 F:      fs/pstore/
16113 F:      include/linux/pstore*
16114 K:      \b(pstore|ramoops)
16115
16116 PTP HARDWARE CLOCK SUPPORT
16117 M:      Richard Cochran <richardcochran@gmail.com>
16118 L:      netdev@vger.kernel.org
16119 S:      Maintained
16120 W:      http://linuxptp.sourceforge.net/
16121 F:      Documentation/ABI/testing/sysfs-ptp
16122 F:      Documentation/driver-api/ptp.rst
16123 F:      drivers/net/phy/dp83640*
16124 F:      drivers/ptp/*
16125 F:      include/linux/ptp_cl*
16126
16127 PTP VIRTUAL CLOCK SUPPORT
16128 M:      Yangbo Lu <yangbo.lu@nxp.com>
16129 L:      netdev@vger.kernel.org
16130 S:      Maintained
16131 F:      drivers/ptp/ptp_vclock.c
16132 F:      net/ethtool/phc_vclocks.c
16133
16134 PTRACE SUPPORT
16135 M:      Oleg Nesterov <oleg@redhat.com>
16136 S:      Maintained
16137 F:      arch/*/*/ptrace*.c
16138 F:      arch/*/include/asm/ptrace*.h
16139 F:      arch/*/ptrace*.c
16140 F:      include/asm-generic/syscall.h
16141 F:      include/linux/ptrace.h
16142 F:      include/linux/regset.h
16143 F:      include/uapi/linux/ptrace.h
16144 F:      kernel/ptrace.c
16145
16146 PULSE8-CEC DRIVER
16147 M:      Hans Verkuil <hverkuil@xs4all.nl>
16148 L:      linux-media@vger.kernel.org
16149 S:      Maintained
16150 T:      git git://linuxtv.org/media_tree.git
16151 F:      Documentation/admin-guide/media/pulse8-cec.rst
16152 F:      drivers/media/cec/usb/pulse8/
16153
16154 PURELIFI PLFXLC DRIVER
16155 M:      Srinivasan Raju <srini.raju@purelifi.com>
16156 L:      linux-wireless@vger.kernel.org
16157 S:      Supported
16158 F:      drivers/net/wireless/purelifi/plfxlc/
16159
16160 PVRUSB2 VIDEO4LINUX DRIVER
16161 M:      Mike Isely <isely@pobox.com>
16162 L:      pvrusb2@isely.net       (subscribers-only)
16163 L:      linux-media@vger.kernel.org
16164 S:      Maintained
16165 W:      http://www.isely.net/pvrusb2/
16166 T:      git git://linuxtv.org/media_tree.git
16167 F:      Documentation/driver-api/media/drivers/pvrusb2*
16168 F:      drivers/media/usb/pvrusb2/
16169
16170 PWC WEBCAM DRIVER
16171 M:      Hans Verkuil <hverkuil@xs4all.nl>
16172 L:      linux-media@vger.kernel.org
16173 S:      Odd Fixes
16174 T:      git git://linuxtv.org/media_tree.git
16175 F:      drivers/media/usb/pwc/*
16176 F:      include/trace/events/pwc.h
16177
16178 PWM FAN DRIVER
16179 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
16180 L:      linux-hwmon@vger.kernel.org
16181 S:      Supported
16182 F:      Documentation/devicetree/bindings/hwmon/pwm-fan.txt
16183 F:      Documentation/hwmon/pwm-fan.rst
16184 F:      drivers/hwmon/pwm-fan.c
16185
16186 PWM IR Transmitter
16187 M:      Sean Young <sean@mess.org>
16188 L:      linux-media@vger.kernel.org
16189 S:      Maintained
16190 F:      drivers/media/rc/pwm-ir-tx.c
16191
16192 PWM SUBSYSTEM
16193 M:      Thierry Reding <thierry.reding@gmail.com>
16194 R:      Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
16195 M:      Lee Jones <lee.jones@linaro.org>
16196 L:      linux-pwm@vger.kernel.org
16197 S:      Maintained
16198 Q:      https://patchwork.ozlabs.org/project/linux-pwm/list/
16199 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git
16200 F:      Documentation/devicetree/bindings/gpio/gpio-mvebu.txt
16201 F:      Documentation/devicetree/bindings/pwm/
16202 F:      Documentation/driver-api/pwm.rst
16203 F:      drivers/gpio/gpio-mvebu.c
16204 F:      drivers/pwm/
16205 F:      drivers/video/backlight/pwm_bl.c
16206 F:      include/linux/pwm.h
16207 F:      include/linux/pwm_backlight.h
16208 K:      pwm_(config|apply_state|ops)
16209
16210 PXA GPIO DRIVER
16211 M:      Robert Jarzmik <robert.jarzmik@free.fr>
16212 L:      linux-gpio@vger.kernel.org
16213 S:      Maintained
16214 F:      drivers/gpio/gpio-pxa.c
16215
16216 PXA MMCI DRIVER
16217 S:      Orphan
16218
16219 PXA RTC DRIVER
16220 M:      Robert Jarzmik <robert.jarzmik@free.fr>
16221 L:      linux-rtc@vger.kernel.org
16222 S:      Maintained
16223
16224 PXA2xx/PXA3xx SUPPORT
16225 M:      Daniel Mack <daniel@zonque.org>
16226 M:      Haojian Zhuang <haojian.zhuang@gmail.com>
16227 M:      Robert Jarzmik <robert.jarzmik@free.fr>
16228 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16229 S:      Maintained
16230 T:      git git://github.com/hzhuang1/linux.git
16231 T:      git git://github.com/rjarzmik/linux.git
16232 F:      arch/arm/boot/dts/pxa*
16233 F:      arch/arm/mach-pxa/
16234 F:      drivers/dma/pxa*
16235 F:      drivers/pcmcia/pxa2xx*
16236 F:      drivers/pinctrl/pxa/
16237 F:      drivers/spi/spi-pxa2xx*
16238 F:      drivers/usb/gadget/udc/pxa2*
16239 F:      include/sound/pxa2xx-lib.h
16240 F:      sound/arm/pxa*
16241 F:      sound/soc/pxa/
16242
16243 QAT DRIVER
16244 M:      Giovanni Cabiddu <giovanni.cabiddu@intel.com>
16245 L:      qat-linux@intel.com
16246 S:      Supported
16247 F:      drivers/crypto/qat/
16248
16249 QCOM AUDIO (ASoC) DRIVERS
16250 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
16251 M:      Banajit Goswami <bgoswami@codeaurora.org>
16252 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16253 S:      Supported
16254 F:      sound/soc/codecs/lpass-va-macro.c
16255 F:      sound/soc/codecs/lpass-wsa-macro.*
16256 F:      sound/soc/codecs/msm8916-wcd-analog.c
16257 F:      sound/soc/codecs/msm8916-wcd-digital.c
16258 F:      sound/soc/codecs/wcd9335.*
16259 F:      sound/soc/codecs/wcd934x.c
16260 F:      sound/soc/codecs/wcd-clsh-v2.*
16261 F:      sound/soc/codecs/wsa881x.c
16262 F:      sound/soc/qcom/
16263
16264 QCOM EMBEDDED USB DEBUGGER (EUD)
16265 M:      Souradeep Chowdhury <quic_schowdhu@quicinc.com>
16266 L:      linux-arm-msm@vger.kernel.org
16267 S:      Maintained
16268 F:      Documentation/ABI/testing/sysfs-driver-eud
16269 F:      Documentation/devicetree/bindings/soc/qcom/qcom,eud.yaml
16270 F:      drivers/usb/misc/qcom_eud.c
16271
16272 QCOM IPA DRIVER
16273 M:      Alex Elder <elder@kernel.org>
16274 L:      netdev@vger.kernel.org
16275 S:      Supported
16276 F:      drivers/net/ipa/
16277
16278 QEMU MACHINE EMULATOR AND VIRTUALIZER SUPPORT
16279 M:      Gabriel Somlo <somlo@cmu.edu>
16280 M:      "Michael S. Tsirkin" <mst@redhat.com>
16281 L:      qemu-devel@nongnu.org
16282 S:      Maintained
16283 F:      drivers/firmware/qemu_fw_cfg.c
16284 F:      include/uapi/linux/qemu_fw_cfg.h
16285
16286 QIB DRIVER
16287 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
16288 L:      linux-rdma@vger.kernel.org
16289 S:      Supported
16290 F:      drivers/infiniband/hw/qib/
16291
16292 QLOGIC QL41xxx FCOE DRIVER
16293 M:      Saurav Kashyap <skashyap@marvell.com>
16294 M:      Javed Hasan <jhasan@marvell.com>
16295 M:      GR-QLogic-Storage-Upstream@marvell.com
16296 L:      linux-scsi@vger.kernel.org
16297 S:      Supported
16298 F:      drivers/scsi/qedf/
16299
16300 QLOGIC QL41xxx ISCSI DRIVER
16301 M:      Nilesh Javali <njavali@marvell.com>
16302 M:      Manish Rangankar <mrangankar@marvell.com>
16303 M:      GR-QLogic-Storage-Upstream@marvell.com
16304 L:      linux-scsi@vger.kernel.org
16305 S:      Supported
16306 F:      drivers/scsi/qedi/
16307
16308 QLOGIC QL4xxx ETHERNET DRIVER
16309 M:      Ariel Elior <aelior@marvell.com>
16310 M:      Manish Chopra <manishc@marvell.com>
16311 L:      netdev@vger.kernel.org
16312 S:      Supported
16313 F:      drivers/net/ethernet/qlogic/qed/
16314 F:      drivers/net/ethernet/qlogic/qede/
16315 F:      include/linux/qed/
16316
16317 QLOGIC QL4xxx RDMA DRIVER
16318 M:      Michal Kalderon <mkalderon@marvell.com>
16319 M:      Ariel Elior <aelior@marvell.com>
16320 L:      linux-rdma@vger.kernel.org
16321 S:      Supported
16322 F:      drivers/infiniband/hw/qedr/
16323 F:      include/uapi/rdma/qedr-abi.h
16324
16325 QLOGIC QLA1280 SCSI DRIVER
16326 M:      Michael Reed <mdr@sgi.com>
16327 L:      linux-scsi@vger.kernel.org
16328 S:      Maintained
16329 F:      drivers/scsi/qla1280.[ch]
16330
16331 QLOGIC QLA2XXX FC-SCSI DRIVER
16332 M:      Nilesh Javali <njavali@marvell.com>
16333 M:      GR-QLogic-Storage-Upstream@marvell.com
16334 L:      linux-scsi@vger.kernel.org
16335 S:      Supported
16336 F:      drivers/scsi/qla2xxx/
16337
16338 QLOGIC QLA3XXX NETWORK DRIVER
16339 M:      GR-Linux-NIC-Dev@marvell.com
16340 L:      netdev@vger.kernel.org
16341 S:      Supported
16342 F:      drivers/net/ethernet/qlogic/qla3xxx.*
16343
16344 QLOGIC QLA4XXX iSCSI DRIVER
16345 M:      Nilesh Javali <njavali@marvell.com>
16346 M:      Manish Rangankar <mrangankar@marvell.com>
16347 M:      GR-QLogic-Storage-Upstream@marvell.com
16348 L:      linux-scsi@vger.kernel.org
16349 S:      Supported
16350 F:      drivers/scsi/qla4xxx/
16351
16352 QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
16353 M:      Shahed Shaikh <shshaikh@marvell.com>
16354 M:      Manish Chopra <manishc@marvell.com>
16355 M:      GR-Linux-NIC-Dev@marvell.com
16356 L:      netdev@vger.kernel.org
16357 S:      Supported
16358 F:      drivers/net/ethernet/qlogic/qlcnic/
16359
16360 QLOGIC QLGE 10Gb ETHERNET DRIVER
16361 M:      Manish Chopra <manishc@marvell.com>
16362 M:      GR-Linux-NIC-Dev@marvell.com
16363 M:      Coiby Xu <coiby.xu@gmail.com>
16364 L:      netdev@vger.kernel.org
16365 S:      Supported
16366 F:      Documentation/networking/device_drivers/qlogic/qlge.rst
16367 F:      drivers/staging/qlge/
16368
16369 QM1D1B0004 MEDIA DRIVER
16370 M:      Akihiro Tsukada <tskd08@gmail.com>
16371 L:      linux-media@vger.kernel.org
16372 S:      Odd Fixes
16373 F:      drivers/media/tuners/qm1d1b0004*
16374
16375 QM1D1C0042 MEDIA DRIVER
16376 M:      Akihiro Tsukada <tskd08@gmail.com>
16377 L:      linux-media@vger.kernel.org
16378 S:      Odd Fixes
16379 F:      drivers/media/tuners/qm1d1c0042*
16380
16381 QNX4 FILESYSTEM
16382 M:      Anders Larsen <al@alarsen.net>
16383 S:      Maintained
16384 W:      http://www.alarsen.net/linux/qnx4fs/
16385 F:      fs/qnx4/
16386 F:      include/uapi/linux/qnx4_fs.h
16387 F:      include/uapi/linux/qnxtypes.h
16388
16389 QORIQ DPAA2 FSL-MC BUS DRIVER
16390 M:      Stuart Yoder <stuyoder@gmail.com>
16391 M:      Laurentiu Tudor <laurentiu.tudor@nxp.com>
16392 L:      linux-kernel@vger.kernel.org
16393 S:      Maintained
16394 F:      Documentation/ABI/stable/sysfs-bus-fsl-mc
16395 F:      Documentation/devicetree/bindings/misc/fsl,qoriq-mc.txt
16396 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/overview.rst
16397 F:      drivers/bus/fsl-mc/
16398 F:      include/uapi/linux/fsl_mc.h
16399
16400 QT1010 MEDIA DRIVER
16401 M:      Antti Palosaari <crope@iki.fi>
16402 L:      linux-media@vger.kernel.org
16403 S:      Maintained
16404 W:      https://linuxtv.org
16405 W:      http://palosaari.fi/linux/
16406 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16407 T:      git git://linuxtv.org/anttip/media_tree.git
16408 F:      drivers/media/tuners/qt1010*
16409
16410 QUALCOMM ATHEROS ATH10K WIRELESS DRIVER
16411 M:      Kalle Valo <kvalo@kernel.org>
16412 L:      ath10k@lists.infradead.org
16413 S:      Supported
16414 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath10k
16415 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
16416 F:      drivers/net/wireless/ath/ath10k/
16417 F:      Documentation/devicetree/bindings/net/wireless/qcom,ath10k.txt
16418
16419 QUALCOMM ATHEROS ATH11K WIRELESS DRIVER
16420 M:      Kalle Valo <kvalo@kernel.org>
16421 L:      ath11k@lists.infradead.org
16422 S:      Supported
16423 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
16424 F:      Documentation/devicetree/bindings/net/wireless/qcom,ath11k.yaml
16425 F:      drivers/net/wireless/ath/ath11k/
16426
16427 QUALCOMM ATHEROS ATH9K WIRELESS DRIVER
16428 M:      Toke Høiland-Jørgensen <toke@toke.dk>
16429 L:      linux-wireless@vger.kernel.org
16430 S:      Maintained
16431 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath9k
16432 F:      Documentation/devicetree/bindings/net/wireless/qca,ath9k.yaml
16433 F:      drivers/net/wireless/ath/ath9k/
16434
16435 QUALCOMM BAM-DMUX WWAN NETWORK DRIVER
16436 M:      Stephan Gerhold <stephan@gerhold.net>
16437 L:      netdev@vger.kernel.org
16438 L:      linux-arm-msm@vger.kernel.org
16439 S:      Maintained
16440 F:      Documentation/devicetree/bindings/net/qcom,bam-dmux.yaml
16441 F:      drivers/net/wwan/qcom_bam_dmux.c
16442
16443 QUALCOMM CAMERA SUBSYSTEM DRIVER
16444 M:      Robert Foss <robert.foss@linaro.org>
16445 M:      Todor Tomov <todor.too@gmail.com>
16446 L:      linux-media@vger.kernel.org
16447 S:      Maintained
16448 F:      Documentation/admin-guide/media/qcom_camss.rst
16449 F:      Documentation/devicetree/bindings/media/*camss*
16450 F:      drivers/media/platform/qcom/camss/
16451
16452 QUALCOMM CLOCK DRIVERS
16453 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
16454 L:      linux-arm-msm@vger.kernel.org
16455 S:      Supported
16456 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/qcom/linux.git
16457 F:      Documentation/devicetree/bindings/clock/qcom,*
16458 F:      drivers/clk/qcom/
16459 F:      include/dt-bindings/clock/qcom,*
16460
16461 QUALCOMM CORE POWER REDUCTION (CPR) AVS DRIVER
16462 M:      Niklas Cassel <nks@flawful.org>
16463 L:      linux-pm@vger.kernel.org
16464 L:      linux-arm-msm@vger.kernel.org
16465 S:      Maintained
16466 F:      Documentation/devicetree/bindings/power/avs/qcom,cpr.yaml
16467 F:      drivers/soc/qcom/cpr.c
16468
16469 QUALCOMM CPUFREQ DRIVER MSM8996/APQ8096
16470 M:      Ilia Lin <ilia.lin@kernel.org>
16471 L:      linux-pm@vger.kernel.org
16472 S:      Maintained
16473 F:      Documentation/devicetree/bindings/cpufreq/qcom-cpufreq-nvmem.yaml
16474 F:      Documentation/devicetree/bindings/opp/opp-v2-kryo-cpu.yaml
16475 F:      drivers/cpufreq/qcom-cpufreq-nvmem.c
16476
16477 QUALCOMM CRYPTO DRIVERS
16478 M:      Thara Gopinath <thara.gopinath@linaro.org>
16479 L:      linux-crypto@vger.kernel.org
16480 L:      linux-arm-msm@vger.kernel.org
16481 S:      Maintained
16482 F:      drivers/crypto/qce/
16483
16484 QUALCOMM EMAC GIGABIT ETHERNET DRIVER
16485 M:      Timur Tabi <timur@kernel.org>
16486 L:      netdev@vger.kernel.org
16487 S:      Maintained
16488 F:      drivers/net/ethernet/qualcomm/emac/
16489
16490 QUALCOMM ETHQOS ETHERNET DRIVER
16491 M:      Vinod Koul <vkoul@kernel.org>
16492 L:      netdev@vger.kernel.org
16493 S:      Maintained
16494 F:      Documentation/devicetree/bindings/net/qcom,ethqos.txt
16495 F:      drivers/net/ethernet/stmicro/stmmac/dwmac-qcom-ethqos.c
16496
16497 QUALCOMM FASTRPC DRIVER
16498 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
16499 M:      Amol Maheshwari <amahesh@qti.qualcomm.com>
16500 L:      linux-arm-msm@vger.kernel.org
16501 S:      Maintained
16502 F:      Documentation/devicetree/bindings/misc/qcom,fastrpc.txt
16503 F:      drivers/misc/fastrpc.c
16504 F:      include/uapi/misc/fastrpc.h
16505
16506 QUALCOMM HEXAGON ARCHITECTURE
16507 M:      Brian Cain <bcain@quicinc.com>
16508 L:      linux-hexagon@vger.kernel.org
16509 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bcain/linux.git
16510 S:      Supported
16511 F:      arch/hexagon/
16512
16513 QUALCOMM HIDMA DRIVER
16514 M:      Sinan Kaya <okaya@kernel.org>
16515 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16516 L:      linux-arm-msm@vger.kernel.org
16517 L:      dmaengine@vger.kernel.org
16518 S:      Supported
16519 F:      drivers/dma/qcom/hidma*
16520
16521 QUALCOMM I2C CCI DRIVER
16522 M:      Loic Poulain <loic.poulain@linaro.org>
16523 M:      Robert Foss <robert.foss@linaro.org>
16524 L:      linux-i2c@vger.kernel.org
16525 L:      linux-arm-msm@vger.kernel.org
16526 S:      Maintained
16527 F:      Documentation/devicetree/bindings/i2c/i2c-qcom-cci.txt
16528 F:      drivers/i2c/busses/i2c-qcom-cci.c
16529
16530 QUALCOMM IOMMU
16531 M:      Rob Clark <robdclark@gmail.com>
16532 L:      iommu@lists.linux-foundation.org
16533 L:      linux-arm-msm@vger.kernel.org
16534 S:      Maintained
16535 F:      drivers/iommu/arm/arm-smmu/qcom_iommu.c
16536
16537 QUALCOMM IPC ROUTER (QRTR) DRIVER
16538 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
16539 L:      linux-arm-msm@vger.kernel.org
16540 S:      Maintained
16541 F:      include/trace/events/qrtr.h
16542 F:      include/uapi/linux/qrtr.h
16543 F:      net/qrtr/
16544
16545 QUALCOMM IPCC MAILBOX DRIVER
16546 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
16547 L:      linux-arm-msm@vger.kernel.org
16548 S:      Supported
16549 F:      Documentation/devicetree/bindings/mailbox/qcom-ipcc.yaml
16550 F:      drivers/mailbox/qcom-ipcc.c
16551 F:      include/dt-bindings/mailbox/qcom-ipcc.h
16552
16553 QUALCOMM IPQ4019 USB PHY DRIVER
16554 M:      Robert Marko <robert.marko@sartura.hr>
16555 M:      Luka Perkov <luka.perkov@sartura.hr>
16556 L:      linux-arm-msm@vger.kernel.org
16557 S:      Maintained
16558 F:      Documentation/devicetree/bindings/phy/qcom-usb-ipq4019-phy.yaml
16559 F:      drivers/phy/qualcomm/phy-qcom-ipq4019-usb.c
16560
16561 QUALCOMM IPQ4019 VQMMC REGULATOR DRIVER
16562 M:      Robert Marko <robert.marko@sartura.hr>
16563 M:      Luka Perkov <luka.perkov@sartura.hr>
16564 L:      linux-arm-msm@vger.kernel.org
16565 S:      Maintained
16566 F:      Documentation/devicetree/bindings/regulator/vqmmc-ipq4019-regulator.yaml
16567 F:      drivers/regulator/vqmmc-ipq4019-regulator.c
16568
16569 QUALCOMM NAND CONTROLLER DRIVER
16570 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
16571 L:      linux-mtd@lists.infradead.org
16572 L:      linux-arm-msm@vger.kernel.org
16573 S:      Maintained
16574 F:      Documentation/devicetree/bindings/mtd/qcom,nandc.yaml
16575 F:      drivers/mtd/nand/raw/qcom_nandc.c
16576
16577 QUALCOMM RMNET DRIVER
16578 M:      Subash Abhinov Kasiviswanathan <quic_subashab@quicinc.com>
16579 M:      Sean Tranchetti <quic_stranche@quicinc.com>
16580 L:      netdev@vger.kernel.org
16581 S:      Maintained
16582 F:      Documentation/networking/device_drivers/cellular/qualcomm/rmnet.rst
16583 F:      drivers/net/ethernet/qualcomm/rmnet/
16584 F:      include/linux/if_rmnet.h
16585
16586 QUALCOMM TSENS THERMAL DRIVER
16587 M:      Amit Kucheria <amitk@kernel.org>
16588 M:      Thara Gopinath <thara.gopinath@linaro.org>
16589 L:      linux-pm@vger.kernel.org
16590 L:      linux-arm-msm@vger.kernel.org
16591 S:      Maintained
16592 F:      Documentation/devicetree/bindings/thermal/qcom-tsens.yaml
16593 F:      drivers/thermal/qcom/
16594
16595 QUALCOMM VENUS VIDEO ACCELERATOR DRIVER
16596 M:      Stanimir Varbanov <stanimir.varbanov@linaro.org>
16597 L:      linux-media@vger.kernel.org
16598 L:      linux-arm-msm@vger.kernel.org
16599 S:      Maintained
16600 T:      git git://linuxtv.org/media_tree.git
16601 F:      Documentation/devicetree/bindings/media/*venus*
16602 F:      drivers/media/platform/qcom/venus/
16603
16604 QUALCOMM WCN36XX WIRELESS DRIVER
16605 M:      Loic Poulain <loic.poulain@linaro.org>
16606 L:      wcn36xx@lists.infradead.org
16607 S:      Supported
16608 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wcn36xx
16609 F:      drivers/net/wireless/ath/wcn36xx/
16610
16611 QUANTENNA QTNFMAC WIRELESS DRIVER
16612 M:      Igor Mitsyanko <imitsyanko@quantenna.com>
16613 R:      Sergey Matyukevich <geomatsi@gmail.com>
16614 L:      linux-wireless@vger.kernel.org
16615 S:      Maintained
16616 F:      drivers/net/wireless/quantenna
16617
16618 RADEON and AMDGPU DRM DRIVERS
16619 M:      Alex Deucher <alexander.deucher@amd.com>
16620 M:      Christian König <christian.koenig@amd.com>
16621 M:      Pan, Xinhui <Xinhui.Pan@amd.com>
16622 L:      amd-gfx@lists.freedesktop.org
16623 S:      Supported
16624 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
16625 B:      https://gitlab.freedesktop.org/drm/amd/-/issues
16626 C:      irc://irc.oftc.net/radeon
16627 F:      Documentation/gpu/amdgpu/
16628 F:      drivers/gpu/drm/amd/
16629 F:      drivers/gpu/drm/radeon/
16630 F:      include/uapi/drm/amdgpu_drm.h
16631 F:      include/uapi/drm/radeon_drm.h
16632
16633 RADEON FRAMEBUFFER DISPLAY DRIVER
16634 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
16635 L:      linux-fbdev@vger.kernel.org
16636 S:      Maintained
16637 F:      drivers/video/fbdev/aty/radeon*
16638 F:      include/uapi/linux/radeonfb.h
16639
16640 RADIOSHARK RADIO DRIVER
16641 M:      Hans Verkuil <hverkuil@xs4all.nl>
16642 L:      linux-media@vger.kernel.org
16643 S:      Maintained
16644 T:      git git://linuxtv.org/media_tree.git
16645 F:      drivers/media/radio/radio-shark.c
16646
16647 RADIOSHARK2 RADIO DRIVER
16648 M:      Hans Verkuil <hverkuil@xs4all.nl>
16649 L:      linux-media@vger.kernel.org
16650 S:      Maintained
16651 T:      git git://linuxtv.org/media_tree.git
16652 F:      drivers/media/radio/radio-shark2.c
16653 F:      drivers/media/radio/radio-tea5777.c
16654
16655 RADOS BLOCK DEVICE (RBD)
16656 M:      Ilya Dryomov <idryomov@gmail.com>
16657 R:      Dongsheng Yang <dongsheng.yang@easystack.cn>
16658 L:      ceph-devel@vger.kernel.org
16659 S:      Supported
16660 W:      http://ceph.com/
16661 T:      git git://github.com/ceph/ceph-client.git
16662 F:      Documentation/ABI/testing/sysfs-bus-rbd
16663 F:      drivers/block/rbd.c
16664 F:      drivers/block/rbd_types.h
16665
16666 RAGE128 FRAMEBUFFER DISPLAY DRIVER
16667 M:      Paul Mackerras <paulus@samba.org>
16668 L:      linux-fbdev@vger.kernel.org
16669 S:      Maintained
16670 F:      drivers/video/fbdev/aty/aty128fb.c
16671
16672 RAINSHADOW-CEC DRIVER
16673 M:      Hans Verkuil <hverkuil@xs4all.nl>
16674 L:      linux-media@vger.kernel.org
16675 S:      Maintained
16676 T:      git git://linuxtv.org/media_tree.git
16677 F:      drivers/media/cec/usb/rainshadow/
16678
16679 RALINK MIPS ARCHITECTURE
16680 M:      John Crispin <john@phrozen.org>
16681 L:      linux-mips@vger.kernel.org
16682 S:      Maintained
16683 F:      arch/mips/ralink
16684
16685 RALINK MT7621 MIPS ARCHITECTURE
16686 M:      Arınç ÜNAL <arinc.unal@arinc9.com>
16687 M:      Sergio Paracuellos <sergio.paracuellos@gmail.com>
16688 L:      linux-mips@vger.kernel.org
16689 S:      Maintained
16690 F:      arch/mips/boot/dts/ralink/mt7621*
16691
16692 RALINK PINCTRL DRIVER
16693 M:      Arınç ÜNAL <arinc.unal@arinc9.com>
16694 M:      Sergio Paracuellos <sergio.paracuellos@gmail.com>
16695 L:      linux-mips@vger.kernel.org
16696 S:      Maintained
16697 F:      drivers/pinctrl/ralink/
16698
16699 RALINK RT2X00 WIRELESS LAN DRIVER
16700 M:      Stanislaw Gruszka <stf_xl@wp.pl>
16701 M:      Helmut Schaa <helmut.schaa@googlemail.com>
16702 L:      linux-wireless@vger.kernel.org
16703 S:      Maintained
16704 F:      drivers/net/wireless/ralink/rt2x00/
16705
16706 RAMDISK RAM BLOCK DEVICE DRIVER
16707 M:      Jens Axboe <axboe@kernel.dk>
16708 S:      Maintained
16709 F:      Documentation/admin-guide/blockdev/ramdisk.rst
16710 F:      drivers/block/brd.c
16711
16712 RANCHU VIRTUAL BOARD FOR MIPS
16713 M:      Miodrag Dinic <miodrag.dinic@mips.com>
16714 L:      linux-mips@vger.kernel.org
16715 S:      Supported
16716 F:      arch/mips/configs/generic/board-ranchu.config
16717 F:      arch/mips/generic/board-ranchu.c
16718
16719 RANDOM NUMBER DRIVER
16720 M:      "Theodore Ts'o" <tytso@mit.edu>
16721 M:      Jason A. Donenfeld <Jason@zx2c4.com>
16722 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/crng/random.git
16723 S:      Maintained
16724 F:      drivers/char/random.c
16725 F:      drivers/virt/vmgenid.c
16726
16727 RAPIDIO SUBSYSTEM
16728 M:      Matt Porter <mporter@kernel.crashing.org>
16729 M:      Alexandre Bounine <alex.bou9@gmail.com>
16730 S:      Maintained
16731 F:      drivers/rapidio/
16732
16733 RAS INFRASTRUCTURE
16734 M:      Tony Luck <tony.luck@intel.com>
16735 M:      Borislav Petkov <bp@alien8.de>
16736 L:      linux-edac@vger.kernel.org
16737 S:      Maintained
16738 F:      Documentation/admin-guide/ras.rst
16739 F:      drivers/ras/
16740 F:      include/linux/ras.h
16741 F:      include/ras/ras_event.h
16742
16743 RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
16744 L:      linux-wireless@vger.kernel.org
16745 S:      Orphan
16746 F:      drivers/net/wireless/ray*
16747
16748 RC-CORE / LIRC FRAMEWORK
16749 M:      Sean Young <sean@mess.org>
16750 L:      linux-media@vger.kernel.org
16751 S:      Maintained
16752 W:      http://linuxtv.org
16753 T:      git git://linuxtv.org/media_tree.git
16754 F:      Documentation/driver-api/media/rc-core.rst
16755 F:      Documentation/userspace-api/media/rc/
16756 F:      drivers/media/rc/
16757 F:      include/media/rc-map.h
16758 F:      include/media/rc-core.h
16759 F:      include/uapi/linux/lirc.h
16760
16761 RCMM REMOTE CONTROLS DECODER
16762 M:      Patrick Lerda <patrick9876@free.fr>
16763 S:      Maintained
16764 F:      drivers/media/rc/ir-rcmm-decoder.c
16765
16766 RCUTORTURE TEST FRAMEWORK
16767 M:      "Paul E. McKenney" <paulmck@kernel.org>
16768 M:      Josh Triplett <josh@joshtriplett.org>
16769 R:      Steven Rostedt <rostedt@goodmis.org>
16770 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
16771 R:      Lai Jiangshan <jiangshanlai@gmail.com>
16772 L:      rcu@vger.kernel.org
16773 S:      Supported
16774 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
16775 F:      tools/testing/selftests/rcutorture
16776
16777 RDACM20 Camera Sensor
16778 M:      Jacopo Mondi <jacopo+renesas@jmondi.org>
16779 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
16780 M:      Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
16781 M:      Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
16782 L:      linux-media@vger.kernel.org
16783 S:      Maintained
16784 F:      Documentation/devicetree/bindings/media/i2c/imi,rdacm2x-gmsl.yaml
16785 F:      drivers/media/i2c/max9271.c
16786 F:      drivers/media/i2c/max9271.h
16787 F:      drivers/media/i2c/rdacm20.c
16788
16789 RDACM21 Camera Sensor
16790 M:      Jacopo Mondi <jacopo+renesas@jmondi.org>
16791 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
16792 M:      Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
16793 M:      Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
16794 L:      linux-media@vger.kernel.org
16795 S:      Maintained
16796 F:      Documentation/devicetree/bindings/media/i2c/imi,rdacm2x-gmsl.yaml
16797 F:      drivers/media/i2c/max9271.c
16798 F:      drivers/media/i2c/max9271.h
16799 F:      drivers/media/i2c/rdacm21.c
16800
16801 RDC R-321X SoC
16802 M:      Florian Fainelli <florian@openwrt.org>
16803 S:      Maintained
16804
16805 RDC R6040 FAST ETHERNET DRIVER
16806 M:      Florian Fainelli <f.fainelli@gmail.com>
16807 L:      netdev@vger.kernel.org
16808 S:      Maintained
16809 F:      drivers/net/ethernet/rdc/r6040.c
16810
16811 RDMAVT - RDMA verbs software
16812 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
16813 L:      linux-rdma@vger.kernel.org
16814 S:      Supported
16815 F:      drivers/infiniband/sw/rdmavt
16816
16817 RDS - RELIABLE DATAGRAM SOCKETS
16818 M:      Santosh Shilimkar <santosh.shilimkar@oracle.com>
16819 L:      netdev@vger.kernel.org
16820 L:      linux-rdma@vger.kernel.org
16821 L:      rds-devel@oss.oracle.com (moderated for non-subscribers)
16822 S:      Supported
16823 W:      https://oss.oracle.com/projects/rds/
16824 F:      Documentation/networking/rds.rst
16825 F:      net/rds/
16826
16827 RDT - RESOURCE ALLOCATION
16828 M:      Fenghua Yu <fenghua.yu@intel.com>
16829 M:      Reinette Chatre <reinette.chatre@intel.com>
16830 L:      linux-kernel@vger.kernel.org
16831 S:      Supported
16832 F:      Documentation/x86/resctrl*
16833 F:      arch/x86/include/asm/resctrl.h
16834 F:      arch/x86/kernel/cpu/resctrl/
16835 F:      tools/testing/selftests/resctrl/
16836
16837 READ-COPY UPDATE (RCU)
16838 M:      "Paul E. McKenney" <paulmck@kernel.org>
16839 M:      Frederic Weisbecker <frederic@kernel.org> (kernel/rcu/tree_nocb.h)
16840 M:      Neeraj Upadhyay <quic_neeraju@quicinc.com> (kernel/rcu/tasks.h)
16841 M:      Josh Triplett <josh@joshtriplett.org>
16842 R:      Steven Rostedt <rostedt@goodmis.org>
16843 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
16844 R:      Lai Jiangshan <jiangshanlai@gmail.com>
16845 R:      Joel Fernandes <joel@joelfernandes.org>
16846 L:      rcu@vger.kernel.org
16847 S:      Supported
16848 W:      http://www.rdrop.com/users/paulmck/RCU/
16849 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
16850 F:      Documentation/RCU/
16851 F:      include/linux/rcu*
16852 F:      kernel/rcu/
16853 X:      Documentation/RCU/torture.rst
16854 X:      include/linux/srcu*.h
16855 X:      kernel/rcu/srcu*.c
16856
16857 REAL TIME CLOCK (RTC) SUBSYSTEM
16858 M:      Alessandro Zummo <a.zummo@towertech.it>
16859 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
16860 L:      linux-rtc@vger.kernel.org
16861 S:      Maintained
16862 Q:      http://patchwork.ozlabs.org/project/rtc-linux/list/
16863 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git
16864 F:      Documentation/admin-guide/rtc.rst
16865 F:      Documentation/devicetree/bindings/rtc/
16866 F:      drivers/rtc/
16867 F:      include/linux/platform_data/rtc-*
16868 F:      include/linux/rtc.h
16869 F:      include/linux/rtc/
16870 F:      include/uapi/linux/rtc.h
16871 F:      tools/testing/selftests/rtc/
16872
16873 REALTEK AUDIO CODECS
16874 M:      Oder Chiou <oder_chiou@realtek.com>
16875 S:      Maintained
16876 F:      include/sound/rt*.h
16877 F:      sound/soc/codecs/rt*
16878
16879 REALTEK OTTO WATCHDOG
16880 M:      Sander Vanheule <sander@svanheule.net>
16881 L:      linux-watchdog@vger.kernel.org
16882 S:      Maintained
16883 F:      Documentation/devicetree/bindings/watchdog/realtek,otto-wdt.yaml
16884 F:      drivers/watchdog/realtek_otto_wdt.c
16885
16886 REALTEK RTL83xx SMI DSA ROUTER CHIPS
16887 M:      Linus Walleij <linus.walleij@linaro.org>
16888 M:      Alvin Šipraga <alsi@bang-olufsen.dk>
16889 S:      Maintained
16890 F:      Documentation/devicetree/bindings/net/dsa/realtek.yaml
16891 F:      drivers/net/dsa/realtek/*
16892
16893 REALTEK WIRELESS DRIVER (rtlwifi family)
16894 M:      Ping-Ke Shih <pkshih@realtek.com>
16895 L:      linux-wireless@vger.kernel.org
16896 S:      Maintained
16897 W:      https://wireless.wiki.kernel.org/
16898 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
16899 F:      drivers/net/wireless/realtek/rtlwifi/
16900
16901 REALTEK WIRELESS DRIVER (rtw88)
16902 M:      Yan-Hsuan Chuang <tony0620emma@gmail.com>
16903 L:      linux-wireless@vger.kernel.org
16904 S:      Maintained
16905 F:      drivers/net/wireless/realtek/rtw88/
16906
16907 REALTEK WIRELESS DRIVER (rtw89)
16908 M:      Ping-Ke Shih <pkshih@realtek.com>
16909 L:      linux-wireless@vger.kernel.org
16910 S:      Maintained
16911 F:      drivers/net/wireless/realtek/rtw89/
16912
16913 REDPINE WIRELESS DRIVER
16914 M:      Amitkumar Karwar <amitkarwar@gmail.com>
16915 M:      Siva Rebbagondla <siva8118@gmail.com>
16916 L:      linux-wireless@vger.kernel.org
16917 S:      Maintained
16918 F:      drivers/net/wireless/rsi/
16919
16920 REGISTER MAP ABSTRACTION
16921 M:      Mark Brown <broonie@kernel.org>
16922 L:      linux-kernel@vger.kernel.org
16923 S:      Supported
16924 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
16925 F:      Documentation/devicetree/bindings/regmap/
16926 F:      drivers/base/regmap/
16927 F:      include/linux/regmap.h
16928
16929 REISERFS FILE SYSTEM
16930 L:      reiserfs-devel@vger.kernel.org
16931 S:      Supported
16932 F:      fs/reiserfs/
16933
16934 REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
16935 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
16936 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
16937 L:      linux-remoteproc@vger.kernel.org
16938 S:      Maintained
16939 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/remoteproc/linux.git rproc-next
16940 F:      Documentation/ABI/testing/sysfs-class-remoteproc
16941 F:      Documentation/devicetree/bindings/remoteproc/
16942 F:      Documentation/staging/remoteproc.rst
16943 F:      drivers/remoteproc/
16944 F:      include/linux/remoteproc.h
16945 F:      include/linux/remoteproc/
16946
16947 REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM
16948 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
16949 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
16950 L:      linux-remoteproc@vger.kernel.org
16951 S:      Maintained
16952 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/remoteproc/linux.git rpmsg-next
16953 F:      Documentation/ABI/testing/sysfs-bus-rpmsg
16954 F:      Documentation/staging/rpmsg.rst
16955 F:      drivers/rpmsg/
16956 F:      include/linux/rpmsg.h
16957 F:      include/linux/rpmsg/
16958 F:      include/uapi/linux/rpmsg.h
16959 F:      samples/rpmsg/
16960
16961 REMOTE PROCESSOR MESSAGING (RPMSG) WWAN CONTROL DRIVER
16962 M:      Stephan Gerhold <stephan@gerhold.net>
16963 L:      netdev@vger.kernel.org
16964 L:      linux-remoteproc@vger.kernel.org
16965 S:      Maintained
16966 F:      drivers/net/wwan/rpmsg_wwan_ctrl.c
16967
16968 RENESAS CLOCK DRIVERS
16969 M:      Geert Uytterhoeven <geert+renesas@glider.be>
16970 L:      linux-renesas-soc@vger.kernel.org
16971 S:      Supported
16972 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git renesas-clk
16973 F:      Documentation/devicetree/bindings/clock/renesas,*
16974 F:      drivers/clk/renesas/
16975
16976 RENESAS EMEV2 I2C DRIVER
16977 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
16978 L:      linux-renesas-soc@vger.kernel.org
16979 S:      Supported
16980 F:      Documentation/devicetree/bindings/i2c/renesas,iic-emev2.yaml
16981 F:      drivers/i2c/busses/i2c-emev2.c
16982
16983 RENESAS ETHERNET DRIVERS
16984 R:      Sergey Shtylyov <s.shtylyov@omp.ru>
16985 L:      netdev@vger.kernel.org
16986 L:      linux-renesas-soc@vger.kernel.org
16987 F:      Documentation/devicetree/bindings/net/renesas,*.yaml
16988 F:      drivers/net/ethernet/renesas/
16989 F:      include/linux/sh_eth.h
16990
16991 RENESAS R-CAR GYROADC DRIVER
16992 M:      Marek Vasut <marek.vasut@gmail.com>
16993 L:      linux-iio@vger.kernel.org
16994 S:      Supported
16995 F:      Documentation/devicetree/bindings/iio/adc/renesas,rcar-gyroadc.yaml
16996 F:      drivers/iio/adc/rcar-gyroadc.c
16997
16998 RENESAS R-CAR I2C DRIVERS
16999 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
17000 L:      linux-renesas-soc@vger.kernel.org
17001 S:      Supported
17002 F:      Documentation/devicetree/bindings/i2c/renesas,rcar-i2c.yaml
17003 F:      Documentation/devicetree/bindings/i2c/renesas,rmobile-iic.yaml
17004 F:      drivers/i2c/busses/i2c-rcar.c
17005 F:      drivers/i2c/busses/i2c-sh_mobile.c
17006
17007 RENESAS R-CAR SATA DRIVER
17008 R:      Sergey Shtylyov <s.shtylyov@omp.ru>
17009 S:      Supported
17010 L:      linux-ide@vger.kernel.org
17011 L:      linux-renesas-soc@vger.kernel.org
17012 F:      Documentation/devicetree/bindings/ata/renesas,rcar-sata.yaml
17013 F:      drivers/ata/sata_rcar.c
17014
17015 RENESAS R-CAR THERMAL DRIVERS
17016 M:      Niklas Söderlund <niklas.soderlund@ragnatech.se>
17017 L:      linux-renesas-soc@vger.kernel.org
17018 S:      Supported
17019 F:      Documentation/devicetree/bindings/thermal/rcar-gen3-thermal.yaml
17020 F:      Documentation/devicetree/bindings/thermal/rcar-thermal.yaml
17021 F:      drivers/thermal/rcar_gen3_thermal.c
17022 F:      drivers/thermal/rcar_thermal.c
17023
17024 RENESAS RIIC DRIVER
17025 M:      Chris Brandt <chris.brandt@renesas.com>
17026 L:      linux-renesas-soc@vger.kernel.org
17027 S:      Supported
17028 F:      Documentation/devicetree/bindings/i2c/renesas,riic.yaml
17029 F:      drivers/i2c/busses/i2c-riic.c
17030
17031 RENESAS USB PHY DRIVER
17032 M:      Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
17033 L:      linux-renesas-soc@vger.kernel.org
17034 S:      Maintained
17035 F:      drivers/phy/renesas/phy-rcar-gen3-usb*.c
17036
17037 RENESAS RZ/G2L A/D DRIVER
17038 M:      Lad Prabhakar <prabhakar.mahadev-lad.rj@bp.renesas.com>
17039 L:      linux-iio@vger.kernel.org
17040 L:      linux-renesas-soc@vger.kernel.org
17041 S:      Supported
17042 F:      Documentation/devicetree/bindings/iio/adc/renesas,rzg2l-adc.yaml
17043 F:      drivers/iio/adc/rzg2l_adc.c
17044
17045 RENESAS RZ/N1 RTC CONTROLLER DRIVER
17046 M:      Miquel Raynal <miquel.raynal@bootlin.com>
17047 L:      linux-rtc@vger.kernel.org
17048 L:      linux-renesas-soc@vger.kernel.org
17049 S:      Maintained
17050 F:      Documentation/devicetree/bindings/rtc/renesas,rzn1-rtc.yaml
17051 F:      drivers/rtc/rtc-rzn1.c
17052
17053 RENESAS R-CAR GEN3 & RZ/N1 NAND CONTROLLER DRIVER
17054 M:      Miquel Raynal <miquel.raynal@bootlin.com>
17055 L:      linux-mtd@lists.infradead.org
17056 L:      linux-renesas-soc@vger.kernel.org
17057 S:      Maintained
17058 F:      Documentation/devicetree/bindings/mtd/renesas-nandc.yaml
17059 F:      drivers/mtd/nand/raw/renesas-nand-controller.c
17060
17061 RESET CONTROLLER FRAMEWORK
17062 M:      Philipp Zabel <p.zabel@pengutronix.de>
17063 S:      Maintained
17064 T:      git git://git.pengutronix.de/git/pza/linux
17065 F:      Documentation/devicetree/bindings/reset/
17066 F:      Documentation/driver-api/reset.rst
17067 F:      drivers/reset/
17068 F:      include/dt-bindings/reset/
17069 F:      include/linux/reset-controller.h
17070 F:      include/linux/reset.h
17071 F:      include/linux/reset/
17072 K:      \b(?:devm_|of_)?reset_control(?:ler_[a-z]+|_[a-z_]+)?\b
17073
17074 RESTARTABLE SEQUENCES SUPPORT
17075 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
17076 M:      Peter Zijlstra <peterz@infradead.org>
17077 M:      "Paul E. McKenney" <paulmck@kernel.org>
17078 M:      Boqun Feng <boqun.feng@gmail.com>
17079 L:      linux-kernel@vger.kernel.org
17080 S:      Supported
17081 F:      include/trace/events/rseq.h
17082 F:      include/uapi/linux/rseq.h
17083 F:      kernel/rseq.c
17084 F:      tools/testing/selftests/rseq/
17085
17086 RFKILL
17087 M:      Johannes Berg <johannes@sipsolutions.net>
17088 L:      linux-wireless@vger.kernel.org
17089 S:      Maintained
17090 W:      https://wireless.wiki.kernel.org/
17091 Q:      https://patchwork.kernel.org/project/linux-wireless/list/
17092 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless.git
17093 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless-next.git
17094 F:      Documentation/ABI/stable/sysfs-class-rfkill
17095 F:      Documentation/driver-api/rfkill.rst
17096 F:      include/linux/rfkill.h
17097 F:      include/uapi/linux/rfkill.h
17098 F:      net/rfkill/
17099
17100 RHASHTABLE
17101 M:      Thomas Graf <tgraf@suug.ch>
17102 M:      Herbert Xu <herbert@gondor.apana.org.au>
17103 L:      netdev@vger.kernel.org
17104 S:      Maintained
17105 F:      include/linux/rhashtable-types.h
17106 F:      include/linux/rhashtable.h
17107 F:      lib/rhashtable.c
17108 F:      lib/test_rhashtable.c
17109
17110 RICOH R5C592 MEMORYSTICK DRIVER
17111 M:      Maxim Levitsky <maximlevitsky@gmail.com>
17112 S:      Maintained
17113 F:      drivers/memstick/host/r592.*
17114
17115 RICOH SMARTMEDIA/XD DRIVER
17116 M:      Maxim Levitsky <maximlevitsky@gmail.com>
17117 S:      Maintained
17118 F:      drivers/mtd/nand/raw/r852.c
17119 F:      drivers/mtd/nand/raw/r852.h
17120
17121 RISC-V PMU DRIVERS
17122 M:      Atish Patra <atishp@atishpatra.org>
17123 R:      Anup Patel <anup@brainfault.org>
17124 L:      linux-riscv@lists.infradead.org
17125 S:      Supported
17126 F:      drivers/perf/riscv_pmu.c
17127 F:      drivers/perf/riscv_pmu_legacy.c
17128 F:      drivers/perf/riscv_pmu_sbi.c
17129
17130 RISC-V ARCHITECTURE
17131 M:      Paul Walmsley <paul.walmsley@sifive.com>
17132 M:      Palmer Dabbelt <palmer@dabbelt.com>
17133 M:      Albert Ou <aou@eecs.berkeley.edu>
17134 L:      linux-riscv@lists.infradead.org
17135 S:      Supported
17136 P:      Documentation/riscv/patch-acceptance.rst
17137 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/riscv/linux.git
17138 F:      arch/riscv/
17139 N:      riscv
17140 K:      riscv
17141
17142 RISC-V/MICROCHIP POLARFIRE SOC SUPPORT
17143 M:      Lewis Hanly <lewis.hanly@microchip.com>
17144 M:      Conor Dooley <conor.dooley@microchip.com>
17145 L:      linux-riscv@lists.infradead.org
17146 S:      Supported
17147 F:      arch/riscv/boot/dts/microchip/
17148 F:      drivers/mailbox/mailbox-mpfs.c
17149 F:      drivers/soc/microchip/
17150 F:      include/soc/microchip/mpfs.h
17151
17152 RNBD BLOCK DRIVERS
17153 M:      Md. Haris Iqbal <haris.iqbal@ionos.com>
17154 M:      Jack Wang <jinpu.wang@ionos.com>
17155 L:      linux-block@vger.kernel.org
17156 S:      Maintained
17157 F:      drivers/block/rnbd/
17158
17159 ROCCAT DRIVERS
17160 M:      Stefan Achatz <erazor_de@users.sourceforge.net>
17161 S:      Maintained
17162 W:      http://sourceforge.net/projects/roccat/
17163 F:      Documentation/ABI/*/sysfs-driver-hid-roccat*
17164 F:      drivers/hid/hid-roccat*
17165 F:      include/linux/hid-roccat*
17166
17167 ROCKCHIP I2S TDM DRIVER
17168 M:      Nicolas Frattaroli <frattaroli.nicolas@gmail.com>
17169 L:      linux-rockchip@lists.infradead.org
17170 S:      Maintained
17171 F:      Documentation/devicetree/bindings/sound/rockchip,i2s-tdm.yaml
17172 F:      sound/soc/rockchip/rockchip_i2s_tdm.*
17173
17174 ROCKCHIP ISP V1 DRIVER
17175 M:      Dafna Hirschfeld <dafna@fastmail.com>
17176 L:      linux-media@vger.kernel.org
17177 L:      linux-rockchip@lists.infradead.org
17178 S:      Maintained
17179 F:      Documentation/admin-guide/media/rkisp1.rst
17180 F:      Documentation/devicetree/bindings/media/rockchip-isp1.yaml
17181 F:      Documentation/userspace-api/media/v4l/pixfmt-meta-rkisp1.rst
17182 F:      drivers/media/platform/rockchip/rkisp1
17183 F:      include/uapi/linux/rkisp1-config.h
17184
17185 ROCKCHIP RASTER 2D GRAPHIC ACCELERATION UNIT DRIVER
17186 M:      Jacob Chen <jacob-chen@iotwrt.com>
17187 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
17188 L:      linux-media@vger.kernel.org
17189 L:      linux-rockchip@lists.infradead.org
17190 S:      Maintained
17191 F:      Documentation/devicetree/bindings/media/rockchip-rga.yaml
17192 F:      drivers/media/platform/rockchip/rga/
17193
17194 ROCKCHIP VIDEO DECODER DRIVER
17195 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
17196 L:      linux-media@vger.kernel.org
17197 L:      linux-rockchip@lists.infradead.org
17198 S:      Maintained
17199 F:      Documentation/devicetree/bindings/media/rockchip,vdec.yaml
17200 F:      drivers/staging/media/rkvdec/
17201
17202 ROCKER DRIVER
17203 M:      Jiri Pirko <jiri@resnulli.us>
17204 L:      netdev@vger.kernel.org
17205 S:      Supported
17206 F:      drivers/net/ethernet/rocker/
17207
17208 ROCKETPORT EXPRESS/INFINITY DRIVER
17209 M:      Kevin Cernekee <cernekee@gmail.com>
17210 L:      linux-serial@vger.kernel.org
17211 S:      Odd Fixes
17212 F:      drivers/tty/serial/rp2.*
17213
17214 ROHM BD99954 CHARGER IC
17215 R:      Matti Vaittinen <mazziesaccount@gmail.com>
17216 S:      Supported
17217 F:      drivers/power/supply/bd99954-charger.c
17218 F:      drivers/power/supply/bd99954-charger.h
17219
17220 ROHM BH1750 AMBIENT LIGHT SENSOR DRIVER
17221 M:      Tomasz Duszynski <tduszyns@gmail.com>
17222 S:      Maintained
17223 F:      Documentation/devicetree/bindings/iio/light/bh1750.yaml
17224 F:      drivers/iio/light/bh1750.c
17225
17226 ROHM MULTIFUNCTION BD9571MWV-M PMIC DEVICE DRIVERS
17227 M:      Marek Vasut <marek.vasut+renesas@gmail.com>
17228 L:      linux-kernel@vger.kernel.org
17229 L:      linux-renesas-soc@vger.kernel.org
17230 S:      Supported
17231 F:      Documentation/devicetree/bindings/mfd/rohm,bd9571mwv.yaml
17232 F:      drivers/gpio/gpio-bd9571mwv.c
17233 F:      drivers/mfd/bd9571mwv.c
17234 F:      drivers/regulator/bd9571mwv-regulator.c
17235 F:      include/linux/mfd/bd9571mwv.h
17236
17237 ROHM POWER MANAGEMENT IC DEVICE DRIVERS
17238 R:      Matti Vaittinen <mazziesaccount@gmail.com>
17239 S:      Supported
17240 F:      drivers/clk/clk-bd718x7.c
17241 F:      drivers/gpio/gpio-bd71815.c
17242 F:      drivers/gpio/gpio-bd71828.c
17243 F:      drivers/mfd/rohm-bd71828.c
17244 F:      drivers/mfd/rohm-bd718x7.c
17245 F:      drivers/mfd/rohm-bd9576.c
17246 F:      drivers/regulator/bd71815-regulator.c
17247 F:      drivers/regulator/bd71828-regulator.c
17248 F:      drivers/regulator/bd718x7-regulator.c
17249 F:      drivers/regulator/bd9576-regulator.c
17250 F:      drivers/regulator/rohm-regulator.c
17251 F:      drivers/rtc/rtc-bd70528.c
17252 F:      drivers/watchdog/bd9576_wdt.c
17253 F:      include/linux/mfd/rohm-bd71815.h
17254 F:      include/linux/mfd/rohm-bd71828.h
17255 F:      include/linux/mfd/rohm-bd718x7.h
17256 F:      include/linux/mfd/rohm-bd957x.h
17257 F:      include/linux/mfd/rohm-generic.h
17258 F:      include/linux/mfd/rohm-shared.h
17259
17260 ROSE NETWORK LAYER
17261 M:      Ralf Baechle <ralf@linux-mips.org>
17262 L:      linux-hams@vger.kernel.org
17263 S:      Maintained
17264 W:      http://www.linux-ax25.org/
17265 F:      include/net/rose.h
17266 F:      include/uapi/linux/rose.h
17267 F:      net/rose/
17268
17269 ROTATION DRIVER FOR ALLWINNER A83T
17270 M:      Jernej Skrabec <jernej.skrabec@gmail.com>
17271 L:      linux-media@vger.kernel.org
17272 S:      Maintained
17273 T:      git git://linuxtv.org/media_tree.git
17274 F:      Documentation/devicetree/bindings/media/allwinner,sun8i-a83t-de2-rotate.yaml
17275 F:      drivers/media/platform/sunxi/sun8i-rotate/
17276
17277 RPMSG TTY DRIVER
17278 M:      Arnaud Pouliquen <arnaud.pouliquen@foss.st.com>
17279 L:      linux-remoteproc@vger.kernel.org
17280 S:      Maintained
17281 F:      drivers/tty/rpmsg_tty.c
17282
17283 RTL2830 MEDIA DRIVER
17284 M:      Antti Palosaari <crope@iki.fi>
17285 L:      linux-media@vger.kernel.org
17286 S:      Maintained
17287 W:      https://linuxtv.org
17288 W:      http://palosaari.fi/linux/
17289 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17290 T:      git git://linuxtv.org/anttip/media_tree.git
17291 F:      drivers/media/dvb-frontends/rtl2830*
17292
17293 RTL2832 MEDIA DRIVER
17294 M:      Antti Palosaari <crope@iki.fi>
17295 L:      linux-media@vger.kernel.org
17296 S:      Maintained
17297 W:      https://linuxtv.org
17298 W:      http://palosaari.fi/linux/
17299 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17300 T:      git git://linuxtv.org/anttip/media_tree.git
17301 F:      drivers/media/dvb-frontends/rtl2832*
17302
17303 RTL2832_SDR MEDIA DRIVER
17304 M:      Antti Palosaari <crope@iki.fi>
17305 L:      linux-media@vger.kernel.org
17306 S:      Maintained
17307 W:      https://linuxtv.org
17308 W:      http://palosaari.fi/linux/
17309 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17310 T:      git git://linuxtv.org/anttip/media_tree.git
17311 F:      drivers/media/dvb-frontends/rtl2832_sdr*
17312
17313 RTL8180 WIRELESS DRIVER
17314 L:      linux-wireless@vger.kernel.org
17315 S:      Orphan
17316 W:      https://wireless.wiki.kernel.org/
17317 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
17318 F:      drivers/net/wireless/realtek/rtl818x/rtl8180/
17319
17320 RTL8187 WIRELESS DRIVER
17321 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
17322 M:      Hin-Tak Leung <htl10@users.sourceforge.net>
17323 M:      Larry Finger <Larry.Finger@lwfinger.net>
17324 L:      linux-wireless@vger.kernel.org
17325 S:      Maintained
17326 W:      https://wireless.wiki.kernel.org/
17327 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
17328 F:      drivers/net/wireless/realtek/rtl818x/rtl8187/
17329
17330 RTL8XXXU WIRELESS DRIVER (rtl8xxxu)
17331 M:      Jes Sorensen <Jes.Sorensen@gmail.com>
17332 L:      linux-wireless@vger.kernel.org
17333 S:      Maintained
17334 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jes/linux.git rtl8xxxu-devel
17335 F:      drivers/net/wireless/realtek/rtl8xxxu/
17336
17337 RTRS TRANSPORT DRIVERS
17338 M:      Md. Haris Iqbal <haris.iqbal@ionos.com>
17339 M:      Jack Wang <jinpu.wang@ionos.com>
17340 L:      linux-rdma@vger.kernel.org
17341 S:      Maintained
17342 F:      drivers/infiniband/ulp/rtrs/
17343
17344 RXRPC SOCKETS (AF_RXRPC)
17345 M:      David Howells <dhowells@redhat.com>
17346 M:      Marc Dionne <marc.dionne@auristor.com>
17347 L:      linux-afs@lists.infradead.org
17348 S:      Supported
17349 W:      https://www.infradead.org/~dhowells/kafs/
17350 F:      Documentation/networking/rxrpc.rst
17351 F:      include/keys/rxrpc-type.h
17352 F:      include/net/af_rxrpc.h
17353 F:      include/trace/events/rxrpc.h
17354 F:      include/uapi/linux/rxrpc.h
17355 F:      net/rxrpc/
17356
17357 S3 SAVAGE FRAMEBUFFER DRIVER
17358 M:      Antonino Daplas <adaplas@gmail.com>
17359 L:      linux-fbdev@vger.kernel.org
17360 S:      Maintained
17361 F:      drivers/video/fbdev/savage/
17362
17363 S390
17364 M:      Heiko Carstens <hca@linux.ibm.com>
17365 M:      Vasily Gorbik <gor@linux.ibm.com>
17366 M:      Alexander Gordeev <agordeev@linux.ibm.com>
17367 R:      Christian Borntraeger <borntraeger@linux.ibm.com>
17368 R:      Sven Schnelle <svens@linux.ibm.com>
17369 L:      linux-s390@vger.kernel.org
17370 S:      Supported
17371 W:      http://www.ibm.com/developerworks/linux/linux390/
17372 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux.git
17373 F:      Documentation/driver-api/s390-drivers.rst
17374 F:      Documentation/s390/
17375 F:      arch/s390/
17376 F:      drivers/s390/
17377
17378 S390 COMMON I/O LAYER
17379 M:      Vineeth Vijayan <vneethv@linux.ibm.com>
17380 M:      Peter Oberparleiter <oberpar@linux.ibm.com>
17381 L:      linux-s390@vger.kernel.org
17382 S:      Supported
17383 W:      http://www.ibm.com/developerworks/linux/linux390/
17384 F:      drivers/s390/cio/
17385
17386 S390 DASD DRIVER
17387 M:      Stefan Haberland <sth@linux.ibm.com>
17388 M:      Jan Hoeppner <hoeppner@linux.ibm.com>
17389 L:      linux-s390@vger.kernel.org
17390 S:      Supported
17391 W:      http://www.ibm.com/developerworks/linux/linux390/
17392 F:      block/partitions/ibm.c
17393 F:      drivers/s390/block/dasd*
17394 F:      include/linux/dasd_mod.h
17395
17396 S390 IOMMU (PCI)
17397 M:      Matthew Rosato <mjrosato@linux.ibm.com>
17398 M:      Gerald Schaefer <gerald.schaefer@linux.ibm.com>
17399 L:      linux-s390@vger.kernel.org
17400 S:      Supported
17401 W:      http://www.ibm.com/developerworks/linux/linux390/
17402 F:      drivers/iommu/s390-iommu.c
17403
17404 S390 IUCV NETWORK LAYER
17405 M:      Alexandra Winter <wintera@linux.ibm.com>
17406 M:      Wenjia Zhang <wenjia@linux.ibm.com>
17407 L:      linux-s390@vger.kernel.org
17408 L:      netdev@vger.kernel.org
17409 S:      Supported
17410 W:      http://www.ibm.com/developerworks/linux/linux390/
17411 F:      drivers/s390/net/*iucv*
17412 F:      include/net/iucv/
17413 F:      net/iucv/
17414
17415 S390 NETWORK DRIVERS
17416 M:      Alexandra Winter <wintera@linux.ibm.com>
17417 M:      Wenjia Zhang <wenjia@linux.ibm.com>
17418 L:      linux-s390@vger.kernel.org
17419 L:      netdev@vger.kernel.org
17420 S:      Supported
17421 W:      http://www.ibm.com/developerworks/linux/linux390/
17422 F:      drivers/s390/net/
17423
17424 S390 PCI SUBSYSTEM
17425 M:      Niklas Schnelle <schnelle@linux.ibm.com>
17426 M:      Gerald Schaefer <gerald.schaefer@linux.ibm.com>
17427 L:      linux-s390@vger.kernel.org
17428 S:      Supported
17429 W:      http://www.ibm.com/developerworks/linux/linux390/
17430 F:      arch/s390/pci/
17431 F:      drivers/pci/hotplug/s390_pci_hpc.c
17432 F:      Documentation/s390/pci.rst
17433
17434 S390 VFIO AP DRIVER
17435 M:      Tony Krowiak <akrowiak@linux.ibm.com>
17436 M:      Halil Pasic <pasic@linux.ibm.com>
17437 M:      Jason Herne <jjherne@linux.ibm.com>
17438 L:      linux-s390@vger.kernel.org
17439 S:      Supported
17440 W:      http://www.ibm.com/developerworks/linux/linux390/
17441 F:      Documentation/s390/vfio-ap.rst
17442 F:      drivers/s390/crypto/vfio_ap*
17443
17444 S390 VFIO-CCW DRIVER
17445 M:      Eric Farman <farman@linux.ibm.com>
17446 M:      Matthew Rosato <mjrosato@linux.ibm.com>
17447 R:      Halil Pasic <pasic@linux.ibm.com>
17448 L:      linux-s390@vger.kernel.org
17449 L:      kvm@vger.kernel.org
17450 S:      Supported
17451 F:      Documentation/s390/vfio-ccw.rst
17452 F:      drivers/s390/cio/vfio_ccw*
17453 F:      include/uapi/linux/vfio_ccw.h
17454
17455 S390 VFIO-PCI DRIVER
17456 M:      Matthew Rosato <mjrosato@linux.ibm.com>
17457 M:      Eric Farman <farman@linux.ibm.com>
17458 L:      linux-s390@vger.kernel.org
17459 L:      kvm@vger.kernel.org
17460 S:      Supported
17461 F:      drivers/vfio/pci/vfio_pci_zdev.c
17462 F:      include/uapi/linux/vfio_zdev.h
17463
17464 S390 ZCRYPT DRIVER
17465 M:      Harald Freudenberger <freude@linux.ibm.com>
17466 L:      linux-s390@vger.kernel.org
17467 S:      Supported
17468 W:      http://www.ibm.com/developerworks/linux/linux390/
17469 F:      drivers/s390/crypto/
17470
17471 S390 ZFCP DRIVER
17472 M:      Steffen Maier <maier@linux.ibm.com>
17473 M:      Benjamin Block <bblock@linux.ibm.com>
17474 L:      linux-s390@vger.kernel.org
17475 S:      Supported
17476 W:      http://www.ibm.com/developerworks/linux/linux390/
17477 F:      drivers/s390/scsi/zfcp_*
17478
17479 S3C ADC BATTERY DRIVER
17480 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
17481 L:      linux-samsung-soc@vger.kernel.org
17482 S:      Odd Fixes
17483 F:      drivers/power/supply/s3c_adc_battery.c
17484 F:      include/linux/s3c_adc_battery.h
17485
17486 S3C24XX SD/MMC Driver
17487 M:      Ben Dooks <ben-linux@fluff.org>
17488 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
17489 S:      Supported
17490 F:      drivers/mmc/host/s3cmci.*
17491
17492 SAA6588 RDS RECEIVER DRIVER
17493 M:      Hans Verkuil <hverkuil@xs4all.nl>
17494 L:      linux-media@vger.kernel.org
17495 S:      Odd Fixes
17496 W:      https://linuxtv.org
17497 T:      git git://linuxtv.org/media_tree.git
17498 F:      drivers/media/i2c/saa6588*
17499
17500 SAA7134 VIDEO4LINUX DRIVER
17501 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
17502 L:      linux-media@vger.kernel.org
17503 S:      Odd fixes
17504 W:      https://linuxtv.org
17505 T:      git git://linuxtv.org/media_tree.git
17506 F:      Documentation/driver-api/media/drivers/saa7134*
17507 F:      drivers/media/pci/saa7134/
17508
17509 SAA7146 VIDEO4LINUX-2 DRIVER
17510 M:      Hans Verkuil <hverkuil@xs4all.nl>
17511 L:      linux-media@vger.kernel.org
17512 S:      Maintained
17513 T:      git git://linuxtv.org/media_tree.git
17514 F:      drivers/media/common/saa7146/
17515 F:      drivers/media/pci/saa7146/
17516 F:      include/media/drv-intf/saa7146*
17517
17518 SAFESETID SECURITY MODULE
17519 M:      Micah Morton <mortonm@chromium.org>
17520 S:      Supported
17521 F:      Documentation/admin-guide/LSM/SafeSetID.rst
17522 F:      security/safesetid/
17523
17524 SAMSUNG AUDIO (ASoC) DRIVERS
17525 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
17526 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
17527 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17528 S:      Supported
17529 B:      mailto:linux-samsung-soc@vger.kernel.org
17530 F:      Documentation/devicetree/bindings/sound/samsung*
17531 F:      sound/soc/samsung/
17532
17533 SAMSUNG EXYNOS PSEUDO RANDOM NUMBER GENERATOR (RNG) DRIVER
17534 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
17535 L:      linux-crypto@vger.kernel.org
17536 L:      linux-samsung-soc@vger.kernel.org
17537 S:      Maintained
17538 F:      Documentation/devicetree/bindings/rng/samsung,exynos4-rng.yaml
17539 F:      drivers/crypto/exynos-rng.c
17540
17541 SAMSUNG EXYNOS TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
17542 M:      Łukasz Stelmach <l.stelmach@samsung.com>
17543 L:      linux-samsung-soc@vger.kernel.org
17544 S:      Maintained
17545 F:      Documentation/devicetree/bindings/rng/samsung,exynos5250-trng.yaml
17546 F:      drivers/char/hw_random/exynos-trng.c
17547
17548 SAMSUNG FRAMEBUFFER DRIVER
17549 M:      Jingoo Han <jingoohan1@gmail.com>
17550 L:      linux-fbdev@vger.kernel.org
17551 S:      Maintained
17552 F:      drivers/video/fbdev/s3c-fb.c
17553
17554 SAMSUNG INTERCONNECT DRIVERS
17555 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
17556 M:      Artur Świgoń <a.swigon@samsung.com>
17557 L:      linux-pm@vger.kernel.org
17558 L:      linux-samsung-soc@vger.kernel.org
17559 S:      Supported
17560 F:      drivers/interconnect/samsung/
17561
17562 SAMSUNG LAPTOP DRIVER
17563 M:      Corentin Chary <corentin.chary@gmail.com>
17564 L:      platform-driver-x86@vger.kernel.org
17565 S:      Maintained
17566 F:      drivers/platform/x86/samsung-laptop.c
17567
17568 SAMSUNG MULTIFUNCTION PMIC DEVICE DRIVERS
17569 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
17570 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
17571 L:      linux-kernel@vger.kernel.org
17572 L:      linux-samsung-soc@vger.kernel.org
17573 S:      Supported
17574 B:      mailto:linux-samsung-soc@vger.kernel.org
17575 F:      Documentation/devicetree/bindings/clock/samsung,s2mps11.yaml
17576 F:      Documentation/devicetree/bindings/mfd/samsung,s2m*.yaml
17577 F:      Documentation/devicetree/bindings/mfd/samsung,s5m*.yaml
17578 F:      Documentation/devicetree/bindings/regulator/samsung,s2m*.yaml
17579 F:      Documentation/devicetree/bindings/regulator/samsung,s5m*.yaml
17580 F:      drivers/clk/clk-s2mps11.c
17581 F:      drivers/mfd/sec*.c
17582 F:      drivers/regulator/s2m*.c
17583 F:      drivers/regulator/s5m*.c
17584 F:      drivers/rtc/rtc-s5m.c
17585 F:      include/linux/mfd/samsung/
17586
17587 SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
17588 M:      Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
17589 L:      linux-media@vger.kernel.org
17590 L:      linux-samsung-soc@vger.kernel.org
17591 S:      Maintained
17592 F:      drivers/media/platform/samsung/s3c-camif/
17593 F:      include/media/drv-intf/s3c_camif.h
17594
17595 SAMSUNG S3FWRN5 NFC DRIVER
17596 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
17597 M:      Krzysztof Opasiak <k.opasiak@samsung.com>
17598 L:      linux-nfc@lists.01.org (subscribers-only)
17599 S:      Maintained
17600 F:      Documentation/devicetree/bindings/net/nfc/samsung,s3fwrn5.yaml
17601 F:      drivers/nfc/s3fwrn5
17602
17603 SAMSUNG S5C73M3 CAMERA DRIVER
17604 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
17605 M:      Andrzej Hajda <andrzej.hajda@intel.com>
17606 L:      linux-media@vger.kernel.org
17607 S:      Supported
17608 F:      drivers/media/i2c/s5c73m3/*
17609
17610 SAMSUNG S5K5BAF CAMERA DRIVER
17611 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
17612 M:      Andrzej Hajda <andrzej.hajda@intel.com>
17613 L:      linux-media@vger.kernel.org
17614 S:      Supported
17615 F:      drivers/media/i2c/s5k5baf.c
17616
17617 SAMSUNG S5P Security SubSystem (SSS) DRIVER
17618 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
17619 M:      Vladimir Zapolskiy <vz@mleia.com>
17620 L:      linux-crypto@vger.kernel.org
17621 L:      linux-samsung-soc@vger.kernel.org
17622 S:      Maintained
17623 F:      Documentation/devicetree/bindings/crypto/samsung-slimsss.yaml
17624 F:      Documentation/devicetree/bindings/crypto/samsung-sss.yaml
17625 F:      drivers/crypto/s5p-sss.c
17626
17627 SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS
17628 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
17629 L:      linux-media@vger.kernel.org
17630 S:      Supported
17631 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
17632 F:      drivers/media/platform/samsung/exynos4-is/
17633
17634 SAMSUNG SOC CLOCK DRIVERS
17635 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
17636 M:      Tomasz Figa <tomasz.figa@gmail.com>
17637 M:      Chanwoo Choi <cw00.choi@samsung.com>
17638 R:      Alim Akhtar <alim.akhtar@samsung.com>
17639 L:      linux-samsung-soc@vger.kernel.org
17640 S:      Supported
17641 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/snawrocki/clk.git
17642 F:      Documentation/devicetree/bindings/clock/samsung,*.yaml
17643 F:      Documentation/devicetree/bindings/clock/samsung,s3c*
17644 F:      drivers/clk/samsung/
17645 F:      include/dt-bindings/clock/exynos*.h
17646 F:      include/dt-bindings/clock/s3c*.h
17647 F:      include/dt-bindings/clock/s5p*.h
17648 F:      include/dt-bindings/clock/samsung,*.h
17649 F:      include/linux/clk/samsung.h
17650 F:      include/linux/platform_data/clk-s3c2410.h
17651
17652 SAMSUNG SPI DRIVERS
17653 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
17654 M:      Andi Shyti <andi@etezian.org>
17655 L:      linux-spi@vger.kernel.org
17656 L:      linux-samsung-soc@vger.kernel.org
17657 S:      Maintained
17658 F:      Documentation/devicetree/bindings/spi/samsung,spi*.yaml
17659 F:      drivers/spi/spi-s3c*
17660 F:      include/linux/platform_data/spi-s3c64xx.h
17661 F:      include/linux/spi/s3c24xx-fiq.h
17662
17663 SAMSUNG SXGBE DRIVERS
17664 M:      Byungho An <bh74.an@samsung.com>
17665 L:      netdev@vger.kernel.org
17666 S:      Supported
17667 F:      drivers/net/ethernet/samsung/sxgbe/
17668
17669 SAMSUNG THERMAL DRIVER
17670 M:      Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
17671 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
17672 L:      linux-pm@vger.kernel.org
17673 L:      linux-samsung-soc@vger.kernel.org
17674 S:      Maintained
17675 F:      Documentation/devicetree/bindings/thermal/samsung,exynos-thermal.yaml
17676 F:      drivers/thermal/samsung/
17677
17678 SAMSUNG USB2 PHY DRIVER
17679 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
17680 L:      linux-kernel@vger.kernel.org
17681 S:      Supported
17682 F:      Documentation/devicetree/bindings/phy/samsung,usb2-phy.yaml
17683 F:      Documentation/driver-api/phy/samsung-usb2.rst
17684 F:      drivers/phy/samsung/phy-exynos4210-usb2.c
17685 F:      drivers/phy/samsung/phy-exynos4x12-usb2.c
17686 F:      drivers/phy/samsung/phy-exynos5250-usb2.c
17687 F:      drivers/phy/samsung/phy-s5pv210-usb2.c
17688 F:      drivers/phy/samsung/phy-samsung-usb2.c
17689 F:      drivers/phy/samsung/phy-samsung-usb2.h
17690
17691 SANCLOUD BEAGLEBONE ENHANCED DEVICE TREE
17692 M:      Paul Barker <paul.barker@sancloud.com>
17693 R:      Marc Murphy <marc.murphy@sancloud.com>
17694 S:      Supported
17695 F:      arch/arm/boot/dts/am335x-sancloud*
17696
17697 SC1200 WDT DRIVER
17698 M:      Zwane Mwaikambo <zwanem@gmail.com>
17699 S:      Maintained
17700 F:      drivers/watchdog/sc1200wdt.c
17701
17702 SCHEDULER
17703 M:      Ingo Molnar <mingo@redhat.com>
17704 M:      Peter Zijlstra <peterz@infradead.org>
17705 M:      Juri Lelli <juri.lelli@redhat.com> (SCHED_DEADLINE)
17706 M:      Vincent Guittot <vincent.guittot@linaro.org> (SCHED_NORMAL)
17707 R:      Dietmar Eggemann <dietmar.eggemann@arm.com> (SCHED_NORMAL)
17708 R:      Steven Rostedt <rostedt@goodmis.org> (SCHED_FIFO/SCHED_RR)
17709 R:      Ben Segall <bsegall@google.com> (CONFIG_CFS_BANDWIDTH)
17710 R:      Mel Gorman <mgorman@suse.de> (CONFIG_NUMA_BALANCING)
17711 R:      Daniel Bristot de Oliveira <bristot@redhat.com> (SCHED_DEADLINE)
17712 R:      Valentin Schneider <vschneid@redhat.com> (TOPOLOGY)
17713 L:      linux-kernel@vger.kernel.org
17714 S:      Maintained
17715 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
17716 F:      include/linux/preempt.h
17717 F:      include/linux/sched.h
17718 F:      include/linux/wait.h
17719 F:      include/uapi/linux/sched.h
17720 F:      kernel/sched/
17721
17722 SCR24X CHIP CARD INTERFACE DRIVER
17723 M:      Lubomir Rintel <lkundrak@v3.sk>
17724 S:      Supported
17725 F:      drivers/char/pcmcia/scr24x_cs.c
17726
17727 SCSI RDMA PROTOCOL (SRP) INITIATOR
17728 M:      Bart Van Assche <bvanassche@acm.org>
17729 L:      linux-rdma@vger.kernel.org
17730 S:      Supported
17731 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
17732 F:      drivers/infiniband/ulp/srp/
17733 F:      include/scsi/srp.h
17734
17735 SCSI RDMA PROTOCOL (SRP) TARGET
17736 M:      Bart Van Assche <bvanassche@acm.org>
17737 L:      linux-rdma@vger.kernel.org
17738 L:      target-devel@vger.kernel.org
17739 S:      Supported
17740 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
17741 F:      drivers/infiniband/ulp/srpt/
17742
17743 SCSI SG DRIVER
17744 M:      Doug Gilbert <dgilbert@interlog.com>
17745 L:      linux-scsi@vger.kernel.org
17746 S:      Maintained
17747 W:      http://sg.danny.cz/sg
17748 F:      Documentation/scsi/scsi-generic.rst
17749 F:      drivers/scsi/sg.c
17750 F:      include/scsi/sg.h
17751
17752 SCSI SUBSYSTEM
17753 M:      "James E.J. Bottomley" <jejb@linux.ibm.com>
17754 M:      "Martin K. Petersen" <martin.petersen@oracle.com>
17755 L:      linux-scsi@vger.kernel.org
17756 S:      Maintained
17757 Q:      https://patchwork.kernel.org/project/linux-scsi/list/
17758 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git
17759 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
17760 F:      Documentation/devicetree/bindings/scsi/
17761 F:      drivers/scsi/
17762 F:      drivers/ufs/
17763 F:      include/scsi/
17764
17765 SCSI TAPE DRIVER
17766 M:      Kai Mäkisara <Kai.Makisara@kolumbus.fi>
17767 L:      linux-scsi@vger.kernel.org
17768 S:      Maintained
17769 F:      Documentation/scsi/st.rst
17770 F:      drivers/scsi/st.*
17771 F:      drivers/scsi/st_*.h
17772
17773 SCSI TARGET CORE USER DRIVER
17774 M:      Bodo Stroesser <bostroesser@gmail.com>
17775 L:      linux-scsi@vger.kernel.org
17776 L:      target-devel@vger.kernel.org
17777 S:      Supported
17778 F:      Documentation/target/tcmu-design.rst
17779 F:      drivers/target/target_core_user.c
17780 F:      include/uapi/linux/target_core_user.h
17781
17782 SCSI TARGET SUBSYSTEM
17783 M:      "Martin K. Petersen" <martin.petersen@oracle.com>
17784 L:      linux-scsi@vger.kernel.org
17785 L:      target-devel@vger.kernel.org
17786 S:      Supported
17787 W:      http://www.linux-iscsi.org
17788 Q:      https://patchwork.kernel.org/project/target-devel/list/
17789 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
17790 F:      Documentation/target/
17791 F:      drivers/target/
17792 F:      include/target/
17793
17794 SCTP PROTOCOL
17795 M:      Vlad Yasevich <vyasevich@gmail.com>
17796 M:      Neil Horman <nhorman@tuxdriver.com>
17797 M:      Marcelo Ricardo Leitner <marcelo.leitner@gmail.com>
17798 L:      linux-sctp@vger.kernel.org
17799 S:      Maintained
17800 W:      http://lksctp.sourceforge.net
17801 F:      Documentation/networking/sctp.rst
17802 F:      include/linux/sctp.h
17803 F:      include/net/sctp/
17804 F:      include/uapi/linux/sctp.h
17805 F:      net/sctp/
17806
17807 SCx200 CPU SUPPORT
17808 M:      Jim Cromie <jim.cromie@gmail.com>
17809 S:      Odd Fixes
17810 F:      Documentation/i2c/busses/scx200_acb.rst
17811 F:      arch/x86/platform/scx200/
17812 F:      drivers/i2c/busses/scx200*
17813 F:      drivers/mtd/maps/scx200_docflash.c
17814 F:      drivers/watchdog/scx200_wdt.c
17815 F:      include/linux/scx200.h
17816
17817 SCx200 GPIO DRIVER
17818 M:      Jim Cromie <jim.cromie@gmail.com>
17819 S:      Maintained
17820 F:      drivers/char/scx200_gpio.c
17821 F:      include/linux/scx200_gpio.h
17822
17823 SCx200 HRT CLOCKSOURCE DRIVER
17824 M:      Jim Cromie <jim.cromie@gmail.com>
17825 S:      Maintained
17826 F:      drivers/clocksource/scx200_hrt.c
17827
17828 SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
17829 M:      Sascha Sommer <saschasommer@freenet.de>
17830 L:      sdricohcs-devel@lists.sourceforge.net (subscribers-only)
17831 S:      Maintained
17832 F:      drivers/mmc/host/sdricoh_cs.c
17833
17834 SECO BOARDS CEC DRIVER
17835 M:      Ettore Chimenti <ek5.chimenti@gmail.com>
17836 S:      Maintained
17837 F:      drivers/media/cec/platform/seco/seco-cec.c
17838 F:      drivers/media/cec/platform/seco/seco-cec.h
17839
17840 SECURE COMPUTING
17841 M:      Kees Cook <keescook@chromium.org>
17842 R:      Andy Lutomirski <luto@amacapital.net>
17843 R:      Will Drewry <wad@chromium.org>
17844 S:      Supported
17845 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git seccomp
17846 F:      Documentation/userspace-api/seccomp_filter.rst
17847 F:      include/linux/seccomp.h
17848 F:      include/uapi/linux/seccomp.h
17849 F:      kernel/seccomp.c
17850 F:      tools/testing/selftests/kselftest_harness.h
17851 F:      tools/testing/selftests/seccomp/*
17852 K:      \bsecure_computing
17853 K:      \bTIF_SECCOMP\b
17854
17855 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) Broadcom BRCMSTB DRIVER
17856 M:      Al Cooper <alcooperx@gmail.com>
17857 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
17858 L:      linux-mmc@vger.kernel.org
17859 S:      Maintained
17860 F:      drivers/mmc/host/sdhci-brcmstb*
17861
17862 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
17863 M:      Adrian Hunter <adrian.hunter@intel.com>
17864 L:      linux-mmc@vger.kernel.org
17865 S:      Maintained
17866 F:      drivers/mmc/host/sdhci*
17867
17868 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) MICROCHIP DRIVER
17869 M:      Eugen Hristev <eugen.hristev@microchip.com>
17870 L:      linux-mmc@vger.kernel.org
17871 S:      Supported
17872 F:      drivers/mmc/host/sdhci-of-at91.c
17873
17874 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
17875 M:      Ben Dooks <ben-linux@fluff.org>
17876 M:      Jaehoon Chung <jh80.chung@samsung.com>
17877 L:      linux-mmc@vger.kernel.org
17878 S:      Maintained
17879 F:      drivers/mmc/host/sdhci-s3c*
17880
17881 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
17882 M:      Viresh Kumar <vireshk@kernel.org>
17883 L:      linux-mmc@vger.kernel.org
17884 S:      Maintained
17885 F:      drivers/mmc/host/sdhci-spear.c
17886
17887 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) TI OMAP DRIVER
17888 M:      Kishon Vijay Abraham I <kishon@ti.com>
17889 L:      linux-mmc@vger.kernel.org
17890 S:      Maintained
17891 F:      drivers/mmc/host/sdhci-omap.c
17892
17893 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) NXP i.MX DRIVER
17894 M:      Haibo Chen <haibo.chen@nxp.com>
17895 L:      linux-imx@nxp.com
17896 L:      linux-mmc@vger.kernel.org
17897 S:      Maintained
17898 F:      drivers/mmc/host/sdhci-esdhc-imx.c
17899
17900 SECURE ENCRYPTING DEVICE (SED) OPAL DRIVER
17901 M:      Jonathan Derrick <jonathan.derrick@intel.com>
17902 M:      Revanth Rajashekar <revanth.rajashekar@intel.com>
17903 L:      linux-block@vger.kernel.org
17904 S:      Supported
17905 F:      block/opal_proto.h
17906 F:      block/sed*
17907 F:      include/linux/sed*
17908 F:      include/uapi/linux/sed*
17909
17910 SECURITY CONTACT
17911 M:      Security Officers <security@kernel.org>
17912 S:      Supported
17913 F:      Documentation/admin-guide/security-bugs.rst
17914
17915 SECURITY SUBSYSTEM
17916 M:      James Morris <jmorris@namei.org>
17917 M:      "Serge E. Hallyn" <serge@hallyn.com>
17918 L:      linux-security-module@vger.kernel.org (suggested Cc:)
17919 S:      Supported
17920 W:      http://kernsec.org/
17921 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
17922 F:      security/
17923 X:      security/selinux/
17924
17925 SELINUX SECURITY MODULE
17926 M:      Paul Moore <paul@paul-moore.com>
17927 M:      Stephen Smalley <stephen.smalley.work@gmail.com>
17928 M:      Eric Paris <eparis@parisplace.org>
17929 L:      selinux@vger.kernel.org
17930 S:      Supported
17931 W:      https://selinuxproject.org
17932 W:      https://github.com/SELinuxProject
17933 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/selinux.git
17934 F:      Documentation/ABI/obsolete/sysfs-selinux-checkreqprot
17935 F:      Documentation/ABI/obsolete/sysfs-selinux-disable
17936 F:      Documentation/admin-guide/LSM/SELinux.rst
17937 F:      include/trace/events/avc.h
17938 F:      include/uapi/linux/selinux_netlink.h
17939 F:      scripts/selinux/
17940 F:      security/selinux/
17941
17942 SENSABLE PHANTOM
17943 M:      Jiri Slaby <jirislaby@kernel.org>
17944 S:      Maintained
17945 F:      drivers/misc/phantom.c
17946 F:      include/uapi/linux/phantom.h
17947
17948 SENSEAIR SUNRISE 006-0-0007
17949 M:      Jacopo Mondi <jacopo@jmondi.org>
17950 S:      Maintained
17951 F:      Documentation/ABI/testing/sysfs-bus-iio-chemical-sunrise-co2
17952 F:      Documentation/devicetree/bindings/iio/chemical/senseair,sunrise.yaml
17953 F:      drivers/iio/chemical/sunrise_co2.c
17954
17955 SENSIRION SCD30 CARBON DIOXIDE SENSOR DRIVER
17956 M:      Tomasz Duszynski <tomasz.duszynski@octakon.com>
17957 S:      Maintained
17958 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,scd30.yaml
17959 F:      drivers/iio/chemical/scd30.h
17960 F:      drivers/iio/chemical/scd30_core.c
17961 F:      drivers/iio/chemical/scd30_i2c.c
17962 F:      drivers/iio/chemical/scd30_serial.c
17963
17964 SENSIRION SCD4X CARBON DIOXIDE SENSOR DRIVER
17965 M:      Roan van Dijk <roan@protonic.nl>
17966 S:      Maintained
17967 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,scd4x.yaml
17968 F:      drivers/iio/chemical/scd4x.c
17969
17970 SENSIRION SGP40 GAS SENSOR DRIVER
17971 M:      Andreas Klinger <ak@it-klinger.de>
17972 S:      Maintained
17973 F:      Documentation/ABI/testing/sysfs-bus-iio-chemical-sgp40
17974 F:      drivers/iio/chemical/sgp40.c
17975
17976 SENSIRION SPS30 AIR POLLUTION SENSOR DRIVER
17977 M:      Tomasz Duszynski <tduszyns@gmail.com>
17978 S:      Maintained
17979 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,sps30.yaml
17980 F:      drivers/iio/chemical/sps30.c
17981 F:      drivers/iio/chemical/sps30_i2c.c
17982 F:      drivers/iio/chemical/sps30_serial.c
17983
17984 SERIAL DEVICE BUS
17985 M:      Rob Herring <robh@kernel.org>
17986 L:      linux-serial@vger.kernel.org
17987 S:      Maintained
17988 F:      Documentation/devicetree/bindings/serial/serial.yaml
17989 F:      drivers/tty/serdev/
17990 F:      include/linux/serdev.h
17991
17992 SERIAL DRIVERS
17993 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
17994 L:      linux-serial@vger.kernel.org
17995 S:      Maintained
17996 F:      Documentation/devicetree/bindings/serial/
17997 F:      drivers/tty/serial/
17998
17999 SERIAL IR RECEIVER
18000 M:      Sean Young <sean@mess.org>
18001 L:      linux-media@vger.kernel.org
18002 S:      Maintained
18003 F:      drivers/media/rc/serial_ir.c
18004
18005 SERIAL LOW-POWER INTER-CHIP MEDIA BUS (SLIMbus)
18006 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
18007 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18008 S:      Maintained
18009 F:      Documentation/devicetree/bindings/slimbus/
18010 F:      drivers/slimbus/
18011 F:      include/linux/slimbus.h
18012
18013 SFC NETWORK DRIVER
18014 M:      Edward Cree <ecree.xilinx@gmail.com>
18015 M:      Martin Habets <habetsm.xilinx@gmail.com>
18016 L:      netdev@vger.kernel.org
18017 S:      Supported
18018 F:      drivers/net/ethernet/sfc/
18019
18020 SFF/SFP/SFP+ MODULE SUPPORT
18021 M:      Russell King <linux@armlinux.org.uk>
18022 L:      netdev@vger.kernel.org
18023 S:      Maintained
18024 F:      drivers/net/phy/phylink.c
18025 F:      drivers/net/phy/sfp*
18026 F:      include/linux/mdio/mdio-i2c.h
18027 F:      include/linux/phylink.h
18028 F:      include/linux/sfp.h
18029 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)
18030
18031 SGI GRU DRIVER
18032 M:      Dimitri Sivanich <dimitri.sivanich@hpe.com>
18033 S:      Maintained
18034 F:      drivers/misc/sgi-gru/
18035
18036 SGI XP/XPC/XPNET DRIVER
18037 M:      Robin Holt <robinmholt@gmail.com>
18038 M:      Steve Wahl <steve.wahl@hpe.com>
18039 R:      Mike Travis <mike.travis@hpe.com>
18040 S:      Maintained
18041 F:      drivers/misc/sgi-xp/
18042
18043 SHARED MEMORY COMMUNICATIONS (SMC) SOCKETS
18044 M:      Karsten Graul <kgraul@linux.ibm.com>
18045 L:      linux-s390@vger.kernel.org
18046 S:      Supported
18047 W:      http://www.ibm.com/developerworks/linux/linux390/
18048 F:      net/smc/
18049
18050 SHARP GP2AP002A00F/GP2AP002S00F SENSOR DRIVER
18051 M:      Linus Walleij <linus.walleij@linaro.org>
18052 L:      linux-iio@vger.kernel.org
18053 S:      Maintained
18054 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
18055 F:      Documentation/devicetree/bindings/iio/light/sharp,gp2ap002.yaml
18056 F:      drivers/iio/light/gp2ap002.c
18057
18058 SHARP RJ54N1CB0C SENSOR DRIVER
18059 M:      Jacopo Mondi <jacopo@jmondi.org>
18060 L:      linux-media@vger.kernel.org
18061 S:      Odd fixes
18062 T:      git git://linuxtv.org/media_tree.git
18063 F:      drivers/media/i2c/rj54n1cb0c.c
18064 F:      include/media/i2c/rj54n1cb0c.h
18065
18066 SH_VOU V4L2 OUTPUT DRIVER
18067 L:      linux-media@vger.kernel.org
18068 S:      Orphan
18069 F:      drivers/media/platform/renesas/sh_vou.c
18070 F:      include/media/drv-intf/sh_vou.h
18071
18072 SI2157 MEDIA DRIVER
18073 M:      Antti Palosaari <crope@iki.fi>
18074 L:      linux-media@vger.kernel.org
18075 S:      Maintained
18076 W:      https://linuxtv.org
18077 W:      http://palosaari.fi/linux/
18078 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18079 T:      git git://linuxtv.org/anttip/media_tree.git
18080 F:      drivers/media/tuners/si2157*
18081
18082 SI2165 MEDIA DRIVER
18083 M:      Matthias Schwarzott <zzam@gentoo.org>
18084 L:      linux-media@vger.kernel.org
18085 S:      Maintained
18086 W:      https://linuxtv.org
18087 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18088 F:      drivers/media/dvb-frontends/si2165*
18089
18090 SI2168 MEDIA DRIVER
18091 M:      Antti Palosaari <crope@iki.fi>
18092 L:      linux-media@vger.kernel.org
18093 S:      Maintained
18094 W:      https://linuxtv.org
18095 W:      http://palosaari.fi/linux/
18096 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18097 T:      git git://linuxtv.org/anttip/media_tree.git
18098 F:      drivers/media/dvb-frontends/si2168*
18099
18100 SI470X FM RADIO RECEIVER I2C DRIVER
18101 M:      Hans Verkuil <hverkuil@xs4all.nl>
18102 L:      linux-media@vger.kernel.org
18103 S:      Odd Fixes
18104 W:      https://linuxtv.org
18105 T:      git git://linuxtv.org/media_tree.git
18106 F:      drivers/media/radio/si470x/radio-si470x-i2c.c
18107
18108 SI470X FM RADIO RECEIVER USB DRIVER
18109 M:      Hans Verkuil <hverkuil@xs4all.nl>
18110 L:      linux-media@vger.kernel.org
18111 S:      Maintained
18112 W:      https://linuxtv.org
18113 T:      git git://linuxtv.org/media_tree.git
18114 F:      drivers/media/radio/si470x/radio-si470x-common.c
18115 F:      drivers/media/radio/si470x/radio-si470x-usb.c
18116 F:      drivers/media/radio/si470x/radio-si470x.h
18117
18118 SI4713 FM RADIO TRANSMITTER I2C DRIVER
18119 M:      Eduardo Valentin <edubezval@gmail.com>
18120 L:      linux-media@vger.kernel.org
18121 S:      Odd Fixes
18122 W:      https://linuxtv.org
18123 T:      git git://linuxtv.org/media_tree.git
18124 F:      drivers/media/radio/si4713/si4713.?
18125
18126 SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
18127 M:      Eduardo Valentin <edubezval@gmail.com>
18128 L:      linux-media@vger.kernel.org
18129 S:      Odd Fixes
18130 W:      https://linuxtv.org
18131 T:      git git://linuxtv.org/media_tree.git
18132 F:      drivers/media/radio/si4713/radio-platform-si4713.c
18133
18134 SI4713 FM RADIO TRANSMITTER USB DRIVER
18135 M:      Hans Verkuil <hverkuil@xs4all.nl>
18136 L:      linux-media@vger.kernel.org
18137 S:      Maintained
18138 W:      https://linuxtv.org
18139 T:      git git://linuxtv.org/media_tree.git
18140 F:      drivers/media/radio/si4713/radio-usb-si4713.c
18141
18142 SIANO DVB DRIVER
18143 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
18144 L:      linux-media@vger.kernel.org
18145 S:      Odd fixes
18146 W:      https://linuxtv.org
18147 T:      git git://linuxtv.org/media_tree.git
18148 F:      drivers/media/common/siano/
18149 F:      drivers/media/mmc/siano/
18150 F:      drivers/media/usb/siano/
18151 F:      drivers/media/usb/siano/
18152
18153 SIFIVE DRIVERS
18154 M:      Palmer Dabbelt <palmer@dabbelt.com>
18155 M:      Paul Walmsley <paul.walmsley@sifive.com>
18156 L:      linux-riscv@lists.infradead.org
18157 S:      Supported
18158 T:      git git://github.com/sifive/riscv-linux.git
18159 N:      sifive
18160 K:      [^@]sifive
18161
18162 SIFIVE FU540 SYSTEM-ON-CHIP
18163 M:      Paul Walmsley <paul.walmsley@sifive.com>
18164 M:      Palmer Dabbelt <palmer@dabbelt.com>
18165 L:      linux-riscv@lists.infradead.org
18166 S:      Supported
18167 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pjw/sifive.git
18168 N:      fu540
18169 K:      fu540
18170
18171 SIFIVE PDMA DRIVER
18172 M:      Green Wan <green.wan@sifive.com>
18173 S:      Maintained
18174 F:      Documentation/devicetree/bindings/dma/sifive,fu540-c000-pdma.yaml
18175 F:      drivers/dma/sf-pdma/
18176
18177 SILEAD TOUCHSCREEN DRIVER
18178 M:      Hans de Goede <hdegoede@redhat.com>
18179 L:      linux-input@vger.kernel.org
18180 L:      platform-driver-x86@vger.kernel.org
18181 S:      Maintained
18182 F:      drivers/input/touchscreen/silead.c
18183 F:      drivers/platform/x86/touchscreen_dmi.c
18184
18185 SILICON LABS WIRELESS DRIVERS (for WFxxx series)
18186 M:      Jérôme Pouiller <jerome.pouiller@silabs.com>
18187 S:      Supported
18188 F:      Documentation/devicetree/bindings/net/wireless/silabs,wfx.yaml
18189 F:      drivers/net/wireless/silabs/wfx/
18190
18191 SILICON MOTION SM712 FRAME BUFFER DRIVER
18192 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
18193 M:      Teddy Wang <teddy.wang@siliconmotion.com>
18194 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
18195 L:      linux-fbdev@vger.kernel.org
18196 S:      Maintained
18197 F:      Documentation/fb/sm712fb.rst
18198 F:      drivers/video/fbdev/sm712*
18199
18200 SILVACO I3C DUAL-ROLE MASTER
18201 M:      Miquel Raynal <miquel.raynal@bootlin.com>
18202 M:      Conor Culhane <conor.culhane@silvaco.com>
18203 L:      linux-i3c@lists.infradead.org (moderated for non-subscribers)
18204 S:      Maintained
18205 F:      Documentation/devicetree/bindings/i3c/silvaco,i3c-master.yaml
18206 F:      drivers/i3c/master/svc-i3c-master.c
18207
18208 SIMPLEFB FB DRIVER
18209 M:      Hans de Goede <hdegoede@redhat.com>
18210 L:      linux-fbdev@vger.kernel.org
18211 S:      Maintained
18212 F:      Documentation/devicetree/bindings/display/simple-framebuffer.yaml
18213 F:      drivers/video/fbdev/simplefb.c
18214 F:      include/linux/platform_data/simplefb.h
18215
18216 SIMTEC EB110ATX (Chalice CATS)
18217 M:      Simtec Linux Team <linux@simtec.co.uk>
18218 S:      Supported
18219 W:      http://www.simtec.co.uk/products/EB110ATX/
18220
18221 SIMTEC EB2410ITX (BAST)
18222 M:      Simtec Linux Team <linux@simtec.co.uk>
18223 S:      Supported
18224 W:      http://www.simtec.co.uk/products/EB2410ITX/
18225 F:      arch/arm/mach-s3c/bast-ide.c
18226 F:      arch/arm/mach-s3c/bast-irq.c
18227 F:      arch/arm/mach-s3c/mach-bast.c
18228
18229 SIOX
18230 M:      Thorsten Scherer <t.scherer@eckelmann.de>
18231 M:      Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
18232 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
18233 S:      Supported
18234 F:      drivers/gpio/gpio-siox.c
18235 F:      drivers/siox/*
18236 F:      include/trace/events/siox.h
18237
18238 SIPHASH PRF ROUTINES
18239 M:      Jason A. Donenfeld <Jason@zx2c4.com>
18240 S:      Maintained
18241 F:      include/linux/siphash.h
18242 F:      lib/siphash.c
18243 F:      lib/test_siphash.c
18244
18245 SIS 190 ETHERNET DRIVER
18246 M:      Francois Romieu <romieu@fr.zoreil.com>
18247 L:      netdev@vger.kernel.org
18248 S:      Maintained
18249 F:      drivers/net/ethernet/sis/sis190.c
18250
18251 SIS 900/7016 FAST ETHERNET DRIVER
18252 M:      Daniele Venzano <venza@brownhat.org>
18253 L:      netdev@vger.kernel.org
18254 S:      Maintained
18255 W:      http://www.brownhat.org/sis900.html
18256 F:      drivers/net/ethernet/sis/sis900.*
18257
18258 SIS FRAMEBUFFER DRIVER
18259 M:      Thomas Winischhofer <thomas@winischhofer.net>
18260 S:      Maintained
18261 W:      http://www.winischhofer.net/linuxsisvga.shtml
18262 F:      Documentation/fb/sisfb.rst
18263 F:      drivers/video/fbdev/sis/
18264 F:      include/video/sisfb.h
18265
18266 SIS I2C TOUCHSCREEN DRIVER
18267 M:      Mika Penttilä <mika.penttila@nextfour.com>
18268 L:      linux-input@vger.kernel.org
18269 S:      Maintained
18270 F:      Documentation/devicetree/bindings/input/touchscreen/sis_i2c.txt
18271 F:      drivers/input/touchscreen/sis_i2c.c
18272
18273 SIS USB2VGA DRIVER
18274 M:      Thomas Winischhofer <thomas@winischhofer.net>
18275 S:      Maintained
18276 W:      http://www.winischhofer.at/linuxsisusbvga.shtml
18277 F:      drivers/usb/misc/sisusbvga/
18278
18279 SL28 CPLD MFD DRIVER
18280 M:      Michael Walle <michael@walle.cc>
18281 S:      Maintained
18282 F:      Documentation/devicetree/bindings/gpio/kontron,sl28cpld-gpio.yaml
18283 F:      Documentation/devicetree/bindings/hwmon/kontron,sl28cpld-hwmon.yaml
18284 F:      Documentation/devicetree/bindings/interrupt-controller/kontron,sl28cpld-intc.yaml
18285 F:      Documentation/devicetree/bindings/mfd/kontron,sl28cpld.yaml
18286 F:      Documentation/devicetree/bindings/pwm/kontron,sl28cpld-pwm.yaml
18287 F:      Documentation/devicetree/bindings/watchdog/kontron,sl28cpld-wdt.yaml
18288 F:      drivers/gpio/gpio-sl28cpld.c
18289 F:      drivers/hwmon/sl28cpld-hwmon.c
18290 F:      drivers/irqchip/irq-sl28cpld.c
18291 F:      drivers/pwm/pwm-sl28cpld.c
18292 F:      drivers/watchdog/sl28cpld_wdt.c
18293
18294 SLAB ALLOCATOR
18295 M:      Christoph Lameter <cl@linux.com>
18296 M:      Pekka Enberg <penberg@kernel.org>
18297 M:      David Rientjes <rientjes@google.com>
18298 M:      Joonsoo Kim <iamjoonsoo.kim@lge.com>
18299 M:      Andrew Morton <akpm@linux-foundation.org>
18300 M:      Vlastimil Babka <vbabka@suse.cz>
18301 R:      Roman Gushchin <roman.gushchin@linux.dev>
18302 R:      Hyeonggon Yoo <42.hyeyoo@gmail.com>
18303 L:      linux-mm@kvack.org
18304 S:      Maintained
18305 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vbabka/slab.git
18306 F:      include/linux/sl?b*.h
18307 F:      mm/sl?b*
18308
18309 SLEEPABLE READ-COPY UPDATE (SRCU)
18310 M:      Lai Jiangshan <jiangshanlai@gmail.com>
18311 M:      "Paul E. McKenney" <paulmck@kernel.org>
18312 M:      Josh Triplett <josh@joshtriplett.org>
18313 R:      Steven Rostedt <rostedt@goodmis.org>
18314 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
18315 L:      rcu@vger.kernel.org
18316 S:      Supported
18317 W:      http://www.rdrop.com/users/paulmck/RCU/
18318 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
18319 F:      include/linux/srcu*.h
18320 F:      kernel/rcu/srcu*.c
18321
18322 SMACK SECURITY MODULE
18323 M:      Casey Schaufler <casey@schaufler-ca.com>
18324 L:      linux-security-module@vger.kernel.org
18325 S:      Maintained
18326 W:      http://schaufler-ca.com
18327 T:      git git://github.com/cschaufler/smack-next
18328 F:      Documentation/admin-guide/LSM/Smack.rst
18329 F:      security/smack/
18330
18331 SMC91x ETHERNET DRIVER
18332 M:      Nicolas Pitre <nico@fluxnic.net>
18333 S:      Odd Fixes
18334 F:      drivers/net/ethernet/smsc/smc91x.*
18335
18336 SECURE MONITOR CALL(SMC) CALLING CONVENTION (SMCCC)
18337 M:      Mark Rutland <mark.rutland@arm.com>
18338 M:      Lorenzo Pieralisi <lpieralisi@kernel.org>
18339 M:      Sudeep Holla <sudeep.holla@arm.com>
18340 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
18341 S:      Maintained
18342 F:      drivers/firmware/smccc/
18343 F:      include/linux/arm-smccc.h
18344
18345 SMM665 HARDWARE MONITOR DRIVER
18346 M:      Guenter Roeck <linux@roeck-us.net>
18347 L:      linux-hwmon@vger.kernel.org
18348 S:      Maintained
18349 F:      Documentation/hwmon/smm665.rst
18350 F:      drivers/hwmon/smm665.c
18351
18352 SMSC EMC2103 HARDWARE MONITOR DRIVER
18353 M:      Steve Glendinning <steve.glendinning@shawell.net>
18354 L:      linux-hwmon@vger.kernel.org
18355 S:      Maintained
18356 F:      Documentation/hwmon/emc2103.rst
18357 F:      drivers/hwmon/emc2103.c
18358
18359 SMSC SCH5627 HARDWARE MONITOR DRIVER
18360 M:      Hans de Goede <hdegoede@redhat.com>
18361 L:      linux-hwmon@vger.kernel.org
18362 S:      Supported
18363 F:      Documentation/hwmon/sch5627.rst
18364 F:      drivers/hwmon/sch5627.c
18365
18366 SMSC UFX6000 and UFX7000 USB to VGA DRIVER
18367 M:      Steve Glendinning <steve.glendinning@shawell.net>
18368 L:      linux-fbdev@vger.kernel.org
18369 S:      Maintained
18370 F:      drivers/video/fbdev/smscufx.c
18371
18372 SMSC47B397 HARDWARE MONITOR DRIVER
18373 M:      Jean Delvare <jdelvare@suse.com>
18374 L:      linux-hwmon@vger.kernel.org
18375 S:      Maintained
18376 F:      Documentation/hwmon/smsc47b397.rst
18377 F:      drivers/hwmon/smsc47b397.c
18378
18379 SMSC911x ETHERNET DRIVER
18380 M:      Steve Glendinning <steve.glendinning@shawell.net>
18381 L:      netdev@vger.kernel.org
18382 S:      Maintained
18383 F:      drivers/net/ethernet/smsc/smsc911x.*
18384 F:      include/linux/smsc911x.h
18385
18386 SMSC9420 PCI ETHERNET DRIVER
18387 M:      Steve Glendinning <steve.glendinning@shawell.net>
18388 L:      netdev@vger.kernel.org
18389 S:      Maintained
18390 F:      drivers/net/ethernet/smsc/smsc9420.*
18391
18392 SOCIONEXT (SNI) AVE NETWORK DRIVER
18393 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
18394 L:      netdev@vger.kernel.org
18395 S:      Maintained
18396 F:      Documentation/devicetree/bindings/net/socionext,uniphier-ave4.yaml
18397 F:      drivers/net/ethernet/socionext/sni_ave.c
18398
18399 SOCIONEXT (SNI) NETSEC NETWORK DRIVER
18400 M:      Jassi Brar <jaswinder.singh@linaro.org>
18401 M:      Ilias Apalodimas <ilias.apalodimas@linaro.org>
18402 L:      netdev@vger.kernel.org
18403 S:      Maintained
18404 F:      Documentation/devicetree/bindings/net/socionext-netsec.txt
18405 F:      drivers/net/ethernet/socionext/netsec.c
18406
18407 SOCIONEXT (SNI) Synquacer SPI DRIVER
18408 M:      Masahisa Kojima <masahisa.kojima@linaro.org>
18409 M:      Jassi Brar <jaswinder.singh@linaro.org>
18410 L:      linux-spi@vger.kernel.org
18411 S:      Maintained
18412 F:      Documentation/devicetree/bindings/spi/spi-synquacer.txt
18413 F:      drivers/spi/spi-synquacer.c
18414
18415 SOCIONEXT SYNQUACER I2C DRIVER
18416 M:      Ard Biesheuvel <ardb@kernel.org>
18417 L:      linux-i2c@vger.kernel.org
18418 S:      Maintained
18419 F:      Documentation/devicetree/bindings/i2c/i2c-synquacer.txt
18420 F:      drivers/i2c/busses/i2c-synquacer.c
18421
18422 SOCIONEXT UNIPHIER SOUND DRIVER
18423 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18424 S:      Orphan
18425 F:      sound/soc/uniphier/
18426
18427 SOEKRIS NET48XX LED SUPPORT
18428 M:      Chris Boot <bootc@bootc.net>
18429 S:      Maintained
18430 F:      drivers/leds/leds-net48xx.c
18431
18432 SOFT-IWARP DRIVER (siw)
18433 M:      Bernard Metzler <bmt@zurich.ibm.com>
18434 L:      linux-rdma@vger.kernel.org
18435 S:      Supported
18436 F:      drivers/infiniband/sw/siw/
18437 F:      include/uapi/rdma/siw-abi.h
18438
18439 SOFT-ROCE DRIVER (rxe)
18440 M:      Zhu Yanjun <zyjzyj2000@gmail.com>
18441 L:      linux-rdma@vger.kernel.org
18442 S:      Supported
18443 F:      drivers/infiniband/sw/rxe/
18444 F:      include/uapi/rdma/rdma_user_rxe.h
18445
18446 SOFTLOGIC 6x10 MPEG CODEC
18447 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
18448 M:      Anton Sviridenko <anton@corp.bluecherry.net>
18449 M:      Andrey Utkin <andrey_utkin@fastmail.com>
18450 M:      Ismael Luceno <ismael@iodev.co.uk>
18451 L:      linux-media@vger.kernel.org
18452 S:      Supported
18453 F:      drivers/media/pci/solo6x10/
18454
18455 SOFTWARE DELEGATED EXCEPTION INTERFACE (SDEI)
18456 M:      James Morse <james.morse@arm.com>
18457 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
18458 S:      Maintained
18459 F:      Documentation/devicetree/bindings/arm/firmware/sdei.txt
18460 F:      drivers/firmware/arm_sdei.c
18461 F:      include/linux/arm_sdei.h
18462 F:      include/uapi/linux/arm_sdei.h
18463
18464 SOFTWARE NODES AND DEVICE PROPERTIES
18465 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
18466 R:      Daniel Scally <djrscally@gmail.com>
18467 R:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
18468 R:      Sakari Ailus <sakari.ailus@linux.intel.com>
18469 L:      linux-acpi@vger.kernel.org
18470 S:      Maintained
18471 F:      drivers/base/property.c
18472 F:      drivers/base/swnode.c
18473 F:      include/linux/fwnode.h
18474 F:      include/linux/property.h
18475
18476 SOFTWARE RAID (Multiple Disks) SUPPORT
18477 M:      Song Liu <song@kernel.org>
18478 L:      linux-raid@vger.kernel.org
18479 S:      Supported
18480 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/song/md.git
18481 F:      drivers/md/Kconfig
18482 F:      drivers/md/Makefile
18483 F:      drivers/md/md*
18484 F:      drivers/md/raid*
18485 F:      include/linux/raid/
18486 F:      include/uapi/linux/raid/
18487
18488 SOLIDRUN CLEARFOG SUPPORT
18489 M:      Russell King <linux@armlinux.org.uk>
18490 S:      Maintained
18491 F:      arch/arm/boot/dts/armada-388-clearfog*
18492 F:      arch/arm/boot/dts/armada-38x-solidrun-*
18493
18494 SOLIDRUN CUBOX-I/HUMMINGBOARD SUPPORT
18495 M:      Russell King <linux@armlinux.org.uk>
18496 S:      Maintained
18497 F:      arch/arm/boot/dts/imx6*-cubox-i*
18498 F:      arch/arm/boot/dts/imx6*-hummingboard*
18499 F:      arch/arm/boot/dts/imx6*-sr-*
18500
18501 SONIC NETWORK DRIVER
18502 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
18503 L:      netdev@vger.kernel.org
18504 S:      Maintained
18505 F:      drivers/net/ethernet/natsemi/sonic.*
18506
18507 SONICS SILICON BACKPLANE DRIVER (SSB)
18508 M:      Michael Buesch <m@bues.ch>
18509 L:      linux-wireless@vger.kernel.org
18510 S:      Maintained
18511 F:      drivers/ssb/
18512 F:      include/linux/ssb/
18513
18514 SONY IMX208 SENSOR DRIVER
18515 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
18516 L:      linux-media@vger.kernel.org
18517 S:      Maintained
18518 T:      git git://linuxtv.org/media_tree.git
18519 F:      drivers/media/i2c/imx208.c
18520
18521 SONY IMX214 SENSOR DRIVER
18522 M:      Ricardo Ribalda <ribalda@kernel.org>
18523 L:      linux-media@vger.kernel.org
18524 S:      Maintained
18525 T:      git git://linuxtv.org/media_tree.git
18526 F:      Documentation/devicetree/bindings/media/i2c/sony,imx214.yaml
18527 F:      drivers/media/i2c/imx214.c
18528
18529 SONY IMX219 SENSOR DRIVER
18530 M:      Dave Stevenson <dave.stevenson@raspberrypi.com>
18531 L:      linux-media@vger.kernel.org
18532 S:      Maintained
18533 T:      git git://linuxtv.org/media_tree.git
18534 F:      Documentation/devicetree/bindings/media/i2c/imx219.yaml
18535 F:      drivers/media/i2c/imx219.c
18536
18537 SONY IMX258 SENSOR DRIVER
18538 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
18539 L:      linux-media@vger.kernel.org
18540 S:      Maintained
18541 T:      git git://linuxtv.org/media_tree.git
18542 F:      Documentation/devicetree/bindings/media/i2c/imx258.yaml
18543 F:      drivers/media/i2c/imx258.c
18544
18545 SONY IMX274 SENSOR DRIVER
18546 M:      Leon Luo <leonl@leopardimaging.com>
18547 L:      linux-media@vger.kernel.org
18548 S:      Maintained
18549 T:      git git://linuxtv.org/media_tree.git
18550 F:      Documentation/devicetree/bindings/media/i2c/sony,imx274.yaml
18551 F:      drivers/media/i2c/imx274.c
18552
18553 SONY IMX290 SENSOR DRIVER
18554 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
18555 L:      linux-media@vger.kernel.org
18556 S:      Maintained
18557 T:      git git://linuxtv.org/media_tree.git
18558 F:      Documentation/devicetree/bindings/media/i2c/imx290.txt
18559 F:      drivers/media/i2c/imx290.c
18560
18561 SONY IMX319 SENSOR DRIVER
18562 M:      Bingbu Cao <bingbu.cao@intel.com>
18563 L:      linux-media@vger.kernel.org
18564 S:      Maintained
18565 T:      git git://linuxtv.org/media_tree.git
18566 F:      drivers/media/i2c/imx319.c
18567
18568 SONY IMX334 SENSOR DRIVER
18569 M:      Paul J. Murphy <paul.j.murphy@intel.com>
18570 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
18571 L:      linux-media@vger.kernel.org
18572 S:      Maintained
18573 T:      git git://linuxtv.org/media_tree.git
18574 F:      Documentation/devicetree/bindings/media/i2c/sony,imx334.yaml
18575 F:      drivers/media/i2c/imx334.c
18576
18577 SONY IMX335 SENSOR DRIVER
18578 M:      Paul J. Murphy <paul.j.murphy@intel.com>
18579 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
18580 L:      linux-media@vger.kernel.org
18581 S:      Maintained
18582 T:      git git://linuxtv.org/media_tree.git
18583 F:      Documentation/devicetree/bindings/media/i2c/sony,imx335.yaml
18584 F:      drivers/media/i2c/imx335.c
18585
18586 SONY IMX355 SENSOR DRIVER
18587 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
18588 L:      linux-media@vger.kernel.org
18589 S:      Maintained
18590 T:      git git://linuxtv.org/media_tree.git
18591 F:      drivers/media/i2c/imx355.c
18592
18593 SONY IMX412 SENSOR DRIVER
18594 M:      Paul J. Murphy <paul.j.murphy@intel.com>
18595 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
18596 L:      linux-media@vger.kernel.org
18597 S:      Maintained
18598 T:      git git://linuxtv.org/media_tree.git
18599 F:      Documentation/devicetree/bindings/media/i2c/sony,imx412.yaml
18600 F:      drivers/media/i2c/imx412.c
18601
18602 SONY MEMORYSTICK SUBSYSTEM
18603 M:      Maxim Levitsky <maximlevitsky@gmail.com>
18604 M:      Alex Dubov <oakad@yahoo.com>
18605 M:      Ulf Hansson <ulf.hansson@linaro.org>
18606 L:      linux-mmc@vger.kernel.org
18607 S:      Maintained
18608 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
18609 F:      drivers/memstick/
18610 F:      include/linux/memstick.h
18611
18612 SONY VAIO CONTROL DEVICE DRIVER
18613 M:      Mattia Dongili <malattia@linux.it>
18614 L:      platform-driver-x86@vger.kernel.org
18615 S:      Maintained
18616 W:      http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
18617 F:      Documentation/admin-guide/laptops/sony-laptop.rst
18618 F:      drivers/char/sonypi.c
18619 F:      drivers/platform/x86/sony-laptop.c
18620 F:      include/linux/sony-laptop.h
18621
18622 SOUND
18623 M:      Jaroslav Kysela <perex@perex.cz>
18624 M:      Takashi Iwai <tiwai@suse.com>
18625 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18626 S:      Maintained
18627 W:      http://www.alsa-project.org/
18628 Q:      http://patchwork.kernel.org/project/alsa-devel/list/
18629 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
18630 F:      Documentation/sound/
18631 F:      include/sound/
18632 F:      include/uapi/sound/
18633 F:      sound/
18634 F:      tools/testing/selftests/alsa
18635
18636 SOUND - COMPRESSED AUDIO
18637 M:      Vinod Koul <vkoul@kernel.org>
18638 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18639 S:      Supported
18640 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
18641 F:      Documentation/sound/designs/compress-offload.rst
18642 F:      include/sound/compress_driver.h
18643 F:      include/uapi/sound/compress_*
18644 F:      sound/core/compress_offload.c
18645 F:      sound/soc/soc-compress.c
18646
18647 SOUND - DMAENGINE HELPERS
18648 M:      Lars-Peter Clausen <lars@metafoo.de>
18649 S:      Supported
18650 F:      include/sound/dmaengine_pcm.h
18651 F:      sound/core/pcm_dmaengine.c
18652 F:      sound/soc/soc-generic-dmaengine-pcm.c
18653
18654 SOUND - ALSA SELFTESTS
18655 M:      Mark Brown <broonie@kernel.org>
18656 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18657 L:      linux-kselftest@vger.kernel.org
18658 S:      Supported
18659 F:      tools/testing/selftests/alsa
18660
18661 SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
18662 M:      Liam Girdwood <lgirdwood@gmail.com>
18663 M:      Mark Brown <broonie@kernel.org>
18664 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18665 S:      Supported
18666 W:      http://alsa-project.org/main/index.php/ASoC
18667 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
18668 F:      Documentation/devicetree/bindings/sound/
18669 F:      Documentation/sound/soc/
18670 F:      include/dt-bindings/sound/
18671 F:      include/sound/soc*
18672 F:      sound/soc/
18673
18674 SOUND - SOUND OPEN FIRMWARE (SOF) DRIVERS
18675 M:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
18676 M:      Liam Girdwood <lgirdwood@gmail.com>
18677 M:      Ranjani Sridharan <ranjani.sridharan@linux.intel.com>
18678 M:      Kai Vehmanen <kai.vehmanen@linux.intel.com>
18679 M:      Daniel Baluta <daniel.baluta@nxp.com>
18680 L:      sound-open-firmware@alsa-project.org (moderated for non-subscribers)
18681 S:      Supported
18682 W:      https://github.com/thesofproject/linux/
18683 F:      sound/soc/sof/
18684
18685 SOUNDWIRE SUBSYSTEM
18686 M:      Vinod Koul <vkoul@kernel.org>
18687 M:      Bard Liao <yung-chuan.liao@linux.intel.com>
18688 R:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
18689 R:      Sanyog Kale <sanyog.r.kale@intel.com>
18690 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18691 S:      Supported
18692 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vkoul/soundwire.git
18693 F:      Documentation/driver-api/soundwire/
18694 F:      drivers/soundwire/
18695 F:      include/linux/soundwire/
18696
18697 SP2 MEDIA DRIVER
18698 M:      Olli Salonen <olli.salonen@iki.fi>
18699 L:      linux-media@vger.kernel.org
18700 S:      Maintained
18701 W:      https://linuxtv.org
18702 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18703 F:      drivers/media/dvb-frontends/sp2*
18704
18705 SPARC + UltraSPARC (sparc/sparc64)
18706 M:      "David S. Miller" <davem@davemloft.net>
18707 L:      sparclinux@vger.kernel.org
18708 S:      Maintained
18709 Q:      http://patchwork.ozlabs.org/project/sparclinux/list/
18710 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
18711 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
18712 F:      arch/sparc/
18713 F:      drivers/sbus/
18714
18715 SPARC SERIAL DRIVERS
18716 M:      "David S. Miller" <davem@davemloft.net>
18717 L:      sparclinux@vger.kernel.org
18718 S:      Maintained
18719 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
18720 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
18721 F:      drivers/tty/serial/suncore.c
18722 F:      drivers/tty/serial/sunhv.c
18723 F:      drivers/tty/serial/sunsab.c
18724 F:      drivers/tty/serial/sunsab.h
18725 F:      drivers/tty/serial/sunsu.c
18726 F:      drivers/tty/serial/sunzilog.c
18727 F:      drivers/tty/serial/sunzilog.h
18728 F:      drivers/tty/vcc.c
18729 F:      include/linux/sunserialcore.h
18730
18731 SPARSE CHECKER
18732 M:      "Luc Van Oostenryck" <luc.vanoostenryck@gmail.com>
18733 L:      linux-sparse@vger.kernel.org
18734 S:      Maintained
18735 W:      https://sparse.docs.kernel.org/
18736 T:      git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
18737 Q:      https://patchwork.kernel.org/project/linux-sparse/list/
18738 B:      https://bugzilla.kernel.org/enter_bug.cgi?component=Sparse&product=Tools
18739 F:      include/linux/compiler.h
18740
18741 SPEAKUP CONSOLE SPEECH DRIVER
18742 M:      William Hubbs <w.d.hubbs@gmail.com>
18743 M:      Chris Brannon <chris@the-brannons.com>
18744 M:      Kirk Reiser <kirk@reisers.ca>
18745 M:      Samuel Thibault <samuel.thibault@ens-lyon.org>
18746 L:      speakup@linux-speakup.org
18747 S:      Odd Fixes
18748 W:      http://www.linux-speakup.org/
18749 W:      https://github.com/linux-speakup/speakup
18750 B:      https://github.com/linux-speakup/speakup/issues
18751 F:      drivers/accessibility/speakup/
18752
18753 SPEAR PLATFORM/CLOCK/PINCTRL SUPPORT
18754 M:      Viresh Kumar <vireshk@kernel.org>
18755 M:      Shiraz Hashim <shiraz.linux.kernel@gmail.com>
18756 M:      soc@kernel.org
18757 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
18758 S:      Maintained
18759 W:      http://www.st.com/spear
18760 F:      arch/arm/boot/dts/spear*
18761 F:      arch/arm/mach-spear/
18762 F:      drivers/clk/spear/
18763 F:      drivers/pinctrl/spear/
18764
18765 SPI NOR SUBSYSTEM
18766 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
18767 M:      Pratyush Yadav <p.yadav@ti.com>
18768 R:      Michael Walle <michael@walle.cc>
18769 L:      linux-mtd@lists.infradead.org
18770 S:      Maintained
18771 W:      http://www.linux-mtd.infradead.org/
18772 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
18773 C:      irc://irc.oftc.net/mtd
18774 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git spi-nor/next
18775 F:      Documentation/devicetree/bindings/mtd/jedec,spi-nor.yaml
18776 F:      drivers/mtd/spi-nor/
18777 F:      include/linux/mtd/spi-nor.h
18778
18779 SPI SUBSYSTEM
18780 M:      Mark Brown <broonie@kernel.org>
18781 L:      linux-spi@vger.kernel.org
18782 S:      Maintained
18783 Q:      http://patchwork.kernel.org/project/spi-devel-general/list/
18784 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
18785 F:      Documentation/devicetree/bindings/spi/
18786 F:      Documentation/spi/
18787 F:      drivers/spi/
18788 F:      include/linux/spi/
18789 F:      include/uapi/linux/spi/
18790 F:      tools/spi/
18791
18792 SPIDERNET NETWORK DRIVER for CELL
18793 M:      Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
18794 M:      Geoff Levand <geoff@infradead.org>
18795 L:      netdev@vger.kernel.org
18796 L:      linuxppc-dev@lists.ozlabs.org
18797 S:      Maintained
18798 F:      Documentation/networking/device_drivers/ethernet/toshiba/spider_net.rst
18799 F:      drivers/net/ethernet/toshiba/spider_net*
18800
18801 SPMI SUBSYSTEM
18802 M:      Stephen Boyd <sboyd@kernel.org>
18803 L:      linux-kernel@vger.kernel.org
18804 S:      Maintained
18805 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sboyd/spmi.git
18806 F:      Documentation/devicetree/bindings/spmi/
18807 F:      drivers/spmi/
18808 F:      include/dt-bindings/spmi/spmi.h
18809 F:      include/linux/spmi.h
18810 F:      include/trace/events/spmi.h
18811
18812 SPU FILE SYSTEM
18813 M:      Jeremy Kerr <jk@ozlabs.org>
18814 L:      linuxppc-dev@lists.ozlabs.org
18815 S:      Supported
18816 W:      http://www.ibm.com/developerworks/power/cell/
18817 F:      Documentation/filesystems/spufs/spufs.rst
18818 F:      arch/powerpc/platforms/cell/spufs/
18819
18820 SQUASHFS FILE SYSTEM
18821 M:      Phillip Lougher <phillip@squashfs.org.uk>
18822 L:      squashfs-devel@lists.sourceforge.net (subscribers-only)
18823 S:      Maintained
18824 W:      http://squashfs.org.uk
18825 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pkl/squashfs-next.git
18826 F:      Documentation/filesystems/squashfs.rst
18827 F:      fs/squashfs/
18828
18829 SRM (Alpha) environment access
18830 M:      Jan-Benedict Glaw <jbglaw@lug-owl.de>
18831 S:      Maintained
18832 F:      arch/alpha/kernel/srm_env.c
18833
18834 ST LSM6DSx IMU IIO DRIVER
18835 M:      Lorenzo Bianconi <lorenzo@kernel.org>
18836 L:      linux-iio@vger.kernel.org
18837 S:      Maintained
18838 W:      http://www.st.com/
18839 F:      Documentation/devicetree/bindings/iio/imu/st,lsm6dsx.yaml
18840 F:      drivers/iio/imu/st_lsm6dsx/
18841
18842 ST MIPID02 CSI-2 TO PARALLEL BRIDGE DRIVER
18843 M:      Benjamin Mugnier <benjamin.mugnier@foss.st.com>
18844 M:      Sylvain Petinot <sylvain.petinot@foss.st.com>
18845 L:      linux-media@vger.kernel.org
18846 S:      Maintained
18847 T:      git git://linuxtv.org/media_tree.git
18848 F:      Documentation/devicetree/bindings/media/i2c/st,st-mipid02.txt
18849 F:      drivers/media/i2c/st-mipid02.c
18850
18851 ST STM32 I2C/SMBUS DRIVER
18852 M:      Pierre-Yves MORDRET <pierre-yves.mordret@foss.st.com>
18853 M:      Alain Volmat <alain.volmat@foss.st.com>
18854 L:      linux-i2c@vger.kernel.org
18855 S:      Maintained
18856 F:      drivers/i2c/busses/i2c-stm32*
18857
18858 ST STM32 SPI DRIVER
18859 M:      Alain Volmat <alain.volmat@foss.st.com>
18860 L:      linux-spi@vger.kernel.org
18861 S:      Maintained
18862 F:      drivers/spi/spi-stm32.c
18863
18864 ST STPDDC60 DRIVER
18865 M:      Daniel Nilsson <daniel.nilsson@flex.com>
18866 L:      linux-hwmon@vger.kernel.org
18867 S:      Maintained
18868 F:      Documentation/hwmon/stpddc60.rst
18869 F:      drivers/hwmon/pmbus/stpddc60.c
18870
18871 ST VL53L0X ToF RANGER(I2C) IIO DRIVER
18872 M:      Song Qiang <songqiang1304521@gmail.com>
18873 L:      linux-iio@vger.kernel.org
18874 S:      Maintained
18875 F:      Documentation/devicetree/bindings/iio/proximity/st,vl53l0x.yaml
18876 F:      drivers/iio/proximity/vl53l0x-i2c.c
18877
18878 STABLE BRANCH
18879 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
18880 M:      Sasha Levin <sashal@kernel.org>
18881 L:      stable@vger.kernel.org
18882 S:      Supported
18883 F:      Documentation/process/stable-kernel-rules.rst
18884
18885 STAGING - ATOMISP DRIVER
18886 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
18887 R:      Sakari Ailus <sakari.ailus@linux.intel.com>
18888 L:      linux-media@vger.kernel.org
18889 S:      Maintained
18890 F:      drivers/staging/media/atomisp/
18891
18892 STAGING - FIELDBUS SUBSYSTEM
18893 M:      Sven Van Asbroeck <TheSven73@gmail.com>
18894 S:      Maintained
18895 F:      drivers/staging/fieldbus/*
18896 F:      drivers/staging/fieldbus/Documentation/
18897
18898 STAGING - HMS ANYBUS-S BUS
18899 M:      Sven Van Asbroeck <TheSven73@gmail.com>
18900 S:      Maintained
18901 F:      drivers/staging/fieldbus/anybuss/
18902
18903 STAGING - INDUSTRIAL IO
18904 M:      Jonathan Cameron <jic23@kernel.org>
18905 L:      linux-iio@vger.kernel.org
18906 S:      Odd Fixes
18907 F:      Documentation/devicetree/bindings/staging/iio/
18908 F:      drivers/staging/iio/
18909
18910 STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
18911 M:      Marc Dietrich <marvin24@gmx.de>
18912 L:      ac100@lists.launchpad.net (moderated for non-subscribers)
18913 L:      linux-tegra@vger.kernel.org
18914 S:      Maintained
18915 F:      drivers/staging/nvec/
18916
18917 STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
18918 M:      Jens Frederich <jfrederich@gmail.com>
18919 M:      Jon Nettleton <jon.nettleton@gmail.com>
18920 S:      Maintained
18921 W:      http://wiki.laptop.org/go/DCON
18922 F:      drivers/staging/olpc_dcon/
18923
18924 STAGING - REALTEK RTL8188EU DRIVERS
18925 M:      Larry Finger <Larry.Finger@lwfinger.net>
18926 M:      Phillip Potter <phil@philpotter.co.uk>
18927 S:      Supported
18928 F:      drivers/staging/r8188eu/
18929
18930 STAGING - REALTEK RTL8712U DRIVERS
18931 M:      Larry Finger <Larry.Finger@lwfinger.net>
18932 M:      Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
18933 S:      Odd Fixes
18934 F:      drivers/staging/rtl8712/
18935
18936 STAGING - SEPS525 LCD CONTROLLER DRIVERS
18937 M:      Michael Hennerich <michael.hennerich@analog.com>
18938 L:      linux-fbdev@vger.kernel.org
18939 S:      Supported
18940 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7606.yaml
18941 F:      drivers/staging/fbtft/fb_seps525.c
18942
18943 STAGING - SILICON MOTION SM750 FRAME BUFFER DRIVER
18944 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
18945 M:      Teddy Wang <teddy.wang@siliconmotion.com>
18946 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
18947 L:      linux-fbdev@vger.kernel.org
18948 S:      Maintained
18949 F:      drivers/staging/sm750fb/
18950
18951 STAGING - VIA VT665X DRIVERS
18952 M:      Forest Bond <forest@alittletooquiet.net>
18953 S:      Odd Fixes
18954 F:      drivers/staging/vt665?/
18955
18956 STAGING SUBSYSTEM
18957 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
18958 L:      linux-staging@lists.linux.dev
18959 S:      Supported
18960 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
18961 F:      drivers/staging/
18962
18963 STARFIRE/DURALAN NETWORK DRIVER
18964 M:      Ion Badulescu <ionut@badula.org>
18965 S:      Odd Fixes
18966 F:      drivers/net/ethernet/adaptec/starfire*
18967
18968 STARFIVE JH7100 CLOCK DRIVERS
18969 M:      Emil Renner Berthing <kernel@esmil.dk>
18970 S:      Maintained
18971 F:      Documentation/devicetree/bindings/clock/starfive,jh7100-*.yaml
18972 F:      drivers/clk/starfive/clk-starfive-jh7100*
18973 F:      include/dt-bindings/clock/starfive-jh7100*.h
18974
18975 STARFIVE JH7100 PINCTRL DRIVER
18976 M:      Emil Renner Berthing <kernel@esmil.dk>
18977 L:      linux-gpio@vger.kernel.org
18978 S:      Maintained
18979 F:      Documentation/devicetree/bindings/pinctrl/starfive,jh7100-pinctrl.yaml
18980 F:      drivers/pinctrl/pinctrl-starfive.c
18981 F:      include/dt-bindings/pinctrl/pinctrl-starfive.h
18982
18983 STARFIVE JH7100 RESET CONTROLLER DRIVER
18984 M:      Emil Renner Berthing <kernel@esmil.dk>
18985 S:      Maintained
18986 F:      Documentation/devicetree/bindings/reset/starfive,jh7100-reset.yaml
18987 F:      drivers/reset/reset-starfive-jh7100.c
18988 F:      include/dt-bindings/reset/starfive-jh7100.h
18989
18990 STATIC BRANCH/CALL
18991 M:      Peter Zijlstra <peterz@infradead.org>
18992 M:      Josh Poimboeuf <jpoimboe@kernel.org>
18993 M:      Jason Baron <jbaron@akamai.com>
18994 R:      Steven Rostedt <rostedt@goodmis.org>
18995 R:      Ard Biesheuvel <ardb@kernel.org>
18996 S:      Supported
18997 F:      arch/*/include/asm/jump_label*.h
18998 F:      arch/*/include/asm/static_call*.h
18999 F:      arch/*/kernel/jump_label.c
19000 F:      arch/*/kernel/static_call.c
19001 F:      include/linux/jump_label*.h
19002 F:      include/linux/static_call*.h
19003 F:      kernel/jump_label.c
19004 F:      kernel/static_call.c
19005
19006 STI AUDIO (ASoC) DRIVERS
19007 M:      Arnaud Pouliquen <arnaud.pouliquen@foss.st.com>
19008 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19009 S:      Maintained
19010 F:      Documentation/devicetree/bindings/sound/st,sti-asoc-card.txt
19011 F:      sound/soc/sti/
19012
19013 STI CEC DRIVER
19014 M:      Alain Volmat <alain.volmat@foss.st.com>
19015 S:      Maintained
19016 F:      Documentation/devicetree/bindings/media/stih-cec.txt
19017 F:      drivers/media/cec/platform/sti/
19018
19019 STK1160 USB VIDEO CAPTURE DRIVER
19020 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
19021 L:      linux-media@vger.kernel.org
19022 S:      Maintained
19023 T:      git git://linuxtv.org/media_tree.git
19024 F:      drivers/media/usb/stk1160/
19025
19026 STM32 AUDIO (ASoC) DRIVERS
19027 M:      Olivier Moysan <olivier.moysan@foss.st.com>
19028 M:      Arnaud Pouliquen <arnaud.pouliquen@foss.st.com>
19029 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19030 S:      Maintained
19031 F:      Documentation/devicetree/bindings/iio/adc/st,stm32-dfsdm-adc.yaml
19032 F:      Documentation/devicetree/bindings/sound/st,stm32-*.yaml
19033 F:      sound/soc/stm/
19034
19035 STM32 TIMER/LPTIMER DRIVERS
19036 M:      Fabrice Gasnier <fabrice.gasnier@foss.st.com>
19037 S:      Maintained
19038 F:      Documentation/ABI/testing/*timer-stm32
19039 F:      Documentation/devicetree/bindings/*/*stm32-*timer*
19040 F:      drivers/*/stm32-*timer*
19041 F:      drivers/pwm/pwm-stm32*
19042 F:      include/linux/*/stm32-*tim*
19043
19044 STMMAC ETHERNET DRIVER
19045 M:      Giuseppe Cavallaro <peppe.cavallaro@st.com>
19046 M:      Alexandre Torgue <alexandre.torgue@foss.st.com>
19047 M:      Jose Abreu <joabreu@synopsys.com>
19048 L:      netdev@vger.kernel.org
19049 S:      Supported
19050 W:      http://www.stlinux.com
19051 F:      Documentation/networking/device_drivers/ethernet/stmicro/
19052 F:      drivers/net/ethernet/stmicro/stmmac/
19053
19054 SUN3/3X
19055 M:      Sam Creasey <sammy@sammy.net>
19056 S:      Maintained
19057 W:      http://sammy.net/sun3/
19058 F:      arch/m68k/include/asm/sun3*
19059 F:      arch/m68k/kernel/*sun3*
19060 F:      arch/m68k/sun3*/
19061 F:      drivers/net/ethernet/i825xx/sun3*
19062
19063 SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER
19064 M:      Hans de Goede <hdegoede@redhat.com>
19065 L:      linux-input@vger.kernel.org
19066 S:      Maintained
19067 F:      Documentation/devicetree/bindings/input/allwinner,sun4i-a10-lradc-keys.yaml
19068 F:      drivers/input/keyboard/sun4i-lradc-keys.c
19069
19070 SUNDANCE NETWORK DRIVER
19071 M:      Denis Kirjanov <kda@linux-powerpc.org>
19072 L:      netdev@vger.kernel.org
19073 S:      Maintained
19074 F:      drivers/net/ethernet/dlink/sundance.c
19075
19076 SUNPLUS ETHERNET DRIVER
19077 M:      Wells Lu <wellslutw@gmail.com>
19078 L:      netdev@vger.kernel.org
19079 S:      Maintained
19080 W:      https://sunplus.atlassian.net/wiki/spaces/doc/overview
19081 F:      Documentation/devicetree/bindings/net/sunplus,sp7021-emac.yaml
19082 F:      drivers/net/ethernet/sunplus/
19083
19084 SUNPLUS OCOTP DRIVER
19085 M:      Vincent Shih <vincent.sunplus@gmail.com>
19086 S:      Maintained
19087 F:      Documentation/devicetree/bindings/nvmem/sunplus,sp7021-ocotp.yaml
19088 F:      drivers/nvmem/sunplus-ocotp.c
19089
19090 SUNPLUS PWM DRIVER
19091 M:      Hammer Hsieh <hammerh0314@gmail.com>
19092 S:      Maintained
19093 F:      Documentation/devicetree/bindings/pwm/sunplus,sp7021-pwm.yaml
19094 F:      drivers/pwm/pwm-sunplus.c
19095
19096 SUNPLUS RTC DRIVER
19097 M:      Vincent Shih <vincent.sunplus@gmail.com>
19098 L:      linux-rtc@vger.kernel.org
19099 S:      Maintained
19100 F:      Documentation/devicetree/bindings/rtc/sunplus,sp7021-rtc.yaml
19101 F:      drivers/rtc/rtc-sunplus.c
19102
19103 SUNPLUS SPI CONTROLLER INTERFACE DRIVER
19104 M:      Li-hao Kuo <lhjeff911@gmail.com>
19105 L:      linux-spi@vger.kernel.org
19106 S:      Maintained
19107 F:      Documentation/devicetree/bindings/spi/spi-sunplus-sp7021.yaml
19108 F:      drivers/spi/spi-sunplus-sp7021.c
19109
19110 SUNPLUS UART DRIVER
19111 M:      Hammer Hsieh <hammerh0314@gmail.com>
19112 S:      Maintained
19113 F:      Documentation/devicetree/bindings/serial/sunplus,sp7021-uart.yaml
19114 F:      drivers/tty/serial/sunplus-uart.c
19115
19116 SUNPLUS WATCHDOG DRIVER
19117 M:      Xiantao Hu <xt.hu@cqplus1.com>
19118 L:      linux-watchdog@vger.kernel.org
19119 S:      Maintained
19120 F:      Documentation/devicetree/bindings/watchdog/sunplus,sp7021-wdt.yaml
19121 F:      drivers/watchdog/sunplus_wdt.c
19122
19123 SUPERH
19124 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
19125 M:      Rich Felker <dalias@libc.org>
19126 L:      linux-sh@vger.kernel.org
19127 S:      Maintained
19128 Q:      http://patchwork.kernel.org/project/linux-sh/list/
19129 F:      Documentation/sh/
19130 F:      arch/sh/
19131 F:      drivers/sh/
19132
19133 SUSPEND TO RAM
19134 M:      "Rafael J. Wysocki" <rafael@kernel.org>
19135 M:      Len Brown <len.brown@intel.com>
19136 M:      Pavel Machek <pavel@ucw.cz>
19137 L:      linux-pm@vger.kernel.org
19138 S:      Supported
19139 B:      https://bugzilla.kernel.org
19140 F:      Documentation/power/
19141 F:      arch/x86/kernel/acpi/
19142 F:      drivers/base/power/
19143 F:      include/linux/freezer.h
19144 F:      include/linux/pm.h
19145 F:      include/linux/suspend.h
19146 F:      kernel/power/
19147
19148 SVGA HANDLING
19149 M:      Martin Mares <mj@ucw.cz>
19150 L:      linux-video@atrey.karlin.mff.cuni.cz
19151 S:      Maintained
19152 F:      Documentation/admin-guide/svga.rst
19153 F:      arch/x86/boot/video*
19154
19155 SWIOTLB SUBSYSTEM
19156 M:      Christoph Hellwig <hch@infradead.org>
19157 L:      iommu@lists.linux-foundation.org
19158 S:      Supported
19159 W:      http://git.infradead.org/users/hch/dma-mapping.git
19160 T:      git git://git.infradead.org/users/hch/dma-mapping.git
19161 F:      arch/*/kernel/pci-swiotlb.c
19162 F:      include/linux/swiotlb.h
19163 F:      kernel/dma/swiotlb.c
19164
19165 SWITCHDEV
19166 M:      Jiri Pirko <jiri@resnulli.us>
19167 M:      Ivan Vecera <ivecera@redhat.com>
19168 L:      netdev@vger.kernel.org
19169 S:      Supported
19170 F:      include/net/switchdev.h
19171 F:      net/switchdev/
19172
19173 SY8106A REGULATOR DRIVER
19174 M:      Icenowy Zheng <icenowy@aosc.io>
19175 S:      Maintained
19176 F:      Documentation/devicetree/bindings/regulator/silergy,sy8106a.yaml
19177 F:      drivers/regulator/sy8106a-regulator.c
19178
19179 SYNC FILE FRAMEWORK
19180 M:      Sumit Semwal <sumit.semwal@linaro.org>
19181 R:      Gustavo Padovan <gustavo@padovan.org>
19182 L:      linux-media@vger.kernel.org
19183 L:      dri-devel@lists.freedesktop.org
19184 S:      Maintained
19185 T:      git git://anongit.freedesktop.org/drm/drm-misc
19186 F:      Documentation/driver-api/sync_file.rst
19187 F:      drivers/dma-buf/dma-fence*
19188 F:      drivers/dma-buf/sw_sync.c
19189 F:      drivers/dma-buf/sync_*
19190 F:      include/linux/sync_file.h
19191 F:      include/uapi/linux/sync_file.h
19192
19193 SYNOPSYS ARC ARCHITECTURE
19194 M:      Vineet Gupta <vgupta@kernel.org>
19195 L:      linux-snps-arc@lists.infradead.org
19196 S:      Supported
19197 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc.git
19198 F:      Documentation/arc/
19199 F:      Documentation/devicetree/bindings/arc/*
19200 F:      Documentation/devicetree/bindings/interrupt-controller/snps,arc*
19201 F:      arch/arc/
19202 F:      drivers/clocksource/arc_timer.c
19203 F:      drivers/tty/serial/arc_uart.c
19204
19205 SYNOPSYS ARC HSDK SDP pll clock driver
19206 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
19207 S:      Supported
19208 F:      Documentation/devicetree/bindings/clock/snps,hsdk-pll-clock.txt
19209 F:      drivers/clk/clk-hsdk-pll.c
19210
19211 SYNOPSYS ARC SDP clock driver
19212 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
19213 S:      Supported
19214 F:      Documentation/devicetree/bindings/clock/snps,pll-clock.txt
19215 F:      drivers/clk/axs10x/*
19216
19217 SYNOPSYS ARC SDP platform support
19218 M:      Alexey Brodkin <abrodkin@synopsys.com>
19219 S:      Supported
19220 F:      Documentation/devicetree/bindings/arc/axs10*
19221 F:      arch/arc/boot/dts/ax*
19222 F:      arch/arc/plat-axs10x
19223
19224 SYNOPSYS AXS10x RESET CONTROLLER DRIVER
19225 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
19226 S:      Supported
19227 F:      Documentation/devicetree/bindings/reset/snps,axs10x-reset.txt
19228 F:      drivers/reset/reset-axs10x.c
19229
19230 SYNOPSYS CREG GPIO DRIVER
19231 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
19232 S:      Maintained
19233 F:      Documentation/devicetree/bindings/gpio/snps,creg-gpio.txt
19234 F:      drivers/gpio/gpio-creg-snps.c
19235
19236 SYNOPSYS DESIGNWARE 8250 UART DRIVER
19237 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
19238 S:      Maintained
19239 F:      drivers/tty/serial/8250/8250_dw.c
19240 F:      drivers/tty/serial/8250/8250_dwlib.*
19241 F:      drivers/tty/serial/8250/8250_lpss.c
19242
19243 SYNOPSYS DESIGNWARE APB GPIO DRIVER
19244 M:      Hoan Tran <hoan@os.amperecomputing.com>
19245 M:      Serge Semin <fancer.lancer@gmail.com>
19246 L:      linux-gpio@vger.kernel.org
19247 S:      Maintained
19248 F:      Documentation/devicetree/bindings/gpio/snps,dw-apb-gpio.yaml
19249 F:      drivers/gpio/gpio-dwapb.c
19250
19251 SYNOPSYS DESIGNWARE APB SSI DRIVER
19252 M:      Serge Semin <fancer.lancer@gmail.com>
19253 L:      linux-spi@vger.kernel.org
19254 S:      Supported
19255 F:      Documentation/devicetree/bindings/spi/snps,dw-apb-ssi.yaml
19256 F:      drivers/spi/spi-dw*
19257
19258 SYNOPSYS DESIGNWARE AXI DMAC DRIVER
19259 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
19260 S:      Maintained
19261 F:      Documentation/devicetree/bindings/dma/snps,dw-axi-dmac.yaml
19262 F:      drivers/dma/dw-axi-dmac/
19263
19264 SYNOPSYS DESIGNWARE DMAC DRIVER
19265 M:      Viresh Kumar <vireshk@kernel.org>
19266 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
19267 S:      Maintained
19268 F:      Documentation/devicetree/bindings/dma/renesas,rzn1-dmamux.yaml
19269 F:      Documentation/devicetree/bindings/dma/snps,dma-spear1340.yaml
19270 F:      drivers/dma/dw/
19271 F:      include/dt-bindings/dma/dw-dmac.h
19272 F:      include/linux/dma/dw.h
19273 F:      include/linux/platform_data/dma-dw.h
19274
19275 SYNOPSYS DESIGNWARE ENTERPRISE ETHERNET DRIVER
19276 M:      Jose Abreu <Jose.Abreu@synopsys.com>
19277 L:      netdev@vger.kernel.org
19278 S:      Supported
19279 F:      drivers/net/ethernet/synopsys/
19280
19281 SYNOPSYS DESIGNWARE ETHERNET XPCS DRIVER
19282 M:      Jose Abreu <Jose.Abreu@synopsys.com>
19283 L:      netdev@vger.kernel.org
19284 S:      Supported
19285 F:      drivers/net/pcs/pcs-xpcs.c
19286 F:      drivers/net/pcs/pcs-xpcs.h
19287 F:      include/linux/pcs/pcs-xpcs.h
19288
19289 SYNOPSYS DESIGNWARE I2C DRIVER
19290 M:      Jarkko Nikula <jarkko.nikula@linux.intel.com>
19291 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
19292 R:      Mika Westerberg <mika.westerberg@linux.intel.com>
19293 R:      Jan Dabros <jsd@semihalf.com>
19294 L:      linux-i2c@vger.kernel.org
19295 S:      Maintained
19296 F:      drivers/i2c/busses/i2c-designware-*
19297
19298 SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
19299 M:      Jaehoon Chung <jh80.chung@samsung.com>
19300 L:      linux-mmc@vger.kernel.org
19301 S:      Maintained
19302 F:      drivers/mmc/host/dw_mmc*
19303
19304 SYNOPSYS HSDK RESET CONTROLLER DRIVER
19305 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
19306 S:      Supported
19307 F:      Documentation/devicetree/bindings/reset/snps,hsdk-reset.txt
19308 F:      drivers/reset/reset-hsdk.c
19309 F:      include/dt-bindings/reset/snps,hsdk-reset.h
19310
19311 SYNOPSYS SDHCI COMPLIANT DWC MSHC DRIVER
19312 M:      Prabu Thangamuthu <prabu.t@synopsys.com>
19313 M:      Manjunath M B <manjumb@synopsys.com>
19314 L:      linux-mmc@vger.kernel.org
19315 S:      Maintained
19316 F:      drivers/mmc/host/sdhci-pci-dwc-mshc.c
19317
19318 SYSTEM CONFIGURATION (SYSCON)
19319 M:      Lee Jones <lee.jones@linaro.org>
19320 M:      Arnd Bergmann <arnd@arndb.de>
19321 S:      Supported
19322 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
19323 F:      drivers/mfd/syscon.c
19324
19325 SYSTEM CONTROL & POWER/MANAGEMENT INTERFACE (SCPI/SCMI) Message Protocol drivers
19326 M:      Sudeep Holla <sudeep.holla@arm.com>
19327 R:      Cristian Marussi <cristian.marussi@arm.com>
19328 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
19329 S:      Maintained
19330 F:      Documentation/devicetree/bindings/firmware/arm,sc[mp]i.yaml
19331 F:      drivers/clk/clk-sc[mp]i.c
19332 F:      drivers/cpufreq/sc[mp]i-cpufreq.c
19333 F:      drivers/firmware/arm_scmi/
19334 F:      drivers/firmware/arm_scpi.c
19335 F:      drivers/regulator/scmi-regulator.c
19336 F:      drivers/reset/reset-scmi.c
19337 F:      include/linux/sc[mp]i_protocol.h
19338 F:      include/trace/events/scmi.h
19339 F:      include/uapi/linux/virtio_scmi.h
19340
19341 SYSTEM RESET/SHUTDOWN DRIVERS
19342 M:      Sebastian Reichel <sre@kernel.org>
19343 L:      linux-pm@vger.kernel.org
19344 S:      Maintained
19345 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
19346 F:      Documentation/devicetree/bindings/power/reset/
19347 F:      drivers/power/reset/
19348
19349 SYSTEM TRACE MODULE CLASS
19350 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
19351 S:      Maintained
19352 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ash/stm.git
19353 F:      Documentation/trace/stm.rst
19354 F:      drivers/hwtracing/stm/
19355 F:      include/linux/stm.h
19356 F:      include/uapi/linux/stm.h
19357
19358 SYSTEM76 ACPI DRIVER
19359 M:      Jeremy Soller <jeremy@system76.com>
19360 M:      System76 Product Development <productdev@system76.com>
19361 L:      platform-driver-x86@vger.kernel.org
19362 S:      Maintained
19363 F:      drivers/platform/x86/system76_acpi.c
19364
19365 SYSV FILESYSTEM
19366 M:      Christoph Hellwig <hch@infradead.org>
19367 S:      Maintained
19368 F:      Documentation/filesystems/sysv-fs.rst
19369 F:      fs/sysv/
19370 F:      include/linux/sysv_fs.h
19371
19372 TASKSTATS STATISTICS INTERFACE
19373 M:      Balbir Singh <bsingharora@gmail.com>
19374 S:      Maintained
19375 F:      Documentation/accounting/taskstats*
19376 F:      include/linux/taskstats*
19377 F:      kernel/taskstats.c
19378
19379 TC subsystem
19380 M:      Jamal Hadi Salim <jhs@mojatatu.com>
19381 M:      Cong Wang <xiyou.wangcong@gmail.com>
19382 M:      Jiri Pirko <jiri@resnulli.us>
19383 L:      netdev@vger.kernel.org
19384 S:      Maintained
19385 F:      include/net/pkt_cls.h
19386 F:      include/net/pkt_sched.h
19387 F:      include/net/tc_act/
19388 F:      include/uapi/linux/pkt_cls.h
19389 F:      include/uapi/linux/pkt_sched.h
19390 F:      include/uapi/linux/tc_act/
19391 F:      include/uapi/linux/tc_ematch/
19392 F:      net/sched/
19393 F:      tools/testing/selftests/tc-testing
19394
19395 TC90522 MEDIA DRIVER
19396 M:      Akihiro Tsukada <tskd08@gmail.com>
19397 L:      linux-media@vger.kernel.org
19398 S:      Odd Fixes
19399 F:      drivers/media/dvb-frontends/tc90522*
19400
19401 TCP LOW PRIORITY MODULE
19402 M:      "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
19403 M:      "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
19404 S:      Maintained
19405 W:      http://tcp-lp-mod.sourceforge.net/
19406 F:      net/ipv4/tcp_lp.c
19407
19408 TDA10071 MEDIA DRIVER
19409 M:      Antti Palosaari <crope@iki.fi>
19410 L:      linux-media@vger.kernel.org
19411 S:      Maintained
19412 W:      https://linuxtv.org
19413 W:      http://palosaari.fi/linux/
19414 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19415 T:      git git://linuxtv.org/anttip/media_tree.git
19416 F:      drivers/media/dvb-frontends/tda10071*
19417
19418 TDA18212 MEDIA DRIVER
19419 M:      Antti Palosaari <crope@iki.fi>
19420 L:      linux-media@vger.kernel.org
19421 S:      Maintained
19422 W:      https://linuxtv.org
19423 W:      http://palosaari.fi/linux/
19424 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19425 T:      git git://linuxtv.org/anttip/media_tree.git
19426 F:      drivers/media/tuners/tda18212*
19427
19428 TDA18218 MEDIA DRIVER
19429 M:      Antti Palosaari <crope@iki.fi>
19430 L:      linux-media@vger.kernel.org
19431 S:      Maintained
19432 W:      https://linuxtv.org
19433 W:      http://palosaari.fi/linux/
19434 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19435 T:      git git://linuxtv.org/anttip/media_tree.git
19436 F:      drivers/media/tuners/tda18218*
19437
19438 TDA18250 MEDIA DRIVER
19439 M:      Olli Salonen <olli.salonen@iki.fi>
19440 L:      linux-media@vger.kernel.org
19441 S:      Maintained
19442 W:      https://linuxtv.org
19443 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19444 T:      git git://linuxtv.org/media_tree.git
19445 F:      drivers/media/tuners/tda18250*
19446
19447 TDA18271 MEDIA DRIVER
19448 M:      Michael Krufky <mkrufky@linuxtv.org>
19449 L:      linux-media@vger.kernel.org
19450 S:      Maintained
19451 W:      https://linuxtv.org
19452 W:      http://github.com/mkrufky
19453 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19454 T:      git git://linuxtv.org/mkrufky/tuners.git
19455 F:      drivers/media/tuners/tda18271*
19456
19457 TDA1997x MEDIA DRIVER
19458 M:      Tim Harvey <tharvey@gateworks.com>
19459 L:      linux-media@vger.kernel.org
19460 S:      Maintained
19461 W:      https://linuxtv.org
19462 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19463 F:      drivers/media/i2c/tda1997x.*
19464
19465 TDA827x MEDIA DRIVER
19466 M:      Michael Krufky <mkrufky@linuxtv.org>
19467 L:      linux-media@vger.kernel.org
19468 S:      Maintained
19469 W:      https://linuxtv.org
19470 W:      http://github.com/mkrufky
19471 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19472 T:      git git://linuxtv.org/mkrufky/tuners.git
19473 F:      drivers/media/tuners/tda8290.*
19474
19475 TDA8290 MEDIA DRIVER
19476 M:      Michael Krufky <mkrufky@linuxtv.org>
19477 L:      linux-media@vger.kernel.org
19478 S:      Maintained
19479 W:      https://linuxtv.org
19480 W:      http://github.com/mkrufky
19481 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19482 T:      git git://linuxtv.org/mkrufky/tuners.git
19483 F:      drivers/media/tuners/tda8290.*
19484
19485 TDA9840 MEDIA DRIVER
19486 M:      Hans Verkuil <hverkuil@xs4all.nl>
19487 L:      linux-media@vger.kernel.org
19488 S:      Maintained
19489 W:      https://linuxtv.org
19490 T:      git git://linuxtv.org/media_tree.git
19491 F:      drivers/media/i2c/tda9840*
19492
19493 TEA5761 TUNER DRIVER
19494 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
19495 L:      linux-media@vger.kernel.org
19496 S:      Odd fixes
19497 W:      https://linuxtv.org
19498 T:      git git://linuxtv.org/media_tree.git
19499 F:      drivers/media/tuners/tea5761.*
19500
19501 TEA5767 TUNER DRIVER
19502 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
19503 L:      linux-media@vger.kernel.org
19504 S:      Maintained
19505 W:      https://linuxtv.org
19506 T:      git git://linuxtv.org/media_tree.git
19507 F:      drivers/media/tuners/tea5767.*
19508
19509 TEA6415C MEDIA DRIVER
19510 M:      Hans Verkuil <hverkuil@xs4all.nl>
19511 L:      linux-media@vger.kernel.org
19512 S:      Maintained
19513 W:      https://linuxtv.org
19514 T:      git git://linuxtv.org/media_tree.git
19515 F:      drivers/media/i2c/tea6415c*
19516
19517 TEA6420 MEDIA DRIVER
19518 M:      Hans Verkuil <hverkuil@xs4all.nl>
19519 L:      linux-media@vger.kernel.org
19520 S:      Maintained
19521 W:      https://linuxtv.org
19522 T:      git git://linuxtv.org/media_tree.git
19523 F:      drivers/media/i2c/tea6420*
19524
19525 TEAM DRIVER
19526 M:      Jiri Pirko <jiri@resnulli.us>
19527 L:      netdev@vger.kernel.org
19528 S:      Supported
19529 F:      drivers/net/team/
19530 F:      include/linux/if_team.h
19531 F:      include/uapi/linux/if_team.h
19532
19533 TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
19534 M:      "Savoir-faire Linux Inc." <kernel@savoirfairelinux.com>
19535 S:      Maintained
19536 F:      arch/x86/platform/ts5500/
19537
19538 TECHNOTREND USB IR RECEIVER
19539 M:      Sean Young <sean@mess.org>
19540 L:      linux-media@vger.kernel.org
19541 S:      Maintained
19542 F:      drivers/media/rc/ttusbir.c
19543
19544 TECHWELL TW9910 VIDEO DECODER
19545 L:      linux-media@vger.kernel.org
19546 S:      Orphan
19547 F:      drivers/media/i2c/tw9910.c
19548 F:      include/media/i2c/tw9910.h
19549
19550 TEE SUBSYSTEM
19551 M:      Jens Wiklander <jens.wiklander@linaro.org>
19552 R:      Sumit Garg <sumit.garg@linaro.org>
19553 L:      op-tee@lists.trustedfirmware.org
19554 S:      Maintained
19555 F:      Documentation/staging/tee.rst
19556 F:      drivers/tee/
19557 F:      include/linux/tee_drv.h
19558 F:      include/uapi/linux/tee.h
19559
19560 TEGRA ARCHITECTURE SUPPORT
19561 M:      Thierry Reding <thierry.reding@gmail.com>
19562 M:      Jonathan Hunter <jonathanh@nvidia.com>
19563 L:      linux-tegra@vger.kernel.org
19564 S:      Supported
19565 Q:      http://patchwork.ozlabs.org/project/linux-tegra/list/
19566 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git
19567 N:      [^a-z]tegra
19568
19569 TEGRA CLOCK DRIVER
19570 M:      Peter De Schrijver <pdeschrijver@nvidia.com>
19571 M:      Prashant Gaikwad <pgaikwad@nvidia.com>
19572 S:      Supported
19573 F:      drivers/clk/tegra/
19574
19575 TEGRA DMA DRIVERS
19576 M:      Laxman Dewangan <ldewangan@nvidia.com>
19577 M:      Jon Hunter <jonathanh@nvidia.com>
19578 S:      Supported
19579 F:      drivers/dma/tegra*
19580
19581 TEGRA I2C DRIVER
19582 M:      Laxman Dewangan <ldewangan@nvidia.com>
19583 R:      Dmitry Osipenko <digetx@gmail.com>
19584 S:      Supported
19585 F:      drivers/i2c/busses/i2c-tegra.c
19586
19587 TEGRA IOMMU DRIVERS
19588 M:      Thierry Reding <thierry.reding@gmail.com>
19589 R:      Krishna Reddy <vdumpa@nvidia.com>
19590 L:      linux-tegra@vger.kernel.org
19591 S:      Supported
19592 F:      drivers/iommu/arm/arm-smmu/arm-smmu-nvidia.c
19593 F:      drivers/iommu/tegra*
19594
19595 TEGRA KBC DRIVER
19596 M:      Laxman Dewangan <ldewangan@nvidia.com>
19597 S:      Supported
19598 F:      drivers/input/keyboard/tegra-kbc.c
19599
19600 TEGRA NAND DRIVER
19601 M:      Stefan Agner <stefan@agner.ch>
19602 M:      Lucas Stach <dev@lynxeye.de>
19603 S:      Maintained
19604 F:      Documentation/devicetree/bindings/mtd/nvidia-tegra20-nand.txt
19605 F:      drivers/mtd/nand/raw/tegra_nand.c
19606
19607 TEGRA PWM DRIVER
19608 M:      Thierry Reding <thierry.reding@gmail.com>
19609 S:      Supported
19610 F:      drivers/pwm/pwm-tegra.c
19611
19612 TEGRA SERIAL DRIVER
19613 M:      Laxman Dewangan <ldewangan@nvidia.com>
19614 S:      Supported
19615 F:      drivers/tty/serial/serial-tegra.c
19616
19617 TEGRA SPI DRIVER
19618 M:      Laxman Dewangan <ldewangan@nvidia.com>
19619 S:      Supported
19620 F:      drivers/spi/spi-tegra*
19621
19622 TEGRA QUAD SPI DRIVER
19623 M:      Thierry Reding <thierry.reding@gmail.com>
19624 M:      Jonathan Hunter <jonathanh@nvidia.com>
19625 M:      Sowjanya Komatineni <skomatineni@nvidia.com>
19626 L:      linux-tegra@vger.kernel.org
19627 S:      Maintained
19628 F:      drivers/spi/spi-tegra210-quad.c
19629
19630 TEGRA VIDEO DRIVER
19631 M:      Thierry Reding <thierry.reding@gmail.com>
19632 M:      Jonathan Hunter <jonathanh@nvidia.com>
19633 M:      Sowjanya Komatineni <skomatineni@nvidia.com>
19634 L:      linux-media@vger.kernel.org
19635 L:      linux-tegra@vger.kernel.org
19636 S:      Maintained
19637 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
19638 F:      drivers/staging/media/tegra-video/
19639
19640 TEGRA XUSB PADCTL DRIVER
19641 M:      JC Kuo <jckuo@nvidia.com>
19642 S:      Supported
19643 F:      drivers/phy/tegra/xusb*
19644
19645 TEHUTI ETHERNET DRIVER
19646 M:      Andy Gospodarek <andy@greyhouse.net>
19647 L:      netdev@vger.kernel.org
19648 S:      Supported
19649 F:      drivers/net/ethernet/tehuti/*
19650
19651 TELECOM CLOCK DRIVER FOR MCPL0010
19652 M:      Mark Gross <markgross@kernel.org>
19653 S:      Supported
19654 F:      drivers/char/tlclk.c
19655
19656 TEMPO SEMICONDUCTOR DRIVERS
19657 M:      Steven Eckhoff <steven.eckhoff.opensource@gmail.com>
19658 S:      Maintained
19659 F:      Documentation/devicetree/bindings/sound/tscs*.txt
19660 F:      sound/soc/codecs/tscs*.c
19661 F:      sound/soc/codecs/tscs*.h
19662
19663 TENSILICA XTENSA PORT (xtensa)
19664 M:      Chris Zankel <chris@zankel.net>
19665 M:      Max Filippov <jcmvbkbc@gmail.com>
19666 L:      linux-xtensa@linux-xtensa.org
19667 S:      Maintained
19668 T:      git git://github.com/czankel/xtensa-linux.git
19669 F:      arch/xtensa/
19670 F:      drivers/irqchip/irq-xtensa-*
19671
19672 TEXAS INSTRUMENTS ASoC DRIVERS
19673 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
19674 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19675 S:      Maintained
19676 F:      Documentation/devicetree/bindings/sound/davinci-mcasp-audio.yaml
19677 F:      sound/soc/ti/
19678
19679 TEXAS INSTRUMENTS' DAC7612 DAC DRIVER
19680 M:      Ricardo Ribalda <ribalda@kernel.org>
19681 L:      linux-iio@vger.kernel.org
19682 S:      Supported
19683 F:      Documentation/devicetree/bindings/iio/dac/ti,dac7612.yaml
19684 F:      drivers/iio/dac/ti-dac7612.c
19685
19686 TEXAS INSTRUMENTS DMA DRIVERS
19687 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
19688 L:      dmaengine@vger.kernel.org
19689 S:      Maintained
19690 F:      Documentation/devicetree/bindings/dma/ti-dma-crossbar.txt
19691 F:      Documentation/devicetree/bindings/dma/ti-edma.txt
19692 F:      Documentation/devicetree/bindings/dma/ti/
19693 F:      drivers/dma/ti/
19694 X:      drivers/dma/ti/cppi41.c
19695 F:      include/linux/dma/k3-udma-glue.h
19696 F:      include/linux/dma/ti-cppi5.h
19697 F:      include/linux/dma/k3-psil.h
19698
19699 TEXAS INSTRUMENTS' SYSTEM CONTROL INTERFACE (TISCI) PROTOCOL DRIVER
19700 M:      Nishanth Menon <nm@ti.com>
19701 M:      Tero Kristo <kristo@kernel.org>
19702 M:      Santosh Shilimkar <ssantosh@kernel.org>
19703 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
19704 S:      Maintained
19705 F:      Documentation/devicetree/bindings/arm/keystone/ti,k3-sci-common.yaml
19706 F:      Documentation/devicetree/bindings/arm/keystone/ti,sci.yaml
19707 F:      Documentation/devicetree/bindings/clock/ti,sci-clk.yaml
19708 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-inta.yaml
19709 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-intr.yaml
19710 F:      Documentation/devicetree/bindings/reset/ti,sci-reset.yaml
19711 F:      Documentation/devicetree/bindings/soc/ti/sci-pm-domain.yaml
19712 F:      drivers/clk/keystone/sci-clk.c
19713 F:      drivers/firmware/ti_sci*
19714 F:      drivers/irqchip/irq-ti-sci-inta.c
19715 F:      drivers/irqchip/irq-ti-sci-intr.c
19716 F:      drivers/reset/reset-ti-sci.c
19717 F:      drivers/soc/ti/ti_sci_inta_msi.c
19718 F:      drivers/soc/ti/ti_sci_pm_domains.c
19719 F:      include/dt-bindings/soc/ti,sci_pm_domain.h
19720 F:      include/linux/soc/ti/ti_sci_inta_msi.h
19721 F:      include/linux/soc/ti/ti_sci_protocol.h
19722
19723 TEXAS INSTRUMENTS TPS23861 PoE PSE DRIVER
19724 M:      Robert Marko <robert.marko@sartura.hr>
19725 M:      Luka Perkov <luka.perkov@sartura.hr>
19726 L:      linux-hwmon@vger.kernel.org
19727 S:      Maintained
19728 F:      Documentation/devicetree/bindings/hwmon/ti,tps23861.yaml
19729 F:      Documentation/hwmon/tps23861.rst
19730 F:      drivers/hwmon/tps23861.c
19731
19732 TEXAS INSTRUMENTS' TMP117 TEMPERATURE SENSOR DRIVER
19733 M:      Puranjay Mohan <puranjay12@gmail.com>
19734 L:      linux-iio@vger.kernel.org
19735 S:      Supported
19736 F:      Documentation/devicetree/bindings/iio/temperature/ti,tmp117.yaml
19737 F:      drivers/iio/temperature/tmp117.c
19738
19739 THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER
19740 M:      Hans Verkuil <hverkuil@xs4all.nl>
19741 L:      linux-media@vger.kernel.org
19742 S:      Maintained
19743 W:      https://linuxtv.org
19744 T:      git git://linuxtv.org/media_tree.git
19745 F:      drivers/media/radio/radio-raremono.c
19746
19747 THERMAL
19748 M:      Rafael J. Wysocki <rafael@kernel.org>
19749 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
19750 R:      Amit Kucheria <amitk@kernel.org>
19751 R:      Zhang Rui <rui.zhang@intel.com>
19752 L:      linux-pm@vger.kernel.org
19753 S:      Supported
19754 Q:      https://patchwork.kernel.org/project/linux-pm/list/
19755 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git thermal
19756 F:      Documentation/ABI/testing/sysfs-class-thermal
19757 F:      Documentation/devicetree/bindings/thermal/
19758 F:      Documentation/driver-api/thermal/
19759 F:      drivers/thermal/
19760 F:      include/linux/cpu_cooling.h
19761 F:      include/linux/thermal.h
19762 F:      include/uapi/linux/thermal.h
19763 F:      tools/lib/thermal/
19764 F:      tools/thermal/
19765
19766 THERMAL DRIVER FOR AMLOGIC SOCS
19767 M:      Guillaume La Roque <glaroque@baylibre.com>
19768 L:      linux-pm@vger.kernel.org
19769 L:      linux-amlogic@lists.infradead.org
19770 S:      Supported
19771 W:      http://linux-meson.com/
19772 F:      Documentation/devicetree/bindings/thermal/amlogic,thermal.yaml
19773 F:      drivers/thermal/amlogic_thermal.c
19774
19775 THERMAL/CPU_COOLING
19776 M:      Amit Daniel Kachhap <amit.kachhap@gmail.com>
19777 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
19778 M:      Viresh Kumar <viresh.kumar@linaro.org>
19779 R:      Lukasz Luba <lukasz.luba@arm.com>
19780 L:      linux-pm@vger.kernel.org
19781 S:      Supported
19782 F:      Documentation/driver-api/thermal/cpu-cooling-api.rst
19783 F:      Documentation/driver-api/thermal/cpu-idle-cooling.rst
19784 F:      drivers/thermal/cpufreq_cooling.c
19785 F:      drivers/thermal/cpuidle_cooling.c
19786 F:      include/linux/cpu_cooling.h
19787
19788 THERMAL/POWER_ALLOCATOR
19789 M:      Lukasz Luba <lukasz.luba@arm.com>
19790 L:      linux-pm@vger.kernel.org
19791 S:      Maintained
19792 F:      Documentation/driver-api/thermal/power_allocator.rst
19793 F:      drivers/thermal/gov_power_allocator.c
19794 F:      include/trace/events/thermal_power_allocator.h
19795
19796 THINKPAD ACPI EXTRAS DRIVER
19797 M:      Henrique de Moraes Holschuh <hmh@hmh.eng.br>
19798 L:      ibm-acpi-devel@lists.sourceforge.net
19799 L:      platform-driver-x86@vger.kernel.org
19800 S:      Maintained
19801 W:      http://ibm-acpi.sourceforge.net
19802 W:      http://thinkwiki.org/wiki/Ibm-acpi
19803 T:      git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
19804 F:      drivers/platform/x86/thinkpad_acpi.c
19805
19806 THINKPAD LMI DRIVER
19807 M:      Mark Pearson <markpearson@lenovo.com>
19808 L:      platform-driver-x86@vger.kernel.org
19809 S:      Maintained
19810 F:      Documentation/ABI/testing/sysfs-class-firmware-attributes
19811 F:      drivers/platform/x86/think-lmi.?
19812
19813 THUNDERBOLT DMA TRAFFIC TEST DRIVER
19814 M:      Isaac Hazan <isaac.hazan@intel.com>
19815 L:      linux-usb@vger.kernel.org
19816 S:      Maintained
19817 F:      drivers/thunderbolt/dma_test.c
19818
19819 THUNDERBOLT DRIVER
19820 M:      Andreas Noever <andreas.noever@gmail.com>
19821 M:      Michael Jamet <michael.jamet@intel.com>
19822 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
19823 M:      Yehezkel Bernat <YehezkelShB@gmail.com>
19824 L:      linux-usb@vger.kernel.org
19825 S:      Maintained
19826 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/westeri/thunderbolt.git
19827 F:      Documentation/admin-guide/thunderbolt.rst
19828 F:      drivers/thunderbolt/
19829 F:      include/linux/thunderbolt.h
19830
19831 THUNDERBOLT NETWORK DRIVER
19832 M:      Michael Jamet <michael.jamet@intel.com>
19833 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
19834 M:      Yehezkel Bernat <YehezkelShB@gmail.com>
19835 L:      netdev@vger.kernel.org
19836 S:      Maintained
19837 F:      drivers/net/thunderbolt.c
19838
19839 THUNDERX GPIO DRIVER
19840 M:      Robert Richter <rric@kernel.org>
19841 S:      Odd Fixes
19842 F:      drivers/gpio/gpio-thunderx.c
19843
19844 TI ADS131E0X ADC SERIES DRIVER
19845 M:      Tomislav Denis <tomislav.denis@avl.com>
19846 L:      linux-iio@vger.kernel.org
19847 S:      Maintained
19848 F:      Documentation/devicetree/bindings/iio/adc/ti,ads131e08.yaml
19849 F:      drivers/iio/adc/ti-ads131e08.c
19850
19851 TI AM437X VPFE DRIVER
19852 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
19853 L:      linux-media@vger.kernel.org
19854 S:      Maintained
19855 W:      https://linuxtv.org
19856 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19857 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
19858 F:      drivers/media/platform/ti/am437x/
19859
19860 TI BANDGAP AND THERMAL DRIVER
19861 M:      Eduardo Valentin <edubezval@gmail.com>
19862 M:      Keerthy <j-keerthy@ti.com>
19863 L:      linux-pm@vger.kernel.org
19864 L:      linux-omap@vger.kernel.org
19865 S:      Maintained
19866 F:      drivers/thermal/ti-soc-thermal/
19867
19868 TI BQ27XXX POWER SUPPLY DRIVER
19869 F:      drivers/power/supply/bq27xxx_battery.c
19870 F:      drivers/power/supply/bq27xxx_battery_i2c.c
19871 F:      include/linux/power/bq27xxx_battery.h
19872
19873 TI CDCE706 CLOCK DRIVER
19874 M:      Max Filippov <jcmvbkbc@gmail.com>
19875 S:      Maintained
19876 F:      drivers/clk/clk-cdce706.c
19877
19878 TI CLOCK DRIVER
19879 M:      Tero Kristo <kristo@kernel.org>
19880 L:      linux-omap@vger.kernel.org
19881 S:      Odd Fixes
19882 F:      drivers/clk/ti/
19883 F:      include/linux/clk/ti.h
19884
19885 TI DAVINCI MACHINE SUPPORT
19886 M:      Sekhar Nori <nsekhar@ti.com>
19887 R:      Bartosz Golaszewski <brgl@bgdev.pl>
19888 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
19889 S:      Supported
19890 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nsekhar/linux-davinci.git
19891 F:      Documentation/devicetree/bindings/i2c/i2c-davinci.txt
19892 F:      arch/arm/boot/dts/da850*
19893 F:      arch/arm/mach-davinci/
19894 F:      drivers/i2c/busses/i2c-davinci.c
19895
19896 TI DAVINCI SERIES CLOCK DRIVER
19897 M:      David Lechner <david@lechnology.com>
19898 R:      Sekhar Nori <nsekhar@ti.com>
19899 S:      Maintained
19900 F:      Documentation/devicetree/bindings/clock/ti/davinci/
19901 F:      drivers/clk/davinci/
19902
19903 TI DAVINCI SERIES GPIO DRIVER
19904 M:      Keerthy <j-keerthy@ti.com>
19905 L:      linux-gpio@vger.kernel.org
19906 S:      Maintained
19907 F:      Documentation/devicetree/bindings/gpio/gpio-davinci.yaml
19908 F:      drivers/gpio/gpio-davinci.c
19909
19910 TI DAVINCI SERIES MEDIA DRIVER
19911 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
19912 L:      linux-media@vger.kernel.org
19913 S:      Maintained
19914 W:      https://linuxtv.org
19915 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19916 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
19917 F:      drivers/media/platform/ti/davinci/
19918 F:      include/media/davinci/
19919
19920 TI ENHANCED QUADRATURE ENCODER PULSE (eQEP) DRIVER
19921 R:      David Lechner <david@lechnology.com>
19922 L:      linux-iio@vger.kernel.org
19923 F:      Documentation/devicetree/bindings/counter/ti-eqep.yaml
19924 F:      drivers/counter/ti-eqep.c
19925
19926 TI ETHERNET SWITCH DRIVER (CPSW)
19927 R:      Grygorii Strashko <grygorii.strashko@ti.com>
19928 L:      linux-omap@vger.kernel.org
19929 L:      netdev@vger.kernel.org
19930 S:      Maintained
19931 F:      drivers/net/ethernet/ti/cpsw*
19932 F:      drivers/net/ethernet/ti/davinci*
19933
19934 TI FLASH MEDIA MEMORYSTICK/MMC DRIVERS
19935 M:      Alex Dubov <oakad@yahoo.com>
19936 S:      Maintained
19937 W:      http://tifmxx.berlios.de/
19938 F:      drivers/memstick/host/tifm_ms.c
19939 F:      drivers/misc/tifm*
19940 F:      drivers/mmc/host/tifm_sd.c
19941 F:      include/linux/tifm.h
19942
19943 TI KEYSTONE MULTICORE NAVIGATOR DRIVERS
19944 M:      Nishanth Menon <nm@ti.com>
19945 M:      Santosh Shilimkar <ssantosh@kernel.org>
19946 L:      linux-kernel@vger.kernel.org
19947 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
19948 S:      Maintained
19949 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ti/linux.git
19950 F:      drivers/soc/ti/*
19951
19952 TI LM49xxx FAMILY ASoC CODEC DRIVERS
19953 M:      M R Swami Reddy <mr.swami.reddy@ti.com>
19954 M:      Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
19955 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19956 S:      Maintained
19957 F:      sound/soc/codecs/isabelle*
19958 F:      sound/soc/codecs/lm49453*
19959
19960 TI PCM3060 ASoC CODEC DRIVER
19961 M:      Kirill Marinushkin <kmarinushkin@birdec.com>
19962 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19963 S:      Maintained
19964 F:      Documentation/devicetree/bindings/sound/pcm3060.txt
19965 F:      sound/soc/codecs/pcm3060*
19966
19967 TI TAS571X FAMILY ASoC CODEC DRIVER
19968 M:      Kevin Cernekee <cernekee@chromium.org>
19969 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19970 S:      Odd Fixes
19971 F:      sound/soc/codecs/tas571x*
19972
19973 TI TRF7970A NFC DRIVER
19974 M:      Mark Greer <mgreer@animalcreek.com>
19975 L:      linux-wireless@vger.kernel.org
19976 L:      linux-nfc@lists.01.org (subscribers-only)
19977 S:      Supported
19978 F:      Documentation/devicetree/bindings/net/nfc/ti,trf7970a.yaml
19979 F:      drivers/nfc/trf7970a.c
19980
19981 TI TSC2046 ADC DRIVER
19982 M:      Oleksij Rempel <o.rempel@pengutronix.de>
19983 R:      kernel@pengutronix.de
19984 L:      linux-iio@vger.kernel.org
19985 S:      Maintained
19986 F:      Documentation/devicetree/bindings/iio/adc/ti,tsc2046.yaml
19987 F:      drivers/iio/adc/ti-tsc2046.c
19988
19989 TI TWL4030 SERIES SOC CODEC DRIVER
19990 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
19991 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19992 S:      Maintained
19993 F:      sound/soc/codecs/twl4030*
19994
19995 TI VPE/CAL DRIVERS
19996 M:      Benoit Parrot <bparrot@ti.com>
19997 L:      linux-media@vger.kernel.org
19998 S:      Maintained
19999 W:      http://linuxtv.org/
20000 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
20001 F:      Documentation/devicetree/bindings/media/ti,cal.yaml
20002 F:      Documentation/devicetree/bindings/media/ti,vpe.yaml
20003 F:      drivers/media/platform/ti/cal/
20004 F:      drivers/media/platform/ti/vpe/
20005
20006 TI WILINK WIRELESS DRIVERS
20007 L:      linux-wireless@vger.kernel.org
20008 S:      Orphan
20009 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wl12xx
20010 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wl1251
20011 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
20012 F:      drivers/net/wireless/ti/
20013 F:      include/linux/wl12xx.h
20014
20015 TIMEKEEPING, CLOCKSOURCE CORE, NTP, ALARMTIMER
20016 M:      John Stultz <jstultz@google.com>
20017 M:      Thomas Gleixner <tglx@linutronix.de>
20018 R:      Stephen Boyd <sboyd@kernel.org>
20019 L:      linux-kernel@vger.kernel.org
20020 S:      Supported
20021 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
20022 F:      include/linux/clocksource.h
20023 F:      include/linux/time.h
20024 F:      include/linux/timex.h
20025 F:      include/uapi/linux/time.h
20026 F:      include/uapi/linux/timex.h
20027 F:      kernel/time/alarmtimer.c
20028 F:      kernel/time/clocksource.c
20029 F:      kernel/time/ntp.c
20030 F:      kernel/time/time*.c
20031 F:      tools/testing/selftests/timers/
20032
20033 TIPC NETWORK LAYER
20034 M:      Jon Maloy <jmaloy@redhat.com>
20035 M:      Ying Xue <ying.xue@windriver.com>
20036 L:      netdev@vger.kernel.org (core kernel code)
20037 L:      tipc-discussion@lists.sourceforge.net (user apps, general discussion)
20038 S:      Maintained
20039 W:      http://tipc.sourceforge.net/
20040 F:      include/uapi/linux/tipc*.h
20041 F:      net/tipc/
20042
20043 TLAN NETWORK DRIVER
20044 M:      Samuel Chessman <chessman@tux.org>
20045 L:      tlan-devel@lists.sourceforge.net (subscribers-only)
20046 S:      Maintained
20047 W:      http://sourceforge.net/projects/tlan/
20048 F:      Documentation/networking/device_drivers/ethernet/ti/tlan.rst
20049 F:      drivers/net/ethernet/ti/tlan.*
20050
20051 TM6000 VIDEO4LINUX DRIVER
20052 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
20053 L:      linux-media@vger.kernel.org
20054 S:      Odd fixes
20055 W:      https://linuxtv.org
20056 T:      git git://linuxtv.org/media_tree.git
20057 F:      Documentation/admin-guide/media/tm6000*
20058 F:      drivers/media/usb/tm6000/
20059
20060 TMIO/SDHI MMC DRIVER
20061 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
20062 L:      linux-mmc@vger.kernel.org
20063 L:      linux-renesas-soc@vger.kernel.org
20064 S:      Supported
20065 F:      drivers/mmc/host/renesas_sdhi*
20066 F:      drivers/mmc/host/tmio_mmc*
20067 F:      include/linux/mfd/tmio.h
20068
20069 TMP401 HARDWARE MONITOR DRIVER
20070 M:      Guenter Roeck <linux@roeck-us.net>
20071 L:      linux-hwmon@vger.kernel.org
20072 S:      Maintained
20073 F:      Documentation/devicetree/bindings/hwmon/ti,tmp401.yaml
20074 F:      Documentation/hwmon/tmp401.rst
20075 F:      drivers/hwmon/tmp401.c
20076
20077 TMP464 HARDWARE MONITOR DRIVER
20078 M:      Agathe Porte <agathe.porte@nokia.com>
20079 M:      Guenter Roeck <linux@roeck-us.net>
20080 L:      linux-hwmon@vger.kernel.org
20081 S:      Maintained
20082 F:      Documentation/devicetree/bindings/hwmon/ti,tmp464.yaml
20083 F:      Documentation/hwmon/tmp464.rst
20084 F:      drivers/hwmon/tmp464.c
20085
20086 TMP513 HARDWARE MONITOR DRIVER
20087 M:      Eric Tremblay <etremblay@distech-controls.com>
20088 L:      linux-hwmon@vger.kernel.org
20089 S:      Maintained
20090 F:      Documentation/hwmon/tmp513.rst
20091 F:      drivers/hwmon/tmp513.c
20092
20093 TMPFS (SHMEM FILESYSTEM)
20094 M:      Hugh Dickins <hughd@google.com>
20095 L:      linux-mm@kvack.org
20096 S:      Maintained
20097 F:      include/linux/shmem_fs.h
20098 F:      mm/shmem.c
20099
20100 TOMOYO SECURITY MODULE
20101 M:      Kentaro Takeda <takedakn@nttdata.co.jp>
20102 M:      Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
20103 L:      tomoyo-dev-en@lists.osdn.me (subscribers-only, for developers in English)
20104 L:      tomoyo-users-en@lists.osdn.me (subscribers-only, for users in English)
20105 L:      tomoyo-dev@lists.osdn.me (subscribers-only, for developers in Japanese)
20106 L:      tomoyo-users@lists.osdn.me (subscribers-only, for users in Japanese)
20107 S:      Maintained
20108 W:      https://tomoyo.osdn.jp/
20109 F:      security/tomoyo/
20110
20111 TOPSTAR LAPTOP EXTRAS DRIVER
20112 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
20113 L:      platform-driver-x86@vger.kernel.org
20114 S:      Maintained
20115 F:      drivers/platform/x86/topstar-laptop.c
20116
20117 TORTURE-TEST MODULES
20118 M:      Davidlohr Bueso <dave@stgolabs.net>
20119 M:      "Paul E. McKenney" <paulmck@kernel.org>
20120 M:      Josh Triplett <josh@joshtriplett.org>
20121 L:      linux-kernel@vger.kernel.org
20122 S:      Supported
20123 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
20124 F:      Documentation/RCU/torture.rst
20125 F:      kernel/locking/locktorture.c
20126 F:      kernel/rcu/rcuscale.c
20127 F:      kernel/rcu/rcutorture.c
20128 F:      kernel/rcu/refscale.c
20129 F:      kernel/torture.c
20130
20131 TOSHIBA ACPI EXTRAS DRIVER
20132 M:      Azael Avalos <coproscefalo@gmail.com>
20133 L:      platform-driver-x86@vger.kernel.org
20134 S:      Maintained
20135 F:      drivers/platform/x86/toshiba_acpi.c
20136
20137 TOSHIBA BLUETOOTH DRIVER
20138 M:      Azael Avalos <coproscefalo@gmail.com>
20139 L:      platform-driver-x86@vger.kernel.org
20140 S:      Maintained
20141 F:      drivers/platform/x86/toshiba_bluetooth.c
20142
20143 TOSHIBA HDD ACTIVE PROTECTION SENSOR DRIVER
20144 M:      Azael Avalos <coproscefalo@gmail.com>
20145 L:      platform-driver-x86@vger.kernel.org
20146 S:      Maintained
20147 F:      drivers/platform/x86/toshiba_haps.c
20148
20149 TOSHIBA SMM DRIVER
20150 M:      Jonathan Buzzard <jonathan@buzzard.org.uk>
20151 S:      Maintained
20152 W:      http://www.buzzard.org.uk/toshiba/
20153 F:      drivers/char/toshiba.c
20154 F:      include/linux/toshiba.h
20155 F:      include/uapi/linux/toshiba.h
20156
20157 TOSHIBA TC358743 DRIVER
20158 M:      Mats Randgaard <matrandg@cisco.com>
20159 L:      linux-media@vger.kernel.org
20160 S:      Maintained
20161 F:      drivers/media/i2c/tc358743*
20162 F:      include/media/i2c/tc358743.h
20163
20164 TOSHIBA WMI HOTKEYS DRIVER
20165 M:      Azael Avalos <coproscefalo@gmail.com>
20166 L:      platform-driver-x86@vger.kernel.org
20167 S:      Maintained
20168 F:      drivers/platform/x86/toshiba-wmi.c
20169
20170 TPM DEVICE DRIVER
20171 M:      Peter Huewe <peterhuewe@gmx.de>
20172 M:      Jarkko Sakkinen <jarkko@kernel.org>
20173 R:      Jason Gunthorpe <jgg@ziepe.ca>
20174 L:      linux-integrity@vger.kernel.org
20175 S:      Maintained
20176 W:      https://kernsec.org/wiki/index.php/Linux_Kernel_Integrity
20177 Q:      https://patchwork.kernel.org/project/linux-integrity/list/
20178 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jarkko/linux-tpmdd.git
20179 F:      drivers/char/tpm/
20180
20181 TRACING
20182 M:      Steven Rostedt <rostedt@goodmis.org>
20183 M:      Ingo Molnar <mingo@redhat.com>
20184 S:      Maintained
20185 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rostedt/linux-trace.git
20186 F:      Documentation/trace/ftrace.rst
20187 F:      arch/*/*/*/*ftrace*
20188 F:      arch/*/*/*ftrace*
20189 F:      fs/tracefs/
20190 F:      include/*/ftrace.h
20191 F:      include/linux/trace*.h
20192 F:      include/trace/
20193 F:      kernel/trace/
20194 F:      tools/testing/selftests/ftrace/
20195
20196 TRACING MMIO ACCESSES (MMIOTRACE)
20197 M:      Steven Rostedt <rostedt@goodmis.org>
20198 M:      Ingo Molnar <mingo@kernel.org>
20199 R:      Karol Herbst <karolherbst@gmail.com>
20200 R:      Pekka Paalanen <ppaalanen@gmail.com>
20201 L:      linux-kernel@vger.kernel.org
20202 L:      nouveau@lists.freedesktop.org
20203 S:      Maintained
20204 F:      arch/x86/mm/kmmio.c
20205 F:      arch/x86/mm/mmio-mod.c
20206 F:      arch/x86/mm/testmmiotrace.c
20207 F:      include/linux/mmiotrace.h
20208 F:      kernel/trace/trace_mmiotrace.c
20209
20210 TRACING OS NOISE / LATENCY TRACERS
20211 M:      Steven Rostedt <rostedt@goodmis.org>
20212 M:      Daniel Bristot de Oliveira <bristot@kernel.org>
20213 S:      Maintained
20214 F:      kernel/trace/trace_osnoise.c
20215 F:      include/trace/events/osnoise.h
20216 F:      kernel/trace/trace_hwlat.c
20217 F:      kernel/trace/trace_irqsoff.c
20218 F:      kernel/trace/trace_sched_wakeup.c
20219 F:      Documentation/trace/osnoise-tracer.rst
20220 F:      Documentation/trace/timerlat-tracer.rst
20221 F:      Documentation/trace/hwlat_detector.rst
20222 F:      arch/*/kernel/trace.c
20223
20224 Real-time Linux Analysis (RTLA) tools
20225 M:      Daniel Bristot de Oliveira <bristot@kernel.org>
20226 M:      Steven Rostedt <rostedt@goodmis.org>
20227 L:      linux-trace-devel@vger.kernel.org
20228 S:      Maintained
20229 F:      Documentation/tools/rtla/
20230 F:      tools/tracing/rtla/
20231
20232 TRADITIONAL CHINESE DOCUMENTATION
20233 M:      Hu Haowen <src.res@email.cn>
20234 L:      linux-doc-tw-discuss@lists.sourceforge.net
20235 S:      Maintained
20236 W:      https://github.com/srcres258/linux-doc
20237 T:      git git://github.com/srcres258/linux-doc.git doc-zh-tw
20238 F:      Documentation/translations/zh_TW/
20239
20240 TTY LAYER
20241 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
20242 M:      Jiri Slaby <jirislaby@kernel.org>
20243 S:      Supported
20244 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
20245 F:      Documentation/driver-api/serial/
20246 F:      drivers/tty/
20247 F:      drivers/tty/serial/serial_core.c
20248 F:      include/linux/selection.h
20249 F:      include/linux/serial.h
20250 F:      include/linux/serial_core.h
20251 F:      include/linux/sysrq.h
20252 F:      include/linux/tty*.h
20253 F:      include/linux/vt.h
20254 F:      include/linux/vt_*.h
20255 F:      include/uapi/linux/serial.h
20256 F:      include/uapi/linux/serial_core.h
20257 F:      include/uapi/linux/tty.h
20258
20259 TUA9001 MEDIA DRIVER
20260 M:      Antti Palosaari <crope@iki.fi>
20261 L:      linux-media@vger.kernel.org
20262 S:      Maintained
20263 W:      https://linuxtv.org
20264 W:      http://palosaari.fi/linux/
20265 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
20266 T:      git git://linuxtv.org/anttip/media_tree.git
20267 F:      drivers/media/tuners/tua9001*
20268
20269 TULIP NETWORK DRIVERS
20270 L:      netdev@vger.kernel.org
20271 L:      linux-parisc@vger.kernel.org
20272 S:      Orphan
20273 F:      drivers/net/ethernet/dec/tulip/
20274
20275 TUN/TAP driver
20276 M:      Maxim Krasnyansky <maxk@qti.qualcomm.com>
20277 S:      Maintained
20278 W:      http://vtun.sourceforge.net/tun
20279 F:      Documentation/networking/tuntap.rst
20280 F:      arch/um/os-Linux/drivers/
20281
20282 TURBOCHANNEL SUBSYSTEM
20283 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
20284 M:      Ralf Baechle <ralf@linux-mips.org>
20285 L:      linux-mips@vger.kernel.org
20286 S:      Maintained
20287 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
20288 F:      drivers/tc/
20289 F:      include/linux/tc.h
20290
20291 TURBOSTAT UTILITY
20292 M:      "Len Brown" <lenb@kernel.org>
20293 L:      linux-pm@vger.kernel.org
20294 S:      Supported
20295 Q:      https://patchwork.kernel.org/project/linux-pm/list/
20296 B:      https://bugzilla.kernel.org
20297 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git turbostat
20298 F:      tools/power/x86/turbostat/
20299
20300 TW5864 VIDEO4LINUX DRIVER
20301 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
20302 M:      Anton Sviridenko <anton@corp.bluecherry.net>
20303 M:      Andrey Utkin <andrey.utkin@corp.bluecherry.net>
20304 M:      Andrey Utkin <andrey_utkin@fastmail.com>
20305 L:      linux-media@vger.kernel.org
20306 S:      Supported
20307 F:      drivers/media/pci/tw5864/
20308
20309 TW68 VIDEO4LINUX DRIVER
20310 M:      Hans Verkuil <hverkuil@xs4all.nl>
20311 L:      linux-media@vger.kernel.org
20312 S:      Odd Fixes
20313 W:      https://linuxtv.org
20314 T:      git git://linuxtv.org/media_tree.git
20315 F:      drivers/media/pci/tw68/
20316
20317 TW686X VIDEO4LINUX DRIVER
20318 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
20319 L:      linux-media@vger.kernel.org
20320 S:      Maintained
20321 W:      http://linuxtv.org
20322 T:      git git://linuxtv.org/media_tree.git
20323 F:      drivers/media/pci/tw686x/
20324
20325 U-BOOT ENVIRONMENT VARIABLES
20326 M:      Rafał Miłecki <rafal@milecki.pl>
20327 S:      Maintained
20328 F:      Documentation/devicetree/bindings/nvmem/u-boot,env.yaml
20329
20330 UACCE ACCELERATOR FRAMEWORK
20331 M:      Zhangfei Gao <zhangfei.gao@linaro.org>
20332 M:      Zhou Wang <wangzhou1@hisilicon.com>
20333 L:      linux-accelerators@lists.ozlabs.org
20334 L:      linux-kernel@vger.kernel.org
20335 S:      Maintained
20336 F:      Documentation/ABI/testing/sysfs-driver-uacce
20337 F:      Documentation/misc-devices/uacce.rst
20338 F:      drivers/misc/uacce/
20339 F:      include/linux/uacce.h
20340 F:      include/uapi/misc/uacce/
20341
20342 UBI FILE SYSTEM (UBIFS)
20343 M:      Richard Weinberger <richard@nod.at>
20344 L:      linux-mtd@lists.infradead.org
20345 S:      Supported
20346 W:      http://www.linux-mtd.infradead.org/doc/ubifs.html
20347 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
20348 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
20349 F:      Documentation/ABI/testing/sysfs-fs-ubifs
20350 F:      Documentation/filesystems/ubifs-authentication.rst
20351 F:      Documentation/filesystems/ubifs.rst
20352 F:      fs/ubifs/
20353
20354 UCLINUX (M68KNOMMU AND COLDFIRE)
20355 M:      Greg Ungerer <gerg@linux-m68k.org>
20356 L:      linux-m68k@lists.linux-m68k.org
20357 L:      uclinux-dev@uclinux.org  (subscribers-only)
20358 S:      Maintained
20359 W:      http://www.linux-m68k.org/
20360 W:      http://www.uclinux.org/
20361 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git
20362 F:      arch/m68k/*/*_no.*
20363 F:      arch/m68k/68*/
20364 F:      arch/m68k/coldfire/
20365 F:      arch/m68k/include/asm/*_no.*
20366
20367 UDF FILESYSTEM
20368 M:      Jan Kara <jack@suse.com>
20369 S:      Maintained
20370 F:      Documentation/filesystems/udf.rst
20371 F:      fs/udf/
20372
20373 UDRAW TABLET
20374 M:      Bastien Nocera <hadess@hadess.net>
20375 L:      linux-input@vger.kernel.org
20376 S:      Maintained
20377 F:      drivers/hid/hid-udraw-ps3.c
20378
20379 UFS FILESYSTEM
20380 M:      Evgeniy Dushistov <dushistov@mail.ru>
20381 S:      Maintained
20382 F:      Documentation/admin-guide/ufs.rst
20383 F:      fs/ufs/
20384
20385 UHID USERSPACE HID IO DRIVER
20386 M:      David Rheinsberg <david.rheinsberg@gmail.com>
20387 L:      linux-input@vger.kernel.org
20388 S:      Maintained
20389 F:      drivers/hid/uhid.c
20390 F:      include/uapi/linux/uhid.h
20391
20392 ULPI BUS
20393 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
20394 L:      linux-usb@vger.kernel.org
20395 S:      Maintained
20396 F:      drivers/usb/common/ulpi.c
20397 F:      include/linux/ulpi/
20398
20399 UNICODE SUBSYSTEM
20400 M:      Gabriel Krisman Bertazi <krisman@collabora.com>
20401 L:      linux-fsdevel@vger.kernel.org
20402 S:      Supported
20403 F:      fs/unicode/
20404
20405 UNIFDEF
20406 M:      Tony Finch <dot@dotat.at>
20407 S:      Maintained
20408 W:      http://dotat.at/prog/unifdef
20409 F:      scripts/unifdef.c
20410
20411 UNIFORM CDROM DRIVER
20412 M:      Phillip Potter <phil@philpotter.co.uk>
20413 S:      Maintained
20414 F:      Documentation/cdrom/
20415 F:      drivers/cdrom/cdrom.c
20416 F:      include/linux/cdrom.h
20417 F:      include/uapi/linux/cdrom.h
20418
20419 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
20420 R:      Alim Akhtar <alim.akhtar@samsung.com>
20421 R:      Avri Altman <avri.altman@wdc.com>
20422 R:      Bart Van Assche <bvanassche@acm.org>
20423 L:      linux-scsi@vger.kernel.org
20424 S:      Supported
20425 F:      Documentation/devicetree/bindings/ufs/
20426 F:      Documentation/scsi/ufs.rst
20427 F:      drivers/ufs/core/
20428
20429 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER DWC HOOKS
20430 M:      Pedro Sousa <pedrom.sousa@synopsys.com>
20431 L:      linux-scsi@vger.kernel.org
20432 S:      Supported
20433 F:      drivers/ufs/host/*dwc*
20434
20435 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER MEDIATEK HOOKS
20436 M:      Stanley Chu <stanley.chu@mediatek.com>
20437 L:      linux-scsi@vger.kernel.org
20438 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
20439 S:      Maintained
20440 F:      drivers/ufs/host/ufs-mediatek*
20441
20442 UNSORTED BLOCK IMAGES (UBI)
20443 M:      Richard Weinberger <richard@nod.at>
20444 L:      linux-mtd@lists.infradead.org
20445 S:      Supported
20446 W:      http://www.linux-mtd.infradead.org/
20447 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
20448 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
20449 F:      drivers/mtd/ubi/
20450 F:      include/linux/mtd/ubi.h
20451 F:      include/uapi/mtd/ubi-user.h
20452
20453 USB "USBNET" DRIVER FRAMEWORK
20454 M:      Oliver Neukum <oneukum@suse.com>
20455 L:      netdev@vger.kernel.org
20456 S:      Maintained
20457 W:      http://www.linux-usb.org/usbnet
20458 F:      drivers/net/usb/usbnet.c
20459 F:      include/linux/usb/usbnet.h
20460
20461 USB ACM DRIVER
20462 M:      Oliver Neukum <oneukum@suse.com>
20463 L:      linux-usb@vger.kernel.org
20464 S:      Maintained
20465 F:      Documentation/usb/acm.rst
20466 F:      drivers/usb/class/cdc-acm.*
20467
20468 USB APPLE MFI FASTCHARGE DRIVER
20469 M:      Bastien Nocera <hadess@hadess.net>
20470 L:      linux-usb@vger.kernel.org
20471 S:      Maintained
20472 F:      drivers/usb/misc/apple-mfi-fastcharge.c
20473
20474 USB AR5523 WIRELESS DRIVER
20475 M:      Pontus Fuchs <pontus.fuchs@gmail.com>
20476 L:      linux-wireless@vger.kernel.org
20477 S:      Maintained
20478 F:      drivers/net/wireless/ath/ar5523/
20479
20480 USB ATTACHED SCSI
20481 M:      Oliver Neukum <oneukum@suse.com>
20482 L:      linux-usb@vger.kernel.org
20483 L:      linux-scsi@vger.kernel.org
20484 S:      Maintained
20485 F:      drivers/usb/storage/uas.c
20486
20487 USB CDC ETHERNET DRIVER
20488 M:      Oliver Neukum <oliver@neukum.org>
20489 L:      linux-usb@vger.kernel.org
20490 S:      Maintained
20491 F:      drivers/net/usb/cdc_*.c
20492 F:      include/uapi/linux/usb/cdc.h
20493
20494 USB CHAOSKEY DRIVER
20495 M:      Keith Packard <keithp@keithp.com>
20496 L:      linux-usb@vger.kernel.org
20497 S:      Maintained
20498 F:      drivers/usb/misc/chaoskey.c
20499
20500 USB CYPRESS C67X00 DRIVER
20501 L:      linux-usb@vger.kernel.org
20502 S:      Orphan
20503 F:      drivers/usb/c67x00/
20504
20505 USB DAVICOM DM9601 DRIVER
20506 M:      Peter Korsgaard <peter@korsgaard.com>
20507 L:      netdev@vger.kernel.org
20508 S:      Maintained
20509 W:      http://www.linux-usb.org/usbnet
20510 F:      drivers/net/usb/dm9601.c
20511
20512 USB EHCI DRIVER
20513 M:      Alan Stern <stern@rowland.harvard.edu>
20514 L:      linux-usb@vger.kernel.org
20515 S:      Maintained
20516 F:      Documentation/usb/ehci.rst
20517 F:      drivers/usb/host/ehci*
20518
20519 USB GADGET/PERIPHERAL SUBSYSTEM
20520 M:      Felipe Balbi <balbi@kernel.org>
20521 L:      linux-usb@vger.kernel.org
20522 S:      Maintained
20523 W:      http://www.linux-usb.org/gadget
20524 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
20525 F:      drivers/usb/gadget/
20526 F:      include/linux/usb/gadget*
20527
20528 USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
20529 M:      Jiri Kosina <jikos@kernel.org>
20530 M:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
20531 L:      linux-usb@vger.kernel.org
20532 S:      Maintained
20533 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
20534 F:      Documentation/hid/hiddev.rst
20535 F:      drivers/hid/usbhid/
20536
20537 USB INTEL XHCI ROLE MUX DRIVER
20538 M:      Hans de Goede <hdegoede@redhat.com>
20539 L:      linux-usb@vger.kernel.org
20540 S:      Maintained
20541 F:      drivers/usb/roles/intel-xhci-usb-role-switch.c
20542
20543 USB IP DRIVER FOR HISILICON KIRIN 960
20544 M:      Yu Chen <chenyu56@huawei.com>
20545 M:      Binghui Wang <wangbinghui@hisilicon.com>
20546 L:      linux-usb@vger.kernel.org
20547 S:      Maintained
20548 F:      Documentation/devicetree/bindings/phy/hisilicon,hi3660-usb3.yaml
20549 F:      drivers/phy/hisilicon/phy-hi3660-usb3.c
20550
20551 USB IP DRIVER FOR HISILICON KIRIN 970
20552 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
20553 L:      linux-usb@vger.kernel.org
20554 S:      Maintained
20555 F:      Documentation/devicetree/bindings/phy/hisilicon,hi3670-usb3.yaml
20556 F:      drivers/phy/hisilicon/phy-hi3670-usb3.c
20557
20558 USB ISP116X DRIVER
20559 M:      Olav Kongas <ok@artecdesign.ee>
20560 L:      linux-usb@vger.kernel.org
20561 S:      Maintained
20562 F:      drivers/usb/host/isp116x*
20563 F:      include/linux/usb/isp116x.h
20564
20565 USB ISP1760 DRIVER
20566 M:      Rui Miguel Silva <rui.silva@linaro.org>
20567 L:      linux-usb@vger.kernel.org
20568 S:      Maintained
20569 F:      drivers/usb/isp1760/*
20570 F:      Documentation/devicetree/bindings/usb/nxp,isp1760.yaml
20571
20572 USB LAN78XX ETHERNET DRIVER
20573 M:      Woojung Huh <woojung.huh@microchip.com>
20574 M:      UNGLinuxDriver@microchip.com
20575 L:      netdev@vger.kernel.org
20576 S:      Maintained
20577 F:      Documentation/devicetree/bindings/net/microchip,lan78xx.txt
20578 F:      drivers/net/usb/lan78xx.*
20579 F:      include/dt-bindings/net/microchip-lan78xx.h
20580
20581 USB MASS STORAGE DRIVER
20582 M:      Alan Stern <stern@rowland.harvard.edu>
20583 L:      linux-usb@vger.kernel.org
20584 L:      usb-storage@lists.one-eyed-alien.net
20585 S:      Maintained
20586 F:      drivers/usb/storage/
20587
20588 USB MIDI DRIVER
20589 M:      Clemens Ladisch <clemens@ladisch.de>
20590 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
20591 S:      Maintained
20592 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
20593 F:      sound/usb/midi.*
20594
20595 USB NETWORKING DRIVERS
20596 L:      linux-usb@vger.kernel.org
20597 S:      Odd Fixes
20598 F:      drivers/net/usb/
20599
20600 USB OHCI DRIVER
20601 M:      Alan Stern <stern@rowland.harvard.edu>
20602 L:      linux-usb@vger.kernel.org
20603 S:      Maintained
20604 F:      Documentation/usb/ohci.rst
20605 F:      drivers/usb/host/ohci*
20606
20607 USB OTG FSM (Finite State Machine)
20608 M:      Peter Chen <peter.chen@kernel.org>
20609 L:      linux-usb@vger.kernel.org
20610 S:      Maintained
20611 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
20612 F:      drivers/usb/common/usb-otg-fsm.c
20613
20614 USB OVER IP DRIVER
20615 M:      Valentina Manea <valentina.manea.m@gmail.com>
20616 M:      Shuah Khan <shuah@kernel.org>
20617 M:      Shuah Khan <skhan@linuxfoundation.org>
20618 L:      linux-usb@vger.kernel.org
20619 S:      Maintained
20620 F:      Documentation/usb/usbip_protocol.rst
20621 F:      drivers/usb/usbip/
20622 F:      tools/testing/selftests/drivers/usb/usbip/
20623 F:      tools/usb/usbip/
20624
20625 USB PEGASUS DRIVER
20626 M:      Petko Manolov <petkan@nucleusys.com>
20627 L:      linux-usb@vger.kernel.org
20628 L:      netdev@vger.kernel.org
20629 S:      Maintained
20630 W:      https://github.com/petkan/pegasus
20631 T:      git git://github.com/petkan/pegasus.git
20632 F:      drivers/net/usb/pegasus.*
20633
20634 USB PHY LAYER
20635 M:      Felipe Balbi <balbi@kernel.org>
20636 L:      linux-usb@vger.kernel.org
20637 S:      Maintained
20638 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
20639 F:      drivers/usb/phy/
20640
20641 USB PRINTER DRIVER (usblp)
20642 M:      Pete Zaitcev <zaitcev@redhat.com>
20643 L:      linux-usb@vger.kernel.org
20644 S:      Supported
20645 F:      drivers/usb/class/usblp.c
20646
20647 USB RAW GADGET DRIVER
20648 R:      Andrey Konovalov <andreyknvl@gmail.com>
20649 L:      linux-usb@vger.kernel.org
20650 S:      Maintained
20651 F:      Documentation/usb/raw-gadget.rst
20652 F:      drivers/usb/gadget/legacy/raw_gadget.c
20653 F:      include/uapi/linux/usb/raw_gadget.h
20654
20655 USB QMI WWAN NETWORK DRIVER
20656 M:      Bjørn Mork <bjorn@mork.no>
20657 L:      netdev@vger.kernel.org
20658 S:      Maintained
20659 F:      Documentation/ABI/testing/sysfs-class-net-qmi
20660 F:      drivers/net/usb/qmi_wwan.c
20661
20662 USB RTL8150 DRIVER
20663 M:      Petko Manolov <petkan@nucleusys.com>
20664 L:      linux-usb@vger.kernel.org
20665 L:      netdev@vger.kernel.org
20666 S:      Maintained
20667 W:      https://github.com/petkan/rtl8150
20668 T:      git git://github.com/petkan/rtl8150.git
20669 F:      drivers/net/usb/rtl8150.c
20670
20671 USB SERIAL SUBSYSTEM
20672 M:      Johan Hovold <johan@kernel.org>
20673 L:      linux-usb@vger.kernel.org
20674 S:      Maintained
20675 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/usb-serial.git
20676 F:      Documentation/usb/usb-serial.rst
20677 F:      drivers/usb/serial/
20678 F:      include/linux/usb/serial.h
20679
20680 USB SMSC75XX ETHERNET DRIVER
20681 M:      Steve Glendinning <steve.glendinning@shawell.net>
20682 L:      netdev@vger.kernel.org
20683 S:      Maintained
20684 F:      drivers/net/usb/smsc75xx.*
20685
20686 USB SMSC95XX ETHERNET DRIVER
20687 M:      Steve Glendinning <steve.glendinning@shawell.net>
20688 M:      UNGLinuxDriver@microchip.com
20689 L:      netdev@vger.kernel.org
20690 S:      Maintained
20691 F:      drivers/net/usb/smsc95xx.*
20692
20693 USB SUBSYSTEM
20694 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
20695 L:      linux-usb@vger.kernel.org
20696 S:      Supported
20697 W:      http://www.linux-usb.org
20698 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
20699 F:      Documentation/devicetree/bindings/usb/
20700 F:      Documentation/usb/
20701 F:      drivers/usb/
20702 F:      include/linux/usb.h
20703 F:      include/linux/usb/
20704
20705 USB TYPEC BUS FOR ALTERNATE MODES
20706 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
20707 L:      linux-usb@vger.kernel.org
20708 S:      Maintained
20709 F:      Documentation/ABI/testing/sysfs-bus-typec
20710 F:      Documentation/driver-api/usb/typec_bus.rst
20711 F:      drivers/usb/typec/altmodes/
20712 F:      include/linux/usb/typec_altmode.h
20713
20714 USB TYPEC CLASS
20715 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
20716 L:      linux-usb@vger.kernel.org
20717 S:      Maintained
20718 F:      Documentation/ABI/testing/sysfs-class-typec
20719 F:      Documentation/driver-api/usb/typec.rst
20720 F:      drivers/usb/typec/
20721 F:      include/linux/usb/typec.h
20722
20723 USB TYPEC INTEL PMC MUX DRIVER
20724 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
20725 L:      linux-usb@vger.kernel.org
20726 S:      Maintained
20727 F:      Documentation/firmware-guide/acpi/intel-pmc-mux.rst
20728 F:      drivers/usb/typec/mux/intel_pmc_mux.c
20729
20730 USB TYPEC PI3USB30532 MUX DRIVER
20731 M:      Hans de Goede <hdegoede@redhat.com>
20732 L:      linux-usb@vger.kernel.org
20733 S:      Maintained
20734 F:      drivers/usb/typec/mux/pi3usb30532.c
20735
20736 USB TYPEC PORT CONTROLLER DRIVERS
20737 M:      Guenter Roeck <linux@roeck-us.net>
20738 L:      linux-usb@vger.kernel.org
20739 S:      Maintained
20740 F:      drivers/usb/typec/tcpm/
20741
20742 USB UHCI DRIVER
20743 M:      Alan Stern <stern@rowland.harvard.edu>
20744 L:      linux-usb@vger.kernel.org
20745 S:      Maintained
20746 F:      drivers/usb/host/uhci*
20747
20748 USB VIDEO CLASS
20749 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
20750 L:      linux-media@vger.kernel.org
20751 S:      Maintained
20752 W:      http://www.ideasonboard.org/uvc/
20753 T:      git git://linuxtv.org/media_tree.git
20754 F:      drivers/media/usb/uvc/
20755 F:      include/uapi/linux/uvcvideo.h
20756
20757 USB WEBCAM GADGET
20758 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
20759 L:      linux-usb@vger.kernel.org
20760 S:      Maintained
20761 F:      drivers/usb/gadget/function/*uvc*
20762 F:      drivers/usb/gadget/legacy/webcam.c
20763 F:      include/uapi/linux/usb/g_uvc.h
20764
20765 USB WIRELESS RNDIS DRIVER (rndis_wlan)
20766 M:      Jussi Kivilinna <jussi.kivilinna@iki.fi>
20767 L:      linux-wireless@vger.kernel.org
20768 S:      Maintained
20769 F:      drivers/net/wireless/rndis_wlan.c
20770
20771 USB XHCI DRIVER
20772 M:      Mathias Nyman <mathias.nyman@intel.com>
20773 L:      linux-usb@vger.kernel.org
20774 S:      Supported
20775 F:      drivers/usb/host/pci-quirks*
20776 F:      drivers/usb/host/xhci*
20777
20778 USB ZD1201 DRIVER
20779 L:      linux-wireless@vger.kernel.org
20780 S:      Orphan
20781 W:      http://linux-lc100020.sourceforge.net
20782 F:      drivers/net/wireless/zydas/zd1201.*
20783
20784 USB ZR364XX DRIVER
20785 M:      Antoine Jacquet <royale@zerezo.com>
20786 L:      linux-usb@vger.kernel.org
20787 L:      linux-media@vger.kernel.org
20788 S:      Maintained
20789 W:      http://royale.zerezo.com/zr364xx/
20790 T:      git git://linuxtv.org/media_tree.git
20791 F:      Documentation/admin-guide/media/zr364xx*
20792 F:      drivers/media/usb/zr364xx/
20793
20794 USER-MODE LINUX (UML)
20795 M:      Richard Weinberger <richard@nod.at>
20796 M:      Anton Ivanov <anton.ivanov@cambridgegreys.com>
20797 M:      Johannes Berg <johannes@sipsolutions.net>
20798 L:      linux-um@lists.infradead.org
20799 S:      Maintained
20800 W:      http://user-mode-linux.sourceforge.net
20801 Q:      https://patchwork.ozlabs.org/project/linux-um/list/
20802 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/uml/linux.git next
20803 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/uml/linux.git fixes
20804 F:      Documentation/virt/uml/
20805 F:      arch/um/
20806 F:      arch/x86/um/
20807 F:      fs/hostfs/
20808
20809 USERSPACE COPYIN/COPYOUT (UIOVEC)
20810 M:      Alexander Viro <viro@zeniv.linux.org.uk>
20811 S:      Maintained
20812 F:      include/linux/uio.h
20813 F:      lib/iov_iter.c
20814
20815 USERSPACE DMA BUFFER DRIVER
20816 M:      Gerd Hoffmann <kraxel@redhat.com>
20817 L:      dri-devel@lists.freedesktop.org
20818 S:      Maintained
20819 T:      git git://anongit.freedesktop.org/drm/drm-misc
20820 F:      drivers/dma-buf/udmabuf.c
20821 F:      include/uapi/linux/udmabuf.h
20822
20823 USERSPACE I/O (UIO)
20824 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
20825 S:      Maintained
20826 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
20827 F:      Documentation/driver-api/uio-howto.rst
20828 F:      drivers/uio/
20829 F:      include/linux/uio_driver.h
20830
20831 UTIL-LINUX PACKAGE
20832 M:      Karel Zak <kzak@redhat.com>
20833 L:      util-linux@vger.kernel.org
20834 S:      Maintained
20835 W:      http://en.wikipedia.org/wiki/Util-linux
20836 T:      git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
20837
20838 UUID HELPERS
20839 M:      Christoph Hellwig <hch@lst.de>
20840 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
20841 L:      linux-kernel@vger.kernel.org
20842 S:      Maintained
20843 T:      git git://git.infradead.org/users/hch/uuid.git
20844 F:      include/linux/uuid.h
20845 F:      include/uapi/linux/uuid.h
20846 F:      lib/test_uuid.c
20847 F:      lib/uuid.c
20848
20849 UV SYSFS DRIVER
20850 M:      Justin Ernst <justin.ernst@hpe.com>
20851 L:      platform-driver-x86@vger.kernel.org
20852 S:      Maintained
20853 F:      drivers/platform/x86/uv_sysfs.c
20854
20855 UVESAFB DRIVER
20856 M:      Michal Januszewski <spock@gentoo.org>
20857 L:      linux-fbdev@vger.kernel.org
20858 S:      Maintained
20859 W:      https://github.com/mjanusz/v86d
20860 F:      Documentation/fb/uvesafb.rst
20861 F:      drivers/video/fbdev/uvesafb.*
20862
20863 Ux500 CLOCK DRIVERS
20864 M:      Ulf Hansson <ulf.hansson@linaro.org>
20865 L:      linux-clk@vger.kernel.org
20866 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
20867 S:      Maintained
20868 F:      drivers/clk/ux500/
20869
20870 VF610 NAND DRIVER
20871 M:      Stefan Agner <stefan@agner.ch>
20872 L:      linux-mtd@lists.infradead.org
20873 S:      Supported
20874 F:      drivers/mtd/nand/raw/vf610_nfc.c
20875
20876 VFAT/FAT/MSDOS FILESYSTEM
20877 M:      OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
20878 S:      Maintained
20879 F:      Documentation/filesystems/vfat.rst
20880 F:      fs/fat/
20881
20882 VFIO DRIVER
20883 M:      Alex Williamson <alex.williamson@redhat.com>
20884 R:      Cornelia Huck <cohuck@redhat.com>
20885 L:      kvm@vger.kernel.org
20886 S:      Maintained
20887 T:      git git://github.com/awilliam/linux-vfio.git
20888 F:      Documentation/driver-api/vfio.rst
20889 F:      drivers/vfio/
20890 F:      include/linux/vfio.h
20891 F:      include/linux/vfio_pci_core.h
20892 F:      include/uapi/linux/vfio.h
20893
20894 VFIO FSL-MC DRIVER
20895 M:      Diana Craciun <diana.craciun@oss.nxp.com>
20896 L:      kvm@vger.kernel.org
20897 S:      Maintained
20898 F:      drivers/vfio/fsl-mc/
20899
20900 VFIO HISILICON PCI DRIVER
20901 M:      Longfang Liu <liulongfang@huawei.com>
20902 M:      Shameer Kolothum <shameerali.kolothum.thodi@huawei.com>
20903 L:      kvm@vger.kernel.org
20904 S:      Maintained
20905 F:      drivers/vfio/pci/hisilicon/
20906
20907 VFIO MEDIATED DEVICE DRIVERS
20908 M:      Kirti Wankhede <kwankhede@nvidia.com>
20909 L:      kvm@vger.kernel.org
20910 S:      Maintained
20911 F:      Documentation/driver-api/vfio-mediated-device.rst
20912 F:      drivers/vfio/mdev/
20913 F:      include/linux/mdev.h
20914 F:      samples/vfio-mdev/
20915
20916 VFIO PCI DEVICE SPECIFIC DRIVERS
20917 R:      Jason Gunthorpe <jgg@nvidia.com>
20918 R:      Yishai Hadas <yishaih@nvidia.com>
20919 R:      Shameer Kolothum <shameerali.kolothum.thodi@huawei.com>
20920 R:      Kevin Tian <kevin.tian@intel.com>
20921 L:      kvm@vger.kernel.org
20922 S:      Maintained
20923 P:      Documentation/driver-api/vfio-pci-device-specific-driver-acceptance.rst
20924 F:      drivers/vfio/pci/*/
20925
20926 VFIO PLATFORM DRIVER
20927 M:      Eric Auger <eric.auger@redhat.com>
20928 L:      kvm@vger.kernel.org
20929 S:      Maintained
20930 F:      drivers/vfio/platform/
20931
20932 VFIO MLX5 PCI DRIVER
20933 M:      Yishai Hadas <yishaih@nvidia.com>
20934 L:      kvm@vger.kernel.org
20935 S:      Maintained
20936 F:      drivers/vfio/pci/mlx5/
20937
20938 VGA_SWITCHEROO
20939 R:      Lukas Wunner <lukas@wunner.de>
20940 S:      Maintained
20941 T:      git git://anongit.freedesktop.org/drm/drm-misc
20942 F:      Documentation/gpu/vga-switcheroo.rst
20943 F:      drivers/gpu/vga/vga_switcheroo.c
20944 F:      include/linux/vga_switcheroo.h
20945
20946 VIA RHINE NETWORK DRIVER
20947 S:      Maintained
20948 M:      Kevin Brace <kevinbrace@bracecomputerlab.com>
20949 F:      drivers/net/ethernet/via/via-rhine.c
20950
20951 VIA SD/MMC CARD CONTROLLER DRIVER
20952 M:      Bruce Chang <brucechang@via.com.tw>
20953 M:      Harald Welte <HaraldWelte@viatech.com>
20954 S:      Maintained
20955 F:      drivers/mmc/host/via-sdmmc.c
20956
20957 VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
20958 M:      Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
20959 L:      linux-fbdev@vger.kernel.org
20960 S:      Maintained
20961 F:      drivers/video/fbdev/via/
20962 F:      include/linux/via-core.h
20963 F:      include/linux/via-gpio.h
20964 F:      include/linux/via_i2c.h
20965
20966 VIA VELOCITY NETWORK DRIVER
20967 M:      Francois Romieu <romieu@fr.zoreil.com>
20968 L:      netdev@vger.kernel.org
20969 S:      Maintained
20970 F:      drivers/net/ethernet/via/via-velocity.*
20971
20972 VICODEC VIRTUAL CODEC DRIVER
20973 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
20974 L:      linux-media@vger.kernel.org
20975 S:      Maintained
20976 W:      https://linuxtv.org
20977 T:      git git://linuxtv.org/media_tree.git
20978 F:      drivers/media/test-drivers/vicodec/*
20979
20980 VIDEO I2C POLLING DRIVER
20981 M:      Matt Ranostay <matt.ranostay@konsulko.com>
20982 L:      linux-media@vger.kernel.org
20983 S:      Maintained
20984 F:      drivers/media/i2c/video-i2c.c
20985
20986 VIDEO MULTIPLEXER DRIVER
20987 M:      Philipp Zabel <p.zabel@pengutronix.de>
20988 L:      linux-media@vger.kernel.org
20989 S:      Maintained
20990 F:      drivers/media/platform/video-mux.c
20991
20992 VIDEOBUF2 FRAMEWORK
20993 M:      Tomasz Figa <tfiga@chromium.org>
20994 M:      Marek Szyprowski <m.szyprowski@samsung.com>
20995 L:      linux-media@vger.kernel.org
20996 S:      Maintained
20997 F:      drivers/media/common/videobuf2/*
20998 F:      include/media/videobuf2-*
20999
21000 VIMC VIRTUAL MEDIA CONTROLLER DRIVER
21001 M:      Shuah Khan <skhan@linuxfoundation.org>
21002 R:      Kieran Bingham <kieran.bingham@ideasonboard.com>
21003 L:      linux-media@vger.kernel.org
21004 S:      Maintained
21005 W:      https://linuxtv.org
21006 T:      git git://linuxtv.org/media_tree.git
21007 F:      drivers/media/test-drivers/vimc/*
21008
21009 VIRT LIB
21010 M:      Alex Williamson <alex.williamson@redhat.com>
21011 M:      Paolo Bonzini <pbonzini@redhat.com>
21012 L:      kvm@vger.kernel.org
21013 S:      Supported
21014 F:      virt/lib/
21015
21016 VIRTIO AND VHOST VSOCK DRIVER
21017 M:      Stefan Hajnoczi <stefanha@redhat.com>
21018 M:      Stefano Garzarella <sgarzare@redhat.com>
21019 L:      kvm@vger.kernel.org
21020 L:      virtualization@lists.linux-foundation.org
21021 L:      netdev@vger.kernel.org
21022 S:      Maintained
21023 F:      drivers/vhost/vsock.c
21024 F:      include/linux/virtio_vsock.h
21025 F:      include/uapi/linux/virtio_vsock.h
21026 F:      net/vmw_vsock/virtio_transport.c
21027 F:      net/vmw_vsock/virtio_transport_common.c
21028
21029 VIRTIO BLOCK AND SCSI DRIVERS
21030 M:      "Michael S. Tsirkin" <mst@redhat.com>
21031 M:      Jason Wang <jasowang@redhat.com>
21032 R:      Paolo Bonzini <pbonzini@redhat.com>
21033 R:      Stefan Hajnoczi <stefanha@redhat.com>
21034 L:      virtualization@lists.linux-foundation.org
21035 S:      Maintained
21036 F:      drivers/block/virtio_blk.c
21037 F:      drivers/scsi/virtio_scsi.c
21038 F:      drivers/vhost/scsi.c
21039 F:      include/uapi/linux/virtio_blk.h
21040 F:      include/uapi/linux/virtio_scsi.h
21041
21042 VIRTIO CONSOLE DRIVER
21043 M:      Amit Shah <amit@kernel.org>
21044 L:      virtualization@lists.linux-foundation.org
21045 S:      Maintained
21046 F:      drivers/char/virtio_console.c
21047 F:      include/linux/virtio_console.h
21048 F:      include/uapi/linux/virtio_console.h
21049
21050 VIRTIO CORE AND NET DRIVERS
21051 M:      "Michael S. Tsirkin" <mst@redhat.com>
21052 M:      Jason Wang <jasowang@redhat.com>
21053 L:      virtualization@lists.linux-foundation.org
21054 S:      Maintained
21055 F:      Documentation/ABI/testing/sysfs-bus-vdpa
21056 F:      Documentation/devicetree/bindings/virtio/
21057 F:      drivers/block/virtio_blk.c
21058 F:      drivers/crypto/virtio/
21059 F:      drivers/net/virtio_net.c
21060 F:      drivers/vdpa/
21061 F:      drivers/virtio/
21062 F:      include/linux/vdpa.h
21063 F:      include/linux/virtio*.h
21064 F:      include/uapi/linux/virtio_*.h
21065 F:      tools/virtio/
21066
21067 VIRTIO BALLOON
21068 M:      "Michael S. Tsirkin" <mst@redhat.com>
21069 M:      David Hildenbrand <david@redhat.com>
21070 L:      virtualization@lists.linux-foundation.org
21071 S:      Maintained
21072 F:      drivers/virtio/virtio_balloon.c
21073 F:      include/uapi/linux/virtio_balloon.h
21074 F:      include/linux/balloon_compaction.h
21075 F:      mm/balloon_compaction.c
21076
21077 VIRTIO CRYPTO DRIVER
21078 M:      Gonglei <arei.gonglei@huawei.com>
21079 L:      virtualization@lists.linux-foundation.org
21080 L:      linux-crypto@vger.kernel.org
21081 S:      Maintained
21082 F:      drivers/crypto/virtio/
21083 F:      include/uapi/linux/virtio_crypto.h
21084
21085 VIRTIO DRIVERS FOR S390
21086 M:      Cornelia Huck <cohuck@redhat.com>
21087 M:      Halil Pasic <pasic@linux.ibm.com>
21088 M:      Eric Farman <farman@linux.ibm.com>
21089 L:      linux-s390@vger.kernel.org
21090 L:      virtualization@lists.linux-foundation.org
21091 L:      kvm@vger.kernel.org
21092 S:      Supported
21093 F:      arch/s390/include/uapi/asm/virtio-ccw.h
21094 F:      drivers/s390/virtio/
21095
21096 VIRTIO FILE SYSTEM
21097 M:      Vivek Goyal <vgoyal@redhat.com>
21098 M:      Stefan Hajnoczi <stefanha@redhat.com>
21099 M:      Miklos Szeredi <miklos@szeredi.hu>
21100 L:      virtualization@lists.linux-foundation.org
21101 L:      linux-fsdevel@vger.kernel.org
21102 S:      Supported
21103 W:      https://virtio-fs.gitlab.io/
21104 F:      Documentation/filesystems/virtiofs.rst
21105 F:      fs/fuse/virtio_fs.c
21106 F:      include/uapi/linux/virtio_fs.h
21107
21108 VIRTIO GPIO DRIVER
21109 M:      Enrico Weigelt, metux IT consult <info@metux.net>
21110 M:      Viresh Kumar <vireshk@kernel.org>
21111 L:      linux-gpio@vger.kernel.org
21112 L:      virtualization@lists.linux-foundation.org
21113 S:      Maintained
21114 F:      drivers/gpio/gpio-virtio.c
21115 F:      include/uapi/linux/virtio_gpio.h
21116
21117 VIRTIO GPU DRIVER
21118 M:      David Airlie <airlied@linux.ie>
21119 M:      Gerd Hoffmann <kraxel@redhat.com>
21120 R:      Gurchetan Singh <gurchetansingh@chromium.org>
21121 R:      Chia-I Wu <olvaffe@gmail.com>
21122 L:      dri-devel@lists.freedesktop.org
21123 L:      virtualization@lists.linux-foundation.org
21124 S:      Maintained
21125 T:      git git://anongit.freedesktop.org/drm/drm-misc
21126 F:      drivers/gpu/drm/virtio/
21127 F:      include/uapi/linux/virtio_gpu.h
21128
21129 VIRTIO HOST (VHOST)
21130 M:      "Michael S. Tsirkin" <mst@redhat.com>
21131 M:      Jason Wang <jasowang@redhat.com>
21132 L:      kvm@vger.kernel.org
21133 L:      virtualization@lists.linux-foundation.org
21134 L:      netdev@vger.kernel.org
21135 S:      Maintained
21136 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost.git
21137 F:      drivers/vhost/
21138 F:      include/linux/vhost_iotlb.h
21139 F:      include/uapi/linux/vhost.h
21140
21141 VIRTIO INPUT DRIVER
21142 M:      Gerd Hoffmann <kraxel@redhat.com>
21143 S:      Maintained
21144 F:      drivers/virtio/virtio_input.c
21145 F:      include/uapi/linux/virtio_input.h
21146
21147 VIRTIO IOMMU DRIVER
21148 M:      Jean-Philippe Brucker <jean-philippe@linaro.org>
21149 L:      virtualization@lists.linux-foundation.org
21150 S:      Maintained
21151 F:      drivers/iommu/virtio-iommu.c
21152 F:      include/uapi/linux/virtio_iommu.h
21153
21154 VIRTIO MEM DRIVER
21155 M:      David Hildenbrand <david@redhat.com>
21156 L:      virtualization@lists.linux-foundation.org
21157 S:      Maintained
21158 W:      https://virtio-mem.gitlab.io/
21159 F:      drivers/virtio/virtio_mem.c
21160 F:      include/uapi/linux/virtio_mem.h
21161
21162 VIRTIO SOUND DRIVER
21163 M:      Anton Yakovlev <anton.yakovlev@opensynergy.com>
21164 M:      "Michael S. Tsirkin" <mst@redhat.com>
21165 L:      virtualization@lists.linux-foundation.org
21166 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
21167 S:      Maintained
21168 F:      include/uapi/linux/virtio_snd.h
21169 F:      sound/virtio/*
21170
21171 VIRTIO I2C DRIVER
21172 M:      Conghui Chen <conghui.chen@intel.com>
21173 M:      Viresh Kumar <viresh.kumar@linaro.org>
21174 L:      linux-i2c@vger.kernel.org
21175 L:      virtualization@lists.linux-foundation.org
21176 S:      Maintained
21177 F:      drivers/i2c/busses/i2c-virtio.c
21178 F:      include/uapi/linux/virtio_i2c.h
21179
21180 VIRTIO PMEM DRIVER
21181 M:      Pankaj Gupta <pankaj.gupta.linux@gmail.com>
21182 L:      virtualization@lists.linux-foundation.org
21183 S:      Maintained
21184 F:      drivers/nvdimm/virtio_pmem.c
21185 F:      drivers/nvdimm/nd_virtio.c
21186
21187 VIRTUAL BOX GUEST DEVICE DRIVER
21188 M:      Hans de Goede <hdegoede@redhat.com>
21189 M:      Arnd Bergmann <arnd@arndb.de>
21190 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
21191 S:      Maintained
21192 F:      drivers/virt/vboxguest/
21193 F:      include/linux/vbox_utils.h
21194 F:      include/uapi/linux/vbox*.h
21195
21196 VIRTUAL BOX SHARED FOLDER VFS DRIVER
21197 M:      Hans de Goede <hdegoede@redhat.com>
21198 L:      linux-fsdevel@vger.kernel.org
21199 S:      Maintained
21200 F:      fs/vboxsf/*
21201
21202 VIRTUAL SERIO DEVICE DRIVER
21203 M:      Stephen Chandler Paul <thatslyude@gmail.com>
21204 S:      Maintained
21205 F:      drivers/input/serio/userio.c
21206 F:      include/uapi/linux/userio.h
21207
21208 VIVID VIRTUAL VIDEO DRIVER
21209 M:      Hans Verkuil <hverkuil@xs4all.nl>
21210 L:      linux-media@vger.kernel.org
21211 S:      Maintained
21212 W:      https://linuxtv.org
21213 T:      git git://linuxtv.org/media_tree.git
21214 F:      drivers/media/test-drivers/vivid/*
21215
21216 VIDTV VIRTUAL DIGITAL TV DRIVER
21217 M:      Daniel W. S. Almeida <dwlsalmeida@gmail.com>
21218 L:      linux-media@vger.kernel.org
21219 S:      Maintained
21220 W:      https://linuxtv.org
21221 T:      git git://linuxtv.org/media_tree.git
21222 F:      drivers/media/test-drivers/vidtv/*
21223
21224 VLYNQ BUS
21225 M:      Florian Fainelli <f.fainelli@gmail.com>
21226 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
21227 S:      Maintained
21228 F:      drivers/vlynq/vlynq.c
21229 F:      include/linux/vlynq.h
21230
21231 VME SUBSYSTEM
21232 M:      Martyn Welch <martyn@welchs.me.uk>
21233 M:      Manohar Vanga <manohar.vanga@gmail.com>
21234 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
21235 L:      linux-kernel@vger.kernel.org
21236 S:      Maintained
21237 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
21238 F:      Documentation/driver-api/vme.rst
21239 F:      drivers/staging/vme_user/
21240 F:      drivers/vme/
21241 F:      include/linux/vme*
21242
21243 VM SOCKETS (AF_VSOCK)
21244 M:      Stefano Garzarella <sgarzare@redhat.com>
21245 L:      virtualization@lists.linux-foundation.org
21246 L:      netdev@vger.kernel.org
21247 S:      Maintained
21248 F:      drivers/net/vsockmon.c
21249 F:      include/net/af_vsock.h
21250 F:      include/uapi/linux/vm_sockets.h
21251 F:      include/uapi/linux/vm_sockets_diag.h
21252 F:      include/uapi/linux/vsockmon.h
21253 F:      net/vmw_vsock/
21254 F:      tools/testing/vsock/
21255
21256 VMWARE BALLOON DRIVER
21257 M:      Nadav Amit <namit@vmware.com>
21258 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
21259 L:      linux-kernel@vger.kernel.org
21260 S:      Maintained
21261 F:      drivers/misc/vmw_balloon.c
21262
21263 VMWARE HYPERVISOR INTERFACE
21264 M:      Srivatsa S. Bhat (VMware) <srivatsa@csail.mit.edu>
21265 M:      Alexey Makhalov <amakhalov@vmware.com>
21266 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
21267 L:      virtualization@lists.linux-foundation.org
21268 L:      x86@kernel.org
21269 S:      Supported
21270 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vmware
21271 F:      arch/x86/include/asm/vmware.h
21272 F:      arch/x86/kernel/cpu/vmware.c
21273
21274 VMWARE PVRDMA DRIVER
21275 M:      Bryan Tan <bryantan@vmware.com>
21276 M:      Vishnu Dasa <vdasa@vmware.com>
21277 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
21278 L:      linux-rdma@vger.kernel.org
21279 S:      Maintained
21280 F:      drivers/infiniband/hw/vmw_pvrdma/
21281
21282 VMware PVSCSI driver
21283 M:      Vishal Bhakta <vbhakta@vmware.com>
21284 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
21285 L:      linux-scsi@vger.kernel.org
21286 S:      Maintained
21287 F:      drivers/scsi/vmw_pvscsi.c
21288 F:      drivers/scsi/vmw_pvscsi.h
21289
21290 VMWARE VIRTUAL PTP CLOCK DRIVER
21291 M:      Vivek Thampi <vithampi@vmware.com>
21292 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
21293 L:      netdev@vger.kernel.org
21294 S:      Supported
21295 F:      drivers/ptp/ptp_vmw.c
21296
21297 VMWARE VMCI DRIVER
21298 M:      Bryan Tan <bryantan@vmware.com>
21299 M:      Rajesh Jalisatgi <rjalisatgi@vmware.com>
21300 M:      Vishnu Dasa <vdasa@vmware.com>
21301 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
21302 L:      linux-kernel@vger.kernel.org
21303 S:      Maintained
21304 F:      drivers/misc/vmw_vmci/
21305
21306 VMWARE VMMOUSE SUBDRIVER
21307 M:      Zack Rusin <zackr@vmware.com>
21308 R:      VMware Graphics Reviewers <linux-graphics-maintainer@vmware.com>
21309 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
21310 L:      linux-input@vger.kernel.org
21311 S:      Maintained
21312 F:      drivers/input/mouse/vmmouse.c
21313 F:      drivers/input/mouse/vmmouse.h
21314
21315 VMWARE VMXNET3 ETHERNET DRIVER
21316 M:      Ronak Doshi <doshir@vmware.com>
21317 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
21318 L:      netdev@vger.kernel.org
21319 S:      Maintained
21320 F:      drivers/net/vmxnet3/
21321
21322 VOCORE VOCORE2 BOARD
21323 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
21324 L:      linux-mips@vger.kernel.org
21325 S:      Maintained
21326 F:      arch/mips/boot/dts/ralink/vocore2.dts
21327
21328 VOLTAGE AND CURRENT REGULATOR FRAMEWORK
21329 M:      Liam Girdwood <lgirdwood@gmail.com>
21330 M:      Mark Brown <broonie@kernel.org>
21331 L:      linux-kernel@vger.kernel.org
21332 S:      Supported
21333 W:      http://www.slimlogic.co.uk/?p=48
21334 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git
21335 F:      Documentation/devicetree/bindings/regulator/
21336 F:      Documentation/power/regulator/
21337 F:      drivers/regulator/
21338 F:      include/dt-bindings/regulator/
21339 F:      include/linux/regulator/
21340 K:      regulator_get_optional
21341
21342 VOLTAGE AND CURRENT REGULATOR IRQ HELPERS
21343 R:      Matti Vaittinen <mazziesaccount@gmail.com>
21344 F:      drivers/regulator/irq_helpers.c
21345
21346 VRF
21347 M:      David Ahern <dsahern@kernel.org>
21348 L:      netdev@vger.kernel.org
21349 S:      Maintained
21350 F:      Documentation/networking/vrf.rst
21351 F:      drivers/net/vrf.c
21352
21353 VSPRINTF
21354 M:      Petr Mladek <pmladek@suse.com>
21355 M:      Steven Rostedt <rostedt@goodmis.org>
21356 M:      Sergey Senozhatsky <senozhatsky@chromium.org>
21357 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
21358 R:      Rasmus Villemoes <linux@rasmusvillemoes.dk>
21359 S:      Maintained
21360 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/printk/linux.git
21361 F:      Documentation/core-api/printk-formats.rst
21362 F:      lib/test_printf.c
21363 F:      lib/test_scanf.c
21364 F:      lib/vsprintf.c
21365
21366 VT1211 HARDWARE MONITOR DRIVER
21367 M:      Juerg Haefliger <juergh@gmail.com>
21368 L:      linux-hwmon@vger.kernel.org
21369 S:      Maintained
21370 F:      Documentation/hwmon/vt1211.rst
21371 F:      drivers/hwmon/vt1211.c
21372
21373 VT8231 HARDWARE MONITOR DRIVER
21374 M:      Roger Lucas <vt8231@hiddenengine.co.uk>
21375 L:      linux-hwmon@vger.kernel.org
21376 S:      Maintained
21377 F:      drivers/hwmon/vt8231.c
21378
21379 VUB300 USB to SDIO/SD/MMC bridge chip
21380 L:      linux-mmc@vger.kernel.org
21381 S:      Orphan
21382 F:      drivers/mmc/host/vub300.c
21383
21384 W1 DALLAS'S 1-WIRE BUS
21385 M:      Evgeniy Polyakov <zbr@ioremap.net>
21386 S:      Maintained
21387 F:      Documentation/devicetree/bindings/w1/
21388 F:      Documentation/w1/
21389 F:      drivers/w1/
21390 F:      include/linux/w1.h
21391
21392 W83791D HARDWARE MONITORING DRIVER
21393 M:      Marc Hulsman <m.hulsman@tudelft.nl>
21394 L:      linux-hwmon@vger.kernel.org
21395 S:      Maintained
21396 F:      Documentation/hwmon/w83791d.rst
21397 F:      drivers/hwmon/w83791d.c
21398
21399 W83793 HARDWARE MONITORING DRIVER
21400 M:      Rudolf Marek <r.marek@assembler.cz>
21401 L:      linux-hwmon@vger.kernel.org
21402 S:      Maintained
21403 F:      Documentation/hwmon/w83793.rst
21404 F:      drivers/hwmon/w83793.c
21405
21406 W83795 HARDWARE MONITORING DRIVER
21407 M:      Jean Delvare <jdelvare@suse.com>
21408 L:      linux-hwmon@vger.kernel.org
21409 S:      Maintained
21410 F:      drivers/hwmon/w83795.c
21411
21412 W83L51xD SD/MMC CARD INTERFACE DRIVER
21413 M:      Pierre Ossman <pierre@ossman.eu>
21414 S:      Maintained
21415 F:      drivers/mmc/host/wbsd.*
21416
21417 WACOM PROTOCOL 4 SERIAL TABLETS
21418 M:      Julian Squires <julian@cipht.net>
21419 M:      Hans de Goede <hdegoede@redhat.com>
21420 L:      linux-input@vger.kernel.org
21421 S:      Maintained
21422 F:      drivers/input/tablet/wacom_serial4.c
21423
21424 WATCHDOG DEVICE DRIVERS
21425 M:      Wim Van Sebroeck <wim@linux-watchdog.org>
21426 M:      Guenter Roeck <linux@roeck-us.net>
21427 L:      linux-watchdog@vger.kernel.org
21428 S:      Maintained
21429 W:      http://www.linux-watchdog.org/
21430 T:      git git://www.linux-watchdog.org/linux-watchdog.git
21431 F:      Documentation/devicetree/bindings/watchdog/
21432 F:      Documentation/watchdog/
21433 F:      drivers/watchdog/
21434 F:      include/linux/watchdog.h
21435 F:      include/uapi/linux/watchdog.h
21436
21437 WHISKEYCOVE PMIC GPIO DRIVER
21438 M:      Kuppuswamy Sathyanarayanan <sathyanarayanan.kuppuswamy@linux.intel.com>
21439 L:      linux-gpio@vger.kernel.org
21440 S:      Maintained
21441 F:      drivers/gpio/gpio-wcove.c
21442
21443 WHWAVE RTC DRIVER
21444 M:      Dianlong Li <long17.cool@163.com>
21445 L:      linux-rtc@vger.kernel.org
21446 S:      Maintained
21447 F:      drivers/rtc/rtc-sd3078.c
21448
21449 WIIMOTE HID DRIVER
21450 M:      David Rheinsberg <david.rheinsberg@gmail.com>
21451 L:      linux-input@vger.kernel.org
21452 S:      Maintained
21453 F:      drivers/hid/hid-wiimote*
21454
21455 WILOCITY WIL6210 WIRELESS DRIVER
21456 L:      linux-wireless@vger.kernel.org
21457 S:      Orphan
21458 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wil6210
21459 F:      drivers/net/wireless/ath/wil6210/
21460
21461 WINBOND CIR DRIVER
21462 M:      David Härdeman <david@hardeman.nu>
21463 S:      Maintained
21464 F:      drivers/media/rc/winbond-cir.c
21465
21466 WINSYSTEMS EBC-C384 WATCHDOG DRIVER
21467 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
21468 L:      linux-watchdog@vger.kernel.org
21469 S:      Maintained
21470 F:      drivers/watchdog/ebc-c384_wdt.c
21471
21472 WINSYSTEMS WS16C48 GPIO DRIVER
21473 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
21474 L:      linux-gpio@vger.kernel.org
21475 S:      Maintained
21476 F:      drivers/gpio/gpio-ws16c48.c
21477
21478 WIREGUARD SECURE NETWORK TUNNEL
21479 M:      Jason A. Donenfeld <Jason@zx2c4.com>
21480 L:      wireguard@lists.zx2c4.com
21481 L:      netdev@vger.kernel.org
21482 S:      Maintained
21483 F:      drivers/net/wireguard/
21484 F:      tools/testing/selftests/wireguard/
21485
21486 WISTRON LAPTOP BUTTON DRIVER
21487 M:      Miloslav Trmac <mitr@volny.cz>
21488 S:      Maintained
21489 F:      drivers/input/misc/wistron_btns.c
21490
21491 WL3501 WIRELESS PCMCIA CARD DRIVER
21492 L:      linux-wireless@vger.kernel.org
21493 S:      Odd fixes
21494 F:      drivers/net/wireless/wl3501*
21495
21496 WOLFSON MICROELECTRONICS DRIVERS
21497 L:      patches@opensource.cirrus.com
21498 S:      Supported
21499 W:      https://github.com/CirrusLogic/linux-drivers/wiki
21500 T:      git https://github.com/CirrusLogic/linux-drivers.git
21501 F:      Documentation/devicetree/bindings/extcon/wlf,arizona.yaml
21502 F:      Documentation/devicetree/bindings/mfd/wlf,arizona.yaml
21503 F:      Documentation/devicetree/bindings/mfd/wm831x.txt
21504 F:      Documentation/devicetree/bindings/regulator/wlf,arizona.yaml
21505 F:      Documentation/devicetree/bindings/sound/wlf,*.yaml
21506 F:      Documentation/devicetree/bindings/sound/wm*
21507 F:      Documentation/hwmon/wm83??.rst
21508 F:      arch/arm/mach-s3c/mach-crag6410*
21509 F:      drivers/clk/clk-wm83*.c
21510 F:      drivers/gpio/gpio-*wm*.c
21511 F:      drivers/gpio/gpio-arizona.c
21512 F:      drivers/hwmon/wm83??-hwmon.c
21513 F:      drivers/input/misc/wm831x-on.c
21514 F:      drivers/input/touchscreen/wm831x-ts.c
21515 F:      drivers/input/touchscreen/wm97*.c
21516 F:      drivers/leds/leds-wm83*.c
21517 F:      drivers/mfd/arizona*
21518 F:      drivers/mfd/cs47l24*
21519 F:      drivers/mfd/wm*.c
21520 F:      drivers/power/supply/wm83*.c
21521 F:      drivers/regulator/arizona*
21522 F:      drivers/regulator/wm8*.c
21523 F:      drivers/rtc/rtc-wm83*.c
21524 F:      drivers/video/backlight/wm83*_bl.c
21525 F:      drivers/watchdog/wm83*_wdt.c
21526 F:      include/linux/mfd/arizona/
21527 F:      include/linux/mfd/wm831x/
21528 F:      include/linux/mfd/wm8350/
21529 F:      include/linux/mfd/wm8400*
21530 F:      include/linux/regulator/arizona*
21531 F:      include/linux/wm97xx.h
21532 F:      include/sound/wm????.h
21533 F:      sound/soc/codecs/arizona*
21534 F:      sound/soc/codecs/cs47l24*
21535 F:      sound/soc/codecs/wm*
21536
21537 WORKQUEUE
21538 M:      Tejun Heo <tj@kernel.org>
21539 R:      Lai Jiangshan <jiangshanlai@gmail.com>
21540 S:      Maintained
21541 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
21542 F:      Documentation/core-api/workqueue.rst
21543 F:      include/linux/workqueue.h
21544 F:      kernel/workqueue.c
21545
21546 WWAN DRIVERS
21547 M:      Loic Poulain <loic.poulain@linaro.org>
21548 M:      Sergey Ryazanov <ryazanov.s.a@gmail.com>
21549 R:      Johannes Berg <johannes@sipsolutions.net>
21550 L:      netdev@vger.kernel.org
21551 S:      Maintained
21552 F:      drivers/net/wwan/
21553 F:      include/linux/wwan.h
21554 F:      include/uapi/linux/wwan.h
21555
21556 X-POWERS AXP288 PMIC DRIVERS
21557 M:      Hans de Goede <hdegoede@redhat.com>
21558 S:      Maintained
21559 F:      drivers/acpi/pmic/intel_pmic_xpower.c
21560 N:      axp288
21561
21562 X-POWERS MULTIFUNCTION PMIC DEVICE DRIVERS
21563 M:      Chen-Yu Tsai <wens@csie.org>
21564 L:      linux-kernel@vger.kernel.org
21565 S:      Maintained
21566 N:      axp[128]
21567
21568 X.25 STACK
21569 M:      Martin Schiller <ms@dev.tdt.de>
21570 L:      linux-x25@vger.kernel.org
21571 S:      Maintained
21572 F:      Documentation/networking/lapb-module.rst
21573 F:      Documentation/networking/x25*
21574 F:      drivers/net/wan/hdlc_x25.c
21575 F:      drivers/net/wan/lapbether.c
21576 F:      include/*/lapb.h
21577 F:      include/net/x25*
21578 F:      include/uapi/linux/x25.h
21579 F:      net/lapb/
21580 F:      net/x25/
21581
21582 X86 ARCHITECTURE (32-BIT AND 64-BIT)
21583 M:      Thomas Gleixner <tglx@linutronix.de>
21584 M:      Ingo Molnar <mingo@redhat.com>
21585 M:      Borislav Petkov <bp@alien8.de>
21586 M:      Dave Hansen <dave.hansen@linux.intel.com>
21587 M:      x86@kernel.org
21588 R:      "H. Peter Anvin" <hpa@zytor.com>
21589 L:      linux-kernel@vger.kernel.org
21590 S:      Maintained
21591 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
21592 F:      Documentation/devicetree/bindings/x86/
21593 F:      Documentation/x86/
21594 F:      arch/x86/
21595
21596 X86 ENTRY CODE
21597 M:      Andy Lutomirski <luto@kernel.org>
21598 L:      linux-kernel@vger.kernel.org
21599 S:      Maintained
21600 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/asm
21601 F:      arch/x86/entry/
21602
21603 X86 MCE INFRASTRUCTURE
21604 M:      Tony Luck <tony.luck@intel.com>
21605 M:      Borislav Petkov <bp@alien8.de>
21606 L:      linux-edac@vger.kernel.org
21607 S:      Maintained
21608 F:      Documentation/ABI/testing/sysfs-mce
21609 F:      Documentation/x86/x86_64/machinecheck.rst
21610 F:      arch/x86/kernel/cpu/mce/*
21611
21612 X86 MICROCODE UPDATE SUPPORT
21613 M:      Borislav Petkov <bp@alien8.de>
21614 S:      Maintained
21615 F:      arch/x86/kernel/cpu/microcode/*
21616
21617 X86 MM
21618 M:      Dave Hansen <dave.hansen@linux.intel.com>
21619 M:      Andy Lutomirski <luto@kernel.org>
21620 M:      Peter Zijlstra <peterz@infradead.org>
21621 L:      linux-kernel@vger.kernel.org
21622 S:      Maintained
21623 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/mm
21624 F:      arch/x86/mm/
21625
21626 X86 PLATFORM ANDROID TABLETS DSDT FIXUP DRIVER
21627 M:      Hans de Goede <hdegoede@redhat.com>
21628 L:      platform-driver-x86@vger.kernel.org
21629 S:      Maintained
21630 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
21631 F:      drivers/platform/x86/x86-android-tablets.c
21632
21633 X86 PLATFORM DRIVERS
21634 M:      Hans de Goede <hdegoede@redhat.com>
21635 M:      Mark Gross <markgross@kernel.org>
21636 L:      platform-driver-x86@vger.kernel.org
21637 S:      Maintained
21638 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
21639 F:      drivers/platform/olpc/
21640 F:      drivers/platform/x86/
21641
21642 X86 PLATFORM DRIVERS - ARCH
21643 R:      Darren Hart <dvhart@infradead.org>
21644 R:      Andy Shevchenko <andy@infradead.org>
21645 L:      platform-driver-x86@vger.kernel.org
21646 L:      x86@kernel.org
21647 S:      Maintained
21648 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
21649 F:      arch/x86/platform
21650
21651 X86 PLATFORM UV HPE SUPERDOME FLEX
21652 M:      Steve Wahl <steve.wahl@hpe.com>
21653 R:      Mike Travis <mike.travis@hpe.com>
21654 R:      Dimitri Sivanich <dimitri.sivanich@hpe.com>
21655 R:      Russ Anderson <russ.anderson@hpe.com>
21656 S:      Supported
21657 F:      arch/x86/include/asm/uv/
21658 F:      arch/x86/kernel/apic/x2apic_uv_x.c
21659 F:      arch/x86/platform/uv/
21660
21661 X86 STACK UNWINDING
21662 M:      Josh Poimboeuf <jpoimboe@kernel.org>
21663 M:      Peter Zijlstra <peterz@infradead.org>
21664 S:      Supported
21665 F:      arch/x86/include/asm/unwind*.h
21666 F:      arch/x86/kernel/dumpstack.c
21667 F:      arch/x86/kernel/stacktrace.c
21668 F:      arch/x86/kernel/unwind_*.c
21669
21670 X86 VDSO
21671 M:      Andy Lutomirski <luto@kernel.org>
21672 L:      linux-kernel@vger.kernel.org
21673 S:      Maintained
21674 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso
21675 F:      arch/x86/entry/vdso/
21676
21677 XARRAY
21678 M:      Matthew Wilcox <willy@infradead.org>
21679 L:      linux-fsdevel@vger.kernel.org
21680 S:      Supported
21681 F:      Documentation/core-api/xarray.rst
21682 F:      include/linux/idr.h
21683 F:      include/linux/xarray.h
21684 F:      lib/idr.c
21685 F:      lib/xarray.c
21686 F:      tools/testing/radix-tree
21687
21688 XBOX DVD IR REMOTE
21689 M:      Benjamin Valentin <benpicco@googlemail.com>
21690 S:      Maintained
21691 F:      drivers/media/rc/keymaps/rc-xbox-dvd.c
21692 F:      drivers/media/rc/xbox_remote.c
21693
21694 XC2028/3028 TUNER DRIVER
21695 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
21696 L:      linux-media@vger.kernel.org
21697 S:      Maintained
21698 W:      https://linuxtv.org
21699 T:      git git://linuxtv.org/media_tree.git
21700 F:      drivers/media/tuners/xc2028.*
21701
21702 XDP (eXpress Data Path)
21703 M:      Alexei Starovoitov <ast@kernel.org>
21704 M:      Daniel Borkmann <daniel@iogearbox.net>
21705 M:      David S. Miller <davem@davemloft.net>
21706 M:      Jakub Kicinski <kuba@kernel.org>
21707 M:      Jesper Dangaard Brouer <hawk@kernel.org>
21708 M:      John Fastabend <john.fastabend@gmail.com>
21709 L:      netdev@vger.kernel.org
21710 L:      bpf@vger.kernel.org
21711 S:      Supported
21712 F:      include/net/xdp.h
21713 F:      include/net/xdp_priv.h
21714 F:      include/trace/events/xdp.h
21715 F:      kernel/bpf/cpumap.c
21716 F:      kernel/bpf/devmap.c
21717 F:      net/core/xdp.c
21718 F:      samples/bpf/xdp*
21719 F:      tools/testing/selftests/bpf/*xdp*
21720 F:      tools/testing/selftests/bpf/*/*xdp*
21721 F:      drivers/net/ethernet/*/*/*/*/*xdp*
21722 F:      drivers/net/ethernet/*/*/*xdp*
21723 K:      (?:\b|_)xdp(?:\b|_)
21724
21725 XDP SOCKETS (AF_XDP)
21726 M:      Björn Töpel <bjorn@kernel.org>
21727 M:      Magnus Karlsson <magnus.karlsson@intel.com>
21728 M:      Maciej Fijalkowski <maciej.fijalkowski@intel.com>
21729 R:      Jonathan Lemon <jonathan.lemon@gmail.com>
21730 L:      netdev@vger.kernel.org
21731 L:      bpf@vger.kernel.org
21732 S:      Maintained
21733 F:      Documentation/networking/af_xdp.rst
21734 F:      include/net/xdp_sock*
21735 F:      include/net/xsk_buff_pool.h
21736 F:      include/uapi/linux/if_xdp.h
21737 F:      include/uapi/linux/xdp_diag.h
21738 F:      include/net/netns/xdp.h
21739 F:      net/xdp/
21740 F:      samples/bpf/xdpsock*
21741 F:      tools/lib/bpf/xsk*
21742
21743 XEN BLOCK SUBSYSTEM
21744 M:      Roger Pau Monné <roger.pau@citrix.com>
21745 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
21746 S:      Supported
21747 F:      drivers/block/xen*
21748 F:      drivers/block/xen-blkback/*
21749
21750 XEN HYPERVISOR ARM
21751 M:      Stefano Stabellini <sstabellini@kernel.org>
21752 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
21753 S:      Maintained
21754 F:      arch/arm/include/asm/xen/
21755 F:      arch/arm/xen/
21756
21757 XEN HYPERVISOR ARM64
21758 M:      Stefano Stabellini <sstabellini@kernel.org>
21759 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
21760 S:      Maintained
21761 F:      arch/arm64/include/asm/xen/
21762 F:      arch/arm64/xen/
21763
21764 XEN HYPERVISOR INTERFACE
21765 M:      Juergen Gross <jgross@suse.com>
21766 M:      Stefano Stabellini <sstabellini@kernel.org>
21767 R:      Oleksandr Tyshchenko <oleksandr_tyshchenko@epam.com>
21768 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
21769 S:      Supported
21770 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git
21771 F:      Documentation/ABI/stable/sysfs-hypervisor-xen
21772 F:      Documentation/ABI/testing/sysfs-hypervisor-xen
21773 F:      drivers/*/xen-*front.c
21774 F:      drivers/xen/
21775 F:      include/uapi/xen/
21776 F:      include/xen/
21777
21778 XEN HYPERVISOR X86
21779 M:      Juergen Gross <jgross@suse.com>
21780 R:      Boris Ostrovsky <boris.ostrovsky@oracle.com>
21781 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
21782 S:      Supported
21783 F:      arch/x86/include/asm/pvclock-abi.h
21784 F:      arch/x86/include/asm/xen/
21785 F:      arch/x86/platform/pvh/
21786 F:      arch/x86/xen/
21787
21788 XEN NETWORK BACKEND DRIVER
21789 M:      Wei Liu <wei.liu@kernel.org>
21790 M:      Paul Durrant <paul@xen.org>
21791 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
21792 L:      netdev@vger.kernel.org
21793 S:      Supported
21794 F:      drivers/net/xen-netback/*
21795
21796 XEN PCI SUBSYSTEM
21797 M:      Juergen Gross <jgross@suse.com>
21798 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
21799 S:      Supported
21800 F:      arch/x86/pci/*xen*
21801 F:      drivers/pci/*xen*
21802
21803 XEN PVSCSI DRIVERS
21804 M:      Juergen Gross <jgross@suse.com>
21805 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
21806 L:      linux-scsi@vger.kernel.org
21807 S:      Supported
21808 F:      drivers/scsi/xen-scsifront.c
21809 F:      drivers/xen/xen-scsiback.c
21810 F:      include/xen/interface/io/vscsiif.h
21811
21812 XEN PVUSB DRIVER
21813 M:      Juergen Gross <jgross@suse.com>
21814 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
21815 L:      linux-usb@vger.kernel.org
21816 S:      Supported
21817 F:      drivers/usb/host/xen*
21818 F:      include/xen/interface/io/usbif.h
21819
21820 XEN SOUND FRONTEND DRIVER
21821 M:      Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
21822 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
21823 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
21824 S:      Supported
21825 F:      sound/xen/*
21826
21827 XEN SWIOTLB SUBSYSTEM
21828 M:      Juergen Gross <jgross@suse.com>
21829 M:      Stefano Stabellini <sstabellini@kernel.org>
21830 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
21831 L:      iommu@lists.linux-foundation.org
21832 S:      Supported
21833 F:      arch/x86/xen/*swiotlb*
21834 F:      drivers/xen/*swiotlb*
21835
21836 XFS FILESYSTEM
21837 C:      irc://irc.oftc.net/xfs
21838 M:      Darrick J. Wong <djwong@kernel.org>
21839 L:      linux-xfs@vger.kernel.org
21840 S:      Supported
21841 W:      http://xfs.org/
21842 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
21843 F:      Documentation/ABI/testing/sysfs-fs-xfs
21844 F:      Documentation/admin-guide/xfs.rst
21845 F:      Documentation/filesystems/xfs-delayed-logging-design.rst
21846 F:      Documentation/filesystems/xfs-self-describing-metadata.rst
21847 F:      fs/xfs/
21848 F:      include/uapi/linux/dqblk_xfs.h
21849 F:      include/uapi/linux/fsmap.h
21850
21851 XILINX AMS DRIVER
21852 M:      Anand Ashok Dumbre <anand.ashok.dumbre@xilinx.com>
21853 L:      linux-iio@vger.kernel.org
21854 S:      Maintained
21855 F:      Documentation/devicetree/bindings/iio/adc/xlnx,zynqmp-ams.yaml
21856 F:      drivers/iio/adc/xilinx-ams.c
21857
21858 XILINX AXI ETHERNET DRIVER
21859 M:      Radhey Shyam Pandey <radhey.shyam.pandey@xilinx.com>
21860 S:      Maintained
21861 F:      drivers/net/ethernet/xilinx/xilinx_axienet*
21862
21863 XILINX CAN DRIVER
21864 M:      Appana Durga Kedareswara rao <appana.durga.rao@xilinx.com>
21865 R:      Naga Sureshkumar Relli <naga.sureshkumar.relli@xilinx.com>
21866 L:      linux-can@vger.kernel.org
21867 S:      Maintained
21868 F:      Documentation/devicetree/bindings/net/can/xilinx,can.yaml
21869 F:      drivers/net/can/xilinx_can.c
21870
21871 XILINX GPIO DRIVER
21872 M:      Shubhrajyoti Datta <shubhrajyoti.datta@xilinx.com>
21873 R:      Srinivas Neeli <srinivas.neeli@xilinx.com>
21874 R:      Michal Simek <michal.simek@xilinx.com>
21875 S:      Maintained
21876 F:      Documentation/devicetree/bindings/gpio/gpio-xilinx.txt
21877 F:      Documentation/devicetree/bindings/gpio/gpio-zynq.yaml
21878 F:      drivers/gpio/gpio-xilinx.c
21879 F:      drivers/gpio/gpio-zynq.c
21880
21881 XILINX SD-FEC IP CORES
21882 M:      Derek Kiernan <derek.kiernan@xilinx.com>
21883 M:      Dragan Cvetic <dragan.cvetic@xilinx.com>
21884 S:      Maintained
21885 F:      Documentation/devicetree/bindings/misc/xlnx,sd-fec.txt
21886 F:      Documentation/misc-devices/xilinx_sdfec.rst
21887 F:      drivers/misc/Kconfig
21888 F:      drivers/misc/Makefile
21889 F:      drivers/misc/xilinx_sdfec.c
21890 F:      include/uapi/misc/xilinx_sdfec.h
21891
21892 XILINX PWM DRIVER
21893 M:      Sean Anderson <sean.anderson@seco.com>
21894 S:      Maintained
21895 F:      drivers/pwm/pwm-xilinx.c
21896 F:      include/clocksource/timer-xilinx.h
21897
21898 XILINX UARTLITE SERIAL DRIVER
21899 M:      Peter Korsgaard <jacmet@sunsite.dk>
21900 L:      linux-serial@vger.kernel.org
21901 S:      Maintained
21902 F:      drivers/tty/serial/uartlite.c
21903
21904 XILINX VIDEO IP CORES
21905 M:      Hyun Kwon <hyun.kwon@xilinx.com>
21906 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
21907 L:      linux-media@vger.kernel.org
21908 S:      Supported
21909 T:      git git://linuxtv.org/media_tree.git
21910 F:      Documentation/devicetree/bindings/media/xilinx/
21911 F:      drivers/media/platform/xilinx/
21912 F:      include/uapi/linux/xilinx-v4l2-controls.h
21913
21914 XILINX ZYNQMP DPDMA DRIVER
21915 M:      Hyun Kwon <hyun.kwon@xilinx.com>
21916 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
21917 L:      dmaengine@vger.kernel.org
21918 S:      Supported
21919 F:      Documentation/devicetree/bindings/dma/xilinx/xlnx,zynqmp-dpdma.yaml
21920 F:      drivers/dma/xilinx/xilinx_dpdma.c
21921 F:      include/dt-bindings/dma/xlnx-zynqmp-dpdma.h
21922
21923 XILINX ZYNQMP PSGTR PHY DRIVER
21924 M:      Anurag Kumar Vulisha <anurag.kumar.vulisha@xilinx.com>
21925 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
21926 L:      linux-kernel@vger.kernel.org
21927 S:      Supported
21928 T:      git https://github.com/Xilinx/linux-xlnx.git
21929 F:      Documentation/devicetree/bindings/phy/xlnx,zynqmp-psgtr.yaml
21930 F:      drivers/phy/xilinx/phy-zynqmp.c
21931
21932 XILINX ZYNQMP SHA3 DRIVER
21933 M:      Harsha <harsha.harsha@xilinx.com>
21934 S:      Maintained
21935 F:      drivers/crypto/xilinx/zynqmp-sha.c
21936
21937 XILINX EVENT MANAGEMENT DRIVER
21938 M:      Abhyuday Godhasara <abhyuday.godhasara@xilinx.com>
21939 S:      Maintained
21940 F:      drivers/soc/xilinx/xlnx_event_manager.c
21941 F:      include/linux/firmware/xlnx-event-manager.h
21942
21943 XILLYBUS DRIVER
21944 M:      Eli Billauer <eli.billauer@gmail.com>
21945 L:      linux-kernel@vger.kernel.org
21946 S:      Supported
21947 F:      drivers/char/xillybus/
21948
21949 XLP9XX I2C DRIVER
21950 M:      George Cherian <gcherian@marvell.com>
21951 L:      linux-i2c@vger.kernel.org
21952 S:      Supported
21953 W:      http://www.marvell.com
21954 F:      drivers/i2c/busses/i2c-xlp9xx.c
21955
21956 XRA1403 GPIO EXPANDER
21957 M:      Nandor Han <nandor.han@ge.com>
21958 M:      Semi Malinen <semi.malinen@ge.com>
21959 L:      linux-gpio@vger.kernel.org
21960 S:      Maintained
21961 F:      Documentation/devicetree/bindings/gpio/gpio-xra1403.txt
21962 F:      drivers/gpio/gpio-xra1403.c
21963
21964 XTENSA XTFPGA PLATFORM SUPPORT
21965 M:      Max Filippov <jcmvbkbc@gmail.com>
21966 L:      linux-xtensa@linux-xtensa.org
21967 S:      Maintained
21968 F:      drivers/spi/spi-xtensa-xtfpga.c
21969 F:      sound/soc/xtensa/xtfpga-i2s.c
21970
21971 YAM DRIVER FOR AX.25
21972 M:      Jean-Paul Roubelat <jpr@f6fbb.org>
21973 L:      linux-hams@vger.kernel.org
21974 S:      Maintained
21975 F:      drivers/net/hamradio/yam*
21976 F:      include/linux/yam.h
21977
21978 YAMA SECURITY MODULE
21979 M:      Kees Cook <keescook@chromium.org>
21980 S:      Supported
21981 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git yama/tip
21982 F:      Documentation/admin-guide/LSM/Yama.rst
21983 F:      security/yama/
21984
21985 YEALINK PHONE DRIVER
21986 M:      Henk Vergonet <Henk.Vergonet@gmail.com>
21987 L:      usbb2k-api-dev@nongnu.org
21988 S:      Maintained
21989 F:      Documentation/input/devices/yealink.rst
21990 F:      drivers/input/misc/yealink.*
21991
21992 Z8530 DRIVER FOR AX.25
21993 M:      Joerg Reuter <jreuter@yaina.de>
21994 L:      linux-hams@vger.kernel.org
21995 S:      Maintained
21996 W:      http://yaina.de/jreuter/
21997 W:      http://www.qsl.net/dl1bke/
21998 F:      Documentation/networking/device_drivers/hamradio/z8530drv.rst
21999 F:      drivers/net/hamradio/*scc.c
22000 F:      drivers/net/hamradio/z8530.h
22001
22002 ZBUD COMPRESSED PAGE ALLOCATOR
22003 M:      Seth Jennings <sjenning@redhat.com>
22004 M:      Dan Streetman <ddstreet@ieee.org>
22005 L:      linux-mm@kvack.org
22006 S:      Maintained
22007 F:      mm/zbud.c
22008
22009 Z3FOLD COMPRESSED PAGE ALLOCATOR
22010 M:      Vitaly Wool <vitaly.wool@konsulko.com>
22011 R:      Miaohe Lin <linmiaohe@huawei.com>
22012 L:      linux-mm@kvack.org
22013 S:      Maintained
22014 F:      mm/z3fold.c
22015
22016 ZD1211RW WIRELESS DRIVER
22017 M:      Ulrich Kunitz <kune@deine-taler.de>
22018 L:      linux-wireless@vger.kernel.org
22019 L:      zd1211-devs@lists.sourceforge.net (subscribers-only)
22020 S:      Maintained
22021 W:      http://zd1211.ath.cx/wiki/DriverRewrite
22022 F:      drivers/net/wireless/zydas/zd1211rw/
22023
22024 ZD1301 MEDIA DRIVER
22025 M:      Antti Palosaari <crope@iki.fi>
22026 L:      linux-media@vger.kernel.org
22027 S:      Maintained
22028 W:      https://linuxtv.org/
22029 W:      http://palosaari.fi/linux/
22030 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
22031 F:      drivers/media/usb/dvb-usb-v2/zd1301*
22032
22033 ZD1301_DEMOD MEDIA DRIVER
22034 M:      Antti Palosaari <crope@iki.fi>
22035 L:      linux-media@vger.kernel.org
22036 S:      Maintained
22037 W:      https://linuxtv.org/
22038 W:      http://palosaari.fi/linux/
22039 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
22040 F:      drivers/media/dvb-frontends/zd1301_demod*
22041
22042 ZHAOXIN PROCESSOR SUPPORT
22043 M:      Tony W Wang-oc <TonyWWang-oc@zhaoxin.com>
22044 L:      linux-kernel@vger.kernel.org
22045 S:      Maintained
22046 F:      arch/x86/kernel/cpu/zhaoxin.c
22047
22048 ZONEFS FILESYSTEM
22049 M:      Damien Le Moal <damien.lemoal@opensource.wdc.com>
22050 M:      Naohiro Aota <naohiro.aota@wdc.com>
22051 R:      Johannes Thumshirn <jth@kernel.org>
22052 L:      linux-fsdevel@vger.kernel.org
22053 S:      Maintained
22054 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dlemoal/zonefs.git
22055 F:      Documentation/filesystems/zonefs.rst
22056 F:      fs/zonefs/
22057
22058 ZPOOL COMPRESSED PAGE STORAGE API
22059 M:      Dan Streetman <ddstreet@ieee.org>
22060 L:      linux-mm@kvack.org
22061 S:      Maintained
22062 F:      include/linux/zpool.h
22063 F:      mm/zpool.c
22064
22065 ZR36067 VIDEO FOR LINUX DRIVER
22066 M:      Corentin Labbe <clabbe@baylibre.com>
22067 L:      mjpeg-users@lists.sourceforge.net
22068 L:      linux-media@vger.kernel.org
22069 S:      Maintained
22070 W:      http://mjpeg.sourceforge.net/driver-zoran/
22071 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
22072 F:      Documentation/driver-api/media/drivers/zoran.rst
22073 F:      drivers/staging/media/zoran/
22074
22075 ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER
22076 M:      Minchan Kim <minchan@kernel.org>
22077 M:      Nitin Gupta <ngupta@vflare.org>
22078 R:      Sergey Senozhatsky <senozhatsky@chromium.org>
22079 L:      linux-kernel@vger.kernel.org
22080 S:      Maintained
22081 F:      Documentation/admin-guide/blockdev/zram.rst
22082 F:      drivers/block/zram/
22083
22084 ZS DECSTATION Z85C30 SERIAL DRIVER
22085 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
22086 S:      Maintained
22087 F:      drivers/tty/serial/zs.*
22088
22089 ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR
22090 M:      Minchan Kim <minchan@kernel.org>
22091 M:      Nitin Gupta <ngupta@vflare.org>
22092 R:      Sergey Senozhatsky <senozhatsky@chromium.org>
22093 L:      linux-mm@kvack.org
22094 S:      Maintained
22095 F:      Documentation/vm/zsmalloc.rst
22096 F:      include/linux/zsmalloc.h
22097 F:      mm/zsmalloc.c
22098
22099 ZSTD
22100 M:      Nick Terrell <terrelln@fb.com>
22101 S:      Maintained
22102 B:      https://github.com/facebook/zstd/issues
22103 T:      git git://github.com/terrelln/linux.git
22104 F:      include/linux/zstd*
22105 F:      lib/zstd/
22106 F:      lib/decompress_unzstd.c
22107 F:      crypto/zstd.c
22108 N:      zstd
22109 K:      zstd
22110
22111 ZSWAP COMPRESSED SWAP CACHING
22112 M:      Seth Jennings <sjenning@redhat.com>
22113 M:      Dan Streetman <ddstreet@ieee.org>
22114 M:      Vitaly Wool <vitaly.wool@konsulko.com>
22115 L:      linux-mm@kvack.org
22116 S:      Maintained
22117 F:      mm/zswap.c
22118
22119 THE REST
22120 M:      Linus Torvalds <torvalds@linux-foundation.org>
22121 L:      linux-kernel@vger.kernel.org
22122 S:      Buried alive in reporters
22123 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
22124 F:      *
22125 F:      */