Merge tag 'arm-dt-6.1' of git://git.kernel.org/pub/scm/linux/kernel/git/soc/soc
[platform/kernel/linux-starfive.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 L:      linux-bluetooth@vger.kernel.org
175 L:      linux-wpan@vger.kernel.org
176 S:      Maintained
177 F:      Documentation/networking/6lowpan.rst
178 F:      include/net/6lowpan.h
179 F:      net/6lowpan/
180
181 6PACK NETWORK DRIVER FOR AX.25
182 M:      Andreas Koensgen <ajk@comnets.uni-bremen.de>
183 L:      linux-hams@vger.kernel.org
184 S:      Maintained
185 F:      drivers/net/hamradio/6pack.c
186
187 802.11 (including CFG80211/NL80211)
188 M:      Johannes Berg <johannes@sipsolutions.net>
189 L:      linux-wireless@vger.kernel.org
190 S:      Maintained
191 W:      https://wireless.wiki.kernel.org/
192 Q:      https://patchwork.kernel.org/project/linux-wireless/list/
193 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless.git
194 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless-next.git
195 F:      Documentation/driver-api/80211/cfg80211.rst
196 F:      Documentation/networking/regulatory.rst
197 F:      include/linux/ieee80211.h
198 F:      include/net/cfg80211.h
199 F:      include/net/ieee80211_radiotap.h
200 F:      include/net/iw_handler.h
201 F:      include/net/wext.h
202 F:      include/uapi/linux/nl80211.h
203 F:      include/uapi/linux/wireless.h
204 F:      net/wireless/
205
206 8169 10/100/1000 GIGABIT ETHERNET DRIVER
207 M:      Heiner Kallweit <hkallweit1@gmail.com>
208 M:      nic_swsd@realtek.com
209 L:      netdev@vger.kernel.org
210 S:      Maintained
211 F:      drivers/net/ethernet/realtek/r8169*
212
213 8250/16?50 (AND CLONE UARTS) SERIAL DRIVER
214 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
215 L:      linux-serial@vger.kernel.org
216 S:      Maintained
217 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
218 F:      drivers/tty/serial/8250*
219 F:      include/linux/serial_8250.h
220
221 8390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.]
222 L:      netdev@vger.kernel.org
223 S:      Orphan / Obsolete
224 F:      drivers/net/ethernet/8390/
225
226 9P FILE SYSTEM
227 M:      Eric Van Hensbergen <ericvh@gmail.com>
228 M:      Latchesar Ionkov <lucho@ionkov.net>
229 M:      Dominique Martinet <asmadeus@codewreck.org>
230 R:      Christian Schoenebeck <linux_oss@crudebyte.com>
231 L:      v9fs-developer@lists.sourceforge.net
232 S:      Maintained
233 W:      http://swik.net/v9fs
234 Q:      http://patchwork.kernel.org/project/v9fs-devel/list/
235 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs.git
236 T:      git git://github.com/martinetd/linux.git
237 F:      Documentation/filesystems/9p.rst
238 F:      fs/9p/
239 F:      include/net/9p/
240 F:      include/trace/events/9p.h
241 F:      include/uapi/linux/virtio_9p.h
242 F:      net/9p/
243
244 A64FX DIAG DRIVER
245 M:      Hitomi Hasegawa <hasegawa-hitomi@fujitsu.com>
246 S:      Supported
247 F:      drivers/soc/fujitsu/a64fx-diag.c
248
249 A8293 MEDIA DRIVER
250 M:      Antti Palosaari <crope@iki.fi>
251 L:      linux-media@vger.kernel.org
252 S:      Maintained
253 W:      https://linuxtv.org
254 W:      http://palosaari.fi/linux/
255 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
256 T:      git git://linuxtv.org/anttip/media_tree.git
257 F:      drivers/media/dvb-frontends/a8293*
258
259 AACRAID SCSI RAID DRIVER
260 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
261 L:      linux-scsi@vger.kernel.org
262 S:      Supported
263 W:      http://www.adaptec.com/
264 F:      Documentation/scsi/aacraid.rst
265 F:      drivers/scsi/aacraid/
266
267 AB8500 BATTERY AND CHARGER DRIVERS
268 M:      Linus Walleij <linus.walleij@linaro.org>
269 F:      Documentation/devicetree/bindings/power/supply/*ab8500*
270 F:      drivers/power/supply/*ab8500*
271
272 ABI/API
273 L:      linux-api@vger.kernel.org
274 F:      include/linux/syscalls.h
275 F:      kernel/sys_ni.c
276 X:      include/uapi/
277 X:      arch/*/include/uapi/
278
279 ABIT UGURU 1,2 HARDWARE MONITOR DRIVER
280 M:      Hans de Goede <hdegoede@redhat.com>
281 L:      linux-hwmon@vger.kernel.org
282 S:      Maintained
283 F:      drivers/hwmon/abituguru.c
284
285 ABIT UGURU 3 HARDWARE MONITOR DRIVER
286 M:      Alistair John Strachan <alistair@devzero.co.uk>
287 L:      linux-hwmon@vger.kernel.org
288 S:      Maintained
289 F:      drivers/hwmon/abituguru3.c
290
291 ACCES 104-DIO-48E GPIO DRIVER
292 M:      William Breathitt Gray <william.gray@linaro.org>
293 L:      linux-gpio@vger.kernel.org
294 S:      Maintained
295 F:      drivers/gpio/gpio-104-dio-48e.c
296
297 ACCES 104-IDI-48 GPIO DRIVER
298 M:      William Breathitt Gray <william.gray@linaro.org>
299 L:      linux-gpio@vger.kernel.org
300 S:      Maintained
301 F:      drivers/gpio/gpio-104-idi-48.c
302
303 ACCES 104-IDIO-16 GPIO DRIVER
304 M:      William Breathitt Gray <william.gray@linaro.org>
305 L:      linux-gpio@vger.kernel.org
306 S:      Maintained
307 F:      drivers/gpio/gpio-104-idio-16.c
308
309 ACCES 104-QUAD-8 DRIVER
310 M:      William Breathitt Gray <william.gray@linaro.org>
311 L:      linux-iio@vger.kernel.org
312 S:      Maintained
313 F:      drivers/counter/104-quad-8.c
314
315 ACCES PCI-IDIO-16 GPIO DRIVER
316 M:      William Breathitt Gray <william.gray@linaro.org>
317 L:      linux-gpio@vger.kernel.org
318 S:      Maintained
319 F:      drivers/gpio/gpio-pci-idio-16.c
320
321 ACCES PCIe-IDIO-24 GPIO DRIVER
322 M:      William Breathitt Gray <william.gray@linaro.org>
323 L:      linux-gpio@vger.kernel.org
324 S:      Maintained
325 F:      drivers/gpio/gpio-pcie-idio-24.c
326
327 ACENIC DRIVER
328 M:      Jes Sorensen <jes@trained-monkey.org>
329 L:      linux-acenic@sunsite.dk
330 S:      Maintained
331 F:      drivers/net/ethernet/alteon/acenic*
332
333 ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER
334 M:      Peter Kaestle <peter@piie.net>
335 L:      platform-driver-x86@vger.kernel.org
336 S:      Maintained
337 W:      http://piie.net/?section=acerhdf
338 F:      drivers/platform/x86/acerhdf.c
339
340 ACER WMI LAPTOP EXTRAS
341 M:      "Lee, Chun-Yi" <jlee@suse.com>
342 L:      platform-driver-x86@vger.kernel.org
343 S:      Maintained
344 F:      drivers/platform/x86/acer-wmi.c
345
346 ACPI
347 M:      "Rafael J. Wysocki" <rafael@kernel.org>
348 R:      Len Brown <lenb@kernel.org>
349 L:      linux-acpi@vger.kernel.org
350 S:      Supported
351 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
352 B:      https://bugzilla.kernel.org
353 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
354 F:      Documentation/ABI/testing/configfs-acpi
355 F:      Documentation/ABI/testing/sysfs-bus-acpi
356 F:      Documentation/firmware-guide/acpi/
357 F:      drivers/acpi/
358 F:      drivers/pci/*/*acpi*
359 F:      drivers/pci/*acpi*
360 F:      drivers/pnp/pnpacpi/
361 F:      include/acpi/
362 F:      include/linux/acpi.h
363 F:      include/linux/fwnode.h
364 F:      tools/power/acpi/
365
366 ACPI APEI
367 M:      "Rafael J. Wysocki" <rafael@kernel.org>
368 R:      Len Brown <lenb@kernel.org>
369 R:      James Morse <james.morse@arm.com>
370 R:      Tony Luck <tony.luck@intel.com>
371 R:      Borislav Petkov <bp@alien8.de>
372 L:      linux-acpi@vger.kernel.org
373 F:      drivers/acpi/apei/
374
375 ACPI COMPONENT ARCHITECTURE (ACPICA)
376 M:      Robert Moore <robert.moore@intel.com>
377 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
378 L:      linux-acpi@vger.kernel.org
379 L:      devel@acpica.org
380 S:      Supported
381 W:      https://acpica.org/
382 W:      https://github.com/acpica/acpica/
383 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
384 B:      https://bugzilla.kernel.org
385 B:      https://bugs.acpica.org
386 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
387 F:      drivers/acpi/acpica/
388 F:      include/acpi/
389 F:      tools/power/acpi/
390
391 ACPI FOR ARM64 (ACPI/arm64)
392 M:      Lorenzo Pieralisi <lpieralisi@kernel.org>
393 M:      Hanjun Guo <guohanjun@huawei.com>
394 M:      Sudeep Holla <sudeep.holla@arm.com>
395 L:      linux-acpi@vger.kernel.org
396 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
397 S:      Maintained
398 F:      drivers/acpi/arm64
399
400 ACPI SERIAL MULTI INSTANTIATE DRIVER
401 M:      Hans de Goede <hdegoede@redhat.com>
402 L:      platform-driver-x86@vger.kernel.org
403 S:      Maintained
404 F:      drivers/platform/x86/serial-multi-instantiate.c
405
406 ACPI PCC(Platform Communication Channel) MAILBOX DRIVER
407 M:      Sudeep Holla <sudeep.holla@arm.com>
408 L:      linux-acpi@vger.kernel.org
409 S:      Supported
410 F:      drivers/mailbox/pcc.c
411
412 ACPI PMIC DRIVERS
413 M:      "Rafael J. Wysocki" <rafael@kernel.org>
414 M:      Len Brown <lenb@kernel.org>
415 R:      Andy Shevchenko <andy@kernel.org>
416 R:      Mika Westerberg <mika.westerberg@linux.intel.com>
417 L:      linux-acpi@vger.kernel.org
418 S:      Supported
419 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
420 B:      https://bugzilla.kernel.org
421 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
422 F:      drivers/acpi/pmic/
423
424 ACPI THERMAL DRIVER
425 M:      Rafael J. Wysocki <rafael@kernel.org>
426 R:      Zhang Rui <rui.zhang@intel.com>
427 L:      linux-acpi@vger.kernel.org
428 S:      Supported
429 B:      https://bugzilla.kernel.org
430 F:      drivers/acpi/*thermal*
431
432 ACPI VIOT DRIVER
433 M:      Jean-Philippe Brucker <jean-philippe@linaro.org>
434 L:      linux-acpi@vger.kernel.org
435 L:      iommu@lists.linux.dev
436 S:      Maintained
437 F:      drivers/acpi/viot.c
438 F:      include/linux/acpi_viot.h
439
440 ACPI WMI DRIVER
441 L:      platform-driver-x86@vger.kernel.org
442 S:      Orphan
443 F:      drivers/platform/x86/wmi.c
444 F:      include/uapi/linux/wmi.h
445
446 ACRN HYPERVISOR SERVICE MODULE
447 M:      Fei Li <fei1.li@intel.com>
448 L:      acrn-dev@lists.projectacrn.org (subscribers-only)
449 S:      Supported
450 W:      https://projectacrn.org
451 F:      Documentation/virt/acrn/
452 F:      drivers/virt/acrn/
453 F:      include/uapi/linux/acrn.h
454
455 AD1889 ALSA SOUND DRIVER
456 L:      linux-parisc@vger.kernel.org
457 S:      Maintained
458 W:      https://parisc.wiki.kernel.org/index.php/AD1889
459 F:      sound/pci/ad1889.*
460
461 AD5110 ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
462 M:      Mugilraj Dhavachelvan <dmugil2000@gmail.com>
463 L:      linux-iio@vger.kernel.org
464 S:      Supported
465 F:      drivers/iio/potentiometer/ad5110.c
466
467 AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
468 M:      Michael Hennerich <michael.hennerich@analog.com>
469 S:      Supported
470 W:      http://wiki.analog.com/AD5254
471 W:      https://ez.analog.com/linux-software-drivers
472 F:      drivers/misc/ad525x_dpot.c
473
474 AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821)
475 M:      Michael Hennerich <michael.hennerich@analog.com>
476 S:      Supported
477 W:      http://wiki.analog.com/AD5398
478 W:      https://ez.analog.com/linux-software-drivers
479 F:      drivers/regulator/ad5398.c
480
481 AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A)
482 M:      Michael Hennerich <michael.hennerich@analog.com>
483 S:      Supported
484 W:      http://wiki.analog.com/AD7142
485 W:      https://ez.analog.com/linux-software-drivers
486 F:      drivers/input/misc/ad714x.c
487
488 AD7877 TOUCHSCREEN DRIVER
489 M:      Michael Hennerich <michael.hennerich@analog.com>
490 S:      Supported
491 W:      http://wiki.analog.com/AD7877
492 W:      https://ez.analog.com/linux-software-drivers
493 F:      drivers/input/touchscreen/ad7877.c
494
495 AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889)
496 M:      Michael Hennerich <michael.hennerich@analog.com>
497 S:      Supported
498 W:      http://wiki.analog.com/AD7879
499 W:      https://ez.analog.com/linux-software-drivers
500 F:      drivers/input/touchscreen/ad7879.c
501
502 ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR)
503 M:      Jiri Kosina <jikos@kernel.org>
504 S:      Maintained
505
506 ADF7242 IEEE 802.15.4 RADIO DRIVER
507 M:      Michael Hennerich <michael.hennerich@analog.com>
508 L:      linux-wpan@vger.kernel.org
509 S:      Supported
510 W:      https://wiki.analog.com/ADF7242
511 W:      https://ez.analog.com/linux-software-drivers
512 F:      Documentation/devicetree/bindings/net/ieee802154/adf7242.txt
513 F:      drivers/net/ieee802154/adf7242.c
514
515 ADM1025 HARDWARE MONITOR DRIVER
516 M:      Jean Delvare <jdelvare@suse.com>
517 L:      linux-hwmon@vger.kernel.org
518 S:      Maintained
519 F:      Documentation/hwmon/adm1025.rst
520 F:      drivers/hwmon/adm1025.c
521
522 ADM1029 HARDWARE MONITOR DRIVER
523 M:      Corentin Labbe <clabbe.montjoie@gmail.com>
524 L:      linux-hwmon@vger.kernel.org
525 S:      Maintained
526 F:      drivers/hwmon/adm1029.c
527
528 ADM8211 WIRELESS DRIVER
529 L:      linux-wireless@vger.kernel.org
530 S:      Orphan
531 W:      https://wireless.wiki.kernel.org/
532 F:      drivers/net/wireless/admtek/adm8211.*
533
534 ADP1653 FLASH CONTROLLER DRIVER
535 M:      Sakari Ailus <sakari.ailus@iki.fi>
536 L:      linux-media@vger.kernel.org
537 S:      Maintained
538 F:      drivers/media/i2c/adp1653.c
539 F:      include/media/i2c/adp1653.h
540
541 ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501)
542 M:      Michael Hennerich <michael.hennerich@analog.com>
543 S:      Supported
544 W:      http://wiki.analog.com/ADP5520
545 W:      https://ez.analog.com/linux-software-drivers
546 F:      drivers/gpio/gpio-adp5520.c
547 F:      drivers/input/keyboard/adp5520-keys.c
548 F:      drivers/leds/leds-adp5520.c
549 F:      drivers/mfd/adp5520.c
550 F:      drivers/video/backlight/adp5520_bl.c
551
552 ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587)
553 M:      Michael Hennerich <michael.hennerich@analog.com>
554 S:      Supported
555 W:      http://wiki.analog.com/ADP5588
556 W:      https://ez.analog.com/linux-software-drivers
557 F:      drivers/gpio/gpio-adp5588.c
558 F:      drivers/input/keyboard/adp5588-keys.c
559
560 ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863)
561 M:      Michael Hennerich <michael.hennerich@analog.com>
562 S:      Supported
563 W:      http://wiki.analog.com/ADP8860
564 W:      https://ez.analog.com/linux-software-drivers
565 F:      drivers/video/backlight/adp8860_bl.c
566
567 ADT746X FAN DRIVER
568 M:      Colin Leroy <colin@colino.net>
569 S:      Maintained
570 F:      drivers/macintosh/therm_adt746x.c
571
572 ADT7475 HARDWARE MONITOR DRIVER
573 M:      Jean Delvare <jdelvare@suse.com>
574 L:      linux-hwmon@vger.kernel.org
575 S:      Maintained
576 F:      Documentation/hwmon/adt7475.rst
577 F:      drivers/hwmon/adt7475.c
578
579 ADVANSYS SCSI DRIVER
580 M:      Matthew Wilcox <willy@infradead.org>
581 M:      Hannes Reinecke <hare@suse.com>
582 L:      linux-scsi@vger.kernel.org
583 S:      Maintained
584 F:      Documentation/scsi/advansys.rst
585 F:      drivers/scsi/advansys.c
586
587 ADVANTECH SWBTN DRIVER
588 M:      Andrea Ho <Andrea.Ho@advantech.com.tw>
589 L:      platform-driver-x86@vger.kernel.org
590 S:      Maintained
591 F:      drivers/platform/x86/adv_swbutton.c
592
593 ADXL313 THREE-AXIS DIGITAL ACCELEROMETER DRIVER
594 M:      Lucas Stankus <lucas.p.stankus@gmail.com>
595 S:      Supported
596 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl313.yaml
597 F:      drivers/iio/accel/adxl313*
598
599 ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346)
600 M:      Michael Hennerich <michael.hennerich@analog.com>
601 S:      Supported
602 W:      http://wiki.analog.com/ADXL345
603 W:      https://ez.analog.com/linux-software-drivers
604 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl345.yaml
605 F:      drivers/input/misc/adxl34x.c
606
607 ADXL355 THREE-AXIS DIGITAL ACCELEROMETER DRIVER
608 M:      Puranjay Mohan <puranjay12@gmail.com>
609 L:      linux-iio@vger.kernel.org
610 S:      Supported
611 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl355.yaml
612 F:      drivers/iio/accel/adxl355.h
613 F:      drivers/iio/accel/adxl355_core.c
614 F:      drivers/iio/accel/adxl355_i2c.c
615 F:      drivers/iio/accel/adxl355_spi.c
616
617 ADXL367 THREE-AXIS DIGITAL ACCELEROMETER DRIVER
618 M:      Cosmin Tanislav <cosmin.tanislav@analog.com>
619 L:      linux-iio@vger.kernel.org
620 S:      Supported
621 W:      http://ez.analog.com/community/linux-device-drivers
622 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl367.yaml
623 F:      drivers/iio/accel/adxl367*
624
625 ADXL372 THREE-AXIS DIGITAL ACCELEROMETER DRIVER
626 M:      Michael Hennerich <michael.hennerich@analog.com>
627 S:      Supported
628 W:      https://ez.analog.com/linux-software-drivers
629 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl372.yaml
630 F:      drivers/iio/accel/adxl372.c
631 F:      drivers/iio/accel/adxl372_i2c.c
632 F:      drivers/iio/accel/adxl372_spi.c
633
634 AF9013 MEDIA DRIVER
635 M:      Antti Palosaari <crope@iki.fi>
636 L:      linux-media@vger.kernel.org
637 S:      Maintained
638 W:      https://linuxtv.org
639 W:      http://palosaari.fi/linux/
640 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
641 T:      git git://linuxtv.org/anttip/media_tree.git
642 F:      drivers/media/dvb-frontends/af9013*
643
644 AF9033 MEDIA DRIVER
645 M:      Antti Palosaari <crope@iki.fi>
646 L:      linux-media@vger.kernel.org
647 S:      Maintained
648 W:      https://linuxtv.org
649 W:      http://palosaari.fi/linux/
650 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
651 T:      git git://linuxtv.org/anttip/media_tree.git
652 F:      drivers/media/dvb-frontends/af9033*
653
654 AFFS FILE SYSTEM
655 M:      David Sterba <dsterba@suse.com>
656 L:      linux-fsdevel@vger.kernel.org
657 S:      Odd Fixes
658 F:      Documentation/filesystems/affs.rst
659 F:      fs/affs/
660
661 AFS FILESYSTEM
662 M:      David Howells <dhowells@redhat.com>
663 M:      Marc Dionne <marc.dionne@auristor.com>
664 L:      linux-afs@lists.infradead.org
665 S:      Supported
666 W:      https://www.infradead.org/~dhowells/kafs/
667 F:      Documentation/filesystems/afs.rst
668 F:      fs/afs/
669 F:      include/trace/events/afs.h
670
671 AGPGART DRIVER
672 M:      David Airlie <airlied@redhat.com>
673 L:      dri-devel@lists.freedesktop.org
674 S:      Maintained
675 T:      git git://anongit.freedesktop.org/drm/drm
676 F:      drivers/char/agp/
677 F:      include/linux/agp*
678 F:      include/uapi/linux/agp*
679
680 AHA152X SCSI DRIVER
681 M:      "Juergen E. Fischer" <fischer@norbit.de>
682 L:      linux-scsi@vger.kernel.org
683 S:      Maintained
684 F:      drivers/scsi/aha152x*
685 F:      drivers/scsi/pcmcia/aha152x*
686
687 AIC7XXX / AIC79XX SCSI DRIVER
688 M:      Hannes Reinecke <hare@suse.com>
689 L:      linux-scsi@vger.kernel.org
690 S:      Maintained
691 F:      drivers/scsi/aic7xxx/
692
693 AIMSLAB FM RADIO RECEIVER DRIVER
694 M:      Hans Verkuil <hverkuil@xs4all.nl>
695 L:      linux-media@vger.kernel.org
696 S:      Maintained
697 W:      https://linuxtv.org
698 T:      git git://linuxtv.org/media_tree.git
699 F:      drivers/media/radio/radio-aimslab*
700
701 AIO
702 M:      Benjamin LaHaise <bcrl@kvack.org>
703 L:      linux-aio@kvack.org
704 S:      Supported
705 F:      fs/aio.c
706 F:      include/linux/*aio*.h
707
708 AIRSPY MEDIA DRIVER
709 M:      Antti Palosaari <crope@iki.fi>
710 L:      linux-media@vger.kernel.org
711 S:      Maintained
712 W:      https://linuxtv.org
713 W:      http://palosaari.fi/linux/
714 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
715 T:      git git://linuxtv.org/anttip/media_tree.git
716 F:      drivers/media/usb/airspy/
717
718 ALACRITECH GIGABIT ETHERNET DRIVER
719 M:      Lino Sanfilippo <LinoSanfilippo@gmx.de>
720 S:      Maintained
721 F:      drivers/net/ethernet/alacritech/*
722
723 ALCATEL SPEEDTOUCH USB DRIVER
724 M:      Duncan Sands <duncan.sands@free.fr>
725 L:      linux-usb@vger.kernel.org
726 S:      Maintained
727 W:      http://www.linux-usb.org/SpeedTouch/
728 F:      drivers/usb/atm/speedtch.c
729 F:      drivers/usb/atm/usbatm.c
730
731 ALCHEMY AU1XX0 MMC DRIVER
732 M:      Manuel Lauss <manuel.lauss@gmail.com>
733 S:      Maintained
734 F:      drivers/mmc/host/au1xmmc.c
735
736 ALI1563 I2C DRIVER
737 M:      Rudolf Marek <r.marek@assembler.cz>
738 L:      linux-i2c@vger.kernel.org
739 S:      Maintained
740 F:      Documentation/i2c/busses/i2c-ali1563.rst
741 F:      drivers/i2c/busses/i2c-ali1563.c
742
743 ALIBABA ELASTIC RDMA DRIVER
744 M:      Cheng Xu <chengyou@linux.alibaba.com>
745 M:      Kai Shen <kaishen@linux.alibaba.com>
746 L:      linux-rdma@vger.kernel.org
747 S:      Supported
748 F:      drivers/infiniband/hw/erdma
749 F:      include/uapi/rdma/erdma-abi.h
750
751 ALIENWARE WMI DRIVER
752 L:      Dell.Client.Kernel@dell.com
753 S:      Maintained
754 F:      drivers/platform/x86/dell/alienware-wmi.c
755
756 ALL SENSORS DLH SERIES PRESSURE SENSORS DRIVER
757 M:      Tomislav Denis <tomislav.denis@avl.com>
758 L:      linux-iio@vger.kernel.org
759 S:      Maintained
760 W:      http://www.allsensors.com/
761 F:      Documentation/devicetree/bindings/iio/pressure/asc,dlhl60d.yaml
762 F:      drivers/iio/pressure/dlhl60d.c
763
764 ALLEGRO DVT VIDEO IP CORE DRIVER
765 M:      Michael Tretter <m.tretter@pengutronix.de>
766 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
767 L:      linux-media@vger.kernel.org
768 S:      Maintained
769 F:      Documentation/devicetree/bindings/media/allegro,al5e.yaml
770 F:      drivers/media/platform/allegro-dvt/
771
772 ALLWINNER A10 CSI DRIVER
773 M:      Maxime Ripard <mripard@kernel.org>
774 L:      linux-media@vger.kernel.org
775 S:      Maintained
776 T:      git git://linuxtv.org/media_tree.git
777 F:      Documentation/devicetree/bindings/media/allwinner,sun4i-a10-csi.yaml
778 F:      drivers/media/platform/sunxi/sun4i-csi/
779
780 ALLWINNER A31 MIPI CSI-2 BRIDGE DRIVER
781 M:      Paul Kocialkowski <paul.kocialkowski@bootlin.com>
782 L:      linux-media@vger.kernel.org
783 S:      Maintained
784 T:      git git://linuxtv.org/media_tree.git
785 F:      Documentation/devicetree/bindings/media/allwinner,sun6i-a31-mipi-csi2.yaml
786 F:      drivers/media/platform/sunxi/sun6i-mipi-csi2/
787
788 ALLWINNER CPUFREQ DRIVER
789 M:      Yangtao Li <tiny.windzz@gmail.com>
790 L:      linux-pm@vger.kernel.org
791 S:      Maintained
792 F:      Documentation/devicetree/bindings/opp/allwinner,sun50i-h6-operating-points.yaml
793 F:      drivers/cpufreq/sun50i-cpufreq-nvmem.c
794
795 ALLWINNER CRYPTO DRIVERS
796 M:      Corentin Labbe <clabbe.montjoie@gmail.com>
797 L:      linux-crypto@vger.kernel.org
798 S:      Maintained
799 F:      drivers/crypto/allwinner/
800
801 ALLWINNER HARDWARE SPINLOCK SUPPORT
802 M:      Wilken Gottwalt <wilken.gottwalt@posteo.net>
803 S:      Maintained
804 F:      Documentation/devicetree/bindings/hwlock/allwinner,sun6i-a31-hwspinlock.yaml
805 F:      drivers/hwspinlock/sun6i_hwspinlock.c
806
807 ALLWINNER THERMAL DRIVER
808 M:      Vasily Khoruzhick <anarsoul@gmail.com>
809 M:      Yangtao Li <tiny.windzz@gmail.com>
810 L:      linux-pm@vger.kernel.org
811 S:      Maintained
812 F:      Documentation/devicetree/bindings/thermal/allwinner,sun8i-a83t-ths.yaml
813 F:      drivers/thermal/sun8i_thermal.c
814
815 ALLWINNER VPU DRIVER
816 M:      Maxime Ripard <mripard@kernel.org>
817 M:      Paul Kocialkowski <paul.kocialkowski@bootlin.com>
818 L:      linux-media@vger.kernel.org
819 S:      Maintained
820 F:      drivers/staging/media/sunxi/cedrus/
821
822 ALLWINNER DMIC DRIVERS
823 M:      Ban Tao <fengzheng923@gmail.com>
824 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
825 S:      Maintained
826 F:      Documentation/devicetree/bindings/sound/allwinner,sun50i-h6-dmic.yaml
827 F:      sound/soc/sunxi/sun50i-dmic.c
828
829 ALPHA PORT
830 M:      Richard Henderson <richard.henderson@linaro.org>
831 M:      Ivan Kokshaysky <ink@jurassic.park.msu.ru>
832 M:      Matt Turner <mattst88@gmail.com>
833 L:      linux-alpha@vger.kernel.org
834 S:      Odd Fixes
835 F:      arch/alpha/
836
837 ALPS PS/2 TOUCHPAD DRIVER
838 R:      Pali Rohár <pali@kernel.org>
839 F:      drivers/input/mouse/alps.*
840
841 ALTERA I2C CONTROLLER DRIVER
842 M:      Thor Thayer <thor.thayer@linux.intel.com>
843 S:      Maintained
844 F:      Documentation/devicetree/bindings/i2c/i2c-altera.txt
845 F:      drivers/i2c/busses/i2c-altera.c
846
847 ALTERA MAILBOX DRIVER
848 M:      Mun Yew Tham <mun.yew.tham@intel.com>
849 S:      Maintained
850 F:      drivers/mailbox/mailbox-altera.c
851
852 ALTERA MSGDMA IP CORE DRIVER
853 M:      Olivier Dautricourt <olivierdautricourt@gmail.com>
854 R:      Stefan Roese <sr@denx.de>
855 L:      dmaengine@vger.kernel.org
856 S:      Odd Fixes
857 F:      Documentation/devicetree/bindings/dma/altr,msgdma.yaml
858 F:      drivers/dma/altera-msgdma.c
859
860 ALTERA PIO DRIVER
861 M:      Mun Yew Tham <mun.yew.tham@intel.com>
862 L:      linux-gpio@vger.kernel.org
863 S:      Maintained
864 F:      drivers/gpio/gpio-altera.c
865
866 ALTERA SYSTEM MANAGER DRIVER
867 M:      Thor Thayer <thor.thayer@linux.intel.com>
868 S:      Maintained
869 F:      drivers/mfd/altera-sysmgr.c
870 F:      include/linux/mfd/altera-sysmgr.h
871
872 ALTERA SYSTEM RESOURCE DRIVER FOR ARRIA10 DEVKIT
873 M:      Thor Thayer <thor.thayer@linux.intel.com>
874 S:      Maintained
875 F:      drivers/gpio/gpio-altera-a10sr.c
876 F:      drivers/mfd/altera-a10sr.c
877 F:      drivers/reset/reset-a10sr.c
878 F:      include/dt-bindings/reset/altr,rst-mgr-a10sr.h
879 F:      include/linux/mfd/altera-a10sr.h
880
881 ALTERA TRIPLE SPEED ETHERNET DRIVER
882 M:      Joyce Ooi <joyce.ooi@intel.com>
883 L:      netdev@vger.kernel.org
884 S:      Maintained
885 F:      drivers/net/ethernet/altera/
886
887 ALTERA TSE PCS
888 M:      Maxime Chevallier <maxime.chevallier@bootlin.com>
889 L:      netdev@vger.kernel.org
890 S:      Supported
891 F:      drivers/net/pcs/pcs-altera-tse.c
892 F:      include/linux/pcs-altera-tse.h
893
894 ALTERA UART/JTAG UART SERIAL DRIVERS
895 M:      Tobias Klauser <tklauser@distanz.ch>
896 L:      linux-serial@vger.kernel.org
897 S:      Maintained
898 F:      drivers/tty/serial/altera_jtaguart.c
899 F:      drivers/tty/serial/altera_uart.c
900 F:      include/linux/altera_jtaguart.h
901 F:      include/linux/altera_uart.h
902
903 AMAZON ANNAPURNA LABS FIC DRIVER
904 M:      Talel Shenhar <talel@amazon.com>
905 S:      Maintained
906 F:      Documentation/devicetree/bindings/interrupt-controller/amazon,al-fic.txt
907 F:      drivers/irqchip/irq-al-fic.c
908
909 AMAZON ANNAPURNA LABS MEMORY CONTROLLER EDAC
910 M:      Talel Shenhar <talel@amazon.com>
911 M:      Talel Shenhar <talelshenhar@gmail.com>
912 S:      Maintained
913 F:      Documentation/devicetree/bindings/edac/amazon,al-mc-edac.yaml
914 F:      drivers/edac/al_mc_edac.c
915
916 AMAZON ANNAPURNA LABS THERMAL MMIO DRIVER
917 M:      Talel Shenhar <talel@amazon.com>
918 S:      Maintained
919 F:      Documentation/devicetree/bindings/thermal/amazon,al-thermal.txt
920 F:      drivers/thermal/thermal_mmio.c
921
922 AMAZON ETHERNET DRIVERS
923 M:      Shay Agroskin <shayagr@amazon.com>
924 M:      Arthur Kiyanovski <akiyano@amazon.com>
925 R:      David Arinzon <darinzon@amazon.com>
926 R:      Noam Dagan <ndagan@amazon.com>
927 R:      Saeed Bishara <saeedb@amazon.com>
928 L:      netdev@vger.kernel.org
929 S:      Supported
930 F:      Documentation/networking/device_drivers/ethernet/amazon/ena.rst
931 F:      drivers/net/ethernet/amazon/
932
933 AMAZON RDMA EFA DRIVER
934 M:      Gal Pressman <galpress@amazon.com>
935 R:      Yossi Leybovich <sleybo@amazon.com>
936 L:      linux-rdma@vger.kernel.org
937 S:      Supported
938 Q:      https://patchwork.kernel.org/project/linux-rdma/list/
939 F:      drivers/infiniband/hw/efa/
940 F:      include/uapi/rdma/efa-abi.h
941
942 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER
943 M:      Tom Lendacky <thomas.lendacky@amd.com>
944 M:      John Allen <john.allen@amd.com>
945 L:      linux-crypto@vger.kernel.org
946 S:      Supported
947 F:      drivers/crypto/ccp/
948 F:      include/linux/ccp.h
949
950 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER - SEV SUPPORT
951 M:      Brijesh Singh <brijesh.singh@amd.com>
952 M:      Tom Lendacky <thomas.lendacky@amd.com>
953 L:      linux-crypto@vger.kernel.org
954 S:      Supported
955 F:      drivers/crypto/ccp/sev*
956 F:      include/uapi/linux/psp-sev.h
957
958 AMD DISPLAY CORE
959 M:      Harry Wentland <harry.wentland@amd.com>
960 M:      Leo Li <sunpeng.li@amd.com>
961 M:      Rodrigo Siqueira <Rodrigo.Siqueira@amd.com>
962 L:      amd-gfx@lists.freedesktop.org
963 S:      Supported
964 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
965 F:      drivers/gpu/drm/amd/display/
966
967 AMD FAM15H PROCESSOR POWER MONITORING DRIVER
968 M:      Huang Rui <ray.huang@amd.com>
969 L:      linux-hwmon@vger.kernel.org
970 S:      Supported
971 F:      Documentation/hwmon/fam15h_power.rst
972 F:      drivers/hwmon/fam15h_power.c
973
974 AMD FCH GPIO DRIVER
975 M:      Enrico Weigelt, metux IT consult <info@metux.net>
976 L:      linux-gpio@vger.kernel.org
977 S:      Maintained
978 F:      drivers/gpio/gpio-amd-fch.c
979 F:      include/linux/platform_data/gpio/gpio-amd-fch.h
980
981 AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
982 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
983 S:      Orphan
984 F:      drivers/usb/gadget/udc/amd5536udc.*
985
986 AMD GEODE PROCESSOR/CHIPSET SUPPORT
987 M:      Andres Salomon <dilinger@queued.net>
988 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
989 S:      Supported
990 W:      http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
991 F:      arch/x86/include/asm/geode.h
992 F:      drivers/char/hw_random/geode-rng.c
993 F:      drivers/crypto/geode*
994 F:      drivers/video/fbdev/geode/
995
996 AMD IOMMU (AMD-VI)
997 M:      Joerg Roedel <joro@8bytes.org>
998 R:      Suravee Suthikulpanit <suravee.suthikulpanit@amd.com>
999 L:      iommu@lists.linux.dev
1000 S:      Maintained
1001 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
1002 F:      drivers/iommu/amd/
1003 F:      include/linux/amd-iommu.h
1004
1005 AMD KFD
1006 M:      Felix Kuehling <Felix.Kuehling@amd.com>
1007 L:      amd-gfx@lists.freedesktop.org
1008 S:      Supported
1009 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
1010 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd*.[ch]
1011 F:      drivers/gpu/drm/amd/amdkfd/
1012 F:      drivers/gpu/drm/amd/include/cik_structs.h
1013 F:      drivers/gpu/drm/amd/include/kgd_kfd_interface.h
1014 F:      drivers/gpu/drm/amd/include/v9_structs.h
1015 F:      drivers/gpu/drm/amd/include/vi_structs.h
1016 F:      include/uapi/linux/kfd_ioctl.h
1017 F:      include/uapi/linux/kfd_sysfs.h
1018
1019 AMD SPI DRIVER
1020 M:      Sanjay R Mehta <sanju.mehta@amd.com>
1021 S:      Maintained
1022 F:      drivers/spi/spi-amd.c
1023
1024 AMD MP2 I2C DRIVER
1025 M:      Elie Morisse <syniurge@gmail.com>
1026 M:      Shyam Sundar S K <shyam-sundar.s-k@amd.com>
1027 L:      linux-i2c@vger.kernel.org
1028 S:      Maintained
1029 F:      drivers/i2c/busses/i2c-amd-mp2*
1030
1031 AMD PMC DRIVER
1032 M:      Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
1033 L:      platform-driver-x86@vger.kernel.org
1034 S:      Maintained
1035 F:      drivers/platform/x86/amd/pmc.c
1036
1037 AMD PMF DRIVER
1038 M:      Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
1039 L:      platform-driver-x86@vger.kernel.org
1040 S:      Maintained
1041 F:      Documentation/ABI/testing/sysfs-amd-pmf
1042 F:      drivers/platform/x86/amd/pmf/
1043
1044 AMD HSMP DRIVER
1045 M:      Naveen Krishna Chatradhi <naveenkrishna.chatradhi@amd.com>
1046 R:      Carlos Bilbao <carlos.bilbao@amd.com>
1047 L:      platform-driver-x86@vger.kernel.org
1048 S:      Maintained
1049 F:      Documentation/x86/amd_hsmp.rst
1050 F:      arch/x86/include/asm/amd_hsmp.h
1051 F:      arch/x86/include/uapi/asm/amd_hsmp.h
1052 F:      drivers/platform/x86/amd/hsmp.c
1053
1054 AMD POWERPLAY AND SWSMU
1055 M:      Evan Quan <evan.quan@amd.com>
1056 L:      amd-gfx@lists.freedesktop.org
1057 S:      Supported
1058 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
1059 F:      drivers/gpu/drm/amd/pm/
1060
1061 AMD PSTATE DRIVER
1062 M:      Huang Rui <ray.huang@amd.com>
1063 L:      linux-pm@vger.kernel.org
1064 S:      Supported
1065 F:      Documentation/admin-guide/pm/amd-pstate.rst
1066 F:      drivers/cpufreq/amd-pstate*
1067 F:      tools/power/x86/amd_pstate_tracer/amd_pstate_trace.py
1068
1069 AMD PTDMA DRIVER
1070 M:      Sanjay R Mehta <sanju.mehta@amd.com>
1071 L:      dmaengine@vger.kernel.org
1072 S:      Maintained
1073 F:      drivers/dma/ptdma/
1074
1075 AMD SEATTLE DEVICE TREE SUPPORT
1076 M:      Brijesh Singh <brijeshkumar.singh@amd.com>
1077 M:      Suravee Suthikulpanit <suravee.suthikulpanit@amd.com>
1078 M:      Tom Lendacky <thomas.lendacky@amd.com>
1079 S:      Supported
1080 F:      arch/arm64/boot/dts/amd/
1081
1082 AMD XGBE DRIVER
1083 M:      Tom Lendacky <thomas.lendacky@amd.com>
1084 M:      "Shyam Sundar S K" <Shyam-sundar.S-k@amd.com>
1085 L:      netdev@vger.kernel.org
1086 S:      Supported
1087 F:      arch/arm64/boot/dts/amd/amd-seattle-xgbe*.dtsi
1088 F:      drivers/net/ethernet/amd/xgbe/
1089
1090 AMD SENSOR FUSION HUB DRIVER
1091 M:      Basavaraj Natikar <basavaraj.natikar@amd.com>
1092 L:      linux-input@vger.kernel.org
1093 S:      Maintained
1094 F:      Documentation/hid/amd-sfh*
1095 F:      drivers/hid/amd-sfh-hid/
1096
1097 AMPHION VPU CODEC V4L2 DRIVER
1098 M:      Ming Qian <ming.qian@nxp.com>
1099 M:      Shijie Qin <shijie.qin@nxp.com>
1100 M:      Zhou Peng <eagle.zhou@nxp.com>
1101 L:      linux-media@vger.kernel.org
1102 S:      Maintained
1103 F:      Documentation/devicetree/bindings/media/amphion,vpu.yaml
1104 F:      drivers/media/platform/amphion/
1105
1106 AMS AS73211 DRIVER
1107 M:      Christian Eggers <ceggers@arri.de>
1108 L:      linux-iio@vger.kernel.org
1109 S:      Maintained
1110 F:      Documentation/devicetree/bindings/iio/light/ams,as73211.yaml
1111 F:      drivers/iio/light/as73211.c
1112
1113 AMT (Automatic Multicast Tunneling)
1114 M:      Taehee Yoo <ap420073@gmail.com>
1115 L:      netdev@vger.kernel.org
1116 S:      Maintained
1117 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
1118 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
1119 F:      drivers/net/amt.c
1120
1121 ANALOG DEVICES INC AD7192 DRIVER
1122 M:      Alexandru Tachici <alexandru.tachici@analog.com>
1123 L:      linux-iio@vger.kernel.org
1124 S:      Supported
1125 W:      https://ez.analog.com/linux-software-drivers
1126 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7192.yaml
1127 F:      drivers/iio/adc/ad7192.c
1128
1129 ANALOG DEVICES INC AD7292 DRIVER
1130 M:      Marcelo Schmitt <marcelo.schmitt1@gmail.com>
1131 L:      linux-iio@vger.kernel.org
1132 S:      Supported
1133 W:      https://ez.analog.com/linux-software-drivers
1134 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7292.yaml
1135 F:      drivers/iio/adc/ad7292.c
1136
1137 ANALOG DEVICES INC AD3552R DRIVER
1138 M:      Nuno Sá <nuno.sa@analog.com>
1139 L:      linux-iio@vger.kernel.org
1140 S:      Supported
1141 W:      https://ez.analog.com/linux-software-drivers
1142 F:      Documentation/devicetree/bindings/iio/dac/adi,ad3552r.yaml
1143 F:      drivers/iio/dac/ad3552r.c
1144
1145 ANALOG DEVICES INC AD7293 DRIVER
1146 M:      Antoniu Miclaus <antoniu.miclaus@analog.com>
1147 L:      linux-iio@vger.kernel.org
1148 S:      Supported
1149 W:      https://ez.analog.com/linux-software-drivers
1150 F:      Documentation/devicetree/bindings/iio/dac/adi,ad7293.yaml
1151 F:      drivers/iio/dac/ad7293.c
1152
1153 ANALOG DEVICES INC AD7768-1 DRIVER
1154 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1155 L:      linux-iio@vger.kernel.org
1156 S:      Supported
1157 W:      https://ez.analog.com/linux-software-drivers
1158 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7768-1.yaml
1159 F:      drivers/iio/adc/ad7768-1.c
1160
1161 ANALOG DEVICES INC AD7780 DRIVER
1162 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1163 M:      Renato Lui Geh <renatogeh@gmail.com>
1164 L:      linux-iio@vger.kernel.org
1165 S:      Supported
1166 W:      https://ez.analog.com/linux-software-drivers
1167 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7780.yaml
1168 F:      drivers/iio/adc/ad7780.c
1169
1170 ANALOG DEVICES INC AD74413R DRIVER
1171 M:      Cosmin Tanislav <cosmin.tanislav@analog.com>
1172 L:      linux-iio@vger.kernel.org
1173 S:      Supported
1174 W:      http://ez.analog.com/community/linux-device-drivers
1175 F:      Documentation/devicetree/bindings/iio/addac/adi,ad74413r.yaml
1176 F:      drivers/iio/addac/ad74413r.c
1177 F:      include/dt-bindings/iio/addac/adi,ad74413r.h
1178
1179 ANALOG DEVICES INC AD9389B DRIVER
1180 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1181 L:      linux-media@vger.kernel.org
1182 S:      Maintained
1183 F:      drivers/media/i2c/ad9389b*
1184
1185 ANALOG DEVICES INC ADA4250 DRIVER
1186 M:      Antoniu Miclaus <antoniu.miclaus@analog.com>
1187 L:      linux-iio@vger.kernel.org
1188 S:      Supported
1189 W:      https://ez.analog.com/linux-software-drivers
1190 F:      Documentation/devicetree/bindings/iio/amplifiers/adi,ada4250.yaml
1191 F:      drivers/iio/amplifiers/ada4250.c
1192
1193 ANALOG DEVICES INC ADGS1408 DRIVER
1194 M:      Mircea Caprioru <mircea.caprioru@analog.com>
1195 S:      Supported
1196 F:      Documentation/devicetree/bindings/mux/adi,adgs1408.txt
1197 F:      drivers/mux/adgs1408.c
1198
1199 ANALOG DEVICES INC ADIN DRIVER
1200 M:      Michael Hennerich <michael.hennerich@analog.com>
1201 L:      netdev@vger.kernel.org
1202 S:      Supported
1203 W:      https://ez.analog.com/linux-software-drivers
1204 F:      Documentation/devicetree/bindings/net/adi,adin.yaml
1205 F:      drivers/net/phy/adin.c
1206
1207 ANALOG DEVICES INC ADIS DRIVER LIBRARY
1208 M:      Nuno Sa <nuno.sa@analog.com>
1209 L:      linux-iio@vger.kernel.org
1210 S:      Supported
1211 F:      drivers/iio/imu/adis.c
1212 F:      drivers/iio/imu/adis_buffer.c
1213 F:      drivers/iio/imu/adis_trigger.c
1214 F:      include/linux/iio/imu/adis.h
1215
1216 ANALOG DEVICES INC ADIS16460 DRIVER
1217 M:      Dragos Bogdan <dragos.bogdan@analog.com>
1218 L:      linux-iio@vger.kernel.org
1219 S:      Supported
1220 W:      https://ez.analog.com/linux-software-drivers
1221 F:      Documentation/devicetree/bindings/iio/imu/adi,adis16460.yaml
1222 F:      drivers/iio/imu/adis16460.c
1223
1224 ANALOG DEVICES INC ADIS16475 DRIVER
1225 M:      Nuno Sa <nuno.sa@analog.com>
1226 L:      linux-iio@vger.kernel.org
1227 W:      https://ez.analog.com/linux-software-drivers
1228 S:      Supported
1229 F:      drivers/iio/imu/adis16475.c
1230 F:      Documentation/devicetree/bindings/iio/imu/adi,adis16475.yaml
1231
1232 ANALOG DEVICES INC ADM1177 DRIVER
1233 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1234 L:      linux-hwmon@vger.kernel.org
1235 S:      Supported
1236 W:      https://ez.analog.com/linux-software-drivers
1237 F:      Documentation/devicetree/bindings/hwmon/adi,adm1177.yaml
1238 F:      drivers/hwmon/adm1177.c
1239
1240 ANALOG DEVICES INC ADMV1013 DRIVER
1241 M:      Antoniu Miclaus <antoniu.miclaus@analog.com>
1242 L:      linux-iio@vger.kernel.org
1243 S:      Supported
1244 W:      https://ez.analog.com/linux-software-drivers
1245 F:      Documentation/devicetree/bindings/iio/frequency/adi,admv1013.yaml
1246 F:      drivers/iio/frequency/admv1013.c
1247
1248 ANALOG DEVICES INC ADMV8818 DRIVER
1249 M:      Antoniu Miclaus <antoniu.miclaus@analog.com>
1250 L:      linux-iio@vger.kernel.org
1251 S:      Supported
1252 W:      https://ez.analog.com/linux-software-drivers
1253 F:      Documentation/devicetree/bindings/iio/filter/adi,admv8818.yaml
1254 F:      drivers/iio/filter/admv8818.c
1255
1256 ANALOG DEVICES INC ADMV1014 DRIVER
1257 M:      Antoniu Miclaus <antoniu.miclaus@analog.com>
1258 L:      linux-iio@vger.kernel.org
1259 S:      Supported
1260 W:      https://ez.analog.com/linux-software-drivers
1261 F:      Documentation/devicetree/bindings/iio/frequency/adi,admv1014.yaml
1262 F:      drivers/iio/frequency/admv1014.c
1263
1264 ANALOG DEVICES INC ADP5061 DRIVER
1265 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1266 L:      linux-pm@vger.kernel.org
1267 S:      Supported
1268 W:      https://ez.analog.com/linux-software-drivers
1269 F:      drivers/power/supply/adp5061.c
1270
1271 ANALOG DEVICES INC ADRF6780 DRIVER
1272 M:      Antoniu Miclaus <antoniu.miclaus@analog.com>
1273 L:      linux-iio@vger.kernel.org
1274 S:      Supported
1275 W:      https://ez.analog.com/linux-software-drivers
1276 F:      Documentation/devicetree/bindings/iio/frequency/adi,adrf6780.yaml
1277 F:      drivers/iio/frequency/adrf6780.c
1278
1279 ANALOG DEVICES INC ADV7180 DRIVER
1280 M:      Lars-Peter Clausen <lars@metafoo.de>
1281 L:      linux-media@vger.kernel.org
1282 S:      Supported
1283 W:      https://ez.analog.com/linux-software-drivers
1284 F:      drivers/media/i2c/adv7180.c
1285 F:      Documentation/devicetree/bindings/media/i2c/adv7180.yaml
1286
1287 ANALOG DEVICES INC ADV748X DRIVER
1288 M:      Kieran Bingham <kieran.bingham@ideasonboard.com>
1289 L:      linux-media@vger.kernel.org
1290 S:      Maintained
1291 F:      Documentation/devicetree/bindings/media/i2c/adv748x.yaml
1292 F:      drivers/media/i2c/adv748x/*
1293
1294 ANALOG DEVICES INC ADV7511 DRIVER
1295 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1296 L:      linux-media@vger.kernel.org
1297 S:      Maintained
1298 F:      drivers/media/i2c/adv7511*
1299
1300 ANALOG DEVICES INC ADV7604 DRIVER
1301 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1302 L:      linux-media@vger.kernel.org
1303 S:      Maintained
1304 F:      drivers/media/i2c/adv7604*
1305 F:      Documentation/devicetree/bindings/media/i2c/adv7604.yaml
1306
1307 ANALOG DEVICES INC ADV7842 DRIVER
1308 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1309 L:      linux-media@vger.kernel.org
1310 S:      Maintained
1311 F:      drivers/media/i2c/adv7842*
1312
1313 ANALOG DEVICES INC ADXRS290 DRIVER
1314 M:      Nishant Malpani <nish.malpani25@gmail.com>
1315 L:      linux-iio@vger.kernel.org
1316 S:      Supported
1317 F:      drivers/iio/gyro/adxrs290.c
1318 F:      Documentation/devicetree/bindings/iio/gyroscope/adi,adxrs290.yaml
1319
1320 ANALOG DEVICES INC ASOC CODEC DRIVERS
1321 M:      Lars-Peter Clausen <lars@metafoo.de>
1322 M:      Nuno Sá <nuno.sa@analog.com>
1323 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1324 S:      Supported
1325 W:      http://wiki.analog.com/
1326 W:      https://ez.analog.com/linux-software-drivers
1327 F:      sound/soc/codecs/ad1*
1328 F:      sound/soc/codecs/ad7*
1329 F:      sound/soc/codecs/adau*
1330 F:      sound/soc/codecs/adav*
1331 F:      sound/soc/codecs/sigmadsp.*
1332 F:      sound/soc/codecs/ssm*
1333
1334 ANALOG DEVICES INC DMA DRIVERS
1335 M:      Lars-Peter Clausen <lars@metafoo.de>
1336 S:      Supported
1337 W:      https://ez.analog.com/linux-software-drivers
1338 F:      drivers/dma/dma-axi-dmac.c
1339
1340 ANALOG DEVICES INC IIO DRIVERS
1341 M:      Lars-Peter Clausen <lars@metafoo.de>
1342 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1343 S:      Supported
1344 W:      http://wiki.analog.com/
1345 W:      https://ez.analog.com/linux-software-drivers
1346 F:      Documentation/ABI/testing/sysfs-bus-iio-frequency-ad9523
1347 F:      Documentation/ABI/testing/sysfs-bus-iio-frequency-adf4350
1348 F:      Documentation/devicetree/bindings/iio/*/adi,*
1349 F:      Documentation/devicetree/bindings/iio/dac/adi,ad5758.yaml
1350 F:      drivers/iio/*/ad*
1351 F:      drivers/iio/adc/ltc249*
1352 F:      drivers/iio/amplifiers/hmc425a.c
1353 F:      drivers/staging/iio/*/ad*
1354 X:      drivers/iio/*/adjd*
1355
1356 ANALOG DEVICES INC MAX31760 DRIVER
1357 M:      Ibrahim Tilki <Ibrahim.Tilki@analog.com>
1358 S:      Maintained
1359 W:      http://wiki.analog.com/
1360 W:      https://ez.analog.com/linux-software-drivers
1361 F:      Documentation/devicetree/bindings/hwmon/adi,max31760.yaml
1362 F:      Documentation/hwmon/max31760.rst
1363 F:      drivers/hwmon/max31760.c
1364
1365 ANALOGBITS PLL LIBRARIES
1366 M:      Paul Walmsley <paul.walmsley@sifive.com>
1367 S:      Supported
1368 F:      drivers/clk/analogbits/*
1369 F:      include/linux/clk/analogbits*
1370
1371 ANDROID CONFIG FRAGMENTS
1372 M:      Rob Herring <robh@kernel.org>
1373 S:      Supported
1374 F:      kernel/configs/android*
1375
1376 ANDROID DRIVERS
1377 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
1378 M:      Arve Hjønnevåg <arve@android.com>
1379 M:      Todd Kjos <tkjos@android.com>
1380 M:      Martijn Coenen <maco@android.com>
1381 M:      Joel Fernandes <joel@joelfernandes.org>
1382 M:      Christian Brauner <christian@brauner.io>
1383 M:      Carlos Llamas <cmllamas@google.com>
1384 M:      Suren Baghdasaryan <surenb@google.com>
1385 L:      linux-kernel@vger.kernel.org
1386 S:      Supported
1387 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
1388 F:      drivers/android/
1389
1390 ANDROID GOLDFISH PIC DRIVER
1391 M:      Miodrag Dinic <miodrag.dinic@mips.com>
1392 S:      Supported
1393 F:      Documentation/devicetree/bindings/interrupt-controller/google,goldfish-pic.txt
1394 F:      drivers/irqchip/irq-goldfish-pic.c
1395
1396 ANDROID GOLDFISH RTC DRIVER
1397 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
1398 S:      Supported
1399 F:      Documentation/devicetree/bindings/rtc/google,goldfish-rtc.txt
1400 F:      drivers/rtc/rtc-goldfish.c
1401
1402 AOA (Apple Onboard Audio) ALSA DRIVER
1403 M:      Johannes Berg <johannes@sipsolutions.net>
1404 L:      linuxppc-dev@lists.ozlabs.org
1405 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1406 S:      Maintained
1407 F:      sound/aoa/
1408
1409 APEX EMBEDDED SYSTEMS STX104 IIO DRIVER
1410 M:      William Breathitt Gray <william.gray@linaro.org>
1411 L:      linux-iio@vger.kernel.org
1412 S:      Maintained
1413 F:      drivers/iio/adc/stx104.c
1414
1415 APM DRIVER
1416 M:      Jiri Kosina <jikos@kernel.org>
1417 S:      Odd fixes
1418 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/apm.git
1419 F:      arch/x86/kernel/apm_32.c
1420 F:      drivers/char/apm-emulation.c
1421 F:      include/linux/apm_bios.h
1422 F:      include/uapi/linux/apm_bios.h
1423
1424 APPARMOR SECURITY MODULE
1425 M:      John Johansen <john.johansen@canonical.com>
1426 M:      John Johansen <john@apparmor.net>
1427 L:      apparmor@lists.ubuntu.com (moderated for non-subscribers)
1428 S:      Supported
1429 W:      apparmor.net
1430 B:      https://gitlab.com/apparmor/apparmor-kernel
1431 C:      irc://irc.oftc.net/apparmor
1432 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jj/linux-apparmor
1433 T:      https://gitlab.com/apparmor/apparmor-kernel.git
1434 F:      Documentation/admin-guide/LSM/apparmor.rst
1435 F:      security/apparmor/
1436
1437 APPLE BCM5974 MULTITOUCH DRIVER
1438 M:      Henrik Rydberg <rydberg@bitmath.org>
1439 L:      linux-input@vger.kernel.org
1440 S:      Odd fixes
1441 F:      drivers/input/mouse/bcm5974.c
1442
1443 APPLE PCIE CONTROLLER DRIVER
1444 M:      Alyssa Rosenzweig <alyssa@rosenzweig.io>
1445 M:      Marc Zyngier <maz@kernel.org>
1446 L:      linux-pci@vger.kernel.org
1447 S:      Maintained
1448 F:      drivers/pci/controller/pcie-apple.c
1449
1450 APPLE SMC DRIVER
1451 M:      Henrik Rydberg <rydberg@bitmath.org>
1452 L:      linux-hwmon@vger.kernel.org
1453 S:      Odd fixes
1454 F:      drivers/hwmon/applesmc.c
1455
1456 APPLETALK NETWORK LAYER
1457 L:      netdev@vger.kernel.org
1458 S:      Odd fixes
1459 F:      drivers/net/appletalk/
1460 F:      include/linux/atalk.h
1461 F:      include/uapi/linux/atalk.h
1462 F:      net/appletalk/
1463
1464 APPLIED MICRO (APM) X-GENE DEVICE TREE SUPPORT
1465 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1466 S:      Supported
1467 F:      arch/arm64/boot/dts/apm/
1468
1469 APPLIED MICRO (APM) X-GENE SOC EDAC
1470 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1471 S:      Supported
1472 F:      Documentation/devicetree/bindings/edac/apm-xgene-edac.txt
1473 F:      drivers/edac/xgene_edac.c
1474
1475 APPLIED MICRO (APM) X-GENE SOC ETHERNET (V2) DRIVER
1476 M:      Iyappan Subramanian <iyappan@os.amperecomputing.com>
1477 M:      Keyur Chudgar <keyur@os.amperecomputing.com>
1478 S:      Supported
1479 F:      drivers/net/ethernet/apm/xgene-v2/
1480
1481 APPLIED MICRO (APM) X-GENE SOC ETHERNET DRIVER
1482 M:      Iyappan Subramanian <iyappan@os.amperecomputing.com>
1483 M:      Keyur Chudgar <keyur@os.amperecomputing.com>
1484 M:      Quan Nguyen <quan@os.amperecomputing.com>
1485 S:      Supported
1486 F:      Documentation/devicetree/bindings/net/apm-xgene-enet.txt
1487 F:      Documentation/devicetree/bindings/net/apm-xgene-mdio.txt
1488 F:      drivers/net/ethernet/apm/xgene/
1489 F:      drivers/net/mdio/mdio-xgene.c
1490
1491 APPLIED MICRO (APM) X-GENE SOC PMU
1492 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1493 S:      Supported
1494 F:      Documentation/admin-guide/perf/xgene-pmu.rst
1495 F:      Documentation/devicetree/bindings/perf/apm-xgene-pmu.txt
1496 F:      drivers/perf/xgene_pmu.c
1497
1498 APTINA CAMERA SENSOR PLL
1499 M:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
1500 L:      linux-media@vger.kernel.org
1501 S:      Maintained
1502 F:      drivers/media/i2c/aptina-pll.*
1503
1504 AQUACOMPUTER D5 NEXT PUMP SENSOR DRIVER
1505 M:      Aleksa Savic <savicaleksa83@gmail.com>
1506 M:      Jack Doan <me@jackdoan.com>
1507 L:      linux-hwmon@vger.kernel.org
1508 S:      Maintained
1509 F:      Documentation/hwmon/aquacomputer_d5next.rst
1510 F:      drivers/hwmon/aquacomputer_d5next.c
1511
1512 AQUANTIA ETHERNET DRIVER (atlantic)
1513 M:      Igor Russkikh <irusskikh@marvell.com>
1514 L:      netdev@vger.kernel.org
1515 S:      Supported
1516 W:      https://www.marvell.com/
1517 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
1518 F:      Documentation/networking/device_drivers/ethernet/aquantia/atlantic.rst
1519 F:      drivers/net/ethernet/aquantia/atlantic/
1520
1521 AQUANTIA ETHERNET DRIVER PTP SUBSYSTEM
1522 M:      Egor Pomozov <epomozov@marvell.com>
1523 L:      netdev@vger.kernel.org
1524 S:      Supported
1525 W:      http://www.aquantia.com
1526 F:      drivers/net/ethernet/aquantia/atlantic/aq_ptp*
1527
1528 AR0521 ON SEMICONDUCTOR CAMERA SENSOR DRIVER
1529 M:      Krzysztof Hałasa <khalasa@piap.pl>
1530 L:      linux-media@vger.kernel.org
1531 S:      Maintained
1532 F:      Documentation/devicetree/bindings/media/i2c/onnn,ar0521.yaml
1533 F:      drivers/media/i2c/ar0521.c
1534
1535 ARASAN NAND CONTROLLER DRIVER
1536 M:      Miquel Raynal <miquel.raynal@bootlin.com>
1537 M:      Naga Sureshkumar Relli <nagasure@xilinx.com>
1538 L:      linux-mtd@lists.infradead.org
1539 S:      Maintained
1540 F:      Documentation/devicetree/bindings/mtd/arasan,nand-controller.yaml
1541 F:      drivers/mtd/nand/raw/arasan-nand-controller.c
1542
1543 ARC FRAMEBUFFER DRIVER
1544 M:      Jaya Kumar <jayalk@intworks.biz>
1545 S:      Maintained
1546 F:      drivers/video/fbdev/arcfb.c
1547 F:      drivers/video/fbdev/core/fb_defio.c
1548
1549 ARC PGU DRM DRIVER
1550 M:      Alexey Brodkin <abrodkin@synopsys.com>
1551 S:      Supported
1552 F:      Documentation/devicetree/bindings/display/snps,arcpgu.txt
1553 F:      drivers/gpu/drm/tiny/arcpgu.c
1554
1555 ARCNET NETWORK LAYER
1556 M:      Michael Grzeschik <m.grzeschik@pengutronix.de>
1557 L:      netdev@vger.kernel.org
1558 S:      Maintained
1559 F:      drivers/net/arcnet/
1560 F:      include/uapi/linux/if_arcnet.h
1561
1562 ARM ARCHITECTED TIMER DRIVER
1563 M:      Mark Rutland <mark.rutland@arm.com>
1564 M:      Marc Zyngier <maz@kernel.org>
1565 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1566 S:      Maintained
1567 F:      arch/arm/include/asm/arch_timer.h
1568 F:      arch/arm64/include/asm/arch_timer.h
1569 F:      drivers/clocksource/arm_arch_timer.c
1570
1571 ARM HDLCD DRM DRIVER
1572 M:      Liviu Dudau <liviu.dudau@arm.com>
1573 S:      Supported
1574 F:      Documentation/devicetree/bindings/display/arm,hdlcd.yaml
1575 F:      drivers/gpu/drm/arm/hdlcd_*
1576
1577 ARM INTEGRATOR, VERSATILE AND REALVIEW SUPPORT
1578 M:      Linus Walleij <linus.walleij@linaro.org>
1579 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1580 S:      Maintained
1581 F:      Documentation/devicetree/bindings/arm/arm,integrator.yaml
1582 F:      Documentation/devicetree/bindings/arm/arm,realview.yaml
1583 F:      Documentation/devicetree/bindings/arm/arm,versatile.yaml
1584 F:      Documentation/devicetree/bindings/arm/arm,vexpress-juno.yaml
1585 F:      Documentation/devicetree/bindings/auxdisplay/arm,versatile-lcd.yaml
1586 F:      Documentation/devicetree/bindings/clock/arm,syscon-icst.yaml
1587 F:      Documentation/devicetree/bindings/i2c/arm,i2c-versatile.yaml
1588 F:      Documentation/devicetree/bindings/interrupt-controller/arm,versatile-fpga-irq.txt
1589 F:      Documentation/devicetree/bindings/mtd/mtd-physmap.yaml
1590 F:      arch/arm/boot/dts/arm-realview-*
1591 F:      arch/arm/boot/dts/integrator*
1592 F:      arch/arm/boot/dts/versatile*
1593 F:      arch/arm/mach-versatile/
1594 F:      drivers/bus/arm-integrator-lm.c
1595 F:      drivers/clk/versatile/
1596 F:      drivers/i2c/busses/i2c-versatile.c
1597 F:      drivers/irqchip/irq-versatile-fpga.c
1598 F:      drivers/mtd/maps/physmap-versatile.*
1599 F:      drivers/power/reset/arm-versatile-reboot.c
1600 F:      drivers/soc/versatile/
1601
1602 ARM KOMEDA DRM-KMS DRIVER
1603 M:      James (Qian) Wang <james.qian.wang@arm.com>
1604 M:      Liviu Dudau <liviu.dudau@arm.com>
1605 M:      Mihail Atanassov <mihail.atanassov@arm.com>
1606 L:      Mali DP Maintainers <malidp@foss.arm.com>
1607 S:      Supported
1608 T:      git git://anongit.freedesktop.org/drm/drm-misc
1609 F:      Documentation/devicetree/bindings/display/arm,komeda.yaml
1610 F:      Documentation/gpu/komeda-kms.rst
1611 F:      drivers/gpu/drm/arm/display/include/
1612 F:      drivers/gpu/drm/arm/display/komeda/
1613
1614 ARM MALI PANFROST DRM DRIVER
1615 M:      Rob Herring <robh@kernel.org>
1616 M:      Tomeu Vizoso <tomeu.vizoso@collabora.com>
1617 R:      Steven Price <steven.price@arm.com>
1618 R:      Alyssa Rosenzweig <alyssa.rosenzweig@collabora.com>
1619 L:      dri-devel@lists.freedesktop.org
1620 S:      Supported
1621 T:      git git://anongit.freedesktop.org/drm/drm-misc
1622 F:      drivers/gpu/drm/panfrost/
1623 F:      include/uapi/drm/panfrost_drm.h
1624
1625 ARM MALI-DP DRM DRIVER
1626 M:      Liviu Dudau <liviu.dudau@arm.com>
1627 M:      Brian Starkey <brian.starkey@arm.com>
1628 L:      Mali DP Maintainers <malidp@foss.arm.com>
1629 S:      Supported
1630 T:      git git://anongit.freedesktop.org/drm/drm-misc
1631 F:      Documentation/devicetree/bindings/display/arm,malidp.yaml
1632 F:      Documentation/gpu/afbc.rst
1633 F:      drivers/gpu/drm/arm/
1634
1635 ARM MFM AND FLOPPY DRIVERS
1636 M:      Ian Molton <spyro@f2s.com>
1637 S:      Maintained
1638 F:      arch/arm/include/asm/floppy.h
1639 F:      arch/arm/mach-rpc/floppydma.S
1640
1641 ARM PMU PROFILING AND DEBUGGING
1642 M:      Will Deacon <will@kernel.org>
1643 M:      Mark Rutland <mark.rutland@arm.com>
1644 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1645 S:      Maintained
1646 F:      Documentation/devicetree/bindings/arm/pmu.yaml
1647 F:      Documentation/devicetree/bindings/perf/
1648 F:      arch/arm*/include/asm/hw_breakpoint.h
1649 F:      arch/arm*/include/asm/perf_event.h
1650 F:      arch/arm*/kernel/hw_breakpoint.c
1651 F:      arch/arm*/kernel/perf_*
1652 F:      drivers/perf/
1653 F:      include/linux/perf/arm_pmu.h
1654
1655 ARM PORT
1656 M:      Russell King <linux@armlinux.org.uk>
1657 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1658 S:      Odd Fixes
1659 W:      http://www.armlinux.org.uk/
1660 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git
1661 F:      arch/arm/
1662 X:      arch/arm/boot/dts/
1663
1664 ARM PRIMECELL AACI PL041 DRIVER
1665 M:      Russell King <linux@armlinux.org.uk>
1666 S:      Odd Fixes
1667 F:      sound/arm/aaci.*
1668
1669 ARM PRIMECELL BUS SUPPORT
1670 M:      Russell King <linux@armlinux.org.uk>
1671 S:      Odd Fixes
1672 F:      drivers/amba/
1673 F:      include/linux/amba/bus.h
1674
1675 ARM PRIMECELL PL35X NAND CONTROLLER DRIVER
1676 M:      Miquel Raynal <miquel.raynal@bootlin.com>
1677 M:      Naga Sureshkumar Relli <nagasure@xilinx.com>
1678 L:      linux-mtd@lists.infradead.org
1679 S:      Maintained
1680 F:      Documentation/devicetree/bindings/mtd/arm,pl353-nand-r2p1.yaml
1681 F:      drivers/mtd/nand/raw/pl35x-nand-controller.c
1682
1683 ARM PRIMECELL PL35X SMC DRIVER
1684 M:      Miquel Raynal <miquel.raynal@bootlin.com>
1685 M:      Naga Sureshkumar Relli <nagasure@xilinx.com>
1686 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1687 S:      Maintained
1688 F:      Documentation/devicetree/bindings/memory-controllers/arm,pl353-smc.yaml
1689 F:      drivers/memory/pl353-smc.c
1690
1691 ARM PRIMECELL CLCD PL110 DRIVER
1692 M:      Russell King <linux@armlinux.org.uk>
1693 S:      Odd Fixes
1694 F:      drivers/video/fbdev/amba-clcd.*
1695
1696 ARM PRIMECELL KMI PL050 DRIVER
1697 M:      Russell King <linux@armlinux.org.uk>
1698 S:      Odd Fixes
1699 F:      drivers/input/serio/ambakmi.*
1700 F:      include/linux/amba/kmi.h
1701
1702 ARM PRIMECELL MMCI PL180/1 DRIVER
1703 M:      Russell King <linux@armlinux.org.uk>
1704 S:      Odd Fixes
1705 F:      drivers/mmc/host/mmci.*
1706 F:      include/linux/amba/mmci.h
1707
1708 ARM PRIMECELL SSP PL022 SPI DRIVER
1709 M:      Linus Walleij <linus.walleij@linaro.org>
1710 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1711 S:      Maintained
1712 F:      Documentation/devicetree/bindings/spi/spi-pl022.yaml
1713 F:      drivers/spi/spi-pl022.c
1714
1715 ARM PRIMECELL UART PL010 AND PL011 DRIVERS
1716 M:      Russell King <linux@armlinux.org.uk>
1717 S:      Odd Fixes
1718 F:      drivers/tty/serial/amba-pl01*.c
1719 F:      include/linux/amba/serial.h
1720
1721 ARM PRIMECELL VIC PL190/PL192 DRIVER
1722 M:      Linus Walleij <linus.walleij@linaro.org>
1723 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1724 S:      Maintained
1725 F:      Documentation/devicetree/bindings/interrupt-controller/arm,vic.yaml
1726 F:      drivers/irqchip/irq-vic.c
1727
1728 ARM SMC WATCHDOG DRIVER
1729 M:      Julius Werner <jwerner@chromium.org>
1730 R:      Evan Benn <evanbenn@chromium.org>
1731 S:      Maintained
1732 F:      Documentation/devicetree/bindings/watchdog/arm-smc-wdt.yaml
1733 F:      drivers/watchdog/arm_smc_wdt.c
1734
1735 ARM SMMU DRIVERS
1736 M:      Will Deacon <will@kernel.org>
1737 R:      Robin Murphy <robin.murphy@arm.com>
1738 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1739 S:      Maintained
1740 F:      Documentation/devicetree/bindings/iommu/arm,smmu*
1741 F:      drivers/iommu/arm/
1742 F:      drivers/iommu/io-pgtable-arm*
1743
1744 ARM AND ARM64 SoC SUB-ARCHITECTURES (COMMON PARTS)
1745 M:      Arnd Bergmann <arnd@arndb.de>
1746 M:      Olof Johansson <olof@lixom.net>
1747 M:      soc@kernel.org
1748 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1749 S:      Maintained
1750 C:      irc://irc.libera.chat/armlinux
1751 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/soc/soc.git
1752 F:      arch/arm/boot/dts/Makefile
1753 F:      arch/arm64/boot/dts/Makefile
1754
1755 ARM SUB-ARCHITECTURES
1756 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1757 S:      Maintained
1758 C:      irc://irc.libera.chat/armlinux
1759 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/soc/soc.git
1760 F:      arch/arm/mach-*/
1761 F:      arch/arm/plat-*/
1762
1763 ARM/ACTIONS SEMI ARCHITECTURE
1764 M:      Andreas Färber <afaerber@suse.de>
1765 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
1766 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1767 L:      linux-actions@lists.infradead.org (moderated for non-subscribers)
1768 S:      Maintained
1769 F:      Documentation/devicetree/bindings/arm/actions.yaml
1770 F:      Documentation/devicetree/bindings/clock/actions,owl-cmu.txt
1771 F:      Documentation/devicetree/bindings/dma/owl-dma.yaml
1772 F:      Documentation/devicetree/bindings/i2c/i2c-owl.yaml
1773 F:      Documentation/devicetree/bindings/interrupt-controller/actions,owl-sirq.yaml
1774 F:      Documentation/devicetree/bindings/mmc/owl-mmc.yaml
1775 F:      Documentation/devicetree/bindings/net/actions,owl-emac.yaml
1776 F:      Documentation/devicetree/bindings/pinctrl/actions,*
1777 F:      Documentation/devicetree/bindings/power/actions,owl-sps.txt
1778 F:      Documentation/devicetree/bindings/timer/actions,owl-timer.txt
1779 F:      arch/arm/boot/dts/owl-*
1780 F:      arch/arm/mach-actions/
1781 F:      arch/arm64/boot/dts/actions/
1782 F:      drivers/clk/actions/
1783 F:      drivers/clocksource/timer-owl*
1784 F:      drivers/dma/owl-dma.c
1785 F:      drivers/i2c/busses/i2c-owl.c
1786 F:      drivers/irqchip/irq-owl-sirq.c
1787 F:      drivers/mmc/host/owl-mmc.c
1788 F:      drivers/net/ethernet/actions/
1789 F:      drivers/pinctrl/actions/*
1790 F:      drivers/soc/actions/
1791 F:      include/dt-bindings/power/owl-*
1792 F:      include/dt-bindings/reset/actions,*
1793 F:      include/linux/soc/actions/
1794 N:      owl
1795
1796 ARM/ADS SPHERE MACHINE SUPPORT
1797 M:      Lennert Buytenhek <kernel@wantstofly.org>
1798 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1799 S:      Maintained
1800
1801 ARM/AFEB9260 MACHINE SUPPORT
1802 M:      Sergey Lapin <slapin@ossfans.org>
1803 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1804 S:      Maintained
1805
1806 ARM/AJECO 1ARM MACHINE SUPPORT
1807 M:      Lennert Buytenhek <kernel@wantstofly.org>
1808 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1809 S:      Maintained
1810
1811 ARM/Allwinner SoC Clock Support
1812 M:      Emilio López <emilio@elopez.com.ar>
1813 S:      Maintained
1814 F:      drivers/clk/sunxi/
1815
1816 ARM/Allwinner sunXi SoC support
1817 M:      Chen-Yu Tsai <wens@csie.org>
1818 M:      Jernej Skrabec <jernej.skrabec@gmail.com>
1819 M:      Samuel Holland <samuel@sholland.org>
1820 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1821 S:      Maintained
1822 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sunxi/linux.git
1823 L:      linux-sunxi@lists.linux.dev
1824 F:      arch/arm/mach-sunxi/
1825 F:      arch/arm64/boot/dts/allwinner/
1826 F:      drivers/clk/sunxi-ng/
1827 F:      drivers/pinctrl/sunxi/
1828 F:      drivers/soc/sunxi/
1829 N:      allwinner
1830 N:      sun[x456789]i
1831 N:      sun50i
1832
1833 ARM/Amlogic Meson SoC CLOCK FRAMEWORK
1834 M:      Neil Armstrong <neil.armstrong@linaro.org>
1835 M:      Jerome Brunet <jbrunet@baylibre.com>
1836 L:      linux-amlogic@lists.infradead.org
1837 S:      Maintained
1838 F:      Documentation/devicetree/bindings/clock/amlogic*
1839 F:      drivers/clk/meson/
1840 F:      include/dt-bindings/clock/gxbb*
1841 F:      include/dt-bindings/clock/meson*
1842
1843 ARM/Amlogic Meson SoC Crypto Drivers
1844 M:      Corentin Labbe <clabbe@baylibre.com>
1845 L:      linux-crypto@vger.kernel.org
1846 L:      linux-amlogic@lists.infradead.org
1847 S:      Maintained
1848 F:      Documentation/devicetree/bindings/crypto/amlogic*
1849 F:      drivers/crypto/amlogic/
1850
1851 ARM/Amlogic Meson SoC Sound Drivers
1852 M:      Jerome Brunet <jbrunet@baylibre.com>
1853 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1854 S:      Maintained
1855 F:      Documentation/devicetree/bindings/sound/amlogic*
1856 F:      sound/soc/meson/
1857
1858 ARM/Amlogic Meson SoC support
1859 M:      Neil Armstrong <neil.armstrong@linaro.org>
1860 M:      Kevin Hilman <khilman@baylibre.com>
1861 R:      Jerome Brunet <jbrunet@baylibre.com>
1862 R:      Martin Blumenstingl <martin.blumenstingl@googlemail.com>
1863 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1864 L:      linux-amlogic@lists.infradead.org
1865 S:      Maintained
1866 W:      http://linux-meson.com/
1867 F:      arch/arm/boot/dts/meson*
1868 F:      arch/arm/mach-meson/
1869 F:      arch/arm64/boot/dts/amlogic/
1870 F:      drivers/mmc/host/meson*
1871 F:      drivers/pinctrl/meson/
1872 F:      drivers/rtc/rtc-meson*
1873 F:      drivers/soc/amlogic/
1874 N:      meson
1875
1876 ARM/Annapurna Labs ALPINE ARCHITECTURE
1877 M:      Tsahee Zidenberg <tsahee@annapurnalabs.com>
1878 M:      Antoine Tenart <atenart@kernel.org>
1879 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1880 S:      Maintained
1881 F:      arch/arm/boot/dts/alpine*
1882 F:      arch/arm/mach-alpine/
1883 F:      arch/arm64/boot/dts/amazon/
1884 F:      drivers/*/*alpine*
1885
1886 ARM/APPLE MACHINE SUPPORT
1887 M:      Hector Martin <marcan@marcan.st>
1888 M:      Sven Peter <sven@svenpeter.dev>
1889 R:      Alyssa Rosenzweig <alyssa@rosenzweig.io>
1890 L:      asahi@lists.linux.dev
1891 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1892 S:      Maintained
1893 W:      https://asahilinux.org
1894 B:      https://github.com/AsahiLinux/linux/issues
1895 C:      irc://irc.oftc.net/asahi-dev
1896 T:      git https://github.com/AsahiLinux/linux.git
1897 F:      Documentation/devicetree/bindings/arm/apple.yaml
1898 F:      Documentation/devicetree/bindings/arm/apple/*
1899 F:      Documentation/devicetree/bindings/clock/apple,nco.yaml
1900 F:      Documentation/devicetree/bindings/dma/apple,admac.yaml
1901 F:      Documentation/devicetree/bindings/i2c/apple,i2c.yaml
1902 F:      Documentation/devicetree/bindings/interrupt-controller/apple,*
1903 F:      Documentation/devicetree/bindings/iommu/apple,dart.yaml
1904 F:      Documentation/devicetree/bindings/iommu/apple,sart.yaml
1905 F:      Documentation/devicetree/bindings/mailbox/apple,mailbox.yaml
1906 F:      Documentation/devicetree/bindings/nvme/apple,nvme-ans.yaml
1907 F:      Documentation/devicetree/bindings/nvmem/apple,efuses.yaml
1908 F:      Documentation/devicetree/bindings/pci/apple,pcie.yaml
1909 F:      Documentation/devicetree/bindings/pinctrl/apple,pinctrl.yaml
1910 F:      Documentation/devicetree/bindings/power/apple*
1911 F:      Documentation/devicetree/bindings/watchdog/apple,wdt.yaml
1912 F:      arch/arm64/boot/dts/apple/
1913 F:      drivers/clk/clk-apple-nco.c
1914 F:      drivers/dma/apple-admac.c
1915 F:      drivers/i2c/busses/i2c-pasemi-core.c
1916 F:      drivers/i2c/busses/i2c-pasemi-platform.c
1917 F:      drivers/iommu/apple-dart.c
1918 F:      drivers/irqchip/irq-apple-aic.c
1919 F:      drivers/mailbox/apple-mailbox.c
1920 F:      drivers/nvme/host/apple.c
1921 F:      drivers/nvmem/apple-efuses.c
1922 F:      drivers/pinctrl/pinctrl-apple-gpio.c
1923 F:      drivers/soc/apple/*
1924 F:      drivers/watchdog/apple_wdt.c
1925 F:      include/dt-bindings/interrupt-controller/apple-aic.h
1926 F:      include/dt-bindings/pinctrl/apple.h
1927 F:      include/linux/apple-mailbox.h
1928 F:      include/linux/soc/apple/*
1929
1930 ARM/APPLE MACHINE SOUND DRIVERS
1931 M:      Martin Povišer <povik+lin@cutebit.org>
1932 L:      asahi@lists.linux.dev
1933 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1934 S:      Maintained
1935 F:      Documentation/devicetree/bindings/sound/apple,*
1936 F:      sound/soc/apple/*
1937 F:      sound/soc/codecs/cs42l83-i2c.c
1938
1939 ARM/ARTPEC MACHINE SUPPORT
1940 M:      Jesper Nilsson <jesper.nilsson@axis.com>
1941 M:      Lars Persson <lars.persson@axis.com>
1942 L:      linux-arm-kernel@axis.com
1943 S:      Maintained
1944 F:      Documentation/devicetree/bindings/pinctrl/axis,artpec6-pinctrl.txt
1945 F:      arch/arm/boot/dts/artpec6*
1946 F:      arch/arm/mach-artpec
1947 F:      drivers/clk/axis
1948 F:      drivers/crypto/axis
1949 F:      drivers/mmc/host/usdhi6rol0.c
1950 F:      drivers/pinctrl/pinctrl-artpec*
1951
1952 ARM/ASPEED I2C DRIVER
1953 M:      Brendan Higgins <brendanhiggins@google.com>
1954 R:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
1955 R:      Joel Stanley <joel@jms.id.au>
1956 L:      linux-i2c@vger.kernel.org
1957 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
1958 S:      Maintained
1959 F:      Documentation/devicetree/bindings/i2c/aspeed,i2c.yaml
1960 F:      Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2400-i2c-ic.txt
1961 F:      drivers/i2c/busses/i2c-aspeed.c
1962 F:      drivers/irqchip/irq-aspeed-i2c-ic.c
1963
1964 ARM/ASPEED MACHINE SUPPORT
1965 M:      Joel Stanley <joel@jms.id.au>
1966 R:      Andrew Jeffery <andrew@aj.id.au>
1967 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1968 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
1969 S:      Supported
1970 Q:      https://patchwork.ozlabs.org/project/linux-aspeed/list/
1971 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joel/aspeed.git
1972 F:      Documentation/devicetree/bindings/arm/aspeed/
1973 F:      arch/arm/boot/dts/aspeed-*
1974 F:      arch/arm/mach-aspeed/
1975 N:      aspeed
1976
1977 ARM/BITMAIN ARCHITECTURE
1978 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
1979 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1980 S:      Maintained
1981 F:      Documentation/devicetree/bindings/arm/bitmain.yaml
1982 F:      Documentation/devicetree/bindings/clock/bitmain,bm1880-clk.yaml
1983 F:      Documentation/devicetree/bindings/pinctrl/bitmain,bm1880-pinctrl.txt
1984 F:      arch/arm64/boot/dts/bitmain/
1985 F:      drivers/clk/clk-bm1880.c
1986 F:      drivers/pinctrl/pinctrl-bm1880.c
1987
1988 ARM/CALXEDA HIGHBANK ARCHITECTURE
1989 M:      Andre Przywara <andre.przywara@arm.com>
1990 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1991 S:      Maintained
1992 F:      arch/arm/boot/dts/ecx-*.dts*
1993 F:      arch/arm/boot/dts/highbank.dts
1994 F:      arch/arm/mach-highbank/
1995
1996 ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
1997 M:      Krzysztof Halasa <khalasa@piap.pl>
1998 S:      Maintained
1999 F:      arch/arm/mach-cns3xxx/
2000
2001 ARM/CAVIUM THUNDER NETWORK DRIVER
2002 M:      Sunil Goutham <sgoutham@marvell.com>
2003 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2004 S:      Supported
2005 F:      drivers/net/ethernet/cavium/thunder/
2006
2007 ARM/CIRRUS LOGIC BK3 MACHINE SUPPORT
2008 M:      Lukasz Majewski <lukma@denx.de>
2009 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2010 S:      Maintained
2011 F:      arch/arm/mach-ep93xx/ts72xx.c
2012
2013 ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
2014 M:      Alexander Shiyan <shc_work@mail.ru>
2015 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2016 S:      Odd Fixes
2017 N:      clps711x
2018
2019 ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
2020 M:      Lennert Buytenhek <kernel@wantstofly.org>
2021 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2022 S:      Maintained
2023
2024 ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
2025 M:      Hartley Sweeten <hsweeten@visionengravers.com>
2026 M:      Alexander Sverdlin <alexander.sverdlin@gmail.com>
2027 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2028 S:      Maintained
2029 F:      arch/arm/mach-ep93xx/
2030 F:      arch/arm/mach-ep93xx/include/mach/
2031
2032 ARM/CLKDEV SUPPORT
2033 M:      Russell King <linux@armlinux.org.uk>
2034 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2035 S:      Maintained
2036 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git clkdev
2037 F:      drivers/clk/clkdev.c
2038
2039 ARM/CONEXANT DIGICOLOR MACHINE SUPPORT
2040 M:      Baruch Siach <baruch@tkos.co.il>
2041 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2042 S:      Maintained
2043 F:      arch/arm/boot/dts/cx92755*
2044 N:      digicolor
2045
2046 ARM/CONTEC MICRO9 MACHINE SUPPORT
2047 M:      Hubert Feurstein <hubert.feurstein@contec.at>
2048 S:      Maintained
2049 F:      arch/arm/mach-ep93xx/micro9.c
2050
2051 ARM/CORESIGHT FRAMEWORK AND DRIVERS
2052 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
2053 M:      Suzuki K Poulose <suzuki.poulose@arm.com>
2054 R:      Mike Leach <mike.leach@linaro.org>
2055 R:      Leo Yan <leo.yan@linaro.org>
2056 L:      coresight@lists.linaro.org (moderated for non-subscribers)
2057 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2058 S:      Maintained
2059 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/coresight/linux.git
2060 F:      Documentation/ABI/testing/sysfs-bus-coresight-devices-*
2061 F:      Documentation/devicetree/bindings/arm/arm,coresight-*.yaml
2062 F:      Documentation/devicetree/bindings/arm/arm,embedded-trace-extension.yaml
2063 F:      Documentation/devicetree/bindings/arm/arm,trace-buffer-extension.yaml
2064 F:      Documentation/trace/coresight/*
2065 F:      drivers/hwtracing/coresight/*
2066 F:      include/dt-bindings/arm/coresight-cti-dt.h
2067 F:      include/linux/coresight*
2068 F:      samples/coresight/*
2069 F:      tools/perf/arch/arm/util/auxtrace.c
2070 F:      tools/perf/arch/arm/util/cs-etm.c
2071 F:      tools/perf/arch/arm/util/cs-etm.h
2072 F:      tools/perf/arch/arm/util/pmu.c
2073 F:      tools/perf/util/cs-etm-decoder/*
2074 F:      tools/perf/util/cs-etm.*
2075
2076 ARM/CORGI MACHINE SUPPORT
2077 M:      Richard Purdie <rpurdie@rpsys.net>
2078 S:      Maintained
2079
2080 ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
2081 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
2082 M:      Linus Walleij <linus.walleij@linaro.org>
2083 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2084 S:      Maintained
2085 T:      git git://github.com/ulli-kroll/linux.git
2086 F:      Documentation/devicetree/bindings/arm/gemini.yaml
2087 F:      Documentation/devicetree/bindings/net/cortina,gemini-ethernet.yaml
2088 F:      Documentation/devicetree/bindings/pinctrl/cortina,gemini-pinctrl.txt
2089 F:      Documentation/devicetree/bindings/rtc/faraday,ftrtc010.yaml
2090 F:      arch/arm/boot/dts/gemini*
2091 F:      arch/arm/mach-gemini/
2092 F:      drivers/crypto/gemini/
2093 F:      drivers/net/ethernet/cortina/
2094 F:      drivers/pinctrl/pinctrl-gemini.c
2095 F:      drivers/rtc/rtc-ftrtc010.c
2096
2097 ARM/CZ.NIC TURRIS SUPPORT
2098 M:      Marek Behún <kabel@kernel.org>
2099 S:      Maintained
2100 W:      https://www.turris.cz/
2101 F:      Documentation/ABI/testing/debugfs-moxtet
2102 F:      Documentation/ABI/testing/sysfs-bus-moxtet-devices
2103 F:      Documentation/ABI/testing/sysfs-firmware-turris-mox-rwtm
2104 F:      Documentation/devicetree/bindings/bus/moxtet.txt
2105 F:      Documentation/devicetree/bindings/firmware/cznic,turris-mox-rwtm.txt
2106 F:      Documentation/devicetree/bindings/gpio/gpio-moxtet.txt
2107 F:      Documentation/devicetree/bindings/leds/cznic,turris-omnia-leds.yaml
2108 F:      Documentation/devicetree/bindings/watchdog/armada-37xx-wdt.txt
2109 F:      drivers/bus/moxtet.c
2110 F:      drivers/firmware/turris-mox-rwtm.c
2111 F:      drivers/leds/leds-turris-omnia.c
2112 F:      drivers/mailbox/armada-37xx-rwtm-mailbox.c
2113 F:      drivers/gpio/gpio-moxtet.c
2114 F:      drivers/watchdog/armada_37xx_wdt.c
2115 F:      include/dt-bindings/bus/moxtet.h
2116 F:      include/linux/armada-37xx-rwtm-mailbox.h
2117 F:      include/linux/moxtet.h
2118
2119 ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
2120 M:      Robert Jarzmik <robert.jarzmik@free.fr>
2121 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2122 S:      Maintained
2123 F:      arch/arm/mach-pxa/ezx.c
2124
2125 ARM/FARADAY FA526 PORT
2126 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
2127 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2128 S:      Maintained
2129 T:      git git://git.berlios.de/gemini-board
2130 F:      arch/arm/mm/*-fa*
2131
2132 ARM/FOOTBRIDGE ARCHITECTURE
2133 M:      Russell King <linux@armlinux.org.uk>
2134 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2135 S:      Maintained
2136 W:      http://www.armlinux.org.uk/
2137 F:      arch/arm/include/asm/hardware/dec21285.h
2138 F:      arch/arm/mach-footbridge/
2139
2140 ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
2141 M:      Shawn Guo <shawnguo@kernel.org>
2142 M:      Sascha Hauer <s.hauer@pengutronix.de>
2143 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
2144 R:      Fabio Estevam <festevam@gmail.com>
2145 R:      NXP Linux Team <linux-imx@nxp.com>
2146 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2147 S:      Maintained
2148 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
2149 X:      drivers/media/i2c/
2150 N:      imx
2151 N:      mxs
2152
2153 ARM/FREESCALE LAYERSCAPE ARM ARCHITECTURE
2154 M:      Shawn Guo <shawnguo@kernel.org>
2155 M:      Li Yang <leoyang.li@nxp.com>
2156 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2157 S:      Maintained
2158 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
2159 F:      arch/arm/boot/dts/ls1021a*
2160 F:      arch/arm64/boot/dts/freescale/fsl-*
2161 F:      arch/arm64/boot/dts/freescale/qoriq-*
2162
2163 ARM/FREESCALE VYBRID ARM ARCHITECTURE
2164 M:      Shawn Guo <shawnguo@kernel.org>
2165 M:      Sascha Hauer <s.hauer@pengutronix.de>
2166 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
2167 R:      Stefan Agner <stefan@agner.ch>
2168 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2169 S:      Maintained
2170 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
2171 F:      arch/arm/boot/dts/vf*
2172 F:      arch/arm/mach-imx/*vf610*
2173
2174 ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
2175 M:      Lennert Buytenhek <kernel@wantstofly.org>
2176 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2177 S:      Maintained
2178
2179 ARM/GUMSTIX MACHINE SUPPORT
2180 M:      Steve Sakoman <sakoman@gmail.com>
2181 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2182 S:      Maintained
2183
2184 ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
2185 M:      Philipp Zabel <philipp.zabel@gmail.com>
2186 M:      Paul Parsons <lost.distance@yahoo.com>
2187 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2188 S:      Maintained
2189 F:      arch/arm/mach-pxa/hx4700.c
2190 F:      arch/arm/mach-pxa/include/mach/hx4700.h
2191 F:      sound/soc/pxa/hx4700.c
2192
2193 ARM/HISILICON SOC SUPPORT
2194 M:      Wei Xu <xuwei5@hisilicon.com>
2195 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2196 S:      Supported
2197 W:      http://www.hisilicon.com
2198 T:      git git://github.com/hisilicon/linux-hisi.git
2199 F:      arch/arm/boot/dts/hi3*
2200 F:      arch/arm/boot/dts/hip*
2201 F:      arch/arm/boot/dts/hisi*
2202 F:      arch/arm/mach-hisi/
2203 F:      arch/arm64/boot/dts/hisilicon/
2204
2205 ARM/HP JORNADA 7XX MACHINE SUPPORT
2206 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
2207 S:      Maintained
2208 W:      www.jlime.com
2209 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
2210 F:      arch/arm/mach-sa1100/include/mach/jornada720.h
2211 F:      arch/arm/mach-sa1100/jornada720.c
2212
2213 ARM/HPE GXP ARCHITECTURE
2214 M:      Jean-Marie Verdun <verdun@hpe.com>
2215 M:      Nick Hawkins <nick.hawkins@hpe.com>
2216 S:      Maintained
2217 F:      Documentation/devicetree/bindings/arm/hpe,gxp.yaml
2218 F:      Documentation/devicetree/bindings/spi/hpe,gxp-spifi.yaml
2219 F:      Documentation/devicetree/bindings/timer/hpe,gxp-timer.yaml
2220 F:      arch/arm/boot/dts/hpe-bmc*
2221 F:      arch/arm/boot/dts/hpe-gxp*
2222 F:      arch/arm/mach-hpe/
2223 F:      drivers/clocksource/timer-gxp.c
2224 F:      drivers/spi/spi-gxp.c
2225 F:      drivers/watchdog/gxp-wdt.c
2226
2227 ARM/IGEP MACHINE SUPPORT
2228 M:      Enric Balletbo i Serra <eballetbo@gmail.com>
2229 M:      Javier Martinez Canillas <javier@dowhile0.org>
2230 L:      linux-omap@vger.kernel.org
2231 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2232 S:      Maintained
2233 F:      arch/arm/boot/dts/omap3-igep*
2234
2235 ARM/INCOME PXA270 SUPPORT
2236 M:      Marek Vasut <marek.vasut@gmail.com>
2237 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2238 S:      Maintained
2239 F:      arch/arm/mach-pxa/colibri-pxa270-income.c
2240
2241 ARM/INTEL IOP32X ARM ARCHITECTURE
2242 M:      Lennert Buytenhek <kernel@wantstofly.org>
2243 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2244 S:      Maintained
2245
2246 ARM/INTEL IQ81342EX MACHINE SUPPORT
2247 M:      Lennert Buytenhek <kernel@wantstofly.org>
2248 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2249 S:      Maintained
2250
2251 ARM/INTEL IXDP2850 MACHINE SUPPORT
2252 M:      Lennert Buytenhek <kernel@wantstofly.org>
2253 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2254 S:      Maintained
2255
2256 ARM/INTEL IXP4XX ARM ARCHITECTURE
2257 M:      Linus Walleij <linusw@kernel.org>
2258 M:      Imre Kaloz <kaloz@openwrt.org>
2259 M:      Krzysztof Halasa <khalasa@piap.pl>
2260 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2261 S:      Maintained
2262 F:      Documentation/devicetree/bindings/arm/intel-ixp4xx.yaml
2263 F:      Documentation/devicetree/bindings/bus/intel,ixp4xx-expansion-bus-controller.yaml
2264 F:      Documentation/devicetree/bindings/gpio/intel,ixp4xx-gpio.txt
2265 F:      Documentation/devicetree/bindings/interrupt-controller/intel,ixp4xx-interrupt.yaml
2266 F:      Documentation/devicetree/bindings/timer/intel,ixp4xx-timer.yaml
2267 F:      arch/arm/mach-ixp4xx/
2268 F:      drivers/bus/intel-ixp4xx-eb.c
2269 F:      drivers/clocksource/timer-ixp4xx.c
2270 F:      drivers/crypto/ixp4xx_crypto.c
2271 F:      drivers/gpio/gpio-ixp4xx.c
2272 F:      drivers/irqchip/irq-ixp4xx.c
2273 F:      include/linux/irqchip/irq-ixp4xx.h
2274 F:      include/linux/platform_data/timer-ixp4xx.h
2275
2276 ARM/INTEL KEEMBAY ARCHITECTURE
2277 M:      Paul J. Murphy <paul.j.murphy@intel.com>
2278 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
2279 S:      Maintained
2280 F:      Documentation/devicetree/bindings/arm/intel,keembay.yaml
2281 F:      arch/arm64/boot/dts/intel/keembay-evm.dts
2282 F:      arch/arm64/boot/dts/intel/keembay-soc.dtsi
2283
2284 ARM/INTEL XSC3 (MANZANO) ARM CORE
2285 M:      Lennert Buytenhek <kernel@wantstofly.org>
2286 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2287 S:      Maintained
2288
2289 ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
2290 M:      Lennert Buytenhek <kernel@wantstofly.org>
2291 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2292 S:      Maintained
2293
2294 ARM/LG1K ARCHITECTURE
2295 M:      Chanho Min <chanho.min@lge.com>
2296 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2297 S:      Maintained
2298 F:      arch/arm64/boot/dts/lg/
2299
2300 ARM/LOGICPD PXA270 MACHINE SUPPORT
2301 M:      Lennert Buytenhek <kernel@wantstofly.org>
2302 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2303 S:      Maintained
2304
2305 ARM/LPC18XX ARCHITECTURE
2306 M:      Vladimir Zapolskiy <vz@mleia.com>
2307 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2308 S:      Maintained
2309 F:      Documentation/devicetree/bindings/i2c/i2c-lpc2k.txt
2310 F:      arch/arm/boot/dts/lpc43*
2311 F:      drivers/i2c/busses/i2c-lpc2k.c
2312 F:      drivers/memory/pl172.c
2313 F:      drivers/mtd/spi-nor/controllers/nxp-spifi.c
2314 F:      drivers/rtc/rtc-lpc24xx.c
2315 N:      lpc18xx
2316
2317 ARM/LPC32XX SOC SUPPORT
2318 M:      Vladimir Zapolskiy <vz@mleia.com>
2319 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2320 S:      Maintained
2321 T:      git git://github.com/vzapolskiy/linux-lpc32xx.git
2322 F:      Documentation/devicetree/bindings/i2c/i2c-pnx.txt
2323 F:      arch/arm/boot/dts/lpc32*
2324 F:      arch/arm/mach-lpc32xx/
2325 F:      drivers/i2c/busses/i2c-pnx.c
2326 F:      drivers/net/ethernet/nxp/lpc_eth.c
2327 F:      drivers/usb/host/ohci-nxp.c
2328 F:      drivers/watchdog/pnx4008_wdt.c
2329 N:      lpc32xx
2330
2331 ARM/MAGICIAN MACHINE SUPPORT
2332 M:      Philipp Zabel <philipp.zabel@gmail.com>
2333 S:      Maintained
2334
2335 ARM/Marvell Dove/MV78xx0/Orion SOC support
2336 M:      Andrew Lunn <andrew@lunn.ch>
2337 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2338 M:      Gregory Clement <gregory.clement@bootlin.com>
2339 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2340 S:      Maintained
2341 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gclement/mvebu.git
2342 F:      Documentation/devicetree/bindings/soc/dove/
2343 F:      arch/arm/boot/dts/dove*
2344 F:      arch/arm/boot/dts/orion5x*
2345 F:      arch/arm/mach-dove/
2346 F:      arch/arm/mach-mv78xx0/
2347 F:      arch/arm/mach-orion5x/
2348 F:      arch/arm/plat-orion/
2349 F:      drivers/soc/dove/
2350
2351 ARM/Marvell Kirkwood and Armada 370, 375, 38x, 39x, XP, 3700, 7K/8K, CN9130 SOC support
2352 M:      Andrew Lunn <andrew@lunn.ch>
2353 M:      Gregory Clement <gregory.clement@bootlin.com>
2354 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2355 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2356 S:      Maintained
2357 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gclement/mvebu.git
2358 F:      arch/arm/boot/dts/armada*
2359 F:      arch/arm/boot/dts/kirkwood*
2360 F:      arch/arm/configs/mvebu_*_defconfig
2361 F:      arch/arm/mach-mvebu/
2362 F:      arch/arm64/boot/dts/marvell/armada*
2363 F:      arch/arm64/boot/dts/marvell/cn913*
2364 F:      drivers/cpufreq/armada-37xx-cpufreq.c
2365 F:      drivers/cpufreq/armada-8k-cpufreq.c
2366 F:      drivers/cpufreq/mvebu-cpufreq.c
2367 F:      drivers/irqchip/irq-armada-370-xp.c
2368 F:      drivers/irqchip/irq-mvebu-*
2369 F:      drivers/pinctrl/mvebu/
2370 F:      drivers/rtc/rtc-armada38x.c
2371
2372 ARM/Mediatek RTC DRIVER
2373 M:      Eddie Huang <eddie.huang@mediatek.com>
2374 M:      Sean Wang <sean.wang@mediatek.com>
2375 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2376 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2377 S:      Maintained
2378 F:      Documentation/devicetree/bindings/rtc/rtc-mt2712.txt
2379 F:      Documentation/devicetree/bindings/rtc/rtc-mt7622.txt
2380 F:      drivers/rtc/rtc-mt2712.c
2381 F:      drivers/rtc/rtc-mt6397.c
2382 F:      drivers/rtc/rtc-mt7622.c
2383
2384 ARM/Mediatek SoC support
2385 M:      Matthias Brugger <matthias.bgg@gmail.com>
2386 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2387 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2388 S:      Maintained
2389 W:      https://mtk.wiki.kernel.org/
2390 C:      irc://chat.freenode.net/linux-mediatek
2391 F:      arch/arm/boot/dts/mt6*
2392 F:      arch/arm/boot/dts/mt7*
2393 F:      arch/arm/boot/dts/mt8*
2394 F:      arch/arm/mach-mediatek/
2395 F:      arch/arm64/boot/dts/mediatek/
2396 F:      drivers/soc/mediatek/
2397 N:      mtk
2398 N:      mt[678]
2399 K:      mediatek
2400
2401 ARM/Mediatek USB3 PHY DRIVER
2402 M:      Chunfeng Yun <chunfeng.yun@mediatek.com>
2403 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2404 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2405 S:      Maintained
2406 F:      Documentation/devicetree/bindings/phy/mediatek,*
2407 F:      drivers/phy/mediatek/
2408
2409 ARM/Microchip (AT91) SoC support
2410 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
2411 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
2412 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
2413 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2414 S:      Supported
2415 W:      http://www.linux4sam.org
2416 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/at91/linux.git
2417 F:      arch/arm/boot/dts/at91*.dts
2418 F:      arch/arm/boot/dts/at91*.dtsi
2419 F:      arch/arm/boot/dts/sama*.dts
2420 F:      arch/arm/boot/dts/sama*.dtsi
2421 F:      arch/arm/include/debug/at91.S
2422 F:      arch/arm/mach-at91/
2423 F:      drivers/memory/atmel*
2424 F:      drivers/watchdog/sama5d4_wdt.c
2425 F:      include/soc/at91/
2426 X:      drivers/input/touchscreen/atmel_mxt_ts.c
2427 X:      drivers/net/wireless/atmel/
2428 N:      at91
2429 N:      atmel
2430
2431 ARM/Microchip Sparx5 SoC support
2432 M:      Lars Povlsen <lars.povlsen@microchip.com>
2433 M:      Steen Hegelund <Steen.Hegelund@microchip.com>
2434 M:      Daniel Machon <daniel.machon@microchip.com>
2435 M:      UNGLinuxDriver@microchip.com
2436 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2437 S:      Supported
2438 T:      git git://github.com/microchip-ung/linux-upstream.git
2439 F:      arch/arm64/boot/dts/microchip/
2440 F:      drivers/pinctrl/pinctrl-microchip-sgpio.c
2441 N:      sparx5
2442
2443 Microchip Timer Counter Block (TCB) Capture Driver
2444 M:      Kamel Bouhara <kamel.bouhara@bootlin.com>
2445 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2446 L:      linux-iio@vger.kernel.org
2447 S:      Maintained
2448 F:      drivers/counter/microchip-tcb-capture.c
2449
2450 ARM/MILBEAUT ARCHITECTURE
2451 M:      Taichi Sugaya <sugaya.taichi@socionext.com>
2452 M:      Takao Orito <orito.takao@socionext.com>
2453 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2454 S:      Maintained
2455 F:      arch/arm/boot/dts/milbeaut*
2456 F:      arch/arm/mach-milbeaut/
2457 N:      milbeaut
2458
2459 ARM/MIOA701 MACHINE SUPPORT
2460 M:      Robert Jarzmik <robert.jarzmik@free.fr>
2461 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2462 S:      Maintained
2463 F:      arch/arm/mach-pxa/mioa701.c
2464
2465 ARM/MStar/Sigmastar Armv7 SoC support
2466 M:      Daniel Palmer <daniel@thingy.jp>
2467 M:      Romain Perier <romain.perier@gmail.com>
2468 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2469 S:      Maintained
2470 W:      http://linux-chenxing.org/
2471 T:      git git://github.com/linux-chenxing/linux.git
2472 F:      Documentation/devicetree/bindings/arm/mstar/*
2473 F:      Documentation/devicetree/bindings/clock/mstar,msc313-mpll.yaml
2474 F:      Documentation/devicetree/bindings/gpio/mstar,msc313-gpio.yaml
2475 F:      arch/arm/boot/dts/mstar-*
2476 F:      arch/arm/mach-mstar/
2477 F:      drivers/clk/mstar/
2478 F:      drivers/clocksource/timer-msc313e.c
2479 F:      drivers/gpio/gpio-msc313.c
2480 F:      drivers/rtc/rtc-msc313.c
2481 F:      drivers/watchdog/msc313e_wdt.c
2482 F:      include/dt-bindings/clock/mstar-*
2483 F:      include/dt-bindings/gpio/msc313-gpio.h
2484
2485 ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
2486 M:      Michael Petchkovsky <mkpetch@internode.on.net>
2487 S:      Maintained
2488
2489 ARM/NOMADIK/Ux500 ARCHITECTURES
2490 M:      Linus Walleij <linus.walleij@linaro.org>
2491 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2492 S:      Maintained
2493 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
2494 F:      Documentation/devicetree/bindings/arm/ste-*
2495 F:      Documentation/devicetree/bindings/arm/ux500.yaml
2496 F:      Documentation/devicetree/bindings/arm/ux500/
2497 F:      Documentation/devicetree/bindings/i2c/st,nomadik-i2c.yaml
2498 F:      arch/arm/boot/dts/ste-*
2499 F:      arch/arm/mach-nomadik/
2500 F:      arch/arm/mach-ux500/
2501 F:      drivers/clk/clk-nomadik.c
2502 F:      drivers/clocksource/clksrc-dbx500-prcmu.c
2503 F:      drivers/dma/ste_dma40*
2504 F:      drivers/hwspinlock/u8500_hsem.c
2505 F:      drivers/i2c/busses/i2c-nomadik.c
2506 F:      drivers/iio/adc/ab8500-gpadc.c
2507 F:      drivers/mfd/ab8500*
2508 F:      drivers/mfd/abx500*
2509 F:      drivers/mfd/db8500*
2510 F:      drivers/pinctrl/nomadik/
2511 F:      drivers/rtc/rtc-ab8500.c
2512 F:      drivers/rtc/rtc-pl031.c
2513 F:      drivers/soc/ux500/
2514
2515 ARM/NUVOTON NPCM ARCHITECTURE
2516 M:      Avi Fishman <avifishman70@gmail.com>
2517 M:      Tomer Maimon <tmaimon77@gmail.com>
2518 M:      Tali Perry <tali.perry1@gmail.com>
2519 R:      Patrick Venture <venture@google.com>
2520 R:      Nancy Yuen <yuenn@google.com>
2521 R:      Benjamin Fair <benjaminfair@google.com>
2522 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2523 S:      Supported
2524 F:      Documentation/devicetree/bindings/*/*/*npcm*
2525 F:      Documentation/devicetree/bindings/*/*npcm*
2526 F:      Documentation/devicetree/bindings/arm/npcm/*
2527 F:      Documentation/devicetree/bindings/rtc/nuvoton,nct3018y.yaml
2528 F:      arch/arm/boot/dts/nuvoton-npcm*
2529 F:      arch/arm/mach-npcm/
2530 F:      arch/arm64/boot/dts/nuvoton/
2531 F:      drivers/*/*npcm*
2532 F:      drivers/*/*/*npcm*
2533 F:      drivers/rtc/rtc-nct3018y.c
2534 F:      include/dt-bindings/clock/nuvoton,npcm7xx-clock.h
2535 F:      include/dt-bindings/clock/nuvoton,npcm845-clk.h
2536
2537 ARM/NUVOTON WPCM450 ARCHITECTURE
2538 M:      Jonathan Neuschäfer <j.neuschaefer@gmx.net>
2539 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2540 S:      Maintained
2541 W:      https://github.com/neuschaefer/wpcm450/wiki
2542 F:      Documentation/devicetree/bindings/*/*wpcm*
2543 F:      arch/arm/boot/dts/nuvoton-wpcm450*
2544 F:      arch/arm/mach-npcm/wpcm450.c
2545 F:      drivers/*/*/*wpcm*
2546 F:      drivers/*/*wpcm*
2547
2548 ARM/NXP S32G ARCHITECTURE
2549 M:      Chester Lin <clin@suse.com>
2550 R:      Andreas Färber <afaerber@suse.de>
2551 R:      Matthias Brugger <mbrugger@suse.com>
2552 R:      NXP S32 Linux Team <s32@nxp.com>
2553 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2554 S:      Maintained
2555 F:      arch/arm64/boot/dts/freescale/s32g*.dts*
2556
2557 ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
2558 L:      openmoko-kernel@lists.openmoko.org (subscribers-only)
2559 S:      Orphan
2560 W:      http://wiki.openmoko.org/wiki/Neo_FreeRunner
2561 F:      arch/arm/mach-s3c/gta02.h
2562 F:      arch/arm/mach-s3c/mach-gta02.c
2563
2564 ARM/Orion SoC/Technologic Systems TS-78xx platform support
2565 M:      Alexander Clouter <alex@digriz.org.uk>
2566 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2567 S:      Maintained
2568 W:      http://www.digriz.org.uk/ts78xx/kernel
2569 F:      arch/arm/mach-orion5x/ts78xx-*
2570
2571 ARM/OXNAS platform support
2572 M:      Neil Armstrong <neil.armstrong@linaro.org>
2573 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2574 L:      linux-oxnas@groups.io (moderated for non-subscribers)
2575 S:      Maintained
2576 F:      arch/arm/boot/dts/ox8*.dts*
2577 F:      arch/arm/mach-oxnas/
2578 F:      drivers/power/reset/oxnas-restart.c
2579 N:      oxnas
2580
2581 ARM/PALM TREO SUPPORT
2582 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2583 S:      Orphan
2584 F:      arch/arm/mach-pxa/palmtreo.*
2585
2586 ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
2587 M:      Marek Vasut <marek.vasut@gmail.com>
2588 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2589 S:      Maintained
2590 W:      http://hackndev.com
2591 F:      arch/arm/mach-pxa/include/mach/palmld.h
2592 F:      arch/arm/mach-pxa/include/mach/palmtc.h
2593 F:      arch/arm/mach-pxa/include/mach/palmtx.h
2594 F:      arch/arm/mach-pxa/palmld.c
2595 F:      arch/arm/mach-pxa/palmt5.*
2596 F:      arch/arm/mach-pxa/palmtc.c
2597 F:      arch/arm/mach-pxa/palmte2.*
2598 F:      arch/arm/mach-pxa/palmtx.c
2599
2600 ARM/PALMZ72 SUPPORT
2601 M:      Sergey Lapin <slapin@ossfans.org>
2602 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2603 S:      Maintained
2604 W:      http://hackndev.com
2605 F:      arch/arm/mach-pxa/palmz72.*
2606
2607 ARM/PLEB SUPPORT
2608 M:      Peter Chubb <pleb@gelato.unsw.edu.au>
2609 S:      Maintained
2610 W:      http://www.disy.cse.unsw.edu.au/Hardware/PLEB
2611
2612 ARM/PT DIGITAL BOARD PORT
2613 M:      Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
2614 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2615 S:      Maintained
2616 W:      http://www.armlinux.org.uk/
2617
2618 ARM/QUALCOMM SUPPORT
2619 M:      Andy Gross <agross@kernel.org>
2620 M:      Bjorn Andersson <andersson@kernel.org>
2621 R:      Konrad Dybcio <konrad.dybcio@somainline.org>
2622 L:      linux-arm-msm@vger.kernel.org
2623 S:      Maintained
2624 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/qcom/linux.git
2625 F:      Documentation/devicetree/bindings/*/qcom*
2626 F:      Documentation/devicetree/bindings/soc/qcom/
2627 F:      arch/arm/boot/dts/qcom-*.dts
2628 F:      arch/arm/boot/dts/qcom-*.dtsi
2629 F:      arch/arm/configs/qcom_defconfig
2630 F:      arch/arm/mach-qcom/
2631 F:      arch/arm64/boot/dts/qcom/
2632 F:      drivers/*/*/qcom*
2633 F:      drivers/*/*/qcom/
2634 F:      drivers/*/pm8???-*
2635 F:      drivers/*/qcom*
2636 F:      drivers/*/qcom/
2637 F:      drivers/bluetooth/btqcomsmd.c
2638 F:      drivers/clocksource/timer-qcom.c
2639 F:      drivers/cpuidle/cpuidle-qcom-spm.c
2640 F:      drivers/extcon/extcon-qcom*
2641 F:      drivers/i2c/busses/i2c-qcom-geni.c
2642 F:      drivers/i2c/busses/i2c-qup.c
2643 F:      drivers/iommu/msm*
2644 F:      drivers/mfd/ssbi.c
2645 F:      drivers/mmc/host/mmci_qcom*
2646 F:      drivers/mmc/host/sdhci-msm.c
2647 F:      drivers/pci/controller/dwc/pcie-qcom.c
2648 F:      drivers/phy/qualcomm/
2649 F:      drivers/power/*/msm*
2650 F:      drivers/reset/reset-qcom-*
2651 F:      drivers/ufs/host/ufs-qcom*
2652 F:      drivers/spi/spi-geni-qcom.c
2653 F:      drivers/spi/spi-qcom-qspi.c
2654 F:      drivers/spi/spi-qup.c
2655 F:      drivers/tty/serial/msm_serial.c
2656 F:      drivers/usb/dwc3/dwc3-qcom.c
2657 F:      include/dt-bindings/*/qcom*
2658 F:      include/linux/*/qcom*
2659 F:      include/linux/soc/qcom/
2660
2661 ARM/RADISYS ENP2611 MACHINE SUPPORT
2662 M:      Lennert Buytenhek <kernel@wantstofly.org>
2663 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2664 S:      Maintained
2665
2666 ARM/RDA MICRO ARCHITECTURE
2667 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
2668 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2669 L:      linux-unisoc@lists.infradead.org (moderated for non-subscribers)
2670 S:      Maintained
2671 F:      Documentation/devicetree/bindings/arm/rda.yaml
2672 F:      Documentation/devicetree/bindings/gpio/gpio-rda.yaml
2673 F:      Documentation/devicetree/bindings/interrupt-controller/rda,8810pl-intc.yaml
2674 F:      Documentation/devicetree/bindings/serial/rda,8810pl-uart.yaml
2675 F:      Documentation/devicetree/bindings/timer/rda,8810pl-timer.yaml
2676 F:      arch/arm/boot/dts/rda8810pl-*
2677 F:      drivers/clocksource/timer-rda.c
2678 F:      drivers/gpio/gpio-rda.c
2679 F:      drivers/irqchip/irq-rda-intc.c
2680 F:      drivers/tty/serial/rda-uart.c
2681
2682 ARM/REALTEK ARCHITECTURE
2683 M:      Andreas Färber <afaerber@suse.de>
2684 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2685 L:      linux-realtek-soc@lists.infradead.org (moderated for non-subscribers)
2686 S:      Maintained
2687 F:      Documentation/devicetree/bindings/arm/realtek.yaml
2688 F:      arch/arm/boot/dts/rtd*
2689 F:      arch/arm/mach-realtek/
2690 F:      arch/arm64/boot/dts/realtek/
2691
2692 ARM/RENESAS ARCHITECTURE
2693 M:      Geert Uytterhoeven <geert+renesas@glider.be>
2694 M:      Magnus Damm <magnus.damm@gmail.com>
2695 L:      linux-renesas-soc@vger.kernel.org
2696 S:      Supported
2697 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
2698 C:      irc://irc.libera.chat/renesas-soc
2699 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git next
2700 F:      Documentation/devicetree/bindings/arm/renesas.yaml
2701 F:      Documentation/devicetree/bindings/hwinfo/renesas,prr.yaml
2702 F:      Documentation/devicetree/bindings/soc/renesas/
2703 F:      arch/arm/boot/dts/emev2*
2704 F:      arch/arm/boot/dts/gr-peach*
2705 F:      arch/arm/boot/dts/iwg20d-q7*
2706 F:      arch/arm/boot/dts/r7s*
2707 F:      arch/arm/boot/dts/r8a*
2708 F:      arch/arm/boot/dts/r9a*
2709 F:      arch/arm/boot/dts/sh*
2710 F:      arch/arm/configs/shmobile_defconfig
2711 F:      arch/arm/include/debug/renesas-scif.S
2712 F:      arch/arm/mach-shmobile/
2713 F:      arch/arm64/boot/dts/renesas/
2714 F:      drivers/soc/renesas/
2715 F:      include/linux/soc/renesas/
2716
2717 ARM/RISCPC ARCHITECTURE
2718 M:      Russell King <linux@armlinux.org.uk>
2719 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2720 S:      Maintained
2721 W:      http://www.armlinux.org.uk/
2722 F:      arch/arm/include/asm/hardware/ioc.h
2723 F:      arch/arm/include/asm/hardware/iomd.h
2724 F:      arch/arm/include/asm/hardware/memc.h
2725 F:      arch/arm/mach-rpc/
2726 F:      drivers/net/ethernet/8390/etherh.c
2727 F:      drivers/net/ethernet/i825xx/ether1*
2728 F:      drivers/net/ethernet/seeq/ether3*
2729 F:      drivers/scsi/arm/
2730
2731 ARM/Rockchip SoC support
2732 M:      Heiko Stuebner <heiko@sntech.de>
2733 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2734 L:      linux-rockchip@lists.infradead.org
2735 S:      Maintained
2736 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmind/linux-rockchip.git
2737 F:      Documentation/devicetree/bindings/i2c/i2c-rk3x.yaml
2738 F:      Documentation/devicetree/bindings/mmc/rockchip-dw-mshc.yaml
2739 F:      Documentation/devicetree/bindings/spi/spi-rockchip.yaml
2740 F:      arch/arm/boot/dts/rk3*
2741 F:      arch/arm/boot/dts/rv1108*
2742 F:      arch/arm/mach-rockchip/
2743 F:      drivers/*/*/*rockchip*
2744 F:      drivers/*/*rockchip*
2745 F:      drivers/clk/rockchip/
2746 F:      drivers/i2c/busses/i2c-rk3x.c
2747 F:      sound/soc/rockchip/
2748 N:      rockchip
2749
2750 ARM/SAMSUNG S3C, S5P AND EXYNOS ARM ARCHITECTURES
2751 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
2752 R:      Alim Akhtar <alim.akhtar@samsung.com>
2753 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2754 L:      linux-samsung-soc@vger.kernel.org
2755 S:      Maintained
2756 C:      irc://irc.libera.chat/linux-exynos
2757 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
2758 B:      mailto:linux-samsung-soc@vger.kernel.org
2759 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/krzk/linux.git
2760 F:      Documentation/arm/samsung/
2761 F:      Documentation/devicetree/bindings/arm/samsung/
2762 F:      Documentation/devicetree/bindings/hwinfo/samsung,*
2763 F:      Documentation/devicetree/bindings/power/pd-samsung.yaml
2764 F:      Documentation/devicetree/bindings/soc/samsung/
2765 F:      arch/arm/boot/dts/exynos*
2766 F:      arch/arm/boot/dts/s3c*
2767 F:      arch/arm/boot/dts/s5p*
2768 F:      arch/arm/mach-exynos*/
2769 F:      arch/arm/mach-s3c/
2770 F:      arch/arm/mach-s5p*/
2771 F:      arch/arm64/boot/dts/exynos/
2772 F:      drivers/*/*/*s3c24*
2773 F:      drivers/*/*s3c24*
2774 F:      drivers/*/*s3c64xx*
2775 F:      drivers/*/*s5pv210*
2776 F:      drivers/clocksource/samsung_pwm_timer.c
2777 F:      drivers/memory/samsung/
2778 F:      drivers/pwm/pwm-samsung.c
2779 F:      drivers/soc/samsung/
2780 F:      drivers/tty/serial/samsung*
2781 F:      include/clocksource/samsung_pwm.h
2782 F:      include/linux/platform_data/*s3c*
2783 F:      include/linux/serial_s3c.h
2784 F:      include/linux/soc/samsung/
2785 N:      exynos
2786 N:      s3c2410
2787 N:      s3c64xx
2788 N:      s5pv210
2789
2790 ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT
2791 M:      Łukasz Stelmach <l.stelmach@samsung.com>
2792 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2793 L:      linux-media@vger.kernel.org
2794 S:      Maintained
2795 F:      drivers/media/platform/samsung/s5p-g2d/
2796
2797 ARM/SAMSUNG S5P SERIES HDMI CEC SUBSYSTEM SUPPORT
2798 M:      Marek Szyprowski <m.szyprowski@samsung.com>
2799 L:      linux-samsung-soc@vger.kernel.org
2800 L:      linux-media@vger.kernel.org
2801 S:      Maintained
2802 F:      Documentation/devicetree/bindings/media/s5p-cec.txt
2803 F:      drivers/media/cec/platform/s5p/
2804
2805 ARM/SAMSUNG S5P SERIES JPEG CODEC SUPPORT
2806 M:      Andrzej Pietrasiewicz <andrzejtp2010@gmail.com>
2807 M:      Jacek Anaszewski <jacek.anaszewski@gmail.com>
2808 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
2809 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2810 L:      linux-media@vger.kernel.org
2811 S:      Maintained
2812 F:      Documentation/devicetree/bindings/media/samsung,s5pv210-jpeg.yaml
2813 F:      drivers/media/platform/samsung/s5p-jpeg/
2814
2815 ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
2816 M:      Marek Szyprowski <m.szyprowski@samsung.com>
2817 M:      Andrzej Hajda <andrzej.hajda@intel.com>
2818 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2819 L:      linux-media@vger.kernel.org
2820 S:      Maintained
2821 F:      drivers/media/platform/samsung/s5p-mfc/
2822
2823 ARM/SOCFPGA ARCHITECTURE
2824 M:      Dinh Nguyen <dinguyen@kernel.org>
2825 S:      Maintained
2826 W:      http://www.rocketboards.org
2827 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
2828 F:      arch/arm/boot/dts/socfpga*
2829 F:      arch/arm/configs/socfpga_defconfig
2830 F:      arch/arm/mach-socfpga/
2831 F:      arch/arm64/boot/dts/altera/
2832 F:      arch/arm64/boot/dts/intel/
2833
2834 ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
2835 M:      Dinh Nguyen <dinguyen@kernel.org>
2836 S:      Maintained
2837 F:      drivers/clk/socfpga/
2838
2839 ARM/SOCFPGA EDAC SUPPORT
2840 M:      Dinh Nguyen <dinguyen@kernel.org>
2841 S:      Maintained
2842 F:      drivers/edac/altera_edac.[ch]
2843
2844 ARM/SPREADTRUM SoC SUPPORT
2845 M:      Orson Zhai <orsonzhai@gmail.com>
2846 M:      Baolin Wang <baolin.wang7@gmail.com>
2847 M:      Chunyan Zhang <zhang.lyra@gmail.com>
2848 S:      Maintained
2849 F:      arch/arm64/boot/dts/sprd
2850 N:      sprd
2851 N:      sc27xx
2852 N:      sc2731
2853
2854 ARM/STI ARCHITECTURE
2855 M:      Patrice Chotard <patrice.chotard@foss.st.com>
2856 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2857 S:      Maintained
2858 W:      http://www.stlinux.com
2859 F:      Documentation/devicetree/bindings/i2c/i2c-st.txt
2860 F:      arch/arm/boot/dts/sti*
2861 F:      arch/arm/mach-sti/
2862 F:      drivers/ata/ahci_st.c
2863 F:      drivers/char/hw_random/st-rng.c
2864 F:      drivers/clocksource/arm_global_timer.c
2865 F:      drivers/clocksource/clksrc_st_lpc.c
2866 F:      drivers/cpufreq/sti-cpufreq.c
2867 F:      drivers/dma/st_fdma*
2868 F:      drivers/i2c/busses/i2c-st.c
2869 F:      drivers/media/platform/st/sti/c8sectpfe/
2870 F:      drivers/media/rc/st_rc.c
2871 F:      drivers/mmc/host/sdhci-st.c
2872 F:      drivers/phy/st/phy-miphy28lp.c
2873 F:      drivers/phy/st/phy-stih407-usb.c
2874 F:      drivers/pinctrl/pinctrl-st.c
2875 F:      drivers/remoteproc/st_remoteproc.c
2876 F:      drivers/remoteproc/st_slim_rproc.c
2877 F:      drivers/reset/sti/
2878 F:      drivers/rtc/rtc-st-lpc.c
2879 F:      drivers/tty/serial/st-asc.c
2880 F:      drivers/usb/dwc3/dwc3-st.c
2881 F:      drivers/usb/host/ehci-st.c
2882 F:      drivers/usb/host/ohci-st.c
2883 F:      drivers/watchdog/st_lpc_wdt.c
2884 F:      include/linux/remoteproc/st_slim_rproc.h
2885
2886 ARM/STM32 ARCHITECTURE
2887 M:      Maxime Coquelin <mcoquelin.stm32@gmail.com>
2888 M:      Alexandre Torgue <alexandre.torgue@foss.st.com>
2889 L:      linux-stm32@st-md-mailman.stormreply.com (moderated for non-subscribers)
2890 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2891 S:      Maintained
2892 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/atorgue/stm32.git stm32-next
2893 F:      arch/arm/boot/dts/stm32*
2894 F:      arch/arm/mach-stm32/
2895 F:      drivers/clocksource/armv7m_systick.c
2896 N:      stm32
2897 N:      stm
2898
2899 ARM/SUNPLUS SP7021 SOC SUPPORT
2900 M:      Qin Jian <qinjian@cqplus1.com>
2901 L:      linux-arm-kernel@lists.infradead.org (moderated for mon-subscribers)
2902 S:      Maintained
2903 W:      https://sunplus-tibbo.atlassian.net/wiki/spaces/doc/overview
2904 F:      Documentation/devicetree/bindings/arm/sunplus,sp7021.yaml
2905 F:      Documentation/devicetree/bindings/clock/sunplus,sp7021-clkc.yaml
2906 F:      Documentation/devicetree/bindings/interrupt-controller/sunplus,sp7021-intc.yaml
2907 F:      Documentation/devicetree/bindings/reset/sunplus,reset.yaml
2908 F:      arch/arm/boot/dts/sunplus-sp7021*.dts*
2909 F:      arch/arm/configs/sp7021_*defconfig
2910 F:      arch/arm/mach-sunplus/
2911 F:      drivers/irqchip/irq-sp7021-intc.c
2912 F:      drivers/reset/reset-sunplus.c
2913 F:      include/dt-bindings/clock/sunplus,sp7021-clkc.h
2914 F:      include/dt-bindings/reset/sunplus,sp7021-reset.h
2915
2916 ARM/Synaptics SoC support
2917 M:      Jisheng Zhang <jszhang@kernel.org>
2918 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2919 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2920 S:      Maintained
2921 F:      arch/arm/boot/dts/berlin*
2922 F:      arch/arm/mach-berlin/
2923 F:      arch/arm64/boot/dts/synaptics/
2924
2925 ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
2926 M:      Lennert Buytenhek <kernel@wantstofly.org>
2927 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2928 S:      Maintained
2929
2930 ARM/TEGRA HDMI CEC SUBSYSTEM SUPPORT
2931 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
2932 L:      linux-tegra@vger.kernel.org
2933 L:      linux-media@vger.kernel.org
2934 S:      Maintained
2935 F:      Documentation/devicetree/bindings/media/tegra-cec.txt
2936 F:      drivers/media/cec/platform/tegra/
2937
2938 ARM/TESLA FSD SoC SUPPORT
2939 M:      Alim Akhtar <alim.akhtar@samsung.com>
2940 M:      linux-fsd@tesla.com
2941 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2942 L:      linux-samsung-soc@vger.kernel.org
2943 S:      Maintained
2944 F:      arch/arm64/boot/dts/tesla*
2945
2946 ARM/TETON BGA MACHINE SUPPORT
2947 M:      "Mark F. Brown" <mark.brown314@gmail.com>
2948 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2949 S:      Maintained
2950
2951 ARM/TEXAS INSTRUMENT AEMIF/EMIF DRIVERS
2952 M:      Santosh Shilimkar <ssantosh@kernel.org>
2953 L:      linux-kernel@vger.kernel.org
2954 S:      Maintained
2955 F:      drivers/memory/*emif*
2956
2957 ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE
2958 M:      Nishanth Menon <nm@ti.com>
2959 M:      Santosh Shilimkar <ssantosh@kernel.org>
2960 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2961 S:      Maintained
2962 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ti/linux.git
2963 F:      arch/arm/boot/dts/keystone-*
2964 F:      arch/arm/mach-keystone/
2965
2966 ARM/TEXAS INSTRUMENT KEYSTONE CLOCK FRAMEWORK
2967 M:      Santosh Shilimkar <ssantosh@kernel.org>
2968 L:      linux-kernel@vger.kernel.org
2969 S:      Maintained
2970 F:      drivers/clk/keystone/
2971
2972 ARM/TEXAS INSTRUMENT KEYSTONE CLOCKSOURCE
2973 M:      Santosh Shilimkar <ssantosh@kernel.org>
2974 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2975 L:      linux-kernel@vger.kernel.org
2976 S:      Maintained
2977 F:      drivers/clocksource/timer-keystone.c
2978
2979 ARM/TEXAS INSTRUMENT KEYSTONE RESET DRIVER
2980 M:      Santosh Shilimkar <ssantosh@kernel.org>
2981 L:      linux-kernel@vger.kernel.org
2982 S:      Maintained
2983 F:      drivers/power/reset/keystone-reset.c
2984
2985 ARM/TEXAS INSTRUMENTS K3 ARCHITECTURE
2986 M:      Nishanth Menon <nm@ti.com>
2987 M:      Vignesh Raghavendra <vigneshr@ti.com>
2988 M:      Tero Kristo <kristo@kernel.org>
2989 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2990 S:      Supported
2991 F:      Documentation/devicetree/bindings/arm/ti/k3.yaml
2992 F:      Documentation/devicetree/bindings/hwinfo/ti,k3-socinfo.yaml
2993 F:      arch/arm64/boot/dts/ti/Makefile
2994 F:      arch/arm64/boot/dts/ti/k3-*
2995 F:      include/dt-bindings/pinctrl/k3.h
2996
2997 ARM/THECUS N2100 MACHINE SUPPORT
2998 M:      Lennert Buytenhek <kernel@wantstofly.org>
2999 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3000 S:      Maintained
3001
3002 ARM/TOSA MACHINE SUPPORT
3003 M:      Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
3004 M:      Dirk Opfer <dirk@opfer-online.de>
3005 S:      Maintained
3006
3007 ARM/TOSHIBA VISCONTI ARCHITECTURE
3008 M:      Nobuhiro Iwamatsu <nobuhiro1.iwamatsu@toshiba.co.jp>
3009 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3010 S:      Supported
3011 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwamatsu/linux-visconti.git
3012 F:      Documentation/devicetree/bindings/arm/toshiba.yaml
3013 F:      Documentation/devicetree/bindings/clock/toshiba,tmpv770x-pipllct.yaml
3014 F:      Documentation/devicetree/bindings/clock/toshiba,tmpv770x-pismu.yaml
3015 F:      Documentation/devicetree/bindings/net/toshiba,visconti-dwmac.yaml
3016 F:      Documentation/devicetree/bindings/gpio/toshiba,gpio-visconti.yaml
3017 F:      Documentation/devicetree/bindings/pci/toshiba,visconti-pcie.yaml
3018 F:      Documentation/devicetree/bindings/pinctrl/toshiba,visconti-pinctrl.yaml
3019 F:      Documentation/devicetree/bindings/watchdog/toshiba,visconti-wdt.yaml
3020 F:      arch/arm64/boot/dts/toshiba/
3021 F:      drivers/clk/visconti/
3022 F:      drivers/net/ethernet/stmicro/stmmac/dwmac-visconti.c
3023 F:      drivers/gpio/gpio-visconti.c
3024 F:      drivers/pci/controller/dwc/pcie-visconti.c
3025 F:      drivers/pinctrl/visconti/
3026 F:      drivers/watchdog/visconti_wdt.c
3027 N:      visconti
3028
3029 ARM/UNIPHIER ARCHITECTURE
3030 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
3031 M:      Masami Hiramatsu <mhiramat@kernel.org>
3032 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3033 S:      Maintained
3034 F:      Documentation/devicetree/bindings/arm/socionext/uniphier.yaml
3035 F:      Documentation/devicetree/bindings/gpio/socionext,uniphier-gpio.yaml
3036 F:      Documentation/devicetree/bindings/pinctrl/socionext,uniphier-pinctrl.yaml
3037 F:      arch/arm/boot/dts/uniphier*
3038 F:      arch/arm/include/asm/hardware/cache-uniphier.h
3039 F:      arch/arm/mach-uniphier/
3040 F:      arch/arm/mm/cache-uniphier.c
3041 F:      arch/arm64/boot/dts/socionext/uniphier*
3042 F:      drivers/bus/uniphier-system-bus.c
3043 F:      drivers/clk/uniphier/
3044 F:      drivers/dma/uniphier-mdmac.c
3045 F:      drivers/gpio/gpio-uniphier.c
3046 F:      drivers/i2c/busses/i2c-uniphier*
3047 F:      drivers/irqchip/irq-uniphier-aidet.c
3048 F:      drivers/mmc/host/uniphier-sd.c
3049 F:      drivers/pinctrl/uniphier/
3050 F:      drivers/reset/reset-uniphier.c
3051 F:      drivers/tty/serial/8250/8250_uniphier.c
3052 N:      uniphier
3053
3054 ARM/VERSATILE EXPRESS PLATFORM
3055 M:      Liviu Dudau <liviu.dudau@arm.com>
3056 M:      Sudeep Holla <sudeep.holla@arm.com>
3057 M:      Lorenzo Pieralisi <lpieralisi@kernel.org>
3058 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3059 S:      Maintained
3060 F:      */*/*/vexpress*
3061 F:      */*/vexpress*
3062 F:      arch/arm/boot/dts/vexpress*
3063 F:      arch/arm/mach-vexpress/
3064 F:      arch/arm64/boot/dts/arm/
3065 F:      drivers/clk/versatile/clk-vexpress-osc.c
3066 F:      drivers/clocksource/timer-versatile.c
3067 N:      mps2
3068
3069 ARM/VFP SUPPORT
3070 M:      Russell King <linux@armlinux.org.uk>
3071 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3072 S:      Maintained
3073 W:      http://www.armlinux.org.uk/
3074 F:      arch/arm/vfp/
3075
3076 ARM/VOIPAC PXA270 SUPPORT
3077 M:      Marek Vasut <marek.vasut@gmail.com>
3078 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3079 S:      Maintained
3080 F:      arch/arm/mach-pxa/include/mach/vpac270.h
3081 F:      arch/arm/mach-pxa/vpac270.c
3082
3083 ARM/VT8500 ARM ARCHITECTURE
3084 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3085 S:      Orphan
3086 F:      Documentation/devicetree/bindings/i2c/i2c-wmt.txt
3087 F:      arch/arm/mach-vt8500/
3088 F:      drivers/clocksource/timer-vt8500.c
3089 F:      drivers/i2c/busses/i2c-wmt.c
3090 F:      drivers/mmc/host/wmt-sdmmc.c
3091 F:      drivers/pwm/pwm-vt8500.c
3092 F:      drivers/rtc/rtc-vt8500.c
3093 F:      drivers/tty/serial/vt8500_serial.c
3094 F:      drivers/usb/host/ehci-platform.c
3095 F:      drivers/usb/host/uhci-platform.c
3096 F:      drivers/video/fbdev/vt8500lcdfb.*
3097 F:      drivers/video/fbdev/wm8505fb*
3098 F:      drivers/video/fbdev/wmt_ge_rops.*
3099
3100 ARM/ZIPIT Z2 SUPPORT
3101 M:      Marek Vasut <marek.vasut@gmail.com>
3102 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3103 S:      Maintained
3104 F:      arch/arm/mach-pxa/include/mach/z2.h
3105 F:      arch/arm/mach-pxa/z2.c
3106
3107 ARM/ZYNQ ARCHITECTURE
3108 M:      Michal Simek <michal.simek@xilinx.com>
3109 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3110 S:      Supported
3111 W:      http://wiki.xilinx.com
3112 T:      git https://github.com/Xilinx/linux-xlnx.git
3113 F:      Documentation/devicetree/bindings/i2c/cdns,i2c-r1p10.yaml
3114 F:      Documentation/devicetree/bindings/i2c/xlnx,xps-iic-2.00.a.yaml
3115 F:      Documentation/devicetree/bindings/memory-controllers/snps,dw-umctl2-ddrc.yaml
3116 F:      Documentation/devicetree/bindings/memory-controllers/xlnx,zynq-ddrc-a05.yaml
3117 F:      Documentation/devicetree/bindings/spi/xlnx,zynq-qspi.yaml
3118 F:      arch/arm/mach-zynq/
3119 F:      drivers/clocksource/timer-cadence-ttc.c
3120 F:      drivers/cpuidle/cpuidle-zynq.c
3121 F:      drivers/edac/synopsys_edac.c
3122 F:      drivers/i2c/busses/i2c-cadence.c
3123 F:      drivers/i2c/busses/i2c-xiic.c
3124 F:      drivers/mmc/host/sdhci-of-arasan.c
3125 N:      zynq
3126 N:      xilinx
3127
3128 ARM64 PORT (AARCH64 ARCHITECTURE)
3129 M:      Catalin Marinas <catalin.marinas@arm.com>
3130 M:      Will Deacon <will@kernel.org>
3131 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3132 S:      Maintained
3133 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux.git
3134 F:      Documentation/arm64/
3135 F:      arch/arm64/
3136 F:      tools/testing/selftests/arm64/
3137 X:      arch/arm64/boot/dts/
3138
3139 ARROW SPEEDCHIPS XRS7000 SERIES ETHERNET SWITCH DRIVER
3140 M:      George McCollister <george.mccollister@gmail.com>
3141 L:      netdev@vger.kernel.org
3142 S:      Maintained
3143 F:      Documentation/devicetree/bindings/net/dsa/arrow,xrs700x.yaml
3144 F:      drivers/net/dsa/xrs700x/*
3145 F:      net/dsa/tag_xrs700x.c
3146
3147 AS3645A LED FLASH CONTROLLER DRIVER
3148 M:      Sakari Ailus <sakari.ailus@iki.fi>
3149 L:      linux-leds@vger.kernel.org
3150 S:      Maintained
3151 F:      drivers/leds/flash/leds-as3645a.c
3152
3153 ASAHI KASEI AK7375 LENS VOICE COIL DRIVER
3154 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
3155 L:      linux-media@vger.kernel.org
3156 S:      Maintained
3157 T:      git git://linuxtv.org/media_tree.git
3158 F:      Documentation/devicetree/bindings/media/i2c/ak7375.txt
3159 F:      drivers/media/i2c/ak7375.c
3160
3161 ASAHI KASEI AK8974 DRIVER
3162 M:      Linus Walleij <linus.walleij@linaro.org>
3163 L:      linux-iio@vger.kernel.org
3164 S:      Supported
3165 W:      http://www.akm.com/
3166 F:      drivers/iio/magnetometer/ak8974.c
3167
3168 ASC7621 HARDWARE MONITOR DRIVER
3169 M:      George Joseph <george.joseph@fairview5.com>
3170 L:      linux-hwmon@vger.kernel.org
3171 S:      Maintained
3172 F:      Documentation/hwmon/asc7621.rst
3173 F:      drivers/hwmon/asc7621.c
3174
3175 ASIX AX88796C SPI ETHERNET ADAPTER
3176 M:      Łukasz Stelmach <l.stelmach@samsung.com>
3177 S:      Maintained
3178 F:      Documentation/devicetree/bindings/net/asix,ax88796c.yaml
3179 F:      drivers/net/ethernet/asix/ax88796c_*
3180
3181 ASPEED PECI CONTROLLER
3182 M:      Iwona Winiarska <iwona.winiarska@intel.com>
3183 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
3184 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
3185 S:      Supported
3186 F:      Documentation/devicetree/bindings/peci/peci-aspeed.yaml
3187 F:      drivers/peci/controller/peci-aspeed.c
3188
3189 ASPEED PINCTRL DRIVERS
3190 M:      Andrew Jeffery <andrew@aj.id.au>
3191 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
3192 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
3193 L:      linux-gpio@vger.kernel.org
3194 S:      Maintained
3195 F:      Documentation/devicetree/bindings/pinctrl/aspeed,*
3196 F:      drivers/pinctrl/aspeed/
3197
3198 ASPEED SCU INTERRUPT CONTROLLER DRIVER
3199 M:      Eddie James <eajames@linux.ibm.com>
3200 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
3201 S:      Maintained
3202 F:      Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2xxx-scu-ic.txt
3203 F:      drivers/irqchip/irq-aspeed-scu-ic.c
3204 F:      include/dt-bindings/interrupt-controller/aspeed-scu-ic.h
3205
3206 ASPEED SD/MMC DRIVER
3207 M:      Andrew Jeffery <andrew@aj.id.au>
3208 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
3209 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
3210 L:      linux-mmc@vger.kernel.org
3211 S:      Maintained
3212 F:      Documentation/devicetree/bindings/mmc/aspeed,sdhci.yaml
3213 F:      drivers/mmc/host/sdhci-of-aspeed*
3214
3215 ASPEED SMC SPI DRIVER
3216 M:      Chin-Ting Kuo <chin-ting_kuo@aspeedtech.com>
3217 M:      Cédric Le Goater <clg@kaod.org>
3218 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
3219 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
3220 L:      linux-spi@vger.kernel.org
3221 S:      Maintained
3222 F:      Documentation/devicetree/bindings/spi/aspeed,ast2600-fmc.yaml
3223 F:      drivers/spi/spi-aspeed-smc.c
3224
3225 ASPEED VIDEO ENGINE DRIVER
3226 M:      Eddie James <eajames@linux.ibm.com>
3227 L:      linux-media@vger.kernel.org
3228 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
3229 S:      Maintained
3230 F:      Documentation/devicetree/bindings/media/aspeed-video.txt
3231 F:      drivers/media/platform/aspeed/
3232
3233 ASPEED USB UDC DRIVER
3234 M:      Neal Liu <neal_liu@aspeedtech.com>
3235 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
3236 S:      Maintained
3237 F:      Documentation/devicetree/bindings/usb/aspeed,ast2600-udc.yaml
3238 F:      drivers/usb/gadget/udc/aspeed_udc.c
3239
3240 ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
3241 M:      Corentin Chary <corentin.chary@gmail.com>
3242 L:      acpi4asus-user@lists.sourceforge.net
3243 L:      platform-driver-x86@vger.kernel.org
3244 S:      Maintained
3245 W:      http://acpi4asus.sf.net
3246 F:      drivers/platform/x86/asus*.c
3247 F:      drivers/platform/x86/eeepc*.c
3248
3249 ASUS TF103C DOCK DRIVER
3250 M:      Hans de Goede <hdegoede@redhat.com>
3251 L:      platform-driver-x86@vger.kernel.org
3252 S:      Maintained
3253 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
3254 F:      drivers/platform/x86/asus-tf103c-dock.c
3255
3256 ASUS WMI HARDWARE MONITOR DRIVER
3257 M:      Ed Brindley <kernel@maidavale.org>
3258 M:      Denis Pauk <pauk.denis@gmail.com>
3259 L:      linux-hwmon@vger.kernel.org
3260 S:      Maintained
3261 F:      drivers/hwmon/asus_wmi_sensors.c
3262
3263 ASUS EC HARDWARE MONITOR DRIVER
3264 M:      Eugene Shalygin <eugene.shalygin@gmail.com>
3265 L:      linux-hwmon@vger.kernel.org
3266 S:      Maintained
3267 F:      drivers/hwmon/asus-ec-sensors.c
3268
3269 ASUS WIRELESS RADIO CONTROL DRIVER
3270 M:      João Paulo Rechi Vita <jprvita@gmail.com>
3271 L:      platform-driver-x86@vger.kernel.org
3272 S:      Maintained
3273 F:      drivers/platform/x86/asus-wireless.c
3274
3275 ASYMMETRIC KEYS
3276 M:      David Howells <dhowells@redhat.com>
3277 L:      keyrings@vger.kernel.org
3278 S:      Maintained
3279 F:      Documentation/crypto/asymmetric-keys.rst
3280 F:      crypto/asymmetric_keys/
3281 F:      include/crypto/pkcs7.h
3282 F:      include/crypto/public_key.h
3283 F:      include/linux/verification.h
3284
3285 ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
3286 R:      Dan Williams <dan.j.williams@intel.com>
3287 S:      Odd fixes
3288 W:      http://sourceforge.net/projects/xscaleiop
3289 F:      Documentation/crypto/async-tx-api.rst
3290 F:      crypto/async_tx/
3291 F:      include/linux/async_tx.h
3292
3293 AT24 EEPROM DRIVER
3294 M:      Bartosz Golaszewski <brgl@bgdev.pl>
3295 L:      linux-i2c@vger.kernel.org
3296 S:      Maintained
3297 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux.git
3298 F:      Documentation/devicetree/bindings/eeprom/at24.yaml
3299 F:      drivers/misc/eeprom/at24.c
3300
3301 ATA OVER ETHERNET (AOE) DRIVER
3302 M:      "Justin Sanders" <justin@coraid.com>
3303 S:      Supported
3304 W:      http://www.openaoe.org/
3305 F:      Documentation/admin-guide/aoe/
3306 F:      drivers/block/aoe/
3307
3308 ATC260X PMIC MFD DRIVER
3309 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
3310 M:      Cristian Ciocaltea <cristian.ciocaltea@gmail.com>
3311 L:      linux-actions@lists.infradead.org
3312 S:      Maintained
3313 F:      Documentation/devicetree/bindings/mfd/actions,atc260x.yaml
3314 F:      drivers/input/misc/atc260x-onkey.c
3315 F:      drivers/mfd/atc260*
3316 F:      drivers/power/reset/atc260x-poweroff.c
3317 F:      drivers/regulator/atc260x-regulator.c
3318 F:      include/linux/mfd/atc260x/*
3319
3320 ATHEROS 71XX/9XXX GPIO DRIVER
3321 M:      Alban Bedel <albeu@free.fr>
3322 S:      Maintained
3323 W:      https://github.com/AlbanBedel/linux
3324 T:      git git://github.com/AlbanBedel/linux
3325 F:      Documentation/devicetree/bindings/gpio/gpio-ath79.txt
3326 F:      drivers/gpio/gpio-ath79.c
3327
3328 ATHEROS 71XX/9XXX USB PHY DRIVER
3329 M:      Alban Bedel <albeu@free.fr>
3330 S:      Maintained
3331 W:      https://github.com/AlbanBedel/linux
3332 T:      git git://github.com/AlbanBedel/linux
3333 F:      Documentation/devicetree/bindings/phy/phy-ath79-usb.txt
3334 F:      drivers/phy/qualcomm/phy-ath79-usb.c
3335
3336 ATHEROS ATH GENERIC UTILITIES
3337 M:      Kalle Valo <kvalo@kernel.org>
3338 L:      linux-wireless@vger.kernel.org
3339 S:      Supported
3340 F:      drivers/net/wireless/ath/*
3341
3342 ATHEROS ATH5K WIRELESS DRIVER
3343 M:      Jiri Slaby <jirislaby@kernel.org>
3344 M:      Nick Kossifidis <mickflemm@gmail.com>
3345 M:      Luis Chamberlain <mcgrof@kernel.org>
3346 L:      linux-wireless@vger.kernel.org
3347 S:      Maintained
3348 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath5k
3349 F:      drivers/net/wireless/ath/ath5k/
3350
3351 ATHEROS ATH6KL WIRELESS DRIVER
3352 L:      linux-wireless@vger.kernel.org
3353 S:      Orphan
3354 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath6kl
3355 F:      drivers/net/wireless/ath/ath6kl/
3356
3357 ATI_REMOTE2 DRIVER
3358 M:      Ville Syrjala <syrjala@sci.fi>
3359 S:      Maintained
3360 F:      drivers/input/misc/ati_remote2.c
3361
3362 ATK0110 HWMON DRIVER
3363 M:      Luca Tettamanti <kronos.it@gmail.com>
3364 L:      linux-hwmon@vger.kernel.org
3365 S:      Maintained
3366 F:      drivers/hwmon/asus_atk0110.c
3367
3368 ATLX ETHERNET DRIVERS
3369 M:      Chris Snook <chris.snook@gmail.com>
3370 L:      netdev@vger.kernel.org
3371 S:      Maintained
3372 W:      http://sourceforge.net/projects/atl1
3373 W:      http://atl1.sourceforge.net
3374 F:      drivers/net/ethernet/atheros/
3375
3376 ATM
3377 M:      Chas Williams <3chas3@gmail.com>
3378 L:      linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
3379 L:      netdev@vger.kernel.org
3380 S:      Maintained
3381 W:      http://linux-atm.sourceforge.net
3382 F:      drivers/atm/
3383 F:      include/linux/atm*
3384 F:      include/uapi/linux/atm*
3385
3386 ATMEL MACB ETHERNET DRIVER
3387 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
3388 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
3389 S:      Supported
3390 F:      drivers/net/ethernet/cadence/
3391
3392 ATMEL MAXTOUCH DRIVER
3393 M:      Nick Dyer <nick@shmanahar.org>
3394 S:      Maintained
3395 T:      git git://github.com/ndyer/linux.git
3396 F:      Documentation/devicetree/bindings/input/atmel,maxtouch.yaml
3397 F:      drivers/input/touchscreen/atmel_mxt_ts.c
3398
3399 ATMEL WIRELESS DRIVER
3400 M:      Simon Kelley <simon@thekelleys.org.uk>
3401 L:      linux-wireless@vger.kernel.org
3402 S:      Maintained
3403 W:      http://www.thekelleys.org.uk/atmel
3404 W:      http://atmelwlandriver.sourceforge.net/
3405 F:      drivers/net/wireless/atmel/atmel*
3406
3407 ATOMIC INFRASTRUCTURE
3408 M:      Will Deacon <will@kernel.org>
3409 M:      Peter Zijlstra <peterz@infradead.org>
3410 R:      Boqun Feng <boqun.feng@gmail.com>
3411 R:      Mark Rutland <mark.rutland@arm.com>
3412 L:      linux-kernel@vger.kernel.org
3413 S:      Maintained
3414 F:      arch/*/include/asm/atomic*.h
3415 F:      include/*/atomic*.h
3416 F:      include/linux/refcount.h
3417 F:      Documentation/atomic_*.txt
3418 F:      scripts/atomic/
3419
3420 ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER
3421 M:      Bradley Grove <linuxdrivers@attotech.com>
3422 L:      linux-scsi@vger.kernel.org
3423 S:      Supported
3424 W:      http://www.attotech.com
3425 F:      drivers/scsi/esas2r
3426
3427 ATUSB IEEE 802.15.4 RADIO DRIVER
3428 M:      Stefan Schmidt <stefan@datenfreihafen.org>
3429 L:      linux-wpan@vger.kernel.org
3430 S:      Maintained
3431 F:      drivers/net/ieee802154/at86rf230.h
3432 F:      drivers/net/ieee802154/atusb.c
3433 F:      drivers/net/ieee802154/atusb.h
3434
3435 AUDIT SUBSYSTEM
3436 M:      Paul Moore <paul@paul-moore.com>
3437 M:      Eric Paris <eparis@redhat.com>
3438 L:      linux-audit@redhat.com (moderated for non-subscribers)
3439 S:      Supported
3440 W:      https://github.com/linux-audit
3441 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/audit.git
3442 F:      include/asm-generic/audit_*.h
3443 F:      include/linux/audit.h
3444 F:      include/linux/audit_arch.h
3445 F:      include/uapi/linux/audit.h
3446 F:      kernel/audit*
3447 F:      lib/*audit.c
3448
3449 AUXILIARY DISPLAY DRIVERS
3450 M:      Miguel Ojeda <ojeda@kernel.org>
3451 S:      Maintained
3452 F:      Documentation/devicetree/bindings/auxdisplay/
3453 F:      drivers/auxdisplay/
3454 F:      include/linux/cfag12864b.h
3455
3456 AVIA HX711 ANALOG DIGITAL CONVERTER IIO DRIVER
3457 M:      Andreas Klinger <ak@it-klinger.de>
3458 L:      linux-iio@vger.kernel.org
3459 S:      Maintained
3460 F:      Documentation/devicetree/bindings/iio/adc/avia-hx711.yaml
3461 F:      drivers/iio/adc/hx711.c
3462
3463 AX.25 NETWORK LAYER
3464 M:      Ralf Baechle <ralf@linux-mips.org>
3465 L:      linux-hams@vger.kernel.org
3466 S:      Maintained
3467 W:      http://www.linux-ax25.org/
3468 F:      include/net/ax25.h
3469 F:      include/uapi/linux/ax25.h
3470 F:      net/ax25/
3471
3472 AXENTIA ARM DEVICES
3473 M:      Peter Rosin <peda@axentia.se>
3474 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3475 S:      Maintained
3476 F:      arch/arm/boot/dts/at91-linea.dtsi
3477 F:      arch/arm/boot/dts/at91-natte.dtsi
3478 F:      arch/arm/boot/dts/at91-nattis-2-natte-2.dts
3479 F:      arch/arm/boot/dts/at91-tse850-3.dts
3480
3481 AXENTIA ASOC DRIVERS
3482 M:      Peter Rosin <peda@axentia.se>
3483 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3484 S:      Maintained
3485 F:      Documentation/devicetree/bindings/sound/axentia,*
3486 F:      sound/soc/atmel/tse850-pcm5142.c
3487
3488 AXI-FAN-CONTROL HARDWARE MONITOR DRIVER
3489 M:      Nuno Sá <nuno.sa@analog.com>
3490 L:      linux-hwmon@vger.kernel.org
3491 S:      Supported
3492 W:      https://ez.analog.com/linux-software-drivers
3493 F:      Documentation/devicetree/bindings/hwmon/adi,axi-fan-control.yaml
3494 F:      drivers/hwmon/axi-fan-control.c
3495
3496 AXXIA I2C CONTROLLER
3497 M:      Krzysztof Adamski <krzysztof.adamski@nokia.com>
3498 L:      linux-i2c@vger.kernel.org
3499 S:      Maintained
3500 F:      Documentation/devicetree/bindings/i2c/i2c-axxia.txt
3501 F:      drivers/i2c/busses/i2c-axxia.c
3502
3503 AZ6007 DVB DRIVER
3504 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
3505 L:      linux-media@vger.kernel.org
3506 S:      Maintained
3507 W:      https://linuxtv.org
3508 T:      git git://linuxtv.org/media_tree.git
3509 F:      drivers/media/usb/dvb-usb-v2/az6007.c
3510
3511 AZTECH FM RADIO RECEIVER DRIVER
3512 M:      Hans Verkuil <hverkuil@xs4all.nl>
3513 L:      linux-media@vger.kernel.org
3514 S:      Maintained
3515 W:      https://linuxtv.org
3516 T:      git git://linuxtv.org/media_tree.git
3517 F:      drivers/media/radio/radio-aztech*
3518
3519 B43 WIRELESS DRIVER
3520 L:      linux-wireless@vger.kernel.org
3521 L:      b43-dev@lists.infradead.org
3522 S:      Odd Fixes
3523 W:      https://wireless.wiki.kernel.org/en/users/Drivers/b43
3524 F:      drivers/net/wireless/broadcom/b43/
3525
3526 B43LEGACY WIRELESS DRIVER
3527 M:      Larry Finger <Larry.Finger@lwfinger.net>
3528 L:      linux-wireless@vger.kernel.org
3529 L:      b43-dev@lists.infradead.org
3530 S:      Maintained
3531 W:      https://wireless.wiki.kernel.org/en/users/Drivers/b43
3532 F:      drivers/net/wireless/broadcom/b43legacy/
3533
3534 BACKLIGHT CLASS/SUBSYSTEM
3535 M:      Lee Jones <lee@kernel.org>
3536 M:      Daniel Thompson <daniel.thompson@linaro.org>
3537 M:      Jingoo Han <jingoohan1@gmail.com>
3538 L:      dri-devel@lists.freedesktop.org
3539 S:      Maintained
3540 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/backlight.git
3541 F:      Documentation/ABI/stable/sysfs-class-backlight
3542 F:      Documentation/ABI/testing/sysfs-class-backlight
3543 F:      Documentation/devicetree/bindings/leds/backlight
3544 F:      drivers/video/backlight/
3545 F:      include/linux/backlight.h
3546 F:      include/linux/pwm_backlight.h
3547
3548 BARCO P50 GPIO DRIVER
3549 M:      Santosh Kumar Yadav <santoshkumar.yadav@barco.com>
3550 M:      Peter Korsgaard <peter.korsgaard@barco.com>
3551 S:      Maintained
3552 F:      drivers/platform/x86/barco-p50-gpio.c
3553
3554 BATMAN ADVANCED
3555 M:      Marek Lindner <mareklindner@neomailbox.ch>
3556 M:      Simon Wunderlich <sw@simonwunderlich.de>
3557 M:      Antonio Quartulli <a@unstable.cc>
3558 M:      Sven Eckelmann <sven@narfation.org>
3559 L:      b.a.t.m.a.n@lists.open-mesh.org (moderated for non-subscribers)
3560 S:      Maintained
3561 W:      https://www.open-mesh.org/
3562 Q:      https://patchwork.open-mesh.org/project/batman/list/
3563 B:      https://www.open-mesh.org/projects/batman-adv/issues
3564 C:      ircs://irc.hackint.org/batadv
3565 T:      git https://git.open-mesh.org/linux-merge.git
3566 F:      Documentation/networking/batman-adv.rst
3567 F:      include/uapi/linux/batadv_packet.h
3568 F:      include/uapi/linux/batman_adv.h
3569 F:      net/batman-adv/
3570
3571 BAYCOM/HDLCDRV DRIVERS FOR AX.25
3572 M:      Thomas Sailer <t.sailer@alumni.ethz.ch>
3573 L:      linux-hams@vger.kernel.org
3574 S:      Maintained
3575 W:      http://www.baycom.org/~tom/ham/ham.html
3576 F:      drivers/net/hamradio/baycom*
3577
3578 BCACHE (BLOCK LAYER CACHE)
3579 M:      Coly Li <colyli@suse.de>
3580 M:      Kent Overstreet <kent.overstreet@gmail.com>
3581 L:      linux-bcache@vger.kernel.org
3582 S:      Maintained
3583 W:      http://bcache.evilpiepirate.org
3584 C:      irc://irc.oftc.net/bcache
3585 F:      drivers/md/bcache/
3586
3587 BDISP ST MEDIA DRIVER
3588 M:      Fabien Dessenne <fabien.dessenne@foss.st.com>
3589 L:      linux-media@vger.kernel.org
3590 S:      Supported
3591 W:      https://linuxtv.org
3592 T:      git git://linuxtv.org/media_tree.git
3593 F:      drivers/media/platform/st/sti/bdisp
3594
3595 BECKHOFF CX5020 ETHERCAT MASTER DRIVER
3596 M:      Dariusz Marcinkiewicz <reksio@newterm.pl>
3597 L:      netdev@vger.kernel.org
3598 S:      Maintained
3599 F:      drivers/net/ethernet/ec_bhf.c
3600
3601 BEFS FILE SYSTEM
3602 M:      Luis de Bethencourt <luisbg@kernel.org>
3603 M:      Salah Triki <salah.triki@gmail.com>
3604 S:      Maintained
3605 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luisbg/linux-befs.git
3606 F:      Documentation/filesystems/befs.rst
3607 F:      fs/befs/
3608
3609 BFQ I/O SCHEDULER
3610 M:      Paolo Valente <paolo.valente@linaro.org>
3611 M:      Jens Axboe <axboe@kernel.dk>
3612 L:      linux-block@vger.kernel.org
3613 S:      Maintained
3614 F:      Documentation/block/bfq-iosched.rst
3615 F:      block/bfq-*
3616
3617 BFS FILE SYSTEM
3618 M:      "Tigran A. Aivazian" <aivazian.tigran@gmail.com>
3619 S:      Maintained
3620 F:      Documentation/filesystems/bfs.rst
3621 F:      fs/bfs/
3622 F:      include/uapi/linux/bfs_fs.h
3623
3624 BITMAP API
3625 M:      Yury Norov <yury.norov@gmail.com>
3626 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
3627 R:      Rasmus Villemoes <linux@rasmusvillemoes.dk>
3628 S:      Maintained
3629 F:      include/linux/bitmap.h
3630 F:      include/linux/cpumask.h
3631 F:      include/linux/find.h
3632 F:      include/linux/nodemask.h
3633 F:      lib/bitmap.c
3634 F:      lib/cpumask.c
3635 F:      lib/cpumask_kunit.c
3636 F:      lib/find_bit.c
3637 F:      lib/find_bit_benchmark.c
3638 F:      lib/test_bitmap.c
3639 F:      tools/include/linux/bitmap.h
3640 F:      tools/include/linux/find.h
3641 F:      tools/lib/bitmap.c
3642 F:      tools/lib/find_bit.c
3643
3644 BLINKM RGB LED DRIVER
3645 M:      Jan-Simon Moeller <jansimon.moeller@gmx.de>
3646 S:      Maintained
3647 F:      drivers/leds/leds-blinkm.c
3648
3649 BLOCK LAYER
3650 M:      Jens Axboe <axboe@kernel.dk>
3651 L:      linux-block@vger.kernel.org
3652 S:      Maintained
3653 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
3654 F:      Documentation/ABI/stable/sysfs-block
3655 F:      Documentation/block/
3656 F:      block/
3657 F:      drivers/block/
3658 F:      include/linux/bio.h
3659 F:      include/linux/blk*
3660 F:      kernel/trace/blktrace.c
3661 F:      lib/sbitmap.c
3662
3663 BLOCK2MTD DRIVER
3664 M:      Joern Engel <joern@lazybastard.org>
3665 L:      linux-mtd@lists.infradead.org
3666 S:      Maintained
3667 F:      drivers/mtd/devices/block2mtd.c
3668
3669 BLUETOOTH DRIVERS
3670 M:      Marcel Holtmann <marcel@holtmann.org>
3671 M:      Johan Hedberg <johan.hedberg@gmail.com>
3672 M:      Luiz Augusto von Dentz <luiz.dentz@gmail.com>
3673 L:      linux-bluetooth@vger.kernel.org
3674 S:      Supported
3675 W:      http://www.bluez.org/
3676 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3677 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3678 F:      drivers/bluetooth/
3679
3680 BLUETOOTH SUBSYSTEM
3681 M:      Marcel Holtmann <marcel@holtmann.org>
3682 M:      Johan Hedberg <johan.hedberg@gmail.com>
3683 M:      Luiz Augusto von Dentz <luiz.dentz@gmail.com>
3684 L:      linux-bluetooth@vger.kernel.org
3685 S:      Supported
3686 W:      http://www.bluez.org/
3687 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3688 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3689 F:      include/net/bluetooth/
3690 F:      net/bluetooth/
3691
3692 BONDING DRIVER
3693 M:      Jay Vosburgh <j.vosburgh@gmail.com>
3694 M:      Veaceslav Falico <vfalico@gmail.com>
3695 M:      Andy Gospodarek <andy@greyhouse.net>
3696 L:      netdev@vger.kernel.org
3697 S:      Supported
3698 W:      http://sourceforge.net/projects/bonding/
3699 F:      Documentation/networking/bonding.rst
3700 F:      drivers/net/bonding/
3701 F:      include/net/bond*
3702 F:      include/uapi/linux/if_bonding.h
3703 F:      tools/testing/selftests/drivers/net/bonding/
3704
3705 BOSCH SENSORTEC BMA400 ACCELEROMETER IIO DRIVER
3706 M:      Dan Robertson <dan@dlrobertson.com>
3707 L:      linux-iio@vger.kernel.org
3708 S:      Maintained
3709 F:      Documentation/devicetree/bindings/iio/accel/bosch,bma400.yaml
3710 F:      drivers/iio/accel/bma400*
3711
3712 BPF [GENERAL] (Safe Dynamic Programs and Tools)
3713 M:      Alexei Starovoitov <ast@kernel.org>
3714 M:      Daniel Borkmann <daniel@iogearbox.net>
3715 M:      Andrii Nakryiko <andrii@kernel.org>
3716 R:      Martin KaFai Lau <martin.lau@linux.dev>
3717 R:      Song Liu <song@kernel.org>
3718 R:      Yonghong Song <yhs@fb.com>
3719 R:      John Fastabend <john.fastabend@gmail.com>
3720 R:      KP Singh <kpsingh@kernel.org>
3721 R:      Stanislav Fomichev <sdf@google.com>
3722 R:      Hao Luo <haoluo@google.com>
3723 R:      Jiri Olsa <jolsa@kernel.org>
3724 L:      bpf@vger.kernel.org
3725 S:      Supported
3726 W:      https://bpf.io/
3727 Q:      https://patchwork.kernel.org/project/netdevbpf/list/?delegate=121173
3728 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf.git
3729 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-next.git
3730 F:      Documentation/bpf/
3731 F:      Documentation/networking/filter.rst
3732 F:      Documentation/userspace-api/ebpf/
3733 F:      arch/*/net/*
3734 F:      include/linux/bpf*
3735 F:      include/linux/btf*
3736 F:      include/linux/filter.h
3737 F:      include/trace/events/xdp.h
3738 F:      include/uapi/linux/bpf*
3739 F:      include/uapi/linux/btf*
3740 F:      include/uapi/linux/filter.h
3741 F:      kernel/bpf/
3742 F:      kernel/trace/bpf_trace.c
3743 F:      lib/test_bpf.c
3744 F:      net/bpf/
3745 F:      net/core/filter.c
3746 F:      net/sched/act_bpf.c
3747 F:      net/sched/cls_bpf.c
3748 F:      samples/bpf/
3749 F:      scripts/bpf_doc.py
3750 F:      scripts/pahole-flags.sh
3751 F:      scripts/pahole-version.sh
3752 F:      tools/bpf/
3753 F:      tools/lib/bpf/
3754 F:      tools/testing/selftests/bpf/
3755
3756 BPF JIT for ARM
3757 M:      Shubham Bansal <illusionist.neo@gmail.com>
3758 L:      bpf@vger.kernel.org
3759 S:      Odd Fixes
3760 F:      arch/arm/net/
3761
3762 BPF JIT for ARM64
3763 M:      Daniel Borkmann <daniel@iogearbox.net>
3764 M:      Alexei Starovoitov <ast@kernel.org>
3765 M:      Zi Shen Lim <zlim.lnx@gmail.com>
3766 L:      bpf@vger.kernel.org
3767 S:      Supported
3768 F:      arch/arm64/net/
3769
3770 BPF JIT for MIPS (32-BIT AND 64-BIT)
3771 M:      Johan Almbladh <johan.almbladh@anyfinetworks.com>
3772 M:      Paul Burton <paulburton@kernel.org>
3773 L:      bpf@vger.kernel.org
3774 S:      Maintained
3775 F:      arch/mips/net/
3776
3777 BPF JIT for NFP NICs
3778 M:      Jakub Kicinski <kuba@kernel.org>
3779 L:      bpf@vger.kernel.org
3780 S:      Odd Fixes
3781 F:      drivers/net/ethernet/netronome/nfp/bpf/
3782
3783 BPF JIT for POWERPC (32-BIT AND 64-BIT)
3784 M:      Naveen N. Rao <naveen.n.rao@linux.ibm.com>
3785 M:      Michael Ellerman <mpe@ellerman.id.au>
3786 L:      bpf@vger.kernel.org
3787 S:      Supported
3788 F:      arch/powerpc/net/
3789
3790 BPF JIT for RISC-V (32-bit)
3791 M:      Luke Nelson <luke.r.nels@gmail.com>
3792 M:      Xi Wang <xi.wang@gmail.com>
3793 L:      bpf@vger.kernel.org
3794 S:      Maintained
3795 F:      arch/riscv/net/
3796 X:      arch/riscv/net/bpf_jit_comp64.c
3797
3798 BPF JIT for RISC-V (64-bit)
3799 M:      Björn Töpel <bjorn@kernel.org>
3800 L:      bpf@vger.kernel.org
3801 S:      Maintained
3802 F:      arch/riscv/net/
3803 X:      arch/riscv/net/bpf_jit_comp32.c
3804
3805 BPF JIT for S390
3806 M:      Ilya Leoshkevich <iii@linux.ibm.com>
3807 M:      Heiko Carstens <hca@linux.ibm.com>
3808 M:      Vasily Gorbik <gor@linux.ibm.com>
3809 L:      bpf@vger.kernel.org
3810 S:      Supported
3811 F:      arch/s390/net/
3812 X:      arch/s390/net/pnet.c
3813
3814 BPF JIT for SPARC (32-BIT AND 64-BIT)
3815 M:      David S. Miller <davem@davemloft.net>
3816 L:      bpf@vger.kernel.org
3817 S:      Odd Fixes
3818 F:      arch/sparc/net/
3819
3820 BPF JIT for X86 32-BIT
3821 M:      Wang YanQing <udknight@gmail.com>
3822 L:      bpf@vger.kernel.org
3823 S:      Odd Fixes
3824 F:      arch/x86/net/bpf_jit_comp32.c
3825
3826 BPF JIT for X86 64-BIT
3827 M:      Alexei Starovoitov <ast@kernel.org>
3828 M:      Daniel Borkmann <daniel@iogearbox.net>
3829 L:      bpf@vger.kernel.org
3830 S:      Supported
3831 F:      arch/x86/net/
3832 X:      arch/x86/net/bpf_jit_comp32.c
3833
3834 BPF [CORE]
3835 M:      Alexei Starovoitov <ast@kernel.org>
3836 M:      Daniel Borkmann <daniel@iogearbox.net>
3837 R:      John Fastabend <john.fastabend@gmail.com>
3838 L:      bpf@vger.kernel.org
3839 S:      Maintained
3840 F:      kernel/bpf/verifier.c
3841 F:      kernel/bpf/tnum.c
3842 F:      kernel/bpf/core.c
3843 F:      kernel/bpf/syscall.c
3844 F:      kernel/bpf/dispatcher.c
3845 F:      kernel/bpf/trampoline.c
3846 F:      include/linux/bpf*
3847 F:      include/linux/filter.h
3848 F:      include/linux/tnum.h
3849
3850 BPF [BTF]
3851 M:      Martin KaFai Lau <martin.lau@linux.dev>
3852 L:      bpf@vger.kernel.org
3853 S:      Maintained
3854 F:      kernel/bpf/btf.c
3855 F:      include/linux/btf*
3856
3857 BPF [TRACING]
3858 M:      Song Liu <song@kernel.org>
3859 R:      Jiri Olsa <jolsa@kernel.org>
3860 L:      bpf@vger.kernel.org
3861 S:      Maintained
3862 F:      kernel/trace/bpf_trace.c
3863 F:      kernel/bpf/stackmap.c
3864
3865 BPF [NETWORKING] (tc BPF, sock_addr)
3866 M:      Martin KaFai Lau <martin.lau@linux.dev>
3867 M:      Daniel Borkmann <daniel@iogearbox.net>
3868 R:      John Fastabend <john.fastabend@gmail.com>
3869 L:      bpf@vger.kernel.org
3870 L:      netdev@vger.kernel.org
3871 S:      Maintained
3872 F:      net/core/filter.c
3873 F:      net/sched/act_bpf.c
3874 F:      net/sched/cls_bpf.c
3875
3876 BPF [NETWORKING] (struct_ops, reuseport)
3877 M:      Martin KaFai Lau <martin.lau@linux.dev>
3878 L:      bpf@vger.kernel.org
3879 L:      netdev@vger.kernel.org
3880 S:      Maintained
3881 F:      kernel/bpf/bpf_struct*
3882
3883 BPF [SECURITY & LSM] (Security Audit and Enforcement using BPF)
3884 M:      KP Singh <kpsingh@kernel.org>
3885 R:      Florent Revest <revest@chromium.org>
3886 R:      Brendan Jackman <jackmanb@chromium.org>
3887 L:      bpf@vger.kernel.org
3888 S:      Maintained
3889 F:      Documentation/bpf/prog_lsm.rst
3890 F:      include/linux/bpf_lsm.h
3891 F:      kernel/bpf/bpf_lsm.c
3892 F:      security/bpf/
3893
3894 BPF [STORAGE & CGROUPS]
3895 M:      Martin KaFai Lau <martin.lau@linux.dev>
3896 L:      bpf@vger.kernel.org
3897 S:      Maintained
3898 F:      kernel/bpf/cgroup.c
3899 F:      kernel/bpf/*storage.c
3900 F:      kernel/bpf/bpf_lru*
3901
3902 BPF [RINGBUF]
3903 M:      Andrii Nakryiko <andrii@kernel.org>
3904 L:      bpf@vger.kernel.org
3905 S:      Maintained
3906 F:      kernel/bpf/ringbuf.c
3907
3908 BPF [ITERATOR]
3909 M:      Yonghong Song <yhs@fb.com>
3910 L:      bpf@vger.kernel.org
3911 S:      Maintained
3912 F:      kernel/bpf/*iter.c
3913
3914 BPF [L7 FRAMEWORK] (sockmap)
3915 M:      John Fastabend <john.fastabend@gmail.com>
3916 M:      Jakub Sitnicki <jakub@cloudflare.com>
3917 L:      netdev@vger.kernel.org
3918 L:      bpf@vger.kernel.org
3919 S:      Maintained
3920 F:      include/linux/skmsg.h
3921 F:      net/core/skmsg.c
3922 F:      net/core/sock_map.c
3923 F:      net/ipv4/tcp_bpf.c
3924 F:      net/ipv4/udp_bpf.c
3925 F:      net/unix/unix_bpf.c
3926
3927 BPF [LIBRARY] (libbpf)
3928 M:      Andrii Nakryiko <andrii@kernel.org>
3929 L:      bpf@vger.kernel.org
3930 S:      Maintained
3931 F:      tools/lib/bpf/
3932
3933 BPF [TOOLING] (bpftool)
3934 M:      Quentin Monnet <quentin@isovalent.com>
3935 L:      bpf@vger.kernel.org
3936 S:      Maintained
3937 F:      kernel/bpf/disasm.*
3938 F:      tools/bpf/bpftool/
3939
3940 BPF [SELFTESTS] (Test Runners & Infrastructure)
3941 M:      Andrii Nakryiko <andrii@kernel.org>
3942 R:      Mykola Lysenko <mykolal@fb.com>
3943 L:      bpf@vger.kernel.org
3944 S:      Maintained
3945 F:      tools/testing/selftests/bpf/
3946
3947 BPF [MISC]
3948 L:      bpf@vger.kernel.org
3949 S:      Odd Fixes
3950 K:      (?:\b|_)bpf(?:\b|_)
3951
3952 BROADCOM B44 10/100 ETHERNET DRIVER
3953 M:      Michael Chan <michael.chan@broadcom.com>
3954 L:      netdev@vger.kernel.org
3955 S:      Supported
3956 F:      drivers/net/ethernet/broadcom/b44.*
3957
3958 BROADCOM B53/SF2 ETHERNET SWITCH DRIVER
3959 M:      Florian Fainelli <f.fainelli@gmail.com>
3960 L:      netdev@vger.kernel.org
3961 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
3962 S:      Supported
3963 F:      Documentation/devicetree/bindings/net/dsa/brcm,b53.yaml
3964 F:      drivers/net/dsa/b53/*
3965 F:      drivers/net/dsa/bcm_sf2*
3966 F:      include/linux/dsa/brcm.h
3967 F:      include/linux/platform_data/b53.h
3968
3969 BROADCOM BCMBCA ARM ARCHITECTURE
3970 M:      William Zhang <william.zhang@broadcom.com>
3971 M:      Anand Gore <anand.gore@broadcom.com>
3972 M:      Kursad Oney <kursad.oney@broadcom.com>
3973 M:      Florian Fainelli <f.fainelli@gmail.com>
3974 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
3975 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3976 S:      Maintained
3977 T:      git git://github.com/broadcom/stblinux.git
3978 F:      Documentation/devicetree/bindings/arm/bcm/brcm,bcmbca.yaml
3979 F:      arch/arm64/boot/dts/broadcom/bcmbca/*
3980 N:      bcmbca
3981 N:      bcm[9]?47622
3982 N:      bcm[9]?4912
3983 N:      bcm[9]?63138
3984 N:      bcm[9]?63146
3985 N:      bcm[9]?63148
3986 N:      bcm[9]?63158
3987 N:      bcm[9]?63178
3988 N:      bcm[9]?6756
3989 N:      bcm[9]?6813
3990 N:      bcm[9]?6846
3991 N:      bcm[9]?6855
3992 N:      bcm[9]?6856
3993 N:      bcm[9]?6858
3994 N:      bcm[9]?6878
3995
3996 BROADCOM BCM2711/BCM2835 ARM ARCHITECTURE
3997 M:      Florian Fainelli <f.fainelli@gmail.com>
3998 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
3999 L:      linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
4000 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4001 S:      Maintained
4002 T:      git git://github.com/broadcom/stblinux.git
4003 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
4004 F:      drivers/pci/controller/pcie-brcmstb.c
4005 F:      drivers/staging/vc04_services
4006 N:      bcm2711
4007 N:      bcm283*
4008 N:      raspberrypi
4009
4010 BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE
4011 M:      Florian Fainelli <f.fainelli@gmail.com>
4012 M:      Ray Jui <rjui@broadcom.com>
4013 M:      Scott Branden <sbranden@broadcom.com>
4014 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4015 S:      Maintained
4016 T:      git git://github.com/broadcom/mach-bcm
4017 F:      arch/arm/mach-bcm/
4018 N:      bcm281*
4019 N:      bcm113*
4020 N:      bcm216*
4021 N:      kona
4022
4023 BROADCOM BCM47XX MIPS ARCHITECTURE
4024 M:      Hauke Mehrtens <hauke@hauke-m.de>
4025 M:      Rafał Miłecki <zajec5@gmail.com>
4026 L:      linux-mips@vger.kernel.org
4027 S:      Maintained
4028 F:      Documentation/devicetree/bindings/mips/brcm/
4029 F:      arch/mips/bcm47xx/*
4030 F:      arch/mips/include/asm/mach-bcm47xx/*
4031
4032 BROADCOM BCM4908 ETHERNET DRIVER
4033 M:      Rafał Miłecki <rafal@milecki.pl>
4034 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4035 L:      netdev@vger.kernel.org
4036 S:      Maintained
4037 F:      Documentation/devicetree/bindings/net/brcm,bcm4908-enet.yaml
4038 F:      drivers/net/ethernet/broadcom/bcm4908_enet.*
4039 F:      drivers/net/ethernet/broadcom/unimac.h
4040
4041 BROADCOM BCM4908 PINMUX DRIVER
4042 M:      Rafał Miłecki <rafal@milecki.pl>
4043 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4044 L:      linux-gpio@vger.kernel.org
4045 S:      Maintained
4046 F:      Documentation/devicetree/bindings/pinctrl/brcm,bcm4908-pinctrl.yaml
4047 F:      drivers/pinctrl/bcm/pinctrl-bcm4908.c
4048
4049 BROADCOM BCM5301X ARM ARCHITECTURE
4050 M:      Florian Fainelli <f.fainelli@gmail.com>
4051 M:      Hauke Mehrtens <hauke@hauke-m.de>
4052 M:      Rafał Miłecki <zajec5@gmail.com>
4053 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4054 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4055 S:      Maintained
4056 F:      arch/arm/boot/dts/bcm470*
4057 F:      arch/arm/boot/dts/bcm5301*
4058 F:      arch/arm/boot/dts/bcm953012*
4059 F:      arch/arm/mach-bcm/bcm_5301x.c
4060
4061 BROADCOM BCM53573 ARM ARCHITECTURE
4062 M:      Florian Fainelli <f.fainelli@gmail.com>
4063 M:      Rafał Miłecki <rafal@milecki.pl>
4064 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4065 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4066 S:      Maintained
4067 F:      arch/arm/boot/dts/bcm47189*
4068 F:      arch/arm/boot/dts/bcm53573*
4069
4070 BROADCOM BCM63XX/BCM33XX UDC DRIVER
4071 M:      Kevin Cernekee <cernekee@gmail.com>
4072 L:      linux-usb@vger.kernel.org
4073 S:      Maintained
4074 F:      drivers/usb/gadget/udc/bcm63xx_udc.*
4075
4076 BROADCOM BCM7XXX ARM ARCHITECTURE
4077 M:      Florian Fainelli <f.fainelli@gmail.com>
4078 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4079 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4080 S:      Maintained
4081 T:      git git://github.com/broadcom/stblinux.git
4082 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
4083 F:      arch/arm/boot/dts/bcm7*.dts*
4084 F:      arch/arm/include/asm/hardware/cache-b15-rac.h
4085 F:      arch/arm/mach-bcm/*brcmstb*
4086 F:      arch/arm/mm/cache-b15-rac.c
4087 F:      drivers/bus/brcmstb_gisb.c
4088 F:      drivers/pci/controller/pcie-brcmstb.c
4089 N:      brcmstb
4090 N:      bcm7038
4091 N:      bcm7120
4092
4093 BROADCOM BDC DRIVER
4094 M:      Al Cooper <alcooperx@gmail.com>
4095 L:      linux-usb@vger.kernel.org
4096 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4097 S:      Maintained
4098 F:      Documentation/devicetree/bindings/usb/brcm,bdc.yaml
4099 F:      drivers/usb/gadget/udc/bdc/
4100
4101 BROADCOM BMIPS CPUFREQ DRIVER
4102 M:      Markus Mayer <mmayer@broadcom.com>
4103 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4104 L:      linux-pm@vger.kernel.org
4105 S:      Maintained
4106 F:      drivers/cpufreq/bmips-cpufreq.c
4107
4108 BROADCOM BMIPS MIPS ARCHITECTURE
4109 M:      Florian Fainelli <f.fainelli@gmail.com>
4110 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4111 L:      linux-mips@vger.kernel.org
4112 S:      Maintained
4113 T:      git git://github.com/broadcom/stblinux.git
4114 F:      arch/mips/bmips/*
4115 F:      arch/mips/boot/dts/brcm/bcm*.dts*
4116 F:      arch/mips/include/asm/mach-bmips/*
4117 F:      arch/mips/kernel/*bmips*
4118 F:      drivers/soc/bcm/bcm63xx
4119 F:      drivers/irqchip/irq-bcm63*
4120 F:      drivers/irqchip/irq-bcm7*
4121 F:      drivers/irqchip/irq-brcmstb*
4122 F:      include/linux/bcm963xx_nvram.h
4123 F:      include/linux/bcm963xx_tag.h
4124
4125 BROADCOM BNX2 GIGABIT ETHERNET DRIVER
4126 M:      Rasesh Mody <rmody@marvell.com>
4127 M:      GR-Linux-NIC-Dev@marvell.com
4128 L:      netdev@vger.kernel.org
4129 S:      Supported
4130 F:      drivers/net/ethernet/broadcom/bnx2.*
4131 F:      drivers/net/ethernet/broadcom/bnx2_*
4132
4133 BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
4134 M:      Saurav Kashyap <skashyap@marvell.com>
4135 M:      Javed Hasan <jhasan@marvell.com>
4136 M:      GR-QLogic-Storage-Upstream@marvell.com
4137 L:      linux-scsi@vger.kernel.org
4138 S:      Supported
4139 F:      drivers/scsi/bnx2fc/
4140
4141 BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER
4142 M:      Nilesh Javali <njavali@marvell.com>
4143 M:      Manish Rangankar <mrangankar@marvell.com>
4144 M:      GR-QLogic-Storage-Upstream@marvell.com
4145 L:      linux-scsi@vger.kernel.org
4146 S:      Supported
4147 F:      drivers/scsi/bnx2i/
4148
4149 BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
4150 M:      Ariel Elior <aelior@marvell.com>
4151 M:      Sudarsana Kalluru <skalluru@marvell.com>
4152 M:      Manish Chopra <manishc@marvell.com>
4153 L:      netdev@vger.kernel.org
4154 S:      Supported
4155 F:      drivers/net/ethernet/broadcom/bnx2x/
4156
4157 BROADCOM BNXT_EN 50 GIGABIT ETHERNET DRIVER
4158 M:      Michael Chan <michael.chan@broadcom.com>
4159 L:      netdev@vger.kernel.org
4160 S:      Supported
4161 F:      drivers/firmware/broadcom/tee_bnxt_fw.c
4162 F:      drivers/net/ethernet/broadcom/bnxt/
4163 F:      include/linux/firmware/broadcom/tee_bnxt_fw.h
4164
4165 BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
4166 M:      Arend van Spriel <aspriel@gmail.com>
4167 M:      Franky Lin <franky.lin@broadcom.com>
4168 M:      Hante Meuleman <hante.meuleman@broadcom.com>
4169 L:      linux-wireless@vger.kernel.org
4170 L:      brcm80211-dev-list.pdl@broadcom.com
4171 L:      SHA-cyfmac-dev-list@infineon.com
4172 S:      Supported
4173 F:      drivers/net/wireless/broadcom/brcm80211/
4174
4175 BROADCOM BRCMSTB GPIO DRIVER
4176 M:      Doug Berger <opendmb@gmail.com>
4177 M:      Florian Fainelli <f.fainelli@gmail.com>
4178 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4179 S:      Supported
4180 F:      Documentation/devicetree/bindings/gpio/brcm,brcmstb-gpio.yaml
4181 F:      drivers/gpio/gpio-brcmstb.c
4182
4183 BROADCOM BRCMSTB I2C DRIVER
4184 M:      Kamal Dasu <kdasu.kdev@gmail.com>
4185 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4186 L:      linux-i2c@vger.kernel.org
4187 S:      Supported
4188 F:      Documentation/devicetree/bindings/i2c/brcm,brcmstb-i2c.yaml
4189 F:      drivers/i2c/busses/i2c-brcmstb.c
4190
4191 BROADCOM BRCMSTB UART DRIVER
4192 M:      Al Cooper <alcooperx@gmail.com>
4193 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4194 L:      linux-serial@vger.kernel.org
4195 S:      Maintained
4196 F:      Documentation/devicetree/bindings/serial/brcm,bcm7271-uart.yaml
4197 F:      drivers/tty/serial/8250/8250_bcm7271.c
4198
4199 BROADCOM BRCMSTB USB EHCI DRIVER
4200 M:      Al Cooper <alcooperx@gmail.com>
4201 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4202 L:      linux-usb@vger.kernel.org
4203 S:      Maintained
4204 F:      Documentation/devicetree/bindings/usb/brcm,bcm7445-ehci.yaml
4205 F:      drivers/usb/host/ehci-brcm.*
4206
4207 BROADCOM BRCMSTB USB PIN MAP DRIVER
4208 M:      Al Cooper <alcooperx@gmail.com>
4209 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4210 L:      linux-usb@vger.kernel.org
4211 S:      Maintained
4212 F:      Documentation/devicetree/bindings/usb/brcm,usb-pinmap.yaml
4213 F:      drivers/usb/misc/brcmstb-usb-pinmap.c
4214
4215 BROADCOM BRCMSTB USB2 and USB3 PHY DRIVER
4216 M:      Al Cooper <alcooperx@gmail.com>
4217 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4218 L:      linux-kernel@vger.kernel.org
4219 S:      Maintained
4220 F:      drivers/phy/broadcom/phy-brcm-usb*
4221
4222 BROADCOM ETHERNET PHY DRIVERS
4223 M:      Florian Fainelli <f.fainelli@gmail.com>
4224 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4225 L:      netdev@vger.kernel.org
4226 S:      Supported
4227 F:      Documentation/devicetree/bindings/net/broadcom-bcm87xx.txt
4228 F:      drivers/net/phy/bcm*.[ch]
4229 F:      drivers/net/phy/broadcom.c
4230 F:      include/linux/brcmphy.h
4231
4232 BROADCOM GENET ETHERNET DRIVER
4233 M:      Doug Berger <opendmb@gmail.com>
4234 M:      Florian Fainelli <f.fainelli@gmail.com>
4235 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4236 L:      netdev@vger.kernel.org
4237 S:      Supported
4238 F:      Documentation/devicetree/bindings/net/brcm,bcmgenet.yaml
4239 F:      Documentation/devicetree/bindings/net/brcm,unimac-mdio.yaml
4240 F:      drivers/net/ethernet/broadcom/genet/
4241 F:      drivers/net/ethernet/broadcom/unimac.h
4242 F:      drivers/net/mdio/mdio-bcm-unimac.c
4243 F:      include/linux/platform_data/bcmgenet.h
4244 F:      include/linux/platform_data/mdio-bcm-unimac.h
4245
4246 BROADCOM IPROC ARM ARCHITECTURE
4247 M:      Ray Jui <rjui@broadcom.com>
4248 M:      Scott Branden <sbranden@broadcom.com>
4249 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4250 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4251 S:      Maintained
4252 T:      git git://github.com/broadcom/stblinux.git
4253 F:      arch/arm64/boot/dts/broadcom/northstar2/*
4254 F:      arch/arm64/boot/dts/broadcom/stingray/*
4255 F:      drivers/clk/bcm/clk-ns*
4256 F:      drivers/clk/bcm/clk-sr*
4257 F:      drivers/pinctrl/bcm/pinctrl-ns*
4258 F:      include/dt-bindings/clock/bcm-sr*
4259 N:      iproc
4260 N:      cygnus
4261 N:      bcm[-_]nsp
4262 N:      bcm9113*
4263 N:      bcm9583*
4264 N:      bcm9585*
4265 N:      bcm9586*
4266 N:      bcm988312
4267 N:      bcm113*
4268 N:      bcm583*
4269 N:      bcm585*
4270 N:      bcm586*
4271 N:      bcm88312
4272 N:      hr2
4273 N:      stingray
4274
4275 BROADCOM IPROC GBIT ETHERNET DRIVER
4276 M:      Rafał Miłecki <rafal@milecki.pl>
4277 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4278 L:      netdev@vger.kernel.org
4279 S:      Maintained
4280 F:      Documentation/devicetree/bindings/net/brcm,amac.yaml
4281 F:      drivers/net/ethernet/broadcom/bgmac*
4282 F:      drivers/net/ethernet/broadcom/unimac.h
4283
4284 BROADCOM KONA GPIO DRIVER
4285 M:      Ray Jui <rjui@broadcom.com>
4286 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4287 S:      Supported
4288 F:      Documentation/devicetree/bindings/gpio/brcm,kona-gpio.txt
4289 F:      drivers/gpio/gpio-bcm-kona.c
4290
4291 BROADCOM MPI3 STORAGE CONTROLLER DRIVER
4292 M:      Sathya Prakash Veerichetty <sathya.prakash@broadcom.com>
4293 M:      Kashyap Desai <kashyap.desai@broadcom.com>
4294 M:      Sumit Saxena <sumit.saxena@broadcom.com>
4295 M:      Sreekanth Reddy <sreekanth.reddy@broadcom.com>
4296 L:      mpi3mr-linuxdrv.pdl@broadcom.com
4297 L:      linux-scsi@vger.kernel.org
4298 S:      Supported
4299 W:      https://www.broadcom.com/support/storage
4300 F:      drivers/scsi/mpi3mr/
4301
4302 BROADCOM NETXTREME-E ROCE DRIVER
4303 M:      Selvin Xavier <selvin.xavier@broadcom.com>
4304 L:      linux-rdma@vger.kernel.org
4305 S:      Supported
4306 W:      http://www.broadcom.com
4307 F:      drivers/infiniband/hw/bnxt_re/
4308 F:      include/uapi/rdma/bnxt_re-abi.h
4309
4310 BROADCOM NVRAM DRIVER
4311 M:      Rafał Miłecki <zajec5@gmail.com>
4312 L:      linux-mips@vger.kernel.org
4313 S:      Maintained
4314 F:      drivers/firmware/broadcom/*
4315
4316 BROADCOM PMB (POWER MANAGEMENT BUS) DRIVER
4317 M:      Rafał Miłecki <rafal@milecki.pl>
4318 M:      Florian Fainelli <f.fainelli@gmail.com>
4319 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4320 L:      linux-pm@vger.kernel.org
4321 S:      Maintained
4322 T:      git git://github.com/broadcom/stblinux.git
4323 F:      drivers/soc/bcm/bcm63xx/bcm-pmb.c
4324 F:      include/dt-bindings/soc/bcm-pmb.h
4325
4326 BROADCOM SPECIFIC AMBA DRIVER (BCMA)
4327 M:      Rafał Miłecki <zajec5@gmail.com>
4328 L:      linux-wireless@vger.kernel.org
4329 S:      Maintained
4330 F:      drivers/bcma/
4331 F:      include/linux/bcma/
4332
4333 BROADCOM SPI DRIVER
4334 M:      Kamal Dasu <kdasu.kdev@gmail.com>
4335 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4336 S:      Maintained
4337 F:      Documentation/devicetree/bindings/spi/brcm,spi-bcm-qspi.yaml
4338 F:      drivers/spi/spi-bcm-qspi.*
4339 F:      drivers/spi/spi-brcmstb-qspi.c
4340 F:      drivers/spi/spi-iproc-qspi.c
4341
4342 BROADCOM STB AVS CPUFREQ DRIVER
4343 M:      Markus Mayer <mmayer@broadcom.com>
4344 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4345 L:      linux-pm@vger.kernel.org
4346 S:      Maintained
4347 F:      Documentation/devicetree/bindings/cpufreq/brcm,stb-avs-cpu-freq.txt
4348 F:      drivers/cpufreq/brcmstb*
4349
4350 BROADCOM STB AVS TMON DRIVER
4351 M:      Markus Mayer <mmayer@broadcom.com>
4352 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4353 L:      linux-pm@vger.kernel.org
4354 S:      Maintained
4355 F:      Documentation/devicetree/bindings/thermal/brcm,avs-tmon.yaml
4356 F:      drivers/thermal/broadcom/brcmstb*
4357
4358 BROADCOM STB DPFE DRIVER
4359 M:      Markus Mayer <mmayer@broadcom.com>
4360 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4361 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4362 S:      Maintained
4363 F:      Documentation/devicetree/bindings/memory-controllers/brcm,dpfe-cpu.yaml
4364 F:      drivers/memory/brcmstb_dpfe.c
4365
4366 BROADCOM STB NAND FLASH DRIVER
4367 M:      Brian Norris <computersforpeace@gmail.com>
4368 M:      Kamal Dasu <kdasu.kdev@gmail.com>
4369 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4370 L:      linux-mtd@lists.infradead.org
4371 S:      Maintained
4372 F:      drivers/mtd/nand/raw/brcmnand/
4373 F:      include/linux/platform_data/brcmnand.h
4374
4375 BROADCOM STB PCIE DRIVER
4376 M:      Jim Quinlan <jim2101024@gmail.com>
4377 M:      Nicolas Saenz Julienne <nsaenz@kernel.org>
4378 M:      Florian Fainelli <f.fainelli@gmail.com>
4379 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4380 L:      linux-pci@vger.kernel.org
4381 S:      Maintained
4382 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
4383 F:      drivers/pci/controller/pcie-brcmstb.c
4384
4385 BROADCOM SYSTEMPORT ETHERNET DRIVER
4386 M:      Florian Fainelli <f.fainelli@gmail.com>
4387 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4388 L:      netdev@vger.kernel.org
4389 S:      Supported
4390 F:      drivers/net/ethernet/broadcom/bcmsysport.*
4391 F:      drivers/net/ethernet/broadcom/unimac.h
4392 F:      Documentation/devicetree/bindings/net/brcm,systemport.yaml
4393
4394 BROADCOM TG3 GIGABIT ETHERNET DRIVER
4395 M:      Siva Reddy Kallam <siva.kallam@broadcom.com>
4396 M:      Prashant Sreedharan <prashant@broadcom.com>
4397 M:      Michael Chan <mchan@broadcom.com>
4398 L:      netdev@vger.kernel.org
4399 S:      Supported
4400 F:      drivers/net/ethernet/broadcom/tg3.*
4401
4402 BROADCOM VK DRIVER
4403 M:      Scott Branden <scott.branden@broadcom.com>
4404 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4405 S:      Supported
4406 F:      drivers/misc/bcm-vk/
4407 F:      include/uapi/linux/misc/bcm_vk.h
4408
4409 BROCADE BFA FC SCSI DRIVER
4410 M:      Anil Gurumurthy <anil.gurumurthy@qlogic.com>
4411 M:      Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
4412 L:      linux-scsi@vger.kernel.org
4413 S:      Supported
4414 F:      drivers/scsi/bfa/
4415
4416 BROCADE BNA 10 GIGABIT ETHERNET DRIVER
4417 M:      Rasesh Mody <rmody@marvell.com>
4418 M:      Sudarsana Kalluru <skalluru@marvell.com>
4419 M:      GR-Linux-NIC-Dev@marvell.com
4420 L:      netdev@vger.kernel.org
4421 S:      Supported
4422 F:      drivers/net/ethernet/brocade/bna/
4423
4424 BSG (block layer generic sg v4 driver)
4425 M:      FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
4426 L:      linux-scsi@vger.kernel.org
4427 S:      Supported
4428 F:      block/bsg.c
4429 F:      include/linux/bsg.h
4430 F:      include/uapi/linux/bsg.h
4431
4432 BT87X AUDIO DRIVER
4433 M:      Clemens Ladisch <clemens@ladisch.de>
4434 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4435 S:      Maintained
4436 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
4437 F:      Documentation/sound/cards/bt87x.rst
4438 F:      sound/pci/bt87x.c
4439
4440 BT8XXGPIO DRIVER
4441 M:      Michael Buesch <m@bues.ch>
4442 S:      Maintained
4443 W:      http://bu3sch.de/btgpio.php
4444 F:      drivers/gpio/gpio-bt8xx.c
4445
4446 BTRFS FILE SYSTEM
4447 M:      Chris Mason <clm@fb.com>
4448 M:      Josef Bacik <josef@toxicpanda.com>
4449 M:      David Sterba <dsterba@suse.com>
4450 L:      linux-btrfs@vger.kernel.org
4451 S:      Maintained
4452 W:      http://btrfs.wiki.kernel.org/
4453 Q:      http://patchwork.kernel.org/project/linux-btrfs/list/
4454 C:      irc://irc.libera.chat/btrfs
4455 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kdave/linux.git
4456 F:      Documentation/filesystems/btrfs.rst
4457 F:      fs/btrfs/
4458 F:      include/linux/btrfs*
4459 F:      include/uapi/linux/btrfs*
4460
4461 BTTV VIDEO4LINUX DRIVER
4462 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
4463 L:      linux-media@vger.kernel.org
4464 S:      Odd fixes
4465 W:      https://linuxtv.org
4466 T:      git git://linuxtv.org/media_tree.git
4467 F:      Documentation/driver-api/media/drivers/bttv*
4468 F:      drivers/media/pci/bt8xx/bttv*
4469
4470 BUS FREQUENCY DRIVER FOR SAMSUNG EXYNOS
4471 M:      Chanwoo Choi <cw00.choi@samsung.com>
4472 L:      linux-pm@vger.kernel.org
4473 L:      linux-samsung-soc@vger.kernel.org
4474 S:      Maintained
4475 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
4476 F:      Documentation/devicetree/bindings/interconnect/samsung,exynos-bus.yaml
4477 F:      drivers/devfreq/exynos-bus.c
4478
4479 BUSLOGIC SCSI DRIVER
4480 M:      Khalid Aziz <khalid@gonehiking.org>
4481 L:      linux-scsi@vger.kernel.org
4482 S:      Maintained
4483 F:      drivers/scsi/BusLogic.*
4484 F:      drivers/scsi/FlashPoint.*
4485
4486 C-MEDIA CMI8788 DRIVER
4487 M:      Clemens Ladisch <clemens@ladisch.de>
4488 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4489 S:      Maintained
4490 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
4491 F:      sound/pci/oxygen/
4492
4493 C-SKY ARCHITECTURE
4494 M:      Guo Ren <guoren@kernel.org>
4495 L:      linux-csky@vger.kernel.org
4496 S:      Supported
4497 T:      git https://github.com/c-sky/csky-linux.git
4498 F:      Documentation/devicetree/bindings/csky/
4499 F:      Documentation/devicetree/bindings/interrupt-controller/csky,*
4500 F:      Documentation/devicetree/bindings/timer/csky,*
4501 F:      arch/csky/
4502 F:      drivers/clocksource/timer-gx6605s.c
4503 F:      drivers/clocksource/timer-mp-csky.c
4504 F:      drivers/irqchip/irq-csky-*
4505 N:      csky
4506 K:      csky
4507
4508 CA8210 IEEE-802.15.4 RADIO DRIVER
4509 L:      linux-wpan@vger.kernel.org
4510 S:      Orphan
4511 W:      https://github.com/Cascoda/ca8210-linux.git
4512 F:      Documentation/devicetree/bindings/net/ieee802154/ca8210.txt
4513 F:      drivers/net/ieee802154/ca8210.c
4514
4515 CANAAN/KENDRYTE K210 SOC FPIOA DRIVER
4516 M:      Damien Le Moal <damien.lemoal@wdc.com>
4517 L:      linux-riscv@lists.infradead.org
4518 L:      linux-gpio@vger.kernel.org (pinctrl driver)
4519 F:      Documentation/devicetree/bindings/pinctrl/canaan,k210-fpioa.yaml
4520 F:      drivers/pinctrl/pinctrl-k210.c
4521
4522 CANAAN/KENDRYTE K210 SOC RESET CONTROLLER DRIVER
4523 M:      Damien Le Moal <damien.lemoal@wdc.com>
4524 L:      linux-kernel@vger.kernel.org
4525 L:      linux-riscv@lists.infradead.org
4526 S:      Maintained
4527 F:      Documentation/devicetree/bindings/reset/canaan,k210-rst.yaml
4528 F:      drivers/reset/reset-k210.c
4529
4530 CANAAN/KENDRYTE K210 SOC SYSTEM CONTROLLER DRIVER
4531 M:      Damien Le Moal <damien.lemoal@wdc.com>
4532 L:      linux-riscv@lists.infradead.org
4533 S:      Maintained
4534 F:      Documentation/devicetree/bindings/mfd/canaan,k210-sysctl.yaml
4535 F:      drivers/soc/canaan/
4536 F:      include/soc/canaan/
4537
4538 CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
4539 M:      David Howells <dhowells@redhat.com>
4540 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
4541 S:      Supported
4542 F:      Documentation/filesystems/caching/cachefiles.rst
4543 F:      fs/cachefiles/
4544
4545 CADENCE MIPI-CSI2 BRIDGES
4546 M:      Maxime Ripard <mripard@kernel.org>
4547 L:      linux-media@vger.kernel.org
4548 S:      Maintained
4549 F:      Documentation/devicetree/bindings/media/cdns,*.txt
4550 F:      drivers/media/platform/cadence/cdns-csi2*
4551
4552 CADENCE NAND DRIVER
4553 L:      linux-mtd@lists.infradead.org
4554 S:      Orphan
4555 F:      Documentation/devicetree/bindings/mtd/cadence-nand-controller.txt
4556 F:      drivers/mtd/nand/raw/cadence-nand-controller.c
4557
4558 CADENCE USB3 DRD IP DRIVER
4559 M:      Peter Chen <peter.chen@kernel.org>
4560 M:      Pawel Laszczak <pawell@cadence.com>
4561 R:      Roger Quadros <rogerq@kernel.org>
4562 R:      Aswath Govindraju <a-govindraju@ti.com>
4563 L:      linux-usb@vger.kernel.org
4564 S:      Maintained
4565 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4566 F:      Documentation/devicetree/bindings/usb/cdns,usb3.yaml
4567 F:      drivers/usb/cdns3/
4568 X:      drivers/usb/cdns3/cdnsp*
4569
4570 CADENCE USBSSP DRD IP DRIVER
4571 M:      Pawel Laszczak <pawell@cadence.com>
4572 L:      linux-usb@vger.kernel.org
4573 S:      Maintained
4574 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4575 F:      drivers/usb/cdns3/
4576 X:      drivers/usb/cdns3/cdns3*
4577
4578 CADET FM/AM RADIO RECEIVER DRIVER
4579 M:      Hans Verkuil <hverkuil@xs4all.nl>
4580 L:      linux-media@vger.kernel.org
4581 S:      Maintained
4582 W:      https://linuxtv.org
4583 T:      git git://linuxtv.org/media_tree.git
4584 F:      drivers/media/radio/radio-cadet*
4585
4586 CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
4587 L:      linux-media@vger.kernel.org
4588 S:      Orphan
4589 T:      git git://linuxtv.org/media_tree.git
4590 F:      Documentation/admin-guide/media/cafe_ccic*
4591 F:      drivers/media/platform/marvell/
4592
4593 CAIF NETWORK LAYER
4594 L:      netdev@vger.kernel.org
4595 S:      Orphan
4596 F:      Documentation/networking/caif/
4597 F:      drivers/net/caif/
4598 F:      include/net/caif/
4599 F:      include/uapi/linux/caif/
4600 F:      net/caif/
4601
4602 CAKE QDISC
4603 M:      Toke Høiland-Jørgensen <toke@toke.dk>
4604 L:      cake@lists.bufferbloat.net (moderated for non-subscribers)
4605 S:      Maintained
4606 F:      net/sched/sch_cake.c
4607
4608 CAN NETWORK DRIVERS
4609 M:      Wolfgang Grandegger <wg@grandegger.com>
4610 M:      Marc Kleine-Budde <mkl@pengutronix.de>
4611 L:      linux-can@vger.kernel.org
4612 S:      Maintained
4613 W:      https://github.com/linux-can
4614 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
4615 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
4616 F:      Documentation/devicetree/bindings/net/can/
4617 F:      Documentation/devicetree/bindings/phy/ti,tcan104x-can.yaml
4618 F:      drivers/net/can/
4619 F:      drivers/phy/phy-can-transceiver.c
4620 F:      include/linux/can/bittiming.h
4621 F:      include/linux/can/dev.h
4622 F:      include/linux/can/length.h
4623 F:      include/linux/can/platform/
4624 F:      include/linux/can/rx-offload.h
4625 F:      include/uapi/linux/can/error.h
4626 F:      include/uapi/linux/can/netlink.h
4627 F:      include/uapi/linux/can/vxcan.h
4628
4629 CAN NETWORK LAYER
4630 M:      Oliver Hartkopp <socketcan@hartkopp.net>
4631 M:      Marc Kleine-Budde <mkl@pengutronix.de>
4632 L:      linux-can@vger.kernel.org
4633 S:      Maintained
4634 W:      https://github.com/linux-can
4635 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
4636 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
4637 F:      Documentation/networking/can.rst
4638 F:      include/linux/can/can-ml.h
4639 F:      include/linux/can/core.h
4640 F:      include/linux/can/skb.h
4641 F:      include/net/netns/can.h
4642 F:      include/uapi/linux/can.h
4643 F:      include/uapi/linux/can/bcm.h
4644 F:      include/uapi/linux/can/gw.h
4645 F:      include/uapi/linux/can/isotp.h
4646 F:      include/uapi/linux/can/raw.h
4647 F:      net/can/
4648
4649 CAN-J1939 NETWORK LAYER
4650 M:      Robin van der Gracht <robin@protonic.nl>
4651 M:      Oleksij Rempel <o.rempel@pengutronix.de>
4652 R:      kernel@pengutronix.de
4653 L:      linux-can@vger.kernel.org
4654 S:      Maintained
4655 F:      Documentation/networking/j1939.rst
4656 F:      include/uapi/linux/can/j1939.h
4657 F:      net/can/j1939/
4658
4659 CAPABILITIES
4660 M:      Serge Hallyn <serge@hallyn.com>
4661 L:      linux-security-module@vger.kernel.org
4662 S:      Supported
4663 F:      include/linux/capability.h
4664 F:      include/uapi/linux/capability.h
4665 F:      kernel/capability.c
4666 F:      security/commoncap.c
4667
4668 CAPELLA MICROSYSTEMS LIGHT SENSOR DRIVER
4669 M:      Kevin Tsai <ktsai@capellamicro.com>
4670 S:      Maintained
4671 F:      drivers/iio/light/cm*
4672
4673 CARL9170 LINUX COMMUNITY WIRELESS DRIVER
4674 M:      Christian Lamparter <chunkeey@googlemail.com>
4675 L:      linux-wireless@vger.kernel.org
4676 S:      Maintained
4677 W:      https://wireless.wiki.kernel.org/en/users/Drivers/carl9170
4678 F:      drivers/net/wireless/ath/carl9170/
4679
4680 CAVIUM I2C DRIVER
4681 M:      Robert Richter <rric@kernel.org>
4682 S:      Odd Fixes
4683 W:      http://www.marvell.com
4684 F:      drivers/i2c/busses/i2c-octeon*
4685 F:      drivers/i2c/busses/i2c-thunderx*
4686
4687 CAVIUM LIQUIDIO NETWORK DRIVER
4688 M:      Derek Chickles <dchickles@marvell.com>
4689 M:      Satanand Burla <sburla@marvell.com>
4690 M:      Felix Manlunas <fmanlunas@marvell.com>
4691 L:      netdev@vger.kernel.org
4692 S:      Supported
4693 W:      http://www.marvell.com
4694 F:      drivers/net/ethernet/cavium/liquidio/
4695
4696 CAVIUM MMC DRIVER
4697 M:      Robert Richter <rric@kernel.org>
4698 S:      Odd Fixes
4699 W:      http://www.marvell.com
4700 F:      drivers/mmc/host/cavium*
4701
4702 CAVIUM OCTEON-TX CRYPTO DRIVER
4703 M:      George Cherian <gcherian@marvell.com>
4704 L:      linux-crypto@vger.kernel.org
4705 S:      Supported
4706 W:      http://www.marvell.com
4707 F:      drivers/crypto/cavium/cpt/
4708
4709 CAVIUM THUNDERX2 ARM64 SOC
4710 M:      Robert Richter <rric@kernel.org>
4711 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4712 S:      Odd Fixes
4713 F:      Documentation/devicetree/bindings/arm/cavium-thunder2.txt
4714 F:      arch/arm64/boot/dts/cavium/thunder2-99xx*
4715
4716 CBS/ETF/TAPRIO QDISCS
4717 M:      Vinicius Costa Gomes <vinicius.gomes@intel.com>
4718 S:      Maintained
4719 L:      netdev@vger.kernel.org
4720 F:      net/sched/sch_cbs.c
4721 F:      net/sched/sch_etf.c
4722 F:      net/sched/sch_taprio.c
4723
4724 CC2520 IEEE-802.15.4 RADIO DRIVER
4725 M:      Varka Bhadram <varkabhadram@gmail.com>
4726 L:      linux-wpan@vger.kernel.org
4727 S:      Maintained
4728 F:      Documentation/devicetree/bindings/net/ieee802154/cc2520.txt
4729 F:      drivers/net/ieee802154/cc2520.c
4730 F:      include/linux/spi/cc2520.h
4731
4732 CCREE ARM TRUSTZONE CRYPTOCELL REE DRIVER
4733 M:      Gilad Ben-Yossef <gilad@benyossef.com>
4734 L:      linux-crypto@vger.kernel.org
4735 S:      Supported
4736 W:      https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
4737 F:      drivers/crypto/ccree/
4738
4739 CCTRNG ARM TRUSTZONE CRYPTOCELL TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
4740 M:      Hadar Gat <hadar.gat@arm.com>
4741 L:      linux-crypto@vger.kernel.org
4742 S:      Supported
4743 F:      drivers/char/hw_random/cctrng.c
4744 F:      drivers/char/hw_random/cctrng.h
4745 F:      Documentation/devicetree/bindings/rng/arm-cctrng.yaml
4746 W:      https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
4747
4748 CEC FRAMEWORK
4749 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
4750 L:      linux-media@vger.kernel.org
4751 S:      Supported
4752 W:      http://linuxtv.org
4753 T:      git git://linuxtv.org/media_tree.git
4754 F:      Documentation/ABI/testing/debugfs-cec-error-inj
4755 F:      Documentation/devicetree/bindings/media/cec.txt
4756 F:      Documentation/driver-api/media/cec-core.rst
4757 F:      Documentation/userspace-api/media/cec
4758 F:      drivers/media/cec/
4759 F:      drivers/media/rc/keymaps/rc-cec.c
4760 F:      include/media/cec-notifier.h
4761 F:      include/media/cec.h
4762 F:      include/uapi/linux/cec-funcs.h
4763 F:      include/uapi/linux/cec.h
4764
4765 CEC GPIO DRIVER
4766 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
4767 L:      linux-media@vger.kernel.org
4768 S:      Supported
4769 W:      http://linuxtv.org
4770 T:      git git://linuxtv.org/media_tree.git
4771 F:      Documentation/devicetree/bindings/media/cec-gpio.txt
4772 F:      drivers/media/cec/platform/cec-gpio/
4773
4774 CELL BROADBAND ENGINE ARCHITECTURE
4775 M:      Arnd Bergmann <arnd@arndb.de>
4776 L:      linuxppc-dev@lists.ozlabs.org
4777 S:      Supported
4778 W:      http://www.ibm.com/developerworks/power/cell/
4779 F:      arch/powerpc/include/asm/cell*.h
4780 F:      arch/powerpc/include/asm/spu*.h
4781 F:      arch/powerpc/include/uapi/asm/spu*.h
4782 F:      arch/powerpc/platforms/cell/
4783
4784 CELLWISE CW2015 BATTERY DRIVER
4785 M:      Tobias Schrammm <t.schramm@manjaro.org>
4786 S:      Maintained
4787 F:      Documentation/devicetree/bindings/power/supply/cw2015_battery.yaml
4788 F:      drivers/power/supply/cw2015_battery.c
4789
4790 CEPH COMMON CODE (LIBCEPH)
4791 M:      Ilya Dryomov <idryomov@gmail.com>
4792 M:      Xiubo Li <xiubli@redhat.com>
4793 R:      Jeff Layton <jlayton@kernel.org>
4794 L:      ceph-devel@vger.kernel.org
4795 S:      Supported
4796 W:      http://ceph.com/
4797 T:      git git://github.com/ceph/ceph-client.git
4798 F:      include/linux/ceph/
4799 F:      include/linux/crush/
4800 F:      net/ceph/
4801
4802 CEPH DISTRIBUTED FILE SYSTEM CLIENT (CEPH)
4803 M:      Xiubo Li <xiubli@redhat.com>
4804 M:      Ilya Dryomov <idryomov@gmail.com>
4805 R:      Jeff Layton <jlayton@kernel.org>
4806 L:      ceph-devel@vger.kernel.org
4807 S:      Supported
4808 W:      http://ceph.com/
4809 T:      git git://github.com/ceph/ceph-client.git
4810 F:      Documentation/filesystems/ceph.rst
4811 F:      fs/ceph/
4812
4813 CERTIFICATE HANDLING
4814 M:      David Howells <dhowells@redhat.com>
4815 M:      David Woodhouse <dwmw2@infradead.org>
4816 L:      keyrings@vger.kernel.org
4817 S:      Maintained
4818 F:      Documentation/admin-guide/module-signing.rst
4819 F:      certs/
4820 F:      scripts/sign-file.c
4821 F:      tools/certs/
4822
4823 CFAG12864B LCD DRIVER
4824 M:      Miguel Ojeda <ojeda@kernel.org>
4825 S:      Maintained
4826 F:      drivers/auxdisplay/cfag12864b.c
4827 F:      include/linux/cfag12864b.h
4828
4829 CFAG12864BFB LCD FRAMEBUFFER DRIVER
4830 M:      Miguel Ojeda <ojeda@kernel.org>
4831 S:      Maintained
4832 F:      drivers/auxdisplay/cfag12864bfb.c
4833 F:      include/linux/cfag12864b.h
4834
4835 CHAR and MISC DRIVERS
4836 M:      Arnd Bergmann <arnd@arndb.de>
4837 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4838 S:      Supported
4839 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
4840 F:      drivers/char/
4841 F:      drivers/misc/
4842 F:      include/linux/miscdevice.h
4843 X:      drivers/char/agp/
4844 X:      drivers/char/hw_random/
4845 X:      drivers/char/ipmi/
4846 X:      drivers/char/random.c
4847 X:      drivers/char/tpm/
4848
4849 CHECKPATCH
4850 M:      Andy Whitcroft <apw@canonical.com>
4851 M:      Joe Perches <joe@perches.com>
4852 R:      Dwaipayan Ray <dwaipayanray1@gmail.com>
4853 R:      Lukas Bulwahn <lukas.bulwahn@gmail.com>
4854 S:      Maintained
4855 F:      scripts/checkpatch.pl
4856
4857 CHECKPATCH DOCUMENTATION
4858 M:      Dwaipayan Ray <dwaipayanray1@gmail.com>
4859 M:      Lukas Bulwahn <lukas.bulwahn@gmail.com>
4860 R:      Joe Perches <joe@perches.com>
4861 S:      Maintained
4862 F:      Documentation/dev-tools/checkpatch.rst
4863
4864 CHINESE DOCUMENTATION
4865 M:      Alex Shi <alexs@kernel.org>
4866 M:      Yanteng Si <siyanteng@loongson.cn>
4867 S:      Maintained
4868 F:      Documentation/translations/zh_CN/
4869
4870 CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
4871 M:      Peter Chen <peter.chen@kernel.org>
4872 L:      linux-usb@vger.kernel.org
4873 S:      Maintained
4874 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4875 F:      drivers/usb/chipidea/
4876
4877 CHIPONE ICN8318 I2C TOUCHSCREEN DRIVER
4878 M:      Hans de Goede <hdegoede@redhat.com>
4879 L:      linux-input@vger.kernel.org
4880 S:      Maintained
4881 F:      Documentation/devicetree/bindings/input/touchscreen/chipone,icn8318.yaml
4882 F:      drivers/input/touchscreen/chipone_icn8318.c
4883
4884 CHIPONE ICN8505 I2C TOUCHSCREEN DRIVER
4885 M:      Hans de Goede <hdegoede@redhat.com>
4886 L:      linux-input@vger.kernel.org
4887 S:      Maintained
4888 F:      drivers/input/touchscreen/chipone_icn8505.c
4889
4890 CHROME HARDWARE PLATFORM SUPPORT
4891 M:      Benson Leung <bleung@chromium.org>
4892 L:      chrome-platform@lists.linux.dev
4893 S:      Maintained
4894 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chrome-platform/linux.git
4895 F:      drivers/platform/chrome/
4896
4897 CHROMEOS EC CODEC DRIVER
4898 M:      Cheng-Yi Chiang <cychiang@chromium.org>
4899 M:      Tzung-Bi Shih <tzungbi@google.com>
4900 R:      Guenter Roeck <groeck@chromium.org>
4901 L:      chrome-platform@lists.linux.dev
4902 S:      Maintained
4903 F:      Documentation/devicetree/bindings/sound/google,cros-ec-codec.yaml
4904 F:      sound/soc/codecs/cros_ec_codec.*
4905
4906 CHROMEOS EC SUBDRIVERS
4907 M:      Benson Leung <bleung@chromium.org>
4908 R:      Guenter Roeck <groeck@chromium.org>
4909 L:      chrome-platform@lists.linux.dev
4910 S:      Maintained
4911 F:      drivers/power/supply/cros_usbpd-charger.c
4912 N:      cros_ec
4913 N:      cros-ec
4914
4915 CHROMEOS EC USB TYPE-C DRIVER
4916 M:      Prashant Malani <pmalani@chromium.org>
4917 L:      chrome-platform@lists.linux.dev
4918 S:      Maintained
4919 F:      drivers/platform/chrome/cros_ec_typec.c
4920 F:      drivers/platform/chrome/cros_typec_switch.c
4921
4922 CHROMEOS EC USB PD NOTIFY DRIVER
4923 M:      Prashant Malani <pmalani@chromium.org>
4924 L:      chrome-platform@lists.linux.dev
4925 S:      Maintained
4926 F:      drivers/platform/chrome/cros_usbpd_notify.c
4927 F:      include/linux/platform_data/cros_usbpd_notify.h
4928
4929 CHRONTEL CH7322 CEC DRIVER
4930 M:      Joe Tessler <jrt@google.com>
4931 L:      linux-media@vger.kernel.org
4932 S:      Maintained
4933 T:      git git://linuxtv.org/media_tree.git
4934 F:      Documentation/devicetree/bindings/media/i2c/chrontel,ch7322.yaml
4935 F:      drivers/media/cec/i2c/ch7322.c
4936
4937 CIRRUS LOGIC AUDIO CODEC DRIVERS
4938 M:      James Schulman <james.schulman@cirrus.com>
4939 M:      David Rhodes <david.rhodes@cirrus.com>
4940 M:      Lucas Tanure <tanureal@opensource.cirrus.com>
4941 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4942 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4943 L:      patches@opensource.cirrus.com
4944 S:      Maintained
4945 F:      Documentation/devicetree/bindings/sound/cirrus,cs*
4946 F:      include/dt-bindings/sound/cs*
4947 F:      sound/pci/hda/cs*
4948 F:      sound/pci/hda/hda_cs_dsp_ctl.*
4949 F:      sound/soc/codecs/cs*
4950
4951 CIRRUS LOGIC DSP FIRMWARE DRIVER
4952 M:      Simon Trimmer <simont@opensource.cirrus.com>
4953 M:      Charles Keepax <ckeepax@opensource.cirrus.com>
4954 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4955 L:      patches@opensource.cirrus.com
4956 S:      Supported
4957 W:      https://github.com/CirrusLogic/linux-drivers/wiki
4958 T:      git https://github.com/CirrusLogic/linux-drivers.git
4959 F:      drivers/firmware/cirrus/*
4960 F:      include/linux/firmware/cirrus/*
4961
4962 CIRRUS LOGIC EP93XX ETHERNET DRIVER
4963 M:      Hartley Sweeten <hsweeten@visionengravers.com>
4964 L:      netdev@vger.kernel.org
4965 S:      Maintained
4966 F:      drivers/net/ethernet/cirrus/ep93xx_eth.c
4967
4968 CIRRUS LOGIC LOCHNAGAR DRIVER
4969 M:      Charles Keepax <ckeepax@opensource.cirrus.com>
4970 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4971 L:      patches@opensource.cirrus.com
4972 S:      Supported
4973 F:      Documentation/devicetree/bindings/clock/cirrus,lochnagar.yaml
4974 F:      Documentation/devicetree/bindings/hwmon/cirrus,lochnagar.yaml
4975 F:      Documentation/devicetree/bindings/mfd/cirrus,lochnagar.yaml
4976 F:      Documentation/devicetree/bindings/pinctrl/cirrus,lochnagar.yaml
4977 F:      Documentation/devicetree/bindings/sound/cirrus,lochnagar.yaml
4978 F:      Documentation/hwmon/lochnagar.rst
4979 F:      drivers/clk/clk-lochnagar.c
4980 F:      drivers/hwmon/lochnagar-hwmon.c
4981 F:      drivers/mfd/lochnagar-i2c.c
4982 F:      drivers/pinctrl/cirrus/pinctrl-lochnagar.c
4983 F:      drivers/regulator/lochnagar-regulator.c
4984 F:      include/dt-bindings/clk/lochnagar.h
4985 F:      include/dt-bindings/pinctrl/lochnagar.h
4986 F:      include/linux/mfd/lochnagar*
4987 F:      sound/soc/codecs/lochnagar-sc.c
4988
4989 CIRRUS LOGIC MADERA CODEC DRIVERS
4990 M:      Charles Keepax <ckeepax@opensource.cirrus.com>
4991 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4992 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4993 L:      patches@opensource.cirrus.com
4994 S:      Supported
4995 W:      https://github.com/CirrusLogic/linux-drivers/wiki
4996 T:      git https://github.com/CirrusLogic/linux-drivers.git
4997 F:      Documentation/devicetree/bindings/mfd/cirrus,madera.yaml
4998 F:      Documentation/devicetree/bindings/pinctrl/cirrus,madera.yaml
4999 F:      Documentation/devicetree/bindings/sound/cirrus,madera.yaml
5000 F:      drivers/gpio/gpio-madera*
5001 F:      drivers/irqchip/irq-madera*
5002 F:      drivers/mfd/cs47l*
5003 F:      drivers/mfd/madera*
5004 F:      drivers/pinctrl/cirrus/*
5005 F:      include/dt-bindings/sound/madera*
5006 F:      include/linux/irqchip/irq-madera*
5007 F:      include/linux/mfd/madera/*
5008 F:      include/sound/madera*
5009 F:      sound/soc/codecs/cs47l*
5010 F:      sound/soc/codecs/madera*
5011
5012 CISCO FCOE HBA DRIVER
5013 M:      Satish Kharat <satishkh@cisco.com>
5014 M:      Sesidhar Baddela <sebaddel@cisco.com>
5015 M:      Karan Tilak Kumar <kartilak@cisco.com>
5016 L:      linux-scsi@vger.kernel.org
5017 S:      Supported
5018 F:      drivers/scsi/fnic/
5019
5020 CISCO SCSI HBA DRIVER
5021 M:      Karan Tilak Kumar <kartilak@cisco.com>
5022 M:      Sesidhar Baddela <sebaddel@cisco.com>
5023 L:      linux-scsi@vger.kernel.org
5024 S:      Supported
5025 F:      drivers/scsi/snic/
5026
5027 CISCO VIC ETHERNET NIC DRIVER
5028 M:      Christian Benvenuti <benve@cisco.com>
5029 M:      Govindarajulu Varadarajan <_govind@gmx.com>
5030 S:      Supported
5031 F:      drivers/net/ethernet/cisco/enic/
5032
5033 CISCO VIC LOW LATENCY NIC DRIVER
5034 M:      Christian Benvenuti <benve@cisco.com>
5035 M:      Nelson Escobar <neescoba@cisco.com>
5036 S:      Supported
5037 F:      drivers/infiniband/hw/usnic/
5038
5039 CLANG-FORMAT FILE
5040 M:      Miguel Ojeda <ojeda@kernel.org>
5041 S:      Maintained
5042 F:      .clang-format
5043
5044 CLANG/LLVM BUILD SUPPORT
5045 M:      Nathan Chancellor <nathan@kernel.org>
5046 M:      Nick Desaulniers <ndesaulniers@google.com>
5047 R:      Tom Rix <trix@redhat.com>
5048 L:      llvm@lists.linux.dev
5049 S:      Supported
5050 W:      https://clangbuiltlinux.github.io/
5051 B:      https://github.com/ClangBuiltLinux/linux/issues
5052 C:      irc://irc.libera.chat/clangbuiltlinux
5053 F:      Documentation/kbuild/llvm.rst
5054 F:      include/linux/compiler-clang.h
5055 F:      scripts/Makefile.clang
5056 F:      scripts/clang-tools/
5057 K:      \b(?i:clang|llvm)\b
5058
5059 CLANG CONTROL FLOW INTEGRITY SUPPORT
5060 M:      Sami Tolvanen <samitolvanen@google.com>
5061 M:      Kees Cook <keescook@chromium.org>
5062 R:      Nathan Chancellor <nathan@kernel.org>
5063 R:      Nick Desaulniers <ndesaulniers@google.com>
5064 L:      llvm@lists.linux.dev
5065 S:      Supported
5066 B:      https://github.com/ClangBuiltLinux/linux/issues
5067 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/hardening
5068 F:      include/linux/cfi.h
5069 F:      kernel/cfi.c
5070
5071 CLK API
5072 M:      Russell King <linux@armlinux.org.uk>
5073 L:      linux-clk@vger.kernel.org
5074 S:      Maintained
5075 F:      include/linux/clk.h
5076
5077 CLOCKSOURCE, CLOCKEVENT DRIVERS
5078 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
5079 M:      Thomas Gleixner <tglx@linutronix.de>
5080 L:      linux-kernel@vger.kernel.org
5081 S:      Supported
5082 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
5083 F:      Documentation/devicetree/bindings/timer/
5084 F:      drivers/clocksource/
5085
5086 CMPC ACPI DRIVER
5087 M:      Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
5088 M:      Daniel Oliveira Nascimento <don@syst.com.br>
5089 L:      platform-driver-x86@vger.kernel.org
5090 S:      Supported
5091 F:      drivers/platform/x86/classmate-laptop.c
5092
5093 COBALT MEDIA DRIVER
5094 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
5095 L:      linux-media@vger.kernel.org
5096 S:      Supported
5097 W:      https://linuxtv.org
5098 T:      git git://linuxtv.org/media_tree.git
5099 F:      drivers/media/pci/cobalt/
5100
5101 COCCINELLE/Semantic Patches (SmPL)
5102 M:      Julia Lawall <Julia.Lawall@inria.fr>
5103 M:      Nicolas Palix <nicolas.palix@imag.fr>
5104 L:      cocci@inria.fr (moderated for non-subscribers)
5105 S:      Supported
5106 W:      https://coccinelle.gitlabpages.inria.fr/website/
5107 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jlawall/linux.git
5108 F:      Documentation/dev-tools/coccinelle.rst
5109 F:      scripts/coccicheck
5110 F:      scripts/coccinelle/
5111
5112 CODA FILE SYSTEM
5113 M:      Jan Harkes <jaharkes@cs.cmu.edu>
5114 M:      coda@cs.cmu.edu
5115 L:      codalist@coda.cs.cmu.edu
5116 S:      Maintained
5117 W:      http://www.coda.cs.cmu.edu/
5118 F:      Documentation/filesystems/coda.rst
5119 F:      fs/coda/
5120 F:      include/linux/coda*.h
5121 F:      include/uapi/linux/coda*.h
5122
5123 CODA V4L2 MEM2MEM DRIVER
5124 M:      Philipp Zabel <p.zabel@pengutronix.de>
5125 L:      linux-media@vger.kernel.org
5126 S:      Maintained
5127 F:      Documentation/devicetree/bindings/media/coda.yaml
5128 F:      drivers/media/platform/chips-media/
5129
5130 CODE OF CONDUCT
5131 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
5132 S:      Supported
5133 F:      Documentation/process/code-of-conduct-interpretation.rst
5134 F:      Documentation/process/code-of-conduct.rst
5135
5136 COMEDI DRIVERS
5137 M:      Ian Abbott <abbotti@mev.co.uk>
5138 M:      H Hartley Sweeten <hsweeten@visionengravers.com>
5139 S:      Odd Fixes
5140 F:      drivers/comedi/
5141 F:      include/linux/comedi/
5142 F:      include/uapi/linux/comedi.h
5143
5144 COMMON CLK FRAMEWORK
5145 M:      Michael Turquette <mturquette@baylibre.com>
5146 M:      Stephen Boyd <sboyd@kernel.org>
5147 L:      linux-clk@vger.kernel.org
5148 S:      Maintained
5149 Q:      http://patchwork.kernel.org/project/linux-clk/list/
5150 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git
5151 F:      Documentation/devicetree/bindings/clock/
5152 F:      drivers/clk/
5153 F:      include/dt-bindings/clock/
5154 F:      include/linux/clk-pr*
5155 F:      include/linux/clk/
5156 F:      include/linux/of_clk.h
5157 X:      drivers/clk/clkdev.c
5158
5159 COMMON INTERNET FILE SYSTEM CLIENT (CIFS and SMB3)
5160 M:      Steve French <sfrench@samba.org>
5161 R:      Paulo Alcantara <pc@cjr.nz> (DFS, global name space)
5162 R:      Ronnie Sahlberg <lsahlber@redhat.com> (directory leases, sparse files)
5163 R:      Shyam Prasad N <sprasad@microsoft.com> (multichannel)
5164 L:      linux-cifs@vger.kernel.org
5165 L:      samba-technical@lists.samba.org (moderated for non-subscribers)
5166 S:      Supported
5167 W:      https://wiki.samba.org/index.php/LinuxCIFS
5168 T:      git git://git.samba.org/sfrench/cifs-2.6.git
5169 F:      Documentation/admin-guide/cifs/
5170 F:      fs/cifs/
5171 F:      fs/smbfs_common/
5172 F:      include/uapi/linux/cifs
5173
5174 COMPACTPCI HOTPLUG CORE
5175 M:      Scott Murray <scott@spiteful.org>
5176 L:      linux-pci@vger.kernel.org
5177 S:      Maintained
5178 F:      drivers/pci/hotplug/cpci_hotplug*
5179
5180 COMPACTPCI HOTPLUG GENERIC DRIVER
5181 M:      Scott Murray <scott@spiteful.org>
5182 L:      linux-pci@vger.kernel.org
5183 S:      Maintained
5184 F:      drivers/pci/hotplug/cpcihp_generic.c
5185
5186 COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
5187 M:      Scott Murray <scott@spiteful.org>
5188 L:      linux-pci@vger.kernel.org
5189 S:      Maintained
5190 F:      drivers/pci/hotplug/cpcihp_zt5550.*
5191
5192 COMPAL LAPTOP SUPPORT
5193 M:      Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
5194 L:      platform-driver-x86@vger.kernel.org
5195 S:      Maintained
5196 F:      drivers/platform/x86/compal-laptop.c
5197
5198 COMPILER ATTRIBUTES
5199 M:      Miguel Ojeda <ojeda@kernel.org>
5200 R:      Nick Desaulniers <ndesaulniers@google.com>
5201 S:      Maintained
5202 F:      include/linux/compiler_attributes.h
5203
5204 COMPUTE EXPRESS LINK (CXL)
5205 M:      Alison Schofield <alison.schofield@intel.com>
5206 M:      Vishal Verma <vishal.l.verma@intel.com>
5207 M:      Ira Weiny <ira.weiny@intel.com>
5208 M:      Ben Widawsky <bwidawsk@kernel.org>
5209 M:      Dan Williams <dan.j.williams@intel.com>
5210 L:      linux-cxl@vger.kernel.org
5211 S:      Maintained
5212 F:      drivers/cxl/
5213 F:      include/uapi/linux/cxl_mem.h
5214
5215 CONEXANT ACCESSRUNNER USB DRIVER
5216 L:      accessrunner-general@lists.sourceforge.net
5217 S:      Orphan
5218 W:      http://accessrunner.sourceforge.net/
5219 F:      drivers/usb/atm/cxacru.c
5220
5221 CONFIGFS
5222 M:      Joel Becker <jlbec@evilplan.org>
5223 M:      Christoph Hellwig <hch@lst.de>
5224 S:      Supported
5225 T:      git git://git.infradead.org/users/hch/configfs.git
5226 F:      fs/configfs/
5227 F:      include/linux/configfs.h
5228 F:      samples/configfs/
5229
5230 CONSOLE SUBSYSTEM
5231 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
5232 S:      Supported
5233 F:      drivers/video/console/
5234 F:      include/linux/console*
5235
5236 CONTEXT TRACKING
5237 M:      Frederic Weisbecker <frederic@kernel.org>
5238 M:      "Paul E. McKenney" <paulmck@kernel.org>
5239 S:      Maintained
5240 F:      kernel/context_tracking.c
5241 F:      include/linux/context_tracking*
5242
5243 CONTROL GROUP (CGROUP)
5244 M:      Tejun Heo <tj@kernel.org>
5245 M:      Zefan Li <lizefan.x@bytedance.com>
5246 M:      Johannes Weiner <hannes@cmpxchg.org>
5247 L:      cgroups@vger.kernel.org
5248 S:      Maintained
5249 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
5250 F:      Documentation/admin-guide/cgroup-v1/
5251 F:      Documentation/admin-guide/cgroup-v2.rst
5252 F:      include/linux/cgroup*
5253 F:      kernel/cgroup/
5254 F:      tools/testing/selftests/cgroup/
5255
5256 CONTROL GROUP - BLOCK IO CONTROLLER (BLKIO)
5257 M:      Tejun Heo <tj@kernel.org>
5258 M:      Jens Axboe <axboe@kernel.dk>
5259 L:      cgroups@vger.kernel.org
5260 L:      linux-block@vger.kernel.org
5261 T:      git git://git.kernel.dk/linux-block
5262 F:      Documentation/admin-guide/cgroup-v1/blkio-controller.rst
5263 F:      block/bfq-cgroup.c
5264 F:      block/blk-cgroup.c
5265 F:      block/blk-iolatency.c
5266 F:      block/blk-throttle.c
5267 F:      include/linux/blk-cgroup.h
5268
5269 CONTROL GROUP - CPUSET
5270 M:      Waiman Long <longman@redhat.com>
5271 M:      Zefan Li <lizefan.x@bytedance.com>
5272 L:      cgroups@vger.kernel.org
5273 S:      Maintained
5274 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
5275 F:      Documentation/admin-guide/cgroup-v1/cpusets.rst
5276 F:      include/linux/cpuset.h
5277 F:      kernel/cgroup/cpuset.c
5278
5279 CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG)
5280 M:      Johannes Weiner <hannes@cmpxchg.org>
5281 M:      Michal Hocko <mhocko@kernel.org>
5282 M:      Roman Gushchin <roman.gushchin@linux.dev>
5283 M:      Shakeel Butt <shakeelb@google.com>
5284 R:      Muchun Song <songmuchun@bytedance.com>
5285 L:      cgroups@vger.kernel.org
5286 L:      linux-mm@kvack.org
5287 S:      Maintained
5288 F:      mm/memcontrol.c
5289 F:      mm/swap_cgroup.c
5290 F:      tools/testing/selftests/cgroup/memcg_protection.m
5291 F:      tools/testing/selftests/cgroup/test_kmem.c
5292 F:      tools/testing/selftests/cgroup/test_memcontrol.c
5293
5294 CORETEMP HARDWARE MONITORING DRIVER
5295 M:      Fenghua Yu <fenghua.yu@intel.com>
5296 L:      linux-hwmon@vger.kernel.org
5297 S:      Maintained
5298 F:      Documentation/hwmon/coretemp.rst
5299 F:      drivers/hwmon/coretemp.c
5300
5301 CORSAIR-CPRO HARDWARE MONITOR DRIVER
5302 M:      Marius Zachmann <mail@mariuszachmann.de>
5303 L:      linux-hwmon@vger.kernel.org
5304 S:      Maintained
5305 F:      drivers/hwmon/corsair-cpro.c
5306
5307 CORSAIR-PSU HARDWARE MONITOR DRIVER
5308 M:      Wilken Gottwalt <wilken.gottwalt@posteo.net>
5309 L:      linux-hwmon@vger.kernel.org
5310 S:      Maintained
5311 F:      Documentation/hwmon/corsair-psu.rst
5312 F:      drivers/hwmon/corsair-psu.c
5313
5314 COUNTER SUBSYSTEM
5315 M:      William Breathitt Gray <william.gray@linaro.org>
5316 L:      linux-iio@vger.kernel.org
5317 S:      Maintained
5318 T:      git https://git.linaro.org/people/william.gray/counter.git
5319 F:      Documentation/ABI/testing/sysfs-bus-counter
5320 F:      Documentation/driver-api/generic-counter.rst
5321 F:      drivers/counter/
5322 F:      include/linux/counter.h
5323 F:      include/uapi/linux/counter.h
5324 F:      tools/counter/
5325
5326 CP2615 I2C DRIVER
5327 M:      Bence Csókás <bence98@sch.bme.hu>
5328 S:      Maintained
5329 F:      drivers/i2c/busses/i2c-cp2615.c
5330
5331 CPMAC ETHERNET DRIVER
5332 M:      Florian Fainelli <f.fainelli@gmail.com>
5333 L:      netdev@vger.kernel.org
5334 S:      Maintained
5335 F:      drivers/net/ethernet/ti/cpmac.c
5336
5337 CPU FREQUENCY DRIVERS - VEXPRESS SPC ARM BIG LITTLE
5338 M:      Viresh Kumar <viresh.kumar@linaro.org>
5339 M:      Sudeep Holla <sudeep.holla@arm.com>
5340 L:      linux-pm@vger.kernel.org
5341 S:      Maintained
5342 W:      http://www.arm.com/products/processors/technologies/biglittleprocessing.php
5343 F:      drivers/cpufreq/vexpress-spc-cpufreq.c
5344
5345 CPU FREQUENCY SCALING FRAMEWORK
5346 M:      "Rafael J. Wysocki" <rafael@kernel.org>
5347 M:      Viresh Kumar <viresh.kumar@linaro.org>
5348 L:      linux-pm@vger.kernel.org
5349 S:      Maintained
5350 B:      https://bugzilla.kernel.org
5351 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
5352 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git (For ARM Updates)
5353 F:      Documentation/admin-guide/pm/cpufreq.rst
5354 F:      Documentation/admin-guide/pm/intel_pstate.rst
5355 F:      Documentation/cpu-freq/
5356 F:      Documentation/devicetree/bindings/cpufreq/
5357 F:      drivers/cpufreq/
5358 F:      include/linux/cpufreq.h
5359 F:      include/linux/sched/cpufreq.h
5360 F:      kernel/sched/cpufreq*.c
5361 F:      tools/testing/selftests/cpufreq/
5362
5363 CPU IDLE TIME MANAGEMENT FRAMEWORK
5364 M:      "Rafael J. Wysocki" <rafael@kernel.org>
5365 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
5366 L:      linux-pm@vger.kernel.org
5367 S:      Maintained
5368 B:      https://bugzilla.kernel.org
5369 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
5370 F:      Documentation/admin-guide/pm/cpuidle.rst
5371 F:      Documentation/driver-api/pm/cpuidle.rst
5372 F:      drivers/cpuidle/
5373 F:      include/linux/cpuidle.h
5374
5375 CPU POWER MONITORING SUBSYSTEM
5376 M:      Thomas Renninger <trenn@suse.com>
5377 M:      Shuah Khan <shuah@kernel.org>
5378 M:      Shuah Khan <skhan@linuxfoundation.org>
5379 L:      linux-pm@vger.kernel.org
5380 S:      Maintained
5381 F:      tools/power/cpupower/
5382
5383 CPUID/MSR DRIVER
5384 M:      "H. Peter Anvin" <hpa@zytor.com>
5385 S:      Maintained
5386 F:      arch/x86/kernel/cpuid.c
5387 F:      arch/x86/kernel/msr.c
5388
5389 CPUIDLE DRIVER - ARM BIG LITTLE
5390 M:      Lorenzo Pieralisi <lpieralisi@kernel.org>
5391 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
5392 L:      linux-pm@vger.kernel.org
5393 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5394 S:      Maintained
5395 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
5396 F:      drivers/cpuidle/cpuidle-big_little.c
5397
5398 CPUIDLE DRIVER - ARM EXYNOS
5399 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
5400 R:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
5401 M:      Kukjin Kim <kgene@kernel.org>
5402 L:      linux-pm@vger.kernel.org
5403 L:      linux-samsung-soc@vger.kernel.org
5404 S:      Supported
5405 F:      arch/arm/mach-exynos/pm.c
5406 F:      drivers/cpuidle/cpuidle-exynos.c
5407 F:      include/linux/platform_data/cpuidle-exynos.h
5408
5409 CPUIDLE DRIVER - ARM PSCI
5410 M:      Lorenzo Pieralisi <lpieralisi@kernel.org>
5411 M:      Sudeep Holla <sudeep.holla@arm.com>
5412 L:      linux-pm@vger.kernel.org
5413 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5414 S:      Supported
5415 F:      drivers/cpuidle/cpuidle-psci.c
5416
5417 CPUIDLE DRIVER - ARM PSCI PM DOMAIN
5418 M:      Ulf Hansson <ulf.hansson@linaro.org>
5419 L:      linux-pm@vger.kernel.org
5420 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5421 S:      Supported
5422 F:      drivers/cpuidle/cpuidle-psci.h
5423 F:      drivers/cpuidle/cpuidle-psci-domain.c
5424
5425 CPUIDLE DRIVER - DT IDLE PM DOMAIN
5426 M:      Ulf Hansson <ulf.hansson@linaro.org>
5427 L:      linux-pm@vger.kernel.org
5428 S:      Supported
5429 F:      drivers/cpuidle/dt_idle_genpd.c
5430 F:      drivers/cpuidle/dt_idle_genpd.h
5431
5432 CPUIDLE DRIVER - RISC-V SBI
5433 M:      Anup Patel <anup@brainfault.org>
5434 L:      linux-pm@vger.kernel.org
5435 L:      linux-riscv@lists.infradead.org
5436 S:      Maintained
5437 F:      drivers/cpuidle/cpuidle-riscv-sbi.c
5438
5439 CRAMFS FILESYSTEM
5440 M:      Nicolas Pitre <nico@fluxnic.net>
5441 S:      Maintained
5442 F:      Documentation/filesystems/cramfs.rst
5443 F:      fs/cramfs/
5444
5445 CREATIVE SB0540
5446 M:      Bastien Nocera <hadess@hadess.net>
5447 L:      linux-input@vger.kernel.org
5448 S:      Maintained
5449 F:      drivers/hid/hid-creative-sb0540.c
5450
5451 CRYPTO API
5452 M:      Herbert Xu <herbert@gondor.apana.org.au>
5453 M:      "David S. Miller" <davem@davemloft.net>
5454 L:      linux-crypto@vger.kernel.org
5455 S:      Maintained
5456 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
5457 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
5458 F:      Documentation/crypto/
5459 F:      Documentation/devicetree/bindings/crypto/
5460 F:      arch/*/crypto/
5461 F:      crypto/
5462 F:      drivers/crypto/
5463 F:      include/crypto/
5464 F:      include/linux/crypto*
5465 F:      lib/crypto/
5466
5467 CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
5468 M:      Neil Horman <nhorman@tuxdriver.com>
5469 L:      linux-crypto@vger.kernel.org
5470 S:      Maintained
5471 F:      crypto/ansi_cprng.c
5472 F:      crypto/rng.c
5473
5474 CS3308 MEDIA DRIVER
5475 M:      Hans Verkuil <hverkuil@xs4all.nl>
5476 L:      linux-media@vger.kernel.org
5477 S:      Odd Fixes
5478 W:      http://linuxtv.org
5479 T:      git git://linuxtv.org/media_tree.git
5480 F:      drivers/media/i2c/cs3308.c
5481
5482 CS5535 Audio ALSA driver
5483 M:      Jaya Kumar <jayakumar.alsa@gmail.com>
5484 S:      Maintained
5485 F:      sound/pci/cs5535audio/
5486
5487 CSI DRIVERS FOR ALLWINNER V3s
5488 M:      Yong Deng <yong.deng@magewell.com>
5489 L:      linux-media@vger.kernel.org
5490 S:      Maintained
5491 T:      git git://linuxtv.org/media_tree.git
5492 F:      Documentation/devicetree/bindings/media/allwinner,sun6i-a31-csi.yaml
5493 F:      drivers/media/platform/sunxi/sun6i-csi/
5494
5495 CTU CAN FD DRIVER
5496 M:      Pavel Pisa <pisa@cmp.felk.cvut.cz>
5497 M:      Ondrej Ille <ondrej.ille@gmail.com>
5498 L:      linux-can@vger.kernel.org
5499 S:      Maintained
5500 F:      Documentation/devicetree/bindings/net/can/ctu,ctucanfd.yaml
5501 F:      drivers/net/can/ctucanfd/
5502
5503 CW1200 WLAN driver
5504 M:      Solomon Peachy <pizza@shaftnet.org>
5505 S:      Maintained
5506 F:      drivers/net/wireless/st/cw1200/
5507
5508 CX18 VIDEO4LINUX DRIVER
5509 M:      Andy Walls <awalls@md.metrocast.net>
5510 L:      linux-media@vger.kernel.org
5511 S:      Maintained
5512 W:      https://linuxtv.org
5513 T:      git git://linuxtv.org/media_tree.git
5514 F:      drivers/media/pci/cx18/
5515 F:      include/uapi/linux/ivtv*
5516
5517 CX2341X MPEG ENCODER HELPER MODULE
5518 M:      Hans Verkuil <hverkuil@xs4all.nl>
5519 L:      linux-media@vger.kernel.org
5520 S:      Maintained
5521 W:      https://linuxtv.org
5522 T:      git git://linuxtv.org/media_tree.git
5523 F:      drivers/media/common/cx2341x*
5524 F:      include/media/drv-intf/cx2341x.h
5525
5526 CX24120 MEDIA DRIVER
5527 M:      Jemma Denson <jdenson@gmail.com>
5528 M:      Patrick Boettcher <patrick.boettcher@posteo.de>
5529 L:      linux-media@vger.kernel.org
5530 S:      Maintained
5531 W:      https://linuxtv.org
5532 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5533 F:      drivers/media/dvb-frontends/cx24120*
5534
5535 CX88 VIDEO4LINUX DRIVER
5536 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
5537 L:      linux-media@vger.kernel.org
5538 S:      Odd fixes
5539 W:      https://linuxtv.org
5540 T:      git git://linuxtv.org/media_tree.git
5541 F:      Documentation/driver-api/media/drivers/cx88*
5542 F:      drivers/media/pci/cx88/
5543
5544 CXD2820R MEDIA DRIVER
5545 M:      Antti Palosaari <crope@iki.fi>
5546 L:      linux-media@vger.kernel.org
5547 S:      Maintained
5548 W:      https://linuxtv.org
5549 W:      http://palosaari.fi/linux/
5550 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5551 T:      git git://linuxtv.org/anttip/media_tree.git
5552 F:      drivers/media/dvb-frontends/cxd2820r*
5553
5554 CXGB3 ETHERNET DRIVER (CXGB3)
5555 M:      Raju Rangoju <rajur@chelsio.com>
5556 L:      netdev@vger.kernel.org
5557 S:      Supported
5558 W:      http://www.chelsio.com
5559 F:      drivers/net/ethernet/chelsio/cxgb3/
5560
5561 CXGB3 ISCSI DRIVER (CXGB3I)
5562 M:      Varun Prakash <varun@chelsio.com>
5563 L:      linux-scsi@vger.kernel.org
5564 S:      Supported
5565 W:      http://www.chelsio.com
5566 F:      drivers/scsi/cxgbi/cxgb3i
5567
5568 CXGB4 CRYPTO DRIVER (chcr)
5569 M:      Ayush Sawal <ayush.sawal@chelsio.com>
5570 M:      Vinay Kumar Yadav <vinay.yadav@chelsio.com>
5571 M:      Rohit Maheshwari <rohitm@chelsio.com>
5572 L:      linux-crypto@vger.kernel.org
5573 S:      Supported
5574 W:      http://www.chelsio.com
5575 F:      drivers/crypto/chelsio
5576
5577 CXGB4 INLINE CRYPTO DRIVER
5578 M:      Ayush Sawal <ayush.sawal@chelsio.com>
5579 M:      Vinay Kumar Yadav <vinay.yadav@chelsio.com>
5580 M:      Rohit Maheshwari <rohitm@chelsio.com>
5581 L:      netdev@vger.kernel.org
5582 S:      Supported
5583 W:      http://www.chelsio.com
5584 F:      drivers/net/ethernet/chelsio/inline_crypto/
5585
5586 CXGB4 ETHERNET DRIVER (CXGB4)
5587 M:      Raju Rangoju <rajur@chelsio.com>
5588 L:      netdev@vger.kernel.org
5589 S:      Supported
5590 W:      http://www.chelsio.com
5591 F:      drivers/net/ethernet/chelsio/cxgb4/
5592
5593 CXGB4 ISCSI DRIVER (CXGB4I)
5594 M:      Varun Prakash <varun@chelsio.com>
5595 L:      linux-scsi@vger.kernel.org
5596 S:      Supported
5597 W:      http://www.chelsio.com
5598 F:      drivers/scsi/cxgbi/cxgb4i
5599
5600 CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
5601 M:      Potnuri Bharat Teja <bharat@chelsio.com>
5602 L:      linux-rdma@vger.kernel.org
5603 S:      Supported
5604 W:      http://www.openfabrics.org
5605 F:      drivers/infiniband/hw/cxgb4/
5606 F:      include/uapi/rdma/cxgb4-abi.h
5607
5608 CXGB4VF ETHERNET DRIVER (CXGB4VF)
5609 M:      Raju Rangoju <rajur@chelsio.com>
5610 L:      netdev@vger.kernel.org
5611 S:      Supported
5612 W:      http://www.chelsio.com
5613 F:      drivers/net/ethernet/chelsio/cxgb4vf/
5614
5615 CXL (IBM Coherent Accelerator Processor Interface CAPI) DRIVER
5616 M:      Frederic Barrat <fbarrat@linux.ibm.com>
5617 M:      Andrew Donnellan <ajd@linux.ibm.com>
5618 L:      linuxppc-dev@lists.ozlabs.org
5619 S:      Supported
5620 F:      Documentation/ABI/testing/sysfs-class-cxl
5621 F:      Documentation/powerpc/cxl.rst
5622 F:      arch/powerpc/platforms/powernv/pci-cxl.c
5623 F:      drivers/misc/cxl/
5624 F:      include/misc/cxl*
5625 F:      include/uapi/misc/cxl.h
5626
5627 CXLFLASH (IBM Coherent Accelerator Processor Interface CAPI Flash) SCSI DRIVER
5628 M:      Manoj N. Kumar <manoj@linux.ibm.com>
5629 M:      Matthew R. Ochs <mrochs@linux.ibm.com>
5630 M:      Uma Krishnan <ukrishn@linux.ibm.com>
5631 L:      linux-scsi@vger.kernel.org
5632 S:      Supported
5633 F:      Documentation/powerpc/cxlflash.rst
5634 F:      drivers/scsi/cxlflash/
5635 F:      include/uapi/scsi/cxlflash_ioctl.h
5636
5637 CYBERPRO FB DRIVER
5638 M:      Russell King <linux@armlinux.org.uk>
5639 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5640 S:      Maintained
5641 W:      http://www.armlinux.org.uk/
5642 F:      drivers/video/fbdev/cyber2000fb.*
5643
5644 CYCLADES PC300 DRIVER
5645 S:      Orphan
5646 F:      drivers/net/wan/pc300*
5647
5648 CYPRESS_FIRMWARE MEDIA DRIVER
5649 M:      Antti Palosaari <crope@iki.fi>
5650 L:      linux-media@vger.kernel.org
5651 S:      Maintained
5652 W:      https://linuxtv.org
5653 W:      http://palosaari.fi/linux/
5654 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5655 T:      git git://linuxtv.org/anttip/media_tree.git
5656 F:      drivers/media/common/cypress_firmware*
5657
5658 CYPRESS CY8CTMA140 TOUCHSCREEN DRIVER
5659 M:      Linus Walleij <linus.walleij@linaro.org>
5660 L:      linux-input@vger.kernel.org
5661 S:      Maintained
5662 F:      drivers/input/touchscreen/cy8ctma140.c
5663
5664 CYPRESS STREETFIGHTER TOUCHKEYS DRIVER
5665 M:      Yassine Oudjana <y.oudjana@protonmail.com>
5666 L:      linux-input@vger.kernel.org
5667 S:      Maintained
5668 F:      Documentation/devicetree/bindings/input/cypress-sf.yaml
5669 F:      drivers/input/keyboard/cypress-sf.c
5670
5671 CYTTSP TOUCHSCREEN DRIVER
5672 M:      Linus Walleij <linus.walleij@linaro.org>
5673 L:      linux-input@vger.kernel.org
5674 S:      Maintained
5675 F:      drivers/input/touchscreen/cyttsp*
5676
5677 D-LINK DIR-685 TOUCHKEYS DRIVER
5678 M:      Linus Walleij <linus.walleij@linaro.org>
5679 L:      linux-input@vger.kernel.org
5680 S:      Supported
5681 F:      drivers/input/keyboard/dlink-dir685-touchkeys.c
5682
5683 DALLAS/MAXIM DS1685-FAMILY REAL TIME CLOCK
5684 M:      Joshua Kinard <kumba@gentoo.org>
5685 S:      Maintained
5686 F:      drivers/rtc/rtc-ds1685.c
5687 F:      include/linux/rtc/ds1685.h
5688
5689 DAMA SLAVE for AX.25
5690 M:      Joerg Reuter <jreuter@yaina.de>
5691 L:      linux-hams@vger.kernel.org
5692 S:      Maintained
5693 W:      http://yaina.de/jreuter/
5694 W:      http://www.qsl.net/dl1bke/
5695 F:      net/ax25/af_ax25.c
5696 F:      net/ax25/ax25_dev.c
5697 F:      net/ax25/ax25_ds_*
5698 F:      net/ax25/ax25_in.c
5699 F:      net/ax25/ax25_out.c
5700 F:      net/ax25/ax25_timer.c
5701 F:      net/ax25/sysctl_net_ax25.c
5702
5703 DATA ACCESS MONITOR
5704 M:      SeongJae Park <sj@kernel.org>
5705 L:      damon@lists.linux.dev
5706 L:      linux-mm@kvack.org
5707 S:      Maintained
5708 F:      Documentation/ABI/testing/sysfs-kernel-mm-damon
5709 F:      Documentation/admin-guide/mm/damon/
5710 F:      Documentation/mm/damon/
5711 F:      include/linux/damon.h
5712 F:      include/trace/events/damon.h
5713 F:      mm/damon/
5714 F:      tools/testing/selftests/damon/
5715
5716 DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
5717 L:      netdev@vger.kernel.org
5718 S:      Orphan
5719 F:      Documentation/networking/device_drivers/ethernet/dec/dmfe.rst
5720 F:      drivers/net/ethernet/dec/tulip/dmfe.c
5721
5722 DC390/AM53C974 SCSI driver
5723 M:      Hannes Reinecke <hare@suse.com>
5724 L:      linux-scsi@vger.kernel.org
5725 S:      Maintained
5726 F:      drivers/scsi/am53c974.c
5727
5728 DC395x SCSI driver
5729 M:      Oliver Neukum <oliver@neukum.org>
5730 M:      Ali Akcaagac <aliakc@web.de>
5731 M:      Jamie Lenehan <lenehan@twibble.org>
5732 L:      dc395x@twibble.org
5733 S:      Maintained
5734 W:      http://twibble.org/dist/dc395x/
5735 W:      http://lists.twibble.org/mailman/listinfo/dc395x/
5736 F:      Documentation/scsi/dc395x.rst
5737 F:      drivers/scsi/dc395x.*
5738
5739 DCCP PROTOCOL
5740 L:      dccp@vger.kernel.org
5741 S:      Orphan
5742 W:      http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
5743 F:      include/linux/dccp.h
5744 F:      include/linux/tfrc.h
5745 F:      include/uapi/linux/dccp.h
5746 F:      net/dccp/
5747
5748 DECSTATION PLATFORM SUPPORT
5749 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
5750 L:      linux-mips@vger.kernel.org
5751 S:      Maintained
5752 W:      http://www.linux-mips.org/wiki/DECstation
5753 F:      arch/mips/dec/
5754 F:      arch/mips/include/asm/dec/
5755 F:      arch/mips/include/asm/mach-dec/
5756
5757 DEFXX FDDI NETWORK DRIVER
5758 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
5759 S:      Maintained
5760 F:      drivers/net/fddi/defxx.*
5761
5762 DEFZA FDDI NETWORK DRIVER
5763 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
5764 S:      Maintained
5765 F:      drivers/net/fddi/defza.*
5766
5767 DEINTERLACE DRIVERS FOR ALLWINNER H3
5768 M:      Jernej Skrabec <jernej.skrabec@gmail.com>
5769 L:      linux-media@vger.kernel.org
5770 S:      Maintained
5771 T:      git git://linuxtv.org/media_tree.git
5772 F:      Documentation/devicetree/bindings/media/allwinner,sun8i-h3-deinterlace.yaml
5773 F:      drivers/media/platform/sunxi/sun8i-di/
5774
5775 DELL LAPTOP DRIVER
5776 M:      Matthew Garrett <mjg59@srcf.ucam.org>
5777 M:      Pali Rohár <pali@kernel.org>
5778 L:      platform-driver-x86@vger.kernel.org
5779 S:      Maintained
5780 F:      drivers/platform/x86/dell/dell-laptop.c
5781
5782 DELL LAPTOP FREEFALL DRIVER
5783 M:      Pali Rohár <pali@kernel.org>
5784 S:      Maintained
5785 F:      drivers/platform/x86/dell/dell-smo8800.c
5786
5787 DELL LAPTOP RBTN DRIVER
5788 M:      Pali Rohár <pali@kernel.org>
5789 S:      Maintained
5790 F:      drivers/platform/x86/dell/dell-rbtn.*
5791
5792 DELL LAPTOP SMM DRIVER
5793 M:      Pali Rohár <pali@kernel.org>
5794 S:      Maintained
5795 F:      Documentation/ABI/obsolete/procfs-i8k
5796 F:      drivers/hwmon/dell-smm-hwmon.c
5797 F:      include/uapi/linux/i8k.h
5798
5799 DELL REMOTE BIOS UPDATE DRIVER
5800 M:      Stuart Hayes <stuart.w.hayes@gmail.com>
5801 L:      platform-driver-x86@vger.kernel.org
5802 S:      Maintained
5803 F:      drivers/platform/x86/dell/dell_rbu.c
5804
5805 DELL SMBIOS DRIVER
5806 M:      Pali Rohár <pali@kernel.org>
5807 L:      Dell.Client.Kernel@dell.com
5808 L:      platform-driver-x86@vger.kernel.org
5809 S:      Maintained
5810 F:      drivers/platform/x86/dell/dell-smbios.*
5811
5812 DELL SMBIOS SMM DRIVER
5813 L:      Dell.Client.Kernel@dell.com
5814 L:      platform-driver-x86@vger.kernel.org
5815 S:      Maintained
5816 F:      drivers/platform/x86/dell/dell-smbios-smm.c
5817
5818 DELL SMBIOS WMI DRIVER
5819 L:      Dell.Client.Kernel@dell.com
5820 L:      platform-driver-x86@vger.kernel.org
5821 S:      Maintained
5822 F:      drivers/platform/x86/dell/dell-smbios-wmi.c
5823 F:      tools/wmi/dell-smbios-example.c
5824
5825 DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
5826 M:      Stuart Hayes <stuart.w.hayes@gmail.com>
5827 L:      platform-driver-x86@vger.kernel.org
5828 S:      Maintained
5829 F:      Documentation/driver-api/dcdbas.rst
5830 F:      drivers/platform/x86/dell/dcdbas.*
5831
5832 DELL WMI DESCRIPTOR DRIVER
5833 L:      Dell.Client.Kernel@dell.com
5834 S:      Maintained
5835 F:      drivers/platform/x86/dell/dell-wmi-descriptor.c
5836
5837 DELL WMI SYSMAN DRIVER
5838 M:      Divya Bharathi <divya.bharathi@dell.com>
5839 M:      Prasanth Ksr <prasanth.ksr@dell.com>
5840 L:      Dell.Client.Kernel@dell.com
5841 L:      platform-driver-x86@vger.kernel.org
5842 S:      Maintained
5843 F:      Documentation/ABI/testing/sysfs-class-firmware-attributes
5844 F:      drivers/platform/x86/dell/dell-wmi-sysman/
5845
5846 DELL WMI NOTIFICATIONS DRIVER
5847 M:      Matthew Garrett <mjg59@srcf.ucam.org>
5848 M:      Pali Rohár <pali@kernel.org>
5849 S:      Maintained
5850 F:      drivers/platform/x86/dell/dell-wmi-base.c
5851
5852 DELL WMI HARDWARE PRIVACY SUPPORT
5853 M:      Perry Yuan <Perry.Yuan@dell.com>
5854 L:      Dell.Client.Kernel@dell.com
5855 L:      platform-driver-x86@vger.kernel.org
5856 S:      Maintained
5857 F:      drivers/platform/x86/dell/dell-wmi-privacy.c
5858
5859 DELTA ST MEDIA DRIVER
5860 M:      Hugues Fruchet <hugues.fruchet@foss.st.com>
5861 L:      linux-media@vger.kernel.org
5862 S:      Supported
5863 W:      https://linuxtv.org
5864 T:      git git://linuxtv.org/media_tree.git
5865 F:      drivers/media/platform/st/sti/delta
5866
5867 DELTA AHE-50DC FAN CONTROL MODULE DRIVER
5868 M:      Zev Weiss <zev@bewilderbeest.net>
5869 L:      linux-hwmon@vger.kernel.org
5870 S:      Maintained
5871 F:      drivers/hwmon/pmbus/delta-ahe50dc-fan.c
5872
5873 DELTA DPS920AB PSU DRIVER
5874 M:      Robert Marko <robert.marko@sartura.hr>
5875 L:      linux-hwmon@vger.kernel.org
5876 S:      Maintained
5877 F:      Documentation/hwmon/dps920ab.rst
5878 F:      drivers/hwmon/pmbus/dps920ab.c
5879
5880 DELTA NETWORKS TN48M CPLD DRIVERS
5881 M:      Robert Marko <robert.marko@sartura.hr>
5882 S:      Maintained
5883 F:      Documentation/devicetree/bindings/gpio/delta,tn48m-gpio.yaml
5884 F:      Documentation/devicetree/bindings/mfd/delta,tn48m-cpld.yaml
5885 F:      Documentation/devicetree/bindings/reset/delta,tn48m-reset.yaml
5886 F:      drivers/gpio/gpio-tn48m.c
5887 F:      include/dt-bindings/reset/delta,tn48m-reset.h
5888
5889 DENALI NAND DRIVER
5890 L:      linux-mtd@lists.infradead.org
5891 S:      Orphan
5892 F:      drivers/mtd/nand/raw/denali*
5893
5894 DESIGNWARE EDMA CORE IP DRIVER
5895 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
5896 L:      dmaengine@vger.kernel.org
5897 S:      Maintained
5898 F:      drivers/dma/dw-edma/
5899 F:      include/linux/dma/edma.h
5900
5901 DESIGNWARE XDATA IP DRIVER
5902 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
5903 L:      linux-pci@vger.kernel.org
5904 S:      Maintained
5905 F:      Documentation/misc-devices/dw-xdata-pcie.rst
5906 F:      drivers/misc/dw-xdata-pcie.c
5907
5908 DESIGNWARE USB2 DRD IP DRIVER
5909 M:      Minas Harutyunyan <hminas@synopsys.com>
5910 L:      linux-usb@vger.kernel.org
5911 S:      Maintained
5912 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
5913 F:      drivers/usb/dwc2/
5914
5915 DESIGNWARE USB3 DRD IP DRIVER
5916 M:      Felipe Balbi <balbi@kernel.org>
5917 L:      linux-usb@vger.kernel.org
5918 S:      Maintained
5919 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
5920 F:      drivers/usb/dwc3/
5921
5922 DEVANTECH SRF ULTRASONIC RANGER IIO DRIVER
5923 M:      Andreas Klinger <ak@it-klinger.de>
5924 L:      linux-iio@vger.kernel.org
5925 S:      Maintained
5926 F:      Documentation/ABI/testing/sysfs-bus-iio-distance-srf08
5927 F:      drivers/iio/proximity/srf*.c
5928
5929 DEVICE COREDUMP (DEV_COREDUMP)
5930 M:      Johannes Berg <johannes@sipsolutions.net>
5931 L:      linux-kernel@vger.kernel.org
5932 S:      Maintained
5933 F:      drivers/base/devcoredump.c
5934 F:      include/linux/devcoredump.h
5935
5936 DEVICE DEPENDENCY HELPER SCRIPT
5937 M:      Saravana Kannan <saravanak@google.com>
5938 L:      linux-kernel@vger.kernel.org
5939 S:      Maintained
5940 F:      scripts/dev-needs.sh
5941
5942 DEVICE DIRECT ACCESS (DAX)
5943 M:      Dan Williams <dan.j.williams@intel.com>
5944 M:      Vishal Verma <vishal.l.verma@intel.com>
5945 M:      Dave Jiang <dave.jiang@intel.com>
5946 L:      nvdimm@lists.linux.dev
5947 S:      Supported
5948 F:      drivers/dax/
5949
5950 DEVICE FREQUENCY (DEVFREQ)
5951 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
5952 M:      Kyungmin Park <kyungmin.park@samsung.com>
5953 M:      Chanwoo Choi <cw00.choi@samsung.com>
5954 L:      linux-pm@vger.kernel.org
5955 S:      Maintained
5956 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
5957 F:      Documentation/devicetree/bindings/devfreq/
5958 F:      Documentation/devicetree/bindings/interconnect/mediatek,cci.yaml
5959 F:      drivers/devfreq/
5960 F:      include/linux/devfreq.h
5961 F:      include/trace/events/devfreq.h
5962
5963 DEVICE FREQUENCY EVENT (DEVFREQ-EVENT)
5964 M:      Chanwoo Choi <cw00.choi@samsung.com>
5965 L:      linux-pm@vger.kernel.org
5966 S:      Supported
5967 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
5968 F:      Documentation/devicetree/bindings/devfreq/event/
5969 F:      drivers/devfreq/devfreq-event.c
5970 F:      drivers/devfreq/event/
5971 F:      include/dt-bindings/pmu/exynos_ppmu.h
5972 F:      include/linux/devfreq-event.h
5973
5974 DEVICE NUMBER REGISTRY
5975 M:      Torben Mathiasen <device@lanana.org>
5976 S:      Maintained
5977 W:      http://lanana.org/docs/device-list/index.html
5978
5979 DEVICE RESOURCE MANAGEMENT HELPERS
5980 M:      Hans de Goede <hdegoede@redhat.com>
5981 R:      Matti Vaittinen <mazziesaccount@gmail.com>
5982 S:      Maintained
5983 F:      include/linux/devm-helpers.h
5984
5985 DEVICE-MAPPER  (LVM)
5986 M:      Alasdair Kergon <agk@redhat.com>
5987 M:      Mike Snitzer <snitzer@kernel.org>
5988 M:      dm-devel@redhat.com
5989 L:      dm-devel@redhat.com
5990 S:      Maintained
5991 W:      http://sources.redhat.com/dm
5992 Q:      http://patchwork.kernel.org/project/dm-devel/list/
5993 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git
5994 T:      quilt http://people.redhat.com/agk/patches/linux/editing/
5995 F:      Documentation/admin-guide/device-mapper/
5996 F:      drivers/md/Kconfig
5997 F:      drivers/md/Makefile
5998 F:      drivers/md/dm*
5999 F:      drivers/md/persistent-data/
6000 F:      include/linux/device-mapper.h
6001 F:      include/linux/dm-*.h
6002 F:      include/uapi/linux/dm-*.h
6003
6004 DEVLINK
6005 M:      Jiri Pirko <jiri@nvidia.com>
6006 L:      netdev@vger.kernel.org
6007 S:      Supported
6008 F:      Documentation/networking/devlink
6009 F:      include/net/devlink.h
6010 F:      include/uapi/linux/devlink.h
6011 F:      net/core/devlink.c
6012
6013 DH ELECTRONICS IMX6 DHCOM BOARD SUPPORT
6014 M:      Christoph Niedermaier <cniedermaier@dh-electronics.com>
6015 L:      kernel@dh-electronics.com
6016 S:      Maintained
6017 F:      arch/arm/boot/dts/imx6*-dhcom-*
6018
6019 DH ELECTRONICS STM32MP1 DHCOM/DHCOR BOARD SUPPORT
6020 M:      Marek Vasut <marex@denx.de>
6021 L:      kernel@dh-electronics.com
6022 S:      Maintained
6023 F:      arch/arm/boot/dts/stm32mp1*-dhcom-*
6024 F:      arch/arm/boot/dts/stm32mp1*-dhcor-*
6025
6026 DIALOG SEMICONDUCTOR DRIVERS
6027 M:      Support Opensource <support.opensource@diasemi.com>
6028 S:      Supported
6029 W:      http://www.dialog-semiconductor.com/products
6030 F:      Documentation/devicetree/bindings/input/da90??-onkey.txt
6031 F:      Documentation/devicetree/bindings/input/dlg,da72??.txt
6032 F:      Documentation/devicetree/bindings/mfd/da90*.txt
6033 F:      Documentation/devicetree/bindings/mfd/da90*.yaml
6034 F:      Documentation/devicetree/bindings/regulator/dlg,da9*.yaml
6035 F:      Documentation/devicetree/bindings/regulator/da92*.txt
6036 F:      Documentation/devicetree/bindings/regulator/slg51000.txt
6037 F:      Documentation/devicetree/bindings/sound/da[79]*.txt
6038 F:      Documentation/devicetree/bindings/thermal/da90??-thermal.txt
6039 F:      Documentation/devicetree/bindings/watchdog/da90??-wdt.txt
6040 F:      Documentation/hwmon/da90??.rst
6041 F:      drivers/gpio/gpio-da90??.c
6042 F:      drivers/hwmon/da90??-hwmon.c
6043 F:      drivers/iio/adc/da91??-*.c
6044 F:      drivers/input/misc/da72??.[ch]
6045 F:      drivers/input/misc/da90??_onkey.c
6046 F:      drivers/input/touchscreen/da9052_tsi.c
6047 F:      drivers/leds/leds-da90??.c
6048 F:      drivers/mfd/da903x.c
6049 F:      drivers/mfd/da90??-*.c
6050 F:      drivers/mfd/da91??-*.c
6051 F:      drivers/pinctrl/pinctrl-da90??.c
6052 F:      drivers/power/supply/da9052-battery.c
6053 F:      drivers/power/supply/da91??-*.c
6054 F:      drivers/regulator/da9???-regulator.[ch]
6055 F:      drivers/regulator/slg51000-regulator.[ch]
6056 F:      drivers/rtc/rtc-da90??.c
6057 F:      drivers/thermal/da90??-thermal.c
6058 F:      drivers/video/backlight/da90??_bl.c
6059 F:      drivers/watchdog/da90??_wdt.c
6060 F:      include/dt-bindings/regulator/dlg,da9*-regulator.h
6061 F:      include/linux/mfd/da903x.h
6062 F:      include/linux/mfd/da9052/
6063 F:      include/linux/mfd/da9055/
6064 F:      include/linux/mfd/da9062/
6065 F:      include/linux/mfd/da9063/
6066 F:      include/linux/mfd/da9150/
6067 F:      include/linux/regulator/da9211.h
6068 F:      include/sound/da[79]*.h
6069 F:      sound/soc/codecs/da[79]*.[ch]
6070
6071 DIAMOND SYSTEMS GPIO-MM GPIO DRIVER
6072 M:      William Breathitt Gray <william.gray@linaro.org>
6073 L:      linux-gpio@vger.kernel.org
6074 S:      Maintained
6075 F:      drivers/gpio/gpio-gpio-mm.c
6076
6077 DIOLAN U2C-12 I2C DRIVER
6078 M:      Guenter Roeck <linux@roeck-us.net>
6079 L:      linux-i2c@vger.kernel.org
6080 S:      Maintained
6081 F:      drivers/i2c/busses/i2c-diolan-u2c.c
6082
6083 DIRECTORY NOTIFICATION (DNOTIFY)
6084 M:      Jan Kara <jack@suse.cz>
6085 R:      Amir Goldstein <amir73il@gmail.com>
6086 L:      linux-fsdevel@vger.kernel.org
6087 S:      Maintained
6088 F:      Documentation/filesystems/dnotify.rst
6089 F:      fs/notify/dnotify/
6090 F:      include/linux/dnotify.h
6091
6092 DISK GEOMETRY AND PARTITION HANDLING
6093 M:      Andries Brouwer <aeb@cwi.nl>
6094 S:      Maintained
6095 W:      http://www.win.tue.nl/~aeb/linux/Large-Disk.html
6096 W:      http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
6097 W:      http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
6098
6099 DISKQUOTA
6100 M:      Jan Kara <jack@suse.com>
6101 S:      Maintained
6102 F:      Documentation/filesystems/quota.rst
6103 F:      fs/quota/
6104 F:      include/linux/quota*.h
6105 F:      include/uapi/linux/quota*.h
6106
6107 DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
6108 M:      Bernie Thompson <bernie@plugable.com>
6109 L:      linux-fbdev@vger.kernel.org
6110 S:      Maintained
6111 W:      http://plugable.com/category/projects/udlfb/
6112 F:      Documentation/fb/udlfb.rst
6113 F:      drivers/video/fbdev/udlfb.c
6114 F:      include/video/udlfb.h
6115
6116 DISTRIBUTED LOCK MANAGER (DLM)
6117 M:      Christine Caulfield <ccaulfie@redhat.com>
6118 M:      David Teigland <teigland@redhat.com>
6119 L:      cluster-devel@redhat.com
6120 S:      Supported
6121 W:      http://sources.redhat.com/cluster/
6122 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/linux-dlm.git
6123 F:      fs/dlm/
6124
6125 DMA BUFFER SHARING FRAMEWORK
6126 M:      Sumit Semwal <sumit.semwal@linaro.org>
6127 M:      Christian König <christian.koenig@amd.com>
6128 L:      linux-media@vger.kernel.org
6129 L:      dri-devel@lists.freedesktop.org
6130 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
6131 S:      Maintained
6132 T:      git git://anongit.freedesktop.org/drm/drm-misc
6133 F:      Documentation/driver-api/dma-buf.rst
6134 F:      drivers/dma-buf/
6135 F:      include/linux/*fence.h
6136 F:      include/linux/dma-buf.h
6137 F:      include/linux/dma-resv.h
6138 K:      \bdma_(?:buf|fence|resv)\b
6139
6140 DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
6141 M:      Vinod Koul <vkoul@kernel.org>
6142 L:      dmaengine@vger.kernel.org
6143 S:      Maintained
6144 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
6145 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vkoul/dmaengine.git
6146 F:      Documentation/devicetree/bindings/dma/
6147 F:      Documentation/driver-api/dmaengine/
6148 F:      drivers/dma/
6149 F:      include/dt-bindings/dma/
6150 F:      include/linux/dma/
6151 F:      include/linux/dmaengine.h
6152 F:      include/linux/of_dma.h
6153
6154 DMA MAPPING HELPERS
6155 M:      Christoph Hellwig <hch@lst.de>
6156 M:      Marek Szyprowski <m.szyprowski@samsung.com>
6157 R:      Robin Murphy <robin.murphy@arm.com>
6158 L:      iommu@lists.linux.dev
6159 S:      Supported
6160 W:      http://git.infradead.org/users/hch/dma-mapping.git
6161 T:      git git://git.infradead.org/users/hch/dma-mapping.git
6162 F:      include/asm-generic/dma-mapping.h
6163 F:      include/linux/dma-direct.h
6164 F:      include/linux/dma-mapping.h
6165 F:      include/linux/dma-map-ops.h
6166 F:      kernel/dma/
6167
6168 DMA MAPPING BENCHMARK
6169 M:      Xiang Chen <chenxiang66@hisilicon.com>
6170 L:      iommu@lists.linux.dev
6171 F:      kernel/dma/map_benchmark.c
6172 F:      tools/testing/selftests/dma/
6173
6174 DMA-BUF HEAPS FRAMEWORK
6175 M:      Sumit Semwal <sumit.semwal@linaro.org>
6176 R:      Benjamin Gaignard <benjamin.gaignard@collabora.com>
6177 R:      Liam Mark <lmark@codeaurora.org>
6178 R:      Laura Abbott <labbott@redhat.com>
6179 R:      Brian Starkey <Brian.Starkey@arm.com>
6180 R:      John Stultz <jstultz@google.com>
6181 L:      linux-media@vger.kernel.org
6182 L:      dri-devel@lists.freedesktop.org
6183 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
6184 S:      Maintained
6185 T:      git git://anongit.freedesktop.org/drm/drm-misc
6186 F:      drivers/dma-buf/dma-heap.c
6187 F:      drivers/dma-buf/heaps/*
6188 F:      include/linux/dma-heap.h
6189 F:      include/uapi/linux/dma-heap.h
6190
6191 DMC FREQUENCY DRIVER FOR SAMSUNG EXYNOS5422
6192 M:      Lukasz Luba <lukasz.luba@arm.com>
6193 L:      linux-pm@vger.kernel.org
6194 L:      linux-samsung-soc@vger.kernel.org
6195 S:      Maintained
6196 F:      Documentation/devicetree/bindings/memory-controllers/samsung,exynos5422-dmc.yaml
6197 F:      drivers/memory/samsung/exynos5422-dmc.c
6198
6199 DME1737 HARDWARE MONITOR DRIVER
6200 M:      Juerg Haefliger <juergh@proton.me>
6201 L:      linux-hwmon@vger.kernel.org
6202 S:      Maintained
6203 F:      Documentation/hwmon/dme1737.rst
6204 F:      drivers/hwmon/dme1737.c
6205
6206 DMI/SMBIOS SUPPORT
6207 M:      Jean Delvare <jdelvare@suse.com>
6208 S:      Maintained
6209 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jdelvare/staging.git dmi-for-next
6210 F:      Documentation/ABI/testing/sysfs-firmware-dmi-tables
6211 F:      drivers/firmware/dmi-id.c
6212 F:      drivers/firmware/dmi_scan.c
6213 F:      include/linux/dmi.h
6214
6215 DOCUMENTATION
6216 M:      Jonathan Corbet <corbet@lwn.net>
6217 L:      linux-doc@vger.kernel.org
6218 S:      Maintained
6219 P:      Documentation/doc-guide/maintainer-profile.rst
6220 T:      git git://git.lwn.net/linux.git docs-next
6221 F:      Documentation/
6222 F:      scripts/documentation-file-ref-check
6223 F:      scripts/kernel-doc
6224 F:      scripts/sphinx-pre-install
6225 X:      Documentation/ABI/
6226 X:      Documentation/admin-guide/media/
6227 X:      Documentation/devicetree/
6228 X:      Documentation/driver-api/media/
6229 X:      Documentation/firmware-guide/acpi/
6230 X:      Documentation/i2c/
6231 X:      Documentation/power/
6232 X:      Documentation/spi/
6233 X:      Documentation/userspace-api/media/
6234
6235 DOCUMENTATION REPORTING ISSUES
6236 M:      Thorsten Leemhuis <linux@leemhuis.info>
6237 L:      linux-doc@vger.kernel.org
6238 S:      Maintained
6239 F:      Documentation/admin-guide/reporting-issues.rst
6240
6241 DOCUMENTATION SCRIPTS
6242 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6243 L:      linux-doc@vger.kernel.org
6244 S:      Maintained
6245 F:      Documentation/sphinx/parse-headers.pl
6246 F:      scripts/documentation-file-ref-check
6247 F:      scripts/sphinx-pre-install
6248
6249 DOCUMENTATION/ITALIAN
6250 M:      Federico Vaga <federico.vaga@vaga.pv.it>
6251 L:      linux-doc@vger.kernel.org
6252 S:      Maintained
6253 F:      Documentation/translations/it_IT
6254
6255 DOCUMENTATION/JAPANESE
6256 R:      Akira Yokosawa <akiyks@gmail.com>
6257 L:      linux-doc@vger.kernel.org
6258 S:      Maintained
6259 F:      Documentation/translations/ja_JP
6260
6261 DONGWOON DW9714 LENS VOICE COIL DRIVER
6262 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
6263 L:      linux-media@vger.kernel.org
6264 S:      Maintained
6265 T:      git git://linuxtv.org/media_tree.git
6266 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9714.txt
6267 F:      drivers/media/i2c/dw9714.c
6268
6269 DONGWOON DW9768 LENS VOICE COIL DRIVER
6270 M:      Dongchun Zhu <dongchun.zhu@mediatek.com>
6271 L:      linux-media@vger.kernel.org
6272 S:      Maintained
6273 T:      git git://linuxtv.org/media_tree.git
6274 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9768.yaml
6275 F:      drivers/media/i2c/dw9768.c
6276
6277 DONGWOON DW9807 LENS VOICE COIL DRIVER
6278 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
6279 L:      linux-media@vger.kernel.org
6280 S:      Maintained
6281 T:      git git://linuxtv.org/media_tree.git
6282 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9807-vcm.yaml
6283 F:      drivers/media/i2c/dw9807-vcm.c
6284
6285 DOUBLETALK DRIVER
6286 M:      "James R. Van Zandt" <jrv@vanzandt.mv.com>
6287 L:      blinux-list@redhat.com
6288 S:      Maintained
6289 F:      drivers/char/dtlk.c
6290 F:      include/linux/dtlk.h
6291
6292 DPAA2 DATAPATH I/O (DPIO) DRIVER
6293 M:      Roy Pledge <Roy.Pledge@nxp.com>
6294 L:      linux-kernel@vger.kernel.org
6295 S:      Maintained
6296 F:      drivers/soc/fsl/dpio
6297
6298 DPAA2 ETHERNET DRIVER
6299 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
6300 L:      netdev@vger.kernel.org
6301 S:      Maintained
6302 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/ethernet-driver.rst
6303 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/mac-phy-support.rst
6304 F:      drivers/net/ethernet/freescale/dpaa2/Kconfig
6305 F:      drivers/net/ethernet/freescale/dpaa2/Makefile
6306 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-eth*
6307 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-mac*
6308 F:      drivers/net/ethernet/freescale/dpaa2/dpkg.h
6309 F:      drivers/net/ethernet/freescale/dpaa2/dpmac*
6310 F:      drivers/net/ethernet/freescale/dpaa2/dpni*
6311
6312 DPAA2 ETHERNET SWITCH DRIVER
6313 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
6314 L:      netdev@vger.kernel.org
6315 S:      Maintained
6316 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/switch-driver.rst
6317 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-switch*
6318 F:      drivers/net/ethernet/freescale/dpaa2/dpsw*
6319
6320 DRBD DRIVER
6321 M:      Philipp Reisner <philipp.reisner@linbit.com>
6322 M:      Lars Ellenberg <lars.ellenberg@linbit.com>
6323 M:      Christoph Böhmwalder <christoph.boehmwalder@linbit.com>
6324 L:      drbd-dev@lists.linbit.com
6325 S:      Supported
6326 W:      http://www.drbd.org
6327 T:      git git://git.linbit.com/linux-drbd.git
6328 T:      git git://git.linbit.com/drbd-8.4.git
6329 F:      Documentation/admin-guide/blockdev/
6330 F:      drivers/block/drbd/
6331 F:      lib/lru_cache.c
6332
6333 DRIVER COMPONENT FRAMEWORK
6334 L:      dri-devel@lists.freedesktop.org
6335 F:      drivers/base/component.c
6336 F:      include/linux/component.h
6337
6338 DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS
6339 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
6340 R:      "Rafael J. Wysocki" <rafael@kernel.org>
6341 S:      Supported
6342 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
6343 F:      Documentation/core-api/kobject.rst
6344 F:      drivers/base/
6345 F:      fs/debugfs/
6346 F:      fs/sysfs/
6347 F:      include/linux/debugfs.h
6348 F:      include/linux/kobj*
6349 F:      lib/kobj*
6350
6351 DRIVERS FOR OMAP ADAPTIVE VOLTAGE SCALING (AVS)
6352 M:      Nishanth Menon <nm@ti.com>
6353 L:      linux-pm@vger.kernel.org
6354 S:      Maintained
6355 F:      drivers/soc/ti/smartreflex.c
6356 F:      include/linux/power/smartreflex.h
6357
6358 DRM DRIVER FOR ALLWINNER DE2 AND DE3 ENGINE
6359 M:      Maxime Ripard <mripard@kernel.org>
6360 M:      Chen-Yu Tsai <wens@csie.org>
6361 R:      Jernej Skrabec <jernej.skrabec@gmail.com>
6362 L:      dri-devel@lists.freedesktop.org
6363 S:      Supported
6364 T:      git git://anongit.freedesktop.org/drm/drm-misc
6365 F:      drivers/gpu/drm/sun4i/sun8i*
6366
6367 DRM DRIVER FOR ARM PL111 CLCD
6368 M:      Emma Anholt <emma@anholt.net>
6369 S:      Supported
6370 T:      git git://anongit.freedesktop.org/drm/drm-misc
6371 F:      drivers/gpu/drm/pl111/
6372
6373 DRM DRIVER FOR ARM VERSATILE TFT PANELS
6374 M:      Linus Walleij <linus.walleij@linaro.org>
6375 S:      Maintained
6376 T:      git git://anongit.freedesktop.org/drm/drm-misc
6377 F:      Documentation/devicetree/bindings/display/panel/arm,versatile-tft-panel.yaml
6378 F:      drivers/gpu/drm/panel/panel-arm-versatile.c
6379
6380 DRM DRIVER FOR ASPEED BMC GFX
6381 M:      Joel Stanley <joel@jms.id.au>
6382 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
6383 S:      Supported
6384 T:      git git://anongit.freedesktop.org/drm/drm-misc
6385 F:      Documentation/devicetree/bindings/gpu/aspeed-gfx.txt
6386 F:      drivers/gpu/drm/aspeed/
6387
6388 DRM DRIVER FOR AST SERVER GRAPHICS CHIPS
6389 M:      Dave Airlie <airlied@redhat.com>
6390 R:      Thomas Zimmermann <tzimmermann@suse.de>
6391 L:      dri-devel@lists.freedesktop.org
6392 S:      Supported
6393 T:      git git://anongit.freedesktop.org/drm/drm-misc
6394 F:      drivers/gpu/drm/ast/
6395
6396 DRM DRIVER FOR BOCHS VIRTUAL GPU
6397 M:      Gerd Hoffmann <kraxel@redhat.com>
6398 L:      virtualization@lists.linux-foundation.org
6399 S:      Maintained
6400 T:      git git://anongit.freedesktop.org/drm/drm-misc
6401 F:      drivers/gpu/drm/tiny/bochs.c
6402
6403 DRM DRIVER FOR BOE HIMAX8279D PANELS
6404 M:      Jerry Han <hanxu5@huaqin.corp-partner.google.com>
6405 S:      Maintained
6406 F:      Documentation/devicetree/bindings/display/panel/boe,himax8279d.yaml
6407 F:      drivers/gpu/drm/panel/panel-boe-himax8279d.c
6408
6409 DRM DRIVER FOR CHIPONE ICN6211 MIPI-DSI to RGB CONVERTER BRIDGE
6410 M:      Jagan Teki <jagan@amarulasolutions.com>
6411 S:      Maintained
6412 F:      Documentation/devicetree/bindings/display/bridge/chipone,icn6211.yaml
6413 F:      drivers/gpu/drm/bridge/chipone-icn6211.c
6414
6415 DRM DRIVER FOR EBBG FT8719 PANEL
6416 M:      Joel Selvaraj <jo@jsfamily.in>
6417 S:      Maintained
6418 T:      git git://anongit.freedesktop.org/drm/drm-misc
6419 F:      Documentation/devicetree/bindings/display/panel/ebbg,ft8719.yaml
6420 F:      drivers/gpu/drm/panel/panel-ebbg-ft8719.c
6421
6422 DRM DRIVER FOR FARADAY TVE200 TV ENCODER
6423 M:      Linus Walleij <linus.walleij@linaro.org>
6424 S:      Maintained
6425 T:      git git://anongit.freedesktop.org/drm/drm-misc
6426 F:      drivers/gpu/drm/tve200/
6427
6428 DRM DRIVER FOR FEIXIN K101 IM2BA02 MIPI-DSI LCD PANELS
6429 M:      Icenowy Zheng <icenowy@aosc.io>
6430 S:      Maintained
6431 F:      Documentation/devicetree/bindings/display/panel/feixin,k101-im2ba02.yaml
6432 F:      drivers/gpu/drm/panel/panel-feixin-k101-im2ba02.c
6433
6434 DRM DRIVER FOR FEIYANG FY07024DI26A30-D MIPI-DSI LCD PANELS
6435 M:      Jagan Teki <jagan@amarulasolutions.com>
6436 S:      Maintained
6437 F:      Documentation/devicetree/bindings/display/panel/feiyang,fy07024di26a30d.yaml
6438 F:      drivers/gpu/drm/panel/panel-feiyang-fy07024di26a30d.c
6439
6440 DRM DRIVER FOR GENERIC EDP PANELS
6441 R:      Douglas Anderson <dianders@chromium.org>
6442 F:      Documentation/devicetree/bindings/display/panel/panel-edp.yaml
6443 F:      drivers/gpu/drm/panel/panel-edp.c
6444
6445 DRM DRIVER FOR GENERIC USB DISPLAY
6446 M:      Noralf Trønnes <noralf@tronnes.org>
6447 S:      Maintained
6448 W:      https://github.com/notro/gud/wiki
6449 T:      git git://anongit.freedesktop.org/drm/drm-misc
6450 F:      drivers/gpu/drm/gud/
6451 F:      include/drm/gud.h
6452
6453 DRM DRIVER FOR GRAIN MEDIA GM12U320 PROJECTORS
6454 M:      Hans de Goede <hdegoede@redhat.com>
6455 S:      Maintained
6456 T:      git git://anongit.freedesktop.org/drm/drm-misc
6457 F:      drivers/gpu/drm/tiny/gm12u320.c
6458
6459 DRM DRIVER FOR HX8357D PANELS
6460 M:      Emma Anholt <emma@anholt.net>
6461 S:      Maintained
6462 T:      git git://anongit.freedesktop.org/drm/drm-misc
6463 F:      Documentation/devicetree/bindings/display/himax,hx8357d.txt
6464 F:      drivers/gpu/drm/tiny/hx8357d.c
6465
6466 DRM DRIVER FOR ILITEK ILI9225 PANELS
6467 M:      David Lechner <david@lechnology.com>
6468 S:      Maintained
6469 T:      git git://anongit.freedesktop.org/drm/drm-misc
6470 F:      Documentation/devicetree/bindings/display/ilitek,ili9225.txt
6471 F:      drivers/gpu/drm/tiny/ili9225.c
6472
6473 DRM DRIVER FOR ILITEK ILI9486 PANELS
6474 M:      Kamlesh Gurudasani <kamlesh.gurudasani@gmail.com>
6475 S:      Maintained
6476 T:      git git://anongit.freedesktop.org/drm/drm-misc
6477 F:      Documentation/devicetree/bindings/display/ilitek,ili9486.yaml
6478 F:      drivers/gpu/drm/tiny/ili9486.c
6479
6480 DRM DRIVER FOR INTEL I810 VIDEO CARDS
6481 S:      Orphan / Obsolete
6482 F:      drivers/gpu/drm/i810/
6483 F:      include/uapi/drm/i810_drm.h
6484
6485 DRM DRIVER FOR LOGICVC DISPLAY CONTROLLER
6486 M:      Paul Kocialkowski <paul.kocialkowski@bootlin.com>
6487 S:      Supported
6488 T:      git git://anongit.freedesktop.org/drm/drm-misc
6489 F:      drivers/gpu/drm/logicvc/
6490
6491 DRM DRIVER FOR LVDS PANELS
6492 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6493 L:      dri-devel@lists.freedesktop.org
6494 T:      git git://anongit.freedesktop.org/drm/drm-misc
6495 S:      Maintained
6496 F:      drivers/gpu/drm/panel/panel-lvds.c
6497 F:      Documentation/devicetree/bindings/display/lvds.yaml
6498 F:      Documentation/devicetree/bindings/display/panel/panel-lvds.yaml
6499
6500 DRM DRIVER FOR MANTIX MLAF057WE51 PANELS
6501 M:      Guido Günther <agx@sigxcpu.org>
6502 R:      Purism Kernel Team <kernel@puri.sm>
6503 S:      Maintained
6504 F:      Documentation/devicetree/bindings/display/panel/mantix,mlaf057we51-x.yaml
6505 F:      drivers/gpu/drm/panel/panel-mantix-mlaf057we51.c
6506
6507 DRM DRIVER FOR MATROX G200/G400 GRAPHICS CARDS
6508 S:      Orphan / Obsolete
6509 F:      drivers/gpu/drm/mga/
6510 F:      include/uapi/drm/mga_drm.h
6511
6512 DRM DRIVER FOR MGA G200 GRAPHICS CHIPS
6513 M:      Dave Airlie <airlied@redhat.com>
6514 R:      Thomas Zimmermann <tzimmermann@suse.de>
6515 L:      dri-devel@lists.freedesktop.org
6516 S:      Supported
6517 T:      git git://anongit.freedesktop.org/drm/drm-misc
6518 F:      drivers/gpu/drm/mgag200/
6519
6520 DRM DRIVER FOR MI0283QT
6521 M:      Noralf Trønnes <noralf@tronnes.org>
6522 S:      Maintained
6523 T:      git git://anongit.freedesktop.org/drm/drm-misc
6524 F:      Documentation/devicetree/bindings/display/multi-inno,mi0283qt.txt
6525 F:      drivers/gpu/drm/tiny/mi0283qt.c
6526
6527 DRM DRIVER FOR MIPI DBI compatible panels
6528 M:      Noralf Trønnes <noralf@tronnes.org>
6529 S:      Maintained
6530 W:      https://github.com/notro/panel-mipi-dbi/wiki
6531 T:      git git://anongit.freedesktop.org/drm/drm-misc
6532 F:      Documentation/devicetree/bindings/display/panel/panel-mipi-dbi-spi.yaml
6533 F:      drivers/gpu/drm/tiny/panel-mipi-dbi.c
6534
6535 DRM DRIVER FOR MSM ADRENO GPU
6536 M:      Rob Clark <robdclark@gmail.com>
6537 M:      Abhinav Kumar <quic_abhinavk@quicinc.com>
6538 M:      Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
6539 R:      Sean Paul <sean@poorly.run>
6540 L:      linux-arm-msm@vger.kernel.org
6541 L:      dri-devel@lists.freedesktop.org
6542 L:      freedreno@lists.freedesktop.org
6543 S:      Maintained
6544 T:      git https://gitlab.freedesktop.org/drm/msm.git
6545 F:      Documentation/devicetree/bindings/display/msm/
6546 F:      drivers/gpu/drm/msm/
6547 F:      include/uapi/drm/msm_drm.h
6548
6549 DRM DRIVER FOR NOVATEK NT35510 PANELS
6550 M:      Linus Walleij <linus.walleij@linaro.org>
6551 S:      Maintained
6552 T:      git git://anongit.freedesktop.org/drm/drm-misc
6553 F:      Documentation/devicetree/bindings/display/panel/novatek,nt35510.yaml
6554 F:      drivers/gpu/drm/panel/panel-novatek-nt35510.c
6555
6556 DRM DRIVER FOR NOVATEK NT35560 PANELS
6557 M:      Linus Walleij <linus.walleij@linaro.org>
6558 S:      Maintained
6559 T:      git git://anongit.freedesktop.org/drm/drm-misc
6560 F:      Documentation/devicetree/bindings/display/panel/sony,acx424akp.yaml
6561 F:      drivers/gpu/drm/panel/panel-novatek-nt35560.c
6562
6563 DRM DRIVER FOR NOVATEK NT36672A PANELS
6564 M:      Sumit Semwal <sumit.semwal@linaro.org>
6565 S:      Maintained
6566 T:      git git://anongit.freedesktop.org/drm/drm-misc
6567 F:      Documentation/devicetree/bindings/display/panel/novatek,nt36672a.yaml
6568 F:      drivers/gpu/drm/panel/panel-novatek-nt36672a.c
6569
6570 DRM DRIVER FOR NVIDIA GEFORCE/QUADRO GPUS
6571 M:      Ben Skeggs <bskeggs@redhat.com>
6572 M:      Karol Herbst <kherbst@redhat.com>
6573 M:      Lyude Paul <lyude@redhat.com>
6574 L:      dri-devel@lists.freedesktop.org
6575 L:      nouveau@lists.freedesktop.org
6576 S:      Supported
6577 W:      https://nouveau.freedesktop.org/
6578 Q:      https://patchwork.freedesktop.org/project/nouveau/
6579 Q:      https://gitlab.freedesktop.org/drm/nouveau/-/merge_requests
6580 B:      https://gitlab.freedesktop.org/drm/nouveau/-/issues
6581 C:      irc://irc.oftc.net/nouveau
6582 T:      git https://gitlab.freedesktop.org/drm/nouveau.git
6583 F:      drivers/gpu/drm/nouveau/
6584 F:      include/uapi/drm/nouveau_drm.h
6585
6586 DRM DRIVER FOR OLIMEX LCD-OLINUXINO PANELS
6587 M:      Stefan Mavrodiev <stefan@olimex.com>
6588 S:      Maintained
6589 F:      Documentation/devicetree/bindings/display/panel/olimex,lcd-olinuxino.yaml
6590 F:      drivers/gpu/drm/panel/panel-olimex-lcd-olinuxino.c
6591
6592 DRM DRIVER FOR PARADE PS8640 BRIDGE CHIP
6593 R:      Douglas Anderson <dianders@chromium.org>
6594 F:      Documentation/devicetree/bindings/display/bridge/ps8640.yaml
6595 F:      drivers/gpu/drm/bridge/parade-ps8640.c
6596
6597 DRM DRIVER FOR PERVASIVE DISPLAYS REPAPER PANELS
6598 M:      Noralf Trønnes <noralf@tronnes.org>
6599 S:      Maintained
6600 T:      git git://anongit.freedesktop.org/drm/drm-misc
6601 F:      Documentation/devicetree/bindings/display/repaper.txt
6602 F:      drivers/gpu/drm/tiny/repaper.c
6603
6604 DRM DRIVER FOR SOLOMON SSD130X OLED DISPLAYS
6605 M:      Javier Martinez Canillas <javierm@redhat.com>
6606 S:      Maintained
6607 T:      git git://anongit.freedesktop.org/drm/drm-misc
6608 F:      Documentation/devicetree/bindings/display/solomon,ssd1307fb.yaml
6609 F:      drivers/gpu/drm/solomon/ssd130x*
6610
6611 DRM DRIVER FOR QEMU'S CIRRUS DEVICE
6612 M:      Dave Airlie <airlied@redhat.com>
6613 M:      Gerd Hoffmann <kraxel@redhat.com>
6614 L:      virtualization@lists.linux-foundation.org
6615 S:      Obsolete
6616 W:      https://www.kraxel.org/blog/2014/10/qemu-using-cirrus-considered-harmful/
6617 T:      git git://anongit.freedesktop.org/drm/drm-misc
6618 F:      drivers/gpu/drm/tiny/cirrus.c
6619
6620 DRM DRIVER FOR QXL VIRTUAL GPU
6621 M:      Dave Airlie <airlied@redhat.com>
6622 M:      Gerd Hoffmann <kraxel@redhat.com>
6623 L:      virtualization@lists.linux-foundation.org
6624 L:      spice-devel@lists.freedesktop.org
6625 S:      Maintained
6626 T:      git git://anongit.freedesktop.org/drm/drm-misc
6627 F:      drivers/gpu/drm/qxl/
6628 F:      include/uapi/drm/qxl_drm.h
6629
6630 DRM DRIVER FOR RAGE 128 VIDEO CARDS
6631 S:      Orphan / Obsolete
6632 F:      drivers/gpu/drm/r128/
6633 F:      include/uapi/drm/r128_drm.h
6634
6635 DRM DRIVER FOR RAYDIUM RM67191 PANELS
6636 M:      Robert Chiras <robert.chiras@nxp.com>
6637 S:      Maintained
6638 F:      Documentation/devicetree/bindings/display/panel/raydium,rm67191.yaml
6639 F:      drivers/gpu/drm/panel/panel-raydium-rm67191.c
6640
6641 DRM DRIVER FOR SAMSUNG DB7430 PANELS
6642 M:      Linus Walleij <linus.walleij@linaro.org>
6643 S:      Maintained
6644 T:      git git://anongit.freedesktop.org/drm/drm-misc
6645 F:      Documentation/devicetree/bindings/display/panel/samsung,lms397kf04.yaml
6646 F:      drivers/gpu/drm/panel/panel-samsung-db7430.c
6647
6648 DRM DRIVER FOR SAMSUNG S6D27A1 PANELS
6649 M:      Markuss Broks <markuss.broks@gmail.com>
6650 S:      Maintained
6651 F:      Documentation/devicetree/bindings/display/panel/samsung,s6d27a1.yaml
6652 F:      drivers/gpu/drm/panel/panel-samsung-s6d27a1.c
6653
6654 DRM DRIVER FOR SITRONIX ST7703 PANELS
6655 M:      Guido Günther <agx@sigxcpu.org>
6656 R:      Purism Kernel Team <kernel@puri.sm>
6657 R:      Ondrej Jirman <megous@megous.com>
6658 S:      Maintained
6659 F:      Documentation/devicetree/bindings/display/panel/rocktech,jh057n00900.yaml
6660 F:      drivers/gpu/drm/panel/panel-sitronix-st7703.c
6661
6662 DRM DRIVER FOR SAVAGE VIDEO CARDS
6663 S:      Orphan / Obsolete
6664 F:      drivers/gpu/drm/savage/
6665 F:      include/uapi/drm/savage_drm.h
6666
6667 DRM DRIVER FOR FIRMWARE FRAMEBUFFERS
6668 M:      Thomas Zimmermann <tzimmermann@suse.de>
6669 M:      Javier Martinez Canillas <javierm@redhat.com>
6670 L:      dri-devel@lists.freedesktop.org
6671 S:      Maintained
6672 T:      git git://anongit.freedesktop.org/drm/drm-misc
6673 F:      drivers/gpu/drm/drm_aperture.c
6674 F:      drivers/gpu/drm/tiny/simpledrm.c
6675 F:      drivers/video/aperture.c
6676 F:      include/drm/drm_aperture.h
6677 F:      include/linux/aperture.h
6678
6679 DRM DRIVER FOR SIS VIDEO CARDS
6680 S:      Orphan / Obsolete
6681 F:      drivers/gpu/drm/sis/
6682 F:      include/uapi/drm/sis_drm.h
6683
6684 DRM DRIVER FOR SITRONIX ST7586 PANELS
6685 M:      David Lechner <david@lechnology.com>
6686 S:      Maintained
6687 T:      git git://anongit.freedesktop.org/drm/drm-misc
6688 F:      Documentation/devicetree/bindings/display/sitronix,st7586.txt
6689 F:      drivers/gpu/drm/tiny/st7586.c
6690
6691 DRM DRIVER FOR SITRONIX ST7701 PANELS
6692 M:      Jagan Teki <jagan@amarulasolutions.com>
6693 S:      Maintained
6694 F:      Documentation/devicetree/bindings/display/panel/sitronix,st7701.yaml
6695 F:      drivers/gpu/drm/panel/panel-sitronix-st7701.c
6696
6697 DRM DRIVER FOR SITRONIX ST7735R PANELS
6698 M:      David Lechner <david@lechnology.com>
6699 S:      Maintained
6700 T:      git git://anongit.freedesktop.org/drm/drm-misc
6701 F:      Documentation/devicetree/bindings/display/sitronix,st7735r.yaml
6702 F:      drivers/gpu/drm/tiny/st7735r.c
6703
6704 DRM DRIVER FOR ST-ERICSSON MCDE
6705 M:      Linus Walleij <linus.walleij@linaro.org>
6706 S:      Maintained
6707 T:      git git://anongit.freedesktop.org/drm/drm-misc
6708 F:      Documentation/devicetree/bindings/display/ste,mcde.yaml
6709 F:      drivers/gpu/drm/mcde/
6710
6711 DRM DRIVER FOR TDFX VIDEO CARDS
6712 S:      Orphan / Obsolete
6713 F:      drivers/gpu/drm/tdfx/
6714
6715 DRM DRIVER FOR TI DLPC3433 MIPI DSI TO DMD BRIDGE
6716 M:      Jagan Teki <jagan@amarulasolutions.com>
6717 S:      Maintained
6718 F:      Documentation/devicetree/bindings/display/bridge/ti,dlpc3433.yaml
6719 F:      drivers/gpu/drm/bridge/ti-dlpc3433.c
6720
6721 DRM DRIVER FOR TI SN65DSI86 BRIDGE CHIP
6722 R:      Douglas Anderson <dianders@chromium.org>
6723 F:      Documentation/devicetree/bindings/display/bridge/ti,sn65dsi86.yaml
6724 F:      drivers/gpu/drm/bridge/ti-sn65dsi86.c
6725
6726 DRM DRIVER FOR TPO TPG110 PANELS
6727 M:      Linus Walleij <linus.walleij@linaro.org>
6728 S:      Maintained
6729 T:      git git://anongit.freedesktop.org/drm/drm-misc
6730 F:      Documentation/devicetree/bindings/display/panel/tpo,tpg110.yaml
6731 F:      drivers/gpu/drm/panel/panel-tpo-tpg110.c
6732
6733 DRM DRIVER FOR USB DISPLAYLINK VIDEO ADAPTERS
6734 M:      Dave Airlie <airlied@redhat.com>
6735 R:      Sean Paul <sean@poorly.run>
6736 R:      Thomas Zimmermann <tzimmermann@suse.de>
6737 L:      dri-devel@lists.freedesktop.org
6738 S:      Supported
6739 T:      git git://anongit.freedesktop.org/drm/drm-misc
6740 F:      drivers/gpu/drm/udl/
6741
6742 DRM DRIVER FOR VIRTUAL KERNEL MODESETTING (VKMS)
6743 M:      Rodrigo Siqueira <rodrigosiqueiramelo@gmail.com>
6744 M:      Melissa Wen <melissa.srw@gmail.com>
6745 R:      Haneen Mohammed <hamohammed.sa@gmail.com>
6746 R:      Daniel Vetter <daniel@ffwll.ch>
6747 L:      dri-devel@lists.freedesktop.org
6748 S:      Maintained
6749 T:      git git://anongit.freedesktop.org/drm/drm-misc
6750 F:      Documentation/gpu/vkms.rst
6751 F:      drivers/gpu/drm/vkms/
6752
6753 DRM DRIVER FOR VIRTUALBOX VIRTUAL GPU
6754 M:      Hans de Goede <hdegoede@redhat.com>
6755 L:      dri-devel@lists.freedesktop.org
6756 S:      Maintained
6757 T:      git git://anongit.freedesktop.org/drm/drm-misc
6758 F:      drivers/gpu/drm/vboxvideo/
6759
6760 DRM DRIVER FOR VMWARE VIRTUAL GPU
6761 M:      Zack Rusin <zackr@vmware.com>
6762 R:      VMware Graphics Reviewers <linux-graphics-maintainer@vmware.com>
6763 L:      dri-devel@lists.freedesktop.org
6764 S:      Supported
6765 T:      git git://anongit.freedesktop.org/drm/drm-misc
6766 F:      drivers/gpu/drm/vmwgfx/
6767 F:      include/uapi/drm/vmwgfx_drm.h
6768
6769 DRM DRIVER FOR WIDECHIPS WS2401 PANELS
6770 M:      Linus Walleij <linus.walleij@linaro.org>
6771 S:      Maintained
6772 T:      git git://anongit.freedesktop.org/drm/drm-misc
6773 F:      Documentation/devicetree/bindings/display/panel/samsung,lms380kf01.yaml
6774 F:      drivers/gpu/drm/panel/panel-widechips-ws2401.c
6775
6776 DRM DRIVERS
6777 M:      David Airlie <airlied@gmail.com>
6778 M:      Daniel Vetter <daniel@ffwll.ch>
6779 L:      dri-devel@lists.freedesktop.org
6780 S:      Maintained
6781 B:      https://gitlab.freedesktop.org/drm
6782 C:      irc://irc.oftc.net/dri-devel
6783 T:      git git://anongit.freedesktop.org/drm/drm
6784 F:      Documentation/devicetree/bindings/display/
6785 F:      Documentation/devicetree/bindings/gpu/
6786 F:      Documentation/gpu/
6787 F:      drivers/gpu/
6788 F:      include/drm/
6789 F:      include/linux/vga*
6790 F:      include/uapi/drm/
6791
6792 DRM DRIVERS AND MISC GPU PATCHES
6793 M:      Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
6794 M:      Maxime Ripard <mripard@kernel.org>
6795 M:      Thomas Zimmermann <tzimmermann@suse.de>
6796 S:      Maintained
6797 W:      https://01.org/linuxgraphics/gfx-docs/maintainer-tools/drm-misc.html
6798 T:      git git://anongit.freedesktop.org/drm/drm-misc
6799 F:      Documentation/gpu/
6800 F:      drivers/gpu/drm/*
6801 F:      drivers/gpu/vga/
6802 F:      include/drm/drm*
6803 F:      include/linux/vga*
6804 F:      include/uapi/drm/drm*
6805
6806 DRM DRIVERS FOR ALLWINNER A10
6807 M:      Maxime Ripard <mripard@kernel.org>
6808 M:      Chen-Yu Tsai <wens@csie.org>
6809 L:      dri-devel@lists.freedesktop.org
6810 S:      Supported
6811 T:      git git://anongit.freedesktop.org/drm/drm-misc
6812 F:      Documentation/devicetree/bindings/display/allwinner*
6813 F:      drivers/gpu/drm/sun4i/
6814
6815 DRM DRIVERS FOR AMLOGIC SOCS
6816 M:      Neil Armstrong <neil.armstrong@linaro.org>
6817 L:      dri-devel@lists.freedesktop.org
6818 L:      linux-amlogic@lists.infradead.org
6819 S:      Supported
6820 W:      http://linux-meson.com/
6821 T:      git git://anongit.freedesktop.org/drm/drm-misc
6822 F:      Documentation/devicetree/bindings/display/amlogic,meson-dw-hdmi.yaml
6823 F:      Documentation/devicetree/bindings/display/amlogic,meson-vpu.yaml
6824 F:      Documentation/gpu/meson.rst
6825 F:      drivers/gpu/drm/meson/
6826
6827 DRM DRIVERS FOR ATMEL HLCDC
6828 M:      Sam Ravnborg <sam@ravnborg.org>
6829 M:      Boris Brezillon <bbrezillon@kernel.org>
6830 L:      dri-devel@lists.freedesktop.org
6831 S:      Supported
6832 T:      git git://anongit.freedesktop.org/drm/drm-misc
6833 F:      Documentation/devicetree/bindings/display/atmel/
6834 F:      drivers/gpu/drm/atmel-hlcdc/
6835
6836 DRM DRIVERS FOR BRIDGE CHIPS
6837 M:      Andrzej Hajda <andrzej.hajda@intel.com>
6838 M:      Neil Armstrong <neil.armstrong@linaro.org>
6839 M:      Robert Foss <robert.foss@linaro.org>
6840 R:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
6841 R:      Jonas Karlman <jonas@kwiboo.se>
6842 R:      Jernej Skrabec <jernej.skrabec@gmail.com>
6843 S:      Maintained
6844 T:      git git://anongit.freedesktop.org/drm/drm-misc
6845 F:      Documentation/devicetree/bindings/display/bridge/
6846 F:      drivers/gpu/drm/bridge/
6847
6848 DRM DRIVERS FOR EXYNOS
6849 M:      Inki Dae <inki.dae@samsung.com>
6850 M:      Seung-Woo Kim <sw0312.kim@samsung.com>
6851 M:      Kyungmin Park <kyungmin.park@samsung.com>
6852 L:      dri-devel@lists.freedesktop.org
6853 S:      Supported
6854 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
6855 F:      Documentation/devicetree/bindings/display/exynos/
6856 F:      Documentation/devicetree/bindings/display/samsung/
6857 F:      drivers/gpu/drm/exynos/
6858 F:      include/uapi/drm/exynos_drm.h
6859
6860 DRM DRIVERS FOR FREESCALE DCU
6861 M:      Stefan Agner <stefan@agner.ch>
6862 M:      Alison Wang <alison.wang@nxp.com>
6863 L:      dri-devel@lists.freedesktop.org
6864 S:      Supported
6865 T:      git git://anongit.freedesktop.org/drm/drm-misc
6866 F:      Documentation/devicetree/bindings/display/fsl,dcu.txt
6867 F:      Documentation/devicetree/bindings/display/fsl,tcon.txt
6868 F:      drivers/gpu/drm/fsl-dcu/
6869
6870 DRM DRIVERS FOR FREESCALE IMX
6871 M:      Philipp Zabel <p.zabel@pengutronix.de>
6872 L:      dri-devel@lists.freedesktop.org
6873 S:      Maintained
6874 F:      Documentation/devicetree/bindings/display/imx/
6875 F:      drivers/gpu/drm/imx/
6876 F:      drivers/gpu/ipu-v3/
6877
6878 DRM DRIVERS FOR FREESCALE IMX BRIDGE
6879 M:      Liu Ying <victor.liu@nxp.com>
6880 L:      dri-devel@lists.freedesktop.org
6881 S:      Maintained
6882 F:      Documentation/devicetree/bindings/display/bridge/fsl,imx8qxp-ldb.yaml
6883 F:      Documentation/devicetree/bindings/display/bridge/fsl,imx8qxp-pixel-combiner.yaml
6884 F:      Documentation/devicetree/bindings/display/bridge/fsl,imx8qxp-pixel-link.yaml
6885 F:      Documentation/devicetree/bindings/display/bridge/fsl,imx8qxp-pxl2dpi.yaml
6886 F:      drivers/gpu/drm/bridge/imx/
6887
6888 DRM DRIVERS FOR GMA500 (Poulsbo, Moorestown and derivative chipsets)
6889 M:      Patrik Jakobsson <patrik.r.jakobsson@gmail.com>
6890 L:      dri-devel@lists.freedesktop.org
6891 S:      Maintained
6892 T:      git git://github.com/patjak/drm-gma500
6893 F:      drivers/gpu/drm/gma500/
6894
6895 DRM DRIVERS FOR HISILICON
6896 M:      Xinliang Liu <xinliang.liu@linaro.org>
6897 M:      Tian Tao  <tiantao6@hisilicon.com>
6898 R:      John Stultz <jstultz@google.com>
6899 R:      Xinwei Kong <kong.kongxinwei@hisilicon.com>
6900 R:      Chen Feng <puck.chen@hisilicon.com>
6901 L:      dri-devel@lists.freedesktop.org
6902 S:      Maintained
6903 T:      git git://anongit.freedesktop.org/drm/drm-misc
6904 F:      Documentation/devicetree/bindings/display/hisilicon/
6905 F:      drivers/gpu/drm/hisilicon/
6906
6907 DRM DRIVER FOR HYPERV SYNTHETIC VIDEO DEVICE
6908 M:      Deepak Rawat <drawat.floss@gmail.com>
6909 L:      linux-hyperv@vger.kernel.org
6910 L:      dri-devel@lists.freedesktop.org
6911 S:      Maintained
6912 T:      git git://anongit.freedesktop.org/drm/drm-misc
6913 F:      drivers/gpu/drm/hyperv
6914
6915 DRM DRIVERS FOR LIMA
6916 M:      Qiang Yu <yuq825@gmail.com>
6917 L:      dri-devel@lists.freedesktop.org
6918 L:      lima@lists.freedesktop.org (moderated for non-subscribers)
6919 S:      Maintained
6920 T:      git git://anongit.freedesktop.org/drm/drm-misc
6921 F:      drivers/gpu/drm/lima/
6922 F:      include/uapi/drm/lima_drm.h
6923
6924 DRM DRIVERS FOR MEDIATEK
6925 M:      Chun-Kuang Hu <chunkuang.hu@kernel.org>
6926 M:      Philipp Zabel <p.zabel@pengutronix.de>
6927 L:      dri-devel@lists.freedesktop.org
6928 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
6929 S:      Supported
6930 F:      Documentation/devicetree/bindings/display/mediatek/
6931 F:      drivers/gpu/drm/mediatek/
6932 F:      drivers/phy/mediatek/phy-mtk-dp.c
6933 F:      drivers/phy/mediatek/phy-mtk-hdmi*
6934 F:      drivers/phy/mediatek/phy-mtk-mipi*
6935
6936 DRM DRIVERS FOR NVIDIA TEGRA
6937 M:      Thierry Reding <thierry.reding@gmail.com>
6938 L:      dri-devel@lists.freedesktop.org
6939 L:      linux-tegra@vger.kernel.org
6940 S:      Supported
6941 T:      git git://anongit.freedesktop.org/tegra/linux.git
6942 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.yaml
6943 F:      Documentation/devicetree/bindings/gpu/host1x/
6944 F:      drivers/gpu/drm/tegra/
6945 F:      drivers/gpu/host1x/
6946 F:      include/linux/host1x.h
6947 F:      include/uapi/drm/tegra_drm.h
6948
6949 DRM DRIVERS FOR RENESAS
6950 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6951 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
6952 L:      dri-devel@lists.freedesktop.org
6953 L:      linux-renesas-soc@vger.kernel.org
6954 S:      Supported
6955 T:      git git://linuxtv.org/pinchartl/media drm/du/next
6956 F:      Documentation/devicetree/bindings/display/bridge/renesas,dsi-csi2-tx.yaml
6957 F:      Documentation/devicetree/bindings/display/bridge/renesas,dw-hdmi.yaml
6958 F:      Documentation/devicetree/bindings/display/bridge/renesas,lvds.yaml
6959 F:      Documentation/devicetree/bindings/display/renesas,du.yaml
6960 F:      drivers/gpu/drm/rcar-du/
6961 F:      drivers/gpu/drm/shmobile/
6962 F:      include/linux/platform_data/shmob_drm.h
6963
6964 DRM DRIVERS FOR ROCKCHIP
6965 M:      Sandy Huang <hjc@rock-chips.com>
6966 M:      Heiko Stübner <heiko@sntech.de>
6967 L:      dri-devel@lists.freedesktop.org
6968 S:      Maintained
6969 T:      git git://anongit.freedesktop.org/drm/drm-misc
6970 F:      Documentation/devicetree/bindings/display/rockchip/
6971 F:      drivers/gpu/drm/rockchip/
6972
6973 DRM DRIVERS FOR STI
6974 M:      Alain Volmat <alain.volmat@foss.st.com>
6975 L:      dri-devel@lists.freedesktop.org
6976 S:      Maintained
6977 T:      git git://anongit.freedesktop.org/drm/drm-misc
6978 F:      Documentation/devicetree/bindings/display/st,stih4xx.txt
6979 F:      drivers/gpu/drm/sti
6980
6981 DRM DRIVERS FOR STM
6982 M:      Yannick Fertre <yannick.fertre@foss.st.com>
6983 M:      Raphael Gallais-Pou <raphael.gallais-pou@foss.st.com>
6984 M:      Philippe Cornu <philippe.cornu@foss.st.com>
6985 L:      dri-devel@lists.freedesktop.org
6986 S:      Maintained
6987 T:      git git://anongit.freedesktop.org/drm/drm-misc
6988 F:      Documentation/devicetree/bindings/display/st,stm32-ltdc.yaml
6989 F:      drivers/gpu/drm/stm
6990
6991 DRM DRIVERS FOR TI KEYSTONE
6992 M:      Jyri Sarha <jyri.sarha@iki.fi>
6993 M:      Tomi Valkeinen <tomba@kernel.org>
6994 L:      dri-devel@lists.freedesktop.org
6995 S:      Maintained
6996 T:      git git://anongit.freedesktop.org/drm/drm-misc
6997 F:      Documentation/devicetree/bindings/display/ti/ti,am65x-dss.yaml
6998 F:      Documentation/devicetree/bindings/display/ti/ti,j721e-dss.yaml
6999 F:      Documentation/devicetree/bindings/display/ti/ti,k2g-dss.yaml
7000 F:      drivers/gpu/drm/tidss/
7001
7002 DRM DRIVERS FOR TI LCDC
7003 M:      Jyri Sarha <jyri.sarha@iki.fi>
7004 R:      Tomi Valkeinen <tomba@kernel.org>
7005 L:      dri-devel@lists.freedesktop.org
7006 S:      Maintained
7007 F:      Documentation/devicetree/bindings/display/tilcdc/
7008 F:      drivers/gpu/drm/tilcdc/
7009
7010 DRM DRIVERS FOR TI OMAP
7011 M:      Tomi Valkeinen <tomba@kernel.org>
7012 L:      dri-devel@lists.freedesktop.org
7013 S:      Maintained
7014 F:      Documentation/devicetree/bindings/display/ti/
7015 F:      drivers/gpu/drm/omapdrm/
7016
7017 DRM DRIVERS FOR V3D
7018 M:      Emma Anholt <emma@anholt.net>
7019 M:      Melissa Wen <mwen@igalia.com>
7020 S:      Supported
7021 T:      git git://anongit.freedesktop.org/drm/drm-misc
7022 F:      Documentation/devicetree/bindings/gpu/brcm,bcm-v3d.yaml
7023 F:      drivers/gpu/drm/v3d/
7024 F:      include/uapi/drm/v3d_drm.h
7025
7026 DRM DRIVERS FOR VC4
7027 M:      Emma Anholt <emma@anholt.net>
7028 M:      Maxime Ripard <mripard@kernel.org>
7029 S:      Supported
7030 T:      git git://github.com/anholt/linux
7031 T:      git git://anongit.freedesktop.org/drm/drm-misc
7032 F:      Documentation/devicetree/bindings/display/brcm,bcm2835-*.yaml
7033 F:      drivers/gpu/drm/vc4/
7034 F:      include/uapi/drm/vc4_drm.h
7035
7036 DRM DRIVERS FOR VIVANTE GPU IP
7037 M:      Lucas Stach <l.stach@pengutronix.de>
7038 R:      Russell King <linux+etnaviv@armlinux.org.uk>
7039 R:      Christian Gmeiner <christian.gmeiner@gmail.com>
7040 L:      etnaviv@lists.freedesktop.org (moderated for non-subscribers)
7041 L:      dri-devel@lists.freedesktop.org
7042 S:      Maintained
7043 F:      Documentation/devicetree/bindings/gpu/vivante,gc.yaml
7044 F:      drivers/gpu/drm/etnaviv/
7045 F:      include/uapi/drm/etnaviv_drm.h
7046
7047 DRM DRIVERS FOR XEN
7048 M:      Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
7049 L:      dri-devel@lists.freedesktop.org
7050 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
7051 S:      Supported
7052 T:      git git://anongit.freedesktop.org/drm/drm-misc
7053 F:      Documentation/gpu/xen-front.rst
7054 F:      drivers/gpu/drm/xen/
7055
7056 DRM DRIVERS FOR XILINX
7057 M:      Hyun Kwon <hyun.kwon@xilinx.com>
7058 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7059 L:      dri-devel@lists.freedesktop.org
7060 S:      Maintained
7061 T:      git git://anongit.freedesktop.org/drm/drm-misc
7062 F:      Documentation/devicetree/bindings/display/xlnx/
7063 F:      drivers/gpu/drm/xlnx/
7064
7065 DRM PANEL DRIVERS
7066 M:      Thierry Reding <thierry.reding@gmail.com>
7067 R:      Sam Ravnborg <sam@ravnborg.org>
7068 L:      dri-devel@lists.freedesktop.org
7069 S:      Maintained
7070 T:      git git://anongit.freedesktop.org/drm/drm-misc
7071 F:      Documentation/devicetree/bindings/display/panel/
7072 F:      drivers/gpu/drm/drm_panel.c
7073 F:      drivers/gpu/drm/panel/
7074 F:      include/drm/drm_panel.h
7075
7076 DRM PRIVACY-SCREEN CLASS
7077 M:      Hans de Goede <hdegoede@redhat.com>
7078 L:      dri-devel@lists.freedesktop.org
7079 S:      Maintained
7080 T:      git git://anongit.freedesktop.org/drm/drm-misc
7081 F:      drivers/gpu/drm/drm_privacy_screen*
7082 F:      include/drm/drm_privacy_screen*
7083
7084 DRM TTM SUBSYSTEM
7085 M:      Christian Koenig <christian.koenig@amd.com>
7086 M:      Huang Rui <ray.huang@amd.com>
7087 L:      dri-devel@lists.freedesktop.org
7088 S:      Maintained
7089 T:      git git://anongit.freedesktop.org/drm/drm-misc
7090 F:      drivers/gpu/drm/ttm/
7091 F:      include/drm/ttm/
7092
7093 DRM GPU SCHEDULER
7094 M:      Andrey Grodzovsky <andrey.grodzovsky@amd.com>
7095 L:      dri-devel@lists.freedesktop.org
7096 S:      Maintained
7097 T:      git git://anongit.freedesktop.org/drm/drm-misc
7098 F:      drivers/gpu/drm/scheduler/
7099 F:      include/drm/gpu_scheduler.h
7100
7101 DSBR100 USB FM RADIO DRIVER
7102 M:      Alexey Klimov <klimov.linux@gmail.com>
7103 L:      linux-media@vger.kernel.org
7104 S:      Maintained
7105 T:      git git://linuxtv.org/media_tree.git
7106 F:      drivers/media/radio/dsbr100.c
7107
7108 DT3155 MEDIA DRIVER
7109 M:      Hans Verkuil <hverkuil@xs4all.nl>
7110 L:      linux-media@vger.kernel.org
7111 S:      Odd Fixes
7112 W:      https://linuxtv.org
7113 T:      git git://linuxtv.org/media_tree.git
7114 F:      drivers/media/pci/dt3155/
7115
7116 DVB_USB_AF9015 MEDIA DRIVER
7117 M:      Antti Palosaari <crope@iki.fi>
7118 L:      linux-media@vger.kernel.org
7119 S:      Maintained
7120 W:      https://linuxtv.org
7121 W:      http://palosaari.fi/linux/
7122 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7123 T:      git git://linuxtv.org/anttip/media_tree.git
7124 F:      drivers/media/usb/dvb-usb-v2/af9015*
7125
7126 DVB_USB_AF9035 MEDIA DRIVER
7127 M:      Antti Palosaari <crope@iki.fi>
7128 L:      linux-media@vger.kernel.org
7129 S:      Maintained
7130 W:      https://linuxtv.org
7131 W:      http://palosaari.fi/linux/
7132 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7133 T:      git git://linuxtv.org/anttip/media_tree.git
7134 F:      drivers/media/usb/dvb-usb-v2/af9035*
7135
7136 DVB_USB_ANYSEE MEDIA DRIVER
7137 M:      Antti Palosaari <crope@iki.fi>
7138 L:      linux-media@vger.kernel.org
7139 S:      Maintained
7140 W:      https://linuxtv.org
7141 W:      http://palosaari.fi/linux/
7142 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7143 T:      git git://linuxtv.org/anttip/media_tree.git
7144 F:      drivers/media/usb/dvb-usb-v2/anysee*
7145
7146 DVB_USB_AU6610 MEDIA DRIVER
7147 M:      Antti Palosaari <crope@iki.fi>
7148 L:      linux-media@vger.kernel.org
7149 S:      Maintained
7150 W:      https://linuxtv.org
7151 W:      http://palosaari.fi/linux/
7152 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7153 T:      git git://linuxtv.org/anttip/media_tree.git
7154 F:      drivers/media/usb/dvb-usb-v2/au6610*
7155
7156 DVB_USB_CE6230 MEDIA DRIVER
7157 M:      Antti Palosaari <crope@iki.fi>
7158 L:      linux-media@vger.kernel.org
7159 S:      Maintained
7160 W:      https://linuxtv.org
7161 W:      http://palosaari.fi/linux/
7162 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7163 T:      git git://linuxtv.org/anttip/media_tree.git
7164 F:      drivers/media/usb/dvb-usb-v2/ce6230*
7165
7166 DVB_USB_CXUSB MEDIA DRIVER
7167 M:      Michael Krufky <mkrufky@linuxtv.org>
7168 L:      linux-media@vger.kernel.org
7169 S:      Maintained
7170 W:      https://linuxtv.org
7171 W:      http://github.com/mkrufky
7172 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7173 T:      git git://linuxtv.org/media_tree.git
7174 F:      drivers/media/usb/dvb-usb/cxusb*
7175
7176 DVB_USB_EC168 MEDIA DRIVER
7177 M:      Antti Palosaari <crope@iki.fi>
7178 L:      linux-media@vger.kernel.org
7179 S:      Maintained
7180 W:      https://linuxtv.org
7181 W:      http://palosaari.fi/linux/
7182 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7183 T:      git git://linuxtv.org/anttip/media_tree.git
7184 F:      drivers/media/usb/dvb-usb-v2/ec168*
7185
7186 DVB_USB_GL861 MEDIA DRIVER
7187 M:      Antti Palosaari <crope@iki.fi>
7188 L:      linux-media@vger.kernel.org
7189 S:      Maintained
7190 W:      https://linuxtv.org
7191 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7192 T:      git git://linuxtv.org/anttip/media_tree.git
7193 F:      drivers/media/usb/dvb-usb-v2/gl861*
7194
7195 DVB_USB_MXL111SF MEDIA DRIVER
7196 M:      Michael Krufky <mkrufky@linuxtv.org>
7197 L:      linux-media@vger.kernel.org
7198 S:      Maintained
7199 W:      https://linuxtv.org
7200 W:      http://github.com/mkrufky
7201 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7202 T:      git git://linuxtv.org/mkrufky/mxl111sf.git
7203 F:      drivers/media/usb/dvb-usb-v2/mxl111sf*
7204
7205 DVB_USB_RTL28XXU MEDIA DRIVER
7206 M:      Antti Palosaari <crope@iki.fi>
7207 L:      linux-media@vger.kernel.org
7208 S:      Maintained
7209 W:      https://linuxtv.org
7210 W:      http://palosaari.fi/linux/
7211 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7212 T:      git git://linuxtv.org/anttip/media_tree.git
7213 F:      drivers/media/usb/dvb-usb-v2/rtl28xxu*
7214
7215 DVB_USB_V2 MEDIA DRIVER
7216 M:      Antti Palosaari <crope@iki.fi>
7217 L:      linux-media@vger.kernel.org
7218 S:      Maintained
7219 W:      https://linuxtv.org
7220 W:      http://palosaari.fi/linux/
7221 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7222 T:      git git://linuxtv.org/anttip/media_tree.git
7223 F:      drivers/media/usb/dvb-usb-v2/dvb_usb*
7224 F:      drivers/media/usb/dvb-usb-v2/usb_urb.c
7225
7226 DYNAMIC DEBUG
7227 M:      Jason Baron <jbaron@akamai.com>
7228 S:      Maintained
7229 F:      include/linux/dynamic_debug.h
7230 F:      lib/dynamic_debug.c
7231
7232 DYNAMIC INTERRUPT MODERATION
7233 M:      Tal Gilboa <talgi@nvidia.com>
7234 S:      Maintained
7235 F:      Documentation/networking/net_dim.rst
7236 F:      include/linux/dim.h
7237 F:      lib/dim/
7238
7239 DZ DECSTATION DZ11 SERIAL DRIVER
7240 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
7241 S:      Maintained
7242 F:      drivers/tty/serial/dz.*
7243
7244 E3X0 POWER BUTTON DRIVER
7245 M:      Moritz Fischer <moritz.fischer@ettus.com>
7246 L:      usrp-users@lists.ettus.com
7247 S:      Supported
7248 W:      http://www.ettus.com
7249 F:      Documentation/devicetree/bindings/input/e3x0-button.txt
7250 F:      drivers/input/misc/e3x0-button.c
7251
7252 E4000 MEDIA DRIVER
7253 M:      Antti Palosaari <crope@iki.fi>
7254 L:      linux-media@vger.kernel.org
7255 S:      Maintained
7256 W:      https://linuxtv.org
7257 W:      http://palosaari.fi/linux/
7258 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7259 T:      git git://linuxtv.org/anttip/media_tree.git
7260 F:      drivers/media/tuners/e4000*
7261
7262 EARTH_PT1 MEDIA DRIVER
7263 M:      Akihiro Tsukada <tskd08@gmail.com>
7264 L:      linux-media@vger.kernel.org
7265 S:      Odd Fixes
7266 F:      drivers/media/pci/pt1/
7267
7268 EARTH_PT3 MEDIA DRIVER
7269 M:      Akihiro Tsukada <tskd08@gmail.com>
7270 L:      linux-media@vger.kernel.org
7271 S:      Odd Fixes
7272 F:      drivers/media/pci/pt3/
7273
7274 EC100 MEDIA DRIVER
7275 M:      Antti Palosaari <crope@iki.fi>
7276 L:      linux-media@vger.kernel.org
7277 S:      Maintained
7278 W:      https://linuxtv.org
7279 W:      http://palosaari.fi/linux/
7280 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7281 T:      git git://linuxtv.org/anttip/media_tree.git
7282 F:      drivers/media/dvb-frontends/ec100*
7283
7284 ECRYPT FILE SYSTEM
7285 M:      Tyler Hicks <code@tyhicks.com>
7286 L:      ecryptfs@vger.kernel.org
7287 S:      Odd Fixes
7288 W:      http://ecryptfs.org
7289 W:      https://launchpad.net/ecryptfs
7290 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tyhicks/ecryptfs.git
7291 F:      Documentation/filesystems/ecryptfs.rst
7292 F:      fs/ecryptfs/
7293
7294 EDAC-AMD64
7295 M:      Yazen Ghannam <yazen.ghannam@amd.com>
7296 L:      linux-edac@vger.kernel.org
7297 S:      Supported
7298 F:      drivers/edac/amd64_edac*
7299 F:      drivers/edac/mce_amd*
7300
7301 EDAC-ARMADA
7302 M:      Jan Luebbe <jlu@pengutronix.de>
7303 L:      linux-edac@vger.kernel.org
7304 S:      Maintained
7305 F:      Documentation/devicetree/bindings/memory-controllers/marvell,mvebu-sdram-controller.yaml
7306 F:      drivers/edac/armada_xp_*
7307
7308 EDAC-AST2500
7309 M:      Stefan Schaeckeler <sschaeck@cisco.com>
7310 S:      Supported
7311 F:      Documentation/devicetree/bindings/edac/aspeed-sdram-edac.txt
7312 F:      drivers/edac/aspeed_edac.c
7313
7314 EDAC-BLUEFIELD
7315 M:      Shravan Kumar Ramani <shravankr@nvidia.com>
7316 S:      Supported
7317 F:      drivers/edac/bluefield_edac.c
7318
7319 EDAC-CALXEDA
7320 M:      Andre Przywara <andre.przywara@arm.com>
7321 L:      linux-edac@vger.kernel.org
7322 S:      Maintained
7323 F:      drivers/edac/highbank*
7324
7325 EDAC-CAVIUM OCTEON
7326 M:      Ralf Baechle <ralf@linux-mips.org>
7327 L:      linux-edac@vger.kernel.org
7328 L:      linux-mips@vger.kernel.org
7329 S:      Supported
7330 F:      drivers/edac/octeon_edac*
7331
7332 EDAC-CAVIUM THUNDERX
7333 M:      Robert Richter <rric@kernel.org>
7334 L:      linux-edac@vger.kernel.org
7335 S:      Odd Fixes
7336 F:      drivers/edac/thunderx_edac*
7337
7338 EDAC-CORE
7339 M:      Borislav Petkov <bp@alien8.de>
7340 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
7341 M:      Tony Luck <tony.luck@intel.com>
7342 R:      James Morse <james.morse@arm.com>
7343 R:      Robert Richter <rric@kernel.org>
7344 L:      linux-edac@vger.kernel.org
7345 S:      Supported
7346 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ras/ras.git edac-for-next
7347 F:      Documentation/admin-guide/ras.rst
7348 F:      Documentation/driver-api/edac.rst
7349 F:      drivers/edac/
7350 F:      include/linux/edac.h
7351
7352 EDAC-DMC520
7353 M:      Lei Wang <lewan@microsoft.com>
7354 L:      linux-edac@vger.kernel.org
7355 S:      Supported
7356 F:      drivers/edac/dmc520_edac.c
7357
7358 EDAC-E752X
7359 M:      Mark Gross <markgross@kernel.org>
7360 L:      linux-edac@vger.kernel.org
7361 S:      Maintained
7362 F:      drivers/edac/e752x_edac.c
7363
7364 EDAC-E7XXX
7365 L:      linux-edac@vger.kernel.org
7366 S:      Maintained
7367 F:      drivers/edac/e7xxx_edac.c
7368
7369 EDAC-FSL_DDR
7370 M:      York Sun <york.sun@nxp.com>
7371 L:      linux-edac@vger.kernel.org
7372 S:      Maintained
7373 F:      drivers/edac/fsl_ddr_edac.*
7374
7375 EDAC-GHES
7376 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
7377 L:      linux-edac@vger.kernel.org
7378 S:      Maintained
7379 F:      drivers/edac/ghes_edac.c
7380
7381 EDAC-I10NM
7382 M:      Tony Luck <tony.luck@intel.com>
7383 L:      linux-edac@vger.kernel.org
7384 S:      Maintained
7385 F:      drivers/edac/i10nm_base.c
7386
7387 EDAC-I3000
7388 L:      linux-edac@vger.kernel.org
7389 S:      Orphan
7390 F:      drivers/edac/i3000_edac.c
7391
7392 EDAC-I5000
7393 L:      linux-edac@vger.kernel.org
7394 S:      Maintained
7395 F:      drivers/edac/i5000_edac.c
7396
7397 EDAC-I5400
7398 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
7399 L:      linux-edac@vger.kernel.org
7400 S:      Maintained
7401 F:      drivers/edac/i5400_edac.c
7402
7403 EDAC-I7300
7404 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
7405 L:      linux-edac@vger.kernel.org
7406 S:      Maintained
7407 F:      drivers/edac/i7300_edac.c
7408
7409 EDAC-I7CORE
7410 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
7411 L:      linux-edac@vger.kernel.org
7412 S:      Maintained
7413 F:      drivers/edac/i7core_edac.c
7414
7415 EDAC-I82443BXGX
7416 M:      Tim Small <tim@buttersideup.com>
7417 L:      linux-edac@vger.kernel.org
7418 S:      Maintained
7419 F:      drivers/edac/i82443bxgx_edac.c
7420
7421 EDAC-I82975X
7422 M:      "Arvind R." <arvino55@gmail.com>
7423 L:      linux-edac@vger.kernel.org
7424 S:      Maintained
7425 F:      drivers/edac/i82975x_edac.c
7426
7427 EDAC-IE31200
7428 M:      Jason Baron <jbaron@akamai.com>
7429 L:      linux-edac@vger.kernel.org
7430 S:      Maintained
7431 F:      drivers/edac/ie31200_edac.c
7432
7433 EDAC-IGEN6
7434 M:      Tony Luck <tony.luck@intel.com>
7435 R:      Qiuxu Zhuo <qiuxu.zhuo@intel.com>
7436 L:      linux-edac@vger.kernel.org
7437 S:      Maintained
7438 F:      drivers/edac/igen6_edac.c
7439
7440 EDAC-MPC85XX
7441 M:      Johannes Thumshirn <morbidrsa@gmail.com>
7442 L:      linux-edac@vger.kernel.org
7443 S:      Maintained
7444 F:      drivers/edac/mpc85xx_edac.[ch]
7445
7446 EDAC-PASEMI
7447 M:      Egor Martovetsky <egor@pasemi.com>
7448 L:      linux-edac@vger.kernel.org
7449 S:      Maintained
7450 F:      drivers/edac/pasemi_edac.c
7451
7452 EDAC-PND2
7453 M:      Tony Luck <tony.luck@intel.com>
7454 L:      linux-edac@vger.kernel.org
7455 S:      Maintained
7456 F:      drivers/edac/pnd2_edac.[ch]
7457
7458 EDAC-QCOM
7459 M:      Channagoud Kadabi <ckadabi@codeaurora.org>
7460 M:      Venkata Narendra Kumar Gutta <vnkgutta@codeaurora.org>
7461 L:      linux-arm-msm@vger.kernel.org
7462 L:      linux-edac@vger.kernel.org
7463 S:      Maintained
7464 F:      drivers/edac/qcom_edac.c
7465
7466 EDAC-R82600
7467 M:      Tim Small <tim@buttersideup.com>
7468 L:      linux-edac@vger.kernel.org
7469 S:      Maintained
7470 F:      drivers/edac/r82600_edac.c
7471
7472 EDAC-SBRIDGE
7473 M:      Tony Luck <tony.luck@intel.com>
7474 R:      Qiuxu Zhuo <qiuxu.zhuo@intel.com>
7475 L:      linux-edac@vger.kernel.org
7476 S:      Maintained
7477 F:      drivers/edac/sb_edac.c
7478
7479 EDAC-SKYLAKE
7480 M:      Tony Luck <tony.luck@intel.com>
7481 L:      linux-edac@vger.kernel.org
7482 S:      Maintained
7483 F:      drivers/edac/skx_*.[ch]
7484
7485 EDAC-TI
7486 M:      Tero Kristo <kristo@kernel.org>
7487 L:      linux-edac@vger.kernel.org
7488 S:      Odd Fixes
7489 F:      drivers/edac/ti_edac.c
7490
7491 EDIROL UA-101/UA-1000 DRIVER
7492 M:      Clemens Ladisch <clemens@ladisch.de>
7493 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7494 S:      Maintained
7495 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
7496 F:      sound/usb/misc/ua101.c
7497
7498 EFI TEST DRIVER
7499 M:      Ivan Hu <ivan.hu@canonical.com>
7500 M:      Ard Biesheuvel <ardb@kernel.org>
7501 L:      linux-efi@vger.kernel.org
7502 S:      Maintained
7503 F:      drivers/firmware/efi/test/
7504
7505 EFI VARIABLE FILESYSTEM
7506 M:      Matthew Garrett <matthew.garrett@nebula.com>
7507 M:      Jeremy Kerr <jk@ozlabs.org>
7508 M:      Ard Biesheuvel <ardb@kernel.org>
7509 L:      linux-efi@vger.kernel.org
7510 S:      Maintained
7511 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
7512 F:      fs/efivarfs/
7513
7514 EFIFB FRAMEBUFFER DRIVER
7515 M:      Peter Jones <pjones@redhat.com>
7516 L:      linux-fbdev@vger.kernel.org
7517 S:      Maintained
7518 F:      drivers/video/fbdev/efifb.c
7519
7520 EFS FILESYSTEM
7521 S:      Orphan
7522 W:      http://aeschi.ch.eu.org/efs/
7523 F:      fs/efs/
7524
7525 EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
7526 M:      Douglas Miller <dougmill@linux.ibm.com>
7527 L:      netdev@vger.kernel.org
7528 S:      Maintained
7529 F:      drivers/net/ethernet/ibm/ehea/
7530
7531 ELM327 CAN NETWORK DRIVER
7532 M:      Max Staudt <max@enpas.org>
7533 L:      linux-can@vger.kernel.org
7534 S:      Maintained
7535 F:      Documentation/networking/device_drivers/can/can327.rst
7536 F:      drivers/net/can/can327.c
7537
7538 EM28XX VIDEO4LINUX DRIVER
7539 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
7540 L:      linux-media@vger.kernel.org
7541 S:      Maintained
7542 W:      https://linuxtv.org
7543 T:      git git://linuxtv.org/media_tree.git
7544 F:      Documentation/admin-guide/media/em28xx*
7545 F:      drivers/media/usb/em28xx/
7546
7547 EMBEDDED LINUX
7548 M:      Olivia Mackall <olivia@selenic.com>
7549 M:      David Woodhouse <dwmw2@infradead.org>
7550 L:      linux-embedded@vger.kernel.org
7551 S:      Maintained
7552
7553 EMMC CMDQ HOST CONTROLLER INTERFACE (CQHCI) DRIVER
7554 M:      Adrian Hunter <adrian.hunter@intel.com>
7555 M:      Ritesh Harjani <riteshh@codeaurora.org>
7556 M:      Asutosh Das <asutoshd@codeaurora.org>
7557 L:      linux-mmc@vger.kernel.org
7558 S:      Supported
7559 F:      drivers/mmc/host/cqhci*
7560
7561 EMULEX 10Gbps iSCSI - OneConnect DRIVER
7562 M:      Ketan Mukadam <ketan.mukadam@broadcom.com>
7563 L:      linux-scsi@vger.kernel.org
7564 S:      Supported
7565 W:      http://www.broadcom.com
7566 F:      drivers/scsi/be2iscsi/
7567
7568 EMULEX 10Gbps NIC BE2, BE3-R, Lancer, Skyhawk-R DRIVER (be2net)
7569 M:      Ajit Khaparde <ajit.khaparde@broadcom.com>
7570 M:      Sriharsha Basavapatna <sriharsha.basavapatna@broadcom.com>
7571 M:      Somnath Kotur <somnath.kotur@broadcom.com>
7572 L:      netdev@vger.kernel.org
7573 S:      Supported
7574 W:      http://www.emulex.com
7575 F:      drivers/net/ethernet/emulex/benet/
7576
7577 EMULEX ONECONNECT ROCE DRIVER
7578 M:      Selvin Xavier <selvin.xavier@broadcom.com>
7579 L:      linux-rdma@vger.kernel.org
7580 S:      Odd Fixes
7581 W:      http://www.broadcom.com
7582 F:      drivers/infiniband/hw/ocrdma/
7583 F:      include/uapi/rdma/ocrdma-abi.h
7584
7585 EMULEX/BROADCOM LPFC FC/FCOE SCSI DRIVER
7586 M:      James Smart <james.smart@broadcom.com>
7587 M:      Dick Kennedy <dick.kennedy@broadcom.com>
7588 L:      linux-scsi@vger.kernel.org
7589 S:      Supported
7590 W:      http://www.broadcom.com
7591 F:      drivers/scsi/lpfc/
7592
7593 EMULEX/BROADCOM EFCT FC/FCOE SCSI TARGET DRIVER
7594 M:      James Smart <james.smart@broadcom.com>
7595 M:      Ram Vegesna <ram.vegesna@broadcom.com>
7596 L:      linux-scsi@vger.kernel.org
7597 L:      target-devel@vger.kernel.org
7598 S:      Supported
7599 W:      http://www.broadcom.com
7600 F:      drivers/scsi/elx/
7601
7602 ENE CB710 FLASH CARD READER DRIVER
7603 M:      Michał Mirosław <mirq-linux@rere.qmqm.pl>
7604 S:      Maintained
7605 F:      drivers/misc/cb710/
7606 F:      drivers/mmc/host/cb710-mmc.*
7607 F:      include/linux/cb710.h
7608
7609 ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
7610 M:      Maxim Levitsky <maximlevitsky@gmail.com>
7611 S:      Maintained
7612 F:      drivers/media/rc/ene_ir.*
7613
7614 EPAPR HYPERVISOR BYTE CHANNEL DEVICE DRIVER
7615 M:      Laurentiu Tudor <laurentiu.tudor@nxp.com>
7616 L:      linuxppc-dev@lists.ozlabs.org
7617 S:      Maintained
7618 F:      drivers/tty/ehv_bytechan.c
7619
7620 EPSON S1D13XXX FRAMEBUFFER DRIVER
7621 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
7622 S:      Maintained
7623 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
7624 F:      drivers/video/fbdev/s1d13xxxfb.c
7625 F:      include/video/s1d13xxxfb.h
7626
7627 EROFS FILE SYSTEM
7628 M:      Gao Xiang <xiang@kernel.org>
7629 M:      Chao Yu <chao@kernel.org>
7630 R:      Yue Hu <huyue2@coolpad.com>
7631 R:      Jeffle Xu <jefflexu@linux.alibaba.com>
7632 L:      linux-erofs@lists.ozlabs.org
7633 S:      Maintained
7634 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs.git
7635 F:      Documentation/filesystems/erofs.rst
7636 F:      fs/erofs/
7637 F:      include/trace/events/erofs.h
7638
7639 ERRSEQ ERROR TRACKING INFRASTRUCTURE
7640 M:      Jeff Layton <jlayton@kernel.org>
7641 S:      Maintained
7642 F:      include/linux/errseq.h
7643 F:      lib/errseq.c
7644
7645 ESD CAN/USB DRIVERS
7646 M:      Frank Jungclaus <frank.jungclaus@esd.eu>
7647 R:      socketcan@esd.eu
7648 L:      linux-can@vger.kernel.org
7649 S:      Maintained
7650 F:      drivers/net/can/usb/esd_usb.c
7651
7652 ET131X NETWORK DRIVER
7653 M:      Mark Einon <mark.einon@gmail.com>
7654 S:      Odd Fixes
7655 F:      drivers/net/ethernet/agere/
7656
7657 ETAS ES58X CAN/USB DRIVER
7658 M:      Vincent Mailhol <mailhol.vincent@wanadoo.fr>
7659 L:      linux-can@vger.kernel.org
7660 S:      Maintained
7661 F:      drivers/net/can/usb/etas_es58x/
7662
7663 ETHERNET BRIDGE
7664 M:      Roopa Prabhu <roopa@nvidia.com>
7665 M:      Nikolay Aleksandrov <razor@blackwall.org>
7666 L:      bridge@lists.linux-foundation.org (moderated for non-subscribers)
7667 L:      netdev@vger.kernel.org
7668 S:      Maintained
7669 W:      http://www.linuxfoundation.org/en/Net:Bridge
7670 F:      include/linux/netfilter_bridge/
7671 F:      net/bridge/
7672
7673 ETHERNET PHY LIBRARY
7674 M:      Andrew Lunn <andrew@lunn.ch>
7675 M:      Heiner Kallweit <hkallweit1@gmail.com>
7676 R:      Russell King <linux@armlinux.org.uk>
7677 L:      netdev@vger.kernel.org
7678 S:      Maintained
7679 F:      Documentation/ABI/testing/sysfs-class-net-phydev
7680 F:      Documentation/devicetree/bindings/net/ethernet-phy.yaml
7681 F:      Documentation/devicetree/bindings/net/mdio*
7682 F:      Documentation/devicetree/bindings/net/qca,ar803x.yaml
7683 F:      Documentation/networking/phy.rst
7684 F:      drivers/net/mdio/
7685 F:      drivers/net/mdio/acpi_mdio.c
7686 F:      drivers/net/mdio/fwnode_mdio.c
7687 F:      drivers/net/mdio/of_mdio.c
7688 F:      drivers/net/pcs/
7689 F:      drivers/net/phy/
7690 F:      include/dt-bindings/net/qca-ar803x.h
7691 F:      include/linux/linkmode.h
7692 F:      include/linux/*mdio*.h
7693 F:      include/linux/mdio/*.h
7694 F:      include/linux/mii.h
7695 F:      include/linux/of_net.h
7696 F:      include/linux/phy.h
7697 F:      include/linux/phy_fixed.h
7698 F:      include/linux/platform_data/mdio-bcm-unimac.h
7699 F:      include/linux/platform_data/mdio-gpio.h
7700 F:      include/trace/events/mdio.h
7701 F:      include/uapi/linux/mdio.h
7702 F:      include/uapi/linux/mii.h
7703 F:      net/core/of_net.c
7704
7705 EXEC & BINFMT API
7706 R:      Eric Biederman <ebiederm@xmission.com>
7707 R:      Kees Cook <keescook@chromium.org>
7708 L:      linux-mm@kvack.org
7709 S:      Supported
7710 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/execve
7711 F:      fs/*binfmt_*.c
7712 F:      fs/exec.c
7713 F:      include/linux/binfmts.h
7714 F:      include/linux/elf.h
7715 F:      include/uapi/linux/binfmts.h
7716 F:      include/uapi/linux/elf.h
7717 F:      tools/testing/selftests/exec/
7718 N:      asm/elf.h
7719 N:      binfmt
7720
7721 EXFAT FILE SYSTEM
7722 M:      Namjae Jeon <linkinjeon@kernel.org>
7723 M:      Sungjong Seo <sj1557.seo@samsung.com>
7724 L:      linux-fsdevel@vger.kernel.org
7725 S:      Maintained
7726 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linkinjeon/exfat.git
7727 F:      fs/exfat/
7728
7729 EXT2 FILE SYSTEM
7730 M:      Jan Kara <jack@suse.com>
7731 L:      linux-ext4@vger.kernel.org
7732 S:      Maintained
7733 F:      Documentation/filesystems/ext2.rst
7734 F:      fs/ext2/
7735 F:      include/linux/ext2*
7736
7737 EXT4 FILE SYSTEM
7738 M:      "Theodore Ts'o" <tytso@mit.edu>
7739 M:      Andreas Dilger <adilger.kernel@dilger.ca>
7740 L:      linux-ext4@vger.kernel.org
7741 S:      Maintained
7742 W:      http://ext4.wiki.kernel.org
7743 Q:      http://patchwork.ozlabs.org/project/linux-ext4/list/
7744 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tytso/ext4.git
7745 F:      Documentation/filesystems/ext4/
7746 F:      fs/ext4/
7747 F:      include/trace/events/ext4.h
7748
7749 Extended Verification Module (EVM)
7750 M:      Mimi Zohar <zohar@linux.ibm.com>
7751 L:      linux-integrity@vger.kernel.org
7752 S:      Supported
7753 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/zohar/linux-integrity.git
7754 F:      security/integrity/evm/
7755 F:      security/integrity/
7756
7757 EXTENSIBLE FIRMWARE INTERFACE (EFI)
7758 M:      Ard Biesheuvel <ardb@kernel.org>
7759 L:      linux-efi@vger.kernel.org
7760 S:      Maintained
7761 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
7762 F:      Documentation/admin-guide/efi-stub.rst
7763 F:      arch/*/include/asm/efi.h
7764 F:      arch/*/kernel/efi.c
7765 F:      arch/arm/boot/compressed/efi-header.S
7766 F:      arch/arm64/kernel/efi-entry.S
7767 F:      arch/x86/platform/efi/
7768 F:      drivers/firmware/efi/
7769 F:      include/linux/efi*.h
7770
7771 EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
7772 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
7773 M:      Chanwoo Choi <cw00.choi@samsung.com>
7774 L:      linux-kernel@vger.kernel.org
7775 S:      Maintained
7776 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git
7777 F:      Documentation/devicetree/bindings/extcon/
7778 F:      Documentation/firmware-guide/acpi/extcon-intel-int3496.rst
7779 F:      drivers/extcon/
7780 F:      include/linux/extcon.h
7781 F:      include/linux/extcon/
7782
7783 EXTRA BOOT CONFIG
7784 M:      Masami Hiramatsu <mhiramat@kernel.org>
7785 S:      Maintained
7786 F:      Documentation/admin-guide/bootconfig.rst
7787 F:      fs/proc/bootconfig.c
7788 F:      include/linux/bootconfig.h
7789 F:      lib/bootconfig-data.S
7790 F:      lib/bootconfig.c
7791 F:      tools/bootconfig/*
7792 F:      tools/bootconfig/scripts/*
7793
7794 EXYNOS DP DRIVER
7795 M:      Jingoo Han <jingoohan1@gmail.com>
7796 L:      dri-devel@lists.freedesktop.org
7797 S:      Maintained
7798 F:      drivers/gpu/drm/exynos/exynos_dp*
7799
7800 EXYNOS SYSMMU (IOMMU) driver
7801 M:      Marek Szyprowski <m.szyprowski@samsung.com>
7802 L:      iommu@lists.linux.dev
7803 S:      Maintained
7804 F:      drivers/iommu/exynos-iommu.c
7805
7806 F2FS FILE SYSTEM
7807 M:      Jaegeuk Kim <jaegeuk@kernel.org>
7808 M:      Chao Yu <chao@kernel.org>
7809 L:      linux-f2fs-devel@lists.sourceforge.net
7810 S:      Maintained
7811 W:      https://f2fs.wiki.kernel.org/
7812 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
7813 F:      Documentation/ABI/testing/sysfs-fs-f2fs
7814 F:      Documentation/filesystems/f2fs.rst
7815 F:      fs/f2fs/
7816 F:      include/linux/f2fs_fs.h
7817 F:      include/trace/events/f2fs.h
7818 F:      include/uapi/linux/f2fs.h
7819
7820 F71805F HARDWARE MONITORING DRIVER
7821 M:      Jean Delvare <jdelvare@suse.com>
7822 L:      linux-hwmon@vger.kernel.org
7823 S:      Maintained
7824 F:      Documentation/hwmon/f71805f.rst
7825 F:      drivers/hwmon/f71805f.c
7826
7827 FADDR2LINE
7828 M:      Josh Poimboeuf <jpoimboe@kernel.org>
7829 S:      Maintained
7830 F:      scripts/faddr2line
7831
7832 FAILOVER MODULE
7833 M:      Sridhar Samudrala <sridhar.samudrala@intel.com>
7834 L:      netdev@vger.kernel.org
7835 S:      Supported
7836 F:      Documentation/networking/failover.rst
7837 F:      include/net/failover.h
7838 F:      net/core/failover.c
7839
7840 FANOTIFY
7841 M:      Jan Kara <jack@suse.cz>
7842 R:      Amir Goldstein <amir73il@gmail.com>
7843 R:      Matthew Bobrowski <repnop@google.com>
7844 L:      linux-fsdevel@vger.kernel.org
7845 S:      Maintained
7846 F:      fs/notify/fanotify/
7847 F:      include/linux/fanotify.h
7848 F:      include/uapi/linux/fanotify.h
7849
7850 FARSYNC SYNCHRONOUS DRIVER
7851 M:      Kevin Curtis <kevin.curtis@farsite.co.uk>
7852 S:      Supported
7853 W:      http://www.farsite.co.uk/
7854 F:      drivers/net/wan/farsync.*
7855
7856 FAULT INJECTION SUPPORT
7857 M:      Akinobu Mita <akinobu.mita@gmail.com>
7858 S:      Supported
7859 F:      Documentation/fault-injection/
7860 F:      lib/fault-inject.c
7861
7862 FBTFT Framebuffer drivers
7863 L:      dri-devel@lists.freedesktop.org
7864 L:      linux-fbdev@vger.kernel.org
7865 S:      Orphan
7866 F:      drivers/staging/fbtft/
7867
7868 FC0011 TUNER DRIVER
7869 M:      Michael Buesch <m@bues.ch>
7870 L:      linux-media@vger.kernel.org
7871 S:      Maintained
7872 F:      drivers/media/tuners/fc0011.c
7873 F:      drivers/media/tuners/fc0011.h
7874
7875 FC2580 MEDIA DRIVER
7876 M:      Antti Palosaari <crope@iki.fi>
7877 L:      linux-media@vger.kernel.org
7878 S:      Maintained
7879 W:      https://linuxtv.org
7880 W:      http://palosaari.fi/linux/
7881 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7882 T:      git git://linuxtv.org/anttip/media_tree.git
7883 F:      drivers/media/tuners/fc2580*
7884
7885 FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
7886 M:      Hannes Reinecke <hare@suse.de>
7887 L:      linux-scsi@vger.kernel.org
7888 S:      Supported
7889 W:      www.Open-FCoE.org
7890 F:      drivers/scsi/fcoe/
7891 F:      drivers/scsi/libfc/
7892 F:      include/scsi/fc/
7893 F:      include/scsi/libfc.h
7894 F:      include/scsi/libfcoe.h
7895 F:      include/uapi/scsi/fc/
7896
7897 FILE LOCKING (flock() and fcntl()/lockf())
7898 M:      Jeff Layton <jlayton@kernel.org>
7899 M:      Chuck Lever <chuck.lever@oracle.com>
7900 L:      linux-fsdevel@vger.kernel.org
7901 S:      Maintained
7902 F:      fs/fcntl.c
7903 F:      fs/locks.c
7904 F:      include/linux/fcntl.h
7905 F:      include/uapi/linux/fcntl.h
7906
7907 FILESYSTEM DIRECT ACCESS (DAX)
7908 M:      Dan Williams <dan.j.williams@intel.com>
7909 R:      Matthew Wilcox <willy@infradead.org>
7910 R:      Jan Kara <jack@suse.cz>
7911 L:      linux-fsdevel@vger.kernel.org
7912 L:      nvdimm@lists.linux.dev
7913 S:      Supported
7914 F:      fs/dax.c
7915 F:      include/linux/dax.h
7916 F:      include/trace/events/fs_dax.h
7917
7918 FILESYSTEMS (VFS and infrastructure)
7919 M:      Alexander Viro <viro@zeniv.linux.org.uk>
7920 L:      linux-fsdevel@vger.kernel.org
7921 S:      Maintained
7922 F:      fs/*
7923 F:      include/linux/fs.h
7924 F:      include/linux/fs_types.h
7925 F:      include/uapi/linux/fs.h
7926 F:      include/uapi/linux/openat2.h
7927
7928 FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
7929 M:      Riku Voipio <riku.voipio@iki.fi>
7930 L:      linux-hwmon@vger.kernel.org
7931 S:      Maintained
7932 F:      drivers/hwmon/f75375s.c
7933 F:      include/linux/f75375s.h
7934
7935 FIREWIRE AUDIO DRIVERS and IEC 61883-1/6 PACKET STREAMING ENGINE
7936 M:      Clemens Ladisch <clemens@ladisch.de>
7937 M:      Takashi Sakamoto <o-takashi@sakamocchi.jp>
7938 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7939 S:      Maintained
7940 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
7941 F:      include/uapi/sound/firewire.h
7942 F:      sound/firewire/
7943
7944 FIREWIRE MEDIA DRIVERS (firedtv)
7945 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
7946 L:      linux-media@vger.kernel.org
7947 L:      linux1394-devel@lists.sourceforge.net
7948 S:      Maintained
7949 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
7950 F:      drivers/media/firewire/
7951
7952 FIREWIRE SBP-2 TARGET
7953 M:      Chris Boot <bootc@bootc.net>
7954 L:      linux-scsi@vger.kernel.org
7955 L:      target-devel@vger.kernel.org
7956 L:      linux1394-devel@lists.sourceforge.net
7957 S:      Maintained
7958 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
7959 F:      drivers/target/sbp/
7960
7961 FIREWIRE SUBSYSTEM
7962 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
7963 L:      linux1394-devel@lists.sourceforge.net
7964 S:      Maintained
7965 W:      http://ieee1394.wiki.kernel.org/
7966 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
7967 F:      drivers/firewire/
7968 F:      include/linux/firewire.h
7969 F:      include/uapi/linux/firewire*.h
7970 F:      tools/firewire/
7971
7972 FIRMWARE FRAMEWORK FOR ARMV8-A
7973 M:      Sudeep Holla <sudeep.holla@arm.com>
7974 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7975 S:      Maintained
7976 F:      drivers/firmware/arm_ffa/
7977 F:      include/linux/arm_ffa.h
7978
7979 FIRMWARE LOADER (request_firmware)
7980 M:      Luis Chamberlain <mcgrof@kernel.org>
7981 M:      Russ Weight <russell.h.weight@intel.com>
7982 L:      linux-kernel@vger.kernel.org
7983 S:      Maintained
7984 F:      Documentation/firmware_class/
7985 F:      drivers/base/firmware_loader/
7986 F:      include/linux/firmware.h
7987
7988 FLEXTIMER FTM-QUADDEC DRIVER
7989 M:      Patrick Havelange <patrick.havelange@essensium.com>
7990 L:      linux-iio@vger.kernel.org
7991 S:      Maintained
7992 F:      Documentation/devicetree/bindings/counter/ftm-quaddec.txt
7993 F:      drivers/counter/ftm-quaddec.c
7994
7995 FLOPPY DRIVER
7996 M:      Denis Efremov <efremov@linux.com>
7997 L:      linux-block@vger.kernel.org
7998 S:      Odd Fixes
7999 F:      drivers/block/floppy.c
8000
8001 FLYSKY FSIA6B RC RECEIVER
8002 M:      Markus Koch <markus@notsyncing.net>
8003 L:      linux-input@vger.kernel.org
8004 S:      Maintained
8005 F:      drivers/input/joystick/fsia6b.c
8006
8007 FOCUSRITE SCARLETT GEN 2/3 MIXER DRIVER
8008 M:      Geoffrey D. Bennett <g@b4.vu>
8009 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
8010 S:      Maintained
8011 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
8012 F:      sound/usb/mixer_scarlett_gen2.c
8013
8014 FORCEDETH GIGABIT ETHERNET DRIVER
8015 M:      Rain River <rain.1986.08.12@gmail.com>
8016 M:      Zhu Yanjun <zyjzyj2000@gmail.com>
8017 L:      netdev@vger.kernel.org
8018 S:      Maintained
8019 F:      drivers/net/ethernet/nvidia/*
8020
8021 FORTIFY_SOURCE
8022 M:      Kees Cook <keescook@chromium.org>
8023 L:      linux-hardening@vger.kernel.org
8024 S:      Supported
8025 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/hardening
8026 F:      include/linux/fortify-string.h
8027 F:      lib/fortify_kunit.c
8028 F:      lib/test_fortify/*
8029 F:      scripts/test_fortify.sh
8030 K:      \b__NO_FORTIFY\b
8031
8032 FPGA DFL DRIVERS
8033 M:      Wu Hao <hao.wu@intel.com>
8034 R:      Tom Rix <trix@redhat.com>
8035 L:      linux-fpga@vger.kernel.org
8036 S:      Maintained
8037 F:      Documentation/ABI/testing/sysfs-bus-dfl*
8038 F:      Documentation/fpga/dfl.rst
8039 F:      drivers/fpga/dfl*
8040 F:      drivers/uio/uio_dfl.c
8041 F:      include/linux/dfl.h
8042 F:      include/uapi/linux/fpga-dfl.h
8043
8044 FPGA MANAGER FRAMEWORK
8045 M:      Moritz Fischer <mdf@kernel.org>
8046 M:      Wu Hao <hao.wu@intel.com>
8047 M:      Xu Yilun <yilun.xu@intel.com>
8048 R:      Tom Rix <trix@redhat.com>
8049 L:      linux-fpga@vger.kernel.org
8050 S:      Maintained
8051 Q:      http://patchwork.kernel.org/project/linux-fpga/list/
8052 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/fpga/linux-fpga.git
8053 F:      Documentation/devicetree/bindings/fpga/
8054 F:      Documentation/driver-api/fpga/
8055 F:      Documentation/fpga/
8056 F:      drivers/fpga/
8057 F:      include/linux/fpga/
8058
8059 INTEL MAX10 BMC SECURE UPDATES
8060 M:      Russ Weight <russell.h.weight@intel.com>
8061 L:      linux-fpga@vger.kernel.org
8062 S:      Maintained
8063 F:      Documentation/ABI/testing/sysfs-driver-intel-m10-bmc-sec-update
8064 F:      drivers/fpga/intel-m10-bmc-sec-update.c
8065
8066 MICROCHIP POLARFIRE FPGA DRIVERS
8067 M:      Conor Dooley <conor.dooley@microchip.com>
8068 R:      Ivan Bornyakov <i.bornyakov@metrotek.ru>
8069 L:      linux-fpga@vger.kernel.org
8070 S:      Supported
8071 F:      Documentation/devicetree/bindings/fpga/microchip,mpf-spi-fpga-mgr.yaml
8072 F:      drivers/fpga/microchip-spi.c
8073
8074 FPU EMULATOR
8075 M:      Bill Metzenthen <billm@melbpc.org.au>
8076 S:      Maintained
8077 W:      http://floatingpoint.sourceforge.net/emulator/index.html
8078 F:      arch/x86/math-emu/
8079
8080 FRAMEBUFFER CORE
8081 M:      Daniel Vetter <daniel@ffwll.ch>
8082 F:      drivers/video/fbdev/core/
8083 S:      Odd Fixes
8084 T:      git git://anongit.freedesktop.org/drm/drm-misc
8085
8086 FRAMEBUFFER LAYER
8087 M:      Helge Deller <deller@gmx.de>
8088 L:      linux-fbdev@vger.kernel.org
8089 L:      dri-devel@lists.freedesktop.org
8090 S:      Maintained
8091 Q:      http://patchwork.kernel.org/project/linux-fbdev/list/
8092 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/deller/linux-fbdev.git
8093 F:      Documentation/fb/
8094 F:      drivers/video/
8095 F:      include/linux/fb.h
8096 F:      include/uapi/linux/fb.h
8097 F:      include/uapi/video/
8098 F:      include/video/
8099
8100 FREESCALE CAAM (Cryptographic Acceleration and Assurance Module) DRIVER
8101 M:      Horia Geantă <horia.geanta@nxp.com>
8102 M:      Pankaj Gupta <pankaj.gupta@nxp.com>
8103 M:      Gaurav Jain <gaurav.jain@nxp.com>
8104 L:      linux-crypto@vger.kernel.org
8105 S:      Maintained
8106 F:      Documentation/devicetree/bindings/crypto/fsl-sec4.txt
8107 F:      drivers/crypto/caam/
8108
8109 FREESCALE COLDFIRE M5441X MMC DRIVER
8110 M:      Angelo Dureghello <angelo.dureghello@timesys.com>
8111 L:      linux-mmc@vger.kernel.org
8112 S:      Maintained
8113 F:      drivers/mmc/host/sdhci-esdhc-mcf.c
8114 F:      include/linux/platform_data/mmc-esdhc-mcf.h
8115
8116 FREESCALE DIU FRAMEBUFFER DRIVER
8117 M:      Timur Tabi <timur@kernel.org>
8118 L:      linux-fbdev@vger.kernel.org
8119 S:      Maintained
8120 F:      drivers/video/fbdev/fsl-diu-fb.*
8121
8122 FREESCALE DMA DRIVER
8123 M:      Li Yang <leoyang.li@nxp.com>
8124 M:      Zhang Wei <zw@zh-kernel.org>
8125 L:      linuxppc-dev@lists.ozlabs.org
8126 S:      Maintained
8127 F:      drivers/dma/fsldma.*
8128
8129 FREESCALE DSPI DRIVER
8130 M:      Vladimir Oltean <olteanv@gmail.com>
8131 L:      linux-spi@vger.kernel.org
8132 S:      Maintained
8133 F:      Documentation/devicetree/bindings/spi/spi-fsl-dspi.txt
8134 F:      drivers/spi/spi-fsl-dspi.c
8135 F:      include/linux/spi/spi-fsl-dspi.h
8136
8137 FREESCALE ENETC ETHERNET DRIVERS
8138 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
8139 L:      netdev@vger.kernel.org
8140 S:      Maintained
8141 F:      drivers/net/ethernet/freescale/enetc/
8142
8143 FREESCALE eTSEC ETHERNET DRIVER (GIANFAR)
8144 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
8145 L:      netdev@vger.kernel.org
8146 S:      Maintained
8147 F:      Documentation/devicetree/bindings/net/fsl-tsec-phy.txt
8148 F:      drivers/net/ethernet/freescale/gianfar*
8149
8150 FREESCALE GPMI NAND DRIVER
8151 M:      Han Xu <han.xu@nxp.com>
8152 L:      linux-mtd@lists.infradead.org
8153 S:      Maintained
8154 F:      drivers/mtd/nand/raw/gpmi-nand/*
8155
8156 FREESCALE I2C CPM DRIVER
8157 M:      Jochen Friedrich <jochen@scram.de>
8158 L:      linuxppc-dev@lists.ozlabs.org
8159 L:      linux-i2c@vger.kernel.org
8160 S:      Maintained
8161 F:      drivers/i2c/busses/i2c-cpm.c
8162
8163 FREESCALE IMX / MXC FEC DRIVER
8164 M:      Joakim Zhang <qiangqing.zhang@nxp.com>
8165 L:      netdev@vger.kernel.org
8166 S:      Maintained
8167 F:      Documentation/devicetree/bindings/net/fsl,fec.yaml
8168 F:      drivers/net/ethernet/freescale/fec.h
8169 F:      drivers/net/ethernet/freescale/fec_main.c
8170 F:      drivers/net/ethernet/freescale/fec_ptp.c
8171
8172 FREESCALE IMX / MXC FRAMEBUFFER DRIVER
8173 M:      Sascha Hauer <s.hauer@pengutronix.de>
8174 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
8175 L:      linux-fbdev@vger.kernel.org
8176 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8177 S:      Maintained
8178 F:      drivers/video/fbdev/imxfb.c
8179
8180 FREESCALE IMX DDR PMU DRIVER
8181 M:      Frank Li <Frank.li@nxp.com>
8182 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8183 S:      Maintained
8184 F:      Documentation/admin-guide/perf/imx-ddr.rst
8185 F:      Documentation/devicetree/bindings/perf/fsl-imx-ddr.yaml
8186 F:      drivers/perf/fsl_imx8_ddr_perf.c
8187
8188 FREESCALE IMX I2C DRIVER
8189 M:      Oleksij Rempel <o.rempel@pengutronix.de>
8190 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
8191 L:      linux-i2c@vger.kernel.org
8192 S:      Maintained
8193 F:      Documentation/devicetree/bindings/i2c/i2c-imx.yaml
8194 F:      drivers/i2c/busses/i2c-imx.c
8195
8196 FREESCALE IMX LPI2C DRIVER
8197 M:      Dong Aisheng <aisheng.dong@nxp.com>
8198 L:      linux-i2c@vger.kernel.org
8199 L:      linux-imx@nxp.com
8200 S:      Maintained
8201 F:      Documentation/devicetree/bindings/i2c/i2c-imx-lpi2c.yaml
8202 F:      drivers/i2c/busses/i2c-imx-lpi2c.c
8203
8204 FREESCALE MPC I2C DRIVER
8205 M:      Chris Packham <chris.packham@alliedtelesis.co.nz>
8206 L:      linux-i2c@vger.kernel.org
8207 S:      Maintained
8208 F:      Documentation/devicetree/bindings/i2c/i2c-mpc.yaml
8209 F:      drivers/i2c/busses/i2c-mpc.c
8210
8211 FREESCALE QORIQ DPAA ETHERNET DRIVER
8212 M:      Madalin Bucur <madalin.bucur@nxp.com>
8213 L:      netdev@vger.kernel.org
8214 S:      Maintained
8215 F:      drivers/net/ethernet/freescale/dpaa
8216
8217 FREESCALE QORIQ DPAA FMAN DRIVER
8218 M:      Madalin Bucur <madalin.bucur@nxp.com>
8219 L:      netdev@vger.kernel.org
8220 S:      Maintained
8221 F:      Documentation/devicetree/bindings/net/fsl-fman.txt
8222 F:      drivers/net/ethernet/freescale/fman
8223
8224 FREESCALE QORIQ PTP CLOCK DRIVER
8225 M:      Yangbo Lu <yangbo.lu@nxp.com>
8226 L:      netdev@vger.kernel.org
8227 S:      Maintained
8228 F:      Documentation/devicetree/bindings/ptp/ptp-qoriq.txt
8229 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-ptp*
8230 F:      drivers/net/ethernet/freescale/dpaa2/dprtc*
8231 F:      drivers/net/ethernet/freescale/enetc/enetc_ptp.c
8232 F:      drivers/ptp/ptp_qoriq.c
8233 F:      drivers/ptp/ptp_qoriq_debugfs.c
8234 F:      include/linux/fsl/ptp_qoriq.h
8235
8236 FREESCALE QUAD SPI DRIVER
8237 M:      Han Xu <han.xu@nxp.com>
8238 L:      linux-spi@vger.kernel.org
8239 S:      Maintained
8240 F:      Documentation/devicetree/bindings/spi/fsl,spi-fsl-qspi.yaml
8241 F:      drivers/spi/spi-fsl-qspi.c
8242
8243 FREESCALE QUICC ENGINE LIBRARY
8244 M:      Qiang Zhao <qiang.zhao@nxp.com>
8245 L:      linuxppc-dev@lists.ozlabs.org
8246 S:      Maintained
8247 F:      drivers/soc/fsl/qe/
8248 F:      include/soc/fsl/qe/
8249
8250 FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
8251 M:      Li Yang <leoyang.li@nxp.com>
8252 L:      netdev@vger.kernel.org
8253 L:      linuxppc-dev@lists.ozlabs.org
8254 S:      Maintained
8255 F:      drivers/net/ethernet/freescale/ucc_geth*
8256
8257 FREESCALE QUICC ENGINE UCC HDLC DRIVER
8258 M:      Zhao Qiang <qiang.zhao@nxp.com>
8259 L:      netdev@vger.kernel.org
8260 L:      linuxppc-dev@lists.ozlabs.org
8261 S:      Maintained
8262 F:      drivers/net/wan/fsl_ucc_hdlc*
8263
8264 FREESCALE QUICC ENGINE UCC UART DRIVER
8265 M:      Timur Tabi <timur@kernel.org>
8266 L:      linuxppc-dev@lists.ozlabs.org
8267 S:      Maintained
8268 F:      drivers/tty/serial/ucc_uart.c
8269
8270 FREESCALE SOC DRIVERS
8271 M:      Li Yang <leoyang.li@nxp.com>
8272 L:      linuxppc-dev@lists.ozlabs.org
8273 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8274 S:      Maintained
8275 F:      Documentation/devicetree/bindings/misc/fsl,dpaa2-console.yaml
8276 F:      Documentation/devicetree/bindings/soc/fsl/
8277 F:      drivers/soc/fsl/
8278 F:      include/linux/fsl/
8279 F:      include/soc/fsl/
8280
8281 FREESCALE SOC FS_ENET DRIVER
8282 M:      Pantelis Antoniou <pantelis.antoniou@gmail.com>
8283 L:      linuxppc-dev@lists.ozlabs.org
8284 L:      netdev@vger.kernel.org
8285 S:      Maintained
8286 F:      drivers/net/ethernet/freescale/fs_enet/
8287 F:      include/linux/fs_enet_pd.h
8288
8289 FREESCALE SOC SOUND DRIVERS
8290 M:      Shengjiu Wang <shengjiu.wang@gmail.com>
8291 M:      Xiubo Li <Xiubo.Lee@gmail.com>
8292 R:      Fabio Estevam <festevam@gmail.com>
8293 R:      Nicolin Chen <nicoleotsuka@gmail.com>
8294 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
8295 L:      linuxppc-dev@lists.ozlabs.org
8296 S:      Maintained
8297 F:      sound/soc/fsl/fsl*
8298 F:      sound/soc/fsl/imx*
8299 F:      sound/soc/fsl/mpc8610_hpcd.c
8300
8301 FREESCALE USB PERIPHERAL DRIVERS
8302 M:      Li Yang <leoyang.li@nxp.com>
8303 L:      linux-usb@vger.kernel.org
8304 L:      linuxppc-dev@lists.ozlabs.org
8305 S:      Maintained
8306 F:      drivers/usb/gadget/udc/fsl*
8307
8308 FREESCALE USB PHY DRIVER
8309 M:      Ran Wang <ran.wang_1@nxp.com>
8310 L:      linux-usb@vger.kernel.org
8311 L:      linuxppc-dev@lists.ozlabs.org
8312 S:      Maintained
8313 F:      drivers/usb/phy/phy-fsl-usb*
8314
8315 FREEVXFS FILESYSTEM
8316 M:      Christoph Hellwig <hch@infradead.org>
8317 S:      Maintained
8318 W:      ftp://ftp.openlinux.org/pub/people/hch/vxfs
8319 F:      fs/freevxfs/
8320
8321 FREEZER
8322 M:      "Rafael J. Wysocki" <rafael@kernel.org>
8323 M:      Pavel Machek <pavel@ucw.cz>
8324 L:      linux-pm@vger.kernel.org
8325 S:      Supported
8326 F:      Documentation/power/freezing-of-tasks.rst
8327 F:      include/linux/freezer.h
8328 F:      kernel/freezer.c
8329
8330 FRONTSWAP API
8331 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
8332 L:      linux-kernel@vger.kernel.org
8333 S:      Maintained
8334 F:      include/linux/frontswap.h
8335 F:      mm/frontswap.c
8336
8337 FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
8338 M:      David Howells <dhowells@redhat.com>
8339 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
8340 S:      Supported
8341 F:      Documentation/filesystems/caching/
8342 F:      fs/fscache/
8343 F:      include/linux/fscache*.h
8344
8345 FSCRYPT: FILE SYSTEM LEVEL ENCRYPTION SUPPORT
8346 M:      Theodore Y. Ts'o <tytso@mit.edu>
8347 M:      Jaegeuk Kim <jaegeuk@kernel.org>
8348 M:      Eric Biggers <ebiggers@kernel.org>
8349 L:      linux-fscrypt@vger.kernel.org
8350 S:      Supported
8351 Q:      https://patchwork.kernel.org/project/linux-fscrypt/list/
8352 T:      git git://git.kernel.org/pub/scm/fs/fscrypt/fscrypt.git
8353 F:      Documentation/filesystems/fscrypt.rst
8354 F:      fs/crypto/
8355 F:      include/linux/fscrypt*.h
8356 F:      include/uapi/linux/fscrypt.h
8357
8358 FSI SUBSYSTEM
8359 M:      Jeremy Kerr <jk@ozlabs.org>
8360 M:      Joel Stanley <joel@jms.id.au>
8361 R:      Alistar Popple <alistair@popple.id.au>
8362 R:      Eddie James <eajames@linux.ibm.com>
8363 L:      linux-fsi@lists.ozlabs.org
8364 S:      Supported
8365 Q:      http://patchwork.ozlabs.org/project/linux-fsi/list/
8366 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joel/fsi.git
8367 F:      drivers/fsi/
8368 F:      include/linux/fsi*.h
8369 F:      include/trace/events/fsi*.h
8370
8371 FSI-ATTACHED I2C DRIVER
8372 M:      Eddie James <eajames@linux.ibm.com>
8373 L:      linux-i2c@vger.kernel.org
8374 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
8375 S:      Maintained
8376 F:      Documentation/devicetree/bindings/i2c/i2c-fsi.txt
8377 F:      drivers/i2c/busses/i2c-fsi.c
8378
8379 FSI-ATTACHED SPI DRIVER
8380 M:      Eddie James <eajames@linux.ibm.com>
8381 L:      linux-spi@vger.kernel.org
8382 S:      Maintained
8383 F:      Documentation/devicetree/bindings/fsi/ibm,fsi2spi.yaml
8384 F:      drivers/spi/spi-fsi.c
8385
8386 FSNOTIFY: FILESYSTEM NOTIFICATION INFRASTRUCTURE
8387 M:      Jan Kara <jack@suse.cz>
8388 R:      Amir Goldstein <amir73il@gmail.com>
8389 L:      linux-fsdevel@vger.kernel.org
8390 S:      Maintained
8391 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jack/linux-fs.git fsnotify
8392 F:      fs/notify/
8393 F:      include/linux/fsnotify*.h
8394
8395 FSVERITY: READ-ONLY FILE-BASED AUTHENTICITY PROTECTION
8396 M:      Eric Biggers <ebiggers@kernel.org>
8397 M:      Theodore Y. Ts'o <tytso@mit.edu>
8398 L:      linux-fscrypt@vger.kernel.org
8399 S:      Supported
8400 Q:      https://patchwork.kernel.org/project/linux-fscrypt/list/
8401 T:      git git://git.kernel.org/pub/scm/fs/fscrypt/fscrypt.git fsverity
8402 F:      Documentation/filesystems/fsverity.rst
8403 F:      fs/verity/
8404 F:      include/linux/fsverity.h
8405 F:      include/uapi/linux/fsverity.h
8406
8407 FT260 FTDI USB-HID TO I2C BRIDGE DRIVER
8408 M:      Michael Zaidman <michael.zaidman@gmail.com>
8409 L:      linux-i2c@vger.kernel.org
8410 L:      linux-input@vger.kernel.org
8411 S:      Maintained
8412 F:      drivers/hid/hid-ft260.c
8413
8414 FUJITSU LAPTOP EXTRAS
8415 M:      Jonathan Woithe <jwoithe@just42.net>
8416 L:      platform-driver-x86@vger.kernel.org
8417 S:      Maintained
8418 F:      drivers/platform/x86/fujitsu-laptop.c
8419
8420 FUJITSU M-5MO LS CAMERA ISP DRIVER
8421 M:      Kyungmin Park <kyungmin.park@samsung.com>
8422 M:      Heungjun Kim <riverful.kim@samsung.com>
8423 L:      linux-media@vger.kernel.org
8424 S:      Maintained
8425 F:      drivers/media/i2c/m5mols/
8426 F:      include/media/i2c/m5mols.h
8427
8428 FUJITSU TABLET EXTRAS
8429 M:      Robert Gerlach <khnz@gmx.de>
8430 L:      platform-driver-x86@vger.kernel.org
8431 S:      Maintained
8432 F:      drivers/platform/x86/fujitsu-tablet.c
8433
8434 FUNGIBLE ETHERNET DRIVERS
8435 M:      Dimitris Michailidis <dmichail@fungible.com>
8436 L:      netdev@vger.kernel.org
8437 S:      Supported
8438 F:      drivers/net/ethernet/fungible/
8439
8440 FUSE: FILESYSTEM IN USERSPACE
8441 M:      Miklos Szeredi <miklos@szeredi.hu>
8442 L:      linux-fsdevel@vger.kernel.org
8443 S:      Maintained
8444 W:      https://github.com/libfuse/
8445 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse.git
8446 F:      Documentation/filesystems/fuse.rst
8447 F:      fs/fuse/
8448 F:      include/uapi/linux/fuse.h
8449
8450 FUTEX SUBSYSTEM
8451 M:      Thomas Gleixner <tglx@linutronix.de>
8452 M:      Ingo Molnar <mingo@redhat.com>
8453 R:      Peter Zijlstra <peterz@infradead.org>
8454 R:      Darren Hart <dvhart@infradead.org>
8455 R:      Davidlohr Bueso <dave@stgolabs.net>
8456 R:      André Almeida <andrealmeid@igalia.com>
8457 L:      linux-kernel@vger.kernel.org
8458 S:      Maintained
8459 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
8460 F:      Documentation/locking/*futex*
8461 F:      include/asm-generic/futex.h
8462 F:      include/linux/futex.h
8463 F:      include/uapi/linux/futex.h
8464 F:      kernel/futex/*
8465 F:      tools/perf/bench/futex*
8466 F:      tools/testing/selftests/futex/
8467
8468 GATEWORKS SYSTEM CONTROLLER (GSC) DRIVER
8469 M:      Tim Harvey <tharvey@gateworks.com>
8470 M:      Robert Jones <rjones@gateworks.com>
8471 S:      Maintained
8472 F:      Documentation/devicetree/bindings/mfd/gateworks-gsc.yaml
8473 F:      drivers/mfd/gateworks-gsc.c
8474 F:      include/linux/mfd/gsc.h
8475 F:      Documentation/hwmon/gsc-hwmon.rst
8476 F:      drivers/hwmon/gsc-hwmon.c
8477 F:      include/linux/platform_data/gsc_hwmon.h
8478
8479 GCC PLUGINS
8480 M:      Kees Cook <keescook@chromium.org>
8481 L:      linux-hardening@vger.kernel.org
8482 S:      Maintained
8483 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/hardening
8484 F:      Documentation/kbuild/gcc-plugins.rst
8485 F:      scripts/Makefile.gcc-plugins
8486 F:      scripts/gcc-plugins/
8487
8488 GCOV BASED KERNEL PROFILING
8489 M:      Peter Oberparleiter <oberpar@linux.ibm.com>
8490 S:      Maintained
8491 F:      Documentation/dev-tools/gcov.rst
8492 F:      kernel/gcov/
8493
8494 GDB KERNEL DEBUGGING HELPER SCRIPTS
8495 M:      Jan Kiszka <jan.kiszka@siemens.com>
8496 M:      Kieran Bingham <kbingham@kernel.org>
8497 S:      Supported
8498 F:      scripts/gdb/
8499
8500 GEMINI CRYPTO DRIVER
8501 M:      Corentin Labbe <clabbe@baylibre.com>
8502 L:      linux-crypto@vger.kernel.org
8503 S:      Maintained
8504 F:      drivers/crypto/gemini/
8505
8506 GEMTEK FM RADIO RECEIVER DRIVER
8507 M:      Hans Verkuil <hverkuil@xs4all.nl>
8508 L:      linux-media@vger.kernel.org
8509 S:      Maintained
8510 W:      https://linuxtv.org
8511 T:      git git://linuxtv.org/media_tree.git
8512 F:      drivers/media/radio/radio-gemtek*
8513
8514 GENERIC ARCHITECTURE TOPOLOGY
8515 M:      Sudeep Holla <sudeep.holla@arm.com>
8516 L:      linux-kernel@vger.kernel.org
8517 S:      Maintained
8518 F:      drivers/base/arch_topology.c
8519 F:      include/linux/arch_topology.h
8520
8521 GENERIC ENTRY CODE
8522 M:      Thomas Gleixner <tglx@linutronix.de>
8523 M:      Peter Zijlstra <peterz@infradead.org>
8524 M:      Andy Lutomirski <luto@kernel.org>
8525 L:      linux-kernel@vger.kernel.org
8526 S:      Maintained
8527 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/entry
8528 F:      include/linux/entry-common.h
8529 F:      include/linux/entry-kvm.h
8530 F:      kernel/entry/
8531
8532 GENERIC GPIO I2C DRIVER
8533 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
8534 S:      Supported
8535 F:      drivers/i2c/busses/i2c-gpio.c
8536 F:      include/linux/platform_data/i2c-gpio.h
8537
8538 GENERIC GPIO I2C MULTIPLEXER DRIVER
8539 M:      Peter Korsgaard <peter.korsgaard@barco.com>
8540 L:      linux-i2c@vger.kernel.org
8541 S:      Supported
8542 F:      Documentation/i2c/muxes/i2c-mux-gpio.rst
8543 F:      drivers/i2c/muxes/i2c-mux-gpio.c
8544 F:      include/linux/platform_data/i2c-mux-gpio.h
8545
8546 GENERIC HDLC (WAN) DRIVERS
8547 M:      Krzysztof Halasa <khc@pm.waw.pl>
8548 S:      Maintained
8549 W:      http://www.kernel.org/pub/linux/utils/net/hdlc/
8550 F:      drivers/net/wan/c101.c
8551 F:      drivers/net/wan/hd6457*
8552 F:      drivers/net/wan/hdlc*
8553 F:      drivers/net/wan/n2.c
8554 F:      drivers/net/wan/pc300too.c
8555 F:      drivers/net/wan/pci200syn.c
8556 F:      drivers/net/wan/wanxl*
8557
8558 GENERIC INCLUDE/ASM HEADER FILES
8559 M:      Arnd Bergmann <arnd@arndb.de>
8560 L:      linux-arch@vger.kernel.org
8561 S:      Maintained
8562 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
8563 F:      include/asm-generic/
8564 F:      include/uapi/asm-generic/
8565
8566 GENERIC PHY FRAMEWORK
8567 M:      Kishon Vijay Abraham I <kishon@ti.com>
8568 M:      Vinod Koul <vkoul@kernel.org>
8569 L:      linux-phy@lists.infradead.org
8570 S:      Supported
8571 Q:      https://patchwork.kernel.org/project/linux-phy/list/
8572 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/phy/linux-phy.git
8573 F:      Documentation/devicetree/bindings/phy/
8574 F:      drivers/phy/
8575 F:      include/dt-bindings/phy/
8576 F:      include/linux/phy/
8577
8578 GENERIC PINCTRL I2C DEMULTIPLEXER DRIVER
8579 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
8580 S:      Supported
8581 F:      drivers/i2c/muxes/i2c-demux-pinctrl.c
8582
8583 GENERIC PM DOMAINS
8584 M:      "Rafael J. Wysocki" <rafael@kernel.org>
8585 M:      Kevin Hilman <khilman@kernel.org>
8586 M:      Ulf Hansson <ulf.hansson@linaro.org>
8587 L:      linux-pm@vger.kernel.org
8588 S:      Supported
8589 F:      Documentation/devicetree/bindings/power/power?domain*
8590 F:      drivers/base/power/domain*.c
8591 F:      include/linux/pm_domain.h
8592
8593 GENERIC RESISTIVE TOUCHSCREEN ADC DRIVER
8594 M:      Eugen Hristev <eugen.hristev@microchip.com>
8595 L:      linux-input@vger.kernel.org
8596 S:      Maintained
8597 F:      drivers/input/touchscreen/resistive-adc-touch.c
8598
8599 GENERIC STRING LIBRARY
8600 R:      Andy Shevchenko <andy@kernel.org>
8601 S:      Maintained
8602 F:      lib/string.c
8603 F:      lib/string_helpers.c
8604 F:      lib/test_string.c
8605 F:      lib/test-string_helpers.c
8606
8607 GENERIC UIO DRIVER FOR PCI DEVICES
8608 M:      "Michael S. Tsirkin" <mst@redhat.com>
8609 L:      kvm@vger.kernel.org
8610 S:      Supported
8611 F:      drivers/uio/uio_pci_generic.c
8612
8613 GENERIC VDSO LIBRARY
8614 M:      Andy Lutomirski <luto@kernel.org>
8615 M:      Thomas Gleixner <tglx@linutronix.de>
8616 M:      Vincenzo Frascino <vincenzo.frascino@arm.com>
8617 L:      linux-kernel@vger.kernel.org
8618 S:      Maintained
8619 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/vdso
8620 F:      include/asm-generic/vdso/vsyscall.h
8621 F:      include/vdso/
8622 F:      kernel/time/vsyscall.c
8623 F:      lib/vdso/
8624
8625 GENWQE (IBM Generic Workqueue Card)
8626 M:      Frank Haverkamp <haver@linux.ibm.com>
8627 S:      Supported
8628 F:      drivers/misc/genwqe/
8629
8630 GET_MAINTAINER SCRIPT
8631 M:      Joe Perches <joe@perches.com>
8632 S:      Maintained
8633 F:      scripts/get_maintainer.pl
8634
8635 GFS2 FILE SYSTEM
8636 M:      Bob Peterson <rpeterso@redhat.com>
8637 M:      Andreas Gruenbacher <agruenba@redhat.com>
8638 L:      cluster-devel@redhat.com
8639 S:      Supported
8640 B:      https://bugzilla.kernel.org/enter_bug.cgi?product=File%20System&component=gfs2
8641 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git
8642 F:      Documentation/filesystems/gfs2*
8643 F:      fs/gfs2/
8644 F:      include/uapi/linux/gfs2_ondisk.h
8645
8646 GIGABYTE WMI DRIVER
8647 M:      Thomas Weißschuh <thomas@weissschuh.net>
8648 L:      platform-driver-x86@vger.kernel.org
8649 S:      Maintained
8650 F:      drivers/platform/x86/gigabyte-wmi.c
8651
8652 GNSS SUBSYSTEM
8653 M:      Johan Hovold <johan@kernel.org>
8654 S:      Maintained
8655 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/gnss.git
8656 F:      Documentation/ABI/testing/sysfs-class-gnss
8657 F:      Documentation/devicetree/bindings/gnss/
8658 F:      drivers/gnss/
8659 F:      include/linux/gnss.h
8660
8661 GO7007 MPEG CODEC
8662 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
8663 L:      linux-media@vger.kernel.org
8664 S:      Maintained
8665 F:      drivers/media/usb/go7007/
8666
8667 GOODIX TOUCHSCREEN
8668 M:      Bastien Nocera <hadess@hadess.net>
8669 M:      Hans de Goede <hdegoede@redhat.com>
8670 L:      linux-input@vger.kernel.org
8671 S:      Maintained
8672 F:      drivers/input/touchscreen/goodix*
8673
8674 GOOGLE ETHERNET DRIVERS
8675 M:      Jeroen de Borst <jeroendb@google.com>
8676 M:      Catherine Sullivan <csully@google.com>
8677 R:      Shailend Chand <shailend@google.com>
8678 L:      netdev@vger.kernel.org
8679 S:      Supported
8680 F:      Documentation/networking/device_drivers/ethernet/google/gve.rst
8681 F:      drivers/net/ethernet/google
8682
8683 GPD POCKET FAN DRIVER
8684 M:      Hans de Goede <hdegoede@redhat.com>
8685 L:      platform-driver-x86@vger.kernel.org
8686 S:      Maintained
8687 F:      drivers/platform/x86/gpd-pocket-fan.c
8688
8689 GPIO ACPI SUPPORT
8690 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
8691 M:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
8692 L:      linux-gpio@vger.kernel.org
8693 L:      linux-acpi@vger.kernel.org
8694 S:      Supported
8695 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
8696 F:      Documentation/firmware-guide/acpi/gpio-properties.rst
8697 F:      drivers/gpio/gpiolib-acpi.c
8698 F:      drivers/gpio/gpiolib-acpi.h
8699
8700 GPIO AGGREGATOR
8701 M:      Geert Uytterhoeven <geert+renesas@glider.be>
8702 L:      linux-gpio@vger.kernel.org
8703 S:      Supported
8704 F:      Documentation/admin-guide/gpio/gpio-aggregator.rst
8705 F:      drivers/gpio/gpio-aggregator.c
8706
8707 GPIO IR Transmitter
8708 M:      Sean Young <sean@mess.org>
8709 L:      linux-media@vger.kernel.org
8710 S:      Maintained
8711 F:      drivers/media/rc/gpio-ir-tx.c
8712
8713 GPIO MOCKUP DRIVER
8714 M:      Bamvor Jian Zhang <bamv2005@gmail.com>
8715 L:      linux-gpio@vger.kernel.org
8716 S:      Maintained
8717 F:      drivers/gpio/gpio-mockup.c
8718 F:      tools/testing/selftests/gpio/
8719
8720 GPIO REGMAP
8721 R:      Michael Walle <michael@walle.cc>
8722 S:      Maintained
8723 F:      drivers/gpio/gpio-regmap.c
8724 F:      include/linux/gpio/regmap.h
8725
8726 GPIO SUBSYSTEM
8727 M:      Linus Walleij <linus.walleij@linaro.org>
8728 M:      Bartosz Golaszewski <brgl@bgdev.pl>
8729 L:      linux-gpio@vger.kernel.org
8730 S:      Maintained
8731 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux.git
8732 F:      Documentation/ABI/obsolete/sysfs-gpio
8733 F:      Documentation/ABI/testing/gpio-cdev
8734 F:      Documentation/admin-guide/gpio/
8735 F:      Documentation/devicetree/bindings/gpio/
8736 F:      Documentation/driver-api/gpio/
8737 F:      drivers/gpio/
8738 F:      include/asm-generic/gpio.h
8739 F:      include/dt-bindings/gpio/
8740 F:      include/linux/gpio.h
8741 F:      include/linux/gpio/
8742 F:      include/linux/of_gpio.h
8743 F:      include/uapi/linux/gpio.h
8744 F:      tools/gpio/
8745
8746 GRE DEMULTIPLEXER DRIVER
8747 M:      Dmitry Kozlov <xeb@mail.ru>
8748 L:      netdev@vger.kernel.org
8749 S:      Maintained
8750 F:      include/net/gre.h
8751 F:      net/ipv4/gre_demux.c
8752 F:      net/ipv4/gre_offload.c
8753
8754 GRETH 10/100/1G Ethernet MAC device driver
8755 M:      Andreas Larsson <andreas@gaisler.com>
8756 L:      netdev@vger.kernel.org
8757 S:      Maintained
8758 F:      drivers/net/ethernet/aeroflex/
8759
8760 GREYBUS AUDIO PROTOCOLS DRIVERS
8761 M:      Vaibhav Agarwal <vaibhav.sr@gmail.com>
8762 M:      Mark Greer <mgreer@animalcreek.com>
8763 S:      Maintained
8764 F:      drivers/staging/greybus/audio_apbridgea.c
8765 F:      drivers/staging/greybus/audio_apbridgea.h
8766 F:      drivers/staging/greybus/audio_codec.c
8767 F:      drivers/staging/greybus/audio_codec.h
8768 F:      drivers/staging/greybus/audio_gb.c
8769 F:      drivers/staging/greybus/audio_manager.c
8770 F:      drivers/staging/greybus/audio_manager.h
8771 F:      drivers/staging/greybus/audio_manager_module.c
8772 F:      drivers/staging/greybus/audio_manager_private.h
8773 F:      drivers/staging/greybus/audio_manager_sysfs.c
8774 F:      drivers/staging/greybus/audio_module.c
8775 F:      drivers/staging/greybus/audio_topology.c
8776
8777 GREYBUS FW/HID/SPI PROTOCOLS DRIVERS
8778 M:      Viresh Kumar <vireshk@kernel.org>
8779 S:      Maintained
8780 F:      drivers/staging/greybus/authentication.c
8781 F:      drivers/staging/greybus/bootrom.c
8782 F:      drivers/staging/greybus/firmware.h
8783 F:      drivers/staging/greybus/fw-core.c
8784 F:      drivers/staging/greybus/fw-download.c
8785 F:      drivers/staging/greybus/fw-management.c
8786 F:      drivers/staging/greybus/greybus_authentication.h
8787 F:      drivers/staging/greybus/greybus_firmware.h
8788 F:      drivers/staging/greybus/hid.c
8789 F:      drivers/staging/greybus/i2c.c
8790 F:      drivers/staging/greybus/spi.c
8791 F:      drivers/staging/greybus/spilib.c
8792 F:      drivers/staging/greybus/spilib.h
8793
8794 GREYBUS LOOPBACK DRIVER
8795 M:      Bryan O'Donoghue <pure.logic@nexus-software.ie>
8796 S:      Maintained
8797 F:      drivers/staging/greybus/loopback.c
8798
8799 GREYBUS PLATFORM DRIVERS
8800 M:      Vaibhav Hiremath <hvaibhav.linux@gmail.com>
8801 S:      Maintained
8802 F:      drivers/staging/greybus/arche-apb-ctrl.c
8803 F:      drivers/staging/greybus/arche-platform.c
8804 F:      drivers/staging/greybus/arche_platform.h
8805
8806 GREYBUS SDIO/GPIO/SPI PROTOCOLS DRIVERS
8807 M:      Rui Miguel Silva <rmfrfs@gmail.com>
8808 S:      Maintained
8809 F:      drivers/staging/greybus/gpio.c
8810 F:      drivers/staging/greybus/light.c
8811 F:      drivers/staging/greybus/power_supply.c
8812 F:      drivers/staging/greybus/sdio.c
8813 F:      drivers/staging/greybus/spi.c
8814 F:      drivers/staging/greybus/spilib.c
8815
8816 GREYBUS SUBSYSTEM
8817 M:      Johan Hovold <johan@kernel.org>
8818 M:      Alex Elder <elder@kernel.org>
8819 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
8820 L:      greybus-dev@lists.linaro.org (moderated for non-subscribers)
8821 S:      Maintained
8822 F:      drivers/greybus/
8823 F:      drivers/staging/greybus/
8824 F:      include/linux/greybus.h
8825 F:      include/linux/greybus/
8826
8827 GREYBUS UART PROTOCOLS DRIVERS
8828 M:      David Lin <dtwlin@gmail.com>
8829 S:      Maintained
8830 F:      drivers/staging/greybus/log.c
8831 F:      drivers/staging/greybus/uart.c
8832
8833 GS1662 VIDEO SERIALIZER
8834 M:      Charles-Antoine Couret <charles-antoine.couret@nexvision.fr>
8835 L:      linux-media@vger.kernel.org
8836 S:      Maintained
8837 T:      git git://linuxtv.org/media_tree.git
8838 F:      drivers/media/spi/gs1662.c
8839
8840 GSPCA FINEPIX SUBDRIVER
8841 M:      Frank Zago <frank@zago.net>
8842 L:      linux-media@vger.kernel.org
8843 S:      Maintained
8844 T:      git git://linuxtv.org/media_tree.git
8845 F:      drivers/media/usb/gspca/finepix.c
8846
8847 GSPCA GL860 SUBDRIVER
8848 M:      Olivier Lorin <o.lorin@laposte.net>
8849 L:      linux-media@vger.kernel.org
8850 S:      Maintained
8851 T:      git git://linuxtv.org/media_tree.git
8852 F:      drivers/media/usb/gspca/gl860/
8853
8854 GSPCA M5602 SUBDRIVER
8855 M:      Erik Andren <erik.andren@gmail.com>
8856 L:      linux-media@vger.kernel.org
8857 S:      Maintained
8858 T:      git git://linuxtv.org/media_tree.git
8859 F:      drivers/media/usb/gspca/m5602/
8860
8861 GSPCA PAC207 SONIXB SUBDRIVER
8862 M:      Hans Verkuil <hverkuil@xs4all.nl>
8863 L:      linux-media@vger.kernel.org
8864 S:      Odd Fixes
8865 T:      git git://linuxtv.org/media_tree.git
8866 F:      drivers/media/usb/gspca/pac207.c
8867
8868 GSPCA SN9C20X SUBDRIVER
8869 M:      Brian Johnson <brijohn@gmail.com>
8870 L:      linux-media@vger.kernel.org
8871 S:      Maintained
8872 T:      git git://linuxtv.org/media_tree.git
8873 F:      drivers/media/usb/gspca/sn9c20x.c
8874
8875 GSPCA T613 SUBDRIVER
8876 M:      Leandro Costantino <lcostantino@gmail.com>
8877 L:      linux-media@vger.kernel.org
8878 S:      Maintained
8879 T:      git git://linuxtv.org/media_tree.git
8880 F:      drivers/media/usb/gspca/t613.c
8881
8882 GSPCA USB WEBCAM DRIVER
8883 M:      Hans Verkuil <hverkuil@xs4all.nl>
8884 L:      linux-media@vger.kernel.org
8885 S:      Odd Fixes
8886 T:      git git://linuxtv.org/media_tree.git
8887 F:      drivers/media/usb/gspca/
8888
8889 GTP (GPRS Tunneling Protocol)
8890 M:      Pablo Neira Ayuso <pablo@netfilter.org>
8891 M:      Harald Welte <laforge@gnumonks.org>
8892 L:      osmocom-net-gprs@lists.osmocom.org
8893 S:      Maintained
8894 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/gtp.git
8895 F:      drivers/net/gtp.c
8896
8897 GUID PARTITION TABLE (GPT)
8898 M:      Davidlohr Bueso <dave@stgolabs.net>
8899 L:      linux-efi@vger.kernel.org
8900 S:      Maintained
8901 F:      block/partitions/efi.*
8902
8903 HABANALABS PCI DRIVER
8904 M:      Oded Gabbay <ogabbay@kernel.org>
8905 S:      Supported
8906 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/ogabbay/linux.git
8907 F:      Documentation/ABI/testing/debugfs-driver-habanalabs
8908 F:      Documentation/ABI/testing/sysfs-driver-habanalabs
8909 F:      drivers/misc/habanalabs/
8910 F:      include/uapi/misc/habanalabs.h
8911
8912 HACKRF MEDIA DRIVER
8913 M:      Antti Palosaari <crope@iki.fi>
8914 L:      linux-media@vger.kernel.org
8915 S:      Maintained
8916 W:      https://linuxtv.org
8917 W:      http://palosaari.fi/linux/
8918 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8919 T:      git git://linuxtv.org/anttip/media_tree.git
8920 F:      drivers/media/usb/hackrf/
8921
8922 HANTRO VPU CODEC DRIVER
8923 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
8924 M:      Philipp Zabel <p.zabel@pengutronix.de>
8925 L:      linux-media@vger.kernel.org
8926 L:      linux-rockchip@lists.infradead.org
8927 S:      Maintained
8928 F:      Documentation/devicetree/bindings/media/nxp,imx8mq-vpu.yaml
8929 F:      Documentation/devicetree/bindings/media/rockchip,rk3568-vepu.yaml
8930 F:      Documentation/devicetree/bindings/media/rockchip-vpu.yaml
8931 F:      drivers/staging/media/hantro/
8932
8933 HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
8934 M:      Frank Seidel <frank@f-seidel.de>
8935 L:      platform-driver-x86@vger.kernel.org
8936 S:      Maintained
8937 W:      http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
8938 F:      drivers/platform/x86/hdaps.c
8939
8940 HARDWARE MONITORING
8941 M:      Jean Delvare <jdelvare@suse.com>
8942 M:      Guenter Roeck <linux@roeck-us.net>
8943 L:      linux-hwmon@vger.kernel.org
8944 S:      Maintained
8945 W:      http://hwmon.wiki.kernel.org/
8946 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
8947 F:      Documentation/ABI/testing/sysfs-class-hwmon
8948 F:      Documentation/devicetree/bindings/hwmon/
8949 F:      Documentation/hwmon/
8950 F:      drivers/hwmon/
8951 F:      include/linux/hwmon*.h
8952 F:      include/trace/events/hwmon*.h
8953 K:      (devm_)?hwmon_device_(un)?register(|_with_groups|_with_info)
8954
8955 HARDWARE RANDOM NUMBER GENERATOR CORE
8956 M:      Olivia Mackall <olivia@selenic.com>
8957 M:      Herbert Xu <herbert@gondor.apana.org.au>
8958 L:      linux-crypto@vger.kernel.org
8959 S:      Odd fixes
8960 F:      Documentation/admin-guide/hw_random.rst
8961 F:      Documentation/devicetree/bindings/rng/
8962 F:      drivers/char/hw_random/
8963 F:      include/linux/hw_random.h
8964
8965 HARDWARE SPINLOCK CORE
8966 M:      Ohad Ben-Cohen <ohad@wizery.com>
8967 M:      Bjorn Andersson <andersson@kernel.org>
8968 R:      Baolin Wang <baolin.wang7@gmail.com>
8969 L:      linux-remoteproc@vger.kernel.org
8970 S:      Maintained
8971 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git hwspinlock-next
8972 F:      Documentation/devicetree/bindings/hwlock/
8973 F:      Documentation/locking/hwspinlock.rst
8974 F:      drivers/hwspinlock/
8975 F:      include/linux/hwspinlock.h
8976
8977 HARDWARE TRACING FACILITIES
8978 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
8979 S:      Maintained
8980 F:      drivers/hwtracing/
8981
8982 HARMONY SOUND DRIVER
8983 L:      linux-parisc@vger.kernel.org
8984 S:      Maintained
8985 F:      sound/parisc/harmony.*
8986
8987 HDPVR USB VIDEO ENCODER DRIVER
8988 M:      Hans Verkuil <hverkuil@xs4all.nl>
8989 L:      linux-media@vger.kernel.org
8990 S:      Odd Fixes
8991 W:      https://linuxtv.org
8992 T:      git git://linuxtv.org/media_tree.git
8993 F:      drivers/media/usb/hdpvr/
8994
8995 HEWLETT PACKARD ENTERPRISE ILO CHIF DRIVER
8996 M:      Matt Hsiao <matt.hsiao@hpe.com>
8997 S:      Supported
8998 F:      drivers/misc/hpilo.[ch]
8999
9000 HEWLETT PACKARD ENTERPRISE ILO NMI WATCHDOG DRIVER
9001 M:      Jerry Hoemann <jerry.hoemann@hpe.com>
9002 S:      Supported
9003 F:      Documentation/watchdog/hpwdt.rst
9004 F:      drivers/watchdog/hpwdt.c
9005
9006 HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
9007 M:      Don Brace <don.brace@microchip.com>
9008 L:      storagedev@microchip.com
9009 L:      linux-scsi@vger.kernel.org
9010 S:      Supported
9011 F:      Documentation/scsi/hpsa.rst
9012 F:      drivers/scsi/hpsa*.[ch]
9013 F:      include/linux/cciss*.h
9014 F:      include/uapi/linux/cciss*.h
9015
9016 HFI1 DRIVER
9017 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
9018 L:      linux-rdma@vger.kernel.org
9019 S:      Supported
9020 F:      drivers/infiniband/hw/hfi1
9021
9022 HFS FILESYSTEM
9023 L:      linux-fsdevel@vger.kernel.org
9024 S:      Orphan
9025 F:      Documentation/filesystems/hfs.rst
9026 F:      fs/hfs/
9027
9028 HFSPLUS FILESYSTEM
9029 L:      linux-fsdevel@vger.kernel.org
9030 S:      Orphan
9031 F:      Documentation/filesystems/hfsplus.rst
9032 F:      fs/hfsplus/
9033
9034 HGA FRAMEBUFFER DRIVER
9035 M:      Ferenc Bakonyi <fero@drama.obuda.kando.hu>
9036 L:      linux-nvidia@lists.surfsouth.com
9037 S:      Maintained
9038 W:      http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
9039 F:      drivers/video/fbdev/hgafb.c
9040
9041 HIBERNATION (aka Software Suspend, aka swsusp)
9042 M:      "Rafael J. Wysocki" <rafael@kernel.org>
9043 M:      Pavel Machek <pavel@ucw.cz>
9044 L:      linux-pm@vger.kernel.org
9045 S:      Supported
9046 B:      https://bugzilla.kernel.org
9047 F:      arch/*/include/asm/suspend*.h
9048 F:      arch/x86/power/
9049 F:      drivers/base/power/
9050 F:      include/linux/freezer.h
9051 F:      include/linux/pm.h
9052 F:      include/linux/suspend.h
9053 F:      kernel/power/
9054
9055 HID CORE LAYER
9056 M:      Jiri Kosina <jikos@kernel.org>
9057 M:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
9058 L:      linux-input@vger.kernel.org
9059 S:      Maintained
9060 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
9061 F:      drivers/hid/
9062 F:      include/linux/hid*
9063 F:      include/uapi/linux/hid*
9064
9065 HID LOGITECH DRIVERS
9066 R:      Filipe Laíns <lains@riseup.net>
9067 L:      linux-input@vger.kernel.org
9068 S:      Maintained
9069 F:      drivers/hid/hid-logitech-*
9070
9071 HID PLAYSTATION DRIVER
9072 M:      Roderick Colenbrander <roderick.colenbrander@sony.com>
9073 L:      linux-input@vger.kernel.org
9074 S:      Supported
9075 F:      drivers/hid/hid-playstation.c
9076
9077 HID SENSOR HUB DRIVERS
9078 M:      Jiri Kosina <jikos@kernel.org>
9079 M:      Jonathan Cameron <jic23@kernel.org>
9080 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
9081 L:      linux-input@vger.kernel.org
9082 L:      linux-iio@vger.kernel.org
9083 S:      Maintained
9084 F:      Documentation/hid/hid-sensor*
9085 F:      drivers/hid/hid-sensor-*
9086 F:      drivers/iio/*/hid-*
9087 F:      include/linux/hid-sensor-*
9088
9089 HID WACOM DRIVER
9090 M:      Ping Cheng <ping.cheng@wacom.com>
9091 M:      Jason Gerecke  <jason.gerecke@wacom.com>
9092 L:      linux-input@vger.kernel.org
9093 S:      Maintained
9094 F:      drivers/hid/wacom.h
9095 F:      drivers/hid/wacom_*
9096
9097 HIGH-RESOLUTION TIMERS, CLOCKEVENTS
9098 M:      Thomas Gleixner <tglx@linutronix.de>
9099 L:      linux-kernel@vger.kernel.org
9100 S:      Maintained
9101 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
9102 F:      Documentation/timers/
9103 F:      include/linux/clockchips.h
9104 F:      include/linux/hrtimer.h
9105 F:      kernel/time/clockevents.c
9106 F:      kernel/time/hrtimer.c
9107 F:      kernel/time/timer_*.c
9108
9109 HIGH-SPEED SCC DRIVER FOR AX.25
9110 L:      linux-hams@vger.kernel.org
9111 S:      Orphan
9112 F:      drivers/net/hamradio/scc.c
9113
9114 HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
9115 M:      HighPoint Linux Team <linux@highpoint-tech.com>
9116 S:      Supported
9117 W:      http://www.highpoint-tech.com
9118 F:      Documentation/scsi/hptiop.rst
9119 F:      drivers/scsi/hptiop.c
9120
9121 HIPPI
9122 M:      Jes Sorensen <jes@trained-monkey.org>
9123 L:      linux-hippi@sunsite.dk
9124 S:      Maintained
9125 F:      drivers/net/hippi/
9126 F:      include/linux/hippidevice.h
9127 F:      include/uapi/linux/if_hippi.h
9128 F:      net/802/hippi.c
9129
9130 HIRSCHMANN HELLCREEK ETHERNET SWITCH DRIVER
9131 M:      Kurt Kanzenbach <kurt@linutronix.de>
9132 L:      netdev@vger.kernel.org
9133 S:      Maintained
9134 F:      Documentation/devicetree/bindings/net/dsa/hirschmann,hellcreek.yaml
9135 F:      drivers/net/dsa/hirschmann/*
9136 F:      include/linux/platform_data/hirschmann-hellcreek.h
9137 F:      net/dsa/tag_hellcreek.c
9138
9139 HISILICON DMA DRIVER
9140 M:      Zhou Wang <wangzhou1@hisilicon.com>
9141 L:      dmaengine@vger.kernel.org
9142 S:      Maintained
9143 F:      drivers/dma/hisi_dma.c
9144
9145 HISILICON GPIO DRIVER
9146 M:      Jay Fang <f.fangjian@huawei.com>
9147 L:      linux-gpio@vger.kernel.org
9148 S:      Maintained
9149 F:      drivers/gpio/gpio-hisi.c
9150
9151 HISILICON HIGH PERFORMANCE RSA ENGINE DRIVER (HPRE)
9152 M:      Longfang Liu <liulongfang@huawei.com>
9153 L:      linux-crypto@vger.kernel.org
9154 S:      Maintained
9155 F:      Documentation/ABI/testing/debugfs-hisi-hpre
9156 F:      drivers/crypto/hisilicon/hpre/hpre.h
9157 F:      drivers/crypto/hisilicon/hpre/hpre_crypto.c
9158 F:      drivers/crypto/hisilicon/hpre/hpre_main.c
9159
9160 HISILICON I2C CONTROLLER DRIVER
9161 M:      Yicong Yang <yangyicong@hisilicon.com>
9162 L:      linux-i2c@vger.kernel.org
9163 S:      Maintained
9164 W:      https://www.hisilicon.com
9165 F:      drivers/i2c/busses/i2c-hisi.c
9166
9167 HISILICON LPC BUS DRIVER
9168 M:      john.garry@huawei.com
9169 S:      Maintained
9170 W:      http://www.hisilicon.com
9171 F:      Documentation/devicetree/bindings/arm/hisilicon/low-pin-count.yaml
9172 F:      drivers/bus/hisi_lpc.c
9173
9174 HISILICON NETWORK SUBSYSTEM 3 DRIVER (HNS3)
9175 M:      Yisen Zhuang <yisen.zhuang@huawei.com>
9176 M:      Salil Mehta <salil.mehta@huawei.com>
9177 L:      netdev@vger.kernel.org
9178 S:      Maintained
9179 W:      http://www.hisilicon.com
9180 F:      drivers/net/ethernet/hisilicon/hns3/
9181
9182 HISILICON NETWORK SUBSYSTEM DRIVER
9183 M:      Yisen Zhuang <yisen.zhuang@huawei.com>
9184 M:      Salil Mehta <salil.mehta@huawei.com>
9185 L:      netdev@vger.kernel.org
9186 S:      Maintained
9187 W:      http://www.hisilicon.com
9188 F:      Documentation/devicetree/bindings/net/hisilicon*.txt
9189 F:      drivers/net/ethernet/hisilicon/
9190
9191 HIKEY960 ONBOARD USB GPIO HUB DRIVER
9192 M:      John Stultz <jstultz@google.com>
9193 L:      linux-kernel@vger.kernel.org
9194 S:      Maintained
9195 F:      drivers/misc/hisi_hikey_usb.c
9196
9197 HISILICON PMU DRIVER
9198 M:      Shaokun Zhang <zhangshaokun@hisilicon.com>
9199 M:      Qi Liu <liuqi115@huawei.com>
9200 S:      Supported
9201 W:      http://www.hisilicon.com
9202 F:      Documentation/admin-guide/perf/hisi-pcie-pmu.rst
9203 F:      Documentation/admin-guide/perf/hisi-pmu.rst
9204 F:      drivers/perf/hisilicon
9205
9206 HISILICON HNS3 PMU DRIVER
9207 M:      Guangbin Huang <huangguangbin2@huawei.com>
9208 S:      Supported
9209 F:      Documentation/admin-guide/perf/hns3-pmu.rst
9210 F:      drivers/perf/hisilicon/hns3_pmu.c
9211
9212 HISILICON QM DRIVER
9213 M:      Weili Qian <qianweili@huawei.com>
9214 M:      Zhou Wang <wangzhou1@hisilicon.com>
9215 L:      linux-crypto@vger.kernel.org
9216 S:      Maintained
9217 F:      drivers/crypto/hisilicon/Kconfig
9218 F:      drivers/crypto/hisilicon/Makefile
9219 F:      drivers/crypto/hisilicon/qm.c
9220 F:      drivers/crypto/hisilicon/sgl.c
9221 F:      include/linux/hisi_acc_qm.h
9222
9223 HISILICON ZIP Controller DRIVER
9224 M:      Yang Shen <shenyang39@huawei.com>
9225 M:      Zhou Wang <wangzhou1@hisilicon.com>
9226 L:      linux-crypto@vger.kernel.org
9227 S:      Maintained
9228 F:      Documentation/ABI/testing/debugfs-hisi-zip
9229 F:      drivers/crypto/hisilicon/zip/
9230
9231 HISILICON ROCE DRIVER
9232 M:      Haoyue Xu <xuhaoyue1@hisilicon.com>
9233 M:      Wenpeng Liang <liangwenpeng@huawei.com>
9234 L:      linux-rdma@vger.kernel.org
9235 S:      Maintained
9236 F:      Documentation/devicetree/bindings/infiniband/hisilicon-hns-roce.txt
9237 F:      drivers/infiniband/hw/hns/
9238
9239 HISILICON SAS Controller
9240 M:      John Garry <john.garry@huawei.com>
9241 S:      Supported
9242 W:      http://www.hisilicon.com
9243 F:      Documentation/devicetree/bindings/scsi/hisilicon-sas.txt
9244 F:      drivers/scsi/hisi_sas/
9245
9246 HISILICON SECURITY ENGINE V2 DRIVER (SEC2)
9247 M:      Kai Ye <yekai13@huawei.com>
9248 M:      Longfang Liu <liulongfang@huawei.com>
9249 L:      linux-crypto@vger.kernel.org
9250 S:      Maintained
9251 F:      Documentation/ABI/testing/debugfs-hisi-sec
9252 F:      drivers/crypto/hisilicon/sec2/sec.h
9253 F:      drivers/crypto/hisilicon/sec2/sec_crypto.c
9254 F:      drivers/crypto/hisilicon/sec2/sec_crypto.h
9255 F:      drivers/crypto/hisilicon/sec2/sec_main.c
9256
9257 HISILICON SPI Controller DRIVER FOR KUNPENG SOCS
9258 M:      Jay Fang <f.fangjian@huawei.com>
9259 L:      linux-spi@vger.kernel.org
9260 S:      Maintained
9261 W:      http://www.hisilicon.com
9262 F:      drivers/spi/spi-hisi-kunpeng.c
9263
9264 HISILICON SPMI CONTROLLER DRIVER FOR HIKEY 970
9265 M:      Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
9266 L:      linux-kernel@vger.kernel.org
9267 S:      Maintained
9268 F:      Documentation/devicetree/bindings/spmi/hisilicon,hisi-spmi-controller.yaml
9269 F:      drivers/spmi/hisi-spmi-controller.c
9270
9271 HISILICON SPMI PMIC DRIVER FOR HIKEY 6421v600
9272 M:      Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
9273 L:      linux-kernel@vger.kernel.org
9274 S:      Maintained
9275 F:      Documentation/devicetree/bindings/mfd/hisilicon,hi6421-spmi-pmic.yaml
9276 F:      drivers/mfd/hi6421-spmi-pmic.c
9277
9278 HISILICON TRUE RANDOM NUMBER GENERATOR V2 SUPPORT
9279 M:      Weili Qian <qianweili@huawei.com>
9280 S:      Maintained
9281 F:      drivers/crypto/hisilicon/trng/trng.c
9282
9283 HISILICON V3XX SPI NOR FLASH Controller Driver
9284 M:      John Garry <john.garry@huawei.com>
9285 S:      Maintained
9286 W:      http://www.hisilicon.com
9287 F:      drivers/spi/spi-hisi-sfc-v3xx.c
9288
9289 HMM - Heterogeneous Memory Management
9290 M:      Jérôme Glisse <jglisse@redhat.com>
9291 L:      linux-mm@kvack.org
9292 S:      Maintained
9293 F:      Documentation/mm/hmm.rst
9294 F:      include/linux/hmm*
9295 F:      lib/test_hmm*
9296 F:      mm/hmm*
9297 F:      tools/testing/selftests/vm/*hmm*
9298
9299 HOST AP DRIVER
9300 M:      Jouni Malinen <j@w1.fi>
9301 L:      linux-wireless@vger.kernel.org
9302 S:      Obsolete
9303 W:      http://w1.fi/hostap-driver.html
9304 F:      drivers/net/wireless/intersil/hostap/
9305
9306 HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
9307 L:      platform-driver-x86@vger.kernel.org
9308 S:      Orphan
9309 F:      drivers/platform/x86/tc1100-wmi.c
9310
9311 HPET:   High Precision Event Timers driver
9312 M:      Clemens Ladisch <clemens@ladisch.de>
9313 S:      Maintained
9314 F:      Documentation/timers/hpet.rst
9315 F:      drivers/char/hpet.c
9316 F:      include/linux/hpet.h
9317 F:      include/uapi/linux/hpet.h
9318
9319 HPET:   x86
9320 S:      Orphan
9321 F:      arch/x86/include/asm/hpet.h
9322 F:      arch/x86/kernel/hpet.c
9323
9324 HPFS FILESYSTEM
9325 M:      Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
9326 S:      Maintained
9327 W:      http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
9328 F:      fs/hpfs/
9329
9330 HSI SUBSYSTEM
9331 M:      Sebastian Reichel <sre@kernel.org>
9332 S:      Maintained
9333 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git
9334 F:      Documentation/ABI/testing/sysfs-bus-hsi
9335 F:      Documentation/driver-api/hsi.rst
9336 F:      drivers/hsi/
9337 F:      include/linux/hsi/
9338 F:      include/uapi/linux/hsi/
9339
9340 HSO 3G MODEM DRIVER
9341 L:      linux-usb@vger.kernel.org
9342 S:      Orphan
9343 F:      drivers/net/usb/hso.c
9344
9345 HSR NETWORK PROTOCOL
9346 L:      netdev@vger.kernel.org
9347 S:      Orphan
9348 F:      net/hsr/
9349
9350 HT16K33 LED CONTROLLER DRIVER
9351 M:      Robin van der Gracht <robin@protonic.nl>
9352 S:      Maintained
9353 F:      Documentation/devicetree/bindings/auxdisplay/holtek,ht16k33.yaml
9354 F:      drivers/auxdisplay/ht16k33.c
9355
9356 HTCPEN TOUCHSCREEN DRIVER
9357 M:      Pau Oliva Fora <pof@eslack.org>
9358 L:      linux-input@vger.kernel.org
9359 S:      Maintained
9360 F:      drivers/input/touchscreen/htcpen.c
9361
9362 HTE SUBSYSTEM
9363 M:      Dipen Patel <dipenp@nvidia.com>
9364 S:      Maintained
9365 F:      Documentation/devicetree/bindings/timestamp/
9366 F:      Documentation/driver-api/hte/
9367 F:      drivers/hte/
9368 F:      include/linux/hte.h
9369
9370 HTS221 TEMPERATURE-HUMIDITY IIO DRIVER
9371 M:      Lorenzo Bianconi <lorenzo@kernel.org>
9372 L:      linux-iio@vger.kernel.org
9373 S:      Maintained
9374 W:      http://www.st.com/
9375 F:      Documentation/devicetree/bindings/iio/humidity/st,hts221.yaml
9376 F:      drivers/iio/humidity/hts221*
9377
9378 HUAWEI ETHERNET DRIVER
9379 L:      netdev@vger.kernel.org
9380 S:      Orphan
9381 F:      Documentation/networking/device_drivers/ethernet/huawei/hinic.rst
9382 F:      drivers/net/ethernet/huawei/hinic/
9383
9384 HUGETLB SUBSYSTEM
9385 M:      Mike Kravetz <mike.kravetz@oracle.com>
9386 M:      Muchun Song <songmuchun@bytedance.com>
9387 L:      linux-mm@kvack.org
9388 S:      Maintained
9389 F:      Documentation/ABI/testing/sysfs-kernel-mm-hugepages
9390 F:      Documentation/admin-guide/mm/hugetlbpage.rst
9391 F:      Documentation/mm/hugetlbfs_reserv.rst
9392 F:      Documentation/mm/vmemmap_dedup.rst
9393 F:      fs/hugetlbfs/
9394 F:      include/linux/hugetlb.h
9395 F:      mm/hugetlb.c
9396 F:      mm/hugetlb_vmemmap.c
9397 F:      mm/hugetlb_vmemmap.h
9398
9399 HVA ST MEDIA DRIVER
9400 M:      Jean-Christophe Trotin <jean-christophe.trotin@foss.st.com>
9401 L:      linux-media@vger.kernel.org
9402 S:      Supported
9403 W:      https://linuxtv.org
9404 T:      git git://linuxtv.org/media_tree.git
9405 F:      drivers/media/platform/st/sti/hva
9406
9407 HWPOISON MEMORY FAILURE HANDLING
9408 M:      Naoya Horiguchi <naoya.horiguchi@nec.com>
9409 R:      Miaohe Lin <linmiaohe@huawei.com>
9410 L:      linux-mm@kvack.org
9411 S:      Maintained
9412 F:      mm/hwpoison-inject.c
9413 F:      mm/memory-failure.c
9414
9415 HYCON HY46XX TOUCHSCREEN SUPPORT
9416 M:      Giulio Benetti <giulio.benetti@benettiengineering.com>
9417 L:      linux-input@vger.kernel.org
9418 S:      Maintained
9419 F:      Documentation/devicetree/bindings/input/touchscreen/hycon,hy46xx.yaml
9420 F:      drivers/input/touchscreen/hycon-hy46xx.c
9421
9422 HYGON PROCESSOR SUPPORT
9423 M:      Pu Wen <puwen@hygon.cn>
9424 L:      linux-kernel@vger.kernel.org
9425 S:      Maintained
9426 F:      arch/x86/kernel/cpu/hygon.c
9427
9428 HYNIX HI556 SENSOR DRIVER
9429 M:      Shawn Tu <shawnx.tu@intel.com>
9430 L:      linux-media@vger.kernel.org
9431 S:      Maintained
9432 T:      git git://linuxtv.org/media_tree.git
9433 F:      drivers/media/i2c/hi556.c
9434
9435 HYNIX HI846 SENSOR DRIVER
9436 M:      Martin Kepplinger <martin.kepplinger@puri.sm>
9437 L:      linux-media@vger.kernel.org
9438 S:      Maintained
9439 F:      drivers/media/i2c/hi846.c
9440
9441 HYNIX HI847 SENSOR DRIVER
9442 M:      Shawn Tu <shawnx.tu@intel.com>
9443 L:      linux-media@vger.kernel.org
9444 S:      Maintained
9445 F:      drivers/media/i2c/hi847.c
9446
9447 Hyper-V/Azure CORE AND DRIVERS
9448 M:      "K. Y. Srinivasan" <kys@microsoft.com>
9449 M:      Haiyang Zhang <haiyangz@microsoft.com>
9450 M:      Stephen Hemminger <sthemmin@microsoft.com>
9451 M:      Wei Liu <wei.liu@kernel.org>
9452 M:      Dexuan Cui <decui@microsoft.com>
9453 L:      linux-hyperv@vger.kernel.org
9454 S:      Supported
9455 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hyperv/linux.git
9456 F:      Documentation/ABI/stable/sysfs-bus-vmbus
9457 F:      Documentation/ABI/testing/debugfs-hyperv
9458 F:      Documentation/virt/hyperv
9459 F:      Documentation/networking/device_drivers/ethernet/microsoft/netvsc.rst
9460 F:      arch/arm64/hyperv
9461 F:      arch/arm64/include/asm/hyperv-tlfs.h
9462 F:      arch/arm64/include/asm/mshyperv.h
9463 F:      arch/x86/hyperv
9464 F:      arch/x86/include/asm/hyperv-tlfs.h
9465 F:      arch/x86/include/asm/mshyperv.h
9466 F:      arch/x86/include/asm/trace/hyperv.h
9467 F:      arch/x86/kernel/cpu/mshyperv.c
9468 F:      drivers/clocksource/hyperv_timer.c
9469 F:      drivers/hid/hid-hyperv.c
9470 F:      drivers/hv/
9471 F:      drivers/input/serio/hyperv-keyboard.c
9472 F:      drivers/iommu/hyperv-iommu.c
9473 F:      drivers/net/ethernet/microsoft/
9474 F:      drivers/net/hyperv/
9475 F:      drivers/pci/controller/pci-hyperv-intf.c
9476 F:      drivers/pci/controller/pci-hyperv.c
9477 F:      drivers/scsi/storvsc_drv.c
9478 F:      drivers/uio/uio_hv_generic.c
9479 F:      drivers/video/fbdev/hyperv_fb.c
9480 F:      include/asm-generic/hyperv-tlfs.h
9481 F:      include/asm-generic/mshyperv.h
9482 F:      include/clocksource/hyperv_timer.h
9483 F:      include/linux/hyperv.h
9484 F:      include/uapi/linux/hyperv.h
9485 F:      net/vmw_vsock/hyperv_transport.c
9486 F:      tools/hv/
9487
9488 HYPERBUS SUPPORT
9489 M:      Vignesh Raghavendra <vigneshr@ti.com>
9490 L:      linux-mtd@lists.infradead.org
9491 S:      Supported
9492 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
9493 C:      irc://irc.oftc.net/mtd
9494 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git cfi/next
9495 F:      Documentation/devicetree/bindings/mtd/ti,am654-hbmc.yaml
9496 F:      drivers/mtd/hyperbus/
9497 F:      include/linux/mtd/hyperbus.h
9498
9499 HYPERVISOR VIRTUAL CONSOLE DRIVER
9500 L:      linuxppc-dev@lists.ozlabs.org
9501 S:      Odd Fixes
9502 F:      drivers/tty/hvc/
9503
9504 I2C ACPI SUPPORT
9505 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
9506 L:      linux-i2c@vger.kernel.org
9507 L:      linux-acpi@vger.kernel.org
9508 S:      Maintained
9509 F:      drivers/i2c/i2c-core-acpi.c
9510
9511 I2C CONTROLLER DRIVER FOR NVIDIA GPU
9512 M:      Ajay Gupta <ajayg@nvidia.com>
9513 L:      linux-i2c@vger.kernel.org
9514 S:      Maintained
9515 F:      Documentation/i2c/busses/i2c-nvidia-gpu.rst
9516 F:      drivers/i2c/busses/i2c-nvidia-gpu.c
9517
9518 I2C MUXES
9519 M:      Peter Rosin <peda@axentia.se>
9520 L:      linux-i2c@vger.kernel.org
9521 S:      Maintained
9522 F:      Documentation/devicetree/bindings/i2c/i2c-arb*
9523 F:      Documentation/devicetree/bindings/i2c/i2c-gate*
9524 F:      Documentation/devicetree/bindings/i2c/i2c-mux*
9525 F:      Documentation/i2c/i2c-topology.rst
9526 F:      Documentation/i2c/muxes/
9527 F:      drivers/i2c/i2c-mux.c
9528 F:      drivers/i2c/muxes/
9529 F:      include/linux/i2c-mux.h
9530
9531 I2C MV64XXX MARVELL AND ALLWINNER DRIVER
9532 M:      Gregory CLEMENT <gregory.clement@bootlin.com>
9533 L:      linux-i2c@vger.kernel.org
9534 S:      Maintained
9535 F:      Documentation/devicetree/bindings/i2c/marvell,mv64xxx-i2c.yaml
9536 F:      drivers/i2c/busses/i2c-mv64xxx.c
9537
9538 I2C OVER PARALLEL PORT
9539 M:      Jean Delvare <jdelvare@suse.com>
9540 L:      linux-i2c@vger.kernel.org
9541 S:      Maintained
9542 F:      Documentation/i2c/busses/i2c-parport.rst
9543 F:      drivers/i2c/busses/i2c-parport.c
9544
9545 I2C SUBSYSTEM
9546 M:      Wolfram Sang <wsa@kernel.org>
9547 L:      linux-i2c@vger.kernel.org
9548 S:      Maintained
9549 W:      https://i2c.wiki.kernel.org/
9550 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
9551 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
9552 F:      Documentation/devicetree/bindings/i2c/i2c.txt
9553 F:      Documentation/i2c/
9554 F:      drivers/i2c/*
9555 F:      include/dt-bindings/i2c/i2c.h
9556 F:      include/linux/i2c-dev.h
9557 F:      include/linux/i2c-smbus.h
9558 F:      include/linux/i2c.h
9559 F:      include/uapi/linux/i2c-*.h
9560 F:      include/uapi/linux/i2c.h
9561
9562 I2C SUBSYSTEM HOST DRIVERS
9563 L:      linux-i2c@vger.kernel.org
9564 S:      Odd Fixes
9565 W:      https://i2c.wiki.kernel.org/
9566 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
9567 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
9568 F:      Documentation/devicetree/bindings/i2c/
9569 F:      drivers/i2c/algos/
9570 F:      drivers/i2c/busses/
9571 F:      include/dt-bindings/i2c/
9572
9573 I2C-TAOS-EVM DRIVER
9574 M:      Jean Delvare <jdelvare@suse.com>
9575 L:      linux-i2c@vger.kernel.org
9576 S:      Maintained
9577 F:      Documentation/i2c/busses/i2c-taos-evm.rst
9578 F:      drivers/i2c/busses/i2c-taos-evm.c
9579
9580 I2C-TINY-USB DRIVER
9581 M:      Till Harbaum <till@harbaum.org>
9582 L:      linux-i2c@vger.kernel.org
9583 S:      Maintained
9584 W:      http://www.harbaum.org/till/i2c_tiny_usb
9585 F:      drivers/i2c/busses/i2c-tiny-usb.c
9586
9587 I2C/SMBUS CONTROLLER DRIVERS FOR PC
9588 M:      Jean Delvare <jdelvare@suse.com>
9589 L:      linux-i2c@vger.kernel.org
9590 S:      Maintained
9591 F:      Documentation/i2c/busses/i2c-ali1535.rst
9592 F:      Documentation/i2c/busses/i2c-ali1563.rst
9593 F:      Documentation/i2c/busses/i2c-ali15x3.rst
9594 F:      Documentation/i2c/busses/i2c-amd756.rst
9595 F:      Documentation/i2c/busses/i2c-amd8111.rst
9596 F:      Documentation/i2c/busses/i2c-i801.rst
9597 F:      Documentation/i2c/busses/i2c-nforce2.rst
9598 F:      Documentation/i2c/busses/i2c-piix4.rst
9599 F:      Documentation/i2c/busses/i2c-sis5595.rst
9600 F:      Documentation/i2c/busses/i2c-sis630.rst
9601 F:      Documentation/i2c/busses/i2c-sis96x.rst
9602 F:      Documentation/i2c/busses/i2c-via.rst
9603 F:      Documentation/i2c/busses/i2c-viapro.rst
9604 F:      drivers/i2c/busses/i2c-ali1535.c
9605 F:      drivers/i2c/busses/i2c-ali1563.c
9606 F:      drivers/i2c/busses/i2c-ali15x3.c
9607 F:      drivers/i2c/busses/i2c-amd756-s4882.c
9608 F:      drivers/i2c/busses/i2c-amd756.c
9609 F:      drivers/i2c/busses/i2c-amd8111.c
9610 F:      drivers/i2c/busses/i2c-i801.c
9611 F:      drivers/i2c/busses/i2c-isch.c
9612 F:      drivers/i2c/busses/i2c-nforce2-s4985.c
9613 F:      drivers/i2c/busses/i2c-nforce2.c
9614 F:      drivers/i2c/busses/i2c-piix4.c
9615 F:      drivers/i2c/busses/i2c-sis5595.c
9616 F:      drivers/i2c/busses/i2c-sis630.c
9617 F:      drivers/i2c/busses/i2c-sis96x.c
9618 F:      drivers/i2c/busses/i2c-via.c
9619 F:      drivers/i2c/busses/i2c-viapro.c
9620
9621 I2C/SMBUS INTEL CHT WHISKEY COVE PMIC DRIVER
9622 M:      Hans de Goede <hdegoede@redhat.com>
9623 L:      linux-i2c@vger.kernel.org
9624 S:      Maintained
9625 F:      drivers/i2c/busses/i2c-cht-wc.c
9626
9627 I2C/SMBUS ISMT DRIVER
9628 M:      Seth Heasley <seth.heasley@intel.com>
9629 M:      Neil Horman <nhorman@tuxdriver.com>
9630 L:      linux-i2c@vger.kernel.org
9631 F:      Documentation/i2c/busses/i2c-ismt.rst
9632 F:      drivers/i2c/busses/i2c-ismt.c
9633
9634 I2C/SMBUS STUB DRIVER
9635 M:      Jean Delvare <jdelvare@suse.com>
9636 L:      linux-i2c@vger.kernel.org
9637 S:      Maintained
9638 F:      drivers/i2c/i2c-stub.c
9639
9640 I3C DRIVER FOR CADENCE I3C MASTER IP
9641 M:      Przemysław Gaj <pgaj@cadence.com>
9642 S:      Maintained
9643 F:      Documentation/devicetree/bindings/i3c/cdns,i3c-master.yaml
9644 F:      drivers/i3c/master/i3c-master-cdns.c
9645
9646 I3C DRIVER FOR SYNOPSYS DESIGNWARE
9647 M:      Vitor Soares <vitor.soares@synopsys.com>
9648 S:      Maintained
9649 F:      Documentation/devicetree/bindings/i3c/snps,dw-i3c-master.yaml
9650 F:      drivers/i3c/master/dw*
9651
9652 I3C SUBSYSTEM
9653 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
9654 L:      linux-i3c@lists.infradead.org (moderated for non-subscribers)
9655 S:      Maintained
9656 C:      irc://chat.freenode.net/linux-i3c
9657 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/i3c/linux.git
9658 F:      Documentation/ABI/testing/sysfs-bus-i3c
9659 F:      Documentation/devicetree/bindings/i3c/
9660 F:      Documentation/driver-api/i3c
9661 F:      drivers/i3c/
9662 F:      include/linux/i3c/
9663
9664 IA64 (Itanium) PLATFORM
9665 L:      linux-ia64@vger.kernel.org
9666 S:      Orphan
9667 F:      Documentation/ia64/
9668 F:      arch/ia64/
9669
9670 IBM Power 842 compression accelerator
9671 M:      Haren Myneni <haren@us.ibm.com>
9672 S:      Supported
9673 F:      crypto/842.c
9674 F:      drivers/crypto/nx/Kconfig
9675 F:      drivers/crypto/nx/Makefile
9676 F:      drivers/crypto/nx/nx-842*
9677 F:      include/linux/sw842.h
9678 F:      lib/842/
9679
9680 IBM Power in-Nest Crypto Acceleration
9681 M:      Breno Leitão <leitao@debian.org>
9682 M:      Nayna Jain <nayna@linux.ibm.com>
9683 M:      Paulo Flabiano Smorigo <pfsmorigo@gmail.com>
9684 L:      linux-crypto@vger.kernel.org
9685 S:      Supported
9686 F:      drivers/crypto/nx/Kconfig
9687 F:      drivers/crypto/nx/Makefile
9688 F:      drivers/crypto/nx/nx-aes*
9689 F:      drivers/crypto/nx/nx-sha*
9690 F:      drivers/crypto/nx/nx.*
9691 F:      drivers/crypto/nx/nx_csbcpb.h
9692 F:      drivers/crypto/nx/nx_debugfs.c
9693
9694 IBM Power IO DLPAR Driver for RPA-compliant PPC64 platform
9695 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
9696 L:      linux-pci@vger.kernel.org
9697 L:      linuxppc-dev@lists.ozlabs.org
9698 S:      Supported
9699 F:      drivers/pci/hotplug/rpadlpar*
9700
9701 IBM Power Linux RAID adapter
9702 M:      Brian King <brking@us.ibm.com>
9703 S:      Supported
9704 F:      drivers/scsi/ipr.*
9705
9706 IBM Power PCI Hotplug Driver for RPA-compliant PPC64 platform
9707 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
9708 L:      linux-pci@vger.kernel.org
9709 L:      linuxppc-dev@lists.ozlabs.org
9710 S:      Supported
9711 F:      drivers/pci/hotplug/rpaphp*
9712
9713 IBM Power SRIOV Virtual NIC Device Driver
9714 M:      Dany Madden <drt@linux.ibm.com>
9715 R:      Thomas Falcon <tlfalcon@linux.ibm.com>
9716 L:      netdev@vger.kernel.org
9717 S:      Supported
9718 F:      drivers/net/ethernet/ibm/ibmvnic.*
9719
9720 IBM Power Virtual Accelerator Switchboard
9721 L:      linuxppc-dev@lists.ozlabs.org
9722 S:      Supported
9723 F:      arch/powerpc/include/asm/vas.h
9724 F:      arch/powerpc/platforms/powernv/copy-paste.h
9725 F:      arch/powerpc/platforms/powernv/vas*
9726
9727 IBM Power Virtual Ethernet Device Driver
9728 M:      Nick Child <nnac123@linux.ibm.com>
9729 L:      netdev@vger.kernel.org
9730 S:      Supported
9731 F:      drivers/net/ethernet/ibm/ibmveth.*
9732
9733 IBM Power Virtual FC Device Drivers
9734 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
9735 L:      linux-scsi@vger.kernel.org
9736 S:      Supported
9737 F:      drivers/scsi/ibmvscsi/ibmvfc*
9738
9739 IBM Power Virtual Management Channel Driver
9740 M:      Brad Warrum <bwarrum@linux.ibm.com>
9741 M:      Ritu Agarwal <rituagar@linux.ibm.com>
9742 S:      Supported
9743 F:      drivers/misc/ibmvmc.*
9744
9745 IBM Power Virtual SCSI Device Drivers
9746 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
9747 L:      linux-scsi@vger.kernel.org
9748 S:      Supported
9749 F:      drivers/scsi/ibmvscsi/ibmvscsi*
9750 F:      include/scsi/viosrp.h
9751
9752 IBM Power Virtual SCSI Device Target Driver
9753 M:      Michael Cyr <mikecyr@linux.ibm.com>
9754 L:      linux-scsi@vger.kernel.org
9755 L:      target-devel@vger.kernel.org
9756 S:      Supported
9757 F:      drivers/scsi/ibmvscsi_tgt/
9758
9759 IBM Power VMX Cryptographic instructions
9760 M:      Breno Leitão <leitao@debian.org>
9761 M:      Nayna Jain <nayna@linux.ibm.com>
9762 M:      Paulo Flabiano Smorigo <pfsmorigo@gmail.com>
9763 L:      linux-crypto@vger.kernel.org
9764 S:      Supported
9765 F:      drivers/crypto/vmx/Kconfig
9766 F:      drivers/crypto/vmx/Makefile
9767 F:      drivers/crypto/vmx/aes*
9768 F:      drivers/crypto/vmx/ghash*
9769 F:      drivers/crypto/vmx/ppc-xlate.pl
9770 F:      drivers/crypto/vmx/vmx.c
9771
9772 IBM ServeRAID RAID DRIVER
9773 S:      Orphan
9774 F:      drivers/scsi/ips.*
9775
9776 ICH LPC AND GPIO DRIVER
9777 M:      Peter Tyser <ptyser@xes-inc.com>
9778 S:      Maintained
9779 F:      drivers/gpio/gpio-ich.c
9780 F:      drivers/mfd/lpc_ich.c
9781
9782 ICY I2C DRIVER
9783 M:      Max Staudt <max@enpas.org>
9784 L:      linux-i2c@vger.kernel.org
9785 S:      Maintained
9786 F:      drivers/i2c/busses/i2c-icy.c
9787
9788 IDEAPAD LAPTOP EXTRAS DRIVER
9789 M:      Ike Panhc <ike.pan@canonical.com>
9790 L:      platform-driver-x86@vger.kernel.org
9791 S:      Maintained
9792 W:      http://launchpad.net/ideapad-laptop
9793 F:      drivers/platform/x86/ideapad-laptop.c
9794
9795 IDEAPAD LAPTOP SLIDEBAR DRIVER
9796 M:      Andrey Moiseev <o2g.org.ru@gmail.com>
9797 L:      linux-input@vger.kernel.org
9798 S:      Maintained
9799 W:      https://github.com/o2genum/ideapad-slidebar
9800 F:      drivers/input/misc/ideapad_slidebar.c
9801
9802 IDMAPPED MOUNTS
9803 M:      Christian Brauner <brauner@kernel.org>
9804 M:      Seth Forshee <sforshee@kernel.org>
9805 L:      linux-fsdevel@vger.kernel.org
9806 S:      Maintained
9807 T:      git://git.kernel.org/pub/scm/linux/kernel/git/vfs/idmapping.git
9808 F:      Documentation/filesystems/idmappings.rst
9809 F:      tools/testing/selftests/mount_setattr/
9810 F:      include/linux/mnt_idmapping.h
9811
9812 IDT VersaClock 5 CLOCK DRIVER
9813 M:      Luca Ceresoli <luca@lucaceresoli.net>
9814 S:      Maintained
9815 F:      Documentation/devicetree/bindings/clock/idt,versaclock5.yaml
9816 F:      drivers/clk/clk-versaclock5.c
9817
9818 IEEE 802.15.4 SUBSYSTEM
9819 M:      Alexander Aring <alex.aring@gmail.com>
9820 M:      Stefan Schmidt <stefan@datenfreihafen.org>
9821 L:      linux-wpan@vger.kernel.org
9822 S:      Maintained
9823 W:      https://linux-wpan.org/
9824 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan.git
9825 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan-next.git
9826 F:      Documentation/networking/ieee802154.rst
9827 F:      drivers/net/ieee802154/
9828 F:      include/linux/ieee802154.h
9829 F:      include/linux/nl802154.h
9830 F:      include/net/af_ieee802154.h
9831 F:      include/net/cfg802154.h
9832 F:      include/net/ieee802154_netdev.h
9833 F:      include/net/mac802154.h
9834 F:      include/net/nl802154.h
9835 F:      net/ieee802154/
9836 F:      net/mac802154/
9837
9838 IFE PROTOCOL
9839 M:      Yotam Gigi <yotam.gi@gmail.com>
9840 M:      Jamal Hadi Salim <jhs@mojatatu.com>
9841 F:      include/net/ife.h
9842 F:      include/uapi/linux/ife.h
9843 F:      net/ife
9844
9845 IGORPLUG-USB IR RECEIVER
9846 M:      Sean Young <sean@mess.org>
9847 L:      linux-media@vger.kernel.org
9848 S:      Maintained
9849 F:      drivers/media/rc/igorplugusb.c
9850
9851 IGUANAWORKS USB IR TRANSCEIVER
9852 M:      Sean Young <sean@mess.org>
9853 L:      linux-media@vger.kernel.org
9854 S:      Maintained
9855 F:      drivers/media/rc/iguanair.c
9856
9857 IIO DIGITAL POTENTIOMETER DAC
9858 M:      Peter Rosin <peda@axentia.se>
9859 L:      linux-iio@vger.kernel.org
9860 S:      Maintained
9861 F:      Documentation/ABI/testing/sysfs-bus-iio-dac-dpot-dac
9862 F:      Documentation/devicetree/bindings/iio/dac/dpot-dac.yaml
9863 F:      drivers/iio/dac/dpot-dac.c
9864
9865 IIO ENVELOPE DETECTOR
9866 M:      Peter Rosin <peda@axentia.se>
9867 L:      linux-iio@vger.kernel.org
9868 S:      Maintained
9869 F:      Documentation/ABI/testing/sysfs-bus-iio-adc-envelope-detector
9870 F:      Documentation/devicetree/bindings/iio/adc/envelope-detector.yaml
9871 F:      drivers/iio/adc/envelope-detector.c
9872
9873 IIO MULTIPLEXER
9874 M:      Peter Rosin <peda@axentia.se>
9875 L:      linux-iio@vger.kernel.org
9876 S:      Maintained
9877 F:      Documentation/devicetree/bindings/iio/multiplexer/io-channel-mux.yaml
9878 F:      drivers/iio/multiplexer/iio-mux.c
9879
9880 IIO SCMI BASED DRIVER
9881 M:      Jyoti Bhayana <jbhayana@google.com>
9882 L:      linux-iio@vger.kernel.org
9883 S:      Maintained
9884 F:      drivers/iio/common/scmi_sensors/scmi_iio.c
9885
9886 IIO SUBSYSTEM AND DRIVERS
9887 M:      Jonathan Cameron <jic23@kernel.org>
9888 R:      Lars-Peter Clausen <lars@metafoo.de>
9889 L:      linux-iio@vger.kernel.org
9890 S:      Maintained
9891 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
9892 F:      Documentation/ABI/testing/configfs-iio*
9893 F:      Documentation/ABI/testing/sysfs-bus-iio*
9894 F:      Documentation/devicetree/bindings/iio/
9895 F:      drivers/iio/
9896 F:      drivers/staging/iio/
9897 F:      include/dt-bindings/iio/
9898 F:      include/linux/iio/
9899 F:      tools/iio/
9900
9901 IIO UNIT CONVERTER
9902 M:      Peter Rosin <peda@axentia.se>
9903 L:      linux-iio@vger.kernel.org
9904 S:      Maintained
9905 F:      Documentation/devicetree/bindings/iio/afe/current-sense-amplifier.yaml
9906 F:      Documentation/devicetree/bindings/iio/afe/current-sense-shunt.yaml
9907 F:      Documentation/devicetree/bindings/iio/afe/voltage-divider.yaml
9908 F:      drivers/iio/afe/iio-rescale.c
9909
9910 IKANOS/ADI EAGLE ADSL USB DRIVER
9911 M:      Matthieu Castet <castet.matthieu@free.fr>
9912 M:      Stanislaw Gruszka <stf_xl@wp.pl>
9913 S:      Maintained
9914 F:      drivers/usb/atm/ueagle-atm.c
9915
9916 IMAGIS TOUCHSCREEN DRIVER
9917 M:      Markuss Broks <markuss.broks@gmail.com>
9918 S:      Maintained
9919 F:      Documentation/devicetree/bindings/input/touchscreen/imagis,ist3038c.yaml
9920 F:      drivers/input/touchscreen/imagis.c
9921
9922 IMGTEC ASCII LCD DRIVER
9923 M:      Paul Burton <paulburton@kernel.org>
9924 S:      Maintained
9925 F:      Documentation/devicetree/bindings/auxdisplay/img,ascii-lcd.yaml
9926 F:      drivers/auxdisplay/img-ascii-lcd.c
9927
9928 IMGTEC IR DECODER DRIVER
9929 S:      Orphan
9930 F:      drivers/media/rc/img-ir/
9931
9932 IMON SOUNDGRAPH USB IR RECEIVER
9933 M:      Sean Young <sean@mess.org>
9934 L:      linux-media@vger.kernel.org
9935 S:      Maintained
9936 F:      drivers/media/rc/imon.c
9937 F:      drivers/media/rc/imon_raw.c
9938
9939 IMS TWINTURBO FRAMEBUFFER DRIVER
9940 L:      linux-fbdev@vger.kernel.org
9941 S:      Orphan
9942 F:      drivers/video/fbdev/imsttfb.c
9943
9944 INA209 HARDWARE MONITOR DRIVER
9945 M:      Guenter Roeck <linux@roeck-us.net>
9946 L:      linux-hwmon@vger.kernel.org
9947 S:      Maintained
9948 F:      Documentation/devicetree/bindings/hwmon/ti,ina2xx.yaml
9949 F:      Documentation/hwmon/ina209.rst
9950 F:      drivers/hwmon/ina209.c
9951
9952 INA2XX HARDWARE MONITOR DRIVER
9953 M:      Guenter Roeck <linux@roeck-us.net>
9954 L:      linux-hwmon@vger.kernel.org
9955 S:      Maintained
9956 F:      Documentation/hwmon/ina2xx.rst
9957 F:      drivers/hwmon/ina2xx.c
9958 F:      include/linux/platform_data/ina2xx.h
9959
9960 INDUSTRY PACK SUBSYSTEM (IPACK)
9961 M:      Samuel Iglesias Gonsalvez <siglesias@igalia.com>
9962 M:      Jens Taprogge <jens.taprogge@taprogge.org>
9963 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
9964 L:      industrypack-devel@lists.sourceforge.net
9965 S:      Maintained
9966 W:      http://industrypack.sourceforge.net
9967 F:      drivers/ipack/
9968
9969 INFINEON DPS310 Driver
9970 M:      Eddie James <eajames@linux.ibm.com>
9971 L:      linux-iio@vger.kernel.org
9972 S:      Maintained
9973 F:      drivers/iio/pressure/dps310.c
9974
9975 INFINIBAND SUBSYSTEM
9976 M:      Jason Gunthorpe <jgg@nvidia.com>
9977 M:      Leon Romanovsky <leonro@nvidia.com>
9978 L:      linux-rdma@vger.kernel.org
9979 S:      Supported
9980 W:      https://github.com/linux-rdma/rdma-core
9981 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
9982 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rdma/rdma.git
9983 F:      Documentation/devicetree/bindings/infiniband/
9984 F:      Documentation/infiniband/
9985 F:      drivers/infiniband/
9986 F:      include/rdma/
9987 F:      include/trace/events/ib_mad.h
9988 F:      include/trace/events/ib_umad.h
9989 F:      include/uapi/linux/if_infiniband.h
9990 F:      include/uapi/rdma/
9991 F:      samples/bpf/ibumad_kern.c
9992 F:      samples/bpf/ibumad_user.c
9993
9994 INGENIC JZ4780 NAND DRIVER
9995 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
9996 L:      linux-mtd@lists.infradead.org
9997 L:      linux-mips@vger.kernel.org
9998 S:      Maintained
9999 F:      drivers/mtd/nand/raw/ingenic/
10000
10001 INGENIC JZ47xx SoCs
10002 M:      Paul Cercueil <paul@crapouillou.net>
10003 L:      linux-mips@vger.kernel.org
10004 S:      Maintained
10005 F:      arch/mips/boot/dts/ingenic/
10006 F:      arch/mips/generic/board-ingenic.c
10007 F:      arch/mips/include/asm/mach-ingenic/
10008 F:      arch/mips/ingenic/Kconfig
10009 F:      drivers/clk/ingenic/
10010 F:      drivers/dma/dma-jz4780.c
10011 F:      drivers/gpu/drm/ingenic/
10012 F:      drivers/i2c/busses/i2c-jz4780.c
10013 F:      drivers/iio/adc/ingenic-adc.c
10014 F:      drivers/irqchip/irq-ingenic.c
10015 F:      drivers/memory/jz4780-nemc.c
10016 F:      drivers/mmc/host/jz4740_mmc.c
10017 F:      drivers/mtd/nand/raw/ingenic/
10018 F:      drivers/pinctrl/pinctrl-ingenic.c
10019 F:      drivers/power/supply/ingenic-battery.c
10020 F:      drivers/pwm/pwm-jz4740.c
10021 F:      drivers/remoteproc/ingenic_rproc.c
10022 F:      drivers/rtc/rtc-jz4740.c
10023 F:      drivers/tty/serial/8250/8250_ingenic.c
10024 F:      drivers/usb/musb/jz4740.c
10025 F:      drivers/watchdog/jz4740_wdt.c
10026 F:      include/dt-bindings/iio/adc/ingenic,adc.h
10027 F:      include/linux/mfd/ingenic-tcu.h
10028 F:      sound/soc/codecs/jz47*
10029 F:      sound/soc/jz4740/
10030
10031 INJOINIC IP5xxx POWER BANK IC DRIVER
10032 M:      Samuel Holland <samuel@sholland.org>
10033 S:      Maintained
10034 F:      drivers/power/supply/ip5xxx_power.c
10035
10036 INOTIFY
10037 M:      Jan Kara <jack@suse.cz>
10038 R:      Amir Goldstein <amir73il@gmail.com>
10039 L:      linux-fsdevel@vger.kernel.org
10040 S:      Maintained
10041 F:      Documentation/filesystems/inotify.rst
10042 F:      fs/notify/inotify/
10043 F:      include/linux/inotify.h
10044 F:      include/uapi/linux/inotify.h
10045
10046 INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
10047 M:      Dmitry Torokhov <dmitry.torokhov@gmail.com>
10048 L:      linux-input@vger.kernel.org
10049 S:      Maintained
10050 Q:      http://patchwork.kernel.org/project/linux-input/list/
10051 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
10052 F:      Documentation/devicetree/bindings/input/
10053 F:      Documentation/devicetree/bindings/serio/
10054 F:      Documentation/input/
10055 F:      drivers/input/
10056 F:      include/dt-bindings/input/
10057 F:      include/linux/input.h
10058 F:      include/linux/input/
10059 F:      include/uapi/linux/input-event-codes.h
10060 F:      include/uapi/linux/input.h
10061
10062 INPUT MULTITOUCH (MT) PROTOCOL
10063 M:      Henrik Rydberg <rydberg@bitmath.org>
10064 L:      linux-input@vger.kernel.org
10065 S:      Odd fixes
10066 F:      Documentation/input/multi-touch-protocol.rst
10067 F:      drivers/input/input-mt.c
10068 K:      \b(ABS|SYN)_MT_
10069
10070 INSIDE SECURE CRYPTO DRIVER
10071 M:      Antoine Tenart <atenart@kernel.org>
10072 L:      linux-crypto@vger.kernel.org
10073 S:      Maintained
10074 F:      drivers/crypto/inside-secure/
10075
10076 INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
10077 M:      Mimi Zohar <zohar@linux.ibm.com>
10078 M:      Dmitry Kasatkin <dmitry.kasatkin@gmail.com>
10079 L:      linux-integrity@vger.kernel.org
10080 S:      Supported
10081 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/zohar/linux-integrity.git
10082 F:      security/integrity/ima/
10083 F:      security/integrity/
10084
10085 INTEL 810/815 FRAMEBUFFER DRIVER
10086 M:      Antonino Daplas <adaplas@gmail.com>
10087 L:      linux-fbdev@vger.kernel.org
10088 S:      Maintained
10089 F:      drivers/video/fbdev/i810/
10090
10091 INTEL 8255 GPIO DRIVER
10092 M:      William Breathitt Gray <william.gray@linaro.org>
10093 L:      linux-gpio@vger.kernel.org
10094 S:      Maintained
10095 F:      drivers/gpio/gpio-i8255.c
10096 F:      drivers/gpio/gpio-i8255.h
10097
10098 INTEL ASoC DRIVERS
10099 M:      Cezary Rojewski <cezary.rojewski@intel.com>
10100 M:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
10101 M:      Liam Girdwood <liam.r.girdwood@linux.intel.com>
10102 M:      Peter Ujfalusi <peter.ujfalusi@linux.intel.com>
10103 M:      Bard Liao <yung-chuan.liao@linux.intel.com>
10104 M:      Ranjani Sridharan <ranjani.sridharan@linux.intel.com>
10105 M:      Kai Vehmanen <kai.vehmanen@linux.intel.com>
10106 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10107 S:      Supported
10108 F:      sound/soc/intel/
10109
10110 INTEL ATOMISP2 DUMMY / POWER-MANAGEMENT DRIVER
10111 M:      Hans de Goede <hdegoede@redhat.com>
10112 L:      platform-driver-x86@vger.kernel.org
10113 S:      Maintained
10114 F:      drivers/platform/x86/intel/atomisp2/pm.c
10115
10116 INTEL ATOMISP2 LED DRIVER
10117 M:      Hans de Goede <hdegoede@redhat.com>
10118 L:      platform-driver-x86@vger.kernel.org
10119 S:      Maintained
10120 F:      drivers/platform/x86/intel/atomisp2/led.c
10121
10122 INTEL BIOS SAR INT1092 DRIVER
10123 M:      Shravan Sudhakar <s.shravan@intel.com>
10124 M:      Intel Corporation <linuxwwan@intel.com>
10125 L:      platform-driver-x86@vger.kernel.org
10126 S:      Maintained
10127 F:      drivers/platform/x86/intel/int1092/
10128
10129 INTEL BROXTON PMC DRIVER
10130 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
10131 M:      Zha Qipeng <qipeng.zha@intel.com>
10132 S:      Maintained
10133 F:      drivers/mfd/intel_pmc_bxt.c
10134 F:      include/linux/mfd/intel_pmc_bxt.h
10135
10136 INTEL C600 SERIES SAS CONTROLLER DRIVER
10137 M:      Artur Paszkiewicz <artur.paszkiewicz@intel.com>
10138 L:      linux-scsi@vger.kernel.org
10139 S:      Supported
10140 T:      git git://git.code.sf.net/p/intel-sas/isci
10141 F:      drivers/scsi/isci/
10142
10143 INTEL CPU family model numbers
10144 M:      Tony Luck <tony.luck@intel.com>
10145 M:      x86@kernel.org
10146 L:      linux-kernel@vger.kernel.org
10147 S:      Supported
10148 F:      arch/x86/include/asm/intel-family.h
10149
10150 INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
10151 M:      Jani Nikula <jani.nikula@linux.intel.com>
10152 M:      Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
10153 M:      Rodrigo Vivi <rodrigo.vivi@intel.com>
10154 M:      Tvrtko Ursulin <tvrtko.ursulin@linux.intel.com>
10155 L:      intel-gfx@lists.freedesktop.org
10156 S:      Supported
10157 W:      https://01.org/linuxgraphics/
10158 Q:      http://patchwork.freedesktop.org/project/intel-gfx/
10159 B:      https://gitlab.freedesktop.org/drm/intel/-/wikis/How-to-file-i915-bugs
10160 C:      irc://irc.oftc.net/intel-gfx
10161 T:      git git://anongit.freedesktop.org/drm-intel
10162 F:      Documentation/gpu/i915.rst
10163 F:      drivers/gpu/drm/i915/
10164 F:      include/drm/i915*
10165 F:      include/uapi/drm/i915_drm.h
10166
10167 INTEL ETHERNET DRIVERS
10168 M:      Jesse Brandeburg <jesse.brandeburg@intel.com>
10169 M:      Tony Nguyen <anthony.l.nguyen@intel.com>
10170 L:      intel-wired-lan@lists.osuosl.org (moderated for non-subscribers)
10171 S:      Supported
10172 W:      http://www.intel.com/support/feedback.htm
10173 W:      http://e1000.sourceforge.net/
10174 Q:      http://patchwork.ozlabs.org/project/intel-wired-lan/list/
10175 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tnguy/net-queue.git
10176 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tnguy/next-queue.git
10177 F:      Documentation/networking/device_drivers/ethernet/intel/
10178 F:      drivers/net/ethernet/intel/
10179 F:      drivers/net/ethernet/intel/*/
10180 F:      include/linux/avf/virtchnl.h
10181 F:      include/linux/net/intel/iidc.h
10182
10183 INTEL ETHERNET PROTOCOL DRIVER FOR RDMA
10184 M:      Mustafa Ismail <mustafa.ismail@intel.com>
10185 M:      Shiraz Saleem <shiraz.saleem@intel.com>
10186 L:      linux-rdma@vger.kernel.org
10187 S:      Supported
10188 F:      drivers/infiniband/hw/irdma/
10189 F:      include/uapi/rdma/irdma-abi.h
10190
10191 INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
10192 M:      Maik Broemme <mbroemme@libmpq.org>
10193 L:      linux-fbdev@vger.kernel.org
10194 S:      Maintained
10195 F:      Documentation/fb/intelfb.rst
10196 F:      drivers/video/fbdev/intelfb/
10197
10198 INTEL GPIO DRIVERS
10199 M:      Andy Shevchenko <andy@kernel.org>
10200 L:      linux-gpio@vger.kernel.org
10201 S:      Supported
10202 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
10203 F:      drivers/gpio/gpio-ich.c
10204 F:      drivers/gpio/gpio-merrifield.c
10205 F:      drivers/gpio/gpio-ml-ioh.c
10206 F:      drivers/gpio/gpio-pch.c
10207 F:      drivers/gpio/gpio-sch.c
10208 F:      drivers/gpio/gpio-sodaville.c
10209
10210 INTEL GVT-g DRIVERS (Intel GPU Virtualization)
10211 M:      Zhenyu Wang <zhenyuw@linux.intel.com>
10212 M:      Zhi Wang <zhi.a.wang@intel.com>
10213 L:      intel-gvt-dev@lists.freedesktop.org
10214 L:      intel-gfx@lists.freedesktop.org
10215 S:      Supported
10216 W:      https://01.org/igvt-g
10217 T:      git https://github.com/intel/gvt-linux.git
10218 F:      drivers/gpu/drm/i915/gvt/
10219
10220 INTEL HID EVENT DRIVER
10221 M:      Alex Hung <alex.hung@canonical.com>
10222 L:      platform-driver-x86@vger.kernel.org
10223 S:      Maintained
10224 F:      drivers/platform/x86/intel/hid.c
10225
10226 INTEL I/OAT DMA DRIVER
10227 M:      Dave Jiang <dave.jiang@intel.com>
10228 R:      Dan Williams <dan.j.williams@intel.com>
10229 L:      dmaengine@vger.kernel.org
10230 S:      Supported
10231 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
10232 F:      drivers/dma/ioat*
10233
10234 INTEL IDXD DRIVER
10235 M:      Fenghua Yu <fenghua.yu@intel.com>
10236 M:      Dave Jiang <dave.jiang@intel.com>
10237 L:      dmaengine@vger.kernel.org
10238 S:      Supported
10239 F:      drivers/dma/idxd/*
10240 F:      include/uapi/linux/idxd.h
10241
10242 INTEL IDLE DRIVER
10243 M:      Jacob Pan <jacob.jun.pan@linux.intel.com>
10244 M:      Len Brown <lenb@kernel.org>
10245 L:      linux-pm@vger.kernel.org
10246 S:      Supported
10247 B:      https://bugzilla.kernel.org
10248 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
10249 F:      drivers/idle/intel_idle.c
10250
10251 INTEL IN FIELD SCAN (IFS) DEVICE
10252 M:      Jithu Joseph <jithu.joseph@intel.com>
10253 R:      Ashok Raj <ashok.raj@intel.com>
10254 R:      Tony Luck <tony.luck@intel.com>
10255 S:      Maintained
10256 F:      drivers/platform/x86/intel/ifs
10257 F:      include/trace/events/intel_ifs.h
10258
10259 INTEL INTEGRATED SENSOR HUB DRIVER
10260 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
10261 M:      Jiri Kosina <jikos@kernel.org>
10262 L:      linux-input@vger.kernel.org
10263 S:      Maintained
10264 F:      drivers/hid/intel-ish-hid/
10265
10266 INTEL IOMMU (VT-d)
10267 M:      David Woodhouse <dwmw2@infradead.org>
10268 M:      Lu Baolu <baolu.lu@linux.intel.com>
10269 L:      iommu@lists.linux.dev
10270 S:      Supported
10271 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
10272 F:      drivers/iommu/intel/
10273 F:      include/linux/intel-svm.h
10274
10275 INTEL IOP-ADMA DMA DRIVER
10276 R:      Dan Williams <dan.j.williams@intel.com>
10277 S:      Odd fixes
10278 F:      drivers/dma/iop-adma.c
10279
10280 INTEL IPU3 CSI-2 CIO2 DRIVER
10281 M:      Yong Zhi <yong.zhi@intel.com>
10282 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
10283 M:      Bingbu Cao <bingbu.cao@intel.com>
10284 M:      Dan Scally <djrscally@gmail.com>
10285 R:      Tianshu Qiu <tian.shu.qiu@intel.com>
10286 L:      linux-media@vger.kernel.org
10287 S:      Maintained
10288 T:      git git://linuxtv.org/media_tree.git
10289 F:      Documentation/userspace-api/media/v4l/pixfmt-srggb10-ipu3.rst
10290 F:      drivers/media/pci/intel/ipu3/
10291
10292 INTEL IPU3 CSI-2 IMGU DRIVER
10293 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
10294 R:      Bingbu Cao <bingbu.cao@intel.com>
10295 R:      Tianshu Qiu <tian.shu.qiu@intel.com>
10296 L:      linux-media@vger.kernel.org
10297 S:      Maintained
10298 F:      Documentation/admin-guide/media/ipu3.rst
10299 F:      Documentation/admin-guide/media/ipu3_rcb.svg
10300 F:      Documentation/userspace-api/media/v4l/pixfmt-meta-intel-ipu3.rst
10301 F:      drivers/staging/media/ipu3/
10302
10303 INTEL IXP4XX CRYPTO SUPPORT
10304 M:      Corentin Labbe <clabbe@baylibre.com>
10305 L:      linux-crypto@vger.kernel.org
10306 S:      Maintained
10307 F:      drivers/crypto/ixp4xx_crypto.c
10308
10309 INTEL ISHTP ECLITE DRIVER
10310 M:      Sumesh K Naduvalath <sumesh.k.naduvalath@intel.com>
10311 L:      platform-driver-x86@vger.kernel.org
10312 S:      Supported
10313 F:      drivers/platform/x86/intel/ishtp_eclite.c
10314
10315 INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
10316 M:      Krzysztof Halasa <khalasa@piap.pl>
10317 S:      Maintained
10318 F:      drivers/net/ethernet/xscale/ixp4xx_eth.c
10319 F:      drivers/net/wan/ixp4xx_hss.c
10320 F:      drivers/soc/ixp4xx/ixp4xx-npe.c
10321 F:      drivers/soc/ixp4xx/ixp4xx-qmgr.c
10322 F:      include/linux/soc/ixp4xx/npe.h
10323 F:      include/linux/soc/ixp4xx/qmgr.h
10324
10325 INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
10326 M:      Deepak Saxena <dsaxena@plexity.net>
10327 S:      Maintained
10328 F:      Documentation/devicetree/bindings/rng/intel,ixp46x-rng.yaml
10329 F:      drivers/char/hw_random/ixp4xx-rng.c
10330
10331 INTEL KEEM BAY DRM DRIVER
10332 M:      Anitha Chrisanthus <anitha.chrisanthus@intel.com>
10333 M:      Edmund Dea <edmund.j.dea@intel.com>
10334 S:      Maintained
10335 F:      Documentation/devicetree/bindings/display/intel,keembay-display.yaml
10336 F:      drivers/gpu/drm/kmb/
10337
10338 INTEL KEEM BAY OCS AES/SM4 CRYPTO DRIVER
10339 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
10340 S:      Maintained
10341 F:      Documentation/devicetree/bindings/crypto/intel,keembay-ocs-aes.yaml
10342 F:      drivers/crypto/keembay/Kconfig
10343 F:      drivers/crypto/keembay/Makefile
10344 F:      drivers/crypto/keembay/keembay-ocs-aes-core.c
10345 F:      drivers/crypto/keembay/ocs-aes.c
10346 F:      drivers/crypto/keembay/ocs-aes.h
10347
10348 INTEL KEEM BAY OCS ECC CRYPTO DRIVER
10349 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
10350 M:      Prabhjot Khurana <prabhjot.khurana@intel.com>
10351 M:      Mark Gross <mgross@linux.intel.com>
10352 S:      Maintained
10353 F:      Documentation/devicetree/bindings/crypto/intel,keembay-ocs-ecc.yaml
10354 F:      drivers/crypto/keembay/Kconfig
10355 F:      drivers/crypto/keembay/Makefile
10356 F:      drivers/crypto/keembay/keembay-ocs-ecc.c
10357
10358 INTEL KEEM BAY OCS HCU CRYPTO DRIVER
10359 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
10360 M:      Declan Murphy <declan.murphy@intel.com>
10361 S:      Maintained
10362 F:      Documentation/devicetree/bindings/crypto/intel,keembay-ocs-hcu.yaml
10363 F:      drivers/crypto/keembay/Kconfig
10364 F:      drivers/crypto/keembay/Makefile
10365 F:      drivers/crypto/keembay/keembay-ocs-hcu-core.c
10366 F:      drivers/crypto/keembay/ocs-hcu.c
10367 F:      drivers/crypto/keembay/ocs-hcu.h
10368
10369 INTEL THUNDER BAY EMMC PHY DRIVER
10370 M:      Nandhini Srikandan <nandhini.srikandan@intel.com>
10371 M:      Rashmi A <rashmi.a@intel.com>
10372 S:      Maintained
10373 F:      Documentation/devicetree/bindings/phy/intel,phy-thunderbay-emmc.yaml
10374 F:      drivers/phy/intel/phy-intel-thunderbay-emmc.c
10375
10376 INTEL MANAGEMENT ENGINE (mei)
10377 M:      Tomas Winkler <tomas.winkler@intel.com>
10378 L:      linux-kernel@vger.kernel.org
10379 S:      Supported
10380 F:      Documentation/driver-api/mei/*
10381 F:      drivers/misc/mei/
10382 F:      drivers/watchdog/mei_wdt.c
10383 F:      include/linux/mei_aux.h
10384 F:      include/linux/mei_cl_bus.h
10385 F:      include/uapi/linux/mei.h
10386 F:      samples/mei/*
10387
10388 INTEL MAX 10 BMC MFD DRIVER
10389 M:      Xu Yilun <yilun.xu@intel.com>
10390 R:      Tom Rix <trix@redhat.com>
10391 S:      Maintained
10392 F:      Documentation/ABI/testing/sysfs-driver-intel-m10-bmc
10393 F:      Documentation/hwmon/intel-m10-bmc-hwmon.rst
10394 F:      drivers/hwmon/intel-m10-bmc-hwmon.c
10395 F:      drivers/mfd/intel-m10-bmc.c
10396 F:      include/linux/mfd/intel-m10-bmc.h
10397
10398 INTEL MENLOW THERMAL DRIVER
10399 M:      Sujith Thomas <sujith.thomas@intel.com>
10400 L:      linux-pm@vger.kernel.org
10401 S:      Supported
10402 F:      drivers/thermal/intel/intel_menlow.c
10403
10404 INTEL P-Unit IPC DRIVER
10405 M:      Zha Qipeng <qipeng.zha@intel.com>
10406 L:      platform-driver-x86@vger.kernel.org
10407 S:      Maintained
10408 F:      arch/x86/include/asm/intel_punit_ipc.h
10409 F:      drivers/platform/x86/intel/punit_ipc.c
10410
10411 INTEL PMC CORE DRIVER
10412 M:      Rajneesh Bhardwaj <irenic.rajneesh@gmail.com>
10413 M:      David E Box <david.e.box@intel.com>
10414 L:      platform-driver-x86@vger.kernel.org
10415 S:      Maintained
10416 F:      Documentation/ABI/testing/sysfs-platform-intel-pmc
10417 F:      drivers/platform/x86/intel/pmc/
10418
10419 INTEL PMIC GPIO DRIVERS
10420 M:      Andy Shevchenko <andy@kernel.org>
10421 S:      Supported
10422 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
10423 F:      drivers/gpio/gpio-*cove.c
10424
10425 INTEL PMIC MULTIFUNCTION DEVICE DRIVERS
10426 M:      Andy Shevchenko <andy@kernel.org>
10427 S:      Supported
10428 F:      drivers/mfd/intel_soc_pmic*
10429 F:      include/linux/mfd/intel_soc_pmic*
10430
10431 INTEL PMT DRIVERS
10432 M:      David E. Box <david.e.box@linux.intel.com>
10433 S:      Supported
10434 F:      drivers/platform/x86/intel/pmt/
10435
10436 INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
10437 M:      Stanislav Yakovlev <stas.yakovlev@gmail.com>
10438 L:      linux-wireless@vger.kernel.org
10439 S:      Maintained
10440 F:      Documentation/networking/device_drivers/wifi/intel/ipw2100.rst
10441 F:      Documentation/networking/device_drivers/wifi/intel/ipw2200.rst
10442 F:      drivers/net/wireless/intel/ipw2x00/
10443
10444 INTEL PSTATE DRIVER
10445 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
10446 M:      Len Brown <lenb@kernel.org>
10447 L:      linux-pm@vger.kernel.org
10448 S:      Supported
10449 F:      drivers/cpufreq/intel_pstate.c
10450
10451 INTEL QUADRATURE ENCODER PERIPHERAL DRIVER
10452 M:      Jarkko Nikula <jarkko.nikula@linux.intel.com>
10453 L:      linux-iio@vger.kernel.org
10454 F:      drivers/counter/intel-qep.c
10455
10456 INTEL SCU DRIVERS
10457 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
10458 S:      Maintained
10459 F:      arch/x86/include/asm/intel_scu_ipc.h
10460 F:      drivers/platform/x86/intel_scu_*
10461
10462 INTEL SDSI DRIVER
10463 M:      David E. Box <david.e.box@linux.intel.com>
10464 S:      Supported
10465 F:      drivers/platform/x86/intel/sdsi.c
10466 F:      tools/arch/x86/intel_sdsi/
10467 F:      tools/testing/selftests/drivers/sdsi/
10468
10469 INTEL SKYLAKE INT3472 ACPI DEVICE DRIVER
10470 M:      Daniel Scally <djrscally@gmail.com>
10471 S:      Maintained
10472 F:      drivers/platform/x86/intel/int3472/
10473
10474 INTEL SPEED SELECT TECHNOLOGY
10475 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
10476 L:      platform-driver-x86@vger.kernel.org
10477 S:      Maintained
10478 F:      drivers/platform/x86/intel/speed_select_if/
10479 F:      include/uapi/linux/isst_if.h
10480 F:      tools/power/x86/intel-speed-select/
10481
10482 INTEL STRATIX10 FIRMWARE DRIVERS
10483 M:      Dinh Nguyen <dinguyen@kernel.org>
10484 L:      linux-kernel@vger.kernel.org
10485 S:      Maintained
10486 F:      Documentation/ABI/testing/sysfs-devices-platform-stratix10-rsu
10487 F:      Documentation/devicetree/bindings/firmware/intel,stratix10-svc.txt
10488 F:      drivers/firmware/stratix10-rsu.c
10489 F:      drivers/firmware/stratix10-svc.c
10490 F:      include/linux/firmware/intel/stratix10-smc.h
10491 F:      include/linux/firmware/intel/stratix10-svc-client.h
10492 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
10493
10494 INTEL TELEMETRY DRIVER
10495 M:      Rajneesh Bhardwaj <irenic.rajneesh@gmail.com>
10496 M:      "David E. Box" <david.e.box@linux.intel.com>
10497 L:      platform-driver-x86@vger.kernel.org
10498 S:      Maintained
10499 F:      arch/x86/include/asm/intel_telemetry.h
10500 F:      drivers/platform/x86/intel/telemetry/
10501
10502 INTEL UNCORE FREQUENCY CONTROL
10503 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
10504 L:      platform-driver-x86@vger.kernel.org
10505 S:      Maintained
10506 F:      Documentation/admin-guide/pm/intel_uncore_frequency_scaling.rst
10507 F:      drivers/platform/x86/intel/uncore-frequency/
10508
10509 INTEL VENDOR SPECIFIC EXTENDED CAPABILITIES DRIVER
10510 M:      David E. Box <david.e.box@linux.intel.com>
10511 S:      Supported
10512 F:      drivers/platform/x86/intel/vsec.*
10513
10514 INTEL VIRTUAL BUTTON DRIVER
10515 M:      AceLan Kao <acelan.kao@canonical.com>
10516 L:      platform-driver-x86@vger.kernel.org
10517 S:      Maintained
10518 F:      drivers/platform/x86/intel/vbtn.c
10519
10520 INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
10521 M:      Stanislaw Gruszka <stf_xl@wp.pl>
10522 L:      linux-wireless@vger.kernel.org
10523 S:      Supported
10524 F:      drivers/net/wireless/intel/iwlegacy/
10525
10526 INTEL WIRELESS WIFI LINK (iwlwifi)
10527 M:      Gregory Greenman <gregory.greenman@intel.com>
10528 L:      linux-wireless@vger.kernel.org
10529 S:      Supported
10530 W:      https://wireless.wiki.kernel.org/en/users/drivers/iwlwifi
10531 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
10532 F:      drivers/net/wireless/intel/iwlwifi/
10533
10534 INTEL WMI SLIM BOOTLOADER (SBL) FIRMWARE UPDATE DRIVER
10535 M:      Jithu Joseph <jithu.joseph@intel.com>
10536 R:      Maurice Ma <maurice.ma@intel.com>
10537 S:      Maintained
10538 W:      https://slimbootloader.github.io/security/firmware-update.html
10539 F:      drivers/platform/x86/intel/wmi/sbl-fw-update.c
10540
10541 INTEL WMI THUNDERBOLT FORCE POWER DRIVER
10542 L:      Dell.Client.Kernel@dell.com
10543 S:      Maintained
10544 F:      drivers/platform/x86/intel/wmi/thunderbolt.c
10545
10546 INTEL WWAN IOSM DRIVER
10547 M:      M Chetan Kumar <m.chetan.kumar@intel.com>
10548 M:      Intel Corporation <linuxwwan@intel.com>
10549 L:      netdev@vger.kernel.org
10550 S:      Maintained
10551 F:      drivers/net/wwan/iosm/
10552
10553 INTEL(R) TRACE HUB
10554 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
10555 S:      Supported
10556 F:      Documentation/trace/intel_th.rst
10557 F:      drivers/hwtracing/intel_th/
10558 F:      include/linux/intel_th.h
10559
10560 INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
10561 M:      Ning Sun <ning.sun@intel.com>
10562 L:      tboot-devel@lists.sourceforge.net
10563 S:      Supported
10564 W:      http://tboot.sourceforge.net
10565 T:      hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
10566 F:      Documentation/x86/intel_txt.rst
10567 F:      arch/x86/kernel/tboot.c
10568 F:      include/linux/tboot.h
10569
10570 INTEL SGX
10571 M:      Jarkko Sakkinen <jarkko@kernel.org>
10572 R:      Dave Hansen <dave.hansen@linux.intel.com>
10573 L:      linux-sgx@vger.kernel.org
10574 S:      Supported
10575 Q:      https://patchwork.kernel.org/project/intel-sgx/list/
10576 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/sgx
10577 F:      Documentation/x86/sgx.rst
10578 F:      arch/x86/entry/vdso/vsgx.S
10579 F:      arch/x86/include/asm/sgx.h
10580 F:      arch/x86/include/uapi/asm/sgx.h
10581 F:      arch/x86/kernel/cpu/sgx/*
10582 F:      tools/testing/selftests/sgx/*
10583 K:      \bSGX_
10584
10585 INTERCONNECT API
10586 M:      Georgi Djakov <djakov@kernel.org>
10587 L:      linux-pm@vger.kernel.org
10588 S:      Maintained
10589 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/djakov/icc.git
10590 F:      Documentation/devicetree/bindings/interconnect/
10591 F:      Documentation/driver-api/interconnect.rst
10592 F:      drivers/interconnect/
10593 F:      include/dt-bindings/interconnect/
10594 F:      include/linux/interconnect-provider.h
10595 F:      include/linux/interconnect.h
10596
10597 INTERRUPT COUNTER DRIVER
10598 M:      Oleksij Rempel <o.rempel@pengutronix.de>
10599 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
10600 L:      linux-iio@vger.kernel.org
10601 F:      Documentation/devicetree/bindings/counter/interrupt-counter.yaml
10602 F:      drivers/counter/interrupt-cnt.c
10603
10604 INTERSIL ISL7998X VIDEO DECODER DRIVER
10605 M:      Michael Tretter <m.tretter@pengutronix.de>
10606 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
10607 L:      linux-media@vger.kernel.org
10608 S:      Maintained
10609 F:      Documentation/devicetree/bindings/media/i2c/isil,isl79987.yaml
10610 F:      drivers/media/i2c/isl7998x.c
10611
10612 INVENSENSE ICM-426xx IMU DRIVER
10613 M:      Jean-Baptiste Maneyrol <jmaneyrol@invensense.com>
10614 L:      linux-iio@vger.kernel.org
10615 S:      Maintained
10616 W:      https://invensense.tdk.com/
10617 F:      Documentation/devicetree/bindings/iio/imu/invensense,icm42600.yaml
10618 F:      drivers/iio/imu/inv_icm42600/
10619
10620 INVENSENSE MPU-3050 GYROSCOPE DRIVER
10621 M:      Linus Walleij <linus.walleij@linaro.org>
10622 L:      linux-iio@vger.kernel.org
10623 S:      Maintained
10624 F:      Documentation/devicetree/bindings/iio/gyroscope/invensense,mpu3050.yaml
10625 F:      drivers/iio/gyro/mpu3050*
10626
10627 IOC3 ETHERNET DRIVER
10628 M:      Ralf Baechle <ralf@linux-mips.org>
10629 L:      linux-mips@vger.kernel.org
10630 S:      Maintained
10631 F:      drivers/net/ethernet/sgi/ioc3-eth.c
10632
10633 IOMAP FILESYSTEM LIBRARY
10634 M:      Christoph Hellwig <hch@infradead.org>
10635 M:      Darrick J. Wong <djwong@kernel.org>
10636 L:      linux-xfs@vger.kernel.org
10637 L:      linux-fsdevel@vger.kernel.org
10638 S:      Supported
10639 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
10640 F:      fs/iomap/
10641 F:      include/linux/iomap.h
10642
10643 IOMMU DMA-API LAYER
10644 M:      Robin Murphy <robin.murphy@arm.com>
10645 L:      iommu@lists.linux.dev
10646 S:      Maintained
10647 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
10648 F:      drivers/iommu/dma-iommu.c
10649 F:      drivers/iommu/iova.c
10650 F:      include/linux/dma-iommu.h
10651 F:      include/linux/iova.h
10652
10653 IOMMU SUBSYSTEM
10654 M:      Joerg Roedel <joro@8bytes.org>
10655 M:      Will Deacon <will@kernel.org>
10656 R:      Robin Murphy <robin.murphy@arm.com>
10657 L:      iommu@lists.linux.dev
10658 S:      Maintained
10659 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
10660 F:      Documentation/devicetree/bindings/iommu/
10661 F:      Documentation/userspace-api/iommu.rst
10662 F:      drivers/iommu/
10663 F:      include/linux/iommu.h
10664 F:      include/linux/iova.h
10665 F:      include/linux/of_iommu.h
10666 F:      include/uapi/linux/iommu.h
10667
10668 IOSYS-MAP HELPERS
10669 M:      Thomas Zimmermann <tzimmermann@suse.de>
10670 L:      dri-devel@lists.freedesktop.org
10671 S:      Maintained
10672 T:      git git://anongit.freedesktop.org/drm/drm-misc
10673 F:      include/linux/iosys-map.h
10674
10675 IO_URING
10676 M:      Jens Axboe <axboe@kernel.dk>
10677 R:      Pavel Begunkov <asml.silence@gmail.com>
10678 L:      io-uring@vger.kernel.org
10679 S:      Maintained
10680 T:      git git://git.kernel.dk/linux-block
10681 T:      git git://git.kernel.dk/liburing
10682 F:      io_uring/
10683 F:      include/linux/io_uring.h
10684 F:      include/linux/io_uring_types.h
10685 F:      include/uapi/linux/io_uring.h
10686 F:      tools/io_uring/
10687
10688 IPMI SUBSYSTEM
10689 M:      Corey Minyard <minyard@acm.org>
10690 L:      openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
10691 S:      Supported
10692 W:      http://openipmi.sourceforge.net/
10693 T:      git https://github.com/cminyard/linux-ipmi.git for-next
10694 F:      Documentation/driver-api/ipmi.rst
10695 F:      Documentation/devicetree/bindings/ipmi/
10696 F:      drivers/char/ipmi/
10697 F:      include/linux/ipmi*
10698 F:      include/uapi/linux/ipmi*
10699
10700 IPS SCSI RAID DRIVER
10701 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
10702 L:      linux-scsi@vger.kernel.org
10703 S:      Maintained
10704 W:      http://www.adaptec.com/
10705 F:      drivers/scsi/ips*
10706
10707 IPVS
10708 M:      Simon Horman <horms@verge.net.au>
10709 M:      Julian Anastasov <ja@ssi.bg>
10710 L:      netdev@vger.kernel.org
10711 L:      lvs-devel@vger.kernel.org
10712 S:      Maintained
10713 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs-next.git
10714 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs.git
10715 F:      Documentation/networking/ipvs-sysctl.rst
10716 F:      include/net/ip_vs.h
10717 F:      include/uapi/linux/ip_vs.h
10718 F:      net/netfilter/ipvs/
10719
10720 IPWIRELESS DRIVER
10721 M:      Jiri Kosina <jikos@kernel.org>
10722 M:      David Sterba <dsterba@suse.com>
10723 S:      Odd Fixes
10724 F:      drivers/tty/ipwireless/
10725
10726 IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
10727 M:      Marc Zyngier <maz@kernel.org>
10728 S:      Maintained
10729 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
10730 F:      Documentation/core-api/irq/irq-domain.rst
10731 F:      include/linux/irqdomain.h
10732 F:      kernel/irq/irqdomain.c
10733 F:      kernel/irq/msi.c
10734
10735 IRQ SUBSYSTEM
10736 M:      Thomas Gleixner <tglx@linutronix.de>
10737 L:      linux-kernel@vger.kernel.org
10738 S:      Maintained
10739 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
10740 F:      kernel/irq/
10741
10742 IRQCHIP DRIVERS
10743 M:      Thomas Gleixner <tglx@linutronix.de>
10744 M:      Marc Zyngier <maz@kernel.org>
10745 L:      linux-kernel@vger.kernel.org
10746 S:      Maintained
10747 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
10748 F:      Documentation/devicetree/bindings/interrupt-controller/
10749 F:      drivers/irqchip/
10750
10751 ISA
10752 M:      William Breathitt Gray <william.gray@linaro.org>
10753 S:      Maintained
10754 F:      Documentation/driver-api/isa.rst
10755 F:      drivers/base/isa.c
10756 F:      include/linux/isa.h
10757
10758 ISA RADIO MODULE
10759 M:      Hans Verkuil <hverkuil@xs4all.nl>
10760 L:      linux-media@vger.kernel.org
10761 S:      Maintained
10762 W:      https://linuxtv.org
10763 T:      git git://linuxtv.org/media_tree.git
10764 F:      drivers/media/radio/radio-isa*
10765
10766 ISAPNP
10767 M:      Jaroslav Kysela <perex@perex.cz>
10768 S:      Maintained
10769 F:      Documentation/driver-api/isapnp.rst
10770 F:      drivers/pnp/isapnp/
10771 F:      include/linux/isapnp.h
10772
10773 ISCSI
10774 M:      Lee Duncan <lduncan@suse.com>
10775 M:      Chris Leech <cleech@redhat.com>
10776 M:      Mike Christie <michael.christie@oracle.com>
10777 L:      open-iscsi@googlegroups.com
10778 L:      linux-scsi@vger.kernel.org
10779 S:      Maintained
10780 W:      www.open-iscsi.com
10781 F:      drivers/scsi/*iscsi*
10782 F:      include/scsi/*iscsi*
10783
10784 iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
10785 M:      Peter Jones <pjones@redhat.com>
10786 M:      Konrad Rzeszutek Wilk <konrad@kernel.org>
10787 S:      Maintained
10788 F:      drivers/firmware/iscsi_ibft*
10789
10790 ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR
10791 M:      Sagi Grimberg <sagi@grimberg.me>
10792 M:      Max Gurtovoy <mgurtovoy@nvidia.com>
10793 L:      linux-rdma@vger.kernel.org
10794 S:      Supported
10795 W:      http://www.openfabrics.org
10796 W:      www.open-iscsi.org
10797 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
10798 F:      drivers/infiniband/ulp/iser/
10799
10800 ISCSI EXTENSIONS FOR RDMA (ISER) TARGET
10801 M:      Sagi Grimberg <sagi@grimberg.me>
10802 L:      linux-rdma@vger.kernel.org
10803 L:      target-devel@vger.kernel.org
10804 S:      Supported
10805 W:      http://www.linux-iscsi.org
10806 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
10807 F:      drivers/infiniband/ulp/isert
10808
10809 ISDN/CMTP OVER BLUETOOTH
10810 M:      Karsten Keil <isdn@linux-pingi.de>
10811 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
10812 L:      netdev@vger.kernel.org
10813 S:      Odd Fixes
10814 W:      http://www.isdn4linux.de
10815 F:      Documentation/isdn/
10816 F:      drivers/isdn/capi/
10817 F:      include/linux/isdn/
10818 F:      include/uapi/linux/isdn/
10819 F:      net/bluetooth/cmtp/
10820
10821 ISDN/mISDN SUBSYSTEM
10822 M:      Karsten Keil <isdn@linux-pingi.de>
10823 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
10824 L:      netdev@vger.kernel.org
10825 S:      Maintained
10826 W:      http://www.isdn4linux.de
10827 F:      drivers/isdn/Kconfig
10828 F:      drivers/isdn/Makefile
10829 F:      drivers/isdn/hardware/
10830 F:      drivers/isdn/mISDN/
10831
10832 IT87 HARDWARE MONITORING DRIVER
10833 M:      Jean Delvare <jdelvare@suse.com>
10834 L:      linux-hwmon@vger.kernel.org
10835 S:      Maintained
10836 F:      Documentation/hwmon/it87.rst
10837 F:      drivers/hwmon/it87.c
10838
10839 IT913X MEDIA DRIVER
10840 M:      Antti Palosaari <crope@iki.fi>
10841 L:      linux-media@vger.kernel.org
10842 S:      Maintained
10843 W:      https://linuxtv.org
10844 W:      http://palosaari.fi/linux/
10845 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10846 T:      git git://linuxtv.org/anttip/media_tree.git
10847 F:      drivers/media/tuners/it913x*
10848
10849 ITE IT66121 HDMI BRIDGE DRIVER
10850 M:      Phong LE <ple@baylibre.com>
10851 M:      Neil Armstrong <neil.armstrong@linaro.org>
10852 S:      Maintained
10853 T:      git git://anongit.freedesktop.org/drm/drm-misc
10854 F:      Documentation/devicetree/bindings/display/bridge/ite,it66121.yaml
10855 F:      drivers/gpu/drm/bridge/ite-it66121.c
10856
10857 IVTV VIDEO4LINUX DRIVER
10858 M:      Andy Walls <awalls@md.metrocast.net>
10859 L:      linux-media@vger.kernel.org
10860 S:      Maintained
10861 W:      https://linuxtv.org
10862 T:      git git://linuxtv.org/media_tree.git
10863 F:      Documentation/admin-guide/media/ivtv*
10864 F:      drivers/media/pci/ivtv/
10865 F:      include/uapi/linux/ivtv*
10866
10867 IX2505V MEDIA DRIVER
10868 M:      Malcolm Priestley <tvboxspy@gmail.com>
10869 L:      linux-media@vger.kernel.org
10870 S:      Maintained
10871 W:      https://linuxtv.org
10872 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10873 F:      drivers/media/dvb-frontends/ix2505v*
10874
10875 JAILHOUSE HYPERVISOR INTERFACE
10876 M:      Jan Kiszka <jan.kiszka@siemens.com>
10877 L:      jailhouse-dev@googlegroups.com
10878 S:      Maintained
10879 F:      arch/x86/include/asm/jailhouse_para.h
10880 F:      arch/x86/kernel/jailhouse.c
10881
10882 JC42.4 TEMPERATURE SENSOR DRIVER
10883 M:      Guenter Roeck <linux@roeck-us.net>
10884 L:      linux-hwmon@vger.kernel.org
10885 S:      Maintained
10886 F:      Documentation/devicetree/bindings/hwmon/jedec,jc42.yaml
10887 F:      Documentation/hwmon/jc42.rst
10888 F:      drivers/hwmon/jc42.c
10889
10890 JFS FILESYSTEM
10891 M:      Dave Kleikamp <shaggy@kernel.org>
10892 L:      jfs-discussion@lists.sourceforge.net
10893 S:      Maintained
10894 W:      http://jfs.sourceforge.net/
10895 T:      git git://github.com/kleikamp/linux-shaggy.git
10896 F:      Documentation/admin-guide/jfs.rst
10897 F:      fs/jfs/
10898
10899 JME NETWORK DRIVER
10900 M:      Guo-Fu Tseng <cooldavid@cooldavid.org>
10901 L:      netdev@vger.kernel.org
10902 S:      Maintained
10903 F:      drivers/net/ethernet/jme.*
10904
10905 JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
10906 M:      David Woodhouse <dwmw2@infradead.org>
10907 M:      Richard Weinberger <richard@nod.at>
10908 L:      linux-mtd@lists.infradead.org
10909 S:      Odd Fixes
10910 W:      http://www.linux-mtd.infradead.org/doc/jffs2.html
10911 T:      git git://git.infradead.org/ubifs-2.6.git
10912 F:      fs/jffs2/
10913 F:      include/uapi/linux/jffs2.h
10914
10915 JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
10916 M:      "Theodore Ts'o" <tytso@mit.edu>
10917 M:      Jan Kara <jack@suse.com>
10918 L:      linux-ext4@vger.kernel.org
10919 S:      Maintained
10920 F:      fs/jbd2/
10921 F:      include/linux/jbd2.h
10922
10923 JPU V4L2 MEM2MEM DRIVER FOR RENESAS
10924 M:      Mikhail Ulyanov <mikhail.ulyanov@cogentembedded.com>
10925 L:      linux-media@vger.kernel.org
10926 L:      linux-renesas-soc@vger.kernel.org
10927 S:      Maintained
10928 F:      drivers/media/platform/renesas/rcar_jpu.c
10929
10930 JSM Neo PCI based serial card
10931 L:      linux-serial@vger.kernel.org
10932 S:      Orphan
10933 F:      drivers/tty/serial/jsm/
10934
10935 K10TEMP HARDWARE MONITORING DRIVER
10936 M:      Clemens Ladisch <clemens@ladisch.de>
10937 L:      linux-hwmon@vger.kernel.org
10938 S:      Maintained
10939 F:      Documentation/hwmon/k10temp.rst
10940 F:      drivers/hwmon/k10temp.c
10941
10942 K8TEMP HARDWARE MONITORING DRIVER
10943 M:      Rudolf Marek <r.marek@assembler.cz>
10944 L:      linux-hwmon@vger.kernel.org
10945 S:      Maintained
10946 F:      Documentation/hwmon/k8temp.rst
10947 F:      drivers/hwmon/k8temp.c
10948
10949 KASAN
10950 M:      Andrey Ryabinin <ryabinin.a.a@gmail.com>
10951 R:      Alexander Potapenko <glider@google.com>
10952 R:      Andrey Konovalov <andreyknvl@gmail.com>
10953 R:      Dmitry Vyukov <dvyukov@google.com>
10954 R:      Vincenzo Frascino <vincenzo.frascino@arm.com>
10955 L:      kasan-dev@googlegroups.com
10956 S:      Maintained
10957 F:      Documentation/dev-tools/kasan.rst
10958 F:      arch/*/include/asm/*kasan.h
10959 F:      arch/*/mm/kasan_init*
10960 F:      include/linux/kasan*.h
10961 F:      lib/Kconfig.kasan
10962 F:      lib/test_kasan*.c
10963 F:      mm/kasan/
10964 F:      scripts/Makefile.kasan
10965
10966 KCONFIG
10967 M:      Masahiro Yamada <masahiroy@kernel.org>
10968 L:      linux-kbuild@vger.kernel.org
10969 S:      Maintained
10970 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git kconfig
10971 F:      Documentation/kbuild/kconfig*
10972 F:      scripts/Kconfig.include
10973 F:      scripts/kconfig/
10974
10975 KCOV
10976 R:      Dmitry Vyukov <dvyukov@google.com>
10977 R:      Andrey Konovalov <andreyknvl@gmail.com>
10978 L:      kasan-dev@googlegroups.com
10979 S:      Maintained
10980 F:      Documentation/dev-tools/kcov.rst
10981 F:      include/linux/kcov.h
10982 F:      include/uapi/linux/kcov.h
10983 F:      kernel/kcov.c
10984 F:      scripts/Makefile.kcov
10985
10986 KCSAN
10987 M:      Marco Elver <elver@google.com>
10988 R:      Dmitry Vyukov <dvyukov@google.com>
10989 L:      kasan-dev@googlegroups.com
10990 S:      Maintained
10991 F:      Documentation/dev-tools/kcsan.rst
10992 F:      include/linux/kcsan*.h
10993 F:      kernel/kcsan/
10994 F:      lib/Kconfig.kcsan
10995 F:      scripts/Makefile.kcsan
10996
10997 KDUMP
10998 M:      Baoquan He <bhe@redhat.com>
10999 R:      Vivek Goyal <vgoyal@redhat.com>
11000 R:      Dave Young <dyoung@redhat.com>
11001 L:      kexec@lists.infradead.org
11002 S:      Maintained
11003 W:      http://lse.sourceforge.net/kdump/
11004 F:      Documentation/admin-guide/kdump/
11005 F:      fs/proc/vmcore.c
11006 F:      include/linux/crash_core.h
11007 F:      include/linux/crash_dump.h
11008 F:      include/uapi/linux/vmcore.h
11009 F:      kernel/crash_*.c
11010
11011 KEENE FM RADIO TRANSMITTER DRIVER
11012 M:      Hans Verkuil <hverkuil@xs4all.nl>
11013 L:      linux-media@vger.kernel.org
11014 S:      Maintained
11015 W:      https://linuxtv.org
11016 T:      git git://linuxtv.org/media_tree.git
11017 F:      drivers/media/radio/radio-keene*
11018
11019 KERNEL AUTOMOUNTER
11020 M:      Ian Kent <raven@themaw.net>
11021 L:      autofs@vger.kernel.org
11022 S:      Maintained
11023 F:      fs/autofs/
11024
11025 KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
11026 M:      Masahiro Yamada <masahiroy@kernel.org>
11027 M:      Michal Marek <michal.lkml@markovi.net>
11028 R:      Nick Desaulniers <ndesaulniers@google.com>
11029 L:      linux-kbuild@vger.kernel.org
11030 S:      Maintained
11031 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git
11032 F:      Documentation/kbuild/
11033 F:      Makefile
11034 F:      scripts/*vmlinux*
11035 F:      scripts/Kbuild*
11036 F:      scripts/Makefile*
11037 F:      scripts/basic/
11038 F:      scripts/dummy-tools/
11039 F:      scripts/mk*
11040 F:      scripts/mod/
11041 F:      scripts/package/
11042
11043 KERNEL HARDENING (not covered by other areas)
11044 M:      Kees Cook <keescook@chromium.org>
11045 L:      linux-hardening@vger.kernel.org
11046 S:      Supported
11047 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/hardening
11048 F:      include/linux/overflow.h
11049 F:      include/linux/randomize_kstack.h
11050 F:      mm/usercopy.c
11051 K:      \b(add|choose)_random_kstack_offset\b
11052 K:      \b__check_(object_size|heap_object)\b
11053
11054 KERNEL JANITORS
11055 L:      kernel-janitors@vger.kernel.org
11056 S:      Odd Fixes
11057 W:      http://kernelnewbies.org/KernelJanitors
11058
11059 KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
11060 M:      Chuck Lever <chuck.lever@oracle.com>
11061 M:      Jeff Layton <jlayton@kernel.org>
11062 L:      linux-nfs@vger.kernel.org
11063 S:      Supported
11064 W:      http://nfs.sourceforge.net/
11065 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/cel/linux.git
11066 F:      fs/lockd/
11067 F:      fs/nfs_common/
11068 F:      fs/nfsd/
11069 F:      include/linux/lockd/
11070 F:      include/linux/sunrpc/
11071 F:      include/uapi/linux/nfsd/
11072 F:      include/uapi/linux/sunrpc/
11073 F:      net/sunrpc/
11074 F:      Documentation/filesystems/nfs/
11075
11076 KERNEL REGRESSIONS
11077 M:      Thorsten Leemhuis <linux@leemhuis.info>
11078 L:      regressions@lists.linux.dev
11079 S:      Supported
11080 F:      Documentation/admin-guide/reporting-regressions.rst
11081 F:      Documentation/process/handling-regressions.rst
11082
11083 KERNEL SELFTEST FRAMEWORK
11084 M:      Shuah Khan <shuah@kernel.org>
11085 M:      Shuah Khan <skhan@linuxfoundation.org>
11086 L:      linux-kselftest@vger.kernel.org
11087 S:      Maintained
11088 Q:      https://patchwork.kernel.org/project/linux-kselftest/list/
11089 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest.git
11090 F:      Documentation/dev-tools/kselftest*
11091 F:      tools/testing/selftests/
11092
11093 KERNEL SMB3 SERVER (KSMBD)
11094 M:      Namjae Jeon <linkinjeon@kernel.org>
11095 M:      Steve French <sfrench@samba.org>
11096 M:      Hyunchul Lee <hyc.lee@gmail.com>
11097 R:      Sergey Senozhatsky <senozhatsky@chromium.org>
11098 L:      linux-cifs@vger.kernel.org
11099 S:      Maintained
11100 T:      git git://git.samba.org/ksmbd.git
11101 F:      Documentation/filesystems/cifs/ksmbd.rst
11102 F:      fs/ksmbd/
11103 F:      fs/smbfs_common/
11104
11105 KERNEL UNIT TESTING FRAMEWORK (KUnit)
11106 M:      Brendan Higgins <brendanhiggins@google.com>
11107 M:      David Gow <davidgow@google.com>
11108 L:      linux-kselftest@vger.kernel.org
11109 L:      kunit-dev@googlegroups.com
11110 S:      Maintained
11111 W:      https://google.github.io/kunit-docs/third_party/kernel/docs/
11112 F:      Documentation/dev-tools/kunit/
11113 F:      include/kunit/
11114 F:      lib/kunit/
11115 F:      tools/testing/kunit/
11116
11117 KERNEL USERMODE HELPER
11118 M:      Luis Chamberlain <mcgrof@kernel.org>
11119 L:      linux-kernel@vger.kernel.org
11120 S:      Maintained
11121 F:      include/linux/umh.h
11122 F:      kernel/umh.c
11123
11124 KERNEL VIRTUAL MACHINE (KVM)
11125 M:      Paolo Bonzini <pbonzini@redhat.com>
11126 L:      kvm@vger.kernel.org
11127 S:      Supported
11128 W:      http://www.linux-kvm.org
11129 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
11130 F:      Documentation/virt/kvm/
11131 F:      include/asm-generic/kvm*
11132 F:      include/kvm/iodev.h
11133 F:      include/linux/kvm*
11134 F:      include/trace/events/kvm.h
11135 F:      include/uapi/asm-generic/kvm*
11136 F:      include/uapi/linux/kvm*
11137 F:      tools/kvm/
11138 F:      tools/testing/selftests/kvm/
11139 F:      virt/kvm/*
11140
11141 KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64)
11142 M:      Marc Zyngier <maz@kernel.org>
11143 R:      James Morse <james.morse@arm.com>
11144 R:      Alexandru Elisei <alexandru.elisei@arm.com>
11145 R:      Suzuki K Poulose <suzuki.poulose@arm.com>
11146 R:      Oliver Upton <oliver.upton@linux.dev>
11147 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11148 L:      kvmarm@lists.cs.columbia.edu (moderated for non-subscribers)
11149 S:      Maintained
11150 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvmarm/kvmarm.git
11151 F:      arch/arm64/include/asm/kvm*
11152 F:      arch/arm64/include/uapi/asm/kvm*
11153 F:      arch/arm64/kvm/
11154 F:      include/kvm/arm_*
11155 F:      tools/testing/selftests/kvm/*/aarch64/
11156 F:      tools/testing/selftests/kvm/aarch64/
11157
11158 KERNEL VIRTUAL MACHINE FOR MIPS (KVM/mips)
11159 M:      Huacai Chen <chenhuacai@kernel.org>
11160 M:      Aleksandar Markovic <aleksandar.qemu.devel@gmail.com>
11161 L:      linux-mips@vger.kernel.org
11162 L:      kvm@vger.kernel.org
11163 S:      Maintained
11164 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
11165 F:      arch/mips/include/asm/kvm*
11166 F:      arch/mips/include/uapi/asm/kvm*
11167 F:      arch/mips/kvm/
11168
11169 KERNEL VIRTUAL MACHINE FOR POWERPC (KVM/powerpc)
11170 L:      linuxppc-dev@lists.ozlabs.org
11171 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git topic/ppc-kvm
11172 F:      arch/powerpc/include/asm/kvm*
11173 F:      arch/powerpc/include/uapi/asm/kvm*
11174 F:      arch/powerpc/kernel/kvm*
11175 F:      arch/powerpc/kvm/
11176
11177 KERNEL VIRTUAL MACHINE FOR RISC-V (KVM/riscv)
11178 M:      Anup Patel <anup@brainfault.org>
11179 R:      Atish Patra <atishp@atishpatra.org>
11180 L:      kvm@vger.kernel.org
11181 L:      kvm-riscv@lists.infradead.org
11182 L:      linux-riscv@lists.infradead.org
11183 S:      Maintained
11184 T:      git git://github.com/kvm-riscv/linux.git
11185 F:      arch/riscv/include/asm/kvm*
11186 F:      arch/riscv/include/uapi/asm/kvm*
11187 F:      arch/riscv/kvm/
11188 F:      tools/testing/selftests/kvm/*/riscv/
11189
11190 KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
11191 M:      Christian Borntraeger <borntraeger@linux.ibm.com>
11192 M:      Janosch Frank <frankja@linux.ibm.com>
11193 M:      Claudio Imbrenda <imbrenda@linux.ibm.com>
11194 R:      David Hildenbrand <david@redhat.com>
11195 L:      kvm@vger.kernel.org
11196 S:      Supported
11197 W:      http://www.ibm.com/developerworks/linux/linux390/
11198 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvms390/linux.git
11199 F:      Documentation/virt/kvm/s390*
11200 F:      arch/s390/include/asm/gmap.h
11201 F:      arch/s390/include/asm/kvm*
11202 F:      arch/s390/include/uapi/asm/kvm*
11203 F:      arch/s390/include/uapi/asm/uvdevice.h
11204 F:      arch/s390/kernel/uv.c
11205 F:      arch/s390/kvm/
11206 F:      arch/s390/mm/gmap.c
11207 F:      drivers/s390/char/uvdevice.c
11208 F:      tools/testing/selftests/drivers/s390x/uvdevice/
11209 F:      tools/testing/selftests/kvm/*/s390x/
11210 F:      tools/testing/selftests/kvm/s390x/
11211
11212 KERNEL VIRTUAL MACHINE FOR X86 (KVM/x86)
11213 M:      Sean Christopherson <seanjc@google.com>
11214 M:      Paolo Bonzini <pbonzini@redhat.com>
11215 L:      kvm@vger.kernel.org
11216 S:      Supported
11217 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
11218 F:      arch/x86/include/asm/kvm*
11219 F:      arch/x86/include/asm/svm.h
11220 F:      arch/x86/include/asm/vmx*.h
11221 F:      arch/x86/include/uapi/asm/kvm*
11222 F:      arch/x86/include/uapi/asm/svm.h
11223 F:      arch/x86/include/uapi/asm/vmx.h
11224 F:      arch/x86/kvm/
11225 F:      arch/x86/kvm/*/
11226
11227 KVM PARAVIRT (KVM/paravirt)
11228 M:      Paolo Bonzini <pbonzini@redhat.com>
11229 R:      Wanpeng Li <wanpengli@tencent.com>
11230 R:      Vitaly Kuznetsov <vkuznets@redhat.com>
11231 L:      kvm@vger.kernel.org
11232 S:      Supported
11233 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
11234 F:      arch/x86/kernel/kvm.c
11235 F:      arch/x86/kernel/kvmclock.c
11236 F:      arch/x86/include/asm/pvclock-abi.h
11237 F:      include/linux/kvm_para.h
11238 F:      include/uapi/linux/kvm_para.h
11239 F:      include/uapi/asm-generic/kvm_para.h
11240 F:      include/asm-generic/kvm_para.h
11241 F:      arch/um/include/asm/kvm_para.h
11242 F:      arch/x86/include/asm/kvm_para.h
11243 F:      arch/x86/include/uapi/asm/kvm_para.h
11244
11245 KVM X86 HYPER-V (KVM/hyper-v)
11246 M:      Vitaly Kuznetsov <vkuznets@redhat.com>
11247 M:      Sean Christopherson <seanjc@google.com>
11248 M:      Paolo Bonzini <pbonzini@redhat.com>
11249 L:      kvm@vger.kernel.org
11250 S:      Supported
11251 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
11252 F:      arch/x86/kvm/hyperv.*
11253 F:      arch/x86/kvm/kvm_onhyperv.*
11254 F:      arch/x86/kvm/svm/hyperv.*
11255 F:      arch/x86/kvm/svm/svm_onhyperv.*
11256 F:      arch/x86/kvm/vmx/evmcs.*
11257
11258 KERNFS
11259 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
11260 M:      Tejun Heo <tj@kernel.org>
11261 S:      Supported
11262 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
11263 F:      fs/kernfs/
11264 F:      include/linux/kernfs.h
11265
11266 KEXEC
11267 M:      Eric Biederman <ebiederm@xmission.com>
11268 L:      kexec@lists.infradead.org
11269 S:      Maintained
11270 W:      http://kernel.org/pub/linux/utils/kernel/kexec/
11271 F:      include/linux/kexec.h
11272 F:      include/uapi/linux/kexec.h
11273 F:      kernel/kexec*
11274
11275 KEYS-ENCRYPTED
11276 M:      Mimi Zohar <zohar@linux.ibm.com>
11277 L:      linux-integrity@vger.kernel.org
11278 L:      keyrings@vger.kernel.org
11279 S:      Supported
11280 F:      Documentation/security/keys/trusted-encrypted.rst
11281 F:      include/keys/encrypted-type.h
11282 F:      security/keys/encrypted-keys/
11283
11284 KEYS-TRUSTED
11285 M:      James Bottomley <jejb@linux.ibm.com>
11286 M:      Jarkko Sakkinen <jarkko@kernel.org>
11287 M:      Mimi Zohar <zohar@linux.ibm.com>
11288 L:      linux-integrity@vger.kernel.org
11289 L:      keyrings@vger.kernel.org
11290 S:      Supported
11291 F:      Documentation/security/keys/trusted-encrypted.rst
11292 F:      include/keys/trusted-type.h
11293 F:      include/keys/trusted_tpm.h
11294 F:      security/keys/trusted-keys/
11295
11296 KEYS-TRUSTED-TEE
11297 M:      Sumit Garg <sumit.garg@linaro.org>
11298 L:      linux-integrity@vger.kernel.org
11299 L:      keyrings@vger.kernel.org
11300 S:      Supported
11301 F:      include/keys/trusted_tee.h
11302 F:      security/keys/trusted-keys/trusted_tee.c
11303
11304 KEYS-TRUSTED-CAAM
11305 M:      Ahmad Fatoum <a.fatoum@pengutronix.de>
11306 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
11307 L:      linux-integrity@vger.kernel.org
11308 L:      keyrings@vger.kernel.org
11309 S:      Maintained
11310 F:      include/keys/trusted_caam.h
11311 F:      security/keys/trusted-keys/trusted_caam.c
11312
11313 KEYS/KEYRINGS
11314 M:      David Howells <dhowells@redhat.com>
11315 M:      Jarkko Sakkinen <jarkko@kernel.org>
11316 L:      keyrings@vger.kernel.org
11317 S:      Maintained
11318 F:      Documentation/security/keys/core.rst
11319 F:      include/keys/
11320 F:      include/linux/key-type.h
11321 F:      include/linux/key.h
11322 F:      include/linux/keyctl.h
11323 F:      include/uapi/linux/keyctl.h
11324 F:      security/keys/
11325
11326 KEYS/KEYRINGS_INTEGRITY
11327 M:      Jarkko Sakkinen <jarkko@kernel.org>
11328 M:      Mimi Zohar <zohar@linux.ibm.com>
11329 L:      linux-integrity@vger.kernel.org
11330 L:      keyrings@vger.kernel.org
11331 S:      Supported
11332 F:      security/integrity/platform_certs
11333
11334 KFENCE
11335 M:      Alexander Potapenko <glider@google.com>
11336 M:      Marco Elver <elver@google.com>
11337 R:      Dmitry Vyukov <dvyukov@google.com>
11338 L:      kasan-dev@googlegroups.com
11339 S:      Maintained
11340 F:      Documentation/dev-tools/kfence.rst
11341 F:      arch/*/include/asm/kfence.h
11342 F:      include/linux/kfence.h
11343 F:      lib/Kconfig.kfence
11344 F:      mm/kfence/
11345
11346 KFIFO
11347 M:      Stefani Seibold <stefani@seibold.net>
11348 S:      Maintained
11349 F:      include/linux/kfifo.h
11350 F:      lib/kfifo.c
11351 F:      samples/kfifo/
11352
11353 KGDB / KDB /debug_core
11354 M:      Jason Wessel <jason.wessel@windriver.com>
11355 M:      Daniel Thompson <daniel.thompson@linaro.org>
11356 R:      Douglas Anderson <dianders@chromium.org>
11357 L:      kgdb-bugreport@lists.sourceforge.net
11358 S:      Maintained
11359 W:      http://kgdb.wiki.kernel.org/
11360 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jwessel/kgdb.git
11361 F:      Documentation/dev-tools/kgdb.rst
11362 F:      drivers/misc/kgdbts.c
11363 F:      drivers/tty/serial/kgdboc.c
11364 F:      include/linux/kdb.h
11365 F:      include/linux/kgdb.h
11366 F:      kernel/debug/
11367 F:      kernel/module/kdb.c
11368
11369 KHADAS MCU MFD DRIVER
11370 M:      Neil Armstrong <neil.armstrong@linaro.org>
11371 L:      linux-amlogic@lists.infradead.org
11372 S:      Maintained
11373 F:      Documentation/devicetree/bindings/mfd/khadas,mcu.yaml
11374 F:      drivers/mfd/khadas-mcu.c
11375 F:      include/linux/mfd/khadas-mcu.h
11376 F:      drivers/thermal/khadas_mcu_fan.c
11377
11378 KMEMLEAK
11379 M:      Catalin Marinas <catalin.marinas@arm.com>
11380 S:      Maintained
11381 F:      Documentation/dev-tools/kmemleak.rst
11382 F:      include/linux/kmemleak.h
11383 F:      mm/kmemleak.c
11384 F:      samples/kmemleak/kmemleak-test.c
11385
11386 KMOD KERNEL MODULE LOADER - USERMODE HELPER
11387 M:      Luis Chamberlain <mcgrof@kernel.org>
11388 L:      linux-kernel@vger.kernel.org
11389 L:      linux-modules@vger.kernel.org
11390 S:      Maintained
11391 F:      include/linux/kmod.h
11392 F:      kernel/kmod.c
11393 F:      lib/test_kmod.c
11394 F:      tools/testing/selftests/kmod/
11395
11396 KPROBES
11397 M:      Naveen N. Rao <naveen.n.rao@linux.ibm.com>
11398 M:      Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
11399 M:      "David S. Miller" <davem@davemloft.net>
11400 M:      Masami Hiramatsu <mhiramat@kernel.org>
11401 S:      Maintained
11402 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rostedt/linux-trace.git
11403 F:      Documentation/trace/kprobes.rst
11404 F:      include/asm-generic/kprobes.h
11405 F:      include/linux/kprobes.h
11406 F:      kernel/kprobes.c
11407 F:      lib/test_kprobes.c
11408 F:      samples/kprobes
11409
11410 KS0108 LCD CONTROLLER DRIVER
11411 M:      Miguel Ojeda <ojeda@kernel.org>
11412 S:      Maintained
11413 F:      Documentation/admin-guide/auxdisplay/ks0108.rst
11414 F:      drivers/auxdisplay/ks0108.c
11415 F:      include/linux/ks0108.h
11416
11417 KTD253 BACKLIGHT DRIVER
11418 M:      Linus Walleij <linus.walleij@linaro.org>
11419 S:      Maintained
11420 F:      Documentation/devicetree/bindings/leds/backlight/kinetic,ktd253.yaml
11421 F:      drivers/video/backlight/ktd253-backlight.c
11422
11423 KTEST
11424 M:      Steven Rostedt <rostedt@goodmis.org>
11425 M:      John Hawley <warthog9@eaglescrag.net>
11426 S:      Maintained
11427 F:      tools/testing/ktest
11428
11429 L3MDEV
11430 M:      David Ahern <dsahern@kernel.org>
11431 L:      netdev@vger.kernel.org
11432 S:      Maintained
11433 F:      include/net/l3mdev.h
11434 F:      net/l3mdev
11435
11436 LANDLOCK SECURITY MODULE
11437 M:      Mickaël Salaün <mic@digikod.net>
11438 L:      linux-security-module@vger.kernel.org
11439 S:      Supported
11440 W:      https://landlock.io
11441 T:      git https://github.com/landlock-lsm/linux.git
11442 F:      Documentation/security/landlock.rst
11443 F:      Documentation/userspace-api/landlock.rst
11444 F:      include/uapi/linux/landlock.h
11445 F:      samples/landlock/
11446 F:      security/landlock/
11447 F:      tools/testing/selftests/landlock/
11448 K:      landlock
11449 K:      LANDLOCK
11450
11451 LANTIQ / INTEL Ethernet drivers
11452 M:      Hauke Mehrtens <hauke@hauke-m.de>
11453 L:      netdev@vger.kernel.org
11454 S:      Maintained
11455 F:      drivers/net/dsa/lantiq_gswip.c
11456 F:      drivers/net/dsa/lantiq_pce.h
11457 F:      drivers/net/ethernet/lantiq_xrx200.c
11458 F:      net/dsa/tag_gswip.c
11459
11460 LANTIQ MIPS ARCHITECTURE
11461 M:      John Crispin <john@phrozen.org>
11462 L:      linux-mips@vger.kernel.org
11463 S:      Maintained
11464 F:      arch/mips/lantiq
11465 F:      drivers/soc/lantiq
11466
11467 LASI 53c700 driver for PARISC
11468 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
11469 L:      linux-scsi@vger.kernel.org
11470 S:      Maintained
11471 F:      Documentation/scsi/53c700.rst
11472 F:      drivers/scsi/53c700*
11473
11474 LEAKING_ADDRESSES
11475 M:      Tobin C. Harding <me@tobin.cc>
11476 M:      Tycho Andersen <tycho@tycho.pizza>
11477 L:      linux-hardening@vger.kernel.org
11478 S:      Maintained
11479 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tobin/leaks.git
11480 F:      scripts/leaking_addresses.pl
11481
11482 LED SUBSYSTEM
11483 M:      Pavel Machek <pavel@ucw.cz>
11484 L:      linux-leds@vger.kernel.org
11485 S:      Maintained
11486 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pavel/linux-leds.git
11487 F:      Documentation/devicetree/bindings/leds/
11488 F:      drivers/leds/
11489 F:      include/linux/leds.h
11490
11491 LEGACY EEPROM DRIVER
11492 M:      Jean Delvare <jdelvare@suse.com>
11493 S:      Maintained
11494 F:      Documentation/misc-devices/eeprom.rst
11495 F:      drivers/misc/eeprom/eeprom.c
11496
11497 LEGO MINDSTORMS EV3
11498 R:      David Lechner <david@lechnology.com>
11499 S:      Maintained
11500 F:      Documentation/devicetree/bindings/power/supply/lego,ev3-battery.yaml
11501 F:      arch/arm/boot/dts/da850-lego-ev3.dts
11502 F:      drivers/power/supply/lego_ev3_battery.c
11503
11504 LEGO USB Tower driver
11505 M:      Juergen Stuber <starblue@users.sourceforge.net>
11506 L:      legousb-devel@lists.sourceforge.net
11507 S:      Maintained
11508 W:      http://legousb.sourceforge.net/
11509 F:      drivers/usb/misc/legousbtower.c
11510
11511 LETSKETCH HID TABLET DRIVER
11512 M:      Hans de Goede <hdegoede@redhat.com>
11513 L:      linux-input@vger.kernel.org
11514 S:      Maintained
11515 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
11516 F:      drivers/hid/hid-letsketch.c
11517
11518 LG LAPTOP EXTRAS
11519 M:      Matan Ziv-Av <matan@svgalib.org>
11520 L:      platform-driver-x86@vger.kernel.org
11521 S:      Maintained
11522 F:      Documentation/ABI/testing/sysfs-platform-lg-laptop
11523 F:      Documentation/admin-guide/laptops/lg-laptop.rst
11524 F:      drivers/platform/x86/lg-laptop.c
11525
11526 LG2160 MEDIA DRIVER
11527 M:      Michael Krufky <mkrufky@linuxtv.org>
11528 L:      linux-media@vger.kernel.org
11529 S:      Maintained
11530 W:      https://linuxtv.org
11531 W:      http://github.com/mkrufky
11532 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11533 T:      git git://linuxtv.org/mkrufky/tuners.git
11534 F:      drivers/media/dvb-frontends/lg2160.*
11535
11536 LGDT3305 MEDIA DRIVER
11537 M:      Michael Krufky <mkrufky@linuxtv.org>
11538 L:      linux-media@vger.kernel.org
11539 S:      Maintained
11540 W:      https://linuxtv.org
11541 W:      http://github.com/mkrufky
11542 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11543 T:      git git://linuxtv.org/mkrufky/tuners.git
11544 F:      drivers/media/dvb-frontends/lgdt3305.*
11545
11546 LIBATA PATA ARASAN COMPACT FLASH CONTROLLER
11547 M:      Viresh Kumar <vireshk@kernel.org>
11548 L:      linux-ide@vger.kernel.org
11549 S:      Maintained
11550 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
11551 F:      drivers/ata/pata_arasan_cf.c
11552 F:      include/linux/pata_arasan_cf_data.h
11553
11554 LIBATA PATA DRIVERS
11555 R:      Sergey Shtylyov <s.shtylyov@omp.ru>
11556 L:      linux-ide@vger.kernel.org
11557 F:      drivers/ata/ata_*.c
11558 F:      drivers/ata/pata_*.c
11559
11560 LIBATA PATA FARADAY FTIDE010 AND GEMINI SATA BRIDGE DRIVERS
11561 M:      Linus Walleij <linus.walleij@linaro.org>
11562 L:      linux-ide@vger.kernel.org
11563 S:      Maintained
11564 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
11565 F:      drivers/ata/pata_ftide010.c
11566 F:      drivers/ata/sata_gemini.c
11567 F:      drivers/ata/sata_gemini.h
11568
11569 LIBATA SATA AHCI PLATFORM devices support
11570 M:      Hans de Goede <hdegoede@redhat.com>
11571 M:      Jens Axboe <axboe@kernel.dk>
11572 L:      linux-ide@vger.kernel.org
11573 S:      Maintained
11574 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
11575 F:      drivers/ata/ahci_platform.c
11576 F:      drivers/ata/libahci_platform.c
11577 F:      include/linux/ahci_platform.h
11578
11579 LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER
11580 M:      Mikael Pettersson <mikpelinux@gmail.com>
11581 L:      linux-ide@vger.kernel.org
11582 S:      Maintained
11583 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
11584 F:      drivers/ata/sata_promise.*
11585
11586 LIBATA SUBSYSTEM (Serial and Parallel ATA drivers)
11587 M:      Damien Le Moal <damien.lemoal@opensource.wdc.com>
11588 L:      linux-ide@vger.kernel.org
11589 S:      Maintained
11590 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dlemoal/libata.git
11591 F:      Documentation/ABI/testing/sysfs-ata
11592 F:      Documentation/devicetree/bindings/ata/
11593 F:      drivers/ata/
11594 F:      include/linux/ata.h
11595 F:      include/linux/libata.h
11596
11597 LIBNVDIMM BTT: BLOCK TRANSLATION TABLE
11598 M:      Vishal Verma <vishal.l.verma@intel.com>
11599 M:      Dan Williams <dan.j.williams@intel.com>
11600 M:      Dave Jiang <dave.jiang@intel.com>
11601 L:      nvdimm@lists.linux.dev
11602 S:      Supported
11603 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
11604 P:      Documentation/nvdimm/maintainer-entry-profile.rst
11605 F:      drivers/nvdimm/btt*
11606
11607 LIBNVDIMM PMEM: PERSISTENT MEMORY DRIVER
11608 M:      Dan Williams <dan.j.williams@intel.com>
11609 M:      Vishal Verma <vishal.l.verma@intel.com>
11610 M:      Dave Jiang <dave.jiang@intel.com>
11611 L:      nvdimm@lists.linux.dev
11612 S:      Supported
11613 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
11614 P:      Documentation/nvdimm/maintainer-entry-profile.rst
11615 F:      drivers/nvdimm/pmem*
11616
11617 LIBNVDIMM: DEVICETREE BINDINGS
11618 M:      Oliver O'Halloran <oohall@gmail.com>
11619 L:      nvdimm@lists.linux.dev
11620 S:      Supported
11621 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
11622 F:      Documentation/devicetree/bindings/pmem/pmem-region.txt
11623 F:      drivers/nvdimm/of_pmem.c
11624
11625 LIBNVDIMM: NON-VOLATILE MEMORY DEVICE SUBSYSTEM
11626 M:      Dan Williams <dan.j.williams@intel.com>
11627 M:      Vishal Verma <vishal.l.verma@intel.com>
11628 M:      Dave Jiang <dave.jiang@intel.com>
11629 M:      Ira Weiny <ira.weiny@intel.com>
11630 L:      nvdimm@lists.linux.dev
11631 S:      Supported
11632 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
11633 P:      Documentation/nvdimm/maintainer-entry-profile.rst
11634 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nvdimm/nvdimm.git
11635 F:      drivers/acpi/nfit/*
11636 F:      drivers/nvdimm/*
11637 F:      include/linux/libnvdimm.h
11638 F:      include/linux/nd.h
11639 F:      include/uapi/linux/ndctl.h
11640 F:      tools/testing/nvdimm/
11641
11642 LICENSES and SPDX stuff
11643 M:      Thomas Gleixner <tglx@linutronix.de>
11644 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
11645 L:      linux-spdx@vger.kernel.org
11646 S:      Maintained
11647 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/spdx.git
11648 F:      COPYING
11649 F:      Documentation/process/license-rules.rst
11650 F:      LICENSES/
11651 F:      scripts/spdxcheck-test.sh
11652 F:      scripts/spdxcheck.py
11653
11654 LINEAR RANGES HELPERS
11655 M:      Mark Brown <broonie@kernel.org>
11656 R:      Matti Vaittinen <mazziesaccount@gmail.com>
11657 F:      lib/linear_ranges.c
11658 F:      lib/test_linear_ranges.c
11659 F:      include/linux/linear_range.h
11660
11661 LINUX FOR POWER MACINTOSH
11662 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
11663 L:      linuxppc-dev@lists.ozlabs.org
11664 S:      Odd Fixes
11665 F:      arch/powerpc/platforms/powermac/
11666 F:      drivers/macintosh/
11667
11668 LINUX FOR POWERPC (32-BIT AND 64-BIT)
11669 M:      Michael Ellerman <mpe@ellerman.id.au>
11670 R:      Nicholas Piggin <npiggin@gmail.com>
11671 R:      Christophe Leroy <christophe.leroy@csgroup.eu>
11672 L:      linuxppc-dev@lists.ozlabs.org
11673 S:      Supported
11674 W:      https://github.com/linuxppc/wiki/wiki
11675 Q:      http://patchwork.ozlabs.org/project/linuxppc-dev/list/
11676 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git
11677 F:      Documentation/ABI/stable/sysfs-firmware-opal-*
11678 F:      Documentation/devicetree/bindings/i2c/i2c-opal.txt
11679 F:      Documentation/devicetree/bindings/powerpc/
11680 F:      Documentation/devicetree/bindings/rtc/rtc-opal.txt
11681 F:      Documentation/powerpc/
11682 F:      arch/powerpc/
11683 F:      drivers/*/*/*pasemi*
11684 F:      drivers/*/*pasemi*
11685 F:      drivers/char/tpm/tpm_ibmvtpm*
11686 F:      drivers/crypto/nx/
11687 F:      drivers/crypto/vmx/
11688 F:      drivers/i2c/busses/i2c-opal.c
11689 F:      drivers/net/ethernet/ibm/ibmveth.*
11690 F:      drivers/net/ethernet/ibm/ibmvnic.*
11691 F:      drivers/pci/hotplug/pnv_php.c
11692 F:      drivers/pci/hotplug/rpa*
11693 F:      drivers/rtc/rtc-opal.c
11694 F:      drivers/scsi/ibmvscsi/
11695 F:      drivers/tty/hvc/hvc_opal.c
11696 F:      drivers/watchdog/wdrtas.c
11697 F:      tools/testing/selftests/powerpc
11698 N:      /pmac
11699 N:      powermac
11700 N:      powernv
11701 N:      [^a-z0-9]ps3
11702 N:      pseries
11703
11704 LINUX FOR POWERPC EMBEDDED MPC5XXX
11705 M:      Anatolij Gustschin <agust@denx.de>
11706 L:      linuxppc-dev@lists.ozlabs.org
11707 S:      Odd Fixes
11708 F:      arch/powerpc/platforms/512x/
11709 F:      arch/powerpc/platforms/52xx/
11710
11711 LINUX FOR POWERPC EMBEDDED PPC4XX
11712 L:      linuxppc-dev@lists.ozlabs.org
11713 S:      Orphan
11714 F:      arch/powerpc/platforms/40x/
11715 F:      arch/powerpc/platforms/44x/
11716
11717 LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
11718 M:      Scott Wood <oss@buserror.net>
11719 L:      linuxppc-dev@lists.ozlabs.org
11720 S:      Odd fixes
11721 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git
11722 F:      Documentation/devicetree/bindings/powerpc/fsl/
11723 F:      arch/powerpc/platforms/83xx/
11724 F:      arch/powerpc/platforms/85xx/
11725
11726 LINUX FOR POWERPC EMBEDDED PPC8XX
11727 M:      Christophe Leroy <christophe.leroy@csgroup.eu>
11728 L:      linuxppc-dev@lists.ozlabs.org
11729 S:      Maintained
11730 F:      arch/powerpc/platforms/8xx/
11731
11732 LINUX KERNEL DUMP TEST MODULE (LKDTM)
11733 M:      Kees Cook <keescook@chromium.org>
11734 S:      Maintained
11735 F:      drivers/misc/lkdtm/*
11736 F:      tools/testing/selftests/lkdtm/*
11737
11738 LINUX KERNEL MEMORY CONSISTENCY MODEL (LKMM)
11739 M:      Alan Stern <stern@rowland.harvard.edu>
11740 M:      Andrea Parri <parri.andrea@gmail.com>
11741 M:      Will Deacon <will@kernel.org>
11742 M:      Peter Zijlstra <peterz@infradead.org>
11743 M:      Boqun Feng <boqun.feng@gmail.com>
11744 M:      Nicholas Piggin <npiggin@gmail.com>
11745 M:      David Howells <dhowells@redhat.com>
11746 M:      Jade Alglave <j.alglave@ucl.ac.uk>
11747 M:      Luc Maranget <luc.maranget@inria.fr>
11748 M:      "Paul E. McKenney" <paulmck@kernel.org>
11749 R:      Akira Yokosawa <akiyks@gmail.com>
11750 R:      Daniel Lustig <dlustig@nvidia.com>
11751 R:      Joel Fernandes <joel@joelfernandes.org>
11752 L:      linux-kernel@vger.kernel.org
11753 L:      linux-arch@vger.kernel.org
11754 S:      Supported
11755 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
11756 F:      Documentation/atomic_bitops.txt
11757 F:      Documentation/atomic_t.txt
11758 F:      Documentation/core-api/refcount-vs-atomic.rst
11759 F:      Documentation/litmus-tests/
11760 F:      Documentation/memory-barriers.txt
11761 F:      tools/memory-model/
11762
11763 LIS3LV02D ACCELEROMETER DRIVER
11764 M:      Eric Piel <eric.piel@tremplin-utc.net>
11765 S:      Maintained
11766 F:      Documentation/misc-devices/lis3lv02d.rst
11767 F:      drivers/misc/lis3lv02d/
11768 F:      drivers/platform/x86/hp_accel.c
11769
11770 LIST KUNIT TEST
11771 M:      David Gow <davidgow@google.com>
11772 L:      linux-kselftest@vger.kernel.org
11773 L:      kunit-dev@googlegroups.com
11774 S:      Maintained
11775 F:      lib/list-test.c
11776
11777 LITEX PLATFORM
11778 M:      Karol Gugala <kgugala@antmicro.com>
11779 M:      Mateusz Holenko <mholenko@antmicro.com>
11780 M:      Gabriel Somlo <gsomlo@gmail.com>
11781 M:      Joel Stanley <joel@jms.id.au>
11782 S:      Maintained
11783 F:      Documentation/devicetree/bindings/*/litex,*.yaml
11784 F:      arch/openrisc/boot/dts/or1klitex.dts
11785 F:      include/linux/litex.h
11786 F:      drivers/tty/serial/liteuart.c
11787 F:      drivers/soc/litex/*
11788 F:      drivers/net/ethernet/litex/*
11789 F:      drivers/mmc/host/litex_mmc.c
11790 N:      litex
11791
11792 LIVE PATCHING
11793 M:      Josh Poimboeuf <jpoimboe@kernel.org>
11794 M:      Jiri Kosina <jikos@kernel.org>
11795 M:      Miroslav Benes <mbenes@suse.cz>
11796 M:      Petr Mladek <pmladek@suse.com>
11797 R:      Joe Lawrence <joe.lawrence@redhat.com>
11798 L:      live-patching@vger.kernel.org
11799 S:      Maintained
11800 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/livepatching/livepatching.git
11801 F:      Documentation/ABI/testing/sysfs-kernel-livepatch
11802 F:      Documentation/livepatch/
11803 F:      arch/powerpc/include/asm/livepatch.h
11804 F:      include/linux/livepatch.h
11805 F:      kernel/livepatch/
11806 F:      kernel/module/livepatch.c
11807 F:      lib/livepatch/
11808 F:      samples/livepatch/
11809 F:      tools/testing/selftests/livepatch/
11810
11811 LLC (802.2)
11812 L:      netdev@vger.kernel.org
11813 S:      Odd fixes
11814 F:      include/linux/llc.h
11815 F:      include/net/llc*
11816 F:      include/uapi/linux/llc.h
11817 F:      net/llc/
11818
11819 LM73 HARDWARE MONITOR DRIVER
11820 M:      Guillaume Ligneul <guillaume.ligneul@gmail.com>
11821 L:      linux-hwmon@vger.kernel.org
11822 S:      Maintained
11823 F:      drivers/hwmon/lm73.c
11824
11825 LM78 HARDWARE MONITOR DRIVER
11826 M:      Jean Delvare <jdelvare@suse.com>
11827 L:      linux-hwmon@vger.kernel.org
11828 S:      Maintained
11829 F:      Documentation/hwmon/lm78.rst
11830 F:      drivers/hwmon/lm78.c
11831
11832 LM83 HARDWARE MONITOR DRIVER
11833 M:      Jean Delvare <jdelvare@suse.com>
11834 L:      linux-hwmon@vger.kernel.org
11835 S:      Maintained
11836 F:      Documentation/hwmon/lm83.rst
11837 F:      drivers/hwmon/lm83.c
11838
11839 LM90 HARDWARE MONITOR DRIVER
11840 M:      Jean Delvare <jdelvare@suse.com>
11841 L:      linux-hwmon@vger.kernel.org
11842 S:      Maintained
11843 F:      Documentation/devicetree/bindings/hwmon/national,lm90.yaml
11844 F:      Documentation/hwmon/lm90.rst
11845 F:      drivers/hwmon/lm90.c
11846 F:      include/dt-bindings/thermal/lm90.h
11847
11848 LM95234 HARDWARE MONITOR DRIVER
11849 M:      Guenter Roeck <linux@roeck-us.net>
11850 L:      linux-hwmon@vger.kernel.org
11851 S:      Maintained
11852 F:      Documentation/hwmon/lm95234.rst
11853 F:      drivers/hwmon/lm95234.c
11854
11855 LME2510 MEDIA DRIVER
11856 M:      Malcolm Priestley <tvboxspy@gmail.com>
11857 L:      linux-media@vger.kernel.org
11858 S:      Maintained
11859 W:      https://linuxtv.org
11860 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11861 F:      drivers/media/usb/dvb-usb-v2/lmedm04*
11862
11863 LOADPIN SECURITY MODULE
11864 M:      Kees Cook <keescook@chromium.org>
11865 S:      Supported
11866 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/hardening
11867 F:      Documentation/admin-guide/LSM/LoadPin.rst
11868 F:      security/loadpin/
11869
11870 LOCKING PRIMITIVES
11871 M:      Peter Zijlstra <peterz@infradead.org>
11872 M:      Ingo Molnar <mingo@redhat.com>
11873 M:      Will Deacon <will@kernel.org>
11874 R:      Waiman Long <longman@redhat.com>
11875 R:      Boqun Feng <boqun.feng@gmail.com> (LOCKDEP)
11876 L:      linux-kernel@vger.kernel.org
11877 S:      Maintained
11878 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
11879 F:      Documentation/locking/
11880 F:      arch/*/include/asm/spinlock*.h
11881 F:      include/linux/lockdep.h
11882 F:      include/linux/mutex*.h
11883 F:      include/linux/rwlock*.h
11884 F:      include/linux/rwsem*.h
11885 F:      include/linux/seqlock.h
11886 F:      include/linux/spinlock*.h
11887 F:      kernel/locking/
11888 F:      lib/locking*.[ch]
11889 X:      kernel/locking/locktorture.c
11890
11891 LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
11892 M:      "Richard Russon (FlatCap)" <ldm@flatcap.org>
11893 L:      linux-ntfs-dev@lists.sourceforge.net
11894 S:      Maintained
11895 W:      http://www.linux-ntfs.org/content/view/19/37/
11896 F:      Documentation/admin-guide/ldm.rst
11897 F:      block/partitions/ldm.*
11898
11899 LOGITECH HID GAMING KEYBOARDS
11900 M:      Hans de Goede <hdegoede@redhat.com>
11901 L:      linux-input@vger.kernel.org
11902 S:      Maintained
11903 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
11904 F:      drivers/hid/hid-lg-g15.c
11905
11906 LONTIUM LT8912B MIPI TO HDMI BRIDGE
11907 M:      Adrien Grassein <adrien.grassein@gmail.com>
11908 S:      Maintained
11909 F:      Documentation/devicetree/bindings/display/bridge/lontium,lt8912b.yaml
11910 F:      drivers/gpu/drm/bridge/lontium-lt8912b.c
11911
11912 LOONGARCH
11913 M:      Huacai Chen <chenhuacai@kernel.org>
11914 R:      WANG Xuerui <kernel@xen0n.name>
11915 L:      loongarch@lists.linux.dev
11916 S:      Maintained
11917 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chenhuacai/linux-loongson.git
11918 F:      arch/loongarch/
11919 F:      drivers/*/*loongarch*
11920 F:      Documentation/loongarch/
11921 F:      Documentation/translations/zh_CN/loongarch/
11922
11923 LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
11924 M:      Sathya Prakash <sathya.prakash@broadcom.com>
11925 M:      Sreekanth Reddy <sreekanth.reddy@broadcom.com>
11926 M:      Suganath Prabu Subramani <suganath-prabu.subramani@broadcom.com>
11927 L:      MPT-FusionLinux.pdl@broadcom.com
11928 L:      linux-scsi@vger.kernel.org
11929 S:      Supported
11930 W:      http://www.avagotech.com/support/
11931 F:      drivers/message/fusion/
11932 F:      drivers/scsi/mpt3sas/
11933
11934 LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
11935 M:      Matthew Wilcox <willy@infradead.org>
11936 L:      linux-scsi@vger.kernel.org
11937 S:      Maintained
11938 F:      drivers/scsi/sym53c8xx_2/
11939
11940 LTC1660 DAC DRIVER
11941 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
11942 L:      linux-iio@vger.kernel.org
11943 S:      Maintained
11944 F:      Documentation/devicetree/bindings/iio/dac/lltc,ltc1660.yaml
11945 F:      drivers/iio/dac/ltc1660.c
11946
11947 LTC2688 IIO DAC DRIVER
11948 M:      Nuno Sá <nuno.sa@analog.com>
11949 L:      linux-iio@vger.kernel.org
11950 S:      Supported
11951 W:      http://ez.analog.com/community/linux-device-drivers
11952 F:      Documentation/ABI/testing/sysfs-bus-iio-dac-ltc2688
11953 F:      Documentation/devicetree/bindings/iio/dac/adi,ltc2688.yaml
11954 F:      drivers/iio/dac/ltc2688.c
11955
11956 LTC2947 HARDWARE MONITOR DRIVER
11957 M:      Nuno Sá <nuno.sa@analog.com>
11958 L:      linux-hwmon@vger.kernel.org
11959 S:      Supported
11960 W:      https://ez.analog.com/linux-software-drivers
11961 F:      Documentation/devicetree/bindings/hwmon/adi,ltc2947.yaml
11962 F:      drivers/hwmon/ltc2947-core.c
11963 F:      drivers/hwmon/ltc2947-i2c.c
11964 F:      drivers/hwmon/ltc2947-spi.c
11965 F:      drivers/hwmon/ltc2947.h
11966
11967 LTC2983 IIO TEMPERATURE DRIVER
11968 M:      Nuno Sá <nuno.sa@analog.com>
11969 L:      linux-iio@vger.kernel.org
11970 S:      Supported
11971 W:      https://ez.analog.com/linux-software-drivers
11972 F:      Documentation/devicetree/bindings/iio/temperature/adi,ltc2983.yaml
11973 F:      drivers/iio/temperature/ltc2983.c
11974
11975 LTC4261 HARDWARE MONITOR DRIVER
11976 M:      Guenter Roeck <linux@roeck-us.net>
11977 L:      linux-hwmon@vger.kernel.org
11978 S:      Maintained
11979 F:      Documentation/hwmon/ltc4261.rst
11980 F:      drivers/hwmon/ltc4261.c
11981
11982 LTC4306 I2C MULTIPLEXER DRIVER
11983 M:      Michael Hennerich <michael.hennerich@analog.com>
11984 L:      linux-i2c@vger.kernel.org
11985 S:      Supported
11986 W:      https://ez.analog.com/linux-software-drivers
11987 F:      Documentation/devicetree/bindings/i2c/i2c-mux-ltc4306.txt
11988 F:      drivers/i2c/muxes/i2c-mux-ltc4306.c
11989
11990 LTP (Linux Test Project)
11991 M:      Mike Frysinger <vapier@gentoo.org>
11992 M:      Cyril Hrubis <chrubis@suse.cz>
11993 M:      Wanlong Gao <wanlong.gao@gmail.com>
11994 M:      Jan Stancek <jstancek@redhat.com>
11995 M:      Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com>
11996 M:      Alexey Kodanev <alexey.kodanev@oracle.com>
11997 L:      ltp@lists.linux.it (subscribers-only)
11998 S:      Maintained
11999 W:      http://linux-test-project.github.io/
12000 T:      git git://github.com/linux-test-project/ltp.git
12001
12002 LYNX 28G SERDES PHY DRIVER
12003 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
12004 L:      netdev@vger.kernel.org
12005 S:      Supported
12006 F:      Documentation/devicetree/bindings/phy/fsl,lynx-28g.yaml
12007 F:      drivers/phy/freescale/phy-fsl-lynx-28g.c
12008
12009 LYNX PCS MODULE
12010 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
12011 L:      netdev@vger.kernel.org
12012 S:      Supported
12013 F:      drivers/net/pcs/pcs-lynx.c
12014 F:      include/linux/pcs-lynx.h
12015
12016 M68K ARCHITECTURE
12017 M:      Geert Uytterhoeven <geert@linux-m68k.org>
12018 L:      linux-m68k@lists.linux-m68k.org
12019 S:      Maintained
12020 W:      http://www.linux-m68k.org/
12021 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
12022 F:      arch/m68k/
12023 F:      drivers/zorro/
12024
12025 M68K ON APPLE MACINTOSH
12026 M:      Joshua Thompson <funaho@jurai.org>
12027 L:      linux-m68k@lists.linux-m68k.org
12028 S:      Maintained
12029 W:      http://www.mac.linux-m68k.org/
12030 F:      arch/m68k/mac/
12031 F:      drivers/macintosh/adb-iop.c
12032 F:      drivers/macintosh/via-macii.c
12033
12034 M68K ON HP9000/300
12035 M:      Philip Blundell <philb@gnu.org>
12036 S:      Maintained
12037 W:      http://www.tazenda.demon.co.uk/phil/linux-hp
12038 F:      arch/m68k/hp300/
12039
12040 M88DS3103 MEDIA DRIVER
12041 M:      Antti Palosaari <crope@iki.fi>
12042 L:      linux-media@vger.kernel.org
12043 S:      Maintained
12044 W:      https://linuxtv.org
12045 W:      http://palosaari.fi/linux/
12046 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12047 T:      git git://linuxtv.org/anttip/media_tree.git
12048 F:      drivers/media/dvb-frontends/m88ds3103*
12049
12050 M88RS2000 MEDIA DRIVER
12051 M:      Malcolm Priestley <tvboxspy@gmail.com>
12052 L:      linux-media@vger.kernel.org
12053 S:      Maintained
12054 W:      https://linuxtv.org
12055 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12056 F:      drivers/media/dvb-frontends/m88rs2000*
12057
12058 MA901 MASTERKIT USB FM RADIO DRIVER
12059 M:      Alexey Klimov <klimov.linux@gmail.com>
12060 L:      linux-media@vger.kernel.org
12061 S:      Maintained
12062 T:      git git://linuxtv.org/media_tree.git
12063 F:      drivers/media/radio/radio-ma901.c
12064
12065 MAC80211
12066 M:      Johannes Berg <johannes@sipsolutions.net>
12067 L:      linux-wireless@vger.kernel.org
12068 S:      Maintained
12069 W:      https://wireless.wiki.kernel.org/
12070 Q:      https://patchwork.kernel.org/project/linux-wireless/list/
12071 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless.git
12072 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless-next.git
12073 F:      Documentation/networking/mac80211-injection.rst
12074 F:      Documentation/networking/mac80211_hwsim/mac80211_hwsim.rst
12075 F:      drivers/net/wireless/mac80211_hwsim.[ch]
12076 F:      include/net/mac80211.h
12077 F:      net/mac80211/
12078
12079 MAILBOX API
12080 M:      Jassi Brar <jassisinghbrar@gmail.com>
12081 L:      linux-kernel@vger.kernel.org
12082 S:      Maintained
12083 F:      drivers/mailbox/
12084 F:      include/linux/mailbox_client.h
12085 F:      include/linux/mailbox_controller.h
12086 F:      include/dt-bindings/mailbox/
12087 F:      Documentation/devicetree/bindings/mailbox/
12088
12089 MAILBOX ARM MHUv2
12090 M:      Viresh Kumar <viresh.kumar@linaro.org>
12091 M:      Tushar Khandelwal <Tushar.Khandelwal@arm.com>
12092 L:      linux-kernel@vger.kernel.org
12093 S:      Maintained
12094 F:      drivers/mailbox/arm_mhuv2.c
12095 F:      include/linux/mailbox/arm_mhuv2_message.h
12096 F:      Documentation/devicetree/bindings/mailbox/arm,mhuv2.yaml
12097
12098 MANAGEMENT COMPONENT TRANSPORT PROTOCOL (MCTP)
12099 M:      Jeremy Kerr <jk@codeconstruct.com.au>
12100 M:      Matt Johnston <matt@codeconstruct.com.au>
12101 L:      netdev@vger.kernel.org
12102 S:      Maintained
12103 F:      Documentation/networking/mctp.rst
12104 F:      drivers/net/mctp/
12105 F:      include/net/mctp.h
12106 F:      include/net/mctpdevice.h
12107 F:      include/net/netns/mctp.h
12108 F:      net/mctp/
12109
12110 MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
12111 M:      Michael Kerrisk <mtk.manpages@gmail.com>
12112 L:      linux-man@vger.kernel.org
12113 S:      Maintained
12114 W:      http://www.kernel.org/doc/man-pages
12115
12116 MARDUK (CREATOR CI40) DEVICE TREE SUPPORT
12117 M:      Rahul Bedarkar <rahulbedarkar89@gmail.com>
12118 L:      linux-mips@vger.kernel.org
12119 S:      Maintained
12120 F:      arch/mips/boot/dts/img/pistachio*
12121
12122 MARVELL 88E6XXX ETHERNET SWITCH FABRIC DRIVER
12123 M:      Andrew Lunn <andrew@lunn.ch>
12124 M:      Vivien Didelot <vivien.didelot@gmail.com>
12125 L:      netdev@vger.kernel.org
12126 S:      Maintained
12127 F:      Documentation/devicetree/bindings/net/dsa/marvell.txt
12128 F:      Documentation/networking/devlink/mv88e6xxx.rst
12129 F:      drivers/net/dsa/mv88e6xxx/
12130 F:      include/linux/dsa/mv88e6xxx.h
12131 F:      include/linux/platform_data/mv88e6xxx.h
12132
12133 MARVELL ARMADA 3700 PHY DRIVERS
12134 M:      Miquel Raynal <miquel.raynal@bootlin.com>
12135 S:      Maintained
12136 F:      Documentation/devicetree/bindings/phy/phy-mvebu-comphy.txt
12137 F:      Documentation/devicetree/bindings/phy/marvell,armada-3700-utmi-phy.yaml
12138 F:      drivers/phy/marvell/phy-mvebu-a3700-comphy.c
12139 F:      drivers/phy/marvell/phy-mvebu-a3700-utmi.c
12140
12141 MARVELL ARMADA 3700 SERIAL DRIVER
12142 M:      Pali Rohár <pali@kernel.org>
12143 S:      Maintained
12144 F:      Documentation/devicetree/bindings/clock/marvell,armada-3700-uart-clock.yaml
12145 F:      Documentation/devicetree/bindings/serial/mvebu-uart.txt
12146 F:      drivers/tty/serial/mvebu-uart.c
12147
12148 MARVELL ARMADA DRM SUPPORT
12149 M:      Russell King <linux@armlinux.org.uk>
12150 S:      Maintained
12151 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-devel
12152 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-fixes
12153 F:      Documentation/devicetree/bindings/display/armada/
12154 F:      drivers/gpu/drm/armada/
12155 F:      include/uapi/drm/armada_drm.h
12156
12157 MARVELL CRYPTO DRIVER
12158 M:      Boris Brezillon <bbrezillon@kernel.org>
12159 M:      Arnaud Ebalard <arno@natisbad.org>
12160 M:      Srujana Challa <schalla@marvell.com>
12161 L:      linux-crypto@vger.kernel.org
12162 S:      Maintained
12163 F:      drivers/crypto/marvell/
12164 F:      include/linux/soc/marvell/octeontx2/
12165
12166 MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
12167 M:      Mirko Lindner <mlindner@marvell.com>
12168 M:      Stephen Hemminger <stephen@networkplumber.org>
12169 L:      netdev@vger.kernel.org
12170 S:      Maintained
12171 F:      drivers/net/ethernet/marvell/sk*
12172
12173 MARVELL LIBERTAS WIRELESS DRIVER
12174 L:      libertas-dev@lists.infradead.org
12175 S:      Orphan
12176 F:      drivers/net/wireless/marvell/libertas/
12177
12178 MARVELL MACCHIATOBIN SUPPORT
12179 M:      Russell King <linux@armlinux.org.uk>
12180 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12181 S:      Maintained
12182 F:      arch/arm64/boot/dts/marvell/armada-8040-mcbin.dts
12183
12184 MARVELL MV643XX ETHERNET DRIVER
12185 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
12186 L:      netdev@vger.kernel.org
12187 S:      Maintained
12188 F:      drivers/net/ethernet/marvell/mv643xx_eth.*
12189 F:      include/linux/mv643xx.h
12190
12191 MARVELL MV88X3310 PHY DRIVER
12192 M:      Russell King <linux@armlinux.org.uk>
12193 M:      Marek Behún <kabel@kernel.org>
12194 L:      netdev@vger.kernel.org
12195 S:      Maintained
12196 F:      drivers/net/phy/marvell10g.c
12197
12198 MARVELL MVEBU THERMAL DRIVER
12199 M:      Miquel Raynal <miquel.raynal@bootlin.com>
12200 S:      Maintained
12201 F:      drivers/thermal/armada_thermal.c
12202
12203 MARVELL MVNETA ETHERNET DRIVER
12204 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
12205 L:      netdev@vger.kernel.org
12206 S:      Maintained
12207 F:      drivers/net/ethernet/marvell/mvneta.*
12208
12209 MARVELL MVPP2 ETHERNET DRIVER
12210 M:      Marcin Wojtas <mw@semihalf.com>
12211 M:      Russell King <linux@armlinux.org.uk>
12212 L:      netdev@vger.kernel.org
12213 S:      Maintained
12214 F:      Documentation/devicetree/bindings/net/marvell-pp2.txt
12215 F:      drivers/net/ethernet/marvell/mvpp2/
12216
12217 MARVELL MWIFIEX WIRELESS DRIVER
12218 M:      Amitkumar Karwar <amitkarwar@gmail.com>
12219 M:      Ganapathi Bhat <ganapathi017@gmail.com>
12220 M:      Sharvari Harisangam <sharvari.harisangam@nxp.com>
12221 M:      Xinming Hu <huxinming820@gmail.com>
12222 L:      linux-wireless@vger.kernel.org
12223 S:      Maintained
12224 F:      drivers/net/wireless/marvell/mwifiex/
12225
12226 MARVELL MWL8K WIRELESS DRIVER
12227 M:      Lennert Buytenhek <buytenh@wantstofly.org>
12228 L:      linux-wireless@vger.kernel.org
12229 S:      Odd Fixes
12230 F:      drivers/net/wireless/marvell/mwl8k.c
12231
12232 MARVELL NAND CONTROLLER DRIVER
12233 M:      Miquel Raynal <miquel.raynal@bootlin.com>
12234 L:      linux-mtd@lists.infradead.org
12235 S:      Maintained
12236 F:      Documentation/devicetree/bindings/mtd/marvell-nand.txt
12237 F:      drivers/mtd/nand/raw/marvell_nand.c
12238
12239 MARVELL OCTEONTX2 PHYSICAL FUNCTION DRIVER
12240 M:      Sunil Goutham <sgoutham@marvell.com>
12241 M:      Geetha sowjanya <gakula@marvell.com>
12242 M:      Subbaraya Sundeep <sbhatta@marvell.com>
12243 M:      hariprasad <hkelam@marvell.com>
12244 L:      netdev@vger.kernel.org
12245 S:      Supported
12246 F:      drivers/net/ethernet/marvell/octeontx2/nic/
12247 F:      include/linux/soc/marvell/octeontx2/
12248
12249 MARVELL OCTEONTX2 RVU ADMIN FUNCTION DRIVER
12250 M:      Sunil Goutham <sgoutham@marvell.com>
12251 M:      Linu Cherian <lcherian@marvell.com>
12252 M:      Geetha sowjanya <gakula@marvell.com>
12253 M:      Jerin Jacob <jerinj@marvell.com>
12254 M:      hariprasad <hkelam@marvell.com>
12255 M:      Subbaraya Sundeep <sbhatta@marvell.com>
12256 L:      netdev@vger.kernel.org
12257 S:      Supported
12258 F:      Documentation/networking/device_drivers/ethernet/marvell/octeontx2.rst
12259 F:      drivers/net/ethernet/marvell/octeontx2/af/
12260
12261 MARVELL PRESTERA ETHERNET SWITCH DRIVER
12262 M:      Taras Chornyi <tchornyi@marvell.com>
12263 S:      Supported
12264 W:      https://github.com/Marvell-switching/switchdev-prestera
12265 F:      drivers/net/ethernet/marvell/prestera/
12266
12267 MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
12268 M:      Nicolas Pitre <nico@fluxnic.net>
12269 S:      Odd Fixes
12270 F:      drivers/mmc/host/mvsdio.*
12271
12272 MARVELL USB MDIO CONTROLLER DRIVER
12273 M:      Tobias Waldekranz <tobias@waldekranz.com>
12274 L:      netdev@vger.kernel.org
12275 S:      Maintained
12276 F:      Documentation/devicetree/bindings/net/marvell,mvusb.yaml
12277 F:      drivers/net/mdio/mdio-mvusb.c
12278
12279 MARVELL XENON MMC/SD/SDIO HOST CONTROLLER DRIVER
12280 M:      Hu Ziji <huziji@marvell.com>
12281 L:      linux-mmc@vger.kernel.org
12282 S:      Supported
12283 F:      Documentation/devicetree/bindings/mmc/marvell,xenon-sdhci.yaml
12284 F:      drivers/mmc/host/sdhci-xenon*
12285
12286 MARVELL OCTEON ENDPOINT DRIVER
12287 M:      Veerasenareddy Burru <vburru@marvell.com>
12288 M:      Abhijit Ayarekar <aayarekar@marvell.com>
12289 L:      netdev@vger.kernel.org
12290 S:      Supported
12291 F:      drivers/net/ethernet/marvell/octeon_ep
12292
12293 MATROX FRAMEBUFFER DRIVER
12294 L:      linux-fbdev@vger.kernel.org
12295 S:      Orphan
12296 F:      drivers/video/fbdev/matrox/matroxfb_*
12297 F:      include/uapi/linux/matroxfb.h
12298
12299 MAX15301 DRIVER
12300 M:      Daniel Nilsson <daniel.nilsson@flex.com>
12301 L:      linux-hwmon@vger.kernel.org
12302 S:      Maintained
12303 F:      Documentation/hwmon/max15301.rst
12304 F:      drivers/hwmon/pmbus/max15301.c
12305
12306 MAX16065 HARDWARE MONITOR DRIVER
12307 M:      Guenter Roeck <linux@roeck-us.net>
12308 L:      linux-hwmon@vger.kernel.org
12309 S:      Maintained
12310 F:      Documentation/hwmon/max16065.rst
12311 F:      drivers/hwmon/max16065.c
12312
12313 MAX2175 SDR TUNER DRIVER
12314 M:      Ramesh Shanmugasundaram <rashanmu@gmail.com>
12315 L:      linux-media@vger.kernel.org
12316 S:      Maintained
12317 T:      git git://linuxtv.org/media_tree.git
12318 F:      Documentation/devicetree/bindings/media/i2c/max2175.txt
12319 F:      Documentation/userspace-api/media/drivers/max2175.rst
12320 F:      drivers/media/i2c/max2175*
12321 F:      include/uapi/linux/max2175.h
12322
12323 MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
12324 L:      linux-hwmon@vger.kernel.org
12325 S:      Orphan
12326 F:      Documentation/hwmon/max6650.rst
12327 F:      drivers/hwmon/max6650.c
12328
12329 MAX6697 HARDWARE MONITOR DRIVER
12330 M:      Guenter Roeck <linux@roeck-us.net>
12331 L:      linux-hwmon@vger.kernel.org
12332 S:      Maintained
12333 F:      Documentation/devicetree/bindings/hwmon/max6697.txt
12334 F:      Documentation/hwmon/max6697.rst
12335 F:      drivers/hwmon/max6697.c
12336 F:      include/linux/platform_data/max6697.h
12337
12338 MAX9286 QUAD GMSL DESERIALIZER DRIVER
12339 M:      Jacopo Mondi <jacopo+renesas@jmondi.org>
12340 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
12341 M:      Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
12342 M:      Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
12343 L:      linux-media@vger.kernel.org
12344 S:      Maintained
12345 F:      Documentation/devicetree/bindings/media/i2c/maxim,max9286.yaml
12346 F:      drivers/media/i2c/max9286.c
12347
12348 MAX96712 QUAD GMSL2 DESERIALIZER DRIVER
12349 M:      Niklas Söderlund <niklas.soderlund@ragnatech.se>
12350 L:      linux-media@vger.kernel.org
12351 S:      Maintained
12352 F:      drivers/staging/media/max96712/max96712.c
12353
12354 MAX9860 MONO AUDIO VOICE CODEC DRIVER
12355 M:      Peter Rosin <peda@axentia.se>
12356 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12357 S:      Maintained
12358 F:      Documentation/devicetree/bindings/sound/max9860.txt
12359 F:      sound/soc/codecs/max9860.*
12360
12361 MAXBOTIX ULTRASONIC RANGER IIO DRIVER
12362 M:      Andreas Klinger <ak@it-klinger.de>
12363 L:      linux-iio@vger.kernel.org
12364 S:      Maintained
12365 F:      Documentation/devicetree/bindings/iio/proximity/maxbotix,mb1232.yaml
12366 F:      drivers/iio/proximity/mb1232.c
12367
12368 MAXIM MAX17040 FAMILY FUEL GAUGE DRIVERS
12369 R:      Iskren Chernev <iskren.chernev@gmail.com>
12370 R:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
12371 R:      Marek Szyprowski <m.szyprowski@samsung.com>
12372 R:      Matheus Castello <matheus@castello.eng.br>
12373 L:      linux-pm@vger.kernel.org
12374 S:      Maintained
12375 F:      Documentation/devicetree/bindings/power/supply/maxim,max17040.yaml
12376 F:      drivers/power/supply/max17040_battery.c
12377
12378 MAXIM MAX17042 FAMILY FUEL GAUGE DRIVERS
12379 R:      Hans de Goede <hdegoede@redhat.com>
12380 R:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
12381 R:      Marek Szyprowski <m.szyprowski@samsung.com>
12382 R:      Sebastian Krzyszkowiak <sebastian.krzyszkowiak@puri.sm>
12383 R:      Purism Kernel Team <kernel@puri.sm>
12384 L:      linux-pm@vger.kernel.org
12385 S:      Maintained
12386 F:      Documentation/devicetree/bindings/power/supply/maxim,max17042.yaml
12387 F:      drivers/power/supply/max17042_battery.c
12388
12389 MAXIM MAX20086 CAMERA POWER PROTECTOR DRIVER
12390 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12391 L:      linux-kernel@vger.kernel.org
12392 S:      Maintained
12393 F:      Documentation/devicetree/bindings/regulator/maxim,max20086.yaml
12394 F:      drivers/regulator/max20086-regulator.c
12395
12396 MAXIM MAX77650 PMIC MFD DRIVER
12397 M:      Bartosz Golaszewski <brgl@bgdev.pl>
12398 L:      linux-kernel@vger.kernel.org
12399 S:      Maintained
12400 F:      Documentation/devicetree/bindings/*/*max77650.yaml
12401 F:      Documentation/devicetree/bindings/*/max77650*.yaml
12402 F:      drivers/gpio/gpio-max77650.c
12403 F:      drivers/input/misc/max77650-onkey.c
12404 F:      drivers/leds/leds-max77650.c
12405 F:      drivers/mfd/max77650.c
12406 F:      drivers/power/supply/max77650-charger.c
12407 F:      drivers/regulator/max77650-regulator.c
12408 F:      include/linux/mfd/max77650.h
12409
12410 MAXIM MAX77714 PMIC MFD DRIVER
12411 M:      Luca Ceresoli <luca@lucaceresoli.net>
12412 S:      Maintained
12413 F:      Documentation/devicetree/bindings/mfd/maxim,max77714.yaml
12414 F:      drivers/mfd/max77714.c
12415 F:      include/linux/mfd/max77714.h
12416
12417 MAXIM MAX77802 PMIC REGULATOR DEVICE DRIVER
12418 M:      Javier Martinez Canillas <javier@dowhile0.org>
12419 L:      linux-kernel@vger.kernel.org
12420 S:      Supported
12421 F:      Documentation/devicetree/bindings/*/*max77802.yaml
12422 F:      drivers/regulator/max77802-regulator.c
12423 F:      include/dt-bindings/*/*max77802.h
12424
12425 MAXIM MAX77976 BATTERY CHARGER
12426 M:      Luca Ceresoli <luca@lucaceresoli.net>
12427 S:      Supported
12428 F:      Documentation/devicetree/bindings/power/supply/maxim,max77976.yaml
12429 F:      drivers/power/supply/max77976_charger.c
12430
12431 MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS
12432 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
12433 L:      linux-pm@vger.kernel.org
12434 S:      Supported
12435 B:      mailto:linux-samsung-soc@vger.kernel.org
12436 F:      Documentation/devicetree/bindings/power/supply/maxim,max14577.yaml
12437 F:      Documentation/devicetree/bindings/power/supply/maxim,max77693.yaml
12438 F:      drivers/power/supply/max14577_charger.c
12439 F:      drivers/power/supply/max77693_charger.c
12440
12441 MAXIM PMIC AND MUIC DRIVERS FOR EXYNOS BASED BOARDS
12442 M:      Chanwoo Choi <cw00.choi@samsung.com>
12443 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
12444 L:      linux-kernel@vger.kernel.org
12445 S:      Supported
12446 B:      mailto:linux-samsung-soc@vger.kernel.org
12447 F:      Documentation/devicetree/bindings/*/maxim,max14577.yaml
12448 F:      Documentation/devicetree/bindings/*/maxim,max77686.yaml
12449 F:      Documentation/devicetree/bindings/*/maxim,max77693.yaml
12450 F:      Documentation/devicetree/bindings/*/maxim,max77843.yaml
12451 F:      Documentation/devicetree/bindings/clock/maxim,max77686.txt
12452 F:      drivers/*/*max77843.c
12453 F:      drivers/*/max14577*.c
12454 F:      drivers/*/max77686*.c
12455 F:      drivers/*/max77693*.c
12456 F:      drivers/clk/clk-max77686.c
12457 F:      drivers/extcon/extcon-max14577.c
12458 F:      drivers/extcon/extcon-max77693.c
12459 F:      drivers/rtc/rtc-max77686.c
12460 F:      include/linux/mfd/max14577*.h
12461 F:      include/linux/mfd/max77686*.h
12462 F:      include/linux/mfd/max77693*.h
12463
12464 MAXIRADIO FM RADIO RECEIVER DRIVER
12465 M:      Hans Verkuil <hverkuil@xs4all.nl>
12466 L:      linux-media@vger.kernel.org
12467 S:      Maintained
12468 W:      https://linuxtv.org
12469 T:      git git://linuxtv.org/media_tree.git
12470 F:      drivers/media/radio/radio-maxiradio*
12471
12472 MAXLINEAR ETHERNET PHY DRIVER
12473 M:      Xu Liang <lxu@maxlinear.com>
12474 L:      netdev@vger.kernel.org
12475 S:      Supported
12476 F:      drivers/net/phy/mxl-gpy.c
12477
12478 MCBA MICROCHIP CAN BUS ANALYZER TOOL DRIVER
12479 R:      Yasushi SHOJI <yashi@spacecubics.com>
12480 L:      linux-can@vger.kernel.org
12481 S:      Maintained
12482 F:      drivers/net/can/usb/mcba_usb.c
12483
12484 MCAN MMIO DEVICE DRIVER
12485 M:      Chandrasekar Ramakrishnan <rcsekar@samsung.com>
12486 L:      linux-can@vger.kernel.org
12487 S:      Maintained
12488 F:      Documentation/devicetree/bindings/net/can/bosch,m_can.yaml
12489 F:      drivers/net/can/m_can/m_can.c
12490 F:      drivers/net/can/m_can/m_can.h
12491 F:      drivers/net/can/m_can/m_can_platform.c
12492
12493 MCP2221A MICROCHIP USB-HID TO I2C BRIDGE DRIVER
12494 M:      Rishi Gupta <gupt21@gmail.com>
12495 L:      linux-i2c@vger.kernel.org
12496 L:      linux-input@vger.kernel.org
12497 S:      Maintained
12498 F:      drivers/hid/hid-mcp2221.c
12499
12500 MCP251XFD SPI-CAN NETWORK DRIVER
12501 M:      Marc Kleine-Budde <mkl@pengutronix.de>
12502 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
12503 R:      Thomas Kopp <thomas.kopp@microchip.com>
12504 L:      linux-can@vger.kernel.org
12505 S:      Maintained
12506 F:      Documentation/devicetree/bindings/net/can/microchip,mcp251xfd.yaml
12507 F:      drivers/net/can/spi/mcp251xfd/
12508
12509 MCP4018 AND MCP4531 MICROCHIP DIGITAL POTENTIOMETER DRIVERS
12510 M:      Peter Rosin <peda@axentia.se>
12511 L:      linux-iio@vger.kernel.org
12512 S:      Maintained
12513 F:      Documentation/ABI/testing/sysfs-bus-iio-potentiometer-mcp4531
12514 F:      drivers/iio/potentiometer/mcp4018.c
12515 F:      drivers/iio/potentiometer/mcp4531.c
12516
12517 MCR20A IEEE-802.15.4 RADIO DRIVER
12518 M:      Xue Liu <liuxuenetmail@gmail.com>
12519 L:      linux-wpan@vger.kernel.org
12520 S:      Maintained
12521 W:      https://github.com/xueliu/mcr20a-linux
12522 F:      Documentation/devicetree/bindings/net/ieee802154/mcr20a.txt
12523 F:      drivers/net/ieee802154/mcr20a.c
12524 F:      drivers/net/ieee802154/mcr20a.h
12525
12526 MEASUREMENT COMPUTING CIO-DAC IIO DRIVER
12527 M:      William Breathitt Gray <william.gray@linaro.org>
12528 L:      linux-iio@vger.kernel.org
12529 S:      Maintained
12530 F:      drivers/iio/dac/cio-dac.c
12531
12532 MEDIA CONTROLLER FRAMEWORK
12533 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
12534 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12535 L:      linux-media@vger.kernel.org
12536 S:      Supported
12537 W:      https://www.linuxtv.org
12538 T:      git git://linuxtv.org/media_tree.git
12539 F:      drivers/media/mc/
12540 F:      include/media/media-*.h
12541 F:      include/uapi/linux/media.h
12542
12543 MEDIA DRIVER FOR FREESCALE IMX PXP
12544 M:      Philipp Zabel <p.zabel@pengutronix.de>
12545 L:      linux-media@vger.kernel.org
12546 S:      Maintained
12547 T:      git git://linuxtv.org/media_tree.git
12548 F:      drivers/media/platform/nxp/imx-pxp.[ch]
12549
12550 MEDIA DRIVERS FOR ASCOT2E
12551 M:      Sergey Kozlov <serjk@netup.ru>
12552 M:      Abylay Ospan <aospan@netup.ru>
12553 L:      linux-media@vger.kernel.org
12554 S:      Supported
12555 W:      https://linuxtv.org
12556 W:      http://netup.tv/
12557 T:      git git://linuxtv.org/media_tree.git
12558 F:      drivers/media/dvb-frontends/ascot2e*
12559
12560 MEDIA DRIVERS FOR CXD2099AR CI CONTROLLERS
12561 M:      Jasmin Jessich <jasmin@anw.at>
12562 L:      linux-media@vger.kernel.org
12563 S:      Maintained
12564 W:      https://linuxtv.org
12565 T:      git git://linuxtv.org/media_tree.git
12566 F:      drivers/media/dvb-frontends/cxd2099*
12567
12568 MEDIA DRIVERS FOR CXD2841ER
12569 M:      Sergey Kozlov <serjk@netup.ru>
12570 M:      Abylay Ospan <aospan@netup.ru>
12571 L:      linux-media@vger.kernel.org
12572 S:      Supported
12573 W:      https://linuxtv.org
12574 W:      http://netup.tv/
12575 T:      git git://linuxtv.org/media_tree.git
12576 F:      drivers/media/dvb-frontends/cxd2841er*
12577
12578 MEDIA DRIVERS FOR CXD2880
12579 M:      Yasunari Takiguchi <Yasunari.Takiguchi@sony.com>
12580 L:      linux-media@vger.kernel.org
12581 S:      Supported
12582 W:      http://linuxtv.org/
12583 T:      git git://linuxtv.org/media_tree.git
12584 F:      drivers/media/dvb-frontends/cxd2880/*
12585 F:      drivers/media/spi/cxd2880*
12586
12587 MEDIA DRIVERS FOR DIGITAL DEVICES PCIE DEVICES
12588 L:      linux-media@vger.kernel.org
12589 S:      Orphan
12590 W:      https://linuxtv.org
12591 T:      git git://linuxtv.org/media_tree.git
12592 F:      drivers/media/pci/ddbridge/*
12593
12594 MEDIA DRIVERS FOR FREESCALE IMX
12595 M:      Steve Longerbeam <slongerbeam@gmail.com>
12596 M:      Philipp Zabel <p.zabel@pengutronix.de>
12597 L:      linux-media@vger.kernel.org
12598 S:      Maintained
12599 T:      git git://linuxtv.org/media_tree.git
12600 F:      Documentation/admin-guide/media/imx.rst
12601 F:      Documentation/devicetree/bindings/media/imx.txt
12602 F:      drivers/staging/media/imx/
12603 F:      include/linux/imx-media.h
12604 F:      include/media/imx.h
12605
12606 MEDIA DRIVERS FOR FREESCALE IMX7
12607 M:      Rui Miguel Silva <rmfrfs@gmail.com>
12608 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12609 L:      linux-media@vger.kernel.org
12610 S:      Maintained
12611 T:      git git://linuxtv.org/media_tree.git
12612 F:      Documentation/admin-guide/media/imx7.rst
12613 F:      Documentation/devicetree/bindings/media/nxp,imx-mipi-csi2.yaml
12614 F:      Documentation/devicetree/bindings/media/nxp,imx7-csi.yaml
12615 F:      drivers/media/platform/nxp/imx-mipi-csis.c
12616 F:      drivers/staging/media/imx/imx7-media-csi.c
12617
12618 MEDIA DRIVERS FOR HELENE
12619 M:      Abylay Ospan <aospan@netup.ru>
12620 L:      linux-media@vger.kernel.org
12621 S:      Supported
12622 W:      https://linuxtv.org
12623 W:      http://netup.tv/
12624 T:      git git://linuxtv.org/media_tree.git
12625 F:      drivers/media/dvb-frontends/helene*
12626
12627 MEDIA DRIVERS FOR HORUS3A
12628 M:      Sergey Kozlov <serjk@netup.ru>
12629 M:      Abylay Ospan <aospan@netup.ru>
12630 L:      linux-media@vger.kernel.org
12631 S:      Supported
12632 W:      https://linuxtv.org
12633 W:      http://netup.tv/
12634 T:      git git://linuxtv.org/media_tree.git
12635 F:      drivers/media/dvb-frontends/horus3a*
12636
12637 MEDIA DRIVERS FOR LNBH25
12638 M:      Sergey Kozlov <serjk@netup.ru>
12639 M:      Abylay Ospan <aospan@netup.ru>
12640 L:      linux-media@vger.kernel.org
12641 S:      Supported
12642 W:      https://linuxtv.org
12643 W:      http://netup.tv/
12644 T:      git git://linuxtv.org/media_tree.git
12645 F:      drivers/media/dvb-frontends/lnbh25*
12646
12647 MEDIA DRIVERS FOR MXL5XX TUNER DEMODULATORS
12648 L:      linux-media@vger.kernel.org
12649 S:      Orphan
12650 W:      https://linuxtv.org
12651 T:      git git://linuxtv.org/media_tree.git
12652 F:      drivers/media/dvb-frontends/mxl5xx*
12653
12654 MEDIA DRIVERS FOR NETUP PCI UNIVERSAL DVB devices
12655 M:      Sergey Kozlov <serjk@netup.ru>
12656 M:      Abylay Ospan <aospan@netup.ru>
12657 L:      linux-media@vger.kernel.org
12658 S:      Supported
12659 W:      https://linuxtv.org
12660 W:      http://netup.tv/
12661 T:      git git://linuxtv.org/media_tree.git
12662 F:      drivers/media/pci/netup_unidvb/*
12663
12664 MEDIA DRIVERS FOR NVIDIA TEGRA - VDE
12665 M:      Dmitry Osipenko <digetx@gmail.com>
12666 L:      linux-media@vger.kernel.org
12667 L:      linux-tegra@vger.kernel.org
12668 S:      Maintained
12669 T:      git git://linuxtv.org/media_tree.git
12670 F:      Documentation/devicetree/bindings/media/nvidia,tegra-vde.yaml
12671 F:      drivers/media/platform/nvidia/tegra-vde/
12672
12673 MEDIA DRIVERS FOR RENESAS - CEU
12674 M:      Jacopo Mondi <jacopo@jmondi.org>
12675 L:      linux-media@vger.kernel.org
12676 L:      linux-renesas-soc@vger.kernel.org
12677 S:      Supported
12678 T:      git git://linuxtv.org/media_tree.git
12679 F:      Documentation/devicetree/bindings/media/renesas,ceu.yaml
12680 F:      drivers/media/platform/renesas/renesas-ceu.c
12681 F:      include/media/drv-intf/renesas-ceu.h
12682
12683 MEDIA DRIVERS FOR RENESAS - DRIF
12684 M:      Fabrizio Castro <fabrizio.castro.jz@renesas.com>
12685 L:      linux-media@vger.kernel.org
12686 L:      linux-renesas-soc@vger.kernel.org
12687 S:      Supported
12688 T:      git git://linuxtv.org/media_tree.git
12689 F:      Documentation/devicetree/bindings/media/renesas,drif.yaml
12690 F:      drivers/media/platform/renesas/rcar_drif.c
12691
12692 MEDIA DRIVERS FOR RENESAS - FCP
12693 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12694 L:      linux-media@vger.kernel.org
12695 L:      linux-renesas-soc@vger.kernel.org
12696 S:      Supported
12697 T:      git git://linuxtv.org/media_tree.git
12698 F:      Documentation/devicetree/bindings/media/renesas,fcp.yaml
12699 F:      drivers/media/platform/renesas/rcar-fcp.c
12700 F:      include/media/rcar-fcp.h
12701
12702 MEDIA DRIVERS FOR RENESAS - FDP1
12703 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
12704 L:      linux-media@vger.kernel.org
12705 L:      linux-renesas-soc@vger.kernel.org
12706 S:      Supported
12707 T:      git git://linuxtv.org/media_tree.git
12708 F:      Documentation/devicetree/bindings/media/renesas,fdp1.yaml
12709 F:      drivers/media/platform/renesas/rcar_fdp1.c
12710
12711 MEDIA DRIVERS FOR RENESAS - VIN
12712 M:      Niklas Söderlund <niklas.soderlund@ragnatech.se>
12713 L:      linux-media@vger.kernel.org
12714 L:      linux-renesas-soc@vger.kernel.org
12715 S:      Supported
12716 T:      git git://linuxtv.org/media_tree.git
12717 F:      Documentation/devicetree/bindings/media/renesas,csi2.yaml
12718 F:      Documentation/devicetree/bindings/media/renesas,isp.yaml
12719 F:      Documentation/devicetree/bindings/media/renesas,vin.yaml
12720 F:      drivers/media/platform/renesas/rcar-isp.c
12721 F:      drivers/media/platform/renesas/rcar-vin/
12722
12723 MEDIA DRIVERS FOR RENESAS - VSP1
12724 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12725 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
12726 L:      linux-media@vger.kernel.org
12727 L:      linux-renesas-soc@vger.kernel.org
12728 S:      Supported
12729 T:      git git://linuxtv.org/media_tree.git
12730 F:      Documentation/devicetree/bindings/media/renesas,vsp1.yaml
12731 F:      drivers/media/platform/renesas/vsp1/
12732
12733 MEDIA DRIVERS FOR ST STV0910 DEMODULATOR ICs
12734 L:      linux-media@vger.kernel.org
12735 S:      Orphan
12736 W:      https://linuxtv.org
12737 T:      git git://linuxtv.org/media_tree.git
12738 F:      drivers/media/dvb-frontends/stv0910*
12739
12740 MEDIA DRIVERS FOR ST STV6111 TUNER ICs
12741 L:      linux-media@vger.kernel.org
12742 S:      Orphan
12743 W:      https://linuxtv.org
12744 T:      git git://linuxtv.org/media_tree.git
12745 F:      drivers/media/dvb-frontends/stv6111*
12746
12747 MEDIA DRIVERS FOR STM32 - DCMI
12748 M:      Hugues Fruchet <hugues.fruchet@foss.st.com>
12749 L:      linux-media@vger.kernel.org
12750 S:      Supported
12751 T:      git git://linuxtv.org/media_tree.git
12752 F:      Documentation/devicetree/bindings/media/st,stm32-dcmi.yaml
12753 F:      drivers/media/platform/st/stm32/stm32-dcmi.c
12754
12755 MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
12756 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
12757 L:      linux-media@vger.kernel.org
12758 S:      Maintained
12759 W:      https://linuxtv.org
12760 Q:      http://patchwork.kernel.org/project/linux-media/list/
12761 T:      git git://linuxtv.org/media_tree.git
12762 F:      Documentation/admin-guide/media/
12763 F:      Documentation/devicetree/bindings/media/
12764 F:      Documentation/driver-api/media/
12765 F:      Documentation/userspace-api/media/
12766 F:      drivers/media/
12767 F:      drivers/staging/media/
12768 F:      include/dt-bindings/media/
12769 F:      include/linux/platform_data/media/
12770 F:      include/media/
12771 F:      include/uapi/linux/dvb/
12772 F:      include/uapi/linux/ivtv*
12773 F:      include/uapi/linux/media.h
12774 F:      include/uapi/linux/meye.h
12775 F:      include/uapi/linux/uvcvideo.h
12776 F:      include/uapi/linux/v4l2-*
12777 F:      include/uapi/linux/videodev2.h
12778
12779 MEDIATEK BLUETOOTH DRIVER
12780 M:      Sean Wang <sean.wang@mediatek.com>
12781 L:      linux-bluetooth@vger.kernel.org
12782 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
12783 S:      Maintained
12784 F:      Documentation/devicetree/bindings/net/mediatek-bluetooth.txt
12785 F:      drivers/bluetooth/btmtkuart.c
12786
12787 MEDIATEK BOARD LEVEL SHUTDOWN DRIVERS
12788 M:      Sean Wang <sean.wang@mediatek.com>
12789 L:      linux-pm@vger.kernel.org
12790 S:      Maintained
12791 F:      Documentation/devicetree/bindings/power/reset/mt6323-poweroff.txt
12792 F:      drivers/power/reset/mt6323-poweroff.c
12793
12794 MEDIATEK CIR DRIVER
12795 M:      Sean Wang <sean.wang@mediatek.com>
12796 S:      Maintained
12797 F:      drivers/media/rc/mtk-cir.c
12798
12799 MEDIATEK DMA DRIVER
12800 M:      Sean Wang <sean.wang@mediatek.com>
12801 L:      dmaengine@vger.kernel.org
12802 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12803 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
12804 S:      Maintained
12805 F:      Documentation/devicetree/bindings/dma/mtk-*
12806 F:      drivers/dma/mediatek/
12807
12808 MEDIATEK ETHERNET DRIVER
12809 M:      Felix Fietkau <nbd@nbd.name>
12810 M:      John Crispin <john@phrozen.org>
12811 M:      Sean Wang <sean.wang@mediatek.com>
12812 M:      Mark Lee <Mark-MC.Lee@mediatek.com>
12813 L:      netdev@vger.kernel.org
12814 S:      Maintained
12815 F:      drivers/net/ethernet/mediatek/
12816
12817 MEDIATEK I2C CONTROLLER DRIVER
12818 M:      Qii Wang <qii.wang@mediatek.com>
12819 L:      linux-i2c@vger.kernel.org
12820 S:      Maintained
12821 F:      Documentation/devicetree/bindings/i2c/i2c-mt65xx.yaml
12822 F:      drivers/i2c/busses/i2c-mt65xx.c
12823
12824 MEDIATEK IOMMU DRIVER
12825 M:      Yong Wu <yong.wu@mediatek.com>
12826 L:      iommu@lists.linux.dev
12827 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
12828 S:      Supported
12829 F:      Documentation/devicetree/bindings/iommu/mediatek*
12830 F:      drivers/iommu/mtk_iommu*
12831 F:      include/dt-bindings/memory/mt*-port.h
12832
12833 MEDIATEK JPEG DRIVER
12834 M:      Bin Liu <bin.liu@mediatek.com>
12835 S:      Supported
12836 F:      Documentation/devicetree/bindings/media/mediatek-jpeg-*.yaml
12837 F:      drivers/media/platform/mediatek/jpeg/
12838
12839 MEDIATEK MDP DRIVER
12840 M:      Minghsiu Tsai <minghsiu.tsai@mediatek.com>
12841 M:      Houlong Wei <houlong.wei@mediatek.com>
12842 M:      Andrew-CT Chen <andrew-ct.chen@mediatek.com>
12843 S:      Supported
12844 F:      Documentation/devicetree/bindings/media/mediatek-mdp.txt
12845 F:      drivers/media/platform/mediatek/mdp/
12846 F:      drivers/media/platform/mediatek/vpu/
12847
12848 MEDIATEK MEDIA DRIVER
12849 M:      Tiffany Lin <tiffany.lin@mediatek.com>
12850 M:      Andrew-CT Chen <andrew-ct.chen@mediatek.com>
12851 M:      Yunfei Dong <yunfei.dong@mediatek.com>
12852 S:      Supported
12853 F:      Documentation/devicetree/bindings/media/mediatek,vcodec*.yaml
12854 F:      Documentation/devicetree/bindings/media/mediatek-vpu.txt
12855 F:      drivers/media/platform/mediatek/vcodec/
12856 F:      drivers/media/platform/mediatek/vpu/
12857
12858 MEDIATEK MMC/SD/SDIO DRIVER
12859 M:      Chaotian Jing <chaotian.jing@mediatek.com>
12860 S:      Maintained
12861 F:      Documentation/devicetree/bindings/mmc/mtk-sd.yaml
12862 F:      drivers/mmc/host/mtk-sd.c
12863
12864 MEDIATEK MT76 WIRELESS LAN DRIVER
12865 M:      Felix Fietkau <nbd@nbd.name>
12866 M:      Lorenzo Bianconi <lorenzo@kernel.org>
12867 M:      Ryder Lee <ryder.lee@mediatek.com>
12868 R:      Shayne Chen <shayne.chen@mediatek.com>
12869 R:      Sean Wang <sean.wang@mediatek.com>
12870 L:      linux-wireless@vger.kernel.org
12871 S:      Maintained
12872 F:      Documentation/devicetree/bindings/net/wireless/mediatek,mt76.yaml
12873 F:      drivers/net/wireless/mediatek/mt76/
12874
12875 MEDIATEK MT7601U WIRELESS LAN DRIVER
12876 M:      Jakub Kicinski <kuba@kernel.org>
12877 L:      linux-wireless@vger.kernel.org
12878 S:      Maintained
12879 F:      drivers/net/wireless/mediatek/mt7601u/
12880
12881 MEDIATEK MT7621 CLOCK DRIVER
12882 M:      Sergio Paracuellos <sergio.paracuellos@gmail.com>
12883 S:      Maintained
12884 F:      Documentation/devicetree/bindings/clock/mediatek,mt7621-sysc.yaml
12885 F:      drivers/clk/ralink/clk-mt7621.c
12886
12887 MEDIATEK MT7621/28/88 I2C DRIVER
12888 M:      Stefan Roese <sr@denx.de>
12889 L:      linux-i2c@vger.kernel.org
12890 S:      Maintained
12891 F:      Documentation/devicetree/bindings/i2c/i2c-mt7621.txt
12892 F:      drivers/i2c/busses/i2c-mt7621.c
12893
12894 MEDIATEK MT7621 PCIE CONTROLLER DRIVER
12895 M:      Sergio Paracuellos <sergio.paracuellos@gmail.com>
12896 S:      Maintained
12897 F:      Documentation/devicetree/bindings/pci/mediatek,mt7621-pcie.yaml
12898 F:      drivers/pci/controller/pcie-mt7621.c
12899
12900 MEDIATEK MT7621 PHY PCI DRIVER
12901 M:      Sergio Paracuellos <sergio.paracuellos@gmail.com>
12902 S:      Maintained
12903 F:      Documentation/devicetree/bindings/phy/mediatek,mt7621-pci-phy.yaml
12904 F:      drivers/phy/ralink/phy-mt7621-pci.c
12905
12906 MEDIATEK NAND CONTROLLER DRIVER
12907 L:      linux-mtd@lists.infradead.org
12908 S:      Orphan
12909 F:      Documentation/devicetree/bindings/mtd/mtk-nand.txt
12910 F:      drivers/mtd/nand/raw/mtk_*
12911
12912 MEDIATEK PMIC LED DRIVER
12913 M:      Sean Wang <sean.wang@mediatek.com>
12914 S:      Maintained
12915 F:      Documentation/devicetree/bindings/leds/leds-mt6323.txt
12916 F:      drivers/leds/leds-mt6323.c
12917
12918 MEDIATEK RANDOM NUMBER GENERATOR SUPPORT
12919 M:      Sean Wang <sean.wang@mediatek.com>
12920 S:      Maintained
12921 F:      drivers/char/hw_random/mtk-rng.c
12922
12923 MEDIATEK SMI DRIVER
12924 M:      Yong Wu <yong.wu@mediatek.com>
12925 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
12926 S:      Supported
12927 F:      Documentation/devicetree/bindings/memory-controllers/mediatek,smi*
12928 F:      drivers/memory/mtk-smi.c
12929 F:      include/soc/mediatek/smi.h
12930
12931 MEDIATEK SWITCH DRIVER
12932 M:      Sean Wang <sean.wang@mediatek.com>
12933 M:      Landen Chao <Landen.Chao@mediatek.com>
12934 M:      DENG Qingfang <dqfext@gmail.com>
12935 L:      netdev@vger.kernel.org
12936 S:      Maintained
12937 F:      drivers/net/dsa/mt7530.*
12938 F:      net/dsa/tag_mtk.c
12939
12940 MEDIATEK T7XX 5G WWAN MODEM DRIVER
12941 M:      Chandrashekar Devegowda <chandrashekar.devegowda@intel.com>
12942 M:      Intel Corporation <linuxwwan@intel.com>
12943 R:      Chiranjeevi Rapolu <chiranjeevi.rapolu@linux.intel.com>
12944 R:      Liu Haijun <haijun.liu@mediatek.com>
12945 R:      M Chetan Kumar <m.chetan.kumar@linux.intel.com>
12946 R:      Ricardo Martinez <ricardo.martinez@linux.intel.com>
12947 L:      netdev@vger.kernel.org
12948 S:      Supported
12949 F:      drivers/net/wwan/t7xx/
12950
12951 MEDIATEK USB3 DRD IP DRIVER
12952 M:      Chunfeng Yun <chunfeng.yun@mediatek.com>
12953 L:      linux-usb@vger.kernel.org
12954 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12955 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
12956 S:      Maintained
12957 F:      Documentation/devicetree/bindings/usb/mediatek,*
12958 F:      drivers/usb/host/xhci-mtk*
12959 F:      drivers/usb/mtu3/
12960
12961 MEGACHIPS STDPXXXX-GE-B850V3-FW LVDS/DP++ BRIDGES
12962 M:      Peter Senna Tschudin <peter.senna@gmail.com>
12963 M:      Martin Donnelly <martin.donnelly@ge.com>
12964 M:      Martyn Welch <martyn.welch@collabora.co.uk>
12965 S:      Maintained
12966 F:      Documentation/devicetree/bindings/display/bridge/megachips-stdpxxxx-ge-b850v3-fw.txt
12967 F:      drivers/gpu/drm/bridge/megachips-stdpxxxx-ge-b850v3-fw.c
12968
12969 MEGARAID SCSI/SAS DRIVERS
12970 M:      Kashyap Desai <kashyap.desai@broadcom.com>
12971 M:      Sumit Saxena <sumit.saxena@broadcom.com>
12972 M:      Shivasharan S <shivasharan.srikanteshwara@broadcom.com>
12973 L:      megaraidlinux.pdl@broadcom.com
12974 L:      linux-scsi@vger.kernel.org
12975 S:      Maintained
12976 W:      http://www.avagotech.com/support/
12977 F:      Documentation/scsi/megaraid.rst
12978 F:      drivers/scsi/megaraid.*
12979 F:      drivers/scsi/megaraid/
12980
12981 MELEXIS MLX90614 DRIVER
12982 M:      Crt Mori <cmo@melexis.com>
12983 L:      linux-iio@vger.kernel.org
12984 S:      Supported
12985 W:      http://www.melexis.com
12986 F:      drivers/iio/temperature/mlx90614.c
12987
12988 MELEXIS MLX90632 DRIVER
12989 M:      Crt Mori <cmo@melexis.com>
12990 L:      linux-iio@vger.kernel.org
12991 S:      Supported
12992 W:      http://www.melexis.com
12993 F:      drivers/iio/temperature/mlx90632.c
12994
12995 MELFAS MIP4 TOUCHSCREEN DRIVER
12996 M:      Sangwon Jee <jeesw@melfas.com>
12997 S:      Supported
12998 W:      http://www.melfas.com
12999 F:      Documentation/devicetree/bindings/input/touchscreen/melfas_mip4.txt
13000 F:      drivers/input/touchscreen/melfas_mip4.c
13001
13002 MELLANOX BLUEFIELD I2C DRIVER
13003 M:      Khalil Blaiech <kblaiech@nvidia.com>
13004 M:      Asmaa Mnebhi <asmaa@nvidia.com>
13005 L:      linux-i2c@vger.kernel.org
13006 S:      Supported
13007 F:      drivers/i2c/busses/i2c-mlxbf.c
13008
13009 MELLANOX ETHERNET DRIVER (mlx4_en)
13010 M:      Tariq Toukan <tariqt@nvidia.com>
13011 L:      netdev@vger.kernel.org
13012 S:      Supported
13013 W:      http://www.mellanox.com
13014 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
13015 F:      drivers/net/ethernet/mellanox/mlx4/en_*
13016
13017 MELLANOX ETHERNET DRIVER (mlx5e)
13018 M:      Saeed Mahameed <saeedm@nvidia.com>
13019 L:      netdev@vger.kernel.org
13020 S:      Supported
13021 W:      http://www.mellanox.com
13022 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
13023 F:      drivers/net/ethernet/mellanox/mlx5/core/en_*
13024
13025 MELLANOX ETHERNET INNOVA DRIVERS
13026 R:      Boris Pismenny <borisp@nvidia.com>
13027 L:      netdev@vger.kernel.org
13028 S:      Supported
13029 W:      http://www.mellanox.com
13030 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
13031 F:      drivers/net/ethernet/mellanox/mlx5/core/en_accel/*
13032 F:      drivers/net/ethernet/mellanox/mlx5/core/fpga/*
13033 F:      include/linux/mlx5/mlx5_ifc_fpga.h
13034
13035 MELLANOX ETHERNET SWITCH DRIVERS
13036 M:      Ido Schimmel <idosch@nvidia.com>
13037 M:      Petr Machata <petrm@nvidia.com>
13038 L:      netdev@vger.kernel.org
13039 S:      Supported
13040 W:      http://www.mellanox.com
13041 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
13042 F:      drivers/net/ethernet/mellanox/mlxsw/
13043 F:      tools/testing/selftests/drivers/net/mlxsw/
13044
13045 MELLANOX FIRMWARE FLASH LIBRARY (mlxfw)
13046 M:      mlxsw@nvidia.com
13047 L:      netdev@vger.kernel.org
13048 S:      Supported
13049 W:      http://www.mellanox.com
13050 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
13051 F:      drivers/net/ethernet/mellanox/mlxfw/
13052
13053 MELLANOX HARDWARE PLATFORM SUPPORT
13054 M:      Hans de Goede <hdegoede@redhat.com>
13055 M:      Mark Gross <markgross@kernel.org>
13056 M:      Vadim Pasternak <vadimp@nvidia.com>
13057 L:      platform-driver-x86@vger.kernel.org
13058 S:      Supported
13059 F:      Documentation/ABI/testing/sysfs-platform-mellanox-bootctl
13060 F:      drivers/platform/mellanox/
13061 F:      include/linux/platform_data/mlxreg.h
13062
13063 MELLANOX MLX4 core VPI driver
13064 M:      Tariq Toukan <tariqt@nvidia.com>
13065 L:      netdev@vger.kernel.org
13066 L:      linux-rdma@vger.kernel.org
13067 S:      Supported
13068 W:      http://www.mellanox.com
13069 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
13070 F:      drivers/net/ethernet/mellanox/mlx4/
13071 F:      include/linux/mlx4/
13072
13073 MELLANOX MLX4 IB driver
13074 M:      Yishai Hadas <yishaih@nvidia.com>
13075 L:      linux-rdma@vger.kernel.org
13076 S:      Supported
13077 W:      http://www.mellanox.com
13078 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
13079 F:      drivers/infiniband/hw/mlx4/
13080 F:      include/linux/mlx4/
13081 F:      include/uapi/rdma/mlx4-abi.h
13082
13083 MELLANOX MLX5 core VPI driver
13084 M:      Saeed Mahameed <saeedm@nvidia.com>
13085 M:      Leon Romanovsky <leonro@nvidia.com>
13086 L:      netdev@vger.kernel.org
13087 L:      linux-rdma@vger.kernel.org
13088 S:      Supported
13089 W:      http://www.mellanox.com
13090 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
13091 F:      Documentation/networking/device_drivers/ethernet/mellanox/
13092 F:      drivers/net/ethernet/mellanox/mlx5/core/
13093 F:      include/linux/mlx5/
13094
13095 MELLANOX MLX5 IB driver
13096 M:      Leon Romanovsky <leonro@nvidia.com>
13097 L:      linux-rdma@vger.kernel.org
13098 S:      Supported
13099 W:      http://www.mellanox.com
13100 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
13101 F:      drivers/infiniband/hw/mlx5/
13102 F:      include/linux/mlx5/
13103 F:      include/uapi/rdma/mlx5-abi.h
13104
13105 MELLANOX MLXCPLD I2C AND MUX DRIVER
13106 M:      Vadim Pasternak <vadimp@nvidia.com>
13107 M:      Michael Shych <michaelsh@nvidia.com>
13108 L:      linux-i2c@vger.kernel.org
13109 S:      Supported
13110 F:      Documentation/i2c/busses/i2c-mlxcpld.rst
13111 F:      drivers/i2c/busses/i2c-mlxcpld.c
13112 F:      drivers/i2c/muxes/i2c-mux-mlxcpld.c
13113
13114 MELLANOX MLXCPLD LED DRIVER
13115 M:      Vadim Pasternak <vadimp@nvidia.com>
13116 L:      linux-leds@vger.kernel.org
13117 S:      Supported
13118 F:      Documentation/leds/leds-mlxcpld.rst
13119 F:      drivers/leds/leds-mlxcpld.c
13120 F:      drivers/leds/leds-mlxreg.c
13121
13122 MELLANOX PLATFORM DRIVER
13123 M:      Vadim Pasternak <vadimp@nvidia.com>
13124 L:      platform-driver-x86@vger.kernel.org
13125 S:      Supported
13126 F:      drivers/platform/x86/mlx-platform.c
13127
13128 MEMBARRIER SUPPORT
13129 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
13130 M:      "Paul E. McKenney" <paulmck@kernel.org>
13131 L:      linux-kernel@vger.kernel.org
13132 S:      Supported
13133 F:      arch/powerpc/include/asm/membarrier.h
13134 F:      include/uapi/linux/membarrier.h
13135 F:      kernel/sched/membarrier.c
13136
13137 MEMBLOCK
13138 M:      Mike Rapoport <rppt@kernel.org>
13139 L:      linux-mm@kvack.org
13140 S:      Maintained
13141 F:      Documentation/core-api/boot-time-mm.rst
13142 F:      include/linux/memblock.h
13143 F:      mm/memblock.c
13144 F:      tools/testing/memblock/
13145
13146 MEMORY CONTROLLER DRIVERS
13147 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
13148 L:      linux-kernel@vger.kernel.org
13149 S:      Maintained
13150 B:      mailto:krzysztof.kozlowski@linaro.org
13151 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/krzk/linux-mem-ctrl.git
13152 F:      Documentation/devicetree/bindings/memory-controllers/
13153 F:      drivers/memory/
13154 F:      include/dt-bindings/memory/
13155 F:      include/memory/
13156
13157 MEMORY FREQUENCY SCALING DRIVERS FOR NVIDIA TEGRA
13158 M:      Dmitry Osipenko <digetx@gmail.com>
13159 L:      linux-pm@vger.kernel.org
13160 L:      linux-tegra@vger.kernel.org
13161 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
13162 S:      Maintained
13163 F:      drivers/devfreq/tegra30-devfreq.c
13164
13165 MEMORY MANAGEMENT
13166 M:      Andrew Morton <akpm@linux-foundation.org>
13167 L:      linux-mm@kvack.org
13168 S:      Maintained
13169 W:      http://www.linux-mm.org
13170 T:      git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm
13171 T:      quilt git://git.kernel.org/pub/scm/linux/kernel/git/akpm/25-new
13172 F:      include/linux/gfp.h
13173 F:      include/linux/gfp_types.h
13174 F:      include/linux/memory_hotplug.h
13175 F:      include/linux/mm.h
13176 F:      include/linux/mmzone.h
13177 F:      include/linux/pagewalk.h
13178 F:      include/linux/vmalloc.h
13179 F:      mm/
13180 F:      tools/testing/selftests/vm/
13181
13182 MEMORY HOT(UN)PLUG
13183 M:      David Hildenbrand <david@redhat.com>
13184 M:      Oscar Salvador <osalvador@suse.de>
13185 L:      linux-mm@kvack.org
13186 S:      Maintained
13187 F:      Documentation/admin-guide/mm/memory-hotplug.rst
13188 F:      Documentation/core-api/memory-hotplug.rst
13189 F:      drivers/base/memory.c
13190 F:      include/linux/memory_hotplug.h
13191 F:      mm/memory_hotplug.c
13192 F:      tools/testing/selftests/memory-hotplug/
13193
13194 MEMORY TECHNOLOGY DEVICES (MTD)
13195 M:      Miquel Raynal <miquel.raynal@bootlin.com>
13196 M:      Richard Weinberger <richard@nod.at>
13197 M:      Vignesh Raghavendra <vigneshr@ti.com>
13198 L:      linux-mtd@lists.infradead.org
13199 S:      Maintained
13200 W:      http://www.linux-mtd.infradead.org/
13201 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
13202 C:      irc://irc.oftc.net/mtd
13203 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/fixes
13204 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/next
13205 F:      Documentation/devicetree/bindings/mtd/
13206 F:      drivers/mtd/
13207 F:      include/linux/mtd/
13208 F:      include/uapi/mtd/
13209
13210 MEN A21 WATCHDOG DRIVER
13211 M:      Johannes Thumshirn <morbidrsa@gmail.com>
13212 L:      linux-watchdog@vger.kernel.org
13213 S:      Maintained
13214 F:      drivers/watchdog/mena21_wdt.c
13215
13216 MEN CHAMELEON BUS (mcb)
13217 M:      Johannes Thumshirn <morbidrsa@gmail.com>
13218 S:      Maintained
13219 F:      Documentation/driver-api/men-chameleon-bus.rst
13220 F:      drivers/mcb/
13221 F:      include/linux/mcb.h
13222
13223 MEN F21BMC (Board Management Controller)
13224 M:      Andreas Werner <andreas.werner@men.de>
13225 S:      Supported
13226 F:      Documentation/hwmon/menf21bmc.rst
13227 F:      drivers/hwmon/menf21bmc_hwmon.c
13228 F:      drivers/leds/leds-menf21bmc.c
13229 F:      drivers/mfd/menf21bmc.c
13230 F:      drivers/watchdog/menf21bmc_wdt.c
13231
13232 MEN Z069 WATCHDOG DRIVER
13233 M:      Johannes Thumshirn <jth@kernel.org>
13234 L:      linux-watchdog@vger.kernel.org
13235 S:      Maintained
13236 F:      drivers/watchdog/menz69_wdt.c
13237
13238 MESON AO CEC DRIVER FOR AMLOGIC SOCS
13239 M:      Neil Armstrong <neil.armstrong@linaro.org>
13240 L:      linux-media@vger.kernel.org
13241 L:      linux-amlogic@lists.infradead.org
13242 S:      Supported
13243 W:      http://linux-meson.com/
13244 T:      git git://linuxtv.org/media_tree.git
13245 F:      Documentation/devicetree/bindings/media/amlogic,meson-gx-ao-cec.yaml
13246 F:      drivers/media/cec/platform/meson/ao-cec-g12a.c
13247 F:      drivers/media/cec/platform/meson/ao-cec.c
13248
13249 MESON GE2D DRIVER FOR AMLOGIC SOCS
13250 M:      Neil Armstrong <neil.armstrong@linaro.org>
13251 L:      linux-media@vger.kernel.org
13252 L:      linux-amlogic@lists.infradead.org
13253 S:      Supported
13254 T:      git git://linuxtv.org/media_tree.git
13255 F:      Documentation/devicetree/bindings/media/amlogic,axg-ge2d.yaml
13256 F:      drivers/media/platform/amlogic/meson-ge2d/
13257
13258 MESON NAND CONTROLLER DRIVER FOR AMLOGIC SOCS
13259 M:      Liang Yang <liang.yang@amlogic.com>
13260 L:      linux-mtd@lists.infradead.org
13261 S:      Maintained
13262 F:      Documentation/devicetree/bindings/mtd/amlogic,meson-nand.txt
13263 F:      drivers/mtd/nand/raw/meson_*
13264
13265 MESON VIDEO DECODER DRIVER FOR AMLOGIC SOCS
13266 M:      Neil Armstrong <neil.armstrong@linaro.org>
13267 L:      linux-media@vger.kernel.org
13268 L:      linux-amlogic@lists.infradead.org
13269 S:      Supported
13270 T:      git git://linuxtv.org/media_tree.git
13271 F:      Documentation/devicetree/bindings/media/amlogic,gx-vdec.yaml
13272 F:      drivers/staging/media/meson/vdec/
13273
13274 METHODE UDPU SUPPORT
13275 M:      Vladimir Vid <vladimir.vid@sartura.hr>
13276 S:      Maintained
13277 F:      arch/arm64/boot/dts/marvell/armada-3720-uDPU.dts
13278
13279 MHI BUS
13280 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
13281 R:      Hemant Kumar <quic_hemantk@quicinc.com>
13282 L:      mhi@lists.linux.dev
13283 L:      linux-arm-msm@vger.kernel.org
13284 S:      Maintained
13285 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mani/mhi.git
13286 F:      Documentation/ABI/stable/sysfs-bus-mhi
13287 F:      Documentation/mhi/
13288 F:      drivers/bus/mhi/
13289 F:      include/linux/mhi.h
13290
13291 MICROBLAZE ARCHITECTURE
13292 M:      Michal Simek <monstr@monstr.eu>
13293 S:      Supported
13294 W:      http://www.monstr.eu/fdt/
13295 T:      git git://git.monstr.eu/linux-2.6-microblaze.git
13296 F:      arch/microblaze/
13297
13298 MICROCHIP AT91 DMA DRIVERS
13299 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
13300 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
13301 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13302 L:      dmaengine@vger.kernel.org
13303 S:      Supported
13304 F:      Documentation/devicetree/bindings/dma/atmel-dma.txt
13305 F:      drivers/dma/at_hdmac.c
13306 F:      drivers/dma/at_hdmac_regs.h
13307 F:      drivers/dma/at_xdmac.c
13308 F:      include/dt-bindings/dma/at91.h
13309
13310 MICROCHIP AT91 SERIAL DRIVER
13311 M:      Richard Genoud <richard.genoud@gmail.com>
13312 S:      Maintained
13313 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
13314 F:      drivers/tty/serial/atmel_serial.c
13315 F:      drivers/tty/serial/atmel_serial.h
13316
13317 MICROCHIP AT91 USART MFD DRIVER
13318 M:      Radu Pirea <radu_nicolae.pirea@upb.ro>
13319 L:      linux-kernel@vger.kernel.org
13320 S:      Supported
13321 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
13322 F:      drivers/mfd/at91-usart.c
13323 F:      include/dt-bindings/mfd/at91-usart.h
13324
13325 MICROCHIP AT91 USART SPI DRIVER
13326 M:      Radu Pirea <radu_nicolae.pirea@upb.ro>
13327 L:      linux-spi@vger.kernel.org
13328 S:      Supported
13329 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
13330 F:      drivers/spi/spi-at91-usart.c
13331
13332 MICROCHIP AUDIO ASOC DRIVERS
13333 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
13334 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
13335 S:      Supported
13336 F:      sound/soc/atmel
13337
13338 MICROCHIP CSI2DC DRIVER
13339 M:      Eugen Hristev <eugen.hristev@microchip.com>
13340 L:      linux-media@vger.kernel.org
13341 S:      Supported
13342 F:      Documentation/devicetree/bindings/media/microchip,csi2dc.yaml
13343 F:      drivers/media/platform/atmel/microchip-csi2dc.c
13344
13345 MICROCHIP ECC DRIVER
13346 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
13347 L:      linux-crypto@vger.kernel.org
13348 S:      Maintained
13349 F:      drivers/crypto/atmel-ecc.*
13350
13351 MICROCHIP EIC DRIVER
13352 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
13353 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13354 S:      Supported
13355 F:      drivers/irqchip/irq-mchp-eic.c
13356
13357 MICROCHIP I2C DRIVER
13358 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
13359 L:      linux-i2c@vger.kernel.org
13360 S:      Supported
13361 F:      drivers/i2c/busses/i2c-at91-*.c
13362 F:      drivers/i2c/busses/i2c-at91.h
13363
13364 MICROCHIP ISC DRIVER
13365 M:      Eugen Hristev <eugen.hristev@microchip.com>
13366 L:      linux-media@vger.kernel.org
13367 S:      Supported
13368 F:      Documentation/devicetree/bindings/media/atmel,isc.yaml
13369 F:      Documentation/devicetree/bindings/media/microchip,xisc.yaml
13370 F:      drivers/media/platform/atmel/atmel-isc*
13371 F:      drivers/media/platform/atmel/atmel-sama*-isc*
13372 F:      include/linux/atmel-isc-media.h
13373
13374 MICROCHIP ISI DRIVER
13375 M:      Eugen Hristev <eugen.hristev@microchip.com>
13376 L:      linux-media@vger.kernel.org
13377 S:      Supported
13378 F:      drivers/media/platform/atmel/atmel-isi.c
13379 F:      drivers/media/platform/atmel/atmel-isi.h
13380
13381 MICROCHIP KSZ SERIES ETHERNET SWITCH DRIVER
13382 M:      Woojung Huh <woojung.huh@microchip.com>
13383 M:      UNGLinuxDriver@microchip.com
13384 L:      netdev@vger.kernel.org
13385 S:      Maintained
13386 F:      Documentation/devicetree/bindings/net/dsa/microchip,ksz.yaml
13387 F:      Documentation/devicetree/bindings/net/dsa/microchip,lan937x.yaml
13388 F:      drivers/net/dsa/microchip/*
13389 F:      include/linux/platform_data/microchip-ksz.h
13390 F:      net/dsa/tag_ksz.c
13391
13392 MICROCHIP LAN87xx/LAN937x T1 PHY DRIVER
13393 M:      Arun Ramadoss <arun.ramadoss@microchip.com>
13394 R:      UNGLinuxDriver@microchip.com
13395 L:      netdev@vger.kernel.org
13396 S:      Maintained
13397 F:      drivers/net/phy/microchip_t1.c
13398
13399 MICROCHIP LAN743X ETHERNET DRIVER
13400 M:      Bryan Whitehead <bryan.whitehead@microchip.com>
13401 M:      UNGLinuxDriver@microchip.com
13402 L:      netdev@vger.kernel.org
13403 S:      Maintained
13404 F:      drivers/net/ethernet/microchip/lan743x_*
13405
13406 MICROCHIP LAN966X ETHERNET DRIVER
13407 M:      Horatiu Vultur <horatiu.vultur@microchip.com>
13408 M:      UNGLinuxDriver@microchip.com
13409 L:      netdev@vger.kernel.org
13410 S:      Maintained
13411 F:      drivers/net/ethernet/microchip/lan966x/*
13412
13413 MICROCHIP LCDFB DRIVER
13414 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
13415 L:      linux-fbdev@vger.kernel.org
13416 S:      Maintained
13417 F:      drivers/video/fbdev/atmel_lcdfb.c
13418 F:      include/video/atmel_lcdc.h
13419
13420 MICROCHIP MCP16502 PMIC DRIVER
13421 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
13422 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13423 S:      Supported
13424 F:      Documentation/devicetree/bindings/regulator/mcp16502-regulator.txt
13425 F:      drivers/regulator/mcp16502.c
13426
13427 MICROCHIP MCP3911 ADC DRIVER
13428 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
13429 M:      Kent Gustavsson <kent@minoris.se>
13430 L:      linux-iio@vger.kernel.org
13431 S:      Supported
13432 F:      Documentation/devicetree/bindings/iio/adc/microchip,mcp3911.yaml
13433 F:      drivers/iio/adc/mcp3911.c
13434
13435 MICROCHIP MMC/SD/SDIO MCI DRIVER
13436 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
13437 S:      Maintained
13438 F:      drivers/mmc/host/atmel-mci.c
13439
13440 MICROCHIP NAND DRIVER
13441 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
13442 L:      linux-mtd@lists.infradead.org
13443 S:      Supported
13444 F:      Documentation/devicetree/bindings/mtd/atmel-nand.txt
13445 F:      drivers/mtd/nand/raw/atmel/*
13446
13447 MICROCHIP OTPC DRIVER
13448 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
13449 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13450 S:      Supported
13451 F:      Documentation/devicetree/bindings/nvmem/microchip,sama7g5-otpc.yaml
13452 F:      drivers/nvmem/microchip-otpc.c
13453 F:      include/dt-bindings/nvmem/microchip,sama7g5-otpc.h
13454
13455 MICROCHIP PCI1XXXX I2C DRIVER
13456 M:      Tharun Kumar P <tharunkumar.pasumarthi@microchip.com>
13457 M:      Kumaravel Thiagarajan <kumaravel.thiagarajan@microchip.com>
13458 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
13459 L:      linux-i2c@vger.kernel.org
13460 S:      Maintained
13461 F:      drivers/i2c/busses/i2c-mchp-pci1xxxx.c
13462
13463 MICROCHIP PWM DRIVER
13464 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
13465 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13466 L:      linux-pwm@vger.kernel.org
13467 S:      Supported
13468 F:      Documentation/devicetree/bindings/pwm/atmel,at91sam-pwm.yaml
13469 F:      drivers/pwm/pwm-atmel.c
13470
13471 MICROCHIP SAMA5D2-COMPATIBLE ADC DRIVER
13472 M:      Eugen Hristev <eugen.hristev@microchip.com>
13473 L:      linux-iio@vger.kernel.org
13474 S:      Supported
13475 F:      Documentation/devicetree/bindings/iio/adc/atmel,sama5d2-adc.yaml
13476 F:      drivers/iio/adc/at91-sama5d2_adc.c
13477 F:      include/dt-bindings/iio/adc/at91-sama5d2_adc.h
13478
13479 MICROCHIP SAMA5D2-COMPATIBLE SHUTDOWN CONTROLLER
13480 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
13481 S:      Supported
13482 F:      drivers/power/reset/at91-sama5d2_shdwc.c
13483
13484 MICROCHIP SPI DRIVER
13485 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
13486 S:      Supported
13487 F:      drivers/spi/spi-atmel.*
13488
13489 MICROCHIP SSC DRIVER
13490 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
13491 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13492 S:      Supported
13493 F:      drivers/misc/atmel-ssc.c
13494 F:      include/linux/atmel-ssc.h
13495
13496 MICROCHIP USB251XB DRIVER
13497 M:      Richard Leitner <richard.leitner@skidata.com>
13498 L:      linux-usb@vger.kernel.org
13499 S:      Maintained
13500 F:      Documentation/devicetree/bindings/usb/usb251xb.txt
13501 F:      drivers/usb/misc/usb251xb.c
13502
13503 MICROCHIP USBA UDC DRIVER
13504 M:      Cristian Birsan <cristian.birsan@microchip.com>
13505 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13506 S:      Supported
13507 F:      drivers/usb/gadget/udc/atmel_usba_udc.*
13508
13509 MICROCHIP WILC1000 WIFI DRIVER
13510 M:      Ajay Singh <ajay.kathat@microchip.com>
13511 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
13512 L:      linux-wireless@vger.kernel.org
13513 S:      Supported
13514 F:      drivers/net/wireless/microchip/wilc1000/
13515
13516 MICROSEMI MIPS SOCS
13517 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
13518 M:      UNGLinuxDriver@microchip.com
13519 L:      linux-mips@vger.kernel.org
13520 S:      Supported
13521 F:      Documentation/devicetree/bindings/mips/mscc.txt
13522 F:      Documentation/devicetree/bindings/power/reset/ocelot-reset.txt
13523 F:      arch/mips/boot/dts/mscc/
13524 F:      arch/mips/configs/generic/board-ocelot.config
13525 F:      arch/mips/generic/board-ocelot.c
13526
13527 MICROSEMI SMART ARRAY SMARTPQI DRIVER (smartpqi)
13528 M:      Don Brace <don.brace@microchip.com>
13529 L:      storagedev@microchip.com
13530 L:      linux-scsi@vger.kernel.org
13531 S:      Supported
13532 F:      Documentation/scsi/smartpqi.rst
13533 F:      drivers/scsi/smartpqi/Kconfig
13534 F:      drivers/scsi/smartpqi/Makefile
13535 F:      drivers/scsi/smartpqi/smartpqi*.[ch]
13536 F:      include/linux/cciss*.h
13537 F:      include/uapi/linux/cciss*.h
13538
13539 MICROSOFT SURFACE AGGREGATOR TABLET-MODE SWITCH
13540 M:      Maximilian Luz <luzmaximilian@gmail.com>
13541 L:      platform-driver-x86@vger.kernel.org
13542 S:      Maintained
13543 F:      drivers/platform/surface/surface_aggregator_tabletsw.c
13544
13545 MICROSOFT SURFACE BATTERY AND AC DRIVERS
13546 M:      Maximilian Luz <luzmaximilian@gmail.com>
13547 L:      linux-pm@vger.kernel.org
13548 L:      platform-driver-x86@vger.kernel.org
13549 S:      Maintained
13550 F:      drivers/power/supply/surface_battery.c
13551 F:      drivers/power/supply/surface_charger.c
13552
13553 MICROSOFT SURFACE DTX DRIVER
13554 M:      Maximilian Luz <luzmaximilian@gmail.com>
13555 L:      platform-driver-x86@vger.kernel.org
13556 S:      Maintained
13557 F:      Documentation/driver-api/surface_aggregator/clients/dtx.rst
13558 F:      drivers/platform/surface/surface_dtx.c
13559 F:      include/uapi/linux/surface_aggregator/dtx.h
13560
13561 MICROSOFT SURFACE GPE LID SUPPORT DRIVER
13562 M:      Maximilian Luz <luzmaximilian@gmail.com>
13563 L:      platform-driver-x86@vger.kernel.org
13564 S:      Maintained
13565 F:      drivers/platform/surface/surface_gpe.c
13566
13567 MICROSOFT SURFACE HARDWARE PLATFORM SUPPORT
13568 M:      Hans de Goede <hdegoede@redhat.com>
13569 M:      Mark Gross <markgross@kernel.org>
13570 M:      Maximilian Luz <luzmaximilian@gmail.com>
13571 L:      platform-driver-x86@vger.kernel.org
13572 S:      Maintained
13573 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
13574 F:      drivers/platform/surface/
13575
13576 MICROSOFT SURFACE HID TRANSPORT DRIVER
13577 M:      Maximilian Luz <luzmaximilian@gmail.com>
13578 L:      linux-input@vger.kernel.org
13579 L:      platform-driver-x86@vger.kernel.org
13580 S:      Maintained
13581 F:      drivers/hid/surface-hid/
13582
13583 MICROSOFT SURFACE HOT-PLUG DRIVER
13584 M:      Maximilian Luz <luzmaximilian@gmail.com>
13585 L:      platform-driver-x86@vger.kernel.org
13586 S:      Maintained
13587 F:      drivers/platform/surface/surface_hotplug.c
13588
13589 MICROSOFT SURFACE PLATFORM PROFILE DRIVER
13590 M:      Maximilian Luz <luzmaximilian@gmail.com>
13591 L:      platform-driver-x86@vger.kernel.org
13592 S:      Maintained
13593 F:      drivers/platform/surface/surface_platform_profile.c
13594
13595 MICROSOFT SURFACE PRO 3 BUTTON DRIVER
13596 M:      Chen Yu <yu.c.chen@intel.com>
13597 L:      platform-driver-x86@vger.kernel.org
13598 S:      Supported
13599 F:      drivers/platform/surface/surfacepro3_button.c
13600
13601 MICROSOFT SURFACE SYSTEM AGGREGATOR SUBSYSTEM
13602 M:      Maximilian Luz <luzmaximilian@gmail.com>
13603 L:      platform-driver-x86@vger.kernel.org
13604 S:      Maintained
13605 W:      https://github.com/linux-surface/surface-aggregator-module
13606 C:      irc://irc.libera.chat/linux-surface
13607 F:      Documentation/driver-api/surface_aggregator/
13608 F:      drivers/platform/surface/aggregator/
13609 F:      drivers/platform/surface/surface_acpi_notify.c
13610 F:      drivers/platform/surface/surface_aggregator_cdev.c
13611 F:      drivers/platform/surface/surface_aggregator_registry.c
13612 F:      include/linux/surface_acpi_notify.h
13613 F:      include/linux/surface_aggregator/
13614 F:      include/uapi/linux/surface_aggregator/
13615
13616 MICROSOFT SURFACE SYSTEM AGGREGATOR HUB DRIVER
13617 M:      Maximilian Luz <luzmaximilian@gmail.com>
13618 L:      platform-driver-x86@vger.kernel.org
13619 S:      Maintained
13620 F:      drivers/platform/surface/surface_aggregator_hub.c
13621
13622 MICROTEK X6 SCANNER
13623 M:      Oliver Neukum <oliver@neukum.org>
13624 S:      Maintained
13625 F:      drivers/usb/image/microtek.*
13626
13627 MIKROTIK CRS3XX 98DX3236 BOARD SUPPORT
13628 M:      Luka Kovacic <luka.kovacic@sartura.hr>
13629 M:      Luka Perkov <luka.perkov@sartura.hr>
13630 S:      Maintained
13631 F:      arch/arm/boot/dts/armada-xp-crs305-1g-4s-bit.dts
13632 F:      arch/arm/boot/dts/armada-xp-crs305-1g-4s.dts
13633 F:      arch/arm/boot/dts/armada-xp-crs326-24g-2s-bit.dts
13634 F:      arch/arm/boot/dts/armada-xp-crs326-24g-2s.dts
13635 F:      arch/arm/boot/dts/armada-xp-crs328-4c-20s-4s-bit.dts
13636 F:      arch/arm/boot/dts/armada-xp-crs328-4c-20s-4s.dts
13637
13638 MIPI CCS, SMIA AND SMIA++ IMAGE SENSOR DRIVER
13639 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
13640 L:      linux-media@vger.kernel.org
13641 S:      Maintained
13642 F:      Documentation/devicetree/bindings/media/i2c/mipi-ccs.yaml
13643 F:      Documentation/driver-api/media/drivers/ccs/
13644 F:      Documentation/userspace-api/media/drivers/ccs.rst
13645 F:      drivers/media/i2c/ccs-pll.c
13646 F:      drivers/media/i2c/ccs-pll.h
13647 F:      drivers/media/i2c/ccs/
13648 F:      include/uapi/linux/ccs.h
13649 F:      include/uapi/linux/smiapp.h
13650
13651 MIPS
13652 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
13653 L:      linux-mips@vger.kernel.org
13654 S:      Maintained
13655 W:      http://www.linux-mips.org/
13656 Q:      https://patchwork.kernel.org/project/linux-mips/list/
13657 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mips/linux.git
13658 F:      Documentation/devicetree/bindings/mips/
13659 F:      Documentation/mips/
13660 F:      arch/mips/
13661 F:      drivers/platform/mips/
13662 F:      include/dt-bindings/mips/
13663
13664 MIPS BOSTON DEVELOPMENT BOARD
13665 M:      Paul Burton <paulburton@kernel.org>
13666 L:      linux-mips@vger.kernel.org
13667 S:      Maintained
13668 F:      Documentation/devicetree/bindings/clock/img,boston-clock.txt
13669 F:      arch/mips/boot/dts/img/boston.dts
13670 F:      arch/mips/configs/generic/board-boston.config
13671 F:      drivers/clk/imgtec/clk-boston.c
13672 F:      include/dt-bindings/clock/boston-clock.h
13673
13674 MIPS CORE DRIVERS
13675 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
13676 M:      Serge Semin <fancer.lancer@gmail.com>
13677 L:      linux-mips@vger.kernel.org
13678 S:      Supported
13679 F:      drivers/bus/mips_cdmm.c
13680 F:      drivers/clocksource/mips-gic-timer.c
13681 F:      drivers/cpuidle/cpuidle-cps.c
13682 F:      drivers/irqchip/irq-mips-cpu.c
13683 F:      drivers/irqchip/irq-mips-gic.c
13684
13685 MIPS GENERIC PLATFORM
13686 M:      Paul Burton <paulburton@kernel.org>
13687 L:      linux-mips@vger.kernel.org
13688 S:      Supported
13689 F:      Documentation/devicetree/bindings/power/mti,mips-cpc.yaml
13690 F:      arch/mips/generic/
13691 F:      arch/mips/tools/generic-board-config.sh
13692
13693 MIPS RINT INSTRUCTION EMULATION
13694 M:      Aleksandar Markovic <aleksandar.markovic@mips.com>
13695 L:      linux-mips@vger.kernel.org
13696 S:      Supported
13697 F:      arch/mips/math-emu/dp_rint.c
13698 F:      arch/mips/math-emu/sp_rint.c
13699
13700 MIPS/LOONGSON1 ARCHITECTURE
13701 M:      Keguang Zhang <keguang.zhang@gmail.com>
13702 L:      linux-mips@vger.kernel.org
13703 S:      Maintained
13704 F:      arch/mips/include/asm/mach-loongson32/
13705 F:      arch/mips/loongson32/
13706 F:      drivers/*/*/*loongson1*
13707 F:      drivers/*/*loongson1*
13708
13709 MIPS/LOONGSON2EF ARCHITECTURE
13710 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
13711 L:      linux-mips@vger.kernel.org
13712 S:      Maintained
13713 F:      arch/mips/include/asm/mach-loongson2ef/
13714 F:      arch/mips/loongson2ef/
13715 F:      drivers/cpufreq/loongson2_cpufreq.c
13716
13717 MIPS/LOONGSON64 ARCHITECTURE
13718 M:      Huacai Chen <chenhuacai@kernel.org>
13719 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
13720 L:      linux-mips@vger.kernel.org
13721 S:      Maintained
13722 F:      arch/mips/include/asm/mach-loongson64/
13723 F:      arch/mips/loongson64/
13724 F:      drivers/irqchip/irq-loongson*
13725 F:      drivers/platform/mips/cpu_hwmon.c
13726
13727 MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
13728 M:      Hans Verkuil <hverkuil@xs4all.nl>
13729 L:      linux-media@vger.kernel.org
13730 S:      Odd Fixes
13731 W:      https://linuxtv.org
13732 T:      git git://linuxtv.org/media_tree.git
13733 F:      drivers/media/radio/radio-miropcm20*
13734
13735 MMP SUPPORT
13736 R:      Lubomir Rintel <lkundrak@v3.sk>
13737 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13738 S:      Odd Fixes
13739 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lkundrak/linux-mmp.git
13740 F:      arch/arm/boot/dts/mmp*
13741 F:      arch/arm/mach-mmp/
13742 F:      include/linux/soc/mmp/
13743
13744 MMP USB PHY DRIVERS
13745 R:      Lubomir Rintel <lkundrak@v3.sk>
13746 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13747 S:      Maintained
13748 F:      drivers/phy/marvell/phy-mmp3-usb.c
13749 F:      drivers/phy/marvell/phy-pxa-usb.c
13750
13751 MMU GATHER AND TLB INVALIDATION
13752 M:      Will Deacon <will@kernel.org>
13753 M:      "Aneesh Kumar K.V" <aneesh.kumar@linux.ibm.com>
13754 M:      Andrew Morton <akpm@linux-foundation.org>
13755 M:      Nick Piggin <npiggin@gmail.com>
13756 M:      Peter Zijlstra <peterz@infradead.org>
13757 L:      linux-arch@vger.kernel.org
13758 L:      linux-mm@kvack.org
13759 S:      Maintained
13760 F:      arch/*/include/asm/tlb.h
13761 F:      include/asm-generic/tlb.h
13762 F:      mm/mmu_gather.c
13763
13764 MN88472 MEDIA DRIVER
13765 M:      Antti Palosaari <crope@iki.fi>
13766 L:      linux-media@vger.kernel.org
13767 S:      Maintained
13768 W:      https://linuxtv.org
13769 W:      http://palosaari.fi/linux/
13770 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13771 F:      drivers/media/dvb-frontends/mn88472*
13772
13773 MN88473 MEDIA DRIVER
13774 M:      Antti Palosaari <crope@iki.fi>
13775 L:      linux-media@vger.kernel.org
13776 S:      Maintained
13777 W:      https://linuxtv.org
13778 W:      http://palosaari.fi/linux/
13779 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13780 F:      drivers/media/dvb-frontends/mn88473*
13781
13782 MODULE SUPPORT
13783 M:      Luis Chamberlain <mcgrof@kernel.org>
13784 L:      linux-modules@vger.kernel.org
13785 L:      linux-kernel@vger.kernel.org
13786 S:      Maintained
13787 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mcgrof/linux.git modules-next
13788 F:      include/linux/module.h
13789 F:      kernel/module/
13790 F:      scripts/module*
13791
13792 MONOLITHIC POWER SYSTEM PMIC DRIVER
13793 M:      Saravanan Sekar <sravanhome@gmail.com>
13794 S:      Maintained
13795 F:      Documentation/devicetree/bindings/mfd/mps,mp2629.yaml
13796 F:      Documentation/devicetree/bindings/regulator/mps,mp*.yaml
13797 F:      drivers/iio/adc/mp2629_adc.c
13798 F:      drivers/mfd/mp2629.c
13799 F:      drivers/power/supply/mp2629_charger.c
13800 F:      drivers/regulator/mp5416.c
13801 F:      drivers/regulator/mpq7920.c
13802 F:      drivers/regulator/mpq7920.h
13803 F:      include/linux/mfd/mp2629.h
13804
13805 MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
13806 S:      Orphan
13807 W:      http://popies.net/meye/
13808 F:      Documentation/userspace-api/media/drivers/meye*
13809 F:      drivers/media/pci/meye/
13810 F:      include/uapi/linux/meye.h
13811
13812 MOTORCOMM PHY DRIVER
13813 M:      Peter Geis <pgwipeout@gmail.com>
13814 L:      netdev@vger.kernel.org
13815 S:      Maintained
13816 F:      drivers/net/phy/motorcomm.c
13817
13818 MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
13819 M:      Jiri Slaby <jirislaby@kernel.org>
13820 S:      Maintained
13821 F:      Documentation/driver-api/tty/moxa-smartio.rst
13822 F:      drivers/tty/mxser.*
13823
13824 MR800 AVERMEDIA USB FM RADIO DRIVER
13825 M:      Alexey Klimov <klimov.linux@gmail.com>
13826 L:      linux-media@vger.kernel.org
13827 S:      Maintained
13828 T:      git git://linuxtv.org/media_tree.git
13829 F:      drivers/media/radio/radio-mr800.c
13830
13831 MRF24J40 IEEE 802.15.4 RADIO DRIVER
13832 M:      Alan Ott <alan@signal11.us>
13833 L:      linux-wpan@vger.kernel.org
13834 S:      Maintained
13835 F:      Documentation/devicetree/bindings/net/ieee802154/mrf24j40.txt
13836 F:      drivers/net/ieee802154/mrf24j40.c
13837
13838 MSI LAPTOP SUPPORT
13839 M:      "Lee, Chun-Yi" <jlee@suse.com>
13840 L:      platform-driver-x86@vger.kernel.org
13841 S:      Maintained
13842 F:      drivers/platform/x86/msi-laptop.c
13843
13844 MSI WMI SUPPORT
13845 L:      platform-driver-x86@vger.kernel.org
13846 S:      Orphan
13847 F:      drivers/platform/x86/msi-wmi.c
13848
13849 MSI001 MEDIA DRIVER
13850 M:      Antti Palosaari <crope@iki.fi>
13851 L:      linux-media@vger.kernel.org
13852 S:      Maintained
13853 W:      https://linuxtv.org
13854 W:      http://palosaari.fi/linux/
13855 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13856 T:      git git://linuxtv.org/anttip/media_tree.git
13857 F:      drivers/media/tuners/msi001*
13858
13859 MSI2500 MEDIA DRIVER
13860 M:      Antti Palosaari <crope@iki.fi>
13861 L:      linux-media@vger.kernel.org
13862 S:      Maintained
13863 W:      https://linuxtv.org
13864 W:      http://palosaari.fi/linux/
13865 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13866 T:      git git://linuxtv.org/anttip/media_tree.git
13867 F:      drivers/media/usb/msi2500/
13868
13869 MSTAR INTERRUPT CONTROLLER DRIVER
13870 M:      Mark-PK Tsai <mark-pk.tsai@mediatek.com>
13871 M:      Daniel Palmer <daniel@thingy.jp>
13872 S:      Maintained
13873 F:      Documentation/devicetree/bindings/interrupt-controller/mstar,mst-intc.yaml
13874 F:      drivers/irqchip/irq-mst-intc.c
13875
13876 MSYSTEMS DISKONCHIP G3 MTD DRIVER
13877 M:      Robert Jarzmik <robert.jarzmik@free.fr>
13878 L:      linux-mtd@lists.infradead.org
13879 S:      Maintained
13880 F:      drivers/mtd/devices/docg3*
13881
13882 MT9M032 APTINA SENSOR DRIVER
13883 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
13884 L:      linux-media@vger.kernel.org
13885 S:      Maintained
13886 T:      git git://linuxtv.org/media_tree.git
13887 F:      drivers/media/i2c/mt9m032.c
13888 F:      include/media/i2c/mt9m032.h
13889
13890 MT9P031 APTINA CAMERA SENSOR
13891 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
13892 L:      linux-media@vger.kernel.org
13893 S:      Maintained
13894 T:      git git://linuxtv.org/media_tree.git
13895 F:      Documentation/devicetree/bindings/media/i2c/aptina,mt9p031.yaml
13896 F:      drivers/media/i2c/mt9p031.c
13897 F:      include/media/i2c/mt9p031.h
13898
13899 MT9T001 APTINA CAMERA SENSOR
13900 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
13901 L:      linux-media@vger.kernel.org
13902 S:      Maintained
13903 T:      git git://linuxtv.org/media_tree.git
13904 F:      drivers/media/i2c/mt9t001.c
13905 F:      include/media/i2c/mt9t001.h
13906
13907 MT9T112 APTINA CAMERA SENSOR
13908 M:      Jacopo Mondi <jacopo@jmondi.org>
13909 L:      linux-media@vger.kernel.org
13910 S:      Odd Fixes
13911 T:      git git://linuxtv.org/media_tree.git
13912 F:      drivers/media/i2c/mt9t112.c
13913 F:      include/media/i2c/mt9t112.h
13914
13915 MT9V032 APTINA CAMERA SENSOR
13916 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
13917 L:      linux-media@vger.kernel.org
13918 S:      Maintained
13919 T:      git git://linuxtv.org/media_tree.git
13920 F:      Documentation/devicetree/bindings/media/i2c/mt9v032.txt
13921 F:      drivers/media/i2c/mt9v032.c
13922 F:      include/media/i2c/mt9v032.h
13923
13924 MT9V111 APTINA CAMERA SENSOR
13925 M:      Jacopo Mondi <jacopo@jmondi.org>
13926 L:      linux-media@vger.kernel.org
13927 S:      Maintained
13928 T:      git git://linuxtv.org/media_tree.git
13929 F:      Documentation/devicetree/bindings/media/i2c/aptina,mt9v111.yaml
13930 F:      drivers/media/i2c/mt9v111.c
13931
13932 MULTIFUNCTION DEVICES (MFD)
13933 M:      Lee Jones <lee@kernel.org>
13934 S:      Supported
13935 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
13936 F:      Documentation/devicetree/bindings/mfd/
13937 F:      drivers/mfd/
13938 F:      include/dt-bindings/mfd/
13939 F:      include/linux/mfd/
13940
13941 MULTIMEDIA CARD (MMC) ETC. OVER SPI
13942 S:      Orphan
13943 F:      drivers/mmc/host/mmc_spi.c
13944 F:      include/linux/spi/mmc_spi.h
13945
13946 MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
13947 M:      Ulf Hansson <ulf.hansson@linaro.org>
13948 L:      linux-mmc@vger.kernel.org
13949 S:      Maintained
13950 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
13951 F:      Documentation/devicetree/bindings/mmc/
13952 F:      drivers/mmc/
13953 F:      include/linux/mmc/
13954 F:      include/uapi/linux/mmc/
13955
13956 MULTIPLEXER SUBSYSTEM
13957 M:      Peter Rosin <peda@axentia.se>
13958 S:      Maintained
13959 F:      Documentation/ABI/testing/sysfs-class-mux*
13960 F:      Documentation/devicetree/bindings/mux/
13961 F:      drivers/mux/
13962 F:      include/dt-bindings/mux/
13963 F:      include/linux/mux/
13964
13965 MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
13966 M:      Bin Liu <b-liu@ti.com>
13967 L:      linux-usb@vger.kernel.org
13968 S:      Maintained
13969 F:      drivers/usb/musb/
13970
13971 MXL301RF MEDIA DRIVER
13972 M:      Akihiro Tsukada <tskd08@gmail.com>
13973 L:      linux-media@vger.kernel.org
13974 S:      Odd Fixes
13975 F:      drivers/media/tuners/mxl301rf*
13976
13977 MXL5007T MEDIA DRIVER
13978 M:      Michael Krufky <mkrufky@linuxtv.org>
13979 L:      linux-media@vger.kernel.org
13980 S:      Maintained
13981 W:      https://linuxtv.org
13982 W:      http://github.com/mkrufky
13983 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13984 T:      git git://linuxtv.org/mkrufky/tuners.git
13985 F:      drivers/media/tuners/mxl5007t.*
13986
13987 MXSFB DRM DRIVER
13988 M:      Marek Vasut <marex@denx.de>
13989 M:      Stefan Agner <stefan@agner.ch>
13990 L:      dri-devel@lists.freedesktop.org
13991 S:      Supported
13992 T:      git git://anongit.freedesktop.org/drm/drm-misc
13993 F:      Documentation/devicetree/bindings/display/fsl,lcdif.yaml
13994 F:      drivers/gpu/drm/mxsfb/
13995
13996 MYLEX DAC960 PCI RAID Controller
13997 M:      Hannes Reinecke <hare@kernel.org>
13998 L:      linux-scsi@vger.kernel.org
13999 S:      Supported
14000 F:      drivers/scsi/myrb.*
14001 F:      drivers/scsi/myrs.*
14002
14003 MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
14004 M:      Chris Lee <christopher.lee@cspi.com>
14005 L:      netdev@vger.kernel.org
14006 S:      Supported
14007 W:      https://www.cspi.com/ethernet-products/support/downloads/
14008 F:      drivers/net/ethernet/myricom/myri10ge/
14009
14010 NAND FLASH SUBSYSTEM
14011 M:      Miquel Raynal <miquel.raynal@bootlin.com>
14012 R:      Richard Weinberger <richard@nod.at>
14013 L:      linux-mtd@lists.infradead.org
14014 S:      Maintained
14015 W:      http://www.linux-mtd.infradead.org/
14016 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
14017 C:      irc://irc.oftc.net/mtd
14018 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git nand/next
14019 F:      drivers/mtd/nand/
14020 F:      include/linux/mtd/*nand*.h
14021
14022 NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
14023 M:      Daniel Mack <zonque@gmail.com>
14024 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
14025 S:      Maintained
14026 W:      http://www.native-instruments.com
14027 F:      sound/usb/caiaq/
14028
14029 NATSEMI ETHERNET DRIVER (DP8381x)
14030 S:      Orphan
14031 F:      drivers/net/ethernet/natsemi/natsemi.c
14032
14033 NCR 5380 SCSI DRIVERS
14034 M:      Finn Thain <fthain@linux-m68k.org>
14035 M:      Michael Schmitz <schmitzmic@gmail.com>
14036 L:      linux-scsi@vger.kernel.org
14037 S:      Maintained
14038 F:      Documentation/scsi/g_NCR5380.rst
14039 F:      drivers/scsi/NCR5380.*
14040 F:      drivers/scsi/arm/cumana_1.c
14041 F:      drivers/scsi/arm/oak.c
14042 F:      drivers/scsi/atari_scsi.*
14043 F:      drivers/scsi/dmx3191d.c
14044 F:      drivers/scsi/g_NCR5380.*
14045 F:      drivers/scsi/mac_scsi.*
14046 F:      drivers/scsi/sun3_scsi.*
14047 F:      drivers/scsi/sun3_scsi_vme.c
14048
14049 NCSI LIBRARY
14050 M:      Samuel Mendoza-Jonas <sam@mendozajonas.com>
14051 S:      Maintained
14052 F:      net/ncsi/
14053
14054 NCT6775 HARDWARE MONITOR DRIVER - CORE & PLATFORM DRIVER
14055 M:      Guenter Roeck <linux@roeck-us.net>
14056 L:      linux-hwmon@vger.kernel.org
14057 S:      Maintained
14058 F:      Documentation/hwmon/nct6775.rst
14059 F:      drivers/hwmon/nct6775-core.c
14060 F:      drivers/hwmon/nct6775-platform.c
14061 F:      drivers/hwmon/nct6775.h
14062
14063 NCT6775 HARDWARE MONITOR DRIVER - I2C DRIVER
14064 M:      Zev Weiss <zev@bewilderbeest.net>
14065 L:      linux-hwmon@vger.kernel.org
14066 S:      Maintained
14067 F:      Documentation/devicetree/bindings/hwmon/nuvoton,nct6775.yaml
14068 F:      drivers/hwmon/nct6775-i2c.c
14069
14070 NETDEVSIM
14071 M:      Jakub Kicinski <kuba@kernel.org>
14072 S:      Maintained
14073 F:      drivers/net/netdevsim/*
14074
14075 NETEM NETWORK EMULATOR
14076 M:      Stephen Hemminger <stephen@networkplumber.org>
14077 L:      netdev@vger.kernel.org
14078 S:      Maintained
14079 F:      net/sched/sch_netem.c
14080
14081 NETERION 10GbE DRIVERS (s2io)
14082 M:      Jon Mason <jdmason@kudzu.us>
14083 L:      netdev@vger.kernel.org
14084 S:      Supported
14085 F:      Documentation/networking/device_drivers/ethernet/neterion/s2io.rst
14086 F:      drivers/net/ethernet/neterion/
14087
14088 NETFILTER
14089 M:      Pablo Neira Ayuso <pablo@netfilter.org>
14090 M:      Jozsef Kadlecsik <kadlec@netfilter.org>
14091 M:      Florian Westphal <fw@strlen.de>
14092 L:      netfilter-devel@vger.kernel.org
14093 L:      coreteam@netfilter.org
14094 S:      Maintained
14095 W:      http://www.netfilter.org/
14096 W:      http://www.iptables.org/
14097 W:      http://www.nftables.org/
14098 Q:      http://patchwork.ozlabs.org/project/netfilter-devel/list/
14099 C:      irc://irc.libera.chat/netfilter
14100 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netfilter/nf.git
14101 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netfilter/nf-next.git
14102 F:      include/linux/netfilter*
14103 F:      include/linux/netfilter/
14104 F:      include/net/netfilter/
14105 F:      include/uapi/linux/netfilter*
14106 F:      include/uapi/linux/netfilter/
14107 F:      net/*/netfilter.c
14108 F:      net/*/netfilter/
14109 F:      net/bridge/br_netfilter*.c
14110 F:      net/netfilter/
14111
14112 NETROM NETWORK LAYER
14113 M:      Ralf Baechle <ralf@linux-mips.org>
14114 L:      linux-hams@vger.kernel.org
14115 S:      Maintained
14116 W:      http://www.linux-ax25.org/
14117 F:      include/net/netrom.h
14118 F:      include/uapi/linux/netrom.h
14119 F:      net/netrom/
14120
14121 NETRONIX EMBEDDED CONTROLLER
14122 M:      Jonathan Neuschäfer <j.neuschaefer@gmx.net>
14123 S:      Maintained
14124 F:      Documentation/devicetree/bindings/mfd/netronix,ntxec.yaml
14125 F:      drivers/mfd/ntxec.c
14126 F:      drivers/pwm/pwm-ntxec.c
14127 F:      drivers/rtc/rtc-ntxec.c
14128 F:      include/linux/mfd/ntxec.h
14129
14130 NETRONOME ETHERNET DRIVERS
14131 M:      Simon Horman <simon.horman@corigine.com>
14132 R:      Jakub Kicinski <kuba@kernel.org>
14133 L:      oss-drivers@corigine.com
14134 S:      Maintained
14135 F:      drivers/net/ethernet/netronome/
14136
14137 NETWORK BLOCK DEVICE (NBD)
14138 M:      Josef Bacik <josef@toxicpanda.com>
14139 L:      linux-block@vger.kernel.org
14140 L:      nbd@other.debian.org
14141 S:      Maintained
14142 F:      Documentation/admin-guide/blockdev/nbd.rst
14143 F:      drivers/block/nbd.c
14144 F:      include/trace/events/nbd.h
14145 F:      include/uapi/linux/nbd.h
14146
14147 NETWORK DROP MONITOR
14148 M:      Neil Horman <nhorman@tuxdriver.com>
14149 L:      netdev@vger.kernel.org
14150 S:      Maintained
14151 W:      https://fedorahosted.org/dropwatch/
14152 F:      include/uapi/linux/net_dropmon.h
14153 F:      net/core/drop_monitor.c
14154
14155 NETWORKING DRIVERS
14156 M:      "David S. Miller" <davem@davemloft.net>
14157 M:      Eric Dumazet <edumazet@google.com>
14158 M:      Jakub Kicinski <kuba@kernel.org>
14159 M:      Paolo Abeni <pabeni@redhat.com>
14160 L:      netdev@vger.kernel.org
14161 S:      Maintained
14162 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
14163 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
14164 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
14165 F:      Documentation/devicetree/bindings/net/
14166 F:      drivers/connector/
14167 F:      drivers/net/
14168 F:      include/dt-bindings/net/
14169 F:      include/linux/etherdevice.h
14170 F:      include/linux/fcdevice.h
14171 F:      include/linux/fddidevice.h
14172 F:      include/linux/hippidevice.h
14173 F:      include/linux/if_*
14174 F:      include/linux/inetdevice.h
14175 F:      include/linux/netdevice.h
14176 F:      include/uapi/linux/if_*
14177 F:      include/uapi/linux/netdevice.h
14178
14179 NETWORKING DRIVERS (WIRELESS)
14180 M:      Kalle Valo <kvalo@kernel.org>
14181 L:      linux-wireless@vger.kernel.org
14182 S:      Maintained
14183 W:      https://wireless.wiki.kernel.org/
14184 Q:      https://patchwork.kernel.org/project/linux-wireless/list/
14185 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless.git
14186 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless-next.git
14187 F:      Documentation/devicetree/bindings/net/wireless/
14188 F:      drivers/net/wireless/
14189
14190 NETWORKING [DSA]
14191 M:      Andrew Lunn <andrew@lunn.ch>
14192 M:      Vivien Didelot <vivien.didelot@gmail.com>
14193 M:      Florian Fainelli <f.fainelli@gmail.com>
14194 M:      Vladimir Oltean <olteanv@gmail.com>
14195 S:      Maintained
14196 F:      Documentation/devicetree/bindings/net/dsa/
14197 F:      drivers/net/dsa/
14198 F:      include/linux/dsa/
14199 F:      include/linux/platform_data/dsa.h
14200 F:      include/net/dsa.h
14201 F:      net/dsa/
14202 F:      tools/testing/selftests/drivers/net/dsa/
14203
14204 NETWORKING [GENERAL]
14205 M:      "David S. Miller" <davem@davemloft.net>
14206 M:      Eric Dumazet <edumazet@google.com>
14207 M:      Jakub Kicinski <kuba@kernel.org>
14208 M:      Paolo Abeni <pabeni@redhat.com>
14209 L:      netdev@vger.kernel.org
14210 S:      Maintained
14211 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
14212 B:      mailto:netdev@vger.kernel.org
14213 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
14214 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
14215 F:      Documentation/networking/
14216 F:      Documentation/process/maintainer-netdev.rst
14217 F:      include/linux/in.h
14218 F:      include/linux/net.h
14219 F:      include/linux/netdevice.h
14220 F:      include/net/
14221 F:      include/uapi/linux/in.h
14222 F:      include/uapi/linux/net.h
14223 F:      include/uapi/linux/net_namespace.h
14224 F:      include/uapi/linux/netdevice.h
14225 F:      lib/net_utils.c
14226 F:      lib/random32.c
14227 F:      net/
14228 F:      tools/testing/selftests/net/
14229
14230 NETWORKING [IPSEC]
14231 M:      Steffen Klassert <steffen.klassert@secunet.com>
14232 M:      Herbert Xu <herbert@gondor.apana.org.au>
14233 M:      "David S. Miller" <davem@davemloft.net>
14234 L:      netdev@vger.kernel.org
14235 S:      Maintained
14236 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git
14237 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git
14238 F:      include/net/xfrm.h
14239 F:      include/uapi/linux/xfrm.h
14240 F:      net/ipv4/ah4.c
14241 F:      net/ipv4/esp4*
14242 F:      net/ipv4/ip_vti.c
14243 F:      net/ipv4/ipcomp.c
14244 F:      net/ipv4/xfrm*
14245 F:      net/ipv6/ah6.c
14246 F:      net/ipv6/esp6*
14247 F:      net/ipv6/ip6_vti.c
14248 F:      net/ipv6/ipcomp6.c
14249 F:      net/ipv6/xfrm*
14250 F:      net/key/
14251 F:      net/xfrm/
14252 F:      tools/testing/selftests/net/ipsec.c
14253
14254 NETWORKING [IPv4/IPv6]
14255 M:      "David S. Miller" <davem@davemloft.net>
14256 M:      Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
14257 M:      David Ahern <dsahern@kernel.org>
14258 L:      netdev@vger.kernel.org
14259 S:      Maintained
14260 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
14261 F:      arch/x86/net/*
14262 F:      include/linux/ip.h
14263 F:      include/linux/ipv6*
14264 F:      include/net/fib*
14265 F:      include/net/ip*
14266 F:      include/net/route.h
14267 F:      net/ipv4/
14268 F:      net/ipv6/
14269
14270 NETWORKING [LABELED] (NetLabel, Labeled IPsec, SECMARK)
14271 M:      Paul Moore <paul@paul-moore.com>
14272 L:      netdev@vger.kernel.org
14273 L:      linux-security-module@vger.kernel.org
14274 S:      Maintained
14275 W:      https://github.com/netlabel
14276 F:      Documentation/netlabel/
14277 F:      include/net/calipso.h
14278 F:      include/net/cipso_ipv4.h
14279 F:      include/net/netlabel.h
14280 F:      include/uapi/linux/netfilter/xt_CONNSECMARK.h
14281 F:      include/uapi/linux/netfilter/xt_SECMARK.h
14282 F:      net/ipv4/cipso_ipv4.c
14283 F:      net/ipv6/calipso.c
14284 F:      net/netfilter/xt_CONNSECMARK.c
14285 F:      net/netfilter/xt_SECMARK.c
14286 F:      net/netlabel/
14287
14288 NETWORKING [MPTCP]
14289 M:      Mat Martineau <mathew.j.martineau@linux.intel.com>
14290 M:      Matthieu Baerts <matthieu.baerts@tessares.net>
14291 L:      netdev@vger.kernel.org
14292 L:      mptcp@lists.linux.dev
14293 S:      Maintained
14294 W:      https://github.com/multipath-tcp/mptcp_net-next/wiki
14295 B:      https://github.com/multipath-tcp/mptcp_net-next/issues
14296 F:      Documentation/networking/mptcp-sysctl.rst
14297 F:      include/net/mptcp.h
14298 F:      include/trace/events/mptcp.h
14299 F:      include/uapi/linux/mptcp.h
14300 F:      net/mptcp/
14301 F:      tools/testing/selftests/bpf/*/*mptcp*.c
14302 F:      tools/testing/selftests/net/mptcp/
14303
14304 NETWORKING [TCP]
14305 M:      Eric Dumazet <edumazet@google.com>
14306 L:      netdev@vger.kernel.org
14307 S:      Maintained
14308 F:      include/linux/tcp.h
14309 F:      include/net/tcp.h
14310 F:      include/trace/events/tcp.h
14311 F:      include/uapi/linux/tcp.h
14312 F:      net/ipv4/syncookies.c
14313 F:      net/ipv4/tcp*.c
14314 F:      net/ipv6/syncookies.c
14315 F:      net/ipv6/tcp*.c
14316
14317 NETWORKING [TLS]
14318 M:      Boris Pismenny <borisp@nvidia.com>
14319 M:      John Fastabend <john.fastabend@gmail.com>
14320 M:      Jakub Kicinski <kuba@kernel.org>
14321 L:      netdev@vger.kernel.org
14322 S:      Maintained
14323 F:      include/net/tls.h
14324 F:      include/uapi/linux/tls.h
14325 F:      net/tls/*
14326
14327 NETXEN (1/10) GbE SUPPORT
14328 M:      Manish Chopra <manishc@marvell.com>
14329 M:      Rahul Verma <rahulv@marvell.com>
14330 M:      GR-Linux-NIC-Dev@marvell.com
14331 L:      netdev@vger.kernel.org
14332 S:      Supported
14333 F:      drivers/net/ethernet/qlogic/netxen/
14334
14335 NET_FAILOVER MODULE
14336 M:      Sridhar Samudrala <sridhar.samudrala@intel.com>
14337 L:      netdev@vger.kernel.org
14338 S:      Supported
14339 F:      Documentation/networking/net_failover.rst
14340 F:      drivers/net/net_failover.c
14341 F:      include/net/net_failover.h
14342
14343 NEXTHOP
14344 M:      David Ahern <dsahern@kernel.org>
14345 L:      netdev@vger.kernel.org
14346 S:      Maintained
14347 F:      include/net/netns/nexthop.h
14348 F:      include/net/nexthop.h
14349 F:      include/uapi/linux/nexthop.h
14350 F:      net/ipv4/nexthop.c
14351
14352 NFC SUBSYSTEM
14353 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
14354 L:      linux-nfc@lists.01.org (subscribers-only)
14355 L:      netdev@vger.kernel.org
14356 S:      Maintained
14357 B:      mailto:linux-nfc@lists.01.org
14358 F:      Documentation/devicetree/bindings/net/nfc/
14359 F:      drivers/nfc/
14360 F:      include/linux/platform_data/nfcmrvl.h
14361 F:      include/net/nfc/
14362 F:      include/uapi/linux/nfc.h
14363 F:      net/nfc/
14364
14365 NFC VIRTUAL NCI DEVICE DRIVER
14366 M:      Bongsu Jeon <bongsu.jeon@samsung.com>
14367 L:      netdev@vger.kernel.org
14368 L:      linux-nfc@lists.01.org (subscribers-only)
14369 S:      Supported
14370 F:      drivers/nfc/virtual_ncidev.c
14371 F:      tools/testing/selftests/nci/
14372
14373 NFS, SUNRPC, AND LOCKD CLIENTS
14374 M:      Trond Myklebust <trond.myklebust@hammerspace.com>
14375 M:      Anna Schumaker <anna@kernel.org>
14376 L:      linux-nfs@vger.kernel.org
14377 S:      Maintained
14378 W:      http://client.linux-nfs.org
14379 T:      git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git
14380 F:      fs/lockd/
14381 F:      fs/nfs/
14382 F:      fs/nfs_common/
14383 F:      include/linux/lockd/
14384 F:      include/linux/nfs*
14385 F:      include/linux/sunrpc/
14386 F:      include/uapi/linux/nfs*
14387 F:      include/uapi/linux/sunrpc/
14388 F:      net/sunrpc/
14389 F:      Documentation/filesystems/nfs/
14390
14391 NILFS2 FILESYSTEM
14392 M:      Ryusuke Konishi <konishi.ryusuke@gmail.com>
14393 L:      linux-nilfs@vger.kernel.org
14394 S:      Supported
14395 W:      https://nilfs.sourceforge.io/
14396 W:      https://nilfs.osdn.jp/
14397 T:      git git://github.com/konis/nilfs2.git
14398 F:      Documentation/filesystems/nilfs2.rst
14399 F:      fs/nilfs2/
14400 F:      include/trace/events/nilfs2.h
14401 F:      include/uapi/linux/nilfs2_api.h
14402 F:      include/uapi/linux/nilfs2_ondisk.h
14403
14404 NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
14405 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
14406 S:      Maintained
14407 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
14408 F:      Documentation/scsi/NinjaSCSI.rst
14409 F:      drivers/scsi/pcmcia/nsp_*
14410
14411 NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
14412 M:      GOTO Masanori <gotom@debian.or.jp>
14413 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
14414 S:      Maintained
14415 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
14416 F:      Documentation/scsi/NinjaSCSI.rst
14417 F:      drivers/scsi/nsp32*
14418
14419 NINTENDO HID DRIVER
14420 M:      Daniel J. Ogorchock <djogorchock@gmail.com>
14421 L:      linux-input@vger.kernel.org
14422 S:      Maintained
14423 F:      drivers/hid/hid-nintendo*
14424
14425 NIOS2 ARCHITECTURE
14426 M:      Dinh Nguyen <dinguyen@kernel.org>
14427 S:      Maintained
14428 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
14429 F:      arch/nios2/
14430
14431 NITRO ENCLAVES (NE)
14432 M:      Andra Paraschiv <andraprs@amazon.com>
14433 M:      Alexandru Vasile <lexnv@amazon.com>
14434 M:      Alexandru Ciobotaru <alcioa@amazon.com>
14435 L:      linux-kernel@vger.kernel.org
14436 S:      Supported
14437 W:      https://aws.amazon.com/ec2/nitro/nitro-enclaves/
14438 F:      Documentation/virt/ne_overview.rst
14439 F:      drivers/virt/nitro_enclaves/
14440 F:      include/linux/nitro_enclaves.h
14441 F:      include/uapi/linux/nitro_enclaves.h
14442 F:      samples/nitro_enclaves/
14443
14444 NOHZ, DYNTICKS SUPPORT
14445 M:      Frederic Weisbecker <fweisbec@gmail.com>
14446 M:      Thomas Gleixner <tglx@linutronix.de>
14447 M:      Ingo Molnar <mingo@kernel.org>
14448 L:      linux-kernel@vger.kernel.org
14449 S:      Maintained
14450 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/nohz
14451 F:      include/linux/sched/nohz.h
14452 F:      include/linux/tick.h
14453 F:      kernel/time/tick*.*
14454
14455 NOKIA N900 CAMERA SUPPORT (ET8EK8 SENSOR, AD5820 FOCUS)
14456 M:      Pavel Machek <pavel@ucw.cz>
14457 M:      Sakari Ailus <sakari.ailus@iki.fi>
14458 L:      linux-media@vger.kernel.org
14459 S:      Maintained
14460 F:      drivers/media/i2c/ad5820.c
14461 F:      drivers/media/i2c/et8ek8
14462
14463 NOKIA N900 POWER SUPPLY DRIVERS
14464 R:      Pali Rohár <pali@kernel.org>
14465 F:      drivers/power/supply/bq2415x_charger.c
14466 F:      drivers/power/supply/bq27xxx_battery.c
14467 F:      drivers/power/supply/bq27xxx_battery_i2c.c
14468 F:      drivers/power/supply/isp1704_charger.c
14469 F:      drivers/power/supply/rx51_battery.c
14470 F:      include/linux/power/bq2415x_charger.h
14471 F:      include/linux/power/bq27xxx_battery.h
14472
14473 NOLIBC HEADER FILE
14474 M:      Willy Tarreau <w@1wt.eu>
14475 S:      Maintained
14476 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wtarreau/nolibc.git
14477 F:      tools/include/nolibc/
14478 F:      tools/testing/selftests/nolibc/
14479
14480 NSDEPS
14481 M:      Matthias Maennich <maennich@google.com>
14482 S:      Maintained
14483 F:      Documentation/core-api/symbol-namespaces.rst
14484 F:      scripts/nsdeps
14485
14486 NTB AMD DRIVER
14487 M:      Sanjay R Mehta <sanju.mehta@amd.com>
14488 M:      Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
14489 L:      ntb@lists.linux.dev
14490 S:      Supported
14491 F:      drivers/ntb/hw/amd/
14492
14493 NTB DRIVER CORE
14494 M:      Jon Mason <jdmason@kudzu.us>
14495 M:      Dave Jiang <dave.jiang@intel.com>
14496 M:      Allen Hubbe <allenbh@gmail.com>
14497 L:      ntb@lists.linux.dev
14498 S:      Supported
14499 W:      https://github.com/jonmason/ntb/wiki
14500 T:      git git://github.com/jonmason/ntb.git
14501 F:      drivers/net/ntb_netdev.c
14502 F:      drivers/ntb/
14503 F:      drivers/pci/endpoint/functions/pci-epf-*ntb.c
14504 F:      include/linux/ntb.h
14505 F:      include/linux/ntb_transport.h
14506 F:      tools/testing/selftests/ntb/
14507
14508 NTB IDT DRIVER
14509 M:      Serge Semin <fancer.lancer@gmail.com>
14510 L:      ntb@lists.linux.dev
14511 S:      Supported
14512 F:      drivers/ntb/hw/idt/
14513
14514 NTB INTEL DRIVER
14515 M:      Dave Jiang <dave.jiang@intel.com>
14516 L:      ntb@lists.linux.dev
14517 S:      Supported
14518 W:      https://github.com/davejiang/linux/wiki
14519 T:      git https://github.com/davejiang/linux.git
14520 F:      drivers/ntb/hw/intel/
14521
14522 NTFS FILESYSTEM
14523 M:      Anton Altaparmakov <anton@tuxera.com>
14524 L:      linux-ntfs-dev@lists.sourceforge.net
14525 S:      Supported
14526 W:      http://www.tuxera.com/
14527 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
14528 F:      Documentation/filesystems/ntfs.rst
14529 F:      fs/ntfs/
14530
14531 NTFS3 FILESYSTEM
14532 M:      Konstantin Komarov <almaz.alexandrovich@paragon-software.com>
14533 L:      ntfs3@lists.linux.dev
14534 S:      Supported
14535 W:      http://www.paragon-software.com/
14536 T:      git https://github.com/Paragon-Software-Group/linux-ntfs3.git
14537 F:      Documentation/filesystems/ntfs3.rst
14538 F:      fs/ntfs3/
14539
14540 NUBUS SUBSYSTEM
14541 M:      Finn Thain <fthain@linux-m68k.org>
14542 L:      linux-m68k@lists.linux-m68k.org
14543 S:      Maintained
14544 F:      arch/*/include/asm/nubus.h
14545 F:      drivers/nubus/
14546 F:      include/linux/nubus.h
14547 F:      include/uapi/linux/nubus.h
14548
14549 NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
14550 M:      Antonino Daplas <adaplas@gmail.com>
14551 L:      linux-fbdev@vger.kernel.org
14552 S:      Maintained
14553 F:      drivers/video/fbdev/nvidia/
14554 F:      drivers/video/fbdev/riva/
14555
14556 NVIDIA WMI EC BACKLIGHT DRIVER
14557 M:      Daniel Dadap <ddadap@nvidia.com>
14558 L:      platform-driver-x86@vger.kernel.org
14559 S:      Supported
14560 F:      drivers/platform/x86/nvidia-wmi-ec-backlight.c
14561 F:      include/linux/platform_data/x86/nvidia-wmi-ec-backlight.h
14562
14563 NVM EXPRESS DRIVER
14564 M:      Keith Busch <kbusch@kernel.org>
14565 M:      Jens Axboe <axboe@fb.com>
14566 M:      Christoph Hellwig <hch@lst.de>
14567 M:      Sagi Grimberg <sagi@grimberg.me>
14568 L:      linux-nvme@lists.infradead.org
14569 S:      Supported
14570 W:      http://git.infradead.org/nvme.git
14571 T:      git://git.infradead.org/nvme.git
14572 F:      drivers/nvme/host/
14573 F:      drivers/nvme/common/
14574 F:      include/linux/nvme*
14575 F:      include/uapi/linux/nvme_ioctl.h
14576
14577 NVM EXPRESS FC TRANSPORT DRIVERS
14578 M:      James Smart <james.smart@broadcom.com>
14579 L:      linux-nvme@lists.infradead.org
14580 S:      Supported
14581 F:      drivers/nvme/host/fc.c
14582 F:      drivers/nvme/target/fc.c
14583 F:      drivers/nvme/target/fcloop.c
14584 F:      include/linux/nvme-fc-driver.h
14585 F:      include/linux/nvme-fc.h
14586
14587 NVM EXPRESS TARGET DRIVER
14588 M:      Christoph Hellwig <hch@lst.de>
14589 M:      Sagi Grimberg <sagi@grimberg.me>
14590 M:      Chaitanya Kulkarni <kch@nvidia.com>
14591 L:      linux-nvme@lists.infradead.org
14592 S:      Supported
14593 W:      http://git.infradead.org/nvme.git
14594 T:      git://git.infradead.org/nvme.git
14595 F:      drivers/nvme/target/
14596
14597 NVMEM FRAMEWORK
14598 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
14599 S:      Maintained
14600 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/srini/nvmem.git
14601 F:      Documentation/ABI/stable/sysfs-bus-nvmem
14602 F:      Documentation/devicetree/bindings/nvmem/
14603 F:      drivers/nvmem/
14604 F:      include/linux/nvmem-consumer.h
14605 F:      include/linux/nvmem-provider.h
14606
14607 NXP C45 TJA11XX PHY DRIVER
14608 M:      Radu Pirea <radu-nicolae.pirea@oss.nxp.com>
14609 L:      netdev@vger.kernel.org
14610 S:      Maintained
14611 F:      drivers/net/phy/nxp-c45-tja11xx.c
14612
14613 NXP FSPI DRIVER
14614 M:      Han Xu <han.xu@nxp.com>
14615 M:      Haibo Chen <haibo.chen@nxp.com>
14616 R:      Yogesh Gaur <yogeshgaur.83@gmail.com>
14617 L:      linux-spi@vger.kernel.org
14618 S:      Maintained
14619 F:      Documentation/devicetree/bindings/spi/spi-nxp-fspi.yaml
14620 F:      drivers/spi/spi-nxp-fspi.c
14621
14622 NXP FXAS21002C DRIVER
14623 M:      Rui Miguel Silva <rmfrfs@gmail.com>
14624 L:      linux-iio@vger.kernel.org
14625 S:      Maintained
14626 F:      Documentation/devicetree/bindings/iio/gyroscope/nxp,fxas21002c.yaml
14627 F:      drivers/iio/gyro/fxas21002c.h
14628 F:      drivers/iio/gyro/fxas21002c_core.c
14629 F:      drivers/iio/gyro/fxas21002c_i2c.c
14630 F:      drivers/iio/gyro/fxas21002c_spi.c
14631
14632 NXP i.MX CLOCK DRIVERS
14633 M:      Abel Vesa <abelvesa@kernel.org>
14634 L:      linux-clk@vger.kernel.org
14635 L:      linux-imx@nxp.com
14636 S:      Maintained
14637 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/abelvesa/linux.git clk/imx
14638 F:      Documentation/devicetree/bindings/clock/imx*
14639 F:      drivers/clk/imx/
14640 F:      include/dt-bindings/clock/imx*
14641
14642 NXP i.MX 8MQ DCSS DRIVER
14643 M:      Laurentiu Palcu <laurentiu.palcu@oss.nxp.com>
14644 R:      Lucas Stach <l.stach@pengutronix.de>
14645 L:      dri-devel@lists.freedesktop.org
14646 S:      Maintained
14647 F:      Documentation/devicetree/bindings/display/imx/nxp,imx8mq-dcss.yaml
14648 F:      drivers/gpu/drm/imx/dcss/
14649
14650 NXP i.MX 8QXP ADC DRIVER
14651 M:      Cai Huoqing <cai.huoqing@linux.dev>
14652 M:      Haibo Chen <haibo.chen@nxp.com>
14653 L:      linux-imx@nxp.com
14654 L:      linux-iio@vger.kernel.org
14655 S:      Maintained
14656 F:      Documentation/devicetree/bindings/iio/adc/nxp,imx8qxp-adc.yaml
14657 F:      drivers/iio/adc/imx8qxp-adc.c
14658
14659 NXP i.MX 7D/6SX/6UL AND VF610 ADC DRIVER
14660 M:      Haibo Chen <haibo.chen@nxp.com>
14661 L:      linux-iio@vger.kernel.org
14662 L:      linux-imx@nxp.com
14663 S:      Maintained
14664 F:      Documentation/devicetree/bindings/iio/adc/fsl,imx7d-adc.yaml
14665 F:      Documentation/devicetree/bindings/iio/adc/fsl,vf610-adc.yaml
14666 F:      drivers/iio/adc/imx7d_adc.c
14667 F:      drivers/iio/adc/vf610_adc.c
14668
14669 NXP PF8100/PF8121A/PF8200 PMIC REGULATOR DEVICE DRIVER
14670 M:      Jagan Teki <jagan@amarulasolutions.com>
14671 S:      Maintained
14672 F:      Documentation/devicetree/bindings/regulator/nxp,pf8x00-regulator.yaml
14673 F:      drivers/regulator/pf8x00-regulator.c
14674
14675 NXP PTN5150A CC LOGIC AND EXTCON DRIVER
14676 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
14677 L:      linux-kernel@vger.kernel.org
14678 S:      Maintained
14679 F:      Documentation/devicetree/bindings/extcon/extcon-ptn5150.yaml
14680 F:      drivers/extcon/extcon-ptn5150.c
14681
14682 NXP SGTL5000 DRIVER
14683 M:      Fabio Estevam <festevam@gmail.com>
14684 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
14685 S:      Maintained
14686 F:      Documentation/devicetree/bindings/sound/sgtl5000.yaml
14687 F:      sound/soc/codecs/sgtl5000*
14688
14689 NXP SJA1105 ETHERNET SWITCH DRIVER
14690 M:      Vladimir Oltean <olteanv@gmail.com>
14691 L:      linux-kernel@vger.kernel.org
14692 S:      Maintained
14693 F:      drivers/net/dsa/sja1105
14694 F:      drivers/net/pcs/pcs-xpcs-nxp.c
14695
14696 NXP TDA998X DRM DRIVER
14697 M:      Russell King <linux@armlinux.org.uk>
14698 S:      Maintained
14699 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-devel
14700 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-fixes
14701 F:      drivers/gpu/drm/i2c/tda998x_drv.c
14702 F:      include/drm/i2c/tda998x.h
14703 F:      include/dt-bindings/display/tda998x.h
14704 K:      "nxp,tda998x"
14705
14706 NXP TFA9879 DRIVER
14707 M:      Peter Rosin <peda@axentia.se>
14708 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
14709 S:      Maintained
14710 F:      Documentation/devicetree/bindings/sound/tfa9879.txt
14711 F:      sound/soc/codecs/tfa9879*
14712
14713 NXP/Goodix TFA989X (TFA1) DRIVER
14714 M:      Stephan Gerhold <stephan@gerhold.net>
14715 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
14716 S:      Maintained
14717 F:      Documentation/devicetree/bindings/sound/nxp,tfa989x.yaml
14718 F:      sound/soc/codecs/tfa989x.c
14719
14720 NXP-NCI NFC DRIVER
14721 L:      linux-nfc@lists.01.org (subscribers-only)
14722 S:      Orphan
14723 F:      Documentation/devicetree/bindings/net/nfc/nxp,nci.yaml
14724 F:      drivers/nfc/nxp-nci
14725
14726 NXP i.MX 8QXP/8QM JPEG V4L2 DRIVER
14727 M:      Mirela Rabulea <mirela.rabulea@nxp.com>
14728 R:      NXP Linux Team <linux-imx@nxp.com>
14729 L:      linux-media@vger.kernel.org
14730 S:      Maintained
14731 F:      Documentation/devicetree/bindings/media/nxp,imx8-jpeg.yaml
14732 F:      drivers/media/platform/nxp/imx-jpeg
14733
14734 NZXT-KRAKEN2 HARDWARE MONITORING DRIVER
14735 M:      Jonas Malaco <jonas@protocubo.io>
14736 L:      linux-hwmon@vger.kernel.org
14737 S:      Maintained
14738 F:      Documentation/hwmon/nzxt-kraken2.rst
14739 F:      drivers/hwmon/nzxt-kraken2.c
14740
14741 NZXT-SMART2 HARDWARE MONITORING DRIVER
14742 M:      Aleksandr Mezin <mezin.alexander@gmail.com>
14743 L:      linux-hwmon@vger.kernel.org
14744 S:      Maintained
14745 F:      Documentation/hwmon/nzxt-smart2.rst
14746 F:      drivers/hwmon/nzxt-smart2.c
14747
14748 OBJAGG
14749 M:      Jiri Pirko <jiri@nvidia.com>
14750 L:      netdev@vger.kernel.org
14751 S:      Supported
14752 F:      include/linux/objagg.h
14753 F:      lib/objagg.c
14754 F:      lib/test_objagg.c
14755
14756 OBJTOOL
14757 M:      Josh Poimboeuf <jpoimboe@kernel.org>
14758 M:      Peter Zijlstra <peterz@infradead.org>
14759 S:      Supported
14760 F:      tools/objtool/
14761 F:      include/linux/objtool.h
14762
14763 OCELOT ETHERNET SWITCH DRIVER
14764 M:      Vladimir Oltean <vladimir.oltean@nxp.com>
14765 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
14766 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
14767 M:      UNGLinuxDriver@microchip.com
14768 L:      netdev@vger.kernel.org
14769 S:      Supported
14770 F:      drivers/net/dsa/ocelot/*
14771 F:      drivers/net/ethernet/mscc/
14772 F:      include/soc/mscc/ocelot*
14773 F:      net/dsa/tag_ocelot.c
14774 F:      net/dsa/tag_ocelot_8021q.c
14775 F:      tools/testing/selftests/drivers/net/ocelot/*
14776
14777 OCELOT EXTERNAL SWITCH CONTROL
14778 M:      Colin Foster <colin.foster@in-advantage.com>
14779 S:      Supported
14780 F:      Documentation/devicetree/bindings/mfd/mscc,ocelot.yaml
14781 F:      drivers/mfd/ocelot*
14782 F:      include/linux/mfd/ocelot.h
14783
14784 OCXL (Open Coherent Accelerator Processor Interface OpenCAPI) DRIVER
14785 M:      Frederic Barrat <fbarrat@linux.ibm.com>
14786 M:      Andrew Donnellan <ajd@linux.ibm.com>
14787 L:      linuxppc-dev@lists.ozlabs.org
14788 S:      Supported
14789 F:      Documentation/userspace-api/accelerators/ocxl.rst
14790 F:      arch/powerpc/include/asm/pnv-ocxl.h
14791 F:      arch/powerpc/platforms/powernv/ocxl.c
14792 F:      drivers/misc/ocxl/
14793 F:      include/misc/ocxl*
14794 F:      include/uapi/misc/ocxl.h
14795
14796 OMAP AUDIO SUPPORT
14797 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
14798 M:      Jarkko Nikula <jarkko.nikula@bitmer.com>
14799 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
14800 L:      linux-omap@vger.kernel.org
14801 S:      Maintained
14802 F:      sound/soc/ti/n810.c
14803 F:      sound/soc/ti/omap*
14804 F:      sound/soc/ti/rx51.c
14805 F:      sound/soc/ti/sdma-pcm.*
14806
14807 OMAP CLOCK FRAMEWORK SUPPORT
14808 M:      Paul Walmsley <paul@pwsan.com>
14809 L:      linux-omap@vger.kernel.org
14810 S:      Maintained
14811 F:      arch/arm/*omap*/*clock*
14812
14813 OMAP DEVICE TREE SUPPORT
14814 M:      Benoît Cousson <bcousson@baylibre.com>
14815 M:      Tony Lindgren <tony@atomide.com>
14816 L:      linux-omap@vger.kernel.org
14817 L:      devicetree@vger.kernel.org
14818 S:      Maintained
14819 F:      arch/arm/boot/dts/*am3*
14820 F:      arch/arm/boot/dts/*am4*
14821 F:      arch/arm/boot/dts/*am5*
14822 F:      arch/arm/boot/dts/*dra7*
14823 F:      arch/arm/boot/dts/*omap*
14824 F:      arch/arm/boot/dts/logicpd-som-lv*
14825 F:      arch/arm/boot/dts/logicpd-torpedo*
14826
14827 OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
14828 L:      linux-omap@vger.kernel.org
14829 L:      linux-fbdev@vger.kernel.org
14830 S:      Orphan
14831 F:      Documentation/arm/omap/dss.rst
14832 F:      drivers/video/fbdev/omap2/
14833
14834 OMAP FRAMEBUFFER SUPPORT
14835 L:      linux-fbdev@vger.kernel.org
14836 L:      linux-omap@vger.kernel.org
14837 S:      Orphan
14838 F:      drivers/video/fbdev/omap/
14839
14840 OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT
14841 M:      Roger Quadros <rogerq@kernel.org>
14842 M:      Tony Lindgren <tony@atomide.com>
14843 L:      linux-omap@vger.kernel.org
14844 S:      Maintained
14845 F:      arch/arm/mach-omap2/*gpmc*
14846 F:      drivers/memory/omap-gpmc.c
14847
14848 OMAP GPIO DRIVER
14849 M:      Grygorii Strashko <grygorii.strashko@ti.com>
14850 M:      Santosh Shilimkar <ssantosh@kernel.org>
14851 M:      Kevin Hilman <khilman@kernel.org>
14852 L:      linux-omap@vger.kernel.org
14853 S:      Maintained
14854 F:      Documentation/devicetree/bindings/gpio/ti,omap-gpio.yaml
14855 F:      drivers/gpio/gpio-omap.c
14856
14857 OMAP HARDWARE SPINLOCK SUPPORT
14858 M:      Ohad Ben-Cohen <ohad@wizery.com>
14859 L:      linux-omap@vger.kernel.org
14860 S:      Maintained
14861 F:      drivers/hwspinlock/omap_hwspinlock.c
14862
14863 OMAP HS MMC SUPPORT
14864 L:      linux-mmc@vger.kernel.org
14865 L:      linux-omap@vger.kernel.org
14866 S:      Orphan
14867 F:      drivers/mmc/host/omap_hsmmc.c
14868
14869 OMAP HWMOD DATA
14870 M:      Paul Walmsley <paul@pwsan.com>
14871 L:      linux-omap@vger.kernel.org
14872 S:      Maintained
14873 F:      arch/arm/mach-omap2/omap_hwmod*data*
14874
14875 OMAP HWMOD SUPPORT
14876 M:      Benoît Cousson <bcousson@baylibre.com>
14877 M:      Paul Walmsley <paul@pwsan.com>
14878 L:      linux-omap@vger.kernel.org
14879 S:      Maintained
14880 F:      arch/arm/mach-omap2/omap_hwmod.*
14881
14882 OMAP I2C DRIVER
14883 M:      Vignesh R <vigneshr@ti.com>
14884 L:      linux-omap@vger.kernel.org
14885 L:      linux-i2c@vger.kernel.org
14886 S:      Maintained
14887 F:      Documentation/devicetree/bindings/i2c/ti,omap4-i2c.yaml
14888 F:      drivers/i2c/busses/i2c-omap.c
14889
14890 OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS)
14891 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
14892 L:      linux-media@vger.kernel.org
14893 S:      Maintained
14894 F:      Documentation/devicetree/bindings/media/ti,omap3isp.txt
14895 F:      drivers/media/platform/ti/omap3isp/
14896 F:      drivers/staging/media/omap4iss/
14897
14898 OMAP MMC SUPPORT
14899 M:      Aaro Koskinen <aaro.koskinen@iki.fi>
14900 L:      linux-omap@vger.kernel.org
14901 S:      Odd Fixes
14902 F:      drivers/mmc/host/omap.c
14903
14904 OMAP POWER MANAGEMENT SUPPORT
14905 M:      Kevin Hilman <khilman@kernel.org>
14906 L:      linux-omap@vger.kernel.org
14907 S:      Maintained
14908 F:      arch/arm/*omap*/*pm*
14909 F:      drivers/cpufreq/omap-cpufreq.c
14910
14911 OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT
14912 M:      Paul Walmsley <paul@pwsan.com>
14913 L:      linux-omap@vger.kernel.org
14914 S:      Maintained
14915 F:      arch/arm/mach-omap2/prm*
14916
14917 OMAP RANDOM NUMBER GENERATOR SUPPORT
14918 M:      Deepak Saxena <dsaxena@plexity.net>
14919 S:      Maintained
14920 F:      drivers/char/hw_random/omap-rng.c
14921
14922 OMAP USB SUPPORT
14923 L:      linux-usb@vger.kernel.org
14924 L:      linux-omap@vger.kernel.org
14925 S:      Orphan
14926 F:      arch/arm/*omap*/usb*
14927 F:      drivers/usb/*/*omap*
14928
14929 OMAP/NEWFLOW NANOBONE MACHINE SUPPORT
14930 M:      Mark Jackson <mpfj@newflow.co.uk>
14931 L:      linux-omap@vger.kernel.org
14932 S:      Maintained
14933 F:      arch/arm/boot/dts/am335x-nano.dts
14934
14935 OMAP1 SUPPORT
14936 M:      Aaro Koskinen <aaro.koskinen@iki.fi>
14937 M:      Janusz Krzysztofik <jmkrzyszt@gmail.com>
14938 M:      Tony Lindgren <tony@atomide.com>
14939 L:      linux-omap@vger.kernel.org
14940 S:      Maintained
14941 Q:      http://patchwork.kernel.org/project/linux-omap/list/
14942 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
14943 F:      arch/arm/configs/omap1_defconfig
14944 F:      arch/arm/mach-omap1/
14945 F:      arch/arm/plat-omap/
14946 F:      drivers/i2c/busses/i2c-omap.c
14947 F:      include/linux/platform_data/ams-delta-fiq.h
14948 F:      include/linux/platform_data/i2c-omap.h
14949
14950 OMAP2+ SUPPORT
14951 M:      Tony Lindgren <tony@atomide.com>
14952 L:      linux-omap@vger.kernel.org
14953 S:      Maintained
14954 W:      http://www.muru.com/linux/omap/
14955 W:      http://linux.omap.com/
14956 Q:      http://patchwork.kernel.org/project/linux-omap/list/
14957 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
14958 F:      arch/arm/configs/omap2plus_defconfig
14959 F:      arch/arm/mach-omap2/
14960 F:      arch/arm/plat-omap/
14961 F:      drivers/bus/ti-sysc.c
14962 F:      drivers/i2c/busses/i2c-omap.c
14963 F:      drivers/irqchip/irq-omap-intc.c
14964 F:      drivers/mfd/*omap*.c
14965 F:      drivers/mfd/menelaus.c
14966 F:      drivers/mfd/palmas.c
14967 F:      drivers/mfd/tps65217.c
14968 F:      drivers/mfd/tps65218.c
14969 F:      drivers/mfd/tps65910.c
14970 F:      drivers/mfd/twl-core.[ch]
14971 F:      drivers/mfd/twl4030*.c
14972 F:      drivers/mfd/twl6030*.c
14973 F:      drivers/mfd/twl6040*.c
14974 F:      drivers/regulator/palmas-regulator*.c
14975 F:      drivers/regulator/pbias-regulator.c
14976 F:      drivers/regulator/tps65217-regulator.c
14977 F:      drivers/regulator/tps65218-regulator.c
14978 F:      drivers/regulator/tps65219-regulator.c
14979 F:      drivers/regulator/tps65910-regulator.c
14980 F:      drivers/regulator/twl-regulator.c
14981 F:      drivers/regulator/twl6030-regulator.c
14982 F:      include/linux/platform_data/i2c-omap.h
14983 F:      include/linux/platform_data/ti-sysc.h
14984
14985 OMFS FILESYSTEM
14986 M:      Bob Copeland <me@bobcopeland.com>
14987 L:      linux-karma-devel@lists.sourceforge.net
14988 S:      Maintained
14989 F:      Documentation/filesystems/omfs.rst
14990 F:      fs/omfs/
14991
14992 OMNIKEY CARDMAN 4000 DRIVER
14993 M:      Harald Welte <laforge@gnumonks.org>
14994 S:      Maintained
14995 F:      drivers/char/pcmcia/cm4000_cs.c
14996 F:      include/linux/cm4000_cs.h
14997 F:      include/uapi/linux/cm4000_cs.h
14998
14999 OMNIKEY CARDMAN 4040 DRIVER
15000 M:      Harald Welte <laforge@gnumonks.org>
15001 S:      Maintained
15002 F:      drivers/char/pcmcia/cm4040_cs.*
15003
15004 OMNIVISION OG01A1B SENSOR DRIVER
15005 M:      Shawn Tu <shawnx.tu@intel.com>
15006 L:      linux-media@vger.kernel.org
15007 S:      Maintained
15008 F:      drivers/media/i2c/og01a1b.c
15009
15010 OMNIVISION OV02A10 SENSOR DRIVER
15011 M:      Dongchun Zhu <dongchun.zhu@mediatek.com>
15012 L:      linux-media@vger.kernel.org
15013 S:      Maintained
15014 T:      git git://linuxtv.org/media_tree.git
15015 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov02a10.yaml
15016 F:      drivers/media/i2c/ov02a10.c
15017
15018 OMNIVISION OV08D10 SENSOR DRIVER
15019 M:      Jimmy Su <jimmy.su@intel.com>
15020 L:      linux-media@vger.kernel.org
15021 S:      Maintained
15022 T:      git git://linuxtv.org/media_tree.git
15023 F:      drivers/media/i2c/ov08d10.c
15024
15025 OMNIVISION OV13858 SENSOR DRIVER
15026 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
15027 L:      linux-media@vger.kernel.org
15028 S:      Maintained
15029 T:      git git://linuxtv.org/media_tree.git
15030 F:      drivers/media/i2c/ov13858.c
15031
15032 OMNIVISION OV13B10 SENSOR DRIVER
15033 M:      Arec Kao <arec.kao@intel.com>
15034 L:      linux-media@vger.kernel.org
15035 S:      Maintained
15036 T:      git git://linuxtv.org/media_tree.git
15037 F:      drivers/media/i2c/ov13b10.c
15038
15039 OMNIVISION OV2680 SENSOR DRIVER
15040 M:      Rui Miguel Silva <rmfrfs@gmail.com>
15041 L:      linux-media@vger.kernel.org
15042 S:      Maintained
15043 T:      git git://linuxtv.org/media_tree.git
15044 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov2680.yaml
15045 F:      drivers/media/i2c/ov2680.c
15046
15047 OMNIVISION OV2685 SENSOR DRIVER
15048 M:      Shunqian Zheng <zhengsq@rock-chips.com>
15049 L:      linux-media@vger.kernel.org
15050 S:      Maintained
15051 T:      git git://linuxtv.org/media_tree.git
15052 F:      drivers/media/i2c/ov2685.c
15053
15054 OMNIVISION OV2740 SENSOR DRIVER
15055 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
15056 R:      Shawn Tu <shawnx.tu@intel.com>
15057 R:      Bingbu Cao <bingbu.cao@intel.com>
15058 L:      linux-media@vger.kernel.org
15059 S:      Maintained
15060 T:      git git://linuxtv.org/media_tree.git
15061 F:      drivers/media/i2c/ov2740.c
15062
15063 OMNIVISION OV5640 SENSOR DRIVER
15064 M:      Steve Longerbeam <slongerbeam@gmail.com>
15065 L:      linux-media@vger.kernel.org
15066 S:      Maintained
15067 T:      git git://linuxtv.org/media_tree.git
15068 F:      drivers/media/i2c/ov5640.c
15069
15070 OMNIVISION OV5647 SENSOR DRIVER
15071 M:      Dave Stevenson <dave.stevenson@raspberrypi.com>
15072 M:      Jacopo Mondi <jacopo@jmondi.org>
15073 L:      linux-media@vger.kernel.org
15074 S:      Maintained
15075 T:      git git://linuxtv.org/media_tree.git
15076 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov5647.yaml
15077 F:      drivers/media/i2c/ov5647.c
15078
15079 OMNIVISION OV5670 SENSOR DRIVER
15080 M:      Chiranjeevi Rapolu <chiranjeevi.rapolu@intel.com>
15081 L:      linux-media@vger.kernel.org
15082 S:      Maintained
15083 T:      git git://linuxtv.org/media_tree.git
15084 F:      drivers/media/i2c/ov5670.c
15085
15086 OMNIVISION OV5675 SENSOR DRIVER
15087 M:      Shawn Tu <shawnx.tu@intel.com>
15088 L:      linux-media@vger.kernel.org
15089 S:      Maintained
15090 T:      git git://linuxtv.org/media_tree.git
15091 F:      drivers/media/i2c/ov5675.c
15092
15093 OMNIVISION OV5693 SENSOR DRIVER
15094 M:      Daniel Scally <djrscally@gmail.com>
15095 L:      linux-media@vger.kernel.org
15096 S:      Maintained
15097 T:      git git://linuxtv.org/media_tree.git
15098 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov5693.yaml
15099 F:      drivers/media/i2c/ov5693.c
15100
15101 OMNIVISION OV5695 SENSOR DRIVER
15102 M:      Shunqian Zheng <zhengsq@rock-chips.com>
15103 L:      linux-media@vger.kernel.org
15104 S:      Maintained
15105 T:      git git://linuxtv.org/media_tree.git
15106 F:      drivers/media/i2c/ov5695.c
15107
15108 OMNIVISION OV7670 SENSOR DRIVER
15109 L:      linux-media@vger.kernel.org
15110 S:      Orphan
15111 T:      git git://linuxtv.org/media_tree.git
15112 F:      Documentation/devicetree/bindings/media/i2c/ov7670.txt
15113 F:      drivers/media/i2c/ov7670.c
15114
15115 OMNIVISION OV772x SENSOR DRIVER
15116 M:      Jacopo Mondi <jacopo@jmondi.org>
15117 L:      linux-media@vger.kernel.org
15118 S:      Odd fixes
15119 T:      git git://linuxtv.org/media_tree.git
15120 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov772x.yaml
15121 F:      drivers/media/i2c/ov772x.c
15122 F:      include/media/i2c/ov772x.h
15123
15124 OMNIVISION OV7740 SENSOR DRIVER
15125 M:      Wenyou Yang <wenyou.yang@microchip.com>
15126 L:      linux-media@vger.kernel.org
15127 S:      Maintained
15128 T:      git git://linuxtv.org/media_tree.git
15129 F:      Documentation/devicetree/bindings/media/i2c/ov7740.txt
15130 F:      drivers/media/i2c/ov7740.c
15131
15132 OMNIVISION OV8856 SENSOR DRIVER
15133 M:      Dongchun Zhu <dongchun.zhu@mediatek.com>
15134 L:      linux-media@vger.kernel.org
15135 S:      Maintained
15136 T:      git git://linuxtv.org/media_tree.git
15137 F:      Documentation/devicetree/bindings/media/i2c/ov8856.yaml
15138 F:      drivers/media/i2c/ov8856.c
15139
15140 OMNIVISION OV9282 SENSOR DRIVER
15141 M:      Paul J. Murphy <paul.j.murphy@intel.com>
15142 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
15143 L:      linux-media@vger.kernel.org
15144 S:      Maintained
15145 T:      git git://linuxtv.org/media_tree.git
15146 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov9282.yaml
15147 F:      drivers/media/i2c/ov9282.c
15148
15149 OMNIVISION OV9640 SENSOR DRIVER
15150 M:      Petr Cvek <petrcvekcz@gmail.com>
15151 L:      linux-media@vger.kernel.org
15152 S:      Maintained
15153 F:      drivers/media/i2c/ov9640.*
15154
15155 OMNIVISION OV9650 SENSOR DRIVER
15156 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
15157 R:      Akinobu Mita <akinobu.mita@gmail.com>
15158 R:      Sylwester Nawrocki <s.nawrocki@samsung.com>
15159 L:      linux-media@vger.kernel.org
15160 S:      Maintained
15161 T:      git git://linuxtv.org/media_tree.git
15162 F:      Documentation/devicetree/bindings/media/i2c/ov9650.txt
15163 F:      drivers/media/i2c/ov9650.c
15164
15165 OMNIVISION OV9734 SENSOR DRIVER
15166 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
15167 R:      Bingbu Cao <bingbu.cao@intel.com>
15168 L:      linux-media@vger.kernel.org
15169 S:      Maintained
15170 T:      git git://linuxtv.org/media_tree.git
15171 F:      drivers/media/i2c/ov9734.c
15172
15173 ONBOARD USB HUB DRIVER
15174 M:      Matthias Kaehlcke <mka@chromium.org>
15175 L:      linux-usb@vger.kernel.org
15176 S:      Maintained
15177 F:      Documentation/ABI/testing/sysfs-bus-platform-onboard-usb-hub
15178 F:      drivers/usb/misc/onboard_usb_hub.c
15179
15180 ONENAND FLASH DRIVER
15181 M:      Kyungmin Park <kyungmin.park@samsung.com>
15182 L:      linux-mtd@lists.infradead.org
15183 S:      Maintained
15184 F:      drivers/mtd/nand/onenand/
15185 F:      include/linux/mtd/onenand*.h
15186
15187 ONION OMEGA2+ BOARD
15188 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
15189 L:      linux-mips@vger.kernel.org
15190 S:      Maintained
15191 F:      arch/mips/boot/dts/ralink/omega2p.dts
15192
15193 OP-TEE DRIVER
15194 M:      Jens Wiklander <jens.wiklander@linaro.org>
15195 L:      op-tee@lists.trustedfirmware.org
15196 S:      Maintained
15197 F:      Documentation/ABI/testing/sysfs-bus-optee-devices
15198 F:      drivers/tee/optee/
15199
15200 OP-TEE RANDOM NUMBER GENERATOR (RNG) DRIVER
15201 M:      Sumit Garg <sumit.garg@linaro.org>
15202 L:      op-tee@lists.trustedfirmware.org
15203 S:      Maintained
15204 F:      drivers/char/hw_random/optee-rng.c
15205
15206 OP-TEE RTC DRIVER
15207 M:      Clément Léger <clement.leger@bootlin.com>
15208 L:      linux-rtc@vger.kernel.org
15209 S:      Maintained
15210 F:      drivers/rtc/rtc-optee.c
15211
15212 OPA-VNIC DRIVER
15213 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
15214 L:      linux-rdma@vger.kernel.org
15215 S:      Supported
15216 F:      drivers/infiniband/ulp/opa_vnic
15217
15218 OPEN FIRMWARE AND DEVICE TREE OVERLAYS
15219 M:      Pantelis Antoniou <pantelis.antoniou@konsulko.com>
15220 M:      Frank Rowand <frowand.list@gmail.com>
15221 L:      devicetree@vger.kernel.org
15222 S:      Maintained
15223 F:      Documentation/devicetree/dynamic-resolution-notes.rst
15224 F:      Documentation/devicetree/overlay-notes.rst
15225 F:      drivers/of/overlay.c
15226 F:      drivers/of/resolver.c
15227 K:      of_overlay_notifier_
15228
15229 OPEN FIRMWARE AND FLATTENED DEVICE TREE
15230 M:      Rob Herring <robh+dt@kernel.org>
15231 M:      Frank Rowand <frowand.list@gmail.com>
15232 L:      devicetree@vger.kernel.org
15233 S:      Maintained
15234 C:      irc://irc.libera.chat/devicetree
15235 W:      http://www.devicetree.org/
15236 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
15237 F:      Documentation/ABI/testing/sysfs-firmware-ofw
15238 F:      drivers/of/
15239 F:      include/linux/of*.h
15240 F:      scripts/dtc/
15241
15242 OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
15243 M:      Rob Herring <robh+dt@kernel.org>
15244 M:      Krzysztof Kozlowski <krzysztof.kozlowski+dt@linaro.org>
15245 L:      devicetree@vger.kernel.org
15246 S:      Maintained
15247 C:      irc://irc.libera.chat/devicetree
15248 Q:      http://patchwork.ozlabs.org/project/devicetree-bindings/list/
15249 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
15250 F:      Documentation/devicetree/
15251 F:      arch/*/boot/dts/
15252 F:      include/dt-bindings/
15253
15254 OPENCOMPUTE PTP CLOCK DRIVER
15255 M:      Jonathan Lemon <jonathan.lemon@gmail.com>
15256 M:      Vadim Fedorenko <vadfed@fb.com>
15257 L:      netdev@vger.kernel.org
15258 S:      Maintained
15259 F:      drivers/ptp/ptp_ocp.c
15260
15261 OPENCORES I2C BUS DRIVER
15262 M:      Peter Korsgaard <peter@korsgaard.com>
15263 M:      Andrew Lunn <andrew@lunn.ch>
15264 L:      linux-i2c@vger.kernel.org
15265 S:      Maintained
15266 F:      Documentation/devicetree/bindings/i2c/opencores,i2c-ocores.yaml
15267 F:      Documentation/i2c/busses/i2c-ocores.rst
15268 F:      drivers/i2c/busses/i2c-ocores.c
15269 F:      include/linux/platform_data/i2c-ocores.h
15270
15271 OPENRISC ARCHITECTURE
15272 M:      Jonas Bonn <jonas@southpole.se>
15273 M:      Stefan Kristiansson <stefan.kristiansson@saunalahti.fi>
15274 M:      Stafford Horne <shorne@gmail.com>
15275 L:      openrisc@lists.librecores.org
15276 S:      Maintained
15277 W:      http://openrisc.io
15278 T:      git git://github.com/openrisc/linux.git
15279 F:      Documentation/devicetree/bindings/openrisc/
15280 F:      Documentation/openrisc/
15281 F:      arch/openrisc/
15282 F:      drivers/irqchip/irq-ompic.c
15283 F:      drivers/irqchip/irq-or1k-*
15284
15285 OPENVSWITCH
15286 M:      Pravin B Shelar <pshelar@ovn.org>
15287 L:      netdev@vger.kernel.org
15288 L:      dev@openvswitch.org
15289 S:      Maintained
15290 W:      http://openvswitch.org
15291 F:      include/uapi/linux/openvswitch.h
15292 F:      net/openvswitch/
15293
15294 OPERATING PERFORMANCE POINTS (OPP)
15295 M:      Viresh Kumar <vireshk@kernel.org>
15296 M:      Nishanth Menon <nm@ti.com>
15297 M:      Stephen Boyd <sboyd@kernel.org>
15298 L:      linux-pm@vger.kernel.org
15299 S:      Maintained
15300 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git
15301 F:      Documentation/devicetree/bindings/opp/
15302 F:      Documentation/power/opp.rst
15303 F:      drivers/opp/
15304 F:      include/linux/pm_opp.h
15305
15306 OPL4 DRIVER
15307 M:      Clemens Ladisch <clemens@ladisch.de>
15308 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15309 S:      Maintained
15310 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
15311 F:      sound/drivers/opl4/
15312
15313 ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
15314 M:      Mark Fasheh <mark@fasheh.com>
15315 M:      Joel Becker <jlbec@evilplan.org>
15316 M:      Joseph Qi <joseph.qi@linux.alibaba.com>
15317 L:      ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
15318 S:      Supported
15319 W:      http://ocfs2.wiki.kernel.org
15320 F:      Documentation/filesystems/dlmfs.rst
15321 F:      Documentation/filesystems/ocfs2.rst
15322 F:      fs/ocfs2/
15323
15324 ORANGEFS FILESYSTEM
15325 M:      Mike Marshall <hubcap@omnibond.com>
15326 R:      Martin Brandenburg <martin@omnibond.com>
15327 L:      devel@lists.orangefs.org
15328 S:      Supported
15329 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hubcap/linux.git
15330 F:      Documentation/filesystems/orangefs.rst
15331 F:      fs/orangefs/
15332
15333 ORINOCO DRIVER
15334 L:      linux-wireless@vger.kernel.org
15335 S:      Orphan
15336 W:      https://wireless.wiki.kernel.org/en/users/Drivers/orinoco
15337 W:      http://www.nongnu.org/orinoco/
15338 F:      drivers/net/wireless/intersil/orinoco/
15339
15340 OV2659 OMNIVISION SENSOR DRIVER
15341 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
15342 L:      linux-media@vger.kernel.org
15343 S:      Maintained
15344 W:      https://linuxtv.org
15345 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15346 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
15347 F:      drivers/media/i2c/ov2659.c
15348 F:      include/media/i2c/ov2659.h
15349
15350 OVERLAY FILESYSTEM
15351 M:      Miklos Szeredi <miklos@szeredi.hu>
15352 L:      linux-unionfs@vger.kernel.org
15353 S:      Supported
15354 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git
15355 F:      Documentation/filesystems/overlayfs.rst
15356 F:      fs/overlayfs/
15357
15358 P54 WIRELESS DRIVER
15359 M:      Christian Lamparter <chunkeey@googlemail.com>
15360 L:      linux-wireless@vger.kernel.org
15361 S:      Maintained
15362 W:      https://wireless.wiki.kernel.org/en/users/Drivers/p54
15363 F:      drivers/net/wireless/intersil/p54/
15364
15365 PACKING
15366 M:      Vladimir Oltean <olteanv@gmail.com>
15367 L:      netdev@vger.kernel.org
15368 S:      Supported
15369 F:      Documentation/core-api/packing.rst
15370 F:      include/linux/packing.h
15371 F:      lib/packing.c
15372
15373 PADATA PARALLEL EXECUTION MECHANISM
15374 M:      Steffen Klassert <steffen.klassert@secunet.com>
15375 M:      Daniel Jordan <daniel.m.jordan@oracle.com>
15376 L:      linux-crypto@vger.kernel.org
15377 L:      linux-kernel@vger.kernel.org
15378 S:      Maintained
15379 F:      Documentation/core-api/padata.rst
15380 F:      include/linux/padata.h
15381 F:      kernel/padata.c
15382
15383 PAGE CACHE
15384 M:      Matthew Wilcox (Oracle) <willy@infradead.org>
15385 L:      linux-fsdevel@vger.kernel.org
15386 S:      Supported
15387 T:      git git://git.infradead.org/users/willy/pagecache.git
15388 F:      Documentation/filesystems/locking.rst
15389 F:      Documentation/filesystems/vfs.rst
15390 F:      include/linux/pagemap.h
15391 F:      mm/filemap.c
15392 F:      mm/page-writeback.c
15393 F:      mm/readahead.c
15394 F:      mm/truncate.c
15395
15396 PAGE POOL
15397 M:      Jesper Dangaard Brouer <hawk@kernel.org>
15398 M:      Ilias Apalodimas <ilias.apalodimas@linaro.org>
15399 L:      netdev@vger.kernel.org
15400 S:      Supported
15401 F:      Documentation/networking/page_pool.rst
15402 F:      include/net/page_pool.h
15403 F:      include/trace/events/page_pool.h
15404 F:      net/core/page_pool.c
15405
15406 PAGE TABLE CHECK
15407 M:      Pasha Tatashin <pasha.tatashin@soleen.com>
15408 M:      Andrew Morton <akpm@linux-foundation.org>
15409 L:      linux-mm@kvack.org
15410 S:      Maintained
15411 F:      Documentation/mm/page_table_check.rst
15412 F:      include/linux/page_table_check.h
15413 F:      mm/page_table_check.c
15414
15415 PANASONIC LAPTOP ACPI EXTRAS DRIVER
15416 M:      Kenneth Chan <kenneth.t.chan@gmail.com>
15417 L:      platform-driver-x86@vger.kernel.org
15418 S:      Maintained
15419 F:      drivers/platform/x86/panasonic-laptop.c
15420
15421 PARALLAX PING IIO SENSOR DRIVER
15422 M:      Andreas Klinger <ak@it-klinger.de>
15423 L:      linux-iio@vger.kernel.org
15424 S:      Maintained
15425 F:      Documentation/devicetree/bindings/iio/proximity/parallax-ping.yaml
15426 F:      drivers/iio/proximity/ping.c
15427
15428 PARALLEL LCD/KEYPAD PANEL DRIVER
15429 M:      Willy Tarreau <willy@haproxy.com>
15430 M:      Ksenija Stanojevic <ksenija.stanojevic@gmail.com>
15431 S:      Odd Fixes
15432 F:      Documentation/admin-guide/lcd-panel-cgram.rst
15433 F:      drivers/auxdisplay/panel.c
15434
15435 PARALLEL PORT SUBSYSTEM
15436 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
15437 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
15438 L:      linux-parport@lists.infradead.org (subscribers-only)
15439 S:      Maintained
15440 F:      Documentation/driver-api/parport*.rst
15441 F:      drivers/char/ppdev.c
15442 F:      drivers/parport/
15443 F:      include/linux/parport*.h
15444 F:      include/uapi/linux/ppdev.h
15445
15446 PARAVIRT_OPS INTERFACE
15447 M:      Juergen Gross <jgross@suse.com>
15448 M:      Srivatsa S. Bhat (VMware) <srivatsa@csail.mit.edu>
15449 R:      Alexey Makhalov <amakhalov@vmware.com>
15450 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
15451 L:      virtualization@lists.linux-foundation.org
15452 L:      x86@kernel.org
15453 S:      Supported
15454 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
15455 F:      Documentation/virt/paravirt_ops.rst
15456 F:      arch/*/include/asm/paravirt*.h
15457 F:      arch/*/kernel/paravirt*
15458 F:      include/linux/hypervisor.h
15459
15460 PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
15461 M:      Tim Waugh <tim@cyberelk.net>
15462 L:      linux-parport@lists.infradead.org (subscribers-only)
15463 S:      Maintained
15464 F:      Documentation/admin-guide/blockdev/paride.rst
15465 F:      drivers/block/paride/
15466
15467 PARISC ARCHITECTURE
15468 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
15469 M:      Helge Deller <deller@gmx.de>
15470 L:      linux-parisc@vger.kernel.org
15471 S:      Maintained
15472 W:      https://parisc.wiki.kernel.org
15473 Q:      http://patchwork.kernel.org/project/linux-parisc/list/
15474 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
15475 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git
15476 F:      Documentation/parisc/
15477 F:      arch/parisc/
15478 F:      drivers/char/agp/parisc-agp.c
15479 F:      drivers/input/misc/hp_sdc_rtc.c
15480 F:      drivers/input/serio/gscps2.c
15481 F:      drivers/input/serio/hp_sdc*
15482 F:      drivers/parisc/
15483 F:      drivers/parport/parport_gsc.*
15484 F:      drivers/tty/serial/8250/8250_gsc.c
15485 F:      drivers/video/console/sti*
15486 F:      drivers/video/fbdev/sti*
15487 F:      drivers/video/logo/logo_parisc*
15488 F:      include/linux/hp_sdc.h
15489
15490 PARMAN
15491 M:      Jiri Pirko <jiri@nvidia.com>
15492 L:      netdev@vger.kernel.org
15493 S:      Supported
15494 F:      include/linux/parman.h
15495 F:      lib/parman.c
15496 F:      lib/test_parman.c
15497
15498 PC ENGINES APU BOARD DRIVER
15499 M:      Enrico Weigelt, metux IT consult <info@metux.net>
15500 S:      Maintained
15501 F:      drivers/platform/x86/pcengines-apuv2.c
15502
15503 PC87360 HARDWARE MONITORING DRIVER
15504 M:      Jim Cromie <jim.cromie@gmail.com>
15505 L:      linux-hwmon@vger.kernel.org
15506 S:      Maintained
15507 F:      Documentation/hwmon/pc87360.rst
15508 F:      drivers/hwmon/pc87360.c
15509
15510 PC8736x GPIO DRIVER
15511 M:      Jim Cromie <jim.cromie@gmail.com>
15512 S:      Maintained
15513 F:      drivers/char/pc8736x_gpio.c
15514
15515 PC87427 HARDWARE MONITORING DRIVER
15516 M:      Jean Delvare <jdelvare@suse.com>
15517 L:      linux-hwmon@vger.kernel.org
15518 S:      Maintained
15519 F:      Documentation/hwmon/pc87427.rst
15520 F:      drivers/hwmon/pc87427.c
15521
15522 PCA9532 LED DRIVER
15523 M:      Riku Voipio <riku.voipio@iki.fi>
15524 S:      Maintained
15525 F:      drivers/leds/leds-pca9532.c
15526 F:      include/linux/leds-pca9532.h
15527
15528 PCA9541 I2C BUS MASTER SELECTOR DRIVER
15529 M:      Guenter Roeck <linux@roeck-us.net>
15530 L:      linux-i2c@vger.kernel.org
15531 S:      Maintained
15532 F:      drivers/i2c/muxes/i2c-mux-pca9541.c
15533
15534 PCDP - PRIMARY CONSOLE AND DEBUG PORT
15535 M:      Khalid Aziz <khalid@gonehiking.org>
15536 S:      Maintained
15537 F:      drivers/firmware/pcdp.*
15538
15539 PCI DRIVER FOR AARDVARK (Marvell Armada 3700)
15540 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
15541 M:      Pali Rohár <pali@kernel.org>
15542 L:      linux-pci@vger.kernel.org
15543 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15544 S:      Maintained
15545 F:      Documentation/devicetree/bindings/pci/aardvark-pci.txt
15546 F:      drivers/pci/controller/pci-aardvark.c
15547
15548 PCI DRIVER FOR ALTERA PCIE IP
15549 M:      Joyce Ooi <joyce.ooi@intel.com>
15550 L:      linux-pci@vger.kernel.org
15551 S:      Supported
15552 F:      Documentation/devicetree/bindings/pci/altera-pcie.txt
15553 F:      drivers/pci/controller/pcie-altera.c
15554
15555 PCI DRIVER FOR APPLIEDMICRO XGENE
15556 M:      Toan Le <toan@os.amperecomputing.com>
15557 L:      linux-pci@vger.kernel.org
15558 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15559 S:      Maintained
15560 F:      Documentation/devicetree/bindings/pci/xgene-pci.txt
15561 F:      drivers/pci/controller/pci-xgene.c
15562
15563 PCI DRIVER FOR ARM VERSATILE PLATFORM
15564 M:      Rob Herring <robh@kernel.org>
15565 L:      linux-pci@vger.kernel.org
15566 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15567 S:      Maintained
15568 F:      Documentation/devicetree/bindings/pci/versatile.yaml
15569 F:      drivers/pci/controller/pci-versatile.c
15570
15571 PCI DRIVER FOR ARMADA 8K
15572 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
15573 L:      linux-pci@vger.kernel.org
15574 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15575 S:      Maintained
15576 F:      Documentation/devicetree/bindings/pci/pci-armada8k.txt
15577 F:      drivers/pci/controller/dwc/pcie-armada8k.c
15578
15579 PCI DRIVER FOR CADENCE PCIE IP
15580 M:      Tom Joseph <tjoseph@cadence.com>
15581 L:      linux-pci@vger.kernel.org
15582 S:      Maintained
15583 F:      Documentation/devicetree/bindings/pci/cdns,*
15584 F:      drivers/pci/controller/cadence/
15585
15586 PCI DRIVER FOR FREESCALE LAYERSCAPE
15587 M:      Minghuan Lian <minghuan.Lian@nxp.com>
15588 M:      Mingkai Hu <mingkai.hu@nxp.com>
15589 M:      Roy Zang <roy.zang@nxp.com>
15590 L:      linuxppc-dev@lists.ozlabs.org
15591 L:      linux-pci@vger.kernel.org
15592 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15593 S:      Maintained
15594 F:      drivers/pci/controller/dwc/*layerscape*
15595
15596 PCI DRIVER FOR GENERIC OF HOSTS
15597 M:      Will Deacon <will@kernel.org>
15598 L:      linux-pci@vger.kernel.org
15599 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15600 S:      Maintained
15601 F:      Documentation/devicetree/bindings/pci/host-generic-pci.yaml
15602 F:      drivers/pci/controller/pci-host-common.c
15603 F:      drivers/pci/controller/pci-host-generic.c
15604
15605 PCI DRIVER FOR IMX6
15606 M:      Richard Zhu <hongxing.zhu@nxp.com>
15607 M:      Lucas Stach <l.stach@pengutronix.de>
15608 L:      linux-pci@vger.kernel.org
15609 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15610 S:      Maintained
15611 F:      Documentation/devicetree/bindings/pci/fsl,imx6q-pcie.yaml
15612 F:      drivers/pci/controller/dwc/*imx6*
15613
15614 PCI DRIVER FOR FU740
15615 M:      Paul Walmsley <paul.walmsley@sifive.com>
15616 M:      Greentime Hu <greentime.hu@sifive.com>
15617 L:      linux-pci@vger.kernel.org
15618 S:      Maintained
15619 F:      Documentation/devicetree/bindings/pci/sifive,fu740-pcie.yaml
15620 F:      drivers/pci/controller/dwc/pcie-fu740.c
15621
15622 PCI DRIVER FOR INTEL IXP4XX
15623 M:      Linus Walleij <linus.walleij@linaro.org>
15624 S:      Maintained
15625 F:      Documentation/devicetree/bindings/pci/intel,ixp4xx-pci.yaml
15626 F:      drivers/pci/controller/pci-ixp4xx.c
15627
15628 PCI DRIVER FOR INTEL VOLUME MANAGEMENT DEVICE (VMD)
15629 M:      Nirmal Patel <nirmal.patel@linux.intel.com>
15630 R:      Jonathan Derrick <jonathan.derrick@linux.dev>
15631 L:      linux-pci@vger.kernel.org
15632 S:      Supported
15633 F:      drivers/pci/controller/vmd.c
15634
15635 PCI DRIVER FOR MICROSEMI SWITCHTEC
15636 M:      Kurt Schwemmer <kurt.schwemmer@microsemi.com>
15637 M:      Logan Gunthorpe <logang@deltatee.com>
15638 L:      linux-pci@vger.kernel.org
15639 S:      Maintained
15640 F:      Documentation/ABI/testing/sysfs-class-switchtec
15641 F:      Documentation/driver-api/switchtec.rst
15642 F:      drivers/ntb/hw/mscc/
15643 F:      drivers/pci/switch/switchtec*
15644 F:      include/linux/switchtec.h
15645 F:      include/uapi/linux/switchtec_ioctl.h
15646
15647 PCI DRIVER FOR MOBIVEIL PCIE IP
15648 M:      Karthikeyan Mitran <m.karthikeyan@mobiveil.co.in>
15649 M:      Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
15650 L:      linux-pci@vger.kernel.org
15651 S:      Supported
15652 F:      Documentation/devicetree/bindings/pci/mobiveil-pcie.txt
15653 F:      drivers/pci/controller/mobiveil/pcie-mobiveil*
15654
15655 PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support)
15656 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
15657 M:      Pali Rohár <pali@kernel.org>
15658 L:      linux-pci@vger.kernel.org
15659 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15660 S:      Maintained
15661 F:      drivers/pci/controller/*mvebu*
15662
15663 PCI DRIVER FOR NVIDIA TEGRA
15664 M:      Thierry Reding <thierry.reding@gmail.com>
15665 L:      linux-tegra@vger.kernel.org
15666 L:      linux-pci@vger.kernel.org
15667 S:      Supported
15668 F:      Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt
15669 F:      drivers/pci/controller/pci-tegra.c
15670
15671 PCI DRIVER FOR NXP LAYERSCAPE GEN4 CONTROLLER
15672 M:      Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
15673 L:      linux-pci@vger.kernel.org
15674 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15675 S:      Maintained
15676 F:      Documentation/devicetree/bindings/pci/layerscape-pcie-gen4.txt
15677 F:      drivers/pci/controller/mobiveil/pcie-layerscape-gen4.c
15678
15679 PCI DRIVER FOR RENESAS R-CAR
15680 M:      Marek Vasut <marek.vasut+renesas@gmail.com>
15681 M:      Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
15682 L:      linux-pci@vger.kernel.org
15683 L:      linux-renesas-soc@vger.kernel.org
15684 S:      Maintained
15685 F:      Documentation/devicetree/bindings/pci/*rcar*
15686 F:      drivers/pci/controller/*rcar*
15687
15688 PCI DRIVER FOR SAMSUNG EXYNOS
15689 M:      Jingoo Han <jingoohan1@gmail.com>
15690 L:      linux-pci@vger.kernel.org
15691 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15692 L:      linux-samsung-soc@vger.kernel.org
15693 S:      Maintained
15694 F:      drivers/pci/controller/dwc/pci-exynos.c
15695
15696 PCI DRIVER FOR SYNOPSYS DESIGNWARE
15697 M:      Jingoo Han <jingoohan1@gmail.com>
15698 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
15699 L:      linux-pci@vger.kernel.org
15700 S:      Maintained
15701 F:      Documentation/devicetree/bindings/pci/snps,dw-pcie.yaml
15702 F:      Documentation/devicetree/bindings/pci/snps,dw-pcie-ep.yaml
15703 F:      drivers/pci/controller/dwc/*designware*
15704
15705 PCI DRIVER FOR TI DRA7XX/J721E
15706 M:      Kishon Vijay Abraham I <kishon@ti.com>
15707 L:      linux-omap@vger.kernel.org
15708 L:      linux-pci@vger.kernel.org
15709 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15710 S:      Supported
15711 F:      Documentation/devicetree/bindings/pci/ti-pci.txt
15712 F:      drivers/pci/controller/cadence/pci-j721e.c
15713 F:      drivers/pci/controller/dwc/pci-dra7xx.c
15714
15715 PCI DRIVER FOR V3 SEMICONDUCTOR V360EPC
15716 M:      Linus Walleij <linus.walleij@linaro.org>
15717 L:      linux-pci@vger.kernel.org
15718 S:      Maintained
15719 F:      Documentation/devicetree/bindings/pci/v3-v360epc-pci.txt
15720 F:      drivers/pci/controller/pci-v3-semi.c
15721
15722 PCI ENDPOINT SUBSYSTEM
15723 M:      Kishon Vijay Abraham I <kishon@ti.com>
15724 M:      Lorenzo Pieralisi <lpieralisi@kernel.org>
15725 R:      Krzysztof Wilczyński <kw@linux.com>
15726 L:      linux-pci@vger.kernel.org
15727 S:      Supported
15728 Q:      https://patchwork.kernel.org/project/linux-pci/list/
15729 B:      https://bugzilla.kernel.org
15730 C:      irc://irc.oftc.net/linux-pci
15731 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lpieralisi/pci.git
15732 F:      Documentation/PCI/endpoint/*
15733 F:      Documentation/misc-devices/pci-endpoint-test.rst
15734 F:      drivers/misc/pci_endpoint_test.c
15735 F:      drivers/pci/endpoint/
15736 F:      tools/pci/
15737
15738 PCI ENHANCED ERROR HANDLING (EEH) FOR POWERPC
15739 M:      Russell Currey <ruscur@russell.cc>
15740 M:      Oliver O'Halloran <oohall@gmail.com>
15741 L:      linuxppc-dev@lists.ozlabs.org
15742 S:      Supported
15743 F:      Documentation/PCI/pci-error-recovery.rst
15744 F:      Documentation/powerpc/eeh-pci-error-recovery.rst
15745 F:      arch/powerpc/include/*/eeh*.h
15746 F:      arch/powerpc/kernel/eeh*.c
15747 F:      arch/powerpc/platforms/*/eeh*.c
15748 F:      drivers/pci/pcie/aer.c
15749 F:      drivers/pci/pcie/dpc.c
15750 F:      drivers/pci/pcie/err.c
15751
15752 PCI ERROR RECOVERY
15753 M:      Linas Vepstas <linasvepstas@gmail.com>
15754 L:      linux-pci@vger.kernel.org
15755 S:      Supported
15756 F:      Documentation/PCI/pci-error-recovery.rst
15757
15758 PCI PEER-TO-PEER DMA (P2PDMA)
15759 M:      Bjorn Helgaas <bhelgaas@google.com>
15760 M:      Logan Gunthorpe <logang@deltatee.com>
15761 L:      linux-pci@vger.kernel.org
15762 S:      Supported
15763 Q:      https://patchwork.kernel.org/project/linux-pci/list/
15764 B:      https://bugzilla.kernel.org
15765 C:      irc://irc.oftc.net/linux-pci
15766 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
15767 F:      Documentation/driver-api/pci/p2pdma.rst
15768 F:      drivers/pci/p2pdma.c
15769 F:      include/linux/pci-p2pdma.h
15770
15771 PCI MSI DRIVER FOR ALTERA MSI IP
15772 M:      Joyce Ooi <joyce.ooi@intel.com>
15773 L:      linux-pci@vger.kernel.org
15774 S:      Supported
15775 F:      Documentation/devicetree/bindings/pci/altera-pcie-msi.txt
15776 F:      drivers/pci/controller/pcie-altera-msi.c
15777
15778 PCI MSI DRIVER FOR APPLIEDMICRO XGENE
15779 M:      Toan Le <toan@os.amperecomputing.com>
15780 L:      linux-pci@vger.kernel.org
15781 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15782 S:      Maintained
15783 F:      Documentation/devicetree/bindings/pci/xgene-pci-msi.txt
15784 F:      drivers/pci/controller/pci-xgene-msi.c
15785
15786 PCI NATIVE HOST BRIDGE AND ENDPOINT DRIVERS
15787 M:      Lorenzo Pieralisi <lpieralisi@kernel.org>
15788 R:      Rob Herring <robh@kernel.org>
15789 R:      Krzysztof Wilczyński <kw@linux.com>
15790 L:      linux-pci@vger.kernel.org
15791 S:      Supported
15792 Q:      https://patchwork.kernel.org/project/linux-pci/list/
15793 B:      https://bugzilla.kernel.org
15794 C:      irc://irc.oftc.net/linux-pci
15795 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lpieralisi/pci.git
15796 F:      drivers/pci/controller/
15797 F:      drivers/pci/pci-bridge-emul.c
15798 F:      drivers/pci/pci-bridge-emul.h
15799
15800 PCI SUBSYSTEM
15801 M:      Bjorn Helgaas <bhelgaas@google.com>
15802 L:      linux-pci@vger.kernel.org
15803 S:      Supported
15804 Q:      https://patchwork.kernel.org/project/linux-pci/list/
15805 B:      https://bugzilla.kernel.org
15806 C:      irc://irc.oftc.net/linux-pci
15807 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
15808 F:      Documentation/PCI/
15809 F:      Documentation/devicetree/bindings/pci/
15810 F:      arch/x86/kernel/early-quirks.c
15811 F:      arch/x86/kernel/quirks.c
15812 F:      arch/x86/pci/
15813 F:      drivers/acpi/pci*
15814 F:      drivers/pci/
15815 F:      include/asm-generic/pci*
15816 F:      include/linux/of_pci.h
15817 F:      include/linux/pci*
15818 F:      include/uapi/linux/pci*
15819 F:      lib/pci*
15820
15821 PCIE DRIVER FOR AMAZON ANNAPURNA LABS
15822 M:      Jonathan Chocron <jonnyc@amazon.com>
15823 L:      linux-pci@vger.kernel.org
15824 S:      Maintained
15825 F:      Documentation/devicetree/bindings/pci/pcie-al.txt
15826 F:      drivers/pci/controller/dwc/pcie-al.c
15827
15828 PCIE DRIVER FOR AMLOGIC MESON
15829 M:      Yue Wang <yue.wang@Amlogic.com>
15830 L:      linux-pci@vger.kernel.org
15831 L:      linux-amlogic@lists.infradead.org
15832 S:      Maintained
15833 F:      drivers/pci/controller/dwc/pci-meson.c
15834
15835 PCIE DRIVER FOR AXIS ARTPEC
15836 M:      Jesper Nilsson <jesper.nilsson@axis.com>
15837 L:      linux-arm-kernel@axis.com
15838 L:      linux-pci@vger.kernel.org
15839 S:      Maintained
15840 F:      Documentation/devicetree/bindings/pci/axis,artpec*
15841 F:      drivers/pci/controller/dwc/*artpec*
15842
15843 PCIE DRIVER FOR CAVIUM THUNDERX
15844 M:      Robert Richter <rric@kernel.org>
15845 L:      linux-pci@vger.kernel.org
15846 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15847 S:      Odd Fixes
15848 F:      drivers/pci/controller/pci-thunder-*
15849
15850 PCIE DRIVER FOR HISILICON
15851 M:      Zhou Wang <wangzhou1@hisilicon.com>
15852 L:      linux-pci@vger.kernel.org
15853 S:      Maintained
15854 F:      drivers/pci/controller/dwc/pcie-hisi.c
15855
15856 PCIE DRIVER FOR HISILICON KIRIN
15857 M:      Xiaowei Song <songxiaowei@hisilicon.com>
15858 M:      Binghui Wang <wangbinghui@hisilicon.com>
15859 L:      linux-pci@vger.kernel.org
15860 S:      Maintained
15861 F:      Documentation/devicetree/bindings/pci/hisilicon,kirin-pcie.yaml
15862 F:      drivers/pci/controller/dwc/pcie-kirin.c
15863
15864 PCIE DRIVER FOR HISILICON STB
15865 M:      Shawn Guo <shawn.guo@linaro.org>
15866 L:      linux-pci@vger.kernel.org
15867 S:      Maintained
15868 F:      Documentation/devicetree/bindings/pci/hisilicon-histb-pcie.txt
15869 F:      drivers/pci/controller/dwc/pcie-histb.c
15870
15871 PCIE DRIVER FOR INTEL KEEM BAY
15872 M:      Srikanth Thokala <srikanth.thokala@intel.com>
15873 L:      linux-pci@vger.kernel.org
15874 S:      Supported
15875 F:      Documentation/devicetree/bindings/pci/intel,keembay-pcie*
15876 F:      drivers/pci/controller/dwc/pcie-keembay.c
15877
15878 PCIE DRIVER FOR INTEL LGM GW SOC
15879 M:      Rahul Tanwar <rtanwar@maxlinear.com>
15880 L:      linux-pci@vger.kernel.org
15881 S:      Maintained
15882 F:      Documentation/devicetree/bindings/pci/intel-gw-pcie.yaml
15883 F:      drivers/pci/controller/dwc/pcie-intel-gw.c
15884
15885 PCIE DRIVER FOR MEDIATEK
15886 M:      Ryder Lee <ryder.lee@mediatek.com>
15887 M:      Jianjun Wang <jianjun.wang@mediatek.com>
15888 L:      linux-pci@vger.kernel.org
15889 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
15890 S:      Supported
15891 F:      Documentation/devicetree/bindings/pci/mediatek*
15892 F:      drivers/pci/controller/*mediatek*
15893
15894 PCIE DRIVER FOR MICROCHIP
15895 M:      Daire McNamara <daire.mcnamara@microchip.com>
15896 L:      linux-pci@vger.kernel.org
15897 S:      Supported
15898 F:      Documentation/devicetree/bindings/pci/microchip*
15899 F:      drivers/pci/controller/*microchip*
15900
15901 PCIE DRIVER FOR QUALCOMM MSM
15902 M:      Stanimir Varbanov <svarbanov@mm-sol.com>
15903 L:      linux-pci@vger.kernel.org
15904 L:      linux-arm-msm@vger.kernel.org
15905 S:      Maintained
15906 F:      drivers/pci/controller/dwc/pcie-qcom.c
15907
15908 PCIE ENDPOINT DRIVER FOR QUALCOMM
15909 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
15910 L:      linux-pci@vger.kernel.org
15911 L:      linux-arm-msm@vger.kernel.org
15912 S:      Maintained
15913 F:      Documentation/devicetree/bindings/pci/qcom,pcie-ep.yaml
15914 F:      drivers/pci/controller/dwc/pcie-qcom-ep.c
15915
15916 PCIE DRIVER FOR ROCKCHIP
15917 M:      Shawn Lin <shawn.lin@rock-chips.com>
15918 L:      linux-pci@vger.kernel.org
15919 L:      linux-rockchip@lists.infradead.org
15920 S:      Maintained
15921 F:      Documentation/devicetree/bindings/pci/rockchip-pcie*
15922 F:      drivers/pci/controller/pcie-rockchip*
15923
15924 PCIE DRIVER FOR SOCIONEXT UNIPHIER
15925 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
15926 L:      linux-pci@vger.kernel.org
15927 S:      Maintained
15928 F:      Documentation/devicetree/bindings/pci/socionext,uniphier-pcie*
15929 F:      drivers/pci/controller/dwc/pcie-uniphier*
15930
15931 PCIE DRIVER FOR ST SPEAR13XX
15932 M:      Pratyush Anand <pratyush.anand@gmail.com>
15933 L:      linux-pci@vger.kernel.org
15934 S:      Maintained
15935 F:      drivers/pci/controller/dwc/*spear*
15936
15937 PCI DRIVER FOR XILINX VERSAL CPM
15938 M:      Bharat Kumar Gogada <bharat.kumar.gogada@amd.com>
15939 M:      Michal Simek <michal.simek@amd.com>
15940 L:      linux-pci@vger.kernel.org
15941 S:      Maintained
15942 F:      Documentation/devicetree/bindings/pci/xilinx-versal-cpm.yaml
15943 F:      drivers/pci/controller/pcie-xilinx-cpm.c
15944
15945 PCMCIA SUBSYSTEM
15946 M:      Dominik Brodowski <linux@dominikbrodowski.net>
15947 S:      Odd Fixes
15948 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/linux.git
15949 F:      Documentation/pcmcia/
15950 F:      drivers/pcmcia/
15951 F:      include/pcmcia/
15952 F:      tools/pcmcia/
15953
15954 PCNET32 NETWORK DRIVER
15955 M:      Don Fry <pcnet32@frontier.com>
15956 L:      netdev@vger.kernel.org
15957 S:      Maintained
15958 F:      drivers/net/ethernet/amd/pcnet32.c
15959
15960 PCRYPT PARALLEL CRYPTO ENGINE
15961 M:      Steffen Klassert <steffen.klassert@secunet.com>
15962 L:      linux-crypto@vger.kernel.org
15963 S:      Maintained
15964 F:      crypto/pcrypt.c
15965 F:      include/crypto/pcrypt.h
15966
15967 PEAQ WMI HOTKEYS DRIVER
15968 M:      Hans de Goede <hdegoede@redhat.com>
15969 L:      platform-driver-x86@vger.kernel.org
15970 S:      Maintained
15971 F:      drivers/platform/x86/peaq-wmi.c
15972
15973 PECI HARDWARE MONITORING DRIVERS
15974 M:      Iwona Winiarska <iwona.winiarska@intel.com>
15975 L:      linux-hwmon@vger.kernel.org
15976 S:      Supported
15977 F:      Documentation/hwmon/peci-cputemp.rst
15978 F:      Documentation/hwmon/peci-dimmtemp.rst
15979 F:      drivers/hwmon/peci/
15980
15981 PECI SUBSYSTEM
15982 M:      Iwona Winiarska <iwona.winiarska@intel.com>
15983 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
15984 S:      Supported
15985 F:      Documentation/devicetree/bindings/peci/
15986 F:      Documentation/peci/
15987 F:      drivers/peci/
15988 F:      include/linux/peci-cpu.h
15989 F:      include/linux/peci.h
15990
15991 PENSANDO ETHERNET DRIVERS
15992 M:      Shannon Nelson <snelson@pensando.io>
15993 M:      drivers@pensando.io
15994 L:      netdev@vger.kernel.org
15995 S:      Supported
15996 F:      Documentation/networking/device_drivers/ethernet/pensando/ionic.rst
15997 F:      drivers/net/ethernet/pensando/
15998
15999 PER-CPU MEMORY ALLOCATOR
16000 M:      Dennis Zhou <dennis@kernel.org>
16001 M:      Tejun Heo <tj@kernel.org>
16002 M:      Christoph Lameter <cl@linux.com>
16003 L:      linux-mm@kvack.org
16004 S:      Maintained
16005 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dennis/percpu.git
16006 F:      arch/*/include/asm/percpu.h
16007 F:      include/linux/percpu*.h
16008 F:      lib/percpu*.c
16009 F:      mm/percpu*.c
16010
16011 PER-TASK DELAY ACCOUNTING
16012 M:      Balbir Singh <bsingharora@gmail.com>
16013 S:      Maintained
16014 F:      include/linux/delayacct.h
16015 F:      kernel/delayacct.c
16016
16017 PERFORMANCE EVENTS SUBSYSTEM
16018 M:      Peter Zijlstra <peterz@infradead.org>
16019 M:      Ingo Molnar <mingo@redhat.com>
16020 M:      Arnaldo Carvalho de Melo <acme@kernel.org>
16021 R:      Mark Rutland <mark.rutland@arm.com>
16022 R:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
16023 R:      Jiri Olsa <jolsa@kernel.org>
16024 R:      Namhyung Kim <namhyung@kernel.org>
16025 L:      linux-perf-users@vger.kernel.org
16026 L:      linux-kernel@vger.kernel.org
16027 S:      Supported
16028 W:      https://perf.wiki.kernel.org/
16029 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
16030 F:      arch/*/events/*
16031 F:      arch/*/events/*/*
16032 F:      arch/*/include/asm/perf_event.h
16033 F:      arch/*/kernel/*/*/perf_event*.c
16034 F:      arch/*/kernel/*/perf_event*.c
16035 F:      arch/*/kernel/perf_callchain.c
16036 F:      arch/*/kernel/perf_event*.c
16037 F:      include/linux/perf_event.h
16038 F:      include/uapi/linux/perf_event.h
16039 F:      kernel/events/*
16040 F:      tools/lib/perf/
16041 F:      tools/perf/
16042
16043 PERFORMANCE EVENTS TOOLING ARM64
16044 R:      John Garry <john.garry@huawei.com>
16045 R:      Will Deacon <will@kernel.org>
16046 R:      James Clark <james.clark@arm.com>
16047 R:      Mike Leach <mike.leach@linaro.org>
16048 R:      Leo Yan <leo.yan@linaro.org>
16049 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16050 S:      Supported
16051 F:      tools/build/feature/test-libopencsd.c
16052 F:      tools/perf/arch/arm*/
16053 F:      tools/perf/pmu-events/arch/arm64/
16054 F:      tools/perf/util/arm-spe*
16055 F:      tools/perf/util/cs-etm*
16056
16057 PERSONALITY HANDLING
16058 M:      Christoph Hellwig <hch@infradead.org>
16059 L:      linux-abi-devel@lists.sourceforge.net
16060 S:      Maintained
16061 F:      include/linux/personality.h
16062 F:      include/uapi/linux/personality.h
16063
16064 PHOENIX RC FLIGHT CONTROLLER ADAPTER
16065 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
16066 L:      linux-input@vger.kernel.org
16067 S:      Maintained
16068 F:      Documentation/input/devices/pxrc.rst
16069 F:      drivers/input/joystick/pxrc.c
16070
16071 PHONET PROTOCOL
16072 M:      Remi Denis-Courmont <courmisch@gmail.com>
16073 S:      Supported
16074 F:      Documentation/networking/phonet.rst
16075 F:      include/linux/phonet.h
16076 F:      include/net/phonet/
16077 F:      include/uapi/linux/phonet.h
16078 F:      net/phonet/
16079
16080 PHRAM MTD DRIVER
16081 M:      Joern Engel <joern@lazybastard.org>
16082 L:      linux-mtd@lists.infradead.org
16083 S:      Maintained
16084 F:      drivers/mtd/devices/phram.c
16085
16086 PICOLCD HID DRIVER
16087 M:      Bruno Prémont <bonbons@linux-vserver.org>
16088 L:      linux-input@vger.kernel.org
16089 S:      Maintained
16090 F:      drivers/hid/hid-picolcd*
16091
16092 PIDFD API
16093 M:      Christian Brauner <christian@brauner.io>
16094 L:      linux-kernel@vger.kernel.org
16095 S:      Maintained
16096 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brauner/linux.git
16097 F:      samples/pidfd/
16098 F:      tools/testing/selftests/clone3/
16099 F:      tools/testing/selftests/pid_namespace/
16100 F:      tools/testing/selftests/pidfd/
16101 K:      (?i)pidfd
16102 K:      (?i)clone3
16103 K:      \b(clone_args|kernel_clone_args)\b
16104
16105 PIN CONTROL SUBSYSTEM
16106 M:      Linus Walleij <linus.walleij@linaro.org>
16107 L:      linux-gpio@vger.kernel.org
16108 S:      Maintained
16109 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git
16110 F:      Documentation/devicetree/bindings/pinctrl/
16111 F:      Documentation/driver-api/pin-control.rst
16112 F:      drivers/pinctrl/
16113 F:      include/dt-bindings/pinctrl/
16114 F:      include/linux/pinctrl/
16115
16116 PIN CONTROLLER - AMD
16117 M:      Basavaraj Natikar <Basavaraj.Natikar@amd.com>
16118 M:      Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
16119 S:      Maintained
16120 F:      drivers/pinctrl/pinctrl-amd.c
16121
16122 PIN CONTROLLER - FREESCALE
16123 M:      Dong Aisheng <aisheng.dong@nxp.com>
16124 M:      Fabio Estevam <festevam@gmail.com>
16125 M:      Shawn Guo <shawnguo@kernel.org>
16126 M:      Jacky Bai <ping.bai@nxp.com>
16127 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
16128 L:      linux-gpio@vger.kernel.org
16129 S:      Maintained
16130 F:      Documentation/devicetree/bindings/pinctrl/fsl,*
16131 F:      drivers/pinctrl/freescale/
16132
16133 PIN CONTROLLER - INTEL
16134 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
16135 M:      Andy Shevchenko <andy@kernel.org>
16136 S:      Supported
16137 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/intel.git
16138 F:      drivers/pinctrl/intel/
16139
16140 PIN CONTROLLER - KEEMBAY
16141 M:      Lakshmi Sowjanya D <lakshmi.sowjanya.d@intel.com>
16142 S:      Supported
16143 F:      drivers/pinctrl/pinctrl-keembay*
16144
16145 PIN CONTROLLER - MEDIATEK
16146 M:      Sean Wang <sean.wang@kernel.org>
16147 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
16148 S:      Maintained
16149 F:      Documentation/devicetree/bindings/pinctrl/mediatek,mt65xx-pinctrl.yaml
16150 F:      Documentation/devicetree/bindings/pinctrl/mediatek,mt6797-pinctrl.yaml
16151 F:      Documentation/devicetree/bindings/pinctrl/mediatek,mt7622-pinctrl.yaml
16152 F:      Documentation/devicetree/bindings/pinctrl/mediatek,mt8183-pinctrl.yaml
16153 F:      drivers/pinctrl/mediatek/
16154
16155 PIN CONTROLLER - MICROCHIP AT91
16156 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
16157 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16158 L:      linux-gpio@vger.kernel.org
16159 S:      Supported
16160 F:      drivers/gpio/gpio-sama5d2-piobu.c
16161 F:      drivers/pinctrl/pinctrl-at91*
16162
16163 PIN CONTROLLER - QUALCOMM
16164 M:      Bjorn Andersson <andersson@kernel.org>
16165 L:      linux-arm-msm@vger.kernel.org
16166 S:      Maintained
16167 F:      Documentation/devicetree/bindings/pinctrl/qcom,*.txt
16168 F:      drivers/pinctrl/qcom/
16169
16170 PIN CONTROLLER - RENESAS
16171 M:      Geert Uytterhoeven <geert+renesas@glider.be>
16172 L:      linux-renesas-soc@vger.kernel.org
16173 S:      Supported
16174 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git renesas-pinctrl
16175 F:      Documentation/devicetree/bindings/pinctrl/renesas,*
16176 F:      drivers/pinctrl/renesas/
16177
16178 PIN CONTROLLER - SAMSUNG
16179 M:      Tomasz Figa <tomasz.figa@gmail.com>
16180 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
16181 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
16182 R:      Alim Akhtar <alim.akhtar@samsung.com>
16183 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16184 L:      linux-samsung-soc@vger.kernel.org
16185 S:      Maintained
16186 C:      irc://irc.libera.chat/linux-exynos
16187 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
16188 B:      mailto:linux-samsung-soc@vger.kernel.org
16189 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/samsung.git
16190 F:      Documentation/devicetree/bindings/pinctrl/samsung,pinctrl*yaml
16191 F:      drivers/pinctrl/samsung/
16192 F:      include/dt-bindings/pinctrl/samsung.h
16193
16194 PIN CONTROLLER - SINGLE
16195 M:      Tony Lindgren <tony@atomide.com>
16196 M:      Haojian Zhuang <haojian.zhuang@linaro.org>
16197 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16198 L:      linux-omap@vger.kernel.org
16199 S:      Maintained
16200 F:      drivers/pinctrl/pinctrl-single.c
16201
16202 PIN CONTROLLER - THUNDERBAY
16203 M:      Lakshmi Sowjanya D <lakshmi.sowjanya.d@intel.com>
16204 S:      Supported
16205 F:      drivers/pinctrl/pinctrl-thunderbay.c
16206
16207 PIN CONTROLLER - SUNPLUS / TIBBO
16208 M:      Dvorkin Dmitry <dvorkin@tibbo.com>
16209 M:      Wells Lu <wellslutw@gmail.com>
16210 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16211 S:      Maintained
16212 W:      https://sunplus.atlassian.net/wiki/spaces/doc/overview
16213 F:      Documentation/devicetree/bindings/pinctrl/sunplus,*
16214 F:      drivers/pinctrl/sunplus/
16215 F:      include/dt-bindings/pinctrl/sppctl*.h
16216
16217 PKTCDVD DRIVER
16218 M:      linux-block@vger.kernel.org
16219 S:      Orphan
16220 F:      drivers/block/pktcdvd.c
16221 F:      include/linux/pktcdvd.h
16222 F:      include/uapi/linux/pktcdvd.h
16223
16224 PLANTOWER PMS7003 AIR POLLUTION SENSOR DRIVER
16225 M:      Tomasz Duszynski <tduszyns@gmail.com>
16226 S:      Maintained
16227 F:      Documentation/devicetree/bindings/iio/chemical/plantower,pms7003.yaml
16228 F:      drivers/iio/chemical/pms7003.c
16229
16230 PLDMFW LIBRARY
16231 M:      Jacob Keller <jacob.e.keller@intel.com>
16232 S:      Maintained
16233 F:      Documentation/driver-api/pldmfw/
16234 F:      include/linux/pldmfw.h
16235 F:      lib/pldmfw/
16236
16237 PLX DMA DRIVER
16238 M:      Logan Gunthorpe <logang@deltatee.com>
16239 S:      Maintained
16240 F:      drivers/dma/plx_dma.c
16241
16242 PM6764TR DRIVER
16243 M:      Charles Hsu     <hsu.yungteng@gmail.com>
16244 L:      linux-hwmon@vger.kernel.org
16245 S:      Maintained
16246 F:      Documentation/hwmon/pm6764tr.rst
16247 F:      drivers/hwmon/pmbus/pm6764tr.c
16248
16249 PM-GRAPH UTILITY
16250 M:      "Todd E Brandt" <todd.e.brandt@linux.intel.com>
16251 L:      linux-pm@vger.kernel.org
16252 S:      Supported
16253 W:      https://01.org/pm-graph
16254 B:      https://bugzilla.kernel.org/buglist.cgi?component=pm-graph&product=Tools
16255 T:      git git://github.com/intel/pm-graph
16256 F:      tools/power/pm-graph
16257
16258 PMBUS HARDWARE MONITORING DRIVERS
16259 M:      Guenter Roeck <linux@roeck-us.net>
16260 L:      linux-hwmon@vger.kernel.org
16261 S:      Maintained
16262 W:      http://hwmon.wiki.kernel.org/
16263 W:      http://www.roeck-us.net/linux/drivers/
16264 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
16265 F:      Documentation/devicetree/bindings/hwmon/ltc2978.txt
16266 F:      Documentation/devicetree/bindings/hwmon/max31785.txt
16267 F:      Documentation/hwmon/adm1275.rst
16268 F:      Documentation/hwmon/ibm-cffps.rst
16269 F:      Documentation/hwmon/ir35221.rst
16270 F:      Documentation/hwmon/lm25066.rst
16271 F:      Documentation/hwmon/ltc2978.rst
16272 F:      Documentation/hwmon/ltc3815.rst
16273 F:      Documentation/hwmon/max16064.rst
16274 F:      Documentation/hwmon/max20751.rst
16275 F:      Documentation/hwmon/max31785.rst
16276 F:      Documentation/hwmon/max34440.rst
16277 F:      Documentation/hwmon/max8688.rst
16278 F:      Documentation/hwmon/pmbus-core.rst
16279 F:      Documentation/hwmon/pmbus.rst
16280 F:      Documentation/hwmon/tps40422.rst
16281 F:      Documentation/hwmon/ucd9000.rst
16282 F:      Documentation/hwmon/ucd9200.rst
16283 F:      Documentation/hwmon/zl6100.rst
16284 F:      drivers/hwmon/pmbus/
16285 F:      include/linux/pmbus.h
16286
16287 PMC SIERRA MaxRAID DRIVER
16288 L:      linux-scsi@vger.kernel.org
16289 S:      Orphan
16290 W:      http://www.pmc-sierra.com/
16291 F:      drivers/scsi/pmcraid.*
16292
16293 PMC SIERRA PM8001 DRIVER
16294 M:      Jack Wang <jinpu.wang@cloud.ionos.com>
16295 L:      linux-scsi@vger.kernel.org
16296 S:      Supported
16297 F:      drivers/scsi/pm8001/
16298
16299 PNI RM3100 IIO DRIVER
16300 M:      Song Qiang <songqiang1304521@gmail.com>
16301 L:      linux-iio@vger.kernel.org
16302 S:      Maintained
16303 F:      Documentation/devicetree/bindings/iio/magnetometer/pni,rm3100.yaml
16304 F:      drivers/iio/magnetometer/rm3100*
16305
16306 PNP SUPPORT
16307 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
16308 L:      linux-acpi@vger.kernel.org
16309 S:      Maintained
16310 F:      drivers/pnp/
16311 F:      include/linux/pnp.h
16312
16313 POSIX CLOCKS and TIMERS
16314 M:      Thomas Gleixner <tglx@linutronix.de>
16315 L:      linux-kernel@vger.kernel.org
16316 S:      Maintained
16317 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
16318 F:      fs/timerfd.c
16319 F:      include/linux/time_namespace.h
16320 F:      include/linux/timer*
16321 F:      kernel/time/*timer*
16322 F:      kernel/time/namespace.c
16323
16324 POWER MANAGEMENT CORE
16325 M:      "Rafael J. Wysocki" <rafael@kernel.org>
16326 L:      linux-pm@vger.kernel.org
16327 S:      Supported
16328 B:      https://bugzilla.kernel.org
16329 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
16330 F:      drivers/base/power/
16331 F:      drivers/powercap/
16332 F:      include/linux/intel_rapl.h
16333 F:      include/linux/pm.h
16334 F:      include/linux/pm_*
16335 F:      include/linux/powercap.h
16336 F:      kernel/configs/nopm.config
16337
16338 DYNAMIC THERMAL POWER MANAGEMENT (DTPM)
16339 M:      Daniel Lezcano <daniel.lezcano@kernel.org>
16340 L:      linux-pm@vger.kernel.org
16341 S:      Supported
16342 B:      https://bugzilla.kernel.org
16343 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
16344 F:      drivers/powercap/dtpm*
16345 F:      include/linux/dtpm.h
16346
16347 POWER STATE COORDINATION INTERFACE (PSCI)
16348 M:      Mark Rutland <mark.rutland@arm.com>
16349 M:      Lorenzo Pieralisi <lpieralisi@kernel.org>
16350 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16351 S:      Maintained
16352 F:      drivers/firmware/psci/
16353 F:      include/linux/psci.h
16354 F:      include/uapi/linux/psci.h
16355
16356 POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
16357 M:      Sebastian Reichel <sre@kernel.org>
16358 L:      linux-pm@vger.kernel.org
16359 S:      Maintained
16360 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
16361 F:      Documentation/ABI/testing/sysfs-class-power
16362 F:      Documentation/devicetree/bindings/power/supply/
16363 F:      drivers/power/supply/
16364 F:      include/linux/power/
16365 F:      include/linux/power_supply.h
16366
16367 POWERNV OPERATOR PANEL LCD DISPLAY DRIVER
16368 M:      Suraj Jitindar Singh <sjitindarsingh@gmail.com>
16369 L:      linuxppc-dev@lists.ozlabs.org
16370 S:      Maintained
16371 F:      drivers/char/powernv-op-panel.c
16372
16373 PPP OVER ATM (RFC 2364)
16374 M:      Mitchell Blank Jr <mitch@sfgoth.com>
16375 S:      Maintained
16376 F:      include/uapi/linux/atmppp.h
16377 F:      net/atm/pppoatm.c
16378
16379 PPP OVER ETHERNET
16380 M:      Michal Ostrowski <mostrows@earthlink.net>
16381 S:      Maintained
16382 F:      drivers/net/ppp/pppoe.c
16383 F:      drivers/net/ppp/pppox.c
16384
16385 PPP OVER L2TP
16386 M:      James Chapman <jchapman@katalix.com>
16387 S:      Maintained
16388 F:      include/linux/if_pppol2tp.h
16389 F:      include/uapi/linux/if_pppol2tp.h
16390 F:      net/l2tp/l2tp_ppp.c
16391
16392 PPP PROTOCOL DRIVERS AND COMPRESSORS
16393 M:      Paul Mackerras <paulus@samba.org>
16394 L:      linux-ppp@vger.kernel.org
16395 S:      Maintained
16396 F:      drivers/net/ppp/ppp_*
16397
16398 PPS SUPPORT
16399 M:      Rodolfo Giometti <giometti@enneenne.com>
16400 L:      linuxpps@ml.enneenne.com (subscribers-only)
16401 S:      Maintained
16402 W:      http://wiki.enneenne.com/index.php/LinuxPPS_support
16403 F:      Documentation/ABI/testing/sysfs-pps
16404 F:      Documentation/devicetree/bindings/pps/pps-gpio.txt
16405 F:      Documentation/driver-api/pps.rst
16406 F:      drivers/pps/
16407 F:      include/linux/pps*.h
16408 F:      include/uapi/linux/pps.h
16409
16410 PPTP DRIVER
16411 M:      Dmitry Kozlov <xeb@mail.ru>
16412 L:      netdev@vger.kernel.org
16413 S:      Maintained
16414 W:      http://sourceforge.net/projects/accel-pptp
16415 F:      drivers/net/ppp/pptp.c
16416
16417 PRESSURE STALL INFORMATION (PSI)
16418 M:      Johannes Weiner <hannes@cmpxchg.org>
16419 M:      Suren Baghdasaryan <surenb@google.com>
16420 S:      Maintained
16421 F:      include/linux/psi*
16422 F:      kernel/sched/psi.c
16423
16424 PRINTK
16425 M:      Petr Mladek <pmladek@suse.com>
16426 M:      Sergey Senozhatsky <senozhatsky@chromium.org>
16427 R:      Steven Rostedt <rostedt@goodmis.org>
16428 R:      John Ogness <john.ogness@linutronix.de>
16429 S:      Maintained
16430 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/printk/linux.git
16431 F:      include/linux/printk.h
16432 F:      kernel/printk/
16433
16434 PRINTK INDEXING
16435 R:      Chris Down <chris@chrisdown.name>
16436 S:      Maintained
16437 F:      Documentation/core-api/printk-index.rst
16438 F:      kernel/printk/index.c
16439 K:      printk_index
16440
16441 PROC FILESYSTEM
16442 L:      linux-kernel@vger.kernel.org
16443 L:      linux-fsdevel@vger.kernel.org
16444 S:      Maintained
16445 F:      Documentation/filesystems/proc.rst
16446 F:      fs/proc/
16447 F:      include/linux/proc_fs.h
16448 F:      tools/testing/selftests/proc/
16449
16450 PROC SYSCTL
16451 M:      Luis Chamberlain <mcgrof@kernel.org>
16452 M:      Kees Cook <keescook@chromium.org>
16453 M:      Iurii Zaikin <yzaikin@google.com>
16454 L:      linux-kernel@vger.kernel.org
16455 L:      linux-fsdevel@vger.kernel.org
16456 S:      Maintained
16457 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mcgrof/linux.git sysctl-next
16458 F:      fs/proc/proc_sysctl.c
16459 F:      include/linux/sysctl.h
16460 F:      kernel/sysctl-test.c
16461 F:      kernel/sysctl.c
16462 F:      tools/testing/selftests/sysctl/
16463
16464 PS3 NETWORK SUPPORT
16465 M:      Geoff Levand <geoff@infradead.org>
16466 L:      netdev@vger.kernel.org
16467 L:      linuxppc-dev@lists.ozlabs.org
16468 S:      Maintained
16469 F:      drivers/net/ethernet/toshiba/ps3_gelic_net.*
16470
16471 PS3 PLATFORM SUPPORT
16472 M:      Geoff Levand <geoff@infradead.org>
16473 L:      linuxppc-dev@lists.ozlabs.org
16474 S:      Maintained
16475 F:      arch/powerpc/boot/ps3*
16476 F:      arch/powerpc/include/asm/lv1call.h
16477 F:      arch/powerpc/include/asm/ps3*.h
16478 F:      arch/powerpc/platforms/ps3/
16479 F:      drivers/*/ps3*
16480 F:      drivers/ps3/
16481 F:      drivers/rtc/rtc-ps3.c
16482 F:      drivers/usb/host/*ps3.c
16483 F:      sound/ppc/snd_ps3*
16484
16485 PS3VRAM DRIVER
16486 M:      Jim Paris <jim@jtan.com>
16487 M:      Geoff Levand <geoff@infradead.org>
16488 L:      linuxppc-dev@lists.ozlabs.org
16489 S:      Maintained
16490 F:      drivers/block/ps3vram.c
16491
16492 PSAMPLE PACKET SAMPLING SUPPORT
16493 M:      Yotam Gigi <yotam.gi@gmail.com>
16494 S:      Maintained
16495 F:      include/net/psample.h
16496 F:      include/uapi/linux/psample.h
16497 F:      net/psample
16498
16499 PSTORE FILESYSTEM
16500 M:      Kees Cook <keescook@chromium.org>
16501 M:      Anton Vorontsov <anton@enomsg.org>
16502 M:      Colin Cross <ccross@android.com>
16503 M:      Tony Luck <tony.luck@intel.com>
16504 S:      Maintained
16505 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/pstore
16506 F:      Documentation/admin-guide/ramoops.rst
16507 F:      Documentation/admin-guide/pstore-blk.rst
16508 F:      Documentation/devicetree/bindings/reserved-memory/ramoops.yaml
16509 F:      drivers/acpi/apei/erst.c
16510 F:      drivers/firmware/efi/efi-pstore.c
16511 F:      fs/pstore/
16512 F:      include/linux/pstore*
16513 K:      \b(pstore|ramoops)
16514
16515 PTP HARDWARE CLOCK SUPPORT
16516 M:      Richard Cochran <richardcochran@gmail.com>
16517 L:      netdev@vger.kernel.org
16518 S:      Maintained
16519 W:      http://linuxptp.sourceforge.net/
16520 F:      Documentation/ABI/testing/sysfs-ptp
16521 F:      Documentation/driver-api/ptp.rst
16522 F:      drivers/net/phy/dp83640*
16523 F:      drivers/ptp/*
16524 F:      include/linux/ptp_cl*
16525
16526 PTP VIRTUAL CLOCK SUPPORT
16527 M:      Yangbo Lu <yangbo.lu@nxp.com>
16528 L:      netdev@vger.kernel.org
16529 S:      Maintained
16530 F:      drivers/ptp/ptp_vclock.c
16531 F:      net/ethtool/phc_vclocks.c
16532
16533 PTRACE SUPPORT
16534 M:      Oleg Nesterov <oleg@redhat.com>
16535 S:      Maintained
16536 F:      arch/*/*/ptrace*.c
16537 F:      arch/*/include/asm/ptrace*.h
16538 F:      arch/*/ptrace*.c
16539 F:      include/asm-generic/syscall.h
16540 F:      include/linux/ptrace.h
16541 F:      include/linux/regset.h
16542 F:      include/uapi/linux/ptrace.h
16543 F:      kernel/ptrace.c
16544
16545 PULSE8-CEC DRIVER
16546 M:      Hans Verkuil <hverkuil@xs4all.nl>
16547 L:      linux-media@vger.kernel.org
16548 S:      Maintained
16549 T:      git git://linuxtv.org/media_tree.git
16550 F:      Documentation/admin-guide/media/pulse8-cec.rst
16551 F:      drivers/media/cec/usb/pulse8/
16552
16553 PURELIFI PLFXLC DRIVER
16554 M:      Srinivasan Raju <srini.raju@purelifi.com>
16555 L:      linux-wireless@vger.kernel.org
16556 S:      Supported
16557 F:      drivers/net/wireless/purelifi/plfxlc/
16558
16559 PVRUSB2 VIDEO4LINUX DRIVER
16560 M:      Mike Isely <isely@pobox.com>
16561 L:      pvrusb2@isely.net       (subscribers-only)
16562 L:      linux-media@vger.kernel.org
16563 S:      Maintained
16564 W:      http://www.isely.net/pvrusb2/
16565 T:      git git://linuxtv.org/media_tree.git
16566 F:      Documentation/driver-api/media/drivers/pvrusb2*
16567 F:      drivers/media/usb/pvrusb2/
16568
16569 PWC WEBCAM DRIVER
16570 M:      Hans Verkuil <hverkuil@xs4all.nl>
16571 L:      linux-media@vger.kernel.org
16572 S:      Odd Fixes
16573 T:      git git://linuxtv.org/media_tree.git
16574 F:      drivers/media/usb/pwc/*
16575 F:      include/trace/events/pwc.h
16576
16577 PWM IR Transmitter
16578 M:      Sean Young <sean@mess.org>
16579 L:      linux-media@vger.kernel.org
16580 S:      Maintained
16581 F:      drivers/media/rc/pwm-ir-tx.c
16582
16583 PWM SUBSYSTEM
16584 M:      Thierry Reding <thierry.reding@gmail.com>
16585 R:      Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
16586 L:      linux-pwm@vger.kernel.org
16587 S:      Maintained
16588 Q:      https://patchwork.ozlabs.org/project/linux-pwm/list/
16589 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git
16590 F:      Documentation/devicetree/bindings/gpio/gpio-mvebu.yaml
16591 F:      Documentation/devicetree/bindings/pwm/
16592 F:      Documentation/driver-api/pwm.rst
16593 F:      drivers/gpio/gpio-mvebu.c
16594 F:      drivers/pwm/
16595 F:      drivers/video/backlight/pwm_bl.c
16596 F:      include/dt-bindings/pwm/
16597 F:      include/linux/pwm.h
16598 F:      include/linux/pwm_backlight.h
16599 K:      pwm_(config|apply_state|ops)
16600
16601 PXA GPIO DRIVER
16602 M:      Robert Jarzmik <robert.jarzmik@free.fr>
16603 L:      linux-gpio@vger.kernel.org
16604 S:      Maintained
16605 F:      drivers/gpio/gpio-pxa.c
16606
16607 PXA MMCI DRIVER
16608 S:      Orphan
16609
16610 PXA RTC DRIVER
16611 M:      Robert Jarzmik <robert.jarzmik@free.fr>
16612 L:      linux-rtc@vger.kernel.org
16613 S:      Maintained
16614
16615 PXA2xx/PXA3xx SUPPORT
16616 M:      Daniel Mack <daniel@zonque.org>
16617 M:      Haojian Zhuang <haojian.zhuang@gmail.com>
16618 M:      Robert Jarzmik <robert.jarzmik@free.fr>
16619 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16620 S:      Maintained
16621 T:      git git://github.com/hzhuang1/linux.git
16622 T:      git git://github.com/rjarzmik/linux.git
16623 F:      arch/arm/boot/dts/pxa*
16624 F:      arch/arm/mach-pxa/
16625 F:      drivers/dma/pxa*
16626 F:      drivers/pcmcia/pxa2xx*
16627 F:      drivers/pinctrl/pxa/
16628 F:      drivers/spi/spi-pxa2xx*
16629 F:      drivers/usb/gadget/udc/pxa2*
16630 F:      include/sound/pxa2xx-lib.h
16631 F:      sound/arm/pxa*
16632 F:      sound/soc/pxa/
16633
16634 QAT DRIVER
16635 M:      Giovanni Cabiddu <giovanni.cabiddu@intel.com>
16636 L:      qat-linux@intel.com
16637 S:      Supported
16638 F:      drivers/crypto/qat/
16639
16640 QCOM AUDIO (ASoC) DRIVERS
16641 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
16642 M:      Banajit Goswami <bgoswami@quicinc.com>
16643 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16644 S:      Supported
16645 F:      Documentation/devicetree/bindings/soc/qcom/qcom,apr.yaml
16646 F:      Documentation/devicetree/bindings/sound/qcom,*
16647 F:      drivers/soc/qcom/apr.c
16648 F:      include/dt-bindings/sound/qcom,wcd9335.h
16649 F:      sound/soc/codecs/lpass-rx-macro.*
16650 F:      sound/soc/codecs/lpass-tx-macro.*
16651 F:      sound/soc/codecs/lpass-va-macro.c
16652 F:      sound/soc/codecs/lpass-wsa-macro.*
16653 F:      sound/soc/codecs/msm8916-wcd-analog.c
16654 F:      sound/soc/codecs/msm8916-wcd-digital.c
16655 F:      sound/soc/codecs/wcd9335.*
16656 F:      sound/soc/codecs/wcd934x.c
16657 F:      sound/soc/codecs/wcd-clsh-v2.*
16658 F:      sound/soc/codecs/wcd-mbhc-v2.*
16659 F:      sound/soc/codecs/wsa881x.c
16660 F:      sound/soc/codecs/wsa883x.c
16661 F:      sound/soc/qcom/
16662
16663 QCOM EMBEDDED USB DEBUGGER (EUD)
16664 M:      Souradeep Chowdhury <quic_schowdhu@quicinc.com>
16665 L:      linux-arm-msm@vger.kernel.org
16666 S:      Maintained
16667 F:      Documentation/ABI/testing/sysfs-driver-eud
16668 F:      Documentation/devicetree/bindings/soc/qcom/qcom,eud.yaml
16669 F:      drivers/usb/misc/qcom_eud.c
16670
16671 QCOM IPA DRIVER
16672 M:      Alex Elder <elder@kernel.org>
16673 L:      netdev@vger.kernel.org
16674 S:      Supported
16675 F:      drivers/net/ipa/
16676
16677 QEMU MACHINE EMULATOR AND VIRTUALIZER SUPPORT
16678 M:      Gabriel Somlo <somlo@cmu.edu>
16679 M:      "Michael S. Tsirkin" <mst@redhat.com>
16680 L:      qemu-devel@nongnu.org
16681 S:      Maintained
16682 F:      drivers/firmware/qemu_fw_cfg.c
16683 F:      include/uapi/linux/qemu_fw_cfg.h
16684
16685 QIB DRIVER
16686 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
16687 L:      linux-rdma@vger.kernel.org
16688 S:      Supported
16689 F:      drivers/infiniband/hw/qib/
16690
16691 QLOGIC QL41xxx FCOE DRIVER
16692 M:      Saurav Kashyap <skashyap@marvell.com>
16693 M:      Javed Hasan <jhasan@marvell.com>
16694 M:      GR-QLogic-Storage-Upstream@marvell.com
16695 L:      linux-scsi@vger.kernel.org
16696 S:      Supported
16697 F:      drivers/scsi/qedf/
16698
16699 QLOGIC QL41xxx ISCSI DRIVER
16700 M:      Nilesh Javali <njavali@marvell.com>
16701 M:      Manish Rangankar <mrangankar@marvell.com>
16702 M:      GR-QLogic-Storage-Upstream@marvell.com
16703 L:      linux-scsi@vger.kernel.org
16704 S:      Supported
16705 F:      drivers/scsi/qedi/
16706
16707 QLOGIC QL4xxx ETHERNET DRIVER
16708 M:      Ariel Elior <aelior@marvell.com>
16709 M:      Manish Chopra <manishc@marvell.com>
16710 L:      netdev@vger.kernel.org
16711 S:      Supported
16712 F:      drivers/net/ethernet/qlogic/qed/
16713 F:      drivers/net/ethernet/qlogic/qede/
16714 F:      include/linux/qed/
16715
16716 QLOGIC QL4xxx RDMA DRIVER
16717 M:      Michal Kalderon <mkalderon@marvell.com>
16718 M:      Ariel Elior <aelior@marvell.com>
16719 L:      linux-rdma@vger.kernel.org
16720 S:      Supported
16721 F:      drivers/infiniband/hw/qedr/
16722 F:      include/uapi/rdma/qedr-abi.h
16723
16724 QLOGIC QLA1280 SCSI DRIVER
16725 M:      Michael Reed <mdr@sgi.com>
16726 L:      linux-scsi@vger.kernel.org
16727 S:      Maintained
16728 F:      drivers/scsi/qla1280.[ch]
16729
16730 QLOGIC QLA2XXX FC-SCSI DRIVER
16731 M:      Nilesh Javali <njavali@marvell.com>
16732 M:      GR-QLogic-Storage-Upstream@marvell.com
16733 L:      linux-scsi@vger.kernel.org
16734 S:      Supported
16735 F:      drivers/scsi/qla2xxx/
16736
16737 QLOGIC QLA3XXX NETWORK DRIVER
16738 M:      GR-Linux-NIC-Dev@marvell.com
16739 L:      netdev@vger.kernel.org
16740 S:      Supported
16741 F:      drivers/net/ethernet/qlogic/qla3xxx.*
16742
16743 QLOGIC QLA4XXX iSCSI DRIVER
16744 M:      Nilesh Javali <njavali@marvell.com>
16745 M:      Manish Rangankar <mrangankar@marvell.com>
16746 M:      GR-QLogic-Storage-Upstream@marvell.com
16747 L:      linux-scsi@vger.kernel.org
16748 S:      Supported
16749 F:      drivers/scsi/qla4xxx/
16750
16751 QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
16752 M:      Shahed Shaikh <shshaikh@marvell.com>
16753 M:      Manish Chopra <manishc@marvell.com>
16754 M:      GR-Linux-NIC-Dev@marvell.com
16755 L:      netdev@vger.kernel.org
16756 S:      Supported
16757 F:      drivers/net/ethernet/qlogic/qlcnic/
16758
16759 QLOGIC QLGE 10Gb ETHERNET DRIVER
16760 M:      Manish Chopra <manishc@marvell.com>
16761 M:      GR-Linux-NIC-Dev@marvell.com
16762 M:      Coiby Xu <coiby.xu@gmail.com>
16763 L:      netdev@vger.kernel.org
16764 S:      Supported
16765 F:      Documentation/networking/device_drivers/qlogic/qlge.rst
16766 F:      drivers/staging/qlge/
16767
16768 QM1D1B0004 MEDIA DRIVER
16769 M:      Akihiro Tsukada <tskd08@gmail.com>
16770 L:      linux-media@vger.kernel.org
16771 S:      Odd Fixes
16772 F:      drivers/media/tuners/qm1d1b0004*
16773
16774 QM1D1C0042 MEDIA DRIVER
16775 M:      Akihiro Tsukada <tskd08@gmail.com>
16776 L:      linux-media@vger.kernel.org
16777 S:      Odd Fixes
16778 F:      drivers/media/tuners/qm1d1c0042*
16779
16780 QNX4 FILESYSTEM
16781 M:      Anders Larsen <al@alarsen.net>
16782 S:      Maintained
16783 W:      http://www.alarsen.net/linux/qnx4fs/
16784 F:      fs/qnx4/
16785 F:      include/uapi/linux/qnx4_fs.h
16786 F:      include/uapi/linux/qnxtypes.h
16787
16788 QORIQ DPAA2 FSL-MC BUS DRIVER
16789 M:      Stuart Yoder <stuyoder@gmail.com>
16790 M:      Laurentiu Tudor <laurentiu.tudor@nxp.com>
16791 L:      linux-kernel@vger.kernel.org
16792 S:      Maintained
16793 F:      Documentation/ABI/stable/sysfs-bus-fsl-mc
16794 F:      Documentation/devicetree/bindings/misc/fsl,qoriq-mc.txt
16795 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/overview.rst
16796 F:      drivers/bus/fsl-mc/
16797 F:      include/uapi/linux/fsl_mc.h
16798
16799 QT1010 MEDIA DRIVER
16800 M:      Antti Palosaari <crope@iki.fi>
16801 L:      linux-media@vger.kernel.org
16802 S:      Maintained
16803 W:      https://linuxtv.org
16804 W:      http://palosaari.fi/linux/
16805 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16806 T:      git git://linuxtv.org/anttip/media_tree.git
16807 F:      drivers/media/tuners/qt1010*
16808
16809 QUALCOMM ATHEROS ATH10K WIRELESS DRIVER
16810 M:      Kalle Valo <kvalo@kernel.org>
16811 L:      ath10k@lists.infradead.org
16812 S:      Supported
16813 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath10k
16814 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
16815 F:      drivers/net/wireless/ath/ath10k/
16816 F:      Documentation/devicetree/bindings/net/wireless/qcom,ath10k.txt
16817
16818 QUALCOMM ATHEROS ATH11K WIRELESS DRIVER
16819 M:      Kalle Valo <kvalo@kernel.org>
16820 L:      ath11k@lists.infradead.org
16821 S:      Supported
16822 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
16823 F:      Documentation/devicetree/bindings/net/wireless/qcom,ath11k.yaml
16824 F:      drivers/net/wireless/ath/ath11k/
16825
16826 QUALCOMM ATHEROS ATH9K WIRELESS DRIVER
16827 M:      Toke Høiland-Jørgensen <toke@toke.dk>
16828 L:      linux-wireless@vger.kernel.org
16829 S:      Maintained
16830 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath9k
16831 F:      Documentation/devicetree/bindings/net/wireless/qca,ath9k.yaml
16832 F:      drivers/net/wireless/ath/ath9k/
16833
16834 QUALCOMM BAM-DMUX WWAN NETWORK DRIVER
16835 M:      Stephan Gerhold <stephan@gerhold.net>
16836 L:      netdev@vger.kernel.org
16837 L:      linux-arm-msm@vger.kernel.org
16838 S:      Maintained
16839 F:      Documentation/devicetree/bindings/net/qcom,bam-dmux.yaml
16840 F:      drivers/net/wwan/qcom_bam_dmux.c
16841
16842 QUALCOMM CAMERA SUBSYSTEM DRIVER
16843 M:      Robert Foss <robert.foss@linaro.org>
16844 M:      Todor Tomov <todor.too@gmail.com>
16845 L:      linux-media@vger.kernel.org
16846 S:      Maintained
16847 F:      Documentation/admin-guide/media/qcom_camss.rst
16848 F:      Documentation/devicetree/bindings/media/*camss*
16849 F:      drivers/media/platform/qcom/camss/
16850
16851 QUALCOMM CLOCK DRIVERS
16852 M:      Bjorn Andersson <andersson@kernel.org>
16853 L:      linux-arm-msm@vger.kernel.org
16854 S:      Supported
16855 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/qcom/linux.git
16856 F:      Documentation/devicetree/bindings/clock/qcom,*
16857 F:      drivers/clk/qcom/
16858 F:      include/dt-bindings/clock/qcom,*
16859
16860 QUALCOMM CORE POWER REDUCTION (CPR) AVS DRIVER
16861 M:      Niklas Cassel <nks@flawful.org>
16862 L:      linux-pm@vger.kernel.org
16863 L:      linux-arm-msm@vger.kernel.org
16864 S:      Maintained
16865 F:      Documentation/devicetree/bindings/power/avs/qcom,cpr.yaml
16866 F:      drivers/soc/qcom/cpr.c
16867
16868 QUALCOMM CPUFREQ DRIVER MSM8996/APQ8096
16869 M:      Ilia Lin <ilia.lin@kernel.org>
16870 L:      linux-pm@vger.kernel.org
16871 S:      Maintained
16872 F:      Documentation/devicetree/bindings/cpufreq/qcom-cpufreq-nvmem.yaml
16873 F:      Documentation/devicetree/bindings/opp/opp-v2-kryo-cpu.yaml
16874 F:      drivers/cpufreq/qcom-cpufreq-nvmem.c
16875
16876 QUALCOMM CRYPTO DRIVERS
16877 M:      Thara Gopinath <thara.gopinath@gmail.com>
16878 L:      linux-crypto@vger.kernel.org
16879 L:      linux-arm-msm@vger.kernel.org
16880 S:      Maintained
16881 F:      drivers/crypto/qce/
16882
16883 QUALCOMM EMAC GIGABIT ETHERNET DRIVER
16884 M:      Timur Tabi <timur@kernel.org>
16885 L:      netdev@vger.kernel.org
16886 S:      Maintained
16887 F:      drivers/net/ethernet/qualcomm/emac/
16888
16889 QUALCOMM ETHQOS ETHERNET DRIVER
16890 M:      Vinod Koul <vkoul@kernel.org>
16891 R:      Bhupesh Sharma <bhupesh.sharma@linaro.org>
16892 L:      netdev@vger.kernel.org
16893 S:      Maintained
16894 F:      Documentation/devicetree/bindings/net/qcom,ethqos.txt
16895 F:      drivers/net/ethernet/stmicro/stmmac/dwmac-qcom-ethqos.c
16896
16897 QUALCOMM FASTRPC DRIVER
16898 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
16899 M:      Amol Maheshwari <amahesh@qti.qualcomm.com>
16900 L:      linux-arm-msm@vger.kernel.org
16901 S:      Maintained
16902 F:      Documentation/devicetree/bindings/misc/qcom,fastrpc.txt
16903 F:      drivers/misc/fastrpc.c
16904 F:      include/uapi/misc/fastrpc.h
16905
16906 QUALCOMM HEXAGON ARCHITECTURE
16907 M:      Brian Cain <bcain@quicinc.com>
16908 L:      linux-hexagon@vger.kernel.org
16909 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bcain/linux.git
16910 S:      Supported
16911 F:      arch/hexagon/
16912
16913 QUALCOMM HIDMA DRIVER
16914 M:      Sinan Kaya <okaya@kernel.org>
16915 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16916 L:      linux-arm-msm@vger.kernel.org
16917 L:      dmaengine@vger.kernel.org
16918 S:      Supported
16919 F:      drivers/dma/qcom/hidma*
16920
16921 QUALCOMM I2C CCI DRIVER
16922 M:      Loic Poulain <loic.poulain@linaro.org>
16923 M:      Robert Foss <robert.foss@linaro.org>
16924 L:      linux-i2c@vger.kernel.org
16925 L:      linux-arm-msm@vger.kernel.org
16926 S:      Maintained
16927 F:      Documentation/devicetree/bindings/i2c/qcom,i2c-cci.yaml
16928 F:      drivers/i2c/busses/i2c-qcom-cci.c
16929
16930 QUALCOMM INTERCONNECT BWMON DRIVER
16931 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
16932 L:      linux-arm-msm@vger.kernel.org
16933 S:      Maintained
16934 F:      Documentation/devicetree/bindings/interconnect/qcom,msm8998-bwmon.yaml
16935 F:      drivers/soc/qcom/icc-bwmon.c
16936
16937 QUALCOMM IOMMU
16938 M:      Rob Clark <robdclark@gmail.com>
16939 L:      iommu@lists.linux.dev
16940 L:      linux-arm-msm@vger.kernel.org
16941 S:      Maintained
16942 F:      drivers/iommu/arm/arm-smmu/qcom_iommu.c
16943
16944 QUALCOMM IPC ROUTER (QRTR) DRIVER
16945 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
16946 L:      linux-arm-msm@vger.kernel.org
16947 S:      Maintained
16948 F:      include/trace/events/qrtr.h
16949 F:      include/uapi/linux/qrtr.h
16950 F:      net/qrtr/
16951
16952 QUALCOMM IPCC MAILBOX DRIVER
16953 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
16954 L:      linux-arm-msm@vger.kernel.org
16955 S:      Supported
16956 F:      Documentation/devicetree/bindings/mailbox/qcom-ipcc.yaml
16957 F:      drivers/mailbox/qcom-ipcc.c
16958 F:      include/dt-bindings/mailbox/qcom-ipcc.h
16959
16960 QUALCOMM IPQ4019 USB PHY DRIVER
16961 M:      Robert Marko <robert.marko@sartura.hr>
16962 M:      Luka Perkov <luka.perkov@sartura.hr>
16963 L:      linux-arm-msm@vger.kernel.org
16964 S:      Maintained
16965 F:      Documentation/devicetree/bindings/phy/qcom-usb-ipq4019-phy.yaml
16966 F:      drivers/phy/qualcomm/phy-qcom-ipq4019-usb.c
16967
16968 QUALCOMM IPQ4019 VQMMC REGULATOR DRIVER
16969 M:      Robert Marko <robert.marko@sartura.hr>
16970 M:      Luka Perkov <luka.perkov@sartura.hr>
16971 L:      linux-arm-msm@vger.kernel.org
16972 S:      Maintained
16973 F:      Documentation/devicetree/bindings/regulator/vqmmc-ipq4019-regulator.yaml
16974 F:      drivers/regulator/vqmmc-ipq4019-regulator.c
16975
16976 QUALCOMM NAND CONTROLLER DRIVER
16977 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
16978 L:      linux-mtd@lists.infradead.org
16979 L:      linux-arm-msm@vger.kernel.org
16980 S:      Maintained
16981 F:      Documentation/devicetree/bindings/mtd/qcom,nandc.yaml
16982 F:      drivers/mtd/nand/raw/qcom_nandc.c
16983
16984 QUALCOMM RMNET DRIVER
16985 M:      Subash Abhinov Kasiviswanathan <quic_subashab@quicinc.com>
16986 M:      Sean Tranchetti <quic_stranche@quicinc.com>
16987 L:      netdev@vger.kernel.org
16988 S:      Maintained
16989 F:      Documentation/networking/device_drivers/cellular/qualcomm/rmnet.rst
16990 F:      drivers/net/ethernet/qualcomm/rmnet/
16991 F:      include/linux/if_rmnet.h
16992
16993 QUALCOMM TSENS THERMAL DRIVER
16994 M:      Amit Kucheria <amitk@kernel.org>
16995 M:      Thara Gopinath <thara.gopinath@gmail.com>
16996 L:      linux-pm@vger.kernel.org
16997 L:      linux-arm-msm@vger.kernel.org
16998 S:      Maintained
16999 F:      Documentation/devicetree/bindings/thermal/qcom-tsens.yaml
17000 F:      drivers/thermal/qcom/
17001
17002 QUALCOMM VENUS VIDEO ACCELERATOR DRIVER
17003 M:      Stanimir Varbanov <stanimir.varbanov@linaro.org>
17004 L:      linux-media@vger.kernel.org
17005 L:      linux-arm-msm@vger.kernel.org
17006 S:      Maintained
17007 T:      git git://linuxtv.org/media_tree.git
17008 F:      Documentation/devicetree/bindings/media/*venus*
17009 F:      drivers/media/platform/qcom/venus/
17010
17011 QUALCOMM WCN36XX WIRELESS DRIVER
17012 M:      Loic Poulain <loic.poulain@linaro.org>
17013 L:      wcn36xx@lists.infradead.org
17014 S:      Supported
17015 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wcn36xx
17016 F:      drivers/net/wireless/ath/wcn36xx/
17017
17018 QUANTENNA QTNFMAC WIRELESS DRIVER
17019 M:      Igor Mitsyanko <imitsyanko@quantenna.com>
17020 R:      Sergey Matyukevich <geomatsi@gmail.com>
17021 L:      linux-wireless@vger.kernel.org
17022 S:      Maintained
17023 F:      drivers/net/wireless/quantenna
17024
17025 RADEON and AMDGPU DRM DRIVERS
17026 M:      Alex Deucher <alexander.deucher@amd.com>
17027 M:      Christian König <christian.koenig@amd.com>
17028 M:      Pan, Xinhui <Xinhui.Pan@amd.com>
17029 L:      amd-gfx@lists.freedesktop.org
17030 S:      Supported
17031 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
17032 B:      https://gitlab.freedesktop.org/drm/amd/-/issues
17033 C:      irc://irc.oftc.net/radeon
17034 F:      Documentation/gpu/amdgpu/
17035 F:      drivers/gpu/drm/amd/
17036 F:      drivers/gpu/drm/radeon/
17037 F:      include/uapi/drm/amdgpu_drm.h
17038 F:      include/uapi/drm/radeon_drm.h
17039
17040 RADEON FRAMEBUFFER DISPLAY DRIVER
17041 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
17042 L:      linux-fbdev@vger.kernel.org
17043 S:      Maintained
17044 F:      drivers/video/fbdev/aty/radeon*
17045 F:      include/uapi/linux/radeonfb.h
17046
17047 RADIOSHARK RADIO DRIVER
17048 M:      Hans Verkuil <hverkuil@xs4all.nl>
17049 L:      linux-media@vger.kernel.org
17050 S:      Maintained
17051 T:      git git://linuxtv.org/media_tree.git
17052 F:      drivers/media/radio/radio-shark.c
17053
17054 RADIOSHARK2 RADIO DRIVER
17055 M:      Hans Verkuil <hverkuil@xs4all.nl>
17056 L:      linux-media@vger.kernel.org
17057 S:      Maintained
17058 T:      git git://linuxtv.org/media_tree.git
17059 F:      drivers/media/radio/radio-shark2.c
17060 F:      drivers/media/radio/radio-tea5777.c
17061
17062 RADOS BLOCK DEVICE (RBD)
17063 M:      Ilya Dryomov <idryomov@gmail.com>
17064 R:      Dongsheng Yang <dongsheng.yang@easystack.cn>
17065 L:      ceph-devel@vger.kernel.org
17066 S:      Supported
17067 W:      http://ceph.com/
17068 T:      git git://github.com/ceph/ceph-client.git
17069 F:      Documentation/ABI/testing/sysfs-bus-rbd
17070 F:      drivers/block/rbd.c
17071 F:      drivers/block/rbd_types.h
17072
17073 RAGE128 FRAMEBUFFER DISPLAY DRIVER
17074 M:      Paul Mackerras <paulus@samba.org>
17075 L:      linux-fbdev@vger.kernel.org
17076 S:      Maintained
17077 F:      drivers/video/fbdev/aty/aty128fb.c
17078
17079 RAINSHADOW-CEC DRIVER
17080 M:      Hans Verkuil <hverkuil@xs4all.nl>
17081 L:      linux-media@vger.kernel.org
17082 S:      Maintained
17083 T:      git git://linuxtv.org/media_tree.git
17084 F:      drivers/media/cec/usb/rainshadow/
17085
17086 RALINK MIPS ARCHITECTURE
17087 M:      John Crispin <john@phrozen.org>
17088 L:      linux-mips@vger.kernel.org
17089 S:      Maintained
17090 F:      arch/mips/ralink
17091
17092 RALINK MT7621 MIPS ARCHITECTURE
17093 M:      Arınç ÜNAL <arinc.unal@arinc9.com>
17094 M:      Sergio Paracuellos <sergio.paracuellos@gmail.com>
17095 L:      linux-mips@vger.kernel.org
17096 S:      Maintained
17097 F:      arch/mips/boot/dts/ralink/mt7621*
17098
17099 RALINK PINCTRL DRIVER
17100 M:      Arınç ÜNAL <arinc.unal@arinc9.com>
17101 M:      Sergio Paracuellos <sergio.paracuellos@gmail.com>
17102 L:      linux-mips@vger.kernel.org
17103 S:      Maintained
17104 F:      drivers/pinctrl/ralink/
17105
17106 RALINK RT2X00 WIRELESS LAN DRIVER
17107 M:      Stanislaw Gruszka <stf_xl@wp.pl>
17108 M:      Helmut Schaa <helmut.schaa@googlemail.com>
17109 L:      linux-wireless@vger.kernel.org
17110 S:      Maintained
17111 F:      drivers/net/wireless/ralink/rt2x00/
17112
17113 RAMDISK RAM BLOCK DEVICE DRIVER
17114 M:      Jens Axboe <axboe@kernel.dk>
17115 S:      Maintained
17116 F:      Documentation/admin-guide/blockdev/ramdisk.rst
17117 F:      drivers/block/brd.c
17118
17119 RANCHU VIRTUAL BOARD FOR MIPS
17120 M:      Miodrag Dinic <miodrag.dinic@mips.com>
17121 L:      linux-mips@vger.kernel.org
17122 S:      Supported
17123 F:      arch/mips/configs/generic/board-ranchu.config
17124 F:      arch/mips/generic/board-ranchu.c
17125
17126 RANDOM NUMBER DRIVER
17127 M:      "Theodore Ts'o" <tytso@mit.edu>
17128 M:      Jason A. Donenfeld <Jason@zx2c4.com>
17129 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/crng/random.git
17130 S:      Maintained
17131 F:      drivers/char/random.c
17132 F:      drivers/virt/vmgenid.c
17133
17134 RAPIDIO SUBSYSTEM
17135 M:      Matt Porter <mporter@kernel.crashing.org>
17136 M:      Alexandre Bounine <alex.bou9@gmail.com>
17137 S:      Maintained
17138 F:      drivers/rapidio/
17139
17140 RAS INFRASTRUCTURE
17141 M:      Tony Luck <tony.luck@intel.com>
17142 M:      Borislav Petkov <bp@alien8.de>
17143 L:      linux-edac@vger.kernel.org
17144 S:      Maintained
17145 F:      Documentation/admin-guide/ras.rst
17146 F:      drivers/ras/
17147 F:      include/linux/ras.h
17148 F:      include/ras/ras_event.h
17149
17150 RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
17151 L:      linux-wireless@vger.kernel.org
17152 S:      Orphan
17153 F:      drivers/net/wireless/ray*
17154
17155 RC-CORE / LIRC FRAMEWORK
17156 M:      Sean Young <sean@mess.org>
17157 L:      linux-media@vger.kernel.org
17158 S:      Maintained
17159 W:      http://linuxtv.org
17160 T:      git git://linuxtv.org/media_tree.git
17161 F:      Documentation/driver-api/media/rc-core.rst
17162 F:      Documentation/userspace-api/media/rc/
17163 F:      drivers/media/rc/
17164 F:      include/media/rc-map.h
17165 F:      include/media/rc-core.h
17166 F:      include/uapi/linux/lirc.h
17167
17168 RCMM REMOTE CONTROLS DECODER
17169 M:      Patrick Lerda <patrick9876@free.fr>
17170 S:      Maintained
17171 F:      drivers/media/rc/ir-rcmm-decoder.c
17172
17173 RCUTORTURE TEST FRAMEWORK
17174 M:      "Paul E. McKenney" <paulmck@kernel.org>
17175 M:      Josh Triplett <josh@joshtriplett.org>
17176 R:      Steven Rostedt <rostedt@goodmis.org>
17177 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
17178 R:      Lai Jiangshan <jiangshanlai@gmail.com>
17179 L:      rcu@vger.kernel.org
17180 S:      Supported
17181 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
17182 F:      tools/testing/selftests/rcutorture
17183
17184 RDACM20 Camera Sensor
17185 M:      Jacopo Mondi <jacopo+renesas@jmondi.org>
17186 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
17187 M:      Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
17188 M:      Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
17189 L:      linux-media@vger.kernel.org
17190 S:      Maintained
17191 F:      Documentation/devicetree/bindings/media/i2c/imi,rdacm2x-gmsl.yaml
17192 F:      drivers/media/i2c/max9271.c
17193 F:      drivers/media/i2c/max9271.h
17194 F:      drivers/media/i2c/rdacm20.c
17195
17196 RDACM21 Camera Sensor
17197 M:      Jacopo Mondi <jacopo+renesas@jmondi.org>
17198 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
17199 M:      Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
17200 M:      Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
17201 L:      linux-media@vger.kernel.org
17202 S:      Maintained
17203 F:      Documentation/devicetree/bindings/media/i2c/imi,rdacm2x-gmsl.yaml
17204 F:      drivers/media/i2c/max9271.c
17205 F:      drivers/media/i2c/max9271.h
17206 F:      drivers/media/i2c/rdacm21.c
17207
17208 RDC R-321X SoC
17209 M:      Florian Fainelli <florian@openwrt.org>
17210 S:      Maintained
17211
17212 RDC R6040 FAST ETHERNET DRIVER
17213 M:      Florian Fainelli <f.fainelli@gmail.com>
17214 L:      netdev@vger.kernel.org
17215 S:      Maintained
17216 F:      drivers/net/ethernet/rdc/r6040.c
17217
17218 RDMAVT - RDMA verbs software
17219 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
17220 L:      linux-rdma@vger.kernel.org
17221 S:      Supported
17222 F:      drivers/infiniband/sw/rdmavt
17223
17224 RDS - RELIABLE DATAGRAM SOCKETS
17225 M:      Santosh Shilimkar <santosh.shilimkar@oracle.com>
17226 L:      netdev@vger.kernel.org
17227 L:      linux-rdma@vger.kernel.org
17228 L:      rds-devel@oss.oracle.com (moderated for non-subscribers)
17229 S:      Supported
17230 W:      https://oss.oracle.com/projects/rds/
17231 F:      Documentation/networking/rds.rst
17232 F:      net/rds/
17233
17234 RDT - RESOURCE ALLOCATION
17235 M:      Fenghua Yu <fenghua.yu@intel.com>
17236 M:      Reinette Chatre <reinette.chatre@intel.com>
17237 L:      linux-kernel@vger.kernel.org
17238 S:      Supported
17239 F:      Documentation/x86/resctrl*
17240 F:      arch/x86/include/asm/resctrl.h
17241 F:      arch/x86/kernel/cpu/resctrl/
17242 F:      tools/testing/selftests/resctrl/
17243
17244 READ-COPY UPDATE (RCU)
17245 M:      "Paul E. McKenney" <paulmck@kernel.org>
17246 M:      Frederic Weisbecker <frederic@kernel.org> (kernel/rcu/tree_nocb.h)
17247 M:      Neeraj Upadhyay <quic_neeraju@quicinc.com> (kernel/rcu/tasks.h)
17248 M:      Josh Triplett <josh@joshtriplett.org>
17249 R:      Steven Rostedt <rostedt@goodmis.org>
17250 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
17251 R:      Lai Jiangshan <jiangshanlai@gmail.com>
17252 R:      Joel Fernandes <joel@joelfernandes.org>
17253 L:      rcu@vger.kernel.org
17254 S:      Supported
17255 W:      http://www.rdrop.com/users/paulmck/RCU/
17256 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
17257 F:      Documentation/RCU/
17258 F:      include/linux/rcu*
17259 F:      kernel/rcu/
17260 X:      Documentation/RCU/torture.rst
17261 X:      include/linux/srcu*.h
17262 X:      kernel/rcu/srcu*.c
17263
17264 REAL TIME CLOCK (RTC) SUBSYSTEM
17265 M:      Alessandro Zummo <a.zummo@towertech.it>
17266 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
17267 L:      linux-rtc@vger.kernel.org
17268 S:      Maintained
17269 Q:      http://patchwork.ozlabs.org/project/rtc-linux/list/
17270 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git
17271 F:      Documentation/admin-guide/rtc.rst
17272 F:      Documentation/devicetree/bindings/rtc/
17273 F:      drivers/rtc/
17274 F:      include/linux/platform_data/rtc-*
17275 F:      include/linux/rtc.h
17276 F:      include/linux/rtc/
17277 F:      include/uapi/linux/rtc.h
17278 F:      tools/testing/selftests/rtc/
17279
17280 REALTEK AUDIO CODECS
17281 M:      Oder Chiou <oder_chiou@realtek.com>
17282 S:      Maintained
17283 F:      include/sound/rt*.h
17284 F:      sound/soc/codecs/rt*
17285
17286 REALTEK OTTO WATCHDOG
17287 M:      Sander Vanheule <sander@svanheule.net>
17288 L:      linux-watchdog@vger.kernel.org
17289 S:      Maintained
17290 F:      Documentation/devicetree/bindings/watchdog/realtek,otto-wdt.yaml
17291 F:      drivers/watchdog/realtek_otto_wdt.c
17292
17293 REALTEK RTL83xx SMI DSA ROUTER CHIPS
17294 M:      Linus Walleij <linus.walleij@linaro.org>
17295 M:      Alvin Šipraga <alsi@bang-olufsen.dk>
17296 S:      Maintained
17297 F:      Documentation/devicetree/bindings/net/dsa/realtek.yaml
17298 F:      drivers/net/dsa/realtek/*
17299
17300 REALTEK WIRELESS DRIVER (rtlwifi family)
17301 M:      Ping-Ke Shih <pkshih@realtek.com>
17302 L:      linux-wireless@vger.kernel.org
17303 S:      Maintained
17304 W:      https://wireless.wiki.kernel.org/
17305 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
17306 F:      drivers/net/wireless/realtek/rtlwifi/
17307
17308 REALTEK WIRELESS DRIVER (rtw88)
17309 M:      Yan-Hsuan Chuang <tony0620emma@gmail.com>
17310 L:      linux-wireless@vger.kernel.org
17311 S:      Maintained
17312 F:      drivers/net/wireless/realtek/rtw88/
17313
17314 REALTEK WIRELESS DRIVER (rtw89)
17315 M:      Ping-Ke Shih <pkshih@realtek.com>
17316 L:      linux-wireless@vger.kernel.org
17317 S:      Maintained
17318 F:      drivers/net/wireless/realtek/rtw89/
17319
17320 REDPINE WIRELESS DRIVER
17321 M:      Amitkumar Karwar <amitkarwar@gmail.com>
17322 M:      Siva Rebbagondla <siva8118@gmail.com>
17323 L:      linux-wireless@vger.kernel.org
17324 S:      Maintained
17325 F:      drivers/net/wireless/rsi/
17326
17327 REGISTER MAP ABSTRACTION
17328 M:      Mark Brown <broonie@kernel.org>
17329 L:      linux-kernel@vger.kernel.org
17330 S:      Supported
17331 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
17332 F:      Documentation/devicetree/bindings/regmap/
17333 F:      drivers/base/regmap/
17334 F:      include/linux/regmap.h
17335
17336 REISERFS FILE SYSTEM
17337 L:      reiserfs-devel@vger.kernel.org
17338 S:      Supported
17339 F:      fs/reiserfs/
17340
17341 REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
17342 M:      Bjorn Andersson <andersson@kernel.org>
17343 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
17344 L:      linux-remoteproc@vger.kernel.org
17345 S:      Maintained
17346 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/remoteproc/linux.git rproc-next
17347 F:      Documentation/ABI/testing/sysfs-class-remoteproc
17348 F:      Documentation/devicetree/bindings/remoteproc/
17349 F:      Documentation/staging/remoteproc.rst
17350 F:      drivers/remoteproc/
17351 F:      include/linux/remoteproc.h
17352 F:      include/linux/remoteproc/
17353
17354 REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM
17355 M:      Bjorn Andersson <andersson@kernel.org>
17356 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
17357 L:      linux-remoteproc@vger.kernel.org
17358 S:      Maintained
17359 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/remoteproc/linux.git rpmsg-next
17360 F:      Documentation/ABI/testing/sysfs-bus-rpmsg
17361 F:      Documentation/staging/rpmsg.rst
17362 F:      drivers/rpmsg/
17363 F:      include/linux/rpmsg.h
17364 F:      include/linux/rpmsg/
17365 F:      include/uapi/linux/rpmsg.h
17366 F:      samples/rpmsg/
17367
17368 REMOTE PROCESSOR MESSAGING (RPMSG) WWAN CONTROL DRIVER
17369 M:      Stephan Gerhold <stephan@gerhold.net>
17370 L:      netdev@vger.kernel.org
17371 L:      linux-remoteproc@vger.kernel.org
17372 S:      Maintained
17373 F:      drivers/net/wwan/rpmsg_wwan_ctrl.c
17374
17375 RENESAS CLOCK DRIVERS
17376 M:      Geert Uytterhoeven <geert+renesas@glider.be>
17377 L:      linux-renesas-soc@vger.kernel.org
17378 S:      Supported
17379 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git renesas-clk
17380 F:      Documentation/devicetree/bindings/clock/renesas,*
17381 F:      drivers/clk/renesas/
17382
17383 RENESAS EMEV2 I2C DRIVER
17384 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
17385 L:      linux-renesas-soc@vger.kernel.org
17386 S:      Supported
17387 F:      Documentation/devicetree/bindings/i2c/renesas,iic-emev2.yaml
17388 F:      drivers/i2c/busses/i2c-emev2.c
17389
17390 RENESAS ETHERNET DRIVERS
17391 R:      Sergey Shtylyov <s.shtylyov@omp.ru>
17392 L:      netdev@vger.kernel.org
17393 L:      linux-renesas-soc@vger.kernel.org
17394 F:      Documentation/devicetree/bindings/net/renesas,*.yaml
17395 F:      drivers/net/ethernet/renesas/
17396 F:      include/linux/sh_eth.h
17397
17398 RENESAS R-CAR GYROADC DRIVER
17399 M:      Marek Vasut <marek.vasut@gmail.com>
17400 L:      linux-iio@vger.kernel.org
17401 S:      Supported
17402 F:      Documentation/devicetree/bindings/iio/adc/renesas,rcar-gyroadc.yaml
17403 F:      drivers/iio/adc/rcar-gyroadc.c
17404
17405 RENESAS R-CAR I2C DRIVERS
17406 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
17407 L:      linux-renesas-soc@vger.kernel.org
17408 S:      Supported
17409 F:      Documentation/devicetree/bindings/i2c/renesas,rcar-i2c.yaml
17410 F:      Documentation/devicetree/bindings/i2c/renesas,rmobile-iic.yaml
17411 F:      drivers/i2c/busses/i2c-rcar.c
17412 F:      drivers/i2c/busses/i2c-sh_mobile.c
17413
17414 RENESAS R-CAR SATA DRIVER
17415 R:      Sergey Shtylyov <s.shtylyov@omp.ru>
17416 S:      Supported
17417 L:      linux-ide@vger.kernel.org
17418 L:      linux-renesas-soc@vger.kernel.org
17419 F:      Documentation/devicetree/bindings/ata/renesas,rcar-sata.yaml
17420 F:      drivers/ata/sata_rcar.c
17421
17422 RENESAS R-CAR THERMAL DRIVERS
17423 M:      Niklas Söderlund <niklas.soderlund@ragnatech.se>
17424 L:      linux-renesas-soc@vger.kernel.org
17425 S:      Supported
17426 F:      Documentation/devicetree/bindings/thermal/rcar-gen3-thermal.yaml
17427 F:      Documentation/devicetree/bindings/thermal/rcar-thermal.yaml
17428 F:      drivers/thermal/rcar_gen3_thermal.c
17429 F:      drivers/thermal/rcar_thermal.c
17430
17431 RENESAS RIIC DRIVER
17432 M:      Chris Brandt <chris.brandt@renesas.com>
17433 L:      linux-renesas-soc@vger.kernel.org
17434 S:      Supported
17435 F:      Documentation/devicetree/bindings/i2c/renesas,riic.yaml
17436 F:      drivers/i2c/busses/i2c-riic.c
17437
17438 RENESAS USB PHY DRIVER
17439 M:      Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
17440 L:      linux-renesas-soc@vger.kernel.org
17441 S:      Maintained
17442 F:      drivers/phy/renesas/phy-rcar-gen3-usb*.c
17443
17444 RENESAS RZ/G2L A/D DRIVER
17445 M:      Lad Prabhakar <prabhakar.mahadev-lad.rj@bp.renesas.com>
17446 L:      linux-iio@vger.kernel.org
17447 L:      linux-renesas-soc@vger.kernel.org
17448 S:      Supported
17449 F:      Documentation/devicetree/bindings/iio/adc/renesas,rzg2l-adc.yaml
17450 F:      drivers/iio/adc/rzg2l_adc.c
17451
17452 RENESAS RZ/N1 A5PSW SWITCH DRIVER
17453 M:      Clément Léger <clement.leger@bootlin.com>
17454 L:      linux-renesas-soc@vger.kernel.org
17455 L:      netdev@vger.kernel.org
17456 S:      Maintained
17457 F:      Documentation/devicetree/bindings/net/dsa/renesas,rzn1-a5psw.yaml
17458 F:      Documentation/devicetree/bindings/net/pcs/renesas,rzn1-miic.yaml
17459 F:      drivers/net/dsa/rzn1_a5psw*
17460 F:      drivers/net/pcs/pcs-rzn1-miic.c
17461 F:      include/dt-bindings/net/pcs-rzn1-miic.h
17462 F:      include/linux/pcs-rzn1-miic.h
17463 F:      net/dsa/tag_rzn1_a5psw.c
17464
17465 RENESAS RZ/N1 RTC CONTROLLER DRIVER
17466 M:      Miquel Raynal <miquel.raynal@bootlin.com>
17467 L:      linux-rtc@vger.kernel.org
17468 L:      linux-renesas-soc@vger.kernel.org
17469 S:      Maintained
17470 F:      Documentation/devicetree/bindings/rtc/renesas,rzn1-rtc.yaml
17471 F:      drivers/rtc/rtc-rzn1.c
17472
17473 RENESAS R-CAR GEN3 & RZ/N1 NAND CONTROLLER DRIVER
17474 M:      Miquel Raynal <miquel.raynal@bootlin.com>
17475 L:      linux-mtd@lists.infradead.org
17476 L:      linux-renesas-soc@vger.kernel.org
17477 S:      Maintained
17478 F:      Documentation/devicetree/bindings/mtd/renesas-nandc.yaml
17479 F:      drivers/mtd/nand/raw/renesas-nand-controller.c
17480
17481 RESET CONTROLLER FRAMEWORK
17482 M:      Philipp Zabel <p.zabel@pengutronix.de>
17483 S:      Maintained
17484 T:      git git://git.pengutronix.de/git/pza/linux
17485 F:      Documentation/devicetree/bindings/reset/
17486 F:      Documentation/driver-api/reset.rst
17487 F:      drivers/reset/
17488 F:      include/dt-bindings/reset/
17489 F:      include/linux/reset-controller.h
17490 F:      include/linux/reset.h
17491 F:      include/linux/reset/
17492 K:      \b(?:devm_|of_)?reset_control(?:ler_[a-z]+|_[a-z_]+)?\b
17493
17494 RESTARTABLE SEQUENCES SUPPORT
17495 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
17496 M:      Peter Zijlstra <peterz@infradead.org>
17497 M:      "Paul E. McKenney" <paulmck@kernel.org>
17498 M:      Boqun Feng <boqun.feng@gmail.com>
17499 L:      linux-kernel@vger.kernel.org
17500 S:      Supported
17501 F:      include/trace/events/rseq.h
17502 F:      include/uapi/linux/rseq.h
17503 F:      kernel/rseq.c
17504 F:      tools/testing/selftests/rseq/
17505
17506 RFKILL
17507 M:      Johannes Berg <johannes@sipsolutions.net>
17508 L:      linux-wireless@vger.kernel.org
17509 S:      Maintained
17510 W:      https://wireless.wiki.kernel.org/
17511 Q:      https://patchwork.kernel.org/project/linux-wireless/list/
17512 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless.git
17513 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless-next.git
17514 F:      Documentation/ABI/stable/sysfs-class-rfkill
17515 F:      Documentation/driver-api/rfkill.rst
17516 F:      include/linux/rfkill.h
17517 F:      include/uapi/linux/rfkill.h
17518 F:      net/rfkill/
17519
17520 RHASHTABLE
17521 M:      Thomas Graf <tgraf@suug.ch>
17522 M:      Herbert Xu <herbert@gondor.apana.org.au>
17523 L:      netdev@vger.kernel.org
17524 S:      Maintained
17525 F:      include/linux/rhashtable-types.h
17526 F:      include/linux/rhashtable.h
17527 F:      lib/rhashtable.c
17528 F:      lib/test_rhashtable.c
17529
17530 RICOH R5C592 MEMORYSTICK DRIVER
17531 M:      Maxim Levitsky <maximlevitsky@gmail.com>
17532 S:      Maintained
17533 F:      drivers/memstick/host/r592.*
17534
17535 RICOH SMARTMEDIA/XD DRIVER
17536 M:      Maxim Levitsky <maximlevitsky@gmail.com>
17537 S:      Maintained
17538 F:      drivers/mtd/nand/raw/r852.c
17539 F:      drivers/mtd/nand/raw/r852.h
17540
17541 RISC-V PMU DRIVERS
17542 M:      Atish Patra <atishp@atishpatra.org>
17543 R:      Anup Patel <anup@brainfault.org>
17544 L:      linux-riscv@lists.infradead.org
17545 S:      Supported
17546 F:      drivers/perf/riscv_pmu.c
17547 F:      drivers/perf/riscv_pmu_legacy.c
17548 F:      drivers/perf/riscv_pmu_sbi.c
17549
17550 RISC-V ARCHITECTURE
17551 M:      Paul Walmsley <paul.walmsley@sifive.com>
17552 M:      Palmer Dabbelt <palmer@dabbelt.com>
17553 M:      Albert Ou <aou@eecs.berkeley.edu>
17554 L:      linux-riscv@lists.infradead.org
17555 S:      Supported
17556 P:      Documentation/riscv/patch-acceptance.rst
17557 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/riscv/linux.git
17558 F:      arch/riscv/
17559 N:      riscv
17560 K:      riscv
17561
17562 RISC-V/MICROCHIP POLARFIRE SOC SUPPORT
17563 M:      Conor Dooley <conor.dooley@microchip.com>
17564 M:      Daire McNamara <daire.mcnamara@microchip.com>
17565 L:      linux-riscv@lists.infradead.org
17566 S:      Supported
17567 F:      Documentation/devicetree/bindings/clock/microchip,mpfs.yaml
17568 F:      Documentation/devicetree/bindings/gpio/microchip,mpfs-gpio.yaml
17569 F:      Documentation/devicetree/bindings/i2c/microchip,corei2c.yaml
17570 F:      Documentation/devicetree/bindings/mailbox/microchip,mpfs-mailbox.yaml
17571 F:      Documentation/devicetree/bindings/net/can/microchip,mpfs-can.yaml
17572 F:      Documentation/devicetree/bindings/pwm/microchip,corepwm.yaml
17573 F:      Documentation/devicetree/bindings/soc/microchip/microchip,mpfs-sys-controller.yaml
17574 F:      Documentation/devicetree/bindings/spi/microchip,mpfs-spi.yaml
17575 F:      Documentation/devicetree/bindings/usb/microchip,mpfs-musb.yaml
17576 F:      arch/riscv/boot/dts/microchip/
17577 F:      drivers/char/hw_random/mpfs-rng.c
17578 F:      drivers/clk/microchip/clk-mpfs.c
17579 F:      drivers/i2c/busses/i2c-microchip-core.c
17580 F:      drivers/mailbox/mailbox-mpfs.c
17581 F:      drivers/pci/controller/pcie-microchip-host.c
17582 F:      drivers/rtc/rtc-mpfs.c
17583 F:      drivers/soc/microchip/
17584 F:      drivers/spi/spi-microchip-core-qspi.c
17585 F:      drivers/spi/spi-microchip-core.c
17586 F:      drivers/usb/musb/mpfs.c
17587 F:      include/soc/microchip/mpfs.h
17588
17589 RNBD BLOCK DRIVERS
17590 M:      Md. Haris Iqbal <haris.iqbal@ionos.com>
17591 M:      Jack Wang <jinpu.wang@ionos.com>
17592 L:      linux-block@vger.kernel.org
17593 S:      Maintained
17594 F:      drivers/block/rnbd/
17595
17596 ROCCAT DRIVERS
17597 M:      Stefan Achatz <erazor_de@users.sourceforge.net>
17598 S:      Maintained
17599 W:      http://sourceforge.net/projects/roccat/
17600 F:      Documentation/ABI/*/sysfs-driver-hid-roccat*
17601 F:      drivers/hid/hid-roccat*
17602 F:      include/linux/hid-roccat*
17603
17604 ROCKCHIP I2S TDM DRIVER
17605 M:      Nicolas Frattaroli <frattaroli.nicolas@gmail.com>
17606 L:      linux-rockchip@lists.infradead.org
17607 S:      Maintained
17608 F:      Documentation/devicetree/bindings/sound/rockchip,i2s-tdm.yaml
17609 F:      sound/soc/rockchip/rockchip_i2s_tdm.*
17610
17611 ROCKCHIP ISP V1 DRIVER
17612 M:      Dafna Hirschfeld <dafna@fastmail.com>
17613 L:      linux-media@vger.kernel.org
17614 L:      linux-rockchip@lists.infradead.org
17615 S:      Maintained
17616 F:      Documentation/admin-guide/media/rkisp1.rst
17617 F:      Documentation/devicetree/bindings/media/rockchip-isp1.yaml
17618 F:      Documentation/userspace-api/media/v4l/pixfmt-meta-rkisp1.rst
17619 F:      drivers/media/platform/rockchip/rkisp1
17620 F:      include/uapi/linux/rkisp1-config.h
17621
17622 ROCKCHIP RASTER 2D GRAPHIC ACCELERATION UNIT DRIVER
17623 M:      Jacob Chen <jacob-chen@iotwrt.com>
17624 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
17625 L:      linux-media@vger.kernel.org
17626 L:      linux-rockchip@lists.infradead.org
17627 S:      Maintained
17628 F:      Documentation/devicetree/bindings/media/rockchip-rga.yaml
17629 F:      drivers/media/platform/rockchip/rga/
17630
17631 ROCKCHIP VIDEO DECODER DRIVER
17632 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
17633 L:      linux-media@vger.kernel.org
17634 L:      linux-rockchip@lists.infradead.org
17635 S:      Maintained
17636 F:      Documentation/devicetree/bindings/media/rockchip,vdec.yaml
17637 F:      drivers/staging/media/rkvdec/
17638
17639 ROCKER DRIVER
17640 M:      Jiri Pirko <jiri@resnulli.us>
17641 L:      netdev@vger.kernel.org
17642 S:      Supported
17643 F:      drivers/net/ethernet/rocker/
17644
17645 ROCKETPORT EXPRESS/INFINITY DRIVER
17646 M:      Kevin Cernekee <cernekee@gmail.com>
17647 L:      linux-serial@vger.kernel.org
17648 S:      Odd Fixes
17649 F:      drivers/tty/serial/rp2.*
17650
17651 ROHM BD99954 CHARGER IC
17652 R:      Matti Vaittinen <mazziesaccount@gmail.com>
17653 S:      Supported
17654 F:      drivers/power/supply/bd99954-charger.c
17655 F:      drivers/power/supply/bd99954-charger.h
17656
17657 ROHM BH1750 AMBIENT LIGHT SENSOR DRIVER
17658 M:      Tomasz Duszynski <tduszyns@gmail.com>
17659 S:      Maintained
17660 F:      Documentation/devicetree/bindings/iio/light/bh1750.yaml
17661 F:      drivers/iio/light/bh1750.c
17662
17663 ROHM MULTIFUNCTION BD9571MWV-M PMIC DEVICE DRIVERS
17664 M:      Marek Vasut <marek.vasut+renesas@gmail.com>
17665 L:      linux-kernel@vger.kernel.org
17666 L:      linux-renesas-soc@vger.kernel.org
17667 S:      Supported
17668 F:      Documentation/devicetree/bindings/mfd/rohm,bd9571mwv.yaml
17669 F:      drivers/gpio/gpio-bd9571mwv.c
17670 F:      drivers/mfd/bd9571mwv.c
17671 F:      drivers/regulator/bd9571mwv-regulator.c
17672 F:      include/linux/mfd/bd9571mwv.h
17673
17674 ROHM POWER MANAGEMENT IC DEVICE DRIVERS
17675 R:      Matti Vaittinen <mazziesaccount@gmail.com>
17676 S:      Supported
17677 F:      drivers/clk/clk-bd718x7.c
17678 F:      drivers/gpio/gpio-bd71815.c
17679 F:      drivers/gpio/gpio-bd71828.c
17680 F:      drivers/mfd/rohm-bd71828.c
17681 F:      drivers/mfd/rohm-bd718x7.c
17682 F:      drivers/mfd/rohm-bd9576.c
17683 F:      drivers/regulator/bd71815-regulator.c
17684 F:      drivers/regulator/bd71828-regulator.c
17685 F:      drivers/regulator/bd718x7-regulator.c
17686 F:      drivers/regulator/bd9576-regulator.c
17687 F:      drivers/regulator/rohm-regulator.c
17688 F:      drivers/rtc/rtc-bd70528.c
17689 F:      drivers/watchdog/bd9576_wdt.c
17690 F:      include/linux/mfd/rohm-bd71815.h
17691 F:      include/linux/mfd/rohm-bd71828.h
17692 F:      include/linux/mfd/rohm-bd718x7.h
17693 F:      include/linux/mfd/rohm-bd957x.h
17694 F:      include/linux/mfd/rohm-generic.h
17695 F:      include/linux/mfd/rohm-shared.h
17696
17697 ROSE NETWORK LAYER
17698 M:      Ralf Baechle <ralf@linux-mips.org>
17699 L:      linux-hams@vger.kernel.org
17700 S:      Maintained
17701 W:      http://www.linux-ax25.org/
17702 F:      include/net/rose.h
17703 F:      include/uapi/linux/rose.h
17704 F:      net/rose/
17705
17706 ROTATION DRIVER FOR ALLWINNER A83T
17707 M:      Jernej Skrabec <jernej.skrabec@gmail.com>
17708 L:      linux-media@vger.kernel.org
17709 S:      Maintained
17710 T:      git git://linuxtv.org/media_tree.git
17711 F:      Documentation/devicetree/bindings/media/allwinner,sun8i-a83t-de2-rotate.yaml
17712 F:      drivers/media/platform/sunxi/sun8i-rotate/
17713
17714 RPMSG TTY DRIVER
17715 M:      Arnaud Pouliquen <arnaud.pouliquen@foss.st.com>
17716 L:      linux-remoteproc@vger.kernel.org
17717 S:      Maintained
17718 F:      drivers/tty/rpmsg_tty.c
17719
17720 RTL2830 MEDIA DRIVER
17721 M:      Antti Palosaari <crope@iki.fi>
17722 L:      linux-media@vger.kernel.org
17723 S:      Maintained
17724 W:      https://linuxtv.org
17725 W:      http://palosaari.fi/linux/
17726 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17727 T:      git git://linuxtv.org/anttip/media_tree.git
17728 F:      drivers/media/dvb-frontends/rtl2830*
17729
17730 RTL2832 MEDIA DRIVER
17731 M:      Antti Palosaari <crope@iki.fi>
17732 L:      linux-media@vger.kernel.org
17733 S:      Maintained
17734 W:      https://linuxtv.org
17735 W:      http://palosaari.fi/linux/
17736 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17737 T:      git git://linuxtv.org/anttip/media_tree.git
17738 F:      drivers/media/dvb-frontends/rtl2832*
17739
17740 RTL2832_SDR MEDIA DRIVER
17741 M:      Antti Palosaari <crope@iki.fi>
17742 L:      linux-media@vger.kernel.org
17743 S:      Maintained
17744 W:      https://linuxtv.org
17745 W:      http://palosaari.fi/linux/
17746 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17747 T:      git git://linuxtv.org/anttip/media_tree.git
17748 F:      drivers/media/dvb-frontends/rtl2832_sdr*
17749
17750 RTL8180 WIRELESS DRIVER
17751 L:      linux-wireless@vger.kernel.org
17752 S:      Orphan
17753 W:      https://wireless.wiki.kernel.org/
17754 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
17755 F:      drivers/net/wireless/realtek/rtl818x/rtl8180/
17756
17757 RTL8187 WIRELESS DRIVER
17758 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
17759 M:      Hin-Tak Leung <htl10@users.sourceforge.net>
17760 M:      Larry Finger <Larry.Finger@lwfinger.net>
17761 L:      linux-wireless@vger.kernel.org
17762 S:      Maintained
17763 W:      https://wireless.wiki.kernel.org/
17764 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
17765 F:      drivers/net/wireless/realtek/rtl818x/rtl8187/
17766
17767 RTL8XXXU WIRELESS DRIVER (rtl8xxxu)
17768 M:      Jes Sorensen <Jes.Sorensen@gmail.com>
17769 L:      linux-wireless@vger.kernel.org
17770 S:      Maintained
17771 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jes/linux.git rtl8xxxu-devel
17772 F:      drivers/net/wireless/realtek/rtl8xxxu/
17773
17774 RTRS TRANSPORT DRIVERS
17775 M:      Md. Haris Iqbal <haris.iqbal@ionos.com>
17776 M:      Jack Wang <jinpu.wang@ionos.com>
17777 L:      linux-rdma@vger.kernel.org
17778 S:      Maintained
17779 F:      drivers/infiniband/ulp/rtrs/
17780
17781 RUNTIME VERIFICATION (RV)
17782 M:      Daniel Bristot de Oliveira <bristot@kernel.org>
17783 M:      Steven Rostedt <rostedt@goodmis.org>
17784 L:      linux-trace-devel@vger.kernel.org
17785 S:      Maintained
17786 F:      Documentation/trace/rv/
17787 F:      include/linux/rv.h
17788 F:      include/rv/
17789 F:      kernel/trace/rv/
17790 F:      tools/verification/
17791
17792 RUST
17793 M:      Miguel Ojeda <ojeda@kernel.org>
17794 M:      Alex Gaynor <alex.gaynor@gmail.com>
17795 M:      Wedson Almeida Filho <wedsonaf@gmail.com>
17796 R:      Boqun Feng <boqun.feng@gmail.com>
17797 R:      Gary Guo <gary@garyguo.net>
17798 R:      Björn Roy Baron <bjorn3_gh@protonmail.com>
17799 L:      rust-for-linux@vger.kernel.org
17800 S:      Supported
17801 W:      https://github.com/Rust-for-Linux/linux
17802 B:      https://github.com/Rust-for-Linux/linux/issues
17803 T:      git https://github.com/Rust-for-Linux/linux.git rust-next
17804 F:      Documentation/rust/
17805 F:      rust/
17806 F:      samples/rust/
17807 F:      scripts/*rust*
17808 K:      \b(?i:rust)\b
17809
17810 RXRPC SOCKETS (AF_RXRPC)
17811 M:      David Howells <dhowells@redhat.com>
17812 M:      Marc Dionne <marc.dionne@auristor.com>
17813 L:      linux-afs@lists.infradead.org
17814 S:      Supported
17815 W:      https://www.infradead.org/~dhowells/kafs/
17816 F:      Documentation/networking/rxrpc.rst
17817 F:      include/keys/rxrpc-type.h
17818 F:      include/net/af_rxrpc.h
17819 F:      include/trace/events/rxrpc.h
17820 F:      include/uapi/linux/rxrpc.h
17821 F:      net/rxrpc/
17822
17823 S3 SAVAGE FRAMEBUFFER DRIVER
17824 M:      Antonino Daplas <adaplas@gmail.com>
17825 L:      linux-fbdev@vger.kernel.org
17826 S:      Maintained
17827 F:      drivers/video/fbdev/savage/
17828
17829 S390
17830 M:      Heiko Carstens <hca@linux.ibm.com>
17831 M:      Vasily Gorbik <gor@linux.ibm.com>
17832 M:      Alexander Gordeev <agordeev@linux.ibm.com>
17833 R:      Christian Borntraeger <borntraeger@linux.ibm.com>
17834 R:      Sven Schnelle <svens@linux.ibm.com>
17835 L:      linux-s390@vger.kernel.org
17836 S:      Supported
17837 W:      http://www.ibm.com/developerworks/linux/linux390/
17838 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux.git
17839 F:      Documentation/driver-api/s390-drivers.rst
17840 F:      Documentation/s390/
17841 F:      arch/s390/
17842 F:      drivers/s390/
17843
17844 S390 COMMON I/O LAYER
17845 M:      Vineeth Vijayan <vneethv@linux.ibm.com>
17846 M:      Peter Oberparleiter <oberpar@linux.ibm.com>
17847 L:      linux-s390@vger.kernel.org
17848 S:      Supported
17849 W:      http://www.ibm.com/developerworks/linux/linux390/
17850 F:      drivers/s390/cio/
17851
17852 S390 DASD DRIVER
17853 M:      Stefan Haberland <sth@linux.ibm.com>
17854 M:      Jan Hoeppner <hoeppner@linux.ibm.com>
17855 L:      linux-s390@vger.kernel.org
17856 S:      Supported
17857 W:      http://www.ibm.com/developerworks/linux/linux390/
17858 F:      block/partitions/ibm.c
17859 F:      drivers/s390/block/dasd*
17860 F:      include/linux/dasd_mod.h
17861
17862 S390 IOMMU (PCI)
17863 M:      Matthew Rosato <mjrosato@linux.ibm.com>
17864 M:      Gerald Schaefer <gerald.schaefer@linux.ibm.com>
17865 L:      linux-s390@vger.kernel.org
17866 S:      Supported
17867 W:      http://www.ibm.com/developerworks/linux/linux390/
17868 F:      drivers/iommu/s390-iommu.c
17869
17870 S390 IUCV NETWORK LAYER
17871 M:      Alexandra Winter <wintera@linux.ibm.com>
17872 M:      Wenjia Zhang <wenjia@linux.ibm.com>
17873 L:      linux-s390@vger.kernel.org
17874 L:      netdev@vger.kernel.org
17875 S:      Supported
17876 W:      http://www.ibm.com/developerworks/linux/linux390/
17877 F:      drivers/s390/net/*iucv*
17878 F:      include/net/iucv/
17879 F:      net/iucv/
17880
17881 S390 NETWORK DRIVERS
17882 M:      Alexandra Winter <wintera@linux.ibm.com>
17883 M:      Wenjia Zhang <wenjia@linux.ibm.com>
17884 L:      linux-s390@vger.kernel.org
17885 L:      netdev@vger.kernel.org
17886 S:      Supported
17887 W:      http://www.ibm.com/developerworks/linux/linux390/
17888 F:      drivers/s390/net/
17889
17890 S390 PCI SUBSYSTEM
17891 M:      Niklas Schnelle <schnelle@linux.ibm.com>
17892 M:      Gerald Schaefer <gerald.schaefer@linux.ibm.com>
17893 L:      linux-s390@vger.kernel.org
17894 S:      Supported
17895 W:      http://www.ibm.com/developerworks/linux/linux390/
17896 F:      arch/s390/pci/
17897 F:      drivers/pci/hotplug/s390_pci_hpc.c
17898 F:      Documentation/s390/pci.rst
17899
17900 S390 VFIO AP DRIVER
17901 M:      Tony Krowiak <akrowiak@linux.ibm.com>
17902 M:      Halil Pasic <pasic@linux.ibm.com>
17903 M:      Jason Herne <jjherne@linux.ibm.com>
17904 L:      linux-s390@vger.kernel.org
17905 S:      Supported
17906 W:      http://www.ibm.com/developerworks/linux/linux390/
17907 F:      Documentation/s390/vfio-ap*
17908 F:      drivers/s390/crypto/vfio_ap*
17909
17910 S390 VFIO-CCW DRIVER
17911 M:      Eric Farman <farman@linux.ibm.com>
17912 M:      Matthew Rosato <mjrosato@linux.ibm.com>
17913 R:      Halil Pasic <pasic@linux.ibm.com>
17914 L:      linux-s390@vger.kernel.org
17915 L:      kvm@vger.kernel.org
17916 S:      Supported
17917 F:      Documentation/s390/vfio-ccw.rst
17918 F:      drivers/s390/cio/vfio_ccw*
17919 F:      include/uapi/linux/vfio_ccw.h
17920
17921 S390 VFIO-PCI DRIVER
17922 M:      Matthew Rosato <mjrosato@linux.ibm.com>
17923 M:      Eric Farman <farman@linux.ibm.com>
17924 L:      linux-s390@vger.kernel.org
17925 L:      kvm@vger.kernel.org
17926 S:      Supported
17927 F:      arch/s390/kvm/pci*
17928 F:      drivers/vfio/pci/vfio_pci_zdev.c
17929 F:      include/uapi/linux/vfio_zdev.h
17930
17931 S390 ZCRYPT DRIVER
17932 M:      Harald Freudenberger <freude@linux.ibm.com>
17933 L:      linux-s390@vger.kernel.org
17934 S:      Supported
17935 W:      http://www.ibm.com/developerworks/linux/linux390/
17936 F:      drivers/s390/crypto/
17937
17938 S390 ZFCP DRIVER
17939 M:      Steffen Maier <maier@linux.ibm.com>
17940 M:      Benjamin Block <bblock@linux.ibm.com>
17941 L:      linux-s390@vger.kernel.org
17942 S:      Supported
17943 W:      http://www.ibm.com/developerworks/linux/linux390/
17944 F:      drivers/s390/scsi/zfcp_*
17945
17946 S3C ADC BATTERY DRIVER
17947 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
17948 L:      linux-samsung-soc@vger.kernel.org
17949 S:      Odd Fixes
17950 F:      drivers/power/supply/s3c_adc_battery.c
17951 F:      include/linux/s3c_adc_battery.h
17952
17953 S3C24XX SD/MMC Driver
17954 M:      Ben Dooks <ben-linux@fluff.org>
17955 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
17956 S:      Supported
17957 F:      drivers/mmc/host/s3cmci.*
17958
17959 SAA6588 RDS RECEIVER DRIVER
17960 M:      Hans Verkuil <hverkuil@xs4all.nl>
17961 L:      linux-media@vger.kernel.org
17962 S:      Odd Fixes
17963 W:      https://linuxtv.org
17964 T:      git git://linuxtv.org/media_tree.git
17965 F:      drivers/media/i2c/saa6588*
17966
17967 SAA7134 VIDEO4LINUX DRIVER
17968 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
17969 L:      linux-media@vger.kernel.org
17970 S:      Odd fixes
17971 W:      https://linuxtv.org
17972 T:      git git://linuxtv.org/media_tree.git
17973 F:      Documentation/driver-api/media/drivers/saa7134*
17974 F:      drivers/media/pci/saa7134/
17975
17976 SAA7146 VIDEO4LINUX-2 DRIVER
17977 M:      Hans Verkuil <hverkuil@xs4all.nl>
17978 L:      linux-media@vger.kernel.org
17979 S:      Maintained
17980 T:      git git://linuxtv.org/media_tree.git
17981 F:      drivers/media/common/saa7146/
17982 F:      drivers/media/pci/saa7146/
17983 F:      include/media/drv-intf/saa7146*
17984
17985 SAFESETID SECURITY MODULE
17986 M:      Micah Morton <mortonm@chromium.org>
17987 S:      Supported
17988 F:      Documentation/admin-guide/LSM/SafeSetID.rst
17989 F:      security/safesetid/
17990
17991 SAMSUNG AUDIO (ASoC) DRIVERS
17992 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
17993 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
17994 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17995 S:      Supported
17996 B:      mailto:linux-samsung-soc@vger.kernel.org
17997 F:      Documentation/devicetree/bindings/sound/samsung*
17998 F:      sound/soc/samsung/
17999
18000 SAMSUNG EXYNOS PSEUDO RANDOM NUMBER GENERATOR (RNG) DRIVER
18001 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
18002 L:      linux-crypto@vger.kernel.org
18003 L:      linux-samsung-soc@vger.kernel.org
18004 S:      Maintained
18005 F:      Documentation/devicetree/bindings/rng/samsung,exynos4-rng.yaml
18006 F:      drivers/crypto/exynos-rng.c
18007
18008 SAMSUNG EXYNOS TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
18009 M:      Łukasz Stelmach <l.stelmach@samsung.com>
18010 L:      linux-samsung-soc@vger.kernel.org
18011 S:      Maintained
18012 F:      Documentation/devicetree/bindings/rng/samsung,exynos5250-trng.yaml
18013 F:      drivers/char/hw_random/exynos-trng.c
18014
18015 SAMSUNG FRAMEBUFFER DRIVER
18016 M:      Jingoo Han <jingoohan1@gmail.com>
18017 L:      linux-fbdev@vger.kernel.org
18018 S:      Maintained
18019 F:      drivers/video/fbdev/s3c-fb.c
18020
18021 SAMSUNG INTERCONNECT DRIVERS
18022 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
18023 M:      Artur Świgoń <a.swigon@samsung.com>
18024 L:      linux-pm@vger.kernel.org
18025 L:      linux-samsung-soc@vger.kernel.org
18026 S:      Supported
18027 F:      drivers/interconnect/samsung/
18028
18029 SAMSUNG LAPTOP DRIVER
18030 M:      Corentin Chary <corentin.chary@gmail.com>
18031 L:      platform-driver-x86@vger.kernel.org
18032 S:      Maintained
18033 F:      drivers/platform/x86/samsung-laptop.c
18034
18035 SAMSUNG MULTIFUNCTION PMIC DEVICE DRIVERS
18036 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
18037 L:      linux-kernel@vger.kernel.org
18038 L:      linux-samsung-soc@vger.kernel.org
18039 S:      Supported
18040 B:      mailto:linux-samsung-soc@vger.kernel.org
18041 F:      Documentation/devicetree/bindings/clock/samsung,s2mps11.yaml
18042 F:      Documentation/devicetree/bindings/mfd/samsung,s2m*.yaml
18043 F:      Documentation/devicetree/bindings/mfd/samsung,s5m*.yaml
18044 F:      Documentation/devicetree/bindings/regulator/samsung,s2m*.yaml
18045 F:      Documentation/devicetree/bindings/regulator/samsung,s5m*.yaml
18046 F:      drivers/clk/clk-s2mps11.c
18047 F:      drivers/mfd/sec*.c
18048 F:      drivers/regulator/s2m*.c
18049 F:      drivers/regulator/s5m*.c
18050 F:      drivers/rtc/rtc-s5m.c
18051 F:      include/linux/mfd/samsung/
18052
18053 SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
18054 M:      Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
18055 L:      linux-media@vger.kernel.org
18056 L:      linux-samsung-soc@vger.kernel.org
18057 S:      Maintained
18058 F:      drivers/media/platform/samsung/s3c-camif/
18059 F:      include/media/drv-intf/s3c_camif.h
18060
18061 SAMSUNG S3FWRN5 NFC DRIVER
18062 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
18063 M:      Krzysztof Opasiak <k.opasiak@samsung.com>
18064 L:      linux-nfc@lists.01.org (subscribers-only)
18065 S:      Maintained
18066 F:      Documentation/devicetree/bindings/net/nfc/samsung,s3fwrn5.yaml
18067 F:      drivers/nfc/s3fwrn5
18068
18069 SAMSUNG S5C73M3 CAMERA DRIVER
18070 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
18071 M:      Andrzej Hajda <andrzej.hajda@intel.com>
18072 L:      linux-media@vger.kernel.org
18073 S:      Supported
18074 F:      drivers/media/i2c/s5c73m3/*
18075
18076 SAMSUNG S5K5BAF CAMERA DRIVER
18077 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
18078 M:      Andrzej Hajda <andrzej.hajda@intel.com>
18079 L:      linux-media@vger.kernel.org
18080 S:      Supported
18081 F:      drivers/media/i2c/s5k5baf.c
18082
18083 SAMSUNG S5P Security SubSystem (SSS) DRIVER
18084 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
18085 M:      Vladimir Zapolskiy <vz@mleia.com>
18086 L:      linux-crypto@vger.kernel.org
18087 L:      linux-samsung-soc@vger.kernel.org
18088 S:      Maintained
18089 F:      Documentation/devicetree/bindings/crypto/samsung-slimsss.yaml
18090 F:      Documentation/devicetree/bindings/crypto/samsung-sss.yaml
18091 F:      drivers/crypto/s5p-sss.c
18092
18093 SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS
18094 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
18095 L:      linux-media@vger.kernel.org
18096 S:      Supported
18097 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
18098 F:      drivers/media/platform/samsung/exynos4-is/
18099
18100 SAMSUNG SOC CLOCK DRIVERS
18101 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
18102 M:      Tomasz Figa <tomasz.figa@gmail.com>
18103 M:      Chanwoo Choi <cw00.choi@samsung.com>
18104 R:      Alim Akhtar <alim.akhtar@samsung.com>
18105 L:      linux-samsung-soc@vger.kernel.org
18106 S:      Supported
18107 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/snawrocki/clk.git
18108 F:      Documentation/devicetree/bindings/clock/samsung,*.yaml
18109 F:      Documentation/devicetree/bindings/clock/samsung,s3c*
18110 F:      drivers/clk/samsung/
18111 F:      include/dt-bindings/clock/exynos*.h
18112 F:      include/dt-bindings/clock/s3c*.h
18113 F:      include/dt-bindings/clock/s5p*.h
18114 F:      include/dt-bindings/clock/samsung,*.h
18115 F:      include/linux/clk/samsung.h
18116 F:      include/linux/platform_data/clk-s3c2410.h
18117
18118 SAMSUNG SPI DRIVERS
18119 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
18120 M:      Andi Shyti <andi@etezian.org>
18121 L:      linux-spi@vger.kernel.org
18122 L:      linux-samsung-soc@vger.kernel.org
18123 S:      Maintained
18124 F:      Documentation/devicetree/bindings/spi/samsung,spi*.yaml
18125 F:      drivers/spi/spi-s3c*
18126 F:      include/linux/platform_data/spi-s3c64xx.h
18127 F:      include/linux/spi/s3c24xx-fiq.h
18128
18129 SAMSUNG SXGBE DRIVERS
18130 M:      Byungho An <bh74.an@samsung.com>
18131 L:      netdev@vger.kernel.org
18132 S:      Supported
18133 F:      drivers/net/ethernet/samsung/sxgbe/
18134
18135 SAMSUNG THERMAL DRIVER
18136 M:      Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
18137 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
18138 L:      linux-pm@vger.kernel.org
18139 L:      linux-samsung-soc@vger.kernel.org
18140 S:      Maintained
18141 F:      Documentation/devicetree/bindings/thermal/samsung,exynos-thermal.yaml
18142 F:      drivers/thermal/samsung/
18143
18144 SAMSUNG USB2 PHY DRIVER
18145 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
18146 L:      linux-kernel@vger.kernel.org
18147 S:      Supported
18148 F:      Documentation/devicetree/bindings/phy/samsung,usb2-phy.yaml
18149 F:      Documentation/driver-api/phy/samsung-usb2.rst
18150 F:      drivers/phy/samsung/phy-exynos4210-usb2.c
18151 F:      drivers/phy/samsung/phy-exynos4x12-usb2.c
18152 F:      drivers/phy/samsung/phy-exynos5250-usb2.c
18153 F:      drivers/phy/samsung/phy-s5pv210-usb2.c
18154 F:      drivers/phy/samsung/phy-samsung-usb2.c
18155 F:      drivers/phy/samsung/phy-samsung-usb2.h
18156
18157 SANCLOUD BEAGLEBONE ENHANCED DEVICE TREE
18158 M:      Paul Barker <paul.barker@sancloud.com>
18159 R:      Marc Murphy <marc.murphy@sancloud.com>
18160 S:      Supported
18161 F:      arch/arm/boot/dts/am335x-sancloud*
18162
18163 SC1200 WDT DRIVER
18164 M:      Zwane Mwaikambo <zwanem@gmail.com>
18165 S:      Maintained
18166 F:      drivers/watchdog/sc1200wdt.c
18167
18168 SCHEDULER
18169 M:      Ingo Molnar <mingo@redhat.com>
18170 M:      Peter Zijlstra <peterz@infradead.org>
18171 M:      Juri Lelli <juri.lelli@redhat.com> (SCHED_DEADLINE)
18172 M:      Vincent Guittot <vincent.guittot@linaro.org> (SCHED_NORMAL)
18173 R:      Dietmar Eggemann <dietmar.eggemann@arm.com> (SCHED_NORMAL)
18174 R:      Steven Rostedt <rostedt@goodmis.org> (SCHED_FIFO/SCHED_RR)
18175 R:      Ben Segall <bsegall@google.com> (CONFIG_CFS_BANDWIDTH)
18176 R:      Mel Gorman <mgorman@suse.de> (CONFIG_NUMA_BALANCING)
18177 R:      Daniel Bristot de Oliveira <bristot@redhat.com> (SCHED_DEADLINE)
18178 R:      Valentin Schneider <vschneid@redhat.com> (TOPOLOGY)
18179 L:      linux-kernel@vger.kernel.org
18180 S:      Maintained
18181 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
18182 F:      include/linux/preempt.h
18183 F:      include/linux/sched.h
18184 F:      include/linux/wait.h
18185 F:      include/uapi/linux/sched.h
18186 F:      kernel/sched/
18187
18188 SCR24X CHIP CARD INTERFACE DRIVER
18189 M:      Lubomir Rintel <lkundrak@v3.sk>
18190 S:      Supported
18191 F:      drivers/char/pcmcia/scr24x_cs.c
18192
18193 SCSI RDMA PROTOCOL (SRP) INITIATOR
18194 M:      Bart Van Assche <bvanassche@acm.org>
18195 L:      linux-rdma@vger.kernel.org
18196 S:      Supported
18197 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
18198 F:      drivers/infiniband/ulp/srp/
18199 F:      include/scsi/srp.h
18200
18201 SCSI RDMA PROTOCOL (SRP) TARGET
18202 M:      Bart Van Assche <bvanassche@acm.org>
18203 L:      linux-rdma@vger.kernel.org
18204 L:      target-devel@vger.kernel.org
18205 S:      Supported
18206 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
18207 F:      drivers/infiniband/ulp/srpt/
18208
18209 SCSI SG DRIVER
18210 M:      Doug Gilbert <dgilbert@interlog.com>
18211 L:      linux-scsi@vger.kernel.org
18212 S:      Maintained
18213 W:      http://sg.danny.cz/sg
18214 F:      Documentation/scsi/scsi-generic.rst
18215 F:      drivers/scsi/sg.c
18216 F:      include/scsi/sg.h
18217
18218 SCSI SUBSYSTEM
18219 M:      "James E.J. Bottomley" <jejb@linux.ibm.com>
18220 M:      "Martin K. Petersen" <martin.petersen@oracle.com>
18221 L:      linux-scsi@vger.kernel.org
18222 S:      Maintained
18223 Q:      https://patchwork.kernel.org/project/linux-scsi/list/
18224 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git
18225 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
18226 F:      Documentation/devicetree/bindings/scsi/
18227 F:      drivers/scsi/
18228 F:      drivers/ufs/
18229 F:      include/scsi/
18230
18231 SCSI TAPE DRIVER
18232 M:      Kai Mäkisara <Kai.Makisara@kolumbus.fi>
18233 L:      linux-scsi@vger.kernel.org
18234 S:      Maintained
18235 F:      Documentation/scsi/st.rst
18236 F:      drivers/scsi/st.*
18237 F:      drivers/scsi/st_*.h
18238
18239 SCSI TARGET CORE USER DRIVER
18240 M:      Bodo Stroesser <bostroesser@gmail.com>
18241 L:      linux-scsi@vger.kernel.org
18242 L:      target-devel@vger.kernel.org
18243 S:      Supported
18244 F:      Documentation/target/tcmu-design.rst
18245 F:      drivers/target/target_core_user.c
18246 F:      include/uapi/linux/target_core_user.h
18247
18248 SCSI TARGET SUBSYSTEM
18249 M:      "Martin K. Petersen" <martin.petersen@oracle.com>
18250 L:      linux-scsi@vger.kernel.org
18251 L:      target-devel@vger.kernel.org
18252 S:      Supported
18253 W:      http://www.linux-iscsi.org
18254 Q:      https://patchwork.kernel.org/project/target-devel/list/
18255 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
18256 F:      Documentation/target/
18257 F:      drivers/target/
18258 F:      include/target/
18259
18260 SCTP PROTOCOL
18261 M:      Vlad Yasevich <vyasevich@gmail.com>
18262 M:      Neil Horman <nhorman@tuxdriver.com>
18263 M:      Marcelo Ricardo Leitner <marcelo.leitner@gmail.com>
18264 L:      linux-sctp@vger.kernel.org
18265 S:      Maintained
18266 W:      http://lksctp.sourceforge.net
18267 F:      Documentation/networking/sctp.rst
18268 F:      include/linux/sctp.h
18269 F:      include/net/sctp/
18270 F:      include/uapi/linux/sctp.h
18271 F:      net/sctp/
18272
18273 SCx200 CPU SUPPORT
18274 M:      Jim Cromie <jim.cromie@gmail.com>
18275 S:      Odd Fixes
18276 F:      Documentation/i2c/busses/scx200_acb.rst
18277 F:      arch/x86/platform/scx200/
18278 F:      drivers/i2c/busses/scx200*
18279 F:      drivers/mtd/maps/scx200_docflash.c
18280 F:      drivers/watchdog/scx200_wdt.c
18281 F:      include/linux/scx200.h
18282
18283 SCx200 GPIO DRIVER
18284 M:      Jim Cromie <jim.cromie@gmail.com>
18285 S:      Maintained
18286 F:      drivers/char/scx200_gpio.c
18287 F:      include/linux/scx200_gpio.h
18288
18289 SCx200 HRT CLOCKSOURCE DRIVER
18290 M:      Jim Cromie <jim.cromie@gmail.com>
18291 S:      Maintained
18292 F:      drivers/clocksource/scx200_hrt.c
18293
18294 SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
18295 M:      Sascha Sommer <saschasommer@freenet.de>
18296 L:      sdricohcs-devel@lists.sourceforge.net (subscribers-only)
18297 S:      Maintained
18298 F:      drivers/mmc/host/sdricoh_cs.c
18299
18300 SECO BOARDS CEC DRIVER
18301 M:      Ettore Chimenti <ek5.chimenti@gmail.com>
18302 S:      Maintained
18303 F:      drivers/media/cec/platform/seco/seco-cec.c
18304 F:      drivers/media/cec/platform/seco/seco-cec.h
18305
18306 SECURE COMPUTING
18307 M:      Kees Cook <keescook@chromium.org>
18308 R:      Andy Lutomirski <luto@amacapital.net>
18309 R:      Will Drewry <wad@chromium.org>
18310 S:      Supported
18311 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/seccomp
18312 F:      Documentation/userspace-api/seccomp_filter.rst
18313 F:      include/linux/seccomp.h
18314 F:      include/uapi/linux/seccomp.h
18315 F:      kernel/seccomp.c
18316 F:      tools/testing/selftests/kselftest_harness.h
18317 F:      tools/testing/selftests/seccomp/*
18318 K:      \bsecure_computing
18319 K:      \bTIF_SECCOMP\b
18320
18321 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) Broadcom BRCMSTB DRIVER
18322 M:      Al Cooper <alcooperx@gmail.com>
18323 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
18324 L:      linux-mmc@vger.kernel.org
18325 S:      Maintained
18326 F:      drivers/mmc/host/sdhci-brcmstb*
18327
18328 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
18329 M:      Adrian Hunter <adrian.hunter@intel.com>
18330 L:      linux-mmc@vger.kernel.org
18331 S:      Supported
18332 F:      drivers/mmc/host/sdhci*
18333
18334 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) MICROCHIP DRIVER
18335 M:      Eugen Hristev <eugen.hristev@microchip.com>
18336 L:      linux-mmc@vger.kernel.org
18337 S:      Supported
18338 F:      drivers/mmc/host/sdhci-of-at91.c
18339
18340 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
18341 M:      Ben Dooks <ben-linux@fluff.org>
18342 M:      Jaehoon Chung <jh80.chung@samsung.com>
18343 L:      linux-mmc@vger.kernel.org
18344 S:      Maintained
18345 F:      drivers/mmc/host/sdhci-s3c*
18346
18347 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
18348 M:      Viresh Kumar <vireshk@kernel.org>
18349 L:      linux-mmc@vger.kernel.org
18350 S:      Maintained
18351 F:      drivers/mmc/host/sdhci-spear.c
18352
18353 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) TI OMAP DRIVER
18354 M:      Vignesh Raghavendra <vigneshr@ti.com>
18355 L:      linux-mmc@vger.kernel.org
18356 S:      Maintained
18357 F:      drivers/mmc/host/sdhci-omap.c
18358
18359 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) NXP i.MX DRIVER
18360 M:      Haibo Chen <haibo.chen@nxp.com>
18361 L:      linux-imx@nxp.com
18362 L:      linux-mmc@vger.kernel.org
18363 S:      Maintained
18364 F:      drivers/mmc/host/sdhci-esdhc-imx.c
18365
18366 SECURE ENCRYPTING DEVICE (SED) OPAL DRIVER
18367 M:      Jonathan Derrick <jonathan.derrick@intel.com>
18368 M:      Revanth Rajashekar <revanth.rajashekar@intel.com>
18369 L:      linux-block@vger.kernel.org
18370 S:      Supported
18371 F:      block/opal_proto.h
18372 F:      block/sed*
18373 F:      include/linux/sed*
18374 F:      include/uapi/linux/sed*
18375
18376 SECURITY CONTACT
18377 M:      Security Officers <security@kernel.org>
18378 S:      Supported
18379 F:      Documentation/admin-guide/security-bugs.rst
18380
18381 SECURITY SUBSYSTEM
18382 M:      Paul Moore <paul@paul-moore.com>
18383 M:      James Morris <jmorris@namei.org>
18384 M:      "Serge E. Hallyn" <serge@hallyn.com>
18385 L:      linux-security-module@vger.kernel.org (suggested Cc:)
18386 S:      Supported
18387 W:      http://kernsec.org/
18388 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/lsm.git
18389 F:      security/
18390 X:      security/selinux/
18391
18392 SELINUX SECURITY MODULE
18393 M:      Paul Moore <paul@paul-moore.com>
18394 M:      Stephen Smalley <stephen.smalley.work@gmail.com>
18395 M:      Eric Paris <eparis@parisplace.org>
18396 L:      selinux@vger.kernel.org
18397 S:      Supported
18398 W:      https://selinuxproject.org
18399 W:      https://github.com/SELinuxProject
18400 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/selinux.git
18401 F:      Documentation/ABI/obsolete/sysfs-selinux-checkreqprot
18402 F:      Documentation/ABI/obsolete/sysfs-selinux-disable
18403 F:      Documentation/admin-guide/LSM/SELinux.rst
18404 F:      include/trace/events/avc.h
18405 F:      include/uapi/linux/selinux_netlink.h
18406 F:      scripts/selinux/
18407 F:      security/selinux/
18408
18409 SENSABLE PHANTOM
18410 M:      Jiri Slaby <jirislaby@kernel.org>
18411 S:      Maintained
18412 F:      drivers/misc/phantom.c
18413 F:      include/uapi/linux/phantom.h
18414
18415 SENSEAIR SUNRISE 006-0-0007
18416 M:      Jacopo Mondi <jacopo@jmondi.org>
18417 S:      Maintained
18418 F:      Documentation/ABI/testing/sysfs-bus-iio-chemical-sunrise-co2
18419 F:      Documentation/devicetree/bindings/iio/chemical/senseair,sunrise.yaml
18420 F:      drivers/iio/chemical/sunrise_co2.c
18421
18422 SENSIRION SCD30 CARBON DIOXIDE SENSOR DRIVER
18423 M:      Tomasz Duszynski <tomasz.duszynski@octakon.com>
18424 S:      Maintained
18425 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,scd30.yaml
18426 F:      drivers/iio/chemical/scd30.h
18427 F:      drivers/iio/chemical/scd30_core.c
18428 F:      drivers/iio/chemical/scd30_i2c.c
18429 F:      drivers/iio/chemical/scd30_serial.c
18430
18431 SENSIRION SCD4X CARBON DIOXIDE SENSOR DRIVER
18432 M:      Roan van Dijk <roan@protonic.nl>
18433 S:      Maintained
18434 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,scd4x.yaml
18435 F:      drivers/iio/chemical/scd4x.c
18436
18437 SENSIRION SGP40 GAS SENSOR DRIVER
18438 M:      Andreas Klinger <ak@it-klinger.de>
18439 S:      Maintained
18440 F:      Documentation/ABI/testing/sysfs-bus-iio-chemical-sgp40
18441 F:      drivers/iio/chemical/sgp40.c
18442
18443 SENSIRION SPS30 AIR POLLUTION SENSOR DRIVER
18444 M:      Tomasz Duszynski <tduszyns@gmail.com>
18445 S:      Maintained
18446 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,sps30.yaml
18447 F:      drivers/iio/chemical/sps30.c
18448 F:      drivers/iio/chemical/sps30_i2c.c
18449 F:      drivers/iio/chemical/sps30_serial.c
18450
18451 SERIAL DEVICE BUS
18452 M:      Rob Herring <robh@kernel.org>
18453 L:      linux-serial@vger.kernel.org
18454 S:      Maintained
18455 F:      Documentation/devicetree/bindings/serial/serial.yaml
18456 F:      drivers/tty/serdev/
18457 F:      include/linux/serdev.h
18458
18459 SERIAL DRIVERS
18460 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
18461 L:      linux-serial@vger.kernel.org
18462 S:      Maintained
18463 F:      Documentation/devicetree/bindings/serial/
18464 F:      drivers/tty/serial/
18465
18466 SERIAL IR RECEIVER
18467 M:      Sean Young <sean@mess.org>
18468 L:      linux-media@vger.kernel.org
18469 S:      Maintained
18470 F:      drivers/media/rc/serial_ir.c
18471
18472 SERIAL LOW-POWER INTER-CHIP MEDIA BUS (SLIMbus)
18473 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
18474 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18475 S:      Maintained
18476 F:      Documentation/devicetree/bindings/slimbus/
18477 F:      drivers/slimbus/
18478 F:      include/linux/slimbus.h
18479
18480 SFC NETWORK DRIVER
18481 M:      Edward Cree <ecree.xilinx@gmail.com>
18482 M:      Martin Habets <habetsm.xilinx@gmail.com>
18483 L:      netdev@vger.kernel.org
18484 S:      Supported
18485 F:      drivers/net/ethernet/sfc/
18486
18487 SFF/SFP/SFP+ MODULE SUPPORT
18488 M:      Russell King <linux@armlinux.org.uk>
18489 L:      netdev@vger.kernel.org
18490 S:      Maintained
18491 F:      Documentation/devicetree/bindings/net/sff,sfp.yaml
18492 F:      drivers/net/phy/phylink.c
18493 F:      drivers/net/phy/sfp*
18494 F:      include/linux/mdio/mdio-i2c.h
18495 F:      include/linux/phylink.h
18496 F:      include/linux/sfp.h
18497 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)
18498
18499 SGI GRU DRIVER
18500 M:      Dimitri Sivanich <dimitri.sivanich@hpe.com>
18501 S:      Maintained
18502 F:      drivers/misc/sgi-gru/
18503
18504 SGI XP/XPC/XPNET DRIVER
18505 M:      Robin Holt <robinmholt@gmail.com>
18506 M:      Steve Wahl <steve.wahl@hpe.com>
18507 R:      Mike Travis <mike.travis@hpe.com>
18508 S:      Maintained
18509 F:      drivers/misc/sgi-xp/
18510
18511 SHARED MEMORY COMMUNICATIONS (SMC) SOCKETS
18512 M:      Karsten Graul <kgraul@linux.ibm.com>
18513 M:      Wenjia Zhang <wenjia@linux.ibm.com>
18514 L:      linux-s390@vger.kernel.org
18515 S:      Supported
18516 W:      http://www.ibm.com/developerworks/linux/linux390/
18517 F:      net/smc/
18518
18519 SHARP GP2AP002A00F/GP2AP002S00F SENSOR DRIVER
18520 M:      Linus Walleij <linus.walleij@linaro.org>
18521 L:      linux-iio@vger.kernel.org
18522 S:      Maintained
18523 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
18524 F:      Documentation/devicetree/bindings/iio/light/sharp,gp2ap002.yaml
18525 F:      drivers/iio/light/gp2ap002.c
18526
18527 SHARP RJ54N1CB0C SENSOR DRIVER
18528 M:      Jacopo Mondi <jacopo@jmondi.org>
18529 L:      linux-media@vger.kernel.org
18530 S:      Odd fixes
18531 T:      git git://linuxtv.org/media_tree.git
18532 F:      drivers/media/i2c/rj54n1cb0c.c
18533 F:      include/media/i2c/rj54n1cb0c.h
18534
18535 SH_VOU V4L2 OUTPUT DRIVER
18536 L:      linux-media@vger.kernel.org
18537 S:      Orphan
18538 F:      drivers/media/platform/renesas/sh_vou.c
18539 F:      include/media/drv-intf/sh_vou.h
18540
18541 SI2157 MEDIA DRIVER
18542 M:      Antti Palosaari <crope@iki.fi>
18543 L:      linux-media@vger.kernel.org
18544 S:      Maintained
18545 W:      https://linuxtv.org
18546 W:      http://palosaari.fi/linux/
18547 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18548 T:      git git://linuxtv.org/anttip/media_tree.git
18549 F:      drivers/media/tuners/si2157*
18550
18551 SI2165 MEDIA DRIVER
18552 M:      Matthias Schwarzott <zzam@gentoo.org>
18553 L:      linux-media@vger.kernel.org
18554 S:      Maintained
18555 W:      https://linuxtv.org
18556 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18557 F:      drivers/media/dvb-frontends/si2165*
18558
18559 SI2168 MEDIA DRIVER
18560 M:      Antti Palosaari <crope@iki.fi>
18561 L:      linux-media@vger.kernel.org
18562 S:      Maintained
18563 W:      https://linuxtv.org
18564 W:      http://palosaari.fi/linux/
18565 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18566 T:      git git://linuxtv.org/anttip/media_tree.git
18567 F:      drivers/media/dvb-frontends/si2168*
18568
18569 SI470X FM RADIO RECEIVER I2C DRIVER
18570 M:      Hans Verkuil <hverkuil@xs4all.nl>
18571 L:      linux-media@vger.kernel.org
18572 S:      Odd Fixes
18573 W:      https://linuxtv.org
18574 T:      git git://linuxtv.org/media_tree.git
18575 F:      drivers/media/radio/si470x/radio-si470x-i2c.c
18576
18577 SI470X FM RADIO RECEIVER USB DRIVER
18578 M:      Hans Verkuil <hverkuil@xs4all.nl>
18579 L:      linux-media@vger.kernel.org
18580 S:      Maintained
18581 W:      https://linuxtv.org
18582 T:      git git://linuxtv.org/media_tree.git
18583 F:      drivers/media/radio/si470x/radio-si470x-common.c
18584 F:      drivers/media/radio/si470x/radio-si470x-usb.c
18585 F:      drivers/media/radio/si470x/radio-si470x.h
18586
18587 SI4713 FM RADIO TRANSMITTER I2C DRIVER
18588 M:      Eduardo Valentin <edubezval@gmail.com>
18589 L:      linux-media@vger.kernel.org
18590 S:      Odd Fixes
18591 W:      https://linuxtv.org
18592 T:      git git://linuxtv.org/media_tree.git
18593 F:      drivers/media/radio/si4713/si4713.?
18594
18595 SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
18596 M:      Eduardo Valentin <edubezval@gmail.com>
18597 L:      linux-media@vger.kernel.org
18598 S:      Odd Fixes
18599 W:      https://linuxtv.org
18600 T:      git git://linuxtv.org/media_tree.git
18601 F:      drivers/media/radio/si4713/radio-platform-si4713.c
18602
18603 SI4713 FM RADIO TRANSMITTER USB DRIVER
18604 M:      Hans Verkuil <hverkuil@xs4all.nl>
18605 L:      linux-media@vger.kernel.org
18606 S:      Maintained
18607 W:      https://linuxtv.org
18608 T:      git git://linuxtv.org/media_tree.git
18609 F:      drivers/media/radio/si4713/radio-usb-si4713.c
18610
18611 SIANO DVB DRIVER
18612 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
18613 L:      linux-media@vger.kernel.org
18614 S:      Odd fixes
18615 W:      https://linuxtv.org
18616 T:      git git://linuxtv.org/media_tree.git
18617 F:      drivers/media/common/siano/
18618 F:      drivers/media/mmc/siano/
18619 F:      drivers/media/usb/siano/
18620 F:      drivers/media/usb/siano/
18621
18622 SIFIVE DRIVERS
18623 M:      Palmer Dabbelt <palmer@dabbelt.com>
18624 M:      Paul Walmsley <paul.walmsley@sifive.com>
18625 L:      linux-riscv@lists.infradead.org
18626 S:      Supported
18627 T:      git git://github.com/sifive/riscv-linux.git
18628 N:      sifive
18629 K:      [^@]sifive
18630
18631 SIFIVE FU540 SYSTEM-ON-CHIP
18632 M:      Paul Walmsley <paul.walmsley@sifive.com>
18633 M:      Palmer Dabbelt <palmer@dabbelt.com>
18634 L:      linux-riscv@lists.infradead.org
18635 S:      Supported
18636 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pjw/sifive.git
18637 N:      fu540
18638 K:      fu540
18639
18640 SIFIVE PDMA DRIVER
18641 M:      Green Wan <green.wan@sifive.com>
18642 S:      Maintained
18643 F:      Documentation/devicetree/bindings/dma/sifive,fu540-c000-pdma.yaml
18644 F:      drivers/dma/sf-pdma/
18645
18646 SILEAD TOUCHSCREEN DRIVER
18647 M:      Hans de Goede <hdegoede@redhat.com>
18648 L:      linux-input@vger.kernel.org
18649 L:      platform-driver-x86@vger.kernel.org
18650 S:      Maintained
18651 F:      drivers/input/touchscreen/silead.c
18652 F:      drivers/platform/x86/touchscreen_dmi.c
18653
18654 SILICON LABS WIRELESS DRIVERS (for WFxxx series)
18655 M:      Jérôme Pouiller <jerome.pouiller@silabs.com>
18656 S:      Supported
18657 F:      Documentation/devicetree/bindings/net/wireless/silabs,wfx.yaml
18658 F:      drivers/net/wireless/silabs/wfx/
18659
18660 SILICON MOTION SM712 FRAME BUFFER DRIVER
18661 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
18662 M:      Teddy Wang <teddy.wang@siliconmotion.com>
18663 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
18664 L:      linux-fbdev@vger.kernel.org
18665 S:      Maintained
18666 F:      Documentation/fb/sm712fb.rst
18667 F:      drivers/video/fbdev/sm712*
18668
18669 SILVACO I3C DUAL-ROLE MASTER
18670 M:      Miquel Raynal <miquel.raynal@bootlin.com>
18671 M:      Conor Culhane <conor.culhane@silvaco.com>
18672 L:      linux-i3c@lists.infradead.org (moderated for non-subscribers)
18673 S:      Maintained
18674 F:      Documentation/devicetree/bindings/i3c/silvaco,i3c-master.yaml
18675 F:      drivers/i3c/master/svc-i3c-master.c
18676
18677 SIMPLEFB FB DRIVER
18678 M:      Hans de Goede <hdegoede@redhat.com>
18679 L:      linux-fbdev@vger.kernel.org
18680 S:      Maintained
18681 F:      Documentation/devicetree/bindings/display/simple-framebuffer.yaml
18682 F:      drivers/video/fbdev/simplefb.c
18683 F:      include/linux/platform_data/simplefb.h
18684
18685 SIMTEC EB110ATX (Chalice CATS)
18686 M:      Simtec Linux Team <linux@simtec.co.uk>
18687 S:      Supported
18688 W:      http://www.simtec.co.uk/products/EB110ATX/
18689
18690 SIMTEC EB2410ITX (BAST)
18691 M:      Simtec Linux Team <linux@simtec.co.uk>
18692 S:      Supported
18693 W:      http://www.simtec.co.uk/products/EB2410ITX/
18694 F:      arch/arm/mach-s3c/bast-ide.c
18695 F:      arch/arm/mach-s3c/bast-irq.c
18696 F:      arch/arm/mach-s3c/mach-bast.c
18697
18698 SIOX
18699 M:      Thorsten Scherer <t.scherer@eckelmann.de>
18700 M:      Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
18701 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
18702 S:      Supported
18703 F:      drivers/gpio/gpio-siox.c
18704 F:      drivers/siox/*
18705 F:      include/trace/events/siox.h
18706
18707 SIPHASH PRF ROUTINES
18708 M:      Jason A. Donenfeld <Jason@zx2c4.com>
18709 S:      Maintained
18710 F:      include/linux/siphash.h
18711 F:      lib/siphash.c
18712 F:      lib/test_siphash.c
18713
18714 SIS 190 ETHERNET DRIVER
18715 M:      Francois Romieu <romieu@fr.zoreil.com>
18716 L:      netdev@vger.kernel.org
18717 S:      Maintained
18718 F:      drivers/net/ethernet/sis/sis190.c
18719
18720 SIS 900/7016 FAST ETHERNET DRIVER
18721 M:      Daniele Venzano <venza@brownhat.org>
18722 L:      netdev@vger.kernel.org
18723 S:      Maintained
18724 W:      http://www.brownhat.org/sis900.html
18725 F:      drivers/net/ethernet/sis/sis900.*
18726
18727 SIS FRAMEBUFFER DRIVER
18728 M:      Thomas Winischhofer <thomas@winischhofer.net>
18729 S:      Maintained
18730 W:      http://www.winischhofer.net/linuxsisvga.shtml
18731 F:      Documentation/fb/sisfb.rst
18732 F:      drivers/video/fbdev/sis/
18733 F:      include/video/sisfb.h
18734
18735 SIS I2C TOUCHSCREEN DRIVER
18736 M:      Mika Penttilä <mika.penttila@nextfour.com>
18737 L:      linux-input@vger.kernel.org
18738 S:      Maintained
18739 F:      Documentation/devicetree/bindings/input/touchscreen/sis_i2c.txt
18740 F:      drivers/input/touchscreen/sis_i2c.c
18741
18742 SIS USB2VGA DRIVER
18743 M:      Thomas Winischhofer <thomas@winischhofer.net>
18744 S:      Maintained
18745 W:      http://www.winischhofer.at/linuxsisusbvga.shtml
18746 F:      drivers/usb/misc/sisusbvga/
18747
18748 SL28 CPLD MFD DRIVER
18749 M:      Michael Walle <michael@walle.cc>
18750 S:      Maintained
18751 F:      Documentation/devicetree/bindings/gpio/kontron,sl28cpld-gpio.yaml
18752 F:      Documentation/devicetree/bindings/hwmon/kontron,sl28cpld-hwmon.yaml
18753 F:      Documentation/devicetree/bindings/interrupt-controller/kontron,sl28cpld-intc.yaml
18754 F:      Documentation/devicetree/bindings/mfd/kontron,sl28cpld.yaml
18755 F:      Documentation/devicetree/bindings/pwm/kontron,sl28cpld-pwm.yaml
18756 F:      Documentation/devicetree/bindings/watchdog/kontron,sl28cpld-wdt.yaml
18757 F:      drivers/gpio/gpio-sl28cpld.c
18758 F:      drivers/hwmon/sl28cpld-hwmon.c
18759 F:      drivers/irqchip/irq-sl28cpld.c
18760 F:      drivers/pwm/pwm-sl28cpld.c
18761 F:      drivers/watchdog/sl28cpld_wdt.c
18762
18763 SLAB ALLOCATOR
18764 M:      Christoph Lameter <cl@linux.com>
18765 M:      Pekka Enberg <penberg@kernel.org>
18766 M:      David Rientjes <rientjes@google.com>
18767 M:      Joonsoo Kim <iamjoonsoo.kim@lge.com>
18768 M:      Andrew Morton <akpm@linux-foundation.org>
18769 M:      Vlastimil Babka <vbabka@suse.cz>
18770 R:      Roman Gushchin <roman.gushchin@linux.dev>
18771 R:      Hyeonggon Yoo <42.hyeyoo@gmail.com>
18772 L:      linux-mm@kvack.org
18773 S:      Maintained
18774 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vbabka/slab.git
18775 F:      include/linux/sl?b*.h
18776 F:      mm/sl?b*
18777
18778 SLCAN CAN NETWORK DRIVER
18779 M:      Dario Binacchi <dario.binacchi@amarulasolutions.com>
18780 L:      linux-can@vger.kernel.org
18781 S:      Maintained
18782 F:      drivers/net/can/slcan/
18783
18784 SLEEPABLE READ-COPY UPDATE (SRCU)
18785 M:      Lai Jiangshan <jiangshanlai@gmail.com>
18786 M:      "Paul E. McKenney" <paulmck@kernel.org>
18787 M:      Josh Triplett <josh@joshtriplett.org>
18788 R:      Steven Rostedt <rostedt@goodmis.org>
18789 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
18790 L:      rcu@vger.kernel.org
18791 S:      Supported
18792 W:      http://www.rdrop.com/users/paulmck/RCU/
18793 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
18794 F:      include/linux/srcu*.h
18795 F:      kernel/rcu/srcu*.c
18796
18797 SMACK SECURITY MODULE
18798 M:      Casey Schaufler <casey@schaufler-ca.com>
18799 L:      linux-security-module@vger.kernel.org
18800 S:      Maintained
18801 W:      http://schaufler-ca.com
18802 T:      git git://github.com/cschaufler/smack-next
18803 F:      Documentation/admin-guide/LSM/Smack.rst
18804 F:      security/smack/
18805
18806 SMC91x ETHERNET DRIVER
18807 M:      Nicolas Pitre <nico@fluxnic.net>
18808 S:      Odd Fixes
18809 F:      drivers/net/ethernet/smsc/smc91x.*
18810
18811 SECURE MONITOR CALL(SMC) CALLING CONVENTION (SMCCC)
18812 M:      Mark Rutland <mark.rutland@arm.com>
18813 M:      Lorenzo Pieralisi <lpieralisi@kernel.org>
18814 M:      Sudeep Holla <sudeep.holla@arm.com>
18815 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
18816 S:      Maintained
18817 F:      drivers/firmware/smccc/
18818 F:      include/linux/arm-smccc.h
18819
18820 SMM665 HARDWARE MONITOR DRIVER
18821 M:      Guenter Roeck <linux@roeck-us.net>
18822 L:      linux-hwmon@vger.kernel.org
18823 S:      Maintained
18824 F:      Documentation/hwmon/smm665.rst
18825 F:      drivers/hwmon/smm665.c
18826
18827 SMSC EMC2103 HARDWARE MONITOR DRIVER
18828 M:      Steve Glendinning <steve.glendinning@shawell.net>
18829 L:      linux-hwmon@vger.kernel.org
18830 S:      Maintained
18831 F:      Documentation/hwmon/emc2103.rst
18832 F:      drivers/hwmon/emc2103.c
18833
18834 SMSC SCH5627 HARDWARE MONITOR DRIVER
18835 M:      Hans de Goede <hdegoede@redhat.com>
18836 L:      linux-hwmon@vger.kernel.org
18837 S:      Supported
18838 F:      Documentation/hwmon/sch5627.rst
18839 F:      drivers/hwmon/sch5627.c
18840
18841 SMSC UFX6000 and UFX7000 USB to VGA DRIVER
18842 M:      Steve Glendinning <steve.glendinning@shawell.net>
18843 L:      linux-fbdev@vger.kernel.org
18844 S:      Maintained
18845 F:      drivers/video/fbdev/smscufx.c
18846
18847 SMSC47B397 HARDWARE MONITOR DRIVER
18848 M:      Jean Delvare <jdelvare@suse.com>
18849 L:      linux-hwmon@vger.kernel.org
18850 S:      Maintained
18851 F:      Documentation/hwmon/smsc47b397.rst
18852 F:      drivers/hwmon/smsc47b397.c
18853
18854 SMSC911x ETHERNET DRIVER
18855 M:      Steve Glendinning <steve.glendinning@shawell.net>
18856 L:      netdev@vger.kernel.org
18857 S:      Maintained
18858 F:      drivers/net/ethernet/smsc/smsc911x.*
18859 F:      include/linux/smsc911x.h
18860
18861 SMSC9420 PCI ETHERNET DRIVER
18862 M:      Steve Glendinning <steve.glendinning@shawell.net>
18863 L:      netdev@vger.kernel.org
18864 S:      Maintained
18865 F:      drivers/net/ethernet/smsc/smsc9420.*
18866
18867 SOCIONEXT (SNI) AVE NETWORK DRIVER
18868 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
18869 L:      netdev@vger.kernel.org
18870 S:      Maintained
18871 F:      Documentation/devicetree/bindings/net/socionext,uniphier-ave4.yaml
18872 F:      drivers/net/ethernet/socionext/sni_ave.c
18873
18874 SOCIONEXT (SNI) NETSEC NETWORK DRIVER
18875 M:      Jassi Brar <jaswinder.singh@linaro.org>
18876 M:      Ilias Apalodimas <ilias.apalodimas@linaro.org>
18877 L:      netdev@vger.kernel.org
18878 S:      Maintained
18879 F:      Documentation/devicetree/bindings/net/socionext-netsec.txt
18880 F:      drivers/net/ethernet/socionext/netsec.c
18881
18882 SOCIONEXT (SNI) Synquacer SPI DRIVER
18883 M:      Masahisa Kojima <masahisa.kojima@linaro.org>
18884 M:      Jassi Brar <jaswinder.singh@linaro.org>
18885 L:      linux-spi@vger.kernel.org
18886 S:      Maintained
18887 F:      Documentation/devicetree/bindings/spi/spi-synquacer.txt
18888 F:      drivers/spi/spi-synquacer.c
18889
18890 SOCIONEXT SYNQUACER I2C DRIVER
18891 M:      Ard Biesheuvel <ardb@kernel.org>
18892 L:      linux-i2c@vger.kernel.org
18893 S:      Maintained
18894 F:      Documentation/devicetree/bindings/i2c/i2c-synquacer.txt
18895 F:      drivers/i2c/busses/i2c-synquacer.c
18896
18897 SOCIONEXT UNIPHIER SOUND DRIVER
18898 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18899 S:      Orphan
18900 F:      sound/soc/uniphier/
18901
18902 SOEKRIS NET48XX LED SUPPORT
18903 M:      Chris Boot <bootc@bootc.net>
18904 S:      Maintained
18905 F:      drivers/leds/leds-net48xx.c
18906
18907 SOFT-IWARP DRIVER (siw)
18908 M:      Bernard Metzler <bmt@zurich.ibm.com>
18909 L:      linux-rdma@vger.kernel.org
18910 S:      Supported
18911 F:      drivers/infiniband/sw/siw/
18912 F:      include/uapi/rdma/siw-abi.h
18913
18914 SOFT-ROCE DRIVER (rxe)
18915 M:      Zhu Yanjun <zyjzyj2000@gmail.com>
18916 L:      linux-rdma@vger.kernel.org
18917 S:      Supported
18918 F:      drivers/infiniband/sw/rxe/
18919 F:      include/uapi/rdma/rdma_user_rxe.h
18920
18921 SOFTLOGIC 6x10 MPEG CODEC
18922 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
18923 M:      Anton Sviridenko <anton@corp.bluecherry.net>
18924 M:      Andrey Utkin <andrey_utkin@fastmail.com>
18925 M:      Ismael Luceno <ismael@iodev.co.uk>
18926 L:      linux-media@vger.kernel.org
18927 S:      Supported
18928 F:      drivers/media/pci/solo6x10/
18929
18930 SOFTWARE DELEGATED EXCEPTION INTERFACE (SDEI)
18931 M:      James Morse <james.morse@arm.com>
18932 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
18933 S:      Maintained
18934 F:      Documentation/devicetree/bindings/arm/firmware/sdei.txt
18935 F:      drivers/firmware/arm_sdei.c
18936 F:      include/linux/arm_sdei.h
18937 F:      include/uapi/linux/arm_sdei.h
18938
18939 SOFTWARE NODES AND DEVICE PROPERTIES
18940 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
18941 R:      Daniel Scally <djrscally@gmail.com>
18942 R:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
18943 R:      Sakari Ailus <sakari.ailus@linux.intel.com>
18944 L:      linux-acpi@vger.kernel.org
18945 S:      Maintained
18946 F:      drivers/base/property.c
18947 F:      drivers/base/swnode.c
18948 F:      include/linux/fwnode.h
18949 F:      include/linux/property.h
18950
18951 SOFTWARE RAID (Multiple Disks) SUPPORT
18952 M:      Song Liu <song@kernel.org>
18953 L:      linux-raid@vger.kernel.org
18954 S:      Supported
18955 Q:      https://patchwork.kernel.org/project/linux-raid/list/
18956 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/song/md.git
18957 F:      drivers/md/Kconfig
18958 F:      drivers/md/Makefile
18959 F:      drivers/md/md*
18960 F:      drivers/md/raid*
18961 F:      include/linux/raid/
18962 F:      include/uapi/linux/raid/
18963
18964 SOLIDRUN CLEARFOG SUPPORT
18965 M:      Russell King <linux@armlinux.org.uk>
18966 S:      Maintained
18967 F:      arch/arm/boot/dts/armada-388-clearfog*
18968 F:      arch/arm/boot/dts/armada-38x-solidrun-*
18969
18970 SOLIDRUN CUBOX-I/HUMMINGBOARD SUPPORT
18971 M:      Russell King <linux@armlinux.org.uk>
18972 S:      Maintained
18973 F:      arch/arm/boot/dts/imx6*-cubox-i*
18974 F:      arch/arm/boot/dts/imx6*-hummingboard*
18975 F:      arch/arm/boot/dts/imx6*-sr-*
18976
18977 SONIC NETWORK DRIVER
18978 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
18979 L:      netdev@vger.kernel.org
18980 S:      Maintained
18981 F:      drivers/net/ethernet/natsemi/sonic.*
18982
18983 SONICS SILICON BACKPLANE DRIVER (SSB)
18984 M:      Michael Buesch <m@bues.ch>
18985 L:      linux-wireless@vger.kernel.org
18986 S:      Maintained
18987 F:      drivers/ssb/
18988 F:      include/linux/ssb/
18989
18990 SONY IMX208 SENSOR DRIVER
18991 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
18992 L:      linux-media@vger.kernel.org
18993 S:      Maintained
18994 T:      git git://linuxtv.org/media_tree.git
18995 F:      drivers/media/i2c/imx208.c
18996
18997 SONY IMX214 SENSOR DRIVER
18998 M:      Ricardo Ribalda <ribalda@kernel.org>
18999 L:      linux-media@vger.kernel.org
19000 S:      Maintained
19001 T:      git git://linuxtv.org/media_tree.git
19002 F:      Documentation/devicetree/bindings/media/i2c/sony,imx214.yaml
19003 F:      drivers/media/i2c/imx214.c
19004
19005 SONY IMX219 SENSOR DRIVER
19006 M:      Dave Stevenson <dave.stevenson@raspberrypi.com>
19007 L:      linux-media@vger.kernel.org
19008 S:      Maintained
19009 T:      git git://linuxtv.org/media_tree.git
19010 F:      Documentation/devicetree/bindings/media/i2c/imx219.yaml
19011 F:      drivers/media/i2c/imx219.c
19012
19013 SONY IMX258 SENSOR DRIVER
19014 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
19015 L:      linux-media@vger.kernel.org
19016 S:      Maintained
19017 T:      git git://linuxtv.org/media_tree.git
19018 F:      Documentation/devicetree/bindings/media/i2c/imx258.yaml
19019 F:      drivers/media/i2c/imx258.c
19020
19021 SONY IMX274 SENSOR DRIVER
19022 M:      Leon Luo <leonl@leopardimaging.com>
19023 L:      linux-media@vger.kernel.org
19024 S:      Maintained
19025 T:      git git://linuxtv.org/media_tree.git
19026 F:      Documentation/devicetree/bindings/media/i2c/sony,imx274.yaml
19027 F:      drivers/media/i2c/imx274.c
19028
19029 SONY IMX290 SENSOR DRIVER
19030 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
19031 L:      linux-media@vger.kernel.org
19032 S:      Maintained
19033 T:      git git://linuxtv.org/media_tree.git
19034 F:      Documentation/devicetree/bindings/media/i2c/imx290.txt
19035 F:      drivers/media/i2c/imx290.c
19036
19037 SONY IMX319 SENSOR DRIVER
19038 M:      Bingbu Cao <bingbu.cao@intel.com>
19039 L:      linux-media@vger.kernel.org
19040 S:      Maintained
19041 T:      git git://linuxtv.org/media_tree.git
19042 F:      drivers/media/i2c/imx319.c
19043
19044 SONY IMX334 SENSOR DRIVER
19045 M:      Paul J. Murphy <paul.j.murphy@intel.com>
19046 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
19047 L:      linux-media@vger.kernel.org
19048 S:      Maintained
19049 T:      git git://linuxtv.org/media_tree.git
19050 F:      Documentation/devicetree/bindings/media/i2c/sony,imx334.yaml
19051 F:      drivers/media/i2c/imx334.c
19052
19053 SONY IMX335 SENSOR DRIVER
19054 M:      Paul J. Murphy <paul.j.murphy@intel.com>
19055 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
19056 L:      linux-media@vger.kernel.org
19057 S:      Maintained
19058 T:      git git://linuxtv.org/media_tree.git
19059 F:      Documentation/devicetree/bindings/media/i2c/sony,imx335.yaml
19060 F:      drivers/media/i2c/imx335.c
19061
19062 SONY IMX355 SENSOR DRIVER
19063 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
19064 L:      linux-media@vger.kernel.org
19065 S:      Maintained
19066 T:      git git://linuxtv.org/media_tree.git
19067 F:      drivers/media/i2c/imx355.c
19068
19069 SONY IMX412 SENSOR DRIVER
19070 M:      Paul J. Murphy <paul.j.murphy@intel.com>
19071 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
19072 L:      linux-media@vger.kernel.org
19073 S:      Maintained
19074 T:      git git://linuxtv.org/media_tree.git
19075 F:      Documentation/devicetree/bindings/media/i2c/sony,imx412.yaml
19076 F:      drivers/media/i2c/imx412.c
19077
19078 SONY MEMORYSTICK SUBSYSTEM
19079 M:      Maxim Levitsky <maximlevitsky@gmail.com>
19080 M:      Alex Dubov <oakad@yahoo.com>
19081 M:      Ulf Hansson <ulf.hansson@linaro.org>
19082 L:      linux-mmc@vger.kernel.org
19083 S:      Maintained
19084 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
19085 F:      drivers/memstick/
19086 F:      include/linux/memstick.h
19087
19088 SONY VAIO CONTROL DEVICE DRIVER
19089 M:      Mattia Dongili <malattia@linux.it>
19090 L:      platform-driver-x86@vger.kernel.org
19091 S:      Maintained
19092 W:      http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
19093 F:      Documentation/admin-guide/laptops/sony-laptop.rst
19094 F:      drivers/char/sonypi.c
19095 F:      drivers/platform/x86/sony-laptop.c
19096 F:      include/linux/sony-laptop.h
19097
19098 SOUND
19099 M:      Jaroslav Kysela <perex@perex.cz>
19100 M:      Takashi Iwai <tiwai@suse.com>
19101 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19102 S:      Maintained
19103 W:      http://www.alsa-project.org/
19104 Q:      http://patchwork.kernel.org/project/alsa-devel/list/
19105 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
19106 F:      Documentation/sound/
19107 F:      include/sound/
19108 F:      include/uapi/sound/
19109 F:      sound/
19110 F:      tools/testing/selftests/alsa
19111
19112 SOUND - COMPRESSED AUDIO
19113 M:      Vinod Koul <vkoul@kernel.org>
19114 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19115 S:      Supported
19116 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
19117 F:      Documentation/sound/designs/compress-offload.rst
19118 F:      include/sound/compress_driver.h
19119 F:      include/uapi/sound/compress_*
19120 F:      sound/core/compress_offload.c
19121 F:      sound/soc/soc-compress.c
19122
19123 SOUND - DMAENGINE HELPERS
19124 M:      Lars-Peter Clausen <lars@metafoo.de>
19125 S:      Supported
19126 F:      include/sound/dmaengine_pcm.h
19127 F:      sound/core/pcm_dmaengine.c
19128 F:      sound/soc/soc-generic-dmaengine-pcm.c
19129
19130 SOUND - ALSA SELFTESTS
19131 M:      Mark Brown <broonie@kernel.org>
19132 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19133 L:      linux-kselftest@vger.kernel.org
19134 S:      Supported
19135 F:      tools/testing/selftests/alsa
19136
19137 SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
19138 M:      Liam Girdwood <lgirdwood@gmail.com>
19139 M:      Mark Brown <broonie@kernel.org>
19140 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19141 S:      Supported
19142 W:      http://alsa-project.org/main/index.php/ASoC
19143 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
19144 F:      Documentation/devicetree/bindings/sound/
19145 F:      Documentation/sound/soc/
19146 F:      include/dt-bindings/sound/
19147 F:      include/sound/soc*
19148 F:      sound/soc/
19149
19150 SOUND - SOUND OPEN FIRMWARE (SOF) DRIVERS
19151 M:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
19152 M:      Liam Girdwood <lgirdwood@gmail.com>
19153 M:      Peter Ujfalusi <peter.ujfalusi@linux.intel.com>
19154 M:      Bard Liao <yung-chuan.liao@linux.intel.com>
19155 M:      Ranjani Sridharan <ranjani.sridharan@linux.intel.com>
19156 R:      Kai Vehmanen <kai.vehmanen@linux.intel.com>
19157 M:      Daniel Baluta <daniel.baluta@nxp.com>
19158 L:      sound-open-firmware@alsa-project.org (moderated for non-subscribers)
19159 S:      Supported
19160 W:      https://github.com/thesofproject/linux/
19161 F:      sound/soc/sof/
19162
19163 SOUNDWIRE SUBSYSTEM
19164 M:      Vinod Koul <vkoul@kernel.org>
19165 M:      Bard Liao <yung-chuan.liao@linux.intel.com>
19166 R:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
19167 R:      Sanyog Kale <sanyog.r.kale@intel.com>
19168 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19169 S:      Supported
19170 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vkoul/soundwire.git
19171 F:      Documentation/driver-api/soundwire/
19172 F:      drivers/soundwire/
19173 F:      include/linux/soundwire/
19174
19175 SP2 MEDIA DRIVER
19176 M:      Olli Salonen <olli.salonen@iki.fi>
19177 L:      linux-media@vger.kernel.org
19178 S:      Maintained
19179 W:      https://linuxtv.org
19180 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19181 F:      drivers/media/dvb-frontends/sp2*
19182
19183 SPARC + UltraSPARC (sparc/sparc64)
19184 M:      "David S. Miller" <davem@davemloft.net>
19185 L:      sparclinux@vger.kernel.org
19186 S:      Maintained
19187 Q:      http://patchwork.ozlabs.org/project/sparclinux/list/
19188 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
19189 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
19190 F:      arch/sparc/
19191 F:      drivers/sbus/
19192
19193 SPARC SERIAL DRIVERS
19194 M:      "David S. Miller" <davem@davemloft.net>
19195 L:      sparclinux@vger.kernel.org
19196 S:      Maintained
19197 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
19198 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
19199 F:      drivers/tty/serial/suncore.c
19200 F:      drivers/tty/serial/sunhv.c
19201 F:      drivers/tty/serial/sunsab.c
19202 F:      drivers/tty/serial/sunsab.h
19203 F:      drivers/tty/serial/sunsu.c
19204 F:      drivers/tty/serial/sunzilog.c
19205 F:      drivers/tty/serial/sunzilog.h
19206 F:      drivers/tty/vcc.c
19207 F:      include/linux/sunserialcore.h
19208
19209 SPARSE CHECKER
19210 M:      "Luc Van Oostenryck" <luc.vanoostenryck@gmail.com>
19211 L:      linux-sparse@vger.kernel.org
19212 S:      Maintained
19213 W:      https://sparse.docs.kernel.org/
19214 T:      git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
19215 Q:      https://patchwork.kernel.org/project/linux-sparse/list/
19216 B:      https://bugzilla.kernel.org/enter_bug.cgi?component=Sparse&product=Tools
19217 F:      include/linux/compiler.h
19218
19219 SPEAKUP CONSOLE SPEECH DRIVER
19220 M:      William Hubbs <w.d.hubbs@gmail.com>
19221 M:      Chris Brannon <chris@the-brannons.com>
19222 M:      Kirk Reiser <kirk@reisers.ca>
19223 M:      Samuel Thibault <samuel.thibault@ens-lyon.org>
19224 L:      speakup@linux-speakup.org
19225 S:      Odd Fixes
19226 W:      http://www.linux-speakup.org/
19227 W:      https://github.com/linux-speakup/speakup
19228 B:      https://github.com/linux-speakup/speakup/issues
19229 F:      drivers/accessibility/speakup/
19230
19231 SPEAR PLATFORM/CLOCK/PINCTRL SUPPORT
19232 M:      Viresh Kumar <vireshk@kernel.org>
19233 M:      Shiraz Hashim <shiraz.linux.kernel@gmail.com>
19234 M:      soc@kernel.org
19235 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
19236 S:      Maintained
19237 W:      http://www.st.com/spear
19238 F:      arch/arm/boot/dts/spear*
19239 F:      arch/arm/mach-spear/
19240 F:      drivers/clk/spear/
19241 F:      drivers/pinctrl/spear/
19242
19243 SPI NOR SUBSYSTEM
19244 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
19245 M:      Pratyush Yadav <pratyush@kernel.org>
19246 R:      Michael Walle <michael@walle.cc>
19247 L:      linux-mtd@lists.infradead.org
19248 S:      Maintained
19249 W:      http://www.linux-mtd.infradead.org/
19250 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
19251 C:      irc://irc.oftc.net/mtd
19252 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git spi-nor/next
19253 F:      Documentation/devicetree/bindings/mtd/jedec,spi-nor.yaml
19254 F:      drivers/mtd/spi-nor/
19255 F:      include/linux/mtd/spi-nor.h
19256
19257 SPI SUBSYSTEM
19258 M:      Mark Brown <broonie@kernel.org>
19259 L:      linux-spi@vger.kernel.org
19260 S:      Maintained
19261 Q:      http://patchwork.kernel.org/project/spi-devel-general/list/
19262 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
19263 F:      Documentation/devicetree/bindings/spi/
19264 F:      Documentation/spi/
19265 F:      drivers/spi/
19266 F:      include/linux/spi/
19267 F:      include/uapi/linux/spi/
19268 F:      tools/spi/
19269
19270 SPIDERNET NETWORK DRIVER for CELL
19271 M:      Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
19272 M:      Geoff Levand <geoff@infradead.org>
19273 L:      netdev@vger.kernel.org
19274 L:      linuxppc-dev@lists.ozlabs.org
19275 S:      Maintained
19276 F:      Documentation/networking/device_drivers/ethernet/toshiba/spider_net.rst
19277 F:      drivers/net/ethernet/toshiba/spider_net*
19278
19279 SPMI SUBSYSTEM
19280 M:      Stephen Boyd <sboyd@kernel.org>
19281 L:      linux-kernel@vger.kernel.org
19282 S:      Maintained
19283 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sboyd/spmi.git
19284 F:      Documentation/devicetree/bindings/spmi/
19285 F:      drivers/spmi/
19286 F:      include/dt-bindings/spmi/spmi.h
19287 F:      include/linux/spmi.h
19288 F:      include/trace/events/spmi.h
19289
19290 SPU FILE SYSTEM
19291 M:      Jeremy Kerr <jk@ozlabs.org>
19292 L:      linuxppc-dev@lists.ozlabs.org
19293 S:      Supported
19294 W:      http://www.ibm.com/developerworks/power/cell/
19295 F:      Documentation/filesystems/spufs/spufs.rst
19296 F:      arch/powerpc/platforms/cell/spufs/
19297
19298 SQUASHFS FILE SYSTEM
19299 M:      Phillip Lougher <phillip@squashfs.org.uk>
19300 L:      squashfs-devel@lists.sourceforge.net (subscribers-only)
19301 S:      Maintained
19302 W:      http://squashfs.org.uk
19303 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pkl/squashfs-next.git
19304 F:      Documentation/filesystems/squashfs.rst
19305 F:      fs/squashfs/
19306
19307 SRM (Alpha) environment access
19308 M:      Jan-Benedict Glaw <jbglaw@lug-owl.de>
19309 S:      Maintained
19310 F:      arch/alpha/kernel/srm_env.c
19311
19312 ST LSM6DSx IMU IIO DRIVER
19313 M:      Lorenzo Bianconi <lorenzo@kernel.org>
19314 L:      linux-iio@vger.kernel.org
19315 S:      Maintained
19316 W:      http://www.st.com/
19317 F:      Documentation/devicetree/bindings/iio/imu/st,lsm6dsx.yaml
19318 F:      drivers/iio/imu/st_lsm6dsx/
19319
19320 ST MIPID02 CSI-2 TO PARALLEL BRIDGE DRIVER
19321 M:      Benjamin Mugnier <benjamin.mugnier@foss.st.com>
19322 M:      Sylvain Petinot <sylvain.petinot@foss.st.com>
19323 L:      linux-media@vger.kernel.org
19324 S:      Maintained
19325 T:      git git://linuxtv.org/media_tree.git
19326 F:      Documentation/devicetree/bindings/media/i2c/st,st-mipid02.txt
19327 F:      drivers/media/i2c/st-mipid02.c
19328
19329 ST STM32 I2C/SMBUS DRIVER
19330 M:      Pierre-Yves MORDRET <pierre-yves.mordret@foss.st.com>
19331 M:      Alain Volmat <alain.volmat@foss.st.com>
19332 L:      linux-i2c@vger.kernel.org
19333 S:      Maintained
19334 F:      drivers/i2c/busses/i2c-stm32*
19335
19336 ST STM32 SPI DRIVER
19337 M:      Alain Volmat <alain.volmat@foss.st.com>
19338 L:      linux-spi@vger.kernel.org
19339 S:      Maintained
19340 F:      drivers/spi/spi-stm32.c
19341
19342 ST STPDDC60 DRIVER
19343 M:      Daniel Nilsson <daniel.nilsson@flex.com>
19344 L:      linux-hwmon@vger.kernel.org
19345 S:      Maintained
19346 F:      Documentation/hwmon/stpddc60.rst
19347 F:      drivers/hwmon/pmbus/stpddc60.c
19348
19349 ST VL53L0X ToF RANGER(I2C) IIO DRIVER
19350 M:      Song Qiang <songqiang1304521@gmail.com>
19351 L:      linux-iio@vger.kernel.org
19352 S:      Maintained
19353 F:      Documentation/devicetree/bindings/iio/proximity/st,vl53l0x.yaml
19354 F:      drivers/iio/proximity/vl53l0x-i2c.c
19355
19356 STABLE BRANCH
19357 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
19358 M:      Sasha Levin <sashal@kernel.org>
19359 L:      stable@vger.kernel.org
19360 S:      Supported
19361 F:      Documentation/process/stable-kernel-rules.rst
19362
19363 STAGING - ATOMISP DRIVER
19364 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
19365 R:      Sakari Ailus <sakari.ailus@linux.intel.com>
19366 L:      linux-media@vger.kernel.org
19367 S:      Maintained
19368 F:      drivers/staging/media/atomisp/
19369
19370 STAGING - FIELDBUS SUBSYSTEM
19371 M:      Sven Van Asbroeck <TheSven73@gmail.com>
19372 S:      Maintained
19373 F:      drivers/staging/fieldbus/*
19374 F:      drivers/staging/fieldbus/Documentation/
19375
19376 STAGING - HMS ANYBUS-S BUS
19377 M:      Sven Van Asbroeck <TheSven73@gmail.com>
19378 S:      Maintained
19379 F:      drivers/staging/fieldbus/anybuss/
19380
19381 STAGING - INDUSTRIAL IO
19382 M:      Jonathan Cameron <jic23@kernel.org>
19383 L:      linux-iio@vger.kernel.org
19384 S:      Odd Fixes
19385 F:      Documentation/devicetree/bindings/staging/iio/
19386 F:      drivers/staging/iio/
19387
19388 STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
19389 M:      Marc Dietrich <marvin24@gmx.de>
19390 L:      ac100@lists.launchpad.net (moderated for non-subscribers)
19391 L:      linux-tegra@vger.kernel.org
19392 S:      Maintained
19393 F:      drivers/staging/nvec/
19394
19395 STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
19396 M:      Jens Frederich <jfrederich@gmail.com>
19397 M:      Jon Nettleton <jon.nettleton@gmail.com>
19398 S:      Maintained
19399 W:      http://wiki.laptop.org/go/DCON
19400 F:      drivers/staging/olpc_dcon/
19401
19402 STAGING - REALTEK RTL8188EU DRIVERS
19403 M:      Larry Finger <Larry.Finger@lwfinger.net>
19404 M:      Phillip Potter <phil@philpotter.co.uk>
19405 R:      Pavel Skripkin <paskripkin@gmail.com>
19406 S:      Supported
19407 F:      drivers/staging/r8188eu/
19408
19409 STAGING - REALTEK RTL8712U DRIVERS
19410 M:      Larry Finger <Larry.Finger@lwfinger.net>
19411 M:      Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
19412 S:      Odd Fixes
19413 F:      drivers/staging/rtl8712/
19414
19415 STAGING - SEPS525 LCD CONTROLLER DRIVERS
19416 M:      Michael Hennerich <michael.hennerich@analog.com>
19417 L:      linux-fbdev@vger.kernel.org
19418 S:      Supported
19419 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7606.yaml
19420 F:      drivers/staging/fbtft/fb_seps525.c
19421
19422 STAGING - SILICON MOTION SM750 FRAME BUFFER DRIVER
19423 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
19424 M:      Teddy Wang <teddy.wang@siliconmotion.com>
19425 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
19426 L:      linux-fbdev@vger.kernel.org
19427 S:      Maintained
19428 F:      drivers/staging/sm750fb/
19429
19430 STAGING - VIA VT665X DRIVERS
19431 M:      Forest Bond <forest@alittletooquiet.net>
19432 S:      Odd Fixes
19433 F:      drivers/staging/vt665?/
19434
19435 STAGING SUBSYSTEM
19436 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
19437 L:      linux-staging@lists.linux.dev
19438 S:      Supported
19439 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
19440 F:      drivers/staging/
19441
19442 STARFIRE/DURALAN NETWORK DRIVER
19443 M:      Ion Badulescu <ionut@badula.org>
19444 S:      Odd Fixes
19445 F:      drivers/net/ethernet/adaptec/starfire*
19446
19447 STARFIVE JH7100 CLOCK DRIVERS
19448 M:      Emil Renner Berthing <kernel@esmil.dk>
19449 S:      Maintained
19450 F:      Documentation/devicetree/bindings/clock/starfive,jh7100-*.yaml
19451 F:      drivers/clk/starfive/clk-starfive-jh7100*
19452 F:      include/dt-bindings/clock/starfive-jh7100*.h
19453
19454 STARFIVE JH7100 PINCTRL DRIVER
19455 M:      Emil Renner Berthing <kernel@esmil.dk>
19456 L:      linux-gpio@vger.kernel.org
19457 S:      Maintained
19458 F:      Documentation/devicetree/bindings/pinctrl/starfive,jh7100-pinctrl.yaml
19459 F:      drivers/pinctrl/pinctrl-starfive.c
19460 F:      include/dt-bindings/pinctrl/pinctrl-starfive.h
19461
19462 STARFIVE JH7100 RESET CONTROLLER DRIVER
19463 M:      Emil Renner Berthing <kernel@esmil.dk>
19464 S:      Maintained
19465 F:      Documentation/devicetree/bindings/reset/starfive,jh7100-reset.yaml
19466 F:      drivers/reset/reset-starfive-jh7100.c
19467 F:      include/dt-bindings/reset/starfive-jh7100.h
19468
19469 STATIC BRANCH/CALL
19470 M:      Peter Zijlstra <peterz@infradead.org>
19471 M:      Josh Poimboeuf <jpoimboe@kernel.org>
19472 M:      Jason Baron <jbaron@akamai.com>
19473 R:      Steven Rostedt <rostedt@goodmis.org>
19474 R:      Ard Biesheuvel <ardb@kernel.org>
19475 S:      Supported
19476 F:      arch/*/include/asm/jump_label*.h
19477 F:      arch/*/include/asm/static_call*.h
19478 F:      arch/*/kernel/jump_label.c
19479 F:      arch/*/kernel/static_call.c
19480 F:      include/linux/jump_label*.h
19481 F:      include/linux/static_call*.h
19482 F:      kernel/jump_label.c
19483 F:      kernel/static_call.c
19484
19485 STI AUDIO (ASoC) DRIVERS
19486 M:      Arnaud Pouliquen <arnaud.pouliquen@foss.st.com>
19487 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19488 S:      Maintained
19489 F:      Documentation/devicetree/bindings/sound/st,sti-asoc-card.txt
19490 F:      sound/soc/sti/
19491
19492 STI CEC DRIVER
19493 M:      Alain Volmat <alain.volmat@foss.st.com>
19494 S:      Maintained
19495 F:      Documentation/devicetree/bindings/media/stih-cec.txt
19496 F:      drivers/media/cec/platform/sti/
19497
19498 STK1160 USB VIDEO CAPTURE DRIVER
19499 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
19500 L:      linux-media@vger.kernel.org
19501 S:      Maintained
19502 T:      git git://linuxtv.org/media_tree.git
19503 F:      drivers/media/usb/stk1160/
19504
19505 STM32 AUDIO (ASoC) DRIVERS
19506 M:      Olivier Moysan <olivier.moysan@foss.st.com>
19507 M:      Arnaud Pouliquen <arnaud.pouliquen@foss.st.com>
19508 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19509 S:      Maintained
19510 F:      Documentation/devicetree/bindings/iio/adc/st,stm32-dfsdm-adc.yaml
19511 F:      Documentation/devicetree/bindings/sound/st,stm32-*.yaml
19512 F:      sound/soc/stm/
19513
19514 STM32 TIMER/LPTIMER DRIVERS
19515 M:      Fabrice Gasnier <fabrice.gasnier@foss.st.com>
19516 S:      Maintained
19517 F:      Documentation/ABI/testing/*timer-stm32
19518 F:      Documentation/devicetree/bindings/*/*stm32-*timer*
19519 F:      drivers/*/stm32-*timer*
19520 F:      drivers/pwm/pwm-stm32*
19521 F:      include/linux/*/stm32-*tim*
19522
19523 STMMAC ETHERNET DRIVER
19524 M:      Giuseppe Cavallaro <peppe.cavallaro@st.com>
19525 M:      Alexandre Torgue <alexandre.torgue@foss.st.com>
19526 M:      Jose Abreu <joabreu@synopsys.com>
19527 L:      netdev@vger.kernel.org
19528 S:      Supported
19529 W:      http://www.stlinux.com
19530 F:      Documentation/networking/device_drivers/ethernet/stmicro/
19531 F:      drivers/net/ethernet/stmicro/stmmac/
19532
19533 SUN3/3X
19534 M:      Sam Creasey <sammy@sammy.net>
19535 S:      Maintained
19536 W:      http://sammy.net/sun3/
19537 F:      arch/m68k/include/asm/sun3*
19538 F:      arch/m68k/kernel/*sun3*
19539 F:      arch/m68k/sun3*/
19540 F:      drivers/net/ethernet/i825xx/sun3*
19541
19542 SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER
19543 M:      Hans de Goede <hdegoede@redhat.com>
19544 L:      linux-input@vger.kernel.org
19545 S:      Maintained
19546 F:      Documentation/devicetree/bindings/input/allwinner,sun4i-a10-lradc-keys.yaml
19547 F:      drivers/input/keyboard/sun4i-lradc-keys.c
19548
19549 SUNDANCE NETWORK DRIVER
19550 M:      Denis Kirjanov <kda@linux-powerpc.org>
19551 L:      netdev@vger.kernel.org
19552 S:      Maintained
19553 F:      drivers/net/ethernet/dlink/sundance.c
19554
19555 SUN HAPPY MEAL ETHERNET DRIVER
19556 M:      Sean Anderson <seanga2@gmail.com>
19557 S:      Maintained
19558 F:      drivers/net/ethernet/sun/sunhme.*
19559
19560 SUNPLUS ETHERNET DRIVER
19561 M:      Wells Lu <wellslutw@gmail.com>
19562 L:      netdev@vger.kernel.org
19563 S:      Maintained
19564 W:      https://sunplus.atlassian.net/wiki/spaces/doc/overview
19565 F:      Documentation/devicetree/bindings/net/sunplus,sp7021-emac.yaml
19566 F:      drivers/net/ethernet/sunplus/
19567
19568 SUNPLUS OCOTP DRIVER
19569 M:      Vincent Shih <vincent.sunplus@gmail.com>
19570 S:      Maintained
19571 F:      Documentation/devicetree/bindings/nvmem/sunplus,sp7021-ocotp.yaml
19572 F:      drivers/nvmem/sunplus-ocotp.c
19573
19574 SUNPLUS PWM DRIVER
19575 M:      Hammer Hsieh <hammerh0314@gmail.com>
19576 S:      Maintained
19577 F:      Documentation/devicetree/bindings/pwm/sunplus,sp7021-pwm.yaml
19578 F:      drivers/pwm/pwm-sunplus.c
19579
19580 SUNPLUS RTC DRIVER
19581 M:      Vincent Shih <vincent.sunplus@gmail.com>
19582 L:      linux-rtc@vger.kernel.org
19583 S:      Maintained
19584 F:      Documentation/devicetree/bindings/rtc/sunplus,sp7021-rtc.yaml
19585 F:      drivers/rtc/rtc-sunplus.c
19586
19587 SUNPLUS SPI CONTROLLER INTERFACE DRIVER
19588 M:      Li-hao Kuo <lhjeff911@gmail.com>
19589 L:      linux-spi@vger.kernel.org
19590 S:      Maintained
19591 F:      Documentation/devicetree/bindings/spi/spi-sunplus-sp7021.yaml
19592 F:      drivers/spi/spi-sunplus-sp7021.c
19593
19594 SUNPLUS UART DRIVER
19595 M:      Hammer Hsieh <hammerh0314@gmail.com>
19596 S:      Maintained
19597 F:      Documentation/devicetree/bindings/serial/sunplus,sp7021-uart.yaml
19598 F:      drivers/tty/serial/sunplus-uart.c
19599
19600 SUNPLUS WATCHDOG DRIVER
19601 M:      Xiantao Hu <xt.hu@cqplus1.com>
19602 L:      linux-watchdog@vger.kernel.org
19603 S:      Maintained
19604 F:      Documentation/devicetree/bindings/watchdog/sunplus,sp7021-wdt.yaml
19605 F:      drivers/watchdog/sunplus_wdt.c
19606
19607 SUPERH
19608 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
19609 M:      Rich Felker <dalias@libc.org>
19610 L:      linux-sh@vger.kernel.org
19611 S:      Maintained
19612 Q:      http://patchwork.kernel.org/project/linux-sh/list/
19613 F:      Documentation/sh/
19614 F:      arch/sh/
19615 F:      drivers/sh/
19616
19617 SUSPEND TO RAM
19618 M:      "Rafael J. Wysocki" <rafael@kernel.org>
19619 M:      Len Brown <len.brown@intel.com>
19620 M:      Pavel Machek <pavel@ucw.cz>
19621 L:      linux-pm@vger.kernel.org
19622 S:      Supported
19623 B:      https://bugzilla.kernel.org
19624 F:      Documentation/power/
19625 F:      arch/x86/kernel/acpi/
19626 F:      drivers/base/power/
19627 F:      include/linux/freezer.h
19628 F:      include/linux/pm.h
19629 F:      include/linux/suspend.h
19630 F:      kernel/power/
19631
19632 SVGA HANDLING
19633 M:      Martin Mares <mj@ucw.cz>
19634 L:      linux-video@atrey.karlin.mff.cuni.cz
19635 S:      Maintained
19636 F:      Documentation/admin-guide/svga.rst
19637 F:      arch/x86/boot/video*
19638
19639 SWIOTLB SUBSYSTEM
19640 M:      Christoph Hellwig <hch@infradead.org>
19641 L:      iommu@lists.linux.dev
19642 S:      Supported
19643 W:      http://git.infradead.org/users/hch/dma-mapping.git
19644 T:      git git://git.infradead.org/users/hch/dma-mapping.git
19645 F:      arch/*/kernel/pci-swiotlb.c
19646 F:      include/linux/swiotlb.h
19647 F:      kernel/dma/swiotlb.c
19648
19649 SWITCHDEV
19650 M:      Jiri Pirko <jiri@resnulli.us>
19651 M:      Ivan Vecera <ivecera@redhat.com>
19652 L:      netdev@vger.kernel.org
19653 S:      Supported
19654 F:      include/net/switchdev.h
19655 F:      net/switchdev/
19656
19657 SY8106A REGULATOR DRIVER
19658 M:      Icenowy Zheng <icenowy@aosc.io>
19659 S:      Maintained
19660 F:      Documentation/devicetree/bindings/regulator/silergy,sy8106a.yaml
19661 F:      drivers/regulator/sy8106a-regulator.c
19662
19663 SYNC FILE FRAMEWORK
19664 M:      Sumit Semwal <sumit.semwal@linaro.org>
19665 R:      Gustavo Padovan <gustavo@padovan.org>
19666 L:      linux-media@vger.kernel.org
19667 L:      dri-devel@lists.freedesktop.org
19668 S:      Maintained
19669 T:      git git://anongit.freedesktop.org/drm/drm-misc
19670 F:      Documentation/driver-api/sync_file.rst
19671 F:      drivers/dma-buf/dma-fence*
19672 F:      drivers/dma-buf/sw_sync.c
19673 F:      drivers/dma-buf/sync_*
19674 F:      include/linux/sync_file.h
19675 F:      include/uapi/linux/sync_file.h
19676
19677 SYNOPSYS ARC ARCHITECTURE
19678 M:      Vineet Gupta <vgupta@kernel.org>
19679 L:      linux-snps-arc@lists.infradead.org
19680 S:      Supported
19681 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc.git
19682 F:      Documentation/arc/
19683 F:      Documentation/devicetree/bindings/arc/*
19684 F:      Documentation/devicetree/bindings/interrupt-controller/snps,arc*
19685 F:      arch/arc/
19686 F:      drivers/clocksource/arc_timer.c
19687 F:      drivers/tty/serial/arc_uart.c
19688
19689 SYNOPSYS ARC HSDK SDP pll clock driver
19690 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
19691 S:      Supported
19692 F:      Documentation/devicetree/bindings/clock/snps,hsdk-pll-clock.txt
19693 F:      drivers/clk/clk-hsdk-pll.c
19694
19695 SYNOPSYS ARC SDP clock driver
19696 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
19697 S:      Supported
19698 F:      Documentation/devicetree/bindings/clock/snps,pll-clock.txt
19699 F:      drivers/clk/axs10x/*
19700
19701 SYNOPSYS ARC SDP platform support
19702 M:      Alexey Brodkin <abrodkin@synopsys.com>
19703 S:      Supported
19704 F:      Documentation/devicetree/bindings/arc/axs10*
19705 F:      arch/arc/boot/dts/ax*
19706 F:      arch/arc/plat-axs10x
19707
19708 SYNOPSYS AXS10x RESET CONTROLLER DRIVER
19709 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
19710 S:      Supported
19711 F:      Documentation/devicetree/bindings/reset/snps,axs10x-reset.yaml
19712 F:      drivers/reset/reset-axs10x.c
19713
19714 SYNOPSYS CREG GPIO DRIVER
19715 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
19716 S:      Maintained
19717 F:      Documentation/devicetree/bindings/gpio/snps,creg-gpio.txt
19718 F:      drivers/gpio/gpio-creg-snps.c
19719
19720 SYNOPSYS DESIGNWARE 8250 UART DRIVER
19721 M:      Ilpo Järvinen <ilpo.jarvinen@linux.intel.com>
19722 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
19723 S:      Supported
19724 F:      drivers/tty/serial/8250/8250_dw.c
19725 F:      drivers/tty/serial/8250/8250_dwlib.*
19726 F:      drivers/tty/serial/8250/8250_lpss.c
19727
19728 SYNOPSYS DESIGNWARE APB GPIO DRIVER
19729 M:      Hoan Tran <hoan@os.amperecomputing.com>
19730 M:      Serge Semin <fancer.lancer@gmail.com>
19731 L:      linux-gpio@vger.kernel.org
19732 S:      Maintained
19733 F:      Documentation/devicetree/bindings/gpio/snps,dw-apb-gpio.yaml
19734 F:      drivers/gpio/gpio-dwapb.c
19735
19736 SYNOPSYS DESIGNWARE APB SSI DRIVER
19737 M:      Serge Semin <fancer.lancer@gmail.com>
19738 L:      linux-spi@vger.kernel.org
19739 S:      Supported
19740 F:      Documentation/devicetree/bindings/spi/snps,dw-apb-ssi.yaml
19741 F:      drivers/spi/spi-dw*
19742
19743 SYNOPSYS DESIGNWARE AXI DMAC DRIVER
19744 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
19745 S:      Maintained
19746 F:      Documentation/devicetree/bindings/dma/snps,dw-axi-dmac.yaml
19747 F:      drivers/dma/dw-axi-dmac/
19748
19749 SYNOPSYS DESIGNWARE DMAC DRIVER
19750 M:      Viresh Kumar <vireshk@kernel.org>
19751 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
19752 S:      Maintained
19753 F:      Documentation/devicetree/bindings/dma/renesas,rzn1-dmamux.yaml
19754 F:      Documentation/devicetree/bindings/dma/snps,dma-spear1340.yaml
19755 F:      drivers/dma/dw/
19756 F:      include/dt-bindings/dma/dw-dmac.h
19757 F:      include/linux/dma/dw.h
19758 F:      include/linux/platform_data/dma-dw.h
19759
19760 SYNOPSYS DESIGNWARE ENTERPRISE ETHERNET DRIVER
19761 M:      Jose Abreu <Jose.Abreu@synopsys.com>
19762 L:      netdev@vger.kernel.org
19763 S:      Supported
19764 F:      drivers/net/ethernet/synopsys/
19765
19766 SYNOPSYS DESIGNWARE ETHERNET XPCS DRIVER
19767 M:      Jose Abreu <Jose.Abreu@synopsys.com>
19768 L:      netdev@vger.kernel.org
19769 S:      Supported
19770 F:      drivers/net/pcs/pcs-xpcs.c
19771 F:      drivers/net/pcs/pcs-xpcs.h
19772 F:      include/linux/pcs/pcs-xpcs.h
19773
19774 SYNOPSYS DESIGNWARE I2C DRIVER
19775 M:      Jarkko Nikula <jarkko.nikula@linux.intel.com>
19776 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
19777 R:      Mika Westerberg <mika.westerberg@linux.intel.com>
19778 R:      Jan Dabros <jsd@semihalf.com>
19779 L:      linux-i2c@vger.kernel.org
19780 S:      Supported
19781 F:      drivers/i2c/busses/i2c-designware-*
19782
19783 SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
19784 M:      Jaehoon Chung <jh80.chung@samsung.com>
19785 L:      linux-mmc@vger.kernel.org
19786 S:      Maintained
19787 F:      drivers/mmc/host/dw_mmc*
19788
19789 SYNOPSYS HSDK RESET CONTROLLER DRIVER
19790 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
19791 S:      Supported
19792 F:      Documentation/devicetree/bindings/reset/snps,hsdk-reset.txt
19793 F:      drivers/reset/reset-hsdk.c
19794 F:      include/dt-bindings/reset/snps,hsdk-reset.h
19795
19796 SYNOPSYS SDHCI COMPLIANT DWC MSHC DRIVER
19797 M:      Prabu Thangamuthu <prabu.t@synopsys.com>
19798 M:      Manjunath M B <manjumb@synopsys.com>
19799 L:      linux-mmc@vger.kernel.org
19800 S:      Maintained
19801 F:      drivers/mmc/host/sdhci-pci-dwc-mshc.c
19802
19803 SYSTEM CONFIGURATION (SYSCON)
19804 M:      Lee Jones <lee@kernel.org>
19805 M:      Arnd Bergmann <arnd@arndb.de>
19806 S:      Supported
19807 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
19808 F:      drivers/mfd/syscon.c
19809
19810 SYSTEM CONTROL & POWER/MANAGEMENT INTERFACE (SCPI/SCMI) Message Protocol drivers
19811 M:      Sudeep Holla <sudeep.holla@arm.com>
19812 R:      Cristian Marussi <cristian.marussi@arm.com>
19813 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
19814 S:      Maintained
19815 F:      Documentation/devicetree/bindings/firmware/arm,sc[mp]i.yaml
19816 F:      drivers/clk/clk-sc[mp]i.c
19817 F:      drivers/cpufreq/sc[mp]i-cpufreq.c
19818 F:      drivers/firmware/arm_scmi/
19819 F:      drivers/firmware/arm_scpi.c
19820 F:      drivers/regulator/scmi-regulator.c
19821 F:      drivers/reset/reset-scmi.c
19822 F:      include/linux/sc[mp]i_protocol.h
19823 F:      include/trace/events/scmi.h
19824 F:      include/uapi/linux/virtio_scmi.h
19825
19826 SYSTEM RESET/SHUTDOWN DRIVERS
19827 M:      Sebastian Reichel <sre@kernel.org>
19828 L:      linux-pm@vger.kernel.org
19829 S:      Maintained
19830 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
19831 F:      Documentation/devicetree/bindings/power/reset/
19832 F:      drivers/power/reset/
19833
19834 SYSTEM TRACE MODULE CLASS
19835 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
19836 S:      Maintained
19837 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ash/stm.git
19838 F:      Documentation/trace/stm.rst
19839 F:      drivers/hwtracing/stm/
19840 F:      include/linux/stm.h
19841 F:      include/uapi/linux/stm.h
19842
19843 SYSTEM76 ACPI DRIVER
19844 M:      Jeremy Soller <jeremy@system76.com>
19845 M:      System76 Product Development <productdev@system76.com>
19846 L:      platform-driver-x86@vger.kernel.org
19847 S:      Maintained
19848 F:      drivers/platform/x86/system76_acpi.c
19849
19850 SYSV FILESYSTEM
19851 M:      Christoph Hellwig <hch@infradead.org>
19852 S:      Maintained
19853 F:      Documentation/filesystems/sysv-fs.rst
19854 F:      fs/sysv/
19855 F:      include/linux/sysv_fs.h
19856
19857 TASKSTATS STATISTICS INTERFACE
19858 M:      Balbir Singh <bsingharora@gmail.com>
19859 S:      Maintained
19860 F:      Documentation/accounting/taskstats*
19861 F:      include/linux/taskstats*
19862 F:      kernel/taskstats.c
19863
19864 TC subsystem
19865 M:      Jamal Hadi Salim <jhs@mojatatu.com>
19866 M:      Cong Wang <xiyou.wangcong@gmail.com>
19867 M:      Jiri Pirko <jiri@resnulli.us>
19868 L:      netdev@vger.kernel.org
19869 S:      Maintained
19870 F:      include/net/pkt_cls.h
19871 F:      include/net/pkt_sched.h
19872 F:      include/net/tc_act/
19873 F:      include/uapi/linux/pkt_cls.h
19874 F:      include/uapi/linux/pkt_sched.h
19875 F:      include/uapi/linux/tc_act/
19876 F:      include/uapi/linux/tc_ematch/
19877 F:      net/sched/
19878 F:      tools/testing/selftests/tc-testing
19879
19880 TC90522 MEDIA DRIVER
19881 M:      Akihiro Tsukada <tskd08@gmail.com>
19882 L:      linux-media@vger.kernel.org
19883 S:      Odd Fixes
19884 F:      drivers/media/dvb-frontends/tc90522*
19885
19886 TCP LOW PRIORITY MODULE
19887 M:      "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
19888 M:      "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
19889 S:      Maintained
19890 W:      http://tcp-lp-mod.sourceforge.net/
19891 F:      net/ipv4/tcp_lp.c
19892
19893 TDA10071 MEDIA DRIVER
19894 M:      Antti Palosaari <crope@iki.fi>
19895 L:      linux-media@vger.kernel.org
19896 S:      Maintained
19897 W:      https://linuxtv.org
19898 W:      http://palosaari.fi/linux/
19899 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19900 T:      git git://linuxtv.org/anttip/media_tree.git
19901 F:      drivers/media/dvb-frontends/tda10071*
19902
19903 TDA18212 MEDIA DRIVER
19904 M:      Antti Palosaari <crope@iki.fi>
19905 L:      linux-media@vger.kernel.org
19906 S:      Maintained
19907 W:      https://linuxtv.org
19908 W:      http://palosaari.fi/linux/
19909 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19910 T:      git git://linuxtv.org/anttip/media_tree.git
19911 F:      drivers/media/tuners/tda18212*
19912
19913 TDA18218 MEDIA DRIVER
19914 M:      Antti Palosaari <crope@iki.fi>
19915 L:      linux-media@vger.kernel.org
19916 S:      Maintained
19917 W:      https://linuxtv.org
19918 W:      http://palosaari.fi/linux/
19919 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19920 T:      git git://linuxtv.org/anttip/media_tree.git
19921 F:      drivers/media/tuners/tda18218*
19922
19923 TDA18250 MEDIA DRIVER
19924 M:      Olli Salonen <olli.salonen@iki.fi>
19925 L:      linux-media@vger.kernel.org
19926 S:      Maintained
19927 W:      https://linuxtv.org
19928 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19929 T:      git git://linuxtv.org/media_tree.git
19930 F:      drivers/media/tuners/tda18250*
19931
19932 TDA18271 MEDIA DRIVER
19933 M:      Michael Krufky <mkrufky@linuxtv.org>
19934 L:      linux-media@vger.kernel.org
19935 S:      Maintained
19936 W:      https://linuxtv.org
19937 W:      http://github.com/mkrufky
19938 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19939 T:      git git://linuxtv.org/mkrufky/tuners.git
19940 F:      drivers/media/tuners/tda18271*
19941
19942 TDA1997x MEDIA DRIVER
19943 M:      Tim Harvey <tharvey@gateworks.com>
19944 L:      linux-media@vger.kernel.org
19945 S:      Maintained
19946 W:      https://linuxtv.org
19947 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19948 F:      drivers/media/i2c/tda1997x.*
19949
19950 TDA827x MEDIA DRIVER
19951 M:      Michael Krufky <mkrufky@linuxtv.org>
19952 L:      linux-media@vger.kernel.org
19953 S:      Maintained
19954 W:      https://linuxtv.org
19955 W:      http://github.com/mkrufky
19956 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19957 T:      git git://linuxtv.org/mkrufky/tuners.git
19958 F:      drivers/media/tuners/tda8290.*
19959
19960 TDA8290 MEDIA DRIVER
19961 M:      Michael Krufky <mkrufky@linuxtv.org>
19962 L:      linux-media@vger.kernel.org
19963 S:      Maintained
19964 W:      https://linuxtv.org
19965 W:      http://github.com/mkrufky
19966 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19967 T:      git git://linuxtv.org/mkrufky/tuners.git
19968 F:      drivers/media/tuners/tda8290.*
19969
19970 TDA9840 MEDIA DRIVER
19971 M:      Hans Verkuil <hverkuil@xs4all.nl>
19972 L:      linux-media@vger.kernel.org
19973 S:      Maintained
19974 W:      https://linuxtv.org
19975 T:      git git://linuxtv.org/media_tree.git
19976 F:      drivers/media/i2c/tda9840*
19977
19978 TEA5761 TUNER DRIVER
19979 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
19980 L:      linux-media@vger.kernel.org
19981 S:      Odd fixes
19982 W:      https://linuxtv.org
19983 T:      git git://linuxtv.org/media_tree.git
19984 F:      drivers/media/tuners/tea5761.*
19985
19986 TEA5767 TUNER DRIVER
19987 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
19988 L:      linux-media@vger.kernel.org
19989 S:      Maintained
19990 W:      https://linuxtv.org
19991 T:      git git://linuxtv.org/media_tree.git
19992 F:      drivers/media/tuners/tea5767.*
19993
19994 TEA6415C MEDIA DRIVER
19995 M:      Hans Verkuil <hverkuil@xs4all.nl>
19996 L:      linux-media@vger.kernel.org
19997 S:      Maintained
19998 W:      https://linuxtv.org
19999 T:      git git://linuxtv.org/media_tree.git
20000 F:      drivers/media/i2c/tea6415c*
20001
20002 TEA6420 MEDIA DRIVER
20003 M:      Hans Verkuil <hverkuil@xs4all.nl>
20004 L:      linux-media@vger.kernel.org
20005 S:      Maintained
20006 W:      https://linuxtv.org
20007 T:      git git://linuxtv.org/media_tree.git
20008 F:      drivers/media/i2c/tea6420*
20009
20010 TEAM DRIVER
20011 M:      Jiri Pirko <jiri@resnulli.us>
20012 L:      netdev@vger.kernel.org
20013 S:      Supported
20014 F:      drivers/net/team/
20015 F:      include/linux/if_team.h
20016 F:      include/uapi/linux/if_team.h
20017 F:      tools/testing/selftests/drivers/net/team/
20018
20019 TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
20020 M:      "Savoir-faire Linux Inc." <kernel@savoirfairelinux.com>
20021 S:      Maintained
20022 F:      arch/x86/platform/ts5500/
20023
20024 TECHNOTREND USB IR RECEIVER
20025 M:      Sean Young <sean@mess.org>
20026 L:      linux-media@vger.kernel.org
20027 S:      Maintained
20028 F:      drivers/media/rc/ttusbir.c
20029
20030 TECHWELL TW9910 VIDEO DECODER
20031 L:      linux-media@vger.kernel.org
20032 S:      Orphan
20033 F:      drivers/media/i2c/tw9910.c
20034 F:      include/media/i2c/tw9910.h
20035
20036 TEE SUBSYSTEM
20037 M:      Jens Wiklander <jens.wiklander@linaro.org>
20038 R:      Sumit Garg <sumit.garg@linaro.org>
20039 L:      op-tee@lists.trustedfirmware.org
20040 S:      Maintained
20041 F:      Documentation/staging/tee.rst
20042 F:      drivers/tee/
20043 F:      include/linux/tee_drv.h
20044 F:      include/uapi/linux/tee.h
20045
20046 TEGRA ARCHITECTURE SUPPORT
20047 M:      Thierry Reding <thierry.reding@gmail.com>
20048 M:      Jonathan Hunter <jonathanh@nvidia.com>
20049 L:      linux-tegra@vger.kernel.org
20050 S:      Supported
20051 Q:      http://patchwork.ozlabs.org/project/linux-tegra/list/
20052 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git
20053 N:      [^a-z]tegra
20054
20055 TEGRA CLOCK DRIVER
20056 M:      Peter De Schrijver <pdeschrijver@nvidia.com>
20057 M:      Prashant Gaikwad <pgaikwad@nvidia.com>
20058 S:      Supported
20059 F:      drivers/clk/tegra/
20060
20061 TEGRA DMA DRIVERS
20062 M:      Laxman Dewangan <ldewangan@nvidia.com>
20063 M:      Jon Hunter <jonathanh@nvidia.com>
20064 S:      Supported
20065 F:      drivers/dma/tegra*
20066
20067 TEGRA I2C DRIVER
20068 M:      Laxman Dewangan <ldewangan@nvidia.com>
20069 R:      Dmitry Osipenko <digetx@gmail.com>
20070 S:      Supported
20071 F:      drivers/i2c/busses/i2c-tegra.c
20072
20073 TEGRA IOMMU DRIVERS
20074 M:      Thierry Reding <thierry.reding@gmail.com>
20075 R:      Krishna Reddy <vdumpa@nvidia.com>
20076 L:      linux-tegra@vger.kernel.org
20077 S:      Supported
20078 F:      drivers/iommu/arm/arm-smmu/arm-smmu-nvidia.c
20079 F:      drivers/iommu/tegra*
20080
20081 TEGRA KBC DRIVER
20082 M:      Laxman Dewangan <ldewangan@nvidia.com>
20083 S:      Supported
20084 F:      drivers/input/keyboard/tegra-kbc.c
20085
20086 TEGRA NAND DRIVER
20087 M:      Stefan Agner <stefan@agner.ch>
20088 M:      Lucas Stach <dev@lynxeye.de>
20089 S:      Maintained
20090 F:      Documentation/devicetree/bindings/mtd/nvidia-tegra20-nand.txt
20091 F:      drivers/mtd/nand/raw/tegra_nand.c
20092
20093 TEGRA PWM DRIVER
20094 M:      Thierry Reding <thierry.reding@gmail.com>
20095 S:      Supported
20096 F:      drivers/pwm/pwm-tegra.c
20097
20098 TEGRA SERIAL DRIVER
20099 M:      Laxman Dewangan <ldewangan@nvidia.com>
20100 S:      Supported
20101 F:      drivers/tty/serial/serial-tegra.c
20102
20103 TEGRA SPI DRIVER
20104 M:      Laxman Dewangan <ldewangan@nvidia.com>
20105 S:      Supported
20106 F:      drivers/spi/spi-tegra*
20107
20108 TEGRA QUAD SPI DRIVER
20109 M:      Thierry Reding <thierry.reding@gmail.com>
20110 M:      Jonathan Hunter <jonathanh@nvidia.com>
20111 M:      Sowjanya Komatineni <skomatineni@nvidia.com>
20112 L:      linux-tegra@vger.kernel.org
20113 S:      Maintained
20114 F:      drivers/spi/spi-tegra210-quad.c
20115
20116 TEGRA VIDEO DRIVER
20117 M:      Thierry Reding <thierry.reding@gmail.com>
20118 M:      Jonathan Hunter <jonathanh@nvidia.com>
20119 M:      Sowjanya Komatineni <skomatineni@nvidia.com>
20120 L:      linux-media@vger.kernel.org
20121 L:      linux-tegra@vger.kernel.org
20122 S:      Maintained
20123 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.yaml
20124 F:      drivers/staging/media/tegra-video/
20125
20126 TEGRA XUSB PADCTL DRIVER
20127 M:      JC Kuo <jckuo@nvidia.com>
20128 S:      Supported
20129 F:      drivers/phy/tegra/xusb*
20130
20131 TEHUTI ETHERNET DRIVER
20132 M:      Andy Gospodarek <andy@greyhouse.net>
20133 L:      netdev@vger.kernel.org
20134 S:      Supported
20135 F:      drivers/net/ethernet/tehuti/*
20136
20137 TELECOM CLOCK DRIVER FOR MCPL0010
20138 M:      Mark Gross <markgross@kernel.org>
20139 S:      Supported
20140 F:      drivers/char/tlclk.c
20141
20142 TEMPO SEMICONDUCTOR DRIVERS
20143 M:      Steven Eckhoff <steven.eckhoff.opensource@gmail.com>
20144 S:      Maintained
20145 F:      Documentation/devicetree/bindings/sound/tscs*.txt
20146 F:      sound/soc/codecs/tscs*.c
20147 F:      sound/soc/codecs/tscs*.h
20148
20149 TENSILICA XTENSA PORT (xtensa)
20150 M:      Chris Zankel <chris@zankel.net>
20151 M:      Max Filippov <jcmvbkbc@gmail.com>
20152 L:      linux-xtensa@linux-xtensa.org
20153 S:      Maintained
20154 T:      git git://github.com/czankel/xtensa-linux.git
20155 F:      arch/xtensa/
20156 F:      drivers/irqchip/irq-xtensa-*
20157
20158 TEXAS INSTRUMENTS ASoC DRIVERS
20159 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
20160 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
20161 S:      Maintained
20162 F:      Documentation/devicetree/bindings/sound/davinci-mcasp-audio.yaml
20163 F:      sound/soc/ti/
20164
20165 TEXAS INSTRUMENTS' DAC7612 DAC DRIVER
20166 M:      Ricardo Ribalda <ribalda@kernel.org>
20167 L:      linux-iio@vger.kernel.org
20168 S:      Supported
20169 F:      Documentation/devicetree/bindings/iio/dac/ti,dac7612.yaml
20170 F:      drivers/iio/dac/ti-dac7612.c
20171
20172 TEXAS INSTRUMENTS DMA DRIVERS
20173 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
20174 L:      dmaengine@vger.kernel.org
20175 S:      Maintained
20176 F:      Documentation/devicetree/bindings/dma/ti-dma-crossbar.txt
20177 F:      Documentation/devicetree/bindings/dma/ti-edma.txt
20178 F:      Documentation/devicetree/bindings/dma/ti/
20179 F:      drivers/dma/ti/
20180 X:      drivers/dma/ti/cppi41.c
20181 F:      include/linux/dma/k3-udma-glue.h
20182 F:      include/linux/dma/ti-cppi5.h
20183 F:      include/linux/dma/k3-psil.h
20184
20185 TEXAS INSTRUMENTS' SYSTEM CONTROL INTERFACE (TISCI) PROTOCOL DRIVER
20186 M:      Nishanth Menon <nm@ti.com>
20187 M:      Tero Kristo <kristo@kernel.org>
20188 M:      Santosh Shilimkar <ssantosh@kernel.org>
20189 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
20190 S:      Maintained
20191 F:      Documentation/devicetree/bindings/arm/keystone/ti,k3-sci-common.yaml
20192 F:      Documentation/devicetree/bindings/arm/keystone/ti,sci.yaml
20193 F:      Documentation/devicetree/bindings/clock/ti,sci-clk.yaml
20194 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-inta.yaml
20195 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-intr.yaml
20196 F:      Documentation/devicetree/bindings/reset/ti,sci-reset.yaml
20197 F:      Documentation/devicetree/bindings/soc/ti/sci-pm-domain.yaml
20198 F:      drivers/clk/keystone/sci-clk.c
20199 F:      drivers/firmware/ti_sci*
20200 F:      drivers/irqchip/irq-ti-sci-inta.c
20201 F:      drivers/irqchip/irq-ti-sci-intr.c
20202 F:      drivers/reset/reset-ti-sci.c
20203 F:      drivers/soc/ti/ti_sci_inta_msi.c
20204 F:      drivers/soc/ti/ti_sci_pm_domains.c
20205 F:      include/dt-bindings/soc/ti,sci_pm_domain.h
20206 F:      include/linux/soc/ti/ti_sci_inta_msi.h
20207 F:      include/linux/soc/ti/ti_sci_protocol.h
20208
20209 TEXAS INSTRUMENTS TPS23861 PoE PSE DRIVER
20210 M:      Robert Marko <robert.marko@sartura.hr>
20211 M:      Luka Perkov <luka.perkov@sartura.hr>
20212 L:      linux-hwmon@vger.kernel.org
20213 S:      Maintained
20214 F:      Documentation/devicetree/bindings/hwmon/ti,tps23861.yaml
20215 F:      Documentation/hwmon/tps23861.rst
20216 F:      drivers/hwmon/tps23861.c
20217
20218 TEXAS INSTRUMENTS' TMP117 TEMPERATURE SENSOR DRIVER
20219 M:      Puranjay Mohan <puranjay12@gmail.com>
20220 L:      linux-iio@vger.kernel.org
20221 S:      Supported
20222 F:      Documentation/devicetree/bindings/iio/temperature/ti,tmp117.yaml
20223 F:      drivers/iio/temperature/tmp117.c
20224
20225 THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER
20226 M:      Hans Verkuil <hverkuil@xs4all.nl>
20227 L:      linux-media@vger.kernel.org
20228 S:      Maintained
20229 W:      https://linuxtv.org
20230 T:      git git://linuxtv.org/media_tree.git
20231 F:      drivers/media/radio/radio-raremono.c
20232
20233 THERMAL
20234 M:      Rafael J. Wysocki <rafael@kernel.org>
20235 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
20236 R:      Amit Kucheria <amitk@kernel.org>
20237 R:      Zhang Rui <rui.zhang@intel.com>
20238 L:      linux-pm@vger.kernel.org
20239 S:      Supported
20240 Q:      https://patchwork.kernel.org/project/linux-pm/list/
20241 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git thermal
20242 F:      Documentation/ABI/testing/sysfs-class-thermal
20243 F:      Documentation/devicetree/bindings/thermal/
20244 F:      Documentation/driver-api/thermal/
20245 F:      drivers/thermal/
20246 F:      include/dt-bindings/thermal/
20247 F:      include/linux/cpu_cooling.h
20248 F:      include/linux/thermal.h
20249 F:      include/uapi/linux/thermal.h
20250 F:      tools/lib/thermal/
20251 F:      tools/thermal/
20252
20253 THERMAL DRIVER FOR AMLOGIC SOCS
20254 M:      Guillaume La Roque <glaroque@baylibre.com>
20255 L:      linux-pm@vger.kernel.org
20256 L:      linux-amlogic@lists.infradead.org
20257 S:      Supported
20258 W:      http://linux-meson.com/
20259 F:      Documentation/devicetree/bindings/thermal/amlogic,thermal.yaml
20260 F:      drivers/thermal/amlogic_thermal.c
20261
20262 THERMAL/CPU_COOLING
20263 M:      Amit Daniel Kachhap <amit.kachhap@gmail.com>
20264 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
20265 M:      Viresh Kumar <viresh.kumar@linaro.org>
20266 R:      Lukasz Luba <lukasz.luba@arm.com>
20267 L:      linux-pm@vger.kernel.org
20268 S:      Supported
20269 F:      Documentation/driver-api/thermal/cpu-cooling-api.rst
20270 F:      Documentation/driver-api/thermal/cpu-idle-cooling.rst
20271 F:      drivers/thermal/cpufreq_cooling.c
20272 F:      drivers/thermal/cpuidle_cooling.c
20273 F:      include/linux/cpu_cooling.h
20274
20275 THERMAL/POWER_ALLOCATOR
20276 M:      Lukasz Luba <lukasz.luba@arm.com>
20277 L:      linux-pm@vger.kernel.org
20278 S:      Maintained
20279 F:      Documentation/driver-api/thermal/power_allocator.rst
20280 F:      drivers/thermal/gov_power_allocator.c
20281 F:      include/trace/events/thermal_power_allocator.h
20282
20283 THINKPAD ACPI EXTRAS DRIVER
20284 M:      Henrique de Moraes Holschuh <hmh@hmh.eng.br>
20285 L:      ibm-acpi-devel@lists.sourceforge.net
20286 L:      platform-driver-x86@vger.kernel.org
20287 S:      Maintained
20288 W:      http://ibm-acpi.sourceforge.net
20289 W:      http://thinkwiki.org/wiki/Ibm-acpi
20290 T:      git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
20291 F:      drivers/platform/x86/thinkpad_acpi.c
20292
20293 THINKPAD LMI DRIVER
20294 M:      Mark Pearson <markpearson@lenovo.com>
20295 L:      platform-driver-x86@vger.kernel.org
20296 S:      Maintained
20297 F:      Documentation/ABI/testing/sysfs-class-firmware-attributes
20298 F:      drivers/platform/x86/think-lmi.?
20299
20300 THUNDERBOLT DMA TRAFFIC TEST DRIVER
20301 M:      Isaac Hazan <isaac.hazan@intel.com>
20302 L:      linux-usb@vger.kernel.org
20303 S:      Maintained
20304 F:      drivers/thunderbolt/dma_test.c
20305
20306 THUNDERBOLT DRIVER
20307 M:      Andreas Noever <andreas.noever@gmail.com>
20308 M:      Michael Jamet <michael.jamet@intel.com>
20309 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
20310 M:      Yehezkel Bernat <YehezkelShB@gmail.com>
20311 L:      linux-usb@vger.kernel.org
20312 S:      Maintained
20313 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/westeri/thunderbolt.git
20314 F:      Documentation/admin-guide/thunderbolt.rst
20315 F:      drivers/thunderbolt/
20316 F:      include/linux/thunderbolt.h
20317
20318 THUNDERBOLT NETWORK DRIVER
20319 M:      Michael Jamet <michael.jamet@intel.com>
20320 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
20321 M:      Yehezkel Bernat <YehezkelShB@gmail.com>
20322 L:      netdev@vger.kernel.org
20323 S:      Maintained
20324 F:      drivers/net/thunderbolt.c
20325
20326 THUNDERX GPIO DRIVER
20327 M:      Robert Richter <rric@kernel.org>
20328 S:      Odd Fixes
20329 F:      drivers/gpio/gpio-thunderx.c
20330
20331 TI ADS131E0X ADC SERIES DRIVER
20332 M:      Tomislav Denis <tomislav.denis@avl.com>
20333 L:      linux-iio@vger.kernel.org
20334 S:      Maintained
20335 F:      Documentation/devicetree/bindings/iio/adc/ti,ads131e08.yaml
20336 F:      drivers/iio/adc/ti-ads131e08.c
20337
20338 TI AM437X VPFE DRIVER
20339 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
20340 L:      linux-media@vger.kernel.org
20341 S:      Maintained
20342 W:      https://linuxtv.org
20343 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
20344 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
20345 F:      drivers/media/platform/ti/am437x/
20346
20347 TI BANDGAP AND THERMAL DRIVER
20348 M:      Eduardo Valentin <edubezval@gmail.com>
20349 M:      Keerthy <j-keerthy@ti.com>
20350 L:      linux-pm@vger.kernel.org
20351 L:      linux-omap@vger.kernel.org
20352 S:      Maintained
20353 F:      drivers/thermal/ti-soc-thermal/
20354
20355 TI BQ27XXX POWER SUPPLY DRIVER
20356 F:      drivers/power/supply/bq27xxx_battery.c
20357 F:      drivers/power/supply/bq27xxx_battery_i2c.c
20358 F:      include/linux/power/bq27xxx_battery.h
20359
20360 TI CDCE706 CLOCK DRIVER
20361 M:      Max Filippov <jcmvbkbc@gmail.com>
20362 S:      Maintained
20363 F:      drivers/clk/clk-cdce706.c
20364
20365 TI CLOCK DRIVER
20366 M:      Tero Kristo <kristo@kernel.org>
20367 L:      linux-omap@vger.kernel.org
20368 S:      Odd Fixes
20369 F:      drivers/clk/ti/
20370 F:      include/linux/clk/ti.h
20371
20372 TI DAVINCI MACHINE SUPPORT
20373 M:      Sekhar Nori <nsekhar@ti.com>
20374 R:      Bartosz Golaszewski <brgl@bgdev.pl>
20375 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
20376 S:      Supported
20377 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nsekhar/linux-davinci.git
20378 F:      Documentation/devicetree/bindings/i2c/i2c-davinci.txt
20379 F:      arch/arm/boot/dts/da850*
20380 F:      arch/arm/mach-davinci/
20381 F:      drivers/i2c/busses/i2c-davinci.c
20382
20383 TI DAVINCI SERIES CLOCK DRIVER
20384 M:      David Lechner <david@lechnology.com>
20385 R:      Sekhar Nori <nsekhar@ti.com>
20386 S:      Maintained
20387 F:      Documentation/devicetree/bindings/clock/ti/davinci/
20388 F:      drivers/clk/davinci/
20389
20390 TI DAVINCI SERIES GPIO DRIVER
20391 M:      Keerthy <j-keerthy@ti.com>
20392 L:      linux-gpio@vger.kernel.org
20393 S:      Maintained
20394 F:      Documentation/devicetree/bindings/gpio/gpio-davinci.yaml
20395 F:      drivers/gpio/gpio-davinci.c
20396
20397 TI DAVINCI SERIES MEDIA DRIVER
20398 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
20399 L:      linux-media@vger.kernel.org
20400 S:      Maintained
20401 W:      https://linuxtv.org
20402 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
20403 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
20404 F:      drivers/media/platform/ti/davinci/
20405 F:      include/media/davinci/
20406
20407 TI ENHANCED QUADRATURE ENCODER PULSE (eQEP) DRIVER
20408 R:      David Lechner <david@lechnology.com>
20409 L:      linux-iio@vger.kernel.org
20410 F:      Documentation/devicetree/bindings/counter/ti-eqep.yaml
20411 F:      drivers/counter/ti-eqep.c
20412
20413 TI ETHERNET SWITCH DRIVER (CPSW)
20414 R:      Grygorii Strashko <grygorii.strashko@ti.com>
20415 L:      linux-omap@vger.kernel.org
20416 L:      netdev@vger.kernel.org
20417 S:      Maintained
20418 F:      drivers/net/ethernet/ti/cpsw*
20419 F:      drivers/net/ethernet/ti/davinci*
20420
20421 TI FLASH MEDIA MEMORYSTICK/MMC DRIVERS
20422 M:      Alex Dubov <oakad@yahoo.com>
20423 S:      Maintained
20424 W:      http://tifmxx.berlios.de/
20425 F:      drivers/memstick/host/tifm_ms.c
20426 F:      drivers/misc/tifm*
20427 F:      drivers/mmc/host/tifm_sd.c
20428 F:      include/linux/tifm.h
20429
20430 TI KEYSTONE MULTICORE NAVIGATOR DRIVERS
20431 M:      Nishanth Menon <nm@ti.com>
20432 M:      Santosh Shilimkar <ssantosh@kernel.org>
20433 L:      linux-kernel@vger.kernel.org
20434 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
20435 S:      Maintained
20436 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ti/linux.git
20437 F:      drivers/soc/ti/*
20438
20439 TI LM49xxx FAMILY ASoC CODEC DRIVERS
20440 M:      M R Swami Reddy <mr.swami.reddy@ti.com>
20441 M:      Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
20442 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
20443 S:      Maintained
20444 F:      sound/soc/codecs/isabelle*
20445 F:      sound/soc/codecs/lm49453*
20446
20447 TI PCM3060 ASoC CODEC DRIVER
20448 M:      Kirill Marinushkin <kmarinushkin@birdec.com>
20449 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
20450 S:      Maintained
20451 F:      Documentation/devicetree/bindings/sound/pcm3060.txt
20452 F:      sound/soc/codecs/pcm3060*
20453
20454 TI TAS571X FAMILY ASoC CODEC DRIVER
20455 M:      Kevin Cernekee <cernekee@chromium.org>
20456 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
20457 S:      Odd Fixes
20458 F:      sound/soc/codecs/tas571x*
20459
20460 TI TRF7970A NFC DRIVER
20461 M:      Mark Greer <mgreer@animalcreek.com>
20462 L:      linux-wireless@vger.kernel.org
20463 L:      linux-nfc@lists.01.org (subscribers-only)
20464 S:      Supported
20465 F:      Documentation/devicetree/bindings/net/nfc/ti,trf7970a.yaml
20466 F:      drivers/nfc/trf7970a.c
20467
20468 TI TSC2046 ADC DRIVER
20469 M:      Oleksij Rempel <o.rempel@pengutronix.de>
20470 R:      kernel@pengutronix.de
20471 L:      linux-iio@vger.kernel.org
20472 S:      Maintained
20473 F:      Documentation/devicetree/bindings/iio/adc/ti,tsc2046.yaml
20474 F:      drivers/iio/adc/ti-tsc2046.c
20475
20476 TI TWL4030 SERIES SOC CODEC DRIVER
20477 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
20478 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
20479 S:      Maintained
20480 F:      sound/soc/codecs/twl4030*
20481
20482 TI VPE/CAL DRIVERS
20483 M:      Benoit Parrot <bparrot@ti.com>
20484 L:      linux-media@vger.kernel.org
20485 S:      Maintained
20486 W:      http://linuxtv.org/
20487 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
20488 F:      Documentation/devicetree/bindings/media/ti,cal.yaml
20489 F:      Documentation/devicetree/bindings/media/ti,vpe.yaml
20490 F:      drivers/media/platform/ti/cal/
20491 F:      drivers/media/platform/ti/vpe/
20492
20493 TI WILINK WIRELESS DRIVERS
20494 L:      linux-wireless@vger.kernel.org
20495 S:      Orphan
20496 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wl12xx
20497 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wl1251
20498 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
20499 F:      drivers/net/wireless/ti/
20500 F:      include/linux/wl12xx.h
20501
20502 TIMEKEEPING, CLOCKSOURCE CORE, NTP, ALARMTIMER
20503 M:      John Stultz <jstultz@google.com>
20504 M:      Thomas Gleixner <tglx@linutronix.de>
20505 R:      Stephen Boyd <sboyd@kernel.org>
20506 L:      linux-kernel@vger.kernel.org
20507 S:      Supported
20508 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
20509 F:      include/linux/clocksource.h
20510 F:      include/linux/time.h
20511 F:      include/linux/timex.h
20512 F:      include/uapi/linux/time.h
20513 F:      include/uapi/linux/timex.h
20514 F:      kernel/time/alarmtimer.c
20515 F:      kernel/time/clocksource.c
20516 F:      kernel/time/ntp.c
20517 F:      kernel/time/time*.c
20518 F:      tools/testing/selftests/timers/
20519
20520 TIPC NETWORK LAYER
20521 M:      Jon Maloy <jmaloy@redhat.com>
20522 M:      Ying Xue <ying.xue@windriver.com>
20523 L:      netdev@vger.kernel.org (core kernel code)
20524 L:      tipc-discussion@lists.sourceforge.net (user apps, general discussion)
20525 S:      Maintained
20526 W:      http://tipc.sourceforge.net/
20527 F:      include/uapi/linux/tipc*.h
20528 F:      net/tipc/
20529
20530 TLAN NETWORK DRIVER
20531 M:      Samuel Chessman <chessman@tux.org>
20532 L:      tlan-devel@lists.sourceforge.net (subscribers-only)
20533 S:      Maintained
20534 W:      http://sourceforge.net/projects/tlan/
20535 F:      Documentation/networking/device_drivers/ethernet/ti/tlan.rst
20536 F:      drivers/net/ethernet/ti/tlan.*
20537
20538 TM6000 VIDEO4LINUX DRIVER
20539 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
20540 L:      linux-media@vger.kernel.org
20541 S:      Odd fixes
20542 W:      https://linuxtv.org
20543 T:      git git://linuxtv.org/media_tree.git
20544 F:      Documentation/admin-guide/media/tm6000*
20545 F:      drivers/media/usb/tm6000/
20546
20547 TMIO/SDHI MMC DRIVER
20548 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
20549 L:      linux-mmc@vger.kernel.org
20550 L:      linux-renesas-soc@vger.kernel.org
20551 S:      Supported
20552 F:      drivers/mmc/host/renesas_sdhi*
20553 F:      drivers/mmc/host/tmio_mmc*
20554 F:      include/linux/mfd/tmio.h
20555
20556 TMP401 HARDWARE MONITOR DRIVER
20557 M:      Guenter Roeck <linux@roeck-us.net>
20558 L:      linux-hwmon@vger.kernel.org
20559 S:      Maintained
20560 F:      Documentation/devicetree/bindings/hwmon/ti,tmp401.yaml
20561 F:      Documentation/hwmon/tmp401.rst
20562 F:      drivers/hwmon/tmp401.c
20563
20564 TMP464 HARDWARE MONITOR DRIVER
20565 M:      Agathe Porte <agathe.porte@nokia.com>
20566 M:      Guenter Roeck <linux@roeck-us.net>
20567 L:      linux-hwmon@vger.kernel.org
20568 S:      Maintained
20569 F:      Documentation/devicetree/bindings/hwmon/ti,tmp464.yaml
20570 F:      Documentation/hwmon/tmp464.rst
20571 F:      drivers/hwmon/tmp464.c
20572
20573 TMP513 HARDWARE MONITOR DRIVER
20574 M:      Eric Tremblay <etremblay@distech-controls.com>
20575 L:      linux-hwmon@vger.kernel.org
20576 S:      Maintained
20577 F:      Documentation/hwmon/tmp513.rst
20578 F:      drivers/hwmon/tmp513.c
20579
20580 TMPFS (SHMEM FILESYSTEM)
20581 M:      Hugh Dickins <hughd@google.com>
20582 L:      linux-mm@kvack.org
20583 S:      Maintained
20584 F:      include/linux/shmem_fs.h
20585 F:      mm/shmem.c
20586
20587 TOMOYO SECURITY MODULE
20588 M:      Kentaro Takeda <takedakn@nttdata.co.jp>
20589 M:      Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
20590 L:      tomoyo-dev-en@lists.osdn.me (subscribers-only, for developers in English)
20591 L:      tomoyo-users-en@lists.osdn.me (subscribers-only, for users in English)
20592 L:      tomoyo-dev@lists.osdn.me (subscribers-only, for developers in Japanese)
20593 L:      tomoyo-users@lists.osdn.me (subscribers-only, for users in Japanese)
20594 S:      Maintained
20595 W:      https://tomoyo.osdn.jp/
20596 F:      security/tomoyo/
20597
20598 TOPSTAR LAPTOP EXTRAS DRIVER
20599 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
20600 L:      platform-driver-x86@vger.kernel.org
20601 S:      Maintained
20602 F:      drivers/platform/x86/topstar-laptop.c
20603
20604 TORTURE-TEST MODULES
20605 M:      Davidlohr Bueso <dave@stgolabs.net>
20606 M:      "Paul E. McKenney" <paulmck@kernel.org>
20607 M:      Josh Triplett <josh@joshtriplett.org>
20608 L:      linux-kernel@vger.kernel.org
20609 S:      Supported
20610 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
20611 F:      Documentation/RCU/torture.rst
20612 F:      kernel/locking/locktorture.c
20613 F:      kernel/rcu/rcuscale.c
20614 F:      kernel/rcu/rcutorture.c
20615 F:      kernel/rcu/refscale.c
20616 F:      kernel/torture.c
20617
20618 TOSHIBA ACPI EXTRAS DRIVER
20619 M:      Azael Avalos <coproscefalo@gmail.com>
20620 L:      platform-driver-x86@vger.kernel.org
20621 S:      Maintained
20622 F:      drivers/platform/x86/toshiba_acpi.c
20623
20624 TOSHIBA BLUETOOTH DRIVER
20625 M:      Azael Avalos <coproscefalo@gmail.com>
20626 L:      platform-driver-x86@vger.kernel.org
20627 S:      Maintained
20628 F:      drivers/platform/x86/toshiba_bluetooth.c
20629
20630 TOSHIBA HDD ACTIVE PROTECTION SENSOR DRIVER
20631 M:      Azael Avalos <coproscefalo@gmail.com>
20632 L:      platform-driver-x86@vger.kernel.org
20633 S:      Maintained
20634 F:      drivers/platform/x86/toshiba_haps.c
20635
20636 TOSHIBA SMM DRIVER
20637 M:      Jonathan Buzzard <jonathan@buzzard.org.uk>
20638 S:      Maintained
20639 W:      http://www.buzzard.org.uk/toshiba/
20640 F:      drivers/char/toshiba.c
20641 F:      include/linux/toshiba.h
20642 F:      include/uapi/linux/toshiba.h
20643
20644 TOSHIBA TC358743 DRIVER
20645 M:      Mats Randgaard <matrandg@cisco.com>
20646 L:      linux-media@vger.kernel.org
20647 S:      Maintained
20648 F:      drivers/media/i2c/tc358743*
20649 F:      include/media/i2c/tc358743.h
20650
20651 TOSHIBA WMI HOTKEYS DRIVER
20652 M:      Azael Avalos <coproscefalo@gmail.com>
20653 L:      platform-driver-x86@vger.kernel.org
20654 S:      Maintained
20655 F:      drivers/platform/x86/toshiba-wmi.c
20656
20657 TPM DEVICE DRIVER
20658 M:      Peter Huewe <peterhuewe@gmx.de>
20659 M:      Jarkko Sakkinen <jarkko@kernel.org>
20660 R:      Jason Gunthorpe <jgg@ziepe.ca>
20661 L:      linux-integrity@vger.kernel.org
20662 S:      Maintained
20663 W:      https://kernsec.org/wiki/index.php/Linux_Kernel_Integrity
20664 Q:      https://patchwork.kernel.org/project/linux-integrity/list/
20665 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jarkko/linux-tpmdd.git
20666 F:      drivers/char/tpm/
20667
20668 TPS546D24 DRIVER
20669 M:      Duke Du <dukedu83@gmail.com>
20670 L:      linux-hwmon@vger.kernel.org
20671 S:      Maintained
20672 F:      Documentation/hwmon/tps546d24.rst
20673 F:      drivers/hwmon/pmbus/tps546d24.c
20674
20675 TRACING
20676 M:      Steven Rostedt <rostedt@goodmis.org>
20677 M:      Ingo Molnar <mingo@redhat.com>
20678 S:      Maintained
20679 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rostedt/linux-trace.git
20680 F:      Documentation/trace/ftrace.rst
20681 F:      arch/*/*/*/*ftrace*
20682 F:      arch/*/*/*ftrace*
20683 F:      fs/tracefs/
20684 F:      include/*/ftrace.h
20685 F:      include/linux/trace*.h
20686 F:      include/trace/
20687 F:      kernel/trace/
20688 F:      scripts/tracing/
20689 F:      tools/testing/selftests/ftrace/
20690
20691 TRACING MMIO ACCESSES (MMIOTRACE)
20692 M:      Steven Rostedt <rostedt@goodmis.org>
20693 M:      Ingo Molnar <mingo@kernel.org>
20694 R:      Karol Herbst <karolherbst@gmail.com>
20695 R:      Pekka Paalanen <ppaalanen@gmail.com>
20696 L:      linux-kernel@vger.kernel.org
20697 L:      nouveau@lists.freedesktop.org
20698 S:      Maintained
20699 F:      arch/x86/mm/kmmio.c
20700 F:      arch/x86/mm/mmio-mod.c
20701 F:      arch/x86/mm/testmmiotrace.c
20702 F:      include/linux/mmiotrace.h
20703 F:      kernel/trace/trace_mmiotrace.c
20704
20705 TRACING OS NOISE / LATENCY TRACERS
20706 M:      Steven Rostedt <rostedt@goodmis.org>
20707 M:      Daniel Bristot de Oliveira <bristot@kernel.org>
20708 S:      Maintained
20709 F:      kernel/trace/trace_osnoise.c
20710 F:      include/trace/events/osnoise.h
20711 F:      kernel/trace/trace_hwlat.c
20712 F:      kernel/trace/trace_irqsoff.c
20713 F:      kernel/trace/trace_sched_wakeup.c
20714 F:      Documentation/trace/osnoise-tracer.rst
20715 F:      Documentation/trace/timerlat-tracer.rst
20716 F:      Documentation/trace/hwlat_detector.rst
20717 F:      arch/*/kernel/trace.c
20718
20719 Real-time Linux Analysis (RTLA) tools
20720 M:      Daniel Bristot de Oliveira <bristot@kernel.org>
20721 M:      Steven Rostedt <rostedt@goodmis.org>
20722 L:      linux-trace-devel@vger.kernel.org
20723 S:      Maintained
20724 F:      Documentation/tools/rtla/
20725 F:      tools/tracing/rtla/
20726
20727 TRADITIONAL CHINESE DOCUMENTATION
20728 M:      Hu Haowen <src.res@email.cn>
20729 L:      linux-doc-tw-discuss@lists.sourceforge.net (moderated for non-subscribers)
20730 S:      Maintained
20731 W:      https://github.com/srcres258/linux-doc
20732 T:      git git://github.com/srcres258/linux-doc.git doc-zh-tw
20733 F:      Documentation/translations/zh_TW/
20734
20735 TTY LAYER
20736 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
20737 M:      Jiri Slaby <jirislaby@kernel.org>
20738 S:      Supported
20739 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
20740 F:      Documentation/driver-api/serial/
20741 F:      drivers/tty/
20742 F:      drivers/tty/serial/serial_core.c
20743 F:      include/linux/selection.h
20744 F:      include/linux/serial.h
20745 F:      include/linux/serial_core.h
20746 F:      include/linux/sysrq.h
20747 F:      include/linux/tty*.h
20748 F:      include/linux/vt.h
20749 F:      include/linux/vt_*.h
20750 F:      include/uapi/linux/serial.h
20751 F:      include/uapi/linux/serial_core.h
20752 F:      include/uapi/linux/tty.h
20753
20754 TUA9001 MEDIA DRIVER
20755 M:      Antti Palosaari <crope@iki.fi>
20756 L:      linux-media@vger.kernel.org
20757 S:      Maintained
20758 W:      https://linuxtv.org
20759 W:      http://palosaari.fi/linux/
20760 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
20761 T:      git git://linuxtv.org/anttip/media_tree.git
20762 F:      drivers/media/tuners/tua9001*
20763
20764 TULIP NETWORK DRIVERS
20765 L:      netdev@vger.kernel.org
20766 L:      linux-parisc@vger.kernel.org
20767 S:      Orphan
20768 F:      drivers/net/ethernet/dec/tulip/
20769
20770 TUN/TAP driver
20771 M:      Maxim Krasnyansky <maxk@qti.qualcomm.com>
20772 S:      Maintained
20773 W:      http://vtun.sourceforge.net/tun
20774 F:      Documentation/networking/tuntap.rst
20775 F:      arch/um/os-Linux/drivers/
20776
20777 TURBOCHANNEL SUBSYSTEM
20778 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
20779 M:      Ralf Baechle <ralf@linux-mips.org>
20780 L:      linux-mips@vger.kernel.org
20781 S:      Maintained
20782 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
20783 F:      drivers/tc/
20784 F:      include/linux/tc.h
20785
20786 TURBOSTAT UTILITY
20787 M:      "Len Brown" <lenb@kernel.org>
20788 L:      linux-pm@vger.kernel.org
20789 S:      Supported
20790 Q:      https://patchwork.kernel.org/project/linux-pm/list/
20791 B:      https://bugzilla.kernel.org
20792 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git turbostat
20793 F:      tools/power/x86/turbostat/
20794
20795 TW5864 VIDEO4LINUX DRIVER
20796 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
20797 M:      Anton Sviridenko <anton@corp.bluecherry.net>
20798 M:      Andrey Utkin <andrey.utkin@corp.bluecherry.net>
20799 M:      Andrey Utkin <andrey_utkin@fastmail.com>
20800 L:      linux-media@vger.kernel.org
20801 S:      Supported
20802 F:      drivers/media/pci/tw5864/
20803
20804 TW68 VIDEO4LINUX DRIVER
20805 M:      Hans Verkuil <hverkuil@xs4all.nl>
20806 L:      linux-media@vger.kernel.org
20807 S:      Odd Fixes
20808 W:      https://linuxtv.org
20809 T:      git git://linuxtv.org/media_tree.git
20810 F:      drivers/media/pci/tw68/
20811
20812 TW686X VIDEO4LINUX DRIVER
20813 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
20814 L:      linux-media@vger.kernel.org
20815 S:      Maintained
20816 W:      http://linuxtv.org
20817 T:      git git://linuxtv.org/media_tree.git
20818 F:      drivers/media/pci/tw686x/
20819
20820 U-BOOT ENVIRONMENT VARIABLES
20821 M:      Rafał Miłecki <rafal@milecki.pl>
20822 S:      Maintained
20823 F:      Documentation/devicetree/bindings/nvmem/u-boot,env.yaml
20824
20825 UACCE ACCELERATOR FRAMEWORK
20826 M:      Zhangfei Gao <zhangfei.gao@linaro.org>
20827 M:      Zhou Wang <wangzhou1@hisilicon.com>
20828 L:      linux-accelerators@lists.ozlabs.org
20829 L:      linux-kernel@vger.kernel.org
20830 S:      Maintained
20831 F:      Documentation/ABI/testing/sysfs-driver-uacce
20832 F:      Documentation/misc-devices/uacce.rst
20833 F:      drivers/misc/uacce/
20834 F:      include/linux/uacce.h
20835 F:      include/uapi/misc/uacce/
20836
20837 UBI FILE SYSTEM (UBIFS)
20838 M:      Richard Weinberger <richard@nod.at>
20839 L:      linux-mtd@lists.infradead.org
20840 S:      Supported
20841 W:      http://www.linux-mtd.infradead.org/doc/ubifs.html
20842 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
20843 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
20844 F:      Documentation/ABI/testing/sysfs-fs-ubifs
20845 F:      Documentation/filesystems/ubifs-authentication.rst
20846 F:      Documentation/filesystems/ubifs.rst
20847 F:      fs/ubifs/
20848
20849 UBLK USERSPACE BLOCK DRIVER
20850 M:      Ming Lei <ming.lei@redhat.com>
20851 L:      linux-block@vger.kernel.org
20852 S:      Maintained
20853 F:      Documentation/block/ublk.rst
20854 F:      drivers/block/ublk_drv.c
20855 F:      include/uapi/linux/ublk_cmd.h
20856
20857 UCLINUX (M68KNOMMU AND COLDFIRE)
20858 M:      Greg Ungerer <gerg@linux-m68k.org>
20859 L:      linux-m68k@lists.linux-m68k.org
20860 L:      uclinux-dev@uclinux.org  (subscribers-only)
20861 S:      Maintained
20862 W:      http://www.linux-m68k.org/
20863 W:      http://www.uclinux.org/
20864 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git
20865 F:      arch/m68k/*/*_no.*
20866 F:      arch/m68k/68*/
20867 F:      arch/m68k/coldfire/
20868 F:      arch/m68k/include/asm/*_no.*
20869
20870 UDF FILESYSTEM
20871 M:      Jan Kara <jack@suse.com>
20872 S:      Maintained
20873 F:      Documentation/filesystems/udf.rst
20874 F:      fs/udf/
20875
20876 UDRAW TABLET
20877 M:      Bastien Nocera <hadess@hadess.net>
20878 L:      linux-input@vger.kernel.org
20879 S:      Maintained
20880 F:      drivers/hid/hid-udraw-ps3.c
20881
20882 UFS FILESYSTEM
20883 M:      Evgeniy Dushistov <dushistov@mail.ru>
20884 S:      Maintained
20885 F:      Documentation/admin-guide/ufs.rst
20886 F:      fs/ufs/
20887
20888 UHID USERSPACE HID IO DRIVER
20889 M:      David Rheinsberg <david.rheinsberg@gmail.com>
20890 L:      linux-input@vger.kernel.org
20891 S:      Maintained
20892 F:      drivers/hid/uhid.c
20893 F:      include/uapi/linux/uhid.h
20894
20895 ULPI BUS
20896 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
20897 L:      linux-usb@vger.kernel.org
20898 S:      Maintained
20899 F:      drivers/usb/common/ulpi.c
20900 F:      include/linux/ulpi/
20901
20902 UNICODE SUBSYSTEM
20903 M:      Gabriel Krisman Bertazi <krisman@collabora.com>
20904 L:      linux-fsdevel@vger.kernel.org
20905 S:      Supported
20906 F:      fs/unicode/
20907
20908 UNIFDEF
20909 M:      Tony Finch <dot@dotat.at>
20910 S:      Maintained
20911 W:      http://dotat.at/prog/unifdef
20912 F:      scripts/unifdef.c
20913
20914 UNIFORM CDROM DRIVER
20915 M:      Phillip Potter <phil@philpotter.co.uk>
20916 S:      Maintained
20917 F:      Documentation/cdrom/
20918 F:      drivers/cdrom/cdrom.c
20919 F:      include/linux/cdrom.h
20920 F:      include/uapi/linux/cdrom.h
20921
20922 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
20923 R:      Alim Akhtar <alim.akhtar@samsung.com>
20924 R:      Avri Altman <avri.altman@wdc.com>
20925 R:      Bart Van Assche <bvanassche@acm.org>
20926 L:      linux-scsi@vger.kernel.org
20927 S:      Supported
20928 F:      Documentation/devicetree/bindings/ufs/
20929 F:      Documentation/scsi/ufs.rst
20930 F:      drivers/ufs/core/
20931
20932 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER DWC HOOKS
20933 M:      Pedro Sousa <pedrom.sousa@synopsys.com>
20934 L:      linux-scsi@vger.kernel.org
20935 S:      Supported
20936 F:      drivers/ufs/host/*dwc*
20937
20938 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER MEDIATEK HOOKS
20939 M:      Stanley Chu <stanley.chu@mediatek.com>
20940 L:      linux-scsi@vger.kernel.org
20941 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
20942 S:      Maintained
20943 F:      drivers/ufs/host/ufs-mediatek*
20944
20945 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER RENESAS HOOKS
20946 M:      Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
20947 L:      linux-renesas-soc@vger.kernel.org
20948 L:      linux-scsi@vger.kernel.org
20949 S:      Maintained
20950 F:      drivers/ufs/host/ufs-renesas.c
20951
20952 UNSORTED BLOCK IMAGES (UBI)
20953 M:      Richard Weinberger <richard@nod.at>
20954 L:      linux-mtd@lists.infradead.org
20955 S:      Supported
20956 W:      http://www.linux-mtd.infradead.org/
20957 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
20958 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
20959 F:      drivers/mtd/ubi/
20960 F:      include/linux/mtd/ubi.h
20961 F:      include/uapi/mtd/ubi-user.h
20962
20963 USB "USBNET" DRIVER FRAMEWORK
20964 M:      Oliver Neukum <oneukum@suse.com>
20965 L:      netdev@vger.kernel.org
20966 S:      Maintained
20967 W:      http://www.linux-usb.org/usbnet
20968 F:      drivers/net/usb/usbnet.c
20969 F:      include/linux/usb/usbnet.h
20970
20971 USB ACM DRIVER
20972 M:      Oliver Neukum <oneukum@suse.com>
20973 L:      linux-usb@vger.kernel.org
20974 S:      Maintained
20975 F:      Documentation/usb/acm.rst
20976 F:      drivers/usb/class/cdc-acm.*
20977
20978 USB APPLE MFI FASTCHARGE DRIVER
20979 M:      Bastien Nocera <hadess@hadess.net>
20980 L:      linux-usb@vger.kernel.org
20981 S:      Maintained
20982 F:      drivers/usb/misc/apple-mfi-fastcharge.c
20983
20984 USB AR5523 WIRELESS DRIVER
20985 M:      Pontus Fuchs <pontus.fuchs@gmail.com>
20986 L:      linux-wireless@vger.kernel.org
20987 S:      Maintained
20988 F:      drivers/net/wireless/ath/ar5523/
20989
20990 USB ATTACHED SCSI
20991 M:      Oliver Neukum <oneukum@suse.com>
20992 L:      linux-usb@vger.kernel.org
20993 L:      linux-scsi@vger.kernel.org
20994 S:      Maintained
20995 F:      drivers/usb/storage/uas.c
20996
20997 USB CDC ETHERNET DRIVER
20998 M:      Oliver Neukum <oliver@neukum.org>
20999 L:      linux-usb@vger.kernel.org
21000 S:      Maintained
21001 F:      drivers/net/usb/cdc_*.c
21002 F:      include/uapi/linux/usb/cdc.h
21003
21004 USB CHAOSKEY DRIVER
21005 M:      Keith Packard <keithp@keithp.com>
21006 L:      linux-usb@vger.kernel.org
21007 S:      Maintained
21008 F:      drivers/usb/misc/chaoskey.c
21009
21010 USB CYPRESS C67X00 DRIVER
21011 L:      linux-usb@vger.kernel.org
21012 S:      Orphan
21013 F:      drivers/usb/c67x00/
21014
21015 USB DAVICOM DM9601 DRIVER
21016 M:      Peter Korsgaard <peter@korsgaard.com>
21017 L:      netdev@vger.kernel.org
21018 S:      Maintained
21019 W:      http://www.linux-usb.org/usbnet
21020 F:      drivers/net/usb/dm9601.c
21021
21022 USB EHCI DRIVER
21023 M:      Alan Stern <stern@rowland.harvard.edu>
21024 L:      linux-usb@vger.kernel.org
21025 S:      Maintained
21026 F:      Documentation/usb/ehci.rst
21027 F:      drivers/usb/host/ehci*
21028
21029 USB GADGET/PERIPHERAL SUBSYSTEM
21030 M:      Felipe Balbi <balbi@kernel.org>
21031 L:      linux-usb@vger.kernel.org
21032 S:      Maintained
21033 W:      http://www.linux-usb.org/gadget
21034 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
21035 F:      drivers/usb/gadget/
21036 F:      include/linux/usb/gadget*
21037
21038 USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
21039 M:      Jiri Kosina <jikos@kernel.org>
21040 M:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
21041 L:      linux-usb@vger.kernel.org
21042 S:      Maintained
21043 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
21044 F:      Documentation/hid/hiddev.rst
21045 F:      drivers/hid/usbhid/
21046
21047 USB INTEL XHCI ROLE MUX DRIVER
21048 M:      Hans de Goede <hdegoede@redhat.com>
21049 L:      linux-usb@vger.kernel.org
21050 S:      Maintained
21051 F:      drivers/usb/roles/intel-xhci-usb-role-switch.c
21052
21053 USB IP DRIVER FOR HISILICON KIRIN 960
21054 M:      Yu Chen <chenyu56@huawei.com>
21055 M:      Binghui Wang <wangbinghui@hisilicon.com>
21056 L:      linux-usb@vger.kernel.org
21057 S:      Maintained
21058 F:      Documentation/devicetree/bindings/phy/hisilicon,hi3660-usb3.yaml
21059 F:      drivers/phy/hisilicon/phy-hi3660-usb3.c
21060
21061 USB IP DRIVER FOR HISILICON KIRIN 970
21062 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
21063 L:      linux-usb@vger.kernel.org
21064 S:      Maintained
21065 F:      Documentation/devicetree/bindings/phy/hisilicon,hi3670-usb3.yaml
21066 F:      drivers/phy/hisilicon/phy-hi3670-usb3.c
21067
21068 USB ISP116X DRIVER
21069 M:      Olav Kongas <ok@artecdesign.ee>
21070 L:      linux-usb@vger.kernel.org
21071 S:      Maintained
21072 F:      drivers/usb/host/isp116x*
21073 F:      include/linux/usb/isp116x.h
21074
21075 USB ISP1760 DRIVER
21076 M:      Rui Miguel Silva <rui.silva@linaro.org>
21077 L:      linux-usb@vger.kernel.org
21078 S:      Maintained
21079 F:      drivers/usb/isp1760/*
21080 F:      Documentation/devicetree/bindings/usb/nxp,isp1760.yaml
21081
21082 USB LAN78XX ETHERNET DRIVER
21083 M:      Woojung Huh <woojung.huh@microchip.com>
21084 M:      UNGLinuxDriver@microchip.com
21085 L:      netdev@vger.kernel.org
21086 S:      Maintained
21087 F:      Documentation/devicetree/bindings/net/microchip,lan78xx.txt
21088 F:      drivers/net/usb/lan78xx.*
21089 F:      include/dt-bindings/net/microchip-lan78xx.h
21090
21091 USB MASS STORAGE DRIVER
21092 M:      Alan Stern <stern@rowland.harvard.edu>
21093 L:      linux-usb@vger.kernel.org
21094 L:      usb-storage@lists.one-eyed-alien.net
21095 S:      Maintained
21096 F:      drivers/usb/storage/
21097
21098 USB MIDI DRIVER
21099 M:      Clemens Ladisch <clemens@ladisch.de>
21100 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
21101 S:      Maintained
21102 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
21103 F:      sound/usb/midi.*
21104
21105 USB NETWORKING DRIVERS
21106 L:      linux-usb@vger.kernel.org
21107 S:      Odd Fixes
21108 F:      drivers/net/usb/
21109
21110 USB OHCI DRIVER
21111 M:      Alan Stern <stern@rowland.harvard.edu>
21112 L:      linux-usb@vger.kernel.org
21113 S:      Maintained
21114 F:      Documentation/usb/ohci.rst
21115 F:      drivers/usb/host/ohci*
21116
21117 USB OTG FSM (Finite State Machine)
21118 M:      Peter Chen <peter.chen@kernel.org>
21119 L:      linux-usb@vger.kernel.org
21120 S:      Maintained
21121 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
21122 F:      drivers/usb/common/usb-otg-fsm.c
21123
21124 USB OVER IP DRIVER
21125 M:      Valentina Manea <valentina.manea.m@gmail.com>
21126 M:      Shuah Khan <shuah@kernel.org>
21127 M:      Shuah Khan <skhan@linuxfoundation.org>
21128 L:      linux-usb@vger.kernel.org
21129 S:      Maintained
21130 F:      Documentation/usb/usbip_protocol.rst
21131 F:      drivers/usb/usbip/
21132 F:      tools/testing/selftests/drivers/usb/usbip/
21133 F:      tools/usb/usbip/
21134
21135 USB PEGASUS DRIVER
21136 M:      Petko Manolov <petkan@nucleusys.com>
21137 L:      linux-usb@vger.kernel.org
21138 L:      netdev@vger.kernel.org
21139 S:      Maintained
21140 W:      https://github.com/petkan/pegasus
21141 T:      git git://github.com/petkan/pegasus.git
21142 F:      drivers/net/usb/pegasus.*
21143
21144 USB PHY LAYER
21145 M:      Felipe Balbi <balbi@kernel.org>
21146 L:      linux-usb@vger.kernel.org
21147 S:      Maintained
21148 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
21149 F:      drivers/usb/phy/
21150
21151 USB PRINTER DRIVER (usblp)
21152 M:      Pete Zaitcev <zaitcev@redhat.com>
21153 L:      linux-usb@vger.kernel.org
21154 S:      Supported
21155 F:      drivers/usb/class/usblp.c
21156
21157 USB RAW GADGET DRIVER
21158 R:      Andrey Konovalov <andreyknvl@gmail.com>
21159 L:      linux-usb@vger.kernel.org
21160 S:      Maintained
21161 F:      Documentation/usb/raw-gadget.rst
21162 F:      drivers/usb/gadget/legacy/raw_gadget.c
21163 F:      include/uapi/linux/usb/raw_gadget.h
21164
21165 USB QMI WWAN NETWORK DRIVER
21166 M:      Bjørn Mork <bjorn@mork.no>
21167 L:      netdev@vger.kernel.org
21168 S:      Maintained
21169 F:      Documentation/ABI/testing/sysfs-class-net-qmi
21170 F:      drivers/net/usb/qmi_wwan.c
21171
21172 USB RTL8150 DRIVER
21173 M:      Petko Manolov <petkan@nucleusys.com>
21174 L:      linux-usb@vger.kernel.org
21175 L:      netdev@vger.kernel.org
21176 S:      Maintained
21177 W:      https://github.com/petkan/rtl8150
21178 T:      git git://github.com/petkan/rtl8150.git
21179 F:      drivers/net/usb/rtl8150.c
21180
21181 USB SERIAL SUBSYSTEM
21182 M:      Johan Hovold <johan@kernel.org>
21183 L:      linux-usb@vger.kernel.org
21184 S:      Maintained
21185 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/usb-serial.git
21186 F:      Documentation/usb/usb-serial.rst
21187 F:      drivers/usb/serial/
21188 F:      include/linux/usb/serial.h
21189
21190 USB SMSC75XX ETHERNET DRIVER
21191 M:      Steve Glendinning <steve.glendinning@shawell.net>
21192 L:      netdev@vger.kernel.org
21193 S:      Maintained
21194 F:      drivers/net/usb/smsc75xx.*
21195
21196 USB SMSC95XX ETHERNET DRIVER
21197 M:      Steve Glendinning <steve.glendinning@shawell.net>
21198 M:      UNGLinuxDriver@microchip.com
21199 L:      netdev@vger.kernel.org
21200 S:      Maintained
21201 F:      drivers/net/usb/smsc95xx.*
21202
21203 USB SUBSYSTEM
21204 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
21205 L:      linux-usb@vger.kernel.org
21206 S:      Supported
21207 W:      http://www.linux-usb.org
21208 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
21209 F:      Documentation/devicetree/bindings/usb/
21210 F:      Documentation/usb/
21211 F:      drivers/usb/
21212 F:      include/dt-bindings/usb/
21213 F:      include/linux/usb.h
21214 F:      include/linux/usb/
21215
21216 USB TYPEC BUS FOR ALTERNATE MODES
21217 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
21218 L:      linux-usb@vger.kernel.org
21219 S:      Maintained
21220 F:      Documentation/ABI/testing/sysfs-bus-typec
21221 F:      Documentation/driver-api/usb/typec_bus.rst
21222 F:      drivers/usb/typec/altmodes/
21223 F:      include/linux/usb/typec_altmode.h
21224
21225 USB TYPEC CLASS
21226 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
21227 L:      linux-usb@vger.kernel.org
21228 S:      Maintained
21229 F:      Documentation/ABI/testing/sysfs-class-typec
21230 F:      Documentation/driver-api/usb/typec.rst
21231 F:      drivers/usb/typec/
21232 F:      include/linux/usb/typec.h
21233
21234 USB TYPEC INTEL PMC MUX DRIVER
21235 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
21236 L:      linux-usb@vger.kernel.org
21237 S:      Maintained
21238 F:      Documentation/firmware-guide/acpi/intel-pmc-mux.rst
21239 F:      drivers/usb/typec/mux/intel_pmc_mux.c
21240
21241 USB TYPEC PI3USB30532 MUX DRIVER
21242 M:      Hans de Goede <hdegoede@redhat.com>
21243 L:      linux-usb@vger.kernel.org
21244 S:      Maintained
21245 F:      drivers/usb/typec/mux/pi3usb30532.c
21246
21247 USB TYPEC PORT CONTROLLER DRIVERS
21248 M:      Guenter Roeck <linux@roeck-us.net>
21249 L:      linux-usb@vger.kernel.org
21250 S:      Maintained
21251 F:      drivers/usb/typec/tcpm/
21252
21253 USB UHCI DRIVER
21254 M:      Alan Stern <stern@rowland.harvard.edu>
21255 L:      linux-usb@vger.kernel.org
21256 S:      Maintained
21257 F:      drivers/usb/host/uhci*
21258
21259 USB VIDEO CLASS
21260 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
21261 L:      linux-media@vger.kernel.org
21262 S:      Maintained
21263 W:      http://www.ideasonboard.org/uvc/
21264 T:      git git://linuxtv.org/media_tree.git
21265 F:      drivers/media/usb/uvc/
21266 F:      include/uapi/linux/uvcvideo.h
21267
21268 USB WEBCAM GADGET
21269 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
21270 L:      linux-usb@vger.kernel.org
21271 S:      Maintained
21272 F:      drivers/usb/gadget/function/*uvc*
21273 F:      drivers/usb/gadget/legacy/webcam.c
21274 F:      include/uapi/linux/usb/g_uvc.h
21275
21276 USB WIRELESS RNDIS DRIVER (rndis_wlan)
21277 M:      Jussi Kivilinna <jussi.kivilinna@iki.fi>
21278 L:      linux-wireless@vger.kernel.org
21279 S:      Maintained
21280 F:      drivers/net/wireless/rndis_wlan.c
21281
21282 USB XHCI DRIVER
21283 M:      Mathias Nyman <mathias.nyman@intel.com>
21284 L:      linux-usb@vger.kernel.org
21285 S:      Supported
21286 F:      drivers/usb/host/pci-quirks*
21287 F:      drivers/usb/host/xhci*
21288
21289 USB ZD1201 DRIVER
21290 L:      linux-wireless@vger.kernel.org
21291 S:      Orphan
21292 W:      http://linux-lc100020.sourceforge.net
21293 F:      drivers/net/wireless/zydas/zd1201.*
21294
21295 USB ZR364XX DRIVER
21296 M:      Antoine Jacquet <royale@zerezo.com>
21297 L:      linux-usb@vger.kernel.org
21298 L:      linux-media@vger.kernel.org
21299 S:      Maintained
21300 W:      http://royale.zerezo.com/zr364xx/
21301 T:      git git://linuxtv.org/media_tree.git
21302 F:      Documentation/admin-guide/media/zr364xx*
21303 F:      drivers/media/usb/zr364xx/
21304
21305 USER-MODE LINUX (UML)
21306 M:      Richard Weinberger <richard@nod.at>
21307 M:      Anton Ivanov <anton.ivanov@cambridgegreys.com>
21308 M:      Johannes Berg <johannes@sipsolutions.net>
21309 L:      linux-um@lists.infradead.org
21310 S:      Maintained
21311 W:      http://user-mode-linux.sourceforge.net
21312 Q:      https://patchwork.ozlabs.org/project/linux-um/list/
21313 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/uml/linux.git next
21314 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/uml/linux.git fixes
21315 F:      Documentation/virt/uml/
21316 F:      arch/um/
21317 F:      arch/x86/um/
21318 F:      fs/hostfs/
21319
21320 USERSPACE COPYIN/COPYOUT (UIOVEC)
21321 M:      Alexander Viro <viro@zeniv.linux.org.uk>
21322 S:      Maintained
21323 F:      include/linux/uio.h
21324 F:      lib/iov_iter.c
21325
21326 USERSPACE DMA BUFFER DRIVER
21327 M:      Gerd Hoffmann <kraxel@redhat.com>
21328 L:      dri-devel@lists.freedesktop.org
21329 S:      Maintained
21330 T:      git git://anongit.freedesktop.org/drm/drm-misc
21331 F:      drivers/dma-buf/udmabuf.c
21332 F:      include/uapi/linux/udmabuf.h
21333
21334 USERSPACE I/O (UIO)
21335 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
21336 S:      Maintained
21337 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
21338 F:      Documentation/driver-api/uio-howto.rst
21339 F:      drivers/uio/
21340 F:      include/linux/uio_driver.h
21341
21342 UTIL-LINUX PACKAGE
21343 M:      Karel Zak <kzak@redhat.com>
21344 L:      util-linux@vger.kernel.org
21345 S:      Maintained
21346 W:      http://en.wikipedia.org/wiki/Util-linux
21347 T:      git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
21348
21349 UUID HELPERS
21350 M:      Christoph Hellwig <hch@lst.de>
21351 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
21352 L:      linux-kernel@vger.kernel.org
21353 S:      Maintained
21354 T:      git git://git.infradead.org/users/hch/uuid.git
21355 F:      include/linux/uuid.h
21356 F:      include/uapi/linux/uuid.h
21357 F:      lib/test_uuid.c
21358 F:      lib/uuid.c
21359
21360 UV SYSFS DRIVER
21361 M:      Justin Ernst <justin.ernst@hpe.com>
21362 L:      platform-driver-x86@vger.kernel.org
21363 S:      Maintained
21364 F:      drivers/platform/x86/uv_sysfs.c
21365
21366 UVESAFB DRIVER
21367 M:      Michal Januszewski <spock@gentoo.org>
21368 L:      linux-fbdev@vger.kernel.org
21369 S:      Maintained
21370 W:      https://github.com/mjanusz/v86d
21371 F:      Documentation/fb/uvesafb.rst
21372 F:      drivers/video/fbdev/uvesafb.*
21373
21374 Ux500 CLOCK DRIVERS
21375 M:      Ulf Hansson <ulf.hansson@linaro.org>
21376 L:      linux-clk@vger.kernel.org
21377 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
21378 S:      Maintained
21379 F:      drivers/clk/ux500/
21380
21381 VF610 NAND DRIVER
21382 M:      Stefan Agner <stefan@agner.ch>
21383 L:      linux-mtd@lists.infradead.org
21384 S:      Supported
21385 F:      drivers/mtd/nand/raw/vf610_nfc.c
21386
21387 VFAT/FAT/MSDOS FILESYSTEM
21388 M:      OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
21389 S:      Maintained
21390 F:      Documentation/filesystems/vfat.rst
21391 F:      fs/fat/
21392 F:      tools/testing/selftests/filesystems/fat/
21393
21394 VFIO DRIVER
21395 M:      Alex Williamson <alex.williamson@redhat.com>
21396 R:      Cornelia Huck <cohuck@redhat.com>
21397 L:      kvm@vger.kernel.org
21398 S:      Maintained
21399 T:      git git://github.com/awilliam/linux-vfio.git
21400 F:      Documentation/driver-api/vfio.rst
21401 F:      drivers/vfio/
21402 F:      include/linux/vfio.h
21403 F:      include/linux/vfio_pci_core.h
21404 F:      include/uapi/linux/vfio.h
21405
21406 VFIO FSL-MC DRIVER
21407 M:      Diana Craciun <diana.craciun@oss.nxp.com>
21408 L:      kvm@vger.kernel.org
21409 S:      Maintained
21410 F:      drivers/vfio/fsl-mc/
21411
21412 VFIO HISILICON PCI DRIVER
21413 M:      Longfang Liu <liulongfang@huawei.com>
21414 M:      Shameer Kolothum <shameerali.kolothum.thodi@huawei.com>
21415 L:      kvm@vger.kernel.org
21416 S:      Maintained
21417 F:      drivers/vfio/pci/hisilicon/
21418
21419 VFIO MEDIATED DEVICE DRIVERS
21420 M:      Kirti Wankhede <kwankhede@nvidia.com>
21421 L:      kvm@vger.kernel.org
21422 S:      Maintained
21423 F:      Documentation/driver-api/vfio-mediated-device.rst
21424 F:      drivers/vfio/mdev/
21425 F:      include/linux/mdev.h
21426 F:      samples/vfio-mdev/
21427
21428 VFIO PCI DEVICE SPECIFIC DRIVERS
21429 R:      Jason Gunthorpe <jgg@nvidia.com>
21430 R:      Yishai Hadas <yishaih@nvidia.com>
21431 R:      Shameer Kolothum <shameerali.kolothum.thodi@huawei.com>
21432 R:      Kevin Tian <kevin.tian@intel.com>
21433 L:      kvm@vger.kernel.org
21434 S:      Maintained
21435 P:      Documentation/driver-api/vfio-pci-device-specific-driver-acceptance.rst
21436 F:      drivers/vfio/pci/*/
21437
21438 VFIO PLATFORM DRIVER
21439 M:      Eric Auger <eric.auger@redhat.com>
21440 L:      kvm@vger.kernel.org
21441 S:      Maintained
21442 F:      drivers/vfio/platform/
21443
21444 VFIO MLX5 PCI DRIVER
21445 M:      Yishai Hadas <yishaih@nvidia.com>
21446 L:      kvm@vger.kernel.org
21447 S:      Maintained
21448 F:      drivers/vfio/pci/mlx5/
21449
21450 VGA_SWITCHEROO
21451 R:      Lukas Wunner <lukas@wunner.de>
21452 S:      Maintained
21453 T:      git git://anongit.freedesktop.org/drm/drm-misc
21454 F:      Documentation/gpu/vga-switcheroo.rst
21455 F:      drivers/gpu/vga/vga_switcheroo.c
21456 F:      include/linux/vga_switcheroo.h
21457
21458 VIA RHINE NETWORK DRIVER
21459 S:      Maintained
21460 M:      Kevin Brace <kevinbrace@bracecomputerlab.com>
21461 F:      drivers/net/ethernet/via/via-rhine.c
21462
21463 VIA SD/MMC CARD CONTROLLER DRIVER
21464 M:      Bruce Chang <brucechang@via.com.tw>
21465 M:      Harald Welte <HaraldWelte@viatech.com>
21466 S:      Maintained
21467 F:      drivers/mmc/host/via-sdmmc.c
21468
21469 VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
21470 M:      Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
21471 L:      linux-fbdev@vger.kernel.org
21472 S:      Maintained
21473 F:      drivers/video/fbdev/via/
21474 F:      include/linux/via-core.h
21475 F:      include/linux/via-gpio.h
21476 F:      include/linux/via_i2c.h
21477
21478 VIA VELOCITY NETWORK DRIVER
21479 M:      Francois Romieu <romieu@fr.zoreil.com>
21480 L:      netdev@vger.kernel.org
21481 S:      Maintained
21482 F:      drivers/net/ethernet/via/via-velocity.*
21483
21484 VICODEC VIRTUAL CODEC DRIVER
21485 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
21486 L:      linux-media@vger.kernel.org
21487 S:      Maintained
21488 W:      https://linuxtv.org
21489 T:      git git://linuxtv.org/media_tree.git
21490 F:      drivers/media/test-drivers/vicodec/*
21491
21492 VIDEO I2C POLLING DRIVER
21493 M:      Matt Ranostay <matt.ranostay@konsulko.com>
21494 L:      linux-media@vger.kernel.org
21495 S:      Maintained
21496 F:      drivers/media/i2c/video-i2c.c
21497
21498 VIDEO MULTIPLEXER DRIVER
21499 M:      Philipp Zabel <p.zabel@pengutronix.de>
21500 L:      linux-media@vger.kernel.org
21501 S:      Maintained
21502 F:      drivers/media/platform/video-mux.c
21503
21504 VIDEOBUF2 FRAMEWORK
21505 M:      Tomasz Figa <tfiga@chromium.org>
21506 M:      Marek Szyprowski <m.szyprowski@samsung.com>
21507 L:      linux-media@vger.kernel.org
21508 S:      Maintained
21509 F:      drivers/media/common/videobuf2/*
21510 F:      include/media/videobuf2-*
21511
21512 VIMC VIRTUAL MEDIA CONTROLLER DRIVER
21513 M:      Shuah Khan <skhan@linuxfoundation.org>
21514 R:      Kieran Bingham <kieran.bingham@ideasonboard.com>
21515 L:      linux-media@vger.kernel.org
21516 S:      Maintained
21517 W:      https://linuxtv.org
21518 T:      git git://linuxtv.org/media_tree.git
21519 F:      drivers/media/test-drivers/vimc/*
21520
21521 VIRT LIB
21522 M:      Alex Williamson <alex.williamson@redhat.com>
21523 M:      Paolo Bonzini <pbonzini@redhat.com>
21524 L:      kvm@vger.kernel.org
21525 S:      Supported
21526 F:      virt/lib/
21527
21528 VIRTIO AND VHOST VSOCK DRIVER
21529 M:      Stefan Hajnoczi <stefanha@redhat.com>
21530 M:      Stefano Garzarella <sgarzare@redhat.com>
21531 L:      kvm@vger.kernel.org
21532 L:      virtualization@lists.linux-foundation.org
21533 L:      netdev@vger.kernel.org
21534 S:      Maintained
21535 F:      drivers/vhost/vsock.c
21536 F:      include/linux/virtio_vsock.h
21537 F:      include/uapi/linux/virtio_vsock.h
21538 F:      net/vmw_vsock/virtio_transport.c
21539 F:      net/vmw_vsock/virtio_transport_common.c
21540
21541 VIRTIO BLOCK AND SCSI DRIVERS
21542 M:      "Michael S. Tsirkin" <mst@redhat.com>
21543 M:      Jason Wang <jasowang@redhat.com>
21544 R:      Paolo Bonzini <pbonzini@redhat.com>
21545 R:      Stefan Hajnoczi <stefanha@redhat.com>
21546 L:      virtualization@lists.linux-foundation.org
21547 S:      Maintained
21548 F:      drivers/block/virtio_blk.c
21549 F:      drivers/scsi/virtio_scsi.c
21550 F:      drivers/vhost/scsi.c
21551 F:      include/uapi/linux/virtio_blk.h
21552 F:      include/uapi/linux/virtio_scsi.h
21553
21554 VIRTIO CONSOLE DRIVER
21555 M:      Amit Shah <amit@kernel.org>
21556 L:      virtualization@lists.linux-foundation.org
21557 S:      Maintained
21558 F:      drivers/char/virtio_console.c
21559 F:      include/linux/virtio_console.h
21560 F:      include/uapi/linux/virtio_console.h
21561
21562 VIRTIO CORE AND NET DRIVERS
21563 M:      "Michael S. Tsirkin" <mst@redhat.com>
21564 M:      Jason Wang <jasowang@redhat.com>
21565 L:      virtualization@lists.linux-foundation.org
21566 S:      Maintained
21567 F:      Documentation/ABI/testing/sysfs-bus-vdpa
21568 F:      Documentation/ABI/testing/sysfs-class-vduse
21569 F:      Documentation/devicetree/bindings/virtio/
21570 F:      drivers/block/virtio_blk.c
21571 F:      drivers/crypto/virtio/
21572 F:      drivers/net/virtio_net.c
21573 F:      drivers/vdpa/
21574 F:      drivers/virtio/
21575 F:      include/linux/vdpa.h
21576 F:      include/linux/virtio*.h
21577 F:      include/uapi/linux/virtio_*.h
21578 F:      tools/virtio/
21579
21580 VIRTIO BALLOON
21581 M:      "Michael S. Tsirkin" <mst@redhat.com>
21582 M:      David Hildenbrand <david@redhat.com>
21583 L:      virtualization@lists.linux-foundation.org
21584 S:      Maintained
21585 F:      drivers/virtio/virtio_balloon.c
21586 F:      include/uapi/linux/virtio_balloon.h
21587 F:      include/linux/balloon_compaction.h
21588 F:      mm/balloon_compaction.c
21589
21590 VIRTIO CRYPTO DRIVER
21591 M:      Gonglei <arei.gonglei@huawei.com>
21592 L:      virtualization@lists.linux-foundation.org
21593 L:      linux-crypto@vger.kernel.org
21594 S:      Maintained
21595 F:      drivers/crypto/virtio/
21596 F:      include/uapi/linux/virtio_crypto.h
21597
21598 VIRTIO DRIVERS FOR S390
21599 M:      Cornelia Huck <cohuck@redhat.com>
21600 M:      Halil Pasic <pasic@linux.ibm.com>
21601 M:      Eric Farman <farman@linux.ibm.com>
21602 L:      linux-s390@vger.kernel.org
21603 L:      virtualization@lists.linux-foundation.org
21604 L:      kvm@vger.kernel.org
21605 S:      Supported
21606 F:      arch/s390/include/uapi/asm/virtio-ccw.h
21607 F:      drivers/s390/virtio/
21608
21609 VIRTIO FILE SYSTEM
21610 M:      Vivek Goyal <vgoyal@redhat.com>
21611 M:      Stefan Hajnoczi <stefanha@redhat.com>
21612 M:      Miklos Szeredi <miklos@szeredi.hu>
21613 L:      virtualization@lists.linux-foundation.org
21614 L:      linux-fsdevel@vger.kernel.org
21615 S:      Supported
21616 W:      https://virtio-fs.gitlab.io/
21617 F:      Documentation/filesystems/virtiofs.rst
21618 F:      fs/fuse/virtio_fs.c
21619 F:      include/uapi/linux/virtio_fs.h
21620
21621 VIRTIO GPIO DRIVER
21622 M:      Enrico Weigelt, metux IT consult <info@metux.net>
21623 M:      Viresh Kumar <vireshk@kernel.org>
21624 L:      linux-gpio@vger.kernel.org
21625 L:      virtualization@lists.linux-foundation.org
21626 S:      Maintained
21627 F:      drivers/gpio/gpio-virtio.c
21628 F:      include/uapi/linux/virtio_gpio.h
21629
21630 VIRTIO GPU DRIVER
21631 M:      David Airlie <airlied@redhat.com>
21632 M:      Gerd Hoffmann <kraxel@redhat.com>
21633 R:      Gurchetan Singh <gurchetansingh@chromium.org>
21634 R:      Chia-I Wu <olvaffe@gmail.com>
21635 L:      dri-devel@lists.freedesktop.org
21636 L:      virtualization@lists.linux-foundation.org
21637 S:      Maintained
21638 T:      git git://anongit.freedesktop.org/drm/drm-misc
21639 F:      drivers/gpu/drm/virtio/
21640 F:      include/uapi/linux/virtio_gpu.h
21641
21642 VIRTIO HOST (VHOST)
21643 M:      "Michael S. Tsirkin" <mst@redhat.com>
21644 M:      Jason Wang <jasowang@redhat.com>
21645 L:      kvm@vger.kernel.org
21646 L:      virtualization@lists.linux-foundation.org
21647 L:      netdev@vger.kernel.org
21648 S:      Maintained
21649 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost.git
21650 F:      drivers/vhost/
21651 F:      include/linux/vhost_iotlb.h
21652 F:      include/uapi/linux/vhost.h
21653
21654 VIRTIO INPUT DRIVER
21655 M:      Gerd Hoffmann <kraxel@redhat.com>
21656 S:      Maintained
21657 F:      drivers/virtio/virtio_input.c
21658 F:      include/uapi/linux/virtio_input.h
21659
21660 VIRTIO IOMMU DRIVER
21661 M:      Jean-Philippe Brucker <jean-philippe@linaro.org>
21662 L:      virtualization@lists.linux-foundation.org
21663 S:      Maintained
21664 F:      drivers/iommu/virtio-iommu.c
21665 F:      include/uapi/linux/virtio_iommu.h
21666
21667 VIRTIO MEM DRIVER
21668 M:      David Hildenbrand <david@redhat.com>
21669 L:      virtualization@lists.linux-foundation.org
21670 S:      Maintained
21671 W:      https://virtio-mem.gitlab.io/
21672 F:      drivers/virtio/virtio_mem.c
21673 F:      include/uapi/linux/virtio_mem.h
21674
21675 VIRTIO SOUND DRIVER
21676 M:      Anton Yakovlev <anton.yakovlev@opensynergy.com>
21677 M:      "Michael S. Tsirkin" <mst@redhat.com>
21678 L:      virtualization@lists.linux-foundation.org
21679 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
21680 S:      Maintained
21681 F:      include/uapi/linux/virtio_snd.h
21682 F:      sound/virtio/*
21683
21684 VIRTIO I2C DRIVER
21685 M:      Conghui Chen <conghui.chen@intel.com>
21686 M:      Viresh Kumar <viresh.kumar@linaro.org>
21687 L:      linux-i2c@vger.kernel.org
21688 L:      virtualization@lists.linux-foundation.org
21689 S:      Maintained
21690 F:      drivers/i2c/busses/i2c-virtio.c
21691 F:      include/uapi/linux/virtio_i2c.h
21692
21693 VIRTIO PMEM DRIVER
21694 M:      Pankaj Gupta <pankaj.gupta.linux@gmail.com>
21695 L:      virtualization@lists.linux-foundation.org
21696 S:      Maintained
21697 F:      drivers/nvdimm/virtio_pmem.c
21698 F:      drivers/nvdimm/nd_virtio.c
21699
21700 VIRTUAL BOX GUEST DEVICE DRIVER
21701 M:      Hans de Goede <hdegoede@redhat.com>
21702 M:      Arnd Bergmann <arnd@arndb.de>
21703 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
21704 S:      Maintained
21705 F:      drivers/virt/vboxguest/
21706 F:      include/linux/vbox_utils.h
21707 F:      include/uapi/linux/vbox*.h
21708
21709 VIRTUAL BOX SHARED FOLDER VFS DRIVER
21710 M:      Hans de Goede <hdegoede@redhat.com>
21711 L:      linux-fsdevel@vger.kernel.org
21712 S:      Maintained
21713 F:      fs/vboxsf/*
21714
21715 VIRTUAL SERIO DEVICE DRIVER
21716 M:      Stephen Chandler Paul <thatslyude@gmail.com>
21717 S:      Maintained
21718 F:      drivers/input/serio/userio.c
21719 F:      include/uapi/linux/userio.h
21720
21721 VIVID VIRTUAL VIDEO DRIVER
21722 M:      Hans Verkuil <hverkuil@xs4all.nl>
21723 L:      linux-media@vger.kernel.org
21724 S:      Maintained
21725 W:      https://linuxtv.org
21726 T:      git git://linuxtv.org/media_tree.git
21727 F:      drivers/media/test-drivers/vivid/*
21728
21729 VIDTV VIRTUAL DIGITAL TV DRIVER
21730 M:      Daniel W. S. Almeida <dwlsalmeida@gmail.com>
21731 L:      linux-media@vger.kernel.org
21732 S:      Maintained
21733 W:      https://linuxtv.org
21734 T:      git git://linuxtv.org/media_tree.git
21735 F:      drivers/media/test-drivers/vidtv/*
21736
21737 VLYNQ BUS
21738 M:      Florian Fainelli <f.fainelli@gmail.com>
21739 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
21740 S:      Maintained
21741 F:      drivers/vlynq/vlynq.c
21742 F:      include/linux/vlynq.h
21743
21744 VME SUBSYSTEM
21745 M:      Martyn Welch <martyn@welchs.me.uk>
21746 M:      Manohar Vanga <manohar.vanga@gmail.com>
21747 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
21748 L:      linux-kernel@vger.kernel.org
21749 S:      Odd fixes
21750 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
21751 F:      Documentation/driver-api/vme.rst
21752 F:      drivers/staging/vme_user/
21753
21754 VM SOCKETS (AF_VSOCK)
21755 M:      Stefano Garzarella <sgarzare@redhat.com>
21756 L:      virtualization@lists.linux-foundation.org
21757 L:      netdev@vger.kernel.org
21758 S:      Maintained
21759 F:      drivers/net/vsockmon.c
21760 F:      include/net/af_vsock.h
21761 F:      include/uapi/linux/vm_sockets.h
21762 F:      include/uapi/linux/vm_sockets_diag.h
21763 F:      include/uapi/linux/vsockmon.h
21764 F:      net/vmw_vsock/
21765 F:      tools/testing/vsock/
21766
21767 VMWARE BALLOON DRIVER
21768 M:      Nadav Amit <namit@vmware.com>
21769 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
21770 L:      linux-kernel@vger.kernel.org
21771 S:      Maintained
21772 F:      drivers/misc/vmw_balloon.c
21773
21774 VMWARE HYPERVISOR INTERFACE
21775 M:      Srivatsa S. Bhat (VMware) <srivatsa@csail.mit.edu>
21776 M:      Alexey Makhalov <amakhalov@vmware.com>
21777 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
21778 L:      virtualization@lists.linux-foundation.org
21779 L:      x86@kernel.org
21780 S:      Supported
21781 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vmware
21782 F:      arch/x86/include/asm/vmware.h
21783 F:      arch/x86/kernel/cpu/vmware.c
21784
21785 VMWARE PVRDMA DRIVER
21786 M:      Bryan Tan <bryantan@vmware.com>
21787 M:      Vishnu Dasa <vdasa@vmware.com>
21788 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
21789 L:      linux-rdma@vger.kernel.org
21790 S:      Maintained
21791 F:      drivers/infiniband/hw/vmw_pvrdma/
21792
21793 VMware PVSCSI driver
21794 M:      Vishal Bhakta <vbhakta@vmware.com>
21795 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
21796 L:      linux-scsi@vger.kernel.org
21797 S:      Maintained
21798 F:      drivers/scsi/vmw_pvscsi.c
21799 F:      drivers/scsi/vmw_pvscsi.h
21800
21801 VMWARE VIRTUAL PTP CLOCK DRIVER
21802 M:      Vivek Thampi <vithampi@vmware.com>
21803 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
21804 L:      netdev@vger.kernel.org
21805 S:      Supported
21806 F:      drivers/ptp/ptp_vmw.c
21807
21808 VMWARE VMCI DRIVER
21809 M:      Bryan Tan <bryantan@vmware.com>
21810 M:      Rajesh Jalisatgi <rjalisatgi@vmware.com>
21811 M:      Vishnu Dasa <vdasa@vmware.com>
21812 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
21813 L:      linux-kernel@vger.kernel.org
21814 S:      Maintained
21815 F:      drivers/misc/vmw_vmci/
21816
21817 VMWARE VMMOUSE SUBDRIVER
21818 M:      Zack Rusin <zackr@vmware.com>
21819 R:      VMware Graphics Reviewers <linux-graphics-maintainer@vmware.com>
21820 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
21821 L:      linux-input@vger.kernel.org
21822 S:      Maintained
21823 F:      drivers/input/mouse/vmmouse.c
21824 F:      drivers/input/mouse/vmmouse.h
21825
21826 VMWARE VMXNET3 ETHERNET DRIVER
21827 M:      Ronak Doshi <doshir@vmware.com>
21828 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
21829 L:      netdev@vger.kernel.org
21830 S:      Maintained
21831 F:      drivers/net/vmxnet3/
21832
21833 VOCORE VOCORE2 BOARD
21834 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
21835 L:      linux-mips@vger.kernel.org
21836 S:      Maintained
21837 F:      arch/mips/boot/dts/ralink/vocore2.dts
21838
21839 VOLTAGE AND CURRENT REGULATOR FRAMEWORK
21840 M:      Liam Girdwood <lgirdwood@gmail.com>
21841 M:      Mark Brown <broonie@kernel.org>
21842 L:      linux-kernel@vger.kernel.org
21843 S:      Supported
21844 W:      http://www.slimlogic.co.uk/?p=48
21845 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git
21846 F:      Documentation/devicetree/bindings/regulator/
21847 F:      Documentation/power/regulator/
21848 F:      drivers/regulator/
21849 F:      include/dt-bindings/regulator/
21850 F:      include/linux/regulator/
21851 K:      regulator_get_optional
21852
21853 VOLTAGE AND CURRENT REGULATOR IRQ HELPERS
21854 R:      Matti Vaittinen <mazziesaccount@gmail.com>
21855 F:      drivers/regulator/irq_helpers.c
21856
21857 VRF
21858 M:      David Ahern <dsahern@kernel.org>
21859 L:      netdev@vger.kernel.org
21860 S:      Maintained
21861 F:      Documentation/networking/vrf.rst
21862 F:      drivers/net/vrf.c
21863
21864 VSPRINTF
21865 M:      Petr Mladek <pmladek@suse.com>
21866 M:      Steven Rostedt <rostedt@goodmis.org>
21867 M:      Sergey Senozhatsky <senozhatsky@chromium.org>
21868 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
21869 R:      Rasmus Villemoes <linux@rasmusvillemoes.dk>
21870 S:      Maintained
21871 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/printk/linux.git
21872 F:      Documentation/core-api/printk-formats.rst
21873 F:      lib/test_printf.c
21874 F:      lib/test_scanf.c
21875 F:      lib/vsprintf.c
21876
21877 VT1211 HARDWARE MONITOR DRIVER
21878 M:      Juerg Haefliger <juergh@proton.me>
21879 L:      linux-hwmon@vger.kernel.org
21880 S:      Maintained
21881 F:      Documentation/hwmon/vt1211.rst
21882 F:      drivers/hwmon/vt1211.c
21883
21884 VT8231 HARDWARE MONITOR DRIVER
21885 M:      Roger Lucas <vt8231@hiddenengine.co.uk>
21886 L:      linux-hwmon@vger.kernel.org
21887 S:      Maintained
21888 F:      drivers/hwmon/vt8231.c
21889
21890 VUB300 USB to SDIO/SD/MMC bridge chip
21891 L:      linux-mmc@vger.kernel.org
21892 S:      Orphan
21893 F:      drivers/mmc/host/vub300.c
21894
21895 W1 DALLAS'S 1-WIRE BUS
21896 M:      Evgeniy Polyakov <zbr@ioremap.net>
21897 S:      Maintained
21898 F:      Documentation/devicetree/bindings/w1/
21899 F:      Documentation/w1/
21900 F:      drivers/w1/
21901 F:      include/linux/w1.h
21902
21903 W83791D HARDWARE MONITORING DRIVER
21904 M:      Marc Hulsman <m.hulsman@tudelft.nl>
21905 L:      linux-hwmon@vger.kernel.org
21906 S:      Maintained
21907 F:      Documentation/hwmon/w83791d.rst
21908 F:      drivers/hwmon/w83791d.c
21909
21910 W83793 HARDWARE MONITORING DRIVER
21911 M:      Rudolf Marek <r.marek@assembler.cz>
21912 L:      linux-hwmon@vger.kernel.org
21913 S:      Maintained
21914 F:      Documentation/hwmon/w83793.rst
21915 F:      drivers/hwmon/w83793.c
21916
21917 W83795 HARDWARE MONITORING DRIVER
21918 M:      Jean Delvare <jdelvare@suse.com>
21919 L:      linux-hwmon@vger.kernel.org
21920 S:      Maintained
21921 F:      drivers/hwmon/w83795.c
21922
21923 W83L51xD SD/MMC CARD INTERFACE DRIVER
21924 M:      Pierre Ossman <pierre@ossman.eu>
21925 S:      Maintained
21926 F:      drivers/mmc/host/wbsd.*
21927
21928 WACOM PROTOCOL 4 SERIAL TABLETS
21929 M:      Julian Squires <julian@cipht.net>
21930 M:      Hans de Goede <hdegoede@redhat.com>
21931 L:      linux-input@vger.kernel.org
21932 S:      Maintained
21933 F:      drivers/input/tablet/wacom_serial4.c
21934
21935 WANGXUN ETHERNET DRIVER
21936 M:      Jiawen Wu <jiawenwu@trustnetic.com>
21937 M:      Mengyuan Lou <mengyuanlou@net-swift.com>
21938 W:      https://www.net-swift.com
21939 L:      netdev@vger.kernel.org
21940 S:      Maintained
21941 F:      Documentation/networking/device_drivers/ethernet/wangxun/*
21942 F:      drivers/net/ethernet/wangxun/
21943
21944 WATCHDOG DEVICE DRIVERS
21945 M:      Wim Van Sebroeck <wim@linux-watchdog.org>
21946 M:      Guenter Roeck <linux@roeck-us.net>
21947 L:      linux-watchdog@vger.kernel.org
21948 S:      Maintained
21949 W:      http://www.linux-watchdog.org/
21950 T:      git git://www.linux-watchdog.org/linux-watchdog.git
21951 F:      Documentation/devicetree/bindings/watchdog/
21952 F:      Documentation/watchdog/
21953 F:      drivers/watchdog/
21954 F:      include/linux/watchdog.h
21955 F:      include/uapi/linux/watchdog.h
21956
21957 WHISKEYCOVE PMIC GPIO DRIVER
21958 M:      Kuppuswamy Sathyanarayanan <sathyanarayanan.kuppuswamy@linux.intel.com>
21959 L:      linux-gpio@vger.kernel.org
21960 S:      Maintained
21961 F:      drivers/gpio/gpio-wcove.c
21962
21963 WHWAVE RTC DRIVER
21964 M:      Dianlong Li <long17.cool@163.com>
21965 L:      linux-rtc@vger.kernel.org
21966 S:      Maintained
21967 F:      drivers/rtc/rtc-sd3078.c
21968
21969 WIIMOTE HID DRIVER
21970 M:      David Rheinsberg <david.rheinsberg@gmail.com>
21971 L:      linux-input@vger.kernel.org
21972 S:      Maintained
21973 F:      drivers/hid/hid-wiimote*
21974
21975 WILOCITY WIL6210 WIRELESS DRIVER
21976 L:      linux-wireless@vger.kernel.org
21977 S:      Orphan
21978 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wil6210
21979 F:      drivers/net/wireless/ath/wil6210/
21980
21981 WINBOND CIR DRIVER
21982 M:      David Härdeman <david@hardeman.nu>
21983 S:      Maintained
21984 F:      drivers/media/rc/winbond-cir.c
21985
21986 WINSYSTEMS EBC-C384 WATCHDOG DRIVER
21987 M:      William Breathitt Gray <william.gray@linaro.org>
21988 L:      linux-watchdog@vger.kernel.org
21989 S:      Maintained
21990 F:      drivers/watchdog/ebc-c384_wdt.c
21991
21992 WINSYSTEMS WS16C48 GPIO DRIVER
21993 M:      William Breathitt Gray <william.gray@linaro.org>
21994 L:      linux-gpio@vger.kernel.org
21995 S:      Maintained
21996 F:      drivers/gpio/gpio-ws16c48.c
21997
21998 WIREGUARD SECURE NETWORK TUNNEL
21999 M:      Jason A. Donenfeld <Jason@zx2c4.com>
22000 L:      wireguard@lists.zx2c4.com
22001 L:      netdev@vger.kernel.org
22002 S:      Maintained
22003 F:      drivers/net/wireguard/
22004 F:      tools/testing/selftests/wireguard/
22005
22006 WISTRON LAPTOP BUTTON DRIVER
22007 M:      Miloslav Trmac <mitr@volny.cz>
22008 S:      Maintained
22009 F:      drivers/input/misc/wistron_btns.c
22010
22011 WL3501 WIRELESS PCMCIA CARD DRIVER
22012 L:      linux-wireless@vger.kernel.org
22013 S:      Odd fixes
22014 F:      drivers/net/wireless/wl3501*
22015
22016 WOLFSON MICROELECTRONICS DRIVERS
22017 L:      patches@opensource.cirrus.com
22018 S:      Supported
22019 W:      https://github.com/CirrusLogic/linux-drivers/wiki
22020 T:      git https://github.com/CirrusLogic/linux-drivers.git
22021 F:      Documentation/devicetree/bindings/extcon/wlf,arizona.yaml
22022 F:      Documentation/devicetree/bindings/mfd/wlf,arizona.yaml
22023 F:      Documentation/devicetree/bindings/mfd/wm831x.txt
22024 F:      Documentation/devicetree/bindings/regulator/wlf,arizona.yaml
22025 F:      Documentation/devicetree/bindings/sound/wlf,*.yaml
22026 F:      Documentation/devicetree/bindings/sound/wm*
22027 F:      Documentation/hwmon/wm83??.rst
22028 F:      arch/arm/mach-s3c/mach-crag6410*
22029 F:      drivers/clk/clk-wm83*.c
22030 F:      drivers/gpio/gpio-*wm*.c
22031 F:      drivers/gpio/gpio-arizona.c
22032 F:      drivers/hwmon/wm83??-hwmon.c
22033 F:      drivers/input/misc/wm831x-on.c
22034 F:      drivers/input/touchscreen/wm831x-ts.c
22035 F:      drivers/input/touchscreen/wm97*.c
22036 F:      drivers/leds/leds-wm83*.c
22037 F:      drivers/mfd/arizona*
22038 F:      drivers/mfd/cs47l24*
22039 F:      drivers/mfd/wm*.c
22040 F:      drivers/power/supply/wm83*.c
22041 F:      drivers/regulator/arizona*
22042 F:      drivers/regulator/wm8*.c
22043 F:      drivers/rtc/rtc-wm83*.c
22044 F:      drivers/video/backlight/wm83*_bl.c
22045 F:      drivers/watchdog/wm83*_wdt.c
22046 F:      include/linux/mfd/arizona/
22047 F:      include/linux/mfd/wm831x/
22048 F:      include/linux/mfd/wm8350/
22049 F:      include/linux/mfd/wm8400*
22050 F:      include/linux/regulator/arizona*
22051 F:      include/linux/wm97xx.h
22052 F:      include/sound/wm????.h
22053 F:      sound/soc/codecs/arizona*
22054 F:      sound/soc/codecs/cs47l24*
22055 F:      sound/soc/codecs/wm*
22056
22057 WORKQUEUE
22058 M:      Tejun Heo <tj@kernel.org>
22059 R:      Lai Jiangshan <jiangshanlai@gmail.com>
22060 S:      Maintained
22061 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
22062 F:      Documentation/core-api/workqueue.rst
22063 F:      include/linux/workqueue.h
22064 F:      kernel/workqueue.c
22065
22066 WWAN DRIVERS
22067 M:      Loic Poulain <loic.poulain@linaro.org>
22068 M:      Sergey Ryazanov <ryazanov.s.a@gmail.com>
22069 R:      Johannes Berg <johannes@sipsolutions.net>
22070 L:      netdev@vger.kernel.org
22071 S:      Maintained
22072 F:      drivers/net/wwan/
22073 F:      include/linux/wwan.h
22074 F:      include/uapi/linux/wwan.h
22075
22076 X-POWERS AXP288 PMIC DRIVERS
22077 M:      Hans de Goede <hdegoede@redhat.com>
22078 S:      Maintained
22079 F:      drivers/acpi/pmic/intel_pmic_xpower.c
22080 N:      axp288
22081
22082 X-POWERS MULTIFUNCTION PMIC DEVICE DRIVERS
22083 M:      Chen-Yu Tsai <wens@csie.org>
22084 L:      linux-kernel@vger.kernel.org
22085 S:      Maintained
22086 N:      axp[128]
22087
22088 X.25 STACK
22089 M:      Martin Schiller <ms@dev.tdt.de>
22090 L:      linux-x25@vger.kernel.org
22091 S:      Maintained
22092 F:      Documentation/networking/lapb-module.rst
22093 F:      Documentation/networking/x25*
22094 F:      drivers/net/wan/hdlc_x25.c
22095 F:      drivers/net/wan/lapbether.c
22096 F:      include/*/lapb.h
22097 F:      include/net/x25*
22098 F:      include/uapi/linux/x25.h
22099 F:      net/lapb/
22100 F:      net/x25/
22101
22102 X86 ARCHITECTURE (32-BIT AND 64-BIT)
22103 M:      Thomas Gleixner <tglx@linutronix.de>
22104 M:      Ingo Molnar <mingo@redhat.com>
22105 M:      Borislav Petkov <bp@alien8.de>
22106 M:      Dave Hansen <dave.hansen@linux.intel.com>
22107 M:      x86@kernel.org
22108 R:      "H. Peter Anvin" <hpa@zytor.com>
22109 L:      linux-kernel@vger.kernel.org
22110 S:      Maintained
22111 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
22112 F:      Documentation/devicetree/bindings/x86/
22113 F:      Documentation/x86/
22114 F:      arch/x86/
22115
22116 X86 ENTRY CODE
22117 M:      Andy Lutomirski <luto@kernel.org>
22118 L:      linux-kernel@vger.kernel.org
22119 S:      Maintained
22120 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/asm
22121 F:      arch/x86/entry/
22122
22123 X86 MCE INFRASTRUCTURE
22124 M:      Tony Luck <tony.luck@intel.com>
22125 M:      Borislav Petkov <bp@alien8.de>
22126 L:      linux-edac@vger.kernel.org
22127 S:      Maintained
22128 F:      Documentation/ABI/testing/sysfs-mce
22129 F:      Documentation/x86/x86_64/machinecheck.rst
22130 F:      arch/x86/kernel/cpu/mce/*
22131
22132 X86 MICROCODE UPDATE SUPPORT
22133 M:      Borislav Petkov <bp@alien8.de>
22134 S:      Maintained
22135 F:      arch/x86/kernel/cpu/microcode/*
22136
22137 X86 MM
22138 M:      Dave Hansen <dave.hansen@linux.intel.com>
22139 M:      Andy Lutomirski <luto@kernel.org>
22140 M:      Peter Zijlstra <peterz@infradead.org>
22141 L:      linux-kernel@vger.kernel.org
22142 S:      Maintained
22143 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/mm
22144 F:      arch/x86/mm/
22145
22146 X86 PLATFORM ANDROID TABLETS DSDT FIXUP DRIVER
22147 M:      Hans de Goede <hdegoede@redhat.com>
22148 L:      platform-driver-x86@vger.kernel.org
22149 S:      Maintained
22150 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
22151 F:      drivers/platform/x86/x86-android-tablets.c
22152
22153 X86 PLATFORM DRIVERS
22154 M:      Hans de Goede <hdegoede@redhat.com>
22155 M:      Mark Gross <markgross@kernel.org>
22156 L:      platform-driver-x86@vger.kernel.org
22157 S:      Maintained
22158 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
22159 F:      drivers/platform/olpc/
22160 F:      drivers/platform/x86/
22161
22162 X86 PLATFORM DRIVERS - ARCH
22163 R:      Darren Hart <dvhart@infradead.org>
22164 R:      Andy Shevchenko <andy@infradead.org>
22165 L:      platform-driver-x86@vger.kernel.org
22166 L:      x86@kernel.org
22167 S:      Maintained
22168 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
22169 F:      arch/x86/platform
22170
22171 X86 PLATFORM UV HPE SUPERDOME FLEX
22172 M:      Steve Wahl <steve.wahl@hpe.com>
22173 R:      Mike Travis <mike.travis@hpe.com>
22174 R:      Dimitri Sivanich <dimitri.sivanich@hpe.com>
22175 R:      Russ Anderson <russ.anderson@hpe.com>
22176 S:      Supported
22177 F:      arch/x86/include/asm/uv/
22178 F:      arch/x86/kernel/apic/x2apic_uv_x.c
22179 F:      arch/x86/platform/uv/
22180
22181 X86 STACK UNWINDING
22182 M:      Josh Poimboeuf <jpoimboe@kernel.org>
22183 M:      Peter Zijlstra <peterz@infradead.org>
22184 S:      Supported
22185 F:      arch/x86/include/asm/unwind*.h
22186 F:      arch/x86/kernel/dumpstack.c
22187 F:      arch/x86/kernel/stacktrace.c
22188 F:      arch/x86/kernel/unwind_*.c
22189
22190 X86 VDSO
22191 M:      Andy Lutomirski <luto@kernel.org>
22192 L:      linux-kernel@vger.kernel.org
22193 S:      Maintained
22194 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso
22195 F:      arch/x86/entry/vdso/
22196
22197 XARRAY
22198 M:      Matthew Wilcox <willy@infradead.org>
22199 L:      linux-fsdevel@vger.kernel.org
22200 S:      Supported
22201 F:      Documentation/core-api/xarray.rst
22202 F:      include/linux/idr.h
22203 F:      include/linux/xarray.h
22204 F:      lib/idr.c
22205 F:      lib/xarray.c
22206 F:      tools/testing/radix-tree
22207
22208 XBOX DVD IR REMOTE
22209 M:      Benjamin Valentin <benpicco@googlemail.com>
22210 S:      Maintained
22211 F:      drivers/media/rc/keymaps/rc-xbox-dvd.c
22212 F:      drivers/media/rc/xbox_remote.c
22213
22214 XC2028/3028 TUNER DRIVER
22215 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
22216 L:      linux-media@vger.kernel.org
22217 S:      Maintained
22218 W:      https://linuxtv.org
22219 T:      git git://linuxtv.org/media_tree.git
22220 F:      drivers/media/tuners/xc2028.*
22221
22222 XDP (eXpress Data Path)
22223 M:      Alexei Starovoitov <ast@kernel.org>
22224 M:      Daniel Borkmann <daniel@iogearbox.net>
22225 M:      David S. Miller <davem@davemloft.net>
22226 M:      Jakub Kicinski <kuba@kernel.org>
22227 M:      Jesper Dangaard Brouer <hawk@kernel.org>
22228 M:      John Fastabend <john.fastabend@gmail.com>
22229 L:      netdev@vger.kernel.org
22230 L:      bpf@vger.kernel.org
22231 S:      Supported
22232 F:      include/net/xdp.h
22233 F:      include/net/xdp_priv.h
22234 F:      include/trace/events/xdp.h
22235 F:      kernel/bpf/cpumap.c
22236 F:      kernel/bpf/devmap.c
22237 F:      net/core/xdp.c
22238 F:      samples/bpf/xdp*
22239 F:      tools/testing/selftests/bpf/*xdp*
22240 F:      tools/testing/selftests/bpf/*/*xdp*
22241 F:      drivers/net/ethernet/*/*/*/*/*xdp*
22242 F:      drivers/net/ethernet/*/*/*xdp*
22243 K:      (?:\b|_)xdp(?:\b|_)
22244
22245 XDP SOCKETS (AF_XDP)
22246 M:      Björn Töpel <bjorn@kernel.org>
22247 M:      Magnus Karlsson <magnus.karlsson@intel.com>
22248 M:      Maciej Fijalkowski <maciej.fijalkowski@intel.com>
22249 R:      Jonathan Lemon <jonathan.lemon@gmail.com>
22250 L:      netdev@vger.kernel.org
22251 L:      bpf@vger.kernel.org
22252 S:      Maintained
22253 F:      Documentation/networking/af_xdp.rst
22254 F:      include/net/xdp_sock*
22255 F:      include/net/xsk_buff_pool.h
22256 F:      include/uapi/linux/if_xdp.h
22257 F:      include/uapi/linux/xdp_diag.h
22258 F:      include/net/netns/xdp.h
22259 F:      net/xdp/
22260 F:      tools/testing/selftests/bpf/*xsk*
22261
22262 XEN BLOCK SUBSYSTEM
22263 M:      Roger Pau Monné <roger.pau@citrix.com>
22264 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
22265 S:      Supported
22266 F:      drivers/block/xen*
22267 F:      drivers/block/xen-blkback/*
22268
22269 XEN HYPERVISOR ARM
22270 M:      Stefano Stabellini <sstabellini@kernel.org>
22271 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
22272 S:      Maintained
22273 F:      arch/arm/include/asm/xen/
22274 F:      arch/arm/xen/
22275
22276 XEN HYPERVISOR ARM64
22277 M:      Stefano Stabellini <sstabellini@kernel.org>
22278 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
22279 S:      Maintained
22280 F:      arch/arm64/include/asm/xen/
22281 F:      arch/arm64/xen/
22282
22283 XEN HYPERVISOR INTERFACE
22284 M:      Juergen Gross <jgross@suse.com>
22285 M:      Stefano Stabellini <sstabellini@kernel.org>
22286 R:      Oleksandr Tyshchenko <oleksandr_tyshchenko@epam.com>
22287 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
22288 S:      Supported
22289 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git
22290 F:      Documentation/ABI/stable/sysfs-hypervisor-xen
22291 F:      Documentation/ABI/testing/sysfs-hypervisor-xen
22292 F:      drivers/*/xen-*front.c
22293 F:      drivers/xen/
22294 F:      include/uapi/xen/
22295 F:      include/xen/
22296 F:      kernel/configs/xen.config
22297
22298 XEN HYPERVISOR X86
22299 M:      Juergen Gross <jgross@suse.com>
22300 R:      Boris Ostrovsky <boris.ostrovsky@oracle.com>
22301 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
22302 S:      Supported
22303 F:      arch/x86/configs/xen.config
22304 F:      arch/x86/include/asm/pvclock-abi.h
22305 F:      arch/x86/include/asm/xen/
22306 F:      arch/x86/platform/pvh/
22307 F:      arch/x86/xen/
22308
22309 XEN NETWORK BACKEND DRIVER
22310 M:      Wei Liu <wei.liu@kernel.org>
22311 M:      Paul Durrant <paul@xen.org>
22312 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
22313 L:      netdev@vger.kernel.org
22314 S:      Supported
22315 F:      drivers/net/xen-netback/*
22316
22317 XEN PCI SUBSYSTEM
22318 M:      Juergen Gross <jgross@suse.com>
22319 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
22320 S:      Supported
22321 F:      arch/x86/pci/*xen*
22322 F:      drivers/pci/*xen*
22323
22324 XEN PVSCSI DRIVERS
22325 M:      Juergen Gross <jgross@suse.com>
22326 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
22327 L:      linux-scsi@vger.kernel.org
22328 S:      Supported
22329 F:      drivers/scsi/xen-scsifront.c
22330 F:      drivers/xen/xen-scsiback.c
22331 F:      include/xen/interface/io/vscsiif.h
22332
22333 XEN PVUSB DRIVER
22334 M:      Juergen Gross <jgross@suse.com>
22335 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
22336 L:      linux-usb@vger.kernel.org
22337 S:      Supported
22338 F:      drivers/usb/host/xen*
22339 F:      include/xen/interface/io/usbif.h
22340
22341 XEN SOUND FRONTEND DRIVER
22342 M:      Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
22343 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
22344 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
22345 S:      Supported
22346 F:      sound/xen/*
22347
22348 XEN SWIOTLB SUBSYSTEM
22349 M:      Juergen Gross <jgross@suse.com>
22350 M:      Stefano Stabellini <sstabellini@kernel.org>
22351 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
22352 L:      iommu@lists.linux.dev
22353 S:      Supported
22354 F:      arch/x86/xen/*swiotlb*
22355 F:      drivers/xen/*swiotlb*
22356
22357 XFS FILESYSTEM
22358 C:      irc://irc.oftc.net/xfs
22359 M:      Darrick J. Wong <djwong@kernel.org>
22360 L:      linux-xfs@vger.kernel.org
22361 S:      Supported
22362 W:      http://xfs.org/
22363 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
22364 F:      Documentation/ABI/testing/sysfs-fs-xfs
22365 F:      Documentation/admin-guide/xfs.rst
22366 F:      Documentation/filesystems/xfs-delayed-logging-design.rst
22367 F:      Documentation/filesystems/xfs-self-describing-metadata.rst
22368 F:      fs/xfs/
22369 F:      include/uapi/linux/dqblk_xfs.h
22370 F:      include/uapi/linux/fsmap.h
22371
22372 XILINX AMS DRIVER
22373 M:      Anand Ashok Dumbre <anand.ashok.dumbre@xilinx.com>
22374 L:      linux-iio@vger.kernel.org
22375 S:      Maintained
22376 F:      Documentation/devicetree/bindings/iio/adc/xlnx,zynqmp-ams.yaml
22377 F:      drivers/iio/adc/xilinx-ams.c
22378
22379 XILINX AXI ETHERNET DRIVER
22380 M:      Radhey Shyam Pandey <radhey.shyam.pandey@xilinx.com>
22381 S:      Maintained
22382 F:      drivers/net/ethernet/xilinx/xilinx_axienet*
22383
22384 XILINX CAN DRIVER
22385 M:      Appana Durga Kedareswara rao <appana.durga.rao@xilinx.com>
22386 R:      Naga Sureshkumar Relli <naga.sureshkumar.relli@xilinx.com>
22387 L:      linux-can@vger.kernel.org
22388 S:      Maintained
22389 F:      Documentation/devicetree/bindings/net/can/xilinx,can.yaml
22390 F:      drivers/net/can/xilinx_can.c
22391
22392 XILINX GPIO DRIVER
22393 M:      Shubhrajyoti Datta <shubhrajyoti.datta@xilinx.com>
22394 R:      Srinivas Neeli <srinivas.neeli@xilinx.com>
22395 R:      Michal Simek <michal.simek@xilinx.com>
22396 S:      Maintained
22397 F:      Documentation/devicetree/bindings/gpio/xlnx,gpio-xilinx.yaml
22398 F:      Documentation/devicetree/bindings/gpio/gpio-zynq.yaml
22399 F:      drivers/gpio/gpio-xilinx.c
22400 F:      drivers/gpio/gpio-zynq.c
22401
22402 XILINX SD-FEC IP CORES
22403 M:      Derek Kiernan <derek.kiernan@xilinx.com>
22404 M:      Dragan Cvetic <dragan.cvetic@xilinx.com>
22405 S:      Maintained
22406 F:      Documentation/devicetree/bindings/misc/xlnx,sd-fec.txt
22407 F:      Documentation/misc-devices/xilinx_sdfec.rst
22408 F:      drivers/misc/Kconfig
22409 F:      drivers/misc/Makefile
22410 F:      drivers/misc/xilinx_sdfec.c
22411 F:      include/uapi/misc/xilinx_sdfec.h
22412
22413 XILINX PWM DRIVER
22414 M:      Sean Anderson <sean.anderson@seco.com>
22415 S:      Maintained
22416 F:      drivers/pwm/pwm-xilinx.c
22417 F:      include/clocksource/timer-xilinx.h
22418
22419 XILINX UARTLITE SERIAL DRIVER
22420 M:      Peter Korsgaard <jacmet@sunsite.dk>
22421 L:      linux-serial@vger.kernel.org
22422 S:      Maintained
22423 F:      drivers/tty/serial/uartlite.c
22424
22425 XILINX VIDEO IP CORES
22426 M:      Hyun Kwon <hyun.kwon@xilinx.com>
22427 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
22428 L:      linux-media@vger.kernel.org
22429 S:      Supported
22430 T:      git git://linuxtv.org/media_tree.git
22431 F:      Documentation/devicetree/bindings/media/xilinx/
22432 F:      drivers/media/platform/xilinx/
22433 F:      include/uapi/linux/xilinx-v4l2-controls.h
22434
22435 XILINX ZYNQMP DPDMA DRIVER
22436 M:      Hyun Kwon <hyun.kwon@xilinx.com>
22437 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
22438 L:      dmaengine@vger.kernel.org
22439 S:      Supported
22440 F:      Documentation/devicetree/bindings/dma/xilinx/xlnx,zynqmp-dpdma.yaml
22441 F:      drivers/dma/xilinx/xilinx_dpdma.c
22442 F:      include/dt-bindings/dma/xlnx-zynqmp-dpdma.h
22443
22444 XILINX ZYNQMP PSGTR PHY DRIVER
22445 M:      Anurag Kumar Vulisha <anurag.kumar.vulisha@xilinx.com>
22446 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
22447 L:      linux-kernel@vger.kernel.org
22448 S:      Supported
22449 T:      git https://github.com/Xilinx/linux-xlnx.git
22450 F:      Documentation/devicetree/bindings/phy/xlnx,zynqmp-psgtr.yaml
22451 F:      drivers/phy/xilinx/phy-zynqmp.c
22452
22453 XILINX ZYNQMP SHA3 DRIVER
22454 M:      Harsha <harsha.harsha@xilinx.com>
22455 S:      Maintained
22456 F:      drivers/crypto/xilinx/zynqmp-sha.c
22457
22458 XILINX EVENT MANAGEMENT DRIVER
22459 M:      Abhyuday Godhasara <abhyuday.godhasara@xilinx.com>
22460 S:      Maintained
22461 F:      drivers/soc/xilinx/xlnx_event_manager.c
22462 F:      include/linux/firmware/xlnx-event-manager.h
22463
22464 XILLYBUS DRIVER
22465 M:      Eli Billauer <eli.billauer@gmail.com>
22466 L:      linux-kernel@vger.kernel.org
22467 S:      Supported
22468 F:      drivers/char/xillybus/
22469
22470 XLP9XX I2C DRIVER
22471 M:      George Cherian <gcherian@marvell.com>
22472 L:      linux-i2c@vger.kernel.org
22473 S:      Supported
22474 W:      http://www.marvell.com
22475 F:      drivers/i2c/busses/i2c-xlp9xx.c
22476
22477 XRA1403 GPIO EXPANDER
22478 M:      Nandor Han <nandor.han@ge.com>
22479 M:      Semi Malinen <semi.malinen@ge.com>
22480 L:      linux-gpio@vger.kernel.org
22481 S:      Maintained
22482 F:      Documentation/devicetree/bindings/gpio/gpio-xra1403.txt
22483 F:      drivers/gpio/gpio-xra1403.c
22484
22485 XTENSA XTFPGA PLATFORM SUPPORT
22486 M:      Max Filippov <jcmvbkbc@gmail.com>
22487 L:      linux-xtensa@linux-xtensa.org
22488 S:      Maintained
22489 F:      drivers/spi/spi-xtensa-xtfpga.c
22490 F:      sound/soc/xtensa/xtfpga-i2s.c
22491
22492 YAM DRIVER FOR AX.25
22493 M:      Jean-Paul Roubelat <jpr@f6fbb.org>
22494 L:      linux-hams@vger.kernel.org
22495 S:      Maintained
22496 F:      drivers/net/hamradio/yam*
22497 F:      include/linux/yam.h
22498
22499 YAMA SECURITY MODULE
22500 M:      Kees Cook <keescook@chromium.org>
22501 S:      Supported
22502 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/hardening
22503 F:      Documentation/admin-guide/LSM/Yama.rst
22504 F:      security/yama/
22505
22506 YEALINK PHONE DRIVER
22507 M:      Henk Vergonet <Henk.Vergonet@gmail.com>
22508 L:      usbb2k-api-dev@nongnu.org
22509 S:      Maintained
22510 F:      Documentation/input/devices/yealink.rst
22511 F:      drivers/input/misc/yealink.*
22512
22513 Z8530 DRIVER FOR AX.25
22514 M:      Joerg Reuter <jreuter@yaina.de>
22515 L:      linux-hams@vger.kernel.org
22516 S:      Maintained
22517 W:      http://yaina.de/jreuter/
22518 W:      http://www.qsl.net/dl1bke/
22519 F:      Documentation/networking/device_drivers/hamradio/z8530drv.rst
22520 F:      drivers/net/hamradio/*scc.c
22521 F:      drivers/net/hamradio/z8530.h
22522
22523 ZBUD COMPRESSED PAGE ALLOCATOR
22524 M:      Seth Jennings <sjenning@redhat.com>
22525 M:      Dan Streetman <ddstreet@ieee.org>
22526 L:      linux-mm@kvack.org
22527 S:      Maintained
22528 F:      mm/zbud.c
22529
22530 Z3FOLD COMPRESSED PAGE ALLOCATOR
22531 M:      Vitaly Wool <vitaly.wool@konsulko.com>
22532 R:      Miaohe Lin <linmiaohe@huawei.com>
22533 L:      linux-mm@kvack.org
22534 S:      Maintained
22535 F:      mm/z3fold.c
22536
22537 ZD1211RW WIRELESS DRIVER
22538 M:      Ulrich Kunitz <kune@deine-taler.de>
22539 L:      linux-wireless@vger.kernel.org
22540 L:      zd1211-devs@lists.sourceforge.net (subscribers-only)
22541 S:      Maintained
22542 W:      http://zd1211.ath.cx/wiki/DriverRewrite
22543 F:      drivers/net/wireless/zydas/zd1211rw/
22544
22545 ZD1301 MEDIA DRIVER
22546 M:      Antti Palosaari <crope@iki.fi>
22547 L:      linux-media@vger.kernel.org
22548 S:      Maintained
22549 W:      https://linuxtv.org/
22550 W:      http://palosaari.fi/linux/
22551 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
22552 F:      drivers/media/usb/dvb-usb-v2/zd1301*
22553
22554 ZD1301_DEMOD MEDIA DRIVER
22555 M:      Antti Palosaari <crope@iki.fi>
22556 L:      linux-media@vger.kernel.org
22557 S:      Maintained
22558 W:      https://linuxtv.org/
22559 W:      http://palosaari.fi/linux/
22560 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
22561 F:      drivers/media/dvb-frontends/zd1301_demod*
22562
22563 ZHAOXIN PROCESSOR SUPPORT
22564 M:      Tony W Wang-oc <TonyWWang-oc@zhaoxin.com>
22565 L:      linux-kernel@vger.kernel.org
22566 S:      Maintained
22567 F:      arch/x86/kernel/cpu/zhaoxin.c
22568
22569 ZONEFS FILESYSTEM
22570 M:      Damien Le Moal <damien.lemoal@opensource.wdc.com>
22571 M:      Naohiro Aota <naohiro.aota@wdc.com>
22572 R:      Johannes Thumshirn <jth@kernel.org>
22573 L:      linux-fsdevel@vger.kernel.org
22574 S:      Maintained
22575 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dlemoal/zonefs.git
22576 F:      Documentation/filesystems/zonefs.rst
22577 F:      fs/zonefs/
22578
22579 ZPOOL COMPRESSED PAGE STORAGE API
22580 M:      Dan Streetman <ddstreet@ieee.org>
22581 L:      linux-mm@kvack.org
22582 S:      Maintained
22583 F:      include/linux/zpool.h
22584 F:      mm/zpool.c
22585
22586 ZR36067 VIDEO FOR LINUX DRIVER
22587 M:      Corentin Labbe <clabbe@baylibre.com>
22588 L:      mjpeg-users@lists.sourceforge.net
22589 L:      linux-media@vger.kernel.org
22590 S:      Maintained
22591 W:      http://mjpeg.sourceforge.net/driver-zoran/
22592 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
22593 F:      Documentation/driver-api/media/drivers/zoran.rst
22594 F:      drivers/staging/media/zoran/
22595
22596 ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER
22597 M:      Minchan Kim <minchan@kernel.org>
22598 M:      Nitin Gupta <ngupta@vflare.org>
22599 R:      Sergey Senozhatsky <senozhatsky@chromium.org>
22600 L:      linux-kernel@vger.kernel.org
22601 S:      Maintained
22602 F:      Documentation/admin-guide/blockdev/zram.rst
22603 F:      drivers/block/zram/
22604
22605 ZS DECSTATION Z85C30 SERIAL DRIVER
22606 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
22607 S:      Maintained
22608 F:      drivers/tty/serial/zs.*
22609
22610 ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR
22611 M:      Minchan Kim <minchan@kernel.org>
22612 M:      Nitin Gupta <ngupta@vflare.org>
22613 R:      Sergey Senozhatsky <senozhatsky@chromium.org>
22614 L:      linux-mm@kvack.org
22615 S:      Maintained
22616 F:      Documentation/mm/zsmalloc.rst
22617 F:      include/linux/zsmalloc.h
22618 F:      mm/zsmalloc.c
22619
22620 ZSTD
22621 M:      Nick Terrell <terrelln@fb.com>
22622 S:      Maintained
22623 B:      https://github.com/facebook/zstd/issues
22624 T:      git git://github.com/terrelln/linux.git
22625 F:      include/linux/zstd*
22626 F:      lib/zstd/
22627 F:      lib/decompress_unzstd.c
22628 F:      crypto/zstd.c
22629 N:      zstd
22630 K:      zstd
22631
22632 ZSWAP COMPRESSED SWAP CACHING
22633 M:      Seth Jennings <sjenning@redhat.com>
22634 M:      Dan Streetman <ddstreet@ieee.org>
22635 M:      Vitaly Wool <vitaly.wool@konsulko.com>
22636 L:      linux-mm@kvack.org
22637 S:      Maintained
22638 F:      mm/zswap.c
22639
22640 THE REST
22641 M:      Linus Torvalds <torvalds@linux-foundation.org>
22642 L:      linux-kernel@vger.kernel.org
22643 S:      Buried alive in reporters
22644 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
22645 F:      *
22646 F:      */