Merge tag 'for-linus-iommufd' of git://git.kernel.org/pub/scm/linux/kernel/git/jgg...
[sfrench/cifs-2.6.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/process/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@kernel.org>
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@lists.linux.dev
232 S:      Maintained
233 W:      http://github.com/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 IDIO-16 GPIO LIBRARY
316 M:      William Breathitt Gray <william.gray@linaro.org>
317 L:      linux-gpio@vger.kernel.org
318 S:      Maintained
319 F:      drivers/gpio/gpio-idio-16.c
320 F:      drivers/gpio/gpio-idio-16.h
321
322 ACCES PCI-IDIO-16 GPIO DRIVER
323 M:      William Breathitt Gray <william.gray@linaro.org>
324 L:      linux-gpio@vger.kernel.org
325 S:      Maintained
326 F:      drivers/gpio/gpio-pci-idio-16.c
327
328 ACCES PCIe-IDIO-24 GPIO DRIVER
329 M:      William Breathitt Gray <william.gray@linaro.org>
330 L:      linux-gpio@vger.kernel.org
331 S:      Maintained
332 F:      drivers/gpio/gpio-pcie-idio-24.c
333
334 ACENIC DRIVER
335 M:      Jes Sorensen <jes@trained-monkey.org>
336 L:      linux-acenic@sunsite.dk
337 S:      Maintained
338 F:      drivers/net/ethernet/alteon/acenic*
339
340 ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER
341 M:      Peter Kaestle <peter@piie.net>
342 L:      platform-driver-x86@vger.kernel.org
343 S:      Maintained
344 W:      http://piie.net/?section=acerhdf
345 F:      drivers/platform/x86/acerhdf.c
346
347 ACER WMI LAPTOP EXTRAS
348 M:      "Lee, Chun-Yi" <jlee@suse.com>
349 L:      platform-driver-x86@vger.kernel.org
350 S:      Maintained
351 F:      drivers/platform/x86/acer-wmi.c
352
353 ACPI
354 M:      "Rafael J. Wysocki" <rafael@kernel.org>
355 R:      Len Brown <lenb@kernel.org>
356 L:      linux-acpi@vger.kernel.org
357 S:      Supported
358 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
359 B:      https://bugzilla.kernel.org
360 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
361 F:      Documentation/ABI/testing/configfs-acpi
362 F:      Documentation/ABI/testing/sysfs-bus-acpi
363 F:      Documentation/firmware-guide/acpi/
364 F:      arch/x86/kernel/acpi/
365 F:      arch/x86/pci/acpi.c
366 F:      drivers/acpi/
367 F:      drivers/pci/*/*acpi*
368 F:      drivers/pci/*acpi*
369 F:      drivers/pnp/pnpacpi/
370 F:      include/acpi/
371 F:      include/linux/acpi.h
372 F:      include/linux/fwnode.h
373 F:      tools/power/acpi/
374
375 ACPI APEI
376 M:      "Rafael J. Wysocki" <rafael@kernel.org>
377 R:      Len Brown <lenb@kernel.org>
378 R:      James Morse <james.morse@arm.com>
379 R:      Tony Luck <tony.luck@intel.com>
380 R:      Borislav Petkov <bp@alien8.de>
381 L:      linux-acpi@vger.kernel.org
382 F:      drivers/acpi/apei/
383
384 ACPI COMPONENT ARCHITECTURE (ACPICA)
385 M:      Robert Moore <robert.moore@intel.com>
386 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
387 L:      linux-acpi@vger.kernel.org
388 L:      acpica-devel@lists.linuxfoundation.org
389 S:      Supported
390 W:      https://acpica.org/
391 W:      https://github.com/acpica/acpica/
392 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
393 B:      https://bugzilla.kernel.org
394 B:      https://bugs.acpica.org
395 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
396 F:      drivers/acpi/acpica/
397 F:      include/acpi/
398 F:      tools/power/acpi/
399
400 ACPI FOR ARM64 (ACPI/arm64)
401 M:      Lorenzo Pieralisi <lpieralisi@kernel.org>
402 M:      Hanjun Guo <guohanjun@huawei.com>
403 M:      Sudeep Holla <sudeep.holla@arm.com>
404 L:      linux-acpi@vger.kernel.org
405 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
406 S:      Maintained
407 F:      drivers/acpi/arm64
408
409 ACPI SERIAL MULTI INSTANTIATE DRIVER
410 M:      Hans de Goede <hdegoede@redhat.com>
411 L:      platform-driver-x86@vger.kernel.org
412 S:      Maintained
413 F:      drivers/platform/x86/serial-multi-instantiate.c
414
415 ACPI PCC(Platform Communication Channel) MAILBOX DRIVER
416 M:      Sudeep Holla <sudeep.holla@arm.com>
417 L:      linux-acpi@vger.kernel.org
418 S:      Supported
419 F:      drivers/mailbox/pcc.c
420
421 ACPI PMIC DRIVERS
422 M:      "Rafael J. Wysocki" <rafael@kernel.org>
423 M:      Len Brown <lenb@kernel.org>
424 R:      Andy Shevchenko <andy@kernel.org>
425 R:      Mika Westerberg <mika.westerberg@linux.intel.com>
426 L:      linux-acpi@vger.kernel.org
427 S:      Supported
428 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
429 B:      https://bugzilla.kernel.org
430 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
431 F:      drivers/acpi/pmic/
432
433 ACPI THERMAL DRIVER
434 M:      Rafael J. Wysocki <rafael@kernel.org>
435 R:      Zhang Rui <rui.zhang@intel.com>
436 L:      linux-acpi@vger.kernel.org
437 S:      Supported
438 B:      https://bugzilla.kernel.org
439 F:      drivers/acpi/*thermal*
440
441 ACPI VIOT DRIVER
442 M:      Jean-Philippe Brucker <jean-philippe@linaro.org>
443 L:      linux-acpi@vger.kernel.org
444 L:      iommu@lists.linux.dev
445 S:      Maintained
446 F:      drivers/acpi/viot.c
447 F:      include/linux/acpi_viot.h
448
449 ACPI WMI DRIVER
450 L:      platform-driver-x86@vger.kernel.org
451 S:      Orphan
452 F:      drivers/platform/x86/wmi.c
453 F:      include/uapi/linux/wmi.h
454
455 ACRN HYPERVISOR SERVICE MODULE
456 M:      Fei Li <fei1.li@intel.com>
457 L:      acrn-dev@lists.projectacrn.org (subscribers-only)
458 S:      Supported
459 W:      https://projectacrn.org
460 F:      Documentation/virt/acrn/
461 F:      drivers/virt/acrn/
462 F:      include/uapi/linux/acrn.h
463
464 AD1889 ALSA SOUND DRIVER
465 L:      linux-parisc@vger.kernel.org
466 S:      Maintained
467 W:      https://parisc.wiki.kernel.org/index.php/AD1889
468 F:      sound/pci/ad1889.*
469
470 AD5110 ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
471 M:      Mugilraj Dhavachelvan <dmugil2000@gmail.com>
472 L:      linux-iio@vger.kernel.org
473 S:      Supported
474 F:      drivers/iio/potentiometer/ad5110.c
475
476 AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
477 M:      Michael Hennerich <michael.hennerich@analog.com>
478 S:      Supported
479 W:      http://wiki.analog.com/AD5254
480 W:      https://ez.analog.com/linux-software-drivers
481 F:      drivers/misc/ad525x_dpot.c
482
483 AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821)
484 M:      Michael Hennerich <michael.hennerich@analog.com>
485 S:      Supported
486 W:      http://wiki.analog.com/AD5398
487 W:      https://ez.analog.com/linux-software-drivers
488 F:      drivers/regulator/ad5398.c
489
490 AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A)
491 M:      Michael Hennerich <michael.hennerich@analog.com>
492 S:      Supported
493 W:      http://wiki.analog.com/AD7142
494 W:      https://ez.analog.com/linux-software-drivers
495 F:      drivers/input/misc/ad714x.c
496
497 AD7877 TOUCHSCREEN DRIVER
498 M:      Michael Hennerich <michael.hennerich@analog.com>
499 S:      Supported
500 W:      http://wiki.analog.com/AD7877
501 W:      https://ez.analog.com/linux-software-drivers
502 F:      drivers/input/touchscreen/ad7877.c
503
504 AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889)
505 M:      Michael Hennerich <michael.hennerich@analog.com>
506 S:      Supported
507 W:      http://wiki.analog.com/AD7879
508 W:      https://ez.analog.com/linux-software-drivers
509 F:      drivers/input/touchscreen/ad7879.c
510
511 ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR)
512 M:      Jiri Kosina <jikos@kernel.org>
513 S:      Maintained
514
515 ADF7242 IEEE 802.15.4 RADIO DRIVER
516 M:      Michael Hennerich <michael.hennerich@analog.com>
517 L:      linux-wpan@vger.kernel.org
518 S:      Supported
519 W:      https://wiki.analog.com/ADF7242
520 W:      https://ez.analog.com/linux-software-drivers
521 F:      Documentation/devicetree/bindings/net/ieee802154/adf7242.txt
522 F:      drivers/net/ieee802154/adf7242.c
523
524 ADM1025 HARDWARE MONITOR DRIVER
525 M:      Jean Delvare <jdelvare@suse.com>
526 L:      linux-hwmon@vger.kernel.org
527 S:      Maintained
528 F:      Documentation/hwmon/adm1025.rst
529 F:      drivers/hwmon/adm1025.c
530
531 ADM1029 HARDWARE MONITOR DRIVER
532 M:      Corentin Labbe <clabbe.montjoie@gmail.com>
533 L:      linux-hwmon@vger.kernel.org
534 S:      Maintained
535 F:      drivers/hwmon/adm1029.c
536
537 ADM8211 WIRELESS DRIVER
538 L:      linux-wireless@vger.kernel.org
539 S:      Orphan
540 W:      https://wireless.wiki.kernel.org/
541 F:      drivers/net/wireless/admtek/adm8211.*
542
543 ADP1653 FLASH CONTROLLER DRIVER
544 M:      Sakari Ailus <sakari.ailus@iki.fi>
545 L:      linux-media@vger.kernel.org
546 S:      Maintained
547 F:      drivers/media/i2c/adp1653.c
548 F:      include/media/i2c/adp1653.h
549
550 ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501)
551 M:      Michael Hennerich <michael.hennerich@analog.com>
552 S:      Supported
553 W:      http://wiki.analog.com/ADP5520
554 W:      https://ez.analog.com/linux-software-drivers
555 F:      drivers/gpio/gpio-adp5520.c
556 F:      drivers/input/keyboard/adp5520-keys.c
557 F:      drivers/leds/leds-adp5520.c
558 F:      drivers/mfd/adp5520.c
559 F:      drivers/video/backlight/adp5520_bl.c
560
561 ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587)
562 M:      Michael Hennerich <michael.hennerich@analog.com>
563 S:      Supported
564 W:      http://wiki.analog.com/ADP5588
565 W:      https://ez.analog.com/linux-software-drivers
566 F:      Documentation/devicetree/bindings/input/adi,adp5588.yaml
567 F:      drivers/input/keyboard/adp5588-keys.c
568
569 ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863)
570 M:      Michael Hennerich <michael.hennerich@analog.com>
571 S:      Supported
572 W:      http://wiki.analog.com/ADP8860
573 W:      https://ez.analog.com/linux-software-drivers
574 F:      drivers/video/backlight/adp8860_bl.c
575
576 ADT746X FAN DRIVER
577 M:      Colin Leroy <colin@colino.net>
578 S:      Maintained
579 F:      drivers/macintosh/therm_adt746x.c
580
581 ADT7475 HARDWARE MONITOR DRIVER
582 M:      Jean Delvare <jdelvare@suse.com>
583 L:      linux-hwmon@vger.kernel.org
584 S:      Maintained
585 F:      Documentation/hwmon/adt7475.rst
586 F:      drivers/hwmon/adt7475.c
587
588 ADVANSYS SCSI DRIVER
589 M:      Matthew Wilcox <willy@infradead.org>
590 M:      Hannes Reinecke <hare@suse.com>
591 L:      linux-scsi@vger.kernel.org
592 S:      Maintained
593 F:      Documentation/scsi/advansys.rst
594 F:      drivers/scsi/advansys.c
595
596 ADVANTECH SWBTN DRIVER
597 M:      Andrea Ho <Andrea.Ho@advantech.com.tw>
598 L:      platform-driver-x86@vger.kernel.org
599 S:      Maintained
600 F:      drivers/platform/x86/adv_swbutton.c
601
602 ADXL313 THREE-AXIS DIGITAL ACCELEROMETER DRIVER
603 M:      Lucas Stankus <lucas.p.stankus@gmail.com>
604 S:      Supported
605 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl313.yaml
606 F:      drivers/iio/accel/adxl313*
607
608 ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346)
609 M:      Michael Hennerich <michael.hennerich@analog.com>
610 S:      Supported
611 W:      http://wiki.analog.com/ADXL345
612 W:      https://ez.analog.com/linux-software-drivers
613 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl345.yaml
614 F:      drivers/input/misc/adxl34x.c
615
616 ADXL355 THREE-AXIS DIGITAL ACCELEROMETER DRIVER
617 M:      Puranjay Mohan <puranjay12@gmail.com>
618 L:      linux-iio@vger.kernel.org
619 S:      Supported
620 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl355.yaml
621 F:      drivers/iio/accel/adxl355.h
622 F:      drivers/iio/accel/adxl355_core.c
623 F:      drivers/iio/accel/adxl355_i2c.c
624 F:      drivers/iio/accel/adxl355_spi.c
625
626 ADXL367 THREE-AXIS DIGITAL ACCELEROMETER DRIVER
627 M:      Cosmin Tanislav <cosmin.tanislav@analog.com>
628 L:      linux-iio@vger.kernel.org
629 S:      Supported
630 W:      https://ez.analog.com/linux-software-drivers
631 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl367.yaml
632 F:      drivers/iio/accel/adxl367*
633
634 ADXL372 THREE-AXIS DIGITAL ACCELEROMETER DRIVER
635 M:      Michael Hennerich <michael.hennerich@analog.com>
636 S:      Supported
637 W:      https://ez.analog.com/linux-software-drivers
638 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl372.yaml
639 F:      drivers/iio/accel/adxl372.c
640 F:      drivers/iio/accel/adxl372_i2c.c
641 F:      drivers/iio/accel/adxl372_spi.c
642
643 AF9013 MEDIA DRIVER
644 M:      Antti Palosaari <crope@iki.fi>
645 L:      linux-media@vger.kernel.org
646 S:      Maintained
647 W:      https://linuxtv.org
648 W:      http://palosaari.fi/linux/
649 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
650 T:      git git://linuxtv.org/anttip/media_tree.git
651 F:      drivers/media/dvb-frontends/af9013*
652
653 AF9033 MEDIA DRIVER
654 M:      Antti Palosaari <crope@iki.fi>
655 L:      linux-media@vger.kernel.org
656 S:      Maintained
657 W:      https://linuxtv.org
658 W:      http://palosaari.fi/linux/
659 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
660 T:      git git://linuxtv.org/anttip/media_tree.git
661 F:      drivers/media/dvb-frontends/af9033*
662
663 AFFS FILE SYSTEM
664 M:      David Sterba <dsterba@suse.com>
665 L:      linux-fsdevel@vger.kernel.org
666 S:      Odd Fixes
667 F:      Documentation/filesystems/affs.rst
668 F:      fs/affs/
669
670 AFS FILESYSTEM
671 M:      David Howells <dhowells@redhat.com>
672 M:      Marc Dionne <marc.dionne@auristor.com>
673 L:      linux-afs@lists.infradead.org
674 S:      Supported
675 W:      https://www.infradead.org/~dhowells/kafs/
676 F:      Documentation/filesystems/afs.rst
677 F:      fs/afs/
678 F:      include/trace/events/afs.h
679
680 AGPGART DRIVER
681 M:      David Airlie <airlied@redhat.com>
682 L:      dri-devel@lists.freedesktop.org
683 S:      Maintained
684 T:      git git://anongit.freedesktop.org/drm/drm
685 F:      drivers/char/agp/
686 F:      include/linux/agp*
687 F:      include/uapi/linux/agp*
688
689 AHA152X SCSI DRIVER
690 M:      "Juergen E. Fischer" <fischer@norbit.de>
691 L:      linux-scsi@vger.kernel.org
692 S:      Maintained
693 F:      drivers/scsi/aha152x*
694 F:      drivers/scsi/pcmcia/aha152x*
695
696 AIC7XXX / AIC79XX SCSI DRIVER
697 M:      Hannes Reinecke <hare@suse.com>
698 L:      linux-scsi@vger.kernel.org
699 S:      Maintained
700 F:      drivers/scsi/aic7xxx/
701
702 AIMSLAB FM RADIO RECEIVER DRIVER
703 M:      Hans Verkuil <hverkuil@xs4all.nl>
704 L:      linux-media@vger.kernel.org
705 S:      Maintained
706 W:      https://linuxtv.org
707 T:      git git://linuxtv.org/media_tree.git
708 F:      drivers/media/radio/radio-aimslab*
709
710 AIO
711 M:      Benjamin LaHaise <bcrl@kvack.org>
712 L:      linux-aio@kvack.org
713 S:      Supported
714 F:      fs/aio.c
715 F:      include/linux/*aio*.h
716
717 AIRSPY MEDIA DRIVER
718 M:      Antti Palosaari <crope@iki.fi>
719 L:      linux-media@vger.kernel.org
720 S:      Maintained
721 W:      https://linuxtv.org
722 W:      http://palosaari.fi/linux/
723 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
724 T:      git git://linuxtv.org/anttip/media_tree.git
725 F:      drivers/media/usb/airspy/
726
727 ALACRITECH GIGABIT ETHERNET DRIVER
728 M:      Lino Sanfilippo <LinoSanfilippo@gmx.de>
729 S:      Maintained
730 F:      drivers/net/ethernet/alacritech/*
731
732 ALCATEL SPEEDTOUCH USB DRIVER
733 M:      Duncan Sands <duncan.sands@free.fr>
734 L:      linux-usb@vger.kernel.org
735 S:      Maintained
736 W:      http://www.linux-usb.org/SpeedTouch/
737 F:      drivers/usb/atm/speedtch.c
738 F:      drivers/usb/atm/usbatm.c
739
740 ALCHEMY AU1XX0 MMC DRIVER
741 M:      Manuel Lauss <manuel.lauss@gmail.com>
742 S:      Maintained
743 F:      drivers/mmc/host/au1xmmc.c
744
745 ALI1563 I2C DRIVER
746 M:      Rudolf Marek <r.marek@assembler.cz>
747 L:      linux-i2c@vger.kernel.org
748 S:      Maintained
749 F:      Documentation/i2c/busses/i2c-ali1563.rst
750 F:      drivers/i2c/busses/i2c-ali1563.c
751
752 ALIBABA ELASTIC RDMA DRIVER
753 M:      Cheng Xu <chengyou@linux.alibaba.com>
754 M:      Kai Shen <kaishen@linux.alibaba.com>
755 L:      linux-rdma@vger.kernel.org
756 S:      Supported
757 F:      drivers/infiniband/hw/erdma
758 F:      include/uapi/rdma/erdma-abi.h
759
760 ALIBABA PMU DRIVER
761 M:      Shuai Xue <xueshuai@linux.alibaba.com>
762 S:      Supported
763 F:      Documentation/admin-guide/perf/alibaba_pmu.rst
764 F:      drivers/perf/alibaba_uncore_drw_pmu.c
765
766 ALIENWARE WMI DRIVER
767 L:      Dell.Client.Kernel@dell.com
768 S:      Maintained
769 F:      drivers/platform/x86/dell/alienware-wmi.c
770
771 ALLEGRO DVT VIDEO IP CORE DRIVER
772 M:      Michael Tretter <m.tretter@pengutronix.de>
773 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
774 L:      linux-media@vger.kernel.org
775 S:      Maintained
776 F:      Documentation/devicetree/bindings/media/allegro,al5e.yaml
777 F:      drivers/media/platform/allegro-dvt/
778
779 ALLWINNER A10 CSI DRIVER
780 M:      Maxime Ripard <mripard@kernel.org>
781 L:      linux-media@vger.kernel.org
782 S:      Maintained
783 T:      git git://linuxtv.org/media_tree.git
784 F:      Documentation/devicetree/bindings/media/allwinner,sun4i-a10-csi.yaml
785 F:      drivers/media/platform/sunxi/sun4i-csi/
786
787 ALLWINNER A31 CSI DRIVER
788 M:      Yong Deng <yong.deng@magewell.com>
789 M:      Paul Kocialkowski <paul.kocialkowski@bootlin.com>
790 L:      linux-media@vger.kernel.org
791 S:      Maintained
792 T:      git git://linuxtv.org/media_tree.git
793 F:      Documentation/devicetree/bindings/media/allwinner,sun6i-a31-csi.yaml
794 F:      drivers/media/platform/sunxi/sun6i-csi/
795
796 ALLWINNER A31 ISP DRIVER
797 M:      Paul Kocialkowski <paul.kocialkowski@bootlin.com>
798 L:      linux-media@vger.kernel.org
799 S:      Maintained
800 T:      git git://linuxtv.org/media_tree.git
801 F:      Documentation/devicetree/bindings/media/allwinner,sun6i-a31-isp.yaml
802 F:      drivers/staging/media/sunxi/sun6i-isp/
803 F:      drivers/staging/media/sunxi/sun6i-isp/uapi/sun6i-isp-config.h
804
805 ALLWINNER A31 MIPI CSI-2 BRIDGE DRIVER
806 M:      Paul Kocialkowski <paul.kocialkowski@bootlin.com>
807 L:      linux-media@vger.kernel.org
808 S:      Maintained
809 T:      git git://linuxtv.org/media_tree.git
810 F:      Documentation/devicetree/bindings/media/allwinner,sun6i-a31-mipi-csi2.yaml
811 F:      drivers/media/platform/sunxi/sun6i-mipi-csi2/
812
813 ALLWINNER CPUFREQ DRIVER
814 M:      Yangtao Li <tiny.windzz@gmail.com>
815 L:      linux-pm@vger.kernel.org
816 S:      Maintained
817 F:      Documentation/devicetree/bindings/opp/allwinner,sun50i-h6-operating-points.yaml
818 F:      drivers/cpufreq/sun50i-cpufreq-nvmem.c
819
820 ALLWINNER CRYPTO DRIVERS
821 M:      Corentin Labbe <clabbe.montjoie@gmail.com>
822 L:      linux-crypto@vger.kernel.org
823 S:      Maintained
824 F:      drivers/crypto/allwinner/
825
826 ALLWINNER HARDWARE SPINLOCK SUPPORT
827 M:      Wilken Gottwalt <wilken.gottwalt@posteo.net>
828 S:      Maintained
829 F:      Documentation/devicetree/bindings/hwlock/allwinner,sun6i-a31-hwspinlock.yaml
830 F:      drivers/hwspinlock/sun6i_hwspinlock.c
831
832 ALLWINNER THERMAL DRIVER
833 M:      Vasily Khoruzhick <anarsoul@gmail.com>
834 M:      Yangtao Li <tiny.windzz@gmail.com>
835 L:      linux-pm@vger.kernel.org
836 S:      Maintained
837 F:      Documentation/devicetree/bindings/thermal/allwinner,sun8i-a83t-ths.yaml
838 F:      drivers/thermal/sun8i_thermal.c
839
840 ALLWINNER VPU DRIVER
841 M:      Maxime Ripard <mripard@kernel.org>
842 M:      Paul Kocialkowski <paul.kocialkowski@bootlin.com>
843 L:      linux-media@vger.kernel.org
844 S:      Maintained
845 F:      drivers/staging/media/sunxi/cedrus/
846
847 ALLWINNER DMIC DRIVERS
848 M:      Ban Tao <fengzheng923@gmail.com>
849 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
850 S:      Maintained
851 F:      Documentation/devicetree/bindings/sound/allwinner,sun50i-h6-dmic.yaml
852 F:      sound/soc/sunxi/sun50i-dmic.c
853
854 ALPHA PORT
855 M:      Richard Henderson <richard.henderson@linaro.org>
856 M:      Ivan Kokshaysky <ink@jurassic.park.msu.ru>
857 M:      Matt Turner <mattst88@gmail.com>
858 L:      linux-alpha@vger.kernel.org
859 S:      Odd Fixes
860 F:      arch/alpha/
861
862 ALPS PS/2 TOUCHPAD DRIVER
863 R:      Pali Rohár <pali@kernel.org>
864 F:      drivers/input/mouse/alps.*
865
866 ALTERA I2C CONTROLLER DRIVER
867 M:      Thor Thayer <thor.thayer@linux.intel.com>
868 S:      Maintained
869 F:      Documentation/devicetree/bindings/i2c/i2c-altera.txt
870 F:      drivers/i2c/busses/i2c-altera.c
871
872 ALTERA MAILBOX DRIVER
873 M:      Mun Yew Tham <mun.yew.tham@intel.com>
874 S:      Maintained
875 F:      drivers/mailbox/mailbox-altera.c
876
877 ALTERA MSGDMA IP CORE DRIVER
878 M:      Olivier Dautricourt <olivierdautricourt@gmail.com>
879 R:      Stefan Roese <sr@denx.de>
880 L:      dmaengine@vger.kernel.org
881 S:      Odd Fixes
882 F:      Documentation/devicetree/bindings/dma/altr,msgdma.yaml
883 F:      drivers/dma/altera-msgdma.c
884
885 ALTERA PIO DRIVER
886 M:      Mun Yew Tham <mun.yew.tham@intel.com>
887 L:      linux-gpio@vger.kernel.org
888 S:      Maintained
889 F:      drivers/gpio/gpio-altera.c
890
891 ALTERA SYSTEM MANAGER DRIVER
892 M:      Thor Thayer <thor.thayer@linux.intel.com>
893 S:      Maintained
894 F:      drivers/mfd/altera-sysmgr.c
895 F:      include/linux/mfd/altera-sysmgr.h
896
897 ALTERA SYSTEM RESOURCE DRIVER FOR ARRIA10 DEVKIT
898 M:      Thor Thayer <thor.thayer@linux.intel.com>
899 S:      Maintained
900 F:      drivers/gpio/gpio-altera-a10sr.c
901 F:      drivers/mfd/altera-a10sr.c
902 F:      drivers/reset/reset-a10sr.c
903 F:      include/dt-bindings/reset/altr,rst-mgr-a10sr.h
904 F:      include/linux/mfd/altera-a10sr.h
905
906 ALTERA TRIPLE SPEED ETHERNET DRIVER
907 M:      Joyce Ooi <joyce.ooi@intel.com>
908 L:      netdev@vger.kernel.org
909 S:      Maintained
910 F:      drivers/net/ethernet/altera/
911
912 ALTERA TSE PCS
913 M:      Maxime Chevallier <maxime.chevallier@bootlin.com>
914 L:      netdev@vger.kernel.org
915 S:      Supported
916 F:      drivers/net/pcs/pcs-altera-tse.c
917 F:      include/linux/pcs-altera-tse.h
918
919 ALTERA UART/JTAG UART SERIAL DRIVERS
920 M:      Tobias Klauser <tklauser@distanz.ch>
921 L:      linux-serial@vger.kernel.org
922 S:      Maintained
923 F:      drivers/tty/serial/altera_jtaguart.c
924 F:      drivers/tty/serial/altera_uart.c
925 F:      include/linux/altera_jtaguart.h
926 F:      include/linux/altera_uart.h
927
928 AMAZON ANNAPURNA LABS FIC DRIVER
929 M:      Talel Shenhar <talel@amazon.com>
930 S:      Maintained
931 F:      Documentation/devicetree/bindings/interrupt-controller/amazon,al-fic.txt
932 F:      drivers/irqchip/irq-al-fic.c
933
934 AMAZON ANNAPURNA LABS MEMORY CONTROLLER EDAC
935 M:      Talel Shenhar <talel@amazon.com>
936 M:      Talel Shenhar <talelshenhar@gmail.com>
937 S:      Maintained
938 F:      Documentation/devicetree/bindings/edac/amazon,al-mc-edac.yaml
939 F:      drivers/edac/al_mc_edac.c
940
941 AMAZON ANNAPURNA LABS THERMAL MMIO DRIVER
942 M:      Talel Shenhar <talel@amazon.com>
943 S:      Maintained
944 F:      Documentation/devicetree/bindings/thermal/amazon,al-thermal.txt
945 F:      drivers/thermal/thermal_mmio.c
946
947 AMAZON ETHERNET DRIVERS
948 M:      Shay Agroskin <shayagr@amazon.com>
949 M:      Arthur Kiyanovski <akiyano@amazon.com>
950 R:      David Arinzon <darinzon@amazon.com>
951 R:      Noam Dagan <ndagan@amazon.com>
952 R:      Saeed Bishara <saeedb@amazon.com>
953 L:      netdev@vger.kernel.org
954 S:      Supported
955 F:      Documentation/networking/device_drivers/ethernet/amazon/ena.rst
956 F:      drivers/net/ethernet/amazon/
957
958 AMAZON RDMA EFA DRIVER
959 M:      Gal Pressman <galpress@amazon.com>
960 R:      Yossi Leybovich <sleybo@amazon.com>
961 L:      linux-rdma@vger.kernel.org
962 S:      Supported
963 Q:      https://patchwork.kernel.org/project/linux-rdma/list/
964 F:      drivers/infiniband/hw/efa/
965 F:      include/uapi/rdma/efa-abi.h
966
967 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER
968 M:      Tom Lendacky <thomas.lendacky@amd.com>
969 M:      John Allen <john.allen@amd.com>
970 L:      linux-crypto@vger.kernel.org
971 S:      Supported
972 F:      drivers/crypto/ccp/
973 F:      include/linux/ccp.h
974
975 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER - SEV SUPPORT
976 M:      Brijesh Singh <brijesh.singh@amd.com>
977 M:      Tom Lendacky <thomas.lendacky@amd.com>
978 L:      linux-crypto@vger.kernel.org
979 S:      Supported
980 F:      drivers/crypto/ccp/sev*
981 F:      include/uapi/linux/psp-sev.h
982
983 AMD DISPLAY CORE
984 M:      Harry Wentland <harry.wentland@amd.com>
985 M:      Leo Li <sunpeng.li@amd.com>
986 M:      Rodrigo Siqueira <Rodrigo.Siqueira@amd.com>
987 L:      amd-gfx@lists.freedesktop.org
988 S:      Supported
989 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
990 F:      drivers/gpu/drm/amd/display/
991
992 AMD FAM15H PROCESSOR POWER MONITORING DRIVER
993 M:      Huang Rui <ray.huang@amd.com>
994 L:      linux-hwmon@vger.kernel.org
995 S:      Supported
996 F:      Documentation/hwmon/fam15h_power.rst
997 F:      drivers/hwmon/fam15h_power.c
998
999 AMD FCH GPIO DRIVER
1000 M:      Enrico Weigelt, metux IT consult <info@metux.net>
1001 L:      linux-gpio@vger.kernel.org
1002 S:      Maintained
1003 F:      drivers/gpio/gpio-amd-fch.c
1004 F:      include/linux/platform_data/gpio/gpio-amd-fch.h
1005
1006 AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
1007 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
1008 S:      Orphan
1009 F:      drivers/usb/gadget/udc/amd5536udc.*
1010
1011 AMD GEODE PROCESSOR/CHIPSET SUPPORT
1012 M:      Andres Salomon <dilinger@queued.net>
1013 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
1014 S:      Supported
1015 W:      http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
1016 F:      arch/x86/include/asm/geode.h
1017 F:      drivers/char/hw_random/geode-rng.c
1018 F:      drivers/crypto/geode*
1019 F:      drivers/video/fbdev/geode/
1020
1021 AMD IOMMU (AMD-VI)
1022 M:      Joerg Roedel <joro@8bytes.org>
1023 R:      Suravee Suthikulpanit <suravee.suthikulpanit@amd.com>
1024 L:      iommu@lists.linux.dev
1025 S:      Maintained
1026 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
1027 F:      drivers/iommu/amd/
1028 F:      include/linux/amd-iommu.h
1029
1030 AMD KFD
1031 M:      Felix Kuehling <Felix.Kuehling@amd.com>
1032 L:      amd-gfx@lists.freedesktop.org
1033 S:      Supported
1034 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
1035 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd*.[ch]
1036 F:      drivers/gpu/drm/amd/amdkfd/
1037 F:      drivers/gpu/drm/amd/include/cik_structs.h
1038 F:      drivers/gpu/drm/amd/include/kgd_kfd_interface.h
1039 F:      drivers/gpu/drm/amd/include/v9_structs.h
1040 F:      drivers/gpu/drm/amd/include/vi_structs.h
1041 F:      include/uapi/linux/kfd_ioctl.h
1042 F:      include/uapi/linux/kfd_sysfs.h
1043
1044 AMD PDS CORE DRIVER
1045 M:      Shannon Nelson <shannon.nelson@amd.com>
1046 M:      Brett Creeley <brett.creeley@amd.com>
1047 L:      netdev@vger.kernel.org
1048 S:      Supported
1049 F:      Documentation/networking/device_drivers/ethernet/amd/pds_core.rst
1050 F:      drivers/net/ethernet/amd/pds_core/
1051 F:      include/linux/pds/
1052
1053 AMD SPI DRIVER
1054 M:      Sanjay R Mehta <sanju.mehta@amd.com>
1055 S:      Maintained
1056 F:      drivers/spi/spi-amd.c
1057
1058 AMD MP2 I2C DRIVER
1059 M:      Elie Morisse <syniurge@gmail.com>
1060 M:      Shyam Sundar S K <shyam-sundar.s-k@amd.com>
1061 L:      linux-i2c@vger.kernel.org
1062 S:      Maintained
1063 F:      drivers/i2c/busses/i2c-amd-mp2*
1064
1065 AMD PMC DRIVER
1066 M:      Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
1067 L:      platform-driver-x86@vger.kernel.org
1068 S:      Maintained
1069 F:      drivers/platform/x86/amd/pmc.c
1070
1071 AMD PMF DRIVER
1072 M:      Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
1073 L:      platform-driver-x86@vger.kernel.org
1074 S:      Maintained
1075 F:      Documentation/ABI/testing/sysfs-amd-pmf
1076 F:      drivers/platform/x86/amd/pmf/
1077
1078 AMD HSMP DRIVER
1079 M:      Naveen Krishna Chatradhi <naveenkrishna.chatradhi@amd.com>
1080 R:      Carlos Bilbao <carlos.bilbao@amd.com>
1081 L:      platform-driver-x86@vger.kernel.org
1082 S:      Maintained
1083 F:      Documentation/arch/x86/amd_hsmp.rst
1084 F:      arch/x86/include/asm/amd_hsmp.h
1085 F:      arch/x86/include/uapi/asm/amd_hsmp.h
1086 F:      drivers/platform/x86/amd/hsmp.c
1087
1088 AMD POWERPLAY AND SWSMU
1089 M:      Evan Quan <evan.quan@amd.com>
1090 L:      amd-gfx@lists.freedesktop.org
1091 S:      Supported
1092 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
1093 F:      drivers/gpu/drm/amd/pm/
1094
1095 AMD PSTATE DRIVER
1096 M:      Huang Rui <ray.huang@amd.com>
1097 L:      linux-pm@vger.kernel.org
1098 S:      Supported
1099 F:      Documentation/admin-guide/pm/amd-pstate.rst
1100 F:      drivers/cpufreq/amd-pstate*
1101 F:      include/linux/amd-pstate.h
1102 F:      tools/power/x86/amd_pstate_tracer/amd_pstate_trace.py
1103
1104 AMD PTDMA DRIVER
1105 M:      Sanjay R Mehta <sanju.mehta@amd.com>
1106 L:      dmaengine@vger.kernel.org
1107 S:      Maintained
1108 F:      drivers/dma/ptdma/
1109
1110 AMD SEATTLE DEVICE TREE SUPPORT
1111 M:      Suravee Suthikulpanit <suravee.suthikulpanit@amd.com>
1112 M:      Tom Lendacky <thomas.lendacky@amd.com>
1113 S:      Supported
1114 F:      arch/arm64/boot/dts/amd/
1115
1116 AMD XGBE DRIVER
1117 M:      "Shyam Sundar S K" <Shyam-sundar.S-k@amd.com>
1118 L:      netdev@vger.kernel.org
1119 S:      Supported
1120 F:      arch/arm64/boot/dts/amd/amd-seattle-xgbe*.dtsi
1121 F:      drivers/net/ethernet/amd/xgbe/
1122
1123 AMD SENSOR FUSION HUB DRIVER
1124 M:      Basavaraj Natikar <basavaraj.natikar@amd.com>
1125 L:      linux-input@vger.kernel.org
1126 S:      Maintained
1127 F:      Documentation/hid/amd-sfh*
1128 F:      drivers/hid/amd-sfh-hid/
1129
1130 AMLOGIC DDR PMU DRIVER
1131 M:      Jiucheng Xu <jiucheng.xu@amlogic.com>
1132 L:      linux-amlogic@lists.infradead.org
1133 S:      Supported
1134 W:      http://www.amlogic.com
1135 F:      Documentation/admin-guide/perf/meson-ddr-pmu.rst
1136 F:      Documentation/devicetree/bindings/perf/amlogic,g12-ddr-pmu.yaml
1137 F:      drivers/perf/amlogic/
1138 F:      include/soc/amlogic/
1139
1140 AMPHION VPU CODEC V4L2 DRIVER
1141 M:      Ming Qian <ming.qian@nxp.com>
1142 M:      Shijie Qin <shijie.qin@nxp.com>
1143 M:      Zhou Peng <eagle.zhou@nxp.com>
1144 L:      linux-media@vger.kernel.org
1145 S:      Maintained
1146 F:      Documentation/devicetree/bindings/media/amphion,vpu.yaml
1147 F:      drivers/media/platform/amphion/
1148
1149 AMS AS73211 DRIVER
1150 M:      Christian Eggers <ceggers@arri.de>
1151 L:      linux-iio@vger.kernel.org
1152 S:      Maintained
1153 F:      Documentation/devicetree/bindings/iio/light/ams,as73211.yaml
1154 F:      drivers/iio/light/as73211.c
1155
1156 AMT (Automatic Multicast Tunneling)
1157 M:      Taehee Yoo <ap420073@gmail.com>
1158 L:      netdev@vger.kernel.org
1159 S:      Maintained
1160 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
1161 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
1162 F:      drivers/net/amt.c
1163
1164 ANALOG DEVICES INC AD4130 DRIVER
1165 M:      Cosmin Tanislav <cosmin.tanislav@analog.com>
1166 L:      linux-iio@vger.kernel.org
1167 S:      Supported
1168 W:      http://ez.analog.com/community/linux-device-drivers
1169 F:      Documentation/ABI/testing/sysfs-bus-iio-adc-ad4130
1170 F:      Documentation/devicetree/bindings/iio/adc/adi,ad4130.yaml
1171 F:      drivers/iio/adc/ad4130.c
1172
1173 ANALOG DEVICES INC AD7192 DRIVER
1174 M:      Alexandru Tachici <alexandru.tachici@analog.com>
1175 L:      linux-iio@vger.kernel.org
1176 S:      Supported
1177 W:      https://ez.analog.com/linux-software-drivers
1178 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7192.yaml
1179 F:      drivers/iio/adc/ad7192.c
1180
1181 ANALOG DEVICES INC AD7292 DRIVER
1182 M:      Marcelo Schmitt <marcelo.schmitt1@gmail.com>
1183 L:      linux-iio@vger.kernel.org
1184 S:      Supported
1185 W:      https://ez.analog.com/linux-software-drivers
1186 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7292.yaml
1187 F:      drivers/iio/adc/ad7292.c
1188
1189 ANALOG DEVICES INC AD3552R DRIVER
1190 M:      Nuno Sá <nuno.sa@analog.com>
1191 L:      linux-iio@vger.kernel.org
1192 S:      Supported
1193 W:      https://ez.analog.com/linux-software-drivers
1194 F:      Documentation/devicetree/bindings/iio/dac/adi,ad3552r.yaml
1195 F:      drivers/iio/dac/ad3552r.c
1196
1197 ANALOG DEVICES INC AD7293 DRIVER
1198 M:      Antoniu Miclaus <antoniu.miclaus@analog.com>
1199 L:      linux-iio@vger.kernel.org
1200 S:      Supported
1201 W:      https://ez.analog.com/linux-software-drivers
1202 F:      Documentation/devicetree/bindings/iio/dac/adi,ad7293.yaml
1203 F:      drivers/iio/dac/ad7293.c
1204
1205 ANALOG DEVICES INC AD7768-1 DRIVER
1206 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1207 L:      linux-iio@vger.kernel.org
1208 S:      Supported
1209 W:      https://ez.analog.com/linux-software-drivers
1210 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7768-1.yaml
1211 F:      drivers/iio/adc/ad7768-1.c
1212
1213 ANALOG DEVICES INC AD7780 DRIVER
1214 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1215 M:      Renato Lui Geh <renatogeh@gmail.com>
1216 L:      linux-iio@vger.kernel.org
1217 S:      Supported
1218 W:      https://ez.analog.com/linux-software-drivers
1219 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7780.yaml
1220 F:      drivers/iio/adc/ad7780.c
1221
1222 ANALOG DEVICES INC AD74115 DRIVER
1223 M:      Cosmin Tanislav <cosmin.tanislav@analog.com>
1224 L:      linux-iio@vger.kernel.org
1225 S:      Supported
1226 W:      http://ez.analog.com/community/linux-device-drivers
1227 F:      Documentation/devicetree/bindings/iio/addac/adi,ad74115.yaml
1228 F:      drivers/iio/addac/ad74115.c
1229
1230 ANALOG DEVICES INC AD74413R DRIVER
1231 M:      Cosmin Tanislav <cosmin.tanislav@analog.com>
1232 L:      linux-iio@vger.kernel.org
1233 S:      Supported
1234 W:      https://ez.analog.com/linux-software-drivers
1235 F:      Documentation/devicetree/bindings/iio/addac/adi,ad74413r.yaml
1236 F:      drivers/iio/addac/ad74413r.c
1237 F:      include/dt-bindings/iio/addac/adi,ad74413r.h
1238
1239 ANALOG DEVICES INC ADA4250 DRIVER
1240 M:      Antoniu Miclaus <antoniu.miclaus@analog.com>
1241 L:      linux-iio@vger.kernel.org
1242 S:      Supported
1243 W:      https://ez.analog.com/linux-software-drivers
1244 F:      Documentation/devicetree/bindings/iio/amplifiers/adi,ada4250.yaml
1245 F:      drivers/iio/amplifiers/ada4250.c
1246
1247 ANALOG DEVICES INC ADF4377 DRIVER
1248 M:      Antoniu Miclaus <antoniu.miclaus@analog.com>
1249 L:      linux-iio@vger.kernel.org
1250 S:      Supported
1251 W:      https://ez.analog.com/linux-software-drivers
1252 F:      Documentation/devicetree/bindings/iio/frequency/adi,adf4377.yaml
1253 F:      drivers/iio/frequency/adf4377.c
1254
1255 ANALOG DEVICES INC ADGS1408 DRIVER
1256 M:      Mircea Caprioru <mircea.caprioru@analog.com>
1257 S:      Supported
1258 F:      Documentation/devicetree/bindings/mux/adi,adgs1408.txt
1259 F:      drivers/mux/adgs1408.c
1260
1261 ANALOG DEVICES INC ADIN DRIVER
1262 M:      Michael Hennerich <michael.hennerich@analog.com>
1263 L:      netdev@vger.kernel.org
1264 S:      Supported
1265 W:      https://ez.analog.com/linux-software-drivers
1266 F:      Documentation/devicetree/bindings/net/adi,adin.yaml
1267 F:      drivers/net/phy/adin.c
1268
1269 ANALOG DEVICES INC ADIS DRIVER LIBRARY
1270 M:      Nuno Sa <nuno.sa@analog.com>
1271 L:      linux-iio@vger.kernel.org
1272 S:      Supported
1273 F:      drivers/iio/imu/adis.c
1274 F:      drivers/iio/imu/adis_buffer.c
1275 F:      drivers/iio/imu/adis_trigger.c
1276 F:      include/linux/iio/imu/adis.h
1277
1278 ANALOG DEVICES INC ADIS16460 DRIVER
1279 M:      Dragos Bogdan <dragos.bogdan@analog.com>
1280 L:      linux-iio@vger.kernel.org
1281 S:      Supported
1282 W:      https://ez.analog.com/linux-software-drivers
1283 F:      Documentation/devicetree/bindings/iio/imu/adi,adis16460.yaml
1284 F:      drivers/iio/imu/adis16460.c
1285
1286 ANALOG DEVICES INC ADIS16475 DRIVER
1287 M:      Nuno Sa <nuno.sa@analog.com>
1288 L:      linux-iio@vger.kernel.org
1289 W:      https://ez.analog.com/linux-software-drivers
1290 S:      Supported
1291 F:      drivers/iio/imu/adis16475.c
1292 F:      Documentation/devicetree/bindings/iio/imu/adi,adis16475.yaml
1293
1294 ANALOG DEVICES INC ADM1177 DRIVER
1295 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1296 L:      linux-hwmon@vger.kernel.org
1297 S:      Supported
1298 W:      https://ez.analog.com/linux-software-drivers
1299 F:      Documentation/devicetree/bindings/hwmon/adi,adm1177.yaml
1300 F:      drivers/hwmon/adm1177.c
1301
1302 ANALOG DEVICES INC ADMV1013 DRIVER
1303 M:      Antoniu Miclaus <antoniu.miclaus@analog.com>
1304 L:      linux-iio@vger.kernel.org
1305 S:      Supported
1306 W:      https://ez.analog.com/linux-software-drivers
1307 F:      Documentation/devicetree/bindings/iio/frequency/adi,admv1013.yaml
1308 F:      drivers/iio/frequency/admv1013.c
1309
1310 ANALOG DEVICES INC ADMV8818 DRIVER
1311 M:      Antoniu Miclaus <antoniu.miclaus@analog.com>
1312 L:      linux-iio@vger.kernel.org
1313 S:      Supported
1314 W:      https://ez.analog.com/linux-software-drivers
1315 F:      Documentation/devicetree/bindings/iio/filter/adi,admv8818.yaml
1316 F:      drivers/iio/filter/admv8818.c
1317
1318 ANALOG DEVICES INC ADMV1014 DRIVER
1319 M:      Antoniu Miclaus <antoniu.miclaus@analog.com>
1320 L:      linux-iio@vger.kernel.org
1321 S:      Supported
1322 W:      https://ez.analog.com/linux-software-drivers
1323 F:      Documentation/devicetree/bindings/iio/frequency/adi,admv1014.yaml
1324 F:      drivers/iio/frequency/admv1014.c
1325
1326 ANALOG DEVICES INC ADP5061 DRIVER
1327 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1328 L:      linux-pm@vger.kernel.org
1329 S:      Supported
1330 W:      https://ez.analog.com/linux-software-drivers
1331 F:      drivers/power/supply/adp5061.c
1332
1333 ANALOG DEVICES INC ADRF6780 DRIVER
1334 M:      Antoniu Miclaus <antoniu.miclaus@analog.com>
1335 L:      linux-iio@vger.kernel.org
1336 S:      Supported
1337 W:      https://ez.analog.com/linux-software-drivers
1338 F:      Documentation/devicetree/bindings/iio/frequency/adi,adrf6780.yaml
1339 F:      drivers/iio/frequency/adrf6780.c
1340
1341 ANALOG DEVICES INC ADV7180 DRIVER
1342 M:      Lars-Peter Clausen <lars@metafoo.de>
1343 L:      linux-media@vger.kernel.org
1344 S:      Supported
1345 W:      https://ez.analog.com/linux-software-drivers
1346 F:      drivers/media/i2c/adv7180.c
1347 F:      Documentation/devicetree/bindings/media/i2c/adv7180.yaml
1348
1349 ANALOG DEVICES INC ADV748X DRIVER
1350 M:      Kieran Bingham <kieran.bingham@ideasonboard.com>
1351 L:      linux-media@vger.kernel.org
1352 S:      Maintained
1353 F:      Documentation/devicetree/bindings/media/i2c/adv748x.yaml
1354 F:      drivers/media/i2c/adv748x/*
1355
1356 ANALOG DEVICES INC ADV7511 DRIVER
1357 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1358 L:      linux-media@vger.kernel.org
1359 S:      Maintained
1360 F:      drivers/media/i2c/adv7511*
1361
1362 ANALOG DEVICES INC ADV7604 DRIVER
1363 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1364 L:      linux-media@vger.kernel.org
1365 S:      Maintained
1366 F:      drivers/media/i2c/adv7604*
1367 F:      Documentation/devicetree/bindings/media/i2c/adv7604.yaml
1368
1369 ANALOG DEVICES INC ADV7842 DRIVER
1370 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1371 L:      linux-media@vger.kernel.org
1372 S:      Maintained
1373 F:      drivers/media/i2c/adv7842*
1374
1375 ANALOG DEVICES INC ADXRS290 DRIVER
1376 M:      Nishant Malpani <nish.malpani25@gmail.com>
1377 L:      linux-iio@vger.kernel.org
1378 S:      Supported
1379 F:      drivers/iio/gyro/adxrs290.c
1380 F:      Documentation/devicetree/bindings/iio/gyroscope/adi,adxrs290.yaml
1381
1382 ANALOG DEVICES INC ASOC CODEC DRIVERS
1383 M:      Lars-Peter Clausen <lars@metafoo.de>
1384 M:      Nuno Sá <nuno.sa@analog.com>
1385 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1386 S:      Supported
1387 W:      http://wiki.analog.com/
1388 W:      https://ez.analog.com/linux-software-drivers
1389 F:      sound/soc/codecs/ad1*
1390 F:      sound/soc/codecs/ad7*
1391 F:      sound/soc/codecs/adau*
1392 F:      sound/soc/codecs/adav*
1393 F:      sound/soc/codecs/sigmadsp.*
1394 F:      sound/soc/codecs/ssm*
1395
1396 ANALOG DEVICES INC DMA DRIVERS
1397 M:      Lars-Peter Clausen <lars@metafoo.de>
1398 S:      Supported
1399 W:      https://ez.analog.com/linux-software-drivers
1400 F:      drivers/dma/dma-axi-dmac.c
1401
1402 ANALOG DEVICES INC IIO DRIVERS
1403 M:      Lars-Peter Clausen <lars@metafoo.de>
1404 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1405 S:      Supported
1406 W:      http://wiki.analog.com/
1407 W:      https://ez.analog.com/linux-software-drivers
1408 F:      Documentation/ABI/testing/sysfs-bus-iio-frequency-ad9523
1409 F:      Documentation/ABI/testing/sysfs-bus-iio-frequency-adf4350
1410 F:      Documentation/devicetree/bindings/iio/*/adi,*
1411 F:      Documentation/devicetree/bindings/iio/adc/lltc,ltc2496.yaml
1412 F:      Documentation/devicetree/bindings/iio/adc/lltc,ltc2497.yaml
1413 F:      drivers/iio/*/ad*
1414 F:      drivers/iio/adc/ltc249*
1415 F:      drivers/iio/amplifiers/hmc425a.c
1416 F:      drivers/staging/iio/*/ad*
1417 X:      drivers/iio/*/adjd*
1418
1419 ANALOG DEVICES INC MAX31760 DRIVER
1420 M:      Ibrahim Tilki <Ibrahim.Tilki@analog.com>
1421 S:      Maintained
1422 W:      http://wiki.analog.com/
1423 W:      https://ez.analog.com/linux-software-drivers
1424 F:      Documentation/devicetree/bindings/hwmon/adi,max31760.yaml
1425 F:      Documentation/hwmon/max31760.rst
1426 F:      drivers/hwmon/max31760.c
1427
1428 ANALOGBITS PLL LIBRARIES
1429 M:      Paul Walmsley <paul.walmsley@sifive.com>
1430 S:      Supported
1431 F:      drivers/clk/analogbits/*
1432 F:      include/linux/clk/analogbits*
1433
1434 ANDROID CONFIG FRAGMENTS
1435 M:      Rob Herring <robh@kernel.org>
1436 S:      Supported
1437 F:      kernel/configs/android*
1438
1439 ANDROID DRIVERS
1440 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
1441 M:      Arve Hjønnevåg <arve@android.com>
1442 M:      Todd Kjos <tkjos@android.com>
1443 M:      Martijn Coenen <maco@android.com>
1444 M:      Joel Fernandes <joel@joelfernandes.org>
1445 M:      Christian Brauner <christian@brauner.io>
1446 M:      Carlos Llamas <cmllamas@google.com>
1447 M:      Suren Baghdasaryan <surenb@google.com>
1448 L:      linux-kernel@vger.kernel.org
1449 S:      Supported
1450 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
1451 F:      drivers/android/
1452
1453 ANDROID GOLDFISH PIC DRIVER
1454 M:      Miodrag Dinic <miodrag.dinic@mips.com>
1455 S:      Supported
1456 F:      Documentation/devicetree/bindings/interrupt-controller/google,goldfish-pic.txt
1457 F:      drivers/irqchip/irq-goldfish-pic.c
1458
1459 ANDROID GOLDFISH RTC DRIVER
1460 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
1461 S:      Supported
1462 F:      Documentation/devicetree/bindings/rtc/google,goldfish-rtc.txt
1463 F:      drivers/rtc/rtc-goldfish.c
1464
1465 AOA (Apple Onboard Audio) ALSA DRIVER
1466 M:      Johannes Berg <johannes@sipsolutions.net>
1467 L:      linuxppc-dev@lists.ozlabs.org
1468 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1469 S:      Maintained
1470 F:      sound/aoa/
1471
1472 APEX EMBEDDED SYSTEMS STX104 IIO DRIVER
1473 M:      William Breathitt Gray <william.gray@linaro.org>
1474 L:      linux-iio@vger.kernel.org
1475 S:      Maintained
1476 F:      drivers/iio/addac/stx104.c
1477
1478 APM DRIVER
1479 M:      Jiri Kosina <jikos@kernel.org>
1480 S:      Odd fixes
1481 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/apm.git
1482 F:      arch/x86/kernel/apm_32.c
1483 F:      drivers/char/apm-emulation.c
1484 F:      include/linux/apm_bios.h
1485 F:      include/uapi/linux/apm_bios.h
1486
1487 APPARMOR SECURITY MODULE
1488 M:      John Johansen <john.johansen@canonical.com>
1489 M:      John Johansen <john@apparmor.net>
1490 L:      apparmor@lists.ubuntu.com (moderated for non-subscribers)
1491 S:      Supported
1492 W:      apparmor.net
1493 B:      https://gitlab.com/apparmor/apparmor-kernel
1494 C:      irc://irc.oftc.net/apparmor
1495 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jj/linux-apparmor
1496 T:      https://gitlab.com/apparmor/apparmor-kernel.git
1497 F:      Documentation/admin-guide/LSM/apparmor.rst
1498 F:      security/apparmor/
1499
1500 APPLE BCM5974 MULTITOUCH DRIVER
1501 M:      Henrik Rydberg <rydberg@bitmath.org>
1502 L:      linux-input@vger.kernel.org
1503 S:      Odd fixes
1504 F:      drivers/input/mouse/bcm5974.c
1505
1506 APPLE PCIE CONTROLLER DRIVER
1507 M:      Alyssa Rosenzweig <alyssa@rosenzweig.io>
1508 M:      Marc Zyngier <maz@kernel.org>
1509 L:      linux-pci@vger.kernel.org
1510 S:      Maintained
1511 F:      drivers/pci/controller/pcie-apple.c
1512
1513 APPLE SMC DRIVER
1514 M:      Henrik Rydberg <rydberg@bitmath.org>
1515 L:      linux-hwmon@vger.kernel.org
1516 S:      Odd fixes
1517 F:      drivers/hwmon/applesmc.c
1518
1519 APPLETALK NETWORK LAYER
1520 L:      netdev@vger.kernel.org
1521 S:      Odd fixes
1522 F:      drivers/net/appletalk/
1523 F:      include/linux/atalk.h
1524 F:      include/uapi/linux/atalk.h
1525 F:      net/appletalk/
1526
1527 APPLIED MICRO (APM) X-GENE DEVICE TREE SUPPORT
1528 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1529 S:      Supported
1530 F:      arch/arm64/boot/dts/apm/
1531
1532 APPLIED MICRO (APM) X-GENE SOC EDAC
1533 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1534 S:      Supported
1535 F:      Documentation/devicetree/bindings/edac/apm-xgene-edac.txt
1536 F:      drivers/edac/xgene_edac.c
1537
1538 APPLIED MICRO (APM) X-GENE SOC ETHERNET (V2) DRIVER
1539 M:      Iyappan Subramanian <iyappan@os.amperecomputing.com>
1540 M:      Keyur Chudgar <keyur@os.amperecomputing.com>
1541 S:      Supported
1542 F:      drivers/net/ethernet/apm/xgene-v2/
1543
1544 APPLIED MICRO (APM) X-GENE SOC ETHERNET DRIVER
1545 M:      Iyappan Subramanian <iyappan@os.amperecomputing.com>
1546 M:      Keyur Chudgar <keyur@os.amperecomputing.com>
1547 M:      Quan Nguyen <quan@os.amperecomputing.com>
1548 S:      Supported
1549 F:      Documentation/devicetree/bindings/net/apm-xgene-enet.txt
1550 F:      Documentation/devicetree/bindings/net/apm-xgene-mdio.txt
1551 F:      drivers/net/ethernet/apm/xgene/
1552 F:      drivers/net/mdio/mdio-xgene.c
1553
1554 APPLIED MICRO (APM) X-GENE SOC PMU
1555 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1556 S:      Supported
1557 F:      Documentation/admin-guide/perf/xgene-pmu.rst
1558 F:      Documentation/devicetree/bindings/perf/apm-xgene-pmu.txt
1559 F:      drivers/perf/xgene_pmu.c
1560
1561 APTINA CAMERA SENSOR PLL
1562 M:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
1563 L:      linux-media@vger.kernel.org
1564 S:      Maintained
1565 F:      drivers/media/i2c/aptina-pll.*
1566
1567 AQUACOMPUTER D5 NEXT PUMP SENSOR DRIVER
1568 M:      Aleksa Savic <savicaleksa83@gmail.com>
1569 M:      Jack Doan <me@jackdoan.com>
1570 L:      linux-hwmon@vger.kernel.org
1571 S:      Maintained
1572 F:      Documentation/hwmon/aquacomputer_d5next.rst
1573 F:      drivers/hwmon/aquacomputer_d5next.c
1574
1575 AQUANTIA ETHERNET DRIVER (atlantic)
1576 M:      Igor Russkikh <irusskikh@marvell.com>
1577 L:      netdev@vger.kernel.org
1578 S:      Supported
1579 W:      https://www.marvell.com/
1580 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
1581 F:      Documentation/networking/device_drivers/ethernet/aquantia/atlantic.rst
1582 F:      drivers/net/ethernet/aquantia/atlantic/
1583
1584 AQUANTIA ETHERNET DRIVER PTP SUBSYSTEM
1585 M:      Egor Pomozov <epomozov@marvell.com>
1586 L:      netdev@vger.kernel.org
1587 S:      Supported
1588 W:      http://www.aquantia.com
1589 F:      drivers/net/ethernet/aquantia/atlantic/aq_ptp*
1590
1591 AR0521 ON SEMICONDUCTOR CAMERA SENSOR DRIVER
1592 M:      Krzysztof Hałasa <khalasa@piap.pl>
1593 L:      linux-media@vger.kernel.org
1594 S:      Maintained
1595 F:      Documentation/devicetree/bindings/media/i2c/onnn,ar0521.yaml
1596 F:      drivers/media/i2c/ar0521.c
1597
1598 ARASAN NAND CONTROLLER DRIVER
1599 M:      Miquel Raynal <miquel.raynal@bootlin.com>
1600 M:      Naga Sureshkumar Relli <nagasure@xilinx.com>
1601 L:      linux-mtd@lists.infradead.org
1602 S:      Maintained
1603 F:      Documentation/devicetree/bindings/mtd/arasan,nand-controller.yaml
1604 F:      drivers/mtd/nand/raw/arasan-nand-controller.c
1605
1606 ARC FRAMEBUFFER DRIVER
1607 M:      Jaya Kumar <jayalk@intworks.biz>
1608 S:      Maintained
1609 F:      drivers/video/fbdev/arcfb.c
1610 F:      drivers/video/fbdev/core/fb_defio.c
1611
1612 ARC PGU DRM DRIVER
1613 M:      Alexey Brodkin <abrodkin@synopsys.com>
1614 S:      Supported
1615 F:      Documentation/devicetree/bindings/display/snps,arcpgu.txt
1616 F:      drivers/gpu/drm/tiny/arcpgu.c
1617
1618 ARCNET NETWORK LAYER
1619 M:      Michael Grzeschik <m.grzeschik@pengutronix.de>
1620 L:      netdev@vger.kernel.org
1621 S:      Maintained
1622 F:      drivers/net/arcnet/
1623 F:      include/uapi/linux/if_arcnet.h
1624
1625 ARM ARCHITECTED TIMER DRIVER
1626 M:      Mark Rutland <mark.rutland@arm.com>
1627 M:      Marc Zyngier <maz@kernel.org>
1628 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1629 S:      Maintained
1630 F:      arch/arm/include/asm/arch_timer.h
1631 F:      arch/arm64/include/asm/arch_timer.h
1632 F:      drivers/clocksource/arm_arch_timer.c
1633
1634 ARM HDLCD DRM DRIVER
1635 M:      Liviu Dudau <liviu.dudau@arm.com>
1636 S:      Supported
1637 F:      Documentation/devicetree/bindings/display/arm,hdlcd.yaml
1638 F:      drivers/gpu/drm/arm/hdlcd_*
1639
1640 ARM INTEGRATOR, VERSATILE AND REALVIEW SUPPORT
1641 M:      Linus Walleij <linus.walleij@linaro.org>
1642 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1643 S:      Maintained
1644 F:      Documentation/devicetree/bindings/arm/arm,integrator.yaml
1645 F:      Documentation/devicetree/bindings/arm/arm,realview.yaml
1646 F:      Documentation/devicetree/bindings/arm/arm,versatile.yaml
1647 F:      Documentation/devicetree/bindings/arm/arm,vexpress-juno.yaml
1648 F:      Documentation/devicetree/bindings/auxdisplay/arm,versatile-lcd.yaml
1649 F:      Documentation/devicetree/bindings/clock/arm,syscon-icst.yaml
1650 F:      Documentation/devicetree/bindings/i2c/arm,i2c-versatile.yaml
1651 F:      Documentation/devicetree/bindings/interrupt-controller/arm,versatile-fpga-irq.txt
1652 F:      Documentation/devicetree/bindings/mtd/mtd-physmap.yaml
1653 F:      arch/arm/boot/dts/arm-realview-*
1654 F:      arch/arm/boot/dts/integrator*
1655 F:      arch/arm/boot/dts/versatile*
1656 F:      arch/arm/mach-versatile/
1657 F:      drivers/bus/arm-integrator-lm.c
1658 F:      drivers/clk/versatile/
1659 F:      drivers/i2c/busses/i2c-versatile.c
1660 F:      drivers/irqchip/irq-versatile-fpga.c
1661 F:      drivers/mtd/maps/physmap-versatile.*
1662 F:      drivers/power/reset/arm-versatile-reboot.c
1663 F:      drivers/soc/versatile/
1664
1665 ARM KOMEDA DRM-KMS DRIVER
1666 M:      James (Qian) Wang <james.qian.wang@arm.com>
1667 M:      Liviu Dudau <liviu.dudau@arm.com>
1668 M:      Mihail Atanassov <mihail.atanassov@arm.com>
1669 L:      Mali DP Maintainers <malidp@foss.arm.com>
1670 S:      Supported
1671 T:      git git://anongit.freedesktop.org/drm/drm-misc
1672 F:      Documentation/devicetree/bindings/display/arm,komeda.yaml
1673 F:      Documentation/gpu/komeda-kms.rst
1674 F:      drivers/gpu/drm/arm/display/include/
1675 F:      drivers/gpu/drm/arm/display/komeda/
1676
1677 ARM MALI PANFROST DRM DRIVER
1678 M:      Rob Herring <robh@kernel.org>
1679 M:      Tomeu Vizoso <tomeu.vizoso@collabora.com>
1680 R:      Steven Price <steven.price@arm.com>
1681 R:      Alyssa Rosenzweig <alyssa.rosenzweig@collabora.com>
1682 L:      dri-devel@lists.freedesktop.org
1683 S:      Supported
1684 T:      git git://anongit.freedesktop.org/drm/drm-misc
1685 F:      drivers/gpu/drm/panfrost/
1686 F:      include/uapi/drm/panfrost_drm.h
1687
1688 ARM MALI-DP DRM DRIVER
1689 M:      Liviu Dudau <liviu.dudau@arm.com>
1690 M:      Brian Starkey <brian.starkey@arm.com>
1691 L:      Mali DP Maintainers <malidp@foss.arm.com>
1692 S:      Supported
1693 T:      git git://anongit.freedesktop.org/drm/drm-misc
1694 F:      Documentation/devicetree/bindings/display/arm,malidp.yaml
1695 F:      Documentation/gpu/afbc.rst
1696 F:      drivers/gpu/drm/arm/
1697
1698 ARM MFM AND FLOPPY DRIVERS
1699 M:      Ian Molton <spyro@f2s.com>
1700 S:      Maintained
1701 F:      arch/arm/include/asm/floppy.h
1702 F:      arch/arm/mach-rpc/floppydma.S
1703
1704 ARM PMU PROFILING AND DEBUGGING
1705 M:      Will Deacon <will@kernel.org>
1706 M:      Mark Rutland <mark.rutland@arm.com>
1707 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1708 S:      Maintained
1709 F:      Documentation/devicetree/bindings/arm/pmu.yaml
1710 F:      Documentation/devicetree/bindings/perf/
1711 F:      arch/arm*/include/asm/hw_breakpoint.h
1712 F:      arch/arm*/include/asm/perf_event.h
1713 F:      arch/arm*/kernel/hw_breakpoint.c
1714 F:      arch/arm*/kernel/perf_*
1715 F:      drivers/perf/
1716 F:      include/linux/perf/arm_pmu.h
1717
1718 ARM PORT
1719 M:      Russell King <linux@armlinux.org.uk>
1720 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1721 S:      Odd Fixes
1722 W:      http://www.armlinux.org.uk/
1723 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git
1724 F:      arch/arm/
1725 X:      arch/arm/boot/dts/
1726
1727 ARM PRIMECELL AACI PL041 DRIVER
1728 M:      Russell King <linux@armlinux.org.uk>
1729 S:      Odd Fixes
1730 F:      sound/arm/aaci.*
1731
1732 ARM PRIMECELL BUS SUPPORT
1733 M:      Russell King <linux@armlinux.org.uk>
1734 S:      Odd Fixes
1735 F:      drivers/amba/
1736 F:      include/linux/amba/bus.h
1737
1738 ARM PRIMECELL PL35X NAND CONTROLLER DRIVER
1739 M:      Miquel Raynal <miquel.raynal@bootlin.com>
1740 M:      Naga Sureshkumar Relli <nagasure@xilinx.com>
1741 L:      linux-mtd@lists.infradead.org
1742 S:      Maintained
1743 F:      Documentation/devicetree/bindings/mtd/arm,pl353-nand-r2p1.yaml
1744 F:      drivers/mtd/nand/raw/pl35x-nand-controller.c
1745
1746 ARM PRIMECELL PL35X SMC DRIVER
1747 M:      Miquel Raynal <miquel.raynal@bootlin.com>
1748 M:      Naga Sureshkumar Relli <nagasure@xilinx.com>
1749 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1750 S:      Maintained
1751 F:      Documentation/devicetree/bindings/memory-controllers/arm,pl35x-smc.yaml
1752 F:      drivers/memory/pl353-smc.c
1753
1754 ARM PRIMECELL CLCD PL110 DRIVER
1755 M:      Russell King <linux@armlinux.org.uk>
1756 S:      Odd Fixes
1757 F:      drivers/video/fbdev/amba-clcd.*
1758
1759 ARM PRIMECELL KMI PL050 DRIVER
1760 M:      Russell King <linux@armlinux.org.uk>
1761 S:      Odd Fixes
1762 F:      drivers/input/serio/ambakmi.*
1763 F:      include/linux/amba/kmi.h
1764
1765 ARM PRIMECELL MMCI PL180/1 DRIVER
1766 M:      Russell King <linux@armlinux.org.uk>
1767 S:      Odd Fixes
1768 F:      drivers/mmc/host/mmci.*
1769 F:      include/linux/amba/mmci.h
1770
1771 ARM PRIMECELL SSP PL022 SPI DRIVER
1772 M:      Linus Walleij <linus.walleij@linaro.org>
1773 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1774 S:      Maintained
1775 F:      Documentation/devicetree/bindings/spi/spi-pl022.yaml
1776 F:      drivers/spi/spi-pl022.c
1777
1778 ARM PRIMECELL UART PL010 AND PL011 DRIVERS
1779 M:      Russell King <linux@armlinux.org.uk>
1780 S:      Odd Fixes
1781 F:      drivers/tty/serial/amba-pl01*.c
1782 F:      include/linux/amba/serial.h
1783
1784 ARM PRIMECELL VIC PL190/PL192 DRIVER
1785 M:      Linus Walleij <linus.walleij@linaro.org>
1786 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1787 S:      Maintained
1788 F:      Documentation/devicetree/bindings/interrupt-controller/arm,vic.yaml
1789 F:      drivers/irqchip/irq-vic.c
1790
1791 ARM SMC WATCHDOG DRIVER
1792 M:      Julius Werner <jwerner@chromium.org>
1793 R:      Evan Benn <evanbenn@chromium.org>
1794 S:      Maintained
1795 F:      Documentation/devicetree/bindings/watchdog/arm-smc-wdt.yaml
1796 F:      drivers/watchdog/arm_smc_wdt.c
1797
1798 ARM SMMU DRIVERS
1799 M:      Will Deacon <will@kernel.org>
1800 R:      Robin Murphy <robin.murphy@arm.com>
1801 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1802 S:      Maintained
1803 F:      Documentation/devicetree/bindings/iommu/arm,smmu*
1804 F:      drivers/iommu/arm/
1805 F:      drivers/iommu/io-pgtable-arm*
1806
1807 ARM AND ARM64 SoC SUB-ARCHITECTURES (COMMON PARTS)
1808 M:      Arnd Bergmann <arnd@arndb.de>
1809 M:      Olof Johansson <olof@lixom.net>
1810 M:      soc@kernel.org
1811 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1812 S:      Maintained
1813 C:      irc://irc.libera.chat/armlinux
1814 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/soc/soc.git
1815 F:      arch/arm/boot/dts/Makefile
1816 F:      arch/arm64/boot/dts/Makefile
1817
1818 ARM SUB-ARCHITECTURES
1819 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1820 S:      Maintained
1821 C:      irc://irc.libera.chat/armlinux
1822 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/soc/soc.git
1823 F:      arch/arm/mach-*/
1824 F:      arch/arm/plat-*/
1825
1826 ARM/ACTIONS SEMI ARCHITECTURE
1827 M:      Andreas Färber <afaerber@suse.de>
1828 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
1829 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1830 L:      linux-actions@lists.infradead.org (moderated for non-subscribers)
1831 S:      Maintained
1832 F:      Documentation/devicetree/bindings/arm/actions.yaml
1833 F:      Documentation/devicetree/bindings/clock/actions,owl-cmu.txt
1834 F:      Documentation/devicetree/bindings/dma/owl-dma.yaml
1835 F:      Documentation/devicetree/bindings/i2c/i2c-owl.yaml
1836 F:      Documentation/devicetree/bindings/interrupt-controller/actions,owl-sirq.yaml
1837 F:      Documentation/devicetree/bindings/mmc/owl-mmc.yaml
1838 F:      Documentation/devicetree/bindings/net/actions,owl-emac.yaml
1839 F:      Documentation/devicetree/bindings/pinctrl/actions,*
1840 F:      Documentation/devicetree/bindings/power/actions,owl-sps.txt
1841 F:      Documentation/devicetree/bindings/timer/actions,owl-timer.txt
1842 F:      arch/arm/boot/dts/owl-*
1843 F:      arch/arm/mach-actions/
1844 F:      arch/arm64/boot/dts/actions/
1845 F:      drivers/clk/actions/
1846 F:      drivers/clocksource/timer-owl*
1847 F:      drivers/dma/owl-dma.c
1848 F:      drivers/i2c/busses/i2c-owl.c
1849 F:      drivers/irqchip/irq-owl-sirq.c
1850 F:      drivers/mmc/host/owl-mmc.c
1851 F:      drivers/net/ethernet/actions/
1852 F:      drivers/pinctrl/actions/*
1853 F:      drivers/soc/actions/
1854 F:      include/dt-bindings/power/owl-*
1855 F:      include/dt-bindings/reset/actions,*
1856 F:      include/linux/soc/actions/
1857 N:      owl
1858
1859 ARM/Allwinner SoC Clock Support
1860 M:      Emilio López <emilio@elopez.com.ar>
1861 S:      Maintained
1862 F:      drivers/clk/sunxi/
1863
1864 ARM/Allwinner sunXi SoC support
1865 M:      Chen-Yu Tsai <wens@csie.org>
1866 M:      Jernej Skrabec <jernej.skrabec@gmail.com>
1867 M:      Samuel Holland <samuel@sholland.org>
1868 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1869 S:      Maintained
1870 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sunxi/linux.git
1871 L:      linux-sunxi@lists.linux.dev
1872 F:      arch/arm/mach-sunxi/
1873 F:      arch/arm64/boot/dts/allwinner/
1874 F:      drivers/clk/sunxi-ng/
1875 F:      drivers/pinctrl/sunxi/
1876 F:      drivers/soc/sunxi/
1877 N:      allwinner
1878 N:      sun[x456789]i
1879 N:      sun[25]0i
1880
1881 ARM/Amlogic Meson SoC CLOCK FRAMEWORK
1882 M:      Neil Armstrong <neil.armstrong@linaro.org>
1883 M:      Jerome Brunet <jbrunet@baylibre.com>
1884 L:      linux-amlogic@lists.infradead.org
1885 S:      Maintained
1886 F:      Documentation/devicetree/bindings/clock/amlogic*
1887 F:      drivers/clk/meson/
1888 F:      include/dt-bindings/clock/gxbb*
1889 F:      include/dt-bindings/clock/meson*
1890
1891 ARM/Amlogic Meson SoC Crypto Drivers
1892 M:      Corentin Labbe <clabbe@baylibre.com>
1893 L:      linux-crypto@vger.kernel.org
1894 L:      linux-amlogic@lists.infradead.org
1895 S:      Maintained
1896 F:      Documentation/devicetree/bindings/crypto/amlogic*
1897 F:      drivers/crypto/amlogic/
1898
1899 ARM/Amlogic Meson SoC Sound Drivers
1900 M:      Jerome Brunet <jbrunet@baylibre.com>
1901 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1902 S:      Maintained
1903 F:      Documentation/devicetree/bindings/sound/amlogic*
1904 F:      sound/soc/meson/
1905
1906 ARM/Amlogic Meson SoC support
1907 M:      Neil Armstrong <neil.armstrong@linaro.org>
1908 M:      Kevin Hilman <khilman@baylibre.com>
1909 R:      Jerome Brunet <jbrunet@baylibre.com>
1910 R:      Martin Blumenstingl <martin.blumenstingl@googlemail.com>
1911 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1912 L:      linux-amlogic@lists.infradead.org
1913 S:      Maintained
1914 W:      http://linux-meson.com/
1915 F:      arch/arm/boot/dts/meson*
1916 F:      arch/arm/mach-meson/
1917 F:      arch/arm64/boot/dts/amlogic/
1918 F:      drivers/mmc/host/meson*
1919 F:      drivers/pinctrl/meson/
1920 F:      drivers/rtc/rtc-meson*
1921 F:      drivers/soc/amlogic/
1922 N:      meson
1923
1924 ARM/Annapurna Labs ALPINE ARCHITECTURE
1925 M:      Tsahee Zidenberg <tsahee@annapurnalabs.com>
1926 M:      Antoine Tenart <atenart@kernel.org>
1927 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1928 S:      Maintained
1929 F:      arch/arm/boot/dts/alpine*
1930 F:      arch/arm/mach-alpine/
1931 F:      arch/arm64/boot/dts/amazon/
1932 F:      drivers/*/*alpine*
1933
1934 ARM/APPLE MACHINE SUPPORT
1935 M:      Hector Martin <marcan@marcan.st>
1936 M:      Sven Peter <sven@svenpeter.dev>
1937 R:      Alyssa Rosenzweig <alyssa@rosenzweig.io>
1938 L:      asahi@lists.linux.dev
1939 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1940 S:      Maintained
1941 W:      https://asahilinux.org
1942 B:      https://github.com/AsahiLinux/linux/issues
1943 C:      irc://irc.oftc.net/asahi-dev
1944 T:      git https://github.com/AsahiLinux/linux.git
1945 F:      Documentation/devicetree/bindings/arm/apple.yaml
1946 F:      Documentation/devicetree/bindings/arm/apple/*
1947 F:      Documentation/devicetree/bindings/clock/apple,nco.yaml
1948 F:      Documentation/devicetree/bindings/cpufreq/apple,cluster-cpufreq.yaml
1949 F:      Documentation/devicetree/bindings/dma/apple,admac.yaml
1950 F:      Documentation/devicetree/bindings/i2c/apple,i2c.yaml
1951 F:      Documentation/devicetree/bindings/interrupt-controller/apple,*
1952 F:      Documentation/devicetree/bindings/iommu/apple,dart.yaml
1953 F:      Documentation/devicetree/bindings/iommu/apple,sart.yaml
1954 F:      Documentation/devicetree/bindings/mailbox/apple,mailbox.yaml
1955 F:      Documentation/devicetree/bindings/net/bluetooth/brcm,bcm4377-bluetooth.yaml
1956 F:      Documentation/devicetree/bindings/nvme/apple,nvme-ans.yaml
1957 F:      Documentation/devicetree/bindings/nvmem/apple,efuses.yaml
1958 F:      Documentation/devicetree/bindings/pci/apple,pcie.yaml
1959 F:      Documentation/devicetree/bindings/pinctrl/apple,pinctrl.yaml
1960 F:      Documentation/devicetree/bindings/power/apple*
1961 F:      Documentation/devicetree/bindings/watchdog/apple,wdt.yaml
1962 F:      arch/arm64/boot/dts/apple/
1963 F:      drivers/bluetooth/hci_bcm4377.c
1964 F:      drivers/clk/clk-apple-nco.c
1965 F:      drivers/cpufreq/apple-soc-cpufreq.c
1966 F:      drivers/dma/apple-admac.c
1967 F:      drivers/i2c/busses/i2c-pasemi-core.c
1968 F:      drivers/i2c/busses/i2c-pasemi-platform.c
1969 F:      drivers/iommu/apple-dart.c
1970 F:      drivers/iommu/io-pgtable-dart.c
1971 F:      drivers/irqchip/irq-apple-aic.c
1972 F:      drivers/mailbox/apple-mailbox.c
1973 F:      drivers/nvme/host/apple.c
1974 F:      drivers/nvmem/apple-efuses.c
1975 F:      drivers/pinctrl/pinctrl-apple-gpio.c
1976 F:      drivers/soc/apple/*
1977 F:      drivers/watchdog/apple_wdt.c
1978 F:      include/dt-bindings/interrupt-controller/apple-aic.h
1979 F:      include/dt-bindings/pinctrl/apple.h
1980 F:      include/linux/apple-mailbox.h
1981 F:      include/linux/soc/apple/*
1982
1983 ARM/APPLE MACHINE SOUND DRIVERS
1984 M:      Martin Povišer <povik+lin@cutebit.org>
1985 L:      asahi@lists.linux.dev
1986 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1987 S:      Maintained
1988 F:      Documentation/devicetree/bindings/sound/apple,*
1989 F:      sound/soc/apple/*
1990 F:      sound/soc/codecs/cs42l83-i2c.c
1991
1992 ARM/ARTPEC MACHINE SUPPORT
1993 M:      Jesper Nilsson <jesper.nilsson@axis.com>
1994 M:      Lars Persson <lars.persson@axis.com>
1995 L:      linux-arm-kernel@axis.com
1996 S:      Maintained
1997 F:      Documentation/devicetree/bindings/pinctrl/axis,artpec6-pinctrl.txt
1998 F:      arch/arm/boot/dts/artpec6*
1999 F:      arch/arm/mach-artpec
2000 F:      drivers/clk/axis
2001 F:      drivers/crypto/axis
2002 F:      drivers/mmc/host/usdhi6rol0.c
2003 F:      drivers/pinctrl/pinctrl-artpec*
2004
2005 ARM/ASPEED I2C DRIVER
2006 M:      Brendan Higgins <brendanhiggins@google.com>
2007 R:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
2008 R:      Joel Stanley <joel@jms.id.au>
2009 L:      linux-i2c@vger.kernel.org
2010 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2011 S:      Maintained
2012 F:      Documentation/devicetree/bindings/i2c/aspeed,i2c.yaml
2013 F:      Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2400-i2c-ic.txt
2014 F:      drivers/i2c/busses/i2c-aspeed.c
2015 F:      drivers/irqchip/irq-aspeed-i2c-ic.c
2016
2017 ARM/ASPEED MACHINE SUPPORT
2018 M:      Joel Stanley <joel@jms.id.au>
2019 R:      Andrew Jeffery <andrew@aj.id.au>
2020 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2021 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
2022 S:      Supported
2023 Q:      https://patchwork.ozlabs.org/project/linux-aspeed/list/
2024 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joel/aspeed.git
2025 F:      Documentation/devicetree/bindings/arm/aspeed/
2026 F:      arch/arm/boot/dts/aspeed-*
2027 F:      arch/arm/mach-aspeed/
2028 N:      aspeed
2029
2030 ARM/BITMAIN ARCHITECTURE
2031 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
2032 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2033 S:      Maintained
2034 F:      Documentation/devicetree/bindings/arm/bitmain.yaml
2035 F:      Documentation/devicetree/bindings/clock/bitmain,bm1880-clk.yaml
2036 F:      Documentation/devicetree/bindings/pinctrl/bitmain,bm1880-pinctrl.txt
2037 F:      arch/arm64/boot/dts/bitmain/
2038 F:      drivers/clk/clk-bm1880.c
2039 F:      drivers/pinctrl/pinctrl-bm1880.c
2040
2041 ARM/CALXEDA HIGHBANK ARCHITECTURE
2042 M:      Andre Przywara <andre.przywara@arm.com>
2043 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2044 S:      Maintained
2045 F:      arch/arm/boot/dts/ecx-*.dts*
2046 F:      arch/arm/boot/dts/highbank.dts
2047 F:      arch/arm/mach-highbank/
2048
2049 ARM/CAVIUM THUNDER NETWORK DRIVER
2050 M:      Sunil Goutham <sgoutham@marvell.com>
2051 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2052 S:      Supported
2053 F:      drivers/net/ethernet/cavium/thunder/
2054
2055 ARM/CIRRUS LOGIC BK3 MACHINE SUPPORT
2056 M:      Lukasz Majewski <lukma@denx.de>
2057 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2058 S:      Maintained
2059 F:      arch/arm/mach-ep93xx/ts72xx.c
2060
2061 ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
2062 M:      Alexander Shiyan <shc_work@mail.ru>
2063 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2064 S:      Odd Fixes
2065 N:      clps711x
2066
2067 ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
2068 M:      Lennert Buytenhek <kernel@wantstofly.org>
2069 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2070 S:      Maintained
2071
2072 ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
2073 M:      Hartley Sweeten <hsweeten@visionengravers.com>
2074 M:      Alexander Sverdlin <alexander.sverdlin@gmail.com>
2075 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2076 S:      Maintained
2077 F:      Documentation/devicetree/bindings/iio/adc/cirrus,ep9301-adc.yaml
2078 F:      arch/arm/boot/compressed/misc-ep93xx.h
2079 F:      arch/arm/mach-ep93xx/
2080 F:      drivers/iio/adc/ep93xx_adc.c
2081
2082 ARM/CLKDEV SUPPORT
2083 M:      Russell King <linux@armlinux.org.uk>
2084 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2085 S:      Maintained
2086 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git clkdev
2087 F:      drivers/clk/clkdev.c
2088
2089 ARM/CONEXANT DIGICOLOR MACHINE SUPPORT
2090 M:      Baruch Siach <baruch@tkos.co.il>
2091 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2092 S:      Maintained
2093 F:      arch/arm/boot/dts/cx92755*
2094 N:      digicolor
2095
2096 ARM/CORESIGHT FRAMEWORK AND DRIVERS
2097 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
2098 M:      Suzuki K Poulose <suzuki.poulose@arm.com>
2099 R:      Mike Leach <mike.leach@linaro.org>
2100 R:      Leo Yan <leo.yan@linaro.org>
2101 L:      coresight@lists.linaro.org (moderated for non-subscribers)
2102 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2103 S:      Maintained
2104 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/coresight/linux.git
2105 F:      Documentation/ABI/testing/sysfs-bus-coresight-devices-*
2106 F:      Documentation/devicetree/bindings/arm/arm,coresight-*.yaml
2107 F:      Documentation/devicetree/bindings/arm/qcom,coresight-*.yaml
2108 F:      Documentation/devicetree/bindings/arm/arm,embedded-trace-extension.yaml
2109 F:      Documentation/devicetree/bindings/arm/arm,trace-buffer-extension.yaml
2110 F:      Documentation/trace/coresight/*
2111 F:      drivers/hwtracing/coresight/*
2112 F:      include/dt-bindings/arm/coresight-cti-dt.h
2113 F:      include/linux/coresight*
2114 F:      samples/coresight/*
2115 F:      tools/perf/tests/shell/coresight/*
2116 F:      tools/perf/arch/arm/util/auxtrace.c
2117 F:      tools/perf/arch/arm/util/cs-etm.c
2118 F:      tools/perf/arch/arm/util/cs-etm.h
2119 F:      tools/perf/arch/arm/util/pmu.c
2120 F:      tools/perf/util/cs-etm-decoder/*
2121 F:      tools/perf/util/cs-etm.*
2122
2123 ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
2124 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
2125 M:      Linus Walleij <linus.walleij@linaro.org>
2126 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2127 S:      Maintained
2128 T:      git git://github.com/ulli-kroll/linux.git
2129 F:      Documentation/devicetree/bindings/arm/gemini.yaml
2130 F:      Documentation/devicetree/bindings/net/cortina,gemini-ethernet.yaml
2131 F:      Documentation/devicetree/bindings/pinctrl/cortina,gemini-pinctrl.txt
2132 F:      Documentation/devicetree/bindings/rtc/faraday,ftrtc010.yaml
2133 F:      arch/arm/boot/dts/gemini*
2134 F:      arch/arm/mach-gemini/
2135 F:      drivers/crypto/gemini/
2136 F:      drivers/net/ethernet/cortina/
2137 F:      drivers/pinctrl/pinctrl-gemini.c
2138 F:      drivers/rtc/rtc-ftrtc010.c
2139
2140 ARM/CZ.NIC TURRIS SUPPORT
2141 M:      Marek Behún <kabel@kernel.org>
2142 S:      Maintained
2143 W:      https://www.turris.cz/
2144 F:      Documentation/ABI/testing/debugfs-moxtet
2145 F:      Documentation/ABI/testing/sysfs-bus-moxtet-devices
2146 F:      Documentation/ABI/testing/sysfs-firmware-turris-mox-rwtm
2147 F:      Documentation/devicetree/bindings/bus/moxtet.txt
2148 F:      Documentation/devicetree/bindings/firmware/cznic,turris-mox-rwtm.txt
2149 F:      Documentation/devicetree/bindings/gpio/gpio-moxtet.txt
2150 F:      Documentation/devicetree/bindings/leds/cznic,turris-omnia-leds.yaml
2151 F:      Documentation/devicetree/bindings/watchdog/armada-37xx-wdt.txt
2152 F:      drivers/bus/moxtet.c
2153 F:      drivers/firmware/turris-mox-rwtm.c
2154 F:      drivers/leds/leds-turris-omnia.c
2155 F:      drivers/mailbox/armada-37xx-rwtm-mailbox.c
2156 F:      drivers/gpio/gpio-moxtet.c
2157 F:      drivers/watchdog/armada_37xx_wdt.c
2158 F:      include/dt-bindings/bus/moxtet.h
2159 F:      include/linux/armada-37xx-rwtm-mailbox.h
2160 F:      include/linux/moxtet.h
2161
2162 ARM/FARADAY FA526 PORT
2163 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
2164 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2165 S:      Maintained
2166 T:      git git://git.berlios.de/gemini-board
2167 F:      arch/arm/mm/*-fa*
2168
2169 ARM/FOOTBRIDGE ARCHITECTURE
2170 M:      Russell King <linux@armlinux.org.uk>
2171 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2172 S:      Maintained
2173 W:      http://www.armlinux.org.uk/
2174 F:      arch/arm/include/asm/hardware/dec21285.h
2175 F:      arch/arm/mach-footbridge/
2176
2177 ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
2178 M:      Shawn Guo <shawnguo@kernel.org>
2179 M:      Sascha Hauer <s.hauer@pengutronix.de>
2180 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
2181 R:      Fabio Estevam <festevam@gmail.com>
2182 R:      NXP Linux Team <linux-imx@nxp.com>
2183 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2184 S:      Maintained
2185 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
2186 X:      drivers/media/i2c/
2187 F:      arch/arm64/boot/dts/freescale/
2188 X:      arch/arm64/boot/dts/freescale/fsl-*
2189 X:      arch/arm64/boot/dts/freescale/qoriq-*
2190 N:      imx
2191 N:      mxs
2192
2193 ARM/FREESCALE LAYERSCAPE ARM ARCHITECTURE
2194 M:      Shawn Guo <shawnguo@kernel.org>
2195 M:      Li Yang <leoyang.li@nxp.com>
2196 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2197 S:      Maintained
2198 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
2199 F:      arch/arm/boot/dts/ls1021a*
2200 F:      arch/arm64/boot/dts/freescale/fsl-*
2201 F:      arch/arm64/boot/dts/freescale/qoriq-*
2202
2203 ARM/FREESCALE VYBRID ARM ARCHITECTURE
2204 M:      Shawn Guo <shawnguo@kernel.org>
2205 M:      Sascha Hauer <s.hauer@pengutronix.de>
2206 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
2207 R:      Stefan Agner <stefan@agner.ch>
2208 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2209 S:      Maintained
2210 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
2211 F:      arch/arm/boot/dts/vf*
2212 F:      arch/arm/mach-imx/*vf610*
2213
2214 ARM/GUMSTIX MACHINE SUPPORT
2215 M:      Steve Sakoman <sakoman@gmail.com>
2216 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2217 S:      Maintained
2218
2219 ARM/HISILICON SOC SUPPORT
2220 M:      Wei Xu <xuwei5@hisilicon.com>
2221 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2222 S:      Supported
2223 W:      http://www.hisilicon.com
2224 T:      git https://github.com/hisilicon/linux-hisi.git
2225 F:      arch/arm/boot/dts/hi3*
2226 F:      arch/arm/boot/dts/hip*
2227 F:      arch/arm/boot/dts/hisi*
2228 F:      arch/arm/mach-hisi/
2229 F:      arch/arm64/boot/dts/hisilicon/
2230
2231 ARM/HP JORNADA 7XX MACHINE SUPPORT
2232 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
2233 S:      Maintained
2234 W:      www.jlime.com
2235 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
2236 F:      arch/arm/mach-sa1100/include/mach/jornada720.h
2237 F:      arch/arm/mach-sa1100/jornada720.c
2238
2239 ARM/HPE GXP ARCHITECTURE
2240 M:      Jean-Marie Verdun <verdun@hpe.com>
2241 M:      Nick Hawkins <nick.hawkins@hpe.com>
2242 S:      Maintained
2243 F:      Documentation/hwmon/gxp-fan-ctrl.rst
2244 F:      Documentation/devicetree/bindings/arm/hpe,gxp.yaml
2245 F:      Documentation/devicetree/bindings/hwmon/hpe,gxp-fan-ctrl.yaml
2246 F:      Documentation/devicetree/bindings/i2c/hpe,gxp-i2c.yaml
2247 F:      Documentation/devicetree/bindings/spi/hpe,gxp-spifi.yaml
2248 F:      Documentation/devicetree/bindings/timer/hpe,gxp-timer.yaml
2249 F:      arch/arm/boot/dts/hpe-bmc*
2250 F:      arch/arm/boot/dts/hpe-gxp*
2251 F:      arch/arm/mach-hpe/
2252 F:      drivers/clocksource/timer-gxp.c
2253 F:      drivers/hwmon/gxp-fan-ctrl.c
2254 F:      drivers/i2c/busses/i2c-gxp.c
2255 F:      drivers/spi/spi-gxp.c
2256 F:      drivers/watchdog/gxp-wdt.c
2257
2258 ARM/IGEP MACHINE SUPPORT
2259 M:      Enric Balletbo i Serra <eballetbo@gmail.com>
2260 M:      Javier Martinez Canillas <javier@dowhile0.org>
2261 L:      linux-omap@vger.kernel.org
2262 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2263 S:      Maintained
2264 F:      arch/arm/boot/dts/omap3-igep*
2265
2266 ARM/INTEL IXP4XX ARM ARCHITECTURE
2267 M:      Linus Walleij <linusw@kernel.org>
2268 M:      Imre Kaloz <kaloz@openwrt.org>
2269 M:      Krzysztof Halasa <khalasa@piap.pl>
2270 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2271 S:      Maintained
2272 F:      Documentation/devicetree/bindings/arm/intel-ixp4xx.yaml
2273 F:      Documentation/devicetree/bindings/memory-controllers/intel,ixp4xx-expansion*
2274 F:      Documentation/devicetree/bindings/gpio/intel,ixp4xx-gpio.txt
2275 F:      Documentation/devicetree/bindings/interrupt-controller/intel,ixp4xx-interrupt.yaml
2276 F:      Documentation/devicetree/bindings/timer/intel,ixp4xx-timer.yaml
2277 F:      arch/arm/boot/dts/intel-ixp*
2278 F:      arch/arm/mach-ixp4xx/
2279 F:      drivers/bus/intel-ixp4xx-eb.c
2280 F:      drivers/clocksource/timer-ixp4xx.c
2281 F:      drivers/crypto/intel/ixp4xx/ixp4xx_crypto.c
2282 F:      drivers/gpio/gpio-ixp4xx.c
2283 F:      drivers/irqchip/irq-ixp4xx.c
2284
2285 ARM/INTEL KEEMBAY ARCHITECTURE
2286 M:      Paul J. Murphy <paul.j.murphy@intel.com>
2287 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
2288 S:      Maintained
2289 F:      Documentation/devicetree/bindings/arm/intel,keembay.yaml
2290 F:      arch/arm64/boot/dts/intel/keembay-evm.dts
2291 F:      arch/arm64/boot/dts/intel/keembay-soc.dtsi
2292
2293 ARM/INTEL XSC3 (MANZANO) ARM CORE
2294 M:      Lennert Buytenhek <kernel@wantstofly.org>
2295 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2296 S:      Maintained
2297
2298 ARM/LG1K ARCHITECTURE
2299 M:      Chanho Min <chanho.min@lge.com>
2300 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2301 S:      Maintained
2302 F:      arch/arm64/boot/dts/lg/
2303
2304 ARM/LPC18XX ARCHITECTURE
2305 M:      Vladimir Zapolskiy <vz@mleia.com>
2306 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2307 S:      Maintained
2308 F:      Documentation/devicetree/bindings/i2c/i2c-lpc2k.txt
2309 F:      arch/arm/boot/dts/lpc43*
2310 F:      drivers/i2c/busses/i2c-lpc2k.c
2311 F:      drivers/memory/pl172.c
2312 F:      drivers/mtd/spi-nor/controllers/nxp-spifi.c
2313 F:      drivers/rtc/rtc-lpc24xx.c
2314 N:      lpc18xx
2315
2316 ARM/LPC32XX SOC SUPPORT
2317 M:      Vladimir Zapolskiy <vz@mleia.com>
2318 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2319 S:      Maintained
2320 T:      git git://github.com/vzapolskiy/linux-lpc32xx.git
2321 F:      Documentation/devicetree/bindings/i2c/i2c-pnx.txt
2322 F:      arch/arm/boot/dts/lpc32*
2323 F:      arch/arm/mach-lpc32xx/
2324 F:      drivers/i2c/busses/i2c-pnx.c
2325 F:      drivers/net/ethernet/nxp/lpc_eth.c
2326 F:      drivers/usb/host/ohci-nxp.c
2327 F:      drivers/watchdog/pnx4008_wdt.c
2328 N:      lpc32xx
2329
2330 ARM/Marvell Dove/MV78xx0/Orion SOC support
2331 M:      Andrew Lunn <andrew@lunn.ch>
2332 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2333 M:      Gregory Clement <gregory.clement@bootlin.com>
2334 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2335 S:      Maintained
2336 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gclement/mvebu.git
2337 F:      Documentation/devicetree/bindings/arm/marvell/marvell,dove.txt
2338 F:      Documentation/devicetree/bindings/arm/marvell/marvell,orion5x.txt
2339 F:      Documentation/devicetree/bindings/soc/dove/
2340 F:      arch/arm/boot/dts/dove*
2341 F:      arch/arm/boot/dts/orion5x*
2342 F:      arch/arm/mach-dove/
2343 F:      arch/arm/mach-mv78xx0/
2344 F:      arch/arm/mach-orion5x/
2345 F:      arch/arm/plat-orion/
2346 F:      drivers/soc/dove/
2347
2348 ARM/Marvell Kirkwood and Armada 370, 375, 38x, 39x, XP, 3700, 7K/8K, CN9130 SOC support
2349 M:      Andrew Lunn <andrew@lunn.ch>
2350 M:      Gregory Clement <gregory.clement@bootlin.com>
2351 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2352 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2353 S:      Maintained
2354 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gclement/mvebu.git
2355 F:      Documentation/devicetree/bindings/arm/marvell/
2356 F:      arch/arm/boot/dts/armada*
2357 F:      arch/arm/boot/dts/kirkwood*
2358 F:      arch/arm/configs/mvebu_*_defconfig
2359 F:      arch/arm/mach-mvebu/
2360 F:      arch/arm64/boot/dts/marvell/armada*
2361 F:      arch/arm64/boot/dts/marvell/cn913*
2362 F:      drivers/cpufreq/armada-37xx-cpufreq.c
2363 F:      drivers/cpufreq/armada-8k-cpufreq.c
2364 F:      drivers/cpufreq/mvebu-cpufreq.c
2365 F:      drivers/irqchip/irq-armada-370-xp.c
2366 F:      drivers/irqchip/irq-mvebu-*
2367 F:      drivers/pinctrl/mvebu/
2368 F:      drivers/rtc/rtc-armada38x.c
2369
2370 ARM/Mediatek RTC DRIVER
2371 M:      Eddie Huang <eddie.huang@mediatek.com>
2372 M:      Sean Wang <sean.wang@mediatek.com>
2373 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2374 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2375 S:      Maintained
2376 F:      Documentation/devicetree/bindings/rtc/rtc-mt2712.txt
2377 F:      Documentation/devicetree/bindings/rtc/rtc-mt7622.txt
2378 F:      drivers/rtc/rtc-mt2712.c
2379 F:      drivers/rtc/rtc-mt6397.c
2380 F:      drivers/rtc/rtc-mt7622.c
2381
2382 ARM/Mediatek SoC support
2383 M:      Matthias Brugger <matthias.bgg@gmail.com>
2384 R:      AngeloGioacchino Del Regno <angelogioacchino.delregno@collabora.com>
2385 L:      linux-kernel@vger.kernel.org
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://irc.libera.chat/linux-mediatek
2391 F:      arch/arm/boot/dts/mt2*
2392 F:      arch/arm/boot/dts/mt6*
2393 F:      arch/arm/boot/dts/mt7*
2394 F:      arch/arm/boot/dts/mt8*
2395 F:      arch/arm/mach-mediatek/
2396 F:      arch/arm64/boot/dts/mediatek/
2397 F:      drivers/soc/mediatek/
2398 N:      mtk
2399 N:      mt[2678]
2400 K:      mediatek
2401
2402 ARM/Mediatek USB3 PHY DRIVER
2403 M:      Chunfeng Yun <chunfeng.yun@mediatek.com>
2404 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2405 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2406 S:      Maintained
2407 F:      Documentation/devicetree/bindings/phy/mediatek,*
2408 F:      drivers/phy/mediatek/
2409
2410 ARM/Microchip (AT91) SoC support
2411 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
2412 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
2413 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
2414 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2415 S:      Supported
2416 W:      http://www.linux4sam.org
2417 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/at91/linux.git
2418 F:      arch/arm/boot/dts/at91*.dts
2419 F:      arch/arm/boot/dts/at91*.dtsi
2420 F:      arch/arm/boot/dts/sama*.dts
2421 F:      arch/arm/boot/dts/sama*.dtsi
2422 F:      arch/arm/include/debug/at91.S
2423 F:      arch/arm/mach-at91/
2424 F:      drivers/memory/atmel*
2425 F:      drivers/watchdog/sama5d4_wdt.c
2426 F:      include/soc/at91/
2427 X:      drivers/input/touchscreen/atmel_mxt_ts.c
2428 X:      drivers/net/wireless/atmel/
2429 N:      at91
2430 N:      atmel
2431
2432 ARM/Microchip Sparx5 SoC support
2433 M:      Lars Povlsen <lars.povlsen@microchip.com>
2434 M:      Steen Hegelund <Steen.Hegelund@microchip.com>
2435 M:      Daniel Machon <daniel.machon@microchip.com>
2436 M:      UNGLinuxDriver@microchip.com
2437 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2438 S:      Supported
2439 T:      git git://github.com/microchip-ung/linux-upstream.git
2440 F:      arch/arm64/boot/dts/microchip/
2441 F:      drivers/net/ethernet/microchip/vcap/
2442 F:      drivers/pinctrl/pinctrl-microchip-sgpio.c
2443 N:      sparx5
2444
2445 Microchip Timer Counter Block (TCB) Capture Driver
2446 M:      Kamel Bouhara <kamel.bouhara@bootlin.com>
2447 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2448 L:      linux-iio@vger.kernel.org
2449 S:      Maintained
2450 F:      drivers/counter/microchip-tcb-capture.c
2451
2452 ARM/MILBEAUT ARCHITECTURE
2453 M:      Taichi Sugaya <sugaya.taichi@socionext.com>
2454 M:      Takao Orito <orito.takao@socionext.com>
2455 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2456 S:      Maintained
2457 F:      arch/arm/boot/dts/milbeaut*
2458 F:      arch/arm/mach-milbeaut/
2459 N:      milbeaut
2460
2461 ARM/MStar/Sigmastar Armv7 SoC support
2462 M:      Daniel Palmer <daniel@thingy.jp>
2463 M:      Romain Perier <romain.perier@gmail.com>
2464 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2465 S:      Maintained
2466 W:      http://linux-chenxing.org/
2467 T:      git git://github.com/linux-chenxing/linux.git
2468 F:      Documentation/devicetree/bindings/arm/mstar/*
2469 F:      Documentation/devicetree/bindings/clock/mstar,msc313-mpll.yaml
2470 F:      Documentation/devicetree/bindings/gpio/mstar,msc313-gpio.yaml
2471 F:      arch/arm/boot/dts/mstar-*
2472 F:      arch/arm/mach-mstar/
2473 F:      drivers/clk/mstar/
2474 F:      drivers/clocksource/timer-msc313e.c
2475 F:      drivers/gpio/gpio-msc313.c
2476 F:      drivers/rtc/rtc-msc313.c
2477 F:      drivers/watchdog/msc313e_wdt.c
2478 F:      include/dt-bindings/clock/mstar-*
2479 F:      include/dt-bindings/gpio/msc313-gpio.h
2480
2481 ARM/NOMADIK/Ux500 ARCHITECTURES
2482 M:      Linus Walleij <linus.walleij@linaro.org>
2483 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2484 S:      Maintained
2485 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
2486 F:      Documentation/devicetree/bindings/arm/ste-*
2487 F:      Documentation/devicetree/bindings/arm/ux500.yaml
2488 F:      Documentation/devicetree/bindings/arm/ux500/
2489 F:      Documentation/devicetree/bindings/i2c/st,nomadik-i2c.yaml
2490 F:      arch/arm/boot/dts/ste-*
2491 F:      arch/arm/mach-nomadik/
2492 F:      arch/arm/mach-ux500/
2493 F:      drivers/clk/clk-nomadik.c
2494 F:      drivers/clocksource/clksrc-dbx500-prcmu.c
2495 F:      drivers/dma/ste_dma40*
2496 F:      drivers/hwspinlock/u8500_hsem.c
2497 F:      drivers/i2c/busses/i2c-nomadik.c
2498 F:      drivers/iio/adc/ab8500-gpadc.c
2499 F:      drivers/mfd/ab8500*
2500 F:      drivers/mfd/abx500*
2501 F:      drivers/mfd/db8500*
2502 F:      drivers/pinctrl/nomadik/
2503 F:      drivers/rtc/rtc-ab8500.c
2504 F:      drivers/rtc/rtc-pl031.c
2505 F:      drivers/soc/ux500/
2506
2507 ARM/NUVOTON NPCM ARCHITECTURE
2508 M:      Avi Fishman <avifishman70@gmail.com>
2509 M:      Tomer Maimon <tmaimon77@gmail.com>
2510 M:      Tali Perry <tali.perry1@gmail.com>
2511 R:      Patrick Venture <venture@google.com>
2512 R:      Nancy Yuen <yuenn@google.com>
2513 R:      Benjamin Fair <benjaminfair@google.com>
2514 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2515 S:      Supported
2516 F:      Documentation/devicetree/bindings/*/*/*npcm*
2517 F:      Documentation/devicetree/bindings/*/*npcm*
2518 F:      Documentation/devicetree/bindings/arm/npcm/*
2519 F:      Documentation/devicetree/bindings/rtc/nuvoton,nct3018y.yaml
2520 F:      arch/arm/boot/dts/nuvoton-npcm*
2521 F:      arch/arm/mach-npcm/
2522 F:      arch/arm64/boot/dts/nuvoton/
2523 F:      drivers/*/*npcm*
2524 F:      drivers/*/*/*npcm*
2525 F:      drivers/rtc/rtc-nct3018y.c
2526 F:      include/dt-bindings/clock/nuvoton,npcm7xx-clock.h
2527 F:      include/dt-bindings/clock/nuvoton,npcm845-clk.h
2528
2529 ARM/NUVOTON WPCM450 ARCHITECTURE
2530 M:      Jonathan Neuschäfer <j.neuschaefer@gmx.net>
2531 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2532 S:      Maintained
2533 W:      https://github.com/neuschaefer/wpcm450/wiki
2534 F:      Documentation/devicetree/bindings/*/*wpcm*
2535 F:      arch/arm/boot/dts/nuvoton-wpcm450*
2536 F:      arch/arm/configs/wpcm450_defconfig
2537 F:      arch/arm/mach-npcm/wpcm450.c
2538 F:      drivers/*/*/*wpcm*
2539 F:      drivers/*/*wpcm*
2540
2541 ARM/NXP S32G ARCHITECTURE
2542 M:      Chester Lin <clin@suse.com>
2543 R:      Andreas Färber <afaerber@suse.de>
2544 R:      Matthias Brugger <mbrugger@suse.com>
2545 R:      NXP S32 Linux Team <s32@nxp.com>
2546 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2547 S:      Maintained
2548 F:      arch/arm64/boot/dts/freescale/s32g*.dts*
2549
2550 ARM/Orion SoC/Technologic Systems TS-78xx platform support
2551 M:      Alexander Clouter <alex@digriz.org.uk>
2552 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2553 S:      Maintained
2554 W:      http://www.digriz.org.uk/ts78xx/kernel
2555 F:      arch/arm/mach-orion5x/ts78xx-*
2556
2557 ARM/OXNAS platform support
2558 M:      Neil Armstrong <neil.armstrong@linaro.org>
2559 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2560 L:      linux-oxnas@groups.io (moderated for non-subscribers)
2561 S:      Maintained
2562 F:      arch/arm/boot/dts/ox8*.dts*
2563 F:      arch/arm/mach-oxnas/
2564 F:      drivers/power/reset/oxnas-restart.c
2565 N:      oxnas
2566
2567 ARM/QUALCOMM SUPPORT
2568 M:      Andy Gross <agross@kernel.org>
2569 M:      Bjorn Andersson <andersson@kernel.org>
2570 R:      Konrad Dybcio <konrad.dybcio@linaro.org>
2571 L:      linux-arm-msm@vger.kernel.org
2572 S:      Maintained
2573 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/qcom/linux.git
2574 F:      Documentation/devicetree/bindings/*/qcom*
2575 F:      Documentation/devicetree/bindings/soc/qcom/
2576 F:      arch/arm/boot/dts/qcom-*.dts
2577 F:      arch/arm/boot/dts/qcom-*.dtsi
2578 F:      arch/arm/configs/qcom_defconfig
2579 F:      arch/arm/mach-qcom/
2580 F:      arch/arm64/boot/dts/qcom/
2581 F:      drivers/*/*/qcom*
2582 F:      drivers/*/*/qcom/
2583 F:      drivers/*/pm8???-*
2584 F:      drivers/*/qcom*
2585 F:      drivers/*/qcom/
2586 F:      drivers/bluetooth/btqcomsmd.c
2587 F:      drivers/clocksource/timer-qcom.c
2588 F:      drivers/cpuidle/cpuidle-qcom-spm.c
2589 F:      drivers/extcon/extcon-qcom*
2590 F:      drivers/i2c/busses/i2c-qcom-geni.c
2591 F:      drivers/i2c/busses/i2c-qup.c
2592 F:      drivers/iommu/msm*
2593 F:      drivers/mfd/ssbi.c
2594 F:      drivers/mmc/host/mmci_qcom*
2595 F:      drivers/mmc/host/sdhci-msm.c
2596 F:      drivers/pci/controller/dwc/pcie-qcom.c
2597 F:      drivers/phy/qualcomm/
2598 F:      drivers/power/*/msm*
2599 F:      drivers/reset/reset-qcom-*
2600 F:      drivers/ufs/host/ufs-qcom*
2601 F:      drivers/spi/spi-geni-qcom.c
2602 F:      drivers/spi/spi-qcom-qspi.c
2603 F:      drivers/spi/spi-qup.c
2604 F:      drivers/tty/serial/msm_serial.c
2605 F:      drivers/usb/dwc3/dwc3-qcom.c
2606 F:      include/dt-bindings/*/qcom*
2607 F:      include/linux/*/qcom*
2608 F:      include/linux/soc/qcom/
2609
2610 ARM/QUALCOMM CHROMEBOOK SUPPORT
2611 R:      cros-qcom-dts-watchers@chromium.org
2612 F:      arch/arm64/boot/dts/qcom/sc7180*
2613 F:      arch/arm64/boot/dts/qcom/sc7280*
2614 F:      arch/arm64/boot/dts/qcom/sdm845-cheza*
2615
2616 ARM/RDA MICRO ARCHITECTURE
2617 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
2618 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2619 L:      linux-unisoc@lists.infradead.org (moderated for non-subscribers)
2620 S:      Maintained
2621 F:      Documentation/devicetree/bindings/arm/rda.yaml
2622 F:      Documentation/devicetree/bindings/gpio/gpio-rda.yaml
2623 F:      Documentation/devicetree/bindings/interrupt-controller/rda,8810pl-intc.yaml
2624 F:      Documentation/devicetree/bindings/serial/rda,8810pl-uart.yaml
2625 F:      Documentation/devicetree/bindings/timer/rda,8810pl-timer.yaml
2626 F:      arch/arm/boot/dts/rda8810pl-*
2627 F:      drivers/clocksource/timer-rda.c
2628 F:      drivers/gpio/gpio-rda.c
2629 F:      drivers/irqchip/irq-rda-intc.c
2630 F:      drivers/tty/serial/rda-uart.c
2631
2632 ARM/REALTEK ARCHITECTURE
2633 M:      Andreas Färber <afaerber@suse.de>
2634 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2635 L:      linux-realtek-soc@lists.infradead.org (moderated for non-subscribers)
2636 S:      Maintained
2637 F:      Documentation/devicetree/bindings/arm/realtek.yaml
2638 F:      arch/arm/boot/dts/rtd*
2639 F:      arch/arm/mach-realtek/
2640 F:      arch/arm64/boot/dts/realtek/
2641
2642 ARM/RISC-V/RENESAS ARCHITECTURE
2643 M:      Geert Uytterhoeven <geert+renesas@glider.be>
2644 M:      Magnus Damm <magnus.damm@gmail.com>
2645 L:      linux-renesas-soc@vger.kernel.org
2646 S:      Supported
2647 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
2648 C:      irc://irc.libera.chat/renesas-soc
2649 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git next
2650 F:      Documentation/devicetree/bindings/hwinfo/renesas,prr.yaml
2651 F:      Documentation/devicetree/bindings/soc/renesas/
2652 F:      arch/arm/boot/dts/emev2*
2653 F:      arch/arm/boot/dts/gr-peach*
2654 F:      arch/arm/boot/dts/iwg20d-q7*
2655 F:      arch/arm/boot/dts/r7s*
2656 F:      arch/arm/boot/dts/r8a*
2657 F:      arch/arm/boot/dts/r9a*
2658 F:      arch/arm/boot/dts/sh*
2659 F:      arch/arm/configs/shmobile_defconfig
2660 F:      arch/arm/include/debug/renesas-scif.S
2661 F:      arch/arm/mach-shmobile/
2662 F:      arch/arm64/boot/dts/renesas/
2663 F:      arch/riscv/boot/dts/renesas/
2664 F:      drivers/soc/renesas/
2665 F:      include/linux/soc/renesas/
2666 K:      \brenesas,
2667
2668 ARM/RISCPC ARCHITECTURE
2669 M:      Russell King <linux@armlinux.org.uk>
2670 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2671 S:      Maintained
2672 W:      http://www.armlinux.org.uk/
2673 F:      arch/arm/include/asm/hardware/ioc.h
2674 F:      arch/arm/include/asm/hardware/iomd.h
2675 F:      arch/arm/include/asm/hardware/memc.h
2676 F:      arch/arm/mach-rpc/
2677 F:      drivers/net/ethernet/8390/etherh.c
2678 F:      drivers/net/ethernet/i825xx/ether1*
2679 F:      drivers/net/ethernet/seeq/ether3*
2680 F:      drivers/scsi/arm/
2681
2682 ARM/Rockchip SoC support
2683 M:      Heiko Stuebner <heiko@sntech.de>
2684 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2685 L:      linux-rockchip@lists.infradead.org
2686 S:      Maintained
2687 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmind/linux-rockchip.git
2688 F:      Documentation/devicetree/bindings/i2c/i2c-rk3x.yaml
2689 F:      Documentation/devicetree/bindings/mmc/rockchip-dw-mshc.yaml
2690 F:      Documentation/devicetree/bindings/spi/spi-rockchip.yaml
2691 F:      arch/arm/boot/dts/rk3*
2692 F:      arch/arm/boot/dts/rv11*
2693 F:      arch/arm/mach-rockchip/
2694 F:      drivers/*/*/*rockchip*
2695 F:      drivers/*/*rockchip*
2696 F:      drivers/clk/rockchip/
2697 F:      drivers/i2c/busses/i2c-rk3x.c
2698 F:      sound/soc/rockchip/
2699 N:      rockchip
2700
2701 ARM/SAMSUNG S3C, S5P AND EXYNOS ARM ARCHITECTURES
2702 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
2703 R:      Alim Akhtar <alim.akhtar@samsung.com>
2704 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2705 L:      linux-samsung-soc@vger.kernel.org
2706 S:      Maintained
2707 C:      irc://irc.libera.chat/linux-exynos
2708 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
2709 B:      mailto:linux-samsung-soc@vger.kernel.org
2710 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/krzk/linux.git
2711 F:      Documentation/arm/samsung/
2712 F:      Documentation/devicetree/bindings/arm/samsung/
2713 F:      Documentation/devicetree/bindings/hwinfo/samsung,*
2714 F:      Documentation/devicetree/bindings/power/pd-samsung.yaml
2715 F:      Documentation/devicetree/bindings/soc/samsung/
2716 F:      arch/arm/boot/dts/exynos*
2717 F:      arch/arm/boot/dts/s3c*
2718 F:      arch/arm/boot/dts/s5p*
2719 F:      arch/arm/mach-exynos*/
2720 F:      arch/arm/mach-s3c/
2721 F:      arch/arm/mach-s5p*/
2722 F:      arch/arm64/boot/dts/exynos/
2723 F:      drivers/*/*/*s3c24*
2724 F:      drivers/*/*s3c24*
2725 F:      drivers/*/*s3c64xx*
2726 F:      drivers/*/*s5pv210*
2727 F:      drivers/clocksource/samsung_pwm_timer.c
2728 F:      drivers/memory/samsung/
2729 F:      drivers/pwm/pwm-samsung.c
2730 F:      drivers/soc/samsung/
2731 F:      drivers/tty/serial/samsung*
2732 F:      include/clocksource/samsung_pwm.h
2733 F:      include/linux/platform_data/*s3c*
2734 F:      include/linux/serial_s3c.h
2735 F:      include/linux/soc/samsung/
2736 N:      exynos
2737 N:      s3c64xx
2738 N:      s5pv210
2739
2740 ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT
2741 M:      Łukasz Stelmach <l.stelmach@samsung.com>
2742 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2743 L:      linux-media@vger.kernel.org
2744 S:      Maintained
2745 F:      drivers/media/platform/samsung/s5p-g2d/
2746
2747 ARM/SAMSUNG S5P SERIES HDMI CEC SUBSYSTEM SUPPORT
2748 M:      Marek Szyprowski <m.szyprowski@samsung.com>
2749 L:      linux-samsung-soc@vger.kernel.org
2750 L:      linux-media@vger.kernel.org
2751 S:      Maintained
2752 F:      Documentation/devicetree/bindings/media/cec/samsung,s5p-cec.yaml
2753 F:      drivers/media/cec/platform/s5p/
2754
2755 ARM/SAMSUNG S5P SERIES JPEG CODEC SUPPORT
2756 M:      Andrzej Pietrasiewicz <andrzejtp2010@gmail.com>
2757 M:      Jacek Anaszewski <jacek.anaszewski@gmail.com>
2758 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
2759 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2760 L:      linux-media@vger.kernel.org
2761 S:      Maintained
2762 F:      Documentation/devicetree/bindings/media/samsung,s5pv210-jpeg.yaml
2763 F:      drivers/media/platform/samsung/s5p-jpeg/
2764
2765 ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
2766 M:      Marek Szyprowski <m.szyprowski@samsung.com>
2767 M:      Andrzej Hajda <andrzej.hajda@intel.com>
2768 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2769 L:      linux-media@vger.kernel.org
2770 S:      Maintained
2771 F:      drivers/media/platform/samsung/s5p-mfc/
2772
2773 ARM/SOCFPGA ARCHITECTURE
2774 M:      Dinh Nguyen <dinguyen@kernel.org>
2775 S:      Maintained
2776 W:      http://www.rocketboards.org
2777 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
2778 F:      arch/arm/boot/dts/socfpga*
2779 F:      arch/arm/configs/socfpga_defconfig
2780 F:      arch/arm/mach-socfpga/
2781 F:      arch/arm64/boot/dts/altera/
2782 F:      arch/arm64/boot/dts/intel/
2783
2784 ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
2785 M:      Dinh Nguyen <dinguyen@kernel.org>
2786 S:      Maintained
2787 F:      drivers/clk/socfpga/
2788
2789 ARM/SOCFPGA EDAC SUPPORT
2790 M:      Dinh Nguyen <dinguyen@kernel.org>
2791 S:      Maintained
2792 F:      drivers/edac/altera_edac.[ch]
2793
2794 ARM/SPREADTRUM SoC SUPPORT
2795 M:      Orson Zhai <orsonzhai@gmail.com>
2796 M:      Baolin Wang <baolin.wang7@gmail.com>
2797 M:      Chunyan Zhang <zhang.lyra@gmail.com>
2798 S:      Maintained
2799 F:      arch/arm64/boot/dts/sprd
2800 N:      sprd
2801 N:      sc27xx
2802 N:      sc2731
2803
2804 ARM/STI ARCHITECTURE
2805 M:      Patrice Chotard <patrice.chotard@foss.st.com>
2806 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2807 S:      Maintained
2808 W:      http://www.stlinux.com
2809 F:      Documentation/devicetree/bindings/spi/st,ssc-spi.yaml
2810 F:      Documentation/devicetree/bindings/i2c/st,sti-i2c.yaml
2811 F:      arch/arm/boot/dts/sti*
2812 F:      arch/arm/mach-sti/
2813 F:      drivers/ata/ahci_st.c
2814 F:      drivers/char/hw_random/st-rng.c
2815 F:      drivers/clocksource/arm_global_timer.c
2816 F:      drivers/clocksource/clksrc_st_lpc.c
2817 F:      drivers/cpufreq/sti-cpufreq.c
2818 F:      drivers/dma/st_fdma*
2819 F:      drivers/i2c/busses/i2c-st.c
2820 F:      drivers/media/platform/st/sti/c8sectpfe/
2821 F:      drivers/media/rc/st_rc.c
2822 F:      drivers/mmc/host/sdhci-st.c
2823 F:      drivers/phy/st/phy-miphy28lp.c
2824 F:      drivers/phy/st/phy-stih407-usb.c
2825 F:      drivers/pinctrl/pinctrl-st.c
2826 F:      drivers/remoteproc/st_remoteproc.c
2827 F:      drivers/remoteproc/st_slim_rproc.c
2828 F:      drivers/reset/sti/
2829 F:      drivers/rtc/rtc-st-lpc.c
2830 F:      drivers/tty/serial/st-asc.c
2831 F:      drivers/usb/dwc3/dwc3-st.c
2832 F:      drivers/usb/host/ehci-st.c
2833 F:      drivers/usb/host/ohci-st.c
2834 F:      drivers/watchdog/st_lpc_wdt.c
2835 F:      include/linux/remoteproc/st_slim_rproc.h
2836
2837 ARM/STM32 ARCHITECTURE
2838 M:      Maxime Coquelin <mcoquelin.stm32@gmail.com>
2839 M:      Alexandre Torgue <alexandre.torgue@foss.st.com>
2840 L:      linux-stm32@st-md-mailman.stormreply.com (moderated for non-subscribers)
2841 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2842 S:      Maintained
2843 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/atorgue/stm32.git stm32-next
2844 F:      arch/arm/boot/dts/stm32*
2845 F:      arch/arm/mach-stm32/
2846 F:      drivers/clocksource/armv7m_systick.c
2847 N:      stm32
2848 N:      stm
2849
2850 ARM/SUNPLUS SP7021 SOC SUPPORT
2851 M:      Qin Jian <qinjian@cqplus1.com>
2852 L:      linux-arm-kernel@lists.infradead.org (moderated for mon-subscribers)
2853 S:      Maintained
2854 W:      https://sunplus-tibbo.atlassian.net/wiki/spaces/doc/overview
2855 F:      Documentation/devicetree/bindings/arm/sunplus,sp7021.yaml
2856 F:      Documentation/devicetree/bindings/clock/sunplus,sp7021-clkc.yaml
2857 F:      Documentation/devicetree/bindings/interrupt-controller/sunplus,sp7021-intc.yaml
2858 F:      Documentation/devicetree/bindings/reset/sunplus,reset.yaml
2859 F:      arch/arm/boot/dts/sunplus-sp7021*.dts*
2860 F:      arch/arm/configs/sp7021_*defconfig
2861 F:      arch/arm/mach-sunplus/
2862 F:      drivers/irqchip/irq-sp7021-intc.c
2863 F:      drivers/reset/reset-sunplus.c
2864 F:      include/dt-bindings/clock/sunplus,sp7021-clkc.h
2865 F:      include/dt-bindings/reset/sunplus,sp7021-reset.h
2866
2867 ARM/Synaptics SoC support
2868 M:      Jisheng Zhang <jszhang@kernel.org>
2869 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2870 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2871 S:      Maintained
2872 F:      arch/arm/boot/dts/berlin*
2873 F:      arch/arm/mach-berlin/
2874 F:      arch/arm64/boot/dts/synaptics/
2875
2876 ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
2877 M:      Lennert Buytenhek <kernel@wantstofly.org>
2878 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2879 S:      Maintained
2880
2881 ARM/TEGRA HDMI CEC SUBSYSTEM SUPPORT
2882 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
2883 L:      linux-tegra@vger.kernel.org
2884 L:      linux-media@vger.kernel.org
2885 S:      Maintained
2886 F:      Documentation/devicetree/bindings/media/cec/nvidia,tegra114-cec.yaml
2887 F:      drivers/media/cec/platform/tegra/
2888
2889 ARM/TESLA FSD SoC SUPPORT
2890 M:      Alim Akhtar <alim.akhtar@samsung.com>
2891 M:      linux-fsd@tesla.com
2892 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2893 L:      linux-samsung-soc@vger.kernel.org
2894 S:      Maintained
2895 F:      arch/arm64/boot/dts/tesla/
2896
2897 ARM/TETON BGA MACHINE SUPPORT
2898 M:      "Mark F. Brown" <mark.brown314@gmail.com>
2899 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2900 S:      Maintained
2901
2902 ARM/TEXAS INSTRUMENT AEMIF/EMIF DRIVERS
2903 M:      Santosh Shilimkar <ssantosh@kernel.org>
2904 L:      linux-kernel@vger.kernel.org
2905 S:      Maintained
2906 F:      drivers/memory/*emif*
2907
2908 ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE
2909 M:      Nishanth Menon <nm@ti.com>
2910 M:      Santosh Shilimkar <ssantosh@kernel.org>
2911 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2912 S:      Maintained
2913 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ti/linux.git
2914 F:      arch/arm/boot/dts/keystone-*
2915 F:      arch/arm/mach-keystone/
2916
2917 ARM/TEXAS INSTRUMENT KEYSTONE CLOCK FRAMEWORK
2918 M:      Santosh Shilimkar <ssantosh@kernel.org>
2919 L:      linux-kernel@vger.kernel.org
2920 S:      Maintained
2921 F:      drivers/clk/keystone/
2922
2923 ARM/TEXAS INSTRUMENT KEYSTONE CLOCKSOURCE
2924 M:      Santosh Shilimkar <ssantosh@kernel.org>
2925 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2926 L:      linux-kernel@vger.kernel.org
2927 S:      Maintained
2928 F:      drivers/clocksource/timer-keystone.c
2929
2930 ARM/TEXAS INSTRUMENT KEYSTONE RESET DRIVER
2931 M:      Santosh Shilimkar <ssantosh@kernel.org>
2932 L:      linux-kernel@vger.kernel.org
2933 S:      Maintained
2934 F:      drivers/power/reset/keystone-reset.c
2935
2936 ARM/TEXAS INSTRUMENTS K3 ARCHITECTURE
2937 M:      Nishanth Menon <nm@ti.com>
2938 M:      Vignesh Raghavendra <vigneshr@ti.com>
2939 M:      Tero Kristo <kristo@kernel.org>
2940 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2941 S:      Supported
2942 F:      Documentation/devicetree/bindings/arm/ti/k3.yaml
2943 F:      Documentation/devicetree/bindings/hwinfo/ti,k3-socinfo.yaml
2944 F:      arch/arm64/boot/dts/ti/Makefile
2945 F:      arch/arm64/boot/dts/ti/k3-*
2946 F:      include/dt-bindings/pinctrl/k3.h
2947
2948 ARM/TOSHIBA VISCONTI ARCHITECTURE
2949 M:      Nobuhiro Iwamatsu <nobuhiro1.iwamatsu@toshiba.co.jp>
2950 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2951 S:      Supported
2952 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwamatsu/linux-visconti.git
2953 F:      Documentation/devicetree/bindings/arm/toshiba.yaml
2954 F:      Documentation/devicetree/bindings/clock/toshiba,tmpv770x-pipllct.yaml
2955 F:      Documentation/devicetree/bindings/clock/toshiba,tmpv770x-pismu.yaml
2956 F:      Documentation/devicetree/bindings/net/toshiba,visconti-dwmac.yaml
2957 F:      Documentation/devicetree/bindings/gpio/toshiba,gpio-visconti.yaml
2958 F:      Documentation/devicetree/bindings/pci/toshiba,visconti-pcie.yaml
2959 F:      Documentation/devicetree/bindings/pinctrl/toshiba,visconti-pinctrl.yaml
2960 F:      Documentation/devicetree/bindings/watchdog/toshiba,visconti-wdt.yaml
2961 F:      arch/arm64/boot/dts/toshiba/
2962 F:      drivers/clk/visconti/
2963 F:      drivers/net/ethernet/stmicro/stmmac/dwmac-visconti.c
2964 F:      drivers/gpio/gpio-visconti.c
2965 F:      drivers/pci/controller/dwc/pcie-visconti.c
2966 F:      drivers/pinctrl/visconti/
2967 F:      drivers/watchdog/visconti_wdt.c
2968 N:      visconti
2969
2970 ARM/UNIPHIER ARCHITECTURE
2971 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
2972 M:      Masami Hiramatsu <mhiramat@kernel.org>
2973 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2974 S:      Maintained
2975 F:      Documentation/devicetree/bindings/arm/socionext/uniphier.yaml
2976 F:      Documentation/devicetree/bindings/gpio/socionext,uniphier-gpio.yaml
2977 F:      Documentation/devicetree/bindings/pinctrl/socionext,uniphier-pinctrl.yaml
2978 F:      Documentation/devicetree/bindings/soc/socionext/socionext,uniphier*.yaml
2979 F:      arch/arm/boot/dts/uniphier*
2980 F:      arch/arm/include/asm/hardware/cache-uniphier.h
2981 F:      arch/arm/mach-uniphier/
2982 F:      arch/arm/mm/cache-uniphier.c
2983 F:      arch/arm64/boot/dts/socionext/uniphier*
2984 F:      drivers/bus/uniphier-system-bus.c
2985 F:      drivers/clk/uniphier/
2986 F:      drivers/dma/uniphier-mdmac.c
2987 F:      drivers/gpio/gpio-uniphier.c
2988 F:      drivers/i2c/busses/i2c-uniphier*
2989 F:      drivers/irqchip/irq-uniphier-aidet.c
2990 F:      drivers/mmc/host/uniphier-sd.c
2991 F:      drivers/pinctrl/uniphier/
2992 F:      drivers/reset/reset-uniphier.c
2993 F:      drivers/tty/serial/8250/8250_uniphier.c
2994 N:      uniphier
2995
2996 ARM/VERSATILE EXPRESS PLATFORM
2997 M:      Liviu Dudau <liviu.dudau@arm.com>
2998 M:      Sudeep Holla <sudeep.holla@arm.com>
2999 M:      Lorenzo Pieralisi <lpieralisi@kernel.org>
3000 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3001 S:      Maintained
3002 F:      */*/*/vexpress*
3003 F:      */*/vexpress*
3004 F:      arch/arm/boot/dts/vexpress*
3005 F:      arch/arm/mach-versatile/
3006 F:      arch/arm64/boot/dts/arm/
3007 F:      drivers/clk/versatile/clk-vexpress-osc.c
3008 F:      drivers/clocksource/timer-versatile.c
3009 N:      mps2
3010
3011 ARM/VFP SUPPORT
3012 M:      Russell King <linux@armlinux.org.uk>
3013 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3014 S:      Maintained
3015 W:      http://www.armlinux.org.uk/
3016 F:      arch/arm/vfp/
3017
3018 ARM/VT8500 ARM ARCHITECTURE
3019 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3020 S:      Orphan
3021 F:      Documentation/devicetree/bindings/i2c/i2c-wmt.txt
3022 F:      arch/arm/mach-vt8500/
3023 F:      drivers/clocksource/timer-vt8500.c
3024 F:      drivers/i2c/busses/i2c-wmt.c
3025 F:      drivers/mmc/host/wmt-sdmmc.c
3026 F:      drivers/pwm/pwm-vt8500.c
3027 F:      drivers/rtc/rtc-vt8500.c
3028 F:      drivers/tty/serial/vt8500_serial.c
3029 F:      drivers/usb/host/ehci-platform.c
3030 F:      drivers/usb/host/uhci-platform.c
3031 F:      drivers/video/fbdev/vt8500lcdfb.*
3032 F:      drivers/video/fbdev/wm8505fb*
3033 F:      drivers/video/fbdev/wmt_ge_rops.*
3034
3035 ARM/ZYNQ ARCHITECTURE
3036 M:      Michal Simek <michal.simek@xilinx.com>
3037 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3038 S:      Supported
3039 W:      http://wiki.xilinx.com
3040 T:      git https://github.com/Xilinx/linux-xlnx.git
3041 F:      Documentation/devicetree/bindings/i2c/cdns,i2c-r1p10.yaml
3042 F:      Documentation/devicetree/bindings/i2c/xlnx,xps-iic-2.00.a.yaml
3043 F:      Documentation/devicetree/bindings/memory-controllers/snps,dw-umctl2-ddrc.yaml
3044 F:      Documentation/devicetree/bindings/memory-controllers/xlnx,zynq-ddrc-a05.yaml
3045 F:      Documentation/devicetree/bindings/spi/xlnx,zynq-qspi.yaml
3046 F:      arch/arm/mach-zynq/
3047 F:      drivers/clocksource/timer-cadence-ttc.c
3048 F:      drivers/cpuidle/cpuidle-zynq.c
3049 F:      drivers/edac/synopsys_edac.c
3050 F:      drivers/i2c/busses/i2c-cadence.c
3051 F:      drivers/i2c/busses/i2c-xiic.c
3052 F:      drivers/mmc/host/sdhci-of-arasan.c
3053 N:      zynq
3054 N:      xilinx
3055
3056 ARM64 PORT (AARCH64 ARCHITECTURE)
3057 M:      Catalin Marinas <catalin.marinas@arm.com>
3058 M:      Will Deacon <will@kernel.org>
3059 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3060 S:      Maintained
3061 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux.git
3062 F:      Documentation/arm64/
3063 F:      arch/arm64/
3064 F:      tools/testing/selftests/arm64/
3065 X:      arch/arm64/boot/dts/
3066
3067 ARROW SPEEDCHIPS XRS7000 SERIES ETHERNET SWITCH DRIVER
3068 M:      George McCollister <george.mccollister@gmail.com>
3069 L:      netdev@vger.kernel.org
3070 S:      Maintained
3071 F:      Documentation/devicetree/bindings/net/dsa/arrow,xrs700x.yaml
3072 F:      drivers/net/dsa/xrs700x/*
3073 F:      net/dsa/tag_xrs700x.c
3074
3075 AS3645A LED FLASH CONTROLLER DRIVER
3076 M:      Sakari Ailus <sakari.ailus@iki.fi>
3077 L:      linux-leds@vger.kernel.org
3078 S:      Maintained
3079 F:      drivers/leds/flash/leds-as3645a.c
3080
3081 ASAHI KASEI AK7375 LENS VOICE COIL DRIVER
3082 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
3083 L:      linux-media@vger.kernel.org
3084 S:      Maintained
3085 T:      git git://linuxtv.org/media_tree.git
3086 F:      Documentation/devicetree/bindings/media/i2c/asahi-kasei,ak7375.yaml
3087 F:      drivers/media/i2c/ak7375.c
3088
3089 ASAHI KASEI AK8974 DRIVER
3090 M:      Linus Walleij <linus.walleij@linaro.org>
3091 L:      linux-iio@vger.kernel.org
3092 S:      Supported
3093 W:      http://www.akm.com/
3094 F:      drivers/iio/magnetometer/ak8974.c
3095
3096 ASC7621 HARDWARE MONITOR DRIVER
3097 M:      George Joseph <george.joseph@fairview5.com>
3098 L:      linux-hwmon@vger.kernel.org
3099 S:      Maintained
3100 F:      Documentation/hwmon/asc7621.rst
3101 F:      drivers/hwmon/asc7621.c
3102
3103 ASIX AX88796C SPI ETHERNET ADAPTER
3104 M:      Łukasz Stelmach <l.stelmach@samsung.com>
3105 S:      Maintained
3106 F:      Documentation/devicetree/bindings/net/asix,ax88796c.yaml
3107 F:      drivers/net/ethernet/asix/ax88796c_*
3108
3109 ASPEED PECI CONTROLLER
3110 M:      Iwona Winiarska <iwona.winiarska@intel.com>
3111 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
3112 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
3113 S:      Supported
3114 F:      Documentation/devicetree/bindings/peci/peci-aspeed.yaml
3115 F:      drivers/peci/controller/peci-aspeed.c
3116
3117 ASPEED PINCTRL DRIVERS
3118 M:      Andrew Jeffery <andrew@aj.id.au>
3119 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
3120 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
3121 L:      linux-gpio@vger.kernel.org
3122 S:      Maintained
3123 F:      Documentation/devicetree/bindings/pinctrl/aspeed,*
3124 F:      drivers/pinctrl/aspeed/
3125
3126 ASPEED SCU INTERRUPT CONTROLLER DRIVER
3127 M:      Eddie James <eajames@linux.ibm.com>
3128 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
3129 S:      Maintained
3130 F:      Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2xxx-scu-ic.txt
3131 F:      drivers/irqchip/irq-aspeed-scu-ic.c
3132 F:      include/dt-bindings/interrupt-controller/aspeed-scu-ic.h
3133
3134 ASPEED SD/MMC DRIVER
3135 M:      Andrew Jeffery <andrew@aj.id.au>
3136 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
3137 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
3138 L:      linux-mmc@vger.kernel.org
3139 S:      Maintained
3140 F:      Documentation/devicetree/bindings/mmc/aspeed,sdhci.yaml
3141 F:      drivers/mmc/host/sdhci-of-aspeed*
3142
3143 ASPEED SMC SPI DRIVER
3144 M:      Chin-Ting Kuo <chin-ting_kuo@aspeedtech.com>
3145 M:      Cédric Le Goater <clg@kaod.org>
3146 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
3147 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
3148 L:      linux-spi@vger.kernel.org
3149 S:      Maintained
3150 F:      Documentation/devicetree/bindings/spi/aspeed,ast2600-fmc.yaml
3151 F:      drivers/spi/spi-aspeed-smc.c
3152
3153 ASPEED VIDEO ENGINE DRIVER
3154 M:      Eddie James <eajames@linux.ibm.com>
3155 L:      linux-media@vger.kernel.org
3156 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
3157 S:      Maintained
3158 F:      Documentation/devicetree/bindings/media/aspeed-video.txt
3159 F:      drivers/media/platform/aspeed/
3160
3161 ASPEED USB UDC DRIVER
3162 M:      Neal Liu <neal_liu@aspeedtech.com>
3163 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
3164 S:      Maintained
3165 F:      Documentation/devicetree/bindings/usb/aspeed,ast2600-udc.yaml
3166 F:      drivers/usb/gadget/udc/aspeed_udc.c
3167
3168 ASPEED CRYPTO DRIVER
3169 M:      Neal Liu <neal_liu@aspeedtech.com>
3170 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
3171 S:      Maintained
3172 F:      Documentation/devicetree/bindings/crypto/aspeed,*
3173 F:      drivers/crypto/aspeed/
3174
3175 ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
3176 M:      Corentin Chary <corentin.chary@gmail.com>
3177 L:      acpi4asus-user@lists.sourceforge.net
3178 L:      platform-driver-x86@vger.kernel.org
3179 S:      Maintained
3180 W:      http://acpi4asus.sf.net
3181 F:      drivers/platform/x86/asus*.c
3182 F:      drivers/platform/x86/eeepc*.c
3183
3184 ASUS TF103C DOCK DRIVER
3185 M:      Hans de Goede <hdegoede@redhat.com>
3186 L:      platform-driver-x86@vger.kernel.org
3187 S:      Maintained
3188 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
3189 F:      drivers/platform/x86/asus-tf103c-dock.c
3190
3191 ASUS WMI HARDWARE MONITOR DRIVER
3192 M:      Ed Brindley <kernel@maidavale.org>
3193 M:      Denis Pauk <pauk.denis@gmail.com>
3194 L:      linux-hwmon@vger.kernel.org
3195 S:      Maintained
3196 F:      drivers/hwmon/asus_wmi_sensors.c
3197
3198 ASUS EC HARDWARE MONITOR DRIVER
3199 M:      Eugene Shalygin <eugene.shalygin@gmail.com>
3200 L:      linux-hwmon@vger.kernel.org
3201 S:      Maintained
3202 F:      drivers/hwmon/asus-ec-sensors.c
3203
3204 ASUS WIRELESS RADIO CONTROL DRIVER
3205 M:      João Paulo Rechi Vita <jprvita@gmail.com>
3206 L:      platform-driver-x86@vger.kernel.org
3207 S:      Maintained
3208 F:      drivers/platform/x86/asus-wireless.c
3209
3210 ASYMMETRIC KEYS
3211 M:      David Howells <dhowells@redhat.com>
3212 L:      keyrings@vger.kernel.org
3213 S:      Maintained
3214 F:      Documentation/crypto/asymmetric-keys.rst
3215 F:      crypto/asymmetric_keys/
3216 F:      include/crypto/pkcs7.h
3217 F:      include/crypto/public_key.h
3218 F:      include/linux/verification.h
3219
3220 ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
3221 R:      Dan Williams <dan.j.williams@intel.com>
3222 S:      Odd fixes
3223 W:      http://sourceforge.net/projects/xscaleiop
3224 F:      Documentation/crypto/async-tx-api.rst
3225 F:      crypto/async_tx/
3226 F:      include/linux/async_tx.h
3227
3228 AT24 EEPROM DRIVER
3229 M:      Bartosz Golaszewski <brgl@bgdev.pl>
3230 L:      linux-i2c@vger.kernel.org
3231 S:      Maintained
3232 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux.git
3233 F:      Documentation/devicetree/bindings/eeprom/at24.yaml
3234 F:      drivers/misc/eeprom/at24.c
3235
3236 ATA OVER ETHERNET (AOE) DRIVER
3237 M:      "Justin Sanders" <justin@coraid.com>
3238 S:      Supported
3239 W:      http://www.openaoe.org/
3240 F:      Documentation/admin-guide/aoe/
3241 F:      drivers/block/aoe/
3242
3243 ATC260X PMIC MFD DRIVER
3244 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
3245 M:      Cristian Ciocaltea <cristian.ciocaltea@gmail.com>
3246 L:      linux-actions@lists.infradead.org
3247 S:      Maintained
3248 F:      Documentation/devicetree/bindings/mfd/actions,atc260x.yaml
3249 F:      drivers/input/misc/atc260x-onkey.c
3250 F:      drivers/mfd/atc260*
3251 F:      drivers/power/reset/atc260x-poweroff.c
3252 F:      drivers/regulator/atc260x-regulator.c
3253 F:      include/linux/mfd/atc260x/*
3254
3255 ATHEROS 71XX/9XXX GPIO DRIVER
3256 M:      Alban Bedel <albeu@free.fr>
3257 S:      Maintained
3258 W:      https://github.com/AlbanBedel/linux
3259 T:      git git://github.com/AlbanBedel/linux
3260 F:      Documentation/devicetree/bindings/gpio/gpio-ath79.txt
3261 F:      drivers/gpio/gpio-ath79.c
3262
3263 ATHEROS 71XX/9XXX USB PHY DRIVER
3264 M:      Alban Bedel <albeu@free.fr>
3265 S:      Maintained
3266 W:      https://github.com/AlbanBedel/linux
3267 T:      git git://github.com/AlbanBedel/linux
3268 F:      Documentation/devicetree/bindings/phy/phy-ath79-usb.txt
3269 F:      drivers/phy/qualcomm/phy-ath79-usb.c
3270
3271 ATHEROS ATH GENERIC UTILITIES
3272 M:      Kalle Valo <kvalo@kernel.org>
3273 L:      linux-wireless@vger.kernel.org
3274 S:      Supported
3275 F:      drivers/net/wireless/ath/*
3276
3277 ATHEROS ATH5K WIRELESS DRIVER
3278 M:      Jiri Slaby <jirislaby@kernel.org>
3279 M:      Nick Kossifidis <mickflemm@gmail.com>
3280 M:      Luis Chamberlain <mcgrof@kernel.org>
3281 L:      linux-wireless@vger.kernel.org
3282 S:      Maintained
3283 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath5k
3284 F:      drivers/net/wireless/ath/ath5k/
3285
3286 ATHEROS ATH6KL WIRELESS DRIVER
3287 L:      linux-wireless@vger.kernel.org
3288 S:      Orphan
3289 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath6kl
3290 F:      drivers/net/wireless/ath/ath6kl/
3291
3292 ATI_REMOTE2 DRIVER
3293 M:      Ville Syrjala <syrjala@sci.fi>
3294 S:      Maintained
3295 F:      drivers/input/misc/ati_remote2.c
3296
3297 ATK0110 HWMON DRIVER
3298 M:      Luca Tettamanti <kronos.it@gmail.com>
3299 L:      linux-hwmon@vger.kernel.org
3300 S:      Maintained
3301 F:      drivers/hwmon/asus_atk0110.c
3302
3303 ATLX ETHERNET DRIVERS
3304 M:      Chris Snook <chris.snook@gmail.com>
3305 L:      netdev@vger.kernel.org
3306 S:      Maintained
3307 W:      http://sourceforge.net/projects/atl1
3308 W:      http://atl1.sourceforge.net
3309 F:      drivers/net/ethernet/atheros/
3310
3311 ATM
3312 M:      Chas Williams <3chas3@gmail.com>
3313 L:      linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
3314 L:      netdev@vger.kernel.org
3315 S:      Maintained
3316 W:      http://linux-atm.sourceforge.net
3317 F:      drivers/atm/
3318 F:      include/linux/atm*
3319 F:      include/uapi/linux/atm*
3320
3321 ATMEL MACB ETHERNET DRIVER
3322 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
3323 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
3324 S:      Supported
3325 F:      drivers/net/ethernet/cadence/
3326
3327 ATMEL MAXTOUCH DRIVER
3328 M:      Nick Dyer <nick@shmanahar.org>
3329 S:      Maintained
3330 T:      git git://github.com/ndyer/linux.git
3331 F:      Documentation/devicetree/bindings/input/atmel,maxtouch.yaml
3332 F:      drivers/input/touchscreen/atmel_mxt_ts.c
3333
3334 ATMEL WIRELESS DRIVER
3335 M:      Simon Kelley <simon@thekelleys.org.uk>
3336 L:      linux-wireless@vger.kernel.org
3337 S:      Maintained
3338 W:      http://www.thekelleys.org.uk/atmel
3339 W:      http://atmelwlandriver.sourceforge.net/
3340 F:      drivers/net/wireless/atmel/atmel*
3341
3342 ATOMIC INFRASTRUCTURE
3343 M:      Will Deacon <will@kernel.org>
3344 M:      Peter Zijlstra <peterz@infradead.org>
3345 R:      Boqun Feng <boqun.feng@gmail.com>
3346 R:      Mark Rutland <mark.rutland@arm.com>
3347 L:      linux-kernel@vger.kernel.org
3348 S:      Maintained
3349 F:      arch/*/include/asm/atomic*.h
3350 F:      include/*/atomic*.h
3351 F:      include/linux/refcount.h
3352 F:      Documentation/atomic_*.txt
3353 F:      scripts/atomic/
3354
3355 ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER
3356 M:      Bradley Grove <linuxdrivers@attotech.com>
3357 L:      linux-scsi@vger.kernel.org
3358 S:      Supported
3359 W:      http://www.attotech.com
3360 F:      drivers/scsi/esas2r
3361
3362 ATUSB IEEE 802.15.4 RADIO DRIVER
3363 M:      Stefan Schmidt <stefan@datenfreihafen.org>
3364 L:      linux-wpan@vger.kernel.org
3365 S:      Maintained
3366 F:      drivers/net/ieee802154/at86rf230.h
3367 F:      drivers/net/ieee802154/atusb.c
3368 F:      drivers/net/ieee802154/atusb.h
3369
3370 AUDIT SUBSYSTEM
3371 M:      Paul Moore <paul@paul-moore.com>
3372 M:      Eric Paris <eparis@redhat.com>
3373 L:      audit@vger.kernel.org
3374 S:      Supported
3375 W:      https://github.com/linux-audit
3376 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/audit.git
3377 F:      include/asm-generic/audit_*.h
3378 F:      include/linux/audit.h
3379 F:      include/linux/audit_arch.h
3380 F:      include/uapi/linux/audit.h
3381 F:      kernel/audit*
3382 F:      lib/*audit.c
3383
3384 AUXILIARY DISPLAY DRIVERS
3385 M:      Miguel Ojeda <ojeda@kernel.org>
3386 S:      Maintained
3387 F:      Documentation/devicetree/bindings/auxdisplay/
3388 F:      drivers/auxdisplay/
3389 F:      include/linux/cfag12864b.h
3390
3391 AVIA HX711 ANALOG DIGITAL CONVERTER IIO DRIVER
3392 M:      Andreas Klinger <ak@it-klinger.de>
3393 L:      linux-iio@vger.kernel.org
3394 S:      Maintained
3395 F:      Documentation/devicetree/bindings/iio/adc/avia-hx711.yaml
3396 F:      drivers/iio/adc/hx711.c
3397
3398 AX.25 NETWORK LAYER
3399 M:      Ralf Baechle <ralf@linux-mips.org>
3400 L:      linux-hams@vger.kernel.org
3401 S:      Maintained
3402 W:      http://www.linux-ax25.org/
3403 F:      include/net/ax25.h
3404 F:      include/uapi/linux/ax25.h
3405 F:      net/ax25/
3406
3407 AXENTIA ARM DEVICES
3408 M:      Peter Rosin <peda@axentia.se>
3409 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3410 S:      Maintained
3411 F:      arch/arm/boot/dts/at91-linea.dtsi
3412 F:      arch/arm/boot/dts/at91-natte.dtsi
3413 F:      arch/arm/boot/dts/at91-nattis-2-natte-2.dts
3414 F:      arch/arm/boot/dts/at91-tse850-3.dts
3415
3416 AXENTIA ASOC DRIVERS
3417 M:      Peter Rosin <peda@axentia.se>
3418 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3419 S:      Maintained
3420 F:      Documentation/devicetree/bindings/sound/axentia,*
3421 F:      sound/soc/atmel/tse850-pcm5142.c
3422
3423 AXI-FAN-CONTROL HARDWARE MONITOR DRIVER
3424 M:      Nuno Sá <nuno.sa@analog.com>
3425 L:      linux-hwmon@vger.kernel.org
3426 S:      Supported
3427 W:      https://ez.analog.com/linux-software-drivers
3428 F:      Documentation/devicetree/bindings/hwmon/adi,axi-fan-control.yaml
3429 F:      drivers/hwmon/axi-fan-control.c
3430
3431 AXXIA I2C CONTROLLER
3432 M:      Krzysztof Adamski <krzysztof.adamski@nokia.com>
3433 L:      linux-i2c@vger.kernel.org
3434 S:      Maintained
3435 F:      Documentation/devicetree/bindings/i2c/i2c-axxia.txt
3436 F:      drivers/i2c/busses/i2c-axxia.c
3437
3438 AZ6007 DVB DRIVER
3439 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
3440 L:      linux-media@vger.kernel.org
3441 S:      Maintained
3442 W:      https://linuxtv.org
3443 T:      git git://linuxtv.org/media_tree.git
3444 F:      drivers/media/usb/dvb-usb-v2/az6007.c
3445
3446 AZTECH FM RADIO RECEIVER DRIVER
3447 M:      Hans Verkuil <hverkuil@xs4all.nl>
3448 L:      linux-media@vger.kernel.org
3449 S:      Maintained
3450 W:      https://linuxtv.org
3451 T:      git git://linuxtv.org/media_tree.git
3452 F:      drivers/media/radio/radio-aztech*
3453
3454 B43 WIRELESS DRIVER
3455 L:      linux-wireless@vger.kernel.org
3456 L:      b43-dev@lists.infradead.org
3457 S:      Odd Fixes
3458 W:      https://wireless.wiki.kernel.org/en/users/Drivers/b43
3459 F:      drivers/net/wireless/broadcom/b43/
3460
3461 B43LEGACY WIRELESS DRIVER
3462 M:      Larry Finger <Larry.Finger@lwfinger.net>
3463 L:      linux-wireless@vger.kernel.org
3464 L:      b43-dev@lists.infradead.org
3465 S:      Maintained
3466 W:      https://wireless.wiki.kernel.org/en/users/Drivers/b43
3467 F:      drivers/net/wireless/broadcom/b43legacy/
3468
3469 BACKLIGHT CLASS/SUBSYSTEM
3470 M:      Lee Jones <lee@kernel.org>
3471 M:      Daniel Thompson <daniel.thompson@linaro.org>
3472 M:      Jingoo Han <jingoohan1@gmail.com>
3473 L:      dri-devel@lists.freedesktop.org
3474 S:      Maintained
3475 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/backlight.git
3476 F:      Documentation/ABI/stable/sysfs-class-backlight
3477 F:      Documentation/ABI/testing/sysfs-class-backlight
3478 F:      Documentation/devicetree/bindings/leds/backlight
3479 F:      drivers/video/backlight/
3480 F:      include/linux/backlight.h
3481 F:      include/linux/pwm_backlight.h
3482
3483 BARCO P50 GPIO DRIVER
3484 M:      Santosh Kumar Yadav <santoshkumar.yadav@barco.com>
3485 M:      Peter Korsgaard <peter.korsgaard@barco.com>
3486 S:      Maintained
3487 F:      drivers/platform/x86/barco-p50-gpio.c
3488
3489 BATMAN ADVANCED
3490 M:      Marek Lindner <mareklindner@neomailbox.ch>
3491 M:      Simon Wunderlich <sw@simonwunderlich.de>
3492 M:      Antonio Quartulli <a@unstable.cc>
3493 M:      Sven Eckelmann <sven@narfation.org>
3494 L:      b.a.t.m.a.n@lists.open-mesh.org (moderated for non-subscribers)
3495 S:      Maintained
3496 W:      https://www.open-mesh.org/
3497 Q:      https://patchwork.open-mesh.org/project/batman/list/
3498 B:      https://www.open-mesh.org/projects/batman-adv/issues
3499 C:      ircs://irc.hackint.org/batadv
3500 T:      git https://git.open-mesh.org/linux-merge.git
3501 F:      Documentation/networking/batman-adv.rst
3502 F:      include/uapi/linux/batadv_packet.h
3503 F:      include/uapi/linux/batman_adv.h
3504 F:      net/batman-adv/
3505
3506 BAYCOM/HDLCDRV DRIVERS FOR AX.25
3507 M:      Thomas Sailer <t.sailer@alumni.ethz.ch>
3508 L:      linux-hams@vger.kernel.org
3509 S:      Maintained
3510 W:      http://www.baycom.org/~tom/ham/ham.html
3511 F:      drivers/net/hamradio/baycom*
3512
3513 BCACHE (BLOCK LAYER CACHE)
3514 M:      Coly Li <colyli@suse.de>
3515 M:      Kent Overstreet <kent.overstreet@gmail.com>
3516 L:      linux-bcache@vger.kernel.org
3517 S:      Maintained
3518 W:      http://bcache.evilpiepirate.org
3519 C:      irc://irc.oftc.net/bcache
3520 F:      drivers/md/bcache/
3521
3522 BDISP ST MEDIA DRIVER
3523 M:      Fabien Dessenne <fabien.dessenne@foss.st.com>
3524 L:      linux-media@vger.kernel.org
3525 S:      Supported
3526 W:      https://linuxtv.org
3527 T:      git git://linuxtv.org/media_tree.git
3528 F:      drivers/media/platform/st/sti/bdisp
3529
3530 BECKHOFF CX5020 ETHERCAT MASTER DRIVER
3531 M:      Dariusz Marcinkiewicz <reksio@newterm.pl>
3532 L:      netdev@vger.kernel.org
3533 S:      Maintained
3534 F:      drivers/net/ethernet/ec_bhf.c
3535
3536 BEFS FILE SYSTEM
3537 M:      Luis de Bethencourt <luisbg@kernel.org>
3538 M:      Salah Triki <salah.triki@gmail.com>
3539 S:      Maintained
3540 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luisbg/linux-befs.git
3541 F:      Documentation/filesystems/befs.rst
3542 F:      fs/befs/
3543
3544 BFQ I/O SCHEDULER
3545 M:      Paolo Valente <paolo.valente@linaro.org>
3546 M:      Jens Axboe <axboe@kernel.dk>
3547 L:      linux-block@vger.kernel.org
3548 S:      Maintained
3549 F:      Documentation/block/bfq-iosched.rst
3550 F:      block/bfq-*
3551
3552 BFS FILE SYSTEM
3553 M:      "Tigran A. Aivazian" <aivazian.tigran@gmail.com>
3554 S:      Maintained
3555 F:      Documentation/filesystems/bfs.rst
3556 F:      fs/bfs/
3557 F:      include/uapi/linux/bfs_fs.h
3558
3559 BITMAP API
3560 M:      Yury Norov <yury.norov@gmail.com>
3561 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
3562 R:      Rasmus Villemoes <linux@rasmusvillemoes.dk>
3563 S:      Maintained
3564 F:      include/linux/bitmap.h
3565 F:      include/linux/cpumask.h
3566 F:      include/linux/find.h
3567 F:      include/linux/nodemask.h
3568 F:      lib/bitmap.c
3569 F:      lib/cpumask.c
3570 F:      lib/cpumask_kunit.c
3571 F:      lib/find_bit.c
3572 F:      lib/find_bit_benchmark.c
3573 F:      lib/test_bitmap.c
3574 F:      tools/include/linux/bitmap.h
3575 F:      tools/include/linux/find.h
3576 F:      tools/lib/bitmap.c
3577 F:      tools/lib/find_bit.c
3578
3579 BLINKM RGB LED DRIVER
3580 M:      Jan-Simon Moeller <jansimon.moeller@gmx.de>
3581 S:      Maintained
3582 F:      drivers/leds/leds-blinkm.c
3583
3584 BLOCK LAYER
3585 M:      Jens Axboe <axboe@kernel.dk>
3586 L:      linux-block@vger.kernel.org
3587 S:      Maintained
3588 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
3589 F:      Documentation/ABI/stable/sysfs-block
3590 F:      Documentation/block/
3591 F:      block/
3592 F:      drivers/block/
3593 F:      include/linux/bio.h
3594 F:      include/linux/blk*
3595 F:      kernel/trace/blktrace.c
3596 F:      lib/sbitmap.c
3597
3598 BLOCK2MTD DRIVER
3599 M:      Joern Engel <joern@lazybastard.org>
3600 L:      linux-mtd@lists.infradead.org
3601 S:      Maintained
3602 F:      drivers/mtd/devices/block2mtd.c
3603
3604 BLUETOOTH DRIVERS
3605 M:      Marcel Holtmann <marcel@holtmann.org>
3606 M:      Johan Hedberg <johan.hedberg@gmail.com>
3607 M:      Luiz Augusto von Dentz <luiz.dentz@gmail.com>
3608 L:      linux-bluetooth@vger.kernel.org
3609 S:      Supported
3610 W:      http://www.bluez.org/
3611 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3612 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3613 F:      drivers/bluetooth/
3614
3615 BLUETOOTH SUBSYSTEM
3616 M:      Marcel Holtmann <marcel@holtmann.org>
3617 M:      Johan Hedberg <johan.hedberg@gmail.com>
3618 M:      Luiz Augusto von Dentz <luiz.dentz@gmail.com>
3619 L:      linux-bluetooth@vger.kernel.org
3620 S:      Supported
3621 W:      http://www.bluez.org/
3622 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3623 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3624 F:      include/net/bluetooth/
3625 F:      net/bluetooth/
3626
3627 BONDING DRIVER
3628 M:      Jay Vosburgh <j.vosburgh@gmail.com>
3629 M:      Andy Gospodarek <andy@greyhouse.net>
3630 L:      netdev@vger.kernel.org
3631 S:      Supported
3632 W:      http://sourceforge.net/projects/bonding/
3633 F:      Documentation/networking/bonding.rst
3634 F:      drivers/net/bonding/
3635 F:      include/net/bond*
3636 F:      include/uapi/linux/if_bonding.h
3637 F:      tools/testing/selftests/drivers/net/bonding/
3638
3639 BOSCH SENSORTEC BMA400 ACCELEROMETER IIO DRIVER
3640 M:      Dan Robertson <dan@dlrobertson.com>
3641 L:      linux-iio@vger.kernel.org
3642 S:      Maintained
3643 F:      Documentation/devicetree/bindings/iio/accel/bosch,bma400.yaml
3644 F:      drivers/iio/accel/bma400*
3645
3646 BPF [GENERAL] (Safe Dynamic Programs and Tools)
3647 M:      Alexei Starovoitov <ast@kernel.org>
3648 M:      Daniel Borkmann <daniel@iogearbox.net>
3649 M:      Andrii Nakryiko <andrii@kernel.org>
3650 R:      Martin KaFai Lau <martin.lau@linux.dev>
3651 R:      Song Liu <song@kernel.org>
3652 R:      Yonghong Song <yhs@fb.com>
3653 R:      John Fastabend <john.fastabend@gmail.com>
3654 R:      KP Singh <kpsingh@kernel.org>
3655 R:      Stanislav Fomichev <sdf@google.com>
3656 R:      Hao Luo <haoluo@google.com>
3657 R:      Jiri Olsa <jolsa@kernel.org>
3658 L:      bpf@vger.kernel.org
3659 S:      Supported
3660 W:      https://bpf.io/
3661 Q:      https://patchwork.kernel.org/project/netdevbpf/list/?delegate=121173
3662 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf.git
3663 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-next.git
3664 F:      Documentation/bpf/
3665 F:      Documentation/networking/filter.rst
3666 F:      Documentation/userspace-api/ebpf/
3667 F:      arch/*/net/*
3668 F:      include/linux/bpf*
3669 F:      include/linux/btf*
3670 F:      include/linux/filter.h
3671 F:      include/trace/events/xdp.h
3672 F:      include/uapi/linux/bpf*
3673 F:      include/uapi/linux/btf*
3674 F:      include/uapi/linux/filter.h
3675 F:      kernel/bpf/
3676 F:      kernel/trace/bpf_trace.c
3677 F:      lib/test_bpf.c
3678 F:      net/bpf/
3679 F:      net/core/filter.c
3680 F:      net/sched/act_bpf.c
3681 F:      net/sched/cls_bpf.c
3682 F:      samples/bpf/
3683 F:      scripts/bpf_doc.py
3684 F:      scripts/pahole-flags.sh
3685 F:      scripts/pahole-version.sh
3686 F:      tools/bpf/
3687 F:      tools/lib/bpf/
3688 F:      tools/testing/selftests/bpf/
3689
3690 BPF JIT for ARM
3691 M:      Shubham Bansal <illusionist.neo@gmail.com>
3692 L:      bpf@vger.kernel.org
3693 S:      Odd Fixes
3694 F:      arch/arm/net/
3695
3696 BPF JIT for ARM64
3697 M:      Daniel Borkmann <daniel@iogearbox.net>
3698 M:      Alexei Starovoitov <ast@kernel.org>
3699 M:      Zi Shen Lim <zlim.lnx@gmail.com>
3700 L:      bpf@vger.kernel.org
3701 S:      Supported
3702 F:      arch/arm64/net/
3703
3704 BPF JIT for MIPS (32-BIT AND 64-BIT)
3705 M:      Johan Almbladh <johan.almbladh@anyfinetworks.com>
3706 M:      Paul Burton <paulburton@kernel.org>
3707 L:      bpf@vger.kernel.org
3708 S:      Maintained
3709 F:      arch/mips/net/
3710
3711 BPF JIT for NFP NICs
3712 M:      Jakub Kicinski <kuba@kernel.org>
3713 L:      bpf@vger.kernel.org
3714 S:      Odd Fixes
3715 F:      drivers/net/ethernet/netronome/nfp/bpf/
3716
3717 BPF JIT for POWERPC (32-BIT AND 64-BIT)
3718 M:      Naveen N. Rao <naveen.n.rao@linux.ibm.com>
3719 M:      Michael Ellerman <mpe@ellerman.id.au>
3720 L:      bpf@vger.kernel.org
3721 S:      Supported
3722 F:      arch/powerpc/net/
3723
3724 BPF JIT for RISC-V (32-bit)
3725 M:      Luke Nelson <luke.r.nels@gmail.com>
3726 M:      Xi Wang <xi.wang@gmail.com>
3727 L:      bpf@vger.kernel.org
3728 S:      Maintained
3729 F:      arch/riscv/net/
3730 X:      arch/riscv/net/bpf_jit_comp64.c
3731
3732 BPF JIT for RISC-V (64-bit)
3733 M:      Björn Töpel <bjorn@kernel.org>
3734 L:      bpf@vger.kernel.org
3735 S:      Maintained
3736 F:      arch/riscv/net/
3737 X:      arch/riscv/net/bpf_jit_comp32.c
3738
3739 BPF JIT for S390
3740 M:      Ilya Leoshkevich <iii@linux.ibm.com>
3741 M:      Heiko Carstens <hca@linux.ibm.com>
3742 M:      Vasily Gorbik <gor@linux.ibm.com>
3743 L:      bpf@vger.kernel.org
3744 S:      Supported
3745 F:      arch/s390/net/
3746 X:      arch/s390/net/pnet.c
3747
3748 BPF JIT for SPARC (32-BIT AND 64-BIT)
3749 M:      David S. Miller <davem@davemloft.net>
3750 L:      bpf@vger.kernel.org
3751 S:      Odd Fixes
3752 F:      arch/sparc/net/
3753
3754 BPF JIT for X86 32-BIT
3755 M:      Wang YanQing <udknight@gmail.com>
3756 L:      bpf@vger.kernel.org
3757 S:      Odd Fixes
3758 F:      arch/x86/net/bpf_jit_comp32.c
3759
3760 BPF JIT for X86 64-BIT
3761 M:      Alexei Starovoitov <ast@kernel.org>
3762 M:      Daniel Borkmann <daniel@iogearbox.net>
3763 L:      bpf@vger.kernel.org
3764 S:      Supported
3765 F:      arch/x86/net/
3766 X:      arch/x86/net/bpf_jit_comp32.c
3767
3768 BPF [CORE]
3769 M:      Alexei Starovoitov <ast@kernel.org>
3770 M:      Daniel Borkmann <daniel@iogearbox.net>
3771 R:      John Fastabend <john.fastabend@gmail.com>
3772 L:      bpf@vger.kernel.org
3773 S:      Maintained
3774 F:      kernel/bpf/verifier.c
3775 F:      kernel/bpf/tnum.c
3776 F:      kernel/bpf/core.c
3777 F:      kernel/bpf/syscall.c
3778 F:      kernel/bpf/dispatcher.c
3779 F:      kernel/bpf/trampoline.c
3780 F:      include/linux/bpf*
3781 F:      include/linux/filter.h
3782 F:      include/linux/tnum.h
3783
3784 BPF [BTF]
3785 M:      Martin KaFai Lau <martin.lau@linux.dev>
3786 L:      bpf@vger.kernel.org
3787 S:      Maintained
3788 F:      kernel/bpf/btf.c
3789 F:      include/linux/btf*
3790
3791 BPF [TRACING]
3792 M:      Song Liu <song@kernel.org>
3793 R:      Jiri Olsa <jolsa@kernel.org>
3794 L:      bpf@vger.kernel.org
3795 S:      Maintained
3796 F:      kernel/trace/bpf_trace.c
3797 F:      kernel/bpf/stackmap.c
3798
3799 BPF [NETWORKING] (tc BPF, sock_addr)
3800 M:      Martin KaFai Lau <martin.lau@linux.dev>
3801 M:      Daniel Borkmann <daniel@iogearbox.net>
3802 R:      John Fastabend <john.fastabend@gmail.com>
3803 L:      bpf@vger.kernel.org
3804 L:      netdev@vger.kernel.org
3805 S:      Maintained
3806 F:      net/core/filter.c
3807 F:      net/sched/act_bpf.c
3808 F:      net/sched/cls_bpf.c
3809
3810 BPF [NETWORKING] (struct_ops, reuseport)
3811 M:      Martin KaFai Lau <martin.lau@linux.dev>
3812 L:      bpf@vger.kernel.org
3813 L:      netdev@vger.kernel.org
3814 S:      Maintained
3815 F:      kernel/bpf/bpf_struct*
3816
3817 BPF [SECURITY & LSM] (Security Audit and Enforcement using BPF)
3818 M:      KP Singh <kpsingh@kernel.org>
3819 R:      Florent Revest <revest@chromium.org>
3820 R:      Brendan Jackman <jackmanb@chromium.org>
3821 L:      bpf@vger.kernel.org
3822 S:      Maintained
3823 F:      Documentation/bpf/prog_lsm.rst
3824 F:      include/linux/bpf_lsm.h
3825 F:      kernel/bpf/bpf_lsm.c
3826 F:      security/bpf/
3827
3828 BPF [STORAGE & CGROUPS]
3829 M:      Martin KaFai Lau <martin.lau@linux.dev>
3830 L:      bpf@vger.kernel.org
3831 S:      Maintained
3832 F:      kernel/bpf/cgroup.c
3833 F:      kernel/bpf/*storage.c
3834 F:      kernel/bpf/bpf_lru*
3835
3836 BPF [RINGBUF]
3837 M:      Andrii Nakryiko <andrii@kernel.org>
3838 L:      bpf@vger.kernel.org
3839 S:      Maintained
3840 F:      kernel/bpf/ringbuf.c
3841
3842 BPF [ITERATOR]
3843 M:      Yonghong Song <yhs@fb.com>
3844 L:      bpf@vger.kernel.org
3845 S:      Maintained
3846 F:      kernel/bpf/*iter.c
3847
3848 BPF [L7 FRAMEWORK] (sockmap)
3849 M:      John Fastabend <john.fastabend@gmail.com>
3850 M:      Jakub Sitnicki <jakub@cloudflare.com>
3851 L:      netdev@vger.kernel.org
3852 L:      bpf@vger.kernel.org
3853 S:      Maintained
3854 F:      include/linux/skmsg.h
3855 F:      net/core/skmsg.c
3856 F:      net/core/sock_map.c
3857 F:      net/ipv4/tcp_bpf.c
3858 F:      net/ipv4/udp_bpf.c
3859 F:      net/unix/unix_bpf.c
3860
3861 BPF [LIBRARY] (libbpf)
3862 M:      Andrii Nakryiko <andrii@kernel.org>
3863 L:      bpf@vger.kernel.org
3864 S:      Maintained
3865 F:      tools/lib/bpf/
3866
3867 BPF [TOOLING] (bpftool)
3868 M:      Quentin Monnet <quentin@isovalent.com>
3869 L:      bpf@vger.kernel.org
3870 S:      Maintained
3871 F:      kernel/bpf/disasm.*
3872 F:      tools/bpf/bpftool/
3873
3874 BPF [SELFTESTS] (Test Runners & Infrastructure)
3875 M:      Andrii Nakryiko <andrii@kernel.org>
3876 R:      Mykola Lysenko <mykolal@fb.com>
3877 L:      bpf@vger.kernel.org
3878 S:      Maintained
3879 F:      tools/testing/selftests/bpf/
3880
3881 BPF [DOCUMENTATION] (Related to Standardization)
3882 R:      David Vernet <void@manifault.com>
3883 L:      bpf@vger.kernel.org
3884 L:      bpf@ietf.org
3885 S:      Maintained
3886 F:      Documentation/bpf/instruction-set.rst
3887
3888 BPF [MISC]
3889 L:      bpf@vger.kernel.org
3890 S:      Odd Fixes
3891 K:      (?:\b|_)bpf(?:\b|_)
3892
3893 BROADCOM B44 10/100 ETHERNET DRIVER
3894 M:      Michael Chan <michael.chan@broadcom.com>
3895 L:      netdev@vger.kernel.org
3896 S:      Supported
3897 F:      drivers/net/ethernet/broadcom/b44.*
3898
3899 BROADCOM B53/SF2 ETHERNET SWITCH DRIVER
3900 M:      Florian Fainelli <f.fainelli@gmail.com>
3901 L:      netdev@vger.kernel.org
3902 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
3903 S:      Supported
3904 F:      Documentation/devicetree/bindings/net/dsa/brcm,b53.yaml
3905 F:      drivers/net/dsa/b53/*
3906 F:      drivers/net/dsa/bcm_sf2*
3907 F:      include/linux/dsa/brcm.h
3908 F:      include/linux/platform_data/b53.h
3909
3910 BROADCOM BCMBCA ARM ARCHITECTURE
3911 M:      William Zhang <william.zhang@broadcom.com>
3912 M:      Anand Gore <anand.gore@broadcom.com>
3913 M:      Kursad Oney <kursad.oney@broadcom.com>
3914 M:      Florian Fainelli <f.fainelli@gmail.com>
3915 M:      Rafał Miłecki <rafal@milecki.pl>
3916 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
3917 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3918 S:      Maintained
3919 T:      git https://github.com/broadcom/stblinux.git
3920 F:      Documentation/devicetree/bindings/arm/bcm/brcm,bcmbca.yaml
3921 F:      arch/arm64/boot/dts/broadcom/bcmbca/*
3922 N:      bcmbca
3923 N:      bcm[9]?47622
3924 N:      bcm[9]?4912
3925 N:      bcm[9]?63138
3926 N:      bcm[9]?63146
3927 N:      bcm[9]?63148
3928 N:      bcm[9]?63158
3929 N:      bcm[9]?63178
3930 N:      bcm[9]?6756
3931 N:      bcm[9]?6813
3932 N:      bcm[9]?6846
3933 N:      bcm[9]?6855
3934 N:      bcm[9]?6856
3935 N:      bcm[9]?6858
3936 N:      bcm[9]?6878
3937
3938 BROADCOM BCM2711/BCM2835 ARM ARCHITECTURE
3939 M:      Florian Fainelli <f.fainelli@gmail.com>
3940 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
3941 L:      linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
3942 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3943 S:      Maintained
3944 T:      git https://github.com/broadcom/stblinux.git
3945 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3946 F:      drivers/pci/controller/pcie-brcmstb.c
3947 F:      drivers/staging/vc04_services
3948 N:      bcm2711
3949 N:      bcm283*
3950 N:      raspberrypi
3951
3952 BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE
3953 M:      Florian Fainelli <f.fainelli@gmail.com>
3954 M:      Ray Jui <rjui@broadcom.com>
3955 M:      Scott Branden <sbranden@broadcom.com>
3956 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
3957 S:      Maintained
3958 T:      git https://github.com/broadcom/mach-bcm
3959 F:      arch/arm/mach-bcm/
3960 N:      bcm281*
3961 N:      bcm113*
3962 N:      bcm216*
3963 N:      kona
3964
3965 BROADCOM BCM47XX MIPS ARCHITECTURE
3966 M:      Hauke Mehrtens <hauke@hauke-m.de>
3967 M:      Rafał Miłecki <zajec5@gmail.com>
3968 L:      linux-mips@vger.kernel.org
3969 S:      Maintained
3970 F:      Documentation/devicetree/bindings/mips/brcm/
3971 F:      arch/mips/bcm47xx/*
3972 F:      arch/mips/include/asm/mach-bcm47xx/*
3973
3974 BROADCOM BCM4908 ETHERNET DRIVER
3975 M:      Rafał Miłecki <rafal@milecki.pl>
3976 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
3977 L:      netdev@vger.kernel.org
3978 S:      Maintained
3979 F:      Documentation/devicetree/bindings/net/brcm,bcm4908-enet.yaml
3980 F:      drivers/net/ethernet/broadcom/bcm4908_enet.*
3981 F:      drivers/net/ethernet/broadcom/unimac.h
3982
3983 BROADCOM BCM4908 PINMUX DRIVER
3984 M:      Rafał Miłecki <rafal@milecki.pl>
3985 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
3986 L:      linux-gpio@vger.kernel.org
3987 S:      Maintained
3988 F:      Documentation/devicetree/bindings/pinctrl/brcm,bcm4908-pinctrl.yaml
3989 F:      drivers/pinctrl/bcm/pinctrl-bcm4908.c
3990
3991 BROADCOM BCM5301X ARM ARCHITECTURE
3992 M:      Florian Fainelli <f.fainelli@gmail.com>
3993 M:      Hauke Mehrtens <hauke@hauke-m.de>
3994 M:      Rafał Miłecki <zajec5@gmail.com>
3995 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
3996 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3997 S:      Maintained
3998 F:      arch/arm/boot/dts/bcm470*
3999 F:      arch/arm/boot/dts/bcm5301*
4000 F:      arch/arm/boot/dts/bcm953012*
4001 F:      arch/arm/mach-bcm/bcm_5301x.c
4002
4003 BROADCOM BCM53573 ARM ARCHITECTURE
4004 M:      Florian Fainelli <f.fainelli@gmail.com>
4005 M:      Rafał Miłecki <rafal@milecki.pl>
4006 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4007 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4008 S:      Maintained
4009 F:      arch/arm/boot/dts/bcm47189*
4010 F:      arch/arm/boot/dts/bcm53573*
4011
4012 BROADCOM BCM63XX/BCM33XX UDC DRIVER
4013 M:      Kevin Cernekee <cernekee@gmail.com>
4014 L:      linux-usb@vger.kernel.org
4015 S:      Maintained
4016 F:      drivers/usb/gadget/udc/bcm63xx_udc.*
4017
4018 BROADCOM BCM7XXX ARM ARCHITECTURE
4019 M:      Florian Fainelli <f.fainelli@gmail.com>
4020 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4021 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4022 S:      Maintained
4023 T:      git https://github.com/broadcom/stblinux.git
4024 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
4025 F:      arch/arm/boot/dts/bcm7*.dts*
4026 F:      arch/arm/include/asm/hardware/cache-b15-rac.h
4027 F:      arch/arm/mach-bcm/*brcmstb*
4028 F:      arch/arm/mm/cache-b15-rac.c
4029 F:      drivers/bus/brcmstb_gisb.c
4030 F:      drivers/pci/controller/pcie-brcmstb.c
4031 N:      brcmstb
4032 N:      bcm7038
4033 N:      bcm7120
4034
4035 BROADCOM BDC DRIVER
4036 M:      Justin Chen <justinpopo6@gmail.com>
4037 M:      Al Cooper <alcooperx@gmail.com>
4038 L:      linux-usb@vger.kernel.org
4039 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4040 S:      Maintained
4041 F:      Documentation/devicetree/bindings/usb/brcm,bdc.yaml
4042 F:      drivers/usb/gadget/udc/bdc/
4043
4044 BROADCOM BMIPS CPUFREQ DRIVER
4045 M:      Markus Mayer <mmayer@broadcom.com>
4046 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4047 L:      linux-pm@vger.kernel.org
4048 S:      Maintained
4049 F:      drivers/cpufreq/bmips-cpufreq.c
4050
4051 BROADCOM BMIPS MIPS ARCHITECTURE
4052 M:      Florian Fainelli <f.fainelli@gmail.com>
4053 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4054 L:      linux-mips@vger.kernel.org
4055 S:      Maintained
4056 T:      git https://github.com/broadcom/stblinux.git
4057 F:      arch/mips/bmips/*
4058 F:      arch/mips/boot/dts/brcm/bcm*.dts*
4059 F:      arch/mips/include/asm/mach-bmips/*
4060 F:      arch/mips/kernel/*bmips*
4061 F:      drivers/soc/bcm/bcm63xx
4062 F:      drivers/irqchip/irq-bcm63*
4063 F:      drivers/irqchip/irq-bcm7*
4064 F:      drivers/irqchip/irq-brcmstb*
4065 F:      include/linux/bcm963xx_nvram.h
4066 F:      include/linux/bcm963xx_tag.h
4067
4068 BROADCOM BNX2 GIGABIT ETHERNET DRIVER
4069 M:      Rasesh Mody <rmody@marvell.com>
4070 M:      GR-Linux-NIC-Dev@marvell.com
4071 L:      netdev@vger.kernel.org
4072 S:      Supported
4073 F:      drivers/net/ethernet/broadcom/bnx2.*
4074 F:      drivers/net/ethernet/broadcom/bnx2_*
4075
4076 BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
4077 M:      Saurav Kashyap <skashyap@marvell.com>
4078 M:      Javed Hasan <jhasan@marvell.com>
4079 M:      GR-QLogic-Storage-Upstream@marvell.com
4080 L:      linux-scsi@vger.kernel.org
4081 S:      Supported
4082 F:      drivers/scsi/bnx2fc/
4083
4084 BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER
4085 M:      Nilesh Javali <njavali@marvell.com>
4086 M:      Manish Rangankar <mrangankar@marvell.com>
4087 M:      GR-QLogic-Storage-Upstream@marvell.com
4088 L:      linux-scsi@vger.kernel.org
4089 S:      Supported
4090 F:      drivers/scsi/bnx2i/
4091
4092 BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
4093 M:      Ariel Elior <aelior@marvell.com>
4094 M:      Sudarsana Kalluru <skalluru@marvell.com>
4095 M:      Manish Chopra <manishc@marvell.com>
4096 L:      netdev@vger.kernel.org
4097 S:      Supported
4098 F:      drivers/net/ethernet/broadcom/bnx2x/
4099
4100 BROADCOM BNXT_EN 50 GIGABIT ETHERNET DRIVER
4101 M:      Michael Chan <michael.chan@broadcom.com>
4102 L:      netdev@vger.kernel.org
4103 S:      Supported
4104 F:      drivers/firmware/broadcom/tee_bnxt_fw.c
4105 F:      drivers/net/ethernet/broadcom/bnxt/
4106 F:      include/linux/firmware/broadcom/tee_bnxt_fw.h
4107
4108 BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
4109 M:      Arend van Spriel <aspriel@gmail.com>
4110 M:      Franky Lin <franky.lin@broadcom.com>
4111 M:      Hante Meuleman <hante.meuleman@broadcom.com>
4112 L:      linux-wireless@vger.kernel.org
4113 L:      brcm80211-dev-list.pdl@broadcom.com
4114 L:      SHA-cyfmac-dev-list@infineon.com
4115 S:      Supported
4116 F:      drivers/net/wireless/broadcom/brcm80211/
4117
4118 BROADCOM BRCMSTB GPIO DRIVER
4119 M:      Doug Berger <opendmb@gmail.com>
4120 M:      Florian Fainelli <f.fainelli@gmail.com>
4121 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4122 S:      Supported
4123 F:      Documentation/devicetree/bindings/gpio/brcm,brcmstb-gpio.yaml
4124 F:      drivers/gpio/gpio-brcmstb.c
4125
4126 BROADCOM BRCMSTB I2C DRIVER
4127 M:      Kamal Dasu <kdasu.kdev@gmail.com>
4128 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4129 L:      linux-i2c@vger.kernel.org
4130 S:      Supported
4131 F:      Documentation/devicetree/bindings/i2c/brcm,brcmstb-i2c.yaml
4132 F:      drivers/i2c/busses/i2c-brcmstb.c
4133
4134 BROADCOM BRCMSTB UART DRIVER
4135 M:      Al Cooper <alcooperx@gmail.com>
4136 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4137 L:      linux-serial@vger.kernel.org
4138 S:      Maintained
4139 F:      Documentation/devicetree/bindings/serial/brcm,bcm7271-uart.yaml
4140 F:      drivers/tty/serial/8250/8250_bcm7271.c
4141
4142 BROADCOM BRCMSTB USB EHCI DRIVER
4143 M:      Justin Chen <justinpopo6@gmail.com>
4144 M:      Al Cooper <alcooperx@gmail.com>
4145 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4146 L:      linux-usb@vger.kernel.org
4147 S:      Maintained
4148 F:      Documentation/devicetree/bindings/usb/brcm,bcm7445-ehci.yaml
4149 F:      drivers/usb/host/ehci-brcm.*
4150
4151 BROADCOM BRCMSTB USB PIN MAP DRIVER
4152 M:      Al Cooper <alcooperx@gmail.com>
4153 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4154 L:      linux-usb@vger.kernel.org
4155 S:      Maintained
4156 F:      Documentation/devicetree/bindings/usb/brcm,usb-pinmap.yaml
4157 F:      drivers/usb/misc/brcmstb-usb-pinmap.c
4158
4159 BROADCOM BRCMSTB USB2 and USB3 PHY DRIVER
4160 M:      Justin Chen <justinpopo6@gmail.com>
4161 M:      Al Cooper <alcooperx@gmail.com>
4162 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4163 L:      linux-kernel@vger.kernel.org
4164 S:      Maintained
4165 F:      drivers/phy/broadcom/phy-brcm-usb*
4166
4167 BROADCOM Broadband SoC High Speed SPI Controller DRIVER
4168 M:      William Zhang <william.zhang@broadcom.com>
4169 M:      Kursad Oney <kursad.oney@broadcom.com>
4170 M:      Jonas Gorski <jonas.gorski@gmail.com>
4171 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4172 L:      linux-spi@vger.kernel.org
4173 S:      Maintained
4174 F:      Documentation/devicetree/bindings/spi/brcm,bcm63xx-hsspi.yaml
4175 F:      drivers/spi/spi-bcm63xx-hsspi.c
4176 F:      drivers/spi/spi-bcmbca-hsspi.c
4177
4178 BROADCOM ETHERNET PHY DRIVERS
4179 M:      Florian Fainelli <f.fainelli@gmail.com>
4180 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4181 L:      netdev@vger.kernel.org
4182 S:      Supported
4183 F:      Documentation/devicetree/bindings/net/broadcom-bcm87xx.txt
4184 F:      drivers/net/phy/bcm*.[ch]
4185 F:      drivers/net/phy/broadcom.c
4186 F:      include/linux/brcmphy.h
4187
4188 BROADCOM GENET ETHERNET DRIVER
4189 M:      Doug Berger <opendmb@gmail.com>
4190 M:      Florian Fainelli <f.fainelli@gmail.com>
4191 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4192 L:      netdev@vger.kernel.org
4193 S:      Supported
4194 F:      Documentation/devicetree/bindings/net/brcm,bcmgenet.yaml
4195 F:      Documentation/devicetree/bindings/net/brcm,unimac-mdio.yaml
4196 F:      drivers/net/ethernet/broadcom/genet/
4197 F:      drivers/net/ethernet/broadcom/unimac.h
4198 F:      drivers/net/mdio/mdio-bcm-unimac.c
4199 F:      include/linux/platform_data/bcmgenet.h
4200 F:      include/linux/platform_data/mdio-bcm-unimac.h
4201
4202 BROADCOM IPROC ARM ARCHITECTURE
4203 M:      Ray Jui <rjui@broadcom.com>
4204 M:      Scott Branden <sbranden@broadcom.com>
4205 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4206 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4207 S:      Maintained
4208 T:      git https://github.com/broadcom/stblinux.git
4209 F:      arch/arm64/boot/dts/broadcom/northstar2/*
4210 F:      arch/arm64/boot/dts/broadcom/stingray/*
4211 F:      drivers/clk/bcm/clk-ns*
4212 F:      drivers/clk/bcm/clk-sr*
4213 F:      drivers/pinctrl/bcm/pinctrl-ns*
4214 F:      include/dt-bindings/clock/bcm-sr*
4215 N:      iproc
4216 N:      cygnus
4217 N:      bcm[-_]nsp
4218 N:      bcm9113*
4219 N:      bcm9583*
4220 N:      bcm9585*
4221 N:      bcm9586*
4222 N:      bcm988312
4223 N:      bcm113*
4224 N:      bcm583*
4225 N:      bcm585*
4226 N:      bcm586*
4227 N:      bcm88312
4228 N:      hr2
4229 N:      stingray
4230
4231 BROADCOM IPROC GBIT ETHERNET DRIVER
4232 M:      Rafał Miłecki <rafal@milecki.pl>
4233 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4234 L:      netdev@vger.kernel.org
4235 S:      Maintained
4236 F:      Documentation/devicetree/bindings/net/brcm,amac.yaml
4237 F:      drivers/net/ethernet/broadcom/bgmac*
4238 F:      drivers/net/ethernet/broadcom/unimac.h
4239
4240 BROADCOM KONA GPIO DRIVER
4241 M:      Ray Jui <rjui@broadcom.com>
4242 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4243 S:      Supported
4244 F:      Documentation/devicetree/bindings/gpio/brcm,kona-gpio.txt
4245 F:      drivers/gpio/gpio-bcm-kona.c
4246
4247 BROADCOM MPI3 STORAGE CONTROLLER DRIVER
4248 M:      Sathya Prakash Veerichetty <sathya.prakash@broadcom.com>
4249 M:      Kashyap Desai <kashyap.desai@broadcom.com>
4250 M:      Sumit Saxena <sumit.saxena@broadcom.com>
4251 M:      Sreekanth Reddy <sreekanth.reddy@broadcom.com>
4252 L:      mpi3mr-linuxdrv.pdl@broadcom.com
4253 L:      linux-scsi@vger.kernel.org
4254 S:      Supported
4255 W:      https://www.broadcom.com/support/storage
4256 F:      drivers/scsi/mpi3mr/
4257
4258 BROADCOM NETXTREME-E ROCE DRIVER
4259 M:      Selvin Xavier <selvin.xavier@broadcom.com>
4260 L:      linux-rdma@vger.kernel.org
4261 S:      Supported
4262 W:      http://www.broadcom.com
4263 F:      drivers/infiniband/hw/bnxt_re/
4264 F:      include/uapi/rdma/bnxt_re-abi.h
4265
4266 BROADCOM NVRAM DRIVER
4267 M:      Rafał Miłecki <zajec5@gmail.com>
4268 L:      linux-mips@vger.kernel.org
4269 S:      Maintained
4270 F:      drivers/firmware/broadcom/*
4271
4272 BROADCOM PMB (POWER MANAGEMENT BUS) DRIVER
4273 M:      Rafał Miłecki <rafal@milecki.pl>
4274 M:      Florian Fainelli <f.fainelli@gmail.com>
4275 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4276 L:      linux-pm@vger.kernel.org
4277 S:      Maintained
4278 T:      git https://github.com/broadcom/stblinux.git
4279 F:      drivers/soc/bcm/bcm63xx/bcm-pmb.c
4280 F:      include/dt-bindings/soc/bcm-pmb.h
4281
4282 BROADCOM SPECIFIC AMBA DRIVER (BCMA)
4283 M:      Rafał Miłecki <zajec5@gmail.com>
4284 L:      linux-wireless@vger.kernel.org
4285 S:      Maintained
4286 F:      drivers/bcma/
4287 F:      include/linux/bcma/
4288
4289 BROADCOM SPI DRIVER
4290 M:      Kamal Dasu <kdasu.kdev@gmail.com>
4291 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4292 S:      Maintained
4293 F:      Documentation/devicetree/bindings/spi/brcm,spi-bcm-qspi.yaml
4294 F:      drivers/spi/spi-bcm-qspi.*
4295 F:      drivers/spi/spi-brcmstb-qspi.c
4296 F:      drivers/spi/spi-iproc-qspi.c
4297
4298 BROADCOM STB AVS CPUFREQ DRIVER
4299 M:      Markus Mayer <mmayer@broadcom.com>
4300 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4301 L:      linux-pm@vger.kernel.org
4302 S:      Maintained
4303 F:      Documentation/devicetree/bindings/cpufreq/brcm,stb-avs-cpu-freq.txt
4304 F:      drivers/cpufreq/brcmstb*
4305
4306 BROADCOM STB AVS TMON DRIVER
4307 M:      Markus Mayer <mmayer@broadcom.com>
4308 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4309 L:      linux-pm@vger.kernel.org
4310 S:      Maintained
4311 F:      Documentation/devicetree/bindings/thermal/brcm,avs-tmon.yaml
4312 F:      drivers/thermal/broadcom/brcmstb*
4313
4314 BROADCOM STB DPFE DRIVER
4315 M:      Markus Mayer <mmayer@broadcom.com>
4316 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4317 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4318 S:      Maintained
4319 F:      Documentation/devicetree/bindings/memory-controllers/brcm,dpfe-cpu.yaml
4320 F:      drivers/memory/brcmstb_dpfe.c
4321
4322 BROADCOM STB NAND FLASH DRIVER
4323 M:      Brian Norris <computersforpeace@gmail.com>
4324 M:      Kamal Dasu <kdasu.kdev@gmail.com>
4325 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4326 L:      linux-mtd@lists.infradead.org
4327 S:      Maintained
4328 F:      drivers/mtd/nand/raw/brcmnand/
4329 F:      include/linux/platform_data/brcmnand.h
4330
4331 BROADCOM STB PCIE DRIVER
4332 M:      Jim Quinlan <jim2101024@gmail.com>
4333 M:      Nicolas Saenz Julienne <nsaenz@kernel.org>
4334 M:      Florian Fainelli <f.fainelli@gmail.com>
4335 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4336 L:      linux-pci@vger.kernel.org
4337 S:      Maintained
4338 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
4339 F:      drivers/pci/controller/pcie-brcmstb.c
4340
4341 BROADCOM SYSTEMPORT ETHERNET DRIVER
4342 M:      Florian Fainelli <f.fainelli@gmail.com>
4343 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4344 L:      netdev@vger.kernel.org
4345 S:      Supported
4346 F:      drivers/net/ethernet/broadcom/bcmsysport.*
4347 F:      drivers/net/ethernet/broadcom/unimac.h
4348 F:      Documentation/devicetree/bindings/net/brcm,systemport.yaml
4349
4350 BROADCOM TG3 GIGABIT ETHERNET DRIVER
4351 M:      Siva Reddy Kallam <siva.kallam@broadcom.com>
4352 M:      Prashant Sreedharan <prashant@broadcom.com>
4353 M:      Michael Chan <mchan@broadcom.com>
4354 L:      netdev@vger.kernel.org
4355 S:      Supported
4356 F:      drivers/net/ethernet/broadcom/tg3.*
4357
4358 BROADCOM VK DRIVER
4359 M:      Scott Branden <scott.branden@broadcom.com>
4360 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4361 S:      Supported
4362 F:      drivers/misc/bcm-vk/
4363 F:      include/uapi/linux/misc/bcm_vk.h
4364
4365 BROCADE BFA FC SCSI DRIVER
4366 M:      Anil Gurumurthy <anil.gurumurthy@qlogic.com>
4367 M:      Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
4368 L:      linux-scsi@vger.kernel.org
4369 S:      Supported
4370 F:      drivers/scsi/bfa/
4371
4372 BROCADE BNA 10 GIGABIT ETHERNET DRIVER
4373 M:      Rasesh Mody <rmody@marvell.com>
4374 M:      Sudarsana Kalluru <skalluru@marvell.com>
4375 M:      GR-Linux-NIC-Dev@marvell.com
4376 L:      netdev@vger.kernel.org
4377 S:      Supported
4378 F:      drivers/net/ethernet/brocade/bna/
4379
4380 BSG (block layer generic sg v4 driver)
4381 M:      FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
4382 L:      linux-scsi@vger.kernel.org
4383 S:      Supported
4384 F:      block/bsg.c
4385 F:      include/linux/bsg.h
4386 F:      include/uapi/linux/bsg.h
4387
4388 BT87X AUDIO DRIVER
4389 M:      Clemens Ladisch <clemens@ladisch.de>
4390 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4391 S:      Maintained
4392 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
4393 F:      Documentation/sound/cards/bt87x.rst
4394 F:      sound/pci/bt87x.c
4395
4396 BT8XXGPIO DRIVER
4397 M:      Michael Buesch <m@bues.ch>
4398 S:      Maintained
4399 W:      http://bu3sch.de/btgpio.php
4400 F:      drivers/gpio/gpio-bt8xx.c
4401
4402 BTRFS FILE SYSTEM
4403 M:      Chris Mason <clm@fb.com>
4404 M:      Josef Bacik <josef@toxicpanda.com>
4405 M:      David Sterba <dsterba@suse.com>
4406 L:      linux-btrfs@vger.kernel.org
4407 S:      Maintained
4408 W:      https://btrfs.readthedocs.io
4409 W:      https://btrfs.wiki.kernel.org/
4410 Q:      https://patchwork.kernel.org/project/linux-btrfs/list/
4411 C:      irc://irc.libera.chat/btrfs
4412 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kdave/linux.git
4413 F:      Documentation/filesystems/btrfs.rst
4414 F:      fs/btrfs/
4415 F:      include/linux/btrfs*
4416 F:      include/trace/events/btrfs.h
4417 F:      include/uapi/linux/btrfs*
4418
4419 BTTV VIDEO4LINUX DRIVER
4420 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
4421 L:      linux-media@vger.kernel.org
4422 S:      Odd fixes
4423 W:      https://linuxtv.org
4424 T:      git git://linuxtv.org/media_tree.git
4425 F:      Documentation/driver-api/media/drivers/bttv*
4426 F:      drivers/media/pci/bt8xx/bttv*
4427
4428 BUS FREQUENCY DRIVER FOR SAMSUNG EXYNOS
4429 M:      Chanwoo Choi <cw00.choi@samsung.com>
4430 L:      linux-pm@vger.kernel.org
4431 L:      linux-samsung-soc@vger.kernel.org
4432 S:      Maintained
4433 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
4434 F:      Documentation/devicetree/bindings/interconnect/samsung,exynos-bus.yaml
4435 F:      drivers/devfreq/exynos-bus.c
4436
4437 BUSLOGIC SCSI DRIVER
4438 M:      Khalid Aziz <khalid@gonehiking.org>
4439 L:      linux-scsi@vger.kernel.org
4440 S:      Maintained
4441 F:      drivers/scsi/BusLogic.*
4442 F:      drivers/scsi/FlashPoint.*
4443
4444 BXCAN CAN NETWORK DRIVER
4445 M:      Dario Binacchi <dario.binacchi@amarulasolutions.com>
4446 L:      linux-can@vger.kernel.org
4447 S:      Maintained
4448 F:      Documentation/devicetree/bindings/net/can/st,stm32-bxcan.yaml
4449 F:      drivers/net/can/bxcan.c
4450
4451 C-MEDIA CMI8788 DRIVER
4452 M:      Clemens Ladisch <clemens@ladisch.de>
4453 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4454 S:      Maintained
4455 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
4456 F:      sound/pci/oxygen/
4457
4458 C-SKY ARCHITECTURE
4459 M:      Guo Ren <guoren@kernel.org>
4460 L:      linux-csky@vger.kernel.org
4461 S:      Supported
4462 T:      git https://github.com/c-sky/csky-linux.git
4463 F:      Documentation/devicetree/bindings/csky/
4464 F:      Documentation/devicetree/bindings/interrupt-controller/csky,*
4465 F:      Documentation/devicetree/bindings/timer/csky,*
4466 F:      arch/csky/
4467 F:      drivers/clocksource/timer-gx6605s.c
4468 F:      drivers/clocksource/timer-mp-csky.c
4469 F:      drivers/irqchip/irq-csky-*
4470 N:      csky
4471 K:      csky
4472
4473 CA8210 IEEE-802.15.4 RADIO DRIVER
4474 L:      linux-wpan@vger.kernel.org
4475 S:      Orphan
4476 W:      https://github.com/Cascoda/ca8210-linux.git
4477 F:      Documentation/devicetree/bindings/net/ieee802154/ca8210.txt
4478 F:      drivers/net/ieee802154/ca8210.c
4479
4480 CANAAN/KENDRYTE K210 SOC FPIOA DRIVER
4481 M:      Damien Le Moal <dlemoal@kernel.org>
4482 L:      linux-riscv@lists.infradead.org
4483 L:      linux-gpio@vger.kernel.org (pinctrl driver)
4484 F:      Documentation/devicetree/bindings/pinctrl/canaan,k210-fpioa.yaml
4485 F:      drivers/pinctrl/pinctrl-k210.c
4486
4487 CANAAN/KENDRYTE K210 SOC RESET CONTROLLER DRIVER
4488 M:      Damien Le Moal <dlemoal@kernel.org>
4489 L:      linux-kernel@vger.kernel.org
4490 L:      linux-riscv@lists.infradead.org
4491 S:      Maintained
4492 F:      Documentation/devicetree/bindings/reset/canaan,k210-rst.yaml
4493 F:      drivers/reset/reset-k210.c
4494
4495 CANAAN/KENDRYTE K210 SOC SYSTEM CONTROLLER DRIVER
4496 M:      Damien Le Moal <dlemoal@kernel.org>
4497 L:      linux-riscv@lists.infradead.org
4498 S:      Maintained
4499 F:      Documentation/devicetree/bindings/mfd/canaan,k210-sysctl.yaml
4500 F:      drivers/soc/canaan/
4501 F:      include/soc/canaan/
4502
4503 CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
4504 M:      David Howells <dhowells@redhat.com>
4505 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
4506 S:      Supported
4507 F:      Documentation/filesystems/caching/cachefiles.rst
4508 F:      fs/cachefiles/
4509
4510 CADENCE MIPI-CSI2 BRIDGES
4511 M:      Maxime Ripard <mripard@kernel.org>
4512 L:      linux-media@vger.kernel.org
4513 S:      Maintained
4514 F:      Documentation/devicetree/bindings/media/cdns,*.txt
4515 F:      drivers/media/platform/cadence/cdns-csi2*
4516
4517 CADENCE NAND DRIVER
4518 L:      linux-mtd@lists.infradead.org
4519 S:      Orphan
4520 F:      Documentation/devicetree/bindings/mtd/cadence-nand-controller.txt
4521 F:      drivers/mtd/nand/raw/cadence-nand-controller.c
4522
4523 CADENCE USB3 DRD IP DRIVER
4524 M:      Peter Chen <peter.chen@kernel.org>
4525 M:      Pawel Laszczak <pawell@cadence.com>
4526 R:      Roger Quadros <rogerq@kernel.org>
4527 R:      Aswath Govindraju <a-govindraju@ti.com>
4528 L:      linux-usb@vger.kernel.org
4529 S:      Maintained
4530 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4531 F:      Documentation/devicetree/bindings/usb/cdns,usb3.yaml
4532 F:      drivers/usb/cdns3/
4533 X:      drivers/usb/cdns3/cdnsp*
4534
4535 CADENCE USBSSP DRD IP DRIVER
4536 M:      Pawel Laszczak <pawell@cadence.com>
4537 L:      linux-usb@vger.kernel.org
4538 S:      Maintained
4539 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4540 F:      drivers/usb/cdns3/
4541 X:      drivers/usb/cdns3/cdns3*
4542
4543 CADET FM/AM RADIO RECEIVER DRIVER
4544 M:      Hans Verkuil <hverkuil@xs4all.nl>
4545 L:      linux-media@vger.kernel.org
4546 S:      Maintained
4547 W:      https://linuxtv.org
4548 T:      git git://linuxtv.org/media_tree.git
4549 F:      drivers/media/radio/radio-cadet*
4550
4551 CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
4552 L:      linux-media@vger.kernel.org
4553 S:      Orphan
4554 T:      git git://linuxtv.org/media_tree.git
4555 F:      Documentation/admin-guide/media/cafe_ccic*
4556 F:      drivers/media/platform/marvell/
4557
4558 CAIF NETWORK LAYER
4559 L:      netdev@vger.kernel.org
4560 S:      Orphan
4561 F:      Documentation/networking/caif/
4562 F:      drivers/net/caif/
4563 F:      include/net/caif/
4564 F:      include/uapi/linux/caif/
4565 F:      net/caif/
4566
4567 CAKE QDISC
4568 M:      Toke Høiland-Jørgensen <toke@toke.dk>
4569 L:      cake@lists.bufferbloat.net (moderated for non-subscribers)
4570 S:      Maintained
4571 F:      net/sched/sch_cake.c
4572
4573 CAN NETWORK DRIVERS
4574 M:      Wolfgang Grandegger <wg@grandegger.com>
4575 M:      Marc Kleine-Budde <mkl@pengutronix.de>
4576 L:      linux-can@vger.kernel.org
4577 S:      Maintained
4578 W:      https://github.com/linux-can
4579 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
4580 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
4581 F:      Documentation/devicetree/bindings/net/can/
4582 F:      Documentation/devicetree/bindings/phy/ti,tcan104x-can.yaml
4583 F:      drivers/net/can/
4584 F:      drivers/phy/phy-can-transceiver.c
4585 F:      include/linux/can/bittiming.h
4586 F:      include/linux/can/dev.h
4587 F:      include/linux/can/length.h
4588 F:      include/linux/can/platform/
4589 F:      include/linux/can/rx-offload.h
4590 F:      include/uapi/linux/can/error.h
4591 F:      include/uapi/linux/can/netlink.h
4592 F:      include/uapi/linux/can/vxcan.h
4593
4594 CAN NETWORK LAYER
4595 M:      Oliver Hartkopp <socketcan@hartkopp.net>
4596 M:      Marc Kleine-Budde <mkl@pengutronix.de>
4597 L:      linux-can@vger.kernel.org
4598 S:      Maintained
4599 W:      https://github.com/linux-can
4600 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
4601 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
4602 F:      Documentation/networking/can.rst
4603 F:      include/linux/can/can-ml.h
4604 F:      include/linux/can/core.h
4605 F:      include/linux/can/skb.h
4606 F:      include/net/netns/can.h
4607 F:      include/uapi/linux/can.h
4608 F:      include/uapi/linux/can/bcm.h
4609 F:      include/uapi/linux/can/gw.h
4610 F:      include/uapi/linux/can/isotp.h
4611 F:      include/uapi/linux/can/raw.h
4612 F:      net/can/
4613
4614 CAN-J1939 NETWORK LAYER
4615 M:      Robin van der Gracht <robin@protonic.nl>
4616 M:      Oleksij Rempel <o.rempel@pengutronix.de>
4617 R:      kernel@pengutronix.de
4618 L:      linux-can@vger.kernel.org
4619 S:      Maintained
4620 F:      Documentation/networking/j1939.rst
4621 F:      include/uapi/linux/can/j1939.h
4622 F:      net/can/j1939/
4623
4624 CAPABILITIES
4625 M:      Serge Hallyn <serge@hallyn.com>
4626 L:      linux-security-module@vger.kernel.org
4627 S:      Supported
4628 F:      include/linux/capability.h
4629 F:      include/uapi/linux/capability.h
4630 F:      kernel/capability.c
4631 F:      security/commoncap.c
4632
4633 CAPELLA MICROSYSTEMS LIGHT SENSOR DRIVER
4634 M:      Kevin Tsai <ktsai@capellamicro.com>
4635 S:      Maintained
4636 F:      drivers/iio/light/cm*
4637
4638 CARL9170 LINUX COMMUNITY WIRELESS DRIVER
4639 M:      Christian Lamparter <chunkeey@googlemail.com>
4640 L:      linux-wireless@vger.kernel.org
4641 S:      Maintained
4642 W:      https://wireless.wiki.kernel.org/en/users/Drivers/carl9170
4643 F:      drivers/net/wireless/ath/carl9170/
4644
4645 CAVIUM I2C DRIVER
4646 M:      Robert Richter <rric@kernel.org>
4647 S:      Odd Fixes
4648 W:      http://www.marvell.com
4649 F:      drivers/i2c/busses/i2c-octeon*
4650 F:      drivers/i2c/busses/i2c-thunderx*
4651
4652 CAVIUM LIQUIDIO NETWORK DRIVER
4653 M:      Derek Chickles <dchickles@marvell.com>
4654 M:      Satanand Burla <sburla@marvell.com>
4655 M:      Felix Manlunas <fmanlunas@marvell.com>
4656 L:      netdev@vger.kernel.org
4657 S:      Supported
4658 W:      http://www.marvell.com
4659 F:      drivers/net/ethernet/cavium/liquidio/
4660
4661 CAVIUM MMC DRIVER
4662 M:      Robert Richter <rric@kernel.org>
4663 S:      Odd Fixes
4664 W:      http://www.marvell.com
4665 F:      drivers/mmc/host/cavium*
4666
4667 CAVIUM OCTEON-TX CRYPTO DRIVER
4668 M:      George Cherian <gcherian@marvell.com>
4669 L:      linux-crypto@vger.kernel.org
4670 S:      Supported
4671 W:      http://www.marvell.com
4672 F:      drivers/crypto/cavium/cpt/
4673
4674 CAVIUM THUNDERX2 ARM64 SOC
4675 M:      Robert Richter <rric@kernel.org>
4676 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4677 S:      Odd Fixes
4678 F:      Documentation/devicetree/bindings/arm/cavium-thunder2.txt
4679 F:      arch/arm64/boot/dts/cavium/thunder2-99xx*
4680
4681 CBS/ETF/TAPRIO QDISCS
4682 M:      Vinicius Costa Gomes <vinicius.gomes@intel.com>
4683 S:      Maintained
4684 L:      netdev@vger.kernel.org
4685 F:      net/sched/sch_cbs.c
4686 F:      net/sched/sch_etf.c
4687 F:      net/sched/sch_taprio.c
4688
4689 CC2520 IEEE-802.15.4 RADIO DRIVER
4690 M:      Stefan Schmidt <stefan@datenfreihafen.org>
4691 L:      linux-wpan@vger.kernel.org
4692 S:      Odd Fixes
4693 F:      Documentation/devicetree/bindings/net/ieee802154/cc2520.txt
4694 F:      drivers/net/ieee802154/cc2520.c
4695
4696 CCREE ARM TRUSTZONE CRYPTOCELL REE DRIVER
4697 M:      Gilad Ben-Yossef <gilad@benyossef.com>
4698 L:      linux-crypto@vger.kernel.org
4699 S:      Supported
4700 W:      https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
4701 F:      drivers/crypto/ccree/
4702
4703 CCTRNG ARM TRUSTZONE CRYPTOCELL TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
4704 M:      Hadar Gat <hadar.gat@arm.com>
4705 L:      linux-crypto@vger.kernel.org
4706 S:      Supported
4707 F:      drivers/char/hw_random/cctrng.c
4708 F:      drivers/char/hw_random/cctrng.h
4709 F:      Documentation/devicetree/bindings/rng/arm-cctrng.yaml
4710 W:      https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
4711
4712 CEC FRAMEWORK
4713 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
4714 L:      linux-media@vger.kernel.org
4715 S:      Supported
4716 W:      http://linuxtv.org
4717 T:      git git://linuxtv.org/media_tree.git
4718 F:      Documentation/ABI/testing/debugfs-cec-error-inj
4719 F:      Documentation/devicetree/bindings/media/cec/cec-common.yaml
4720 F:      Documentation/driver-api/media/cec-core.rst
4721 F:      Documentation/userspace-api/media/cec
4722 F:      drivers/media/cec/
4723 F:      drivers/media/rc/keymaps/rc-cec.c
4724 F:      include/media/cec-notifier.h
4725 F:      include/media/cec.h
4726 F:      include/uapi/linux/cec-funcs.h
4727 F:      include/uapi/linux/cec.h
4728
4729 CEC GPIO DRIVER
4730 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
4731 L:      linux-media@vger.kernel.org
4732 S:      Supported
4733 W:      http://linuxtv.org
4734 T:      git git://linuxtv.org/media_tree.git
4735 F:      Documentation/devicetree/bindings/media/cec/cec-gpio.yaml
4736 F:      drivers/media/cec/platform/cec-gpio/
4737
4738 CELL BROADBAND ENGINE ARCHITECTURE
4739 M:      Arnd Bergmann <arnd@arndb.de>
4740 L:      linuxppc-dev@lists.ozlabs.org
4741 S:      Supported
4742 W:      http://www.ibm.com/developerworks/power/cell/
4743 F:      arch/powerpc/include/asm/cell*.h
4744 F:      arch/powerpc/include/asm/spu*.h
4745 F:      arch/powerpc/include/uapi/asm/spu*.h
4746 F:      arch/powerpc/platforms/cell/
4747
4748 CELLWISE CW2015 BATTERY DRIVER
4749 M:      Tobias Schrammm <t.schramm@manjaro.org>
4750 S:      Maintained
4751 F:      Documentation/devicetree/bindings/power/supply/cw2015_battery.yaml
4752 F:      drivers/power/supply/cw2015_battery.c
4753
4754 CEPH COMMON CODE (LIBCEPH)
4755 M:      Ilya Dryomov <idryomov@gmail.com>
4756 M:      Xiubo Li <xiubli@redhat.com>
4757 R:      Jeff Layton <jlayton@kernel.org>
4758 L:      ceph-devel@vger.kernel.org
4759 S:      Supported
4760 W:      http://ceph.com/
4761 T:      git https://github.com/ceph/ceph-client.git
4762 F:      include/linux/ceph/
4763 F:      include/linux/crush/
4764 F:      net/ceph/
4765
4766 CEPH DISTRIBUTED FILE SYSTEM CLIENT (CEPH)
4767 M:      Xiubo Li <xiubli@redhat.com>
4768 M:      Ilya Dryomov <idryomov@gmail.com>
4769 R:      Jeff Layton <jlayton@kernel.org>
4770 L:      ceph-devel@vger.kernel.org
4771 S:      Supported
4772 W:      http://ceph.com/
4773 T:      git https://github.com/ceph/ceph-client.git
4774 F:      Documentation/filesystems/ceph.rst
4775 F:      fs/ceph/
4776
4777 CERTIFICATE HANDLING
4778 M:      David Howells <dhowells@redhat.com>
4779 M:      David Woodhouse <dwmw2@infradead.org>
4780 L:      keyrings@vger.kernel.org
4781 S:      Maintained
4782 F:      Documentation/admin-guide/module-signing.rst
4783 F:      certs/
4784 F:      scripts/sign-file.c
4785 F:      tools/certs/
4786
4787 CFAG12864B LCD DRIVER
4788 M:      Miguel Ojeda <ojeda@kernel.org>
4789 S:      Maintained
4790 F:      drivers/auxdisplay/cfag12864b.c
4791 F:      include/linux/cfag12864b.h
4792
4793 CFAG12864BFB LCD FRAMEBUFFER DRIVER
4794 M:      Miguel Ojeda <ojeda@kernel.org>
4795 S:      Maintained
4796 F:      drivers/auxdisplay/cfag12864bfb.c
4797 F:      include/linux/cfag12864b.h
4798
4799 CHAR and MISC DRIVERS
4800 M:      Arnd Bergmann <arnd@arndb.de>
4801 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4802 S:      Supported
4803 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
4804 F:      drivers/char/
4805 F:      drivers/misc/
4806 F:      include/linux/miscdevice.h
4807 X:      drivers/char/agp/
4808 X:      drivers/char/hw_random/
4809 X:      drivers/char/ipmi/
4810 X:      drivers/char/random.c
4811 X:      drivers/char/tpm/
4812
4813 CHECKPATCH
4814 M:      Andy Whitcroft <apw@canonical.com>
4815 M:      Joe Perches <joe@perches.com>
4816 R:      Dwaipayan Ray <dwaipayanray1@gmail.com>
4817 R:      Lukas Bulwahn <lukas.bulwahn@gmail.com>
4818 S:      Maintained
4819 F:      scripts/checkpatch.pl
4820
4821 CHECKPATCH DOCUMENTATION
4822 M:      Dwaipayan Ray <dwaipayanray1@gmail.com>
4823 M:      Lukas Bulwahn <lukas.bulwahn@gmail.com>
4824 R:      Joe Perches <joe@perches.com>
4825 S:      Maintained
4826 F:      Documentation/dev-tools/checkpatch.rst
4827
4828 CHINESE DOCUMENTATION
4829 M:      Alex Shi <alexs@kernel.org>
4830 M:      Yanteng Si <siyanteng@loongson.cn>
4831 S:      Maintained
4832 F:      Documentation/translations/zh_CN/
4833
4834 CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
4835 M:      Peter Chen <peter.chen@kernel.org>
4836 L:      linux-usb@vger.kernel.org
4837 S:      Maintained
4838 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4839 F:      drivers/usb/chipidea/
4840
4841 CHIPONE ICN8318 I2C TOUCHSCREEN DRIVER
4842 M:      Hans de Goede <hdegoede@redhat.com>
4843 L:      linux-input@vger.kernel.org
4844 S:      Maintained
4845 F:      Documentation/devicetree/bindings/input/touchscreen/chipone,icn8318.yaml
4846 F:      drivers/input/touchscreen/chipone_icn8318.c
4847
4848 CHIPONE ICN8505 I2C TOUCHSCREEN DRIVER
4849 M:      Hans de Goede <hdegoede@redhat.com>
4850 L:      linux-input@vger.kernel.org
4851 S:      Maintained
4852 F:      drivers/input/touchscreen/chipone_icn8505.c
4853
4854 CHROME HARDWARE PLATFORM SUPPORT
4855 M:      Benson Leung <bleung@chromium.org>
4856 L:      chrome-platform@lists.linux.dev
4857 S:      Maintained
4858 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chrome-platform/linux.git
4859 F:      drivers/platform/chrome/
4860
4861 CHROMEOS EC CODEC DRIVER
4862 M:      Cheng-Yi Chiang <cychiang@chromium.org>
4863 M:      Tzung-Bi Shih <tzungbi@kernel.org>
4864 R:      Guenter Roeck <groeck@chromium.org>
4865 L:      chrome-platform@lists.linux.dev
4866 S:      Maintained
4867 F:      Documentation/devicetree/bindings/sound/google,cros-ec-codec.yaml
4868 F:      sound/soc/codecs/cros_ec_codec.*
4869
4870 CHROMEOS EC UART DRIVER
4871 M:      Bhanu Prakash Maiya <bhanumaiya@chromium.org>
4872 R:      Benson Leung <bleung@chromium.org>
4873 R:      Tzung-Bi Shih <tzungbi@kernel.org>
4874 S:      Maintained
4875 F:      drivers/platform/chrome/cros_ec_uart.c
4876
4877 CHROMEOS EC SUBDRIVERS
4878 M:      Benson Leung <bleung@chromium.org>
4879 R:      Guenter Roeck <groeck@chromium.org>
4880 L:      chrome-platform@lists.linux.dev
4881 S:      Maintained
4882 F:      drivers/power/supply/cros_usbpd-charger.c
4883 N:      cros_ec
4884 N:      cros-ec
4885
4886 CHROMEOS EC USB TYPE-C DRIVER
4887 M:      Prashant Malani <pmalani@chromium.org>
4888 L:      chrome-platform@lists.linux.dev
4889 S:      Maintained
4890 F:      drivers/platform/chrome/cros_ec_typec.*
4891 F:      drivers/platform/chrome/cros_typec_switch.c
4892 F:      drivers/platform/chrome/cros_typec_vdm.*
4893
4894 CHROMEOS EC USB PD NOTIFY DRIVER
4895 M:      Prashant Malani <pmalani@chromium.org>
4896 L:      chrome-platform@lists.linux.dev
4897 S:      Maintained
4898 F:      drivers/platform/chrome/cros_usbpd_notify.c
4899 F:      include/linux/platform_data/cros_usbpd_notify.h
4900
4901 CHROMEOS HPS DRIVER
4902 M:      Dan Callaghan <dcallagh@chromium.org>
4903 R:      Sami Kyöstilä <skyostil@chromium.org>
4904 S:      Maintained
4905 F:      drivers/platform/chrome/cros_hps_i2c.c
4906
4907 CHRONTEL CH7322 CEC DRIVER
4908 M:      Joe Tessler <jrt@google.com>
4909 L:      linux-media@vger.kernel.org
4910 S:      Maintained
4911 T:      git git://linuxtv.org/media_tree.git
4912 F:      Documentation/devicetree/bindings/media/i2c/chrontel,ch7322.yaml
4913 F:      drivers/media/cec/i2c/ch7322.c
4914
4915 CIRRUS LOGIC AUDIO CODEC DRIVERS
4916 M:      James Schulman <james.schulman@cirrus.com>
4917 M:      David Rhodes <david.rhodes@cirrus.com>
4918 M:      Lucas Tanure <tanureal@opensource.cirrus.com>
4919 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4920 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4921 L:      patches@opensource.cirrus.com
4922 S:      Maintained
4923 F:      Documentation/devicetree/bindings/sound/cirrus,cs*
4924 F:      include/dt-bindings/sound/cs*
4925 F:      sound/pci/hda/cs*
4926 F:      sound/pci/hda/hda_cs_dsp_ctl.*
4927 F:      sound/soc/codecs/cs*
4928
4929 CIRRUS LOGIC DSP FIRMWARE DRIVER
4930 M:      Simon Trimmer <simont@opensource.cirrus.com>
4931 M:      Charles Keepax <ckeepax@opensource.cirrus.com>
4932 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4933 L:      patches@opensource.cirrus.com
4934 S:      Supported
4935 W:      https://github.com/CirrusLogic/linux-drivers/wiki
4936 T:      git https://github.com/CirrusLogic/linux-drivers.git
4937 F:      drivers/firmware/cirrus/*
4938 F:      include/linux/firmware/cirrus/*
4939
4940 CIRRUS LOGIC EP93XX ETHERNET DRIVER
4941 M:      Hartley Sweeten <hsweeten@visionengravers.com>
4942 L:      netdev@vger.kernel.org
4943 S:      Maintained
4944 F:      drivers/net/ethernet/cirrus/ep93xx_eth.c
4945
4946 CIRRUS LOGIC LOCHNAGAR DRIVER
4947 M:      Charles Keepax <ckeepax@opensource.cirrus.com>
4948 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4949 L:      patches@opensource.cirrus.com
4950 S:      Supported
4951 F:      Documentation/devicetree/bindings/clock/cirrus,lochnagar.yaml
4952 F:      Documentation/devicetree/bindings/hwmon/cirrus,lochnagar.yaml
4953 F:      Documentation/devicetree/bindings/mfd/cirrus,lochnagar.yaml
4954 F:      Documentation/devicetree/bindings/pinctrl/cirrus,lochnagar.yaml
4955 F:      Documentation/devicetree/bindings/sound/cirrus,lochnagar.yaml
4956 F:      Documentation/hwmon/lochnagar.rst
4957 F:      drivers/clk/clk-lochnagar.c
4958 F:      drivers/hwmon/lochnagar-hwmon.c
4959 F:      drivers/mfd/lochnagar-i2c.c
4960 F:      drivers/pinctrl/cirrus/pinctrl-lochnagar.c
4961 F:      drivers/regulator/lochnagar-regulator.c
4962 F:      include/dt-bindings/clock/lochnagar.h
4963 F:      include/dt-bindings/pinctrl/lochnagar.h
4964 F:      include/linux/mfd/lochnagar*
4965 F:      sound/soc/codecs/lochnagar-sc.c
4966
4967 CIRRUS LOGIC MADERA CODEC DRIVERS
4968 M:      Charles Keepax <ckeepax@opensource.cirrus.com>
4969 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4970 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4971 L:      patches@opensource.cirrus.com
4972 S:      Supported
4973 W:      https://github.com/CirrusLogic/linux-drivers/wiki
4974 T:      git https://github.com/CirrusLogic/linux-drivers.git
4975 F:      Documentation/devicetree/bindings/mfd/cirrus,madera.yaml
4976 F:      Documentation/devicetree/bindings/pinctrl/cirrus,madera.yaml
4977 F:      Documentation/devicetree/bindings/sound/cirrus,madera.yaml
4978 F:      drivers/gpio/gpio-madera*
4979 F:      drivers/irqchip/irq-madera*
4980 F:      drivers/mfd/cs47l*
4981 F:      drivers/mfd/madera*
4982 F:      drivers/pinctrl/cirrus/*
4983 F:      include/dt-bindings/sound/madera*
4984 F:      include/linux/irqchip/irq-madera*
4985 F:      include/linux/mfd/madera/*
4986 F:      include/sound/madera*
4987 F:      sound/soc/codecs/cs47l*
4988 F:      sound/soc/codecs/madera*
4989
4990 CISCO FCOE HBA DRIVER
4991 M:      Satish Kharat <satishkh@cisco.com>
4992 M:      Sesidhar Baddela <sebaddel@cisco.com>
4993 M:      Karan Tilak Kumar <kartilak@cisco.com>
4994 L:      linux-scsi@vger.kernel.org
4995 S:      Supported
4996 F:      drivers/scsi/fnic/
4997
4998 CISCO SCSI HBA DRIVER
4999 M:      Karan Tilak Kumar <kartilak@cisco.com>
5000 M:      Sesidhar Baddela <sebaddel@cisco.com>
5001 L:      linux-scsi@vger.kernel.org
5002 S:      Supported
5003 F:      drivers/scsi/snic/
5004
5005 CISCO VIC ETHERNET NIC DRIVER
5006 M:      Christian Benvenuti <benve@cisco.com>
5007 M:      Satish Kharat <satishkh@cisco.com>
5008 S:      Supported
5009 F:      drivers/net/ethernet/cisco/enic/
5010
5011 CISCO VIC LOW LATENCY NIC DRIVER
5012 M:      Christian Benvenuti <benve@cisco.com>
5013 M:      Nelson Escobar <neescoba@cisco.com>
5014 S:      Supported
5015 F:      drivers/infiniband/hw/usnic/
5016
5017 CLANG-FORMAT FILE
5018 M:      Miguel Ojeda <ojeda@kernel.org>
5019 S:      Maintained
5020 F:      .clang-format
5021
5022 CLANG/LLVM BUILD SUPPORT
5023 M:      Nathan Chancellor <nathan@kernel.org>
5024 M:      Nick Desaulniers <ndesaulniers@google.com>
5025 R:      Tom Rix <trix@redhat.com>
5026 L:      llvm@lists.linux.dev
5027 S:      Supported
5028 W:      https://clangbuiltlinux.github.io/
5029 B:      https://github.com/ClangBuiltLinux/linux/issues
5030 C:      irc://irc.libera.chat/clangbuiltlinux
5031 F:      Documentation/kbuild/llvm.rst
5032 F:      include/linux/compiler-clang.h
5033 F:      scripts/Makefile.clang
5034 F:      scripts/clang-tools/
5035 K:      \b(?i:clang|llvm)\b
5036
5037 CLANG CONTROL FLOW INTEGRITY SUPPORT
5038 M:      Sami Tolvanen <samitolvanen@google.com>
5039 M:      Kees Cook <keescook@chromium.org>
5040 R:      Nathan Chancellor <nathan@kernel.org>
5041 R:      Nick Desaulniers <ndesaulniers@google.com>
5042 L:      llvm@lists.linux.dev
5043 S:      Supported
5044 B:      https://github.com/ClangBuiltLinux/linux/issues
5045 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/hardening
5046 F:      include/linux/cfi.h
5047 F:      kernel/cfi.c
5048
5049 CLK API
5050 M:      Russell King <linux@armlinux.org.uk>
5051 L:      linux-clk@vger.kernel.org
5052 S:      Maintained
5053 F:      include/linux/clk.h
5054
5055 CLOCKSOURCE, CLOCKEVENT DRIVERS
5056 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
5057 M:      Thomas Gleixner <tglx@linutronix.de>
5058 L:      linux-kernel@vger.kernel.org
5059 S:      Supported
5060 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
5061 F:      Documentation/devicetree/bindings/timer/
5062 F:      drivers/clocksource/
5063
5064 CMPC ACPI DRIVER
5065 M:      Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
5066 M:      Daniel Oliveira Nascimento <don@syst.com.br>
5067 L:      platform-driver-x86@vger.kernel.org
5068 S:      Supported
5069 F:      drivers/platform/x86/classmate-laptop.c
5070
5071 COBALT MEDIA DRIVER
5072 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
5073 L:      linux-media@vger.kernel.org
5074 S:      Supported
5075 W:      https://linuxtv.org
5076 T:      git git://linuxtv.org/media_tree.git
5077 F:      drivers/media/pci/cobalt/
5078
5079 COCCINELLE/Semantic Patches (SmPL)
5080 M:      Julia Lawall <Julia.Lawall@inria.fr>
5081 M:      Nicolas Palix <nicolas.palix@imag.fr>
5082 L:      cocci@inria.fr (moderated for non-subscribers)
5083 S:      Supported
5084 W:      https://coccinelle.gitlabpages.inria.fr/website/
5085 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jlawall/linux.git
5086 F:      Documentation/dev-tools/coccinelle.rst
5087 F:      scripts/coccicheck
5088 F:      scripts/coccinelle/
5089
5090 CODA FILE SYSTEM
5091 M:      Jan Harkes <jaharkes@cs.cmu.edu>
5092 M:      coda@cs.cmu.edu
5093 L:      codalist@coda.cs.cmu.edu
5094 S:      Maintained
5095 W:      http://www.coda.cs.cmu.edu/
5096 F:      Documentation/filesystems/coda.rst
5097 F:      fs/coda/
5098 F:      include/linux/coda*.h
5099 F:      include/uapi/linux/coda*.h
5100
5101 CODA V4L2 MEM2MEM DRIVER
5102 M:      Philipp Zabel <p.zabel@pengutronix.de>
5103 L:      linux-media@vger.kernel.org
5104 S:      Maintained
5105 F:      Documentation/devicetree/bindings/media/coda.yaml
5106 F:      drivers/media/platform/chips-media/
5107
5108 CODE OF CONDUCT
5109 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
5110 S:      Supported
5111 F:      Documentation/process/code-of-conduct-interpretation.rst
5112 F:      Documentation/process/code-of-conduct.rst
5113
5114 COMEDI DRIVERS
5115 M:      Ian Abbott <abbotti@mev.co.uk>
5116 M:      H Hartley Sweeten <hsweeten@visionengravers.com>
5117 S:      Odd Fixes
5118 F:      drivers/comedi/
5119 F:      include/linux/comedi/
5120 F:      include/uapi/linux/comedi.h
5121
5122 COMMON CLK FRAMEWORK
5123 M:      Michael Turquette <mturquette@baylibre.com>
5124 M:      Stephen Boyd <sboyd@kernel.org>
5125 L:      linux-clk@vger.kernel.org
5126 S:      Maintained
5127 Q:      http://patchwork.kernel.org/project/linux-clk/list/
5128 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git
5129 F:      Documentation/devicetree/bindings/clock/
5130 F:      drivers/clk/
5131 F:      include/dt-bindings/clock/
5132 F:      include/linux/clk-pr*
5133 F:      include/linux/clk/
5134 F:      include/linux/of_clk.h
5135 X:      drivers/clk/clkdev.c
5136
5137 COMMON INTERNET FILE SYSTEM CLIENT (CIFS and SMB3)
5138 M:      Steve French <sfrench@samba.org>
5139 R:      Paulo Alcantara <pc@cjr.nz> (DFS, global name space)
5140 R:      Ronnie Sahlberg <lsahlber@redhat.com> (directory leases, sparse files)
5141 R:      Shyam Prasad N <sprasad@microsoft.com> (multichannel)
5142 R:      Tom Talpey <tom@talpey.com> (RDMA, smbdirect)
5143 L:      linux-cifs@vger.kernel.org
5144 L:      samba-technical@lists.samba.org (moderated for non-subscribers)
5145 S:      Supported
5146 W:      https://wiki.samba.org/index.php/LinuxCIFS
5147 T:      git git://git.samba.org/sfrench/cifs-2.6.git
5148 F:      Documentation/admin-guide/cifs/
5149 F:      fs/cifs/
5150 F:      fs/smbfs_common/
5151 F:      include/uapi/linux/cifs
5152
5153 COMPACTPCI HOTPLUG CORE
5154 M:      Scott Murray <scott@spiteful.org>
5155 L:      linux-pci@vger.kernel.org
5156 S:      Maintained
5157 F:      drivers/pci/hotplug/cpci_hotplug*
5158
5159 COMPACTPCI HOTPLUG GENERIC DRIVER
5160 M:      Scott Murray <scott@spiteful.org>
5161 L:      linux-pci@vger.kernel.org
5162 S:      Maintained
5163 F:      drivers/pci/hotplug/cpcihp_generic.c
5164
5165 COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
5166 M:      Scott Murray <scott@spiteful.org>
5167 L:      linux-pci@vger.kernel.org
5168 S:      Maintained
5169 F:      drivers/pci/hotplug/cpcihp_zt5550.*
5170
5171 COMPAL LAPTOP SUPPORT
5172 M:      Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
5173 L:      platform-driver-x86@vger.kernel.org
5174 S:      Maintained
5175 F:      drivers/platform/x86/compal-laptop.c
5176
5177 COMPILER ATTRIBUTES
5178 M:      Miguel Ojeda <ojeda@kernel.org>
5179 R:      Nick Desaulniers <ndesaulniers@google.com>
5180 S:      Maintained
5181 F:      include/linux/compiler_attributes.h
5182
5183 COMPUTE EXPRESS LINK (CXL)
5184 M:      Alison Schofield <alison.schofield@intel.com>
5185 M:      Vishal Verma <vishal.l.verma@intel.com>
5186 M:      Ira Weiny <ira.weiny@intel.com>
5187 M:      Ben Widawsky <bwidawsk@kernel.org>
5188 M:      Dan Williams <dan.j.williams@intel.com>
5189 L:      linux-cxl@vger.kernel.org
5190 S:      Maintained
5191 F:      drivers/cxl/
5192 F:      include/uapi/linux/cxl_mem.h
5193
5194 CONEXANT ACCESSRUNNER USB DRIVER
5195 L:      accessrunner-general@lists.sourceforge.net
5196 S:      Orphan
5197 W:      http://accessrunner.sourceforge.net/
5198 F:      drivers/usb/atm/cxacru.c
5199
5200 CONFIGFS
5201 M:      Joel Becker <jlbec@evilplan.org>
5202 M:      Christoph Hellwig <hch@lst.de>
5203 S:      Supported
5204 T:      git git://git.infradead.org/users/hch/configfs.git
5205 F:      fs/configfs/
5206 F:      include/linux/configfs.h
5207 F:      samples/configfs/
5208
5209 CONSOLE SUBSYSTEM
5210 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
5211 S:      Supported
5212 F:      drivers/video/console/
5213 F:      include/linux/console*
5214
5215 CONTEXT TRACKING
5216 M:      Frederic Weisbecker <frederic@kernel.org>
5217 M:      "Paul E. McKenney" <paulmck@kernel.org>
5218 S:      Maintained
5219 F:      kernel/context_tracking.c
5220 F:      include/linux/context_tracking*
5221
5222 CONTROL GROUP (CGROUP)
5223 M:      Tejun Heo <tj@kernel.org>
5224 M:      Zefan Li <lizefan.x@bytedance.com>
5225 M:      Johannes Weiner <hannes@cmpxchg.org>
5226 L:      cgroups@vger.kernel.org
5227 S:      Maintained
5228 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
5229 F:      Documentation/admin-guide/cgroup-v1/
5230 F:      Documentation/admin-guide/cgroup-v2.rst
5231 F:      include/linux/cgroup*
5232 F:      kernel/cgroup/
5233 F:      tools/testing/selftests/cgroup/
5234
5235 CONTROL GROUP - BLOCK IO CONTROLLER (BLKIO)
5236 M:      Tejun Heo <tj@kernel.org>
5237 M:      Josef Bacik <josef@toxicpanda.com>
5238 M:      Jens Axboe <axboe@kernel.dk>
5239 L:      cgroups@vger.kernel.org
5240 L:      linux-block@vger.kernel.org
5241 T:      git git://git.kernel.dk/linux-block
5242 F:      Documentation/admin-guide/cgroup-v1/blkio-controller.rst
5243 F:      block/bfq-cgroup.c
5244 F:      block/blk-cgroup.c
5245 F:      block/blk-iocost.c
5246 F:      block/blk-iolatency.c
5247 F:      block/blk-throttle.c
5248 F:      include/linux/blk-cgroup.h
5249
5250 CONTROL GROUP - CPUSET
5251 M:      Waiman Long <longman@redhat.com>
5252 M:      Zefan Li <lizefan.x@bytedance.com>
5253 L:      cgroups@vger.kernel.org
5254 S:      Maintained
5255 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
5256 F:      Documentation/admin-guide/cgroup-v1/cpusets.rst
5257 F:      include/linux/cpuset.h
5258 F:      kernel/cgroup/cpuset.c
5259
5260 CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG)
5261 M:      Johannes Weiner <hannes@cmpxchg.org>
5262 M:      Michal Hocko <mhocko@kernel.org>
5263 M:      Roman Gushchin <roman.gushchin@linux.dev>
5264 M:      Shakeel Butt <shakeelb@google.com>
5265 R:      Muchun Song <muchun.song@linux.dev>
5266 L:      cgroups@vger.kernel.org
5267 L:      linux-mm@kvack.org
5268 S:      Maintained
5269 F:      mm/memcontrol.c
5270 F:      mm/swap_cgroup.c
5271 F:      tools/testing/selftests/cgroup/memcg_protection.m
5272 F:      tools/testing/selftests/cgroup/test_kmem.c
5273 F:      tools/testing/selftests/cgroup/test_memcontrol.c
5274
5275 CORETEMP HARDWARE MONITORING DRIVER
5276 M:      Fenghua Yu <fenghua.yu@intel.com>
5277 L:      linux-hwmon@vger.kernel.org
5278 S:      Maintained
5279 F:      Documentation/hwmon/coretemp.rst
5280 F:      drivers/hwmon/coretemp.c
5281
5282 CORSAIR-CPRO HARDWARE MONITOR DRIVER
5283 M:      Marius Zachmann <mail@mariuszachmann.de>
5284 L:      linux-hwmon@vger.kernel.org
5285 S:      Maintained
5286 F:      drivers/hwmon/corsair-cpro.c
5287
5288 CORSAIR-PSU HARDWARE MONITOR DRIVER
5289 M:      Wilken Gottwalt <wilken.gottwalt@posteo.net>
5290 L:      linux-hwmon@vger.kernel.org
5291 S:      Maintained
5292 F:      Documentation/hwmon/corsair-psu.rst
5293 F:      drivers/hwmon/corsair-psu.c
5294
5295 COUNTER SUBSYSTEM
5296 M:      William Breathitt Gray <william.gray@linaro.org>
5297 L:      linux-iio@vger.kernel.org
5298 S:      Maintained
5299 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wbg/counter.git
5300 F:      Documentation/ABI/testing/sysfs-bus-counter
5301 F:      Documentation/driver-api/generic-counter.rst
5302 F:      drivers/counter/
5303 F:      include/linux/counter.h
5304 F:      include/uapi/linux/counter.h
5305 F:      tools/counter/
5306
5307 CP2615 I2C DRIVER
5308 M:      Bence Csókás <bence98@sch.bme.hu>
5309 S:      Maintained
5310 F:      drivers/i2c/busses/i2c-cp2615.c
5311
5312 CPMAC ETHERNET DRIVER
5313 M:      Florian Fainelli <f.fainelli@gmail.com>
5314 L:      netdev@vger.kernel.org
5315 S:      Maintained
5316 F:      drivers/net/ethernet/ti/cpmac.c
5317
5318 CPU FREQUENCY DRIVERS - VEXPRESS SPC ARM BIG LITTLE
5319 M:      Viresh Kumar <viresh.kumar@linaro.org>
5320 M:      Sudeep Holla <sudeep.holla@arm.com>
5321 L:      linux-pm@vger.kernel.org
5322 S:      Maintained
5323 W:      http://www.arm.com/products/processors/technologies/biglittleprocessing.php
5324 F:      drivers/cpufreq/vexpress-spc-cpufreq.c
5325
5326 CPU FREQUENCY SCALING FRAMEWORK
5327 M:      "Rafael J. Wysocki" <rafael@kernel.org>
5328 M:      Viresh Kumar <viresh.kumar@linaro.org>
5329 L:      linux-pm@vger.kernel.org
5330 S:      Maintained
5331 B:      https://bugzilla.kernel.org
5332 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
5333 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git (For ARM Updates)
5334 F:      Documentation/admin-guide/pm/cpufreq.rst
5335 F:      Documentation/admin-guide/pm/intel_pstate.rst
5336 F:      Documentation/cpu-freq/
5337 F:      Documentation/devicetree/bindings/cpufreq/
5338 F:      drivers/cpufreq/
5339 F:      include/linux/cpufreq.h
5340 F:      include/linux/sched/cpufreq.h
5341 F:      kernel/sched/cpufreq*.c
5342 F:      tools/testing/selftests/cpufreq/
5343
5344 CPU IDLE TIME MANAGEMENT FRAMEWORK
5345 M:      "Rafael J. Wysocki" <rafael@kernel.org>
5346 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
5347 L:      linux-pm@vger.kernel.org
5348 S:      Maintained
5349 B:      https://bugzilla.kernel.org
5350 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
5351 F:      Documentation/admin-guide/pm/cpuidle.rst
5352 F:      Documentation/driver-api/pm/cpuidle.rst
5353 F:      drivers/cpuidle/
5354 F:      include/linux/cpuidle.h
5355
5356 CPU POWER MONITORING SUBSYSTEM
5357 M:      Thomas Renninger <trenn@suse.com>
5358 M:      Shuah Khan <shuah@kernel.org>
5359 M:      Shuah Khan <skhan@linuxfoundation.org>
5360 L:      linux-pm@vger.kernel.org
5361 S:      Maintained
5362 F:      tools/power/cpupower/
5363
5364 CPUID/MSR DRIVER
5365 M:      "H. Peter Anvin" <hpa@zytor.com>
5366 S:      Maintained
5367 F:      arch/x86/kernel/cpuid.c
5368 F:      arch/x86/kernel/msr.c
5369
5370 CPUIDLE DRIVER - ARM BIG LITTLE
5371 M:      Lorenzo Pieralisi <lpieralisi@kernel.org>
5372 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
5373 L:      linux-pm@vger.kernel.org
5374 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5375 S:      Maintained
5376 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
5377 F:      drivers/cpuidle/cpuidle-big_little.c
5378
5379 CPUIDLE DRIVER - ARM EXYNOS
5380 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
5381 R:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
5382 M:      Kukjin Kim <kgene@kernel.org>
5383 L:      linux-pm@vger.kernel.org
5384 L:      linux-samsung-soc@vger.kernel.org
5385 S:      Supported
5386 F:      arch/arm/mach-exynos/pm.c
5387 F:      drivers/cpuidle/cpuidle-exynos.c
5388 F:      include/linux/platform_data/cpuidle-exynos.h
5389
5390 CPUIDLE DRIVER - ARM PSCI
5391 M:      Lorenzo Pieralisi <lpieralisi@kernel.org>
5392 M:      Sudeep Holla <sudeep.holla@arm.com>
5393 L:      linux-pm@vger.kernel.org
5394 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5395 S:      Supported
5396 F:      drivers/cpuidle/cpuidle-psci.c
5397
5398 CPUIDLE DRIVER - ARM PSCI PM DOMAIN
5399 M:      Ulf Hansson <ulf.hansson@linaro.org>
5400 L:      linux-pm@vger.kernel.org
5401 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5402 S:      Supported
5403 F:      drivers/cpuidle/cpuidle-psci.h
5404 F:      drivers/cpuidle/cpuidle-psci-domain.c
5405
5406 CPUIDLE DRIVER - DT IDLE PM DOMAIN
5407 M:      Ulf Hansson <ulf.hansson@linaro.org>
5408 L:      linux-pm@vger.kernel.org
5409 S:      Supported
5410 F:      drivers/cpuidle/dt_idle_genpd.c
5411 F:      drivers/cpuidle/dt_idle_genpd.h
5412
5413 CPUIDLE DRIVER - RISC-V SBI
5414 M:      Anup Patel <anup@brainfault.org>
5415 L:      linux-pm@vger.kernel.org
5416 L:      linux-riscv@lists.infradead.org
5417 S:      Maintained
5418 F:      drivers/cpuidle/cpuidle-riscv-sbi.c
5419
5420 CRAMFS FILESYSTEM
5421 M:      Nicolas Pitre <nico@fluxnic.net>
5422 S:      Maintained
5423 F:      Documentation/filesystems/cramfs.rst
5424 F:      fs/cramfs/
5425
5426 CREATIVE SB0540
5427 M:      Bastien Nocera <hadess@hadess.net>
5428 L:      linux-input@vger.kernel.org
5429 S:      Maintained
5430 F:      drivers/hid/hid-creative-sb0540.c
5431
5432 CRYPTO API
5433 M:      Herbert Xu <herbert@gondor.apana.org.au>
5434 M:      "David S. Miller" <davem@davemloft.net>
5435 L:      linux-crypto@vger.kernel.org
5436 S:      Maintained
5437 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
5438 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
5439 F:      Documentation/crypto/
5440 F:      Documentation/devicetree/bindings/crypto/
5441 F:      arch/*/crypto/
5442 F:      crypto/
5443 F:      drivers/crypto/
5444 F:      include/crypto/
5445 F:      include/linux/crypto*
5446 F:      lib/crypto/
5447
5448 CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
5449 M:      Neil Horman <nhorman@tuxdriver.com>
5450 L:      linux-crypto@vger.kernel.org
5451 S:      Maintained
5452 F:      crypto/ansi_cprng.c
5453 F:      crypto/rng.c
5454
5455 CS3308 MEDIA DRIVER
5456 M:      Hans Verkuil <hverkuil@xs4all.nl>
5457 L:      linux-media@vger.kernel.org
5458 S:      Odd Fixes
5459 W:      http://linuxtv.org
5460 T:      git git://linuxtv.org/media_tree.git
5461 F:      drivers/media/i2c/cs3308.c
5462
5463 CS5535 Audio ALSA driver
5464 M:      Jaya Kumar <jayakumar.alsa@gmail.com>
5465 S:      Maintained
5466 F:      sound/pci/cs5535audio/
5467
5468 CTU CAN FD DRIVER
5469 M:      Pavel Pisa <pisa@cmp.felk.cvut.cz>
5470 M:      Ondrej Ille <ondrej.ille@gmail.com>
5471 L:      linux-can@vger.kernel.org
5472 S:      Maintained
5473 F:      Documentation/devicetree/bindings/net/can/ctu,ctucanfd.yaml
5474 F:      drivers/net/can/ctucanfd/
5475
5476 CW1200 WLAN driver
5477 M:      Solomon Peachy <pizza@shaftnet.org>
5478 S:      Maintained
5479 F:      drivers/net/wireless/st/cw1200/
5480
5481 CX18 VIDEO4LINUX DRIVER
5482 M:      Andy Walls <awalls@md.metrocast.net>
5483 L:      linux-media@vger.kernel.org
5484 S:      Maintained
5485 W:      https://linuxtv.org
5486 T:      git git://linuxtv.org/media_tree.git
5487 F:      drivers/media/pci/cx18/
5488 F:      include/uapi/linux/ivtv*
5489
5490 CX2341X MPEG ENCODER HELPER MODULE
5491 M:      Hans Verkuil <hverkuil@xs4all.nl>
5492 L:      linux-media@vger.kernel.org
5493 S:      Maintained
5494 W:      https://linuxtv.org
5495 T:      git git://linuxtv.org/media_tree.git
5496 F:      drivers/media/common/cx2341x*
5497 F:      include/media/drv-intf/cx2341x.h
5498
5499 CX24120 MEDIA DRIVER
5500 M:      Jemma Denson <jdenson@gmail.com>
5501 M:      Patrick Boettcher <patrick.boettcher@posteo.de>
5502 L:      linux-media@vger.kernel.org
5503 S:      Maintained
5504 W:      https://linuxtv.org
5505 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5506 F:      drivers/media/dvb-frontends/cx24120*
5507
5508 CX88 VIDEO4LINUX DRIVER
5509 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
5510 L:      linux-media@vger.kernel.org
5511 S:      Odd fixes
5512 W:      https://linuxtv.org
5513 T:      git git://linuxtv.org/media_tree.git
5514 F:      Documentation/driver-api/media/drivers/cx88*
5515 F:      drivers/media/pci/cx88/
5516
5517 CXD2820R MEDIA DRIVER
5518 M:      Antti Palosaari <crope@iki.fi>
5519 L:      linux-media@vger.kernel.org
5520 S:      Maintained
5521 W:      https://linuxtv.org
5522 W:      http://palosaari.fi/linux/
5523 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5524 T:      git git://linuxtv.org/anttip/media_tree.git
5525 F:      drivers/media/dvb-frontends/cxd2820r*
5526
5527 CXGB3 ETHERNET DRIVER (CXGB3)
5528 M:      Raju Rangoju <rajur@chelsio.com>
5529 L:      netdev@vger.kernel.org
5530 S:      Supported
5531 W:      http://www.chelsio.com
5532 F:      drivers/net/ethernet/chelsio/cxgb3/
5533
5534 CXGB3 ISCSI DRIVER (CXGB3I)
5535 M:      Varun Prakash <varun@chelsio.com>
5536 L:      linux-scsi@vger.kernel.org
5537 S:      Supported
5538 W:      http://www.chelsio.com
5539 F:      drivers/scsi/cxgbi/cxgb3i
5540
5541 CXGB4 CRYPTO DRIVER (chcr)
5542 M:      Ayush Sawal <ayush.sawal@chelsio.com>
5543 L:      linux-crypto@vger.kernel.org
5544 S:      Supported
5545 W:      http://www.chelsio.com
5546 F:      drivers/crypto/chelsio
5547
5548 CXGB4 INLINE CRYPTO DRIVER
5549 M:      Ayush Sawal <ayush.sawal@chelsio.com>
5550 L:      netdev@vger.kernel.org
5551 S:      Supported
5552 W:      http://www.chelsio.com
5553 F:      drivers/net/ethernet/chelsio/inline_crypto/
5554
5555 CXGB4 ETHERNET DRIVER (CXGB4)
5556 M:      Raju Rangoju <rajur@chelsio.com>
5557 L:      netdev@vger.kernel.org
5558 S:      Supported
5559 W:      http://www.chelsio.com
5560 F:      drivers/net/ethernet/chelsio/cxgb4/
5561
5562 CXGB4 ISCSI DRIVER (CXGB4I)
5563 M:      Varun Prakash <varun@chelsio.com>
5564 L:      linux-scsi@vger.kernel.org
5565 S:      Supported
5566 W:      http://www.chelsio.com
5567 F:      drivers/scsi/cxgbi/cxgb4i
5568
5569 CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
5570 M:      Potnuri Bharat Teja <bharat@chelsio.com>
5571 L:      linux-rdma@vger.kernel.org
5572 S:      Supported
5573 W:      http://www.openfabrics.org
5574 F:      drivers/infiniband/hw/cxgb4/
5575 F:      include/uapi/rdma/cxgb4-abi.h
5576
5577 CXGB4VF ETHERNET DRIVER (CXGB4VF)
5578 M:      Raju Rangoju <rajur@chelsio.com>
5579 L:      netdev@vger.kernel.org
5580 S:      Supported
5581 W:      http://www.chelsio.com
5582 F:      drivers/net/ethernet/chelsio/cxgb4vf/
5583
5584 CXL (IBM Coherent Accelerator Processor Interface CAPI) DRIVER
5585 M:      Frederic Barrat <fbarrat@linux.ibm.com>
5586 M:      Andrew Donnellan <ajd@linux.ibm.com>
5587 L:      linuxppc-dev@lists.ozlabs.org
5588 S:      Supported
5589 F:      Documentation/ABI/testing/sysfs-class-cxl
5590 F:      Documentation/powerpc/cxl.rst
5591 F:      arch/powerpc/platforms/powernv/pci-cxl.c
5592 F:      drivers/misc/cxl/
5593 F:      include/misc/cxl*
5594 F:      include/uapi/misc/cxl.h
5595
5596 CXLFLASH (IBM Coherent Accelerator Processor Interface CAPI Flash) SCSI DRIVER
5597 M:      Manoj N. Kumar <manoj@linux.ibm.com>
5598 M:      Matthew R. Ochs <mrochs@linux.ibm.com>
5599 M:      Uma Krishnan <ukrishn@linux.ibm.com>
5600 L:      linux-scsi@vger.kernel.org
5601 S:      Supported
5602 F:      Documentation/powerpc/cxlflash.rst
5603 F:      drivers/scsi/cxlflash/
5604 F:      include/uapi/scsi/cxlflash_ioctl.h
5605
5606 CYBERPRO FB DRIVER
5607 M:      Russell King <linux@armlinux.org.uk>
5608 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5609 S:      Maintained
5610 W:      http://www.armlinux.org.uk/
5611 F:      drivers/video/fbdev/cyber2000fb.*
5612
5613 CYCLADES PC300 DRIVER
5614 S:      Orphan
5615 F:      drivers/net/wan/pc300*
5616
5617 CYPRESS_FIRMWARE MEDIA DRIVER
5618 M:      Antti Palosaari <crope@iki.fi>
5619 L:      linux-media@vger.kernel.org
5620 S:      Maintained
5621 W:      https://linuxtv.org
5622 W:      http://palosaari.fi/linux/
5623 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5624 T:      git git://linuxtv.org/anttip/media_tree.git
5625 F:      drivers/media/common/cypress_firmware*
5626
5627 CYPRESS CY8C95X0 PINCTRL DRIVER
5628 M:      Patrick Rudolph <patrick.rudolph@9elements.com>
5629 L:      linux-gpio@vger.kernel.org
5630 S:      Maintained
5631 F:      drivers/pinctrl/pinctrl-cy8c95x0.c
5632
5633 CYPRESS CY8CTMA140 TOUCHSCREEN DRIVER
5634 M:      Linus Walleij <linus.walleij@linaro.org>
5635 L:      linux-input@vger.kernel.org
5636 S:      Maintained
5637 F:      drivers/input/touchscreen/cy8ctma140.c
5638
5639 CYPRESS STREETFIGHTER TOUCHKEYS DRIVER
5640 M:      Yassine Oudjana <y.oudjana@protonmail.com>
5641 L:      linux-input@vger.kernel.org
5642 S:      Maintained
5643 F:      Documentation/devicetree/bindings/input/cypress-sf.yaml
5644 F:      drivers/input/keyboard/cypress-sf.c
5645
5646 CYTTSP TOUCHSCREEN DRIVER
5647 M:      Linus Walleij <linus.walleij@linaro.org>
5648 L:      linux-input@vger.kernel.org
5649 S:      Maintained
5650 F:      drivers/input/touchscreen/cyttsp*
5651
5652 D-LINK DIR-685 TOUCHKEYS DRIVER
5653 M:      Linus Walleij <linus.walleij@linaro.org>
5654 L:      linux-input@vger.kernel.org
5655 S:      Supported
5656 F:      drivers/input/keyboard/dlink-dir685-touchkeys.c
5657
5658 DALLAS/MAXIM DS1685-FAMILY REAL TIME CLOCK
5659 M:      Joshua Kinard <kumba@gentoo.org>
5660 S:      Maintained
5661 F:      drivers/rtc/rtc-ds1685.c
5662 F:      include/linux/rtc/ds1685.h
5663
5664 DAMA SLAVE for AX.25
5665 M:      Joerg Reuter <jreuter@yaina.de>
5666 L:      linux-hams@vger.kernel.org
5667 S:      Maintained
5668 W:      http://yaina.de/jreuter/
5669 W:      http://www.qsl.net/dl1bke/
5670 F:      net/ax25/af_ax25.c
5671 F:      net/ax25/ax25_dev.c
5672 F:      net/ax25/ax25_ds_*
5673 F:      net/ax25/ax25_in.c
5674 F:      net/ax25/ax25_out.c
5675 F:      net/ax25/ax25_timer.c
5676 F:      net/ax25/sysctl_net_ax25.c
5677
5678 DATA ACCESS MONITOR
5679 M:      SeongJae Park <sj@kernel.org>
5680 L:      damon@lists.linux.dev
5681 L:      linux-mm@kvack.org
5682 S:      Maintained
5683 W:      https://damonitor.github.io
5684 P:      Documentation/mm/damon/maintainer-profile.rst
5685 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm
5686 T:      quilt git://git.kernel.org/pub/scm/linux/kernel/git/akpm/25-new
5687 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sj/linux.git damon/next
5688 F:      Documentation/ABI/testing/sysfs-kernel-mm-damon
5689 F:      Documentation/admin-guide/mm/damon/
5690 F:      Documentation/mm/damon/
5691 F:      include/linux/damon.h
5692 F:      include/trace/events/damon.h
5693 F:      mm/damon/
5694 F:      tools/testing/selftests/damon/
5695
5696 DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
5697 L:      netdev@vger.kernel.org
5698 S:      Orphan
5699 F:      Documentation/networking/device_drivers/ethernet/dec/dmfe.rst
5700 F:      drivers/net/ethernet/dec/tulip/dmfe.c
5701
5702 DC390/AM53C974 SCSI driver
5703 M:      Hannes Reinecke <hare@suse.com>
5704 L:      linux-scsi@vger.kernel.org
5705 S:      Maintained
5706 F:      drivers/scsi/am53c974.c
5707
5708 DC395x SCSI driver
5709 M:      Oliver Neukum <oliver@neukum.org>
5710 M:      Ali Akcaagac <aliakc@web.de>
5711 M:      Jamie Lenehan <lenehan@twibble.org>
5712 L:      dc395x@twibble.org
5713 S:      Maintained
5714 W:      http://twibble.org/dist/dc395x/
5715 W:      http://lists.twibble.org/mailman/listinfo/dc395x/
5716 F:      Documentation/scsi/dc395x.rst
5717 F:      drivers/scsi/dc395x.*
5718
5719 DCCP PROTOCOL
5720 L:      dccp@vger.kernel.org
5721 S:      Orphan
5722 W:      http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
5723 F:      include/linux/dccp.h
5724 F:      include/linux/tfrc.h
5725 F:      include/uapi/linux/dccp.h
5726 F:      net/dccp/
5727
5728 DECSTATION PLATFORM SUPPORT
5729 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
5730 L:      linux-mips@vger.kernel.org
5731 S:      Maintained
5732 W:      http://www.linux-mips.org/wiki/DECstation
5733 F:      arch/mips/dec/
5734 F:      arch/mips/include/asm/dec/
5735 F:      arch/mips/include/asm/mach-dec/
5736
5737 DEFXX FDDI NETWORK DRIVER
5738 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
5739 S:      Maintained
5740 F:      drivers/net/fddi/defxx.*
5741
5742 DEFZA FDDI NETWORK DRIVER
5743 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
5744 S:      Maintained
5745 F:      drivers/net/fddi/defza.*
5746
5747 DEINTERLACE DRIVERS FOR ALLWINNER H3
5748 M:      Jernej Skrabec <jernej.skrabec@gmail.com>
5749 L:      linux-media@vger.kernel.org
5750 S:      Maintained
5751 T:      git git://linuxtv.org/media_tree.git
5752 F:      Documentation/devicetree/bindings/media/allwinner,sun8i-h3-deinterlace.yaml
5753 F:      drivers/media/platform/sunxi/sun8i-di/
5754
5755 DELL LAPTOP DRIVER
5756 M:      Matthew Garrett <mjg59@srcf.ucam.org>
5757 M:      Pali Rohár <pali@kernel.org>
5758 L:      platform-driver-x86@vger.kernel.org
5759 S:      Maintained
5760 F:      drivers/platform/x86/dell/dell-laptop.c
5761
5762 DELL LAPTOP FREEFALL DRIVER
5763 M:      Pali Rohár <pali@kernel.org>
5764 S:      Maintained
5765 F:      drivers/platform/x86/dell/dell-smo8800.c
5766
5767 DELL LAPTOP RBTN DRIVER
5768 M:      Pali Rohár <pali@kernel.org>
5769 S:      Maintained
5770 F:      drivers/platform/x86/dell/dell-rbtn.*
5771
5772 DELL LAPTOP SMM DRIVER
5773 M:      Pali Rohár <pali@kernel.org>
5774 S:      Maintained
5775 F:      Documentation/ABI/obsolete/procfs-i8k
5776 F:      drivers/hwmon/dell-smm-hwmon.c
5777 F:      include/uapi/linux/i8k.h
5778
5779 DELL REMOTE BIOS UPDATE DRIVER
5780 M:      Stuart Hayes <stuart.w.hayes@gmail.com>
5781 L:      platform-driver-x86@vger.kernel.org
5782 S:      Maintained
5783 F:      drivers/platform/x86/dell/dell_rbu.c
5784
5785 DELL SMBIOS DRIVER
5786 M:      Pali Rohár <pali@kernel.org>
5787 L:      Dell.Client.Kernel@dell.com
5788 L:      platform-driver-x86@vger.kernel.org
5789 S:      Maintained
5790 F:      drivers/platform/x86/dell/dell-smbios.*
5791
5792 DELL SMBIOS SMM DRIVER
5793 L:      Dell.Client.Kernel@dell.com
5794 L:      platform-driver-x86@vger.kernel.org
5795 S:      Maintained
5796 F:      drivers/platform/x86/dell/dell-smbios-smm.c
5797
5798 DELL SMBIOS WMI DRIVER
5799 L:      Dell.Client.Kernel@dell.com
5800 L:      platform-driver-x86@vger.kernel.org
5801 S:      Maintained
5802 F:      drivers/platform/x86/dell/dell-smbios-wmi.c
5803 F:      tools/wmi/dell-smbios-example.c
5804
5805 DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
5806 M:      Stuart Hayes <stuart.w.hayes@gmail.com>
5807 L:      platform-driver-x86@vger.kernel.org
5808 S:      Maintained
5809 F:      Documentation/driver-api/dcdbas.rst
5810 F:      drivers/platform/x86/dell/dcdbas.*
5811
5812 DELL WMI DESCRIPTOR DRIVER
5813 L:      Dell.Client.Kernel@dell.com
5814 S:      Maintained
5815 F:      drivers/platform/x86/dell/dell-wmi-descriptor.c
5816
5817 DELL WMI DDV DRIVER
5818 M:      Armin Wolf <W_Armin@gmx.de>
5819 S:      Maintained
5820 F:      Documentation/ABI/testing/debugfs-dell-wmi-ddv
5821 F:      Documentation/ABI/testing/sysfs-platform-dell-wmi-ddv
5822 F:      drivers/platform/x86/dell/dell-wmi-ddv.c
5823
5824 DELL WMI SYSMAN DRIVER
5825 M:      Prasanth Ksr <prasanth.ksr@dell.com>
5826 L:      Dell.Client.Kernel@dell.com
5827 L:      platform-driver-x86@vger.kernel.org
5828 S:      Maintained
5829 F:      Documentation/ABI/testing/sysfs-class-firmware-attributes
5830 F:      drivers/platform/x86/dell/dell-wmi-sysman/
5831
5832 DELL WMI NOTIFICATIONS DRIVER
5833 M:      Matthew Garrett <mjg59@srcf.ucam.org>
5834 M:      Pali Rohár <pali@kernel.org>
5835 S:      Maintained
5836 F:      drivers/platform/x86/dell/dell-wmi-base.c
5837
5838 DELL WMI HARDWARE PRIVACY SUPPORT
5839 M:      Perry Yuan <Perry.Yuan@dell.com>
5840 L:      Dell.Client.Kernel@dell.com
5841 L:      platform-driver-x86@vger.kernel.org
5842 S:      Maintained
5843 F:      drivers/platform/x86/dell/dell-wmi-privacy.c
5844
5845 DELTA ST MEDIA DRIVER
5846 M:      Hugues Fruchet <hugues.fruchet@foss.st.com>
5847 L:      linux-media@vger.kernel.org
5848 S:      Supported
5849 W:      https://linuxtv.org
5850 T:      git git://linuxtv.org/media_tree.git
5851 F:      drivers/media/platform/st/sti/delta
5852
5853 DELTA AHE-50DC FAN CONTROL MODULE DRIVER
5854 M:      Zev Weiss <zev@bewilderbeest.net>
5855 L:      linux-hwmon@vger.kernel.org
5856 S:      Maintained
5857 F:      drivers/hwmon/pmbus/delta-ahe50dc-fan.c
5858
5859 DELTA DPS920AB PSU DRIVER
5860 M:      Robert Marko <robert.marko@sartura.hr>
5861 L:      linux-hwmon@vger.kernel.org
5862 S:      Maintained
5863 F:      Documentation/hwmon/dps920ab.rst
5864 F:      drivers/hwmon/pmbus/dps920ab.c
5865
5866 DELTA NETWORKS TN48M CPLD DRIVERS
5867 M:      Robert Marko <robert.marko@sartura.hr>
5868 S:      Maintained
5869 F:      Documentation/devicetree/bindings/gpio/delta,tn48m-gpio.yaml
5870 F:      Documentation/devicetree/bindings/mfd/delta,tn48m-cpld.yaml
5871 F:      Documentation/devicetree/bindings/reset/delta,tn48m-reset.yaml
5872 F:      drivers/gpio/gpio-tn48m.c
5873 F:      include/dt-bindings/reset/delta,tn48m-reset.h
5874
5875 DENALI NAND DRIVER
5876 L:      linux-mtd@lists.infradead.org
5877 S:      Orphan
5878 F:      drivers/mtd/nand/raw/denali*
5879
5880 DESIGNWARE EDMA CORE IP DRIVER
5881 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
5882 L:      dmaengine@vger.kernel.org
5883 S:      Maintained
5884 F:      drivers/dma/dw-edma/
5885 F:      include/linux/dma/edma.h
5886
5887 DESIGNWARE XDATA IP DRIVER
5888 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
5889 L:      linux-pci@vger.kernel.org
5890 S:      Maintained
5891 F:      Documentation/misc-devices/dw-xdata-pcie.rst
5892 F:      drivers/misc/dw-xdata-pcie.c
5893
5894 DESIGNWARE USB2 DRD IP DRIVER
5895 M:      Minas Harutyunyan <hminas@synopsys.com>
5896 L:      linux-usb@vger.kernel.org
5897 S:      Maintained
5898 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
5899 F:      drivers/usb/dwc2/
5900
5901 DESIGNWARE USB3 DRD IP DRIVER
5902 M:      Thinh Nguyen <Thinh.Nguyen@synopsys.com>
5903 L:      linux-usb@vger.kernel.org
5904 S:      Maintained
5905 F:      drivers/usb/dwc3/
5906
5907 DEVANTECH SRF ULTRASONIC RANGER IIO DRIVER
5908 M:      Andreas Klinger <ak@it-klinger.de>
5909 L:      linux-iio@vger.kernel.org
5910 S:      Maintained
5911 F:      Documentation/ABI/testing/sysfs-bus-iio-distance-srf08
5912 F:      drivers/iio/proximity/srf*.c
5913
5914 DEVICE COREDUMP (DEV_COREDUMP)
5915 M:      Johannes Berg <johannes@sipsolutions.net>
5916 L:      linux-kernel@vger.kernel.org
5917 S:      Maintained
5918 F:      drivers/base/devcoredump.c
5919 F:      include/linux/devcoredump.h
5920
5921 DEVICE DEPENDENCY HELPER SCRIPT
5922 M:      Saravana Kannan <saravanak@google.com>
5923 L:      linux-kernel@vger.kernel.org
5924 S:      Maintained
5925 F:      scripts/dev-needs.sh
5926
5927 DEVICE DIRECT ACCESS (DAX)
5928 M:      Dan Williams <dan.j.williams@intel.com>
5929 M:      Vishal Verma <vishal.l.verma@intel.com>
5930 M:      Dave Jiang <dave.jiang@intel.com>
5931 L:      nvdimm@lists.linux.dev
5932 L:      linux-cxl@vger.kernel.org
5933 S:      Supported
5934 F:      drivers/dax/
5935
5936 DEVICE FREQUENCY (DEVFREQ)
5937 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
5938 M:      Kyungmin Park <kyungmin.park@samsung.com>
5939 M:      Chanwoo Choi <cw00.choi@samsung.com>
5940 L:      linux-pm@vger.kernel.org
5941 S:      Maintained
5942 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
5943 F:      Documentation/devicetree/bindings/devfreq/
5944 F:      Documentation/devicetree/bindings/interconnect/mediatek,cci.yaml
5945 F:      drivers/devfreq/
5946 F:      include/linux/devfreq.h
5947 F:      include/trace/events/devfreq.h
5948
5949 DEVICE FREQUENCY EVENT (DEVFREQ-EVENT)
5950 M:      Chanwoo Choi <cw00.choi@samsung.com>
5951 L:      linux-pm@vger.kernel.org
5952 S:      Supported
5953 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
5954 F:      Documentation/devicetree/bindings/devfreq/event/
5955 F:      drivers/devfreq/devfreq-event.c
5956 F:      drivers/devfreq/event/
5957 F:      include/dt-bindings/pmu/exynos_ppmu.h
5958 F:      include/linux/devfreq-event.h
5959
5960 DEVICE RESOURCE MANAGEMENT HELPERS
5961 M:      Hans de Goede <hdegoede@redhat.com>
5962 R:      Matti Vaittinen <mazziesaccount@gmail.com>
5963 S:      Maintained
5964 F:      include/linux/devm-helpers.h
5965
5966 DEVICE-MAPPER  (LVM)
5967 M:      Alasdair Kergon <agk@redhat.com>
5968 M:      Mike Snitzer <snitzer@kernel.org>
5969 M:      dm-devel@redhat.com
5970 L:      dm-devel@redhat.com
5971 S:      Maintained
5972 W:      http://sources.redhat.com/dm
5973 Q:      http://patchwork.kernel.org/project/dm-devel/list/
5974 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git
5975 T:      quilt http://people.redhat.com/agk/patches/linux/editing/
5976 F:      Documentation/admin-guide/device-mapper/
5977 F:      drivers/md/Kconfig
5978 F:      drivers/md/Makefile
5979 F:      drivers/md/dm*
5980 F:      drivers/md/persistent-data/
5981 F:      include/linux/device-mapper.h
5982 F:      include/linux/dm-*.h
5983 F:      include/uapi/linux/dm-*.h
5984
5985 DEVLINK
5986 M:      Jiri Pirko <jiri@resnulli.us>
5987 L:      netdev@vger.kernel.org
5988 S:      Supported
5989 F:      Documentation/networking/devlink
5990 F:      include/net/devlink.h
5991 F:      include/uapi/linux/devlink.h
5992 F:      net/devlink/
5993
5994 DH ELECTRONICS IMX6 DHCOM/DHCOR BOARD SUPPORT
5995 M:      Christoph Niedermaier <cniedermaier@dh-electronics.com>
5996 L:      kernel@dh-electronics.com
5997 S:      Maintained
5998 F:      arch/arm/boot/dts/imx6*-dhcom-*
5999 F:      arch/arm/boot/dts/imx6*-dhcor-*
6000
6001 DH ELECTRONICS STM32MP1 DHCOM/DHCOR BOARD SUPPORT
6002 M:      Marek Vasut <marex@denx.de>
6003 L:      kernel@dh-electronics.com
6004 S:      Maintained
6005 F:      arch/arm/boot/dts/stm32mp1*-dhcom-*
6006 F:      arch/arm/boot/dts/stm32mp1*-dhcor-*
6007
6008 DIALOG SEMICONDUCTOR DRIVERS
6009 M:      Support Opensource <support.opensource@diasemi.com>
6010 S:      Supported
6011 W:      http://www.dialog-semiconductor.com/products
6012 F:      Documentation/devicetree/bindings/input/da90??-onkey.txt
6013 F:      Documentation/devicetree/bindings/input/dlg,da72??.txt
6014 F:      Documentation/devicetree/bindings/mfd/da90*.txt
6015 F:      Documentation/devicetree/bindings/mfd/da90*.yaml
6016 F:      Documentation/devicetree/bindings/regulator/dlg,da9*.yaml
6017 F:      Documentation/devicetree/bindings/regulator/da92*.txt
6018 F:      Documentation/devicetree/bindings/regulator/slg51000.txt
6019 F:      Documentation/devicetree/bindings/sound/da[79]*.txt
6020 F:      Documentation/devicetree/bindings/thermal/da90??-thermal.txt
6021 F:      Documentation/devicetree/bindings/watchdog/da90??-wdt.txt
6022 F:      Documentation/hwmon/da90??.rst
6023 F:      drivers/gpio/gpio-da90??.c
6024 F:      drivers/hwmon/da90??-hwmon.c
6025 F:      drivers/iio/adc/da91??-*.c
6026 F:      drivers/input/misc/da72??.[ch]
6027 F:      drivers/input/misc/da90??_onkey.c
6028 F:      drivers/input/touchscreen/da9052_tsi.c
6029 F:      drivers/leds/leds-da90??.c
6030 F:      drivers/mfd/da903x.c
6031 F:      drivers/mfd/da90??-*.c
6032 F:      drivers/mfd/da91??-*.c
6033 F:      drivers/pinctrl/pinctrl-da90??.c
6034 F:      drivers/power/supply/da9052-battery.c
6035 F:      drivers/power/supply/da91??-*.c
6036 F:      drivers/regulator/da9???-regulator.[ch]
6037 F:      drivers/regulator/slg51000-regulator.[ch]
6038 F:      drivers/rtc/rtc-da90??.c
6039 F:      drivers/thermal/da90??-thermal.c
6040 F:      drivers/video/backlight/da90??_bl.c
6041 F:      drivers/watchdog/da90??_wdt.c
6042 F:      include/dt-bindings/regulator/dlg,da9*-regulator.h
6043 F:      include/linux/mfd/da903x.h
6044 F:      include/linux/mfd/da9052/
6045 F:      include/linux/mfd/da9055/
6046 F:      include/linux/mfd/da9062/
6047 F:      include/linux/mfd/da9063/
6048 F:      include/linux/mfd/da9150/
6049 F:      include/linux/regulator/da9211.h
6050 F:      include/sound/da[79]*.h
6051 F:      sound/soc/codecs/da[79]*.[ch]
6052
6053 DIAMOND SYSTEMS GPIO-MM GPIO DRIVER
6054 M:      William Breathitt Gray <william.gray@linaro.org>
6055 L:      linux-gpio@vger.kernel.org
6056 S:      Maintained
6057 F:      drivers/gpio/gpio-gpio-mm.c
6058
6059 DIOLAN U2C-12 I2C DRIVER
6060 M:      Guenter Roeck <linux@roeck-us.net>
6061 L:      linux-i2c@vger.kernel.org
6062 S:      Maintained
6063 F:      drivers/i2c/busses/i2c-diolan-u2c.c
6064
6065 DIRECTORY NOTIFICATION (DNOTIFY)
6066 M:      Jan Kara <jack@suse.cz>
6067 R:      Amir Goldstein <amir73il@gmail.com>
6068 L:      linux-fsdevel@vger.kernel.org
6069 S:      Maintained
6070 F:      Documentation/filesystems/dnotify.rst
6071 F:      fs/notify/dnotify/
6072 F:      include/linux/dnotify.h
6073
6074 DISK GEOMETRY AND PARTITION HANDLING
6075 M:      Andries Brouwer <aeb@cwi.nl>
6076 S:      Maintained
6077 W:      http://www.win.tue.nl/~aeb/linux/Large-Disk.html
6078 W:      http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
6079 W:      http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
6080
6081 DISKQUOTA
6082 M:      Jan Kara <jack@suse.com>
6083 S:      Maintained
6084 F:      Documentation/filesystems/quota.rst
6085 F:      fs/quota/
6086 F:      include/linux/quota*.h
6087 F:      include/uapi/linux/quota*.h
6088
6089 DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
6090 M:      Bernie Thompson <bernie@plugable.com>
6091 L:      linux-fbdev@vger.kernel.org
6092 S:      Maintained
6093 W:      http://plugable.com/category/projects/udlfb/
6094 F:      Documentation/fb/udlfb.rst
6095 F:      drivers/video/fbdev/udlfb.c
6096 F:      include/video/udlfb.h
6097
6098 DISTRIBUTED LOCK MANAGER (DLM)
6099 M:      Christine Caulfield <ccaulfie@redhat.com>
6100 M:      David Teigland <teigland@redhat.com>
6101 L:      cluster-devel@redhat.com
6102 S:      Supported
6103 W:      http://sources.redhat.com/cluster/
6104 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/linux-dlm.git
6105 F:      fs/dlm/
6106
6107 DMA BUFFER SHARING FRAMEWORK
6108 M:      Sumit Semwal <sumit.semwal@linaro.org>
6109 M:      Christian König <christian.koenig@amd.com>
6110 L:      linux-media@vger.kernel.org
6111 L:      dri-devel@lists.freedesktop.org
6112 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
6113 S:      Maintained
6114 T:      git git://anongit.freedesktop.org/drm/drm-misc
6115 F:      Documentation/driver-api/dma-buf.rst
6116 F:      drivers/dma-buf/
6117 F:      include/linux/*fence.h
6118 F:      include/linux/dma-buf.h
6119 F:      include/linux/dma-resv.h
6120 K:      \bdma_(?:buf|fence|resv)\b
6121
6122 DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
6123 M:      Vinod Koul <vkoul@kernel.org>
6124 L:      dmaengine@vger.kernel.org
6125 S:      Maintained
6126 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
6127 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vkoul/dmaengine.git
6128 F:      Documentation/devicetree/bindings/dma/
6129 F:      Documentation/driver-api/dmaengine/
6130 F:      drivers/dma/
6131 F:      include/dt-bindings/dma/
6132 F:      include/linux/dma/
6133 F:      include/linux/dmaengine.h
6134 F:      include/linux/of_dma.h
6135
6136 DMA MAPPING HELPERS
6137 M:      Christoph Hellwig <hch@lst.de>
6138 M:      Marek Szyprowski <m.szyprowski@samsung.com>
6139 R:      Robin Murphy <robin.murphy@arm.com>
6140 L:      iommu@lists.linux.dev
6141 S:      Supported
6142 W:      http://git.infradead.org/users/hch/dma-mapping.git
6143 T:      git git://git.infradead.org/users/hch/dma-mapping.git
6144 F:      include/asm-generic/dma-mapping.h
6145 F:      include/linux/dma-direct.h
6146 F:      include/linux/dma-mapping.h
6147 F:      include/linux/dma-map-ops.h
6148 F:      include/linux/swiotlb.h
6149 F:      kernel/dma/
6150
6151 DMA MAPPING BENCHMARK
6152 M:      Xiang Chen <chenxiang66@hisilicon.com>
6153 L:      iommu@lists.linux.dev
6154 F:      kernel/dma/map_benchmark.c
6155 F:      tools/testing/selftests/dma/
6156
6157 DMA-BUF HEAPS FRAMEWORK
6158 M:      Sumit Semwal <sumit.semwal@linaro.org>
6159 R:      Benjamin Gaignard <benjamin.gaignard@collabora.com>
6160 R:      Liam Mark <lmark@codeaurora.org>
6161 R:      Laura Abbott <labbott@redhat.com>
6162 R:      Brian Starkey <Brian.Starkey@arm.com>
6163 R:      John Stultz <jstultz@google.com>
6164 L:      linux-media@vger.kernel.org
6165 L:      dri-devel@lists.freedesktop.org
6166 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
6167 S:      Maintained
6168 T:      git git://anongit.freedesktop.org/drm/drm-misc
6169 F:      drivers/dma-buf/dma-heap.c
6170 F:      drivers/dma-buf/heaps/*
6171 F:      include/linux/dma-heap.h
6172 F:      include/uapi/linux/dma-heap.h
6173
6174 DMC FREQUENCY DRIVER FOR SAMSUNG EXYNOS5422
6175 M:      Lukasz Luba <lukasz.luba@arm.com>
6176 L:      linux-pm@vger.kernel.org
6177 L:      linux-samsung-soc@vger.kernel.org
6178 S:      Maintained
6179 F:      Documentation/devicetree/bindings/memory-controllers/samsung,exynos5422-dmc.yaml
6180 F:      drivers/memory/samsung/exynos5422-dmc.c
6181
6182 DME1737 HARDWARE MONITOR DRIVER
6183 M:      Juerg Haefliger <juergh@proton.me>
6184 L:      linux-hwmon@vger.kernel.org
6185 S:      Maintained
6186 F:      Documentation/hwmon/dme1737.rst
6187 F:      drivers/hwmon/dme1737.c
6188
6189 DMI/SMBIOS SUPPORT
6190 M:      Jean Delvare <jdelvare@suse.com>
6191 S:      Maintained
6192 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jdelvare/staging.git dmi-for-next
6193 F:      Documentation/ABI/testing/sysfs-firmware-dmi-tables
6194 F:      drivers/firmware/dmi-id.c
6195 F:      drivers/firmware/dmi_scan.c
6196 F:      include/linux/dmi.h
6197
6198 DOCUMENTATION
6199 M:      Jonathan Corbet <corbet@lwn.net>
6200 L:      linux-doc@vger.kernel.org
6201 S:      Maintained
6202 P:      Documentation/doc-guide/maintainer-profile.rst
6203 T:      git git://git.lwn.net/linux.git docs-next
6204 F:      Documentation/
6205 F:      scripts/documentation-file-ref-check
6206 F:      scripts/kernel-doc
6207 F:      scripts/sphinx-pre-install
6208 X:      Documentation/ABI/
6209 X:      Documentation/admin-guide/media/
6210 X:      Documentation/devicetree/
6211 X:      Documentation/driver-api/media/
6212 X:      Documentation/firmware-guide/acpi/
6213 X:      Documentation/i2c/
6214 X:      Documentation/power/
6215 X:      Documentation/spi/
6216 X:      Documentation/userspace-api/media/
6217
6218 DOCUMENTATION REPORTING ISSUES
6219 M:      Thorsten Leemhuis <linux@leemhuis.info>
6220 L:      linux-doc@vger.kernel.org
6221 S:      Maintained
6222 F:      Documentation/admin-guide/quickly-build-trimmed-linux.rst
6223 F:      Documentation/admin-guide/reporting-issues.rst
6224
6225 DOCUMENTATION SCRIPTS
6226 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6227 L:      linux-doc@vger.kernel.org
6228 S:      Maintained
6229 F:      Documentation/sphinx/parse-headers.pl
6230 F:      scripts/documentation-file-ref-check
6231 F:      scripts/sphinx-pre-install
6232
6233 DOCUMENTATION/ITALIAN
6234 M:      Federico Vaga <federico.vaga@vaga.pv.it>
6235 L:      linux-doc@vger.kernel.org
6236 S:      Maintained
6237 F:      Documentation/translations/it_IT
6238
6239 DOCUMENTATION/JAPANESE
6240 R:      Akira Yokosawa <akiyks@gmail.com>
6241 L:      linux-doc@vger.kernel.org
6242 S:      Maintained
6243 F:      Documentation/translations/ja_JP
6244
6245 DONGWOON DW9714 LENS VOICE COIL DRIVER
6246 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
6247 L:      linux-media@vger.kernel.org
6248 S:      Maintained
6249 T:      git git://linuxtv.org/media_tree.git
6250 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9714.yaml
6251 F:      drivers/media/i2c/dw9714.c
6252
6253 DONGWOON DW9768 LENS VOICE COIL DRIVER
6254 M:      Dongchun Zhu <dongchun.zhu@mediatek.com>
6255 L:      linux-media@vger.kernel.org
6256 S:      Maintained
6257 T:      git git://linuxtv.org/media_tree.git
6258 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9768.yaml
6259 F:      drivers/media/i2c/dw9768.c
6260
6261 DONGWOON DW9807 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,dw9807-vcm.yaml
6267 F:      drivers/media/i2c/dw9807-vcm.c
6268
6269 DOUBLETALK DRIVER
6270 M:      "James R. Van Zandt" <jrv@vanzandt.mv.com>
6271 L:      blinux-list@redhat.com
6272 S:      Maintained
6273 F:      drivers/char/dtlk.c
6274 F:      include/linux/dtlk.h
6275
6276 DPAA2 DATAPATH I/O (DPIO) DRIVER
6277 M:      Roy Pledge <Roy.Pledge@nxp.com>
6278 L:      linux-kernel@vger.kernel.org
6279 S:      Maintained
6280 F:      drivers/soc/fsl/dpio
6281
6282 DPAA2 ETHERNET DRIVER
6283 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
6284 L:      netdev@vger.kernel.org
6285 S:      Maintained
6286 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/ethernet-driver.rst
6287 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/mac-phy-support.rst
6288 F:      drivers/net/ethernet/freescale/dpaa2/Kconfig
6289 F:      drivers/net/ethernet/freescale/dpaa2/Makefile
6290 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-eth*
6291 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-mac*
6292 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-xsk*
6293 F:      drivers/net/ethernet/freescale/dpaa2/dpkg.h
6294 F:      drivers/net/ethernet/freescale/dpaa2/dpmac*
6295 F:      drivers/net/ethernet/freescale/dpaa2/dpni*
6296
6297 DPAA2 ETHERNET SWITCH DRIVER
6298 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
6299 L:      netdev@vger.kernel.org
6300 S:      Maintained
6301 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/switch-driver.rst
6302 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-switch*
6303 F:      drivers/net/ethernet/freescale/dpaa2/dpsw*
6304
6305 DRBD DRIVER
6306 M:      Philipp Reisner <philipp.reisner@linbit.com>
6307 M:      Lars Ellenberg <lars.ellenberg@linbit.com>
6308 M:      Christoph Böhmwalder <christoph.boehmwalder@linbit.com>
6309 L:      drbd-dev@lists.linbit.com
6310 S:      Supported
6311 W:      http://www.drbd.org
6312 T:      git git://git.linbit.com/linux-drbd.git
6313 T:      git git://git.linbit.com/drbd-8.4.git
6314 F:      Documentation/admin-guide/blockdev/
6315 F:      drivers/block/drbd/
6316 F:      include/linux/drbd*
6317 F:      lib/lru_cache.c
6318
6319 DRIVER COMPONENT FRAMEWORK
6320 L:      dri-devel@lists.freedesktop.org
6321 F:      drivers/base/component.c
6322 F:      include/linux/component.h
6323
6324 DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS
6325 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
6326 R:      "Rafael J. Wysocki" <rafael@kernel.org>
6327 S:      Supported
6328 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
6329 F:      Documentation/core-api/kobject.rst
6330 F:      drivers/base/
6331 F:      fs/debugfs/
6332 F:      fs/sysfs/
6333 F:      include/linux/debugfs.h
6334 F:      include/linux/kobj*
6335 F:      lib/kobj*
6336
6337 DRIVERS FOR OMAP ADAPTIVE VOLTAGE SCALING (AVS)
6338 M:      Nishanth Menon <nm@ti.com>
6339 L:      linux-pm@vger.kernel.org
6340 S:      Maintained
6341 F:      drivers/soc/ti/smartreflex.c
6342 F:      include/linux/power/smartreflex.h
6343
6344 DRM DRIVER FOR ALLWINNER DE2 AND DE3 ENGINE
6345 M:      Maxime Ripard <mripard@kernel.org>
6346 M:      Chen-Yu Tsai <wens@csie.org>
6347 R:      Jernej Skrabec <jernej.skrabec@gmail.com>
6348 L:      dri-devel@lists.freedesktop.org
6349 S:      Supported
6350 T:      git git://anongit.freedesktop.org/drm/drm-misc
6351 F:      drivers/gpu/drm/sun4i/sun8i*
6352
6353 DRM DRIVER FOR ARM PL111 CLCD
6354 M:      Emma Anholt <emma@anholt.net>
6355 S:      Supported
6356 T:      git git://anongit.freedesktop.org/drm/drm-misc
6357 F:      drivers/gpu/drm/pl111/
6358
6359 DRM DRIVER FOR ARM VERSATILE TFT PANELS
6360 M:      Linus Walleij <linus.walleij@linaro.org>
6361 S:      Maintained
6362 T:      git git://anongit.freedesktop.org/drm/drm-misc
6363 F:      Documentation/devicetree/bindings/display/panel/arm,versatile-tft-panel.yaml
6364 F:      drivers/gpu/drm/panel/panel-arm-versatile.c
6365
6366 DRM DRIVER FOR ASPEED BMC GFX
6367 M:      Joel Stanley <joel@jms.id.au>
6368 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
6369 S:      Supported
6370 T:      git git://anongit.freedesktop.org/drm/drm-misc
6371 F:      Documentation/devicetree/bindings/gpu/aspeed-gfx.txt
6372 F:      drivers/gpu/drm/aspeed/
6373
6374 DRM DRIVER FOR AST SERVER GRAPHICS CHIPS
6375 M:      Dave Airlie <airlied@redhat.com>
6376 R:      Thomas Zimmermann <tzimmermann@suse.de>
6377 L:      dri-devel@lists.freedesktop.org
6378 S:      Supported
6379 T:      git git://anongit.freedesktop.org/drm/drm-misc
6380 F:      drivers/gpu/drm/ast/
6381
6382 DRM DRIVER FOR BOCHS VIRTUAL GPU
6383 M:      Gerd Hoffmann <kraxel@redhat.com>
6384 L:      virtualization@lists.linux-foundation.org
6385 S:      Maintained
6386 T:      git git://anongit.freedesktop.org/drm/drm-misc
6387 F:      drivers/gpu/drm/tiny/bochs.c
6388
6389 DRM DRIVER FOR BOE HIMAX8279D PANELS
6390 M:      Jerry Han <hanxu5@huaqin.corp-partner.google.com>
6391 S:      Maintained
6392 F:      Documentation/devicetree/bindings/display/panel/boe,himax8279d.yaml
6393 F:      drivers/gpu/drm/panel/panel-boe-himax8279d.c
6394
6395 DRM DRIVER FOR CHIPONE ICN6211 MIPI-DSI to RGB CONVERTER BRIDGE
6396 M:      Jagan Teki <jagan@amarulasolutions.com>
6397 S:      Maintained
6398 F:      Documentation/devicetree/bindings/display/bridge/chipone,icn6211.yaml
6399 F:      drivers/gpu/drm/bridge/chipone-icn6211.c
6400
6401 DRM DRIVER FOR EBBG FT8719 PANEL
6402 M:      Joel Selvaraj <jo@jsfamily.in>
6403 S:      Maintained
6404 T:      git git://anongit.freedesktop.org/drm/drm-misc
6405 F:      Documentation/devicetree/bindings/display/panel/ebbg,ft8719.yaml
6406 F:      drivers/gpu/drm/panel/panel-ebbg-ft8719.c
6407
6408 DRM DRIVER FOR FARADAY TVE200 TV ENCODER
6409 M:      Linus Walleij <linus.walleij@linaro.org>
6410 S:      Maintained
6411 T:      git git://anongit.freedesktop.org/drm/drm-misc
6412 F:      drivers/gpu/drm/tve200/
6413
6414 DRM DRIVER FOR FEIXIN K101 IM2BA02 MIPI-DSI LCD PANELS
6415 M:      Icenowy Zheng <icenowy@aosc.io>
6416 S:      Maintained
6417 F:      Documentation/devicetree/bindings/display/panel/feixin,k101-im2ba02.yaml
6418 F:      drivers/gpu/drm/panel/panel-feixin-k101-im2ba02.c
6419
6420 DRM DRIVER FOR FEIYANG FY07024DI26A30-D MIPI-DSI LCD PANELS
6421 M:      Jagan Teki <jagan@amarulasolutions.com>
6422 S:      Maintained
6423 F:      Documentation/devicetree/bindings/display/panel/feiyang,fy07024di26a30d.yaml
6424 F:      drivers/gpu/drm/panel/panel-feiyang-fy07024di26a30d.c
6425
6426 DRM DRIVER FOR GENERIC EDP PANELS
6427 R:      Douglas Anderson <dianders@chromium.org>
6428 F:      Documentation/devicetree/bindings/display/panel/panel-edp.yaml
6429 F:      drivers/gpu/drm/panel/panel-edp.c
6430
6431 DRM DRIVER FOR GENERIC USB DISPLAY
6432 M:      Noralf Trønnes <noralf@tronnes.org>
6433 S:      Maintained
6434 W:      https://github.com/notro/gud/wiki
6435 T:      git git://anongit.freedesktop.org/drm/drm-misc
6436 F:      drivers/gpu/drm/gud/
6437 F:      include/drm/gud.h
6438
6439 DRM DRIVER FOR GRAIN MEDIA GM12U320 PROJECTORS
6440 M:      Hans de Goede <hdegoede@redhat.com>
6441 S:      Maintained
6442 T:      git git://anongit.freedesktop.org/drm/drm-misc
6443 F:      drivers/gpu/drm/tiny/gm12u320.c
6444
6445 DRM DRIVER FOR HIMAX HX8394 MIPI-DSI LCD panels
6446 M:      Ondrej Jirman <megi@xff.cz>
6447 M:      Javier Martinez Canillas <javierm@redhat.com>
6448 S:      Maintained
6449 T:      git git://anongit.freedesktop.org/drm/drm-misc
6450 F:      Documentation/devicetree/bindings/display/panel/himax,hx8394.yaml
6451 F:      drivers/gpu/drm/panel/panel-himax-hx8394.c
6452
6453 DRM DRIVER FOR HX8357D PANELS
6454 M:      Emma Anholt <emma@anholt.net>
6455 S:      Maintained
6456 T:      git git://anongit.freedesktop.org/drm/drm-misc
6457 F:      Documentation/devicetree/bindings/display/himax,hx8357d.txt
6458 F:      drivers/gpu/drm/tiny/hx8357d.c
6459
6460 DRM DRIVER FOR ILITEK ILI9225 PANELS
6461 M:      David Lechner <david@lechnology.com>
6462 S:      Maintained
6463 T:      git git://anongit.freedesktop.org/drm/drm-misc
6464 F:      Documentation/devicetree/bindings/display/ilitek,ili9225.txt
6465 F:      drivers/gpu/drm/tiny/ili9225.c
6466
6467 DRM DRIVER FOR ILITEK ILI9486 PANELS
6468 M:      Kamlesh Gurudasani <kamlesh.gurudasani@gmail.com>
6469 S:      Maintained
6470 T:      git git://anongit.freedesktop.org/drm/drm-misc
6471 F:      Documentation/devicetree/bindings/display/ilitek,ili9486.yaml
6472 F:      drivers/gpu/drm/tiny/ili9486.c
6473
6474 DRM DRIVER FOR JADARD JD9365DA-H3 MIPI-DSI LCD PANELS
6475 M:      Jagan Teki <jagan@edgeble.ai>
6476 S:      Maintained
6477 F:      Documentation/devicetree/bindings/display/panel/jadard,jd9365da-h3.yaml
6478 F:      drivers/gpu/drm/panel/panel-jadard-jd9365da-h3.c
6479
6480 DRM DRIVER FOR LOGICVC DISPLAY CONTROLLER
6481 M:      Paul Kocialkowski <paul.kocialkowski@bootlin.com>
6482 S:      Supported
6483 T:      git git://anongit.freedesktop.org/drm/drm-misc
6484 F:      drivers/gpu/drm/logicvc/
6485
6486 DRM DRIVER FOR LVDS PANELS
6487 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6488 L:      dri-devel@lists.freedesktop.org
6489 T:      git git://anongit.freedesktop.org/drm/drm-misc
6490 S:      Maintained
6491 F:      drivers/gpu/drm/panel/panel-lvds.c
6492 F:      Documentation/devicetree/bindings/display/lvds.yaml
6493 F:      Documentation/devicetree/bindings/display/panel/panel-lvds.yaml
6494
6495 DRM DRIVER FOR MANTIX MLAF057WE51 PANELS
6496 M:      Guido Günther <agx@sigxcpu.org>
6497 R:      Purism Kernel Team <kernel@puri.sm>
6498 S:      Maintained
6499 F:      Documentation/devicetree/bindings/display/panel/mantix,mlaf057we51-x.yaml
6500 F:      drivers/gpu/drm/panel/panel-mantix-mlaf057we51.c
6501
6502 DRM DRIVER FOR MGA G200 GRAPHICS CHIPS
6503 M:      Dave Airlie <airlied@redhat.com>
6504 R:      Thomas Zimmermann <tzimmermann@suse.de>
6505 L:      dri-devel@lists.freedesktop.org
6506 S:      Supported
6507 T:      git git://anongit.freedesktop.org/drm/drm-misc
6508 F:      drivers/gpu/drm/mgag200/
6509
6510 DRM DRIVER FOR MI0283QT
6511 M:      Noralf Trønnes <noralf@tronnes.org>
6512 S:      Maintained
6513 T:      git git://anongit.freedesktop.org/drm/drm-misc
6514 F:      Documentation/devicetree/bindings/display/multi-inno,mi0283qt.txt
6515 F:      drivers/gpu/drm/tiny/mi0283qt.c
6516
6517 DRM DRIVER FOR MIPI DBI compatible panels
6518 M:      Noralf Trønnes <noralf@tronnes.org>
6519 S:      Maintained
6520 W:      https://github.com/notro/panel-mipi-dbi/wiki
6521 T:      git git://anongit.freedesktop.org/drm/drm-misc
6522 F:      Documentation/devicetree/bindings/display/panel/panel-mipi-dbi-spi.yaml
6523 F:      drivers/gpu/drm/tiny/panel-mipi-dbi.c
6524
6525 DRM DRIVER FOR MSM ADRENO GPU
6526 M:      Rob Clark <robdclark@gmail.com>
6527 M:      Abhinav Kumar <quic_abhinavk@quicinc.com>
6528 M:      Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
6529 R:      Sean Paul <sean@poorly.run>
6530 L:      linux-arm-msm@vger.kernel.org
6531 L:      dri-devel@lists.freedesktop.org
6532 L:      freedreno@lists.freedesktop.org
6533 S:      Maintained
6534 B:      https://gitlab.freedesktop.org/drm/msm/-/issues
6535 T:      git https://gitlab.freedesktop.org/drm/msm.git
6536 F:      Documentation/devicetree/bindings/display/msm/
6537 F:      drivers/gpu/drm/msm/
6538 F:      include/uapi/drm/msm_drm.h
6539
6540 DRM DRIVER FOR NOVATEK NT35510 PANELS
6541 M:      Linus Walleij <linus.walleij@linaro.org>
6542 S:      Maintained
6543 T:      git git://anongit.freedesktop.org/drm/drm-misc
6544 F:      Documentation/devicetree/bindings/display/panel/novatek,nt35510.yaml
6545 F:      drivers/gpu/drm/panel/panel-novatek-nt35510.c
6546
6547 DRM DRIVER FOR NOVATEK NT35560 PANELS
6548 M:      Linus Walleij <linus.walleij@linaro.org>
6549 S:      Maintained
6550 T:      git git://anongit.freedesktop.org/drm/drm-misc
6551 F:      Documentation/devicetree/bindings/display/panel/sony,acx424akp.yaml
6552 F:      drivers/gpu/drm/panel/panel-novatek-nt35560.c
6553
6554 DRM DRIVER FOR NOVATEK NT36523 PANELS
6555 M:      Jianhua Lu <lujianhua000@gmail.com>
6556 S:      Maintained
6557 T:      git git://anongit.freedesktop.org/drm/drm-misc
6558 F:      Documentation/devicetree/bindings/display/panel/novatek,nt36523.yaml
6559 F:      drivers/gpu/drm/panel/panel-novatek-nt36523.c
6560
6561 DRM DRIVER FOR NOVATEK NT36672A PANELS
6562 M:      Sumit Semwal <sumit.semwal@linaro.org>
6563 S:      Maintained
6564 T:      git git://anongit.freedesktop.org/drm/drm-misc
6565 F:      Documentation/devicetree/bindings/display/panel/novatek,nt36672a.yaml
6566 F:      drivers/gpu/drm/panel/panel-novatek-nt36672a.c
6567
6568 DRM DRIVER FOR NVIDIA GEFORCE/QUADRO GPUS
6569 M:      Ben Skeggs <bskeggs@redhat.com>
6570 M:      Karol Herbst <kherbst@redhat.com>
6571 M:      Lyude Paul <lyude@redhat.com>
6572 L:      dri-devel@lists.freedesktop.org
6573 L:      nouveau@lists.freedesktop.org
6574 S:      Supported
6575 W:      https://nouveau.freedesktop.org/
6576 Q:      https://patchwork.freedesktop.org/project/nouveau/
6577 Q:      https://gitlab.freedesktop.org/drm/nouveau/-/merge_requests
6578 B:      https://gitlab.freedesktop.org/drm/nouveau/-/issues
6579 C:      irc://irc.oftc.net/nouveau
6580 T:      git https://gitlab.freedesktop.org/drm/nouveau.git
6581 F:      drivers/gpu/drm/nouveau/
6582 F:      include/uapi/drm/nouveau_drm.h
6583
6584 DRM DRIVER FOR OLIMEX LCD-OLINUXINO PANELS
6585 M:      Stefan Mavrodiev <stefan@olimex.com>
6586 S:      Maintained
6587 F:      Documentation/devicetree/bindings/display/panel/olimex,lcd-olinuxino.yaml
6588 F:      drivers/gpu/drm/panel/panel-olimex-lcd-olinuxino.c
6589
6590 DRM DRIVER FOR PARADE PS8640 BRIDGE CHIP
6591 R:      Douglas Anderson <dianders@chromium.org>
6592 F:      Documentation/devicetree/bindings/display/bridge/ps8640.yaml
6593 F:      drivers/gpu/drm/bridge/parade-ps8640.c
6594
6595 DRM DRIVER FOR PERVASIVE DISPLAYS REPAPER PANELS
6596 M:      Noralf Trønnes <noralf@tronnes.org>
6597 S:      Maintained
6598 T:      git git://anongit.freedesktop.org/drm/drm-misc
6599 F:      Documentation/devicetree/bindings/display/repaper.txt
6600 F:      drivers/gpu/drm/tiny/repaper.c
6601
6602 DRM DRIVER FOR SOLOMON SSD130X OLED DISPLAYS
6603 M:      Javier Martinez Canillas <javierm@redhat.com>
6604 S:      Maintained
6605 T:      git git://anongit.freedesktop.org/drm/drm-misc
6606 F:      Documentation/devicetree/bindings/display/solomon,ssd1307fb.yaml
6607 F:      drivers/gpu/drm/solomon/ssd130x*
6608
6609 DRM DRIVER FOR QEMU'S CIRRUS DEVICE
6610 M:      Dave Airlie <airlied@redhat.com>
6611 M:      Gerd Hoffmann <kraxel@redhat.com>
6612 L:      virtualization@lists.linux-foundation.org
6613 S:      Obsolete
6614 W:      https://www.kraxel.org/blog/2014/10/qemu-using-cirrus-considered-harmful/
6615 T:      git git://anongit.freedesktop.org/drm/drm-misc
6616 F:      drivers/gpu/drm/tiny/cirrus.c
6617
6618 DRM DRIVER FOR QXL VIRTUAL GPU
6619 M:      Dave Airlie <airlied@redhat.com>
6620 M:      Gerd Hoffmann <kraxel@redhat.com>
6621 L:      virtualization@lists.linux-foundation.org
6622 L:      spice-devel@lists.freedesktop.org
6623 S:      Maintained
6624 T:      git git://anongit.freedesktop.org/drm/drm-misc
6625 F:      drivers/gpu/drm/qxl/
6626 F:      include/uapi/drm/qxl_drm.h
6627
6628 DRM DRIVER FOR RAYDIUM RM67191 PANELS
6629 M:      Robert Chiras <robert.chiras@nxp.com>
6630 S:      Maintained
6631 F:      Documentation/devicetree/bindings/display/panel/raydium,rm67191.yaml
6632 F:      drivers/gpu/drm/panel/panel-raydium-rm67191.c
6633
6634 DRM DRIVER FOR SAMSUNG DB7430 PANELS
6635 M:      Linus Walleij <linus.walleij@linaro.org>
6636 S:      Maintained
6637 T:      git git://anongit.freedesktop.org/drm/drm-misc
6638 F:      Documentation/devicetree/bindings/display/panel/samsung,lms397kf04.yaml
6639 F:      drivers/gpu/drm/panel/panel-samsung-db7430.c
6640
6641 DRM DRIVER FOR SAMSUNG MIPI DSIM BRIDGE
6642 M:      Inki Dae <inki.dae@samsung.com>
6643 M:      Jagan Teki <jagan@amarulasolutions.com>
6644 M:      Marek Szyprowski <m.szyprowski@samsung.com>
6645 S:      Maintained
6646 T:      git git://anongit.freedesktop.org/drm/drm-misc
6647 F:      Documentation/devicetree/bindings/display/bridge/samsung,mipi-dsim.yaml
6648 F:      drivers/gpu/drm/bridge/samsung-dsim.c
6649 F:      include/drm/bridge/samsung-dsim.h
6650
6651 DRM DRIVER FOR SAMSUNG S6D27A1 PANELS
6652 M:      Markuss Broks <markuss.broks@gmail.com>
6653 S:      Maintained
6654 F:      Documentation/devicetree/bindings/display/panel/samsung,s6d27a1.yaml
6655 F:      drivers/gpu/drm/panel/panel-samsung-s6d27a1.c
6656
6657 DRM DRIVER FOR SITRONIX ST7703 PANELS
6658 M:      Guido Günther <agx@sigxcpu.org>
6659 R:      Purism Kernel Team <kernel@puri.sm>
6660 R:      Ondrej Jirman <megous@megous.com>
6661 S:      Maintained
6662 F:      Documentation/devicetree/bindings/display/panel/rocktech,jh057n00900.yaml
6663 F:      drivers/gpu/drm/panel/panel-sitronix-st7703.c
6664
6665 DRM DRIVER FOR FIRMWARE FRAMEBUFFERS
6666 M:      Thomas Zimmermann <tzimmermann@suse.de>
6667 M:      Javier Martinez Canillas <javierm@redhat.com>
6668 L:      dri-devel@lists.freedesktop.org
6669 S:      Maintained
6670 T:      git git://anongit.freedesktop.org/drm/drm-misc
6671 F:      drivers/gpu/drm/drm_aperture.c
6672 F:      drivers/gpu/drm/tiny/ofdrm.c
6673 F:      drivers/gpu/drm/tiny/simpledrm.c
6674 F:      drivers/video/aperture.c
6675 F:      drivers/video/nomodeset.c
6676 F:      include/drm/drm_aperture.h
6677 F:      include/linux/aperture.h
6678 F:      include/video/nomodeset.h
6679
6680 DRM DRIVER FOR SITRONIX ST7586 PANELS
6681 M:      David Lechner <david@lechnology.com>
6682 S:      Maintained
6683 T:      git git://anongit.freedesktop.org/drm/drm-misc
6684 F:      Documentation/devicetree/bindings/display/sitronix,st7586.txt
6685 F:      drivers/gpu/drm/tiny/st7586.c
6686
6687 DRM DRIVER FOR SITRONIX ST7701 PANELS
6688 M:      Jagan Teki <jagan@amarulasolutions.com>
6689 S:      Maintained
6690 F:      Documentation/devicetree/bindings/display/panel/sitronix,st7701.yaml
6691 F:      drivers/gpu/drm/panel/panel-sitronix-st7701.c
6692
6693 DRM DRIVER FOR SITRONIX ST7735R PANELS
6694 M:      David Lechner <david@lechnology.com>
6695 S:      Maintained
6696 T:      git git://anongit.freedesktop.org/drm/drm-misc
6697 F:      Documentation/devicetree/bindings/display/sitronix,st7735r.yaml
6698 F:      drivers/gpu/drm/tiny/st7735r.c
6699
6700 DRM DRIVER FOR ST-ERICSSON MCDE
6701 M:      Linus Walleij <linus.walleij@linaro.org>
6702 S:      Maintained
6703 T:      git git://anongit.freedesktop.org/drm/drm-misc
6704 F:      Documentation/devicetree/bindings/display/ste,mcde.yaml
6705 F:      drivers/gpu/drm/mcde/
6706
6707 DRM DRIVER FOR TI DLPC3433 MIPI DSI TO DMD BRIDGE
6708 M:      Jagan Teki <jagan@amarulasolutions.com>
6709 S:      Maintained
6710 F:      Documentation/devicetree/bindings/display/bridge/ti,dlpc3433.yaml
6711 F:      drivers/gpu/drm/bridge/ti-dlpc3433.c
6712
6713 DRM DRIVER FOR TI SN65DSI86 BRIDGE CHIP
6714 R:      Douglas Anderson <dianders@chromium.org>
6715 F:      Documentation/devicetree/bindings/display/bridge/ti,sn65dsi86.yaml
6716 F:      drivers/gpu/drm/bridge/ti-sn65dsi86.c
6717
6718 DRM DRIVER FOR TPO TPG110 PANELS
6719 M:      Linus Walleij <linus.walleij@linaro.org>
6720 S:      Maintained
6721 T:      git git://anongit.freedesktop.org/drm/drm-misc
6722 F:      Documentation/devicetree/bindings/display/panel/tpo,tpg110.yaml
6723 F:      drivers/gpu/drm/panel/panel-tpo-tpg110.c
6724
6725 DRM DRIVER FOR USB DISPLAYLINK VIDEO ADAPTERS
6726 M:      Dave Airlie <airlied@redhat.com>
6727 R:      Sean Paul <sean@poorly.run>
6728 R:      Thomas Zimmermann <tzimmermann@suse.de>
6729 L:      dri-devel@lists.freedesktop.org
6730 S:      Supported
6731 T:      git git://anongit.freedesktop.org/drm/drm-misc
6732 F:      drivers/gpu/drm/udl/
6733
6734 DRM DRIVER FOR VIRTUAL KERNEL MODESETTING (VKMS)
6735 M:      Rodrigo Siqueira <rodrigosiqueiramelo@gmail.com>
6736 M:      Melissa Wen <melissa.srw@gmail.com>
6737 R:      Haneen Mohammed <hamohammed.sa@gmail.com>
6738 R:      Daniel Vetter <daniel@ffwll.ch>
6739 L:      dri-devel@lists.freedesktop.org
6740 S:      Maintained
6741 T:      git git://anongit.freedesktop.org/drm/drm-misc
6742 F:      Documentation/gpu/vkms.rst
6743 F:      drivers/gpu/drm/vkms/
6744
6745 DRM DRIVER FOR VIRTUALBOX VIRTUAL GPU
6746 M:      Hans de Goede <hdegoede@redhat.com>
6747 L:      dri-devel@lists.freedesktop.org
6748 S:      Maintained
6749 T:      git git://anongit.freedesktop.org/drm/drm-misc
6750 F:      drivers/gpu/drm/vboxvideo/
6751
6752 DRM DRIVER FOR VMWARE VIRTUAL GPU
6753 M:      Zack Rusin <zackr@vmware.com>
6754 R:      VMware Graphics Reviewers <linux-graphics-maintainer@vmware.com>
6755 L:      dri-devel@lists.freedesktop.org
6756 S:      Supported
6757 T:      git git://anongit.freedesktop.org/drm/drm-misc
6758 F:      drivers/gpu/drm/vmwgfx/
6759 F:      include/uapi/drm/vmwgfx_drm.h
6760
6761 DRM DRIVER FOR WIDECHIPS WS2401 PANELS
6762 M:      Linus Walleij <linus.walleij@linaro.org>
6763 S:      Maintained
6764 T:      git git://anongit.freedesktop.org/drm/drm-misc
6765 F:      Documentation/devicetree/bindings/display/panel/samsung,lms380kf01.yaml
6766 F:      drivers/gpu/drm/panel/panel-widechips-ws2401.c
6767
6768 DRM DRIVERS
6769 M:      David Airlie <airlied@gmail.com>
6770 M:      Daniel Vetter <daniel@ffwll.ch>
6771 L:      dri-devel@lists.freedesktop.org
6772 S:      Maintained
6773 B:      https://gitlab.freedesktop.org/drm
6774 C:      irc://irc.oftc.net/dri-devel
6775 T:      git git://anongit.freedesktop.org/drm/drm
6776 F:      Documentation/devicetree/bindings/display/
6777 F:      Documentation/devicetree/bindings/gpu/
6778 F:      Documentation/gpu/
6779 F:      drivers/gpu/
6780 F:      include/drm/
6781 F:      include/linux/vga*
6782 F:      include/uapi/drm/
6783
6784 DRM DRIVERS AND MISC GPU PATCHES
6785 M:      Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
6786 M:      Maxime Ripard <mripard@kernel.org>
6787 M:      Thomas Zimmermann <tzimmermann@suse.de>
6788 S:      Maintained
6789 W:      https://01.org/linuxgraphics/gfx-docs/maintainer-tools/drm-misc.html
6790 T:      git git://anongit.freedesktop.org/drm/drm-misc
6791 F:      Documentation/gpu/
6792 F:      drivers/gpu/drm/*
6793 F:      drivers/gpu/vga/
6794 F:      include/drm/drm*
6795 F:      include/linux/vga*
6796 F:      include/uapi/drm/drm*
6797
6798 DRM COMPUTE ACCELERATORS DRIVERS AND FRAMEWORK
6799 M:      Oded Gabbay <ogabbay@kernel.org>
6800 L:      dri-devel@lists.freedesktop.org
6801 S:      Maintained
6802 C:      irc://irc.oftc.net/dri-devel
6803 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/ogabbay/accel.git
6804 F:      Documentation/accel/
6805 F:      drivers/accel/
6806 F:      include/drm/drm_accel.h
6807
6808 DRM ACCEL DRIVERS FOR INTEL VPU
6809 M:      Jacek Lawrynowicz <jacek.lawrynowicz@linux.intel.com>
6810 M:      Stanislaw Gruszka <stanislaw.gruszka@linux.intel.com>
6811 L:      dri-devel@lists.freedesktop.org
6812 S:      Supported
6813 T:      git git://anongit.freedesktop.org/drm/drm-misc
6814 F:      drivers/accel/ivpu/
6815 F:      include/uapi/drm/ivpu_accel.h
6816
6817 DRM DRIVERS FOR ALLWINNER A10
6818 M:      Maxime Ripard <mripard@kernel.org>
6819 M:      Chen-Yu Tsai <wens@csie.org>
6820 L:      dri-devel@lists.freedesktop.org
6821 S:      Supported
6822 T:      git git://anongit.freedesktop.org/drm/drm-misc
6823 F:      Documentation/devicetree/bindings/display/allwinner*
6824 F:      drivers/gpu/drm/sun4i/
6825
6826 DRM DRIVERS FOR AMLOGIC SOCS
6827 M:      Neil Armstrong <neil.armstrong@linaro.org>
6828 L:      dri-devel@lists.freedesktop.org
6829 L:      linux-amlogic@lists.infradead.org
6830 S:      Supported
6831 W:      http://linux-meson.com/
6832 T:      git git://anongit.freedesktop.org/drm/drm-misc
6833 F:      Documentation/devicetree/bindings/display/amlogic,meson-dw-hdmi.yaml
6834 F:      Documentation/devicetree/bindings/display/amlogic,meson-vpu.yaml
6835 F:      Documentation/gpu/meson.rst
6836 F:      drivers/gpu/drm/meson/
6837
6838 DRM DRIVERS FOR ATMEL HLCDC
6839 M:      Sam Ravnborg <sam@ravnborg.org>
6840 M:      Boris Brezillon <bbrezillon@kernel.org>
6841 L:      dri-devel@lists.freedesktop.org
6842 S:      Supported
6843 T:      git git://anongit.freedesktop.org/drm/drm-misc
6844 F:      Documentation/devicetree/bindings/display/atmel/
6845 F:      drivers/gpu/drm/atmel-hlcdc/
6846
6847 DRM DRIVERS FOR BRIDGE CHIPS
6848 M:      Andrzej Hajda <andrzej.hajda@intel.com>
6849 M:      Neil Armstrong <neil.armstrong@linaro.org>
6850 M:      Robert Foss <rfoss@kernel.org>
6851 R:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
6852 R:      Jonas Karlman <jonas@kwiboo.se>
6853 R:      Jernej Skrabec <jernej.skrabec@gmail.com>
6854 S:      Maintained
6855 T:      git git://anongit.freedesktop.org/drm/drm-misc
6856 F:      Documentation/devicetree/bindings/display/bridge/
6857 F:      drivers/gpu/drm/bridge/
6858 F:      include/drm/drm_bridge.h
6859
6860 DRM DRIVERS FOR EXYNOS
6861 M:      Inki Dae <inki.dae@samsung.com>
6862 M:      Seung-Woo Kim <sw0312.kim@samsung.com>
6863 M:      Kyungmin Park <kyungmin.park@samsung.com>
6864 L:      dri-devel@lists.freedesktop.org
6865 S:      Supported
6866 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
6867 F:      Documentation/devicetree/bindings/display/exynos/
6868 F:      Documentation/devicetree/bindings/display/samsung/
6869 F:      drivers/gpu/drm/exynos/
6870 F:      include/uapi/drm/exynos_drm.h
6871
6872 DRM DRIVERS FOR FREESCALE DCU
6873 M:      Stefan Agner <stefan@agner.ch>
6874 M:      Alison Wang <alison.wang@nxp.com>
6875 L:      dri-devel@lists.freedesktop.org
6876 S:      Supported
6877 T:      git git://anongit.freedesktop.org/drm/drm-misc
6878 F:      Documentation/devicetree/bindings/display/fsl,dcu.txt
6879 F:      Documentation/devicetree/bindings/display/fsl,tcon.txt
6880 F:      drivers/gpu/drm/fsl-dcu/
6881
6882 DRM DRIVERS FOR FREESCALE IMX
6883 M:      Philipp Zabel <p.zabel@pengutronix.de>
6884 L:      dri-devel@lists.freedesktop.org
6885 S:      Maintained
6886 F:      Documentation/devicetree/bindings/display/imx/
6887 F:      drivers/gpu/drm/imx/ipuv3/
6888 F:      drivers/gpu/ipu-v3/
6889
6890 DRM DRIVERS FOR FREESCALE IMX BRIDGE
6891 M:      Liu Ying <victor.liu@nxp.com>
6892 L:      dri-devel@lists.freedesktop.org
6893 S:      Maintained
6894 F:      Documentation/devicetree/bindings/display/bridge/fsl,imx8qxp-ldb.yaml
6895 F:      Documentation/devicetree/bindings/display/bridge/fsl,imx8qxp-pixel-combiner.yaml
6896 F:      Documentation/devicetree/bindings/display/bridge/fsl,imx8qxp-pixel-link.yaml
6897 F:      Documentation/devicetree/bindings/display/bridge/fsl,imx8qxp-pxl2dpi.yaml
6898 F:      drivers/gpu/drm/bridge/imx/
6899
6900 DRM DRIVERS FOR GMA500 (Poulsbo, Moorestown and derivative chipsets)
6901 M:      Patrik Jakobsson <patrik.r.jakobsson@gmail.com>
6902 L:      dri-devel@lists.freedesktop.org
6903 S:      Maintained
6904 T:      git git://github.com/patjak/drm-gma500
6905 F:      drivers/gpu/drm/gma500/
6906
6907 DRM DRIVERS FOR HISILICON
6908 M:      Xinliang Liu <xinliang.liu@linaro.org>
6909 M:      Tian Tao  <tiantao6@hisilicon.com>
6910 R:      Xinwei Kong <kong.kongxinwei@hisilicon.com>
6911 R:      Sumit Semwal <sumit.semwal@linaro.org>
6912 R:      Yongqin Liu <yongqin.liu@linaro.org>
6913 R:      John Stultz <jstultz@google.com>
6914 L:      dri-devel@lists.freedesktop.org
6915 S:      Maintained
6916 T:      git git://anongit.freedesktop.org/drm/drm-misc
6917 F:      Documentation/devicetree/bindings/display/hisilicon/
6918 F:      drivers/gpu/drm/hisilicon/
6919
6920 DRM DRIVER FOR HYPERV SYNTHETIC VIDEO DEVICE
6921 M:      Deepak Rawat <drawat.floss@gmail.com>
6922 L:      linux-hyperv@vger.kernel.org
6923 L:      dri-devel@lists.freedesktop.org
6924 S:      Maintained
6925 T:      git git://anongit.freedesktop.org/drm/drm-misc
6926 F:      drivers/gpu/drm/hyperv
6927
6928 DRM DRIVERS FOR LIMA
6929 M:      Qiang Yu <yuq825@gmail.com>
6930 L:      dri-devel@lists.freedesktop.org
6931 L:      lima@lists.freedesktop.org (moderated for non-subscribers)
6932 S:      Maintained
6933 T:      git git://anongit.freedesktop.org/drm/drm-misc
6934 F:      drivers/gpu/drm/lima/
6935 F:      include/uapi/drm/lima_drm.h
6936
6937 DRM DRIVERS FOR MEDIATEK
6938 M:      Chun-Kuang Hu <chunkuang.hu@kernel.org>
6939 M:      Philipp Zabel <p.zabel@pengutronix.de>
6940 L:      dri-devel@lists.freedesktop.org
6941 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
6942 S:      Supported
6943 F:      Documentation/devicetree/bindings/display/mediatek/
6944 F:      drivers/gpu/drm/mediatek/
6945 F:      drivers/phy/mediatek/phy-mtk-dp.c
6946 F:      drivers/phy/mediatek/phy-mtk-hdmi*
6947 F:      drivers/phy/mediatek/phy-mtk-mipi*
6948
6949 DRM DRIVERS FOR NVIDIA TEGRA
6950 M:      Thierry Reding <thierry.reding@gmail.com>
6951 M:      Mikko Perttunen <mperttunen@nvidia.com>
6952 L:      dri-devel@lists.freedesktop.org
6953 L:      linux-tegra@vger.kernel.org
6954 S:      Supported
6955 T:      git https://gitlab.freedesktop.org/drm/tegra.git
6956 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.yaml
6957 F:      Documentation/devicetree/bindings/gpu/host1x/
6958 F:      drivers/gpu/drm/tegra/
6959 F:      drivers/gpu/host1x/
6960 F:      include/linux/host1x.h
6961 F:      include/uapi/drm/tegra_drm.h
6962
6963 DRM DRIVERS FOR RENESAS
6964 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6965 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
6966 L:      dri-devel@lists.freedesktop.org
6967 L:      linux-renesas-soc@vger.kernel.org
6968 S:      Supported
6969 T:      git git://linuxtv.org/pinchartl/media drm/du/next
6970 F:      Documentation/devicetree/bindings/display/bridge/renesas,dsi-csi2-tx.yaml
6971 F:      Documentation/devicetree/bindings/display/bridge/renesas,dw-hdmi.yaml
6972 F:      Documentation/devicetree/bindings/display/bridge/renesas,lvds.yaml
6973 F:      Documentation/devicetree/bindings/display/renesas,du.yaml
6974 F:      drivers/gpu/drm/rcar-du/
6975 F:      drivers/gpu/drm/shmobile/
6976 F:      include/linux/platform_data/shmob_drm.h
6977
6978 DRM DRIVERS FOR ROCKCHIP
6979 M:      Sandy Huang <hjc@rock-chips.com>
6980 M:      Heiko Stübner <heiko@sntech.de>
6981 L:      dri-devel@lists.freedesktop.org
6982 S:      Maintained
6983 T:      git git://anongit.freedesktop.org/drm/drm-misc
6984 F:      Documentation/devicetree/bindings/display/rockchip/
6985 F:      drivers/gpu/drm/rockchip/
6986
6987 DRM DRIVERS FOR STI
6988 M:      Alain Volmat <alain.volmat@foss.st.com>
6989 L:      dri-devel@lists.freedesktop.org
6990 S:      Maintained
6991 T:      git git://anongit.freedesktop.org/drm/drm-misc
6992 F:      Documentation/devicetree/bindings/display/st,stih4xx.txt
6993 F:      drivers/gpu/drm/sti
6994
6995 DRM DRIVERS FOR STM
6996 M:      Yannick Fertre <yannick.fertre@foss.st.com>
6997 M:      Raphael Gallais-Pou <raphael.gallais-pou@foss.st.com>
6998 M:      Philippe Cornu <philippe.cornu@foss.st.com>
6999 L:      dri-devel@lists.freedesktop.org
7000 S:      Maintained
7001 T:      git git://anongit.freedesktop.org/drm/drm-misc
7002 F:      Documentation/devicetree/bindings/display/st,stm32-ltdc.yaml
7003 F:      drivers/gpu/drm/stm
7004
7005 DRM DRIVERS FOR TI KEYSTONE
7006 M:      Jyri Sarha <jyri.sarha@iki.fi>
7007 M:      Tomi Valkeinen <tomba@kernel.org>
7008 L:      dri-devel@lists.freedesktop.org
7009 S:      Maintained
7010 T:      git git://anongit.freedesktop.org/drm/drm-misc
7011 F:      Documentation/devicetree/bindings/display/ti/ti,am65x-dss.yaml
7012 F:      Documentation/devicetree/bindings/display/ti/ti,j721e-dss.yaml
7013 F:      Documentation/devicetree/bindings/display/ti/ti,k2g-dss.yaml
7014 F:      drivers/gpu/drm/tidss/
7015
7016 DRM DRIVERS FOR TI LCDC
7017 M:      Jyri Sarha <jyri.sarha@iki.fi>
7018 R:      Tomi Valkeinen <tomba@kernel.org>
7019 L:      dri-devel@lists.freedesktop.org
7020 S:      Maintained
7021 F:      Documentation/devicetree/bindings/display/tilcdc/
7022 F:      drivers/gpu/drm/tilcdc/
7023
7024 DRM DRIVERS FOR TI OMAP
7025 M:      Tomi Valkeinen <tomba@kernel.org>
7026 L:      dri-devel@lists.freedesktop.org
7027 S:      Maintained
7028 F:      Documentation/devicetree/bindings/display/ti/
7029 F:      drivers/gpu/drm/omapdrm/
7030
7031 DRM DRIVERS FOR V3D
7032 M:      Emma Anholt <emma@anholt.net>
7033 M:      Melissa Wen <mwen@igalia.com>
7034 S:      Supported
7035 T:      git git://anongit.freedesktop.org/drm/drm-misc
7036 F:      Documentation/devicetree/bindings/gpu/brcm,bcm-v3d.yaml
7037 F:      drivers/gpu/drm/v3d/
7038 F:      include/uapi/drm/v3d_drm.h
7039
7040 DRM DRIVERS FOR VC4
7041 M:      Emma Anholt <emma@anholt.net>
7042 M:      Maxime Ripard <mripard@kernel.org>
7043 S:      Supported
7044 T:      git git://github.com/anholt/linux
7045 T:      git git://anongit.freedesktop.org/drm/drm-misc
7046 F:      Documentation/devicetree/bindings/display/brcm,bcm2835-*.yaml
7047 F:      drivers/gpu/drm/vc4/
7048 F:      include/uapi/drm/vc4_drm.h
7049
7050 DRM DRIVERS FOR VIVANTE GPU IP
7051 M:      Lucas Stach <l.stach@pengutronix.de>
7052 R:      Russell King <linux+etnaviv@armlinux.org.uk>
7053 R:      Christian Gmeiner <christian.gmeiner@gmail.com>
7054 L:      etnaviv@lists.freedesktop.org (moderated for non-subscribers)
7055 L:      dri-devel@lists.freedesktop.org
7056 S:      Maintained
7057 F:      Documentation/devicetree/bindings/gpu/vivante,gc.yaml
7058 F:      drivers/gpu/drm/etnaviv/
7059 F:      include/uapi/drm/etnaviv_drm.h
7060
7061 DRM DRIVERS FOR XEN
7062 M:      Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
7063 L:      dri-devel@lists.freedesktop.org
7064 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
7065 S:      Supported
7066 T:      git git://anongit.freedesktop.org/drm/drm-misc
7067 F:      Documentation/gpu/xen-front.rst
7068 F:      drivers/gpu/drm/xen/
7069
7070 DRM DRIVERS FOR XILINX
7071 M:      Hyun Kwon <hyun.kwon@xilinx.com>
7072 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
7073 L:      dri-devel@lists.freedesktop.org
7074 S:      Maintained
7075 T:      git git://anongit.freedesktop.org/drm/drm-misc
7076 F:      Documentation/devicetree/bindings/display/xlnx/
7077 F:      drivers/gpu/drm/xlnx/
7078
7079 DRM PANEL DRIVERS
7080 M:      Neil Armstrong <neil.armstrong@linaro.org>
7081 R:      Sam Ravnborg <sam@ravnborg.org>
7082 L:      dri-devel@lists.freedesktop.org
7083 S:      Maintained
7084 T:      git git://anongit.freedesktop.org/drm/drm-misc
7085 F:      Documentation/devicetree/bindings/display/panel/
7086 F:      drivers/gpu/drm/drm_panel.c
7087 F:      drivers/gpu/drm/panel/
7088 F:      include/drm/drm_panel.h
7089
7090 DRM PRIVACY-SCREEN CLASS
7091 M:      Hans de Goede <hdegoede@redhat.com>
7092 L:      dri-devel@lists.freedesktop.org
7093 S:      Maintained
7094 T:      git git://anongit.freedesktop.org/drm/drm-misc
7095 F:      drivers/gpu/drm/drm_privacy_screen*
7096 F:      include/drm/drm_privacy_screen*
7097
7098 DRM TTM SUBSYSTEM
7099 M:      Christian Koenig <christian.koenig@amd.com>
7100 M:      Huang Rui <ray.huang@amd.com>
7101 L:      dri-devel@lists.freedesktop.org
7102 S:      Maintained
7103 T:      git git://anongit.freedesktop.org/drm/drm-misc
7104 F:      drivers/gpu/drm/ttm/
7105 F:      include/drm/ttm/
7106
7107 DRM GPU SCHEDULER
7108 M:      Luben Tuikov <luben.tuikov@amd.com>
7109 L:      dri-devel@lists.freedesktop.org
7110 S:      Maintained
7111 T:      git git://anongit.freedesktop.org/drm/drm-misc
7112 F:      drivers/gpu/drm/scheduler/
7113 F:      include/drm/gpu_scheduler.h
7114
7115 DSBR100 USB FM RADIO DRIVER
7116 M:      Alexey Klimov <klimov.linux@gmail.com>
7117 L:      linux-media@vger.kernel.org
7118 S:      Maintained
7119 T:      git git://linuxtv.org/media_tree.git
7120 F:      drivers/media/radio/dsbr100.c
7121
7122 DT3155 MEDIA DRIVER
7123 M:      Hans Verkuil <hverkuil@xs4all.nl>
7124 L:      linux-media@vger.kernel.org
7125 S:      Odd Fixes
7126 W:      https://linuxtv.org
7127 T:      git git://linuxtv.org/media_tree.git
7128 F:      drivers/media/pci/dt3155/
7129
7130 DVB_USB_AF9015 MEDIA DRIVER
7131 M:      Antti Palosaari <crope@iki.fi>
7132 L:      linux-media@vger.kernel.org
7133 S:      Maintained
7134 W:      https://linuxtv.org
7135 W:      http://palosaari.fi/linux/
7136 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7137 T:      git git://linuxtv.org/anttip/media_tree.git
7138 F:      drivers/media/usb/dvb-usb-v2/af9015*
7139
7140 DVB_USB_AF9035 MEDIA DRIVER
7141 M:      Antti Palosaari <crope@iki.fi>
7142 L:      linux-media@vger.kernel.org
7143 S:      Maintained
7144 W:      https://linuxtv.org
7145 W:      http://palosaari.fi/linux/
7146 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7147 T:      git git://linuxtv.org/anttip/media_tree.git
7148 F:      drivers/media/usb/dvb-usb-v2/af9035*
7149
7150 DVB_USB_ANYSEE MEDIA DRIVER
7151 M:      Antti Palosaari <crope@iki.fi>
7152 L:      linux-media@vger.kernel.org
7153 S:      Maintained
7154 W:      https://linuxtv.org
7155 W:      http://palosaari.fi/linux/
7156 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7157 T:      git git://linuxtv.org/anttip/media_tree.git
7158 F:      drivers/media/usb/dvb-usb-v2/anysee*
7159
7160 DVB_USB_AU6610 MEDIA DRIVER
7161 M:      Antti Palosaari <crope@iki.fi>
7162 L:      linux-media@vger.kernel.org
7163 S:      Maintained
7164 W:      https://linuxtv.org
7165 W:      http://palosaari.fi/linux/
7166 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7167 T:      git git://linuxtv.org/anttip/media_tree.git
7168 F:      drivers/media/usb/dvb-usb-v2/au6610*
7169
7170 DVB_USB_CE6230 MEDIA DRIVER
7171 M:      Antti Palosaari <crope@iki.fi>
7172 L:      linux-media@vger.kernel.org
7173 S:      Maintained
7174 W:      https://linuxtv.org
7175 W:      http://palosaari.fi/linux/
7176 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7177 T:      git git://linuxtv.org/anttip/media_tree.git
7178 F:      drivers/media/usb/dvb-usb-v2/ce6230*
7179
7180 DVB_USB_CXUSB MEDIA DRIVER
7181 M:      Michael Krufky <mkrufky@linuxtv.org>
7182 L:      linux-media@vger.kernel.org
7183 S:      Maintained
7184 W:      https://linuxtv.org
7185 W:      http://github.com/mkrufky
7186 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7187 T:      git git://linuxtv.org/media_tree.git
7188 F:      drivers/media/usb/dvb-usb/cxusb*
7189
7190 DVB_USB_EC168 MEDIA DRIVER
7191 M:      Antti Palosaari <crope@iki.fi>
7192 L:      linux-media@vger.kernel.org
7193 S:      Maintained
7194 W:      https://linuxtv.org
7195 W:      http://palosaari.fi/linux/
7196 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7197 T:      git git://linuxtv.org/anttip/media_tree.git
7198 F:      drivers/media/usb/dvb-usb-v2/ec168*
7199
7200 DVB_USB_GL861 MEDIA DRIVER
7201 M:      Antti Palosaari <crope@iki.fi>
7202 L:      linux-media@vger.kernel.org
7203 S:      Maintained
7204 W:      https://linuxtv.org
7205 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7206 T:      git git://linuxtv.org/anttip/media_tree.git
7207 F:      drivers/media/usb/dvb-usb-v2/gl861*
7208
7209 DVB_USB_MXL111SF MEDIA DRIVER
7210 M:      Michael Krufky <mkrufky@linuxtv.org>
7211 L:      linux-media@vger.kernel.org
7212 S:      Maintained
7213 W:      https://linuxtv.org
7214 W:      http://github.com/mkrufky
7215 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7216 T:      git git://linuxtv.org/mkrufky/mxl111sf.git
7217 F:      drivers/media/usb/dvb-usb-v2/mxl111sf*
7218
7219 DVB_USB_RTL28XXU MEDIA DRIVER
7220 M:      Antti Palosaari <crope@iki.fi>
7221 L:      linux-media@vger.kernel.org
7222 S:      Maintained
7223 W:      https://linuxtv.org
7224 W:      http://palosaari.fi/linux/
7225 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7226 T:      git git://linuxtv.org/anttip/media_tree.git
7227 F:      drivers/media/usb/dvb-usb-v2/rtl28xxu*
7228
7229 DVB_USB_V2 MEDIA DRIVER
7230 M:      Antti Palosaari <crope@iki.fi>
7231 L:      linux-media@vger.kernel.org
7232 S:      Maintained
7233 W:      https://linuxtv.org
7234 W:      http://palosaari.fi/linux/
7235 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7236 T:      git git://linuxtv.org/anttip/media_tree.git
7237 F:      drivers/media/usb/dvb-usb-v2/dvb_usb*
7238 F:      drivers/media/usb/dvb-usb-v2/usb_urb.c
7239
7240 DYNAMIC DEBUG
7241 M:      Jason Baron <jbaron@akamai.com>
7242 S:      Maintained
7243 F:      include/linux/dynamic_debug.h
7244 F:      lib/dynamic_debug.c
7245 M:      Jim Cromie <jim.cromie@gmail.com>
7246 F:      lib/test_dynamic_debug.c
7247
7248 DYNAMIC INTERRUPT MODERATION
7249 M:      Tal Gilboa <talgi@nvidia.com>
7250 S:      Maintained
7251 F:      Documentation/networking/net_dim.rst
7252 F:      include/linux/dim.h
7253 F:      lib/dim/
7254
7255 DZ DECSTATION DZ11 SERIAL DRIVER
7256 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
7257 S:      Maintained
7258 F:      drivers/tty/serial/dz.*
7259
7260 E3X0 POWER BUTTON DRIVER
7261 M:      Moritz Fischer <moritz.fischer@ettus.com>
7262 L:      usrp-users@lists.ettus.com
7263 S:      Supported
7264 W:      http://www.ettus.com
7265 F:      Documentation/devicetree/bindings/input/e3x0-button.txt
7266 F:      drivers/input/misc/e3x0-button.c
7267
7268 E4000 MEDIA DRIVER
7269 M:      Antti Palosaari <crope@iki.fi>
7270 L:      linux-media@vger.kernel.org
7271 S:      Maintained
7272 W:      https://linuxtv.org
7273 W:      http://palosaari.fi/linux/
7274 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7275 T:      git git://linuxtv.org/anttip/media_tree.git
7276 F:      drivers/media/tuners/e4000*
7277
7278 EARTH_PT1 MEDIA DRIVER
7279 M:      Akihiro Tsukada <tskd08@gmail.com>
7280 L:      linux-media@vger.kernel.org
7281 S:      Odd Fixes
7282 F:      drivers/media/pci/pt1/
7283
7284 EARTH_PT3 MEDIA DRIVER
7285 M:      Akihiro Tsukada <tskd08@gmail.com>
7286 L:      linux-media@vger.kernel.org
7287 S:      Odd Fixes
7288 F:      drivers/media/pci/pt3/
7289
7290 EC100 MEDIA DRIVER
7291 M:      Antti Palosaari <crope@iki.fi>
7292 L:      linux-media@vger.kernel.org
7293 S:      Maintained
7294 W:      https://linuxtv.org
7295 W:      http://palosaari.fi/linux/
7296 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7297 T:      git git://linuxtv.org/anttip/media_tree.git
7298 F:      drivers/media/dvb-frontends/ec100*
7299
7300 ECRYPT FILE SYSTEM
7301 M:      Tyler Hicks <code@tyhicks.com>
7302 L:      ecryptfs@vger.kernel.org
7303 S:      Odd Fixes
7304 W:      http://ecryptfs.org
7305 W:      https://launchpad.net/ecryptfs
7306 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tyhicks/ecryptfs.git
7307 F:      Documentation/filesystems/ecryptfs.rst
7308 F:      fs/ecryptfs/
7309
7310 EDAC-AMD64
7311 M:      Yazen Ghannam <yazen.ghannam@amd.com>
7312 L:      linux-edac@vger.kernel.org
7313 S:      Supported
7314 F:      drivers/edac/amd64_edac*
7315 F:      drivers/edac/mce_amd*
7316
7317 EDAC-ARMADA
7318 M:      Jan Luebbe <jlu@pengutronix.de>
7319 L:      linux-edac@vger.kernel.org
7320 S:      Maintained
7321 F:      Documentation/devicetree/bindings/memory-controllers/marvell,mvebu-sdram-controller.yaml
7322 F:      drivers/edac/armada_xp_*
7323
7324 EDAC-AST2500
7325 M:      Stefan Schaeckeler <sschaeck@cisco.com>
7326 S:      Supported
7327 F:      Documentation/devicetree/bindings/edac/aspeed-sdram-edac.txt
7328 F:      drivers/edac/aspeed_edac.c
7329
7330 EDAC-BLUEFIELD
7331 M:      Shravan Kumar Ramani <shravankr@nvidia.com>
7332 S:      Supported
7333 F:      drivers/edac/bluefield_edac.c
7334
7335 EDAC-CALXEDA
7336 M:      Andre Przywara <andre.przywara@arm.com>
7337 L:      linux-edac@vger.kernel.org
7338 S:      Maintained
7339 F:      drivers/edac/highbank*
7340
7341 EDAC-CAVIUM OCTEON
7342 M:      Ralf Baechle <ralf@linux-mips.org>
7343 L:      linux-edac@vger.kernel.org
7344 L:      linux-mips@vger.kernel.org
7345 S:      Supported
7346 F:      drivers/edac/octeon_edac*
7347
7348 EDAC-CAVIUM THUNDERX
7349 M:      Robert Richter <rric@kernel.org>
7350 L:      linux-edac@vger.kernel.org
7351 S:      Odd Fixes
7352 F:      drivers/edac/thunderx_edac*
7353
7354 EDAC-CORE
7355 M:      Borislav Petkov <bp@alien8.de>
7356 M:      Tony Luck <tony.luck@intel.com>
7357 R:      James Morse <james.morse@arm.com>
7358 R:      Mauro Carvalho Chehab <mchehab@kernel.org>
7359 R:      Robert Richter <rric@kernel.org>
7360 L:      linux-edac@vger.kernel.org
7361 S:      Supported
7362 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ras/ras.git edac-for-next
7363 F:      Documentation/admin-guide/ras.rst
7364 F:      Documentation/driver-api/edac.rst
7365 F:      drivers/edac/
7366 F:      include/linux/edac.h
7367
7368 EDAC-DMC520
7369 M:      Lei Wang <lewan@microsoft.com>
7370 L:      linux-edac@vger.kernel.org
7371 S:      Supported
7372 F:      drivers/edac/dmc520_edac.c
7373
7374 EDAC-E752X
7375 M:      Mark Gross <markgross@kernel.org>
7376 L:      linux-edac@vger.kernel.org
7377 S:      Maintained
7378 F:      drivers/edac/e752x_edac.c
7379
7380 EDAC-E7XXX
7381 L:      linux-edac@vger.kernel.org
7382 S:      Maintained
7383 F:      drivers/edac/e7xxx_edac.c
7384
7385 EDAC-FSL_DDR
7386 M:      York Sun <york.sun@nxp.com>
7387 L:      linux-edac@vger.kernel.org
7388 S:      Maintained
7389 F:      drivers/edac/fsl_ddr_edac.*
7390
7391 EDAC-GHES
7392 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
7393 L:      linux-edac@vger.kernel.org
7394 S:      Maintained
7395 F:      drivers/edac/ghes_edac.c
7396
7397 EDAC-I10NM
7398 M:      Tony Luck <tony.luck@intel.com>
7399 L:      linux-edac@vger.kernel.org
7400 S:      Maintained
7401 F:      drivers/edac/i10nm_base.c
7402
7403 EDAC-I3000
7404 L:      linux-edac@vger.kernel.org
7405 S:      Orphan
7406 F:      drivers/edac/i3000_edac.c
7407
7408 EDAC-I5000
7409 L:      linux-edac@vger.kernel.org
7410 S:      Maintained
7411 F:      drivers/edac/i5000_edac.c
7412
7413 EDAC-I5400
7414 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
7415 L:      linux-edac@vger.kernel.org
7416 S:      Maintained
7417 F:      drivers/edac/i5400_edac.c
7418
7419 EDAC-I7300
7420 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
7421 L:      linux-edac@vger.kernel.org
7422 S:      Maintained
7423 F:      drivers/edac/i7300_edac.c
7424
7425 EDAC-I7CORE
7426 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
7427 L:      linux-edac@vger.kernel.org
7428 S:      Maintained
7429 F:      drivers/edac/i7core_edac.c
7430
7431 EDAC-I82443BXGX
7432 M:      Tim Small <tim@buttersideup.com>
7433 L:      linux-edac@vger.kernel.org
7434 S:      Maintained
7435 F:      drivers/edac/i82443bxgx_edac.c
7436
7437 EDAC-I82975X
7438 M:      "Arvind R." <arvino55@gmail.com>
7439 L:      linux-edac@vger.kernel.org
7440 S:      Maintained
7441 F:      drivers/edac/i82975x_edac.c
7442
7443 EDAC-IE31200
7444 M:      Jason Baron <jbaron@akamai.com>
7445 L:      linux-edac@vger.kernel.org
7446 S:      Maintained
7447 F:      drivers/edac/ie31200_edac.c
7448
7449 EDAC-IGEN6
7450 M:      Tony Luck <tony.luck@intel.com>
7451 R:      Qiuxu Zhuo <qiuxu.zhuo@intel.com>
7452 L:      linux-edac@vger.kernel.org
7453 S:      Maintained
7454 F:      drivers/edac/igen6_edac.c
7455
7456 EDAC-MPC85XX
7457 M:      Johannes Thumshirn <morbidrsa@gmail.com>
7458 L:      linux-edac@vger.kernel.org
7459 S:      Maintained
7460 F:      drivers/edac/mpc85xx_edac.[ch]
7461
7462 EDAC-PASEMI
7463 M:      Egor Martovetsky <egor@pasemi.com>
7464 L:      linux-edac@vger.kernel.org
7465 S:      Maintained
7466 F:      drivers/edac/pasemi_edac.c
7467
7468 EDAC-PND2
7469 M:      Tony Luck <tony.luck@intel.com>
7470 L:      linux-edac@vger.kernel.org
7471 S:      Maintained
7472 F:      drivers/edac/pnd2_edac.[ch]
7473
7474 EDAC-QCOM
7475 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
7476 L:      linux-arm-msm@vger.kernel.org
7477 L:      linux-edac@vger.kernel.org
7478 S:      Maintained
7479 F:      drivers/edac/qcom_edac.c
7480
7481 EDAC-R82600
7482 M:      Tim Small <tim@buttersideup.com>
7483 L:      linux-edac@vger.kernel.org
7484 S:      Maintained
7485 F:      drivers/edac/r82600_edac.c
7486
7487 EDAC-SBRIDGE
7488 M:      Tony Luck <tony.luck@intel.com>
7489 R:      Qiuxu Zhuo <qiuxu.zhuo@intel.com>
7490 L:      linux-edac@vger.kernel.org
7491 S:      Maintained
7492 F:      drivers/edac/sb_edac.c
7493
7494 EDAC-SKYLAKE
7495 M:      Tony Luck <tony.luck@intel.com>
7496 L:      linux-edac@vger.kernel.org
7497 S:      Maintained
7498 F:      drivers/edac/skx_*.[ch]
7499
7500 EDAC-TI
7501 M:      Tero Kristo <kristo@kernel.org>
7502 L:      linux-edac@vger.kernel.org
7503 S:      Odd Fixes
7504 F:      drivers/edac/ti_edac.c
7505
7506 EDIROL UA-101/UA-1000 DRIVER
7507 M:      Clemens Ladisch <clemens@ladisch.de>
7508 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7509 S:      Maintained
7510 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
7511 F:      sound/usb/misc/ua101.c
7512
7513 EFI TEST DRIVER
7514 M:      Ivan Hu <ivan.hu@canonical.com>
7515 M:      Ard Biesheuvel <ardb@kernel.org>
7516 L:      linux-efi@vger.kernel.org
7517 S:      Maintained
7518 F:      drivers/firmware/efi/test/
7519
7520 EFI VARIABLE FILESYSTEM
7521 M:      Jeremy Kerr <jk@ozlabs.org>
7522 M:      Ard Biesheuvel <ardb@kernel.org>
7523 L:      linux-efi@vger.kernel.org
7524 S:      Maintained
7525 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
7526 F:      fs/efivarfs/
7527
7528 EFIFB FRAMEBUFFER DRIVER
7529 M:      Peter Jones <pjones@redhat.com>
7530 L:      linux-fbdev@vger.kernel.org
7531 S:      Maintained
7532 F:      drivers/video/fbdev/efifb.c
7533
7534 EFS FILESYSTEM
7535 S:      Orphan
7536 W:      http://aeschi.ch.eu.org/efs/
7537 F:      fs/efs/
7538
7539 EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
7540 M:      Douglas Miller <dougmill@linux.ibm.com>
7541 L:      netdev@vger.kernel.org
7542 S:      Maintained
7543 F:      drivers/net/ethernet/ibm/ehea/
7544
7545 ELM327 CAN NETWORK DRIVER
7546 M:      Max Staudt <max@enpas.org>
7547 L:      linux-can@vger.kernel.org
7548 S:      Maintained
7549 F:      Documentation/networking/device_drivers/can/can327.rst
7550 F:      drivers/net/can/can327.c
7551
7552 EM28XX VIDEO4LINUX DRIVER
7553 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
7554 L:      linux-media@vger.kernel.org
7555 S:      Maintained
7556 W:      https://linuxtv.org
7557 T:      git git://linuxtv.org/media_tree.git
7558 F:      Documentation/admin-guide/media/em28xx*
7559 F:      drivers/media/usb/em28xx/
7560
7561 EMBEDDED LINUX
7562 M:      Olivia Mackall <olivia@selenic.com>
7563 M:      David Woodhouse <dwmw2@infradead.org>
7564 L:      linux-embedded@vger.kernel.org
7565 S:      Maintained
7566
7567 EMMC CMDQ HOST CONTROLLER INTERFACE (CQHCI) DRIVER
7568 M:      Adrian Hunter <adrian.hunter@intel.com>
7569 M:      Ritesh Harjani <riteshh@codeaurora.org>
7570 M:      Asutosh Das <asutoshd@codeaurora.org>
7571 L:      linux-mmc@vger.kernel.org
7572 S:      Supported
7573 F:      drivers/mmc/host/cqhci*
7574
7575 EMULEX 10Gbps iSCSI - OneConnect DRIVER
7576 M:      Ketan Mukadam <ketan.mukadam@broadcom.com>
7577 L:      linux-scsi@vger.kernel.org
7578 S:      Supported
7579 W:      http://www.broadcom.com
7580 F:      drivers/scsi/be2iscsi/
7581
7582 EMULEX 10Gbps NIC BE2, BE3-R, Lancer, Skyhawk-R DRIVER (be2net)
7583 M:      Ajit Khaparde <ajit.khaparde@broadcom.com>
7584 M:      Sriharsha Basavapatna <sriharsha.basavapatna@broadcom.com>
7585 M:      Somnath Kotur <somnath.kotur@broadcom.com>
7586 L:      netdev@vger.kernel.org
7587 S:      Supported
7588 W:      http://www.emulex.com
7589 F:      drivers/net/ethernet/emulex/benet/
7590
7591 EMULEX ONECONNECT ROCE DRIVER
7592 M:      Selvin Xavier <selvin.xavier@broadcom.com>
7593 L:      linux-rdma@vger.kernel.org
7594 S:      Odd Fixes
7595 W:      http://www.broadcom.com
7596 F:      drivers/infiniband/hw/ocrdma/
7597 F:      include/uapi/rdma/ocrdma-abi.h
7598
7599 EMULEX/BROADCOM LPFC FC/FCOE SCSI DRIVER
7600 M:      James Smart <james.smart@broadcom.com>
7601 M:      Dick Kennedy <dick.kennedy@broadcom.com>
7602 L:      linux-scsi@vger.kernel.org
7603 S:      Supported
7604 W:      http://www.broadcom.com
7605 F:      drivers/scsi/lpfc/
7606
7607 EMULEX/BROADCOM EFCT FC/FCOE SCSI TARGET DRIVER
7608 M:      James Smart <james.smart@broadcom.com>
7609 M:      Ram Vegesna <ram.vegesna@broadcom.com>
7610 L:      linux-scsi@vger.kernel.org
7611 L:      target-devel@vger.kernel.org
7612 S:      Supported
7613 W:      http://www.broadcom.com
7614 F:      drivers/scsi/elx/
7615
7616 ENE CB710 FLASH CARD READER DRIVER
7617 M:      Michał Mirosław <mirq-linux@rere.qmqm.pl>
7618 S:      Maintained
7619 F:      drivers/misc/cb710/
7620 F:      drivers/mmc/host/cb710-mmc.*
7621 F:      include/linux/cb710.h
7622
7623 ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
7624 M:      Maxim Levitsky <maximlevitsky@gmail.com>
7625 S:      Maintained
7626 F:      drivers/media/rc/ene_ir.*
7627
7628 EPAPR HYPERVISOR BYTE CHANNEL DEVICE DRIVER
7629 M:      Laurentiu Tudor <laurentiu.tudor@nxp.com>
7630 L:      linuxppc-dev@lists.ozlabs.org
7631 S:      Maintained
7632 F:      drivers/tty/ehv_bytechan.c
7633
7634 EPSON S1D13XXX FRAMEBUFFER DRIVER
7635 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
7636 S:      Maintained
7637 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
7638 F:      drivers/video/fbdev/s1d13xxxfb.c
7639 F:      include/video/s1d13xxxfb.h
7640
7641 EROFS FILE SYSTEM
7642 M:      Gao Xiang <xiang@kernel.org>
7643 M:      Chao Yu <chao@kernel.org>
7644 R:      Yue Hu <huyue2@coolpad.com>
7645 R:      Jeffle Xu <jefflexu@linux.alibaba.com>
7646 L:      linux-erofs@lists.ozlabs.org
7647 S:      Maintained
7648 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs.git
7649 F:      Documentation/ABI/testing/sysfs-fs-erofs
7650 F:      Documentation/filesystems/erofs.rst
7651 F:      fs/erofs/
7652 F:      include/trace/events/erofs.h
7653
7654 ERRSEQ ERROR TRACKING INFRASTRUCTURE
7655 M:      Jeff Layton <jlayton@kernel.org>
7656 S:      Maintained
7657 F:      include/linux/errseq.h
7658 F:      lib/errseq.c
7659
7660 ESD CAN/USB DRIVERS
7661 M:      Frank Jungclaus <frank.jungclaus@esd.eu>
7662 R:      socketcan@esd.eu
7663 L:      linux-can@vger.kernel.org
7664 S:      Maintained
7665 F:      drivers/net/can/usb/esd_usb.c
7666
7667 ET131X NETWORK DRIVER
7668 M:      Mark Einon <mark.einon@gmail.com>
7669 S:      Odd Fixes
7670 F:      drivers/net/ethernet/agere/
7671
7672 ETAS ES58X CAN/USB DRIVER
7673 M:      Vincent Mailhol <mailhol.vincent@wanadoo.fr>
7674 L:      linux-can@vger.kernel.org
7675 S:      Maintained
7676 F:      Documentation/networking/devlink/etas_es58x.rst
7677 F:      drivers/net/can/usb/etas_es58x/
7678
7679 ETHERNET BRIDGE
7680 M:      Roopa Prabhu <roopa@nvidia.com>
7681 M:      Nikolay Aleksandrov <razor@blackwall.org>
7682 L:      bridge@lists.linux-foundation.org (moderated for non-subscribers)
7683 L:      netdev@vger.kernel.org
7684 S:      Maintained
7685 W:      http://www.linuxfoundation.org/en/Net:Bridge
7686 F:      include/linux/netfilter_bridge/
7687 F:      net/bridge/
7688
7689 ETHERNET PHY LIBRARY
7690 M:      Andrew Lunn <andrew@lunn.ch>
7691 M:      Heiner Kallweit <hkallweit1@gmail.com>
7692 R:      Russell King <linux@armlinux.org.uk>
7693 L:      netdev@vger.kernel.org
7694 S:      Maintained
7695 F:      Documentation/ABI/testing/sysfs-class-net-phydev
7696 F:      Documentation/devicetree/bindings/net/ethernet-phy.yaml
7697 F:      Documentation/devicetree/bindings/net/mdio*
7698 F:      Documentation/devicetree/bindings/net/qca,ar803x.yaml
7699 F:      Documentation/networking/phy.rst
7700 F:      drivers/net/mdio/
7701 F:      drivers/net/mdio/acpi_mdio.c
7702 F:      drivers/net/mdio/fwnode_mdio.c
7703 F:      drivers/net/mdio/of_mdio.c
7704 F:      drivers/net/pcs/
7705 F:      drivers/net/phy/
7706 F:      include/dt-bindings/net/qca-ar803x.h
7707 F:      include/linux/linkmode.h
7708 F:      include/linux/*mdio*.h
7709 F:      include/linux/mdio/*.h
7710 F:      include/linux/mii.h
7711 F:      include/linux/of_net.h
7712 F:      include/linux/phy.h
7713 F:      include/linux/phy_fixed.h
7714 F:      include/linux/platform_data/mdio-bcm-unimac.h
7715 F:      include/linux/platform_data/mdio-gpio.h
7716 F:      include/trace/events/mdio.h
7717 F:      include/uapi/linux/mdio.h
7718 F:      include/uapi/linux/mii.h
7719 F:      net/core/of_net.c
7720
7721 EXEC & BINFMT API
7722 R:      Eric Biederman <ebiederm@xmission.com>
7723 R:      Kees Cook <keescook@chromium.org>
7724 L:      linux-mm@kvack.org
7725 S:      Supported
7726 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/execve
7727 F:      fs/*binfmt_*.c
7728 F:      fs/exec.c
7729 F:      include/linux/binfmts.h
7730 F:      include/linux/elf.h
7731 F:      include/uapi/linux/binfmts.h
7732 F:      include/uapi/linux/elf.h
7733 F:      tools/testing/selftests/exec/
7734 N:      asm/elf.h
7735 N:      binfmt
7736
7737 EXFAT FILE SYSTEM
7738 M:      Namjae Jeon <linkinjeon@kernel.org>
7739 M:      Sungjong Seo <sj1557.seo@samsung.com>
7740 L:      linux-fsdevel@vger.kernel.org
7741 S:      Maintained
7742 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linkinjeon/exfat.git
7743 F:      fs/exfat/
7744
7745 EXT2 FILE SYSTEM
7746 M:      Jan Kara <jack@suse.com>
7747 L:      linux-ext4@vger.kernel.org
7748 S:      Maintained
7749 F:      Documentation/filesystems/ext2.rst
7750 F:      fs/ext2/
7751 F:      include/linux/ext2*
7752
7753 EXT4 FILE SYSTEM
7754 M:      "Theodore Ts'o" <tytso@mit.edu>
7755 M:      Andreas Dilger <adilger.kernel@dilger.ca>
7756 L:      linux-ext4@vger.kernel.org
7757 S:      Maintained
7758 W:      http://ext4.wiki.kernel.org
7759 Q:      http://patchwork.ozlabs.org/project/linux-ext4/list/
7760 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tytso/ext4.git
7761 F:      Documentation/filesystems/ext4/
7762 F:      fs/ext4/
7763 F:      include/trace/events/ext4.h
7764 F:      include/uapi/linux/ext4.h
7765
7766 Extended Verification Module (EVM)
7767 M:      Mimi Zohar <zohar@linux.ibm.com>
7768 L:      linux-integrity@vger.kernel.org
7769 S:      Supported
7770 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/zohar/linux-integrity.git
7771 F:      security/integrity/evm/
7772 F:      security/integrity/
7773
7774 EXTENSIBLE FIRMWARE INTERFACE (EFI)
7775 M:      Ard Biesheuvel <ardb@kernel.org>
7776 L:      linux-efi@vger.kernel.org
7777 S:      Maintained
7778 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
7779 F:      Documentation/admin-guide/efi-stub.rst
7780 F:      arch/*/include/asm/efi.h
7781 F:      arch/*/kernel/efi.c
7782 F:      arch/arm/boot/compressed/efi-header.S
7783 F:      arch/x86/platform/efi/
7784 F:      drivers/firmware/efi/
7785 F:      include/linux/efi*.h
7786
7787 EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
7788 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
7789 M:      Chanwoo Choi <cw00.choi@samsung.com>
7790 L:      linux-kernel@vger.kernel.org
7791 S:      Maintained
7792 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git
7793 F:      Documentation/devicetree/bindings/extcon/
7794 F:      Documentation/firmware-guide/acpi/extcon-intel-int3496.rst
7795 F:      drivers/extcon/
7796 F:      include/linux/extcon.h
7797 F:      include/linux/extcon/
7798
7799 EXTRA BOOT CONFIG
7800 M:      Masami Hiramatsu <mhiramat@kernel.org>
7801 L:      linux-kernel@vger.kernel.org
7802 L:      linux-trace-kernel@vger.kernel.org
7803 Q:      https://patchwork.kernel.org/project/linux-trace-kernel/list/
7804 S:      Maintained
7805 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/trace/linux-trace.git
7806 F:      Documentation/admin-guide/bootconfig.rst
7807 F:      fs/proc/bootconfig.c
7808 F:      include/linux/bootconfig.h
7809 F:      lib/bootconfig-data.S
7810 F:      lib/bootconfig.c
7811 F:      tools/bootconfig/*
7812 F:      tools/bootconfig/scripts/*
7813
7814 EXYNOS DP DRIVER
7815 M:      Jingoo Han <jingoohan1@gmail.com>
7816 L:      dri-devel@lists.freedesktop.org
7817 S:      Maintained
7818 F:      drivers/gpu/drm/exynos/exynos_dp*
7819
7820 EXYNOS SYSMMU (IOMMU) driver
7821 M:      Marek Szyprowski <m.szyprowski@samsung.com>
7822 L:      iommu@lists.linux.dev
7823 S:      Maintained
7824 F:      drivers/iommu/exynos-iommu.c
7825
7826 F2FS FILE SYSTEM
7827 M:      Jaegeuk Kim <jaegeuk@kernel.org>
7828 M:      Chao Yu <chao@kernel.org>
7829 L:      linux-f2fs-devel@lists.sourceforge.net
7830 S:      Maintained
7831 W:      https://f2fs.wiki.kernel.org/
7832 Q:      https://patchwork.kernel.org/project/f2fs/list/
7833 B:      https://bugzilla.kernel.org/enter_bug.cgi?product=File%20System&component=f2fs
7834 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
7835 F:      Documentation/ABI/testing/sysfs-fs-f2fs
7836 F:      Documentation/filesystems/f2fs.rst
7837 F:      fs/f2fs/
7838 F:      include/linux/f2fs_fs.h
7839 F:      include/trace/events/f2fs.h
7840 F:      include/uapi/linux/f2fs.h
7841
7842 F71805F HARDWARE MONITORING DRIVER
7843 M:      Jean Delvare <jdelvare@suse.com>
7844 L:      linux-hwmon@vger.kernel.org
7845 S:      Maintained
7846 F:      Documentation/hwmon/f71805f.rst
7847 F:      drivers/hwmon/f71805f.c
7848
7849 FADDR2LINE
7850 M:      Josh Poimboeuf <jpoimboe@kernel.org>
7851 S:      Maintained
7852 F:      scripts/faddr2line
7853
7854 FAILOVER MODULE
7855 M:      Sridhar Samudrala <sridhar.samudrala@intel.com>
7856 L:      netdev@vger.kernel.org
7857 S:      Supported
7858 F:      Documentation/networking/failover.rst
7859 F:      include/net/failover.h
7860 F:      net/core/failover.c
7861
7862 FANOTIFY
7863 M:      Jan Kara <jack@suse.cz>
7864 R:      Amir Goldstein <amir73il@gmail.com>
7865 R:      Matthew Bobrowski <repnop@google.com>
7866 L:      linux-fsdevel@vger.kernel.org
7867 S:      Maintained
7868 F:      fs/notify/fanotify/
7869 F:      include/linux/fanotify.h
7870 F:      include/uapi/linux/fanotify.h
7871
7872 FARADAY FOTG210 USB2 DUAL-ROLE CONTROLLER
7873 M:      Linus Walleij <linus.walleij@linaro.org>
7874 L:      linux-usb@vger.kernel.org
7875 S:      Maintained
7876 F:      drivers/usb/fotg210/
7877
7878 FARSYNC SYNCHRONOUS DRIVER
7879 M:      Kevin Curtis <kevin.curtis@farsite.co.uk>
7880 S:      Supported
7881 W:      http://www.farsite.co.uk/
7882 F:      drivers/net/wan/farsync.*
7883
7884 FAULT INJECTION SUPPORT
7885 M:      Akinobu Mita <akinobu.mita@gmail.com>
7886 S:      Supported
7887 F:      Documentation/fault-injection/
7888 F:      lib/fault-inject.c
7889
7890 FBTFT Framebuffer drivers
7891 L:      dri-devel@lists.freedesktop.org
7892 L:      linux-fbdev@vger.kernel.org
7893 S:      Orphan
7894 F:      drivers/staging/fbtft/
7895
7896 FC0011 TUNER DRIVER
7897 M:      Michael Buesch <m@bues.ch>
7898 L:      linux-media@vger.kernel.org
7899 S:      Maintained
7900 F:      drivers/media/tuners/fc0011.c
7901 F:      drivers/media/tuners/fc0011.h
7902
7903 FC2580 MEDIA DRIVER
7904 M:      Antti Palosaari <crope@iki.fi>
7905 L:      linux-media@vger.kernel.org
7906 S:      Maintained
7907 W:      https://linuxtv.org
7908 W:      http://palosaari.fi/linux/
7909 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7910 T:      git git://linuxtv.org/anttip/media_tree.git
7911 F:      drivers/media/tuners/fc2580*
7912
7913 FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
7914 M:      Hannes Reinecke <hare@suse.de>
7915 L:      linux-scsi@vger.kernel.org
7916 S:      Supported
7917 W:      www.Open-FCoE.org
7918 F:      drivers/scsi/fcoe/
7919 F:      drivers/scsi/libfc/
7920 F:      include/scsi/fc/
7921 F:      include/scsi/libfc.h
7922 F:      include/scsi/libfcoe.h
7923 F:      include/uapi/scsi/fc/
7924
7925 FILE LOCKING (flock() and fcntl()/lockf())
7926 M:      Jeff Layton <jlayton@kernel.org>
7927 M:      Chuck Lever <chuck.lever@oracle.com>
7928 L:      linux-fsdevel@vger.kernel.org
7929 S:      Maintained
7930 F:      fs/fcntl.c
7931 F:      fs/locks.c
7932 F:      include/linux/fcntl.h
7933 F:      include/uapi/linux/fcntl.h
7934
7935 FILESYSTEM DIRECT ACCESS (DAX)
7936 M:      Dan Williams <dan.j.williams@intel.com>
7937 R:      Matthew Wilcox <willy@infradead.org>
7938 R:      Jan Kara <jack@suse.cz>
7939 L:      linux-fsdevel@vger.kernel.org
7940 L:      nvdimm@lists.linux.dev
7941 S:      Supported
7942 F:      fs/dax.c
7943 F:      include/linux/dax.h
7944 F:      include/trace/events/fs_dax.h
7945
7946 FILESYSTEMS (VFS and infrastructure)
7947 M:      Alexander Viro <viro@zeniv.linux.org.uk>
7948 M:      Christian Brauner <brauner@kernel.org>
7949 L:      linux-fsdevel@vger.kernel.org
7950 S:      Maintained
7951 F:      fs/*
7952 F:      include/linux/fs.h
7953 F:      include/linux/fs_types.h
7954 F:      include/uapi/linux/fs.h
7955 F:      include/uapi/linux/openat2.h
7956
7957 FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
7958 M:      Riku Voipio <riku.voipio@iki.fi>
7959 L:      linux-hwmon@vger.kernel.org
7960 S:      Maintained
7961 F:      drivers/hwmon/f75375s.c
7962 F:      include/linux/f75375s.h
7963
7964 FIREWIRE AUDIO DRIVERS and IEC 61883-1/6 PACKET STREAMING ENGINE
7965 M:      Clemens Ladisch <clemens@ladisch.de>
7966 M:      Takashi Sakamoto <o-takashi@sakamocchi.jp>
7967 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7968 S:      Maintained
7969 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
7970 F:      include/uapi/sound/firewire.h
7971 F:      sound/firewire/
7972
7973 FIREWIRE MEDIA DRIVERS (firedtv)
7974 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
7975 L:      linux-media@vger.kernel.org
7976 L:      linux1394-devel@lists.sourceforge.net
7977 S:      Maintained
7978 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
7979 F:      drivers/media/firewire/
7980
7981 FIREWIRE SBP-2 TARGET
7982 M:      Chris Boot <bootc@bootc.net>
7983 L:      linux-scsi@vger.kernel.org
7984 L:      target-devel@vger.kernel.org
7985 L:      linux1394-devel@lists.sourceforge.net
7986 S:      Maintained
7987 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
7988 F:      drivers/target/sbp/
7989
7990 FIREWIRE SUBSYSTEM
7991 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
7992 L:      linux1394-devel@lists.sourceforge.net
7993 S:      Maintained
7994 W:      http://ieee1394.wiki.kernel.org/
7995 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
7996 F:      drivers/firewire/
7997 F:      include/linux/firewire.h
7998 F:      include/uapi/linux/firewire*.h
7999 F:      tools/firewire/
8000
8001 FIRMWARE FRAMEWORK FOR ARMV8-A
8002 M:      Sudeep Holla <sudeep.holla@arm.com>
8003 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8004 S:      Maintained
8005 F:      drivers/firmware/arm_ffa/
8006 F:      include/linux/arm_ffa.h
8007
8008 FIRMWARE LOADER (request_firmware)
8009 M:      Luis Chamberlain <mcgrof@kernel.org>
8010 M:      Russ Weight <russell.h.weight@intel.com>
8011 L:      linux-kernel@vger.kernel.org
8012 S:      Maintained
8013 F:      Documentation/firmware_class/
8014 F:      drivers/base/firmware_loader/
8015 F:      include/linux/firmware.h
8016
8017 FLEXTIMER FTM-QUADDEC DRIVER
8018 M:      Patrick Havelange <patrick.havelange@essensium.com>
8019 L:      linux-iio@vger.kernel.org
8020 S:      Maintained
8021 F:      Documentation/devicetree/bindings/counter/ftm-quaddec.txt
8022 F:      drivers/counter/ftm-quaddec.c
8023
8024 FLOPPY DRIVER
8025 M:      Denis Efremov <efremov@linux.com>
8026 L:      linux-block@vger.kernel.org
8027 S:      Odd Fixes
8028 F:      drivers/block/floppy.c
8029
8030 FLYSKY FSIA6B RC RECEIVER
8031 M:      Markus Koch <markus@notsyncing.net>
8032 L:      linux-input@vger.kernel.org
8033 S:      Maintained
8034 F:      drivers/input/joystick/fsia6b.c
8035
8036 FOCUSRITE SCARLETT GEN 2/3 MIXER DRIVER
8037 M:      Geoffrey D. Bennett <g@b4.vu>
8038 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
8039 S:      Maintained
8040 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
8041 F:      sound/usb/mixer_scarlett_gen2.c
8042
8043 FORCEDETH GIGABIT ETHERNET DRIVER
8044 M:      Rain River <rain.1986.08.12@gmail.com>
8045 M:      Zhu Yanjun <zyjzyj2000@gmail.com>
8046 L:      netdev@vger.kernel.org
8047 S:      Maintained
8048 F:      drivers/net/ethernet/nvidia/*
8049
8050 FORTIFY_SOURCE
8051 M:      Kees Cook <keescook@chromium.org>
8052 L:      linux-hardening@vger.kernel.org
8053 S:      Supported
8054 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/hardening
8055 F:      include/linux/fortify-string.h
8056 F:      lib/fortify_kunit.c
8057 F:      lib/memcpy_kunit.c
8058 F:      lib/strscpy_kunit.c
8059 F:      lib/test_fortify/*
8060 F:      scripts/test_fortify.sh
8061 K:      \b__NO_FORTIFY\b
8062
8063 FPGA DFL DRIVERS
8064 M:      Wu Hao <hao.wu@intel.com>
8065 R:      Tom Rix <trix@redhat.com>
8066 L:      linux-fpga@vger.kernel.org
8067 S:      Maintained
8068 F:      Documentation/ABI/testing/sysfs-bus-dfl*
8069 F:      Documentation/fpga/dfl.rst
8070 F:      drivers/fpga/dfl*
8071 F:      drivers/uio/uio_dfl.c
8072 F:      include/linux/dfl.h
8073 F:      include/uapi/linux/fpga-dfl.h
8074
8075 FPGA MANAGER FRAMEWORK
8076 M:      Moritz Fischer <mdf@kernel.org>
8077 M:      Wu Hao <hao.wu@intel.com>
8078 M:      Xu Yilun <yilun.xu@intel.com>
8079 R:      Tom Rix <trix@redhat.com>
8080 L:      linux-fpga@vger.kernel.org
8081 S:      Maintained
8082 Q:      http://patchwork.kernel.org/project/linux-fpga/list/
8083 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/fpga/linux-fpga.git
8084 F:      Documentation/devicetree/bindings/fpga/
8085 F:      Documentation/driver-api/fpga/
8086 F:      Documentation/fpga/
8087 F:      drivers/fpga/
8088 F:      include/linux/fpga/
8089
8090 INTEL MAX10 BMC SECURE UPDATES
8091 M:      Russ Weight <russell.h.weight@intel.com>
8092 L:      linux-fpga@vger.kernel.org
8093 S:      Maintained
8094 F:      Documentation/ABI/testing/sysfs-driver-intel-m10-bmc-sec-update
8095 F:      drivers/fpga/intel-m10-bmc-sec-update.c
8096
8097 MICROCHIP POLARFIRE FPGA DRIVERS
8098 M:      Conor Dooley <conor.dooley@microchip.com>
8099 R:      Ivan Bornyakov <i.bornyakov@metrotek.ru>
8100 L:      linux-fpga@vger.kernel.org
8101 S:      Supported
8102 F:      Documentation/devicetree/bindings/fpga/microchip,mpf-spi-fpga-mgr.yaml
8103 F:      drivers/fpga/microchip-spi.c
8104
8105 FPU EMULATOR
8106 M:      Bill Metzenthen <billm@melbpc.org.au>
8107 S:      Maintained
8108 W:      https://floatingpoint.billm.au/
8109 F:      arch/x86/math-emu/
8110
8111 FRAMEBUFFER CORE
8112 M:      Daniel Vetter <daniel@ffwll.ch>
8113 F:      drivers/video/fbdev/core/
8114 S:      Odd Fixes
8115 T:      git git://anongit.freedesktop.org/drm/drm-misc
8116
8117 FRAMEBUFFER LAYER
8118 M:      Helge Deller <deller@gmx.de>
8119 L:      linux-fbdev@vger.kernel.org
8120 L:      dri-devel@lists.freedesktop.org
8121 S:      Maintained
8122 Q:      http://patchwork.kernel.org/project/linux-fbdev/list/
8123 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/deller/linux-fbdev.git
8124 F:      Documentation/fb/
8125 F:      drivers/video/
8126 F:      include/linux/fb.h
8127 F:      include/uapi/linux/fb.h
8128 F:      include/uapi/video/
8129 F:      include/video/
8130
8131 FREESCALE CAAM (Cryptographic Acceleration and Assurance Module) DRIVER
8132 M:      Horia Geantă <horia.geanta@nxp.com>
8133 M:      Pankaj Gupta <pankaj.gupta@nxp.com>
8134 M:      Gaurav Jain <gaurav.jain@nxp.com>
8135 L:      linux-crypto@vger.kernel.org
8136 S:      Maintained
8137 F:      Documentation/devicetree/bindings/crypto/fsl-sec4.txt
8138 F:      drivers/crypto/caam/
8139
8140 FREESCALE COLDFIRE M5441X MMC DRIVER
8141 M:      Angelo Dureghello <angelo.dureghello@timesys.com>
8142 L:      linux-mmc@vger.kernel.org
8143 S:      Maintained
8144 F:      drivers/mmc/host/sdhci-esdhc-mcf.c
8145 F:      include/linux/platform_data/mmc-esdhc-mcf.h
8146
8147 FREESCALE DIU FRAMEBUFFER DRIVER
8148 M:      Timur Tabi <timur@kernel.org>
8149 L:      linux-fbdev@vger.kernel.org
8150 S:      Maintained
8151 F:      drivers/video/fbdev/fsl-diu-fb.*
8152
8153 FREESCALE DMA DRIVER
8154 M:      Li Yang <leoyang.li@nxp.com>
8155 M:      Zhang Wei <zw@zh-kernel.org>
8156 L:      linuxppc-dev@lists.ozlabs.org
8157 S:      Maintained
8158 F:      drivers/dma/fsldma.*
8159
8160 FREESCALE DSPI DRIVER
8161 M:      Vladimir Oltean <olteanv@gmail.com>
8162 L:      linux-spi@vger.kernel.org
8163 S:      Maintained
8164 F:      Documentation/devicetree/bindings/spi/spi-fsl-dspi.txt
8165 F:      drivers/spi/spi-fsl-dspi.c
8166 F:      include/linux/spi/spi-fsl-dspi.h
8167
8168 FREESCALE ENETC ETHERNET DRIVERS
8169 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
8170 L:      netdev@vger.kernel.org
8171 S:      Maintained
8172 F:      drivers/net/ethernet/freescale/enetc/
8173
8174 FREESCALE eTSEC ETHERNET DRIVER (GIANFAR)
8175 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
8176 L:      netdev@vger.kernel.org
8177 S:      Maintained
8178 F:      Documentation/devicetree/bindings/net/fsl-tsec-phy.txt
8179 F:      drivers/net/ethernet/freescale/gianfar*
8180
8181 FREESCALE GPMI NAND DRIVER
8182 M:      Han Xu <han.xu@nxp.com>
8183 L:      linux-mtd@lists.infradead.org
8184 S:      Maintained
8185 F:      drivers/mtd/nand/raw/gpmi-nand/*
8186
8187 FREESCALE I2C CPM DRIVER
8188 M:      Jochen Friedrich <jochen@scram.de>
8189 L:      linuxppc-dev@lists.ozlabs.org
8190 L:      linux-i2c@vger.kernel.org
8191 S:      Maintained
8192 F:      drivers/i2c/busses/i2c-cpm.c
8193
8194 FREESCALE IMX / MXC FEC DRIVER
8195 M:      Wei Fang <wei.fang@nxp.com>
8196 R:      Shenwei Wang <shenwei.wang@nxp.com>
8197 R:      Clark Wang <xiaoning.wang@nxp.com>
8198 R:      NXP Linux Team <linux-imx@nxp.com>
8199 L:      netdev@vger.kernel.org
8200 S:      Maintained
8201 F:      Documentation/devicetree/bindings/net/fsl,fec.yaml
8202 F:      drivers/net/ethernet/freescale/fec.h
8203 F:      drivers/net/ethernet/freescale/fec_main.c
8204 F:      drivers/net/ethernet/freescale/fec_ptp.c
8205
8206 FREESCALE IMX / MXC FRAMEBUFFER DRIVER
8207 M:      Sascha Hauer <s.hauer@pengutronix.de>
8208 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
8209 L:      linux-fbdev@vger.kernel.org
8210 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8211 S:      Maintained
8212 F:      drivers/video/fbdev/imxfb.c
8213
8214 FREESCALE IMX DDR PMU DRIVER
8215 M:      Frank Li <Frank.li@nxp.com>
8216 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8217 S:      Maintained
8218 F:      Documentation/admin-guide/perf/imx-ddr.rst
8219 F:      Documentation/devicetree/bindings/perf/fsl-imx-ddr.yaml
8220 F:      drivers/perf/fsl_imx8_ddr_perf.c
8221
8222 FREESCALE IMX I2C DRIVER
8223 M:      Oleksij Rempel <o.rempel@pengutronix.de>
8224 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
8225 L:      linux-i2c@vger.kernel.org
8226 S:      Maintained
8227 F:      Documentation/devicetree/bindings/i2c/i2c-imx.yaml
8228 F:      drivers/i2c/busses/i2c-imx.c
8229
8230 FREESCALE IMX LPI2C DRIVER
8231 M:      Dong Aisheng <aisheng.dong@nxp.com>
8232 L:      linux-i2c@vger.kernel.org
8233 L:      linux-imx@nxp.com
8234 S:      Maintained
8235 F:      Documentation/devicetree/bindings/i2c/i2c-imx-lpi2c.yaml
8236 F:      drivers/i2c/busses/i2c-imx-lpi2c.c
8237
8238 FREESCALE MPC I2C DRIVER
8239 M:      Chris Packham <chris.packham@alliedtelesis.co.nz>
8240 L:      linux-i2c@vger.kernel.org
8241 S:      Maintained
8242 F:      Documentation/devicetree/bindings/i2c/i2c-mpc.yaml
8243 F:      drivers/i2c/busses/i2c-mpc.c
8244
8245 FREESCALE QORIQ DPAA ETHERNET DRIVER
8246 M:      Madalin Bucur <madalin.bucur@nxp.com>
8247 L:      netdev@vger.kernel.org
8248 S:      Maintained
8249 F:      drivers/net/ethernet/freescale/dpaa
8250
8251 FREESCALE QORIQ DPAA FMAN DRIVER
8252 M:      Madalin Bucur <madalin.bucur@nxp.com>
8253 R:      Sean Anderson <sean.anderson@seco.com>
8254 L:      netdev@vger.kernel.org
8255 S:      Maintained
8256 F:      Documentation/devicetree/bindings/net/fsl-fman.txt
8257 F:      drivers/net/ethernet/freescale/fman
8258
8259 FREESCALE QORIQ PTP CLOCK DRIVER
8260 M:      Yangbo Lu <yangbo.lu@nxp.com>
8261 L:      netdev@vger.kernel.org
8262 S:      Maintained
8263 F:      Documentation/devicetree/bindings/ptp/ptp-qoriq.txt
8264 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-ptp*
8265 F:      drivers/net/ethernet/freescale/dpaa2/dprtc*
8266 F:      drivers/net/ethernet/freescale/enetc/enetc_ptp.c
8267 F:      drivers/ptp/ptp_qoriq.c
8268 F:      drivers/ptp/ptp_qoriq_debugfs.c
8269 F:      include/linux/fsl/ptp_qoriq.h
8270
8271 FREESCALE QUAD SPI DRIVER
8272 M:      Han Xu <han.xu@nxp.com>
8273 L:      linux-spi@vger.kernel.org
8274 S:      Maintained
8275 F:      Documentation/devicetree/bindings/spi/fsl,spi-fsl-qspi.yaml
8276 F:      drivers/spi/spi-fsl-qspi.c
8277
8278 FREESCALE QUICC ENGINE LIBRARY
8279 M:      Qiang Zhao <qiang.zhao@nxp.com>
8280 L:      linuxppc-dev@lists.ozlabs.org
8281 S:      Maintained
8282 F:      drivers/soc/fsl/qe/
8283 F:      include/soc/fsl/qe/
8284
8285 FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
8286 M:      Li Yang <leoyang.li@nxp.com>
8287 L:      netdev@vger.kernel.org
8288 L:      linuxppc-dev@lists.ozlabs.org
8289 S:      Maintained
8290 F:      drivers/net/ethernet/freescale/ucc_geth*
8291
8292 FREESCALE QUICC ENGINE UCC HDLC DRIVER
8293 M:      Zhao Qiang <qiang.zhao@nxp.com>
8294 L:      netdev@vger.kernel.org
8295 L:      linuxppc-dev@lists.ozlabs.org
8296 S:      Maintained
8297 F:      drivers/net/wan/fsl_ucc_hdlc*
8298
8299 FREESCALE QUICC ENGINE UCC UART DRIVER
8300 M:      Timur Tabi <timur@kernel.org>
8301 L:      linuxppc-dev@lists.ozlabs.org
8302 S:      Maintained
8303 F:      drivers/tty/serial/ucc_uart.c
8304
8305 FREESCALE SOC DRIVERS
8306 M:      Li Yang <leoyang.li@nxp.com>
8307 L:      linuxppc-dev@lists.ozlabs.org
8308 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8309 S:      Maintained
8310 F:      Documentation/devicetree/bindings/misc/fsl,dpaa2-console.yaml
8311 F:      Documentation/devicetree/bindings/soc/fsl/
8312 F:      drivers/soc/fsl/
8313 F:      include/linux/fsl/
8314 F:      include/soc/fsl/
8315
8316 FREESCALE SOC FS_ENET DRIVER
8317 M:      Pantelis Antoniou <pantelis.antoniou@gmail.com>
8318 L:      linuxppc-dev@lists.ozlabs.org
8319 L:      netdev@vger.kernel.org
8320 S:      Maintained
8321 F:      drivers/net/ethernet/freescale/fs_enet/
8322 F:      include/linux/fs_enet_pd.h
8323
8324 FREESCALE SOC SOUND DRIVERS
8325 M:      Shengjiu Wang <shengjiu.wang@gmail.com>
8326 M:      Xiubo Li <Xiubo.Lee@gmail.com>
8327 R:      Fabio Estevam <festevam@gmail.com>
8328 R:      Nicolin Chen <nicoleotsuka@gmail.com>
8329 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
8330 L:      linuxppc-dev@lists.ozlabs.org
8331 S:      Maintained
8332 F:      sound/soc/fsl/fsl*
8333 F:      sound/soc/fsl/imx*
8334 F:      sound/soc/fsl/mpc8610_hpcd.c
8335
8336 FREESCALE USB PERIPHERAL DRIVERS
8337 M:      Li Yang <leoyang.li@nxp.com>
8338 L:      linux-usb@vger.kernel.org
8339 L:      linuxppc-dev@lists.ozlabs.org
8340 S:      Maintained
8341 F:      drivers/usb/gadget/udc/fsl*
8342
8343 FREESCALE USB PHY DRIVER
8344 M:      Ran Wang <ran.wang_1@nxp.com>
8345 L:      linux-usb@vger.kernel.org
8346 L:      linuxppc-dev@lists.ozlabs.org
8347 S:      Maintained
8348 F:      drivers/usb/phy/phy-fsl-usb*
8349
8350 FREEVXFS FILESYSTEM
8351 M:      Christoph Hellwig <hch@infradead.org>
8352 S:      Maintained
8353 W:      ftp://ftp.openlinux.org/pub/people/hch/vxfs
8354 F:      fs/freevxfs/
8355
8356 FREEZER
8357 M:      "Rafael J. Wysocki" <rafael@kernel.org>
8358 M:      Pavel Machek <pavel@ucw.cz>
8359 L:      linux-pm@vger.kernel.org
8360 S:      Supported
8361 F:      Documentation/power/freezing-of-tasks.rst
8362 F:      include/linux/freezer.h
8363 F:      kernel/freezer.c
8364
8365 FRONTSWAP API
8366 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
8367 L:      linux-kernel@vger.kernel.org
8368 S:      Maintained
8369 F:      include/linux/frontswap.h
8370 F:      mm/frontswap.c
8371
8372 FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
8373 M:      David Howells <dhowells@redhat.com>
8374 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
8375 S:      Supported
8376 F:      Documentation/filesystems/caching/
8377 F:      fs/fscache/
8378 F:      include/linux/fscache*.h
8379
8380 FSCRYPT: FILE SYSTEM LEVEL ENCRYPTION SUPPORT
8381 M:      Eric Biggers <ebiggers@kernel.org>
8382 M:      Theodore Y. Ts'o <tytso@mit.edu>
8383 M:      Jaegeuk Kim <jaegeuk@kernel.org>
8384 L:      linux-fscrypt@vger.kernel.org
8385 S:      Supported
8386 Q:      https://patchwork.kernel.org/project/linux-fscrypt/list/
8387 T:      git https://git.kernel.org/pub/scm/fs/fscrypt/linux.git
8388 F:      Documentation/filesystems/fscrypt.rst
8389 F:      fs/crypto/
8390 F:      include/linux/fscrypt.h
8391 F:      include/uapi/linux/fscrypt.h
8392
8393 FSI SUBSYSTEM
8394 M:      Jeremy Kerr <jk@ozlabs.org>
8395 M:      Joel Stanley <joel@jms.id.au>
8396 R:      Alistar Popple <alistair@popple.id.au>
8397 R:      Eddie James <eajames@linux.ibm.com>
8398 L:      linux-fsi@lists.ozlabs.org
8399 S:      Supported
8400 Q:      http://patchwork.ozlabs.org/project/linux-fsi/list/
8401 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joel/fsi.git
8402 F:      drivers/fsi/
8403 F:      include/linux/fsi*.h
8404 F:      include/trace/events/fsi*.h
8405
8406 FSI-ATTACHED I2C DRIVER
8407 M:      Eddie James <eajames@linux.ibm.com>
8408 L:      linux-i2c@vger.kernel.org
8409 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
8410 S:      Maintained
8411 F:      Documentation/devicetree/bindings/i2c/i2c-fsi.txt
8412 F:      drivers/i2c/busses/i2c-fsi.c
8413
8414 FSI-ATTACHED SPI DRIVER
8415 M:      Eddie James <eajames@linux.ibm.com>
8416 L:      linux-spi@vger.kernel.org
8417 S:      Maintained
8418 F:      Documentation/devicetree/bindings/fsi/ibm,fsi2spi.yaml
8419 F:      drivers/spi/spi-fsi.c
8420
8421 FSNOTIFY: FILESYSTEM NOTIFICATION INFRASTRUCTURE
8422 M:      Jan Kara <jack@suse.cz>
8423 R:      Amir Goldstein <amir73il@gmail.com>
8424 L:      linux-fsdevel@vger.kernel.org
8425 S:      Maintained
8426 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jack/linux-fs.git fsnotify
8427 F:      fs/notify/
8428 F:      include/linux/fsnotify*.h
8429
8430 FSVERITY: READ-ONLY FILE-BASED AUTHENTICITY PROTECTION
8431 M:      Eric Biggers <ebiggers@kernel.org>
8432 M:      Theodore Y. Ts'o <tytso@mit.edu>
8433 L:      fsverity@lists.linux.dev
8434 S:      Supported
8435 Q:      https://patchwork.kernel.org/project/fsverity/list/
8436 T:      git https://git.kernel.org/pub/scm/fs/fsverity/linux.git
8437 F:      Documentation/filesystems/fsverity.rst
8438 F:      fs/verity/
8439 F:      include/linux/fsverity.h
8440 F:      include/uapi/linux/fsverity.h
8441
8442 FT260 FTDI USB-HID TO I2C BRIDGE DRIVER
8443 M:      Michael Zaidman <michael.zaidman@gmail.com>
8444 L:      linux-i2c@vger.kernel.org
8445 L:      linux-input@vger.kernel.org
8446 S:      Maintained
8447 F:      drivers/hid/hid-ft260.c
8448
8449 FUJITSU LAPTOP EXTRAS
8450 M:      Jonathan Woithe <jwoithe@just42.net>
8451 L:      platform-driver-x86@vger.kernel.org
8452 S:      Maintained
8453 F:      drivers/platform/x86/fujitsu-laptop.c
8454
8455 FUJITSU TABLET EXTRAS
8456 M:      Robert Gerlach <khnz@gmx.de>
8457 L:      platform-driver-x86@vger.kernel.org
8458 S:      Maintained
8459 F:      drivers/platform/x86/fujitsu-tablet.c
8460
8461 FUNCTION HOOKS (FTRACE)
8462 M:      Steven Rostedt <rostedt@goodmis.org>
8463 M:      Masami Hiramatsu <mhiramat@kernel.org>
8464 R:      Mark Rutland <mark.rutland@arm.com>
8465 L:      linux-kernel@vger.kernel.org
8466 L:      linux-trace-kernel@vger.kernel.org
8467 Q:      https://patchwork.kernel.org/project/linux-trace-kernel/list/
8468 S:      Maintained
8469 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/trace/linux-trace.git
8470 F:      Documentation/trace/ftrace*
8471 F:      kernel/trace/ftrace*
8472 F:      kernel/trace/fgraph.c
8473 F:      arch/*/*/*/*ftrace*
8474 F:      arch/*/*/*ftrace*
8475 F:      include/*/ftrace.h
8476 F:      samples/ftrace
8477
8478 FUNGIBLE ETHERNET DRIVERS
8479 M:      Dimitris Michailidis <dmichail@fungible.com>
8480 L:      netdev@vger.kernel.org
8481 S:      Supported
8482 F:      drivers/net/ethernet/fungible/
8483
8484 FUSE: FILESYSTEM IN USERSPACE
8485 M:      Miklos Szeredi <miklos@szeredi.hu>
8486 L:      linux-fsdevel@vger.kernel.org
8487 S:      Maintained
8488 W:      https://github.com/libfuse/
8489 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse.git
8490 F:      Documentation/filesystems/fuse.rst
8491 F:      fs/fuse/
8492 F:      include/uapi/linux/fuse.h
8493
8494 FUTEX SUBSYSTEM
8495 M:      Thomas Gleixner <tglx@linutronix.de>
8496 M:      Ingo Molnar <mingo@redhat.com>
8497 R:      Peter Zijlstra <peterz@infradead.org>
8498 R:      Darren Hart <dvhart@infradead.org>
8499 R:      Davidlohr Bueso <dave@stgolabs.net>
8500 R:      André Almeida <andrealmeid@igalia.com>
8501 L:      linux-kernel@vger.kernel.org
8502 S:      Maintained
8503 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
8504 F:      Documentation/locking/*futex*
8505 F:      include/asm-generic/futex.h
8506 F:      include/linux/futex.h
8507 F:      include/uapi/linux/futex.h
8508 F:      kernel/futex/*
8509 F:      tools/perf/bench/futex*
8510 F:      tools/testing/selftests/futex/
8511
8512 GATEWORKS SYSTEM CONTROLLER (GSC) DRIVER
8513 M:      Tim Harvey <tharvey@gateworks.com>
8514 S:      Maintained
8515 F:      Documentation/devicetree/bindings/mfd/gateworks-gsc.yaml
8516 F:      drivers/mfd/gateworks-gsc.c
8517 F:      include/linux/mfd/gsc.h
8518 F:      Documentation/hwmon/gsc-hwmon.rst
8519 F:      drivers/hwmon/gsc-hwmon.c
8520 F:      include/linux/platform_data/gsc_hwmon.h
8521
8522 GCC PLUGINS
8523 M:      Kees Cook <keescook@chromium.org>
8524 L:      linux-hardening@vger.kernel.org
8525 S:      Maintained
8526 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/hardening
8527 F:      Documentation/kbuild/gcc-plugins.rst
8528 F:      scripts/Makefile.gcc-plugins
8529 F:      scripts/gcc-plugins/
8530
8531 GCOV BASED KERNEL PROFILING
8532 M:      Peter Oberparleiter <oberpar@linux.ibm.com>
8533 S:      Maintained
8534 F:      Documentation/dev-tools/gcov.rst
8535 F:      kernel/gcov/
8536
8537 GDB KERNEL DEBUGGING HELPER SCRIPTS
8538 M:      Jan Kiszka <jan.kiszka@siemens.com>
8539 M:      Kieran Bingham <kbingham@kernel.org>
8540 S:      Supported
8541 F:      scripts/gdb/
8542
8543 GEMINI CRYPTO DRIVER
8544 M:      Corentin Labbe <clabbe@baylibre.com>
8545 L:      linux-crypto@vger.kernel.org
8546 S:      Maintained
8547 F:      drivers/crypto/gemini/
8548
8549 GEMTEK FM RADIO RECEIVER DRIVER
8550 M:      Hans Verkuil <hverkuil@xs4all.nl>
8551 L:      linux-media@vger.kernel.org
8552 S:      Maintained
8553 W:      https://linuxtv.org
8554 T:      git git://linuxtv.org/media_tree.git
8555 F:      drivers/media/radio/radio-gemtek*
8556
8557 GENERIC ARCHITECTURE TOPOLOGY
8558 M:      Sudeep Holla <sudeep.holla@arm.com>
8559 L:      linux-kernel@vger.kernel.org
8560 S:      Maintained
8561 F:      drivers/base/arch_topology.c
8562 F:      include/linux/arch_topology.h
8563
8564 GENERIC ENTRY CODE
8565 M:      Thomas Gleixner <tglx@linutronix.de>
8566 M:      Peter Zijlstra <peterz@infradead.org>
8567 M:      Andy Lutomirski <luto@kernel.org>
8568 L:      linux-kernel@vger.kernel.org
8569 S:      Maintained
8570 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/entry
8571 F:      include/linux/entry-common.h
8572 F:      include/linux/entry-kvm.h
8573 F:      kernel/entry/
8574
8575 GENERIC GPIO I2C DRIVER
8576 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
8577 S:      Supported
8578 F:      drivers/i2c/busses/i2c-gpio.c
8579 F:      include/linux/platform_data/i2c-gpio.h
8580
8581 GENERIC GPIO I2C MULTIPLEXER DRIVER
8582 M:      Peter Korsgaard <peter.korsgaard@barco.com>
8583 L:      linux-i2c@vger.kernel.org
8584 S:      Supported
8585 F:      Documentation/i2c/muxes/i2c-mux-gpio.rst
8586 F:      drivers/i2c/muxes/i2c-mux-gpio.c
8587 F:      include/linux/platform_data/i2c-mux-gpio.h
8588
8589 GENERIC HDLC (WAN) DRIVERS
8590 M:      Krzysztof Halasa <khc@pm.waw.pl>
8591 S:      Maintained
8592 W:      http://www.kernel.org/pub/linux/utils/net/hdlc/
8593 F:      drivers/net/wan/c101.c
8594 F:      drivers/net/wan/hd6457*
8595 F:      drivers/net/wan/hdlc*
8596 F:      drivers/net/wan/n2.c
8597 F:      drivers/net/wan/pc300too.c
8598 F:      drivers/net/wan/pci200syn.c
8599 F:      drivers/net/wan/wanxl*
8600
8601 GENERIC INCLUDE/ASM HEADER FILES
8602 M:      Arnd Bergmann <arnd@arndb.de>
8603 L:      linux-arch@vger.kernel.org
8604 S:      Maintained
8605 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
8606 F:      include/asm-generic/
8607 F:      include/uapi/asm-generic/
8608
8609 GENERIC PHY FRAMEWORK
8610 M:      Vinod Koul <vkoul@kernel.org>
8611 M:      Kishon Vijay Abraham I <kishon@kernel.org>
8612 L:      linux-phy@lists.infradead.org
8613 S:      Supported
8614 Q:      https://patchwork.kernel.org/project/linux-phy/list/
8615 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/phy/linux-phy.git
8616 F:      Documentation/devicetree/bindings/phy/
8617 F:      drivers/phy/
8618 F:      include/dt-bindings/phy/
8619 F:      include/linux/phy/
8620
8621 GENERIC PINCTRL I2C DEMULTIPLEXER DRIVER
8622 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
8623 S:      Supported
8624 F:      drivers/i2c/muxes/i2c-demux-pinctrl.c
8625
8626 GENERIC PM DOMAINS
8627 M:      "Rafael J. Wysocki" <rafael@kernel.org>
8628 M:      Kevin Hilman <khilman@kernel.org>
8629 M:      Ulf Hansson <ulf.hansson@linaro.org>
8630 L:      linux-pm@vger.kernel.org
8631 S:      Supported
8632 F:      Documentation/devicetree/bindings/power/power?domain*
8633 F:      drivers/base/power/domain*.c
8634 F:      include/linux/pm_domain.h
8635
8636 GENERIC RESISTIVE TOUCHSCREEN ADC DRIVER
8637 M:      Eugen Hristev <eugen.hristev@microchip.com>
8638 L:      linux-input@vger.kernel.org
8639 S:      Maintained
8640 F:      drivers/input/touchscreen/resistive-adc-touch.c
8641
8642 GENERIC STRING LIBRARY
8643 R:      Andy Shevchenko <andy@kernel.org>
8644 S:      Maintained
8645 F:      lib/string.c
8646 F:      lib/string_helpers.c
8647 F:      lib/test_string.c
8648 F:      lib/test-string_helpers.c
8649
8650 GENERIC UIO DRIVER FOR PCI DEVICES
8651 M:      "Michael S. Tsirkin" <mst@redhat.com>
8652 L:      kvm@vger.kernel.org
8653 S:      Supported
8654 F:      drivers/uio/uio_pci_generic.c
8655
8656 GENERIC VDSO LIBRARY
8657 M:      Andy Lutomirski <luto@kernel.org>
8658 M:      Thomas Gleixner <tglx@linutronix.de>
8659 M:      Vincenzo Frascino <vincenzo.frascino@arm.com>
8660 L:      linux-kernel@vger.kernel.org
8661 S:      Maintained
8662 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/vdso
8663 F:      include/asm-generic/vdso/vsyscall.h
8664 F:      include/vdso/
8665 F:      kernel/time/vsyscall.c
8666 F:      lib/vdso/
8667
8668 GENWQE (IBM Generic Workqueue Card)
8669 M:      Frank Haverkamp <haver@linux.ibm.com>
8670 S:      Supported
8671 F:      drivers/misc/genwqe/
8672
8673 GET_MAINTAINER SCRIPT
8674 M:      Joe Perches <joe@perches.com>
8675 S:      Maintained
8676 F:      scripts/get_maintainer.pl
8677
8678 GFS2 FILE SYSTEM
8679 M:      Bob Peterson <rpeterso@redhat.com>
8680 M:      Andreas Gruenbacher <agruenba@redhat.com>
8681 L:      cluster-devel@redhat.com
8682 S:      Supported
8683 B:      https://bugzilla.kernel.org/enter_bug.cgi?product=File%20System&component=gfs2
8684 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git
8685 F:      Documentation/filesystems/gfs2*
8686 F:      fs/gfs2/
8687 F:      include/uapi/linux/gfs2_ondisk.h
8688
8689 GIGABYTE WMI DRIVER
8690 M:      Thomas Weißschuh <thomas@weissschuh.net>
8691 L:      platform-driver-x86@vger.kernel.org
8692 S:      Maintained
8693 F:      drivers/platform/x86/gigabyte-wmi.c
8694
8695 GNSS SUBSYSTEM
8696 M:      Johan Hovold <johan@kernel.org>
8697 S:      Maintained
8698 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/gnss.git
8699 F:      Documentation/ABI/testing/sysfs-class-gnss
8700 F:      Documentation/devicetree/bindings/gnss/
8701 F:      drivers/gnss/
8702 F:      include/linux/gnss.h
8703
8704 GO7007 MPEG CODEC
8705 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
8706 L:      linux-media@vger.kernel.org
8707 S:      Maintained
8708 F:      drivers/media/usb/go7007/
8709
8710 GOODIX TOUCHSCREEN
8711 M:      Bastien Nocera <hadess@hadess.net>
8712 M:      Hans de Goede <hdegoede@redhat.com>
8713 L:      linux-input@vger.kernel.org
8714 S:      Maintained
8715 F:      drivers/input/touchscreen/goodix*
8716
8717 GOOGLE ETHERNET DRIVERS
8718 M:      Jeroen de Borst <jeroendb@google.com>
8719 M:      Praveen Kaligineedi <pkaligineedi@google.com>
8720 R:      Shailend Chand <shailend@google.com>
8721 L:      netdev@vger.kernel.org
8722 S:      Supported
8723 F:      Documentation/networking/device_drivers/ethernet/google/gve.rst
8724 F:      drivers/net/ethernet/google
8725
8726 GPD POCKET FAN DRIVER
8727 M:      Hans de Goede <hdegoede@redhat.com>
8728 L:      platform-driver-x86@vger.kernel.org
8729 S:      Maintained
8730 F:      drivers/platform/x86/gpd-pocket-fan.c
8731
8732 GPIO ACPI SUPPORT
8733 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
8734 M:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
8735 L:      linux-gpio@vger.kernel.org
8736 L:      linux-acpi@vger.kernel.org
8737 S:      Supported
8738 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
8739 F:      Documentation/firmware-guide/acpi/gpio-properties.rst
8740 F:      drivers/gpio/gpiolib-acpi.c
8741 F:      drivers/gpio/gpiolib-acpi.h
8742
8743 GPIO AGGREGATOR
8744 M:      Geert Uytterhoeven <geert+renesas@glider.be>
8745 L:      linux-gpio@vger.kernel.org
8746 S:      Supported
8747 F:      Documentation/admin-guide/gpio/gpio-aggregator.rst
8748 F:      drivers/gpio/gpio-aggregator.c
8749
8750 GPIO IR Transmitter
8751 M:      Sean Young <sean@mess.org>
8752 L:      linux-media@vger.kernel.org
8753 S:      Maintained
8754 F:      Documentation/devicetree/bindings/leds/irled/gpio-ir-tx.yaml
8755 F:      drivers/media/rc/gpio-ir-tx.c
8756
8757 GPIO MOCKUP DRIVER
8758 M:      Bamvor Jian Zhang <bamv2005@gmail.com>
8759 L:      linux-gpio@vger.kernel.org
8760 S:      Maintained
8761 F:      drivers/gpio/gpio-mockup.c
8762 F:      tools/testing/selftests/gpio/
8763
8764 GPIO REGMAP
8765 R:      Michael Walle <michael@walle.cc>
8766 S:      Maintained
8767 F:      drivers/gpio/gpio-regmap.c
8768 F:      include/linux/gpio/regmap.h
8769
8770 GPIO SUBSYSTEM
8771 M:      Linus Walleij <linus.walleij@linaro.org>
8772 M:      Bartosz Golaszewski <brgl@bgdev.pl>
8773 L:      linux-gpio@vger.kernel.org
8774 S:      Maintained
8775 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux.git
8776 F:      Documentation/ABI/obsolete/sysfs-gpio
8777 F:      Documentation/ABI/testing/gpio-cdev
8778 F:      Documentation/admin-guide/gpio/
8779 F:      Documentation/devicetree/bindings/gpio/
8780 F:      Documentation/driver-api/gpio/
8781 F:      drivers/gpio/
8782 F:      include/dt-bindings/gpio/
8783 F:      include/linux/gpio.h
8784 F:      include/linux/gpio/
8785 F:      include/linux/of_gpio.h
8786 F:      include/uapi/linux/gpio.h
8787 F:      tools/gpio/
8788
8789 GRE DEMULTIPLEXER DRIVER
8790 M:      Dmitry Kozlov <xeb@mail.ru>
8791 L:      netdev@vger.kernel.org
8792 S:      Maintained
8793 F:      include/net/gre.h
8794 F:      net/ipv4/gre_demux.c
8795 F:      net/ipv4/gre_offload.c
8796
8797 GRETH 10/100/1G Ethernet MAC device driver
8798 M:      Andreas Larsson <andreas@gaisler.com>
8799 L:      netdev@vger.kernel.org
8800 S:      Maintained
8801 F:      drivers/net/ethernet/aeroflex/
8802
8803 GREYBUS AUDIO PROTOCOLS DRIVERS
8804 M:      Vaibhav Agarwal <vaibhav.sr@gmail.com>
8805 M:      Mark Greer <mgreer@animalcreek.com>
8806 S:      Maintained
8807 F:      drivers/staging/greybus/audio_apbridgea.c
8808 F:      drivers/staging/greybus/audio_apbridgea.h
8809 F:      drivers/staging/greybus/audio_codec.c
8810 F:      drivers/staging/greybus/audio_codec.h
8811 F:      drivers/staging/greybus/audio_gb.c
8812 F:      drivers/staging/greybus/audio_manager.c
8813 F:      drivers/staging/greybus/audio_manager.h
8814 F:      drivers/staging/greybus/audio_manager_module.c
8815 F:      drivers/staging/greybus/audio_manager_private.h
8816 F:      drivers/staging/greybus/audio_manager_sysfs.c
8817 F:      drivers/staging/greybus/audio_module.c
8818 F:      drivers/staging/greybus/audio_topology.c
8819
8820 GREYBUS FW/HID/SPI PROTOCOLS DRIVERS
8821 M:      Viresh Kumar <vireshk@kernel.org>
8822 S:      Maintained
8823 F:      drivers/staging/greybus/authentication.c
8824 F:      drivers/staging/greybus/bootrom.c
8825 F:      drivers/staging/greybus/firmware.h
8826 F:      drivers/staging/greybus/fw-core.c
8827 F:      drivers/staging/greybus/fw-download.c
8828 F:      drivers/staging/greybus/fw-management.c
8829 F:      drivers/staging/greybus/greybus_authentication.h
8830 F:      drivers/staging/greybus/greybus_firmware.h
8831 F:      drivers/staging/greybus/hid.c
8832 F:      drivers/staging/greybus/i2c.c
8833 F:      drivers/staging/greybus/spi.c
8834 F:      drivers/staging/greybus/spilib.c
8835 F:      drivers/staging/greybus/spilib.h
8836
8837 GREYBUS LOOPBACK DRIVER
8838 M:      Bryan O'Donoghue <pure.logic@nexus-software.ie>
8839 S:      Maintained
8840 F:      drivers/staging/greybus/loopback.c
8841
8842 GREYBUS PLATFORM DRIVERS
8843 M:      Vaibhav Hiremath <hvaibhav.linux@gmail.com>
8844 S:      Maintained
8845 F:      drivers/staging/greybus/arche-apb-ctrl.c
8846 F:      drivers/staging/greybus/arche-platform.c
8847 F:      drivers/staging/greybus/arche_platform.h
8848
8849 GREYBUS SDIO/GPIO/SPI PROTOCOLS DRIVERS
8850 M:      Rui Miguel Silva <rmfrfs@gmail.com>
8851 S:      Maintained
8852 F:      drivers/staging/greybus/gpio.c
8853 F:      drivers/staging/greybus/light.c
8854 F:      drivers/staging/greybus/power_supply.c
8855 F:      drivers/staging/greybus/sdio.c
8856 F:      drivers/staging/greybus/spi.c
8857 F:      drivers/staging/greybus/spilib.c
8858
8859 GREYBUS SUBSYSTEM
8860 M:      Johan Hovold <johan@kernel.org>
8861 M:      Alex Elder <elder@kernel.org>
8862 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
8863 L:      greybus-dev@lists.linaro.org (moderated for non-subscribers)
8864 S:      Maintained
8865 F:      drivers/greybus/
8866 F:      drivers/staging/greybus/
8867 F:      include/linux/greybus.h
8868 F:      include/linux/greybus/
8869
8870 GREYBUS UART PROTOCOLS DRIVERS
8871 M:      David Lin <dtwlin@gmail.com>
8872 S:      Maintained
8873 F:      drivers/staging/greybus/log.c
8874 F:      drivers/staging/greybus/uart.c
8875
8876 GS1662 VIDEO SERIALIZER
8877 M:      Charles-Antoine Couret <charles-antoine.couret@nexvision.fr>
8878 L:      linux-media@vger.kernel.org
8879 S:      Maintained
8880 T:      git git://linuxtv.org/media_tree.git
8881 F:      drivers/media/spi/gs1662.c
8882
8883 GSPCA FINEPIX SUBDRIVER
8884 M:      Frank Zago <frank@zago.net>
8885 L:      linux-media@vger.kernel.org
8886 S:      Maintained
8887 T:      git git://linuxtv.org/media_tree.git
8888 F:      drivers/media/usb/gspca/finepix.c
8889
8890 GSPCA GL860 SUBDRIVER
8891 M:      Olivier Lorin <o.lorin@laposte.net>
8892 L:      linux-media@vger.kernel.org
8893 S:      Maintained
8894 T:      git git://linuxtv.org/media_tree.git
8895 F:      drivers/media/usb/gspca/gl860/
8896
8897 GSPCA M5602 SUBDRIVER
8898 M:      Erik Andren <erik.andren@gmail.com>
8899 L:      linux-media@vger.kernel.org
8900 S:      Maintained
8901 T:      git git://linuxtv.org/media_tree.git
8902 F:      drivers/media/usb/gspca/m5602/
8903
8904 GSPCA PAC207 SONIXB SUBDRIVER
8905 M:      Hans Verkuil <hverkuil@xs4all.nl>
8906 L:      linux-media@vger.kernel.org
8907 S:      Odd Fixes
8908 T:      git git://linuxtv.org/media_tree.git
8909 F:      drivers/media/usb/gspca/pac207.c
8910
8911 GSPCA SN9C20X SUBDRIVER
8912 M:      Brian Johnson <brijohn@gmail.com>
8913 L:      linux-media@vger.kernel.org
8914 S:      Maintained
8915 T:      git git://linuxtv.org/media_tree.git
8916 F:      drivers/media/usb/gspca/sn9c20x.c
8917
8918 GSPCA T613 SUBDRIVER
8919 M:      Leandro Costantino <lcostantino@gmail.com>
8920 L:      linux-media@vger.kernel.org
8921 S:      Maintained
8922 T:      git git://linuxtv.org/media_tree.git
8923 F:      drivers/media/usb/gspca/t613.c
8924
8925 GSPCA USB WEBCAM DRIVER
8926 M:      Hans Verkuil <hverkuil@xs4all.nl>
8927 L:      linux-media@vger.kernel.org
8928 S:      Odd Fixes
8929 T:      git git://linuxtv.org/media_tree.git
8930 F:      drivers/media/usb/gspca/
8931
8932 GTP (GPRS Tunneling Protocol)
8933 M:      Pablo Neira Ayuso <pablo@netfilter.org>
8934 M:      Harald Welte <laforge@gnumonks.org>
8935 L:      osmocom-net-gprs@lists.osmocom.org
8936 S:      Maintained
8937 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/gtp.git
8938 F:      drivers/net/gtp.c
8939
8940 GUID PARTITION TABLE (GPT)
8941 M:      Davidlohr Bueso <dave@stgolabs.net>
8942 L:      linux-efi@vger.kernel.org
8943 S:      Maintained
8944 F:      block/partitions/efi.*
8945
8946 HABANALABS PCI DRIVER
8947 M:      Oded Gabbay <ogabbay@kernel.org>
8948 L:      dri-devel@lists.freedesktop.org
8949 S:      Supported
8950 C:      irc://irc.oftc.net/dri-devel
8951 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/ogabbay/linux.git
8952 F:      Documentation/ABI/testing/debugfs-driver-habanalabs
8953 F:      Documentation/ABI/testing/sysfs-driver-habanalabs
8954 F:      drivers/accel/habanalabs/
8955 F:      include/trace/events/habanalabs.h
8956 F:      include/uapi/drm/habanalabs_accel.h
8957
8958 HACKRF MEDIA DRIVER
8959 M:      Antti Palosaari <crope@iki.fi>
8960 L:      linux-media@vger.kernel.org
8961 S:      Maintained
8962 W:      https://linuxtv.org
8963 W:      http://palosaari.fi/linux/
8964 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8965 T:      git git://linuxtv.org/anttip/media_tree.git
8966 F:      drivers/media/usb/hackrf/
8967
8968 HANDSHAKE UPCALL FOR TRANSPORT LAYER SECURITY
8969 M:      Chuck Lever <chuck.lever@oracle.com>
8970 L:      kernel-tls-handshake@lists.linux.dev
8971 L:      netdev@vger.kernel.org
8972 S:      Maintained
8973 F:      Documentation/netlink/specs/handshake.yaml
8974 F:      Documentation/networking/tls-handshake.rst
8975 F:      include/net/handshake.h
8976 F:      include/trace/events/handshake.h
8977 F:      net/handshake/
8978
8979 HANTRO VPU CODEC DRIVER
8980 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
8981 M:      Philipp Zabel <p.zabel@pengutronix.de>
8982 L:      linux-media@vger.kernel.org
8983 L:      linux-rockchip@lists.infradead.org
8984 S:      Maintained
8985 F:      Documentation/devicetree/bindings/media/nxp,imx8mq-vpu.yaml
8986 F:      Documentation/devicetree/bindings/media/rockchip,rk3568-vepu.yaml
8987 F:      Documentation/devicetree/bindings/media/rockchip-vpu.yaml
8988 F:      drivers/media/platform/verisilicon/
8989
8990 HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
8991 M:      Frank Seidel <frank@f-seidel.de>
8992 L:      platform-driver-x86@vger.kernel.org
8993 S:      Maintained
8994 W:      http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
8995 F:      drivers/platform/x86/hdaps.c
8996
8997 HARDWARE MONITORING
8998 M:      Jean Delvare <jdelvare@suse.com>
8999 M:      Guenter Roeck <linux@roeck-us.net>
9000 L:      linux-hwmon@vger.kernel.org
9001 S:      Maintained
9002 W:      http://hwmon.wiki.kernel.org/
9003 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
9004 F:      Documentation/ABI/testing/sysfs-class-hwmon
9005 F:      Documentation/devicetree/bindings/hwmon/
9006 F:      Documentation/hwmon/
9007 F:      drivers/hwmon/
9008 F:      include/linux/hwmon*.h
9009 F:      include/trace/events/hwmon*.h
9010 K:      (devm_)?hwmon_device_(un)?register(|_with_groups|_with_info)
9011
9012 HARDWARE RANDOM NUMBER GENERATOR CORE
9013 M:      Olivia Mackall <olivia@selenic.com>
9014 M:      Herbert Xu <herbert@gondor.apana.org.au>
9015 L:      linux-crypto@vger.kernel.org
9016 S:      Odd fixes
9017 F:      Documentation/admin-guide/hw_random.rst
9018 F:      Documentation/devicetree/bindings/rng/
9019 F:      drivers/char/hw_random/
9020 F:      include/linux/hw_random.h
9021
9022 HARDWARE SPINLOCK CORE
9023 M:      Ohad Ben-Cohen <ohad@wizery.com>
9024 M:      Bjorn Andersson <andersson@kernel.org>
9025 R:      Baolin Wang <baolin.wang7@gmail.com>
9026 L:      linux-remoteproc@vger.kernel.org
9027 S:      Maintained
9028 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git hwspinlock-next
9029 F:      Documentation/devicetree/bindings/hwlock/
9030 F:      Documentation/locking/hwspinlock.rst
9031 F:      drivers/hwspinlock/
9032 F:      include/linux/hwspinlock.h
9033
9034 HARDWARE TRACING FACILITIES
9035 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
9036 S:      Maintained
9037 F:      drivers/hwtracing/
9038
9039 HARMONY SOUND DRIVER
9040 L:      linux-parisc@vger.kernel.org
9041 S:      Maintained
9042 F:      sound/parisc/harmony.*
9043
9044 HDPVR USB VIDEO ENCODER DRIVER
9045 M:      Hans Verkuil <hverkuil@xs4all.nl>
9046 L:      linux-media@vger.kernel.org
9047 S:      Odd Fixes
9048 W:      https://linuxtv.org
9049 T:      git git://linuxtv.org/media_tree.git
9050 F:      drivers/media/usb/hdpvr/
9051
9052 HEWLETT PACKARD ENTERPRISE ILO CHIF DRIVER
9053 M:      Matt Hsiao <matt.hsiao@hpe.com>
9054 S:      Supported
9055 F:      drivers/misc/hpilo.[ch]
9056
9057 HEWLETT PACKARD ENTERPRISE ILO NMI WATCHDOG DRIVER
9058 M:      Jerry Hoemann <jerry.hoemann@hpe.com>
9059 S:      Supported
9060 F:      Documentation/watchdog/hpwdt.rst
9061 F:      drivers/watchdog/hpwdt.c
9062
9063 HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
9064 M:      Don Brace <don.brace@microchip.com>
9065 L:      storagedev@microchip.com
9066 L:      linux-scsi@vger.kernel.org
9067 S:      Supported
9068 F:      Documentation/scsi/hpsa.rst
9069 F:      drivers/scsi/hpsa*.[ch]
9070 F:      include/linux/cciss*.h
9071 F:      include/uapi/linux/cciss*.h
9072
9073 HFI1 DRIVER
9074 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
9075 L:      linux-rdma@vger.kernel.org
9076 S:      Supported
9077 F:      drivers/infiniband/hw/hfi1
9078
9079 HFS FILESYSTEM
9080 L:      linux-fsdevel@vger.kernel.org
9081 S:      Orphan
9082 F:      Documentation/filesystems/hfs.rst
9083 F:      fs/hfs/
9084
9085 HFSPLUS FILESYSTEM
9086 L:      linux-fsdevel@vger.kernel.org
9087 S:      Orphan
9088 F:      Documentation/filesystems/hfsplus.rst
9089 F:      fs/hfsplus/
9090
9091 HGA FRAMEBUFFER DRIVER
9092 M:      Ferenc Bakonyi <fero@drama.obuda.kando.hu>
9093 L:      linux-nvidia@lists.surfsouth.com
9094 S:      Maintained
9095 W:      http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
9096 F:      drivers/video/fbdev/hgafb.c
9097
9098 HIBERNATION (aka Software Suspend, aka swsusp)
9099 M:      "Rafael J. Wysocki" <rafael@kernel.org>
9100 M:      Pavel Machek <pavel@ucw.cz>
9101 L:      linux-pm@vger.kernel.org
9102 S:      Supported
9103 B:      https://bugzilla.kernel.org
9104 F:      arch/*/include/asm/suspend*.h
9105 F:      arch/x86/power/
9106 F:      drivers/base/power/
9107 F:      include/linux/freezer.h
9108 F:      include/linux/pm.h
9109 F:      include/linux/suspend.h
9110 F:      kernel/power/
9111
9112 HID CORE LAYER
9113 M:      Jiri Kosina <jikos@kernel.org>
9114 M:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
9115 L:      linux-input@vger.kernel.org
9116 S:      Maintained
9117 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
9118 F:      Documentation/hid/
9119 F:      drivers/hid/
9120 F:      include/linux/hid*
9121 F:      include/uapi/linux/hid*
9122 F:      samples/hid/
9123 F:      tools/testing/selftests/hid/
9124
9125 HID LOGITECH DRIVERS
9126 R:      Filipe Laíns <lains@riseup.net>
9127 L:      linux-input@vger.kernel.org
9128 S:      Maintained
9129 F:      drivers/hid/hid-logitech-*
9130
9131 HID++ LOGITECH DRIVERS
9132 R:      Filipe Laíns <lains@riseup.net>
9133 R:      Bastien Nocera <hadess@hadess.net>
9134 L:      linux-input@vger.kernel.org
9135 S:      Maintained
9136 F:      drivers/hid/hid-logitech-hidpp.c
9137
9138 HID PLAYSTATION DRIVER
9139 M:      Roderick Colenbrander <roderick.colenbrander@sony.com>
9140 L:      linux-input@vger.kernel.org
9141 S:      Supported
9142 F:      drivers/hid/hid-playstation.c
9143
9144 HID PHOENIX RC FLIGHT CONTROLLER
9145 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
9146 L:      linux-input@vger.kernel.org
9147 S:      Maintained
9148 F:      drivers/hid/hid-pxrc.c
9149
9150 HID SENSOR HUB DRIVERS
9151 M:      Jiri Kosina <jikos@kernel.org>
9152 M:      Jonathan Cameron <jic23@kernel.org>
9153 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
9154 L:      linux-input@vger.kernel.org
9155 L:      linux-iio@vger.kernel.org
9156 S:      Maintained
9157 F:      Documentation/hid/hid-sensor*
9158 F:      drivers/hid/hid-sensor-*
9159 F:      drivers/iio/*/hid-*
9160 F:      include/linux/hid-sensor-*
9161
9162 HID VRC-2 CAR CONTROLLER DRIVER
9163 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
9164 L:      linux-input@vger.kernel.org
9165 S:      Maintained
9166 F:      drivers/hid/hid-vrc2.c
9167
9168 HID WACOM DRIVER
9169 M:      Ping Cheng <ping.cheng@wacom.com>
9170 M:      Jason Gerecke  <jason.gerecke@wacom.com>
9171 L:      linux-input@vger.kernel.org
9172 S:      Maintained
9173 F:      drivers/hid/wacom.h
9174 F:      drivers/hid/wacom_*
9175
9176 HIGH-RESOLUTION TIMERS, CLOCKEVENTS
9177 M:      Thomas Gleixner <tglx@linutronix.de>
9178 L:      linux-kernel@vger.kernel.org
9179 S:      Maintained
9180 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
9181 F:      Documentation/timers/
9182 F:      include/linux/clockchips.h
9183 F:      include/linux/hrtimer.h
9184 F:      kernel/time/clockevents.c
9185 F:      kernel/time/hrtimer.c
9186 F:      kernel/time/timer_*.c
9187
9188 HIGH-SPEED SCC DRIVER FOR AX.25
9189 L:      linux-hams@vger.kernel.org
9190 S:      Orphan
9191 F:      drivers/net/hamradio/scc.c
9192
9193 HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
9194 M:      HighPoint Linux Team <linux@highpoint-tech.com>
9195 S:      Supported
9196 W:      http://www.highpoint-tech.com
9197 F:      Documentation/scsi/hptiop.rst
9198 F:      drivers/scsi/hptiop.c
9199
9200 HIMAX HX83112B TOUCHSCREEN SUPPORT
9201 M:      Job Noorman <job@noorman.info>
9202 L:      linux-input@vger.kernel.org
9203 S:      Maintained
9204 F:      Documentation/devicetree/bindings/input/touchscreen/himax,hx83112b.yaml
9205 F:      drivers/input/touchscreen/himax_hx83112b.c
9206
9207 HIPPI
9208 M:      Jes Sorensen <jes@trained-monkey.org>
9209 L:      linux-hippi@sunsite.dk
9210 S:      Maintained
9211 F:      drivers/net/hippi/
9212 F:      include/linux/hippidevice.h
9213 F:      include/uapi/linux/if_hippi.h
9214 F:      net/802/hippi.c
9215
9216 HIRSCHMANN HELLCREEK ETHERNET SWITCH DRIVER
9217 M:      Kurt Kanzenbach <kurt@linutronix.de>
9218 L:      netdev@vger.kernel.org
9219 S:      Maintained
9220 F:      Documentation/devicetree/bindings/net/dsa/hirschmann,hellcreek.yaml
9221 F:      drivers/net/dsa/hirschmann/*
9222 F:      include/linux/platform_data/hirschmann-hellcreek.h
9223 F:      net/dsa/tag_hellcreek.c
9224
9225 HISILICON DMA DRIVER
9226 M:      Zhou Wang <wangzhou1@hisilicon.com>
9227 M:      Jie Hai <haijie1@huawei.com>
9228 L:      dmaengine@vger.kernel.org
9229 S:      Maintained
9230 F:      drivers/dma/hisi_dma.c
9231
9232 HISILICON GPIO DRIVER
9233 M:      Jay Fang <f.fangjian@huawei.com>
9234 L:      linux-gpio@vger.kernel.org
9235 S:      Maintained
9236 F:      Documentation/devicetree/bindings/gpio/hisilicon,ascend910-gpio.yaml
9237 F:      drivers/gpio/gpio-hisi.c
9238
9239 HISILICON HIGH PERFORMANCE RSA ENGINE DRIVER (HPRE)
9240 M:      Longfang Liu <liulongfang@huawei.com>
9241 L:      linux-crypto@vger.kernel.org
9242 S:      Maintained
9243 F:      Documentation/ABI/testing/debugfs-hisi-hpre
9244 F:      drivers/crypto/hisilicon/hpre/hpre.h
9245 F:      drivers/crypto/hisilicon/hpre/hpre_crypto.c
9246 F:      drivers/crypto/hisilicon/hpre/hpre_main.c
9247
9248 HISILICON I2C CONTROLLER DRIVER
9249 M:      Yicong Yang <yangyicong@hisilicon.com>
9250 L:      linux-i2c@vger.kernel.org
9251 S:      Maintained
9252 W:      https://www.hisilicon.com
9253 F:      Documentation/devicetree/bindings/i2c/hisilicon,ascend910-i2c.yaml
9254 F:      drivers/i2c/busses/i2c-hisi.c
9255
9256 HISILICON LPC BUS DRIVER
9257 M:      Jay Fang <f.fangjian@huawei.com>
9258 S:      Maintained
9259 W:      http://www.hisilicon.com
9260 F:      Documentation/devicetree/bindings/arm/hisilicon/low-pin-count.yaml
9261 F:      drivers/bus/hisi_lpc.c
9262
9263 HISILICON NETWORK SUBSYSTEM 3 DRIVER (HNS3)
9264 M:      Yisen Zhuang <yisen.zhuang@huawei.com>
9265 M:      Salil Mehta <salil.mehta@huawei.com>
9266 L:      netdev@vger.kernel.org
9267 S:      Maintained
9268 W:      http://www.hisilicon.com
9269 F:      drivers/net/ethernet/hisilicon/hns3/
9270
9271 HISILICON NETWORK SUBSYSTEM DRIVER
9272 M:      Yisen Zhuang <yisen.zhuang@huawei.com>
9273 M:      Salil Mehta <salil.mehta@huawei.com>
9274 L:      netdev@vger.kernel.org
9275 S:      Maintained
9276 W:      http://www.hisilicon.com
9277 F:      Documentation/devicetree/bindings/net/hisilicon*.txt
9278 F:      drivers/net/ethernet/hisilicon/
9279
9280 HIKEY960 ONBOARD USB GPIO HUB DRIVER
9281 M:      John Stultz <jstultz@google.com>
9282 L:      linux-kernel@vger.kernel.org
9283 S:      Maintained
9284 F:      drivers/misc/hisi_hikey_usb.c
9285
9286 HISILICON PMU DRIVER
9287 M:      Shaokun Zhang <zhangshaokun@hisilicon.com>
9288 M:      Jonathan Cameron <jonathan.cameron@huawei.com>
9289 S:      Supported
9290 W:      http://www.hisilicon.com
9291 F:      Documentation/admin-guide/perf/hisi-pcie-pmu.rst
9292 F:      Documentation/admin-guide/perf/hisi-pmu.rst
9293 F:      drivers/perf/hisilicon
9294
9295 HISILICON HNS3 PMU DRIVER
9296 M:      Guangbin Huang <huangguangbin2@huawei.com>
9297 S:      Supported
9298 F:      Documentation/admin-guide/perf/hns3-pmu.rst
9299 F:      drivers/perf/hisilicon/hns3_pmu.c
9300
9301 HISILICON PTT DRIVER
9302 M:      Yicong Yang <yangyicong@hisilicon.com>
9303 M:      Jonathan Cameron <jonathan.cameron@huawei.com>
9304 L:      linux-kernel@vger.kernel.org
9305 S:      Maintained
9306 F:      Documentation/ABI/testing/sysfs-devices-hisi_ptt
9307 F:      Documentation/trace/hisi-ptt.rst
9308 F:      drivers/hwtracing/ptt/
9309 F:      tools/perf/arch/arm64/util/hisi-ptt.c
9310 F:      tools/perf/util/hisi-ptt*
9311 F:      tools/perf/util/hisi-ptt-decoder/*
9312
9313 HISILICON QM DRIVER
9314 M:      Weili Qian <qianweili@huawei.com>
9315 M:      Zhou Wang <wangzhou1@hisilicon.com>
9316 L:      linux-crypto@vger.kernel.org
9317 S:      Maintained
9318 F:      drivers/crypto/hisilicon/Kconfig
9319 F:      drivers/crypto/hisilicon/Makefile
9320 F:      drivers/crypto/hisilicon/qm.c
9321 F:      drivers/crypto/hisilicon/sgl.c
9322 F:      include/linux/hisi_acc_qm.h
9323
9324 HISILICON ZIP Controller DRIVER
9325 M:      Yang Shen <shenyang39@huawei.com>
9326 M:      Zhou Wang <wangzhou1@hisilicon.com>
9327 L:      linux-crypto@vger.kernel.org
9328 S:      Maintained
9329 F:      Documentation/ABI/testing/debugfs-hisi-zip
9330 F:      drivers/crypto/hisilicon/zip/
9331
9332 HISILICON ROCE DRIVER
9333 M:      Haoyue Xu <xuhaoyue1@hisilicon.com>
9334 M:      Wenpeng Liang <liangwenpeng@huawei.com>
9335 L:      linux-rdma@vger.kernel.org
9336 S:      Maintained
9337 F:      Documentation/devicetree/bindings/infiniband/hisilicon-hns-roce.txt
9338 F:      drivers/infiniband/hw/hns/
9339
9340 HISILICON SAS Controller
9341 M:      Xiang Chen <chenxiang66@hisilicon.com>
9342 S:      Supported
9343 W:      http://www.hisilicon.com
9344 F:      Documentation/devicetree/bindings/scsi/hisilicon-sas.txt
9345 F:      drivers/scsi/hisi_sas/
9346
9347 HISILICON SECURITY ENGINE V2 DRIVER (SEC2)
9348 M:      Kai Ye <yekai13@huawei.com>
9349 M:      Longfang Liu <liulongfang@huawei.com>
9350 L:      linux-crypto@vger.kernel.org
9351 S:      Maintained
9352 F:      Documentation/ABI/testing/debugfs-hisi-sec
9353 F:      drivers/crypto/hisilicon/sec2/sec.h
9354 F:      drivers/crypto/hisilicon/sec2/sec_crypto.c
9355 F:      drivers/crypto/hisilicon/sec2/sec_crypto.h
9356 F:      drivers/crypto/hisilicon/sec2/sec_main.c
9357
9358 HISILICON SPI Controller DRIVER FOR KUNPENG SOCS
9359 M:      Jay Fang <f.fangjian@huawei.com>
9360 L:      linux-spi@vger.kernel.org
9361 S:      Maintained
9362 W:      http://www.hisilicon.com
9363 F:      drivers/spi/spi-hisi-kunpeng.c
9364
9365 HISILICON SPMI CONTROLLER DRIVER FOR HIKEY 970
9366 M:      Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
9367 L:      linux-kernel@vger.kernel.org
9368 S:      Maintained
9369 F:      Documentation/devicetree/bindings/spmi/hisilicon,hisi-spmi-controller.yaml
9370 F:      drivers/spmi/hisi-spmi-controller.c
9371
9372 HISILICON SPMI PMIC DRIVER FOR HIKEY 6421v600
9373 M:      Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
9374 L:      linux-kernel@vger.kernel.org
9375 S:      Maintained
9376 F:      Documentation/devicetree/bindings/mfd/hisilicon,hi6421-spmi-pmic.yaml
9377 F:      drivers/mfd/hi6421-spmi-pmic.c
9378
9379 HISILICON TRUE RANDOM NUMBER GENERATOR V2 SUPPORT
9380 M:      Weili Qian <qianweili@huawei.com>
9381 S:      Maintained
9382 F:      drivers/crypto/hisilicon/trng/trng.c
9383
9384 HISILICON V3XX SPI NOR FLASH Controller Driver
9385 M:      Jay Fang <f.fangjian@huawei.com>
9386 S:      Maintained
9387 W:      http://www.hisilicon.com
9388 F:      drivers/spi/spi-hisi-sfc-v3xx.c
9389
9390 HMM - Heterogeneous Memory Management
9391 M:      Jérôme Glisse <jglisse@redhat.com>
9392 L:      linux-mm@kvack.org
9393 S:      Maintained
9394 F:      Documentation/mm/hmm.rst
9395 F:      include/linux/hmm*
9396 F:      lib/test_hmm*
9397 F:      mm/hmm*
9398 F:      tools/testing/selftests/mm/*hmm*
9399
9400 HOST AP DRIVER
9401 M:      Jouni Malinen <j@w1.fi>
9402 L:      linux-wireless@vger.kernel.org
9403 S:      Obsolete
9404 W:      http://w1.fi/hostap-driver.html
9405 F:      drivers/net/wireless/intersil/hostap/
9406
9407 HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
9408 L:      platform-driver-x86@vger.kernel.org
9409 S:      Orphan
9410 F:      drivers/platform/x86/hp/tc1100-wmi.c
9411
9412 HPET:   High Precision Event Timers driver
9413 M:      Clemens Ladisch <clemens@ladisch.de>
9414 S:      Maintained
9415 F:      Documentation/timers/hpet.rst
9416 F:      drivers/char/hpet.c
9417 F:      include/linux/hpet.h
9418 F:      include/uapi/linux/hpet.h
9419
9420 HPET:   x86
9421 S:      Orphan
9422 F:      arch/x86/include/asm/hpet.h
9423 F:      arch/x86/kernel/hpet.c
9424
9425 HPFS FILESYSTEM
9426 M:      Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
9427 S:      Maintained
9428 W:      http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
9429 F:      fs/hpfs/
9430
9431 HSI SUBSYSTEM
9432 M:      Sebastian Reichel <sre@kernel.org>
9433 S:      Maintained
9434 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git
9435 F:      Documentation/ABI/testing/sysfs-bus-hsi
9436 F:      Documentation/driver-api/hsi.rst
9437 F:      drivers/hsi/
9438 F:      include/linux/hsi/
9439 F:      include/uapi/linux/hsi/
9440
9441 HSO 3G MODEM DRIVER
9442 L:      linux-usb@vger.kernel.org
9443 S:      Orphan
9444 F:      drivers/net/usb/hso.c
9445
9446 HSR NETWORK PROTOCOL
9447 L:      netdev@vger.kernel.org
9448 S:      Orphan
9449 F:      net/hsr/
9450
9451 HT16K33 LED CONTROLLER DRIVER
9452 M:      Robin van der Gracht <robin@protonic.nl>
9453 S:      Maintained
9454 F:      Documentation/devicetree/bindings/auxdisplay/holtek,ht16k33.yaml
9455 F:      drivers/auxdisplay/ht16k33.c
9456
9457 HTCPEN TOUCHSCREEN DRIVER
9458 M:      Pau Oliva Fora <pof@eslack.org>
9459 L:      linux-input@vger.kernel.org
9460 S:      Maintained
9461 F:      drivers/input/touchscreen/htcpen.c
9462
9463 HTE SUBSYSTEM
9464 M:      Dipen Patel <dipenp@nvidia.com>
9465 S:      Maintained
9466 F:      Documentation/devicetree/bindings/timestamp/
9467 F:      Documentation/driver-api/hte/
9468 F:      drivers/hte/
9469 F:      include/linux/hte.h
9470
9471 HTS221 TEMPERATURE-HUMIDITY IIO DRIVER
9472 M:      Lorenzo Bianconi <lorenzo@kernel.org>
9473 L:      linux-iio@vger.kernel.org
9474 S:      Maintained
9475 W:      http://www.st.com/
9476 F:      Documentation/devicetree/bindings/iio/humidity/st,hts221.yaml
9477 F:      drivers/iio/humidity/hts221*
9478
9479 HUAWEI ETHERNET DRIVER
9480 M:      Cai Huoqing <cai.huoqing@linux.dev>
9481 L:      netdev@vger.kernel.org
9482 S:      Maintained
9483 F:      Documentation/networking/device_drivers/ethernet/huawei/hinic.rst
9484 F:      drivers/net/ethernet/huawei/hinic/
9485
9486 HUGETLB SUBSYSTEM
9487 M:      Mike Kravetz <mike.kravetz@oracle.com>
9488 M:      Muchun Song <muchun.song@linux.dev>
9489 L:      linux-mm@kvack.org
9490 S:      Maintained
9491 F:      Documentation/ABI/testing/sysfs-kernel-mm-hugepages
9492 F:      Documentation/admin-guide/mm/hugetlbpage.rst
9493 F:      Documentation/mm/hugetlbfs_reserv.rst
9494 F:      Documentation/mm/vmemmap_dedup.rst
9495 F:      fs/hugetlbfs/
9496 F:      include/linux/hugetlb.h
9497 F:      mm/hugetlb.c
9498 F:      mm/hugetlb_vmemmap.c
9499 F:      mm/hugetlb_vmemmap.h
9500
9501 HVA ST MEDIA DRIVER
9502 M:      Jean-Christophe Trotin <jean-christophe.trotin@foss.st.com>
9503 L:      linux-media@vger.kernel.org
9504 S:      Supported
9505 W:      https://linuxtv.org
9506 T:      git git://linuxtv.org/media_tree.git
9507 F:      drivers/media/platform/st/sti/hva
9508
9509 HWPOISON MEMORY FAILURE HANDLING
9510 M:      Naoya Horiguchi <naoya.horiguchi@nec.com>
9511 R:      Miaohe Lin <linmiaohe@huawei.com>
9512 L:      linux-mm@kvack.org
9513 S:      Maintained
9514 F:      mm/hwpoison-inject.c
9515 F:      mm/memory-failure.c
9516
9517 HYCON HY46XX TOUCHSCREEN SUPPORT
9518 M:      Giulio Benetti <giulio.benetti@benettiengineering.com>
9519 L:      linux-input@vger.kernel.org
9520 S:      Maintained
9521 F:      Documentation/devicetree/bindings/input/touchscreen/hycon,hy46xx.yaml
9522 F:      drivers/input/touchscreen/hycon-hy46xx.c
9523
9524 HYGON PROCESSOR SUPPORT
9525 M:      Pu Wen <puwen@hygon.cn>
9526 L:      linux-kernel@vger.kernel.org
9527 S:      Maintained
9528 F:      arch/x86/kernel/cpu/hygon.c
9529
9530 HYNIX HI556 SENSOR DRIVER
9531 M:      Shawn Tu <shawnx.tu@intel.com>
9532 L:      linux-media@vger.kernel.org
9533 S:      Maintained
9534 T:      git git://linuxtv.org/media_tree.git
9535 F:      drivers/media/i2c/hi556.c
9536
9537 HYNIX HI846 SENSOR DRIVER
9538 M:      Martin Kepplinger <martin.kepplinger@puri.sm>
9539 L:      linux-media@vger.kernel.org
9540 S:      Maintained
9541 F:      drivers/media/i2c/hi846.c
9542
9543 HYNIX HI847 SENSOR DRIVER
9544 M:      Shawn Tu <shawnx.tu@intel.com>
9545 L:      linux-media@vger.kernel.org
9546 S:      Maintained
9547 F:      drivers/media/i2c/hi847.c
9548
9549 Hyper-V/Azure CORE AND DRIVERS
9550 M:      "K. Y. Srinivasan" <kys@microsoft.com>
9551 M:      Haiyang Zhang <haiyangz@microsoft.com>
9552 M:      Wei Liu <wei.liu@kernel.org>
9553 M:      Dexuan Cui <decui@microsoft.com>
9554 L:      linux-hyperv@vger.kernel.org
9555 S:      Supported
9556 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hyperv/linux.git
9557 F:      Documentation/ABI/stable/sysfs-bus-vmbus
9558 F:      Documentation/ABI/testing/debugfs-hyperv
9559 F:      Documentation/virt/hyperv
9560 F:      Documentation/networking/device_drivers/ethernet/microsoft/netvsc.rst
9561 F:      arch/arm64/hyperv
9562 F:      arch/arm64/include/asm/hyperv-tlfs.h
9563 F:      arch/arm64/include/asm/mshyperv.h
9564 F:      arch/x86/hyperv
9565 F:      arch/x86/include/asm/hyperv-tlfs.h
9566 F:      arch/x86/include/asm/mshyperv.h
9567 F:      arch/x86/include/asm/trace/hyperv.h
9568 F:      arch/x86/kernel/cpu/mshyperv.c
9569 F:      drivers/clocksource/hyperv_timer.c
9570 F:      drivers/hid/hid-hyperv.c
9571 F:      drivers/hv/
9572 F:      drivers/input/serio/hyperv-keyboard.c
9573 F:      drivers/iommu/hyperv-iommu.c
9574 F:      drivers/net/ethernet/microsoft/
9575 F:      drivers/net/hyperv/
9576 F:      drivers/pci/controller/pci-hyperv-intf.c
9577 F:      drivers/pci/controller/pci-hyperv.c
9578 F:      drivers/scsi/storvsc_drv.c
9579 F:      drivers/uio/uio_hv_generic.c
9580 F:      drivers/video/fbdev/hyperv_fb.c
9581 F:      include/asm-generic/hyperv-tlfs.h
9582 F:      include/asm-generic/mshyperv.h
9583 F:      include/clocksource/hyperv_timer.h
9584 F:      include/linux/hyperv.h
9585 F:      include/net/mana
9586 F:      include/uapi/linux/hyperv.h
9587 F:      net/vmw_vsock/hyperv_transport.c
9588 F:      tools/hv/
9589
9590 HYPERBUS SUPPORT
9591 M:      Vignesh Raghavendra <vigneshr@ti.com>
9592 L:      linux-mtd@lists.infradead.org
9593 S:      Supported
9594 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
9595 C:      irc://irc.oftc.net/mtd
9596 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git cfi/next
9597 F:      Documentation/devicetree/bindings/mtd/ti,am654-hbmc.yaml
9598 F:      drivers/mtd/hyperbus/
9599 F:      include/linux/mtd/hyperbus.h
9600
9601 HYPERVISOR VIRTUAL CONSOLE DRIVER
9602 L:      linuxppc-dev@lists.ozlabs.org
9603 S:      Odd Fixes
9604 F:      drivers/tty/hvc/
9605
9606 I2C ACPI SUPPORT
9607 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
9608 L:      linux-i2c@vger.kernel.org
9609 L:      linux-acpi@vger.kernel.org
9610 S:      Maintained
9611 F:      drivers/i2c/i2c-core-acpi.c
9612
9613 I2C CONTROLLER DRIVER FOR NVIDIA GPU
9614 M:      Ajay Gupta <ajayg@nvidia.com>
9615 L:      linux-i2c@vger.kernel.org
9616 S:      Maintained
9617 F:      Documentation/i2c/busses/i2c-nvidia-gpu.rst
9618 F:      drivers/i2c/busses/i2c-nvidia-gpu.c
9619
9620 I2C MUXES
9621 M:      Peter Rosin <peda@axentia.se>
9622 L:      linux-i2c@vger.kernel.org
9623 S:      Maintained
9624 F:      Documentation/devicetree/bindings/i2c/i2c-arb*
9625 F:      Documentation/devicetree/bindings/i2c/i2c-gate*
9626 F:      Documentation/devicetree/bindings/i2c/i2c-mux*
9627 F:      Documentation/i2c/i2c-topology.rst
9628 F:      Documentation/i2c/muxes/
9629 F:      drivers/i2c/i2c-mux.c
9630 F:      drivers/i2c/muxes/
9631 F:      include/linux/i2c-mux.h
9632
9633 I2C MV64XXX MARVELL AND ALLWINNER DRIVER
9634 M:      Gregory CLEMENT <gregory.clement@bootlin.com>
9635 L:      linux-i2c@vger.kernel.org
9636 S:      Maintained
9637 F:      Documentation/devicetree/bindings/i2c/marvell,mv64xxx-i2c.yaml
9638 F:      drivers/i2c/busses/i2c-mv64xxx.c
9639
9640 I2C OVER PARALLEL PORT
9641 M:      Jean Delvare <jdelvare@suse.com>
9642 L:      linux-i2c@vger.kernel.org
9643 S:      Maintained
9644 F:      Documentation/i2c/busses/i2c-parport.rst
9645 F:      drivers/i2c/busses/i2c-parport.c
9646
9647 I2C SUBSYSTEM
9648 M:      Wolfram Sang <wsa@kernel.org>
9649 L:      linux-i2c@vger.kernel.org
9650 S:      Maintained
9651 W:      https://i2c.wiki.kernel.org/
9652 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
9653 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
9654 F:      Documentation/devicetree/bindings/i2c/i2c.txt
9655 F:      Documentation/i2c/
9656 F:      drivers/i2c/*
9657 F:      include/dt-bindings/i2c/i2c.h
9658 F:      include/linux/i2c-dev.h
9659 F:      include/linux/i2c-smbus.h
9660 F:      include/linux/i2c.h
9661 F:      include/uapi/linux/i2c-*.h
9662 F:      include/uapi/linux/i2c.h
9663
9664 I2C SUBSYSTEM HOST DRIVERS
9665 L:      linux-i2c@vger.kernel.org
9666 S:      Odd Fixes
9667 W:      https://i2c.wiki.kernel.org/
9668 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
9669 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
9670 F:      Documentation/devicetree/bindings/i2c/
9671 F:      drivers/i2c/algos/
9672 F:      drivers/i2c/busses/
9673 F:      include/dt-bindings/i2c/
9674
9675 I2C-TAOS-EVM DRIVER
9676 M:      Jean Delvare <jdelvare@suse.com>
9677 L:      linux-i2c@vger.kernel.org
9678 S:      Maintained
9679 F:      Documentation/i2c/busses/i2c-taos-evm.rst
9680 F:      drivers/i2c/busses/i2c-taos-evm.c
9681
9682 I2C-TINY-USB DRIVER
9683 M:      Till Harbaum <till@harbaum.org>
9684 L:      linux-i2c@vger.kernel.org
9685 S:      Maintained
9686 W:      http://www.harbaum.org/till/i2c_tiny_usb
9687 F:      drivers/i2c/busses/i2c-tiny-usb.c
9688
9689 I2C/SMBUS CONTROLLER DRIVERS FOR PC
9690 M:      Jean Delvare <jdelvare@suse.com>
9691 L:      linux-i2c@vger.kernel.org
9692 S:      Maintained
9693 F:      Documentation/i2c/busses/i2c-ali1535.rst
9694 F:      Documentation/i2c/busses/i2c-ali1563.rst
9695 F:      Documentation/i2c/busses/i2c-ali15x3.rst
9696 F:      Documentation/i2c/busses/i2c-amd756.rst
9697 F:      Documentation/i2c/busses/i2c-amd8111.rst
9698 F:      Documentation/i2c/busses/i2c-i801.rst
9699 F:      Documentation/i2c/busses/i2c-nforce2.rst
9700 F:      Documentation/i2c/busses/i2c-piix4.rst
9701 F:      Documentation/i2c/busses/i2c-sis5595.rst
9702 F:      Documentation/i2c/busses/i2c-sis630.rst
9703 F:      Documentation/i2c/busses/i2c-sis96x.rst
9704 F:      Documentation/i2c/busses/i2c-via.rst
9705 F:      Documentation/i2c/busses/i2c-viapro.rst
9706 F:      drivers/i2c/busses/i2c-ali1535.c
9707 F:      drivers/i2c/busses/i2c-ali1563.c
9708 F:      drivers/i2c/busses/i2c-ali15x3.c
9709 F:      drivers/i2c/busses/i2c-amd756-s4882.c
9710 F:      drivers/i2c/busses/i2c-amd756.c
9711 F:      drivers/i2c/busses/i2c-amd8111.c
9712 F:      drivers/i2c/busses/i2c-i801.c
9713 F:      drivers/i2c/busses/i2c-isch.c
9714 F:      drivers/i2c/busses/i2c-nforce2-s4985.c
9715 F:      drivers/i2c/busses/i2c-nforce2.c
9716 F:      drivers/i2c/busses/i2c-piix4.c
9717 F:      drivers/i2c/busses/i2c-sis5595.c
9718 F:      drivers/i2c/busses/i2c-sis630.c
9719 F:      drivers/i2c/busses/i2c-sis96x.c
9720 F:      drivers/i2c/busses/i2c-via.c
9721 F:      drivers/i2c/busses/i2c-viapro.c
9722
9723 I2C/SMBUS INTEL CHT WHISKEY COVE PMIC DRIVER
9724 M:      Hans de Goede <hdegoede@redhat.com>
9725 L:      linux-i2c@vger.kernel.org
9726 S:      Maintained
9727 F:      drivers/i2c/busses/i2c-cht-wc.c
9728
9729 I2C/SMBUS ISMT DRIVER
9730 M:      Seth Heasley <seth.heasley@intel.com>
9731 M:      Neil Horman <nhorman@tuxdriver.com>
9732 L:      linux-i2c@vger.kernel.org
9733 F:      Documentation/i2c/busses/i2c-ismt.rst
9734 F:      drivers/i2c/busses/i2c-ismt.c
9735
9736 I2C/SMBUS STUB DRIVER
9737 M:      Jean Delvare <jdelvare@suse.com>
9738 L:      linux-i2c@vger.kernel.org
9739 S:      Maintained
9740 F:      drivers/i2c/i2c-stub.c
9741
9742 I3C DRIVER FOR CADENCE I3C MASTER IP
9743 M:      Przemysław Gaj <pgaj@cadence.com>
9744 S:      Maintained
9745 F:      Documentation/devicetree/bindings/i3c/cdns,i3c-master.yaml
9746 F:      drivers/i3c/master/i3c-master-cdns.c
9747
9748 I3C DRIVER FOR SYNOPSYS DESIGNWARE
9749 S:      Orphan
9750 F:      Documentation/devicetree/bindings/i3c/snps,dw-i3c-master.yaml
9751 F:      drivers/i3c/master/dw*
9752
9753 I3C SUBSYSTEM
9754 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
9755 L:      linux-i3c@lists.infradead.org (moderated for non-subscribers)
9756 S:      Maintained
9757 C:      irc://chat.freenode.net/linux-i3c
9758 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/i3c/linux.git
9759 F:      Documentation/ABI/testing/sysfs-bus-i3c
9760 F:      Documentation/devicetree/bindings/i3c/
9761 F:      Documentation/driver-api/i3c
9762 F:      drivers/i3c/
9763 F:      include/linux/i3c/
9764
9765 IA64 (Itanium) PLATFORM
9766 L:      linux-ia64@vger.kernel.org
9767 S:      Orphan
9768 F:      Documentation/arch/ia64/
9769 F:      arch/ia64/
9770
9771 IBM Operation Panel Input Driver
9772 M:      Eddie James <eajames@linux.ibm.com>
9773 L:      linux-input@vger.kernel.org
9774 S:      Maintained
9775 F:      Documentation/devicetree/bindings/input/ibm,op-panel.yaml
9776 F:      drivers/input/misc/ibm-panel.c
9777
9778 IBM Power 842 compression accelerator
9779 M:      Haren Myneni <haren@us.ibm.com>
9780 S:      Supported
9781 F:      crypto/842.c
9782 F:      drivers/crypto/nx/Kconfig
9783 F:      drivers/crypto/nx/Makefile
9784 F:      drivers/crypto/nx/nx-842*
9785 F:      include/linux/sw842.h
9786 F:      lib/842/
9787
9788 IBM Power in-Nest Crypto Acceleration
9789 M:      Breno Leitão <leitao@debian.org>
9790 M:      Nayna Jain <nayna@linux.ibm.com>
9791 M:      Paulo Flabiano Smorigo <pfsmorigo@gmail.com>
9792 L:      linux-crypto@vger.kernel.org
9793 S:      Supported
9794 F:      drivers/crypto/nx/Kconfig
9795 F:      drivers/crypto/nx/Makefile
9796 F:      drivers/crypto/nx/nx-aes*
9797 F:      drivers/crypto/nx/nx-sha*
9798 F:      drivers/crypto/nx/nx.*
9799 F:      drivers/crypto/nx/nx_csbcpb.h
9800 F:      drivers/crypto/nx/nx_debugfs.c
9801
9802 IBM Power IO DLPAR Driver for RPA-compliant PPC64 platform
9803 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
9804 L:      linux-pci@vger.kernel.org
9805 L:      linuxppc-dev@lists.ozlabs.org
9806 S:      Supported
9807 F:      drivers/pci/hotplug/rpadlpar*
9808
9809 IBM Power Linux RAID adapter
9810 M:      Brian King <brking@us.ibm.com>
9811 S:      Supported
9812 F:      drivers/scsi/ipr.*
9813
9814 IBM Power PCI Hotplug Driver for RPA-compliant PPC64 platform
9815 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
9816 L:      linux-pci@vger.kernel.org
9817 L:      linuxppc-dev@lists.ozlabs.org
9818 S:      Supported
9819 F:      drivers/pci/hotplug/rpaphp*
9820
9821 IBM Power SRIOV Virtual NIC Device Driver
9822 M:      Haren Myneni <haren@linux.ibm.com>
9823 M:      Rick Lindsley <ricklind@linux.ibm.com>
9824 R:      Nick Child <nnac123@linux.ibm.com>
9825 R:      Dany Madden <danymadden@us.ibm.com>
9826 R:      Thomas Falcon <tlfalcon@linux.ibm.com>
9827 L:      netdev@vger.kernel.org
9828 S:      Supported
9829 F:      drivers/net/ethernet/ibm/ibmvnic.*
9830
9831 IBM Power Virtual Ethernet Device Driver
9832 M:      Nick Child <nnac123@linux.ibm.com>
9833 L:      netdev@vger.kernel.org
9834 S:      Supported
9835 F:      drivers/net/ethernet/ibm/ibmveth.*
9836
9837 IBM Power Virtual FC Device Drivers
9838 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
9839 L:      linux-scsi@vger.kernel.org
9840 S:      Supported
9841 F:      drivers/scsi/ibmvscsi/ibmvfc*
9842
9843 IBM Power Virtual Management Channel Driver
9844 M:      Brad Warrum <bwarrum@linux.ibm.com>
9845 M:      Ritu Agarwal <rituagar@linux.ibm.com>
9846 S:      Supported
9847 F:      drivers/misc/ibmvmc.*
9848
9849 IBM Power Virtual SCSI Device Drivers
9850 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
9851 L:      linux-scsi@vger.kernel.org
9852 S:      Supported
9853 F:      drivers/scsi/ibmvscsi/ibmvscsi*
9854 F:      include/scsi/viosrp.h
9855
9856 IBM Power Virtual SCSI Device Target Driver
9857 M:      Michael Cyr <mikecyr@linux.ibm.com>
9858 L:      linux-scsi@vger.kernel.org
9859 L:      target-devel@vger.kernel.org
9860 S:      Supported
9861 F:      drivers/scsi/ibmvscsi_tgt/
9862
9863 IBM Power VMX Cryptographic instructions
9864 M:      Breno Leitão <leitao@debian.org>
9865 M:      Nayna Jain <nayna@linux.ibm.com>
9866 M:      Paulo Flabiano Smorigo <pfsmorigo@gmail.com>
9867 L:      linux-crypto@vger.kernel.org
9868 S:      Supported
9869 F:      drivers/crypto/vmx/Kconfig
9870 F:      drivers/crypto/vmx/Makefile
9871 F:      drivers/crypto/vmx/aes*
9872 F:      drivers/crypto/vmx/ghash*
9873 F:      drivers/crypto/vmx/ppc-xlate.pl
9874 F:      drivers/crypto/vmx/vmx.c
9875
9876 IBM ServeRAID RAID DRIVER
9877 S:      Orphan
9878 F:      drivers/scsi/ips.*
9879
9880 ICH LPC AND GPIO DRIVER
9881 M:      Peter Tyser <ptyser@xes-inc.com>
9882 S:      Maintained
9883 F:      drivers/gpio/gpio-ich.c
9884 F:      drivers/mfd/lpc_ich.c
9885
9886 ICY I2C DRIVER
9887 M:      Max Staudt <max@enpas.org>
9888 L:      linux-i2c@vger.kernel.org
9889 S:      Maintained
9890 F:      drivers/i2c/busses/i2c-icy.c
9891
9892 IDEAPAD LAPTOP EXTRAS DRIVER
9893 M:      Ike Panhc <ike.pan@canonical.com>
9894 L:      platform-driver-x86@vger.kernel.org
9895 S:      Maintained
9896 W:      http://launchpad.net/ideapad-laptop
9897 F:      drivers/platform/x86/ideapad-laptop.c
9898
9899 IDEAPAD LAPTOP SLIDEBAR DRIVER
9900 M:      Andrey Moiseev <o2g.org.ru@gmail.com>
9901 L:      linux-input@vger.kernel.org
9902 S:      Maintained
9903 W:      https://github.com/o2genum/ideapad-slidebar
9904 F:      drivers/input/misc/ideapad_slidebar.c
9905
9906 IDMAPPED MOUNTS
9907 M:      Christian Brauner <brauner@kernel.org>
9908 M:      Seth Forshee <sforshee@kernel.org>
9909 L:      linux-fsdevel@vger.kernel.org
9910 S:      Maintained
9911 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vfs/idmapping.git
9912 F:      Documentation/filesystems/idmappings.rst
9913 F:      include/linux/mnt_idmapping.*
9914 F:      tools/testing/selftests/mount_setattr/
9915
9916 IDT VersaClock 5 CLOCK DRIVER
9917 M:      Luca Ceresoli <luca@lucaceresoli.net>
9918 S:      Maintained
9919 F:      Documentation/devicetree/bindings/clock/idt,versaclock5.yaml
9920 F:      drivers/clk/clk-versaclock5.c
9921
9922 IEEE 802.15.4 SUBSYSTEM
9923 M:      Alexander Aring <alex.aring@gmail.com>
9924 M:      Stefan Schmidt <stefan@datenfreihafen.org>
9925 M:      Miquel Raynal <miquel.raynal@bootlin.com>
9926 L:      linux-wpan@vger.kernel.org
9927 S:      Maintained
9928 W:      https://linux-wpan.org/
9929 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan.git
9930 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan-next.git
9931 F:      Documentation/networking/ieee802154.rst
9932 F:      drivers/net/ieee802154/
9933 F:      include/linux/ieee802154.h
9934 F:      include/linux/nl802154.h
9935 F:      include/net/af_ieee802154.h
9936 F:      include/net/cfg802154.h
9937 F:      include/net/ieee802154_netdev.h
9938 F:      include/net/mac802154.h
9939 F:      include/net/nl802154.h
9940 F:      net/ieee802154/
9941 F:      net/mac802154/
9942
9943 IFE PROTOCOL
9944 M:      Yotam Gigi <yotam.gi@gmail.com>
9945 M:      Jamal Hadi Salim <jhs@mojatatu.com>
9946 F:      include/net/ife.h
9947 F:      include/uapi/linux/ife.h
9948 F:      net/ife
9949
9950 IGORPLUG-USB IR RECEIVER
9951 M:      Sean Young <sean@mess.org>
9952 L:      linux-media@vger.kernel.org
9953 S:      Maintained
9954 F:      drivers/media/rc/igorplugusb.c
9955
9956 IGUANAWORKS USB IR TRANSCEIVER
9957 M:      Sean Young <sean@mess.org>
9958 L:      linux-media@vger.kernel.org
9959 S:      Maintained
9960 F:      drivers/media/rc/iguanair.c
9961
9962 IIO DIGITAL POTENTIOMETER DAC
9963 M:      Peter Rosin <peda@axentia.se>
9964 L:      linux-iio@vger.kernel.org
9965 S:      Maintained
9966 F:      Documentation/ABI/testing/sysfs-bus-iio-dac-dpot-dac
9967 F:      Documentation/devicetree/bindings/iio/dac/dpot-dac.yaml
9968 F:      drivers/iio/dac/dpot-dac.c
9969
9970 IIO ENVELOPE DETECTOR
9971 M:      Peter Rosin <peda@axentia.se>
9972 L:      linux-iio@vger.kernel.org
9973 S:      Maintained
9974 F:      Documentation/ABI/testing/sysfs-bus-iio-adc-envelope-detector
9975 F:      Documentation/devicetree/bindings/iio/adc/envelope-detector.yaml
9976 F:      drivers/iio/adc/envelope-detector.c
9977
9978 IIO MULTIPLEXER
9979 M:      Peter Rosin <peda@axentia.se>
9980 L:      linux-iio@vger.kernel.org
9981 S:      Maintained
9982 F:      Documentation/devicetree/bindings/iio/multiplexer/io-channel-mux.yaml
9983 F:      drivers/iio/multiplexer/iio-mux.c
9984
9985 IIO SCMI BASED DRIVER
9986 M:      Jyoti Bhayana <jbhayana@google.com>
9987 L:      linux-iio@vger.kernel.org
9988 S:      Maintained
9989 F:      drivers/iio/common/scmi_sensors/scmi_iio.c
9990
9991 IIO SUBSYSTEM AND DRIVERS
9992 M:      Jonathan Cameron <jic23@kernel.org>
9993 R:      Lars-Peter Clausen <lars@metafoo.de>
9994 L:      linux-iio@vger.kernel.org
9995 S:      Maintained
9996 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
9997 F:      Documentation/ABI/testing/configfs-iio*
9998 F:      Documentation/ABI/testing/sysfs-bus-iio*
9999 F:      Documentation/devicetree/bindings/iio/
10000 F:      drivers/iio/
10001 F:      drivers/staging/iio/
10002 F:      include/dt-bindings/iio/
10003 F:      include/linux/iio/
10004 F:      tools/iio/
10005
10006 IIO UNIT CONVERTER
10007 M:      Peter Rosin <peda@axentia.se>
10008 L:      linux-iio@vger.kernel.org
10009 S:      Maintained
10010 F:      Documentation/devicetree/bindings/iio/afe/current-sense-amplifier.yaml
10011 F:      Documentation/devicetree/bindings/iio/afe/current-sense-shunt.yaml
10012 F:      Documentation/devicetree/bindings/iio/afe/voltage-divider.yaml
10013 F:      drivers/iio/afe/iio-rescale.c
10014
10015 IKANOS/ADI EAGLE ADSL USB DRIVER
10016 M:      Matthieu Castet <castet.matthieu@free.fr>
10017 M:      Stanislaw Gruszka <stf_xl@wp.pl>
10018 S:      Maintained
10019 F:      drivers/usb/atm/ueagle-atm.c
10020
10021 IMAGIS TOUCHSCREEN DRIVER
10022 M:      Markuss Broks <markuss.broks@gmail.com>
10023 S:      Maintained
10024 F:      Documentation/devicetree/bindings/input/touchscreen/imagis,ist3038c.yaml
10025 F:      drivers/input/touchscreen/imagis.c
10026
10027 IMGTEC ASCII LCD DRIVER
10028 M:      Paul Burton <paulburton@kernel.org>
10029 S:      Maintained
10030 F:      Documentation/devicetree/bindings/auxdisplay/img,ascii-lcd.yaml
10031 F:      drivers/auxdisplay/img-ascii-lcd.c
10032
10033 IMGTEC IR DECODER DRIVER
10034 S:      Orphan
10035 F:      drivers/media/rc/img-ir/
10036
10037 IMON SOUNDGRAPH USB IR RECEIVER
10038 M:      Sean Young <sean@mess.org>
10039 L:      linux-media@vger.kernel.org
10040 S:      Maintained
10041 F:      drivers/media/rc/imon.c
10042 F:      drivers/media/rc/imon_raw.c
10043
10044 IMS TWINTURBO FRAMEBUFFER DRIVER
10045 L:      linux-fbdev@vger.kernel.org
10046 S:      Orphan
10047 F:      drivers/video/fbdev/imsttfb.c
10048
10049 INA209 HARDWARE MONITOR DRIVER
10050 M:      Guenter Roeck <linux@roeck-us.net>
10051 L:      linux-hwmon@vger.kernel.org
10052 S:      Maintained
10053 F:      Documentation/devicetree/bindings/hwmon/ti,ina2xx.yaml
10054 F:      Documentation/hwmon/ina209.rst
10055 F:      drivers/hwmon/ina209.c
10056
10057 INA2XX HARDWARE MONITOR DRIVER
10058 M:      Guenter Roeck <linux@roeck-us.net>
10059 L:      linux-hwmon@vger.kernel.org
10060 S:      Maintained
10061 F:      Documentation/hwmon/ina2xx.rst
10062 F:      drivers/hwmon/ina2xx.c
10063 F:      include/linux/platform_data/ina2xx.h
10064
10065 INDEX OF FURTHER KERNEL DOCUMENTATION
10066 M:      Carlos Bilbao <carlos.bilbao@amd.com>
10067 S:      Maintained
10068 F:      Documentation/process/kernel-docs.rst
10069
10070 INDUSTRY PACK SUBSYSTEM (IPACK)
10071 M:      Samuel Iglesias Gonsalvez <siglesias@igalia.com>
10072 M:      Jens Taprogge <jens.taprogge@taprogge.org>
10073 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10074 L:      industrypack-devel@lists.sourceforge.net
10075 S:      Maintained
10076 W:      http://industrypack.sourceforge.net
10077 F:      drivers/ipack/
10078
10079 INFINEON DPS310 Driver
10080 M:      Eddie James <eajames@linux.ibm.com>
10081 L:      linux-iio@vger.kernel.org
10082 S:      Maintained
10083 F:      drivers/iio/pressure/dps310.c
10084
10085 INFINEON PEB2466 ASoC CODEC
10086 M:      Herve Codina <herve.codina@bootlin.com>
10087 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10088 S:      Maintained
10089 F:      Documentation/devicetree/bindings/sound/infineon,peb2466.yaml
10090 F:      sound/soc/codecs/peb2466.c
10091
10092 INFINIBAND SUBSYSTEM
10093 M:      Jason Gunthorpe <jgg@nvidia.com>
10094 M:      Leon Romanovsky <leonro@nvidia.com>
10095 L:      linux-rdma@vger.kernel.org
10096 S:      Supported
10097 W:      https://github.com/linux-rdma/rdma-core
10098 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
10099 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rdma/rdma.git
10100 F:      Documentation/devicetree/bindings/infiniband/
10101 F:      Documentation/infiniband/
10102 F:      drivers/infiniband/
10103 F:      include/rdma/
10104 F:      include/trace/events/ib_mad.h
10105 F:      include/trace/events/ib_umad.h
10106 F:      include/trace/misc/rdma.h
10107 F:      include/uapi/linux/if_infiniband.h
10108 F:      include/uapi/rdma/
10109 F:      samples/bpf/ibumad_kern.c
10110 F:      samples/bpf/ibumad_user.c
10111
10112 INGENIC JZ4780 NAND DRIVER
10113 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
10114 L:      linux-mtd@lists.infradead.org
10115 L:      linux-mips@vger.kernel.org
10116 S:      Maintained
10117 F:      drivers/mtd/nand/raw/ingenic/
10118
10119 INGENIC JZ47xx SoCs
10120 M:      Paul Cercueil <paul@crapouillou.net>
10121 L:      linux-mips@vger.kernel.org
10122 S:      Maintained
10123 F:      arch/mips/boot/dts/ingenic/
10124 F:      arch/mips/generic/board-ingenic.c
10125 F:      arch/mips/include/asm/mach-ingenic/
10126 F:      arch/mips/ingenic/Kconfig
10127 F:      drivers/clk/ingenic/
10128 F:      drivers/dma/dma-jz4780.c
10129 F:      drivers/gpu/drm/ingenic/
10130 F:      drivers/i2c/busses/i2c-jz4780.c
10131 F:      drivers/iio/adc/ingenic-adc.c
10132 F:      drivers/irqchip/irq-ingenic.c
10133 F:      drivers/memory/jz4780-nemc.c
10134 F:      drivers/mmc/host/jz4740_mmc.c
10135 F:      drivers/mtd/nand/raw/ingenic/
10136 F:      drivers/pinctrl/pinctrl-ingenic.c
10137 F:      drivers/power/supply/ingenic-battery.c
10138 F:      drivers/pwm/pwm-jz4740.c
10139 F:      drivers/remoteproc/ingenic_rproc.c
10140 F:      drivers/rtc/rtc-jz4740.c
10141 F:      drivers/tty/serial/8250/8250_ingenic.c
10142 F:      drivers/usb/musb/jz4740.c
10143 F:      drivers/watchdog/jz4740_wdt.c
10144 F:      include/dt-bindings/iio/adc/ingenic,adc.h
10145 F:      include/linux/mfd/ingenic-tcu.h
10146 F:      sound/soc/codecs/jz47*
10147 F:      sound/soc/jz4740/
10148
10149 INJOINIC IP5xxx POWER BANK IC DRIVER
10150 M:      Samuel Holland <samuel@sholland.org>
10151 S:      Maintained
10152 F:      drivers/power/supply/ip5xxx_power.c
10153
10154 INOTIFY
10155 M:      Jan Kara <jack@suse.cz>
10156 R:      Amir Goldstein <amir73il@gmail.com>
10157 L:      linux-fsdevel@vger.kernel.org
10158 S:      Maintained
10159 F:      Documentation/filesystems/inotify.rst
10160 F:      fs/notify/inotify/
10161 F:      include/linux/inotify.h
10162 F:      include/uapi/linux/inotify.h
10163
10164 INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
10165 M:      Dmitry Torokhov <dmitry.torokhov@gmail.com>
10166 L:      linux-input@vger.kernel.org
10167 S:      Maintained
10168 Q:      http://patchwork.kernel.org/project/linux-input/list/
10169 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
10170 F:      Documentation/devicetree/bindings/input/
10171 F:      Documentation/devicetree/bindings/serio/
10172 F:      Documentation/input/
10173 F:      drivers/input/
10174 F:      include/dt-bindings/input/
10175 F:      include/linux/input.h
10176 F:      include/linux/input/
10177 F:      include/uapi/linux/input-event-codes.h
10178 F:      include/uapi/linux/input.h
10179
10180 INPUT MULTITOUCH (MT) PROTOCOL
10181 M:      Henrik Rydberg <rydberg@bitmath.org>
10182 L:      linux-input@vger.kernel.org
10183 S:      Odd fixes
10184 F:      Documentation/input/multi-touch-protocol.rst
10185 F:      drivers/input/input-mt.c
10186 K:      \b(ABS|SYN)_MT_
10187
10188 INSIDE SECURE CRYPTO DRIVER
10189 M:      Antoine Tenart <atenart@kernel.org>
10190 L:      linux-crypto@vger.kernel.org
10191 S:      Maintained
10192 F:      drivers/crypto/inside-secure/
10193
10194 INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
10195 M:      Mimi Zohar <zohar@linux.ibm.com>
10196 M:      Dmitry Kasatkin <dmitry.kasatkin@gmail.com>
10197 L:      linux-integrity@vger.kernel.org
10198 S:      Supported
10199 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/zohar/linux-integrity.git
10200 F:      security/integrity/ima/
10201 F:      security/integrity/
10202
10203 INTEL 810/815 FRAMEBUFFER DRIVER
10204 M:      Antonino Daplas <adaplas@gmail.com>
10205 L:      linux-fbdev@vger.kernel.org
10206 S:      Maintained
10207 F:      drivers/video/fbdev/i810/
10208
10209 INTEL 8255 GPIO DRIVER
10210 M:      William Breathitt Gray <william.gray@linaro.org>
10211 L:      linux-gpio@vger.kernel.org
10212 S:      Maintained
10213 F:      drivers/gpio/gpio-i8255.c
10214 F:      drivers/gpio/gpio-i8255.h
10215
10216 INTEL ASoC DRIVERS
10217 M:      Cezary Rojewski <cezary.rojewski@intel.com>
10218 M:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
10219 M:      Liam Girdwood <liam.r.girdwood@linux.intel.com>
10220 M:      Peter Ujfalusi <peter.ujfalusi@linux.intel.com>
10221 M:      Bard Liao <yung-chuan.liao@linux.intel.com>
10222 M:      Ranjani Sridharan <ranjani.sridharan@linux.intel.com>
10223 M:      Kai Vehmanen <kai.vehmanen@linux.intel.com>
10224 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10225 S:      Supported
10226 F:      sound/soc/intel/
10227
10228 INTEL ATOMISP2 DUMMY / POWER-MANAGEMENT DRIVER
10229 M:      Hans de Goede <hdegoede@redhat.com>
10230 L:      platform-driver-x86@vger.kernel.org
10231 S:      Maintained
10232 F:      drivers/platform/x86/intel/atomisp2/pm.c
10233
10234 INTEL ATOMISP2 LED DRIVER
10235 M:      Hans de Goede <hdegoede@redhat.com>
10236 L:      platform-driver-x86@vger.kernel.org
10237 S:      Maintained
10238 F:      drivers/platform/x86/intel/atomisp2/led.c
10239
10240 INTEL BIOS SAR INT1092 DRIVER
10241 M:      Shravan Sudhakar <s.shravan@intel.com>
10242 M:      Intel Corporation <linuxwwan@intel.com>
10243 L:      platform-driver-x86@vger.kernel.org
10244 S:      Maintained
10245 F:      drivers/platform/x86/intel/int1092/
10246
10247 INTEL BROXTON PMC DRIVER
10248 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
10249 M:      Zha Qipeng <qipeng.zha@intel.com>
10250 S:      Maintained
10251 F:      drivers/mfd/intel_pmc_bxt.c
10252 F:      include/linux/mfd/intel_pmc_bxt.h
10253
10254 INTEL C600 SERIES SAS CONTROLLER DRIVER
10255 M:      Artur Paszkiewicz <artur.paszkiewicz@intel.com>
10256 L:      linux-scsi@vger.kernel.org
10257 S:      Supported
10258 T:      git git://git.code.sf.net/p/intel-sas/isci
10259 F:      drivers/scsi/isci/
10260
10261 INTEL CPU family model numbers
10262 M:      Tony Luck <tony.luck@intel.com>
10263 M:      x86@kernel.org
10264 L:      linux-kernel@vger.kernel.org
10265 S:      Supported
10266 F:      arch/x86/include/asm/intel-family.h
10267
10268 INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
10269 M:      Jani Nikula <jani.nikula@linux.intel.com>
10270 M:      Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
10271 M:      Rodrigo Vivi <rodrigo.vivi@intel.com>
10272 M:      Tvrtko Ursulin <tvrtko.ursulin@linux.intel.com>
10273 L:      intel-gfx@lists.freedesktop.org
10274 S:      Supported
10275 W:      https://01.org/linuxgraphics/
10276 Q:      http://patchwork.freedesktop.org/project/intel-gfx/
10277 B:      https://gitlab.freedesktop.org/drm/intel/-/wikis/How-to-file-i915-bugs
10278 C:      irc://irc.oftc.net/intel-gfx
10279 T:      git git://anongit.freedesktop.org/drm-intel
10280 F:      Documentation/ABI/testing/sysfs-driver-intel-i915-hwmon
10281 F:      Documentation/gpu/i915.rst
10282 F:      drivers/gpu/drm/i915/
10283 F:      include/drm/i915*
10284 F:      include/uapi/drm/i915_drm.h
10285
10286 INTEL ETHERNET DRIVERS
10287 M:      Jesse Brandeburg <jesse.brandeburg@intel.com>
10288 M:      Tony Nguyen <anthony.l.nguyen@intel.com>
10289 L:      intel-wired-lan@lists.osuosl.org (moderated for non-subscribers)
10290 S:      Supported
10291 W:      http://www.intel.com/support/feedback.htm
10292 W:      http://e1000.sourceforge.net/
10293 Q:      http://patchwork.ozlabs.org/project/intel-wired-lan/list/
10294 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tnguy/net-queue.git
10295 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tnguy/next-queue.git
10296 F:      Documentation/networking/device_drivers/ethernet/intel/
10297 F:      drivers/net/ethernet/intel/
10298 F:      drivers/net/ethernet/intel/*/
10299 F:      include/linux/avf/virtchnl.h
10300 F:      include/linux/net/intel/iidc.h
10301
10302 INTEL ETHERNET PROTOCOL DRIVER FOR RDMA
10303 M:      Mustafa Ismail <mustafa.ismail@intel.com>
10304 M:      Shiraz Saleem <shiraz.saleem@intel.com>
10305 L:      linux-rdma@vger.kernel.org
10306 S:      Supported
10307 F:      drivers/infiniband/hw/irdma/
10308 F:      include/uapi/rdma/irdma-abi.h
10309
10310 INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
10311 M:      Maik Broemme <mbroemme@libmpq.org>
10312 L:      linux-fbdev@vger.kernel.org
10313 S:      Maintained
10314 F:      Documentation/fb/intelfb.rst
10315 F:      drivers/video/fbdev/intelfb/
10316
10317 INTEL GPIO DRIVERS
10318 M:      Andy Shevchenko <andy@kernel.org>
10319 L:      linux-gpio@vger.kernel.org
10320 S:      Supported
10321 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
10322 F:      drivers/gpio/gpio-elkhartlake.c
10323 F:      drivers/gpio/gpio-ich.c
10324 F:      drivers/gpio/gpio-merrifield.c
10325 F:      drivers/gpio/gpio-ml-ioh.c
10326 F:      drivers/gpio/gpio-pch.c
10327 F:      drivers/gpio/gpio-sch.c
10328 F:      drivers/gpio/gpio-sodaville.c
10329 F:      drivers/gpio/gpio-tangier.c
10330
10331 INTEL GVT-g DRIVERS (Intel GPU Virtualization)
10332 M:      Zhenyu Wang <zhenyuw@linux.intel.com>
10333 M:      Zhi Wang <zhi.a.wang@intel.com>
10334 L:      intel-gvt-dev@lists.freedesktop.org
10335 L:      intel-gfx@lists.freedesktop.org
10336 S:      Supported
10337 W:      https://01.org/igvt-g
10338 T:      git https://github.com/intel/gvt-linux.git
10339 F:      drivers/gpu/drm/i915/gvt/
10340
10341 INTEL HID EVENT DRIVER
10342 M:      Alex Hung <alexhung@gmail.com>
10343 L:      platform-driver-x86@vger.kernel.org
10344 S:      Maintained
10345 F:      drivers/platform/x86/intel/hid.c
10346
10347 INTEL I/OAT DMA DRIVER
10348 M:      Dave Jiang <dave.jiang@intel.com>
10349 R:      Dan Williams <dan.j.williams@intel.com>
10350 L:      dmaengine@vger.kernel.org
10351 S:      Supported
10352 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
10353 F:      drivers/dma/ioat*
10354
10355 INTEL IDXD DRIVER
10356 M:      Fenghua Yu <fenghua.yu@intel.com>
10357 M:      Dave Jiang <dave.jiang@intel.com>
10358 L:      dmaengine@vger.kernel.org
10359 S:      Supported
10360 F:      drivers/dma/idxd/*
10361 F:      include/uapi/linux/idxd.h
10362
10363 INTEL IDLE DRIVER
10364 M:      Jacob Pan <jacob.jun.pan@linux.intel.com>
10365 M:      Len Brown <lenb@kernel.org>
10366 L:      linux-pm@vger.kernel.org
10367 S:      Supported
10368 B:      https://bugzilla.kernel.org
10369 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
10370 F:      drivers/idle/intel_idle.c
10371
10372 INTEL IN FIELD SCAN (IFS) DEVICE
10373 M:      Jithu Joseph <jithu.joseph@intel.com>
10374 R:      Ashok Raj <ashok.raj@intel.com>
10375 R:      Tony Luck <tony.luck@intel.com>
10376 S:      Maintained
10377 F:      drivers/platform/x86/intel/ifs
10378 F:      include/trace/events/intel_ifs.h
10379
10380 INTEL INTEGRATED SENSOR HUB DRIVER
10381 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
10382 M:      Jiri Kosina <jikos@kernel.org>
10383 L:      linux-input@vger.kernel.org
10384 S:      Maintained
10385 F:      drivers/hid/intel-ish-hid/
10386
10387 INTEL IOMMU (VT-d)
10388 M:      David Woodhouse <dwmw2@infradead.org>
10389 M:      Lu Baolu <baolu.lu@linux.intel.com>
10390 L:      iommu@lists.linux.dev
10391 S:      Supported
10392 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
10393 F:      drivers/iommu/intel/
10394
10395 INTEL IPU3 CSI-2 CIO2 DRIVER
10396 M:      Yong Zhi <yong.zhi@intel.com>
10397 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
10398 M:      Bingbu Cao <bingbu.cao@intel.com>
10399 M:      Dan Scally <djrscally@gmail.com>
10400 R:      Tianshu Qiu <tian.shu.qiu@intel.com>
10401 L:      linux-media@vger.kernel.org
10402 S:      Maintained
10403 T:      git git://linuxtv.org/media_tree.git
10404 F:      Documentation/userspace-api/media/v4l/pixfmt-srggb10-ipu3.rst
10405 F:      drivers/media/pci/intel/ipu3/
10406
10407 INTEL IPU3 CSI-2 IMGU DRIVER
10408 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
10409 R:      Bingbu Cao <bingbu.cao@intel.com>
10410 R:      Tianshu Qiu <tian.shu.qiu@intel.com>
10411 L:      linux-media@vger.kernel.org
10412 S:      Maintained
10413 F:      Documentation/admin-guide/media/ipu3.rst
10414 F:      Documentation/admin-guide/media/ipu3_rcb.svg
10415 F:      Documentation/userspace-api/media/v4l/pixfmt-meta-intel-ipu3.rst
10416 F:      drivers/staging/media/ipu3/
10417
10418 INTEL IXP4XX CRYPTO SUPPORT
10419 M:      Corentin Labbe <clabbe@baylibre.com>
10420 L:      linux-crypto@vger.kernel.org
10421 S:      Maintained
10422 F:      drivers/crypto/intel/ixp4xx/ixp4xx_crypto.c
10423
10424 INTEL ISHTP ECLITE DRIVER
10425 M:      Sumesh K Naduvalath <sumesh.k.naduvalath@intel.com>
10426 L:      platform-driver-x86@vger.kernel.org
10427 S:      Supported
10428 F:      drivers/platform/x86/intel/ishtp_eclite.c
10429
10430 INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
10431 M:      Krzysztof Halasa <khalasa@piap.pl>
10432 S:      Maintained
10433 F:      drivers/net/ethernet/xscale/ixp4xx_eth.c
10434 F:      drivers/net/wan/ixp4xx_hss.c
10435 F:      drivers/soc/ixp4xx/ixp4xx-npe.c
10436 F:      drivers/soc/ixp4xx/ixp4xx-qmgr.c
10437 F:      include/linux/soc/ixp4xx/npe.h
10438 F:      include/linux/soc/ixp4xx/qmgr.h
10439
10440 INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
10441 M:      Deepak Saxena <dsaxena@plexity.net>
10442 S:      Maintained
10443 F:      Documentation/devicetree/bindings/rng/intel,ixp46x-rng.yaml
10444 F:      drivers/char/hw_random/ixp4xx-rng.c
10445
10446 INTEL KEEM BAY DRM DRIVER
10447 M:      Anitha Chrisanthus <anitha.chrisanthus@intel.com>
10448 M:      Edmund Dea <edmund.j.dea@intel.com>
10449 S:      Maintained
10450 F:      Documentation/devicetree/bindings/display/intel,keembay-display.yaml
10451 F:      drivers/gpu/drm/kmb/
10452
10453 INTEL KEEM BAY OCS AES/SM4 CRYPTO DRIVER
10454 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
10455 S:      Maintained
10456 F:      Documentation/devicetree/bindings/crypto/intel,keembay-ocs-aes.yaml
10457 F:      drivers/crypto/intel/keembay/Kconfig
10458 F:      drivers/crypto/intel/keembay/Makefile
10459 F:      drivers/crypto/intel/keembay/keembay-ocs-aes-core.c
10460 F:      drivers/crypto/intel/keembay/ocs-aes.c
10461 F:      drivers/crypto/intel/keembay/ocs-aes.h
10462
10463 INTEL KEEM BAY OCS ECC CRYPTO DRIVER
10464 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
10465 M:      Prabhjot Khurana <prabhjot.khurana@intel.com>
10466 M:      Mark Gross <mgross@linux.intel.com>
10467 S:      Maintained
10468 F:      Documentation/devicetree/bindings/crypto/intel,keembay-ocs-ecc.yaml
10469 F:      drivers/crypto/intel/keembay/Kconfig
10470 F:      drivers/crypto/intel/keembay/Makefile
10471 F:      drivers/crypto/intel/keembay/keembay-ocs-ecc.c
10472
10473 INTEL KEEM BAY OCS HCU CRYPTO DRIVER
10474 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
10475 M:      Declan Murphy <declan.murphy@intel.com>
10476 S:      Maintained
10477 F:      Documentation/devicetree/bindings/crypto/intel,keembay-ocs-hcu.yaml
10478 F:      drivers/crypto/intel/keembay/Kconfig
10479 F:      drivers/crypto/intel/keembay/Makefile
10480 F:      drivers/crypto/intel/keembay/keembay-ocs-hcu-core.c
10481 F:      drivers/crypto/intel/keembay/ocs-hcu.c
10482 F:      drivers/crypto/intel/keembay/ocs-hcu.h
10483
10484 INTEL THUNDER BAY EMMC PHY DRIVER
10485 M:      Nandhini Srikandan <nandhini.srikandan@intel.com>
10486 M:      Rashmi A <rashmi.a@intel.com>
10487 S:      Maintained
10488 F:      Documentation/devicetree/bindings/phy/intel,phy-thunderbay-emmc.yaml
10489 F:      drivers/phy/intel/phy-intel-thunderbay-emmc.c
10490
10491 INTEL MANAGEMENT ENGINE (mei)
10492 M:      Tomas Winkler <tomas.winkler@intel.com>
10493 L:      linux-kernel@vger.kernel.org
10494 S:      Supported
10495 F:      Documentation/driver-api/mei/*
10496 F:      drivers/misc/mei/
10497 F:      drivers/watchdog/mei_wdt.c
10498 F:      include/linux/mei_aux.h
10499 F:      include/linux/mei_cl_bus.h
10500 F:      include/uapi/linux/mei.h
10501 F:      include/uapi/linux/uuid.h
10502 F:      samples/mei/*
10503
10504 INTEL MAX 10 BMC MFD DRIVER
10505 M:      Xu Yilun <yilun.xu@intel.com>
10506 R:      Tom Rix <trix@redhat.com>
10507 S:      Maintained
10508 F:      Documentation/ABI/testing/sysfs-driver-intel-m10-bmc
10509 F:      Documentation/hwmon/intel-m10-bmc-hwmon.rst
10510 F:      drivers/hwmon/intel-m10-bmc-hwmon.c
10511 F:      drivers/mfd/intel-m10-bmc*
10512 F:      include/linux/mfd/intel-m10-bmc.h
10513
10514 INTEL MENLOW THERMAL DRIVER
10515 M:      Sujith Thomas <sujith.thomas@intel.com>
10516 L:      linux-pm@vger.kernel.org
10517 S:      Supported
10518 F:      drivers/thermal/intel/intel_menlow.c
10519
10520 INTEL P-Unit IPC DRIVER
10521 M:      Zha Qipeng <qipeng.zha@intel.com>
10522 L:      platform-driver-x86@vger.kernel.org
10523 S:      Maintained
10524 F:      arch/x86/include/asm/intel_punit_ipc.h
10525 F:      drivers/platform/x86/intel/punit_ipc.c
10526
10527 INTEL PMC CORE DRIVER
10528 M:      Rajneesh Bhardwaj <irenic.rajneesh@gmail.com>
10529 M:      David E Box <david.e.box@intel.com>
10530 L:      platform-driver-x86@vger.kernel.org
10531 S:      Maintained
10532 F:      Documentation/ABI/testing/sysfs-platform-intel-pmc
10533 F:      drivers/platform/x86/intel/pmc/
10534
10535 INTEL PMIC GPIO DRIVERS
10536 M:      Andy Shevchenko <andy@kernel.org>
10537 S:      Supported
10538 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
10539 F:      drivers/gpio/gpio-*cove.c
10540
10541 INTEL PMIC MULTIFUNCTION DEVICE DRIVERS
10542 M:      Andy Shevchenko <andy@kernel.org>
10543 S:      Supported
10544 F:      drivers/mfd/intel_soc_pmic*
10545 F:      include/linux/mfd/intel_soc_pmic*
10546
10547 INTEL PMT DRIVERS
10548 M:      David E. Box <david.e.box@linux.intel.com>
10549 S:      Supported
10550 F:      drivers/platform/x86/intel/pmt/
10551
10552 INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
10553 M:      Stanislav Yakovlev <stas.yakovlev@gmail.com>
10554 L:      linux-wireless@vger.kernel.org
10555 S:      Maintained
10556 F:      Documentation/networking/device_drivers/wifi/intel/ipw2100.rst
10557 F:      Documentation/networking/device_drivers/wifi/intel/ipw2200.rst
10558 F:      drivers/net/wireless/intel/ipw2x00/
10559
10560 INTEL PSTATE DRIVER
10561 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
10562 M:      Len Brown <lenb@kernel.org>
10563 L:      linux-pm@vger.kernel.org
10564 S:      Supported
10565 F:      drivers/cpufreq/intel_pstate.c
10566
10567 INTEL QUADRATURE ENCODER PERIPHERAL DRIVER
10568 M:      Jarkko Nikula <jarkko.nikula@linux.intel.com>
10569 L:      linux-iio@vger.kernel.org
10570 F:      drivers/counter/intel-qep.c
10571
10572 INTEL SCU DRIVERS
10573 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
10574 S:      Maintained
10575 F:      arch/x86/include/asm/intel_scu_ipc.h
10576 F:      drivers/platform/x86/intel_scu_*
10577
10578 INTEL SDSI DRIVER
10579 M:      David E. Box <david.e.box@linux.intel.com>
10580 S:      Supported
10581 F:      drivers/platform/x86/intel/sdsi.c
10582 F:      tools/arch/x86/intel_sdsi/
10583 F:      tools/testing/selftests/drivers/sdsi/
10584
10585 INTEL SKYLAKE INT3472 ACPI DEVICE DRIVER
10586 M:      Daniel Scally <djrscally@gmail.com>
10587 S:      Maintained
10588 F:      drivers/platform/x86/intel/int3472/
10589
10590 INTEL SPEED SELECT TECHNOLOGY
10591 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
10592 L:      platform-driver-x86@vger.kernel.org
10593 S:      Maintained
10594 F:      drivers/platform/x86/intel/speed_select_if/
10595 F:      include/uapi/linux/isst_if.h
10596 F:      tools/power/x86/intel-speed-select/
10597
10598 INTEL STRATIX10 FIRMWARE DRIVERS
10599 M:      Dinh Nguyen <dinguyen@kernel.org>
10600 L:      linux-kernel@vger.kernel.org
10601 S:      Maintained
10602 F:      Documentation/ABI/testing/sysfs-devices-platform-stratix10-rsu
10603 F:      Documentation/devicetree/bindings/firmware/intel,stratix10-svc.txt
10604 F:      drivers/firmware/stratix10-rsu.c
10605 F:      drivers/firmware/stratix10-svc.c
10606 F:      include/linux/firmware/intel/stratix10-smc.h
10607 F:      include/linux/firmware/intel/stratix10-svc-client.h
10608 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
10609
10610 INTEL TELEMETRY DRIVER
10611 M:      Rajneesh Bhardwaj <irenic.rajneesh@gmail.com>
10612 M:      "David E. Box" <david.e.box@linux.intel.com>
10613 L:      platform-driver-x86@vger.kernel.org
10614 S:      Maintained
10615 F:      arch/x86/include/asm/intel_telemetry.h
10616 F:      drivers/platform/x86/intel/telemetry/
10617
10618 INTEL TPMI DRIVER
10619 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
10620 L:      platform-driver-x86@vger.kernel.org
10621 S:      Maintained
10622 F:      drivers/platform/x86/intel/tpmi.c
10623 F:      include/linux/intel_tpmi.h
10624
10625 INTEL UNCORE FREQUENCY CONTROL
10626 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
10627 L:      platform-driver-x86@vger.kernel.org
10628 S:      Maintained
10629 F:      Documentation/admin-guide/pm/intel_uncore_frequency_scaling.rst
10630 F:      drivers/platform/x86/intel/uncore-frequency/
10631
10632 INTEL VENDOR SPECIFIC EXTENDED CAPABILITIES DRIVER
10633 M:      David E. Box <david.e.box@linux.intel.com>
10634 S:      Supported
10635 F:      drivers/platform/x86/intel/vsec.*
10636
10637 INTEL VIRTUAL BUTTON DRIVER
10638 M:      AceLan Kao <acelan.kao@canonical.com>
10639 L:      platform-driver-x86@vger.kernel.org
10640 S:      Maintained
10641 F:      drivers/platform/x86/intel/vbtn.c
10642
10643 INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
10644 M:      Stanislaw Gruszka <stf_xl@wp.pl>
10645 L:      linux-wireless@vger.kernel.org
10646 S:      Supported
10647 F:      drivers/net/wireless/intel/iwlegacy/
10648
10649 INTEL WIRELESS WIFI LINK (iwlwifi)
10650 M:      Gregory Greenman <gregory.greenman@intel.com>
10651 L:      linux-wireless@vger.kernel.org
10652 S:      Supported
10653 W:      https://wireless.wiki.kernel.org/en/users/drivers/iwlwifi
10654 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
10655 F:      drivers/net/wireless/intel/iwlwifi/
10656
10657 INTEL WMI SLIM BOOTLOADER (SBL) FIRMWARE UPDATE DRIVER
10658 M:      Jithu Joseph <jithu.joseph@intel.com>
10659 R:      Maurice Ma <maurice.ma@intel.com>
10660 S:      Maintained
10661 W:      https://slimbootloader.github.io/security/firmware-update.html
10662 F:      drivers/platform/x86/intel/wmi/sbl-fw-update.c
10663
10664 INTEL WMI THUNDERBOLT FORCE POWER DRIVER
10665 L:      Dell.Client.Kernel@dell.com
10666 S:      Maintained
10667 F:      drivers/platform/x86/intel/wmi/thunderbolt.c
10668
10669 INTEL WWAN IOSM DRIVER
10670 M:      M Chetan Kumar <m.chetan.kumar@intel.com>
10671 M:      Intel Corporation <linuxwwan@intel.com>
10672 L:      netdev@vger.kernel.org
10673 S:      Maintained
10674 F:      drivers/net/wwan/iosm/
10675
10676 INTEL(R) TRACE HUB
10677 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
10678 S:      Supported
10679 F:      Documentation/trace/intel_th.rst
10680 F:      drivers/hwtracing/intel_th/
10681 F:      include/linux/intel_th.h
10682
10683 INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
10684 M:      Ning Sun <ning.sun@intel.com>
10685 L:      tboot-devel@lists.sourceforge.net
10686 S:      Supported
10687 W:      http://tboot.sourceforge.net
10688 T:      hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
10689 F:      Documentation/arch/x86/intel_txt.rst
10690 F:      arch/x86/kernel/tboot.c
10691 F:      include/linux/tboot.h
10692
10693 INTEL SGX
10694 M:      Jarkko Sakkinen <jarkko@kernel.org>
10695 R:      Dave Hansen <dave.hansen@linux.intel.com>
10696 L:      linux-sgx@vger.kernel.org
10697 S:      Supported
10698 Q:      https://patchwork.kernel.org/project/intel-sgx/list/
10699 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/sgx
10700 F:      Documentation/arch/x86/sgx.rst
10701 F:      arch/x86/entry/vdso/vsgx.S
10702 F:      arch/x86/include/asm/sgx.h
10703 F:      arch/x86/include/uapi/asm/sgx.h
10704 F:      arch/x86/kernel/cpu/sgx/*
10705 F:      tools/testing/selftests/sgx/*
10706 K:      \bSGX_
10707
10708 INTERCONNECT API
10709 M:      Georgi Djakov <djakov@kernel.org>
10710 L:      linux-pm@vger.kernel.org
10711 S:      Maintained
10712 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/djakov/icc.git
10713 F:      Documentation/devicetree/bindings/interconnect/
10714 F:      Documentation/driver-api/interconnect.rst
10715 F:      drivers/interconnect/
10716 F:      include/dt-bindings/interconnect/
10717 F:      include/linux/interconnect-provider.h
10718 F:      include/linux/interconnect.h
10719
10720 INTERRUPT COUNTER DRIVER
10721 M:      Oleksij Rempel <o.rempel@pengutronix.de>
10722 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
10723 L:      linux-iio@vger.kernel.org
10724 F:      Documentation/devicetree/bindings/counter/interrupt-counter.yaml
10725 F:      drivers/counter/interrupt-cnt.c
10726
10727 INTERSIL ISL7998X VIDEO DECODER DRIVER
10728 M:      Michael Tretter <m.tretter@pengutronix.de>
10729 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
10730 L:      linux-media@vger.kernel.org
10731 S:      Maintained
10732 F:      Documentation/devicetree/bindings/media/i2c/isil,isl79987.yaml
10733 F:      drivers/media/i2c/isl7998x.c
10734
10735 INVENSENSE ICM-426xx IMU DRIVER
10736 M:      Jean-Baptiste Maneyrol <jmaneyrol@invensense.com>
10737 L:      linux-iio@vger.kernel.org
10738 S:      Maintained
10739 W:      https://invensense.tdk.com/
10740 F:      Documentation/devicetree/bindings/iio/imu/invensense,icm42600.yaml
10741 F:      drivers/iio/imu/inv_icm42600/
10742
10743 INVENSENSE MPU-3050 GYROSCOPE DRIVER
10744 M:      Linus Walleij <linus.walleij@linaro.org>
10745 L:      linux-iio@vger.kernel.org
10746 S:      Maintained
10747 F:      Documentation/devicetree/bindings/iio/gyroscope/invensense,mpu3050.yaml
10748 F:      drivers/iio/gyro/mpu3050*
10749
10750 IOC3 ETHERNET DRIVER
10751 M:      Ralf Baechle <ralf@linux-mips.org>
10752 L:      linux-mips@vger.kernel.org
10753 S:      Maintained
10754 F:      drivers/net/ethernet/sgi/ioc3-eth.c
10755
10756 IOMAP FILESYSTEM LIBRARY
10757 M:      Christoph Hellwig <hch@infradead.org>
10758 M:      Darrick J. Wong <djwong@kernel.org>
10759 L:      linux-xfs@vger.kernel.org
10760 L:      linux-fsdevel@vger.kernel.org
10761 S:      Supported
10762 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
10763 F:      fs/iomap/
10764 F:      include/linux/iomap.h
10765
10766 IOMMU DMA-API LAYER
10767 M:      Robin Murphy <robin.murphy@arm.com>
10768 L:      iommu@lists.linux.dev
10769 S:      Maintained
10770 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
10771 F:      drivers/iommu/dma-iommu.c
10772 F:      drivers/iommu/dma-iommu.h
10773 F:      drivers/iommu/iova.c
10774 F:      include/linux/iova.h
10775
10776 IOMMUFD
10777 M:      Jason Gunthorpe <jgg@nvidia.com>
10778 M:      Kevin Tian <kevin.tian@intel.com>
10779 L:      iommu@lists.linux.dev
10780 S:      Maintained
10781 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jgg/iommufd.git
10782 F:      Documentation/userspace-api/iommufd.rst
10783 F:      drivers/iommu/iommufd/
10784 F:      include/linux/iommufd.h
10785 F:      include/uapi/linux/iommufd.h
10786 F:      tools/testing/selftests/iommu/
10787
10788 IOMMU SUBSYSTEM
10789 M:      Joerg Roedel <joro@8bytes.org>
10790 M:      Will Deacon <will@kernel.org>
10791 R:      Robin Murphy <robin.murphy@arm.com>
10792 L:      iommu@lists.linux.dev
10793 S:      Maintained
10794 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
10795 F:      Documentation/devicetree/bindings/iommu/
10796 F:      Documentation/userspace-api/iommu.rst
10797 F:      drivers/iommu/
10798 F:      include/linux/iommu.h
10799 F:      include/linux/iova.h
10800 F:      include/linux/of_iommu.h
10801 F:      include/uapi/linux/iommu.h
10802
10803 IOSYS-MAP HELPERS
10804 M:      Thomas Zimmermann <tzimmermann@suse.de>
10805 L:      dri-devel@lists.freedesktop.org
10806 S:      Maintained
10807 T:      git git://anongit.freedesktop.org/drm/drm-misc
10808 F:      include/linux/iosys-map.h
10809
10810 IO_URING
10811 M:      Jens Axboe <axboe@kernel.dk>
10812 R:      Pavel Begunkov <asml.silence@gmail.com>
10813 L:      io-uring@vger.kernel.org
10814 S:      Maintained
10815 T:      git git://git.kernel.dk/linux-block
10816 T:      git git://git.kernel.dk/liburing
10817 F:      io_uring/
10818 F:      include/linux/io_uring.h
10819 F:      include/linux/io_uring_types.h
10820 F:      include/trace/events/io_uring.h
10821 F:      include/uapi/linux/io_uring.h
10822 F:      tools/io_uring/
10823
10824 IPMI SUBSYSTEM
10825 M:      Corey Minyard <minyard@acm.org>
10826 L:      openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
10827 S:      Supported
10828 W:      http://openipmi.sourceforge.net/
10829 T:      git https://github.com/cminyard/linux-ipmi.git for-next
10830 F:      Documentation/driver-api/ipmi.rst
10831 F:      Documentation/devicetree/bindings/ipmi/
10832 F:      drivers/char/ipmi/
10833 F:      include/linux/ipmi*
10834 F:      include/uapi/linux/ipmi*
10835
10836 IPS SCSI RAID DRIVER
10837 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
10838 L:      linux-scsi@vger.kernel.org
10839 S:      Maintained
10840 W:      http://www.adaptec.com/
10841 F:      drivers/scsi/ips*
10842
10843 IPVS
10844 M:      Simon Horman <horms@verge.net.au>
10845 M:      Julian Anastasov <ja@ssi.bg>
10846 L:      netdev@vger.kernel.org
10847 L:      lvs-devel@vger.kernel.org
10848 S:      Maintained
10849 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs-next.git
10850 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs.git
10851 F:      Documentation/networking/ipvs-sysctl.rst
10852 F:      include/net/ip_vs.h
10853 F:      include/uapi/linux/ip_vs.h
10854 F:      net/netfilter/ipvs/
10855
10856 IPWIRELESS DRIVER
10857 M:      Jiri Kosina <jikos@kernel.org>
10858 M:      David Sterba <dsterba@suse.com>
10859 S:      Odd Fixes
10860 F:      drivers/tty/ipwireless/
10861
10862 IRON DEVICE AUDIO CODEC DRIVERS
10863 M:      Kiseok Jo <kiseok.jo@irondevice.com>
10864 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
10865 S:      Maintained
10866 F:      Documentation/devicetree/bindings/sound/irondevice,*
10867 F:      sound/soc/codecs/sma*
10868
10869 IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
10870 M:      Marc Zyngier <maz@kernel.org>
10871 S:      Maintained
10872 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
10873 F:      Documentation/core-api/irq/irq-domain.rst
10874 F:      include/linux/irqdomain.h
10875 F:      kernel/irq/irqdomain.c
10876 F:      kernel/irq/msi.c
10877
10878 IRQ SUBSYSTEM
10879 M:      Thomas Gleixner <tglx@linutronix.de>
10880 L:      linux-kernel@vger.kernel.org
10881 S:      Maintained
10882 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
10883 F:      kernel/irq/
10884 F:      include/linux/group_cpus.h
10885 F:      lib/group_cpus.c
10886
10887 IRQCHIP DRIVERS
10888 M:      Thomas Gleixner <tglx@linutronix.de>
10889 M:      Marc Zyngier <maz@kernel.org>
10890 L:      linux-kernel@vger.kernel.org
10891 S:      Maintained
10892 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
10893 F:      Documentation/devicetree/bindings/interrupt-controller/
10894 F:      drivers/irqchip/
10895
10896 ISA
10897 M:      William Breathitt Gray <william.gray@linaro.org>
10898 S:      Maintained
10899 F:      Documentation/driver-api/isa.rst
10900 F:      drivers/base/isa.c
10901 F:      include/linux/isa.h
10902
10903 ISA RADIO MODULE
10904 M:      Hans Verkuil <hverkuil@xs4all.nl>
10905 L:      linux-media@vger.kernel.org
10906 S:      Maintained
10907 W:      https://linuxtv.org
10908 T:      git git://linuxtv.org/media_tree.git
10909 F:      drivers/media/radio/radio-isa*
10910
10911 ISAPNP
10912 M:      Jaroslav Kysela <perex@perex.cz>
10913 S:      Maintained
10914 F:      Documentation/driver-api/isapnp.rst
10915 F:      drivers/pnp/isapnp/
10916 F:      include/linux/isapnp.h
10917
10918 ISCSI
10919 M:      Lee Duncan <lduncan@suse.com>
10920 M:      Chris Leech <cleech@redhat.com>
10921 M:      Mike Christie <michael.christie@oracle.com>
10922 L:      open-iscsi@googlegroups.com
10923 L:      linux-scsi@vger.kernel.org
10924 S:      Maintained
10925 W:      www.open-iscsi.com
10926 F:      drivers/scsi/*iscsi*
10927 F:      include/scsi/*iscsi*
10928
10929 iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
10930 M:      Peter Jones <pjones@redhat.com>
10931 M:      Konrad Rzeszutek Wilk <konrad@kernel.org>
10932 S:      Maintained
10933 F:      drivers/firmware/iscsi_ibft*
10934
10935 ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR
10936 M:      Sagi Grimberg <sagi@grimberg.me>
10937 M:      Max Gurtovoy <mgurtovoy@nvidia.com>
10938 L:      linux-rdma@vger.kernel.org
10939 S:      Supported
10940 W:      http://www.openfabrics.org
10941 W:      www.open-iscsi.org
10942 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
10943 F:      drivers/infiniband/ulp/iser/
10944
10945 ISCSI EXTENSIONS FOR RDMA (ISER) TARGET
10946 M:      Sagi Grimberg <sagi@grimberg.me>
10947 L:      linux-rdma@vger.kernel.org
10948 L:      target-devel@vger.kernel.org
10949 S:      Supported
10950 W:      http://www.linux-iscsi.org
10951 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
10952 F:      drivers/infiniband/ulp/isert
10953
10954 ISDN/CMTP OVER BLUETOOTH
10955 M:      Karsten Keil <isdn@linux-pingi.de>
10956 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
10957 L:      netdev@vger.kernel.org
10958 S:      Odd Fixes
10959 W:      http://www.isdn4linux.de
10960 F:      Documentation/isdn/
10961 F:      drivers/isdn/capi/
10962 F:      include/linux/isdn/
10963 F:      include/uapi/linux/isdn/
10964 F:      net/bluetooth/cmtp/
10965
10966 ISDN/mISDN SUBSYSTEM
10967 M:      Karsten Keil <isdn@linux-pingi.de>
10968 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
10969 L:      netdev@vger.kernel.org
10970 S:      Maintained
10971 W:      http://www.isdn4linux.de
10972 F:      drivers/isdn/Kconfig
10973 F:      drivers/isdn/Makefile
10974 F:      drivers/isdn/hardware/
10975 F:      drivers/isdn/mISDN/
10976
10977 ISOFS FILESYSTEM
10978 M:      Jan Kara <jack@suse.cz>
10979 L:      linux-fsdevel@vger.kernel.org
10980 S:      Maintained
10981 F:      Documentation/filesystems/isofs.rst
10982 F:      fs/isofs/
10983
10984 IT87 HARDWARE MONITORING DRIVER
10985 M:      Jean Delvare <jdelvare@suse.com>
10986 L:      linux-hwmon@vger.kernel.org
10987 S:      Maintained
10988 F:      Documentation/hwmon/it87.rst
10989 F:      drivers/hwmon/it87.c
10990
10991 IT913X MEDIA DRIVER
10992 M:      Antti Palosaari <crope@iki.fi>
10993 L:      linux-media@vger.kernel.org
10994 S:      Maintained
10995 W:      https://linuxtv.org
10996 W:      http://palosaari.fi/linux/
10997 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10998 T:      git git://linuxtv.org/anttip/media_tree.git
10999 F:      drivers/media/tuners/it913x*
11000
11001 ITE IT66121 HDMI BRIDGE DRIVER
11002 M:      Phong LE <ple@baylibre.com>
11003 M:      Neil Armstrong <neil.armstrong@linaro.org>
11004 S:      Maintained
11005 T:      git git://anongit.freedesktop.org/drm/drm-misc
11006 F:      Documentation/devicetree/bindings/display/bridge/ite,it66121.yaml
11007 F:      drivers/gpu/drm/bridge/ite-it66121.c
11008
11009 IVTV VIDEO4LINUX DRIVER
11010 M:      Andy Walls <awalls@md.metrocast.net>
11011 L:      linux-media@vger.kernel.org
11012 S:      Maintained
11013 W:      https://linuxtv.org
11014 T:      git git://linuxtv.org/media_tree.git
11015 F:      Documentation/admin-guide/media/ivtv*
11016 F:      drivers/media/pci/ivtv/
11017 F:      include/uapi/linux/ivtv*
11018
11019 IX2505V MEDIA DRIVER
11020 M:      Malcolm Priestley <tvboxspy@gmail.com>
11021 L:      linux-media@vger.kernel.org
11022 S:      Maintained
11023 W:      https://linuxtv.org
11024 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11025 F:      drivers/media/dvb-frontends/ix2505v*
11026
11027 JAILHOUSE HYPERVISOR INTERFACE
11028 M:      Jan Kiszka <jan.kiszka@siemens.com>
11029 L:      jailhouse-dev@googlegroups.com
11030 S:      Maintained
11031 F:      arch/x86/include/asm/jailhouse_para.h
11032 F:      arch/x86/kernel/jailhouse.c
11033
11034 JC42.4 TEMPERATURE SENSOR DRIVER
11035 M:      Guenter Roeck <linux@roeck-us.net>
11036 L:      linux-hwmon@vger.kernel.org
11037 S:      Maintained
11038 F:      Documentation/devicetree/bindings/hwmon/jedec,jc42.yaml
11039 F:      Documentation/hwmon/jc42.rst
11040 F:      drivers/hwmon/jc42.c
11041
11042 JFS FILESYSTEM
11043 M:      Dave Kleikamp <shaggy@kernel.org>
11044 L:      jfs-discussion@lists.sourceforge.net
11045 S:      Odd Fixes
11046 W:      http://jfs.sourceforge.net/
11047 T:      git https://github.com/kleikamp/linux-shaggy.git
11048 F:      Documentation/admin-guide/jfs.rst
11049 F:      fs/jfs/
11050
11051 JME NETWORK DRIVER
11052 M:      Guo-Fu Tseng <cooldavid@cooldavid.org>
11053 L:      netdev@vger.kernel.org
11054 S:      Maintained
11055 F:      drivers/net/ethernet/jme.*
11056
11057 JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
11058 M:      David Woodhouse <dwmw2@infradead.org>
11059 M:      Richard Weinberger <richard@nod.at>
11060 L:      linux-mtd@lists.infradead.org
11061 S:      Odd Fixes
11062 W:      http://www.linux-mtd.infradead.org/doc/jffs2.html
11063 T:      git git://git.infradead.org/ubifs-2.6.git
11064 F:      fs/jffs2/
11065 F:      include/uapi/linux/jffs2.h
11066
11067 JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
11068 M:      "Theodore Ts'o" <tytso@mit.edu>
11069 M:      Jan Kara <jack@suse.com>
11070 L:      linux-ext4@vger.kernel.org
11071 S:      Maintained
11072 F:      fs/jbd2/
11073 F:      include/linux/jbd2.h
11074
11075 JPU V4L2 MEM2MEM DRIVER FOR RENESAS
11076 M:      Mikhail Ulyanov <mikhail.ulyanov@cogentembedded.com>
11077 L:      linux-media@vger.kernel.org
11078 L:      linux-renesas-soc@vger.kernel.org
11079 S:      Maintained
11080 F:      drivers/media/platform/renesas/rcar_jpu.c
11081
11082 JSM Neo PCI based serial card
11083 L:      linux-serial@vger.kernel.org
11084 S:      Orphan
11085 F:      drivers/tty/serial/jsm/
11086
11087 K10TEMP HARDWARE MONITORING DRIVER
11088 M:      Clemens Ladisch <clemens@ladisch.de>
11089 L:      linux-hwmon@vger.kernel.org
11090 S:      Maintained
11091 F:      Documentation/hwmon/k10temp.rst
11092 F:      drivers/hwmon/k10temp.c
11093
11094 K8TEMP HARDWARE MONITORING DRIVER
11095 M:      Rudolf Marek <r.marek@assembler.cz>
11096 L:      linux-hwmon@vger.kernel.org
11097 S:      Maintained
11098 F:      Documentation/hwmon/k8temp.rst
11099 F:      drivers/hwmon/k8temp.c
11100
11101 KASAN
11102 M:      Andrey Ryabinin <ryabinin.a.a@gmail.com>
11103 R:      Alexander Potapenko <glider@google.com>
11104 R:      Andrey Konovalov <andreyknvl@gmail.com>
11105 R:      Dmitry Vyukov <dvyukov@google.com>
11106 R:      Vincenzo Frascino <vincenzo.frascino@arm.com>
11107 L:      kasan-dev@googlegroups.com
11108 S:      Maintained
11109 F:      Documentation/dev-tools/kasan.rst
11110 F:      arch/*/include/asm/*kasan.h
11111 F:      arch/*/mm/kasan_init*
11112 F:      include/linux/kasan*.h
11113 F:      lib/Kconfig.kasan
11114 F:      mm/kasan/
11115 F:      scripts/Makefile.kasan
11116
11117 KCONFIG
11118 M:      Masahiro Yamada <masahiroy@kernel.org>
11119 L:      linux-kbuild@vger.kernel.org
11120 S:      Maintained
11121 Q:      https://patchwork.kernel.org/project/linux-kbuild/list/
11122 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git kbuild
11123 F:      Documentation/kbuild/kconfig*
11124 F:      scripts/Kconfig.include
11125 F:      scripts/kconfig/
11126
11127 KCOV
11128 R:      Dmitry Vyukov <dvyukov@google.com>
11129 R:      Andrey Konovalov <andreyknvl@gmail.com>
11130 L:      kasan-dev@googlegroups.com
11131 S:      Maintained
11132 F:      Documentation/dev-tools/kcov.rst
11133 F:      include/linux/kcov.h
11134 F:      include/uapi/linux/kcov.h
11135 F:      kernel/kcov.c
11136 F:      scripts/Makefile.kcov
11137
11138 KCSAN
11139 M:      Marco Elver <elver@google.com>
11140 R:      Dmitry Vyukov <dvyukov@google.com>
11141 L:      kasan-dev@googlegroups.com
11142 S:      Maintained
11143 F:      Documentation/dev-tools/kcsan.rst
11144 F:      include/linux/kcsan*.h
11145 F:      kernel/kcsan/
11146 F:      lib/Kconfig.kcsan
11147 F:      scripts/Makefile.kcsan
11148
11149 KDUMP
11150 M:      Baoquan He <bhe@redhat.com>
11151 R:      Vivek Goyal <vgoyal@redhat.com>
11152 R:      Dave Young <dyoung@redhat.com>
11153 L:      kexec@lists.infradead.org
11154 S:      Maintained
11155 W:      http://lse.sourceforge.net/kdump/
11156 F:      Documentation/admin-guide/kdump/
11157 F:      fs/proc/vmcore.c
11158 F:      include/linux/crash_core.h
11159 F:      include/linux/crash_dump.h
11160 F:      include/uapi/linux/vmcore.h
11161 F:      kernel/crash_*.c
11162
11163 KEENE FM RADIO TRANSMITTER DRIVER
11164 M:      Hans Verkuil <hverkuil@xs4all.nl>
11165 L:      linux-media@vger.kernel.org
11166 S:      Maintained
11167 W:      https://linuxtv.org
11168 T:      git git://linuxtv.org/media_tree.git
11169 F:      drivers/media/radio/radio-keene*
11170
11171 KERNEL AUTOMOUNTER
11172 M:      Ian Kent <raven@themaw.net>
11173 L:      autofs@vger.kernel.org
11174 S:      Maintained
11175 F:      fs/autofs/
11176
11177 KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
11178 M:      Masahiro Yamada <masahiroy@kernel.org>
11179 R:      Nathan Chancellor <nathan@kernel.org>
11180 R:      Nick Desaulniers <ndesaulniers@google.com>
11181 R:      Nicolas Schier <nicolas@fjasle.eu>
11182 L:      linux-kbuild@vger.kernel.org
11183 S:      Maintained
11184 Q:      https://patchwork.kernel.org/project/linux-kbuild/list/
11185 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git
11186 F:      Documentation/kbuild/
11187 F:      Makefile
11188 F:      scripts/*vmlinux*
11189 F:      scripts/Kbuild*
11190 F:      scripts/Makefile*
11191 F:      scripts/basic/
11192 F:      scripts/dummy-tools/
11193 F:      scripts/mk*
11194 F:      scripts/mod/
11195 F:      scripts/package/
11196
11197 KERNEL HARDENING (not covered by other areas)
11198 M:      Kees Cook <keescook@chromium.org>
11199 L:      linux-hardening@vger.kernel.org
11200 S:      Supported
11201 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/hardening
11202 F:      Documentation/ABI/testing/sysfs-kernel-oops_count
11203 F:      Documentation/ABI/testing/sysfs-kernel-warn_count
11204 F:      include/linux/overflow.h
11205 F:      include/linux/randomize_kstack.h
11206 F:      mm/usercopy.c
11207 K:      \b(add|choose)_random_kstack_offset\b
11208 K:      \b__check_(object_size|heap_object)\b
11209
11210 KERNEL JANITORS
11211 L:      kernel-janitors@vger.kernel.org
11212 S:      Odd Fixes
11213 W:      http://kernelnewbies.org/KernelJanitors
11214
11215 KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
11216 M:      Chuck Lever <chuck.lever@oracle.com>
11217 M:      Jeff Layton <jlayton@kernel.org>
11218 L:      linux-nfs@vger.kernel.org
11219 S:      Supported
11220 W:      http://nfs.sourceforge.net/
11221 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/cel/linux.git
11222 F:      fs/exportfs/
11223 F:      fs/lockd/
11224 F:      fs/nfs_common/
11225 F:      fs/nfsd/
11226 F:      include/linux/lockd/
11227 F:      include/linux/sunrpc/
11228 F:      include/trace/events/rpcgss.h
11229 F:      include/trace/events/rpcrdma.h
11230 F:      include/trace/events/sunrpc.h
11231 F:      include/trace/misc/fs.h
11232 F:      include/trace/misc/nfs.h
11233 F:      include/trace/misc/sunrpc.h
11234 F:      include/uapi/linux/nfsd/
11235 F:      include/uapi/linux/sunrpc/
11236 F:      net/sunrpc/
11237 F:      Documentation/filesystems/nfs/
11238
11239 KERNEL REGRESSIONS
11240 M:      Thorsten Leemhuis <linux@leemhuis.info>
11241 L:      regressions@lists.linux.dev
11242 S:      Supported
11243 F:      Documentation/admin-guide/reporting-regressions.rst
11244 F:      Documentation/process/handling-regressions.rst
11245
11246 KERNEL SELFTEST FRAMEWORK
11247 M:      Shuah Khan <shuah@kernel.org>
11248 M:      Shuah Khan <skhan@linuxfoundation.org>
11249 L:      linux-kselftest@vger.kernel.org
11250 S:      Maintained
11251 Q:      https://patchwork.kernel.org/project/linux-kselftest/list/
11252 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest.git
11253 F:      Documentation/dev-tools/kselftest*
11254 F:      tools/testing/selftests/
11255
11256 KERNEL SMB3 SERVER (KSMBD)
11257 M:      Namjae Jeon <linkinjeon@kernel.org>
11258 M:      Steve French <sfrench@samba.org>
11259 R:      Sergey Senozhatsky <senozhatsky@chromium.org>
11260 R:      Tom Talpey <tom@talpey.com>
11261 L:      linux-cifs@vger.kernel.org
11262 S:      Maintained
11263 T:      git git://git.samba.org/ksmbd.git
11264 F:      Documentation/filesystems/cifs/ksmbd.rst
11265 F:      fs/ksmbd/
11266 F:      fs/smbfs_common/
11267
11268 KERNEL UNIT TESTING FRAMEWORK (KUnit)
11269 M:      Brendan Higgins <brendanhiggins@google.com>
11270 M:      David Gow <davidgow@google.com>
11271 L:      linux-kselftest@vger.kernel.org
11272 L:      kunit-dev@googlegroups.com
11273 S:      Maintained
11274 W:      https://google.github.io/kunit-docs/third_party/kernel/docs/
11275 F:      Documentation/dev-tools/kunit/
11276 F:      include/kunit/
11277 F:      lib/kunit/
11278 F:      tools/testing/kunit/
11279
11280 KERNEL USERMODE HELPER
11281 M:      Luis Chamberlain <mcgrof@kernel.org>
11282 L:      linux-kernel@vger.kernel.org
11283 S:      Maintained
11284 F:      include/linux/umh.h
11285 F:      kernel/umh.c
11286
11287 KERNEL VIRTUAL MACHINE (KVM)
11288 M:      Paolo Bonzini <pbonzini@redhat.com>
11289 L:      kvm@vger.kernel.org
11290 S:      Supported
11291 W:      http://www.linux-kvm.org
11292 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
11293 F:      Documentation/virt/kvm/
11294 F:      include/asm-generic/kvm*
11295 F:      include/kvm/iodev.h
11296 F:      include/linux/kvm*
11297 F:      include/trace/events/kvm.h
11298 F:      include/uapi/asm-generic/kvm*
11299 F:      include/uapi/linux/kvm*
11300 F:      tools/kvm/
11301 F:      tools/testing/selftests/kvm/
11302 F:      virt/kvm/*
11303
11304 KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64)
11305 M:      Marc Zyngier <maz@kernel.org>
11306 M:      Oliver Upton <oliver.upton@linux.dev>
11307 R:      James Morse <james.morse@arm.com>
11308 R:      Suzuki K Poulose <suzuki.poulose@arm.com>
11309 R:      Zenghui Yu <yuzenghui@huawei.com>
11310 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11311 L:      kvmarm@lists.linux.dev
11312 S:      Maintained
11313 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvmarm/kvmarm.git
11314 F:      arch/arm64/include/asm/kvm*
11315 F:      arch/arm64/include/uapi/asm/kvm*
11316 F:      arch/arm64/kvm/
11317 F:      include/kvm/arm_*
11318 F:      tools/testing/selftests/kvm/*/aarch64/
11319 F:      tools/testing/selftests/kvm/aarch64/
11320
11321 KERNEL VIRTUAL MACHINE FOR MIPS (KVM/mips)
11322 M:      Huacai Chen <chenhuacai@kernel.org>
11323 M:      Aleksandar Markovic <aleksandar.qemu.devel@gmail.com>
11324 L:      linux-mips@vger.kernel.org
11325 L:      kvm@vger.kernel.org
11326 S:      Maintained
11327 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
11328 F:      arch/mips/include/asm/kvm*
11329 F:      arch/mips/include/uapi/asm/kvm*
11330 F:      arch/mips/kvm/
11331
11332 KERNEL VIRTUAL MACHINE FOR POWERPC (KVM/powerpc)
11333 L:      linuxppc-dev@lists.ozlabs.org
11334 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git topic/ppc-kvm
11335 F:      arch/powerpc/include/asm/kvm*
11336 F:      arch/powerpc/include/uapi/asm/kvm*
11337 F:      arch/powerpc/kernel/kvm*
11338 F:      arch/powerpc/kvm/
11339
11340 KERNEL VIRTUAL MACHINE FOR RISC-V (KVM/riscv)
11341 M:      Anup Patel <anup@brainfault.org>
11342 R:      Atish Patra <atishp@atishpatra.org>
11343 L:      kvm@vger.kernel.org
11344 L:      kvm-riscv@lists.infradead.org
11345 L:      linux-riscv@lists.infradead.org
11346 S:      Maintained
11347 T:      git https://github.com/kvm-riscv/linux.git
11348 F:      arch/riscv/include/asm/kvm*
11349 F:      arch/riscv/include/uapi/asm/kvm*
11350 F:      arch/riscv/kvm/
11351 F:      tools/testing/selftests/kvm/*/riscv/
11352
11353 KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
11354 M:      Christian Borntraeger <borntraeger@linux.ibm.com>
11355 M:      Janosch Frank <frankja@linux.ibm.com>
11356 M:      Claudio Imbrenda <imbrenda@linux.ibm.com>
11357 R:      David Hildenbrand <david@redhat.com>
11358 L:      kvm@vger.kernel.org
11359 S:      Supported
11360 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvms390/linux.git
11361 F:      Documentation/virt/kvm/s390*
11362 F:      arch/s390/include/asm/gmap.h
11363 F:      arch/s390/include/asm/kvm*
11364 F:      arch/s390/include/uapi/asm/kvm*
11365 F:      arch/s390/include/uapi/asm/uvdevice.h
11366 F:      arch/s390/kernel/uv.c
11367 F:      arch/s390/kvm/
11368 F:      arch/s390/mm/gmap.c
11369 F:      drivers/s390/char/uvdevice.c
11370 F:      tools/testing/selftests/drivers/s390x/uvdevice/
11371 F:      tools/testing/selftests/kvm/*/s390x/
11372 F:      tools/testing/selftests/kvm/s390x/
11373
11374 KERNEL VIRTUAL MACHINE FOR X86 (KVM/x86)
11375 M:      Sean Christopherson <seanjc@google.com>
11376 M:      Paolo Bonzini <pbonzini@redhat.com>
11377 L:      kvm@vger.kernel.org
11378 S:      Supported
11379 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
11380 F:      arch/x86/include/asm/kvm*
11381 F:      arch/x86/include/asm/svm.h
11382 F:      arch/x86/include/asm/vmx*.h
11383 F:      arch/x86/include/uapi/asm/kvm*
11384 F:      arch/x86/include/uapi/asm/svm.h
11385 F:      arch/x86/include/uapi/asm/vmx.h
11386 F:      arch/x86/kvm/
11387 F:      arch/x86/kvm/*/
11388
11389 KVM PARAVIRT (KVM/paravirt)
11390 M:      Paolo Bonzini <pbonzini@redhat.com>
11391 R:      Wanpeng Li <wanpengli@tencent.com>
11392 R:      Vitaly Kuznetsov <vkuznets@redhat.com>
11393 L:      kvm@vger.kernel.org
11394 S:      Supported
11395 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
11396 F:      arch/x86/kernel/kvm.c
11397 F:      arch/x86/kernel/kvmclock.c
11398 F:      arch/x86/include/asm/pvclock-abi.h
11399 F:      include/linux/kvm_para.h
11400 F:      include/uapi/linux/kvm_para.h
11401 F:      include/uapi/asm-generic/kvm_para.h
11402 F:      include/asm-generic/kvm_para.h
11403 F:      arch/um/include/asm/kvm_para.h
11404 F:      arch/x86/include/asm/kvm_para.h
11405 F:      arch/x86/include/uapi/asm/kvm_para.h
11406
11407 KVM X86 HYPER-V (KVM/hyper-v)
11408 M:      Vitaly Kuznetsov <vkuznets@redhat.com>
11409 M:      Sean Christopherson <seanjc@google.com>
11410 M:      Paolo Bonzini <pbonzini@redhat.com>
11411 L:      kvm@vger.kernel.org
11412 S:      Supported
11413 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
11414 F:      arch/x86/kvm/hyperv.*
11415 F:      arch/x86/kvm/kvm_onhyperv.*
11416 F:      arch/x86/kvm/svm/hyperv.*
11417 F:      arch/x86/kvm/svm/svm_onhyperv.*
11418 F:      arch/x86/kvm/vmx/hyperv.*
11419
11420 KVM X86 Xen (KVM/Xen)
11421 M:      David Woodhouse <dwmw2@infradead.org>
11422 M:      Paul Durrant <paul@xen.org>
11423 M:      Sean Christopherson <seanjc@google.com>
11424 M:      Paolo Bonzini <pbonzini@redhat.com>
11425 L:      kvm@vger.kernel.org
11426 S:      Supported
11427 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
11428 F:      arch/x86/kvm/xen.*
11429
11430 KERNFS
11431 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
11432 M:      Tejun Heo <tj@kernel.org>
11433 S:      Supported
11434 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
11435 F:      fs/kernfs/
11436 F:      include/linux/kernfs.h
11437
11438 KEXEC
11439 M:      Eric Biederman <ebiederm@xmission.com>
11440 L:      kexec@lists.infradead.org
11441 S:      Maintained
11442 W:      http://kernel.org/pub/linux/utils/kernel/kexec/
11443 F:      include/linux/kexec.h
11444 F:      include/uapi/linux/kexec.h
11445 F:      kernel/kexec*
11446
11447 KEYS-ENCRYPTED
11448 M:      Mimi Zohar <zohar@linux.ibm.com>
11449 L:      linux-integrity@vger.kernel.org
11450 L:      keyrings@vger.kernel.org
11451 S:      Supported
11452 F:      Documentation/security/keys/trusted-encrypted.rst
11453 F:      include/keys/encrypted-type.h
11454 F:      security/keys/encrypted-keys/
11455
11456 KEYS-TRUSTED
11457 M:      James Bottomley <jejb@linux.ibm.com>
11458 M:      Jarkko Sakkinen <jarkko@kernel.org>
11459 M:      Mimi Zohar <zohar@linux.ibm.com>
11460 L:      linux-integrity@vger.kernel.org
11461 L:      keyrings@vger.kernel.org
11462 S:      Supported
11463 F:      Documentation/security/keys/trusted-encrypted.rst
11464 F:      include/keys/trusted-type.h
11465 F:      include/keys/trusted_tpm.h
11466 F:      security/keys/trusted-keys/
11467
11468 KEYS-TRUSTED-TEE
11469 M:      Sumit Garg <sumit.garg@linaro.org>
11470 L:      linux-integrity@vger.kernel.org
11471 L:      keyrings@vger.kernel.org
11472 S:      Supported
11473 F:      include/keys/trusted_tee.h
11474 F:      security/keys/trusted-keys/trusted_tee.c
11475
11476 KEYS-TRUSTED-CAAM
11477 M:      Ahmad Fatoum <a.fatoum@pengutronix.de>
11478 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
11479 L:      linux-integrity@vger.kernel.org
11480 L:      keyrings@vger.kernel.org
11481 S:      Maintained
11482 F:      include/keys/trusted_caam.h
11483 F:      security/keys/trusted-keys/trusted_caam.c
11484
11485 KEYS/KEYRINGS
11486 M:      David Howells <dhowells@redhat.com>
11487 M:      Jarkko Sakkinen <jarkko@kernel.org>
11488 L:      keyrings@vger.kernel.org
11489 S:      Maintained
11490 F:      Documentation/security/keys/core.rst
11491 F:      include/keys/
11492 F:      include/linux/key-type.h
11493 F:      include/linux/key.h
11494 F:      include/linux/keyctl.h
11495 F:      include/uapi/linux/keyctl.h
11496 F:      security/keys/
11497
11498 KEYS/KEYRINGS_INTEGRITY
11499 M:      Jarkko Sakkinen <jarkko@kernel.org>
11500 M:      Mimi Zohar <zohar@linux.ibm.com>
11501 L:      linux-integrity@vger.kernel.org
11502 L:      keyrings@vger.kernel.org
11503 S:      Supported
11504 F:      security/integrity/platform_certs
11505
11506 KFENCE
11507 M:      Alexander Potapenko <glider@google.com>
11508 M:      Marco Elver <elver@google.com>
11509 R:      Dmitry Vyukov <dvyukov@google.com>
11510 L:      kasan-dev@googlegroups.com
11511 S:      Maintained
11512 F:      Documentation/dev-tools/kfence.rst
11513 F:      arch/*/include/asm/kfence.h
11514 F:      include/linux/kfence.h
11515 F:      lib/Kconfig.kfence
11516 F:      mm/kfence/
11517
11518 KFIFO
11519 M:      Stefani Seibold <stefani@seibold.net>
11520 S:      Maintained
11521 F:      include/linux/kfifo.h
11522 F:      lib/kfifo.c
11523 F:      samples/kfifo/
11524
11525 KGDB / KDB /debug_core
11526 M:      Jason Wessel <jason.wessel@windriver.com>
11527 M:      Daniel Thompson <daniel.thompson@linaro.org>
11528 R:      Douglas Anderson <dianders@chromium.org>
11529 L:      kgdb-bugreport@lists.sourceforge.net
11530 S:      Maintained
11531 W:      http://kgdb.wiki.kernel.org/
11532 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jwessel/kgdb.git
11533 F:      Documentation/dev-tools/kgdb.rst
11534 F:      drivers/misc/kgdbts.c
11535 F:      drivers/tty/serial/kgdboc.c
11536 F:      include/linux/kdb.h
11537 F:      include/linux/kgdb.h
11538 F:      kernel/debug/
11539 F:      kernel/module/kdb.c
11540
11541 KHADAS MCU MFD DRIVER
11542 M:      Neil Armstrong <neil.armstrong@linaro.org>
11543 L:      linux-amlogic@lists.infradead.org
11544 S:      Maintained
11545 F:      Documentation/devicetree/bindings/mfd/khadas,mcu.yaml
11546 F:      drivers/mfd/khadas-mcu.c
11547 F:      include/linux/mfd/khadas-mcu.h
11548 F:      drivers/thermal/khadas_mcu_fan.c
11549
11550 KIONIX/ROHM KX022A ACCELEROMETER
11551 M:      Matti Vaittinen <mazziesaccount@gmail.com>
11552 L:      linux-iio@vger.kernel.org
11553 S:      Supported
11554 F:      drivers/iio/accel/kionix-kx022a*
11555
11556 KMEMLEAK
11557 M:      Catalin Marinas <catalin.marinas@arm.com>
11558 S:      Maintained
11559 F:      Documentation/dev-tools/kmemleak.rst
11560 F:      include/linux/kmemleak.h
11561 F:      mm/kmemleak.c
11562 F:      samples/kmemleak/kmemleak-test.c
11563
11564 KMOD KERNEL MODULE LOADER - USERMODE HELPER
11565 M:      Luis Chamberlain <mcgrof@kernel.org>
11566 L:      linux-kernel@vger.kernel.org
11567 L:      linux-modules@vger.kernel.org
11568 S:      Maintained
11569 F:      include/linux/kmod.h
11570 F:      kernel/kmod.c
11571 F:      lib/test_kmod.c
11572 F:      tools/testing/selftests/kmod/
11573
11574 KMSAN
11575 M:      Alexander Potapenko <glider@google.com>
11576 R:      Marco Elver <elver@google.com>
11577 R:      Dmitry Vyukov <dvyukov@google.com>
11578 L:      kasan-dev@googlegroups.com
11579 S:      Maintained
11580 F:      Documentation/dev-tools/kmsan.rst
11581 F:      arch/*/include/asm/kmsan.h
11582 F:      arch/*/mm/kmsan_*
11583 F:      include/linux/kmsan*.h
11584 F:      lib/Kconfig.kmsan
11585 F:      mm/kmsan/
11586 F:      scripts/Makefile.kmsan
11587
11588 KPROBES
11589 M:      Naveen N. Rao <naveen.n.rao@linux.ibm.com>
11590 M:      Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
11591 M:      "David S. Miller" <davem@davemloft.net>
11592 M:      Masami Hiramatsu <mhiramat@kernel.org>
11593 L:      linux-kernel@vger.kernel.org
11594 L:      linux-trace-kernel@vger.kernel.org
11595 Q:      https://patchwork.kernel.org/project/linux-trace-kernel/list/
11596 S:      Maintained
11597 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/trace/linux-trace.git
11598 F:      Documentation/trace/kprobes.rst
11599 F:      include/asm-generic/kprobes.h
11600 F:      include/linux/kprobes.h
11601 F:      kernel/kprobes.c
11602 F:      lib/test_kprobes.c
11603 F:      samples/kprobes
11604
11605 KS0108 LCD CONTROLLER DRIVER
11606 M:      Miguel Ojeda <ojeda@kernel.org>
11607 S:      Maintained
11608 F:      Documentation/admin-guide/auxdisplay/ks0108.rst
11609 F:      drivers/auxdisplay/ks0108.c
11610 F:      include/linux/ks0108.h
11611
11612 KTD253 BACKLIGHT DRIVER
11613 M:      Linus Walleij <linus.walleij@linaro.org>
11614 S:      Maintained
11615 F:      Documentation/devicetree/bindings/leds/backlight/kinetic,ktd253.yaml
11616 F:      drivers/video/backlight/ktd253-backlight.c
11617
11618 KTEST
11619 M:      Steven Rostedt <rostedt@goodmis.org>
11620 M:      John Hawley <warthog9@eaglescrag.net>
11621 S:      Maintained
11622 F:      tools/testing/ktest
11623
11624 KTZ8866 BACKLIGHT DRIVER
11625 M:      Jianhua Lu <lujianhua000@gmail.com>
11626 S:      Maintained
11627 F:      Documentation/devicetree/bindings/leds/backlight/kinetic,ktz8866.yaml
11628 F:      drivers/video/backlight/ktz8866.c
11629
11630 L3MDEV
11631 M:      David Ahern <dsahern@kernel.org>
11632 L:      netdev@vger.kernel.org
11633 S:      Maintained
11634 F:      include/net/l3mdev.h
11635 F:      net/l3mdev
11636
11637 LANDLOCK SECURITY MODULE
11638 M:      Mickaël Salaün <mic@digikod.net>
11639 L:      linux-security-module@vger.kernel.org
11640 S:      Supported
11641 W:      https://landlock.io
11642 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/mic/linux.git
11643 F:      Documentation/security/landlock.rst
11644 F:      Documentation/userspace-api/landlock.rst
11645 F:      include/uapi/linux/landlock.h
11646 F:      samples/landlock/
11647 F:      security/landlock/
11648 F:      tools/testing/selftests/landlock/
11649 K:      landlock
11650 K:      LANDLOCK
11651
11652 LANTIQ / INTEL Ethernet drivers
11653 M:      Hauke Mehrtens <hauke@hauke-m.de>
11654 L:      netdev@vger.kernel.org
11655 S:      Maintained
11656 F:      drivers/net/dsa/lantiq_gswip.c
11657 F:      drivers/net/dsa/lantiq_pce.h
11658 F:      drivers/net/ethernet/lantiq_xrx200.c
11659 F:      net/dsa/tag_gswip.c
11660
11661 LANTIQ MIPS ARCHITECTURE
11662 M:      John Crispin <john@phrozen.org>
11663 L:      linux-mips@vger.kernel.org
11664 S:      Maintained
11665 F:      arch/mips/lantiq
11666 F:      drivers/soc/lantiq
11667
11668 LASI 53c700 driver for PARISC
11669 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
11670 L:      linux-scsi@vger.kernel.org
11671 S:      Maintained
11672 F:      Documentation/scsi/53c700.rst
11673 F:      drivers/scsi/53c700*
11674
11675 LEAKING_ADDRESSES
11676 M:      Tobin C. Harding <me@tobin.cc>
11677 M:      Tycho Andersen <tycho@tycho.pizza>
11678 L:      linux-hardening@vger.kernel.org
11679 S:      Maintained
11680 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tobin/leaks.git
11681 F:      scripts/leaking_addresses.pl
11682
11683 LED SUBSYSTEM
11684 M:      Pavel Machek <pavel@ucw.cz>
11685 M:      Lee Jones <lee@kernel.org>
11686 L:      linux-leds@vger.kernel.org
11687 S:      Maintained
11688 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pavel/linux-leds.git
11689 F:      Documentation/devicetree/bindings/leds/
11690 F:      drivers/leds/
11691 F:      include/dt-bindings/leds/
11692 F:      include/linux/leds.h
11693
11694 LEGACY EEPROM DRIVER
11695 M:      Jean Delvare <jdelvare@suse.com>
11696 S:      Maintained
11697 F:      Documentation/misc-devices/eeprom.rst
11698 F:      drivers/misc/eeprom/eeprom.c
11699
11700 LEGO MINDSTORMS EV3
11701 R:      David Lechner <david@lechnology.com>
11702 S:      Maintained
11703 F:      Documentation/devicetree/bindings/power/supply/lego,ev3-battery.yaml
11704 F:      arch/arm/boot/dts/da850-lego-ev3.dts
11705 F:      drivers/power/supply/lego_ev3_battery.c
11706
11707 LEGO USB Tower driver
11708 M:      Juergen Stuber <starblue@users.sourceforge.net>
11709 L:      legousb-devel@lists.sourceforge.net
11710 S:      Maintained
11711 W:      http://legousb.sourceforge.net/
11712 F:      drivers/usb/misc/legousbtower.c
11713
11714 LETSKETCH HID TABLET DRIVER
11715 M:      Hans de Goede <hdegoede@redhat.com>
11716 L:      linux-input@vger.kernel.org
11717 S:      Maintained
11718 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
11719 F:      drivers/hid/hid-letsketch.c
11720
11721 LG LAPTOP EXTRAS
11722 M:      Matan Ziv-Av <matan@svgalib.org>
11723 L:      platform-driver-x86@vger.kernel.org
11724 S:      Maintained
11725 F:      Documentation/ABI/testing/sysfs-platform-lg-laptop
11726 F:      Documentation/admin-guide/laptops/lg-laptop.rst
11727 F:      drivers/platform/x86/lg-laptop.c
11728
11729 LG2160 MEDIA DRIVER
11730 M:      Michael Krufky <mkrufky@linuxtv.org>
11731 L:      linux-media@vger.kernel.org
11732 S:      Maintained
11733 W:      https://linuxtv.org
11734 W:      http://github.com/mkrufky
11735 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11736 T:      git git://linuxtv.org/mkrufky/tuners.git
11737 F:      drivers/media/dvb-frontends/lg2160.*
11738
11739 LGDT3305 MEDIA DRIVER
11740 M:      Michael Krufky <mkrufky@linuxtv.org>
11741 L:      linux-media@vger.kernel.org
11742 S:      Maintained
11743 W:      https://linuxtv.org
11744 W:      http://github.com/mkrufky
11745 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11746 T:      git git://linuxtv.org/mkrufky/tuners.git
11747 F:      drivers/media/dvb-frontends/lgdt3305.*
11748
11749 LIBATA PATA ARASAN COMPACT FLASH CONTROLLER
11750 M:      Viresh Kumar <vireshk@kernel.org>
11751 L:      linux-ide@vger.kernel.org
11752 S:      Maintained
11753 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
11754 F:      drivers/ata/pata_arasan_cf.c
11755 F:      include/linux/pata_arasan_cf_data.h
11756
11757 LIBATA PATA DRIVERS
11758 R:      Sergey Shtylyov <s.shtylyov@omp.ru>
11759 L:      linux-ide@vger.kernel.org
11760 F:      drivers/ata/ata_*.c
11761 F:      drivers/ata/pata_*.c
11762
11763 LIBATA PATA FARADAY FTIDE010 AND GEMINI SATA BRIDGE DRIVERS
11764 M:      Linus Walleij <linus.walleij@linaro.org>
11765 L:      linux-ide@vger.kernel.org
11766 S:      Maintained
11767 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
11768 F:      drivers/ata/pata_ftide010.c
11769 F:      drivers/ata/sata_gemini.c
11770 F:      drivers/ata/sata_gemini.h
11771
11772 LIBATA SATA AHCI PLATFORM devices support
11773 M:      Hans de Goede <hdegoede@redhat.com>
11774 M:      Jens Axboe <axboe@kernel.dk>
11775 L:      linux-ide@vger.kernel.org
11776 S:      Maintained
11777 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
11778 F:      drivers/ata/ahci_platform.c
11779 F:      drivers/ata/libahci_platform.c
11780 F:      include/linux/ahci_platform.h
11781
11782 LIBATA SATA AHCI SYNOPSYS DWC CONTROLLER DRIVER
11783 M:      Serge Semin <fancer.lancer@gmail.com>
11784 L:      linux-ide@vger.kernel.org
11785 S:      Maintained
11786 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dlemoal/libata.git
11787 F:      Documentation/devicetree/bindings/ata/baikal,bt1-ahci.yaml
11788 F:      Documentation/devicetree/bindings/ata/snps,dwc-ahci.yaml
11789 F:      drivers/ata/ahci_dwc.c
11790
11791 LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER
11792 M:      Mikael Pettersson <mikpelinux@gmail.com>
11793 L:      linux-ide@vger.kernel.org
11794 S:      Maintained
11795 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
11796 F:      drivers/ata/sata_promise.*
11797
11798 LIBATA SUBSYSTEM (Serial and Parallel ATA drivers)
11799 M:      Damien Le Moal <dlemoal@kernel.org>
11800 L:      linux-ide@vger.kernel.org
11801 S:      Maintained
11802 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dlemoal/libata.git
11803 F:      Documentation/ABI/testing/sysfs-ata
11804 F:      Documentation/devicetree/bindings/ata/
11805 F:      drivers/ata/
11806 F:      include/linux/ata.h
11807 F:      include/linux/libata.h
11808
11809 LIBNVDIMM BTT: BLOCK TRANSLATION TABLE
11810 M:      Vishal Verma <vishal.l.verma@intel.com>
11811 M:      Dan Williams <dan.j.williams@intel.com>
11812 M:      Dave Jiang <dave.jiang@intel.com>
11813 L:      nvdimm@lists.linux.dev
11814 S:      Supported
11815 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
11816 P:      Documentation/nvdimm/maintainer-entry-profile.rst
11817 F:      drivers/nvdimm/btt*
11818
11819 LIBNVDIMM PMEM: PERSISTENT MEMORY DRIVER
11820 M:      Dan Williams <dan.j.williams@intel.com>
11821 M:      Vishal Verma <vishal.l.verma@intel.com>
11822 M:      Dave Jiang <dave.jiang@intel.com>
11823 L:      nvdimm@lists.linux.dev
11824 S:      Supported
11825 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
11826 P:      Documentation/nvdimm/maintainer-entry-profile.rst
11827 F:      drivers/nvdimm/pmem*
11828
11829 LIBNVDIMM: DEVICETREE BINDINGS
11830 M:      Oliver O'Halloran <oohall@gmail.com>
11831 L:      nvdimm@lists.linux.dev
11832 S:      Supported
11833 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
11834 F:      Documentation/devicetree/bindings/pmem/pmem-region.txt
11835 F:      drivers/nvdimm/of_pmem.c
11836
11837 LIBNVDIMM: NON-VOLATILE MEMORY DEVICE SUBSYSTEM
11838 M:      Dan Williams <dan.j.williams@intel.com>
11839 M:      Vishal Verma <vishal.l.verma@intel.com>
11840 M:      Dave Jiang <dave.jiang@intel.com>
11841 M:      Ira Weiny <ira.weiny@intel.com>
11842 L:      nvdimm@lists.linux.dev
11843 S:      Supported
11844 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
11845 P:      Documentation/nvdimm/maintainer-entry-profile.rst
11846 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nvdimm/nvdimm.git
11847 F:      drivers/acpi/nfit/*
11848 F:      drivers/nvdimm/*
11849 F:      include/linux/libnvdimm.h
11850 F:      include/linux/nd.h
11851 F:      include/uapi/linux/ndctl.h
11852 F:      tools/testing/nvdimm/
11853
11854 LICENSES and SPDX stuff
11855 M:      Thomas Gleixner <tglx@linutronix.de>
11856 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
11857 L:      linux-spdx@vger.kernel.org
11858 S:      Maintained
11859 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/spdx.git
11860 F:      COPYING
11861 F:      Documentation/process/license-rules.rst
11862 F:      LICENSES/
11863 F:      scripts/spdxcheck-test.sh
11864 F:      scripts/spdxcheck.py
11865 F:      scripts/spdxexclude
11866
11867 LINEAR RANGES HELPERS
11868 M:      Mark Brown <broonie@kernel.org>
11869 R:      Matti Vaittinen <mazziesaccount@gmail.com>
11870 F:      lib/linear_ranges.c
11871 F:      lib/test_linear_ranges.c
11872 F:      include/linux/linear_range.h
11873
11874 LINUX FOR POWER MACINTOSH
11875 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
11876 L:      linuxppc-dev@lists.ozlabs.org
11877 S:      Odd Fixes
11878 F:      arch/powerpc/platforms/powermac/
11879 F:      drivers/macintosh/
11880
11881 LINUX FOR POWERPC (32-BIT AND 64-BIT)
11882 M:      Michael Ellerman <mpe@ellerman.id.au>
11883 R:      Nicholas Piggin <npiggin@gmail.com>
11884 R:      Christophe Leroy <christophe.leroy@csgroup.eu>
11885 L:      linuxppc-dev@lists.ozlabs.org
11886 S:      Supported
11887 W:      https://github.com/linuxppc/wiki/wiki
11888 Q:      http://patchwork.ozlabs.org/project/linuxppc-dev/list/
11889 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git
11890 F:      Documentation/ABI/stable/sysfs-firmware-opal-*
11891 F:      Documentation/devicetree/bindings/i2c/i2c-opal.txt
11892 F:      Documentation/devicetree/bindings/powerpc/
11893 F:      Documentation/devicetree/bindings/rtc/rtc-opal.txt
11894 F:      Documentation/powerpc/
11895 F:      arch/powerpc/
11896 F:      drivers/*/*/*pasemi*
11897 F:      drivers/*/*pasemi*
11898 F:      drivers/char/tpm/tpm_ibmvtpm*
11899 F:      drivers/crypto/nx/
11900 F:      drivers/crypto/vmx/
11901 F:      drivers/i2c/busses/i2c-opal.c
11902 F:      drivers/net/ethernet/ibm/ibmveth.*
11903 F:      drivers/net/ethernet/ibm/ibmvnic.*
11904 F:      drivers/pci/hotplug/pnv_php.c
11905 F:      drivers/pci/hotplug/rpa*
11906 F:      drivers/rtc/rtc-opal.c
11907 F:      drivers/scsi/ibmvscsi/
11908 F:      drivers/tty/hvc/hvc_opal.c
11909 F:      drivers/watchdog/wdrtas.c
11910 F:      tools/testing/selftests/powerpc
11911 N:      /pmac
11912 N:      powermac
11913 N:      powernv
11914 N:      [^a-z0-9]ps3
11915 N:      pseries
11916
11917 LINUX FOR POWERPC EMBEDDED MPC5XXX
11918 M:      Anatolij Gustschin <agust@denx.de>
11919 L:      linuxppc-dev@lists.ozlabs.org
11920 S:      Odd Fixes
11921 F:      arch/powerpc/platforms/512x/
11922 F:      arch/powerpc/platforms/52xx/
11923
11924 LINUX FOR POWERPC EMBEDDED PPC4XX
11925 L:      linuxppc-dev@lists.ozlabs.org
11926 S:      Orphan
11927 F:      arch/powerpc/platforms/40x/
11928 F:      arch/powerpc/platforms/44x/
11929
11930 LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
11931 M:      Scott Wood <oss@buserror.net>
11932 L:      linuxppc-dev@lists.ozlabs.org
11933 S:      Odd fixes
11934 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git
11935 F:      Documentation/devicetree/bindings/powerpc/fsl/
11936 F:      arch/powerpc/platforms/83xx/
11937 F:      arch/powerpc/platforms/85xx/
11938
11939 LINUX FOR POWERPC EMBEDDED PPC8XX
11940 M:      Christophe Leroy <christophe.leroy@csgroup.eu>
11941 L:      linuxppc-dev@lists.ozlabs.org
11942 S:      Maintained
11943 F:      arch/powerpc/platforms/8xx/
11944
11945 LINUX KERNEL DUMP TEST MODULE (LKDTM)
11946 M:      Kees Cook <keescook@chromium.org>
11947 S:      Maintained
11948 F:      drivers/misc/lkdtm/*
11949 F:      tools/testing/selftests/lkdtm/*
11950
11951 LINUX KERNEL MEMORY CONSISTENCY MODEL (LKMM)
11952 M:      Alan Stern <stern@rowland.harvard.edu>
11953 M:      Andrea Parri <parri.andrea@gmail.com>
11954 M:      Will Deacon <will@kernel.org>
11955 M:      Peter Zijlstra <peterz@infradead.org>
11956 M:      Boqun Feng <boqun.feng@gmail.com>
11957 M:      Nicholas Piggin <npiggin@gmail.com>
11958 M:      David Howells <dhowells@redhat.com>
11959 M:      Jade Alglave <j.alglave@ucl.ac.uk>
11960 M:      Luc Maranget <luc.maranget@inria.fr>
11961 M:      "Paul E. McKenney" <paulmck@kernel.org>
11962 R:      Akira Yokosawa <akiyks@gmail.com>
11963 R:      Daniel Lustig <dlustig@nvidia.com>
11964 R:      Joel Fernandes <joel@joelfernandes.org>
11965 L:      linux-kernel@vger.kernel.org
11966 L:      linux-arch@vger.kernel.org
11967 S:      Supported
11968 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
11969 F:      Documentation/atomic_bitops.txt
11970 F:      Documentation/atomic_t.txt
11971 F:      Documentation/core-api/refcount-vs-atomic.rst
11972 F:      Documentation/litmus-tests/
11973 F:      Documentation/memory-barriers.txt
11974 F:      tools/memory-model/
11975
11976 LIS3LV02D ACCELEROMETER DRIVER
11977 M:      Eric Piel <eric.piel@tremplin-utc.net>
11978 S:      Maintained
11979 F:      Documentation/misc-devices/lis3lv02d.rst
11980 F:      drivers/misc/lis3lv02d/
11981 F:      drivers/platform/x86/hp/hp_accel.c
11982
11983 LIST KUNIT TEST
11984 M:      David Gow <davidgow@google.com>
11985 L:      linux-kselftest@vger.kernel.org
11986 L:      kunit-dev@googlegroups.com
11987 S:      Maintained
11988 F:      lib/list-test.c
11989
11990 LITEX PLATFORM
11991 M:      Karol Gugala <kgugala@antmicro.com>
11992 M:      Mateusz Holenko <mholenko@antmicro.com>
11993 M:      Gabriel Somlo <gsomlo@gmail.com>
11994 M:      Joel Stanley <joel@jms.id.au>
11995 S:      Maintained
11996 F:      Documentation/devicetree/bindings/*/litex,*.yaml
11997 F:      arch/openrisc/boot/dts/or1klitex.dts
11998 F:      include/linux/litex.h
11999 F:      drivers/tty/serial/liteuart.c
12000 F:      drivers/soc/litex/*
12001 F:      drivers/net/ethernet/litex/*
12002 F:      drivers/mmc/host/litex_mmc.c
12003 N:      litex
12004
12005 LIVE PATCHING
12006 M:      Josh Poimboeuf <jpoimboe@kernel.org>
12007 M:      Jiri Kosina <jikos@kernel.org>
12008 M:      Miroslav Benes <mbenes@suse.cz>
12009 M:      Petr Mladek <pmladek@suse.com>
12010 R:      Joe Lawrence <joe.lawrence@redhat.com>
12011 L:      live-patching@vger.kernel.org
12012 S:      Maintained
12013 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/livepatching/livepatching.git
12014 F:      Documentation/ABI/testing/sysfs-kernel-livepatch
12015 F:      Documentation/livepatch/
12016 F:      arch/powerpc/include/asm/livepatch.h
12017 F:      include/linux/livepatch.h
12018 F:      kernel/livepatch/
12019 F:      kernel/module/livepatch.c
12020 F:      lib/livepatch/
12021 F:      samples/livepatch/
12022 F:      tools/testing/selftests/livepatch/
12023
12024 LLC (802.2)
12025 L:      netdev@vger.kernel.org
12026 S:      Odd fixes
12027 F:      include/linux/llc.h
12028 F:      include/net/llc*
12029 F:      include/uapi/linux/llc.h
12030 F:      net/llc/
12031
12032 LM73 HARDWARE MONITOR DRIVER
12033 M:      Guillaume Ligneul <guillaume.ligneul@gmail.com>
12034 L:      linux-hwmon@vger.kernel.org
12035 S:      Maintained
12036 F:      drivers/hwmon/lm73.c
12037
12038 LM78 HARDWARE MONITOR DRIVER
12039 M:      Jean Delvare <jdelvare@suse.com>
12040 L:      linux-hwmon@vger.kernel.org
12041 S:      Maintained
12042 F:      Documentation/hwmon/lm78.rst
12043 F:      drivers/hwmon/lm78.c
12044
12045 LM83 HARDWARE MONITOR DRIVER
12046 M:      Jean Delvare <jdelvare@suse.com>
12047 L:      linux-hwmon@vger.kernel.org
12048 S:      Maintained
12049 F:      Documentation/hwmon/lm83.rst
12050 F:      drivers/hwmon/lm83.c
12051
12052 LM90 HARDWARE MONITOR DRIVER
12053 M:      Jean Delvare <jdelvare@suse.com>
12054 L:      linux-hwmon@vger.kernel.org
12055 S:      Maintained
12056 F:      Documentation/devicetree/bindings/hwmon/national,lm90.yaml
12057 F:      Documentation/hwmon/lm90.rst
12058 F:      drivers/hwmon/lm90.c
12059 F:      include/dt-bindings/thermal/lm90.h
12060
12061 LM95234 HARDWARE MONITOR DRIVER
12062 M:      Guenter Roeck <linux@roeck-us.net>
12063 L:      linux-hwmon@vger.kernel.org
12064 S:      Maintained
12065 F:      Documentation/hwmon/lm95234.rst
12066 F:      drivers/hwmon/lm95234.c
12067
12068 LME2510 MEDIA DRIVER
12069 M:      Malcolm Priestley <tvboxspy@gmail.com>
12070 L:      linux-media@vger.kernel.org
12071 S:      Maintained
12072 W:      https://linuxtv.org
12073 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12074 F:      drivers/media/usb/dvb-usb-v2/lmedm04*
12075
12076 LOADPIN SECURITY MODULE
12077 M:      Kees Cook <keescook@chromium.org>
12078 S:      Supported
12079 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/hardening
12080 F:      Documentation/admin-guide/LSM/LoadPin.rst
12081 F:      security/loadpin/
12082
12083 LOCKING PRIMITIVES
12084 M:      Peter Zijlstra <peterz@infradead.org>
12085 M:      Ingo Molnar <mingo@redhat.com>
12086 M:      Will Deacon <will@kernel.org>
12087 R:      Waiman Long <longman@redhat.com>
12088 R:      Boqun Feng <boqun.feng@gmail.com> (LOCKDEP)
12089 L:      linux-kernel@vger.kernel.org
12090 S:      Maintained
12091 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
12092 F:      Documentation/locking/
12093 F:      arch/*/include/asm/spinlock*.h
12094 F:      include/linux/lockdep.h
12095 F:      include/linux/mutex*.h
12096 F:      include/linux/rwlock*.h
12097 F:      include/linux/rwsem*.h
12098 F:      include/linux/seqlock.h
12099 F:      include/linux/spinlock*.h
12100 F:      kernel/locking/
12101 F:      lib/locking*.[ch]
12102 X:      kernel/locking/locktorture.c
12103
12104 LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
12105 M:      "Richard Russon (FlatCap)" <ldm@flatcap.org>
12106 L:      linux-ntfs-dev@lists.sourceforge.net
12107 S:      Maintained
12108 W:      http://www.linux-ntfs.org/content/view/19/37/
12109 F:      Documentation/admin-guide/ldm.rst
12110 F:      block/partitions/ldm.*
12111
12112 LOGITECH HID GAMING KEYBOARDS
12113 M:      Hans de Goede <hdegoede@redhat.com>
12114 L:      linux-input@vger.kernel.org
12115 S:      Maintained
12116 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
12117 F:      drivers/hid/hid-lg-g15.c
12118
12119 LONTIUM LT8912B MIPI TO HDMI BRIDGE
12120 M:      Adrien Grassein <adrien.grassein@gmail.com>
12121 S:      Maintained
12122 F:      Documentation/devicetree/bindings/display/bridge/lontium,lt8912b.yaml
12123 F:      drivers/gpu/drm/bridge/lontium-lt8912b.c
12124
12125 LOONGARCH
12126 M:      Huacai Chen <chenhuacai@kernel.org>
12127 R:      WANG Xuerui <kernel@xen0n.name>
12128 L:      loongarch@lists.linux.dev
12129 S:      Maintained
12130 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chenhuacai/linux-loongson.git
12131 F:      arch/loongarch/
12132 F:      drivers/*/*loongarch*
12133 F:      Documentation/loongarch/
12134 F:      Documentation/translations/zh_CN/loongarch/
12135
12136 LOONGSON LS2X I2C DRIVER
12137 M:      Binbin Zhou <zhoubinbin@loongson.cn>
12138 L:      linux-i2c@vger.kernel.org
12139 S:      Maintained
12140 F:      Documentation/devicetree/bindings/i2c/loongson,ls2x-i2c.yaml
12141 F:      drivers/i2c/busses/i2c-ls2x.c
12142
12143 LOONGSON-2 SOC SERIES GUTS DRIVER
12144 M:      Yinbo Zhu <zhuyinbo@loongson.cn>
12145 L:      loongarch@lists.linux.dev
12146 S:      Maintained
12147 F:      Documentation/devicetree/bindings/hwinfo/loongson,ls2k-chipid.yaml
12148 F:      drivers/soc/loongson/loongson2_guts.c
12149
12150 LOONGSON-2 SOC SERIES PINCTRL DRIVER
12151 M:      zhanghongchen <zhanghongchen@loongson.cn>
12152 M:      Yinbo Zhu <zhuyinbo@loongson.cn>
12153 L:      linux-gpio@vger.kernel.org
12154 S:      Maintained
12155 F:      Documentation/devicetree/bindings/pinctrl/loongson,ls2k-pinctrl.yaml
12156 F:      drivers/pinctrl/pinctrl-loongson2.c
12157
12158 LOONGSON GPIO DRIVER
12159 M:      Yinbo Zhu <zhuyinbo@loongson.cn>
12160 L:      linux-gpio@vger.kernel.org
12161 S:      Maintained
12162 F:      Documentation/devicetree/bindings/gpio/loongson,ls-gpio.yaml
12163 F:      drivers/gpio/gpio-loongson-64bit.c
12164
12165 LOONGSON-2 SOC SERIES CLOCK DRIVER
12166 M:      Yinbo Zhu <zhuyinbo@loongson.cn>
12167 L:      linux-clk@vger.kernel.org
12168 S:      Maintained
12169 F:      Documentation/devicetree/bindings/clock/loongson,ls2k-clk.yaml
12170 F:      include/dt-bindings/clock/loongson,ls2k-clk.h
12171
12172 LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
12173 M:      Sathya Prakash <sathya.prakash@broadcom.com>
12174 M:      Sreekanth Reddy <sreekanth.reddy@broadcom.com>
12175 M:      Suganath Prabu Subramani <suganath-prabu.subramani@broadcom.com>
12176 L:      MPT-FusionLinux.pdl@broadcom.com
12177 L:      linux-scsi@vger.kernel.org
12178 S:      Supported
12179 W:      http://www.avagotech.com/support/
12180 F:      drivers/message/fusion/
12181 F:      drivers/scsi/mpt3sas/
12182
12183 LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
12184 M:      Matthew Wilcox <willy@infradead.org>
12185 L:      linux-scsi@vger.kernel.org
12186 S:      Maintained
12187 F:      drivers/scsi/sym53c8xx_2/
12188
12189 LTC1660 DAC DRIVER
12190 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
12191 L:      linux-iio@vger.kernel.org
12192 S:      Maintained
12193 F:      Documentation/devicetree/bindings/iio/dac/lltc,ltc1660.yaml
12194 F:      drivers/iio/dac/ltc1660.c
12195
12196 LTC2688 IIO DAC DRIVER
12197 M:      Nuno Sá <nuno.sa@analog.com>
12198 L:      linux-iio@vger.kernel.org
12199 S:      Supported
12200 W:      https://ez.analog.com/linux-software-drivers
12201 F:      Documentation/ABI/testing/sysfs-bus-iio-dac-ltc2688
12202 F:      Documentation/devicetree/bindings/iio/dac/adi,ltc2688.yaml
12203 F:      drivers/iio/dac/ltc2688.c
12204
12205 LTC2947 HARDWARE MONITOR DRIVER
12206 M:      Nuno Sá <nuno.sa@analog.com>
12207 L:      linux-hwmon@vger.kernel.org
12208 S:      Supported
12209 W:      https://ez.analog.com/linux-software-drivers
12210 F:      Documentation/devicetree/bindings/hwmon/adi,ltc2947.yaml
12211 F:      drivers/hwmon/ltc2947-core.c
12212 F:      drivers/hwmon/ltc2947-i2c.c
12213 F:      drivers/hwmon/ltc2947-spi.c
12214 F:      drivers/hwmon/ltc2947.h
12215
12216 LTC2983 IIO TEMPERATURE DRIVER
12217 M:      Nuno Sá <nuno.sa@analog.com>
12218 L:      linux-iio@vger.kernel.org
12219 S:      Supported
12220 W:      https://ez.analog.com/linux-software-drivers
12221 F:      Documentation/devicetree/bindings/iio/temperature/adi,ltc2983.yaml
12222 F:      drivers/iio/temperature/ltc2983.c
12223
12224 LTC4261 HARDWARE MONITOR DRIVER
12225 M:      Guenter Roeck <linux@roeck-us.net>
12226 L:      linux-hwmon@vger.kernel.org
12227 S:      Maintained
12228 F:      Documentation/hwmon/ltc4261.rst
12229 F:      drivers/hwmon/ltc4261.c
12230
12231 LTC4306 I2C MULTIPLEXER DRIVER
12232 M:      Michael Hennerich <michael.hennerich@analog.com>
12233 L:      linux-i2c@vger.kernel.org
12234 S:      Supported
12235 W:      https://ez.analog.com/linux-software-drivers
12236 F:      Documentation/devicetree/bindings/i2c/i2c-mux-ltc4306.txt
12237 F:      drivers/i2c/muxes/i2c-mux-ltc4306.c
12238
12239 LTP (Linux Test Project)
12240 M:      Mike Frysinger <vapier@gentoo.org>
12241 M:      Cyril Hrubis <chrubis@suse.cz>
12242 M:      Wanlong Gao <wanlong.gao@gmail.com>
12243 M:      Jan Stancek <jstancek@redhat.com>
12244 M:      Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com>
12245 M:      Alexey Kodanev <alexey.kodanev@oracle.com>
12246 L:      ltp@lists.linux.it (subscribers-only)
12247 S:      Maintained
12248 W:      http://linux-test-project.github.io/
12249 T:      git https://github.com/linux-test-project/ltp.git
12250
12251 LYNX 28G SERDES PHY DRIVER
12252 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
12253 L:      netdev@vger.kernel.org
12254 S:      Supported
12255 F:      Documentation/devicetree/bindings/phy/fsl,lynx-28g.yaml
12256 F:      drivers/phy/freescale/phy-fsl-lynx-28g.c
12257
12258 LYNX PCS MODULE
12259 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
12260 L:      netdev@vger.kernel.org
12261 S:      Supported
12262 F:      drivers/net/pcs/pcs-lynx.c
12263 F:      include/linux/pcs-lynx.h
12264
12265 M68K ARCHITECTURE
12266 M:      Geert Uytterhoeven <geert@linux-m68k.org>
12267 L:      linux-m68k@lists.linux-m68k.org
12268 S:      Maintained
12269 W:      http://www.linux-m68k.org/
12270 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
12271 F:      arch/m68k/
12272 F:      drivers/zorro/
12273
12274 M68K ON APPLE MACINTOSH
12275 M:      Joshua Thompson <funaho@jurai.org>
12276 L:      linux-m68k@lists.linux-m68k.org
12277 S:      Maintained
12278 W:      http://www.mac.linux-m68k.org/
12279 F:      arch/m68k/mac/
12280 F:      drivers/macintosh/adb-iop.c
12281 F:      drivers/macintosh/via-macii.c
12282
12283 M68K ON HP9000/300
12284 M:      Philip Blundell <philb@gnu.org>
12285 S:      Maintained
12286 W:      http://www.tazenda.demon.co.uk/phil/linux-hp
12287 F:      arch/m68k/hp300/
12288
12289 M88DS3103 MEDIA DRIVER
12290 M:      Antti Palosaari <crope@iki.fi>
12291 L:      linux-media@vger.kernel.org
12292 S:      Maintained
12293 W:      https://linuxtv.org
12294 W:      http://palosaari.fi/linux/
12295 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12296 T:      git git://linuxtv.org/anttip/media_tree.git
12297 F:      drivers/media/dvb-frontends/m88ds3103*
12298
12299 M88RS2000 MEDIA DRIVER
12300 M:      Malcolm Priestley <tvboxspy@gmail.com>
12301 L:      linux-media@vger.kernel.org
12302 S:      Maintained
12303 W:      https://linuxtv.org
12304 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12305 F:      drivers/media/dvb-frontends/m88rs2000*
12306
12307 MA901 MASTERKIT USB FM RADIO DRIVER
12308 M:      Alexey Klimov <klimov.linux@gmail.com>
12309 L:      linux-media@vger.kernel.org
12310 S:      Maintained
12311 T:      git git://linuxtv.org/media_tree.git
12312 F:      drivers/media/radio/radio-ma901.c
12313
12314 MAC80211
12315 M:      Johannes Berg <johannes@sipsolutions.net>
12316 L:      linux-wireless@vger.kernel.org
12317 S:      Maintained
12318 W:      https://wireless.wiki.kernel.org/
12319 Q:      https://patchwork.kernel.org/project/linux-wireless/list/
12320 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless.git
12321 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless-next.git
12322 F:      Documentation/networking/mac80211-injection.rst
12323 F:      Documentation/networking/mac80211_hwsim/mac80211_hwsim.rst
12324 F:      drivers/net/wireless/virtual/mac80211_hwsim.[ch]
12325 F:      include/net/mac80211.h
12326 F:      net/mac80211/
12327
12328 MAILBOX API
12329 M:      Jassi Brar <jassisinghbrar@gmail.com>
12330 L:      linux-kernel@vger.kernel.org
12331 S:      Maintained
12332 F:      drivers/mailbox/
12333 F:      include/linux/mailbox_client.h
12334 F:      include/linux/mailbox_controller.h
12335 F:      include/dt-bindings/mailbox/
12336 F:      Documentation/devicetree/bindings/mailbox/
12337
12338 MAILBOX ARM MHUv2
12339 M:      Viresh Kumar <viresh.kumar@linaro.org>
12340 M:      Tushar Khandelwal <Tushar.Khandelwal@arm.com>
12341 L:      linux-kernel@vger.kernel.org
12342 S:      Maintained
12343 F:      drivers/mailbox/arm_mhuv2.c
12344 F:      include/linux/mailbox/arm_mhuv2_message.h
12345 F:      Documentation/devicetree/bindings/mailbox/arm,mhuv2.yaml
12346
12347 MANAGEMENT COMPONENT TRANSPORT PROTOCOL (MCTP)
12348 M:      Jeremy Kerr <jk@codeconstruct.com.au>
12349 M:      Matt Johnston <matt@codeconstruct.com.au>
12350 L:      netdev@vger.kernel.org
12351 S:      Maintained
12352 F:      Documentation/networking/mctp.rst
12353 F:      drivers/net/mctp/
12354 F:      include/net/mctp.h
12355 F:      include/net/mctpdevice.h
12356 F:      include/net/netns/mctp.h
12357 F:      net/mctp/
12358
12359 MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
12360 M:      Michael Kerrisk <mtk.manpages@gmail.com>
12361 L:      linux-man@vger.kernel.org
12362 S:      Maintained
12363 W:      http://www.kernel.org/doc/man-pages
12364
12365 MAPLE TREE
12366 M:      Liam R. Howlett <Liam.Howlett@oracle.com>
12367 L:      linux-mm@kvack.org
12368 S:      Supported
12369 F:      Documentation/core-api/maple_tree.rst
12370 F:      include/linux/maple_tree.h
12371 F:      include/trace/events/maple_tree.h
12372 F:      lib/maple_tree.c
12373 F:      lib/test_maple_tree.c
12374 F:      tools/testing/radix-tree/linux/maple_tree.h
12375 F:      tools/testing/radix-tree/maple.c
12376
12377 MARDUK (CREATOR CI40) DEVICE TREE SUPPORT
12378 M:      Rahul Bedarkar <rahulbedarkar89@gmail.com>
12379 L:      linux-mips@vger.kernel.org
12380 S:      Maintained
12381 F:      arch/mips/boot/dts/img/pistachio*
12382
12383 MARVELL 88E6XXX ETHERNET SWITCH FABRIC DRIVER
12384 M:      Andrew Lunn <andrew@lunn.ch>
12385 L:      netdev@vger.kernel.org
12386 S:      Maintained
12387 F:      Documentation/devicetree/bindings/net/dsa/marvell.txt
12388 F:      Documentation/networking/devlink/mv88e6xxx.rst
12389 F:      drivers/net/dsa/mv88e6xxx/
12390 F:      include/linux/dsa/mv88e6xxx.h
12391 F:      include/linux/platform_data/mv88e6xxx.h
12392
12393 MARVELL ARMADA 3700 PHY DRIVERS
12394 M:      Miquel Raynal <miquel.raynal@bootlin.com>
12395 S:      Maintained
12396 F:      Documentation/devicetree/bindings/phy/phy-mvebu-comphy.txt
12397 F:      Documentation/devicetree/bindings/phy/marvell,armada-3700-utmi-phy.yaml
12398 F:      drivers/phy/marvell/phy-mvebu-a3700-comphy.c
12399 F:      drivers/phy/marvell/phy-mvebu-a3700-utmi.c
12400
12401 MARVELL ARMADA 3700 SERIAL DRIVER
12402 M:      Pali Rohár <pali@kernel.org>
12403 S:      Maintained
12404 F:      Documentation/devicetree/bindings/clock/marvell,armada-3700-uart-clock.yaml
12405 F:      Documentation/devicetree/bindings/serial/mvebu-uart.txt
12406 F:      drivers/tty/serial/mvebu-uart.c
12407
12408 MARVELL ARMADA DRM SUPPORT
12409 M:      Russell King <linux@armlinux.org.uk>
12410 S:      Maintained
12411 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-devel
12412 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-fixes
12413 F:      Documentation/devicetree/bindings/display/armada/
12414 F:      drivers/gpu/drm/armada/
12415 F:      include/uapi/drm/armada_drm.h
12416
12417 MARVELL CRYPTO DRIVER
12418 M:      Boris Brezillon <bbrezillon@kernel.org>
12419 M:      Arnaud Ebalard <arno@natisbad.org>
12420 M:      Srujana Challa <schalla@marvell.com>
12421 L:      linux-crypto@vger.kernel.org
12422 S:      Maintained
12423 F:      drivers/crypto/marvell/
12424 F:      include/linux/soc/marvell/octeontx2/
12425
12426 MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
12427 M:      Mirko Lindner <mlindner@marvell.com>
12428 M:      Stephen Hemminger <stephen@networkplumber.org>
12429 L:      netdev@vger.kernel.org
12430 S:      Maintained
12431 F:      drivers/net/ethernet/marvell/sk*
12432
12433 MARVELL LIBERTAS WIRELESS DRIVER
12434 L:      libertas-dev@lists.infradead.org
12435 S:      Orphan
12436 F:      drivers/net/wireless/marvell/libertas/
12437
12438 MARVELL MACCHIATOBIN SUPPORT
12439 M:      Russell King <linux@armlinux.org.uk>
12440 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12441 S:      Maintained
12442 F:      arch/arm64/boot/dts/marvell/armada-8040-mcbin.dts
12443
12444 MARVELL MV643XX ETHERNET DRIVER
12445 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
12446 L:      netdev@vger.kernel.org
12447 S:      Maintained
12448 F:      drivers/net/ethernet/marvell/mv643xx_eth.*
12449 F:      include/linux/mv643xx.h
12450
12451 MARVELL MV88X3310 PHY DRIVER
12452 M:      Russell King <linux@armlinux.org.uk>
12453 M:      Marek Behún <kabel@kernel.org>
12454 L:      netdev@vger.kernel.org
12455 S:      Maintained
12456 F:      drivers/net/phy/marvell10g.c
12457
12458 MARVELL MVEBU THERMAL DRIVER
12459 M:      Miquel Raynal <miquel.raynal@bootlin.com>
12460 S:      Maintained
12461 F:      drivers/thermal/armada_thermal.c
12462
12463 MARVELL MVNETA ETHERNET DRIVER
12464 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
12465 L:      netdev@vger.kernel.org
12466 S:      Maintained
12467 F:      drivers/net/ethernet/marvell/mvneta.*
12468
12469 MARVELL MVPP2 ETHERNET DRIVER
12470 M:      Marcin Wojtas <mw@semihalf.com>
12471 M:      Russell King <linux@armlinux.org.uk>
12472 L:      netdev@vger.kernel.org
12473 S:      Maintained
12474 F:      Documentation/devicetree/bindings/net/marvell,pp2.yaml
12475 F:      drivers/net/ethernet/marvell/mvpp2/
12476
12477 MARVELL MWIFIEX WIRELESS DRIVER
12478 M:      Amitkumar Karwar <amitkarwar@gmail.com>
12479 M:      Ganapathi Bhat <ganapathi017@gmail.com>
12480 M:      Sharvari Harisangam <sharvari.harisangam@nxp.com>
12481 M:      Xinming Hu <huxinming820@gmail.com>
12482 L:      linux-wireless@vger.kernel.org
12483 S:      Maintained
12484 F:      drivers/net/wireless/marvell/mwifiex/
12485
12486 MARVELL MWL8K WIRELESS DRIVER
12487 M:      Lennert Buytenhek <buytenh@wantstofly.org>
12488 L:      linux-wireless@vger.kernel.org
12489 S:      Odd Fixes
12490 F:      drivers/net/wireless/marvell/mwl8k.c
12491
12492 MARVELL NAND CONTROLLER DRIVER
12493 M:      Miquel Raynal <miquel.raynal@bootlin.com>
12494 L:      linux-mtd@lists.infradead.org
12495 S:      Maintained
12496 F:      Documentation/devicetree/bindings/mtd/marvell-nand.txt
12497 F:      drivers/mtd/nand/raw/marvell_nand.c
12498
12499 MARVELL OCTEONTX2 PHYSICAL FUNCTION DRIVER
12500 M:      Sunil Goutham <sgoutham@marvell.com>
12501 M:      Geetha sowjanya <gakula@marvell.com>
12502 M:      Subbaraya Sundeep <sbhatta@marvell.com>
12503 M:      hariprasad <hkelam@marvell.com>
12504 L:      netdev@vger.kernel.org
12505 S:      Supported
12506 F:      drivers/net/ethernet/marvell/octeontx2/nic/
12507 F:      include/linux/soc/marvell/octeontx2/
12508
12509 MARVELL OCTEONTX2 RVU ADMIN FUNCTION DRIVER
12510 M:      Sunil Goutham <sgoutham@marvell.com>
12511 M:      Linu Cherian <lcherian@marvell.com>
12512 M:      Geetha sowjanya <gakula@marvell.com>
12513 M:      Jerin Jacob <jerinj@marvell.com>
12514 M:      hariprasad <hkelam@marvell.com>
12515 M:      Subbaraya Sundeep <sbhatta@marvell.com>
12516 L:      netdev@vger.kernel.org
12517 S:      Supported
12518 F:      Documentation/networking/device_drivers/ethernet/marvell/octeontx2.rst
12519 F:      drivers/net/ethernet/marvell/octeontx2/af/
12520
12521 MARVELL PRESTERA ETHERNET SWITCH DRIVER
12522 M:      Taras Chornyi <taras.chornyi@plvision.eu>
12523 S:      Supported
12524 W:      https://github.com/Marvell-switching/switchdev-prestera
12525 F:      drivers/net/ethernet/marvell/prestera/
12526
12527 MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
12528 M:      Nicolas Pitre <nico@fluxnic.net>
12529 S:      Odd Fixes
12530 F:      drivers/mmc/host/mvsdio.*
12531
12532 MARVELL USB MDIO CONTROLLER DRIVER
12533 M:      Tobias Waldekranz <tobias@waldekranz.com>
12534 L:      netdev@vger.kernel.org
12535 S:      Maintained
12536 F:      Documentation/devicetree/bindings/net/marvell,mvusb.yaml
12537 F:      drivers/net/mdio/mdio-mvusb.c
12538
12539 MARVELL XENON MMC/SD/SDIO HOST CONTROLLER DRIVER
12540 M:      Hu Ziji <huziji@marvell.com>
12541 L:      linux-mmc@vger.kernel.org
12542 S:      Supported
12543 F:      Documentation/devicetree/bindings/mmc/marvell,xenon-sdhci.yaml
12544 F:      drivers/mmc/host/sdhci-xenon*
12545
12546 MARVELL OCTEON ENDPOINT DRIVER
12547 M:      Veerasenareddy Burru <vburru@marvell.com>
12548 M:      Abhijit Ayarekar <aayarekar@marvell.com>
12549 L:      netdev@vger.kernel.org
12550 S:      Supported
12551 F:      drivers/net/ethernet/marvell/octeon_ep
12552
12553 MATROX FRAMEBUFFER DRIVER
12554 L:      linux-fbdev@vger.kernel.org
12555 S:      Orphan
12556 F:      drivers/video/fbdev/matrox/matroxfb_*
12557 F:      include/uapi/linux/matroxfb.h
12558
12559 MAX15301 DRIVER
12560 M:      Daniel Nilsson <daniel.nilsson@flex.com>
12561 L:      linux-hwmon@vger.kernel.org
12562 S:      Maintained
12563 F:      Documentation/hwmon/max15301.rst
12564 F:      drivers/hwmon/pmbus/max15301.c
12565
12566 MAX16065 HARDWARE MONITOR DRIVER
12567 M:      Guenter Roeck <linux@roeck-us.net>
12568 L:      linux-hwmon@vger.kernel.org
12569 S:      Maintained
12570 F:      Documentation/hwmon/max16065.rst
12571 F:      drivers/hwmon/max16065.c
12572
12573 MAX2175 SDR TUNER DRIVER
12574 M:      Ramesh Shanmugasundaram <rashanmu@gmail.com>
12575 L:      linux-media@vger.kernel.org
12576 S:      Maintained
12577 T:      git git://linuxtv.org/media_tree.git
12578 F:      Documentation/devicetree/bindings/media/i2c/max2175.txt
12579 F:      Documentation/userspace-api/media/drivers/max2175.rst
12580 F:      drivers/media/i2c/max2175*
12581 F:      include/uapi/linux/max2175.h
12582
12583 MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
12584 L:      linux-hwmon@vger.kernel.org
12585 S:      Orphan
12586 F:      Documentation/hwmon/max6650.rst
12587 F:      drivers/hwmon/max6650.c
12588
12589 MAX6697 HARDWARE MONITOR DRIVER
12590 M:      Guenter Roeck <linux@roeck-us.net>
12591 L:      linux-hwmon@vger.kernel.org
12592 S:      Maintained
12593 F:      Documentation/devicetree/bindings/hwmon/max6697.txt
12594 F:      Documentation/hwmon/max6697.rst
12595 F:      drivers/hwmon/max6697.c
12596 F:      include/linux/platform_data/max6697.h
12597
12598 MAX9286 QUAD GMSL DESERIALIZER DRIVER
12599 M:      Jacopo Mondi <jacopo+renesas@jmondi.org>
12600 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
12601 M:      Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
12602 M:      Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
12603 L:      linux-media@vger.kernel.org
12604 S:      Maintained
12605 F:      Documentation/devicetree/bindings/media/i2c/maxim,max9286.yaml
12606 F:      drivers/media/i2c/max9286.c
12607
12608 MAX96712 QUAD GMSL2 DESERIALIZER DRIVER
12609 M:      Niklas Söderlund <niklas.soderlund@ragnatech.se>
12610 L:      linux-media@vger.kernel.org
12611 S:      Maintained
12612 F:      drivers/staging/media/max96712/max96712.c
12613
12614 MAX9860 MONO AUDIO VOICE CODEC DRIVER
12615 M:      Peter Rosin <peda@axentia.se>
12616 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12617 S:      Maintained
12618 F:      Documentation/devicetree/bindings/sound/max9860.txt
12619 F:      sound/soc/codecs/max9860.*
12620
12621 MAXBOTIX ULTRASONIC RANGER IIO DRIVER
12622 M:      Andreas Klinger <ak@it-klinger.de>
12623 L:      linux-iio@vger.kernel.org
12624 S:      Maintained
12625 F:      Documentation/devicetree/bindings/iio/proximity/maxbotix,mb1232.yaml
12626 F:      drivers/iio/proximity/mb1232.c
12627
12628 MAXIM MAX11205 DRIVER
12629 M:      Ramona Bolboaca <ramona.bolboaca@analog.com>
12630 L:      linux-iio@vger.kernel.org
12631 S:      Supported
12632 W:      https://ez.analog.com/linux-software-drivers
12633 F:      Documentation/devicetree/bindings/iio/adc/maxim,max11205.yaml
12634 F:      drivers/iio/adc/max11205.c
12635
12636 MAXIM MAX17040 FAMILY FUEL GAUGE DRIVERS
12637 R:      Iskren Chernev <iskren.chernev@gmail.com>
12638 R:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
12639 R:      Marek Szyprowski <m.szyprowski@samsung.com>
12640 R:      Matheus Castello <matheus@castello.eng.br>
12641 L:      linux-pm@vger.kernel.org
12642 S:      Maintained
12643 F:      Documentation/devicetree/bindings/power/supply/maxim,max17040.yaml
12644 F:      drivers/power/supply/max17040_battery.c
12645
12646 MAXIM MAX17042 FAMILY FUEL GAUGE DRIVERS
12647 R:      Hans de Goede <hdegoede@redhat.com>
12648 R:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
12649 R:      Marek Szyprowski <m.szyprowski@samsung.com>
12650 R:      Sebastian Krzyszkowiak <sebastian.krzyszkowiak@puri.sm>
12651 R:      Purism Kernel Team <kernel@puri.sm>
12652 L:      linux-pm@vger.kernel.org
12653 S:      Maintained
12654 F:      Documentation/devicetree/bindings/power/supply/maxim,max17042.yaml
12655 F:      drivers/power/supply/max17042_battery.c
12656
12657 MAXIM MAX20086 CAMERA POWER PROTECTOR DRIVER
12658 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12659 L:      linux-kernel@vger.kernel.org
12660 S:      Maintained
12661 F:      Documentation/devicetree/bindings/regulator/maxim,max20086.yaml
12662 F:      drivers/regulator/max20086-regulator.c
12663
12664 MAXIM MAX30208 TEMPERATURE SENSOR DRIVER
12665 M:      Rajat Khandelwal <rajat.khandelwal@linux.intel.com>
12666 L:      linux-iio@vger.kernel.org
12667 S:      Maintained
12668 F:      drivers/iio/temperature/max30208.c
12669
12670 MAXIM MAX77650 PMIC MFD DRIVER
12671 M:      Bartosz Golaszewski <brgl@bgdev.pl>
12672 L:      linux-kernel@vger.kernel.org
12673 S:      Maintained
12674 F:      Documentation/devicetree/bindings/*/*max77650.yaml
12675 F:      Documentation/devicetree/bindings/*/max77650*.yaml
12676 F:      drivers/gpio/gpio-max77650.c
12677 F:      drivers/input/misc/max77650-onkey.c
12678 F:      drivers/leds/leds-max77650.c
12679 F:      drivers/mfd/max77650.c
12680 F:      drivers/power/supply/max77650-charger.c
12681 F:      drivers/regulator/max77650-regulator.c
12682 F:      include/linux/mfd/max77650.h
12683
12684 MAXIM MAX77714 PMIC MFD DRIVER
12685 M:      Luca Ceresoli <luca@lucaceresoli.net>
12686 S:      Maintained
12687 F:      Documentation/devicetree/bindings/mfd/maxim,max77714.yaml
12688 F:      drivers/mfd/max77714.c
12689 F:      include/linux/mfd/max77714.h
12690
12691 MAXIM MAX77802 PMIC REGULATOR DEVICE DRIVER
12692 M:      Javier Martinez Canillas <javier@dowhile0.org>
12693 L:      linux-kernel@vger.kernel.org
12694 S:      Supported
12695 F:      Documentation/devicetree/bindings/*/*max77802.yaml
12696 F:      drivers/regulator/max77802-regulator.c
12697 F:      include/dt-bindings/*/*max77802.h
12698
12699 MAXIM MAX77976 BATTERY CHARGER
12700 M:      Luca Ceresoli <luca@lucaceresoli.net>
12701 S:      Supported
12702 F:      Documentation/devicetree/bindings/power/supply/maxim,max77976.yaml
12703 F:      drivers/power/supply/max77976_charger.c
12704
12705 MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS
12706 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
12707 L:      linux-pm@vger.kernel.org
12708 S:      Supported
12709 B:      mailto:linux-samsung-soc@vger.kernel.org
12710 F:      Documentation/devicetree/bindings/power/supply/maxim,max14577.yaml
12711 F:      Documentation/devicetree/bindings/power/supply/maxim,max77693.yaml
12712 F:      drivers/power/supply/max14577_charger.c
12713 F:      drivers/power/supply/max77693_charger.c
12714
12715 MAXIM PMIC AND MUIC DRIVERS FOR EXYNOS BASED BOARDS
12716 M:      Chanwoo Choi <cw00.choi@samsung.com>
12717 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
12718 L:      linux-kernel@vger.kernel.org
12719 S:      Supported
12720 B:      mailto:linux-samsung-soc@vger.kernel.org
12721 F:      Documentation/devicetree/bindings/*/maxim,max14577.yaml
12722 F:      Documentation/devicetree/bindings/*/maxim,max77686.yaml
12723 F:      Documentation/devicetree/bindings/*/maxim,max77693.yaml
12724 F:      Documentation/devicetree/bindings/*/maxim,max77843.yaml
12725 F:      Documentation/devicetree/bindings/clock/maxim,max77686.txt
12726 F:      drivers/*/*max77843.c
12727 F:      drivers/*/max14577*.c
12728 F:      drivers/*/max77686*.c
12729 F:      drivers/*/max77693*.c
12730 F:      drivers/clk/clk-max77686.c
12731 F:      drivers/extcon/extcon-max14577.c
12732 F:      drivers/extcon/extcon-max77693.c
12733 F:      drivers/rtc/rtc-max77686.c
12734 F:      include/linux/mfd/max14577*.h
12735 F:      include/linux/mfd/max77686*.h
12736 F:      include/linux/mfd/max77693*.h
12737
12738 MAXIRADIO FM RADIO RECEIVER DRIVER
12739 M:      Hans Verkuil <hverkuil@xs4all.nl>
12740 L:      linux-media@vger.kernel.org
12741 S:      Maintained
12742 W:      https://linuxtv.org
12743 T:      git git://linuxtv.org/media_tree.git
12744 F:      drivers/media/radio/radio-maxiradio*
12745
12746 MAXLINEAR ETHERNET PHY DRIVER
12747 M:      Xu Liang <lxu@maxlinear.com>
12748 L:      netdev@vger.kernel.org
12749 S:      Supported
12750 F:      drivers/net/phy/mxl-gpy.c
12751
12752 MCBA MICROCHIP CAN BUS ANALYZER TOOL DRIVER
12753 R:      Yasushi SHOJI <yashi@spacecubics.com>
12754 L:      linux-can@vger.kernel.org
12755 S:      Maintained
12756 F:      drivers/net/can/usb/mcba_usb.c
12757
12758 MCAN MMIO DEVICE DRIVER
12759 M:      Chandrasekar Ramakrishnan <rcsekar@samsung.com>
12760 L:      linux-can@vger.kernel.org
12761 S:      Maintained
12762 F:      Documentation/devicetree/bindings/net/can/bosch,m_can.yaml
12763 F:      drivers/net/can/m_can/m_can.c
12764 F:      drivers/net/can/m_can/m_can.h
12765 F:      drivers/net/can/m_can/m_can_platform.c
12766
12767 MCP2221A MICROCHIP USB-HID TO I2C BRIDGE DRIVER
12768 M:      Rishi Gupta <gupt21@gmail.com>
12769 L:      linux-i2c@vger.kernel.org
12770 L:      linux-input@vger.kernel.org
12771 S:      Maintained
12772 F:      drivers/hid/hid-mcp2221.c
12773
12774 MCP251XFD SPI-CAN NETWORK DRIVER
12775 M:      Marc Kleine-Budde <mkl@pengutronix.de>
12776 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
12777 R:      Thomas Kopp <thomas.kopp@microchip.com>
12778 L:      linux-can@vger.kernel.org
12779 S:      Maintained
12780 F:      Documentation/devicetree/bindings/net/can/microchip,mcp251xfd.yaml
12781 F:      drivers/net/can/spi/mcp251xfd/
12782
12783 MCP4018 AND MCP4531 MICROCHIP DIGITAL POTENTIOMETER DRIVERS
12784 M:      Peter Rosin <peda@axentia.se>
12785 L:      linux-iio@vger.kernel.org
12786 S:      Maintained
12787 F:      Documentation/ABI/testing/sysfs-bus-iio-potentiometer-mcp4531
12788 F:      drivers/iio/potentiometer/mcp4018.c
12789 F:      drivers/iio/potentiometer/mcp4531.c
12790
12791 MCR20A IEEE-802.15.4 RADIO DRIVER
12792 M:      Stefan Schmidt <stefan@datenfreihafen.org>
12793 L:      linux-wpan@vger.kernel.org
12794 S:      Odd Fixes
12795 W:      https://github.com/xueliu/mcr20a-linux
12796 F:      Documentation/devicetree/bindings/net/ieee802154/mcr20a.txt
12797 F:      drivers/net/ieee802154/mcr20a.c
12798 F:      drivers/net/ieee802154/mcr20a.h
12799
12800 MEASUREMENT COMPUTING CIO-DAC IIO DRIVER
12801 M:      William Breathitt Gray <william.gray@linaro.org>
12802 L:      linux-iio@vger.kernel.org
12803 S:      Maintained
12804 F:      drivers/iio/dac/cio-dac.c
12805
12806 MEDIA CONTROLLER FRAMEWORK
12807 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
12808 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12809 L:      linux-media@vger.kernel.org
12810 S:      Supported
12811 W:      https://www.linuxtv.org
12812 T:      git git://linuxtv.org/media_tree.git
12813 F:      drivers/media/mc/
12814 F:      include/media/media-*.h
12815 F:      include/uapi/linux/media.h
12816
12817 MEDIA DRIVER FOR FREESCALE IMX PXP
12818 M:      Philipp Zabel <p.zabel@pengutronix.de>
12819 L:      linux-media@vger.kernel.org
12820 S:      Maintained
12821 T:      git git://linuxtv.org/media_tree.git
12822 F:      drivers/media/platform/nxp/imx-pxp.[ch]
12823
12824 MEDIA DRIVERS FOR ASCOT2E
12825 M:      Sergey Kozlov <serjk@netup.ru>
12826 M:      Abylay Ospan <aospan@netup.ru>
12827 L:      linux-media@vger.kernel.org
12828 S:      Supported
12829 W:      https://linuxtv.org
12830 W:      http://netup.tv/
12831 T:      git git://linuxtv.org/media_tree.git
12832 F:      drivers/media/dvb-frontends/ascot2e*
12833
12834 MEDIA DRIVERS FOR CXD2099AR CI CONTROLLERS
12835 M:      Jasmin Jessich <jasmin@anw.at>
12836 L:      linux-media@vger.kernel.org
12837 S:      Maintained
12838 W:      https://linuxtv.org
12839 T:      git git://linuxtv.org/media_tree.git
12840 F:      drivers/media/dvb-frontends/cxd2099*
12841
12842 MEDIA DRIVERS FOR CXD2841ER
12843 M:      Sergey Kozlov <serjk@netup.ru>
12844 M:      Abylay Ospan <aospan@netup.ru>
12845 L:      linux-media@vger.kernel.org
12846 S:      Supported
12847 W:      https://linuxtv.org
12848 W:      http://netup.tv/
12849 T:      git git://linuxtv.org/media_tree.git
12850 F:      drivers/media/dvb-frontends/cxd2841er*
12851
12852 MEDIA DRIVERS FOR CXD2880
12853 M:      Yasunari Takiguchi <Yasunari.Takiguchi@sony.com>
12854 L:      linux-media@vger.kernel.org
12855 S:      Supported
12856 W:      http://linuxtv.org/
12857 T:      git git://linuxtv.org/media_tree.git
12858 F:      drivers/media/dvb-frontends/cxd2880/*
12859 F:      drivers/media/spi/cxd2880*
12860
12861 MEDIA DRIVERS FOR DIGITAL DEVICES PCIE DEVICES
12862 L:      linux-media@vger.kernel.org
12863 S:      Orphan
12864 W:      https://linuxtv.org
12865 T:      git git://linuxtv.org/media_tree.git
12866 F:      drivers/media/pci/ddbridge/*
12867
12868 MEDIA DRIVERS FOR FREESCALE IMX
12869 M:      Steve Longerbeam <slongerbeam@gmail.com>
12870 M:      Philipp Zabel <p.zabel@pengutronix.de>
12871 L:      linux-media@vger.kernel.org
12872 S:      Maintained
12873 T:      git git://linuxtv.org/media_tree.git
12874 F:      Documentation/admin-guide/media/imx.rst
12875 F:      Documentation/devicetree/bindings/media/imx.txt
12876 F:      drivers/staging/media/imx/
12877 F:      include/linux/imx-media.h
12878 F:      include/media/imx.h
12879
12880 MEDIA DRIVERS FOR FREESCALE IMX7
12881 M:      Rui Miguel Silva <rmfrfs@gmail.com>
12882 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12883 L:      linux-media@vger.kernel.org
12884 S:      Maintained
12885 T:      git git://linuxtv.org/media_tree.git
12886 F:      Documentation/admin-guide/media/imx7.rst
12887 F:      Documentation/devicetree/bindings/media/nxp,imx-mipi-csi2.yaml
12888 F:      Documentation/devicetree/bindings/media/nxp,imx7-csi.yaml
12889 F:      drivers/media/platform/nxp/imx-mipi-csis.c
12890 F:      drivers/media/platform/nxp/imx7-media-csi.c
12891
12892 MEDIA DRIVERS FOR HELENE
12893 M:      Abylay Ospan <aospan@netup.ru>
12894 L:      linux-media@vger.kernel.org
12895 S:      Supported
12896 W:      https://linuxtv.org
12897 W:      http://netup.tv/
12898 T:      git git://linuxtv.org/media_tree.git
12899 F:      drivers/media/dvb-frontends/helene*
12900
12901 MEDIA DRIVERS FOR HORUS3A
12902 M:      Sergey Kozlov <serjk@netup.ru>
12903 M:      Abylay Ospan <aospan@netup.ru>
12904 L:      linux-media@vger.kernel.org
12905 S:      Supported
12906 W:      https://linuxtv.org
12907 W:      http://netup.tv/
12908 T:      git git://linuxtv.org/media_tree.git
12909 F:      drivers/media/dvb-frontends/horus3a*
12910
12911 MEDIA DRIVERS FOR LNBH25
12912 M:      Sergey Kozlov <serjk@netup.ru>
12913 M:      Abylay Ospan <aospan@netup.ru>
12914 L:      linux-media@vger.kernel.org
12915 S:      Supported
12916 W:      https://linuxtv.org
12917 W:      http://netup.tv/
12918 T:      git git://linuxtv.org/media_tree.git
12919 F:      drivers/media/dvb-frontends/lnbh25*
12920
12921 MEDIA DRIVERS FOR MXL5XX TUNER DEMODULATORS
12922 L:      linux-media@vger.kernel.org
12923 S:      Orphan
12924 W:      https://linuxtv.org
12925 T:      git git://linuxtv.org/media_tree.git
12926 F:      drivers/media/dvb-frontends/mxl5xx*
12927
12928 MEDIA DRIVERS FOR NETUP PCI UNIVERSAL DVB devices
12929 M:      Sergey Kozlov <serjk@netup.ru>
12930 M:      Abylay Ospan <aospan@netup.ru>
12931 L:      linux-media@vger.kernel.org
12932 S:      Supported
12933 W:      https://linuxtv.org
12934 W:      http://netup.tv/
12935 T:      git git://linuxtv.org/media_tree.git
12936 F:      drivers/media/pci/netup_unidvb/*
12937
12938 MEDIA DRIVERS FOR NVIDIA TEGRA - VDE
12939 M:      Dmitry Osipenko <digetx@gmail.com>
12940 L:      linux-media@vger.kernel.org
12941 L:      linux-tegra@vger.kernel.org
12942 S:      Maintained
12943 T:      git git://linuxtv.org/media_tree.git
12944 F:      Documentation/devicetree/bindings/media/nvidia,tegra-vde.yaml
12945 F:      drivers/media/platform/nvidia/tegra-vde/
12946
12947 MEDIA DRIVERS FOR RENESAS - CEU
12948 M:      Jacopo Mondi <jacopo@jmondi.org>
12949 L:      linux-media@vger.kernel.org
12950 L:      linux-renesas-soc@vger.kernel.org
12951 S:      Supported
12952 T:      git git://linuxtv.org/media_tree.git
12953 F:      Documentation/devicetree/bindings/media/renesas,ceu.yaml
12954 F:      drivers/media/platform/renesas/renesas-ceu.c
12955 F:      include/media/drv-intf/renesas-ceu.h
12956
12957 MEDIA DRIVERS FOR RENESAS - DRIF
12958 M:      Fabrizio Castro <fabrizio.castro.jz@renesas.com>
12959 L:      linux-media@vger.kernel.org
12960 L:      linux-renesas-soc@vger.kernel.org
12961 S:      Supported
12962 T:      git git://linuxtv.org/media_tree.git
12963 F:      Documentation/devicetree/bindings/media/renesas,drif.yaml
12964 F:      drivers/media/platform/renesas/rcar_drif.c
12965
12966 MEDIA DRIVERS FOR RENESAS - FCP
12967 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12968 L:      linux-media@vger.kernel.org
12969 L:      linux-renesas-soc@vger.kernel.org
12970 S:      Supported
12971 T:      git git://linuxtv.org/media_tree.git
12972 F:      Documentation/devicetree/bindings/media/renesas,fcp.yaml
12973 F:      drivers/media/platform/renesas/rcar-fcp.c
12974 F:      include/media/rcar-fcp.h
12975
12976 MEDIA DRIVERS FOR RENESAS - FDP1
12977 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
12978 L:      linux-media@vger.kernel.org
12979 L:      linux-renesas-soc@vger.kernel.org
12980 S:      Supported
12981 T:      git git://linuxtv.org/media_tree.git
12982 F:      Documentation/devicetree/bindings/media/renesas,fdp1.yaml
12983 F:      drivers/media/platform/renesas/rcar_fdp1.c
12984
12985 MEDIA DRIVERS FOR RENESAS - VIN
12986 M:      Niklas Söderlund <niklas.soderlund@ragnatech.se>
12987 L:      linux-media@vger.kernel.org
12988 L:      linux-renesas-soc@vger.kernel.org
12989 S:      Supported
12990 T:      git git://linuxtv.org/media_tree.git
12991 F:      Documentation/devicetree/bindings/media/renesas,csi2.yaml
12992 F:      Documentation/devicetree/bindings/media/renesas,isp.yaml
12993 F:      Documentation/devicetree/bindings/media/renesas,vin.yaml
12994 F:      drivers/media/platform/renesas/rcar-isp.c
12995 F:      drivers/media/platform/renesas/rcar-vin/
12996
12997 MEDIA DRIVERS FOR RENESAS - VSP1
12998 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12999 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
13000 L:      linux-media@vger.kernel.org
13001 L:      linux-renesas-soc@vger.kernel.org
13002 S:      Supported
13003 T:      git git://linuxtv.org/media_tree.git
13004 F:      Documentation/devicetree/bindings/media/renesas,vsp1.yaml
13005 F:      drivers/media/platform/renesas/vsp1/
13006
13007 MEDIA DRIVERS FOR ST STV0910 DEMODULATOR ICs
13008 L:      linux-media@vger.kernel.org
13009 S:      Orphan
13010 W:      https://linuxtv.org
13011 T:      git git://linuxtv.org/media_tree.git
13012 F:      drivers/media/dvb-frontends/stv0910*
13013
13014 MEDIA DRIVERS FOR ST STV6111 TUNER ICs
13015 L:      linux-media@vger.kernel.org
13016 S:      Orphan
13017 W:      https://linuxtv.org
13018 T:      git git://linuxtv.org/media_tree.git
13019 F:      drivers/media/dvb-frontends/stv6111*
13020
13021 MEDIA DRIVERS FOR STM32 - DCMI
13022 M:      Hugues Fruchet <hugues.fruchet@foss.st.com>
13023 L:      linux-media@vger.kernel.org
13024 S:      Supported
13025 T:      git git://linuxtv.org/media_tree.git
13026 F:      Documentation/devicetree/bindings/media/st,stm32-dcmi.yaml
13027 F:      drivers/media/platform/st/stm32/stm32-dcmi.c
13028
13029 MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
13030 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
13031 L:      linux-media@vger.kernel.org
13032 S:      Maintained
13033 W:      https://linuxtv.org
13034 Q:      http://patchwork.kernel.org/project/linux-media/list/
13035 T:      git git://linuxtv.org/media_tree.git
13036 F:      Documentation/admin-guide/media/
13037 F:      Documentation/devicetree/bindings/media/
13038 F:      Documentation/driver-api/media/
13039 F:      Documentation/userspace-api/media/
13040 F:      drivers/media/
13041 F:      drivers/staging/media/
13042 F:      include/dt-bindings/media/
13043 F:      include/linux/platform_data/media/
13044 F:      include/media/
13045 F:      include/uapi/linux/dvb/
13046 F:      include/uapi/linux/ivtv*
13047 F:      include/uapi/linux/media.h
13048 F:      include/uapi/linux/uvcvideo.h
13049 F:      include/uapi/linux/v4l2-*
13050 F:      include/uapi/linux/videodev2.h
13051
13052 MEDIATEK BLUETOOTH DRIVER
13053 M:      Sean Wang <sean.wang@mediatek.com>
13054 L:      linux-bluetooth@vger.kernel.org
13055 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
13056 S:      Maintained
13057 F:      Documentation/devicetree/bindings/net/mediatek-bluetooth.txt
13058 F:      drivers/bluetooth/btmtkuart.c
13059
13060 MEDIATEK BOARD LEVEL SHUTDOWN DRIVERS
13061 M:      Sean Wang <sean.wang@mediatek.com>
13062 L:      linux-pm@vger.kernel.org
13063 S:      Maintained
13064 F:      Documentation/devicetree/bindings/power/reset/mt6323-poweroff.txt
13065 F:      drivers/power/reset/mt6323-poweroff.c
13066
13067 MEDIATEK CIR DRIVER
13068 M:      Sean Wang <sean.wang@mediatek.com>
13069 S:      Maintained
13070 F:      drivers/media/rc/mtk-cir.c
13071
13072 MEDIATEK DMA DRIVER
13073 M:      Sean Wang <sean.wang@mediatek.com>
13074 L:      dmaengine@vger.kernel.org
13075 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13076 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
13077 S:      Maintained
13078 F:      Documentation/devicetree/bindings/dma/mtk-*
13079 F:      drivers/dma/mediatek/
13080
13081 MEDIATEK ETHERNET DRIVER
13082 M:      Felix Fietkau <nbd@nbd.name>
13083 M:      John Crispin <john@phrozen.org>
13084 M:      Sean Wang <sean.wang@mediatek.com>
13085 M:      Mark Lee <Mark-MC.Lee@mediatek.com>
13086 M:      Lorenzo Bianconi <lorenzo@kernel.org>
13087 L:      netdev@vger.kernel.org
13088 S:      Maintained
13089 F:      drivers/net/ethernet/mediatek/
13090
13091 MEDIATEK ETHERNET PCS DRIVER
13092 M:      Alexander Couzens <lynxis@fe80.eu>
13093 M:      Daniel Golle <daniel@makrotopia.org>
13094 L:      netdev@vger.kernel.org
13095 S:      Maintained
13096 F:      drivers/net/pcs/pcs-mtk-lynxi.c
13097 F:      include/linux/pcs/pcs-mtk-lynxi.h
13098
13099 MEDIATEK I2C CONTROLLER DRIVER
13100 M:      Qii Wang <qii.wang@mediatek.com>
13101 L:      linux-i2c@vger.kernel.org
13102 S:      Maintained
13103 F:      Documentation/devicetree/bindings/i2c/i2c-mt65xx.yaml
13104 F:      drivers/i2c/busses/i2c-mt65xx.c
13105
13106 MEDIATEK IOMMU DRIVER
13107 M:      Yong Wu <yong.wu@mediatek.com>
13108 L:      iommu@lists.linux.dev
13109 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
13110 S:      Supported
13111 F:      Documentation/devicetree/bindings/iommu/mediatek*
13112 F:      drivers/iommu/mtk_iommu*
13113 F:      include/dt-bindings/memory/mt*-port.h
13114
13115 MEDIATEK JPEG DRIVER
13116 M:      Bin Liu <bin.liu@mediatek.com>
13117 S:      Supported
13118 F:      Documentation/devicetree/bindings/media/mediatek-jpeg-*.yaml
13119 F:      drivers/media/platform/mediatek/jpeg/
13120
13121 MEDIATEK KEYPAD DRIVER
13122 M:      Mattijs Korpershoek <mkorpershoek@baylibre.com>
13123 S:      Supported
13124 F:      Documentation/devicetree/bindings/input/mediatek,mt6779-keypad.yaml
13125 F:      drivers/input/keyboard/mt6779-keypad.c
13126
13127 MEDIATEK MDP DRIVER
13128 M:      Minghsiu Tsai <minghsiu.tsai@mediatek.com>
13129 M:      Houlong Wei <houlong.wei@mediatek.com>
13130 M:      Andrew-CT Chen <andrew-ct.chen@mediatek.com>
13131 S:      Supported
13132 F:      Documentation/devicetree/bindings/media/mediatek-mdp.txt
13133 F:      drivers/media/platform/mediatek/mdp/
13134 F:      drivers/media/platform/mediatek/vpu/
13135
13136 MEDIATEK MEDIA DRIVER
13137 M:      Tiffany Lin <tiffany.lin@mediatek.com>
13138 M:      Andrew-CT Chen <andrew-ct.chen@mediatek.com>
13139 M:      Yunfei Dong <yunfei.dong@mediatek.com>
13140 S:      Supported
13141 F:      Documentation/devicetree/bindings/media/mediatek,vcodec*.yaml
13142 F:      Documentation/devicetree/bindings/media/mediatek-vpu.txt
13143 F:      drivers/media/platform/mediatek/vcodec/
13144 F:      drivers/media/platform/mediatek/vpu/
13145
13146 MEDIATEK MMC/SD/SDIO DRIVER
13147 M:      Chaotian Jing <chaotian.jing@mediatek.com>
13148 S:      Maintained
13149 F:      Documentation/devicetree/bindings/mmc/mtk-sd.yaml
13150 F:      drivers/mmc/host/mtk-sd.c
13151
13152 MEDIATEK MT76 WIRELESS LAN DRIVER
13153 M:      Felix Fietkau <nbd@nbd.name>
13154 M:      Lorenzo Bianconi <lorenzo@kernel.org>
13155 M:      Ryder Lee <ryder.lee@mediatek.com>
13156 R:      Shayne Chen <shayne.chen@mediatek.com>
13157 R:      Sean Wang <sean.wang@mediatek.com>
13158 L:      linux-wireless@vger.kernel.org
13159 S:      Maintained
13160 F:      Documentation/devicetree/bindings/net/wireless/mediatek,mt76.yaml
13161 F:      drivers/net/wireless/mediatek/mt76/
13162
13163 MEDIATEK MT7601U WIRELESS LAN DRIVER
13164 M:      Jakub Kicinski <kuba@kernel.org>
13165 L:      linux-wireless@vger.kernel.org
13166 S:      Maintained
13167 F:      drivers/net/wireless/mediatek/mt7601u/
13168
13169 MEDIATEK MT7621 CLOCK DRIVER
13170 M:      Sergio Paracuellos <sergio.paracuellos@gmail.com>
13171 S:      Maintained
13172 F:      Documentation/devicetree/bindings/clock/mediatek,mt7621-sysc.yaml
13173 F:      drivers/clk/ralink/clk-mt7621.c
13174
13175 MEDIATEK MT7621/28/88 I2C DRIVER
13176 M:      Stefan Roese <sr@denx.de>
13177 L:      linux-i2c@vger.kernel.org
13178 S:      Maintained
13179 F:      Documentation/devicetree/bindings/i2c/mediatek,mt7621-i2c.yaml
13180 F:      drivers/i2c/busses/i2c-mt7621.c
13181
13182 MEDIATEK MT7621 PCIE CONTROLLER DRIVER
13183 M:      Sergio Paracuellos <sergio.paracuellos@gmail.com>
13184 S:      Maintained
13185 F:      Documentation/devicetree/bindings/pci/mediatek,mt7621-pcie.yaml
13186 F:      drivers/pci/controller/pcie-mt7621.c
13187
13188 MEDIATEK MT7621 PHY PCI DRIVER
13189 M:      Sergio Paracuellos <sergio.paracuellos@gmail.com>
13190 S:      Maintained
13191 F:      Documentation/devicetree/bindings/phy/mediatek,mt7621-pci-phy.yaml
13192 F:      drivers/phy/ralink/phy-mt7621-pci.c
13193
13194 MEDIATEK NAND CONTROLLER DRIVER
13195 L:      linux-mtd@lists.infradead.org
13196 S:      Orphan
13197 F:      Documentation/devicetree/bindings/mtd/mediatek,mtk-nfc.yaml
13198 F:      drivers/mtd/nand/raw/mtk_*
13199
13200 MEDIATEK PMIC LED DRIVER
13201 M:      Sean Wang <sean.wang@mediatek.com>
13202 S:      Maintained
13203 F:      Documentation/devicetree/bindings/leds/leds-mt6323.txt
13204 F:      drivers/leds/leds-mt6323.c
13205
13206 MEDIATEK RANDOM NUMBER GENERATOR SUPPORT
13207 M:      Sean Wang <sean.wang@mediatek.com>
13208 S:      Maintained
13209 F:      drivers/char/hw_random/mtk-rng.c
13210
13211 MEDIATEK SMI DRIVER
13212 M:      Yong Wu <yong.wu@mediatek.com>
13213 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
13214 S:      Supported
13215 F:      Documentation/devicetree/bindings/memory-controllers/mediatek,smi*
13216 F:      drivers/memory/mtk-smi.c
13217 F:      include/soc/mediatek/smi.h
13218
13219 MEDIATEK SWITCH DRIVER
13220 M:      Sean Wang <sean.wang@mediatek.com>
13221 M:      Landen Chao <Landen.Chao@mediatek.com>
13222 M:      DENG Qingfang <dqfext@gmail.com>
13223 M:      Daniel Golle <daniel@makrotopia.org>
13224 L:      netdev@vger.kernel.org
13225 S:      Maintained
13226 F:      drivers/net/dsa/mt7530-mdio.c
13227 F:      drivers/net/dsa/mt7530-mmio.c
13228 F:      drivers/net/dsa/mt7530.*
13229 F:      net/dsa/tag_mtk.c
13230
13231 MEDIATEK T7XX 5G WWAN MODEM DRIVER
13232 M:      Chandrashekar Devegowda <chandrashekar.devegowda@intel.com>
13233 M:      Intel Corporation <linuxwwan@intel.com>
13234 R:      Chiranjeevi Rapolu <chiranjeevi.rapolu@linux.intel.com>
13235 R:      Liu Haijun <haijun.liu@mediatek.com>
13236 R:      M Chetan Kumar <m.chetan.kumar@linux.intel.com>
13237 R:      Ricardo Martinez <ricardo.martinez@linux.intel.com>
13238 L:      netdev@vger.kernel.org
13239 S:      Supported
13240 F:      drivers/net/wwan/t7xx/
13241
13242 MEDIATEK USB3 DRD IP DRIVER
13243 M:      Chunfeng Yun <chunfeng.yun@mediatek.com>
13244 L:      linux-usb@vger.kernel.org
13245 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13246 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
13247 S:      Maintained
13248 F:      Documentation/devicetree/bindings/usb/mediatek,*
13249 F:      drivers/usb/host/xhci-mtk*
13250 F:      drivers/usb/mtu3/
13251
13252 MEGACHIPS STDPXXXX-GE-B850V3-FW LVDS/DP++ BRIDGES
13253 M:      Peter Senna Tschudin <peter.senna@gmail.com>
13254 M:      Martin Donnelly <martin.donnelly@ge.com>
13255 M:      Martyn Welch <martyn.welch@collabora.co.uk>
13256 S:      Maintained
13257 F:      Documentation/devicetree/bindings/display/bridge/megachips-stdpxxxx-ge-b850v3-fw.txt
13258 F:      drivers/gpu/drm/bridge/megachips-stdpxxxx-ge-b850v3-fw.c
13259
13260 MEGARAID SCSI/SAS DRIVERS
13261 M:      Kashyap Desai <kashyap.desai@broadcom.com>
13262 M:      Sumit Saxena <sumit.saxena@broadcom.com>
13263 M:      Shivasharan S <shivasharan.srikanteshwara@broadcom.com>
13264 L:      megaraidlinux.pdl@broadcom.com
13265 L:      linux-scsi@vger.kernel.org
13266 S:      Maintained
13267 W:      http://www.avagotech.com/support/
13268 F:      Documentation/scsi/megaraid.rst
13269 F:      drivers/scsi/megaraid.*
13270 F:      drivers/scsi/megaraid/
13271
13272 MELEXIS MLX90614 DRIVER
13273 M:      Crt Mori <cmo@melexis.com>
13274 L:      linux-iio@vger.kernel.org
13275 S:      Supported
13276 W:      http://www.melexis.com
13277 F:      drivers/iio/temperature/mlx90614.c
13278
13279 MELEXIS MLX90632 DRIVER
13280 M:      Crt Mori <cmo@melexis.com>
13281 L:      linux-iio@vger.kernel.org
13282 S:      Supported
13283 W:      http://www.melexis.com
13284 F:      drivers/iio/temperature/mlx90632.c
13285
13286 MELFAS MIP4 TOUCHSCREEN DRIVER
13287 M:      Sangwon Jee <jeesw@melfas.com>
13288 S:      Supported
13289 W:      http://www.melfas.com
13290 F:      Documentation/devicetree/bindings/input/touchscreen/melfas_mip4.txt
13291 F:      drivers/input/touchscreen/melfas_mip4.c
13292
13293 MELLANOX BLUEFIELD I2C DRIVER
13294 M:      Khalil Blaiech <kblaiech@nvidia.com>
13295 M:      Asmaa Mnebhi <asmaa@nvidia.com>
13296 L:      linux-i2c@vger.kernel.org
13297 S:      Supported
13298 F:      drivers/i2c/busses/i2c-mlxbf.c
13299
13300 MELLANOX ETHERNET DRIVER (mlx4_en)
13301 M:      Tariq Toukan <tariqt@nvidia.com>
13302 L:      netdev@vger.kernel.org
13303 S:      Supported
13304 W:      http://www.mellanox.com
13305 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
13306 F:      drivers/net/ethernet/mellanox/mlx4/en_*
13307
13308 MELLANOX ETHERNET DRIVER (mlx5e)
13309 M:      Saeed Mahameed <saeedm@nvidia.com>
13310 L:      netdev@vger.kernel.org
13311 S:      Supported
13312 W:      http://www.mellanox.com
13313 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
13314 F:      drivers/net/ethernet/mellanox/mlx5/core/en_*
13315
13316 MELLANOX ETHERNET INNOVA DRIVERS
13317 R:      Boris Pismenny <borisp@nvidia.com>
13318 L:      netdev@vger.kernel.org
13319 S:      Supported
13320 W:      http://www.mellanox.com
13321 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
13322 F:      drivers/net/ethernet/mellanox/mlx5/core/en_accel/*
13323 F:      drivers/net/ethernet/mellanox/mlx5/core/fpga/*
13324 F:      include/linux/mlx5/mlx5_ifc_fpga.h
13325
13326 MELLANOX ETHERNET SWITCH DRIVERS
13327 M:      Ido Schimmel <idosch@nvidia.com>
13328 M:      Petr Machata <petrm@nvidia.com>
13329 L:      netdev@vger.kernel.org
13330 S:      Supported
13331 W:      http://www.mellanox.com
13332 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
13333 F:      drivers/net/ethernet/mellanox/mlxsw/
13334 F:      tools/testing/selftests/drivers/net/mlxsw/
13335
13336 MELLANOX FIRMWARE FLASH LIBRARY (mlxfw)
13337 M:      mlxsw@nvidia.com
13338 L:      netdev@vger.kernel.org
13339 S:      Supported
13340 W:      http://www.mellanox.com
13341 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
13342 F:      drivers/net/ethernet/mellanox/mlxfw/
13343
13344 MELLANOX HARDWARE PLATFORM SUPPORT
13345 M:      Hans de Goede <hdegoede@redhat.com>
13346 M:      Mark Gross <markgross@kernel.org>
13347 M:      Vadim Pasternak <vadimp@nvidia.com>
13348 L:      platform-driver-x86@vger.kernel.org
13349 S:      Supported
13350 F:      Documentation/ABI/testing/sysfs-platform-mellanox-bootctl
13351 F:      drivers/platform/mellanox/
13352 F:      include/linux/platform_data/mlxreg.h
13353
13354 MELLANOX MLX4 core VPI driver
13355 M:      Tariq Toukan <tariqt@nvidia.com>
13356 L:      netdev@vger.kernel.org
13357 L:      linux-rdma@vger.kernel.org
13358 S:      Supported
13359 W:      http://www.mellanox.com
13360 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
13361 F:      drivers/net/ethernet/mellanox/mlx4/
13362 F:      include/linux/mlx4/
13363
13364 MELLANOX MLX4 IB driver
13365 M:      Yishai Hadas <yishaih@nvidia.com>
13366 L:      linux-rdma@vger.kernel.org
13367 S:      Supported
13368 W:      http://www.mellanox.com
13369 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
13370 F:      drivers/infiniband/hw/mlx4/
13371 F:      include/linux/mlx4/
13372 F:      include/uapi/rdma/mlx4-abi.h
13373
13374 MELLANOX MLX5 core VPI driver
13375 M:      Saeed Mahameed <saeedm@nvidia.com>
13376 M:      Leon Romanovsky <leonro@nvidia.com>
13377 L:      netdev@vger.kernel.org
13378 L:      linux-rdma@vger.kernel.org
13379 S:      Supported
13380 W:      http://www.mellanox.com
13381 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
13382 F:      Documentation/networking/device_drivers/ethernet/mellanox/
13383 F:      drivers/net/ethernet/mellanox/mlx5/core/
13384 F:      include/linux/mlx5/
13385
13386 MELLANOX MLX5 IB driver
13387 M:      Leon Romanovsky <leonro@nvidia.com>
13388 L:      linux-rdma@vger.kernel.org
13389 S:      Supported
13390 W:      http://www.mellanox.com
13391 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
13392 F:      drivers/infiniband/hw/mlx5/
13393 F:      include/linux/mlx5/
13394 F:      include/uapi/rdma/mlx5-abi.h
13395
13396 MELLANOX MLXCPLD I2C AND MUX DRIVER
13397 M:      Vadim Pasternak <vadimp@nvidia.com>
13398 M:      Michael Shych <michaelsh@nvidia.com>
13399 L:      linux-i2c@vger.kernel.org
13400 S:      Supported
13401 F:      Documentation/i2c/busses/i2c-mlxcpld.rst
13402 F:      drivers/i2c/busses/i2c-mlxcpld.c
13403 F:      drivers/i2c/muxes/i2c-mux-mlxcpld.c
13404
13405 MELLANOX MLXCPLD LED DRIVER
13406 M:      Vadim Pasternak <vadimp@nvidia.com>
13407 L:      linux-leds@vger.kernel.org
13408 S:      Supported
13409 F:      Documentation/leds/leds-mlxcpld.rst
13410 F:      drivers/leds/leds-mlxcpld.c
13411 F:      drivers/leds/leds-mlxreg.c
13412
13413 MELLANOX PLATFORM DRIVER
13414 M:      Vadim Pasternak <vadimp@nvidia.com>
13415 L:      platform-driver-x86@vger.kernel.org
13416 S:      Supported
13417 F:      drivers/platform/x86/mlx-platform.c
13418
13419 MEMBARRIER SUPPORT
13420 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
13421 M:      "Paul E. McKenney" <paulmck@kernel.org>
13422 L:      linux-kernel@vger.kernel.org
13423 S:      Supported
13424 F:      arch/powerpc/include/asm/membarrier.h
13425 F:      include/uapi/linux/membarrier.h
13426 F:      kernel/sched/membarrier.c
13427
13428 MEMBLOCK
13429 M:      Mike Rapoport <rppt@kernel.org>
13430 L:      linux-mm@kvack.org
13431 S:      Maintained
13432 F:      Documentation/core-api/boot-time-mm.rst
13433 F:      include/linux/memblock.h
13434 F:      mm/memblock.c
13435 F:      tools/testing/memblock/
13436
13437 MEMORY CONTROLLER DRIVERS
13438 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
13439 L:      linux-kernel@vger.kernel.org
13440 S:      Maintained
13441 B:      mailto:krzysztof.kozlowski@linaro.org
13442 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/krzk/linux-mem-ctrl.git
13443 F:      Documentation/devicetree/bindings/memory-controllers/
13444 F:      drivers/memory/
13445 F:      include/dt-bindings/memory/
13446 F:      include/memory/
13447
13448 MEMORY FREQUENCY SCALING DRIVERS FOR NVIDIA TEGRA
13449 M:      Dmitry Osipenko <digetx@gmail.com>
13450 L:      linux-pm@vger.kernel.org
13451 L:      linux-tegra@vger.kernel.org
13452 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
13453 S:      Maintained
13454 F:      drivers/devfreq/tegra30-devfreq.c
13455
13456 MEMORY MANAGEMENT
13457 M:      Andrew Morton <akpm@linux-foundation.org>
13458 L:      linux-mm@kvack.org
13459 S:      Maintained
13460 W:      http://www.linux-mm.org
13461 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm
13462 T:      quilt git://git.kernel.org/pub/scm/linux/kernel/git/akpm/25-new
13463 F:      include/linux/gfp.h
13464 F:      include/linux/gfp_types.h
13465 F:      include/linux/memory_hotplug.h
13466 F:      include/linux/mm.h
13467 F:      include/linux/mmzone.h
13468 F:      include/linux/pagewalk.h
13469 F:      mm/
13470 F:      tools/mm/
13471 F:      tools/testing/selftests/mm/
13472
13473 VMALLOC
13474 M:      Andrew Morton <akpm@linux-foundation.org>
13475 R:      Uladzislau Rezki <urezki@gmail.com>
13476 R:      Christoph Hellwig <hch@infradead.org>
13477 L:      linux-mm@kvack.org
13478 S:      Maintained
13479 W:      http://www.linux-mm.org
13480 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm
13481 F:      include/linux/vmalloc.h
13482 F:      mm/vmalloc.c
13483
13484 MEMORY HOT(UN)PLUG
13485 M:      David Hildenbrand <david@redhat.com>
13486 M:      Oscar Salvador <osalvador@suse.de>
13487 L:      linux-mm@kvack.org
13488 S:      Maintained
13489 F:      Documentation/admin-guide/mm/memory-hotplug.rst
13490 F:      Documentation/core-api/memory-hotplug.rst
13491 F:      drivers/base/memory.c
13492 F:      include/linux/memory_hotplug.h
13493 F:      mm/memory_hotplug.c
13494 F:      tools/testing/selftests/memory-hotplug/
13495
13496 MEMORY TECHNOLOGY DEVICES (MTD)
13497 M:      Miquel Raynal <miquel.raynal@bootlin.com>
13498 M:      Richard Weinberger <richard@nod.at>
13499 M:      Vignesh Raghavendra <vigneshr@ti.com>
13500 L:      linux-mtd@lists.infradead.org
13501 S:      Maintained
13502 W:      http://www.linux-mtd.infradead.org/
13503 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
13504 C:      irc://irc.oftc.net/mtd
13505 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/fixes
13506 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/next
13507 F:      Documentation/devicetree/bindings/mtd/
13508 F:      drivers/mtd/
13509 F:      include/linux/mtd/
13510 F:      include/uapi/mtd/
13511
13512 MEMSENSING MICROSYSTEMS MSA311 DRIVER
13513 M:      Dmitry Rokosov <ddrokosov@sberdevices.ru>
13514 L:      linux-iio@vger.kernel.org
13515 S:      Maintained
13516 F:      Documentation/devicetree/bindings/iio/accel/memsensing,msa311.yaml
13517 F:      drivers/iio/accel/msa311.c
13518
13519 MEN A21 WATCHDOG DRIVER
13520 M:      Johannes Thumshirn <morbidrsa@gmail.com>
13521 L:      linux-watchdog@vger.kernel.org
13522 S:      Maintained
13523 F:      drivers/watchdog/mena21_wdt.c
13524
13525 MEN CHAMELEON BUS (mcb)
13526 M:      Johannes Thumshirn <morbidrsa@gmail.com>
13527 S:      Maintained
13528 F:      Documentation/driver-api/men-chameleon-bus.rst
13529 F:      drivers/mcb/
13530 F:      include/linux/mcb.h
13531
13532 MEN F21BMC (Board Management Controller)
13533 M:      Andreas Werner <andreas.werner@men.de>
13534 S:      Supported
13535 F:      Documentation/hwmon/menf21bmc.rst
13536 F:      drivers/hwmon/menf21bmc_hwmon.c
13537 F:      drivers/leds/leds-menf21bmc.c
13538 F:      drivers/mfd/menf21bmc.c
13539 F:      drivers/watchdog/menf21bmc_wdt.c
13540
13541 MEN Z069 WATCHDOG DRIVER
13542 M:      Johannes Thumshirn <jth@kernel.org>
13543 L:      linux-watchdog@vger.kernel.org
13544 S:      Maintained
13545 F:      drivers/watchdog/menz69_wdt.c
13546
13547 MESON AO CEC DRIVER FOR AMLOGIC SOCS
13548 M:      Neil Armstrong <neil.armstrong@linaro.org>
13549 L:      linux-media@vger.kernel.org
13550 L:      linux-amlogic@lists.infradead.org
13551 S:      Supported
13552 W:      http://linux-meson.com/
13553 T:      git git://linuxtv.org/media_tree.git
13554 F:      Documentation/devicetree/bindings/media/cec/amlogic,meson-gx-ao-cec.yaml
13555 F:      drivers/media/cec/platform/meson/ao-cec-g12a.c
13556 F:      drivers/media/cec/platform/meson/ao-cec.c
13557
13558 MESON GE2D DRIVER FOR AMLOGIC SOCS
13559 M:      Neil Armstrong <neil.armstrong@linaro.org>
13560 L:      linux-media@vger.kernel.org
13561 L:      linux-amlogic@lists.infradead.org
13562 S:      Supported
13563 T:      git git://linuxtv.org/media_tree.git
13564 F:      Documentation/devicetree/bindings/media/amlogic,axg-ge2d.yaml
13565 F:      drivers/media/platform/amlogic/meson-ge2d/
13566
13567 MESON NAND CONTROLLER DRIVER FOR AMLOGIC SOCS
13568 M:      Liang Yang <liang.yang@amlogic.com>
13569 L:      linux-mtd@lists.infradead.org
13570 S:      Maintained
13571 F:      Documentation/devicetree/bindings/mtd/amlogic,meson-nand.yaml
13572 F:      drivers/mtd/nand/raw/meson_*
13573
13574 MESON VIDEO DECODER DRIVER FOR AMLOGIC SOCS
13575 M:      Neil Armstrong <neil.armstrong@linaro.org>
13576 L:      linux-media@vger.kernel.org
13577 L:      linux-amlogic@lists.infradead.org
13578 S:      Supported
13579 T:      git git://linuxtv.org/media_tree.git
13580 F:      Documentation/devicetree/bindings/media/amlogic,gx-vdec.yaml
13581 F:      drivers/staging/media/meson/vdec/
13582
13583 METHODE UDPU SUPPORT
13584 M:      Vladimir Vid <vladimir.vid@sartura.hr>
13585 S:      Maintained
13586 F:      arch/arm64/boot/dts/marvell/armada-3720-uDPU.dts
13587
13588 MHI BUS
13589 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
13590 L:      mhi@lists.linux.dev
13591 L:      linux-arm-msm@vger.kernel.org
13592 S:      Maintained
13593 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mani/mhi.git
13594 F:      Documentation/ABI/stable/sysfs-bus-mhi
13595 F:      Documentation/mhi/
13596 F:      drivers/bus/mhi/
13597 F:      include/linux/mhi.h
13598
13599 MICROBLAZE ARCHITECTURE
13600 M:      Michal Simek <monstr@monstr.eu>
13601 S:      Supported
13602 W:      http://www.monstr.eu/fdt/
13603 T:      git git://git.monstr.eu/linux-2.6-microblaze.git
13604 F:      arch/microblaze/
13605
13606 MICROBLAZE TMR MANAGER
13607 M:      Appana Durga Kedareswara rao <appana.durga.kedareswara.rao@amd.com>
13608 S:      Supported
13609 F:      Documentation/ABI/testing/sysfs-driver-xilinx-tmr-manager
13610 F:      Documentation/devicetree/bindings/misc/xlnx,tmr-manager.yaml
13611 F:      drivers/misc/xilinx_tmr_manager.c
13612
13613 MICROBLAZE TMR INJECT
13614 M:      Appana Durga Kedareswara rao <appana.durga.kedareswara.rao@amd.com>
13615 S:      Supported
13616 F:      Documentation/devicetree/bindings/misc/xlnx,tmr-inject.yaml
13617 F:      drivers/misc/xilinx_tmr_inject.c
13618
13619 MICROCHIP AT91 DMA DRIVERS
13620 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
13621 M:      Tudor Ambarus <tudor.ambarus@linaro.org>
13622 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13623 L:      dmaengine@vger.kernel.org
13624 S:      Supported
13625 F:      Documentation/devicetree/bindings/dma/atmel-dma.txt
13626 F:      drivers/dma/at_hdmac.c
13627 F:      drivers/dma/at_xdmac.c
13628 F:      include/dt-bindings/dma/at91.h
13629
13630 MICROCHIP AT91 SERIAL DRIVER
13631 M:      Richard Genoud <richard.genoud@gmail.com>
13632 S:      Maintained
13633 F:      Documentation/devicetree/bindings/serial/atmel,at91-usart.yaml
13634 F:      drivers/tty/serial/atmel_serial.c
13635 F:      drivers/tty/serial/atmel_serial.h
13636
13637 MICROCHIP AT91 USART MFD DRIVER
13638 M:      Radu Pirea <radu_nicolae.pirea@upb.ro>
13639 L:      linux-kernel@vger.kernel.org
13640 S:      Supported
13641 F:      Documentation/devicetree/bindings/serial/atmel,at91-usart.yaml
13642 F:      drivers/mfd/at91-usart.c
13643 F:      include/dt-bindings/mfd/at91-usart.h
13644
13645 MICROCHIP AT91 USART SPI DRIVER
13646 M:      Radu Pirea <radu_nicolae.pirea@upb.ro>
13647 L:      linux-spi@vger.kernel.org
13648 S:      Supported
13649 F:      Documentation/devicetree/bindings/serial/atmel,at91-usart.yaml
13650 F:      drivers/spi/spi-at91-usart.c
13651
13652 MICROCHIP AUDIO ASOC DRIVERS
13653 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
13654 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
13655 S:      Supported
13656 F:      sound/soc/atmel
13657
13658 MICROCHIP CSI2DC DRIVER
13659 M:      Eugen Hristev <eugen.hristev@microchip.com>
13660 L:      linux-media@vger.kernel.org
13661 S:      Supported
13662 F:      Documentation/devicetree/bindings/media/microchip,csi2dc.yaml
13663 F:      drivers/media/platform/microchip/microchip-csi2dc.c
13664
13665 MICROCHIP ECC DRIVER
13666 M:      Tudor Ambarus <tudor.ambarus@linaro.org>
13667 L:      linux-crypto@vger.kernel.org
13668 S:      Maintained
13669 F:      drivers/crypto/atmel-ecc.*
13670
13671 MICROCHIP EIC DRIVER
13672 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
13673 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13674 S:      Supported
13675 F:      drivers/irqchip/irq-mchp-eic.c
13676
13677 MICROCHIP I2C DRIVER
13678 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
13679 L:      linux-i2c@vger.kernel.org
13680 S:      Supported
13681 F:      drivers/i2c/busses/i2c-at91-*.c
13682 F:      drivers/i2c/busses/i2c-at91.h
13683
13684 MICROCHIP ISC DRIVER
13685 M:      Eugen Hristev <eugen.hristev@microchip.com>
13686 L:      linux-media@vger.kernel.org
13687 S:      Supported
13688 F:      Documentation/devicetree/bindings/media/atmel,isc.yaml
13689 F:      Documentation/devicetree/bindings/media/microchip,xisc.yaml
13690 F:      drivers/staging/media/deprecated/atmel/atmel-isc*
13691 F:      drivers/staging/media/deprecated/atmel/atmel-sama*-isc*
13692 F:      drivers/media/platform/microchip/microchip-isc*
13693 F:      drivers/media/platform/microchip/microchip-sama*-isc*
13694 F:      include/linux/atmel-isc-media.h
13695
13696 MICROCHIP ISI DRIVER
13697 M:      Eugen Hristev <eugen.hristev@microchip.com>
13698 L:      linux-media@vger.kernel.org
13699 S:      Supported
13700 F:      drivers/media/platform/atmel/atmel-isi.c
13701 F:      drivers/media/platform/atmel/atmel-isi.h
13702
13703 MICROCHIP KSZ SERIES ETHERNET SWITCH DRIVER
13704 M:      Woojung Huh <woojung.huh@microchip.com>
13705 M:      UNGLinuxDriver@microchip.com
13706 L:      netdev@vger.kernel.org
13707 S:      Maintained
13708 F:      Documentation/devicetree/bindings/net/dsa/microchip,ksz.yaml
13709 F:      Documentation/devicetree/bindings/net/dsa/microchip,lan937x.yaml
13710 F:      drivers/net/dsa/microchip/*
13711 F:      include/linux/dsa/ksz_common.h
13712 F:      include/linux/platform_data/microchip-ksz.h
13713 F:      net/dsa/tag_ksz.c
13714
13715 MICROCHIP LAN87xx/LAN937x T1 PHY DRIVER
13716 M:      Arun Ramadoss <arun.ramadoss@microchip.com>
13717 R:      UNGLinuxDriver@microchip.com
13718 L:      netdev@vger.kernel.org
13719 S:      Maintained
13720 F:      drivers/net/phy/microchip_t1.c
13721
13722 MICROCHIP LAN743X ETHERNET DRIVER
13723 M:      Bryan Whitehead <bryan.whitehead@microchip.com>
13724 M:      UNGLinuxDriver@microchip.com
13725 L:      netdev@vger.kernel.org
13726 S:      Maintained
13727 F:      drivers/net/ethernet/microchip/lan743x_*
13728
13729 MICROCHIP LAN966X ETHERNET DRIVER
13730 M:      Horatiu Vultur <horatiu.vultur@microchip.com>
13731 M:      UNGLinuxDriver@microchip.com
13732 L:      netdev@vger.kernel.org
13733 S:      Maintained
13734 F:      drivers/net/ethernet/microchip/lan966x/*
13735
13736 MICROCHIP LCDFB DRIVER
13737 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
13738 L:      linux-fbdev@vger.kernel.org
13739 S:      Maintained
13740 F:      drivers/video/fbdev/atmel_lcdfb.c
13741 F:      include/video/atmel_lcdc.h
13742
13743 MICROCHIP MCP16502 PMIC DRIVER
13744 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
13745 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13746 S:      Supported
13747 F:      Documentation/devicetree/bindings/regulator/mcp16502-regulator.txt
13748 F:      drivers/regulator/mcp16502.c
13749
13750 MICROCHIP MCP3911 ADC DRIVER
13751 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
13752 M:      Kent Gustavsson <kent@minoris.se>
13753 L:      linux-iio@vger.kernel.org
13754 S:      Maintained
13755 F:      Documentation/devicetree/bindings/iio/adc/microchip,mcp3911.yaml
13756 F:      drivers/iio/adc/mcp3911.c
13757
13758 MICROCHIP MMC/SD/SDIO MCI DRIVER
13759 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
13760 S:      Maintained
13761 F:      drivers/mmc/host/atmel-mci.c
13762
13763 MICROCHIP NAND DRIVER
13764 M:      Tudor Ambarus <tudor.ambarus@linaro.org>
13765 L:      linux-mtd@lists.infradead.org
13766 S:      Supported
13767 F:      Documentation/devicetree/bindings/mtd/atmel-nand.txt
13768 F:      drivers/mtd/nand/raw/atmel/*
13769
13770 MICROCHIP PCI1XXXX GP DRIVER
13771 M:      Kumaravel Thiagarajan <kumaravel.thiagarajan@microchip.com>
13772 L:      linux-gpio@vger.kernel.org
13773 S:      Supported
13774 F:      drivers/misc/mchp_pci1xxxx/mchp_pci1xxxx_gp.c
13775 F:      drivers/misc/mchp_pci1xxxx/mchp_pci1xxxx_gp.h
13776 F:      drivers/misc/mchp_pci1xxxx/mchp_pci1xxxx_gpio.c
13777
13778 MICROCHIP OTPC DRIVER
13779 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
13780 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13781 S:      Supported
13782 F:      Documentation/devicetree/bindings/nvmem/microchip,sama7g5-otpc.yaml
13783 F:      drivers/nvmem/microchip-otpc.c
13784 F:      include/dt-bindings/nvmem/microchip,sama7g5-otpc.h
13785
13786 MICROCHIP PCI1XXXX I2C DRIVER
13787 M:      Tharun Kumar P <tharunkumar.pasumarthi@microchip.com>
13788 M:      Kumaravel Thiagarajan <kumaravel.thiagarajan@microchip.com>
13789 M:      Microchip Linux Driver Support <UNGLinuxDriver@microchip.com>
13790 L:      linux-i2c@vger.kernel.org
13791 S:      Maintained
13792 F:      drivers/i2c/busses/i2c-mchp-pci1xxxx.c
13793
13794 MICROCHIP PCIe UART DRIVER
13795 M:      Kumaravel Thiagarajan <kumaravel.thiagarajan@microchip.com>
13796 M:      Tharun Kumar P <tharunkumar.pasumarthi@microchip.com>
13797 L:      linux-serial@vger.kernel.org
13798 S:      Maintained
13799 F:      drivers/tty/serial/8250/8250_pci1xxxx.c
13800
13801 MICROCHIP PWM DRIVER
13802 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
13803 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13804 L:      linux-pwm@vger.kernel.org
13805 S:      Supported
13806 F:      Documentation/devicetree/bindings/pwm/atmel,at91sam-pwm.yaml
13807 F:      drivers/pwm/pwm-atmel.c
13808
13809 MICROCHIP SAMA5D2-COMPATIBLE ADC DRIVER
13810 M:      Eugen Hristev <eugen.hristev@microchip.com>
13811 L:      linux-iio@vger.kernel.org
13812 S:      Supported
13813 F:      Documentation/devicetree/bindings/iio/adc/atmel,sama5d2-adc.yaml
13814 F:      drivers/iio/adc/at91-sama5d2_adc.c
13815 F:      include/dt-bindings/iio/adc/at91-sama5d2_adc.h
13816
13817 MICROCHIP SAMA5D2-COMPATIBLE SHUTDOWN CONTROLLER
13818 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
13819 S:      Supported
13820 F:      drivers/power/reset/at91-sama5d2_shdwc.c
13821
13822 MICROCHIP SPI DRIVER
13823 M:      Tudor Ambarus <tudor.ambarus@linaro.org>
13824 S:      Supported
13825 F:      drivers/spi/spi-atmel.*
13826
13827 MICROCHIP SSC DRIVER
13828 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
13829 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13830 S:      Supported
13831 F:      drivers/misc/atmel-ssc.c
13832 F:      include/linux/atmel-ssc.h
13833
13834 MICROCHIP SOC DRIVERS
13835 M:      Conor Dooley <conor@kernel.org>
13836 S:      Supported
13837 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/conor/linux.git/
13838 F:      drivers/soc/microchip/
13839
13840 MICROCHIP USB251XB DRIVER
13841 M:      Richard Leitner <richard.leitner@skidata.com>
13842 L:      linux-usb@vger.kernel.org
13843 S:      Maintained
13844 F:      Documentation/devicetree/bindings/usb/usb251xb.yaml
13845 F:      drivers/usb/misc/usb251xb.c
13846
13847 MICROCHIP USBA UDC DRIVER
13848 M:      Cristian Birsan <cristian.birsan@microchip.com>
13849 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13850 S:      Supported
13851 F:      drivers/usb/gadget/udc/atmel_usba_udc.*
13852
13853 MICROCHIP WILC1000 WIFI DRIVER
13854 M:      Ajay Singh <ajay.kathat@microchip.com>
13855 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
13856 L:      linux-wireless@vger.kernel.org
13857 S:      Supported
13858 F:      drivers/net/wireless/microchip/wilc1000/
13859
13860 MICROSEMI MIPS SOCS
13861 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
13862 M:      UNGLinuxDriver@microchip.com
13863 L:      linux-mips@vger.kernel.org
13864 S:      Supported
13865 F:      Documentation/devicetree/bindings/mips/mscc.txt
13866 F:      Documentation/devicetree/bindings/phy/mscc,vsc7514-serdes.yaml
13867 F:      Documentation/devicetree/bindings/power/reset/ocelot-reset.txt
13868 F:      arch/mips/boot/dts/mscc/
13869 F:      arch/mips/configs/generic/board-ocelot.config
13870 F:      arch/mips/generic/board-ocelot.c
13871
13872 MICROSEMI SMART ARRAY SMARTPQI DRIVER (smartpqi)
13873 M:      Don Brace <don.brace@microchip.com>
13874 L:      storagedev@microchip.com
13875 L:      linux-scsi@vger.kernel.org
13876 S:      Supported
13877 F:      Documentation/scsi/smartpqi.rst
13878 F:      drivers/scsi/smartpqi/Kconfig
13879 F:      drivers/scsi/smartpqi/Makefile
13880 F:      drivers/scsi/smartpqi/smartpqi*.[ch]
13881 F:      include/linux/cciss*.h
13882 F:      include/uapi/linux/cciss*.h
13883
13884 MICROSOFT MANA RDMA DRIVER
13885 M:      Long Li <longli@microsoft.com>
13886 M:      Ajay Sharma <sharmaajay@microsoft.com>
13887 L:      linux-rdma@vger.kernel.org
13888 S:      Supported
13889 F:      drivers/infiniband/hw/mana/
13890 F:      include/net/mana
13891 F:      include/uapi/rdma/mana-abi.h
13892
13893 MICROSOFT SURFACE AGGREGATOR TABLET-MODE SWITCH
13894 M:      Maximilian Luz <luzmaximilian@gmail.com>
13895 L:      platform-driver-x86@vger.kernel.org
13896 S:      Maintained
13897 F:      drivers/platform/surface/surface_aggregator_tabletsw.c
13898
13899 MICROSOFT SURFACE BATTERY AND AC DRIVERS
13900 M:      Maximilian Luz <luzmaximilian@gmail.com>
13901 L:      linux-pm@vger.kernel.org
13902 L:      platform-driver-x86@vger.kernel.org
13903 S:      Maintained
13904 F:      drivers/power/supply/surface_battery.c
13905 F:      drivers/power/supply/surface_charger.c
13906
13907 MICROSOFT SURFACE DTX DRIVER
13908 M:      Maximilian Luz <luzmaximilian@gmail.com>
13909 L:      platform-driver-x86@vger.kernel.org
13910 S:      Maintained
13911 F:      Documentation/driver-api/surface_aggregator/clients/dtx.rst
13912 F:      drivers/platform/surface/surface_dtx.c
13913 F:      include/uapi/linux/surface_aggregator/dtx.h
13914
13915 MICROSOFT SURFACE GPE LID SUPPORT DRIVER
13916 M:      Maximilian Luz <luzmaximilian@gmail.com>
13917 L:      platform-driver-x86@vger.kernel.org
13918 S:      Maintained
13919 F:      drivers/platform/surface/surface_gpe.c
13920
13921 MICROSOFT SURFACE HARDWARE PLATFORM SUPPORT
13922 M:      Hans de Goede <hdegoede@redhat.com>
13923 M:      Mark Gross <markgross@kernel.org>
13924 M:      Maximilian Luz <luzmaximilian@gmail.com>
13925 L:      platform-driver-x86@vger.kernel.org
13926 S:      Maintained
13927 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
13928 F:      drivers/platform/surface/
13929
13930 MICROSOFT SURFACE HID TRANSPORT DRIVER
13931 M:      Maximilian Luz <luzmaximilian@gmail.com>
13932 L:      linux-input@vger.kernel.org
13933 L:      platform-driver-x86@vger.kernel.org
13934 S:      Maintained
13935 F:      drivers/hid/surface-hid/
13936
13937 MICROSOFT SURFACE HOT-PLUG DRIVER
13938 M:      Maximilian Luz <luzmaximilian@gmail.com>
13939 L:      platform-driver-x86@vger.kernel.org
13940 S:      Maintained
13941 F:      drivers/platform/surface/surface_hotplug.c
13942
13943 MICROSOFT SURFACE PLATFORM PROFILE DRIVER
13944 M:      Maximilian Luz <luzmaximilian@gmail.com>
13945 L:      platform-driver-x86@vger.kernel.org
13946 S:      Maintained
13947 F:      drivers/platform/surface/surface_platform_profile.c
13948
13949 MICROSOFT SURFACE PRO 3 BUTTON DRIVER
13950 M:      Chen Yu <yu.c.chen@intel.com>
13951 L:      platform-driver-x86@vger.kernel.org
13952 S:      Supported
13953 F:      drivers/platform/surface/surfacepro3_button.c
13954
13955 MICROSOFT SURFACE SYSTEM AGGREGATOR SUBSYSTEM
13956 M:      Maximilian Luz <luzmaximilian@gmail.com>
13957 L:      platform-driver-x86@vger.kernel.org
13958 S:      Maintained
13959 W:      https://github.com/linux-surface/surface-aggregator-module
13960 C:      irc://irc.libera.chat/linux-surface
13961 F:      Documentation/driver-api/surface_aggregator/
13962 F:      drivers/platform/surface/aggregator/
13963 F:      drivers/platform/surface/surface_acpi_notify.c
13964 F:      drivers/platform/surface/surface_aggregator_cdev.c
13965 F:      drivers/platform/surface/surface_aggregator_registry.c
13966 F:      include/linux/surface_acpi_notify.h
13967 F:      include/linux/surface_aggregator/
13968 F:      include/uapi/linux/surface_aggregator/
13969
13970 MICROSOFT SURFACE SYSTEM AGGREGATOR HUB DRIVER
13971 M:      Maximilian Luz <luzmaximilian@gmail.com>
13972 L:      platform-driver-x86@vger.kernel.org
13973 S:      Maintained
13974 F:      drivers/platform/surface/surface_aggregator_hub.c
13975
13976 MICROTEK X6 SCANNER
13977 M:      Oliver Neukum <oliver@neukum.org>
13978 S:      Maintained
13979 F:      drivers/usb/image/microtek.*
13980
13981 MIKROTIK CRS3XX 98DX3236 BOARD SUPPORT
13982 M:      Luka Kovacic <luka.kovacic@sartura.hr>
13983 M:      Luka Perkov <luka.perkov@sartura.hr>
13984 S:      Maintained
13985 F:      arch/arm/boot/dts/armada-xp-crs305-1g-4s-bit.dts
13986 F:      arch/arm/boot/dts/armada-xp-crs305-1g-4s.dts
13987 F:      arch/arm/boot/dts/armada-xp-crs326-24g-2s-bit.dts
13988 F:      arch/arm/boot/dts/armada-xp-crs326-24g-2s.dts
13989 F:      arch/arm/boot/dts/armada-xp-crs328-4c-20s-4s-bit.dts
13990 F:      arch/arm/boot/dts/armada-xp-crs328-4c-20s-4s.dts
13991
13992 MIPI CCS, SMIA AND SMIA++ IMAGE SENSOR DRIVER
13993 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
13994 L:      linux-media@vger.kernel.org
13995 S:      Maintained
13996 F:      Documentation/devicetree/bindings/media/i2c/mipi-ccs.yaml
13997 F:      Documentation/driver-api/media/drivers/ccs/
13998 F:      Documentation/userspace-api/media/drivers/ccs.rst
13999 F:      drivers/media/i2c/ccs-pll.c
14000 F:      drivers/media/i2c/ccs-pll.h
14001 F:      drivers/media/i2c/ccs/
14002 F:      include/uapi/linux/ccs.h
14003 F:      include/uapi/linux/smiapp.h
14004
14005 MIPS
14006 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
14007 L:      linux-mips@vger.kernel.org
14008 S:      Maintained
14009 W:      http://www.linux-mips.org/
14010 Q:      https://patchwork.kernel.org/project/linux-mips/list/
14011 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mips/linux.git
14012 F:      Documentation/devicetree/bindings/mips/
14013 F:      Documentation/mips/
14014 F:      arch/mips/
14015 F:      drivers/platform/mips/
14016 F:      include/dt-bindings/mips/
14017
14018 MIPS BOSTON DEVELOPMENT BOARD
14019 M:      Paul Burton <paulburton@kernel.org>
14020 L:      linux-mips@vger.kernel.org
14021 S:      Maintained
14022 F:      Documentation/devicetree/bindings/clock/img,boston-clock.txt
14023 F:      arch/mips/boot/dts/img/boston.dts
14024 F:      arch/mips/configs/generic/board-boston.config
14025 F:      drivers/clk/imgtec/clk-boston.c
14026 F:      include/dt-bindings/clock/boston-clock.h
14027
14028 MIPS CORE DRIVERS
14029 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
14030 M:      Serge Semin <fancer.lancer@gmail.com>
14031 L:      linux-mips@vger.kernel.org
14032 S:      Supported
14033 F:      drivers/bus/mips_cdmm.c
14034 F:      drivers/clocksource/mips-gic-timer.c
14035 F:      drivers/cpuidle/cpuidle-cps.c
14036 F:      drivers/irqchip/irq-mips-cpu.c
14037 F:      drivers/irqchip/irq-mips-gic.c
14038
14039 MIPS GENERIC PLATFORM
14040 M:      Paul Burton <paulburton@kernel.org>
14041 L:      linux-mips@vger.kernel.org
14042 S:      Supported
14043 F:      Documentation/devicetree/bindings/power/mti,mips-cpc.yaml
14044 F:      arch/mips/generic/
14045 F:      arch/mips/tools/generic-board-config.sh
14046
14047 MIPS RINT INSTRUCTION EMULATION
14048 M:      Aleksandar Markovic <aleksandar.markovic@mips.com>
14049 L:      linux-mips@vger.kernel.org
14050 S:      Supported
14051 F:      arch/mips/math-emu/dp_rint.c
14052 F:      arch/mips/math-emu/sp_rint.c
14053
14054 MIPS/LOONGSON1 ARCHITECTURE
14055 M:      Keguang Zhang <keguang.zhang@gmail.com>
14056 L:      linux-mips@vger.kernel.org
14057 S:      Maintained
14058 F:      arch/mips/include/asm/mach-loongson32/
14059 F:      arch/mips/loongson32/
14060 F:      drivers/*/*/*loongson1*
14061 F:      drivers/*/*loongson1*
14062
14063 MIPS/LOONGSON2EF ARCHITECTURE
14064 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
14065 L:      linux-mips@vger.kernel.org
14066 S:      Maintained
14067 F:      arch/mips/include/asm/mach-loongson2ef/
14068 F:      arch/mips/loongson2ef/
14069 F:      drivers/cpufreq/loongson2_cpufreq.c
14070
14071 MIPS/LOONGSON64 ARCHITECTURE
14072 M:      Huacai Chen <chenhuacai@kernel.org>
14073 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
14074 L:      linux-mips@vger.kernel.org
14075 S:      Maintained
14076 F:      arch/mips/include/asm/mach-loongson64/
14077 F:      arch/mips/loongson64/
14078 F:      drivers/irqchip/irq-loongson*
14079 F:      drivers/platform/mips/cpu_hwmon.c
14080
14081 MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
14082 M:      Hans Verkuil <hverkuil@xs4all.nl>
14083 L:      linux-media@vger.kernel.org
14084 S:      Odd Fixes
14085 W:      https://linuxtv.org
14086 T:      git git://linuxtv.org/media_tree.git
14087 F:      drivers/media/radio/radio-miropcm20*
14088
14089 MMP SUPPORT
14090 R:      Lubomir Rintel <lkundrak@v3.sk>
14091 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14092 S:      Odd Fixes
14093 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lkundrak/linux-mmp.git
14094 F:      arch/arm/boot/dts/mmp*
14095 F:      arch/arm/mach-mmp/
14096 F:      include/linux/soc/mmp/
14097
14098 MMP USB PHY DRIVERS
14099 R:      Lubomir Rintel <lkundrak@v3.sk>
14100 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14101 S:      Maintained
14102 F:      drivers/phy/marvell/phy-mmp3-usb.c
14103 F:      drivers/phy/marvell/phy-pxa-usb.c
14104
14105 MMU GATHER AND TLB INVALIDATION
14106 M:      Will Deacon <will@kernel.org>
14107 M:      "Aneesh Kumar K.V" <aneesh.kumar@linux.ibm.com>
14108 M:      Andrew Morton <akpm@linux-foundation.org>
14109 M:      Nick Piggin <npiggin@gmail.com>
14110 M:      Peter Zijlstra <peterz@infradead.org>
14111 L:      linux-arch@vger.kernel.org
14112 L:      linux-mm@kvack.org
14113 S:      Maintained
14114 F:      arch/*/include/asm/tlb.h
14115 F:      include/asm-generic/tlb.h
14116 F:      mm/mmu_gather.c
14117
14118 MN88472 MEDIA DRIVER
14119 M:      Antti Palosaari <crope@iki.fi>
14120 L:      linux-media@vger.kernel.org
14121 S:      Maintained
14122 W:      https://linuxtv.org
14123 W:      http://palosaari.fi/linux/
14124 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14125 F:      drivers/media/dvb-frontends/mn88472*
14126
14127 MN88473 MEDIA DRIVER
14128 M:      Antti Palosaari <crope@iki.fi>
14129 L:      linux-media@vger.kernel.org
14130 S:      Maintained
14131 W:      https://linuxtv.org
14132 W:      http://palosaari.fi/linux/
14133 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14134 F:      drivers/media/dvb-frontends/mn88473*
14135
14136 MODULE SUPPORT
14137 M:      Luis Chamberlain <mcgrof@kernel.org>
14138 L:      linux-modules@vger.kernel.org
14139 L:      linux-kernel@vger.kernel.org
14140 S:      Maintained
14141 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mcgrof/linux.git modules-next
14142 F:      include/linux/module.h
14143 F:      kernel/module/
14144 F:      scripts/module*
14145
14146 MONOLITHIC POWER SYSTEM PMIC DRIVER
14147 M:      Saravanan Sekar <sravanhome@gmail.com>
14148 S:      Maintained
14149 F:      Documentation/devicetree/bindings/mfd/mps,mp2629.yaml
14150 F:      Documentation/devicetree/bindings/regulator/mps,mp*.yaml
14151 F:      drivers/hwmon/pmbus/mpq7932.c
14152 F:      drivers/iio/adc/mp2629_adc.c
14153 F:      drivers/mfd/mp2629.c
14154 F:      drivers/power/supply/mp2629_charger.c
14155 F:      drivers/regulator/mp5416.c
14156 F:      drivers/regulator/mpq7920.c
14157 F:      drivers/regulator/mpq7920.h
14158 F:      include/linux/mfd/mp2629.h
14159
14160 MOST(R) TECHNOLOGY DRIVER
14161 M:      Parthiban Veerasooran <parthiban.veerasooran@microchip.com>
14162 M:      Christian Gromm <christian.gromm@microchip.com>
14163 S:      Maintained
14164 F:      Documentation/ABI/testing/configfs-most
14165 F:      Documentation/ABI/testing/sysfs-bus-most
14166 F:      drivers/most/
14167 F:      drivers/staging/most/
14168 F:      include/linux/most.h
14169
14170 MOTORCOMM PHY DRIVER
14171 M:      Peter Geis <pgwipeout@gmail.com>
14172 M:      Frank <Frank.Sae@motor-comm.com>
14173 L:      netdev@vger.kernel.org
14174 S:      Maintained
14175 F:      Documentation/devicetree/bindings/net/motorcomm,yt8xxx.yaml
14176 F:      drivers/net/phy/motorcomm.c
14177
14178 MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
14179 M:      Jiri Slaby <jirislaby@kernel.org>
14180 S:      Maintained
14181 F:      Documentation/driver-api/tty/moxa-smartio.rst
14182 F:      drivers/tty/mxser.*
14183
14184 MR800 AVERMEDIA USB FM RADIO DRIVER
14185 M:      Alexey Klimov <klimov.linux@gmail.com>
14186 L:      linux-media@vger.kernel.org
14187 S:      Maintained
14188 T:      git git://linuxtv.org/media_tree.git
14189 F:      drivers/media/radio/radio-mr800.c
14190
14191 MRF24J40 IEEE 802.15.4 RADIO DRIVER
14192 M:      Stefan Schmidt <stefan@datenfreihafen.org>
14193 L:      linux-wpan@vger.kernel.org
14194 S:      Odd Fixes
14195 F:      Documentation/devicetree/bindings/net/ieee802154/mrf24j40.txt
14196 F:      drivers/net/ieee802154/mrf24j40.c
14197
14198 MSI EC DRIVER
14199 M:      Nikita Kravets <teackot@gmail.com>
14200 L:      platform-driver-x86@vger.kernel.org
14201 S:      Maintained
14202 W:      https://github.com/BeardOverflow/msi-ec
14203 F:      drivers/platform/x86/msi-ec.*
14204
14205 MSI LAPTOP SUPPORT
14206 M:      "Lee, Chun-Yi" <jlee@suse.com>
14207 L:      platform-driver-x86@vger.kernel.org
14208 S:      Maintained
14209 F:      drivers/platform/x86/msi-laptop.c
14210
14211 MSI WMI SUPPORT
14212 L:      platform-driver-x86@vger.kernel.org
14213 S:      Orphan
14214 F:      drivers/platform/x86/msi-wmi.c
14215
14216 MSI001 MEDIA DRIVER
14217 M:      Antti Palosaari <crope@iki.fi>
14218 L:      linux-media@vger.kernel.org
14219 S:      Maintained
14220 W:      https://linuxtv.org
14221 W:      http://palosaari.fi/linux/
14222 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14223 T:      git git://linuxtv.org/anttip/media_tree.git
14224 F:      drivers/media/tuners/msi001*
14225
14226 MSI2500 MEDIA DRIVER
14227 M:      Antti Palosaari <crope@iki.fi>
14228 L:      linux-media@vger.kernel.org
14229 S:      Maintained
14230 W:      https://linuxtv.org
14231 W:      http://palosaari.fi/linux/
14232 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14233 T:      git git://linuxtv.org/anttip/media_tree.git
14234 F:      drivers/media/usb/msi2500/
14235
14236 MSTAR INTERRUPT CONTROLLER DRIVER
14237 M:      Mark-PK Tsai <mark-pk.tsai@mediatek.com>
14238 M:      Daniel Palmer <daniel@thingy.jp>
14239 S:      Maintained
14240 F:      Documentation/devicetree/bindings/interrupt-controller/mstar,mst-intc.yaml
14241 F:      drivers/irqchip/irq-mst-intc.c
14242
14243 MSYSTEMS DISKONCHIP G3 MTD DRIVER
14244 M:      Robert Jarzmik <robert.jarzmik@free.fr>
14245 L:      linux-mtd@lists.infradead.org
14246 S:      Maintained
14247 F:      drivers/mtd/devices/docg3*
14248
14249 MT9P031 APTINA CAMERA SENSOR
14250 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
14251 L:      linux-media@vger.kernel.org
14252 S:      Maintained
14253 T:      git git://linuxtv.org/media_tree.git
14254 F:      Documentation/devicetree/bindings/media/i2c/aptina,mt9p031.yaml
14255 F:      drivers/media/i2c/mt9p031.c
14256 F:      include/media/i2c/mt9p031.h
14257
14258 MT9T112 APTINA CAMERA SENSOR
14259 M:      Jacopo Mondi <jacopo@jmondi.org>
14260 L:      linux-media@vger.kernel.org
14261 S:      Odd Fixes
14262 T:      git git://linuxtv.org/media_tree.git
14263 F:      drivers/media/i2c/mt9t112.c
14264 F:      include/media/i2c/mt9t112.h
14265
14266 MT9V032 APTINA CAMERA SENSOR
14267 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
14268 L:      linux-media@vger.kernel.org
14269 S:      Maintained
14270 T:      git git://linuxtv.org/media_tree.git
14271 F:      Documentation/devicetree/bindings/media/i2c/mt9v032.txt
14272 F:      drivers/media/i2c/mt9v032.c
14273 F:      include/media/i2c/mt9v032.h
14274
14275 MT9V111 APTINA CAMERA SENSOR
14276 M:      Jacopo Mondi <jacopo@jmondi.org>
14277 L:      linux-media@vger.kernel.org
14278 S:      Maintained
14279 T:      git git://linuxtv.org/media_tree.git
14280 F:      Documentation/devicetree/bindings/media/i2c/aptina,mt9v111.yaml
14281 F:      drivers/media/i2c/mt9v111.c
14282
14283 MULTIFUNCTION DEVICES (MFD)
14284 M:      Lee Jones <lee@kernel.org>
14285 S:      Maintained
14286 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
14287 F:      Documentation/devicetree/bindings/mfd/
14288 F:      drivers/mfd/
14289 F:      include/dt-bindings/mfd/
14290 F:      include/linux/mfd/
14291
14292 MULTIMEDIA CARD (MMC) ETC. OVER SPI
14293 S:      Orphan
14294 F:      drivers/mmc/host/mmc_spi.c
14295 F:      include/linux/spi/mmc_spi.h
14296
14297 MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
14298 M:      Ulf Hansson <ulf.hansson@linaro.org>
14299 L:      linux-mmc@vger.kernel.org
14300 S:      Maintained
14301 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
14302 F:      Documentation/devicetree/bindings/mmc/
14303 F:      drivers/mmc/
14304 F:      include/linux/mmc/
14305 F:      include/uapi/linux/mmc/
14306
14307 MULTIPLEXER SUBSYSTEM
14308 M:      Peter Rosin <peda@axentia.se>
14309 S:      Maintained
14310 F:      Documentation/ABI/testing/sysfs-class-mux*
14311 F:      Documentation/devicetree/bindings/mux/
14312 F:      drivers/mux/
14313 F:      include/dt-bindings/mux/
14314 F:      include/linux/mux/
14315
14316 MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
14317 M:      Bin Liu <b-liu@ti.com>
14318 L:      linux-usb@vger.kernel.org
14319 S:      Maintained
14320 F:      drivers/usb/musb/
14321
14322 MXL301RF MEDIA DRIVER
14323 M:      Akihiro Tsukada <tskd08@gmail.com>
14324 L:      linux-media@vger.kernel.org
14325 S:      Odd Fixes
14326 F:      drivers/media/tuners/mxl301rf*
14327
14328 MXL5007T MEDIA DRIVER
14329 M:      Michael Krufky <mkrufky@linuxtv.org>
14330 L:      linux-media@vger.kernel.org
14331 S:      Maintained
14332 W:      https://linuxtv.org
14333 W:      http://github.com/mkrufky
14334 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14335 T:      git git://linuxtv.org/mkrufky/tuners.git
14336 F:      drivers/media/tuners/mxl5007t.*
14337
14338 MXSFB DRM DRIVER
14339 M:      Marek Vasut <marex@denx.de>
14340 M:      Stefan Agner <stefan@agner.ch>
14341 L:      dri-devel@lists.freedesktop.org
14342 S:      Supported
14343 T:      git git://anongit.freedesktop.org/drm/drm-misc
14344 F:      Documentation/devicetree/bindings/display/fsl,lcdif.yaml
14345 F:      drivers/gpu/drm/mxsfb/
14346
14347 MYLEX DAC960 PCI RAID Controller
14348 M:      Hannes Reinecke <hare@kernel.org>
14349 L:      linux-scsi@vger.kernel.org
14350 S:      Supported
14351 F:      drivers/scsi/myrb.*
14352 F:      drivers/scsi/myrs.*
14353
14354 MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
14355 M:      Chris Lee <christopher.lee@cspi.com>
14356 L:      netdev@vger.kernel.org
14357 S:      Supported
14358 W:      https://www.cspi.com/ethernet-products/support/downloads/
14359 F:      drivers/net/ethernet/myricom/myri10ge/
14360
14361 NAND FLASH SUBSYSTEM
14362 M:      Miquel Raynal <miquel.raynal@bootlin.com>
14363 R:      Richard Weinberger <richard@nod.at>
14364 L:      linux-mtd@lists.infradead.org
14365 S:      Maintained
14366 W:      http://www.linux-mtd.infradead.org/
14367 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
14368 C:      irc://irc.oftc.net/mtd
14369 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git nand/next
14370 F:      drivers/mtd/nand/
14371 F:      include/linux/mtd/*nand*.h
14372
14373 NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
14374 M:      Daniel Mack <zonque@gmail.com>
14375 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
14376 S:      Maintained
14377 W:      http://www.native-instruments.com
14378 F:      sound/usb/caiaq/
14379
14380 NATSEMI ETHERNET DRIVER (DP8381x)
14381 S:      Orphan
14382 F:      drivers/net/ethernet/natsemi/natsemi.c
14383
14384 NCR 5380 SCSI DRIVERS
14385 M:      Finn Thain <fthain@linux-m68k.org>
14386 M:      Michael Schmitz <schmitzmic@gmail.com>
14387 L:      linux-scsi@vger.kernel.org
14388 S:      Maintained
14389 F:      Documentation/scsi/g_NCR5380.rst
14390 F:      drivers/scsi/NCR5380.*
14391 F:      drivers/scsi/arm/cumana_1.c
14392 F:      drivers/scsi/arm/oak.c
14393 F:      drivers/scsi/atari_scsi.*
14394 F:      drivers/scsi/dmx3191d.c
14395 F:      drivers/scsi/g_NCR5380.*
14396 F:      drivers/scsi/mac_scsi.*
14397 F:      drivers/scsi/sun3_scsi.*
14398 F:      drivers/scsi/sun3_scsi_vme.c
14399
14400 NCSI LIBRARY
14401 M:      Samuel Mendoza-Jonas <sam@mendozajonas.com>
14402 S:      Maintained
14403 F:      net/ncsi/
14404
14405 NCT6775 HARDWARE MONITOR DRIVER - CORE & PLATFORM DRIVER
14406 M:      Guenter Roeck <linux@roeck-us.net>
14407 L:      linux-hwmon@vger.kernel.org
14408 S:      Maintained
14409 F:      Documentation/hwmon/nct6775.rst
14410 F:      drivers/hwmon/nct6775-core.c
14411 F:      drivers/hwmon/nct6775-platform.c
14412 F:      drivers/hwmon/nct6775.h
14413
14414 NCT6775 HARDWARE MONITOR DRIVER - I2C DRIVER
14415 M:      Zev Weiss <zev@bewilderbeest.net>
14416 L:      linux-hwmon@vger.kernel.org
14417 S:      Maintained
14418 F:      Documentation/devicetree/bindings/hwmon/nuvoton,nct6775.yaml
14419 F:      drivers/hwmon/nct6775-i2c.c
14420
14421 NETDEVSIM
14422 M:      Jakub Kicinski <kuba@kernel.org>
14423 S:      Maintained
14424 F:      drivers/net/netdevsim/*
14425
14426 NETEM NETWORK EMULATOR
14427 M:      Stephen Hemminger <stephen@networkplumber.org>
14428 L:      netdev@vger.kernel.org
14429 S:      Maintained
14430 F:      net/sched/sch_netem.c
14431
14432 NETERION 10GbE DRIVERS (s2io)
14433 M:      Jon Mason <jdmason@kudzu.us>
14434 L:      netdev@vger.kernel.org
14435 S:      Supported
14436 F:      Documentation/networking/device_drivers/ethernet/neterion/s2io.rst
14437 F:      drivers/net/ethernet/neterion/
14438
14439 NETFILTER
14440 M:      Pablo Neira Ayuso <pablo@netfilter.org>
14441 M:      Jozsef Kadlecsik <kadlec@netfilter.org>
14442 M:      Florian Westphal <fw@strlen.de>
14443 L:      netfilter-devel@vger.kernel.org
14444 L:      coreteam@netfilter.org
14445 S:      Maintained
14446 W:      http://www.netfilter.org/
14447 W:      http://www.iptables.org/
14448 W:      http://www.nftables.org/
14449 Q:      http://patchwork.ozlabs.org/project/netfilter-devel/list/
14450 C:      irc://irc.libera.chat/netfilter
14451 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netfilter/nf.git
14452 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netfilter/nf-next.git
14453 F:      include/linux/netfilter*
14454 F:      include/linux/netfilter/
14455 F:      include/net/netfilter/
14456 F:      include/uapi/linux/netfilter*
14457 F:      include/uapi/linux/netfilter/
14458 F:      net/*/netfilter.c
14459 F:      net/*/netfilter/
14460 F:      net/bridge/br_netfilter*.c
14461 F:      net/netfilter/
14462
14463 NETROM NETWORK LAYER
14464 M:      Ralf Baechle <ralf@linux-mips.org>
14465 L:      linux-hams@vger.kernel.org
14466 S:      Maintained
14467 W:      http://www.linux-ax25.org/
14468 F:      include/net/netrom.h
14469 F:      include/uapi/linux/netrom.h
14470 F:      net/netrom/
14471
14472 NETRONIX EMBEDDED CONTROLLER
14473 M:      Jonathan Neuschäfer <j.neuschaefer@gmx.net>
14474 S:      Maintained
14475 F:      Documentation/devicetree/bindings/mfd/netronix,ntxec.yaml
14476 F:      drivers/mfd/ntxec.c
14477 F:      drivers/pwm/pwm-ntxec.c
14478 F:      drivers/rtc/rtc-ntxec.c
14479 F:      include/linux/mfd/ntxec.h
14480
14481 NETRONOME ETHERNET DRIVERS
14482 M:      Simon Horman <simon.horman@corigine.com>
14483 R:      Jakub Kicinski <kuba@kernel.org>
14484 L:      oss-drivers@corigine.com
14485 S:      Maintained
14486 F:      drivers/net/ethernet/netronome/
14487
14488 NETWORK BLOCK DEVICE (NBD)
14489 M:      Josef Bacik <josef@toxicpanda.com>
14490 L:      linux-block@vger.kernel.org
14491 L:      nbd@other.debian.org
14492 S:      Maintained
14493 F:      Documentation/admin-guide/blockdev/nbd.rst
14494 F:      drivers/block/nbd.c
14495 F:      include/trace/events/nbd.h
14496 F:      include/uapi/linux/nbd.h
14497
14498 NETWORK DROP MONITOR
14499 M:      Neil Horman <nhorman@tuxdriver.com>
14500 L:      netdev@vger.kernel.org
14501 S:      Maintained
14502 W:      https://fedorahosted.org/dropwatch/
14503 F:      include/uapi/linux/net_dropmon.h
14504 F:      net/core/drop_monitor.c
14505
14506 NETWORKING DRIVERS
14507 M:      "David S. Miller" <davem@davemloft.net>
14508 M:      Eric Dumazet <edumazet@google.com>
14509 M:      Jakub Kicinski <kuba@kernel.org>
14510 M:      Paolo Abeni <pabeni@redhat.com>
14511 L:      netdev@vger.kernel.org
14512 S:      Maintained
14513 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
14514 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
14515 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
14516 F:      Documentation/devicetree/bindings/net/
14517 F:      drivers/connector/
14518 F:      drivers/net/
14519 F:      include/dt-bindings/net/
14520 F:      include/linux/etherdevice.h
14521 F:      include/linux/fcdevice.h
14522 F:      include/linux/fddidevice.h
14523 F:      include/linux/hippidevice.h
14524 F:      include/linux/if_*
14525 F:      include/linux/inetdevice.h
14526 F:      include/linux/netdevice.h
14527 F:      include/uapi/linux/if_*
14528 F:      include/uapi/linux/netdevice.h
14529
14530 NETWORKING DRIVERS (WIRELESS)
14531 M:      Kalle Valo <kvalo@kernel.org>
14532 L:      linux-wireless@vger.kernel.org
14533 S:      Maintained
14534 W:      https://wireless.wiki.kernel.org/
14535 Q:      https://patchwork.kernel.org/project/linux-wireless/list/
14536 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless.git
14537 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless-next.git
14538 F:      Documentation/devicetree/bindings/net/wireless/
14539 F:      drivers/net/wireless/
14540
14541 NETWORKING [DSA]
14542 M:      Andrew Lunn <andrew@lunn.ch>
14543 M:      Florian Fainelli <f.fainelli@gmail.com>
14544 M:      Vladimir Oltean <olteanv@gmail.com>
14545 S:      Maintained
14546 F:      Documentation/devicetree/bindings/net/dsa/
14547 F:      Documentation/devicetree/bindings/net/ethernet-switch-port.yaml
14548 F:      Documentation/devicetree/bindings/net/ethernet-switch.yaml
14549 F:      drivers/net/dsa/
14550 F:      include/linux/dsa/
14551 F:      include/linux/platform_data/dsa.h
14552 F:      include/net/dsa.h
14553 F:      net/dsa/
14554 F:      tools/testing/selftests/drivers/net/dsa/
14555
14556 NETWORKING [GENERAL]
14557 M:      "David S. Miller" <davem@davemloft.net>
14558 M:      Eric Dumazet <edumazet@google.com>
14559 M:      Jakub Kicinski <kuba@kernel.org>
14560 M:      Paolo Abeni <pabeni@redhat.com>
14561 L:      netdev@vger.kernel.org
14562 S:      Maintained
14563 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
14564 B:      mailto:netdev@vger.kernel.org
14565 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
14566 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
14567 F:      Documentation/core-api/netlink.rst
14568 F:      Documentation/networking/
14569 F:      Documentation/process/maintainer-netdev.rst
14570 F:      Documentation/userspace-api/netlink/
14571 F:      include/linux/in.h
14572 F:      include/linux/net.h
14573 F:      include/linux/netdevice.h
14574 F:      include/net/
14575 F:      include/uapi/linux/in.h
14576 F:      include/uapi/linux/net.h
14577 F:      include/uapi/linux/net_namespace.h
14578 F:      include/uapi/linux/netdevice.h
14579 F:      lib/net_utils.c
14580 F:      lib/random32.c
14581 F:      net/
14582 F:      tools/net/
14583 F:      tools/testing/selftests/net/
14584
14585 NETWORKING [IPSEC]
14586 M:      Steffen Klassert <steffen.klassert@secunet.com>
14587 M:      Herbert Xu <herbert@gondor.apana.org.au>
14588 M:      "David S. Miller" <davem@davemloft.net>
14589 L:      netdev@vger.kernel.org
14590 S:      Maintained
14591 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git
14592 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git
14593 F:      include/net/xfrm.h
14594 F:      include/uapi/linux/xfrm.h
14595 F:      net/ipv4/ah4.c
14596 F:      net/ipv4/esp4*
14597 F:      net/ipv4/ip_vti.c
14598 F:      net/ipv4/ipcomp.c
14599 F:      net/ipv4/xfrm*
14600 F:      net/ipv6/ah6.c
14601 F:      net/ipv6/esp6*
14602 F:      net/ipv6/ip6_vti.c
14603 F:      net/ipv6/ipcomp6.c
14604 F:      net/ipv6/xfrm*
14605 F:      net/key/
14606 F:      net/xfrm/
14607 F:      tools/testing/selftests/net/ipsec.c
14608
14609 NETWORKING [IPv4/IPv6]
14610 M:      "David S. Miller" <davem@davemloft.net>
14611 M:      David Ahern <dsahern@kernel.org>
14612 L:      netdev@vger.kernel.org
14613 S:      Maintained
14614 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
14615 F:      arch/x86/net/*
14616 F:      include/linux/ip.h
14617 F:      include/linux/ipv6*
14618 F:      include/net/fib*
14619 F:      include/net/ip*
14620 F:      include/net/route.h
14621 F:      net/ipv4/
14622 F:      net/ipv6/
14623
14624 NETWORKING [LABELED] (NetLabel, Labeled IPsec, SECMARK)
14625 M:      Paul Moore <paul@paul-moore.com>
14626 L:      netdev@vger.kernel.org
14627 L:      linux-security-module@vger.kernel.org
14628 S:      Maintained
14629 W:      https://github.com/netlabel
14630 F:      Documentation/netlabel/
14631 F:      include/net/calipso.h
14632 F:      include/net/cipso_ipv4.h
14633 F:      include/net/netlabel.h
14634 F:      include/uapi/linux/netfilter/xt_CONNSECMARK.h
14635 F:      include/uapi/linux/netfilter/xt_SECMARK.h
14636 F:      net/ipv4/cipso_ipv4.c
14637 F:      net/ipv6/calipso.c
14638 F:      net/netfilter/xt_CONNSECMARK.c
14639 F:      net/netfilter/xt_SECMARK.c
14640 F:      net/netlabel/
14641
14642 NETWORKING [MPTCP]
14643 M:      Matthieu Baerts <matthieu.baerts@tessares.net>
14644 M:      Mat Martineau <martineau@kernel.org>
14645 L:      netdev@vger.kernel.org
14646 L:      mptcp@lists.linux.dev
14647 S:      Maintained
14648 W:      https://github.com/multipath-tcp/mptcp_net-next/wiki
14649 B:      https://github.com/multipath-tcp/mptcp_net-next/issues
14650 T:      git https://github.com/multipath-tcp/mptcp_net-next.git export-net
14651 T:      git https://github.com/multipath-tcp/mptcp_net-next.git export
14652 F:      Documentation/networking/mptcp-sysctl.rst
14653 F:      include/net/mptcp.h
14654 F:      include/trace/events/mptcp.h
14655 F:      include/uapi/linux/mptcp.h
14656 F:      net/mptcp/
14657 F:      tools/testing/selftests/bpf/*/*mptcp*.c
14658 F:      tools/testing/selftests/net/mptcp/
14659
14660 NETWORKING [TCP]
14661 M:      Eric Dumazet <edumazet@google.com>
14662 L:      netdev@vger.kernel.org
14663 S:      Maintained
14664 F:      include/linux/tcp.h
14665 F:      include/net/tcp.h
14666 F:      include/trace/events/tcp.h
14667 F:      include/uapi/linux/tcp.h
14668 F:      net/ipv4/syncookies.c
14669 F:      net/ipv4/tcp*.c
14670 F:      net/ipv6/syncookies.c
14671 F:      net/ipv6/tcp*.c
14672
14673 NETWORKING [TLS]
14674 M:      Boris Pismenny <borisp@nvidia.com>
14675 M:      John Fastabend <john.fastabend@gmail.com>
14676 M:      Jakub Kicinski <kuba@kernel.org>
14677 L:      netdev@vger.kernel.org
14678 S:      Maintained
14679 F:      include/net/tls.h
14680 F:      include/uapi/linux/tls.h
14681 F:      net/tls/*
14682
14683 NETXEN (1/10) GbE SUPPORT
14684 M:      Manish Chopra <manishc@marvell.com>
14685 M:      Rahul Verma <rahulv@marvell.com>
14686 M:      GR-Linux-NIC-Dev@marvell.com
14687 L:      netdev@vger.kernel.org
14688 S:      Supported
14689 F:      drivers/net/ethernet/qlogic/netxen/
14690
14691 NET_FAILOVER MODULE
14692 M:      Sridhar Samudrala <sridhar.samudrala@intel.com>
14693 L:      netdev@vger.kernel.org
14694 S:      Supported
14695 F:      Documentation/networking/net_failover.rst
14696 F:      drivers/net/net_failover.c
14697 F:      include/net/net_failover.h
14698
14699 NEXTHOP
14700 M:      David Ahern <dsahern@kernel.org>
14701 L:      netdev@vger.kernel.org
14702 S:      Maintained
14703 F:      include/net/netns/nexthop.h
14704 F:      include/net/nexthop.h
14705 F:      include/uapi/linux/nexthop.h
14706 F:      net/ipv4/nexthop.c
14707
14708 NFC SUBSYSTEM
14709 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
14710 L:      netdev@vger.kernel.org
14711 S:      Maintained
14712 F:      Documentation/devicetree/bindings/net/nfc/
14713 F:      drivers/nfc/
14714 F:      include/net/nfc/
14715 F:      include/uapi/linux/nfc.h
14716 F:      net/nfc/
14717
14718 NFC VIRTUAL NCI DEVICE DRIVER
14719 M:      Bongsu Jeon <bongsu.jeon@samsung.com>
14720 L:      netdev@vger.kernel.org
14721 S:      Supported
14722 F:      drivers/nfc/virtual_ncidev.c
14723 F:      tools/testing/selftests/nci/
14724
14725 NFS, SUNRPC, AND LOCKD CLIENTS
14726 M:      Trond Myklebust <trond.myklebust@hammerspace.com>
14727 M:      Anna Schumaker <anna@kernel.org>
14728 L:      linux-nfs@vger.kernel.org
14729 S:      Maintained
14730 W:      http://client.linux-nfs.org
14731 T:      git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git
14732 F:      fs/lockd/
14733 F:      fs/nfs/
14734 F:      fs/nfs_common/
14735 F:      include/linux/lockd/
14736 F:      include/linux/nfs*
14737 F:      include/linux/sunrpc/
14738 F:      include/uapi/linux/nfs*
14739 F:      include/uapi/linux/sunrpc/
14740 F:      net/sunrpc/
14741 F:      Documentation/filesystems/nfs/
14742
14743 NILFS2 FILESYSTEM
14744 M:      Ryusuke Konishi <konishi.ryusuke@gmail.com>
14745 L:      linux-nilfs@vger.kernel.org
14746 S:      Supported
14747 W:      https://nilfs.sourceforge.io/
14748 W:      https://nilfs.osdn.jp/
14749 T:      git https://github.com/konis/nilfs2.git
14750 F:      Documentation/filesystems/nilfs2.rst
14751 F:      fs/nilfs2/
14752 F:      include/trace/events/nilfs2.h
14753 F:      include/uapi/linux/nilfs2_api.h
14754 F:      include/uapi/linux/nilfs2_ondisk.h
14755
14756 NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
14757 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
14758 S:      Maintained
14759 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
14760 F:      Documentation/scsi/NinjaSCSI.rst
14761 F:      drivers/scsi/pcmcia/nsp_*
14762
14763 NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
14764 M:      GOTO Masanori <gotom@debian.or.jp>
14765 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
14766 S:      Maintained
14767 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
14768 F:      Documentation/scsi/NinjaSCSI.rst
14769 F:      drivers/scsi/nsp32*
14770
14771 NINTENDO HID DRIVER
14772 M:      Daniel J. Ogorchock <djogorchock@gmail.com>
14773 L:      linux-input@vger.kernel.org
14774 S:      Maintained
14775 F:      drivers/hid/hid-nintendo*
14776
14777 NIOS2 ARCHITECTURE
14778 M:      Dinh Nguyen <dinguyen@kernel.org>
14779 S:      Maintained
14780 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
14781 F:      arch/nios2/
14782
14783 NITRO ENCLAVES (NE)
14784 M:      Alexandru Ciobotaru <alcioa@amazon.com>
14785 L:      linux-kernel@vger.kernel.org
14786 L:      The AWS Nitro Enclaves Team <aws-nitro-enclaves-devel@amazon.com>
14787 S:      Supported
14788 W:      https://aws.amazon.com/ec2/nitro/nitro-enclaves/
14789 F:      Documentation/virt/ne_overview.rst
14790 F:      drivers/virt/nitro_enclaves/
14791 F:      include/linux/nitro_enclaves.h
14792 F:      include/uapi/linux/nitro_enclaves.h
14793 F:      samples/nitro_enclaves/
14794
14795 NOHZ, DYNTICKS SUPPORT
14796 M:      Frederic Weisbecker <frederic@kernel.org>
14797 M:      Thomas Gleixner <tglx@linutronix.de>
14798 M:      Ingo Molnar <mingo@kernel.org>
14799 L:      linux-kernel@vger.kernel.org
14800 S:      Maintained
14801 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/nohz
14802 F:      include/linux/sched/nohz.h
14803 F:      include/linux/tick.h
14804 F:      kernel/time/tick*.*
14805
14806 NOKIA N900 CAMERA SUPPORT (ET8EK8 SENSOR, AD5820 FOCUS)
14807 M:      Pavel Machek <pavel@ucw.cz>
14808 M:      Sakari Ailus <sakari.ailus@iki.fi>
14809 L:      linux-media@vger.kernel.org
14810 S:      Maintained
14811 F:      drivers/media/i2c/ad5820.c
14812 F:      drivers/media/i2c/et8ek8
14813
14814 NOKIA N900 POWER SUPPLY DRIVERS
14815 R:      Pali Rohár <pali@kernel.org>
14816 F:      drivers/power/supply/bq2415x_charger.c
14817 F:      drivers/power/supply/bq27xxx_battery.c
14818 F:      drivers/power/supply/bq27xxx_battery_i2c.c
14819 F:      drivers/power/supply/isp1704_charger.c
14820 F:      drivers/power/supply/rx51_battery.c
14821 F:      include/linux/power/bq2415x_charger.h
14822 F:      include/linux/power/bq27xxx_battery.h
14823
14824 NOLIBC HEADER FILE
14825 M:      Willy Tarreau <w@1wt.eu>
14826 S:      Maintained
14827 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wtarreau/nolibc.git
14828 F:      tools/include/nolibc/
14829 F:      tools/testing/selftests/nolibc/
14830
14831 NSDEPS
14832 M:      Matthias Maennich <maennich@google.com>
14833 S:      Maintained
14834 F:      Documentation/core-api/symbol-namespaces.rst
14835 F:      scripts/nsdeps
14836
14837 NTB AMD DRIVER
14838 M:      Sanjay R Mehta <sanju.mehta@amd.com>
14839 M:      Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
14840 L:      ntb@lists.linux.dev
14841 S:      Supported
14842 F:      drivers/ntb/hw/amd/
14843
14844 NTB DRIVER CORE
14845 M:      Jon Mason <jdmason@kudzu.us>
14846 M:      Dave Jiang <dave.jiang@intel.com>
14847 M:      Allen Hubbe <allenbh@gmail.com>
14848 L:      ntb@lists.linux.dev
14849 S:      Supported
14850 W:      https://github.com/jonmason/ntb/wiki
14851 T:      git git://github.com/jonmason/ntb.git
14852 F:      drivers/net/ntb_netdev.c
14853 F:      drivers/ntb/
14854 F:      drivers/pci/endpoint/functions/pci-epf-*ntb.c
14855 F:      include/linux/ntb.h
14856 F:      include/linux/ntb_transport.h
14857 F:      tools/testing/selftests/ntb/
14858
14859 NTB IDT DRIVER
14860 M:      Serge Semin <fancer.lancer@gmail.com>
14861 L:      ntb@lists.linux.dev
14862 S:      Supported
14863 F:      drivers/ntb/hw/idt/
14864
14865 NTB INTEL DRIVER
14866 M:      Dave Jiang <dave.jiang@intel.com>
14867 L:      ntb@lists.linux.dev
14868 S:      Supported
14869 W:      https://github.com/davejiang/linux/wiki
14870 T:      git https://github.com/davejiang/linux.git
14871 F:      drivers/ntb/hw/intel/
14872
14873 NTFS FILESYSTEM
14874 M:      Anton Altaparmakov <anton@tuxera.com>
14875 L:      linux-ntfs-dev@lists.sourceforge.net
14876 S:      Supported
14877 W:      http://www.tuxera.com/
14878 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
14879 F:      Documentation/filesystems/ntfs.rst
14880 F:      fs/ntfs/
14881
14882 NTFS3 FILESYSTEM
14883 M:      Konstantin Komarov <almaz.alexandrovich@paragon-software.com>
14884 L:      ntfs3@lists.linux.dev
14885 S:      Supported
14886 W:      http://www.paragon-software.com/
14887 T:      git https://github.com/Paragon-Software-Group/linux-ntfs3.git
14888 F:      Documentation/filesystems/ntfs3.rst
14889 F:      fs/ntfs3/
14890
14891 NUBUS SUBSYSTEM
14892 M:      Finn Thain <fthain@linux-m68k.org>
14893 L:      linux-m68k@lists.linux-m68k.org
14894 S:      Maintained
14895 F:      arch/*/include/asm/nubus.h
14896 F:      drivers/nubus/
14897 F:      include/linux/nubus.h
14898 F:      include/uapi/linux/nubus.h
14899
14900 NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
14901 M:      Antonino Daplas <adaplas@gmail.com>
14902 L:      linux-fbdev@vger.kernel.org
14903 S:      Maintained
14904 F:      drivers/video/fbdev/nvidia/
14905 F:      drivers/video/fbdev/riva/
14906
14907 NVIDIA WMI EC BACKLIGHT DRIVER
14908 M:      Daniel Dadap <ddadap@nvidia.com>
14909 L:      platform-driver-x86@vger.kernel.org
14910 S:      Supported
14911 F:      drivers/platform/x86/nvidia-wmi-ec-backlight.c
14912 F:      include/linux/platform_data/x86/nvidia-wmi-ec-backlight.h
14913
14914 NVM EXPRESS DRIVER
14915 M:      Keith Busch <kbusch@kernel.org>
14916 M:      Jens Axboe <axboe@fb.com>
14917 M:      Christoph Hellwig <hch@lst.de>
14918 M:      Sagi Grimberg <sagi@grimberg.me>
14919 L:      linux-nvme@lists.infradead.org
14920 S:      Supported
14921 W:      http://git.infradead.org/nvme.git
14922 T:      git git://git.infradead.org/nvme.git
14923 F:      Documentation/nvme/
14924 F:      drivers/nvme/common/
14925 F:      drivers/nvme/host/
14926 F:      include/linux/nvme-*.h
14927 F:      include/linux/nvme.h
14928 F:      include/uapi/linux/nvme_ioctl.h
14929
14930 NVM EXPRESS FABRICS AUTHENTICATION
14931 M:      Hannes Reinecke <hare@suse.de>
14932 L:      linux-nvme@lists.infradead.org
14933 S:      Supported
14934 F:      drivers/nvme/host/auth.c
14935 F:      drivers/nvme/target/auth.c
14936 F:      drivers/nvme/target/fabrics-cmd-auth.c
14937 F:      include/linux/nvme-auth.h
14938
14939 NVM EXPRESS HARDWARE MONITORING SUPPORT
14940 M:      Guenter Roeck <linux@roeck-us.net>
14941 L:      linux-nvme@lists.infradead.org
14942 S:      Supported
14943 F:      drivers/nvme/host/hwmon.c
14944
14945 NVM EXPRESS FC TRANSPORT DRIVERS
14946 M:      James Smart <james.smart@broadcom.com>
14947 L:      linux-nvme@lists.infradead.org
14948 S:      Supported
14949 F:      drivers/nvme/host/fc.c
14950 F:      drivers/nvme/target/fc.c
14951 F:      drivers/nvme/target/fcloop.c
14952 F:      include/linux/nvme-fc-driver.h
14953 F:      include/linux/nvme-fc.h
14954
14955 NVM EXPRESS TARGET DRIVER
14956 M:      Christoph Hellwig <hch@lst.de>
14957 M:      Sagi Grimberg <sagi@grimberg.me>
14958 M:      Chaitanya Kulkarni <kch@nvidia.com>
14959 L:      linux-nvme@lists.infradead.org
14960 S:      Supported
14961 W:      http://git.infradead.org/nvme.git
14962 T:      git git://git.infradead.org/nvme.git
14963 F:      drivers/nvme/target/
14964
14965 NVMEM FRAMEWORK
14966 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
14967 S:      Maintained
14968 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/srini/nvmem.git
14969 F:      Documentation/ABI/stable/sysfs-bus-nvmem
14970 F:      Documentation/devicetree/bindings/nvmem/
14971 F:      drivers/nvmem/
14972 F:      include/linux/nvmem-consumer.h
14973 F:      include/linux/nvmem-provider.h
14974
14975 NXP C45 TJA11XX PHY DRIVER
14976 M:      Radu Pirea <radu-nicolae.pirea@oss.nxp.com>
14977 L:      netdev@vger.kernel.org
14978 S:      Maintained
14979 F:      drivers/net/phy/nxp-c45-tja11xx.c
14980
14981 NXP FSPI DRIVER
14982 M:      Han Xu <han.xu@nxp.com>
14983 M:      Haibo Chen <haibo.chen@nxp.com>
14984 R:      Yogesh Gaur <yogeshgaur.83@gmail.com>
14985 L:      linux-spi@vger.kernel.org
14986 S:      Maintained
14987 F:      Documentation/devicetree/bindings/spi/spi-nxp-fspi.yaml
14988 F:      drivers/spi/spi-nxp-fspi.c
14989
14990 NXP FXAS21002C DRIVER
14991 M:      Rui Miguel Silva <rmfrfs@gmail.com>
14992 L:      linux-iio@vger.kernel.org
14993 S:      Maintained
14994 F:      Documentation/devicetree/bindings/iio/gyroscope/nxp,fxas21002c.yaml
14995 F:      drivers/iio/gyro/fxas21002c.h
14996 F:      drivers/iio/gyro/fxas21002c_core.c
14997 F:      drivers/iio/gyro/fxas21002c_i2c.c
14998 F:      drivers/iio/gyro/fxas21002c_spi.c
14999
15000 NXP i.MX CLOCK DRIVERS
15001 M:      Abel Vesa <abelvesa@kernel.org>
15002 R:      Peng Fan <peng.fan@nxp.com>
15003 L:      linux-clk@vger.kernel.org
15004 L:      linux-imx@nxp.com
15005 S:      Maintained
15006 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/abelvesa/linux.git clk/imx
15007 F:      Documentation/devicetree/bindings/clock/imx*
15008 F:      drivers/clk/imx/
15009 F:      include/dt-bindings/clock/imx*
15010
15011 NXP i.MX 8M ISI DRIVER
15012 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
15013 L:      linux-media@vger.kernel.org
15014 S:      Maintained
15015 F:      Documentation/devicetree/bindings/media/nxp,imx8-isi.yaml
15016 F:      drivers/media/platform/nxp/imx8-isi/
15017
15018 NXP i.MX 8MQ DCSS DRIVER
15019 M:      Laurentiu Palcu <laurentiu.palcu@oss.nxp.com>
15020 R:      Lucas Stach <l.stach@pengutronix.de>
15021 L:      dri-devel@lists.freedesktop.org
15022 S:      Maintained
15023 F:      Documentation/devicetree/bindings/display/imx/nxp,imx8mq-dcss.yaml
15024 F:      drivers/gpu/drm/imx/dcss/
15025
15026 NXP i.MX 8QXP ADC DRIVER
15027 M:      Cai Huoqing <cai.huoqing@linux.dev>
15028 M:      Haibo Chen <haibo.chen@nxp.com>
15029 L:      linux-imx@nxp.com
15030 L:      linux-iio@vger.kernel.org
15031 S:      Maintained
15032 F:      Documentation/devicetree/bindings/iio/adc/nxp,imx8qxp-adc.yaml
15033 F:      drivers/iio/adc/imx8qxp-adc.c
15034
15035 NXP i.MX 7D/6SX/6UL/93 AND VF610 ADC DRIVER
15036 M:      Haibo Chen <haibo.chen@nxp.com>
15037 L:      linux-iio@vger.kernel.org
15038 L:      linux-imx@nxp.com
15039 S:      Maintained
15040 F:      Documentation/devicetree/bindings/iio/adc/fsl,imx7d-adc.yaml
15041 F:      Documentation/devicetree/bindings/iio/adc/fsl,vf610-adc.yaml
15042 F:      Documentation/devicetree/bindings/iio/adc/nxp,imx93-adc.yaml
15043 F:      drivers/iio/adc/imx7d_adc.c
15044 F:      drivers/iio/adc/imx93_adc.c
15045 F:      drivers/iio/adc/vf610_adc.c
15046
15047 NXP PF8100/PF8121A/PF8200 PMIC REGULATOR DEVICE DRIVER
15048 M:      Jagan Teki <jagan@amarulasolutions.com>
15049 S:      Maintained
15050 F:      Documentation/devicetree/bindings/regulator/nxp,pf8x00-regulator.yaml
15051 F:      drivers/regulator/pf8x00-regulator.c
15052
15053 NXP PTN5150A CC LOGIC AND EXTCON DRIVER
15054 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
15055 L:      linux-kernel@vger.kernel.org
15056 S:      Maintained
15057 F:      Documentation/devicetree/bindings/extcon/extcon-ptn5150.yaml
15058 F:      drivers/extcon/extcon-ptn5150.c
15059
15060 NXP SGTL5000 DRIVER
15061 M:      Fabio Estevam <festevam@gmail.com>
15062 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15063 S:      Maintained
15064 F:      Documentation/devicetree/bindings/sound/sgtl5000.yaml
15065 F:      sound/soc/codecs/sgtl5000*
15066
15067 NXP SJA1105 ETHERNET SWITCH DRIVER
15068 M:      Vladimir Oltean <olteanv@gmail.com>
15069 L:      linux-kernel@vger.kernel.org
15070 S:      Maintained
15071 F:      drivers/net/dsa/sja1105
15072 F:      drivers/net/pcs/pcs-xpcs-nxp.c
15073
15074 NXP TDA998X DRM DRIVER
15075 M:      Russell King <linux@armlinux.org.uk>
15076 S:      Maintained
15077 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-devel
15078 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-fixes
15079 F:      drivers/gpu/drm/i2c/tda998x_drv.c
15080 F:      include/drm/i2c/tda998x.h
15081 F:      include/dt-bindings/display/tda998x.h
15082 K:      "nxp,tda998x"
15083
15084 NXP TFA9879 DRIVER
15085 M:      Peter Rosin <peda@axentia.se>
15086 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15087 S:      Maintained
15088 F:      Documentation/devicetree/bindings/sound/tfa9879.txt
15089 F:      sound/soc/codecs/tfa9879*
15090
15091 NXP/Goodix TFA989X (TFA1) DRIVER
15092 M:      Stephan Gerhold <stephan@gerhold.net>
15093 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15094 S:      Maintained
15095 F:      Documentation/devicetree/bindings/sound/nxp,tfa989x.yaml
15096 F:      sound/soc/codecs/tfa989x.c
15097
15098 NXP-NCI NFC DRIVER
15099 S:      Orphan
15100 F:      Documentation/devicetree/bindings/net/nfc/nxp,nci.yaml
15101 F:      drivers/nfc/nxp-nci
15102
15103 NXP i.MX 8MP DW100 V4L2 DRIVER
15104 M:      Xavier Roumegue <xavier.roumegue@oss.nxp.com>
15105 L:      linux-media@vger.kernel.org
15106 S:      Maintained
15107 F:      Documentation/devicetree/bindings/media/nxp,dw100.yaml
15108 F:      Documentation/userspace-api/media/drivers/dw100.rst
15109 F:      drivers/media/platform/nxp/dw100/
15110 F:      include/uapi/linux/dw100.h
15111
15112 NXP i.MX 8QXP/8QM JPEG V4L2 DRIVER
15113 M:      Mirela Rabulea <mirela.rabulea@nxp.com>
15114 R:      NXP Linux Team <linux-imx@nxp.com>
15115 L:      linux-media@vger.kernel.org
15116 S:      Maintained
15117 F:      Documentation/devicetree/bindings/media/nxp,imx8-jpeg.yaml
15118 F:      drivers/media/platform/nxp/imx-jpeg
15119
15120 NZXT-KRAKEN2 HARDWARE MONITORING DRIVER
15121 M:      Jonas Malaco <jonas@protocubo.io>
15122 L:      linux-hwmon@vger.kernel.org
15123 S:      Maintained
15124 F:      Documentation/hwmon/nzxt-kraken2.rst
15125 F:      drivers/hwmon/nzxt-kraken2.c
15126
15127 NZXT-SMART2 HARDWARE MONITORING DRIVER
15128 M:      Aleksandr Mezin <mezin.alexander@gmail.com>
15129 L:      linux-hwmon@vger.kernel.org
15130 S:      Maintained
15131 F:      Documentation/hwmon/nzxt-smart2.rst
15132 F:      drivers/hwmon/nzxt-smart2.c
15133
15134 OBJAGG
15135 M:      Jiri Pirko <jiri@resnulli.us>
15136 L:      netdev@vger.kernel.org
15137 S:      Supported
15138 F:      include/linux/objagg.h
15139 F:      lib/objagg.c
15140 F:      lib/test_objagg.c
15141
15142 OBJTOOL
15143 M:      Josh Poimboeuf <jpoimboe@kernel.org>
15144 M:      Peter Zijlstra <peterz@infradead.org>
15145 S:      Supported
15146 F:      tools/objtool/
15147 F:      include/linux/objtool.h
15148
15149 OCELOT ETHERNET SWITCH DRIVER
15150 M:      Vladimir Oltean <vladimir.oltean@nxp.com>
15151 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
15152 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
15153 M:      UNGLinuxDriver@microchip.com
15154 L:      netdev@vger.kernel.org
15155 S:      Supported
15156 F:      drivers/net/dsa/ocelot/*
15157 F:      drivers/net/ethernet/mscc/
15158 F:      include/soc/mscc/ocelot*
15159 F:      net/dsa/tag_ocelot.c
15160 F:      net/dsa/tag_ocelot_8021q.c
15161 F:      tools/testing/selftests/drivers/net/ocelot/*
15162
15163 OCELOT EXTERNAL SWITCH CONTROL
15164 M:      Colin Foster <colin.foster@in-advantage.com>
15165 S:      Supported
15166 F:      Documentation/devicetree/bindings/mfd/mscc,ocelot.yaml
15167 F:      drivers/mfd/ocelot*
15168 F:      drivers/net/dsa/ocelot/ocelot_ext.c
15169 F:      include/linux/mfd/ocelot.h
15170
15171 OCXL (Open Coherent Accelerator Processor Interface OpenCAPI) DRIVER
15172 M:      Frederic Barrat <fbarrat@linux.ibm.com>
15173 M:      Andrew Donnellan <ajd@linux.ibm.com>
15174 L:      linuxppc-dev@lists.ozlabs.org
15175 S:      Supported
15176 F:      Documentation/userspace-api/accelerators/ocxl.rst
15177 F:      arch/powerpc/include/asm/pnv-ocxl.h
15178 F:      arch/powerpc/platforms/powernv/ocxl.c
15179 F:      drivers/misc/ocxl/
15180 F:      include/misc/ocxl*
15181 F:      include/uapi/misc/ocxl.h
15182
15183 OMAP AUDIO SUPPORT
15184 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
15185 M:      Jarkko Nikula <jarkko.nikula@bitmer.com>
15186 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15187 L:      linux-omap@vger.kernel.org
15188 S:      Maintained
15189 F:      sound/soc/ti/n810.c
15190 F:      sound/soc/ti/omap*
15191 F:      sound/soc/ti/rx51.c
15192 F:      sound/soc/ti/sdma-pcm.*
15193
15194 OMAP CLOCK FRAMEWORK SUPPORT
15195 M:      Paul Walmsley <paul@pwsan.com>
15196 L:      linux-omap@vger.kernel.org
15197 S:      Maintained
15198 F:      arch/arm/*omap*/*clock*
15199
15200 OMAP DEVICE TREE SUPPORT
15201 M:      Benoît Cousson <bcousson@baylibre.com>
15202 M:      Tony Lindgren <tony@atomide.com>
15203 L:      linux-omap@vger.kernel.org
15204 L:      devicetree@vger.kernel.org
15205 S:      Maintained
15206 F:      arch/arm/boot/dts/*am3*
15207 F:      arch/arm/boot/dts/*am4*
15208 F:      arch/arm/boot/dts/*am5*
15209 F:      arch/arm/boot/dts/*dra7*
15210 F:      arch/arm/boot/dts/*omap*
15211 F:      arch/arm/boot/dts/logicpd-som-lv*
15212 F:      arch/arm/boot/dts/logicpd-torpedo*
15213
15214 OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
15215 L:      linux-omap@vger.kernel.org
15216 L:      linux-fbdev@vger.kernel.org
15217 S:      Orphan
15218 F:      Documentation/arm/omap/dss.rst
15219 F:      drivers/video/fbdev/omap2/
15220
15221 OMAP FRAMEBUFFER SUPPORT
15222 L:      linux-fbdev@vger.kernel.org
15223 L:      linux-omap@vger.kernel.org
15224 S:      Orphan
15225 F:      drivers/video/fbdev/omap/
15226
15227 OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT
15228 M:      Roger Quadros <rogerq@kernel.org>
15229 M:      Tony Lindgren <tony@atomide.com>
15230 L:      linux-omap@vger.kernel.org
15231 S:      Maintained
15232 F:      arch/arm/mach-omap2/*gpmc*
15233 F:      drivers/memory/omap-gpmc.c
15234
15235 OMAP GPIO DRIVER
15236 M:      Grygorii Strashko <grygorii.strashko@ti.com>
15237 M:      Santosh Shilimkar <ssantosh@kernel.org>
15238 M:      Kevin Hilman <khilman@kernel.org>
15239 L:      linux-omap@vger.kernel.org
15240 S:      Maintained
15241 F:      Documentation/devicetree/bindings/gpio/ti,omap-gpio.yaml
15242 F:      drivers/gpio/gpio-omap.c
15243
15244 OMAP HARDWARE SPINLOCK SUPPORT
15245 M:      Ohad Ben-Cohen <ohad@wizery.com>
15246 L:      linux-omap@vger.kernel.org
15247 S:      Maintained
15248 F:      drivers/hwspinlock/omap_hwspinlock.c
15249
15250 OMAP HS MMC SUPPORT
15251 L:      linux-mmc@vger.kernel.org
15252 L:      linux-omap@vger.kernel.org
15253 S:      Orphan
15254 F:      drivers/mmc/host/omap_hsmmc.c
15255
15256 OMAP HWMOD DATA
15257 M:      Paul Walmsley <paul@pwsan.com>
15258 L:      linux-omap@vger.kernel.org
15259 S:      Maintained
15260 F:      arch/arm/mach-omap2/omap_hwmod*data*
15261
15262 OMAP HWMOD SUPPORT
15263 M:      Benoît Cousson <bcousson@baylibre.com>
15264 M:      Paul Walmsley <paul@pwsan.com>
15265 L:      linux-omap@vger.kernel.org
15266 S:      Maintained
15267 F:      arch/arm/mach-omap2/omap_hwmod.*
15268
15269 OMAP I2C DRIVER
15270 M:      Vignesh R <vigneshr@ti.com>
15271 L:      linux-omap@vger.kernel.org
15272 L:      linux-i2c@vger.kernel.org
15273 S:      Maintained
15274 F:      Documentation/devicetree/bindings/i2c/ti,omap4-i2c.yaml
15275 F:      drivers/i2c/busses/i2c-omap.c
15276
15277 OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS)
15278 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
15279 L:      linux-media@vger.kernel.org
15280 S:      Maintained
15281 F:      Documentation/devicetree/bindings/media/ti,omap3isp.txt
15282 F:      drivers/media/platform/ti/omap3isp/
15283 F:      drivers/staging/media/omap4iss/
15284
15285 OMAP MMC SUPPORT
15286 M:      Aaro Koskinen <aaro.koskinen@iki.fi>
15287 L:      linux-omap@vger.kernel.org
15288 S:      Odd Fixes
15289 F:      drivers/mmc/host/omap.c
15290
15291 OMAP POWER MANAGEMENT SUPPORT
15292 M:      Kevin Hilman <khilman@kernel.org>
15293 L:      linux-omap@vger.kernel.org
15294 S:      Maintained
15295 F:      arch/arm/*omap*/*pm*
15296 F:      drivers/cpufreq/omap-cpufreq.c
15297
15298 OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT
15299 M:      Paul Walmsley <paul@pwsan.com>
15300 L:      linux-omap@vger.kernel.org
15301 S:      Maintained
15302 F:      arch/arm/mach-omap2/prm*
15303
15304 OMAP RANDOM NUMBER GENERATOR SUPPORT
15305 M:      Deepak Saxena <dsaxena@plexity.net>
15306 S:      Maintained
15307 F:      drivers/char/hw_random/omap-rng.c
15308
15309 OMAP USB SUPPORT
15310 L:      linux-usb@vger.kernel.org
15311 L:      linux-omap@vger.kernel.org
15312 S:      Orphan
15313 F:      arch/arm/*omap*/usb*
15314 F:      drivers/usb/*/*omap*
15315
15316 OMAP/NEWFLOW NANOBONE MACHINE SUPPORT
15317 M:      Mark Jackson <mpfj@newflow.co.uk>
15318 L:      linux-omap@vger.kernel.org
15319 S:      Maintained
15320 F:      arch/arm/boot/dts/am335x-nano.dts
15321
15322 OMAP1 SUPPORT
15323 M:      Aaro Koskinen <aaro.koskinen@iki.fi>
15324 M:      Janusz Krzysztofik <jmkrzyszt@gmail.com>
15325 M:      Tony Lindgren <tony@atomide.com>
15326 L:      linux-omap@vger.kernel.org
15327 S:      Maintained
15328 Q:      http://patchwork.kernel.org/project/linux-omap/list/
15329 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
15330 F:      arch/arm/configs/omap1_defconfig
15331 F:      arch/arm/mach-omap1/
15332 F:      drivers/i2c/busses/i2c-omap.c
15333 F:      include/linux/platform_data/ams-delta-fiq.h
15334 F:      include/linux/platform_data/i2c-omap.h
15335
15336 OMAP2+ SUPPORT
15337 M:      Tony Lindgren <tony@atomide.com>
15338 L:      linux-omap@vger.kernel.org
15339 S:      Maintained
15340 W:      http://www.muru.com/linux/omap/
15341 W:      http://linux.omap.com/
15342 Q:      http://patchwork.kernel.org/project/linux-omap/list/
15343 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
15344 F:      arch/arm/configs/omap2plus_defconfig
15345 F:      arch/arm/mach-omap2/
15346 F:      drivers/bus/ti-sysc.c
15347 F:      drivers/i2c/busses/i2c-omap.c
15348 F:      drivers/irqchip/irq-omap-intc.c
15349 F:      drivers/mfd/*omap*.c
15350 F:      drivers/mfd/menelaus.c
15351 F:      drivers/mfd/palmas.c
15352 F:      drivers/mfd/tps65217.c
15353 F:      drivers/mfd/tps65218.c
15354 F:      drivers/mfd/tps65219.c
15355 F:      drivers/mfd/tps65910.c
15356 F:      drivers/mfd/twl-core.[ch]
15357 F:      drivers/mfd/twl4030*.c
15358 F:      drivers/mfd/twl6030*.c
15359 F:      drivers/mfd/twl6040*.c
15360 F:      drivers/regulator/palmas-regulator*.c
15361 F:      drivers/regulator/pbias-regulator.c
15362 F:      drivers/regulator/tps65217-regulator.c
15363 F:      drivers/regulator/tps65218-regulator.c
15364 F:      drivers/regulator/tps65219-regulator.c
15365 F:      drivers/regulator/tps65910-regulator.c
15366 F:      drivers/regulator/twl-regulator.c
15367 F:      drivers/regulator/twl6030-regulator.c
15368 F:      include/linux/platform_data/i2c-omap.h
15369 F:      include/linux/platform_data/ti-sysc.h
15370
15371 OMFS FILESYSTEM
15372 M:      Bob Copeland <me@bobcopeland.com>
15373 L:      linux-karma-devel@lists.sourceforge.net
15374 S:      Maintained
15375 F:      Documentation/filesystems/omfs.rst
15376 F:      fs/omfs/
15377
15378 OMNIKEY CARDMAN 4000 DRIVER
15379 M:      Harald Welte <laforge@gnumonks.org>
15380 S:      Maintained
15381 F:      drivers/char/pcmcia/cm4000_cs.c
15382 F:      include/linux/cm4000_cs.h
15383 F:      include/uapi/linux/cm4000_cs.h
15384
15385 OMNIKEY CARDMAN 4040 DRIVER
15386 M:      Harald Welte <laforge@gnumonks.org>
15387 S:      Maintained
15388 F:      drivers/char/pcmcia/cm4040_cs.*
15389
15390 OMNIVISION OG01A1B SENSOR DRIVER
15391 M:      Shawn Tu <shawnx.tu@intel.com>
15392 L:      linux-media@vger.kernel.org
15393 S:      Maintained
15394 F:      drivers/media/i2c/og01a1b.c
15395
15396 OMNIVISION OV02A10 SENSOR DRIVER
15397 M:      Dongchun Zhu <dongchun.zhu@mediatek.com>
15398 L:      linux-media@vger.kernel.org
15399 S:      Maintained
15400 T:      git git://linuxtv.org/media_tree.git
15401 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov02a10.yaml
15402 F:      drivers/media/i2c/ov02a10.c
15403
15404 OMNIVISION OV08D10 SENSOR DRIVER
15405 M:      Jimmy Su <jimmy.su@intel.com>
15406 L:      linux-media@vger.kernel.org
15407 S:      Maintained
15408 T:      git git://linuxtv.org/media_tree.git
15409 F:      drivers/media/i2c/ov08d10.c
15410
15411 OMNIVISION OV08X40 SENSOR DRIVER
15412 M:      Jason Chen <jason.z.chen@intel.com>
15413 L:      linux-media@vger.kernel.org
15414 S:      Maintained
15415 T:      git git://linuxtv.org/media_tree.git
15416 F:      drivers/media/i2c/ov08x40.c
15417
15418 OMNIVISION OV13858 SENSOR DRIVER
15419 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
15420 L:      linux-media@vger.kernel.org
15421 S:      Maintained
15422 T:      git git://linuxtv.org/media_tree.git
15423 F:      drivers/media/i2c/ov13858.c
15424
15425 OMNIVISION OV13B10 SENSOR DRIVER
15426 M:      Arec Kao <arec.kao@intel.com>
15427 L:      linux-media@vger.kernel.org
15428 S:      Maintained
15429 T:      git git://linuxtv.org/media_tree.git
15430 F:      drivers/media/i2c/ov13b10.c
15431
15432 OMNIVISION OV2680 SENSOR DRIVER
15433 M:      Rui Miguel Silva <rmfrfs@gmail.com>
15434 L:      linux-media@vger.kernel.org
15435 S:      Maintained
15436 T:      git git://linuxtv.org/media_tree.git
15437 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov2680.yaml
15438 F:      drivers/media/i2c/ov2680.c
15439
15440 OMNIVISION OV2685 SENSOR DRIVER
15441 M:      Shunqian Zheng <zhengsq@rock-chips.com>
15442 L:      linux-media@vger.kernel.org
15443 S:      Maintained
15444 T:      git git://linuxtv.org/media_tree.git
15445 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov2685.yaml
15446 F:      drivers/media/i2c/ov2685.c
15447
15448 OMNIVISION OV2740 SENSOR DRIVER
15449 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
15450 R:      Shawn Tu <shawnx.tu@intel.com>
15451 R:      Bingbu Cao <bingbu.cao@intel.com>
15452 L:      linux-media@vger.kernel.org
15453 S:      Maintained
15454 T:      git git://linuxtv.org/media_tree.git
15455 F:      drivers/media/i2c/ov2740.c
15456
15457 OMNIVISION OV4689 SENSOR DRIVER
15458 M:      Mikhail Rudenko <mike.rudenko@gmail.com>
15459 L:      linux-media@vger.kernel.org
15460 S:      Maintained
15461 T:      git git://linuxtv.org/media_tree.git
15462 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov4689.yaml
15463 F:      drivers/media/i2c/ov5647.c
15464
15465 OMNIVISION OV5640 SENSOR DRIVER
15466 M:      Steve Longerbeam <slongerbeam@gmail.com>
15467 L:      linux-media@vger.kernel.org
15468 S:      Maintained
15469 T:      git git://linuxtv.org/media_tree.git
15470 F:      drivers/media/i2c/ov5640.c
15471
15472 OMNIVISION OV5647 SENSOR DRIVER
15473 M:      Dave Stevenson <dave.stevenson@raspberrypi.com>
15474 M:      Jacopo Mondi <jacopo@jmondi.org>
15475 L:      linux-media@vger.kernel.org
15476 S:      Maintained
15477 T:      git git://linuxtv.org/media_tree.git
15478 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov5647.yaml
15479 F:      drivers/media/i2c/ov5647.c
15480
15481 OMNIVISION OV5670 SENSOR DRIVER
15482 M:      Chiranjeevi Rapolu <chiranjeevi.rapolu@intel.com>
15483 L:      linux-media@vger.kernel.org
15484 S:      Maintained
15485 T:      git git://linuxtv.org/media_tree.git
15486 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov5670.yaml
15487 F:      drivers/media/i2c/ov5670.c
15488
15489 OMNIVISION OV5675 SENSOR DRIVER
15490 M:      Shawn Tu <shawnx.tu@intel.com>
15491 L:      linux-media@vger.kernel.org
15492 S:      Maintained
15493 T:      git git://linuxtv.org/media_tree.git
15494 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov5675.yaml
15495 F:      drivers/media/i2c/ov5675.c
15496
15497 OMNIVISION OV5693 SENSOR DRIVER
15498 M:      Daniel Scally <djrscally@gmail.com>
15499 L:      linux-media@vger.kernel.org
15500 S:      Maintained
15501 T:      git git://linuxtv.org/media_tree.git
15502 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov5693.yaml
15503 F:      drivers/media/i2c/ov5693.c
15504
15505 OMNIVISION OV5695 SENSOR DRIVER
15506 M:      Shunqian Zheng <zhengsq@rock-chips.com>
15507 L:      linux-media@vger.kernel.org
15508 S:      Maintained
15509 T:      git git://linuxtv.org/media_tree.git
15510 F:      drivers/media/i2c/ov5695.c
15511
15512 OMNIVISION OV7670 SENSOR DRIVER
15513 L:      linux-media@vger.kernel.org
15514 S:      Orphan
15515 T:      git git://linuxtv.org/media_tree.git
15516 F:      Documentation/devicetree/bindings/media/i2c/ov7670.txt
15517 F:      drivers/media/i2c/ov7670.c
15518
15519 OMNIVISION OV772x SENSOR DRIVER
15520 M:      Jacopo Mondi <jacopo@jmondi.org>
15521 L:      linux-media@vger.kernel.org
15522 S:      Odd fixes
15523 T:      git git://linuxtv.org/media_tree.git
15524 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov772x.yaml
15525 F:      drivers/media/i2c/ov772x.c
15526 F:      include/media/i2c/ov772x.h
15527
15528 OMNIVISION OV7740 SENSOR DRIVER
15529 M:      Wenyou Yang <wenyou.yang@microchip.com>
15530 L:      linux-media@vger.kernel.org
15531 S:      Maintained
15532 T:      git git://linuxtv.org/media_tree.git
15533 F:      Documentation/devicetree/bindings/media/i2c/ov7740.txt
15534 F:      drivers/media/i2c/ov7740.c
15535
15536 OMNIVISION OV8856 SENSOR DRIVER
15537 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
15538 L:      linux-media@vger.kernel.org
15539 S:      Maintained
15540 T:      git git://linuxtv.org/media_tree.git
15541 F:      Documentation/devicetree/bindings/media/i2c/ov8856.yaml
15542 F:      drivers/media/i2c/ov8856.c
15543
15544 OMNIVISION OV8858 SENSOR DRIVER
15545 M:      Jacopo Mondi <jacopo.mondi@ideasonboard.com>
15546 M:      Nicholas Roth <nicholas@rothemail.net>
15547 L:      linux-media@vger.kernel.org
15548 S:      Maintained
15549 T:      git git://linuxtv.org/media_tree.git
15550 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov8858.yaml
15551 F:      drivers/media/i2c/ov8858.c
15552
15553 OMNIVISION OV9282 SENSOR DRIVER
15554 M:      Paul J. Murphy <paul.j.murphy@intel.com>
15555 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
15556 L:      linux-media@vger.kernel.org
15557 S:      Maintained
15558 T:      git git://linuxtv.org/media_tree.git
15559 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov9282.yaml
15560 F:      drivers/media/i2c/ov9282.c
15561
15562 OMNIVISION OV9640 SENSOR DRIVER
15563 M:      Petr Cvek <petrcvekcz@gmail.com>
15564 L:      linux-media@vger.kernel.org
15565 S:      Maintained
15566 F:      drivers/media/i2c/ov9640.*
15567
15568 OMNIVISION OV9650 SENSOR DRIVER
15569 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
15570 R:      Akinobu Mita <akinobu.mita@gmail.com>
15571 R:      Sylwester Nawrocki <s.nawrocki@samsung.com>
15572 L:      linux-media@vger.kernel.org
15573 S:      Maintained
15574 T:      git git://linuxtv.org/media_tree.git
15575 F:      Documentation/devicetree/bindings/media/i2c/ov9650.txt
15576 F:      drivers/media/i2c/ov9650.c
15577
15578 OMNIVISION OV9734 SENSOR DRIVER
15579 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
15580 R:      Bingbu Cao <bingbu.cao@intel.com>
15581 L:      linux-media@vger.kernel.org
15582 S:      Maintained
15583 T:      git git://linuxtv.org/media_tree.git
15584 F:      drivers/media/i2c/ov9734.c
15585
15586 ONBOARD USB HUB DRIVER
15587 M:      Matthias Kaehlcke <mka@chromium.org>
15588 L:      linux-usb@vger.kernel.org
15589 S:      Maintained
15590 F:      Documentation/ABI/testing/sysfs-bus-platform-onboard-usb-hub
15591 F:      drivers/usb/misc/onboard_usb_hub.c
15592
15593 ONENAND FLASH DRIVER
15594 M:      Kyungmin Park <kyungmin.park@samsung.com>
15595 L:      linux-mtd@lists.infradead.org
15596 S:      Maintained
15597 F:      drivers/mtd/nand/onenand/
15598 F:      include/linux/mtd/onenand*.h
15599
15600 ONEXPLAYER FAN DRIVER
15601 M:      Derek John Clark <derekjohn.clark@gmail.com>
15602 M:      Joaquín Ignacio Aramendía <samsagax@gmail.com>
15603 L:      linux-hwmon@vger.kernel.org
15604 S:      Maintained
15605 F:      drivers/hwmon/oxp-sensors.c
15606
15607 ONION OMEGA2+ BOARD
15608 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
15609 L:      linux-mips@vger.kernel.org
15610 S:      Maintained
15611 F:      arch/mips/boot/dts/ralink/omega2p.dts
15612
15613 ONSEMI ETHERNET PHY DRIVERS
15614 M:      Piergiorgio Beruto <piergiorgio.beruto@gmail.com>
15615 L:      netdev@vger.kernel.org
15616 S:      Supported
15617 W:      http://www.onsemi.com
15618 F:      drivers/net/phy/ncn*
15619
15620 OP-TEE DRIVER
15621 M:      Jens Wiklander <jens.wiklander@linaro.org>
15622 L:      op-tee@lists.trustedfirmware.org
15623 S:      Maintained
15624 F:      Documentation/ABI/testing/sysfs-bus-optee-devices
15625 F:      drivers/tee/optee/
15626
15627 OP-TEE RANDOM NUMBER GENERATOR (RNG) DRIVER
15628 M:      Sumit Garg <sumit.garg@linaro.org>
15629 L:      op-tee@lists.trustedfirmware.org
15630 S:      Maintained
15631 F:      drivers/char/hw_random/optee-rng.c
15632
15633 OP-TEE RTC DRIVER
15634 M:      Clément Léger <clement.leger@bootlin.com>
15635 L:      linux-rtc@vger.kernel.org
15636 S:      Maintained
15637 F:      drivers/rtc/rtc-optee.c
15638
15639 OPA-VNIC DRIVER
15640 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
15641 L:      linux-rdma@vger.kernel.org
15642 S:      Supported
15643 F:      drivers/infiniband/ulp/opa_vnic
15644
15645 OPEN FIRMWARE AND FLATTENED DEVICE TREE
15646 M:      Rob Herring <robh+dt@kernel.org>
15647 M:      Frank Rowand <frowand.list@gmail.com>
15648 L:      devicetree@vger.kernel.org
15649 S:      Maintained
15650 C:      irc://irc.libera.chat/devicetree
15651 W:      http://www.devicetree.org/
15652 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
15653 F:      Documentation/ABI/testing/sysfs-firmware-ofw
15654 F:      drivers/of/
15655 F:      include/linux/of*.h
15656 F:      scripts/dtc/
15657 K:      of_overlay_notifier_
15658 K:      of_overlay_fdt_apply
15659 K:      of_overlay_remove
15660
15661 OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
15662 M:      Rob Herring <robh+dt@kernel.org>
15663 M:      Krzysztof Kozlowski <krzysztof.kozlowski+dt@linaro.org>
15664 L:      devicetree@vger.kernel.org
15665 S:      Maintained
15666 C:      irc://irc.libera.chat/devicetree
15667 Q:      http://patchwork.ozlabs.org/project/devicetree-bindings/list/
15668 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
15669 F:      Documentation/devicetree/
15670 F:      arch/*/boot/dts/
15671 F:      include/dt-bindings/
15672
15673 OPENCOMPUTE PTP CLOCK DRIVER
15674 M:      Jonathan Lemon <jonathan.lemon@gmail.com>
15675 M:      Vadim Fedorenko <vadfed@fb.com>
15676 L:      netdev@vger.kernel.org
15677 S:      Maintained
15678 F:      drivers/ptp/ptp_ocp.c
15679
15680 INTEL PTP DFL ToD DRIVER
15681 M:      Tianfei Zhang <tianfei.zhang@intel.com>
15682 L:      linux-fpga@vger.kernel.org
15683 L:      netdev@vger.kernel.org
15684 S:      Maintained
15685 F:      drivers/ptp/ptp_dfl_tod.c
15686
15687 OPENCORES I2C BUS DRIVER
15688 M:      Peter Korsgaard <peter@korsgaard.com>
15689 M:      Andrew Lunn <andrew@lunn.ch>
15690 L:      linux-i2c@vger.kernel.org
15691 S:      Maintained
15692 F:      Documentation/devicetree/bindings/i2c/opencores,i2c-ocores.yaml
15693 F:      Documentation/i2c/busses/i2c-ocores.rst
15694 F:      drivers/i2c/busses/i2c-ocores.c
15695 F:      include/linux/platform_data/i2c-ocores.h
15696
15697 OPENRISC ARCHITECTURE
15698 M:      Jonas Bonn <jonas@southpole.se>
15699 M:      Stefan Kristiansson <stefan.kristiansson@saunalahti.fi>
15700 M:      Stafford Horne <shorne@gmail.com>
15701 L:      linux-openrisc@vger.kernel.org
15702 S:      Maintained
15703 W:      http://openrisc.io
15704 T:      git https://github.com/openrisc/linux.git
15705 F:      Documentation/devicetree/bindings/openrisc/
15706 F:      Documentation/arch/openrisc/
15707 F:      arch/openrisc/
15708 F:      drivers/irqchip/irq-ompic.c
15709 F:      drivers/irqchip/irq-or1k-*
15710
15711 OPENVSWITCH
15712 M:      Pravin B Shelar <pshelar@ovn.org>
15713 L:      netdev@vger.kernel.org
15714 L:      dev@openvswitch.org
15715 S:      Maintained
15716 W:      http://openvswitch.org
15717 F:      include/uapi/linux/openvswitch.h
15718 F:      net/openvswitch/
15719 F:      tools/testing/selftests/net/openvswitch/
15720
15721 OPERATING PERFORMANCE POINTS (OPP)
15722 M:      Viresh Kumar <vireshk@kernel.org>
15723 M:      Nishanth Menon <nm@ti.com>
15724 M:      Stephen Boyd <sboyd@kernel.org>
15725 L:      linux-pm@vger.kernel.org
15726 S:      Maintained
15727 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git
15728 F:      Documentation/devicetree/bindings/opp/
15729 F:      Documentation/power/opp.rst
15730 F:      drivers/opp/
15731 F:      include/linux/pm_opp.h
15732
15733 OPL4 DRIVER
15734 M:      Clemens Ladisch <clemens@ladisch.de>
15735 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15736 S:      Maintained
15737 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
15738 F:      sound/drivers/opl4/
15739
15740 ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
15741 M:      Mark Fasheh <mark@fasheh.com>
15742 M:      Joel Becker <jlbec@evilplan.org>
15743 M:      Joseph Qi <joseph.qi@linux.alibaba.com>
15744 L:      ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
15745 S:      Supported
15746 W:      http://ocfs2.wiki.kernel.org
15747 F:      Documentation/filesystems/dlmfs.rst
15748 F:      Documentation/filesystems/ocfs2.rst
15749 F:      fs/ocfs2/
15750
15751 ORANGEFS FILESYSTEM
15752 M:      Mike Marshall <hubcap@omnibond.com>
15753 R:      Martin Brandenburg <martin@omnibond.com>
15754 L:      devel@lists.orangefs.org
15755 S:      Supported
15756 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hubcap/linux.git
15757 F:      Documentation/filesystems/orangefs.rst
15758 F:      fs/orangefs/
15759
15760 ORINOCO DRIVER
15761 L:      linux-wireless@vger.kernel.org
15762 S:      Orphan
15763 W:      https://wireless.wiki.kernel.org/en/users/Drivers/orinoco
15764 W:      http://www.nongnu.org/orinoco/
15765 F:      drivers/net/wireless/intersil/orinoco/
15766
15767 OV2659 OMNIVISION SENSOR DRIVER
15768 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
15769 L:      linux-media@vger.kernel.org
15770 S:      Maintained
15771 W:      https://linuxtv.org
15772 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15773 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
15774 F:      drivers/media/i2c/ov2659.c
15775 F:      include/media/i2c/ov2659.h
15776
15777 OVERLAY FILESYSTEM
15778 M:      Miklos Szeredi <miklos@szeredi.hu>
15779 L:      linux-unionfs@vger.kernel.org
15780 S:      Supported
15781 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git
15782 F:      Documentation/filesystems/overlayfs.rst
15783 F:      fs/overlayfs/
15784
15785 P54 WIRELESS DRIVER
15786 M:      Christian Lamparter <chunkeey@googlemail.com>
15787 L:      linux-wireless@vger.kernel.org
15788 S:      Maintained
15789 W:      https://wireless.wiki.kernel.org/en/users/Drivers/p54
15790 F:      drivers/net/wireless/intersil/p54/
15791
15792 PACKET SOCKETS
15793 M:      Willem de Bruijn <willemdebruijn.kernel@gmail.com>
15794 S:      Maintained
15795 F:      include/uapi/linux/if_packet.h
15796 F:      net/packet/af_packet.c
15797
15798 PACKING
15799 M:      Vladimir Oltean <olteanv@gmail.com>
15800 L:      netdev@vger.kernel.org
15801 S:      Supported
15802 F:      Documentation/core-api/packing.rst
15803 F:      include/linux/packing.h
15804 F:      lib/packing.c
15805
15806 PADATA PARALLEL EXECUTION MECHANISM
15807 M:      Steffen Klassert <steffen.klassert@secunet.com>
15808 M:      Daniel Jordan <daniel.m.jordan@oracle.com>
15809 L:      linux-crypto@vger.kernel.org
15810 L:      linux-kernel@vger.kernel.org
15811 S:      Maintained
15812 F:      Documentation/core-api/padata.rst
15813 F:      include/linux/padata.h
15814 F:      kernel/padata.c
15815
15816 PAGE CACHE
15817 M:      Matthew Wilcox (Oracle) <willy@infradead.org>
15818 L:      linux-fsdevel@vger.kernel.org
15819 S:      Supported
15820 T:      git git://git.infradead.org/users/willy/pagecache.git
15821 F:      Documentation/filesystems/locking.rst
15822 F:      Documentation/filesystems/vfs.rst
15823 F:      include/linux/pagemap.h
15824 F:      mm/filemap.c
15825 F:      mm/page-writeback.c
15826 F:      mm/readahead.c
15827 F:      mm/truncate.c
15828
15829 PAGE POOL
15830 M:      Jesper Dangaard Brouer <hawk@kernel.org>
15831 M:      Ilias Apalodimas <ilias.apalodimas@linaro.org>
15832 L:      netdev@vger.kernel.org
15833 S:      Supported
15834 F:      Documentation/networking/page_pool.rst
15835 F:      include/net/page_pool.h
15836 F:      include/trace/events/page_pool.h
15837 F:      net/core/page_pool.c
15838
15839 PAGE TABLE CHECK
15840 M:      Pasha Tatashin <pasha.tatashin@soleen.com>
15841 M:      Andrew Morton <akpm@linux-foundation.org>
15842 L:      linux-mm@kvack.org
15843 S:      Maintained
15844 F:      Documentation/mm/page_table_check.rst
15845 F:      include/linux/page_table_check.h
15846 F:      mm/page_table_check.c
15847
15848 PANASONIC LAPTOP ACPI EXTRAS DRIVER
15849 M:      Kenneth Chan <kenneth.t.chan@gmail.com>
15850 L:      platform-driver-x86@vger.kernel.org
15851 S:      Maintained
15852 F:      drivers/platform/x86/panasonic-laptop.c
15853
15854 PARALLAX PING IIO SENSOR DRIVER
15855 M:      Andreas Klinger <ak@it-klinger.de>
15856 L:      linux-iio@vger.kernel.org
15857 S:      Maintained
15858 F:      Documentation/devicetree/bindings/iio/proximity/parallax-ping.yaml
15859 F:      drivers/iio/proximity/ping.c
15860
15861 PARALLEL LCD/KEYPAD PANEL DRIVER
15862 M:      Willy Tarreau <willy@haproxy.com>
15863 M:      Ksenija Stanojevic <ksenija.stanojevic@gmail.com>
15864 S:      Odd Fixes
15865 F:      Documentation/admin-guide/lcd-panel-cgram.rst
15866 F:      drivers/auxdisplay/panel.c
15867
15868 PARALLEL PORT SUBSYSTEM
15869 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
15870 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
15871 L:      linux-parport@lists.infradead.org (subscribers-only)
15872 S:      Maintained
15873 F:      Documentation/driver-api/parport*.rst
15874 F:      drivers/char/ppdev.c
15875 F:      drivers/parport/
15876 F:      include/linux/parport*.h
15877 F:      include/uapi/linux/ppdev.h
15878
15879 PARAVIRT_OPS INTERFACE
15880 M:      Juergen Gross <jgross@suse.com>
15881 M:      Srivatsa S. Bhat (VMware) <srivatsa@csail.mit.edu>
15882 R:      Alexey Makhalov <amakhalov@vmware.com>
15883 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
15884 L:      virtualization@lists.linux-foundation.org
15885 L:      x86@kernel.org
15886 S:      Supported
15887 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
15888 F:      Documentation/virt/paravirt_ops.rst
15889 F:      arch/*/include/asm/paravirt*.h
15890 F:      arch/*/kernel/paravirt*
15891 F:      include/linux/hypervisor.h
15892
15893 PARISC ARCHITECTURE
15894 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
15895 M:      Helge Deller <deller@gmx.de>
15896 L:      linux-parisc@vger.kernel.org
15897 S:      Maintained
15898 W:      https://parisc.wiki.kernel.org
15899 Q:      http://patchwork.kernel.org/project/linux-parisc/list/
15900 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
15901 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git
15902 F:      Documentation/arch/parisc/
15903 F:      arch/parisc/
15904 F:      drivers/char/agp/parisc-agp.c
15905 F:      drivers/input/misc/hp_sdc_rtc.c
15906 F:      drivers/input/serio/gscps2.c
15907 F:      drivers/input/serio/hp_sdc*
15908 F:      drivers/parisc/
15909 F:      drivers/parport/parport_gsc.*
15910 F:      drivers/tty/serial/8250/8250_parisc.c
15911 F:      drivers/video/console/sti*
15912 F:      drivers/video/fbdev/sti*
15913 F:      drivers/video/logo/logo_parisc*
15914 F:      include/linux/hp_sdc.h
15915
15916 PARMAN
15917 M:      Jiri Pirko <jiri@resnulli.us>
15918 L:      netdev@vger.kernel.org
15919 S:      Supported
15920 F:      include/linux/parman.h
15921 F:      lib/parman.c
15922 F:      lib/test_parman.c
15923
15924 PC ENGINES APU BOARD DRIVER
15925 M:      Enrico Weigelt, metux IT consult <info@metux.net>
15926 S:      Maintained
15927 F:      drivers/platform/x86/pcengines-apuv2.c
15928
15929 PC87360 HARDWARE MONITORING DRIVER
15930 M:      Jim Cromie <jim.cromie@gmail.com>
15931 L:      linux-hwmon@vger.kernel.org
15932 S:      Maintained
15933 F:      Documentation/hwmon/pc87360.rst
15934 F:      drivers/hwmon/pc87360.c
15935
15936 PC8736x GPIO DRIVER
15937 M:      Jim Cromie <jim.cromie@gmail.com>
15938 S:      Maintained
15939 F:      drivers/char/pc8736x_gpio.c
15940
15941 PC87427 HARDWARE MONITORING DRIVER
15942 M:      Jean Delvare <jdelvare@suse.com>
15943 L:      linux-hwmon@vger.kernel.org
15944 S:      Maintained
15945 F:      Documentation/hwmon/pc87427.rst
15946 F:      drivers/hwmon/pc87427.c
15947
15948 PCA9532 LED DRIVER
15949 M:      Riku Voipio <riku.voipio@iki.fi>
15950 S:      Maintained
15951 F:      drivers/leds/leds-pca9532.c
15952 F:      include/linux/leds-pca9532.h
15953
15954 PCA9541 I2C BUS MASTER SELECTOR DRIVER
15955 M:      Guenter Roeck <linux@roeck-us.net>
15956 L:      linux-i2c@vger.kernel.org
15957 S:      Maintained
15958 F:      drivers/i2c/muxes/i2c-mux-pca9541.c
15959
15960 PCDP - PRIMARY CONSOLE AND DEBUG PORT
15961 M:      Khalid Aziz <khalid@gonehiking.org>
15962 S:      Maintained
15963 F:      drivers/firmware/pcdp.*
15964
15965 PCI DRIVER FOR AARDVARK (Marvell Armada 3700)
15966 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
15967 M:      Pali Rohár <pali@kernel.org>
15968 L:      linux-pci@vger.kernel.org
15969 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15970 S:      Maintained
15971 F:      Documentation/devicetree/bindings/pci/aardvark-pci.txt
15972 F:      drivers/pci/controller/pci-aardvark.c
15973
15974 PCI DRIVER FOR ALTERA PCIE IP
15975 M:      Joyce Ooi <joyce.ooi@intel.com>
15976 L:      linux-pci@vger.kernel.org
15977 S:      Supported
15978 F:      Documentation/devicetree/bindings/pci/altera-pcie.txt
15979 F:      drivers/pci/controller/pcie-altera.c
15980
15981 PCI DRIVER FOR APPLIEDMICRO XGENE
15982 M:      Toan Le <toan@os.amperecomputing.com>
15983 L:      linux-pci@vger.kernel.org
15984 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15985 S:      Maintained
15986 F:      Documentation/devicetree/bindings/pci/xgene-pci.txt
15987 F:      drivers/pci/controller/pci-xgene.c
15988
15989 PCI DRIVER FOR ARM VERSATILE PLATFORM
15990 M:      Rob Herring <robh@kernel.org>
15991 L:      linux-pci@vger.kernel.org
15992 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15993 S:      Maintained
15994 F:      Documentation/devicetree/bindings/pci/versatile.yaml
15995 F:      drivers/pci/controller/pci-versatile.c
15996
15997 PCI DRIVER FOR ARMADA 8K
15998 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
15999 L:      linux-pci@vger.kernel.org
16000 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16001 S:      Maintained
16002 F:      Documentation/devicetree/bindings/pci/pci-armada8k.txt
16003 F:      drivers/pci/controller/dwc/pcie-armada8k.c
16004
16005 PCI DRIVER FOR CADENCE PCIE IP
16006 M:      Tom Joseph <tjoseph@cadence.com>
16007 L:      linux-pci@vger.kernel.org
16008 S:      Maintained
16009 F:      Documentation/devicetree/bindings/pci/cdns,*
16010 F:      drivers/pci/controller/cadence/
16011
16012 PCI DRIVER FOR FREESCALE LAYERSCAPE
16013 M:      Minghuan Lian <minghuan.Lian@nxp.com>
16014 M:      Mingkai Hu <mingkai.hu@nxp.com>
16015 M:      Roy Zang <roy.zang@nxp.com>
16016 L:      linuxppc-dev@lists.ozlabs.org
16017 L:      linux-pci@vger.kernel.org
16018 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16019 S:      Maintained
16020 F:      drivers/pci/controller/dwc/*layerscape*
16021
16022 PCI DRIVER FOR GENERIC OF HOSTS
16023 M:      Will Deacon <will@kernel.org>
16024 L:      linux-pci@vger.kernel.org
16025 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16026 S:      Maintained
16027 F:      Documentation/devicetree/bindings/pci/host-generic-pci.yaml
16028 F:      drivers/pci/controller/pci-host-common.c
16029 F:      drivers/pci/controller/pci-host-generic.c
16030
16031 PCI DRIVER FOR IMX6
16032 M:      Richard Zhu <hongxing.zhu@nxp.com>
16033 M:      Lucas Stach <l.stach@pengutronix.de>
16034 L:      linux-pci@vger.kernel.org
16035 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16036 S:      Maintained
16037 F:      Documentation/devicetree/bindings/pci/fsl,imx6q-pcie.yaml
16038 F:      drivers/pci/controller/dwc/*imx6*
16039
16040 PCI DRIVER FOR FU740
16041 M:      Paul Walmsley <paul.walmsley@sifive.com>
16042 M:      Greentime Hu <greentime.hu@sifive.com>
16043 L:      linux-pci@vger.kernel.org
16044 S:      Maintained
16045 F:      Documentation/devicetree/bindings/pci/sifive,fu740-pcie.yaml
16046 F:      drivers/pci/controller/dwc/pcie-fu740.c
16047
16048 PCI DRIVER FOR INTEL IXP4XX
16049 M:      Linus Walleij <linus.walleij@linaro.org>
16050 S:      Maintained
16051 F:      Documentation/devicetree/bindings/pci/intel,ixp4xx-pci.yaml
16052 F:      drivers/pci/controller/pci-ixp4xx.c
16053
16054 PCI DRIVER FOR INTEL VOLUME MANAGEMENT DEVICE (VMD)
16055 M:      Nirmal Patel <nirmal.patel@linux.intel.com>
16056 R:      Jonathan Derrick <jonathan.derrick@linux.dev>
16057 L:      linux-pci@vger.kernel.org
16058 S:      Supported
16059 F:      drivers/pci/controller/vmd.c
16060
16061 PCI DRIVER FOR MICROSEMI SWITCHTEC
16062 M:      Kurt Schwemmer <kurt.schwemmer@microsemi.com>
16063 M:      Logan Gunthorpe <logang@deltatee.com>
16064 L:      linux-pci@vger.kernel.org
16065 S:      Maintained
16066 F:      Documentation/ABI/testing/sysfs-class-switchtec
16067 F:      Documentation/driver-api/switchtec.rst
16068 F:      drivers/ntb/hw/mscc/
16069 F:      drivers/pci/switch/switchtec*
16070 F:      include/linux/switchtec.h
16071 F:      include/uapi/linux/switchtec_ioctl.h
16072
16073 PCI DRIVER FOR MOBIVEIL PCIE IP
16074 M:      Karthikeyan Mitran <m.karthikeyan@mobiveil.co.in>
16075 M:      Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
16076 L:      linux-pci@vger.kernel.org
16077 S:      Supported
16078 F:      Documentation/devicetree/bindings/pci/mobiveil-pcie.txt
16079 F:      drivers/pci/controller/mobiveil/pcie-mobiveil*
16080
16081 PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support)
16082 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
16083 M:      Pali Rohár <pali@kernel.org>
16084 L:      linux-pci@vger.kernel.org
16085 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16086 S:      Maintained
16087 F:      drivers/pci/controller/*mvebu*
16088
16089 PCI DRIVER FOR NVIDIA TEGRA
16090 M:      Thierry Reding <thierry.reding@gmail.com>
16091 L:      linux-tegra@vger.kernel.org
16092 L:      linux-pci@vger.kernel.org
16093 S:      Supported
16094 F:      Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt
16095 F:      drivers/pci/controller/pci-tegra.c
16096
16097 PCI DRIVER FOR NXP LAYERSCAPE GEN4 CONTROLLER
16098 M:      Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
16099 L:      linux-pci@vger.kernel.org
16100 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16101 S:      Maintained
16102 F:      Documentation/devicetree/bindings/pci/layerscape-pcie-gen4.txt
16103 F:      drivers/pci/controller/mobiveil/pcie-layerscape-gen4.c
16104
16105 PCI DRIVER FOR RENESAS R-CAR
16106 M:      Marek Vasut <marek.vasut+renesas@gmail.com>
16107 M:      Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
16108 L:      linux-pci@vger.kernel.org
16109 L:      linux-renesas-soc@vger.kernel.org
16110 S:      Maintained
16111 F:      Documentation/devicetree/bindings/pci/*rcar*
16112 F:      drivers/pci/controller/*rcar*
16113
16114 PCI DRIVER FOR SAMSUNG EXYNOS
16115 M:      Jingoo Han <jingoohan1@gmail.com>
16116 L:      linux-pci@vger.kernel.org
16117 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16118 L:      linux-samsung-soc@vger.kernel.org
16119 S:      Maintained
16120 F:      drivers/pci/controller/dwc/pci-exynos.c
16121
16122 PCI DRIVER FOR SYNOPSYS DESIGNWARE
16123 M:      Jingoo Han <jingoohan1@gmail.com>
16124 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
16125 L:      linux-pci@vger.kernel.org
16126 S:      Maintained
16127 F:      Documentation/devicetree/bindings/pci/snps,dw-pcie.yaml
16128 F:      Documentation/devicetree/bindings/pci/snps,dw-pcie-ep.yaml
16129 F:      drivers/pci/controller/dwc/*designware*
16130
16131 PCI DRIVER FOR TI DRA7XX/J721E
16132 M:      Vignesh Raghavendra <vigneshr@ti.com>
16133 L:      linux-omap@vger.kernel.org
16134 L:      linux-pci@vger.kernel.org
16135 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16136 S:      Supported
16137 F:      Documentation/devicetree/bindings/pci/ti-pci.txt
16138 F:      drivers/pci/controller/cadence/pci-j721e.c
16139 F:      drivers/pci/controller/dwc/pci-dra7xx.c
16140
16141 PCI DRIVER FOR V3 SEMICONDUCTOR V360EPC
16142 M:      Linus Walleij <linus.walleij@linaro.org>
16143 L:      linux-pci@vger.kernel.org
16144 S:      Maintained
16145 F:      Documentation/devicetree/bindings/pci/v3-v360epc-pci.txt
16146 F:      drivers/pci/controller/pci-v3-semi.c
16147
16148 PCI ENDPOINT SUBSYSTEM
16149 M:      Lorenzo Pieralisi <lpieralisi@kernel.org>
16150 M:      Krzysztof Wilczyński <kw@linux.com>
16151 R:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
16152 R:      Kishon Vijay Abraham I <kishon@kernel.org>
16153 L:      linux-pci@vger.kernel.org
16154 S:      Supported
16155 Q:      https://patchwork.kernel.org/project/linux-pci/list/
16156 B:      https://bugzilla.kernel.org
16157 C:      irc://irc.oftc.net/linux-pci
16158 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pci/pci.git
16159 F:      Documentation/PCI/endpoint/*
16160 F:      Documentation/misc-devices/pci-endpoint-test.rst
16161 F:      drivers/misc/pci_endpoint_test.c
16162 F:      drivers/pci/endpoint/
16163 F:      tools/pci/
16164
16165 PCI ENHANCED ERROR HANDLING (EEH) FOR POWERPC
16166 M:      Mahesh J Salgaonkar <mahesh@linux.ibm.com>
16167 R:      Oliver O'Halloran <oohall@gmail.com>
16168 L:      linuxppc-dev@lists.ozlabs.org
16169 S:      Supported
16170 F:      Documentation/PCI/pci-error-recovery.rst
16171 F:      Documentation/powerpc/eeh-pci-error-recovery.rst
16172 F:      arch/powerpc/include/*/eeh*.h
16173 F:      arch/powerpc/kernel/eeh*.c
16174 F:      arch/powerpc/platforms/*/eeh*.c
16175 F:      drivers/pci/pcie/aer.c
16176 F:      drivers/pci/pcie/dpc.c
16177 F:      drivers/pci/pcie/err.c
16178
16179 PCI ERROR RECOVERY
16180 M:      Linas Vepstas <linasvepstas@gmail.com>
16181 L:      linux-pci@vger.kernel.org
16182 S:      Supported
16183 F:      Documentation/PCI/pci-error-recovery.rst
16184
16185 PCI PEER-TO-PEER DMA (P2PDMA)
16186 M:      Bjorn Helgaas <bhelgaas@google.com>
16187 M:      Logan Gunthorpe <logang@deltatee.com>
16188 L:      linux-pci@vger.kernel.org
16189 S:      Supported
16190 Q:      https://patchwork.kernel.org/project/linux-pci/list/
16191 B:      https://bugzilla.kernel.org
16192 C:      irc://irc.oftc.net/linux-pci
16193 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pci/pci.git
16194 F:      Documentation/driver-api/pci/p2pdma.rst
16195 F:      drivers/pci/p2pdma.c
16196 F:      include/linux/pci-p2pdma.h
16197
16198 PCI MSI DRIVER FOR ALTERA MSI IP
16199 M:      Joyce Ooi <joyce.ooi@intel.com>
16200 L:      linux-pci@vger.kernel.org
16201 S:      Supported
16202 F:      Documentation/devicetree/bindings/pci/altera-pcie-msi.txt
16203 F:      drivers/pci/controller/pcie-altera-msi.c
16204
16205 PCI MSI DRIVER FOR APPLIEDMICRO XGENE
16206 M:      Toan Le <toan@os.amperecomputing.com>
16207 L:      linux-pci@vger.kernel.org
16208 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16209 S:      Maintained
16210 F:      Documentation/devicetree/bindings/pci/xgene-pci-msi.txt
16211 F:      drivers/pci/controller/pci-xgene-msi.c
16212
16213 PCI NATIVE HOST BRIDGE AND ENDPOINT DRIVERS
16214 M:      Lorenzo Pieralisi <lpieralisi@kernel.org>
16215 M:      Krzysztof Wilczyński <kw@linux.com>
16216 R:      Rob Herring <robh@kernel.org>
16217 L:      linux-pci@vger.kernel.org
16218 S:      Supported
16219 Q:      https://patchwork.kernel.org/project/linux-pci/list/
16220 B:      https://bugzilla.kernel.org
16221 C:      irc://irc.oftc.net/linux-pci
16222 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pci/pci.git
16223 F:      Documentation/devicetree/bindings/pci/
16224 F:      drivers/pci/controller/
16225 F:      drivers/pci/pci-bridge-emul.c
16226 F:      drivers/pci/pci-bridge-emul.h
16227
16228 PCI SUBSYSTEM
16229 M:      Bjorn Helgaas <bhelgaas@google.com>
16230 L:      linux-pci@vger.kernel.org
16231 S:      Supported
16232 Q:      https://patchwork.kernel.org/project/linux-pci/list/
16233 B:      https://bugzilla.kernel.org
16234 C:      irc://irc.oftc.net/linux-pci
16235 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pci/pci.git
16236 F:      Documentation/PCI/
16237 F:      Documentation/devicetree/bindings/pci/
16238 F:      arch/x86/kernel/early-quirks.c
16239 F:      arch/x86/kernel/quirks.c
16240 F:      arch/x86/pci/
16241 F:      drivers/acpi/pci*
16242 F:      drivers/pci/
16243 F:      include/asm-generic/pci*
16244 F:      include/linux/of_pci.h
16245 F:      include/linux/pci*
16246 F:      include/uapi/linux/pci*
16247 F:      lib/pci*
16248
16249 PCIE DRIVER FOR AMAZON ANNAPURNA LABS
16250 M:      Jonathan Chocron <jonnyc@amazon.com>
16251 L:      linux-pci@vger.kernel.org
16252 S:      Maintained
16253 F:      Documentation/devicetree/bindings/pci/pcie-al.txt
16254 F:      drivers/pci/controller/dwc/pcie-al.c
16255
16256 PCIE DRIVER FOR AMLOGIC MESON
16257 M:      Yue Wang <yue.wang@Amlogic.com>
16258 L:      linux-pci@vger.kernel.org
16259 L:      linux-amlogic@lists.infradead.org
16260 S:      Maintained
16261 F:      drivers/pci/controller/dwc/pci-meson.c
16262
16263 PCIE DRIVER FOR AXIS ARTPEC
16264 M:      Jesper Nilsson <jesper.nilsson@axis.com>
16265 L:      linux-arm-kernel@axis.com
16266 L:      linux-pci@vger.kernel.org
16267 S:      Maintained
16268 F:      Documentation/devicetree/bindings/pci/axis,artpec*
16269 F:      drivers/pci/controller/dwc/*artpec*
16270
16271 PCIE DRIVER FOR CAVIUM THUNDERX
16272 M:      Robert Richter <rric@kernel.org>
16273 L:      linux-pci@vger.kernel.org
16274 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16275 S:      Odd Fixes
16276 F:      drivers/pci/controller/pci-thunder-*
16277
16278 PCIE DRIVER FOR HISILICON
16279 M:      Zhou Wang <wangzhou1@hisilicon.com>
16280 L:      linux-pci@vger.kernel.org
16281 S:      Maintained
16282 F:      drivers/pci/controller/dwc/pcie-hisi.c
16283
16284 PCIE DRIVER FOR HISILICON KIRIN
16285 M:      Xiaowei Song <songxiaowei@hisilicon.com>
16286 M:      Binghui Wang <wangbinghui@hisilicon.com>
16287 L:      linux-pci@vger.kernel.org
16288 S:      Maintained
16289 F:      Documentation/devicetree/bindings/pci/hisilicon,kirin-pcie.yaml
16290 F:      drivers/pci/controller/dwc/pcie-kirin.c
16291
16292 PCIE DRIVER FOR HISILICON STB
16293 M:      Shawn Guo <shawn.guo@linaro.org>
16294 L:      linux-pci@vger.kernel.org
16295 S:      Maintained
16296 F:      Documentation/devicetree/bindings/pci/hisilicon-histb-pcie.txt
16297 F:      drivers/pci/controller/dwc/pcie-histb.c
16298
16299 PCIE DRIVER FOR INTEL KEEM BAY
16300 M:      Srikanth Thokala <srikanth.thokala@intel.com>
16301 L:      linux-pci@vger.kernel.org
16302 S:      Supported
16303 F:      Documentation/devicetree/bindings/pci/intel,keembay-pcie*
16304 F:      drivers/pci/controller/dwc/pcie-keembay.c
16305
16306 PCIE DRIVER FOR INTEL LGM GW SOC
16307 M:      Rahul Tanwar <rtanwar@maxlinear.com>
16308 L:      linux-pci@vger.kernel.org
16309 S:      Maintained
16310 F:      Documentation/devicetree/bindings/pci/intel-gw-pcie.yaml
16311 F:      drivers/pci/controller/dwc/pcie-intel-gw.c
16312
16313 PCIE DRIVER FOR MEDIATEK
16314 M:      Ryder Lee <ryder.lee@mediatek.com>
16315 M:      Jianjun Wang <jianjun.wang@mediatek.com>
16316 L:      linux-pci@vger.kernel.org
16317 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
16318 S:      Supported
16319 F:      Documentation/devicetree/bindings/pci/mediatek*
16320 F:      drivers/pci/controller/*mediatek*
16321
16322 PCIE DRIVER FOR MICROCHIP
16323 M:      Daire McNamara <daire.mcnamara@microchip.com>
16324 L:      linux-pci@vger.kernel.org
16325 S:      Supported
16326 F:      Documentation/devicetree/bindings/pci/microchip*
16327 F:      drivers/pci/controller/*microchip*
16328
16329 PCIE DRIVER FOR QUALCOMM MSM
16330 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
16331 L:      linux-pci@vger.kernel.org
16332 L:      linux-arm-msm@vger.kernel.org
16333 S:      Maintained
16334 F:      drivers/pci/controller/dwc/pcie-qcom.c
16335
16336 PCIE ENDPOINT DRIVER FOR QUALCOMM
16337 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
16338 L:      linux-pci@vger.kernel.org
16339 L:      linux-arm-msm@vger.kernel.org
16340 S:      Maintained
16341 F:      Documentation/devicetree/bindings/pci/qcom,pcie-ep.yaml
16342 F:      drivers/pci/controller/dwc/pcie-qcom-ep.c
16343
16344 PCIE DRIVER FOR ROCKCHIP
16345 M:      Shawn Lin <shawn.lin@rock-chips.com>
16346 L:      linux-pci@vger.kernel.org
16347 L:      linux-rockchip@lists.infradead.org
16348 S:      Maintained
16349 F:      Documentation/devicetree/bindings/pci/rockchip,rk3399-pcie*
16350 F:      drivers/pci/controller/pcie-rockchip*
16351
16352 PCIE DRIVER FOR SOCIONEXT UNIPHIER
16353 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
16354 L:      linux-pci@vger.kernel.org
16355 S:      Maintained
16356 F:      Documentation/devicetree/bindings/pci/socionext,uniphier-pcie*
16357 F:      drivers/pci/controller/dwc/pcie-uniphier*
16358
16359 PCIE DRIVER FOR ST SPEAR13XX
16360 M:      Pratyush Anand <pratyush.anand@gmail.com>
16361 L:      linux-pci@vger.kernel.org
16362 S:      Maintained
16363 F:      drivers/pci/controller/dwc/*spear*
16364
16365 PCI DRIVER FOR XILINX VERSAL CPM
16366 M:      Bharat Kumar Gogada <bharat.kumar.gogada@amd.com>
16367 M:      Michal Simek <michal.simek@amd.com>
16368 L:      linux-pci@vger.kernel.org
16369 S:      Maintained
16370 F:      Documentation/devicetree/bindings/pci/xilinx-versal-cpm.yaml
16371 F:      drivers/pci/controller/pcie-xilinx-cpm.c
16372
16373 PCMCIA SUBSYSTEM
16374 M:      Dominik Brodowski <linux@dominikbrodowski.net>
16375 S:      Odd Fixes
16376 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/linux.git
16377 F:      Documentation/pcmcia/
16378 F:      drivers/pcmcia/
16379 F:      include/pcmcia/
16380 F:      tools/pcmcia/
16381
16382 PCNET32 NETWORK DRIVER
16383 M:      Don Fry <pcnet32@frontier.com>
16384 L:      netdev@vger.kernel.org
16385 S:      Maintained
16386 F:      drivers/net/ethernet/amd/pcnet32.c
16387
16388 PCRYPT PARALLEL CRYPTO ENGINE
16389 M:      Steffen Klassert <steffen.klassert@secunet.com>
16390 L:      linux-crypto@vger.kernel.org
16391 S:      Maintained
16392 F:      crypto/pcrypt.c
16393 F:      include/crypto/pcrypt.h
16394
16395 PECI HARDWARE MONITORING DRIVERS
16396 M:      Iwona Winiarska <iwona.winiarska@intel.com>
16397 L:      linux-hwmon@vger.kernel.org
16398 S:      Supported
16399 F:      Documentation/hwmon/peci-cputemp.rst
16400 F:      Documentation/hwmon/peci-dimmtemp.rst
16401 F:      drivers/hwmon/peci/
16402
16403 PECI SUBSYSTEM
16404 M:      Iwona Winiarska <iwona.winiarska@intel.com>
16405 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
16406 S:      Supported
16407 F:      Documentation/devicetree/bindings/peci/
16408 F:      Documentation/peci/
16409 F:      drivers/peci/
16410 F:      include/linux/peci-cpu.h
16411 F:      include/linux/peci.h
16412
16413 PENSANDO ETHERNET DRIVERS
16414 M:      Shannon Nelson <shannon.nelson@amd.com>
16415 M:      Brett Creeley <brett.creeley@amd.com>
16416 M:      drivers@pensando.io
16417 L:      netdev@vger.kernel.org
16418 S:      Supported
16419 F:      Documentation/networking/device_drivers/ethernet/pensando/ionic.rst
16420 F:      drivers/net/ethernet/pensando/
16421
16422 PER-CPU MEMORY ALLOCATOR
16423 M:      Dennis Zhou <dennis@kernel.org>
16424 M:      Tejun Heo <tj@kernel.org>
16425 M:      Christoph Lameter <cl@linux.com>
16426 L:      linux-mm@kvack.org
16427 S:      Maintained
16428 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dennis/percpu.git
16429 F:      arch/*/include/asm/percpu.h
16430 F:      include/linux/percpu*.h
16431 F:      lib/percpu*.c
16432 F:      mm/percpu*.c
16433
16434 PER-TASK DELAY ACCOUNTING
16435 M:      Balbir Singh <bsingharora@gmail.com>
16436 S:      Maintained
16437 F:      include/linux/delayacct.h
16438 F:      kernel/delayacct.c
16439
16440 PERFORMANCE EVENTS SUBSYSTEM
16441 M:      Peter Zijlstra <peterz@infradead.org>
16442 M:      Ingo Molnar <mingo@redhat.com>
16443 M:      Arnaldo Carvalho de Melo <acme@kernel.org>
16444 R:      Mark Rutland <mark.rutland@arm.com>
16445 R:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
16446 R:      Jiri Olsa <jolsa@kernel.org>
16447 R:      Namhyung Kim <namhyung@kernel.org>
16448 R:      Ian Rogers <irogers@google.com>
16449 R:      Adrian Hunter <adrian.hunter@intel.com>
16450 L:      linux-perf-users@vger.kernel.org
16451 L:      linux-kernel@vger.kernel.org
16452 S:      Supported
16453 W:      https://perf.wiki.kernel.org/
16454 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
16455 F:      arch/*/events/*
16456 F:      arch/*/events/*/*
16457 F:      arch/*/include/asm/perf_event.h
16458 F:      arch/*/kernel/*/*/perf_event*.c
16459 F:      arch/*/kernel/*/perf_event*.c
16460 F:      arch/*/kernel/perf_callchain.c
16461 F:      arch/*/kernel/perf_event*.c
16462 F:      include/linux/perf_event.h
16463 F:      include/uapi/linux/perf_event.h
16464 F:      kernel/events/*
16465 F:      tools/lib/perf/
16466 F:      tools/perf/
16467
16468 PERFORMANCE EVENTS TOOLING ARM64
16469 R:      John Garry <john.g.garry@oracle.com>
16470 R:      Will Deacon <will@kernel.org>
16471 R:      James Clark <james.clark@arm.com>
16472 R:      Mike Leach <mike.leach@linaro.org>
16473 R:      Leo Yan <leo.yan@linaro.org>
16474 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16475 S:      Supported
16476 F:      tools/build/feature/test-libopencsd.c
16477 F:      tools/perf/arch/arm*/
16478 F:      tools/perf/pmu-events/arch/arm64/
16479 F:      tools/perf/util/arm-spe*
16480 F:      tools/perf/util/cs-etm*
16481
16482 PERSONALITY HANDLING
16483 M:      Christoph Hellwig <hch@infradead.org>
16484 L:      linux-abi-devel@lists.sourceforge.net
16485 S:      Maintained
16486 F:      include/linux/personality.h
16487 F:      include/uapi/linux/personality.h
16488
16489 PHOENIX RC FLIGHT CONTROLLER ADAPTER
16490 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
16491 L:      linux-input@vger.kernel.org
16492 S:      Maintained
16493 F:      Documentation/input/devices/pxrc.rst
16494 F:      drivers/input/joystick/pxrc.c
16495
16496 PHONET PROTOCOL
16497 M:      Remi Denis-Courmont <courmisch@gmail.com>
16498 S:      Supported
16499 F:      Documentation/networking/phonet.rst
16500 F:      include/linux/phonet.h
16501 F:      include/net/phonet/
16502 F:      include/uapi/linux/phonet.h
16503 F:      net/phonet/
16504
16505 PHRAM MTD DRIVER
16506 M:      Joern Engel <joern@lazybastard.org>
16507 L:      linux-mtd@lists.infradead.org
16508 S:      Maintained
16509 F:      drivers/mtd/devices/phram.c
16510
16511 PICOLCD HID DRIVER
16512 M:      Bruno Prémont <bonbons@linux-vserver.org>
16513 L:      linux-input@vger.kernel.org
16514 S:      Maintained
16515 F:      drivers/hid/hid-picolcd*
16516
16517 PIDFD API
16518 M:      Christian Brauner <christian@brauner.io>
16519 L:      linux-kernel@vger.kernel.org
16520 S:      Maintained
16521 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brauner/linux.git
16522 F:      samples/pidfd/
16523 F:      tools/testing/selftests/clone3/
16524 F:      tools/testing/selftests/pid_namespace/
16525 F:      tools/testing/selftests/pidfd/
16526 K:      (?i)pidfd
16527 K:      (?i)clone3
16528 K:      \b(clone_args|kernel_clone_args)\b
16529
16530 PIN CONTROL SUBSYSTEM
16531 M:      Linus Walleij <linus.walleij@linaro.org>
16532 L:      linux-gpio@vger.kernel.org
16533 S:      Maintained
16534 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git
16535 F:      Documentation/devicetree/bindings/pinctrl/
16536 F:      Documentation/driver-api/pin-control.rst
16537 F:      drivers/pinctrl/
16538 F:      include/dt-bindings/pinctrl/
16539 F:      include/linux/pinctrl/
16540
16541 PIN CONTROLLER - AMD
16542 M:      Basavaraj Natikar <Basavaraj.Natikar@amd.com>
16543 M:      Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
16544 S:      Maintained
16545 F:      drivers/pinctrl/pinctrl-amd.c
16546
16547 PIN CONTROLLER - FREESCALE
16548 M:      Dong Aisheng <aisheng.dong@nxp.com>
16549 M:      Fabio Estevam <festevam@gmail.com>
16550 M:      Shawn Guo <shawnguo@kernel.org>
16551 M:      Jacky Bai <ping.bai@nxp.com>
16552 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
16553 L:      linux-gpio@vger.kernel.org
16554 S:      Maintained
16555 F:      Documentation/devicetree/bindings/pinctrl/fsl,*
16556 F:      drivers/pinctrl/freescale/
16557
16558 PIN CONTROLLER - INTEL
16559 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
16560 M:      Andy Shevchenko <andy@kernel.org>
16561 S:      Supported
16562 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/intel.git
16563 F:      drivers/pinctrl/intel/
16564
16565 PIN CONTROLLER - KEEMBAY
16566 M:      Lakshmi Sowjanya D <lakshmi.sowjanya.d@intel.com>
16567 S:      Supported
16568 F:      drivers/pinctrl/pinctrl-keembay*
16569
16570 PIN CONTROLLER - MEDIATEK
16571 M:      Sean Wang <sean.wang@kernel.org>
16572 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
16573 S:      Maintained
16574 F:      Documentation/devicetree/bindings/pinctrl/mediatek,mt65xx-pinctrl.yaml
16575 F:      Documentation/devicetree/bindings/pinctrl/mediatek,mt6779-pinctrl.yaml
16576 F:      Documentation/devicetree/bindings/pinctrl/mediatek,mt7622-pinctrl.yaml
16577 F:      Documentation/devicetree/bindings/pinctrl/mediatek,mt8183-pinctrl.yaml
16578 F:      drivers/pinctrl/mediatek/
16579
16580 PIN CONTROLLER - MICROCHIP AT91
16581 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
16582 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16583 L:      linux-gpio@vger.kernel.org
16584 S:      Supported
16585 F:      drivers/gpio/gpio-sama5d2-piobu.c
16586 F:      drivers/pinctrl/pinctrl-at91*
16587
16588 PIN CONTROLLER - QUALCOMM
16589 M:      Bjorn Andersson <andersson@kernel.org>
16590 L:      linux-arm-msm@vger.kernel.org
16591 S:      Maintained
16592 F:      Documentation/devicetree/bindings/pinctrl/qcom,*.txt
16593 F:      drivers/pinctrl/qcom/
16594
16595 PIN CONTROLLER - RENESAS
16596 M:      Geert Uytterhoeven <geert+renesas@glider.be>
16597 L:      linux-renesas-soc@vger.kernel.org
16598 S:      Supported
16599 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git renesas-pinctrl
16600 F:      Documentation/devicetree/bindings/pinctrl/renesas,*
16601 F:      drivers/pinctrl/renesas/
16602
16603 PIN CONTROLLER - SAMSUNG
16604 M:      Tomasz Figa <tomasz.figa@gmail.com>
16605 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
16606 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
16607 R:      Alim Akhtar <alim.akhtar@samsung.com>
16608 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16609 L:      linux-samsung-soc@vger.kernel.org
16610 S:      Maintained
16611 C:      irc://irc.libera.chat/linux-exynos
16612 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
16613 B:      mailto:linux-samsung-soc@vger.kernel.org
16614 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/samsung.git
16615 F:      Documentation/devicetree/bindings/pinctrl/samsung,pinctrl*yaml
16616 F:      drivers/pinctrl/samsung/
16617 F:      include/dt-bindings/pinctrl/samsung.h
16618
16619 PIN CONTROLLER - SINGLE
16620 M:      Tony Lindgren <tony@atomide.com>
16621 M:      Haojian Zhuang <haojian.zhuang@linaro.org>
16622 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16623 L:      linux-omap@vger.kernel.org
16624 S:      Maintained
16625 F:      drivers/pinctrl/pinctrl-single.c
16626
16627 PIN CONTROLLER - THUNDERBAY
16628 M:      Lakshmi Sowjanya D <lakshmi.sowjanya.d@intel.com>
16629 S:      Supported
16630 F:      drivers/pinctrl/pinctrl-thunderbay.c
16631
16632 PIN CONTROLLER - SUNPLUS / TIBBO
16633 M:      Dvorkin Dmitry <dvorkin@tibbo.com>
16634 M:      Wells Lu <wellslutw@gmail.com>
16635 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16636 S:      Maintained
16637 W:      https://sunplus.atlassian.net/wiki/spaces/doc/overview
16638 F:      Documentation/devicetree/bindings/pinctrl/sunplus,*
16639 F:      drivers/pinctrl/sunplus/
16640 F:      include/dt-bindings/pinctrl/sppctl*.h
16641
16642 PINE64 PINEPHONE KEYBOARD DRIVER
16643 M:      Samuel Holland <samuel@sholland.org>
16644 S:      Supported
16645 F:      Documentation/devicetree/bindings/input/pine64,pinephone-keyboard.yaml
16646 F:      drivers/input/keyboard/pinephone-keyboard.c
16647
16648 PKTCDVD DRIVER
16649 M:      linux-block@vger.kernel.org
16650 S:      Orphan
16651 F:      drivers/block/pktcdvd.c
16652 F:      include/linux/pktcdvd.h
16653 F:      include/uapi/linux/pktcdvd.h
16654
16655 PLANTOWER PMS7003 AIR POLLUTION SENSOR DRIVER
16656 M:      Tomasz Duszynski <tduszyns@gmail.com>
16657 S:      Maintained
16658 F:      Documentation/devicetree/bindings/iio/chemical/plantower,pms7003.yaml
16659 F:      drivers/iio/chemical/pms7003.c
16660
16661 PLCA RECONCILIATION SUBLAYER (IEEE802.3 Clause 148)
16662 M:      Piergiorgio Beruto <piergiorgio.beruto@gmail.com>
16663 L:      netdev@vger.kernel.org
16664 S:      Maintained
16665 F:      drivers/net/phy/mdio-open-alliance.h
16666 F:      net/ethtool/plca.c
16667
16668 PLDMFW LIBRARY
16669 M:      Jacob Keller <jacob.e.keller@intel.com>
16670 S:      Maintained
16671 F:      Documentation/driver-api/pldmfw/
16672 F:      include/linux/pldmfw.h
16673 F:      lib/pldmfw/
16674
16675 PLX DMA DRIVER
16676 M:      Logan Gunthorpe <logang@deltatee.com>
16677 S:      Maintained
16678 F:      drivers/dma/plx_dma.c
16679
16680 PM6764TR DRIVER
16681 M:      Charles Hsu     <hsu.yungteng@gmail.com>
16682 L:      linux-hwmon@vger.kernel.org
16683 S:      Maintained
16684 F:      Documentation/hwmon/pm6764tr.rst
16685 F:      drivers/hwmon/pmbus/pm6764tr.c
16686
16687 PM-GRAPH UTILITY
16688 M:      "Todd E Brandt" <todd.e.brandt@linux.intel.com>
16689 L:      linux-pm@vger.kernel.org
16690 S:      Supported
16691 W:      https://01.org/pm-graph
16692 B:      https://bugzilla.kernel.org/buglist.cgi?component=pm-graph&product=Tools
16693 T:      git git://github.com/intel/pm-graph
16694 F:      tools/power/pm-graph
16695
16696 PMBUS HARDWARE MONITORING DRIVERS
16697 M:      Guenter Roeck <linux@roeck-us.net>
16698 L:      linux-hwmon@vger.kernel.org
16699 S:      Maintained
16700 W:      http://hwmon.wiki.kernel.org/
16701 W:      http://www.roeck-us.net/linux/drivers/
16702 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
16703 F:      Documentation/devicetree/bindings/hwmon/ltc2978.txt
16704 F:      Documentation/devicetree/bindings/hwmon/max31785.txt
16705 F:      Documentation/hwmon/adm1275.rst
16706 F:      Documentation/hwmon/ibm-cffps.rst
16707 F:      Documentation/hwmon/ir35221.rst
16708 F:      Documentation/hwmon/lm25066.rst
16709 F:      Documentation/hwmon/ltc2978.rst
16710 F:      Documentation/hwmon/ltc3815.rst
16711 F:      Documentation/hwmon/max16064.rst
16712 F:      Documentation/hwmon/max20751.rst
16713 F:      Documentation/hwmon/max31785.rst
16714 F:      Documentation/hwmon/max34440.rst
16715 F:      Documentation/hwmon/max8688.rst
16716 F:      Documentation/hwmon/pmbus-core.rst
16717 F:      Documentation/hwmon/pmbus.rst
16718 F:      Documentation/hwmon/tps40422.rst
16719 F:      Documentation/hwmon/ucd9000.rst
16720 F:      Documentation/hwmon/ucd9200.rst
16721 F:      Documentation/hwmon/zl6100.rst
16722 F:      drivers/hwmon/pmbus/
16723 F:      include/linux/pmbus.h
16724
16725 PMC SIERRA MaxRAID DRIVER
16726 L:      linux-scsi@vger.kernel.org
16727 S:      Orphan
16728 W:      http://www.pmc-sierra.com/
16729 F:      drivers/scsi/pmcraid.*
16730
16731 PMC SIERRA PM8001 DRIVER
16732 M:      Jack Wang <jinpu.wang@cloud.ionos.com>
16733 L:      linux-scsi@vger.kernel.org
16734 S:      Supported
16735 F:      drivers/scsi/pm8001/
16736
16737 PNI RM3100 IIO DRIVER
16738 M:      Song Qiang <songqiang1304521@gmail.com>
16739 L:      linux-iio@vger.kernel.org
16740 S:      Maintained
16741 F:      Documentation/devicetree/bindings/iio/magnetometer/pni,rm3100.yaml
16742 F:      drivers/iio/magnetometer/rm3100*
16743
16744 PNP SUPPORT
16745 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
16746 L:      linux-acpi@vger.kernel.org
16747 S:      Maintained
16748 F:      drivers/pnp/
16749 F:      include/linux/pnp.h
16750
16751 POSIX CLOCKS and TIMERS
16752 M:      Thomas Gleixner <tglx@linutronix.de>
16753 L:      linux-kernel@vger.kernel.org
16754 S:      Maintained
16755 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
16756 F:      fs/timerfd.c
16757 F:      include/linux/time_namespace.h
16758 F:      include/linux/timer*
16759 F:      kernel/time/*timer*
16760 F:      kernel/time/namespace.c
16761
16762 POWER MANAGEMENT CORE
16763 M:      "Rafael J. Wysocki" <rafael@kernel.org>
16764 L:      linux-pm@vger.kernel.org
16765 S:      Supported
16766 B:      https://bugzilla.kernel.org
16767 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
16768 F:      drivers/base/power/
16769 F:      drivers/powercap/
16770 F:      include/linux/intel_rapl.h
16771 F:      include/linux/pm.h
16772 F:      include/linux/pm_*
16773 F:      include/linux/powercap.h
16774 F:      kernel/configs/nopm.config
16775
16776 DYNAMIC THERMAL POWER MANAGEMENT (DTPM)
16777 M:      Daniel Lezcano <daniel.lezcano@kernel.org>
16778 L:      linux-pm@vger.kernel.org
16779 S:      Supported
16780 B:      https://bugzilla.kernel.org
16781 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
16782 F:      drivers/powercap/dtpm*
16783 F:      include/linux/dtpm.h
16784
16785 POWER STATE COORDINATION INTERFACE (PSCI)
16786 M:      Mark Rutland <mark.rutland@arm.com>
16787 M:      Lorenzo Pieralisi <lpieralisi@kernel.org>
16788 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16789 S:      Maintained
16790 F:      drivers/firmware/psci/
16791 F:      include/linux/psci.h
16792 F:      include/uapi/linux/psci.h
16793
16794 POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
16795 M:      Sebastian Reichel <sre@kernel.org>
16796 L:      linux-pm@vger.kernel.org
16797 S:      Maintained
16798 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
16799 F:      Documentation/ABI/testing/sysfs-class-power
16800 F:      Documentation/devicetree/bindings/power/supply/
16801 F:      drivers/power/supply/
16802 F:      include/linux/power/
16803 F:      include/linux/power_supply.h
16804
16805 POWERNV OPERATOR PANEL LCD DISPLAY DRIVER
16806 M:      Suraj Jitindar Singh <sjitindarsingh@gmail.com>
16807 L:      linuxppc-dev@lists.ozlabs.org
16808 S:      Maintained
16809 F:      drivers/char/powernv-op-panel.c
16810
16811 PPP OVER ATM (RFC 2364)
16812 M:      Mitchell Blank Jr <mitch@sfgoth.com>
16813 S:      Maintained
16814 F:      include/uapi/linux/atmppp.h
16815 F:      net/atm/pppoatm.c
16816
16817 PPP OVER ETHERNET
16818 M:      Michal Ostrowski <mostrows@earthlink.net>
16819 S:      Maintained
16820 F:      drivers/net/ppp/pppoe.c
16821 F:      drivers/net/ppp/pppox.c
16822
16823 PPP OVER L2TP
16824 M:      James Chapman <jchapman@katalix.com>
16825 S:      Maintained
16826 F:      include/linux/if_pppol2tp.h
16827 F:      include/uapi/linux/if_pppol2tp.h
16828 F:      net/l2tp/l2tp_ppp.c
16829
16830 PPP PROTOCOL DRIVERS AND COMPRESSORS
16831 L:      linux-ppp@vger.kernel.org
16832 S:      Orphan
16833 F:      drivers/net/ppp/ppp_*
16834
16835 PPS SUPPORT
16836 M:      Rodolfo Giometti <giometti@enneenne.com>
16837 L:      linuxpps@ml.enneenne.com (subscribers-only)
16838 S:      Maintained
16839 W:      http://wiki.enneenne.com/index.php/LinuxPPS_support
16840 F:      Documentation/ABI/testing/sysfs-pps
16841 F:      Documentation/devicetree/bindings/pps/pps-gpio.txt
16842 F:      Documentation/driver-api/pps.rst
16843 F:      drivers/pps/
16844 F:      include/linux/pps*.h
16845 F:      include/uapi/linux/pps.h
16846
16847 PPTP DRIVER
16848 M:      Dmitry Kozlov <xeb@mail.ru>
16849 L:      netdev@vger.kernel.org
16850 S:      Maintained
16851 W:      http://sourceforge.net/projects/accel-pptp
16852 F:      drivers/net/ppp/pptp.c
16853
16854 PRESSURE STALL INFORMATION (PSI)
16855 M:      Johannes Weiner <hannes@cmpxchg.org>
16856 M:      Suren Baghdasaryan <surenb@google.com>
16857 S:      Maintained
16858 F:      include/linux/psi*
16859 F:      kernel/sched/psi.c
16860
16861 PRINTK
16862 M:      Petr Mladek <pmladek@suse.com>
16863 M:      Sergey Senozhatsky <senozhatsky@chromium.org>
16864 R:      Steven Rostedt <rostedt@goodmis.org>
16865 R:      John Ogness <john.ogness@linutronix.de>
16866 S:      Maintained
16867 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/printk/linux.git
16868 F:      include/linux/printk.h
16869 F:      kernel/printk/
16870
16871 PRINTK INDEXING
16872 R:      Chris Down <chris@chrisdown.name>
16873 S:      Maintained
16874 F:      Documentation/core-api/printk-index.rst
16875 F:      kernel/printk/index.c
16876 K:      printk_index
16877
16878 PROC FILESYSTEM
16879 L:      linux-kernel@vger.kernel.org
16880 L:      linux-fsdevel@vger.kernel.org
16881 S:      Maintained
16882 F:      Documentation/filesystems/proc.rst
16883 F:      fs/proc/
16884 F:      include/linux/proc_fs.h
16885 F:      tools/testing/selftests/proc/
16886
16887 PROC SYSCTL
16888 M:      Luis Chamberlain <mcgrof@kernel.org>
16889 M:      Kees Cook <keescook@chromium.org>
16890 M:      Iurii Zaikin <yzaikin@google.com>
16891 L:      linux-kernel@vger.kernel.org
16892 L:      linux-fsdevel@vger.kernel.org
16893 S:      Maintained
16894 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mcgrof/linux.git sysctl-next
16895 F:      fs/proc/proc_sysctl.c
16896 F:      include/linux/sysctl.h
16897 F:      kernel/sysctl-test.c
16898 F:      kernel/sysctl.c
16899 F:      tools/testing/selftests/sysctl/
16900
16901 PS3 NETWORK SUPPORT
16902 M:      Geoff Levand <geoff@infradead.org>
16903 L:      netdev@vger.kernel.org
16904 L:      linuxppc-dev@lists.ozlabs.org
16905 S:      Maintained
16906 F:      drivers/net/ethernet/toshiba/ps3_gelic_net.*
16907
16908 PS3 PLATFORM SUPPORT
16909 M:      Geoff Levand <geoff@infradead.org>
16910 L:      linuxppc-dev@lists.ozlabs.org
16911 S:      Maintained
16912 F:      arch/powerpc/boot/ps3*
16913 F:      arch/powerpc/include/asm/lv1call.h
16914 F:      arch/powerpc/include/asm/ps3*.h
16915 F:      arch/powerpc/platforms/ps3/
16916 F:      drivers/*/ps3*
16917 F:      drivers/ps3/
16918 F:      drivers/rtc/rtc-ps3.c
16919 F:      drivers/usb/host/*ps3.c
16920 F:      sound/ppc/snd_ps3*
16921
16922 PS3VRAM DRIVER
16923 M:      Jim Paris <jim@jtan.com>
16924 M:      Geoff Levand <geoff@infradead.org>
16925 L:      linuxppc-dev@lists.ozlabs.org
16926 S:      Maintained
16927 F:      drivers/block/ps3vram.c
16928
16929 PSAMPLE PACKET SAMPLING SUPPORT
16930 M:      Yotam Gigi <yotam.gi@gmail.com>
16931 S:      Maintained
16932 F:      include/net/psample.h
16933 F:      include/uapi/linux/psample.h
16934 F:      net/psample
16935
16936 PSTORE FILESYSTEM
16937 M:      Kees Cook <keescook@chromium.org>
16938 R:      Tony Luck <tony.luck@intel.com>
16939 R:      Guilherme G. Piccoli <gpiccoli@igalia.com>
16940 L:      linux-hardening@vger.kernel.org
16941 S:      Supported
16942 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/pstore
16943 F:      Documentation/admin-guide/ramoops.rst
16944 F:      Documentation/admin-guide/pstore-blk.rst
16945 F:      Documentation/devicetree/bindings/reserved-memory/ramoops.yaml
16946 F:      drivers/acpi/apei/erst.c
16947 F:      drivers/firmware/efi/efi-pstore.c
16948 F:      fs/pstore/
16949 F:      include/linux/pstore*
16950 K:      \b(pstore|ramoops)
16951
16952 PTP HARDWARE CLOCK SUPPORT
16953 M:      Richard Cochran <richardcochran@gmail.com>
16954 L:      netdev@vger.kernel.org
16955 S:      Maintained
16956 W:      http://linuxptp.sourceforge.net/
16957 F:      Documentation/ABI/testing/sysfs-ptp
16958 F:      Documentation/driver-api/ptp.rst
16959 F:      drivers/net/phy/dp83640*
16960 F:      drivers/ptp/*
16961 F:      include/linux/ptp_cl*
16962 K:      (?:\b|_)ptp(?:\b|_)
16963
16964 PTP VIRTUAL CLOCK SUPPORT
16965 M:      Yangbo Lu <yangbo.lu@nxp.com>
16966 L:      netdev@vger.kernel.org
16967 S:      Maintained
16968 F:      drivers/ptp/ptp_vclock.c
16969 F:      net/ethtool/phc_vclocks.c
16970
16971 PTRACE SUPPORT
16972 M:      Oleg Nesterov <oleg@redhat.com>
16973 S:      Maintained
16974 F:      arch/*/*/ptrace*.c
16975 F:      arch/*/include/asm/ptrace*.h
16976 F:      arch/*/ptrace*.c
16977 F:      include/asm-generic/syscall.h
16978 F:      include/linux/ptrace.h
16979 F:      include/linux/regset.h
16980 F:      include/uapi/linux/ptrace.h
16981 F:      kernel/ptrace.c
16982
16983 PULSE8-CEC DRIVER
16984 M:      Hans Verkuil <hverkuil@xs4all.nl>
16985 L:      linux-media@vger.kernel.org
16986 S:      Maintained
16987 T:      git git://linuxtv.org/media_tree.git
16988 F:      drivers/media/cec/usb/pulse8/
16989
16990 PURELIFI PLFXLC DRIVER
16991 M:      Srinivasan Raju <srini.raju@purelifi.com>
16992 L:      linux-wireless@vger.kernel.org
16993 S:      Supported
16994 F:      drivers/net/wireless/purelifi/plfxlc/
16995
16996 PVRUSB2 VIDEO4LINUX DRIVER
16997 M:      Mike Isely <isely@pobox.com>
16998 L:      pvrusb2@isely.net       (subscribers-only)
16999 L:      linux-media@vger.kernel.org
17000 S:      Maintained
17001 W:      http://www.isely.net/pvrusb2/
17002 T:      git git://linuxtv.org/media_tree.git
17003 F:      Documentation/driver-api/media/drivers/pvrusb2*
17004 F:      drivers/media/usb/pvrusb2/
17005
17006 PWC WEBCAM DRIVER
17007 M:      Hans Verkuil <hverkuil@xs4all.nl>
17008 L:      linux-media@vger.kernel.org
17009 S:      Odd Fixes
17010 T:      git git://linuxtv.org/media_tree.git
17011 F:      drivers/media/usb/pwc/*
17012 F:      include/trace/events/pwc.h
17013
17014 PWM IR Transmitter
17015 M:      Sean Young <sean@mess.org>
17016 L:      linux-media@vger.kernel.org
17017 S:      Maintained
17018 F:      Documentation/devicetree/bindings/leds/irled/pwm-ir-tx.yaml
17019 F:      drivers/media/rc/pwm-ir-tx.c
17020
17021 PWM SUBSYSTEM
17022 M:      Thierry Reding <thierry.reding@gmail.com>
17023 R:      Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
17024 L:      linux-pwm@vger.kernel.org
17025 S:      Maintained
17026 Q:      https://patchwork.ozlabs.org/project/linux-pwm/list/
17027 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git
17028 F:      Documentation/devicetree/bindings/gpio/gpio-mvebu.yaml
17029 F:      Documentation/devicetree/bindings/pwm/
17030 F:      Documentation/driver-api/pwm.rst
17031 F:      drivers/gpio/gpio-mvebu.c
17032 F:      drivers/pwm/
17033 F:      drivers/video/backlight/pwm_bl.c
17034 F:      include/dt-bindings/pwm/
17035 F:      include/linux/pwm.h
17036 F:      include/linux/pwm_backlight.h
17037 K:      pwm_(config|apply_state|ops)
17038
17039 PXA GPIO DRIVER
17040 M:      Robert Jarzmik <robert.jarzmik@free.fr>
17041 L:      linux-gpio@vger.kernel.org
17042 S:      Maintained
17043 F:      drivers/gpio/gpio-pxa.c
17044
17045 PXA MMCI DRIVER
17046 S:      Orphan
17047
17048 PXA RTC DRIVER
17049 M:      Robert Jarzmik <robert.jarzmik@free.fr>
17050 L:      linux-rtc@vger.kernel.org
17051 S:      Maintained
17052
17053 PXA2xx/PXA3xx SUPPORT
17054 M:      Daniel Mack <daniel@zonque.org>
17055 M:      Haojian Zhuang <haojian.zhuang@gmail.com>
17056 M:      Robert Jarzmik <robert.jarzmik@free.fr>
17057 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
17058 S:      Maintained
17059 T:      git git://github.com/hzhuang1/linux.git
17060 T:      git git://github.com/rjarzmik/linux.git
17061 F:      arch/arm/boot/dts/pxa*
17062 F:      arch/arm/mach-pxa/
17063 F:      drivers/dma/pxa*
17064 F:      drivers/pcmcia/pxa2xx*
17065 F:      drivers/pinctrl/pxa/
17066 F:      drivers/spi/spi-pxa2xx*
17067 F:      drivers/usb/gadget/udc/pxa2*
17068 F:      include/sound/pxa2xx-lib.h
17069 F:      sound/arm/pxa*
17070 F:      sound/soc/pxa/
17071
17072 QAT DRIVER
17073 M:      Giovanni Cabiddu <giovanni.cabiddu@intel.com>
17074 L:      qat-linux@intel.com
17075 S:      Supported
17076 F:      drivers/crypto/intel/qat/
17077
17078 QCOM AUDIO (ASoC) DRIVERS
17079 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
17080 M:      Banajit Goswami <bgoswami@quicinc.com>
17081 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17082 S:      Supported
17083 F:      Documentation/devicetree/bindings/soc/qcom/qcom,apr*
17084 F:      Documentation/devicetree/bindings/sound/qcom,*
17085 F:      drivers/soc/qcom/apr.c
17086 F:      include/dt-bindings/sound/qcom,wcd9335.h
17087 F:      sound/soc/codecs/lpass-rx-macro.*
17088 F:      sound/soc/codecs/lpass-tx-macro.*
17089 F:      sound/soc/codecs/lpass-va-macro.c
17090 F:      sound/soc/codecs/lpass-wsa-macro.*
17091 F:      sound/soc/codecs/msm8916-wcd-analog.c
17092 F:      sound/soc/codecs/msm8916-wcd-digital.c
17093 F:      sound/soc/codecs/wcd9335.*
17094 F:      sound/soc/codecs/wcd934x.c
17095 F:      sound/soc/codecs/wcd-clsh-v2.*
17096 F:      sound/soc/codecs/wcd-mbhc-v2.*
17097 F:      sound/soc/codecs/wsa881x.c
17098 F:      sound/soc/codecs/wsa883x.c
17099 F:      sound/soc/qcom/
17100
17101 QCOM EMBEDDED USB DEBUGGER (EUD)
17102 M:      Souradeep Chowdhury <quic_schowdhu@quicinc.com>
17103 L:      linux-arm-msm@vger.kernel.org
17104 S:      Maintained
17105 F:      Documentation/ABI/testing/sysfs-driver-eud
17106 F:      Documentation/devicetree/bindings/soc/qcom/qcom,eud.yaml
17107 F:      drivers/usb/misc/qcom_eud.c
17108
17109 QCOM IPA DRIVER
17110 M:      Alex Elder <elder@kernel.org>
17111 L:      netdev@vger.kernel.org
17112 S:      Supported
17113 F:      drivers/net/ipa/
17114
17115 QEMU MACHINE EMULATOR AND VIRTUALIZER SUPPORT
17116 M:      Gabriel Somlo <somlo@cmu.edu>
17117 M:      "Michael S. Tsirkin" <mst@redhat.com>
17118 L:      qemu-devel@nongnu.org
17119 S:      Maintained
17120 F:      drivers/firmware/qemu_fw_cfg.c
17121 F:      include/uapi/linux/qemu_fw_cfg.h
17122
17123 QIB DRIVER
17124 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
17125 L:      linux-rdma@vger.kernel.org
17126 S:      Supported
17127 F:      drivers/infiniband/hw/qib/
17128
17129 QLOGIC QL41xxx FCOE DRIVER
17130 M:      Saurav Kashyap <skashyap@marvell.com>
17131 M:      Javed Hasan <jhasan@marvell.com>
17132 M:      GR-QLogic-Storage-Upstream@marvell.com
17133 L:      linux-scsi@vger.kernel.org
17134 S:      Supported
17135 F:      drivers/scsi/qedf/
17136
17137 QLOGIC QL41xxx ISCSI DRIVER
17138 M:      Nilesh Javali <njavali@marvell.com>
17139 M:      Manish Rangankar <mrangankar@marvell.com>
17140 M:      GR-QLogic-Storage-Upstream@marvell.com
17141 L:      linux-scsi@vger.kernel.org
17142 S:      Supported
17143 F:      drivers/scsi/qedi/
17144
17145 QLOGIC QL4xxx ETHERNET DRIVER
17146 M:      Ariel Elior <aelior@marvell.com>
17147 M:      Manish Chopra <manishc@marvell.com>
17148 L:      netdev@vger.kernel.org
17149 S:      Supported
17150 F:      drivers/net/ethernet/qlogic/qed/
17151 F:      drivers/net/ethernet/qlogic/qede/
17152 F:      include/linux/qed/
17153
17154 QLOGIC QL4xxx RDMA DRIVER
17155 M:      Michal Kalderon <mkalderon@marvell.com>
17156 M:      Ariel Elior <aelior@marvell.com>
17157 L:      linux-rdma@vger.kernel.org
17158 S:      Supported
17159 F:      drivers/infiniband/hw/qedr/
17160 F:      include/uapi/rdma/qedr-abi.h
17161
17162 QLOGIC QLA1280 SCSI DRIVER
17163 M:      Michael Reed <mdr@sgi.com>
17164 L:      linux-scsi@vger.kernel.org
17165 S:      Maintained
17166 F:      drivers/scsi/qla1280.[ch]
17167
17168 QLOGIC QLA2XXX FC-SCSI DRIVER
17169 M:      Nilesh Javali <njavali@marvell.com>
17170 M:      GR-QLogic-Storage-Upstream@marvell.com
17171 L:      linux-scsi@vger.kernel.org
17172 S:      Supported
17173 F:      drivers/scsi/qla2xxx/
17174
17175 QLOGIC QLA3XXX NETWORK DRIVER
17176 M:      GR-Linux-NIC-Dev@marvell.com
17177 L:      netdev@vger.kernel.org
17178 S:      Supported
17179 F:      drivers/net/ethernet/qlogic/qla3xxx.*
17180
17181 QLOGIC QLA4XXX iSCSI DRIVER
17182 M:      Nilesh Javali <njavali@marvell.com>
17183 M:      Manish Rangankar <mrangankar@marvell.com>
17184 M:      GR-QLogic-Storage-Upstream@marvell.com
17185 L:      linux-scsi@vger.kernel.org
17186 S:      Supported
17187 F:      drivers/scsi/qla4xxx/
17188
17189 QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
17190 M:      Shahed Shaikh <shshaikh@marvell.com>
17191 M:      Manish Chopra <manishc@marvell.com>
17192 M:      GR-Linux-NIC-Dev@marvell.com
17193 L:      netdev@vger.kernel.org
17194 S:      Supported
17195 F:      drivers/net/ethernet/qlogic/qlcnic/
17196
17197 QLOGIC QLGE 10Gb ETHERNET DRIVER
17198 M:      Manish Chopra <manishc@marvell.com>
17199 M:      GR-Linux-NIC-Dev@marvell.com
17200 M:      Coiby Xu <coiby.xu@gmail.com>
17201 L:      netdev@vger.kernel.org
17202 S:      Supported
17203 F:      Documentation/networking/device_drivers/qlogic/qlge.rst
17204 F:      drivers/staging/qlge/
17205
17206 QM1D1B0004 MEDIA DRIVER
17207 M:      Akihiro Tsukada <tskd08@gmail.com>
17208 L:      linux-media@vger.kernel.org
17209 S:      Odd Fixes
17210 F:      drivers/media/tuners/qm1d1b0004*
17211
17212 QM1D1C0042 MEDIA DRIVER
17213 M:      Akihiro Tsukada <tskd08@gmail.com>
17214 L:      linux-media@vger.kernel.org
17215 S:      Odd Fixes
17216 F:      drivers/media/tuners/qm1d1c0042*
17217
17218 QNX4 FILESYSTEM
17219 M:      Anders Larsen <al@alarsen.net>
17220 S:      Maintained
17221 W:      http://www.alarsen.net/linux/qnx4fs/
17222 F:      fs/qnx4/
17223 F:      include/uapi/linux/qnx4_fs.h
17224 F:      include/uapi/linux/qnxtypes.h
17225
17226 QNX6 FILESYSTEM
17227 S:      Orphan
17228 F:      Documentation/filesystems/qnx6.rst
17229 F:      fs/qnx6/
17230 F:      include/linux/qnx6_fs.h
17231
17232 QORIQ DPAA2 FSL-MC BUS DRIVER
17233 M:      Stuart Yoder <stuyoder@gmail.com>
17234 M:      Laurentiu Tudor <laurentiu.tudor@nxp.com>
17235 L:      linux-kernel@vger.kernel.org
17236 S:      Maintained
17237 F:      Documentation/ABI/stable/sysfs-bus-fsl-mc
17238 F:      Documentation/devicetree/bindings/misc/fsl,qoriq-mc.txt
17239 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/overview.rst
17240 F:      drivers/bus/fsl-mc/
17241 F:      include/uapi/linux/fsl_mc.h
17242
17243 QT1010 MEDIA DRIVER
17244 M:      Antti Palosaari <crope@iki.fi>
17245 L:      linux-media@vger.kernel.org
17246 S:      Maintained
17247 W:      https://linuxtv.org
17248 W:      http://palosaari.fi/linux/
17249 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17250 T:      git git://linuxtv.org/anttip/media_tree.git
17251 F:      drivers/media/tuners/qt1010*
17252
17253 QUALCOMM ATHEROS ATH10K WIRELESS DRIVER
17254 M:      Kalle Valo <kvalo@kernel.org>
17255 L:      ath10k@lists.infradead.org
17256 S:      Supported
17257 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath10k
17258 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
17259 F:      drivers/net/wireless/ath/ath10k/
17260 F:      Documentation/devicetree/bindings/net/wireless/qcom,ath10k.yaml
17261
17262 QUALCOMM ATHEROS ATH11K WIRELESS DRIVER
17263 M:      Kalle Valo <kvalo@kernel.org>
17264 L:      ath11k@lists.infradead.org
17265 S:      Supported
17266 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
17267 F:      Documentation/devicetree/bindings/net/wireless/qcom,ath11k.yaml
17268 F:      drivers/net/wireless/ath/ath11k/
17269
17270 QUALCOMM ATH12K WIRELESS DRIVER
17271 M:      Kalle Valo <kvalo@kernel.org>
17272 L:      ath12k@lists.infradead.org
17273 S:      Supported
17274 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
17275 F:      drivers/net/wireless/ath/ath12k/
17276
17277 QUALCOMM ATHEROS ATH9K WIRELESS DRIVER
17278 M:      Toke Høiland-Jørgensen <toke@toke.dk>
17279 L:      linux-wireless@vger.kernel.org
17280 S:      Maintained
17281 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath9k
17282 F:      Documentation/devicetree/bindings/net/wireless/qca,ath9k.yaml
17283 F:      drivers/net/wireless/ath/ath9k/
17284
17285 QUALCOMM BAM-DMUX WWAN NETWORK DRIVER
17286 M:      Stephan Gerhold <stephan@gerhold.net>
17287 L:      netdev@vger.kernel.org
17288 L:      linux-arm-msm@vger.kernel.org
17289 S:      Maintained
17290 F:      Documentation/devicetree/bindings/net/qcom,bam-dmux.yaml
17291 F:      drivers/net/wwan/qcom_bam_dmux.c
17292
17293 QUALCOMM CAMERA SUBSYSTEM DRIVER
17294 M:      Robert Foss <rfoss@kernel.org>
17295 M:      Todor Tomov <todor.too@gmail.com>
17296 M:      Bryan O'Donoghue <bryan.odonoghue@linaro.org>
17297 L:      linux-media@vger.kernel.org
17298 S:      Maintained
17299 F:      Documentation/admin-guide/media/qcom_camss.rst
17300 F:      Documentation/devicetree/bindings/media/*camss*
17301 F:      drivers/media/platform/qcom/camss/
17302
17303 QUALCOMM CLOCK DRIVERS
17304 M:      Bjorn Andersson <andersson@kernel.org>
17305 L:      linux-arm-msm@vger.kernel.org
17306 S:      Supported
17307 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/qcom/linux.git
17308 F:      Documentation/devicetree/bindings/clock/qcom,*
17309 F:      drivers/clk/qcom/
17310 F:      include/dt-bindings/clock/qcom,*
17311
17312 QUALCOMM CLOUD AI (QAIC) DRIVER
17313 M:      Jeffrey Hugo <quic_jhugo@quicinc.com>
17314 L:      linux-arm-msm@vger.kernel.org
17315 L:      dri-devel@lists.freedesktop.org
17316 S:      Supported
17317 T:      git git://anongit.freedesktop.org/drm/drm-misc
17318 F:      Documentation/accel/qaic/
17319 F:      drivers/accel/qaic/
17320 F:      include/uapi/drm/qaic_accel.h
17321
17322 QUALCOMM CORE POWER REDUCTION (CPR) AVS DRIVER
17323 M:      Bjorn Andersson <andersson@kernel.org>
17324 M:      Konrad Dybcio <konrad.dybcio@linaro.org>
17325 L:      linux-pm@vger.kernel.org
17326 L:      linux-arm-msm@vger.kernel.org
17327 S:      Maintained
17328 F:      Documentation/devicetree/bindings/power/avs/qcom,cpr.yaml
17329 F:      drivers/soc/qcom/cpr.c
17330
17331 QUALCOMM CPUFREQ DRIVER MSM8996/APQ8096
17332 M:      Ilia Lin <ilia.lin@kernel.org>
17333 L:      linux-pm@vger.kernel.org
17334 S:      Maintained
17335 F:      Documentation/devicetree/bindings/cpufreq/qcom-cpufreq-nvmem.yaml
17336 F:      Documentation/devicetree/bindings/opp/opp-v2-kryo-cpu.yaml
17337 F:      drivers/cpufreq/qcom-cpufreq-nvmem.c
17338
17339 QUALCOMM CRYPTO DRIVERS
17340 M:      Thara Gopinath <thara.gopinath@gmail.com>
17341 L:      linux-crypto@vger.kernel.org
17342 L:      linux-arm-msm@vger.kernel.org
17343 S:      Maintained
17344 F:      Documentation/devicetree/bindings/crypto/qcom-qce.yaml
17345 F:      drivers/crypto/qce/
17346
17347 QUALCOMM EMAC GIGABIT ETHERNET DRIVER
17348 M:      Timur Tabi <timur@kernel.org>
17349 L:      netdev@vger.kernel.org
17350 S:      Maintained
17351 F:      drivers/net/ethernet/qualcomm/emac/
17352
17353 QUALCOMM ETHQOS ETHERNET DRIVER
17354 M:      Vinod Koul <vkoul@kernel.org>
17355 R:      Bhupesh Sharma <bhupesh.sharma@linaro.org>
17356 L:      netdev@vger.kernel.org
17357 S:      Maintained
17358 F:      Documentation/devicetree/bindings/net/qcom,ethqos.yaml
17359 F:      drivers/net/ethernet/stmicro/stmmac/dwmac-qcom-ethqos.c
17360
17361 QUALCOMM FASTRPC DRIVER
17362 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
17363 M:      Amol Maheshwari <amahesh@qti.qualcomm.com>
17364 L:      linux-arm-msm@vger.kernel.org
17365 S:      Maintained
17366 F:      Documentation/devicetree/bindings/misc/qcom,fastrpc.yaml
17367 F:      drivers/misc/fastrpc.c
17368 F:      include/uapi/misc/fastrpc.h
17369
17370 QUALCOMM HEXAGON ARCHITECTURE
17371 M:      Brian Cain <bcain@quicinc.com>
17372 L:      linux-hexagon@vger.kernel.org
17373 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bcain/linux.git
17374 S:      Supported
17375 F:      arch/hexagon/
17376
17377 QUALCOMM HIDMA DRIVER
17378 M:      Sinan Kaya <okaya@kernel.org>
17379 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
17380 L:      linux-arm-msm@vger.kernel.org
17381 L:      dmaengine@vger.kernel.org
17382 S:      Supported
17383 F:      drivers/dma/qcom/hidma*
17384
17385 QUALCOMM I2C CCI DRIVER
17386 M:      Loic Poulain <loic.poulain@linaro.org>
17387 M:      Robert Foss <rfoss@kernel.org>
17388 L:      linux-i2c@vger.kernel.org
17389 L:      linux-arm-msm@vger.kernel.org
17390 S:      Maintained
17391 F:      Documentation/devicetree/bindings/i2c/qcom,i2c-cci.yaml
17392 F:      drivers/i2c/busses/i2c-qcom-cci.c
17393
17394 QUALCOMM INTERCONNECT BWMON DRIVER
17395 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
17396 L:      linux-arm-msm@vger.kernel.org
17397 S:      Maintained
17398 F:      Documentation/devicetree/bindings/interconnect/qcom,msm8998-bwmon.yaml
17399 F:      drivers/soc/qcom/icc-bwmon.c
17400
17401 QUALCOMM IOMMU
17402 M:      Rob Clark <robdclark@gmail.com>
17403 L:      iommu@lists.linux.dev
17404 L:      linux-arm-msm@vger.kernel.org
17405 S:      Maintained
17406 F:      drivers/iommu/arm/arm-smmu/qcom_iommu.c
17407
17408 QUALCOMM IPC ROUTER (QRTR) DRIVER
17409 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
17410 L:      linux-arm-msm@vger.kernel.org
17411 S:      Maintained
17412 F:      include/trace/events/qrtr.h
17413 F:      include/uapi/linux/qrtr.h
17414 F:      net/qrtr/
17415
17416 QUALCOMM IPCC MAILBOX DRIVER
17417 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
17418 L:      linux-arm-msm@vger.kernel.org
17419 S:      Supported
17420 F:      Documentation/devicetree/bindings/mailbox/qcom-ipcc.yaml
17421 F:      drivers/mailbox/qcom-ipcc.c
17422 F:      include/dt-bindings/mailbox/qcom-ipcc.h
17423
17424 QUALCOMM IPQ4019 USB PHY DRIVER
17425 M:      Robert Marko <robert.marko@sartura.hr>
17426 M:      Luka Perkov <luka.perkov@sartura.hr>
17427 L:      linux-arm-msm@vger.kernel.org
17428 S:      Maintained
17429 F:      Documentation/devicetree/bindings/phy/qcom-usb-ipq4019-phy.yaml
17430 F:      drivers/phy/qualcomm/phy-qcom-ipq4019-usb.c
17431
17432 QUALCOMM IPQ4019 VQMMC REGULATOR DRIVER
17433 M:      Robert Marko <robert.marko@sartura.hr>
17434 M:      Luka Perkov <luka.perkov@sartura.hr>
17435 L:      linux-arm-msm@vger.kernel.org
17436 S:      Maintained
17437 F:      Documentation/devicetree/bindings/regulator/vqmmc-ipq4019-regulator.yaml
17438 F:      drivers/regulator/vqmmc-ipq4019-regulator.c
17439
17440 QUALCOMM NAND CONTROLLER DRIVER
17441 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
17442 L:      linux-mtd@lists.infradead.org
17443 L:      linux-arm-msm@vger.kernel.org
17444 S:      Maintained
17445 F:      Documentation/devicetree/bindings/mtd/qcom,nandc.yaml
17446 F:      drivers/mtd/nand/raw/qcom_nandc.c
17447
17448 QUALCOMM RMNET DRIVER
17449 M:      Subash Abhinov Kasiviswanathan <quic_subashab@quicinc.com>
17450 M:      Sean Tranchetti <quic_stranche@quicinc.com>
17451 L:      netdev@vger.kernel.org
17452 S:      Maintained
17453 F:      Documentation/networking/device_drivers/cellular/qualcomm/rmnet.rst
17454 F:      drivers/net/ethernet/qualcomm/rmnet/
17455 F:      include/linux/if_rmnet.h
17456
17457 QUALCOMM TSENS THERMAL DRIVER
17458 M:      Amit Kucheria <amitk@kernel.org>
17459 M:      Thara Gopinath <thara.gopinath@gmail.com>
17460 L:      linux-pm@vger.kernel.org
17461 L:      linux-arm-msm@vger.kernel.org
17462 S:      Maintained
17463 F:      Documentation/devicetree/bindings/thermal/qcom-tsens.yaml
17464 F:      drivers/thermal/qcom/
17465
17466 QUALCOMM VENUS VIDEO ACCELERATOR DRIVER
17467 M:      Stanimir Varbanov <stanimir.k.varbanov@gmail.com>
17468 M:      Vikash Garodia <quic_vgarodia@quicinc.com>
17469 L:      linux-media@vger.kernel.org
17470 L:      linux-arm-msm@vger.kernel.org
17471 S:      Maintained
17472 T:      git git://linuxtv.org/media_tree.git
17473 F:      Documentation/devicetree/bindings/media/*venus*
17474 F:      drivers/media/platform/qcom/venus/
17475
17476 QUALCOMM WCN36XX WIRELESS DRIVER
17477 M:      Loic Poulain <loic.poulain@linaro.org>
17478 L:      wcn36xx@lists.infradead.org
17479 S:      Supported
17480 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wcn36xx
17481 F:      drivers/net/wireless/ath/wcn36xx/
17482
17483 QUANTENNA QTNFMAC WIRELESS DRIVER
17484 M:      Igor Mitsyanko <imitsyanko@quantenna.com>
17485 R:      Sergey Matyukevich <geomatsi@gmail.com>
17486 L:      linux-wireless@vger.kernel.org
17487 S:      Maintained
17488 F:      drivers/net/wireless/quantenna
17489
17490 RADEON and AMDGPU DRM DRIVERS
17491 M:      Alex Deucher <alexander.deucher@amd.com>
17492 M:      Christian König <christian.koenig@amd.com>
17493 M:      Pan, Xinhui <Xinhui.Pan@amd.com>
17494 L:      amd-gfx@lists.freedesktop.org
17495 S:      Supported
17496 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
17497 B:      https://gitlab.freedesktop.org/drm/amd/-/issues
17498 C:      irc://irc.oftc.net/radeon
17499 F:      Documentation/gpu/amdgpu/
17500 F:      drivers/gpu/drm/amd/
17501 F:      drivers/gpu/drm/radeon/
17502 F:      include/uapi/drm/amdgpu_drm.h
17503 F:      include/uapi/drm/radeon_drm.h
17504
17505 RADEON FRAMEBUFFER DISPLAY DRIVER
17506 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
17507 L:      linux-fbdev@vger.kernel.org
17508 S:      Maintained
17509 F:      drivers/video/fbdev/aty/radeon*
17510 F:      include/uapi/linux/radeonfb.h
17511
17512 RADIOSHARK RADIO DRIVER
17513 M:      Hans Verkuil <hverkuil@xs4all.nl>
17514 L:      linux-media@vger.kernel.org
17515 S:      Maintained
17516 T:      git git://linuxtv.org/media_tree.git
17517 F:      drivers/media/radio/radio-shark.c
17518
17519 RADIOSHARK2 RADIO DRIVER
17520 M:      Hans Verkuil <hverkuil@xs4all.nl>
17521 L:      linux-media@vger.kernel.org
17522 S:      Maintained
17523 T:      git git://linuxtv.org/media_tree.git
17524 F:      drivers/media/radio/radio-shark2.c
17525 F:      drivers/media/radio/radio-tea5777.c
17526
17527 RADOS BLOCK DEVICE (RBD)
17528 M:      Ilya Dryomov <idryomov@gmail.com>
17529 R:      Dongsheng Yang <dongsheng.yang@easystack.cn>
17530 L:      ceph-devel@vger.kernel.org
17531 S:      Supported
17532 W:      http://ceph.com/
17533 T:      git https://github.com/ceph/ceph-client.git
17534 F:      Documentation/ABI/testing/sysfs-bus-rbd
17535 F:      drivers/block/rbd.c
17536 F:      drivers/block/rbd_types.h
17537
17538 RAGE128 FRAMEBUFFER DISPLAY DRIVER
17539 M:      Paul Mackerras <paulus@samba.org>
17540 L:      linux-fbdev@vger.kernel.org
17541 S:      Maintained
17542 F:      drivers/video/fbdev/aty/aty128fb.c
17543
17544 RAINSHADOW-CEC DRIVER
17545 M:      Hans Verkuil <hverkuil@xs4all.nl>
17546 L:      linux-media@vger.kernel.org
17547 S:      Maintained
17548 T:      git git://linuxtv.org/media_tree.git
17549 F:      drivers/media/cec/usb/rainshadow/
17550
17551 RALINK MIPS ARCHITECTURE
17552 M:      John Crispin <john@phrozen.org>
17553 L:      linux-mips@vger.kernel.org
17554 S:      Maintained
17555 F:      arch/mips/ralink
17556
17557 RALINK MT7621 MIPS ARCHITECTURE
17558 M:      Arınç ÜNAL <arinc.unal@arinc9.com>
17559 M:      Sergio Paracuellos <sergio.paracuellos@gmail.com>
17560 L:      linux-mips@vger.kernel.org
17561 S:      Maintained
17562 F:      arch/mips/boot/dts/ralink/mt7621*
17563
17564 RALINK PINCTRL DRIVER
17565 M:      Arınç ÜNAL <arinc.unal@arinc9.com>
17566 M:      Sergio Paracuellos <sergio.paracuellos@gmail.com>
17567 L:      linux-mips@vger.kernel.org
17568 S:      Maintained
17569 F:      drivers/pinctrl/ralink/
17570
17571 RALINK RT2X00 WIRELESS LAN DRIVER
17572 M:      Stanislaw Gruszka <stf_xl@wp.pl>
17573 M:      Helmut Schaa <helmut.schaa@googlemail.com>
17574 L:      linux-wireless@vger.kernel.org
17575 S:      Maintained
17576 F:      drivers/net/wireless/ralink/rt2x00/
17577
17578 RAMDISK RAM BLOCK DEVICE DRIVER
17579 M:      Jens Axboe <axboe@kernel.dk>
17580 S:      Maintained
17581 F:      Documentation/admin-guide/blockdev/ramdisk.rst
17582 F:      drivers/block/brd.c
17583
17584 RANCHU VIRTUAL BOARD FOR MIPS
17585 M:      Miodrag Dinic <miodrag.dinic@mips.com>
17586 L:      linux-mips@vger.kernel.org
17587 S:      Supported
17588 F:      arch/mips/configs/generic/board-ranchu.config
17589 F:      arch/mips/generic/board-ranchu.c
17590
17591 RANDOM NUMBER DRIVER
17592 M:      "Theodore Ts'o" <tytso@mit.edu>
17593 M:      Jason A. Donenfeld <Jason@zx2c4.com>
17594 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/crng/random.git
17595 S:      Maintained
17596 F:      drivers/char/random.c
17597 F:      drivers/virt/vmgenid.c
17598
17599 RAPIDIO SUBSYSTEM
17600 M:      Matt Porter <mporter@kernel.crashing.org>
17601 M:      Alexandre Bounine <alex.bou9@gmail.com>
17602 S:      Maintained
17603 F:      drivers/rapidio/
17604
17605 RAS INFRASTRUCTURE
17606 M:      Tony Luck <tony.luck@intel.com>
17607 M:      Borislav Petkov <bp@alien8.de>
17608 L:      linux-edac@vger.kernel.org
17609 S:      Maintained
17610 F:      Documentation/admin-guide/ras.rst
17611 F:      drivers/ras/
17612 F:      include/linux/ras.h
17613 F:      include/ras/ras_event.h
17614
17615 RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
17616 L:      linux-wireless@vger.kernel.org
17617 S:      Orphan
17618 F:      drivers/net/wireless/legacy/ray*
17619
17620 RC-CORE / LIRC FRAMEWORK
17621 M:      Sean Young <sean@mess.org>
17622 L:      linux-media@vger.kernel.org
17623 S:      Maintained
17624 W:      http://linuxtv.org
17625 T:      git git://linuxtv.org/media_tree.git
17626 F:      Documentation/driver-api/media/rc-core.rst
17627 F:      Documentation/userspace-api/media/rc/
17628 F:      drivers/media/rc/
17629 F:      include/media/rc-map.h
17630 F:      include/media/rc-core.h
17631 F:      include/uapi/linux/lirc.h
17632
17633 RCMM REMOTE CONTROLS DECODER
17634 M:      Patrick Lerda <patrick9876@free.fr>
17635 S:      Maintained
17636 F:      drivers/media/rc/ir-rcmm-decoder.c
17637
17638 RCUTORTURE TEST FRAMEWORK
17639 M:      "Paul E. McKenney" <paulmck@kernel.org>
17640 M:      Josh Triplett <josh@joshtriplett.org>
17641 R:      Steven Rostedt <rostedt@goodmis.org>
17642 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
17643 R:      Lai Jiangshan <jiangshanlai@gmail.com>
17644 L:      rcu@vger.kernel.org
17645 S:      Supported
17646 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
17647 F:      tools/testing/selftests/rcutorture
17648
17649 RDACM20 Camera Sensor
17650 M:      Jacopo Mondi <jacopo+renesas@jmondi.org>
17651 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
17652 M:      Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
17653 M:      Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
17654 L:      linux-media@vger.kernel.org
17655 S:      Maintained
17656 F:      Documentation/devicetree/bindings/media/i2c/imi,rdacm2x-gmsl.yaml
17657 F:      drivers/media/i2c/max9271.c
17658 F:      drivers/media/i2c/max9271.h
17659 F:      drivers/media/i2c/rdacm20.c
17660
17661 RDACM21 Camera Sensor
17662 M:      Jacopo Mondi <jacopo+renesas@jmondi.org>
17663 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
17664 M:      Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
17665 M:      Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
17666 L:      linux-media@vger.kernel.org
17667 S:      Maintained
17668 F:      Documentation/devicetree/bindings/media/i2c/imi,rdacm2x-gmsl.yaml
17669 F:      drivers/media/i2c/max9271.c
17670 F:      drivers/media/i2c/max9271.h
17671 F:      drivers/media/i2c/rdacm21.c
17672
17673 RDC R-321X SoC
17674 M:      Florian Fainelli <florian@openwrt.org>
17675 S:      Maintained
17676
17677 RDC R6040 FAST ETHERNET DRIVER
17678 M:      Florian Fainelli <f.fainelli@gmail.com>
17679 L:      netdev@vger.kernel.org
17680 S:      Maintained
17681 F:      drivers/net/ethernet/rdc/r6040.c
17682
17683 RDMAVT - RDMA verbs software
17684 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
17685 L:      linux-rdma@vger.kernel.org
17686 S:      Supported
17687 F:      drivers/infiniband/sw/rdmavt
17688
17689 RDS - RELIABLE DATAGRAM SOCKETS
17690 M:      Santosh Shilimkar <santosh.shilimkar@oracle.com>
17691 L:      netdev@vger.kernel.org
17692 L:      linux-rdma@vger.kernel.org
17693 L:      rds-devel@oss.oracle.com (moderated for non-subscribers)
17694 S:      Supported
17695 W:      https://oss.oracle.com/projects/rds/
17696 F:      Documentation/networking/rds.rst
17697 F:      net/rds/
17698
17699 RDT - RESOURCE ALLOCATION
17700 M:      Fenghua Yu <fenghua.yu@intel.com>
17701 M:      Reinette Chatre <reinette.chatre@intel.com>
17702 L:      linux-kernel@vger.kernel.org
17703 S:      Supported
17704 F:      Documentation/arch/x86/resctrl*
17705 F:      arch/x86/include/asm/resctrl.h
17706 F:      arch/x86/kernel/cpu/resctrl/
17707 F:      tools/testing/selftests/resctrl/
17708
17709 READ-COPY UPDATE (RCU)
17710 M:      "Paul E. McKenney" <paulmck@kernel.org>
17711 M:      Frederic Weisbecker <frederic@kernel.org> (kernel/rcu/tree_nocb.h)
17712 M:      Neeraj Upadhyay <quic_neeraju@quicinc.com> (kernel/rcu/tasks.h)
17713 M:      Joel Fernandes <joel@joelfernandes.org>
17714 M:      Josh Triplett <josh@joshtriplett.org>
17715 M:      Boqun Feng <boqun.feng@gmail.com>
17716 R:      Steven Rostedt <rostedt@goodmis.org>
17717 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
17718 R:      Lai Jiangshan <jiangshanlai@gmail.com>
17719 R:      Zqiang <qiang1.zhang@intel.com>
17720 L:      rcu@vger.kernel.org
17721 S:      Supported
17722 W:      http://www.rdrop.com/users/paulmck/RCU/
17723 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
17724 F:      Documentation/RCU/
17725 F:      include/linux/rcu*
17726 F:      kernel/rcu/
17727 X:      Documentation/RCU/torture.rst
17728 X:      include/linux/srcu*.h
17729 X:      kernel/rcu/srcu*.c
17730
17731 REAL TIME CLOCK (RTC) SUBSYSTEM
17732 M:      Alessandro Zummo <a.zummo@towertech.it>
17733 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
17734 L:      linux-rtc@vger.kernel.org
17735 S:      Maintained
17736 Q:      http://patchwork.ozlabs.org/project/rtc-linux/list/
17737 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git
17738 F:      Documentation/admin-guide/rtc.rst
17739 F:      Documentation/devicetree/bindings/rtc/
17740 F:      drivers/rtc/
17741 F:      include/linux/platform_data/rtc-*
17742 F:      include/linux/rtc.h
17743 F:      include/linux/rtc/
17744 F:      include/uapi/linux/rtc.h
17745 F:      tools/testing/selftests/rtc/
17746
17747 REALTEK AUDIO CODECS
17748 M:      Oder Chiou <oder_chiou@realtek.com>
17749 S:      Maintained
17750 F:      include/sound/rt*.h
17751 F:      sound/soc/codecs/rt*
17752
17753 REALTEK OTTO WATCHDOG
17754 M:      Sander Vanheule <sander@svanheule.net>
17755 L:      linux-watchdog@vger.kernel.org
17756 S:      Maintained
17757 F:      Documentation/devicetree/bindings/watchdog/realtek,otto-wdt.yaml
17758 F:      drivers/watchdog/realtek_otto_wdt.c
17759
17760 REALTEK RTL83xx SMI DSA ROUTER CHIPS
17761 M:      Linus Walleij <linus.walleij@linaro.org>
17762 M:      Alvin Šipraga <alsi@bang-olufsen.dk>
17763 S:      Maintained
17764 F:      Documentation/devicetree/bindings/net/dsa/realtek.yaml
17765 F:      drivers/net/dsa/realtek/*
17766
17767 REALTEK WIRELESS DRIVER (rtlwifi family)
17768 M:      Ping-Ke Shih <pkshih@realtek.com>
17769 L:      linux-wireless@vger.kernel.org
17770 S:      Maintained
17771 W:      https://wireless.wiki.kernel.org/
17772 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
17773 F:      drivers/net/wireless/realtek/rtlwifi/
17774
17775 REALTEK WIRELESS DRIVER (rtw88)
17776 M:      Yan-Hsuan Chuang <tony0620emma@gmail.com>
17777 L:      linux-wireless@vger.kernel.org
17778 S:      Maintained
17779 F:      drivers/net/wireless/realtek/rtw88/
17780
17781 REALTEK WIRELESS DRIVER (rtw89)
17782 M:      Ping-Ke Shih <pkshih@realtek.com>
17783 L:      linux-wireless@vger.kernel.org
17784 S:      Maintained
17785 F:      drivers/net/wireless/realtek/rtw89/
17786
17787 REDPINE WIRELESS DRIVER
17788 L:      linux-wireless@vger.kernel.org
17789 S:      Orphan
17790 F:      drivers/net/wireless/rsi/
17791
17792 REGISTER MAP ABSTRACTION
17793 M:      Mark Brown <broonie@kernel.org>
17794 L:      linux-kernel@vger.kernel.org
17795 S:      Supported
17796 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
17797 F:      Documentation/devicetree/bindings/regmap/
17798 F:      drivers/base/regmap/
17799 F:      include/linux/regmap.h
17800
17801 REISERFS FILE SYSTEM
17802 L:      reiserfs-devel@vger.kernel.org
17803 S:      Supported
17804 F:      fs/reiserfs/
17805
17806 REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
17807 M:      Bjorn Andersson <andersson@kernel.org>
17808 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
17809 L:      linux-remoteproc@vger.kernel.org
17810 S:      Maintained
17811 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/remoteproc/linux.git rproc-next
17812 F:      Documentation/ABI/testing/sysfs-class-remoteproc
17813 F:      Documentation/devicetree/bindings/remoteproc/
17814 F:      Documentation/staging/remoteproc.rst
17815 F:      drivers/remoteproc/
17816 F:      include/linux/remoteproc.h
17817 F:      include/linux/remoteproc/
17818
17819 REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM
17820 M:      Bjorn Andersson <andersson@kernel.org>
17821 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
17822 L:      linux-remoteproc@vger.kernel.org
17823 S:      Maintained
17824 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/remoteproc/linux.git rpmsg-next
17825 F:      Documentation/ABI/testing/sysfs-bus-rpmsg
17826 F:      Documentation/staging/rpmsg.rst
17827 F:      drivers/rpmsg/
17828 F:      include/linux/rpmsg.h
17829 F:      include/linux/rpmsg/
17830 F:      include/uapi/linux/rpmsg.h
17831 F:      samples/rpmsg/
17832
17833 REMOTE PROCESSOR MESSAGING (RPMSG) WWAN CONTROL DRIVER
17834 M:      Stephan Gerhold <stephan@gerhold.net>
17835 L:      netdev@vger.kernel.org
17836 L:      linux-remoteproc@vger.kernel.org
17837 S:      Maintained
17838 F:      drivers/net/wwan/rpmsg_wwan_ctrl.c
17839
17840 RENESAS CLOCK DRIVERS
17841 M:      Geert Uytterhoeven <geert+renesas@glider.be>
17842 L:      linux-renesas-soc@vger.kernel.org
17843 S:      Supported
17844 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git renesas-clk
17845 F:      Documentation/devicetree/bindings/clock/renesas,*
17846 F:      drivers/clk/renesas/
17847
17848 RENESAS EMEV2 I2C DRIVER
17849 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
17850 L:      linux-renesas-soc@vger.kernel.org
17851 S:      Supported
17852 F:      Documentation/devicetree/bindings/i2c/renesas,iic-emev2.yaml
17853 F:      drivers/i2c/busses/i2c-emev2.c
17854
17855 RENESAS ETHERNET DRIVERS
17856 R:      Sergey Shtylyov <s.shtylyov@omp.ru>
17857 L:      netdev@vger.kernel.org
17858 L:      linux-renesas-soc@vger.kernel.org
17859 F:      Documentation/devicetree/bindings/net/renesas,*.yaml
17860 F:      drivers/net/ethernet/renesas/
17861 F:      include/linux/sh_eth.h
17862
17863 RENESAS IDT821034 ASoC CODEC
17864 M:      Herve Codina <herve.codina@bootlin.com>
17865 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17866 S:      Maintained
17867 F:      Documentation/devicetree/bindings/sound/renesas,idt821034.yaml
17868 F:      sound/soc/codecs/idt821034.c
17869
17870 RENESAS R-CAR GYROADC DRIVER
17871 M:      Marek Vasut <marek.vasut@gmail.com>
17872 L:      linux-iio@vger.kernel.org
17873 S:      Supported
17874 F:      Documentation/devicetree/bindings/iio/adc/renesas,rcar-gyroadc.yaml
17875 F:      drivers/iio/adc/rcar-gyroadc.c
17876
17877 RENESAS R-CAR I2C DRIVERS
17878 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
17879 L:      linux-renesas-soc@vger.kernel.org
17880 S:      Supported
17881 F:      Documentation/devicetree/bindings/i2c/renesas,rcar-i2c.yaml
17882 F:      Documentation/devicetree/bindings/i2c/renesas,rmobile-iic.yaml
17883 F:      drivers/i2c/busses/i2c-rcar.c
17884 F:      drivers/i2c/busses/i2c-sh_mobile.c
17885
17886 RENESAS R-CAR SATA DRIVER
17887 R:      Sergey Shtylyov <s.shtylyov@omp.ru>
17888 S:      Supported
17889 L:      linux-ide@vger.kernel.org
17890 L:      linux-renesas-soc@vger.kernel.org
17891 F:      Documentation/devicetree/bindings/ata/renesas,rcar-sata.yaml
17892 F:      drivers/ata/sata_rcar.c
17893
17894 RENESAS R-CAR THERMAL DRIVERS
17895 M:      Niklas Söderlund <niklas.soderlund@ragnatech.se>
17896 L:      linux-renesas-soc@vger.kernel.org
17897 S:      Supported
17898 F:      Documentation/devicetree/bindings/thermal/rcar-gen3-thermal.yaml
17899 F:      Documentation/devicetree/bindings/thermal/rcar-thermal.yaml
17900 F:      drivers/thermal/rcar_gen3_thermal.c
17901 F:      drivers/thermal/rcar_thermal.c
17902
17903 RENESAS RIIC DRIVER
17904 M:      Chris Brandt <chris.brandt@renesas.com>
17905 L:      linux-renesas-soc@vger.kernel.org
17906 S:      Supported
17907 F:      Documentation/devicetree/bindings/i2c/renesas,riic.yaml
17908 F:      drivers/i2c/busses/i2c-riic.c
17909
17910 RENESAS USB PHY DRIVER
17911 M:      Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
17912 L:      linux-renesas-soc@vger.kernel.org
17913 S:      Maintained
17914 F:      drivers/phy/renesas/phy-rcar-gen3-usb*.c
17915
17916 RENESAS RZ/G2L A/D DRIVER
17917 M:      Lad Prabhakar <prabhakar.mahadev-lad.rj@bp.renesas.com>
17918 L:      linux-iio@vger.kernel.org
17919 L:      linux-renesas-soc@vger.kernel.org
17920 S:      Supported
17921 F:      Documentation/devicetree/bindings/iio/adc/renesas,rzg2l-adc.yaml
17922 F:      drivers/iio/adc/rzg2l_adc.c
17923
17924 RENESAS RZ/N1 A5PSW SWITCH DRIVER
17925 M:      Clément Léger <clement.leger@bootlin.com>
17926 L:      linux-renesas-soc@vger.kernel.org
17927 L:      netdev@vger.kernel.org
17928 S:      Maintained
17929 F:      Documentation/devicetree/bindings/net/dsa/renesas,rzn1-a5psw.yaml
17930 F:      Documentation/devicetree/bindings/net/pcs/renesas,rzn1-miic.yaml
17931 F:      drivers/net/dsa/rzn1_a5psw*
17932 F:      drivers/net/pcs/pcs-rzn1-miic.c
17933 F:      include/dt-bindings/net/pcs-rzn1-miic.h
17934 F:      include/linux/pcs-rzn1-miic.h
17935 F:      net/dsa/tag_rzn1_a5psw.c
17936
17937 RENESAS RZ/N1 RTC CONTROLLER DRIVER
17938 M:      Miquel Raynal <miquel.raynal@bootlin.com>
17939 L:      linux-rtc@vger.kernel.org
17940 L:      linux-renesas-soc@vger.kernel.org
17941 S:      Maintained
17942 F:      Documentation/devicetree/bindings/rtc/renesas,rzn1-rtc.yaml
17943 F:      drivers/rtc/rtc-rzn1.c
17944
17945 RENESAS RZ/N1 USBF CONTROLLER DRIVER
17946 M:      Herve Codina <herve.codina@bootlin.com>
17947 L:      linux-renesas-soc@vger.kernel.org
17948 L:      linux-usb@vger.kernel.org
17949 S:      Maintained
17950 F:      Documentation/devicetree/bindings/usb/renesas,rzn1-usbf.yaml
17951 F:      drivers/usb/gadget/udc/renesas_usbf.c
17952
17953 RENESAS R-CAR GEN3 & RZ/N1 NAND CONTROLLER DRIVER
17954 M:      Miquel Raynal <miquel.raynal@bootlin.com>
17955 L:      linux-mtd@lists.infradead.org
17956 L:      linux-renesas-soc@vger.kernel.org
17957 S:      Maintained
17958 F:      Documentation/devicetree/bindings/mtd/renesas-nandc.yaml
17959 F:      drivers/mtd/nand/raw/renesas-nand-controller.c
17960
17961 RENESAS VERSACLOCK 7 CLOCK DRIVER
17962 M:      Alex Helms <alexander.helms.jy@renesas.com>
17963 S:      Maintained
17964 F:      Documentation/devicetree/bindings/clock/renesas,versaclock7.yaml
17965 F:      drivers/clk/clk-versaclock7.c
17966
17967 RESET CONTROLLER FRAMEWORK
17968 M:      Philipp Zabel <p.zabel@pengutronix.de>
17969 S:      Maintained
17970 T:      git git://git.pengutronix.de/git/pza/linux
17971 F:      Documentation/devicetree/bindings/reset/
17972 F:      Documentation/driver-api/reset.rst
17973 F:      drivers/reset/
17974 F:      include/dt-bindings/reset/
17975 F:      include/linux/reset-controller.h
17976 F:      include/linux/reset.h
17977 F:      include/linux/reset/
17978 K:      \b(?:devm_|of_)?reset_control(?:ler_[a-z]+|_[a-z_]+)?\b
17979
17980 RESTARTABLE SEQUENCES SUPPORT
17981 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
17982 M:      Peter Zijlstra <peterz@infradead.org>
17983 M:      "Paul E. McKenney" <paulmck@kernel.org>
17984 M:      Boqun Feng <boqun.feng@gmail.com>
17985 L:      linux-kernel@vger.kernel.org
17986 S:      Supported
17987 F:      include/trace/events/rseq.h
17988 F:      include/uapi/linux/rseq.h
17989 F:      kernel/rseq.c
17990 F:      tools/testing/selftests/rseq/
17991
17992 RFKILL
17993 M:      Johannes Berg <johannes@sipsolutions.net>
17994 L:      linux-wireless@vger.kernel.org
17995 S:      Maintained
17996 W:      https://wireless.wiki.kernel.org/
17997 Q:      https://patchwork.kernel.org/project/linux-wireless/list/
17998 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless.git
17999 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless-next.git
18000 F:      Documentation/ABI/stable/sysfs-class-rfkill
18001 F:      Documentation/driver-api/rfkill.rst
18002 F:      include/linux/rfkill.h
18003 F:      include/uapi/linux/rfkill.h
18004 F:      net/rfkill/
18005
18006 RHASHTABLE
18007 M:      Thomas Graf <tgraf@suug.ch>
18008 M:      Herbert Xu <herbert@gondor.apana.org.au>
18009 L:      netdev@vger.kernel.org
18010 S:      Maintained
18011 F:      include/linux/rhashtable-types.h
18012 F:      include/linux/rhashtable.h
18013 F:      lib/rhashtable.c
18014 F:      lib/test_rhashtable.c
18015
18016 RICOH R5C592 MEMORYSTICK DRIVER
18017 M:      Maxim Levitsky <maximlevitsky@gmail.com>
18018 S:      Maintained
18019 F:      drivers/memstick/host/r592.*
18020
18021 RICOH SMARTMEDIA/XD DRIVER
18022 M:      Maxim Levitsky <maximlevitsky@gmail.com>
18023 S:      Maintained
18024 F:      drivers/mtd/nand/raw/r852.c
18025 F:      drivers/mtd/nand/raw/r852.h
18026
18027 RISC-V PMU DRIVERS
18028 M:      Atish Patra <atishp@atishpatra.org>
18029 R:      Anup Patel <anup@brainfault.org>
18030 L:      linux-riscv@lists.infradead.org
18031 S:      Supported
18032 F:      drivers/perf/riscv_pmu.c
18033 F:      drivers/perf/riscv_pmu_legacy.c
18034 F:      drivers/perf/riscv_pmu_sbi.c
18035
18036 RISC-V ARCHITECTURE
18037 M:      Paul Walmsley <paul.walmsley@sifive.com>
18038 M:      Palmer Dabbelt <palmer@dabbelt.com>
18039 M:      Albert Ou <aou@eecs.berkeley.edu>
18040 L:      linux-riscv@lists.infradead.org
18041 S:      Supported
18042 Q:      https://patchwork.kernel.org/project/linux-riscv/list/
18043 C:      irc://irc.libera.chat/riscv
18044 P:      Documentation/riscv/patch-acceptance.rst
18045 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/riscv/linux.git
18046 F:      arch/riscv/
18047 N:      riscv
18048 K:      riscv
18049
18050 RISC-V MICROCHIP FPGA SUPPORT
18051 M:      Conor Dooley <conor.dooley@microchip.com>
18052 M:      Daire McNamara <daire.mcnamara@microchip.com>
18053 L:      linux-riscv@lists.infradead.org
18054 S:      Supported
18055 F:      Documentation/devicetree/bindings/clock/microchip,mpfs*.yaml
18056 F:      Documentation/devicetree/bindings/gpio/microchip,mpfs-gpio.yaml
18057 F:      Documentation/devicetree/bindings/i2c/microchip,corei2c.yaml
18058 F:      Documentation/devicetree/bindings/mailbox/microchip,mpfs-mailbox.yaml
18059 F:      Documentation/devicetree/bindings/net/can/microchip,mpfs-can.yaml
18060 F:      Documentation/devicetree/bindings/pwm/microchip,corepwm.yaml
18061 F:      Documentation/devicetree/bindings/riscv/microchip.yaml
18062 F:      Documentation/devicetree/bindings/soc/microchip/microchip,mpfs-sys-controller.yaml
18063 F:      Documentation/devicetree/bindings/spi/microchip,mpfs-spi.yaml
18064 F:      Documentation/devicetree/bindings/usb/microchip,mpfs-musb.yaml
18065 F:      arch/riscv/boot/dts/microchip/
18066 F:      drivers/char/hw_random/mpfs-rng.c
18067 F:      drivers/clk/microchip/clk-mpfs*.c
18068 F:      drivers/i2c/busses/i2c-microchip-corei2c.c
18069 F:      drivers/mailbox/mailbox-mpfs.c
18070 F:      drivers/pci/controller/pcie-microchip-host.c
18071 F:      drivers/reset/reset-mpfs.c
18072 F:      drivers/rtc/rtc-mpfs.c
18073 F:      drivers/soc/microchip/mpfs-sys-controller.c
18074 F:      drivers/spi/spi-microchip-core-qspi.c
18075 F:      drivers/spi/spi-microchip-core.c
18076 F:      drivers/usb/musb/mpfs.c
18077 F:      include/soc/microchip/mpfs.h
18078
18079 RISC-V MISC SOC SUPPORT
18080 M:      Conor Dooley <conor@kernel.org>
18081 L:      linux-riscv@lists.infradead.org
18082 S:      Maintained
18083 Q:      https://patchwork.kernel.org/project/linux-riscv/list/
18084 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/conor/linux.git/
18085 F:      Documentation/devicetree/bindings/riscv/
18086 F:      arch/riscv/boot/dts/
18087
18088 RNBD BLOCK DRIVERS
18089 M:      Md. Haris Iqbal <haris.iqbal@ionos.com>
18090 M:      Jack Wang <jinpu.wang@ionos.com>
18091 L:      linux-block@vger.kernel.org
18092 S:      Maintained
18093 F:      drivers/block/rnbd/
18094
18095 ROCCAT DRIVERS
18096 M:      Stefan Achatz <erazor_de@users.sourceforge.net>
18097 S:      Maintained
18098 W:      http://sourceforge.net/projects/roccat/
18099 F:      Documentation/ABI/*/sysfs-driver-hid-roccat*
18100 F:      drivers/hid/hid-roccat*
18101 F:      include/linux/hid-roccat*
18102
18103 ROCKCHIP CRYPTO DRIVERS
18104 M:      Corentin Labbe <clabbe@baylibre.com>
18105 L:      linux-crypto@vger.kernel.org
18106 S:      Maintained
18107 F:      Documentation/devicetree/bindings/crypto/rockchip,rk3288-crypto.yaml
18108 F:      drivers/crypto/rockchip/
18109
18110 ROCKCHIP I2S TDM DRIVER
18111 M:      Nicolas Frattaroli <frattaroli.nicolas@gmail.com>
18112 L:      linux-rockchip@lists.infradead.org
18113 S:      Maintained
18114 F:      Documentation/devicetree/bindings/sound/rockchip,i2s-tdm.yaml
18115 F:      sound/soc/rockchip/rockchip_i2s_tdm.*
18116
18117 ROCKCHIP ISP V1 DRIVER
18118 M:      Dafna Hirschfeld <dafna@fastmail.com>
18119 L:      linux-media@vger.kernel.org
18120 L:      linux-rockchip@lists.infradead.org
18121 S:      Maintained
18122 F:      Documentation/admin-guide/media/rkisp1.rst
18123 F:      Documentation/devicetree/bindings/media/rockchip-isp1.yaml
18124 F:      Documentation/userspace-api/media/v4l/pixfmt-meta-rkisp1.rst
18125 F:      drivers/media/platform/rockchip/rkisp1
18126 F:      include/uapi/linux/rkisp1-config.h
18127
18128 ROCKCHIP RASTER 2D GRAPHIC ACCELERATION UNIT DRIVER
18129 M:      Jacob Chen <jacob-chen@iotwrt.com>
18130 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
18131 L:      linux-media@vger.kernel.org
18132 L:      linux-rockchip@lists.infradead.org
18133 S:      Maintained
18134 F:      Documentation/devicetree/bindings/media/rockchip-rga.yaml
18135 F:      drivers/media/platform/rockchip/rga/
18136
18137 ROCKCHIP VIDEO DECODER DRIVER
18138 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
18139 L:      linux-media@vger.kernel.org
18140 L:      linux-rockchip@lists.infradead.org
18141 S:      Maintained
18142 F:      Documentation/devicetree/bindings/media/rockchip,vdec.yaml
18143 F:      drivers/staging/media/rkvdec/
18144
18145 ROCKER DRIVER
18146 M:      Jiri Pirko <jiri@resnulli.us>
18147 L:      netdev@vger.kernel.org
18148 S:      Supported
18149 F:      drivers/net/ethernet/rocker/
18150
18151 ROCKETPORT EXPRESS/INFINITY DRIVER
18152 M:      Kevin Cernekee <cernekee@gmail.com>
18153 L:      linux-serial@vger.kernel.org
18154 S:      Odd Fixes
18155 F:      drivers/tty/serial/rp2.*
18156
18157 ROHM BD99954 CHARGER IC
18158 M:      Matti Vaittinen <mazziesaccount@gmail.com>
18159 S:      Supported
18160 F:      drivers/power/supply/bd99954-charger.c
18161 F:      drivers/power/supply/bd99954-charger.h
18162
18163 ROHM BH1750 AMBIENT LIGHT SENSOR DRIVER
18164 M:      Tomasz Duszynski <tduszyns@gmail.com>
18165 S:      Maintained
18166 F:      Documentation/devicetree/bindings/iio/light/bh1750.yaml
18167 F:      drivers/iio/light/bh1750.c
18168
18169 ROHM MULTIFUNCTION BD9571MWV-M PMIC DEVICE DRIVERS
18170 M:      Marek Vasut <marek.vasut+renesas@gmail.com>
18171 L:      linux-kernel@vger.kernel.org
18172 L:      linux-renesas-soc@vger.kernel.org
18173 S:      Supported
18174 F:      Documentation/devicetree/bindings/mfd/rohm,bd9571mwv.yaml
18175 F:      drivers/gpio/gpio-bd9571mwv.c
18176 F:      drivers/mfd/bd9571mwv.c
18177 F:      drivers/regulator/bd9571mwv-regulator.c
18178 F:      include/linux/mfd/bd9571mwv.h
18179
18180 ROHM POWER MANAGEMENT IC DEVICE DRIVERS
18181 M:      Matti Vaittinen <mazziesaccount@gmail.com>
18182 S:      Supported
18183 F:      drivers/clk/clk-bd718x7.c
18184 F:      drivers/gpio/gpio-bd71815.c
18185 F:      drivers/gpio/gpio-bd71828.c
18186 F:      drivers/mfd/rohm-bd71828.c
18187 F:      drivers/mfd/rohm-bd718x7.c
18188 F:      drivers/mfd/rohm-bd9576.c
18189 F:      drivers/regulator/bd71815-regulator.c
18190 F:      drivers/regulator/bd71828-regulator.c
18191 F:      drivers/regulator/bd718x7-regulator.c
18192 F:      drivers/regulator/bd9576-regulator.c
18193 F:      drivers/regulator/rohm-regulator.c
18194 F:      drivers/rtc/rtc-bd70528.c
18195 F:      drivers/watchdog/bd9576_wdt.c
18196 F:      include/linux/mfd/rohm-bd71815.h
18197 F:      include/linux/mfd/rohm-bd71828.h
18198 F:      include/linux/mfd/rohm-bd718x7.h
18199 F:      include/linux/mfd/rohm-bd957x.h
18200 F:      include/linux/mfd/rohm-generic.h
18201 F:      include/linux/mfd/rohm-shared.h
18202
18203 ROSE NETWORK LAYER
18204 M:      Ralf Baechle <ralf@linux-mips.org>
18205 L:      linux-hams@vger.kernel.org
18206 S:      Maintained
18207 W:      http://www.linux-ax25.org/
18208 F:      include/net/rose.h
18209 F:      include/uapi/linux/rose.h
18210 F:      net/rose/
18211
18212 ROTATION DRIVER FOR ALLWINNER A83T
18213 M:      Jernej Skrabec <jernej.skrabec@gmail.com>
18214 L:      linux-media@vger.kernel.org
18215 S:      Maintained
18216 T:      git git://linuxtv.org/media_tree.git
18217 F:      Documentation/devicetree/bindings/media/allwinner,sun8i-a83t-de2-rotate.yaml
18218 F:      drivers/media/platform/sunxi/sun8i-rotate/
18219
18220 RPMSG TTY DRIVER
18221 M:      Arnaud Pouliquen <arnaud.pouliquen@foss.st.com>
18222 L:      linux-remoteproc@vger.kernel.org
18223 S:      Maintained
18224 F:      drivers/tty/rpmsg_tty.c
18225
18226 RTL2830 MEDIA DRIVER
18227 M:      Antti Palosaari <crope@iki.fi>
18228 L:      linux-media@vger.kernel.org
18229 S:      Maintained
18230 W:      https://linuxtv.org
18231 W:      http://palosaari.fi/linux/
18232 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18233 T:      git git://linuxtv.org/anttip/media_tree.git
18234 F:      drivers/media/dvb-frontends/rtl2830*
18235
18236 RTL2832 MEDIA DRIVER
18237 M:      Antti Palosaari <crope@iki.fi>
18238 L:      linux-media@vger.kernel.org
18239 S:      Maintained
18240 W:      https://linuxtv.org
18241 W:      http://palosaari.fi/linux/
18242 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18243 T:      git git://linuxtv.org/anttip/media_tree.git
18244 F:      drivers/media/dvb-frontends/rtl2832*
18245
18246 RTL2832_SDR MEDIA DRIVER
18247 M:      Antti Palosaari <crope@iki.fi>
18248 L:      linux-media@vger.kernel.org
18249 S:      Maintained
18250 W:      https://linuxtv.org
18251 W:      http://palosaari.fi/linux/
18252 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18253 T:      git git://linuxtv.org/anttip/media_tree.git
18254 F:      drivers/media/dvb-frontends/rtl2832_sdr*
18255
18256 RTL8180 WIRELESS DRIVER
18257 L:      linux-wireless@vger.kernel.org
18258 S:      Orphan
18259 W:      https://wireless.wiki.kernel.org/
18260 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
18261 F:      drivers/net/wireless/realtek/rtl818x/rtl8180/
18262
18263 RTL8187 WIRELESS DRIVER
18264 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
18265 M:      Hin-Tak Leung <htl10@users.sourceforge.net>
18266 M:      Larry Finger <Larry.Finger@lwfinger.net>
18267 L:      linux-wireless@vger.kernel.org
18268 S:      Maintained
18269 W:      https://wireless.wiki.kernel.org/
18270 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
18271 F:      drivers/net/wireless/realtek/rtl818x/rtl8187/
18272
18273 RTL8XXXU WIRELESS DRIVER (rtl8xxxu)
18274 M:      Jes Sorensen <Jes.Sorensen@gmail.com>
18275 L:      linux-wireless@vger.kernel.org
18276 S:      Maintained
18277 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jes/linux.git rtl8xxxu-devel
18278 F:      drivers/net/wireless/realtek/rtl8xxxu/
18279
18280 RTRS TRANSPORT DRIVERS
18281 M:      Md. Haris Iqbal <haris.iqbal@ionos.com>
18282 M:      Jack Wang <jinpu.wang@ionos.com>
18283 L:      linux-rdma@vger.kernel.org
18284 S:      Maintained
18285 F:      drivers/infiniband/ulp/rtrs/
18286
18287 RUNTIME VERIFICATION (RV)
18288 M:      Daniel Bristot de Oliveira <bristot@kernel.org>
18289 M:      Steven Rostedt <rostedt@goodmis.org>
18290 L:      linux-trace-devel@vger.kernel.org
18291 S:      Maintained
18292 F:      Documentation/trace/rv/
18293 F:      include/linux/rv.h
18294 F:      include/rv/
18295 F:      kernel/trace/rv/
18296 F:      tools/verification/
18297
18298 RUST
18299 M:      Miguel Ojeda <ojeda@kernel.org>
18300 M:      Alex Gaynor <alex.gaynor@gmail.com>
18301 M:      Wedson Almeida Filho <wedsonaf@gmail.com>
18302 R:      Boqun Feng <boqun.feng@gmail.com>
18303 R:      Gary Guo <gary@garyguo.net>
18304 R:      Björn Roy Baron <bjorn3_gh@protonmail.com>
18305 L:      rust-for-linux@vger.kernel.org
18306 S:      Supported
18307 W:      https://github.com/Rust-for-Linux/linux
18308 B:      https://github.com/Rust-for-Linux/linux/issues
18309 C:      zulip://rust-for-linux.zulipchat.com
18310 T:      git https://github.com/Rust-for-Linux/linux.git rust-next
18311 F:      Documentation/rust/
18312 F:      rust/
18313 F:      samples/rust/
18314 F:      scripts/*rust*
18315 K:      \b(?i:rust)\b
18316
18317 RXRPC SOCKETS (AF_RXRPC)
18318 M:      David Howells <dhowells@redhat.com>
18319 M:      Marc Dionne <marc.dionne@auristor.com>
18320 L:      linux-afs@lists.infradead.org
18321 S:      Supported
18322 W:      https://www.infradead.org/~dhowells/kafs/
18323 F:      Documentation/networking/rxrpc.rst
18324 F:      include/keys/rxrpc-type.h
18325 F:      include/net/af_rxrpc.h
18326 F:      include/trace/events/rxrpc.h
18327 F:      include/uapi/linux/rxrpc.h
18328 F:      net/rxrpc/
18329
18330 S3 SAVAGE FRAMEBUFFER DRIVER
18331 M:      Antonino Daplas <adaplas@gmail.com>
18332 L:      linux-fbdev@vger.kernel.org
18333 S:      Maintained
18334 F:      drivers/video/fbdev/savage/
18335
18336 S390 ARCHITECTURE
18337 M:      Heiko Carstens <hca@linux.ibm.com>
18338 M:      Vasily Gorbik <gor@linux.ibm.com>
18339 M:      Alexander Gordeev <agordeev@linux.ibm.com>
18340 R:      Christian Borntraeger <borntraeger@linux.ibm.com>
18341 R:      Sven Schnelle <svens@linux.ibm.com>
18342 L:      linux-s390@vger.kernel.org
18343 S:      Supported
18344 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux.git
18345 F:      Documentation/driver-api/s390-drivers.rst
18346 F:      Documentation/s390/
18347 F:      arch/s390/
18348 F:      drivers/s390/
18349 F:      drivers/watchdog/diag288_wdt.c
18350
18351 S390 COMMON I/O LAYER
18352 M:      Vineeth Vijayan <vneethv@linux.ibm.com>
18353 M:      Peter Oberparleiter <oberpar@linux.ibm.com>
18354 L:      linux-s390@vger.kernel.org
18355 S:      Supported
18356 F:      drivers/s390/cio/
18357
18358 S390 DASD DRIVER
18359 M:      Stefan Haberland <sth@linux.ibm.com>
18360 M:      Jan Hoeppner <hoeppner@linux.ibm.com>
18361 L:      linux-s390@vger.kernel.org
18362 S:      Supported
18363 F:      block/partitions/ibm.c
18364 F:      drivers/s390/block/dasd*
18365 F:      include/linux/dasd_mod.h
18366
18367 S390 IOMMU (PCI)
18368 M:      Niklas Schnelle <schnelle@linux.ibm.com>
18369 M:      Matthew Rosato <mjrosato@linux.ibm.com>
18370 R:      Gerald Schaefer <gerald.schaefer@linux.ibm.com>
18371 L:      linux-s390@vger.kernel.org
18372 S:      Supported
18373 F:      drivers/iommu/s390-iommu.c
18374
18375 S390 IUCV NETWORK LAYER
18376 M:      Alexandra Winter <wintera@linux.ibm.com>
18377 M:      Wenjia Zhang <wenjia@linux.ibm.com>
18378 L:      linux-s390@vger.kernel.org
18379 L:      netdev@vger.kernel.org
18380 S:      Supported
18381 F:      drivers/s390/net/*iucv*
18382 F:      include/net/iucv/
18383 F:      net/iucv/
18384
18385 S390 NETWORK DRIVERS
18386 M:      Alexandra Winter <wintera@linux.ibm.com>
18387 M:      Wenjia Zhang <wenjia@linux.ibm.com>
18388 L:      linux-s390@vger.kernel.org
18389 L:      netdev@vger.kernel.org
18390 S:      Supported
18391 F:      drivers/s390/net/
18392
18393 S390 MM
18394 M:      Alexander Gordeev <agordeev@linux.ibm.com>
18395 M:      Gerald Schaefer <gerald.schaefer@linux.ibm.com>
18396 L:      linux-s390@vger.kernel.org
18397 S:      Supported
18398 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux.git
18399 F:      arch/s390/include/asm/pgtable.h
18400 F:      arch/s390/mm
18401
18402 S390 PCI SUBSYSTEM
18403 M:      Niklas Schnelle <schnelle@linux.ibm.com>
18404 M:      Gerald Schaefer <gerald.schaefer@linux.ibm.com>
18405 L:      linux-s390@vger.kernel.org
18406 S:      Supported
18407 F:      arch/s390/pci/
18408 F:      drivers/pci/hotplug/s390_pci_hpc.c
18409 F:      Documentation/s390/pci.rst
18410
18411 S390 SCM DRIVER
18412 M:      Vineeth Vijayan <vneethv@linux.ibm.com>
18413 L:      linux-s390@vger.kernel.org
18414 S:      Supported
18415 F:      drivers/s390/block/scm*
18416 F:      drivers/s390/cio/scm.c
18417
18418 S390 VFIO AP DRIVER
18419 M:      Tony Krowiak <akrowiak@linux.ibm.com>
18420 M:      Halil Pasic <pasic@linux.ibm.com>
18421 M:      Jason Herne <jjherne@linux.ibm.com>
18422 L:      linux-s390@vger.kernel.org
18423 S:      Supported
18424 F:      Documentation/s390/vfio-ap*
18425 F:      drivers/s390/crypto/vfio_ap*
18426
18427 S390 VFIO-CCW DRIVER
18428 M:      Eric Farman <farman@linux.ibm.com>
18429 M:      Matthew Rosato <mjrosato@linux.ibm.com>
18430 R:      Halil Pasic <pasic@linux.ibm.com>
18431 L:      linux-s390@vger.kernel.org
18432 L:      kvm@vger.kernel.org
18433 S:      Supported
18434 F:      Documentation/s390/vfio-ccw.rst
18435 F:      drivers/s390/cio/vfio_ccw*
18436 F:      include/uapi/linux/vfio_ccw.h
18437
18438 S390 VFIO-PCI DRIVER
18439 M:      Matthew Rosato <mjrosato@linux.ibm.com>
18440 M:      Eric Farman <farman@linux.ibm.com>
18441 L:      linux-s390@vger.kernel.org
18442 L:      kvm@vger.kernel.org
18443 S:      Supported
18444 F:      arch/s390/kvm/pci*
18445 F:      drivers/vfio/pci/vfio_pci_zdev.c
18446 F:      include/uapi/linux/vfio_zdev.h
18447
18448 S390 ZCRYPT DRIVER
18449 M:      Harald Freudenberger <freude@linux.ibm.com>
18450 L:      linux-s390@vger.kernel.org
18451 S:      Supported
18452 F:      drivers/s390/crypto/
18453
18454 S390 ZFCP DRIVER
18455 M:      Steffen Maier <maier@linux.ibm.com>
18456 M:      Benjamin Block <bblock@linux.ibm.com>
18457 L:      linux-s390@vger.kernel.org
18458 S:      Supported
18459 F:      drivers/s390/scsi/zfcp_*
18460
18461 SAA6588 RDS RECEIVER DRIVER
18462 M:      Hans Verkuil <hverkuil@xs4all.nl>
18463 L:      linux-media@vger.kernel.org
18464 S:      Odd Fixes
18465 W:      https://linuxtv.org
18466 T:      git git://linuxtv.org/media_tree.git
18467 F:      drivers/media/i2c/saa6588*
18468
18469 SAA7134 VIDEO4LINUX DRIVER
18470 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
18471 L:      linux-media@vger.kernel.org
18472 S:      Odd fixes
18473 W:      https://linuxtv.org
18474 T:      git git://linuxtv.org/media_tree.git
18475 F:      Documentation/driver-api/media/drivers/saa7134*
18476 F:      drivers/media/pci/saa7134/
18477
18478 SAA7146 VIDEO4LINUX-2 DRIVER
18479 M:      Hans Verkuil <hverkuil@xs4all.nl>
18480 L:      linux-media@vger.kernel.org
18481 S:      Maintained
18482 T:      git git://linuxtv.org/media_tree.git
18483 F:      drivers/media/common/saa7146/
18484 F:      drivers/media/pci/saa7146/
18485 F:      include/media/drv-intf/saa7146*
18486
18487 SAFESETID SECURITY MODULE
18488 M:      Micah Morton <mortonm@chromium.org>
18489 S:      Supported
18490 F:      Documentation/admin-guide/LSM/SafeSetID.rst
18491 F:      security/safesetid/
18492
18493 SAMSUNG AUDIO (ASoC) DRIVERS
18494 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
18495 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
18496 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18497 S:      Supported
18498 B:      mailto:linux-samsung-soc@vger.kernel.org
18499 F:      Documentation/devicetree/bindings/sound/samsung*
18500 F:      sound/soc/samsung/
18501
18502 SAMSUNG EXYNOS PSEUDO RANDOM NUMBER GENERATOR (RNG) DRIVER
18503 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
18504 L:      linux-crypto@vger.kernel.org
18505 L:      linux-samsung-soc@vger.kernel.org
18506 S:      Maintained
18507 F:      Documentation/devicetree/bindings/rng/samsung,exynos4-rng.yaml
18508 F:      drivers/crypto/exynos-rng.c
18509
18510 SAMSUNG EXYNOS TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
18511 M:      Łukasz Stelmach <l.stelmach@samsung.com>
18512 L:      linux-samsung-soc@vger.kernel.org
18513 S:      Maintained
18514 F:      Documentation/devicetree/bindings/rng/samsung,exynos5250-trng.yaml
18515 F:      drivers/char/hw_random/exynos-trng.c
18516
18517 SAMSUNG FRAMEBUFFER DRIVER
18518 M:      Jingoo Han <jingoohan1@gmail.com>
18519 L:      linux-fbdev@vger.kernel.org
18520 S:      Maintained
18521 F:      drivers/video/fbdev/s3c-fb.c
18522
18523 SAMSUNG INTERCONNECT DRIVERS
18524 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
18525 M:      Artur Świgoń <a.swigon@samsung.com>
18526 L:      linux-pm@vger.kernel.org
18527 L:      linux-samsung-soc@vger.kernel.org
18528 S:      Supported
18529 F:      drivers/interconnect/samsung/
18530
18531 SAMSUNG LAPTOP DRIVER
18532 M:      Corentin Chary <corentin.chary@gmail.com>
18533 L:      platform-driver-x86@vger.kernel.org
18534 S:      Maintained
18535 F:      drivers/platform/x86/samsung-laptop.c
18536
18537 SAMSUNG MULTIFUNCTION PMIC DEVICE DRIVERS
18538 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
18539 L:      linux-kernel@vger.kernel.org
18540 L:      linux-samsung-soc@vger.kernel.org
18541 S:      Supported
18542 B:      mailto:linux-samsung-soc@vger.kernel.org
18543 F:      Documentation/devicetree/bindings/clock/samsung,s2mps11.yaml
18544 F:      Documentation/devicetree/bindings/mfd/samsung,s2m*.yaml
18545 F:      Documentation/devicetree/bindings/mfd/samsung,s5m*.yaml
18546 F:      Documentation/devicetree/bindings/regulator/samsung,s2m*.yaml
18547 F:      Documentation/devicetree/bindings/regulator/samsung,s5m*.yaml
18548 F:      drivers/clk/clk-s2mps11.c
18549 F:      drivers/mfd/sec*.c
18550 F:      drivers/regulator/s2m*.c
18551 F:      drivers/regulator/s5m*.c
18552 F:      drivers/rtc/rtc-s5m.c
18553 F:      include/linux/mfd/samsung/
18554
18555 SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
18556 M:      Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
18557 L:      linux-media@vger.kernel.org
18558 L:      linux-samsung-soc@vger.kernel.org
18559 S:      Maintained
18560 F:      drivers/media/platform/samsung/s3c-camif/
18561 F:      include/media/drv-intf/s3c_camif.h
18562
18563 SAMSUNG S3FWRN5 NFC DRIVER
18564 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
18565 S:      Maintained
18566 F:      Documentation/devicetree/bindings/net/nfc/samsung,s3fwrn5.yaml
18567 F:      drivers/nfc/s3fwrn5
18568
18569 SAMSUNG S5C73M3 CAMERA DRIVER
18570 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
18571 M:      Andrzej Hajda <andrzej.hajda@intel.com>
18572 L:      linux-media@vger.kernel.org
18573 S:      Supported
18574 F:      Documentation/devicetree/bindings/media/samsung,s5c73m3.yaml
18575 F:      drivers/media/i2c/s5c73m3/*
18576
18577 SAMSUNG S5K5BAF CAMERA DRIVER
18578 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
18579 M:      Andrzej Hajda <andrzej.hajda@intel.com>
18580 L:      linux-media@vger.kernel.org
18581 S:      Supported
18582 F:      drivers/media/i2c/s5k5baf.c
18583
18584 SAMSUNG S5P Security SubSystem (SSS) DRIVER
18585 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
18586 M:      Vladimir Zapolskiy <vz@mleia.com>
18587 L:      linux-crypto@vger.kernel.org
18588 L:      linux-samsung-soc@vger.kernel.org
18589 S:      Maintained
18590 F:      Documentation/devicetree/bindings/crypto/samsung-slimsss.yaml
18591 F:      Documentation/devicetree/bindings/crypto/samsung-sss.yaml
18592 F:      drivers/crypto/s5p-sss.c
18593
18594 SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS
18595 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
18596 L:      linux-media@vger.kernel.org
18597 S:      Supported
18598 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
18599 F:      Documentation/devicetree/bindings/media/samsung,exynos4210-csis.yaml
18600 F:      Documentation/devicetree/bindings/media/samsung,exynos4210-fimc.yaml
18601 F:      Documentation/devicetree/bindings/media/samsung,exynos4212-fimc-is.yaml
18602 F:      Documentation/devicetree/bindings/media/samsung,exynos4212-fimc-lite.yaml
18603 F:      Documentation/devicetree/bindings/media/samsung,fimc.yaml
18604 F:      drivers/media/platform/samsung/exynos4-is/
18605
18606 SAMSUNG SOC CLOCK DRIVERS
18607 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
18608 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
18609 M:      Tomasz Figa <tomasz.figa@gmail.com>
18610 M:      Chanwoo Choi <cw00.choi@samsung.com>
18611 R:      Alim Akhtar <alim.akhtar@samsung.com>
18612 L:      linux-samsung-soc@vger.kernel.org
18613 S:      Supported
18614 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/krzk/linux.git
18615 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/snawrocki/clk.git
18616 F:      Documentation/devicetree/bindings/clock/samsung,*.yaml
18617 F:      Documentation/devicetree/bindings/clock/samsung,s3c*
18618 F:      drivers/clk/samsung/
18619 F:      include/dt-bindings/clock/exynos*.h
18620 F:      include/dt-bindings/clock/s5p*.h
18621 F:      include/dt-bindings/clock/samsung,*.h
18622 F:      include/linux/clk/samsung.h
18623
18624 SAMSUNG SPI DRIVERS
18625 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
18626 M:      Andi Shyti <andi@etezian.org>
18627 L:      linux-spi@vger.kernel.org
18628 L:      linux-samsung-soc@vger.kernel.org
18629 S:      Maintained
18630 F:      Documentation/devicetree/bindings/spi/samsung,spi*.yaml
18631 F:      drivers/spi/spi-s3c*
18632 F:      include/linux/platform_data/spi-s3c64xx.h
18633
18634 SAMSUNG SXGBE DRIVERS
18635 M:      Byungho An <bh74.an@samsung.com>
18636 L:      netdev@vger.kernel.org
18637 S:      Supported
18638 F:      drivers/net/ethernet/samsung/sxgbe/
18639
18640 SAMSUNG THERMAL DRIVER
18641 M:      Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
18642 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
18643 L:      linux-pm@vger.kernel.org
18644 L:      linux-samsung-soc@vger.kernel.org
18645 S:      Maintained
18646 F:      Documentation/devicetree/bindings/thermal/samsung,exynos-thermal.yaml
18647 F:      drivers/thermal/samsung/
18648
18649 SAMSUNG USB2 PHY DRIVER
18650 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
18651 L:      linux-kernel@vger.kernel.org
18652 S:      Supported
18653 F:      Documentation/devicetree/bindings/phy/samsung,usb2-phy.yaml
18654 F:      Documentation/driver-api/phy/samsung-usb2.rst
18655 F:      drivers/phy/samsung/phy-exynos4210-usb2.c
18656 F:      drivers/phy/samsung/phy-exynos4x12-usb2.c
18657 F:      drivers/phy/samsung/phy-exynos5250-usb2.c
18658 F:      drivers/phy/samsung/phy-s5pv210-usb2.c
18659 F:      drivers/phy/samsung/phy-samsung-usb2.c
18660 F:      drivers/phy/samsung/phy-samsung-usb2.h
18661
18662 SANCLOUD BEAGLEBONE ENHANCED DEVICE TREE
18663 M:      Paul Barker <paul.barker@sancloud.com>
18664 R:      Marc Murphy <marc.murphy@sancloud.com>
18665 S:      Supported
18666 F:      arch/arm/boot/dts/am335x-sancloud*
18667
18668 SC1200 WDT DRIVER
18669 M:      Zwane Mwaikambo <zwanem@gmail.com>
18670 S:      Maintained
18671 F:      drivers/watchdog/sc1200wdt.c
18672
18673 SCHEDULER
18674 M:      Ingo Molnar <mingo@redhat.com>
18675 M:      Peter Zijlstra <peterz@infradead.org>
18676 M:      Juri Lelli <juri.lelli@redhat.com> (SCHED_DEADLINE)
18677 M:      Vincent Guittot <vincent.guittot@linaro.org> (SCHED_NORMAL)
18678 R:      Dietmar Eggemann <dietmar.eggemann@arm.com> (SCHED_NORMAL)
18679 R:      Steven Rostedt <rostedt@goodmis.org> (SCHED_FIFO/SCHED_RR)
18680 R:      Ben Segall <bsegall@google.com> (CONFIG_CFS_BANDWIDTH)
18681 R:      Mel Gorman <mgorman@suse.de> (CONFIG_NUMA_BALANCING)
18682 R:      Daniel Bristot de Oliveira <bristot@redhat.com> (SCHED_DEADLINE)
18683 R:      Valentin Schneider <vschneid@redhat.com> (TOPOLOGY)
18684 L:      linux-kernel@vger.kernel.org
18685 S:      Maintained
18686 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
18687 F:      include/linux/preempt.h
18688 F:      include/linux/sched.h
18689 F:      include/linux/wait.h
18690 F:      include/uapi/linux/sched.h
18691 F:      kernel/sched/
18692
18693 SCR24X CHIP CARD INTERFACE DRIVER
18694 M:      Lubomir Rintel <lkundrak@v3.sk>
18695 S:      Supported
18696 F:      drivers/char/pcmcia/scr24x_cs.c
18697
18698 SCSI RDMA PROTOCOL (SRP) INITIATOR
18699 M:      Bart Van Assche <bvanassche@acm.org>
18700 L:      linux-rdma@vger.kernel.org
18701 S:      Supported
18702 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
18703 F:      drivers/infiniband/ulp/srp/
18704 F:      include/scsi/srp.h
18705
18706 SCSI RDMA PROTOCOL (SRP) TARGET
18707 M:      Bart Van Assche <bvanassche@acm.org>
18708 L:      linux-rdma@vger.kernel.org
18709 L:      target-devel@vger.kernel.org
18710 S:      Supported
18711 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
18712 F:      drivers/infiniband/ulp/srpt/
18713
18714 SCSI SG DRIVER
18715 M:      Doug Gilbert <dgilbert@interlog.com>
18716 L:      linux-scsi@vger.kernel.org
18717 S:      Maintained
18718 W:      http://sg.danny.cz/sg
18719 F:      Documentation/scsi/scsi-generic.rst
18720 F:      drivers/scsi/sg.c
18721 F:      include/scsi/sg.h
18722
18723 SCSI SUBSYSTEM
18724 M:      "James E.J. Bottomley" <jejb@linux.ibm.com>
18725 M:      "Martin K. Petersen" <martin.petersen@oracle.com>
18726 L:      linux-scsi@vger.kernel.org
18727 S:      Maintained
18728 Q:      https://patchwork.kernel.org/project/linux-scsi/list/
18729 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git
18730 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
18731 F:      Documentation/devicetree/bindings/scsi/
18732 F:      drivers/scsi/
18733 F:      drivers/ufs/
18734 F:      include/scsi/
18735
18736 SCSI TAPE DRIVER
18737 M:      Kai Mäkisara <Kai.Makisara@kolumbus.fi>
18738 L:      linux-scsi@vger.kernel.org
18739 S:      Maintained
18740 F:      Documentation/scsi/st.rst
18741 F:      drivers/scsi/st.*
18742 F:      drivers/scsi/st_*.h
18743
18744 SCSI TARGET CORE USER DRIVER
18745 M:      Bodo Stroesser <bostroesser@gmail.com>
18746 L:      linux-scsi@vger.kernel.org
18747 L:      target-devel@vger.kernel.org
18748 S:      Supported
18749 F:      Documentation/target/tcmu-design.rst
18750 F:      drivers/target/target_core_user.c
18751 F:      include/uapi/linux/target_core_user.h
18752
18753 SCSI TARGET SUBSYSTEM
18754 M:      "Martin K. Petersen" <martin.petersen@oracle.com>
18755 L:      linux-scsi@vger.kernel.org
18756 L:      target-devel@vger.kernel.org
18757 S:      Supported
18758 W:      http://www.linux-iscsi.org
18759 Q:      https://patchwork.kernel.org/project/target-devel/list/
18760 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
18761 F:      Documentation/target/
18762 F:      drivers/target/
18763 F:      include/target/
18764
18765 SCTP PROTOCOL
18766 M:      Neil Horman <nhorman@tuxdriver.com>
18767 M:      Marcelo Ricardo Leitner <marcelo.leitner@gmail.com>
18768 M:      Xin Long <lucien.xin@gmail.com>
18769 L:      linux-sctp@vger.kernel.org
18770 S:      Maintained
18771 W:      http://lksctp.sourceforge.net
18772 F:      Documentation/networking/sctp.rst
18773 F:      include/linux/sctp.h
18774 F:      include/net/sctp/
18775 F:      include/uapi/linux/sctp.h
18776 F:      net/sctp/
18777
18778 SCx200 CPU SUPPORT
18779 M:      Jim Cromie <jim.cromie@gmail.com>
18780 S:      Odd Fixes
18781 F:      Documentation/i2c/busses/scx200_acb.rst
18782 F:      arch/x86/platform/scx200/
18783 F:      drivers/i2c/busses/scx200*
18784 F:      drivers/mtd/maps/scx200_docflash.c
18785 F:      drivers/watchdog/scx200_wdt.c
18786 F:      include/linux/scx200.h
18787
18788 SCx200 GPIO DRIVER
18789 M:      Jim Cromie <jim.cromie@gmail.com>
18790 S:      Maintained
18791 F:      drivers/char/scx200_gpio.c
18792 F:      include/linux/scx200_gpio.h
18793
18794 SCx200 HRT CLOCKSOURCE DRIVER
18795 M:      Jim Cromie <jim.cromie@gmail.com>
18796 S:      Maintained
18797 F:      drivers/clocksource/scx200_hrt.c
18798
18799 SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
18800 M:      Sascha Sommer <saschasommer@freenet.de>
18801 L:      sdricohcs-devel@lists.sourceforge.net (subscribers-only)
18802 S:      Maintained
18803 F:      drivers/mmc/host/sdricoh_cs.c
18804
18805 SECO BOARDS CEC DRIVER
18806 M:      Ettore Chimenti <ek5.chimenti@gmail.com>
18807 S:      Maintained
18808 F:      drivers/media/cec/platform/seco/seco-cec.c
18809 F:      drivers/media/cec/platform/seco/seco-cec.h
18810
18811 SECURE COMPUTING
18812 M:      Kees Cook <keescook@chromium.org>
18813 R:      Andy Lutomirski <luto@amacapital.net>
18814 R:      Will Drewry <wad@chromium.org>
18815 S:      Supported
18816 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/seccomp
18817 F:      Documentation/userspace-api/seccomp_filter.rst
18818 F:      include/linux/seccomp.h
18819 F:      include/uapi/linux/seccomp.h
18820 F:      kernel/seccomp.c
18821 F:      tools/testing/selftests/kselftest_harness.h
18822 F:      tools/testing/selftests/seccomp/*
18823 K:      \bsecure_computing
18824 K:      \bTIF_SECCOMP\b
18825
18826 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) Broadcom BRCMSTB DRIVER
18827 M:      Kamal Dasu <kdasu.kdev@gmail.com>
18828 M:      Al Cooper <alcooperx@gmail.com>
18829 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
18830 L:      linux-mmc@vger.kernel.org
18831 S:      Maintained
18832 F:      drivers/mmc/host/sdhci-brcmstb*
18833
18834 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
18835 M:      Adrian Hunter <adrian.hunter@intel.com>
18836 L:      linux-mmc@vger.kernel.org
18837 S:      Supported
18838 F:      Documentation/devicetree/bindings/mmc/sdhci-common.yaml
18839 F:      drivers/mmc/host/sdhci*
18840
18841 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) MICROCHIP DRIVER
18842 M:      Eugen Hristev <eugen.hristev@microchip.com>
18843 L:      linux-mmc@vger.kernel.org
18844 S:      Supported
18845 F:      drivers/mmc/host/sdhci-of-at91.c
18846
18847 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
18848 M:      Ben Dooks <ben-linux@fluff.org>
18849 M:      Jaehoon Chung <jh80.chung@samsung.com>
18850 L:      linux-mmc@vger.kernel.org
18851 S:      Maintained
18852 F:      drivers/mmc/host/sdhci-s3c*
18853
18854 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
18855 M:      Viresh Kumar <vireshk@kernel.org>
18856 L:      linux-mmc@vger.kernel.org
18857 S:      Maintained
18858 F:      drivers/mmc/host/sdhci-spear.c
18859
18860 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) TI OMAP DRIVER
18861 M:      Vignesh Raghavendra <vigneshr@ti.com>
18862 L:      linux-mmc@vger.kernel.org
18863 S:      Maintained
18864 F:      drivers/mmc/host/sdhci-omap.c
18865
18866 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) NXP i.MX DRIVER
18867 M:      Haibo Chen <haibo.chen@nxp.com>
18868 L:      linux-imx@nxp.com
18869 L:      linux-mmc@vger.kernel.org
18870 S:      Maintained
18871 F:      drivers/mmc/host/sdhci-esdhc-imx.c
18872
18873 SECURE ENCRYPTING DEVICE (SED) OPAL DRIVER
18874 M:      Jonathan Derrick <jonathan.derrick@linux.dev>
18875 L:      linux-block@vger.kernel.org
18876 S:      Supported
18877 F:      block/opal_proto.h
18878 F:      block/sed*
18879 F:      include/linux/sed*
18880 F:      include/uapi/linux/sed*
18881
18882 SECURITY CONTACT
18883 M:      Security Officers <security@kernel.org>
18884 S:      Supported
18885 F:      Documentation/process/security-bugs.rst
18886
18887 SECURITY SUBSYSTEM
18888 M:      Paul Moore <paul@paul-moore.com>
18889 M:      James Morris <jmorris@namei.org>
18890 M:      "Serge E. Hallyn" <serge@hallyn.com>
18891 L:      linux-security-module@vger.kernel.org (suggested Cc:)
18892 S:      Supported
18893 W:      http://kernsec.org/
18894 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/lsm.git
18895 F:      security/
18896 X:      security/selinux/
18897
18898 SELINUX SECURITY MODULE
18899 M:      Paul Moore <paul@paul-moore.com>
18900 M:      Stephen Smalley <stephen.smalley.work@gmail.com>
18901 M:      Eric Paris <eparis@parisplace.org>
18902 L:      selinux@vger.kernel.org
18903 S:      Supported
18904 W:      https://selinuxproject.org
18905 W:      https://github.com/SELinuxProject
18906 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/selinux.git
18907 F:      Documentation/ABI/removed/sysfs-selinux-checkreqprot
18908 F:      Documentation/ABI/removed/sysfs-selinux-disable
18909 F:      Documentation/admin-guide/LSM/SELinux.rst
18910 F:      include/trace/events/avc.h
18911 F:      include/uapi/linux/selinux_netlink.h
18912 F:      scripts/selinux/
18913 F:      security/selinux/
18914
18915 SENSABLE PHANTOM
18916 M:      Jiri Slaby <jirislaby@kernel.org>
18917 S:      Maintained
18918 F:      drivers/misc/phantom.c
18919 F:      include/uapi/linux/phantom.h
18920
18921 SENSEAIR SUNRISE 006-0-0007
18922 M:      Jacopo Mondi <jacopo@jmondi.org>
18923 S:      Maintained
18924 F:      Documentation/ABI/testing/sysfs-bus-iio-chemical-sunrise-co2
18925 F:      Documentation/devicetree/bindings/iio/chemical/senseair,sunrise.yaml
18926 F:      drivers/iio/chemical/sunrise_co2.c
18927
18928 SENSIRION SCD30 CARBON DIOXIDE SENSOR DRIVER
18929 M:      Tomasz Duszynski <tomasz.duszynski@octakon.com>
18930 S:      Maintained
18931 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,scd30.yaml
18932 F:      drivers/iio/chemical/scd30.h
18933 F:      drivers/iio/chemical/scd30_core.c
18934 F:      drivers/iio/chemical/scd30_i2c.c
18935 F:      drivers/iio/chemical/scd30_serial.c
18936
18937 SENSIRION SCD4X CARBON DIOXIDE SENSOR DRIVER
18938 M:      Roan van Dijk <roan@protonic.nl>
18939 S:      Maintained
18940 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,scd4x.yaml
18941 F:      drivers/iio/chemical/scd4x.c
18942
18943 SENSIRION SGP40 GAS SENSOR DRIVER
18944 M:      Andreas Klinger <ak@it-klinger.de>
18945 S:      Maintained
18946 F:      Documentation/ABI/testing/sysfs-bus-iio-chemical-sgp40
18947 F:      drivers/iio/chemical/sgp40.c
18948
18949 SENSIRION SPS30 AIR POLLUTION SENSOR DRIVER
18950 M:      Tomasz Duszynski <tduszyns@gmail.com>
18951 S:      Maintained
18952 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,sps30.yaml
18953 F:      drivers/iio/chemical/sps30.c
18954 F:      drivers/iio/chemical/sps30_i2c.c
18955 F:      drivers/iio/chemical/sps30_serial.c
18956
18957 SERIAL DEVICE BUS
18958 M:      Rob Herring <robh@kernel.org>
18959 L:      linux-serial@vger.kernel.org
18960 S:      Maintained
18961 F:      Documentation/devicetree/bindings/serial/serial.yaml
18962 F:      drivers/tty/serdev/
18963 F:      include/linux/serdev.h
18964
18965 SERIAL DRIVERS
18966 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
18967 L:      linux-serial@vger.kernel.org
18968 S:      Maintained
18969 F:      Documentation/devicetree/bindings/serial/
18970 F:      drivers/tty/serial/
18971
18972 SERIAL IR RECEIVER
18973 M:      Sean Young <sean@mess.org>
18974 L:      linux-media@vger.kernel.org
18975 S:      Maintained
18976 F:      drivers/media/rc/serial_ir.c
18977
18978 SERIAL LOW-POWER INTER-CHIP MEDIA BUS (SLIMbus)
18979 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
18980 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18981 S:      Maintained
18982 F:      Documentation/devicetree/bindings/slimbus/
18983 F:      drivers/slimbus/
18984 F:      include/linux/slimbus.h
18985
18986 SFC NETWORK DRIVER
18987 M:      Edward Cree <ecree.xilinx@gmail.com>
18988 M:      Martin Habets <habetsm.xilinx@gmail.com>
18989 L:      netdev@vger.kernel.org
18990 S:      Supported
18991 F:      Documentation/networking/devlink/sfc.rst
18992 F:      drivers/net/ethernet/sfc/
18993
18994 SFCTEMP HWMON DRIVER
18995 M:      Emil Renner Berthing <kernel@esmil.dk>
18996 L:      linux-hwmon@vger.kernel.org
18997 S:      Maintained
18998 F:      Documentation/devicetree/bindings/hwmon/starfive,jh71x0-temp.yaml
18999 F:      Documentation/hwmon/sfctemp.rst
19000 F:      drivers/hwmon/sfctemp.c
19001
19002 SFF/SFP/SFP+ MODULE SUPPORT
19003 M:      Russell King <linux@armlinux.org.uk>
19004 L:      netdev@vger.kernel.org
19005 S:      Maintained
19006 F:      Documentation/devicetree/bindings/net/sff,sfp.yaml
19007 F:      drivers/net/phy/phylink.c
19008 F:      drivers/net/phy/sfp*
19009 F:      include/linux/mdio/mdio-i2c.h
19010 F:      include/linux/phylink.h
19011 F:      include/linux/sfp.h
19012 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)
19013
19014 SGI GRU DRIVER
19015 M:      Dimitri Sivanich <dimitri.sivanich@hpe.com>
19016 S:      Maintained
19017 F:      drivers/misc/sgi-gru/
19018
19019 SGI XP/XPC/XPNET DRIVER
19020 M:      Robin Holt <robinmholt@gmail.com>
19021 M:      Steve Wahl <steve.wahl@hpe.com>
19022 R:      Mike Travis <mike.travis@hpe.com>
19023 S:      Maintained
19024 F:      drivers/misc/sgi-xp/
19025
19026 SHARED MEMORY COMMUNICATIONS (SMC) SOCKETS
19027 M:      Karsten Graul <kgraul@linux.ibm.com>
19028 M:      Wenjia Zhang <wenjia@linux.ibm.com>
19029 M:      Jan Karcher <jaka@linux.ibm.com>
19030 L:      linux-s390@vger.kernel.org
19031 S:      Supported
19032 F:      net/smc/
19033
19034 SHARP GP2AP002A00F/GP2AP002S00F SENSOR DRIVER
19035 M:      Linus Walleij <linus.walleij@linaro.org>
19036 L:      linux-iio@vger.kernel.org
19037 S:      Maintained
19038 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
19039 F:      Documentation/devicetree/bindings/iio/light/sharp,gp2ap002.yaml
19040 F:      drivers/iio/light/gp2ap002.c
19041
19042 SHARP RJ54N1CB0C SENSOR DRIVER
19043 M:      Jacopo Mondi <jacopo@jmondi.org>
19044 L:      linux-media@vger.kernel.org
19045 S:      Odd fixes
19046 T:      git git://linuxtv.org/media_tree.git
19047 F:      drivers/media/i2c/rj54n1cb0c.c
19048 F:      include/media/i2c/rj54n1cb0c.h
19049
19050 SH_VOU V4L2 OUTPUT DRIVER
19051 L:      linux-media@vger.kernel.org
19052 S:      Orphan
19053 F:      drivers/media/platform/renesas/sh_vou.c
19054 F:      include/media/drv-intf/sh_vou.h
19055
19056 SI2157 MEDIA DRIVER
19057 M:      Antti Palosaari <crope@iki.fi>
19058 L:      linux-media@vger.kernel.org
19059 S:      Maintained
19060 W:      https://linuxtv.org
19061 W:      http://palosaari.fi/linux/
19062 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19063 T:      git git://linuxtv.org/anttip/media_tree.git
19064 F:      drivers/media/tuners/si2157*
19065
19066 SI2165 MEDIA DRIVER
19067 M:      Matthias Schwarzott <zzam@gentoo.org>
19068 L:      linux-media@vger.kernel.org
19069 S:      Maintained
19070 W:      https://linuxtv.org
19071 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19072 F:      drivers/media/dvb-frontends/si2165*
19073
19074 SI2168 MEDIA DRIVER
19075 M:      Antti Palosaari <crope@iki.fi>
19076 L:      linux-media@vger.kernel.org
19077 S:      Maintained
19078 W:      https://linuxtv.org
19079 W:      http://palosaari.fi/linux/
19080 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19081 T:      git git://linuxtv.org/anttip/media_tree.git
19082 F:      drivers/media/dvb-frontends/si2168*
19083
19084 SI470X FM RADIO RECEIVER I2C DRIVER
19085 M:      Hans Verkuil <hverkuil@xs4all.nl>
19086 L:      linux-media@vger.kernel.org
19087 S:      Odd Fixes
19088 W:      https://linuxtv.org
19089 T:      git git://linuxtv.org/media_tree.git
19090 F:      Documentation/devicetree/bindings/media/silabs,si470x.yaml
19091 F:      drivers/media/radio/si470x/radio-si470x-i2c.c
19092
19093 SI470X FM RADIO RECEIVER USB DRIVER
19094 M:      Hans Verkuil <hverkuil@xs4all.nl>
19095 L:      linux-media@vger.kernel.org
19096 S:      Maintained
19097 W:      https://linuxtv.org
19098 T:      git git://linuxtv.org/media_tree.git
19099 F:      drivers/media/radio/si470x/radio-si470x-common.c
19100 F:      drivers/media/radio/si470x/radio-si470x-usb.c
19101 F:      drivers/media/radio/si470x/radio-si470x.h
19102
19103 SI4713 FM RADIO TRANSMITTER I2C DRIVER
19104 M:      Eduardo Valentin <edubezval@gmail.com>
19105 L:      linux-media@vger.kernel.org
19106 S:      Odd Fixes
19107 W:      https://linuxtv.org
19108 T:      git git://linuxtv.org/media_tree.git
19109 F:      drivers/media/radio/si4713/si4713.?
19110
19111 SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
19112 M:      Eduardo Valentin <edubezval@gmail.com>
19113 L:      linux-media@vger.kernel.org
19114 S:      Odd Fixes
19115 W:      https://linuxtv.org
19116 T:      git git://linuxtv.org/media_tree.git
19117 F:      drivers/media/radio/si4713/radio-platform-si4713.c
19118
19119 SI4713 FM RADIO TRANSMITTER USB DRIVER
19120 M:      Hans Verkuil <hverkuil@xs4all.nl>
19121 L:      linux-media@vger.kernel.org
19122 S:      Maintained
19123 W:      https://linuxtv.org
19124 T:      git git://linuxtv.org/media_tree.git
19125 F:      drivers/media/radio/si4713/radio-usb-si4713.c
19126
19127 SIANO DVB DRIVER
19128 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
19129 L:      linux-media@vger.kernel.org
19130 S:      Odd fixes
19131 W:      https://linuxtv.org
19132 T:      git git://linuxtv.org/media_tree.git
19133 F:      drivers/media/common/siano/
19134 F:      drivers/media/mmc/siano/
19135 F:      drivers/media/usb/siano/
19136 F:      drivers/media/usb/siano/
19137
19138 SIFIVE DRIVERS
19139 M:      Palmer Dabbelt <palmer@dabbelt.com>
19140 M:      Paul Walmsley <paul.walmsley@sifive.com>
19141 L:      linux-riscv@lists.infradead.org
19142 S:      Supported
19143 N:      sifive
19144 K:      [^@]sifive
19145
19146 SIFIVE FU540 SYSTEM-ON-CHIP
19147 M:      Paul Walmsley <paul.walmsley@sifive.com>
19148 M:      Palmer Dabbelt <palmer@dabbelt.com>
19149 L:      linux-riscv@lists.infradead.org
19150 S:      Supported
19151 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pjw/sifive.git
19152 N:      fu540
19153 K:      fu540
19154
19155 SIFIVE PDMA DRIVER
19156 M:      Green Wan <green.wan@sifive.com>
19157 S:      Maintained
19158 F:      Documentation/devicetree/bindings/dma/sifive,fu540-c000-pdma.yaml
19159 F:      drivers/dma/sf-pdma/
19160
19161 SIFIVE SOC DRIVERS
19162 M:      Conor Dooley <conor@kernel.org>
19163 L:      linux-riscv@lists.infradead.org
19164 S:      Maintained
19165 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/conor/linux.git/
19166 F:      drivers/soc/sifive/
19167
19168 SILEAD TOUCHSCREEN DRIVER
19169 M:      Hans de Goede <hdegoede@redhat.com>
19170 L:      linux-input@vger.kernel.org
19171 L:      platform-driver-x86@vger.kernel.org
19172 S:      Maintained
19173 F:      drivers/input/touchscreen/silead.c
19174 F:      drivers/platform/x86/touchscreen_dmi.c
19175
19176 SILICON LABS WIRELESS DRIVERS (for WFxxx series)
19177 M:      Jérôme Pouiller <jerome.pouiller@silabs.com>
19178 S:      Supported
19179 F:      Documentation/devicetree/bindings/net/wireless/silabs,wfx.yaml
19180 F:      drivers/net/wireless/silabs/wfx/
19181
19182 SILICON MOTION SM712 FRAME BUFFER DRIVER
19183 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
19184 M:      Teddy Wang <teddy.wang@siliconmotion.com>
19185 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
19186 L:      linux-fbdev@vger.kernel.org
19187 S:      Maintained
19188 F:      Documentation/fb/sm712fb.rst
19189 F:      drivers/video/fbdev/sm712*
19190
19191 SILVACO I3C DUAL-ROLE MASTER
19192 M:      Miquel Raynal <miquel.raynal@bootlin.com>
19193 M:      Conor Culhane <conor.culhane@silvaco.com>
19194 L:      linux-i3c@lists.infradead.org (moderated for non-subscribers)
19195 S:      Maintained
19196 F:      Documentation/devicetree/bindings/i3c/silvaco,i3c-master.yaml
19197 F:      drivers/i3c/master/svc-i3c-master.c
19198
19199 SIMPLEFB FB DRIVER
19200 M:      Hans de Goede <hdegoede@redhat.com>
19201 L:      linux-fbdev@vger.kernel.org
19202 S:      Maintained
19203 F:      Documentation/devicetree/bindings/display/simple-framebuffer.yaml
19204 F:      drivers/video/fbdev/simplefb.c
19205 F:      include/linux/platform_data/simplefb.h
19206
19207 SIMTEC EB110ATX (Chalice CATS)
19208 M:      Simtec Linux Team <linux@simtec.co.uk>
19209 S:      Supported
19210 W:      http://www.simtec.co.uk/products/EB110ATX/
19211
19212 SIOX
19213 M:      Thorsten Scherer <t.scherer@eckelmann.de>
19214 M:      Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
19215 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
19216 S:      Supported
19217 F:      drivers/gpio/gpio-siox.c
19218 F:      drivers/siox/*
19219 F:      include/trace/events/siox.h
19220
19221 SIPHASH PRF ROUTINES
19222 M:      Jason A. Donenfeld <Jason@zx2c4.com>
19223 S:      Maintained
19224 F:      include/linux/siphash.h
19225 F:      lib/siphash.c
19226 F:      lib/siphash_kunit.c
19227
19228 SIS 190 ETHERNET DRIVER
19229 M:      Francois Romieu <romieu@fr.zoreil.com>
19230 L:      netdev@vger.kernel.org
19231 S:      Maintained
19232 F:      drivers/net/ethernet/sis/sis190.c
19233
19234 SIS 900/7016 FAST ETHERNET DRIVER
19235 M:      Daniele Venzano <venza@brownhat.org>
19236 L:      netdev@vger.kernel.org
19237 S:      Maintained
19238 W:      http://www.brownhat.org/sis900.html
19239 F:      drivers/net/ethernet/sis/sis900.*
19240
19241 SIS FRAMEBUFFER DRIVER
19242 S:      Orphan
19243 F:      Documentation/fb/sisfb.rst
19244 F:      drivers/video/fbdev/sis/
19245 F:      include/video/sisfb.h
19246
19247 SIS I2C TOUCHSCREEN DRIVER
19248 M:      Mika Penttilä <mpenttil@redhat.com>
19249 L:      linux-input@vger.kernel.org
19250 S:      Maintained
19251 F:      Documentation/devicetree/bindings/input/touchscreen/sis_i2c.txt
19252 F:      drivers/input/touchscreen/sis_i2c.c
19253
19254 SIS USB2VGA DRIVER
19255 M:      Thomas Winischhofer <thomas@winischhofer.net>
19256 S:      Maintained
19257 W:      http://www.winischhofer.at/linuxsisusbvga.shtml
19258 F:      drivers/usb/misc/sisusbvga/
19259
19260 SL28 CPLD MFD DRIVER
19261 M:      Michael Walle <michael@walle.cc>
19262 S:      Maintained
19263 F:      Documentation/devicetree/bindings/gpio/kontron,sl28cpld-gpio.yaml
19264 F:      Documentation/devicetree/bindings/hwmon/kontron,sl28cpld-hwmon.yaml
19265 F:      Documentation/devicetree/bindings/interrupt-controller/kontron,sl28cpld-intc.yaml
19266 F:      Documentation/devicetree/bindings/mfd/kontron,sl28cpld.yaml
19267 F:      Documentation/devicetree/bindings/pwm/kontron,sl28cpld-pwm.yaml
19268 F:      Documentation/devicetree/bindings/watchdog/kontron,sl28cpld-wdt.yaml
19269 F:      drivers/gpio/gpio-sl28cpld.c
19270 F:      drivers/hwmon/sl28cpld-hwmon.c
19271 F:      drivers/irqchip/irq-sl28cpld.c
19272 F:      drivers/pwm/pwm-sl28cpld.c
19273 F:      drivers/watchdog/sl28cpld_wdt.c
19274
19275 SLAB ALLOCATOR
19276 M:      Christoph Lameter <cl@linux.com>
19277 M:      Pekka Enberg <penberg@kernel.org>
19278 M:      David Rientjes <rientjes@google.com>
19279 M:      Joonsoo Kim <iamjoonsoo.kim@lge.com>
19280 M:      Andrew Morton <akpm@linux-foundation.org>
19281 M:      Vlastimil Babka <vbabka@suse.cz>
19282 R:      Roman Gushchin <roman.gushchin@linux.dev>
19283 R:      Hyeonggon Yoo <42.hyeyoo@gmail.com>
19284 L:      linux-mm@kvack.org
19285 S:      Maintained
19286 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vbabka/slab.git
19287 F:      include/linux/sl?b*.h
19288 F:      mm/sl?b*
19289
19290 SLCAN CAN NETWORK DRIVER
19291 M:      Dario Binacchi <dario.binacchi@amarulasolutions.com>
19292 L:      linux-can@vger.kernel.org
19293 S:      Maintained
19294 F:      drivers/net/can/slcan/
19295
19296 SLEEPABLE READ-COPY UPDATE (SRCU)
19297 M:      Lai Jiangshan <jiangshanlai@gmail.com>
19298 M:      "Paul E. McKenney" <paulmck@kernel.org>
19299 M:      Josh Triplett <josh@joshtriplett.org>
19300 R:      Steven Rostedt <rostedt@goodmis.org>
19301 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
19302 L:      rcu@vger.kernel.org
19303 S:      Supported
19304 W:      http://www.rdrop.com/users/paulmck/RCU/
19305 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
19306 F:      include/linux/srcu*.h
19307 F:      kernel/rcu/srcu*.c
19308
19309 SMACK SECURITY MODULE
19310 M:      Casey Schaufler <casey@schaufler-ca.com>
19311 L:      linux-security-module@vger.kernel.org
19312 S:      Maintained
19313 W:      http://schaufler-ca.com
19314 T:      git git://github.com/cschaufler/smack-next
19315 F:      Documentation/admin-guide/LSM/Smack.rst
19316 F:      security/smack/
19317
19318 SMC91x ETHERNET DRIVER
19319 M:      Nicolas Pitre <nico@fluxnic.net>
19320 S:      Odd Fixes
19321 F:      drivers/net/ethernet/smsc/smc91x.*
19322
19323 SECURE MONITOR CALL(SMC) CALLING CONVENTION (SMCCC)
19324 M:      Mark Rutland <mark.rutland@arm.com>
19325 M:      Lorenzo Pieralisi <lpieralisi@kernel.org>
19326 M:      Sudeep Holla <sudeep.holla@arm.com>
19327 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
19328 S:      Maintained
19329 F:      drivers/firmware/smccc/
19330 F:      include/linux/arm-smccc.h
19331
19332 SMM665 HARDWARE MONITOR DRIVER
19333 M:      Guenter Roeck <linux@roeck-us.net>
19334 L:      linux-hwmon@vger.kernel.org
19335 S:      Maintained
19336 F:      Documentation/hwmon/smm665.rst
19337 F:      drivers/hwmon/smm665.c
19338
19339 SMSC EMC2103 HARDWARE MONITOR DRIVER
19340 M:      Steve Glendinning <steve.glendinning@shawell.net>
19341 L:      linux-hwmon@vger.kernel.org
19342 S:      Maintained
19343 F:      Documentation/hwmon/emc2103.rst
19344 F:      drivers/hwmon/emc2103.c
19345
19346 SMSC SCH5627 HARDWARE MONITOR DRIVER
19347 M:      Hans de Goede <hdegoede@redhat.com>
19348 L:      linux-hwmon@vger.kernel.org
19349 S:      Supported
19350 F:      Documentation/hwmon/sch5627.rst
19351 F:      drivers/hwmon/sch5627.c
19352
19353 SMSC UFX6000 and UFX7000 USB to VGA DRIVER
19354 M:      Steve Glendinning <steve.glendinning@shawell.net>
19355 L:      linux-fbdev@vger.kernel.org
19356 S:      Maintained
19357 F:      drivers/video/fbdev/smscufx.c
19358
19359 SMSC47B397 HARDWARE MONITOR DRIVER
19360 M:      Jean Delvare <jdelvare@suse.com>
19361 L:      linux-hwmon@vger.kernel.org
19362 S:      Maintained
19363 F:      Documentation/hwmon/smsc47b397.rst
19364 F:      drivers/hwmon/smsc47b397.c
19365
19366 SMSC911x ETHERNET DRIVER
19367 M:      Steve Glendinning <steve.glendinning@shawell.net>
19368 L:      netdev@vger.kernel.org
19369 S:      Maintained
19370 F:      drivers/net/ethernet/smsc/smsc911x.*
19371 F:      include/linux/smsc911x.h
19372
19373 SMSC9420 PCI ETHERNET DRIVER
19374 M:      Steve Glendinning <steve.glendinning@shawell.net>
19375 L:      netdev@vger.kernel.org
19376 S:      Maintained
19377 F:      drivers/net/ethernet/smsc/smsc9420.*
19378
19379 SOCIONEXT (SNI) AVE NETWORK DRIVER
19380 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
19381 L:      netdev@vger.kernel.org
19382 S:      Maintained
19383 F:      Documentation/devicetree/bindings/net/socionext,uniphier-ave4.yaml
19384 F:      drivers/net/ethernet/socionext/sni_ave.c
19385
19386 SOCIONEXT (SNI) NETSEC NETWORK DRIVER
19387 M:      Jassi Brar <jaswinder.singh@linaro.org>
19388 M:      Ilias Apalodimas <ilias.apalodimas@linaro.org>
19389 L:      netdev@vger.kernel.org
19390 S:      Maintained
19391 F:      Documentation/devicetree/bindings/net/socionext,synquacer-netsec.yaml
19392 F:      drivers/net/ethernet/socionext/netsec.c
19393
19394 SOCIONEXT (SNI) Synquacer SPI DRIVER
19395 M:      Masahisa Kojima <masahisa.kojima@linaro.org>
19396 M:      Jassi Brar <jaswinder.singh@linaro.org>
19397 L:      linux-spi@vger.kernel.org
19398 S:      Maintained
19399 F:      Documentation/devicetree/bindings/spi/socionext,synquacer-spi.yaml
19400 F:      drivers/spi/spi-synquacer.c
19401
19402 SOCIONEXT SYNQUACER I2C DRIVER
19403 M:      Ard Biesheuvel <ardb@kernel.org>
19404 L:      linux-i2c@vger.kernel.org
19405 S:      Maintained
19406 F:      Documentation/devicetree/bindings/i2c/socionext,synquacer-i2c.yaml
19407 F:      drivers/i2c/busses/i2c-synquacer.c
19408
19409 SOCIONEXT UNIPHIER SOUND DRIVER
19410 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19411 S:      Orphan
19412 F:      sound/soc/uniphier/
19413
19414 SOCKET TIMESTAMPING
19415 M:      Willem de Bruijn <willemdebruijn.kernel@gmail.com>
19416 S:      Maintained
19417 F:      Documentation/networking/timestamping.rst
19418 F:      include/uapi/linux/net_tstamp.h
19419 F:      tools/testing/selftests/net/so_txtime.c
19420
19421 SOEKRIS NET48XX LED SUPPORT
19422 M:      Chris Boot <bootc@bootc.net>
19423 S:      Maintained
19424 F:      drivers/leds/leds-net48xx.c
19425
19426 SOFT-IWARP DRIVER (siw)
19427 M:      Bernard Metzler <bmt@zurich.ibm.com>
19428 L:      linux-rdma@vger.kernel.org
19429 S:      Supported
19430 F:      drivers/infiniband/sw/siw/
19431 F:      include/uapi/rdma/siw-abi.h
19432
19433 SOFT-ROCE DRIVER (rxe)
19434 M:      Zhu Yanjun <zyjzyj2000@gmail.com>
19435 L:      linux-rdma@vger.kernel.org
19436 S:      Supported
19437 F:      drivers/infiniband/sw/rxe/
19438 F:      include/uapi/rdma/rdma_user_rxe.h
19439
19440 SOFTLOGIC 6x10 MPEG CODEC
19441 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
19442 M:      Anton Sviridenko <anton@corp.bluecherry.net>
19443 M:      Andrey Utkin <andrey_utkin@fastmail.com>
19444 M:      Ismael Luceno <ismael@iodev.co.uk>
19445 L:      linux-media@vger.kernel.org
19446 S:      Supported
19447 F:      drivers/media/pci/solo6x10/
19448
19449 SOFTWARE DELEGATED EXCEPTION INTERFACE (SDEI)
19450 M:      James Morse <james.morse@arm.com>
19451 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
19452 S:      Maintained
19453 F:      Documentation/devicetree/bindings/arm/firmware/sdei.txt
19454 F:      drivers/firmware/arm_sdei.c
19455 F:      include/linux/arm_sdei.h
19456 F:      include/uapi/linux/arm_sdei.h
19457
19458 SOFTWARE NODES AND DEVICE PROPERTIES
19459 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
19460 R:      Daniel Scally <djrscally@gmail.com>
19461 R:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
19462 R:      Sakari Ailus <sakari.ailus@linux.intel.com>
19463 L:      linux-acpi@vger.kernel.org
19464 S:      Maintained
19465 F:      drivers/base/property.c
19466 F:      drivers/base/swnode.c
19467 F:      include/linux/fwnode.h
19468 F:      include/linux/property.h
19469
19470 SOFTWARE RAID (Multiple Disks) SUPPORT
19471 M:      Song Liu <song@kernel.org>
19472 L:      linux-raid@vger.kernel.org
19473 S:      Supported
19474 Q:      https://patchwork.kernel.org/project/linux-raid/list/
19475 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/song/md.git
19476 F:      drivers/md/Kconfig
19477 F:      drivers/md/Makefile
19478 F:      drivers/md/md*
19479 F:      drivers/md/raid*
19480 F:      include/linux/raid/
19481 F:      include/uapi/linux/raid/
19482
19483 SOLIDRUN CLEARFOG SUPPORT
19484 M:      Russell King <linux@armlinux.org.uk>
19485 S:      Maintained
19486 F:      arch/arm/boot/dts/armada-388-clearfog*
19487 F:      arch/arm/boot/dts/armada-38x-solidrun-*
19488
19489 SOLIDRUN CUBOX-I/HUMMINGBOARD SUPPORT
19490 M:      Russell King <linux@armlinux.org.uk>
19491 S:      Maintained
19492 F:      arch/arm/boot/dts/imx6*-cubox-i*
19493 F:      arch/arm/boot/dts/imx6*-hummingboard*
19494 F:      arch/arm/boot/dts/imx6*-sr-*
19495
19496 SONIC NETWORK DRIVER
19497 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
19498 L:      netdev@vger.kernel.org
19499 S:      Maintained
19500 F:      drivers/net/ethernet/natsemi/sonic.*
19501
19502 SONICS SILICON BACKPLANE DRIVER (SSB)
19503 M:      Michael Buesch <m@bues.ch>
19504 L:      linux-wireless@vger.kernel.org
19505 S:      Maintained
19506 F:      drivers/ssb/
19507 F:      include/linux/ssb/
19508
19509 SONY IMX208 SENSOR DRIVER
19510 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
19511 L:      linux-media@vger.kernel.org
19512 S:      Maintained
19513 T:      git git://linuxtv.org/media_tree.git
19514 F:      drivers/media/i2c/imx208.c
19515
19516 SONY IMX214 SENSOR DRIVER
19517 M:      Ricardo Ribalda <ribalda@kernel.org>
19518 L:      linux-media@vger.kernel.org
19519 S:      Maintained
19520 T:      git git://linuxtv.org/media_tree.git
19521 F:      Documentation/devicetree/bindings/media/i2c/sony,imx214.yaml
19522 F:      drivers/media/i2c/imx214.c
19523
19524 SONY IMX219 SENSOR DRIVER
19525 M:      Dave Stevenson <dave.stevenson@raspberrypi.com>
19526 L:      linux-media@vger.kernel.org
19527 S:      Maintained
19528 T:      git git://linuxtv.org/media_tree.git
19529 F:      Documentation/devicetree/bindings/media/i2c/imx219.yaml
19530 F:      drivers/media/i2c/imx219.c
19531
19532 SONY IMX258 SENSOR DRIVER
19533 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
19534 L:      linux-media@vger.kernel.org
19535 S:      Maintained
19536 T:      git git://linuxtv.org/media_tree.git
19537 F:      Documentation/devicetree/bindings/media/i2c/imx258.yaml
19538 F:      drivers/media/i2c/imx258.c
19539
19540 SONY IMX274 SENSOR DRIVER
19541 M:      Leon Luo <leonl@leopardimaging.com>
19542 L:      linux-media@vger.kernel.org
19543 S:      Maintained
19544 T:      git git://linuxtv.org/media_tree.git
19545 F:      Documentation/devicetree/bindings/media/i2c/sony,imx274.yaml
19546 F:      drivers/media/i2c/imx274.c
19547
19548 SONY IMX290 SENSOR DRIVER
19549 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
19550 L:      linux-media@vger.kernel.org
19551 S:      Maintained
19552 T:      git git://linuxtv.org/media_tree.git
19553 F:      Documentation/devicetree/bindings/media/i2c/sony,imx290.yaml
19554 F:      drivers/media/i2c/imx290.c
19555
19556 SONY IMX296 SENSOR DRIVER
19557 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
19558 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
19559 L:      linux-media@vger.kernel.org
19560 S:      Maintained
19561 T:      git git://linuxtv.org/media_tree.git
19562 F:      Documentation/devicetree/bindings/media/i2c/sony,imx296.yaml
19563 F:      drivers/media/i2c/imx296.c
19564
19565 SONY IMX319 SENSOR DRIVER
19566 M:      Bingbu Cao <bingbu.cao@intel.com>
19567 L:      linux-media@vger.kernel.org
19568 S:      Maintained
19569 T:      git git://linuxtv.org/media_tree.git
19570 F:      drivers/media/i2c/imx319.c
19571
19572 SONY IMX334 SENSOR DRIVER
19573 M:      Paul J. Murphy <paul.j.murphy@intel.com>
19574 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
19575 L:      linux-media@vger.kernel.org
19576 S:      Maintained
19577 T:      git git://linuxtv.org/media_tree.git
19578 F:      Documentation/devicetree/bindings/media/i2c/sony,imx334.yaml
19579 F:      drivers/media/i2c/imx334.c
19580
19581 SONY IMX335 SENSOR DRIVER
19582 M:      Paul J. Murphy <paul.j.murphy@intel.com>
19583 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
19584 L:      linux-media@vger.kernel.org
19585 S:      Maintained
19586 T:      git git://linuxtv.org/media_tree.git
19587 F:      Documentation/devicetree/bindings/media/i2c/sony,imx335.yaml
19588 F:      drivers/media/i2c/imx335.c
19589
19590 SONY IMX355 SENSOR DRIVER
19591 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
19592 L:      linux-media@vger.kernel.org
19593 S:      Maintained
19594 T:      git git://linuxtv.org/media_tree.git
19595 F:      drivers/media/i2c/imx355.c
19596
19597 SONY IMX412 SENSOR DRIVER
19598 M:      Paul J. Murphy <paul.j.murphy@intel.com>
19599 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
19600 L:      linux-media@vger.kernel.org
19601 S:      Maintained
19602 T:      git git://linuxtv.org/media_tree.git
19603 F:      Documentation/devicetree/bindings/media/i2c/sony,imx412.yaml
19604 F:      drivers/media/i2c/imx412.c
19605
19606 SONY IMX415 SENSOR DRIVER
19607 M:      Michael Riesch <michael.riesch@wolfvision.net>
19608 L:      linux-media@vger.kernel.org
19609 S:      Maintained
19610 T:      git git://linuxtv.org/media_tree.git
19611 F:      Documentation/devicetree/bindings/media/i2c/sony,imx415.yaml
19612 F:      drivers/media/i2c/imx415.c
19613
19614 SONY MEMORYSTICK SUBSYSTEM
19615 M:      Maxim Levitsky <maximlevitsky@gmail.com>
19616 M:      Alex Dubov <oakad@yahoo.com>
19617 M:      Ulf Hansson <ulf.hansson@linaro.org>
19618 L:      linux-mmc@vger.kernel.org
19619 S:      Maintained
19620 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
19621 F:      drivers/memstick/
19622 F:      include/linux/memstick.h
19623
19624 SONY VAIO CONTROL DEVICE DRIVER
19625 M:      Mattia Dongili <malattia@linux.it>
19626 L:      platform-driver-x86@vger.kernel.org
19627 S:      Maintained
19628 W:      http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
19629 F:      Documentation/admin-guide/laptops/sony-laptop.rst
19630 F:      drivers/char/sonypi.c
19631 F:      drivers/platform/x86/sony-laptop.c
19632 F:      include/linux/sony-laptop.h
19633
19634 SOUND
19635 M:      Jaroslav Kysela <perex@perex.cz>
19636 M:      Takashi Iwai <tiwai@suse.com>
19637 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19638 S:      Maintained
19639 W:      http://www.alsa-project.org/
19640 Q:      http://patchwork.kernel.org/project/alsa-devel/list/
19641 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
19642 F:      Documentation/sound/
19643 F:      include/sound/
19644 F:      include/uapi/sound/
19645 F:      sound/
19646 F:      tools/testing/selftests/alsa
19647
19648 SOUND - COMPRESSED AUDIO
19649 M:      Vinod Koul <vkoul@kernel.org>
19650 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19651 S:      Supported
19652 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
19653 F:      Documentation/sound/designs/compress-offload.rst
19654 F:      include/sound/compress_driver.h
19655 F:      include/uapi/sound/compress_*
19656 F:      sound/core/compress_offload.c
19657 F:      sound/soc/soc-compress.c
19658
19659 SOUND - DMAENGINE HELPERS
19660 M:      Lars-Peter Clausen <lars@metafoo.de>
19661 S:      Supported
19662 F:      include/sound/dmaengine_pcm.h
19663 F:      sound/core/pcm_dmaengine.c
19664 F:      sound/soc/soc-generic-dmaengine-pcm.c
19665
19666 SOUND - ALSA SELFTESTS
19667 M:      Mark Brown <broonie@kernel.org>
19668 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19669 L:      linux-kselftest@vger.kernel.org
19670 S:      Supported
19671 F:      tools/testing/selftests/alsa
19672
19673 SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
19674 M:      Liam Girdwood <lgirdwood@gmail.com>
19675 M:      Mark Brown <broonie@kernel.org>
19676 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19677 S:      Supported
19678 W:      http://alsa-project.org/main/index.php/ASoC
19679 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
19680 F:      Documentation/devicetree/bindings/sound/
19681 F:      Documentation/sound/soc/
19682 F:      include/dt-bindings/sound/
19683 F:      include/sound/soc*
19684 F:      sound/soc/
19685
19686 SOUND - SOUND OPEN FIRMWARE (SOF) DRIVERS
19687 M:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
19688 M:      Liam Girdwood <lgirdwood@gmail.com>
19689 M:      Peter Ujfalusi <peter.ujfalusi@linux.intel.com>
19690 M:      Bard Liao <yung-chuan.liao@linux.intel.com>
19691 M:      Ranjani Sridharan <ranjani.sridharan@linux.intel.com>
19692 R:      Kai Vehmanen <kai.vehmanen@linux.intel.com>
19693 M:      Daniel Baluta <daniel.baluta@nxp.com>
19694 L:      sound-open-firmware@alsa-project.org (moderated for non-subscribers)
19695 S:      Supported
19696 W:      https://github.com/thesofproject/linux/
19697 F:      sound/soc/sof/
19698
19699 SOUNDWIRE SUBSYSTEM
19700 M:      Vinod Koul <vkoul@kernel.org>
19701 M:      Bard Liao <yung-chuan.liao@linux.intel.com>
19702 R:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
19703 R:      Sanyog Kale <sanyog.r.kale@intel.com>
19704 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19705 S:      Supported
19706 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vkoul/soundwire.git
19707 F:      Documentation/driver-api/soundwire/
19708 F:      drivers/soundwire/
19709 F:      include/linux/soundwire/
19710
19711 SP2 MEDIA DRIVER
19712 M:      Olli Salonen <olli.salonen@iki.fi>
19713 L:      linux-media@vger.kernel.org
19714 S:      Maintained
19715 W:      https://linuxtv.org
19716 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19717 F:      drivers/media/dvb-frontends/sp2*
19718
19719 SPANISH DOCUMENTATION
19720 M:      Carlos Bilbao <carlos.bilbao@amd.com>
19721 S:      Maintained
19722 F:      Documentation/translations/sp_SP/
19723
19724 SPARC + UltraSPARC (sparc/sparc64)
19725 M:      "David S. Miller" <davem@davemloft.net>
19726 L:      sparclinux@vger.kernel.org
19727 S:      Maintained
19728 Q:      http://patchwork.ozlabs.org/project/sparclinux/list/
19729 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
19730 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
19731 F:      arch/sparc/
19732 F:      drivers/sbus/
19733
19734 SPARC SERIAL DRIVERS
19735 M:      "David S. Miller" <davem@davemloft.net>
19736 L:      sparclinux@vger.kernel.org
19737 S:      Maintained
19738 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
19739 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
19740 F:      drivers/tty/serial/suncore.c
19741 F:      drivers/tty/serial/sunhv.c
19742 F:      drivers/tty/serial/sunsab.c
19743 F:      drivers/tty/serial/sunsab.h
19744 F:      drivers/tty/serial/sunsu.c
19745 F:      drivers/tty/serial/sunzilog.c
19746 F:      drivers/tty/serial/sunzilog.h
19747 F:      drivers/tty/vcc.c
19748 F:      include/linux/sunserialcore.h
19749
19750 SPARSE CHECKER
19751 M:      "Luc Van Oostenryck" <luc.vanoostenryck@gmail.com>
19752 L:      linux-sparse@vger.kernel.org
19753 S:      Maintained
19754 W:      https://sparse.docs.kernel.org/
19755 T:      git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
19756 Q:      https://patchwork.kernel.org/project/linux-sparse/list/
19757 B:      https://bugzilla.kernel.org/enter_bug.cgi?component=Sparse&product=Tools
19758 F:      include/linux/compiler.h
19759
19760 SPEAKUP CONSOLE SPEECH DRIVER
19761 M:      William Hubbs <w.d.hubbs@gmail.com>
19762 M:      Chris Brannon <chris@the-brannons.com>
19763 M:      Kirk Reiser <kirk@reisers.ca>
19764 M:      Samuel Thibault <samuel.thibault@ens-lyon.org>
19765 L:      speakup@linux-speakup.org
19766 S:      Odd Fixes
19767 W:      http://www.linux-speakup.org/
19768 W:      https://github.com/linux-speakup/speakup
19769 B:      https://github.com/linux-speakup/speakup/issues
19770 F:      drivers/accessibility/speakup/
19771
19772 SPEAR PLATFORM/CLOCK/PINCTRL SUPPORT
19773 M:      Viresh Kumar <vireshk@kernel.org>
19774 M:      Shiraz Hashim <shiraz.linux.kernel@gmail.com>
19775 M:      soc@kernel.org
19776 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
19777 S:      Maintained
19778 W:      http://www.st.com/spear
19779 F:      arch/arm/boot/dts/spear*
19780 F:      arch/arm/mach-spear/
19781 F:      drivers/clk/spear/
19782 F:      drivers/pinctrl/spear/
19783
19784 SPI NOR SUBSYSTEM
19785 M:      Tudor Ambarus <tudor.ambarus@linaro.org>
19786 M:      Pratyush Yadav <pratyush@kernel.org>
19787 R:      Michael Walle <michael@walle.cc>
19788 L:      linux-mtd@lists.infradead.org
19789 S:      Maintained
19790 W:      http://www.linux-mtd.infradead.org/
19791 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
19792 C:      irc://irc.oftc.net/mtd
19793 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git spi-nor/next
19794 F:      Documentation/devicetree/bindings/mtd/jedec,spi-nor.yaml
19795 F:      drivers/mtd/spi-nor/
19796 F:      include/linux/mtd/spi-nor.h
19797
19798 SPI SUBSYSTEM
19799 M:      Mark Brown <broonie@kernel.org>
19800 L:      linux-spi@vger.kernel.org
19801 S:      Maintained
19802 Q:      http://patchwork.kernel.org/project/spi-devel-general/list/
19803 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
19804 F:      Documentation/devicetree/bindings/spi/
19805 F:      Documentation/spi/
19806 F:      drivers/spi/
19807 F:      include/linux/spi/
19808 F:      include/uapi/linux/spi/
19809 F:      tools/spi/
19810
19811 SPIDERNET NETWORK DRIVER for CELL
19812 M:      Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
19813 M:      Geoff Levand <geoff@infradead.org>
19814 L:      netdev@vger.kernel.org
19815 L:      linuxppc-dev@lists.ozlabs.org
19816 S:      Maintained
19817 F:      Documentation/networking/device_drivers/ethernet/toshiba/spider_net.rst
19818 F:      drivers/net/ethernet/toshiba/spider_net*
19819
19820 SPMI SUBSYSTEM
19821 M:      Stephen Boyd <sboyd@kernel.org>
19822 L:      linux-kernel@vger.kernel.org
19823 S:      Maintained
19824 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sboyd/spmi.git
19825 F:      Documentation/devicetree/bindings/spmi/
19826 F:      drivers/spmi/
19827 F:      include/dt-bindings/spmi/spmi.h
19828 F:      include/linux/spmi.h
19829 F:      include/trace/events/spmi.h
19830
19831 SPU FILE SYSTEM
19832 M:      Jeremy Kerr <jk@ozlabs.org>
19833 L:      linuxppc-dev@lists.ozlabs.org
19834 S:      Supported
19835 W:      http://www.ibm.com/developerworks/power/cell/
19836 F:      Documentation/filesystems/spufs/spufs.rst
19837 F:      arch/powerpc/platforms/cell/spufs/
19838
19839 SQUASHFS FILE SYSTEM
19840 M:      Phillip Lougher <phillip@squashfs.org.uk>
19841 L:      squashfs-devel@lists.sourceforge.net (subscribers-only)
19842 S:      Maintained
19843 W:      http://squashfs.org.uk
19844 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pkl/squashfs-next.git
19845 F:      Documentation/filesystems/squashfs.rst
19846 F:      fs/squashfs/
19847
19848 SRM (Alpha) environment access
19849 M:      Jan-Benedict Glaw <jbglaw@lug-owl.de>
19850 S:      Maintained
19851 F:      arch/alpha/kernel/srm_env.c
19852
19853 ST LSM6DSx IMU IIO DRIVER
19854 M:      Lorenzo Bianconi <lorenzo@kernel.org>
19855 L:      linux-iio@vger.kernel.org
19856 S:      Maintained
19857 W:      http://www.st.com/
19858 F:      Documentation/devicetree/bindings/iio/imu/st,lsm6dsx.yaml
19859 F:      drivers/iio/imu/st_lsm6dsx/
19860
19861 ST MIPID02 CSI-2 TO PARALLEL BRIDGE DRIVER
19862 M:      Benjamin Mugnier <benjamin.mugnier@foss.st.com>
19863 M:      Sylvain Petinot <sylvain.petinot@foss.st.com>
19864 L:      linux-media@vger.kernel.org
19865 S:      Maintained
19866 T:      git git://linuxtv.org/media_tree.git
19867 F:      Documentation/devicetree/bindings/media/i2c/st,st-mipid02.yaml
19868 F:      drivers/media/i2c/st-mipid02.c
19869
19870 ST STM32 I2C/SMBUS DRIVER
19871 M:      Pierre-Yves MORDRET <pierre-yves.mordret@foss.st.com>
19872 M:      Alain Volmat <alain.volmat@foss.st.com>
19873 L:      linux-i2c@vger.kernel.org
19874 S:      Maintained
19875 F:      drivers/i2c/busses/i2c-stm32*
19876
19877 ST STM32 SPI DRIVER
19878 M:      Alain Volmat <alain.volmat@foss.st.com>
19879 L:      linux-spi@vger.kernel.org
19880 S:      Maintained
19881 F:      drivers/spi/spi-stm32.c
19882
19883 ST STPDDC60 DRIVER
19884 M:      Daniel Nilsson <daniel.nilsson@flex.com>
19885 L:      linux-hwmon@vger.kernel.org
19886 S:      Maintained
19887 F:      Documentation/hwmon/stpddc60.rst
19888 F:      drivers/hwmon/pmbus/stpddc60.c
19889
19890 ST VGXY61 DRIVER
19891 M:      Benjamin Mugnier <benjamin.mugnier@foss.st.com>
19892 M:      Sylvain Petinot <sylvain.petinot@foss.st.com>
19893 L:      linux-media@vger.kernel.org
19894 S:      Maintained
19895 T:      git git://linuxtv.org/media_tree.git
19896 F:      Documentation/devicetree/bindings/media/i2c/st,st-vgxy61.yaml
19897 F:      Documentation/userspace-api/media/drivers/st-vgxy61.rst
19898 F:      drivers/media/i2c/st-vgxy61.c
19899
19900 ST VL53L0X ToF RANGER(I2C) IIO DRIVER
19901 M:      Song Qiang <songqiang1304521@gmail.com>
19902 L:      linux-iio@vger.kernel.org
19903 S:      Maintained
19904 F:      Documentation/devicetree/bindings/iio/proximity/st,vl53l0x.yaml
19905 F:      drivers/iio/proximity/vl53l0x-i2c.c
19906
19907 STABLE BRANCH
19908 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
19909 M:      Sasha Levin <sashal@kernel.org>
19910 L:      stable@vger.kernel.org
19911 S:      Supported
19912 F:      Documentation/process/stable-kernel-rules.rst
19913
19914 STAGING - ATOMISP DRIVER
19915 M:      Hans de Goede <hdegoede@redhat.com>
19916 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
19917 R:      Sakari Ailus <sakari.ailus@linux.intel.com>
19918 L:      linux-media@vger.kernel.org
19919 S:      Maintained
19920 F:      drivers/staging/media/atomisp/
19921
19922 STAGING - FIELDBUS SUBSYSTEM
19923 M:      Sven Van Asbroeck <TheSven73@gmail.com>
19924 S:      Maintained
19925 F:      drivers/staging/fieldbus/*
19926 F:      drivers/staging/fieldbus/Documentation/
19927
19928 STAGING - HMS ANYBUS-S BUS
19929 M:      Sven Van Asbroeck <TheSven73@gmail.com>
19930 S:      Maintained
19931 F:      drivers/staging/fieldbus/anybuss/
19932
19933 STAGING - INDUSTRIAL IO
19934 M:      Jonathan Cameron <jic23@kernel.org>
19935 L:      linux-iio@vger.kernel.org
19936 S:      Odd Fixes
19937 F:      Documentation/devicetree/bindings/staging/iio/
19938 F:      drivers/staging/iio/
19939
19940 STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
19941 M:      Marc Dietrich <marvin24@gmx.de>
19942 L:      ac100@lists.launchpad.net (moderated for non-subscribers)
19943 L:      linux-tegra@vger.kernel.org
19944 S:      Maintained
19945 F:      drivers/staging/nvec/
19946
19947 STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
19948 M:      Jens Frederich <jfrederich@gmail.com>
19949 M:      Jon Nettleton <jon.nettleton@gmail.com>
19950 S:      Maintained
19951 W:      http://wiki.laptop.org/go/DCON
19952 F:      drivers/staging/olpc_dcon/
19953
19954 STAGING - REALTEK RTL8712U DRIVERS
19955 M:      Larry Finger <Larry.Finger@lwfinger.net>
19956 M:      Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
19957 S:      Odd Fixes
19958 F:      drivers/staging/rtl8712/
19959
19960 STAGING - SEPS525 LCD CONTROLLER DRIVERS
19961 M:      Michael Hennerich <michael.hennerich@analog.com>
19962 L:      linux-fbdev@vger.kernel.org
19963 S:      Supported
19964 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7606.yaml
19965 F:      drivers/staging/fbtft/fb_seps525.c
19966
19967 STAGING - SILICON MOTION SM750 FRAME BUFFER DRIVER
19968 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
19969 M:      Teddy Wang <teddy.wang@siliconmotion.com>
19970 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
19971 L:      linux-fbdev@vger.kernel.org
19972 S:      Maintained
19973 F:      drivers/staging/sm750fb/
19974
19975 STAGING - VIA VT665X DRIVERS
19976 M:      Forest Bond <forest@alittletooquiet.net>
19977 S:      Odd Fixes
19978 F:      drivers/staging/vt665?/
19979
19980 STAGING SUBSYSTEM
19981 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
19982 L:      linux-staging@lists.linux.dev
19983 S:      Supported
19984 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
19985 F:      drivers/staging/
19986
19987 STARFIRE/DURALAN NETWORK DRIVER
19988 M:      Ion Badulescu <ionut@badula.org>
19989 S:      Odd Fixes
19990 F:      drivers/net/ethernet/adaptec/starfire*
19991
19992 STARFIVE DEVICETREES
19993 M:      Emil Renner Berthing <kernel@esmil.dk>
19994 S:      Maintained
19995 F:      arch/riscv/boot/dts/starfive/
19996
19997 STARFIVE DWMAC GLUE LAYER
19998 M:      Emil Renner Berthing <kernel@esmil.dk>
19999 M:      Samin Guo <samin.guo@starfivetech.com>
20000 S:      Maintained
20001 F:      Documentation/devicetree/bindings/net/starfive,jh7110-dwmac.yaml
20002 F:      drivers/net/ethernet/stmicro/stmmac/dwmac-starfive.c
20003
20004 STARFIVE JH7100 CLOCK DRIVERS
20005 M:      Emil Renner Berthing <kernel@esmil.dk>
20006 S:      Maintained
20007 F:      Documentation/devicetree/bindings/clock/starfive,jh7100-*.yaml
20008 F:      drivers/clk/starfive/clk-starfive-jh7100*
20009 F:      include/dt-bindings/clock/starfive-jh7100*.h
20010
20011 STARFIVE JH7110 MMC/SD/SDIO DRIVER
20012 M:      William Qiu <william.qiu@starfivetech.com>
20013 S:      Supported
20014 F:      Documentation/devicetree/bindings/mmc/starfive*
20015 F:      drivers/mmc/host/dw_mmc-starfive.c
20016
20017 STARFIVE JH71X0 PINCTRL DRIVERS
20018 M:      Emil Renner Berthing <kernel@esmil.dk>
20019 M:      Jianlong Huang <jianlong.huang@starfivetech.com>
20020 L:      linux-gpio@vger.kernel.org
20021 S:      Maintained
20022 F:      Documentation/devicetree/bindings/pinctrl/starfive,jh71*.yaml
20023 F:      drivers/pinctrl/starfive/pinctrl-starfive-jh71*
20024 F:      include/dt-bindings/pinctrl/pinctrl-starfive-jh7100.h
20025 F:      include/dt-bindings/pinctrl/starfive,jh7110-pinctrl.h
20026
20027 STARFIVE JH7100 RESET CONTROLLER DRIVER
20028 M:      Emil Renner Berthing <kernel@esmil.dk>
20029 S:      Maintained
20030 F:      Documentation/devicetree/bindings/reset/starfive,jh7100-reset.yaml
20031 F:      drivers/reset/reset-starfive-jh7100.c
20032 F:      include/dt-bindings/reset/starfive-jh7100.h
20033
20034 STARFIVE JH71XX PMU CONTROLLER DRIVER
20035 M:      Walker Chen <walker.chen@starfivetech.com>
20036 S:      Supported
20037 F:      Documentation/devicetree/bindings/power/starfive*
20038 F:      drivers/soc/starfive/jh71xx_pmu.c
20039 F:      include/dt-bindings/power/starfive,jh7110-pmu.h
20040
20041 STARFIVE SOC DRIVERS
20042 M:      Conor Dooley <conor@kernel.org>
20043 S:      Maintained
20044 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/conor/linux.git/
20045 F:      drivers/soc/starfive/
20046
20047 STARFIVE TRNG DRIVER
20048 M:      Jia Jie Ho <jiajie.ho@starfivetech.com>
20049 S:      Supported
20050 F:      Documentation/devicetree/bindings/rng/starfive*
20051 F:      drivers/char/hw_random/jh7110-trng.c
20052
20053 STATIC BRANCH/CALL
20054 M:      Peter Zijlstra <peterz@infradead.org>
20055 M:      Josh Poimboeuf <jpoimboe@kernel.org>
20056 M:      Jason Baron <jbaron@akamai.com>
20057 R:      Steven Rostedt <rostedt@goodmis.org>
20058 R:      Ard Biesheuvel <ardb@kernel.org>
20059 S:      Supported
20060 F:      arch/*/include/asm/jump_label*.h
20061 F:      arch/*/include/asm/static_call*.h
20062 F:      arch/*/kernel/jump_label.c
20063 F:      arch/*/kernel/static_call.c
20064 F:      include/linux/jump_label*.h
20065 F:      include/linux/static_call*.h
20066 F:      kernel/jump_label.c
20067 F:      kernel/static_call.c
20068
20069 STI AUDIO (ASoC) DRIVERS
20070 M:      Arnaud Pouliquen <arnaud.pouliquen@foss.st.com>
20071 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
20072 S:      Maintained
20073 F:      Documentation/devicetree/bindings/sound/st,sti-asoc-card.txt
20074 F:      sound/soc/sti/
20075
20076 STI CEC DRIVER
20077 M:      Alain Volmat <alain.volmat@foss.st.com>
20078 S:      Maintained
20079 F:      Documentation/devicetree/bindings/media/cec/st,stih-cec.yaml
20080 F:      drivers/media/cec/platform/sti/
20081
20082 STK1160 USB VIDEO CAPTURE DRIVER
20083 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
20084 L:      linux-media@vger.kernel.org
20085 S:      Maintained
20086 T:      git git://linuxtv.org/media_tree.git
20087 F:      drivers/media/usb/stk1160/
20088
20089 STM32 AUDIO (ASoC) DRIVERS
20090 M:      Olivier Moysan <olivier.moysan@foss.st.com>
20091 M:      Arnaud Pouliquen <arnaud.pouliquen@foss.st.com>
20092 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
20093 S:      Maintained
20094 F:      Documentation/devicetree/bindings/iio/adc/st,stm32-dfsdm-adc.yaml
20095 F:      Documentation/devicetree/bindings/sound/st,stm32-*.yaml
20096 F:      sound/soc/stm/
20097
20098 STM32 TIMER/LPTIMER DRIVERS
20099 M:      Fabrice Gasnier <fabrice.gasnier@foss.st.com>
20100 S:      Maintained
20101 F:      Documentation/ABI/testing/*timer-stm32
20102 F:      Documentation/devicetree/bindings/*/*stm32-*timer*
20103 F:      drivers/*/stm32-*timer*
20104 F:      drivers/pwm/pwm-stm32*
20105 F:      include/linux/*/stm32-*tim*
20106
20107 STMMAC ETHERNET DRIVER
20108 M:      Giuseppe Cavallaro <peppe.cavallaro@st.com>
20109 M:      Alexandre Torgue <alexandre.torgue@foss.st.com>
20110 M:      Jose Abreu <joabreu@synopsys.com>
20111 L:      netdev@vger.kernel.org
20112 S:      Supported
20113 W:      http://www.stlinux.com
20114 F:      Documentation/networking/device_drivers/ethernet/stmicro/
20115 F:      drivers/net/ethernet/stmicro/stmmac/
20116
20117 SUN3/3X
20118 M:      Sam Creasey <sammy@sammy.net>
20119 S:      Maintained
20120 W:      http://sammy.net/sun3/
20121 F:      arch/m68k/include/asm/sun3*
20122 F:      arch/m68k/kernel/*sun3*
20123 F:      arch/m68k/sun3*/
20124 F:      drivers/net/ethernet/i825xx/sun3*
20125
20126 SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER
20127 M:      Hans de Goede <hdegoede@redhat.com>
20128 L:      linux-input@vger.kernel.org
20129 S:      Maintained
20130 F:      Documentation/devicetree/bindings/input/allwinner,sun4i-a10-lradc-keys.yaml
20131 F:      drivers/input/keyboard/sun4i-lradc-keys.c
20132
20133 SUNDANCE NETWORK DRIVER
20134 M:      Denis Kirjanov <kda@linux-powerpc.org>
20135 L:      netdev@vger.kernel.org
20136 S:      Maintained
20137 F:      drivers/net/ethernet/dlink/sundance.c
20138
20139 SUN HAPPY MEAL ETHERNET DRIVER
20140 M:      Sean Anderson <seanga2@gmail.com>
20141 S:      Maintained
20142 F:      drivers/net/ethernet/sun/sunhme.*
20143
20144 SUNPLUS ETHERNET DRIVER
20145 M:      Wells Lu <wellslutw@gmail.com>
20146 L:      netdev@vger.kernel.org
20147 S:      Maintained
20148 W:      https://sunplus.atlassian.net/wiki/spaces/doc/overview
20149 F:      Documentation/devicetree/bindings/net/sunplus,sp7021-emac.yaml
20150 F:      drivers/net/ethernet/sunplus/
20151
20152 SUNPLUS MMC DRIVER
20153 M:      Tony Huang <tonyhuang.sunplus@gmail.com>
20154 M:      Li-hao Kuo <lhjeff911@gmail.com>
20155 S:      Maintained
20156 F:      Documentation/devicetree/bindings/mmc/sunplus,mmc.yaml
20157 F:      drivers/mmc/host/sunplus-mmc.c
20158
20159 SUNPLUS OCOTP DRIVER
20160 M:      Vincent Shih <vincent.sunplus@gmail.com>
20161 S:      Maintained
20162 F:      Documentation/devicetree/bindings/nvmem/sunplus,sp7021-ocotp.yaml
20163 F:      drivers/nvmem/sunplus-ocotp.c
20164
20165 SUNPLUS USB2 PHY DRIVER
20166 M:      Vincent Shih <vincent.sunplus@gmail.com>
20167 L:      linux-usb@vger.kernel.org
20168 S:      Maintained
20169 F:      Documentation/devicetree/bindings/phy/sunplus,sp7021-usb2-phy.yaml
20170 F:      drivers/phy/sunplus/Kconfig
20171 F:      drivers/phy/sunplus/Makefile
20172 F:      drivers/phy/sunplus/phy-sunplus-usb2.c
20173
20174 SUNPLUS PWM DRIVER
20175 M:      Hammer Hsieh <hammerh0314@gmail.com>
20176 S:      Maintained
20177 F:      Documentation/devicetree/bindings/pwm/sunplus,sp7021-pwm.yaml
20178 F:      drivers/pwm/pwm-sunplus.c
20179
20180 SUNPLUS RTC DRIVER
20181 M:      Vincent Shih <vincent.sunplus@gmail.com>
20182 L:      linux-rtc@vger.kernel.org
20183 S:      Maintained
20184 F:      Documentation/devicetree/bindings/rtc/sunplus,sp7021-rtc.yaml
20185 F:      drivers/rtc/rtc-sunplus.c
20186
20187 SUNPLUS SPI CONTROLLER INTERFACE DRIVER
20188 M:      Li-hao Kuo <lhjeff911@gmail.com>
20189 L:      linux-spi@vger.kernel.org
20190 S:      Maintained
20191 F:      Documentation/devicetree/bindings/spi/spi-sunplus-sp7021.yaml
20192 F:      drivers/spi/spi-sunplus-sp7021.c
20193
20194 SUNPLUS UART DRIVER
20195 M:      Hammer Hsieh <hammerh0314@gmail.com>
20196 S:      Maintained
20197 F:      Documentation/devicetree/bindings/serial/sunplus,sp7021-uart.yaml
20198 F:      drivers/tty/serial/sunplus-uart.c
20199
20200 SUNPLUS WATCHDOG DRIVER
20201 M:      Xiantao Hu <xt.hu@cqplus1.com>
20202 L:      linux-watchdog@vger.kernel.org
20203 S:      Maintained
20204 F:      Documentation/devicetree/bindings/watchdog/sunplus,sp7021-wdt.yaml
20205 F:      drivers/watchdog/sunplus_wdt.c
20206
20207 SUPERH
20208 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
20209 M:      Rich Felker <dalias@libc.org>
20210 M:      John Paul Adrian Glaubitz <glaubitz@physik.fu-berlin.de>
20211 L:      linux-sh@vger.kernel.org
20212 S:      Maintained
20213 Q:      http://patchwork.kernel.org/project/linux-sh/list/
20214 F:      Documentation/arch/sh/
20215 F:      arch/sh/
20216 F:      drivers/sh/
20217
20218 SUSPEND TO RAM
20219 M:      "Rafael J. Wysocki" <rafael@kernel.org>
20220 M:      Len Brown <len.brown@intel.com>
20221 M:      Pavel Machek <pavel@ucw.cz>
20222 L:      linux-pm@vger.kernel.org
20223 S:      Supported
20224 B:      https://bugzilla.kernel.org
20225 F:      Documentation/power/
20226 F:      arch/x86/kernel/acpi/sleep*
20227 F:      arch/x86/kernel/acpi/wakeup*
20228 F:      drivers/base/power/
20229 F:      include/linux/freezer.h
20230 F:      include/linux/pm.h
20231 F:      include/linux/suspend.h
20232 F:      kernel/power/
20233
20234 SVGA HANDLING
20235 M:      Martin Mares <mj@ucw.cz>
20236 L:      linux-video@atrey.karlin.mff.cuni.cz
20237 S:      Maintained
20238 F:      Documentation/admin-guide/svga.rst
20239 F:      arch/x86/boot/video*
20240
20241 SWITCHDEV
20242 M:      Jiri Pirko <jiri@resnulli.us>
20243 M:      Ivan Vecera <ivecera@redhat.com>
20244 L:      netdev@vger.kernel.org
20245 S:      Supported
20246 F:      include/net/switchdev.h
20247 F:      net/switchdev/
20248
20249 SY8106A REGULATOR DRIVER
20250 M:      Icenowy Zheng <icenowy@aosc.io>
20251 S:      Maintained
20252 F:      Documentation/devicetree/bindings/regulator/silergy,sy8106a.yaml
20253 F:      drivers/regulator/sy8106a-regulator.c
20254
20255 SYNC FILE FRAMEWORK
20256 M:      Sumit Semwal <sumit.semwal@linaro.org>
20257 R:      Gustavo Padovan <gustavo@padovan.org>
20258 L:      linux-media@vger.kernel.org
20259 L:      dri-devel@lists.freedesktop.org
20260 S:      Maintained
20261 T:      git git://anongit.freedesktop.org/drm/drm-misc
20262 F:      Documentation/driver-api/sync_file.rst
20263 F:      drivers/dma-buf/dma-fence*
20264 F:      drivers/dma-buf/sw_sync.c
20265 F:      drivers/dma-buf/sync_*
20266 F:      include/linux/sync_file.h
20267 F:      include/uapi/linux/sync_file.h
20268
20269 SYNOPSYS ARC ARCHITECTURE
20270 M:      Vineet Gupta <vgupta@kernel.org>
20271 L:      linux-snps-arc@lists.infradead.org
20272 S:      Supported
20273 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc.git
20274 F:      Documentation/arch/arc
20275 F:      Documentation/devicetree/bindings/arc/*
20276 F:      Documentation/devicetree/bindings/interrupt-controller/snps,arc*
20277 F:      arch/arc/
20278 F:      drivers/clocksource/arc_timer.c
20279 F:      drivers/tty/serial/arc_uart.c
20280
20281 SYNOPSYS ARC HSDK SDP pll clock driver
20282 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
20283 S:      Supported
20284 F:      Documentation/devicetree/bindings/clock/snps,hsdk-pll-clock.txt
20285 F:      drivers/clk/clk-hsdk-pll.c
20286
20287 SYNOPSYS ARC SDP clock driver
20288 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
20289 S:      Supported
20290 F:      Documentation/devicetree/bindings/clock/snps,pll-clock.txt
20291 F:      drivers/clk/axs10x/*
20292
20293 SYNOPSYS ARC SDP platform support
20294 M:      Alexey Brodkin <abrodkin@synopsys.com>
20295 S:      Supported
20296 F:      Documentation/devicetree/bindings/arc/axs10*
20297 F:      arch/arc/boot/dts/ax*
20298 F:      arch/arc/plat-axs10x
20299
20300 SYNOPSYS AXS10x RESET CONTROLLER DRIVER
20301 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
20302 S:      Supported
20303 F:      Documentation/devicetree/bindings/reset/snps,axs10x-reset.yaml
20304 F:      drivers/reset/reset-axs10x.c
20305
20306 SYNOPSYS CREG GPIO DRIVER
20307 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
20308 S:      Maintained
20309 F:      Documentation/devicetree/bindings/gpio/snps,creg-gpio.txt
20310 F:      drivers/gpio/gpio-creg-snps.c
20311
20312 SYNOPSYS DESIGNWARE 8250 UART DRIVER
20313 M:      Ilpo Järvinen <ilpo.jarvinen@linux.intel.com>
20314 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
20315 S:      Supported
20316 F:      drivers/tty/serial/8250/8250_dw.c
20317 F:      drivers/tty/serial/8250/8250_dwlib.*
20318 F:      drivers/tty/serial/8250/8250_lpss.c
20319
20320 SYNOPSYS DESIGNWARE APB GPIO DRIVER
20321 M:      Hoan Tran <hoan@os.amperecomputing.com>
20322 M:      Serge Semin <fancer.lancer@gmail.com>
20323 L:      linux-gpio@vger.kernel.org
20324 S:      Maintained
20325 F:      Documentation/devicetree/bindings/gpio/snps,dw-apb-gpio.yaml
20326 F:      drivers/gpio/gpio-dwapb.c
20327
20328 SYNOPSYS DESIGNWARE APB SSI DRIVER
20329 M:      Serge Semin <fancer.lancer@gmail.com>
20330 L:      linux-spi@vger.kernel.org
20331 S:      Supported
20332 F:      Documentation/devicetree/bindings/spi/snps,dw-apb-ssi.yaml
20333 F:      drivers/spi/spi-dw*
20334
20335 SYNOPSYS DESIGNWARE AXI DMAC DRIVER
20336 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
20337 S:      Maintained
20338 F:      Documentation/devicetree/bindings/dma/snps,dw-axi-dmac.yaml
20339 F:      drivers/dma/dw-axi-dmac/
20340
20341 SYNOPSYS DESIGNWARE DMAC DRIVER
20342 M:      Viresh Kumar <vireshk@kernel.org>
20343 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
20344 S:      Maintained
20345 F:      Documentation/devicetree/bindings/dma/renesas,rzn1-dmamux.yaml
20346 F:      Documentation/devicetree/bindings/dma/snps,dma-spear1340.yaml
20347 F:      drivers/dma/dw/
20348 F:      include/dt-bindings/dma/dw-dmac.h
20349 F:      include/linux/dma/dw.h
20350 F:      include/linux/platform_data/dma-dw.h
20351
20352 SYNOPSYS DESIGNWARE ENTERPRISE ETHERNET DRIVER
20353 M:      Jose Abreu <Jose.Abreu@synopsys.com>
20354 L:      netdev@vger.kernel.org
20355 S:      Supported
20356 F:      drivers/net/ethernet/synopsys/
20357
20358 SYNOPSYS DESIGNWARE ETHERNET XPCS DRIVER
20359 M:      Jose Abreu <Jose.Abreu@synopsys.com>
20360 L:      netdev@vger.kernel.org
20361 S:      Supported
20362 F:      drivers/net/pcs/pcs-xpcs.c
20363 F:      drivers/net/pcs/pcs-xpcs.h
20364 F:      include/linux/pcs/pcs-xpcs.h
20365
20366 SYNOPSYS DESIGNWARE I2C DRIVER
20367 M:      Jarkko Nikula <jarkko.nikula@linux.intel.com>
20368 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
20369 R:      Mika Westerberg <mika.westerberg@linux.intel.com>
20370 R:      Jan Dabros <jsd@semihalf.com>
20371 L:      linux-i2c@vger.kernel.org
20372 S:      Supported
20373 F:      drivers/i2c/busses/i2c-designware-*
20374
20375 SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
20376 M:      Jaehoon Chung <jh80.chung@samsung.com>
20377 L:      linux-mmc@vger.kernel.org
20378 S:      Maintained
20379 F:      drivers/mmc/host/dw_mmc*
20380
20381 SYNOPSYS HSDK RESET CONTROLLER DRIVER
20382 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
20383 S:      Supported
20384 F:      Documentation/devicetree/bindings/reset/snps,hsdk-reset.txt
20385 F:      drivers/reset/reset-hsdk.c
20386 F:      include/dt-bindings/reset/snps,hsdk-reset.h
20387
20388 SYNOPSYS SDHCI COMPLIANT DWC MSHC DRIVER
20389 M:      Prabu Thangamuthu <prabu.t@synopsys.com>
20390 M:      Manjunath M B <manjumb@synopsys.com>
20391 L:      linux-mmc@vger.kernel.org
20392 S:      Maintained
20393 F:      drivers/mmc/host/sdhci-pci-dwc-mshc.c
20394
20395 SYSTEM CONFIGURATION (SYSCON)
20396 M:      Lee Jones <lee@kernel.org>
20397 M:      Arnd Bergmann <arnd@arndb.de>
20398 S:      Supported
20399 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
20400 F:      drivers/mfd/syscon.c
20401
20402 SYSTEM CONTROL & POWER/MANAGEMENT INTERFACE (SCPI/SCMI) Message Protocol drivers
20403 M:      Sudeep Holla <sudeep.holla@arm.com>
20404 R:      Cristian Marussi <cristian.marussi@arm.com>
20405 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
20406 S:      Maintained
20407 F:      Documentation/devicetree/bindings/firmware/arm,sc[mp]i.yaml
20408 F:      drivers/clk/clk-sc[mp]i.c
20409 F:      drivers/cpufreq/sc[mp]i-cpufreq.c
20410 F:      drivers/firmware/arm_scmi/
20411 F:      drivers/firmware/arm_scpi.c
20412 F:      drivers/powercap/arm_scmi_powercap.c
20413 F:      drivers/regulator/scmi-regulator.c
20414 F:      drivers/reset/reset-scmi.c
20415 F:      include/linux/sc[mp]i_protocol.h
20416 F:      include/trace/events/scmi.h
20417 F:      include/uapi/linux/virtio_scmi.h
20418
20419 SYSTEM RESET/SHUTDOWN DRIVERS
20420 M:      Sebastian Reichel <sre@kernel.org>
20421 L:      linux-pm@vger.kernel.org
20422 S:      Maintained
20423 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
20424 F:      Documentation/devicetree/bindings/power/reset/
20425 F:      drivers/power/reset/
20426
20427 SYSTEM TRACE MODULE CLASS
20428 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
20429 S:      Maintained
20430 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ash/stm.git
20431 F:      Documentation/trace/stm.rst
20432 F:      drivers/hwtracing/stm/
20433 F:      include/linux/stm.h
20434 F:      include/uapi/linux/stm.h
20435
20436 SYSTEM76 ACPI DRIVER
20437 M:      Jeremy Soller <jeremy@system76.com>
20438 M:      System76 Product Development <productdev@system76.com>
20439 L:      platform-driver-x86@vger.kernel.org
20440 S:      Maintained
20441 F:      drivers/platform/x86/system76_acpi.c
20442
20443 SYSV FILESYSTEM
20444 S:      Orphan
20445 F:      Documentation/filesystems/sysv-fs.rst
20446 F:      fs/sysv/
20447 F:      include/linux/sysv_fs.h
20448
20449 TASKSTATS STATISTICS INTERFACE
20450 M:      Balbir Singh <bsingharora@gmail.com>
20451 S:      Maintained
20452 F:      Documentation/accounting/taskstats*
20453 F:      include/linux/taskstats*
20454 F:      kernel/taskstats.c
20455
20456 TC subsystem
20457 M:      Jamal Hadi Salim <jhs@mojatatu.com>
20458 M:      Cong Wang <xiyou.wangcong@gmail.com>
20459 M:      Jiri Pirko <jiri@resnulli.us>
20460 L:      netdev@vger.kernel.org
20461 S:      Maintained
20462 F:      include/net/pkt_cls.h
20463 F:      include/net/pkt_sched.h
20464 F:      include/net/tc_act/
20465 F:      include/uapi/linux/pkt_cls.h
20466 F:      include/uapi/linux/pkt_sched.h
20467 F:      include/uapi/linux/tc_act/
20468 F:      include/uapi/linux/tc_ematch/
20469 F:      net/sched/
20470 F:      tools/testing/selftests/tc-testing
20471
20472 TC90522 MEDIA DRIVER
20473 M:      Akihiro Tsukada <tskd08@gmail.com>
20474 L:      linux-media@vger.kernel.org
20475 S:      Odd Fixes
20476 F:      drivers/media/dvb-frontends/tc90522*
20477
20478 TCP LOW PRIORITY MODULE
20479 M:      "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
20480 M:      "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
20481 S:      Maintained
20482 W:      http://tcp-lp-mod.sourceforge.net/
20483 F:      net/ipv4/tcp_lp.c
20484
20485 TDA10071 MEDIA DRIVER
20486 M:      Antti Palosaari <crope@iki.fi>
20487 L:      linux-media@vger.kernel.org
20488 S:      Maintained
20489 W:      https://linuxtv.org
20490 W:      http://palosaari.fi/linux/
20491 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
20492 T:      git git://linuxtv.org/anttip/media_tree.git
20493 F:      drivers/media/dvb-frontends/tda10071*
20494
20495 TDA18212 MEDIA DRIVER
20496 M:      Antti Palosaari <crope@iki.fi>
20497 L:      linux-media@vger.kernel.org
20498 S:      Maintained
20499 W:      https://linuxtv.org
20500 W:      http://palosaari.fi/linux/
20501 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
20502 T:      git git://linuxtv.org/anttip/media_tree.git
20503 F:      drivers/media/tuners/tda18212*
20504
20505 TDA18218 MEDIA DRIVER
20506 M:      Antti Palosaari <crope@iki.fi>
20507 L:      linux-media@vger.kernel.org
20508 S:      Maintained
20509 W:      https://linuxtv.org
20510 W:      http://palosaari.fi/linux/
20511 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
20512 T:      git git://linuxtv.org/anttip/media_tree.git
20513 F:      drivers/media/tuners/tda18218*
20514
20515 TDA18250 MEDIA DRIVER
20516 M:      Olli Salonen <olli.salonen@iki.fi>
20517 L:      linux-media@vger.kernel.org
20518 S:      Maintained
20519 W:      https://linuxtv.org
20520 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
20521 T:      git git://linuxtv.org/media_tree.git
20522 F:      drivers/media/tuners/tda18250*
20523
20524 TDA18271 MEDIA DRIVER
20525 M:      Michael Krufky <mkrufky@linuxtv.org>
20526 L:      linux-media@vger.kernel.org
20527 S:      Maintained
20528 W:      https://linuxtv.org
20529 W:      http://github.com/mkrufky
20530 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
20531 T:      git git://linuxtv.org/mkrufky/tuners.git
20532 F:      drivers/media/tuners/tda18271*
20533
20534 TDA1997x MEDIA DRIVER
20535 M:      Tim Harvey <tharvey@gateworks.com>
20536 L:      linux-media@vger.kernel.org
20537 S:      Maintained
20538 W:      https://linuxtv.org
20539 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
20540 F:      drivers/media/i2c/tda1997x.*
20541
20542 TDA827x MEDIA DRIVER
20543 M:      Michael Krufky <mkrufky@linuxtv.org>
20544 L:      linux-media@vger.kernel.org
20545 S:      Maintained
20546 W:      https://linuxtv.org
20547 W:      http://github.com/mkrufky
20548 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
20549 T:      git git://linuxtv.org/mkrufky/tuners.git
20550 F:      drivers/media/tuners/tda8290.*
20551
20552 TDA8290 MEDIA DRIVER
20553 M:      Michael Krufky <mkrufky@linuxtv.org>
20554 L:      linux-media@vger.kernel.org
20555 S:      Maintained
20556 W:      https://linuxtv.org
20557 W:      http://github.com/mkrufky
20558 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
20559 T:      git git://linuxtv.org/mkrufky/tuners.git
20560 F:      drivers/media/tuners/tda8290.*
20561
20562 TDA9840 MEDIA DRIVER
20563 M:      Hans Verkuil <hverkuil@xs4all.nl>
20564 L:      linux-media@vger.kernel.org
20565 S:      Maintained
20566 W:      https://linuxtv.org
20567 T:      git git://linuxtv.org/media_tree.git
20568 F:      drivers/media/i2c/tda9840*
20569
20570 TEA5761 TUNER DRIVER
20571 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
20572 L:      linux-media@vger.kernel.org
20573 S:      Odd fixes
20574 W:      https://linuxtv.org
20575 T:      git git://linuxtv.org/media_tree.git
20576 F:      drivers/media/tuners/tea5761.*
20577
20578 TEA5767 TUNER DRIVER
20579 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
20580 L:      linux-media@vger.kernel.org
20581 S:      Maintained
20582 W:      https://linuxtv.org
20583 T:      git git://linuxtv.org/media_tree.git
20584 F:      drivers/media/tuners/tea5767.*
20585
20586 TEA6415C MEDIA DRIVER
20587 M:      Hans Verkuil <hverkuil@xs4all.nl>
20588 L:      linux-media@vger.kernel.org
20589 S:      Maintained
20590 W:      https://linuxtv.org
20591 T:      git git://linuxtv.org/media_tree.git
20592 F:      drivers/media/i2c/tea6415c*
20593
20594 TEA6420 MEDIA DRIVER
20595 M:      Hans Verkuil <hverkuil@xs4all.nl>
20596 L:      linux-media@vger.kernel.org
20597 S:      Maintained
20598 W:      https://linuxtv.org
20599 T:      git git://linuxtv.org/media_tree.git
20600 F:      drivers/media/i2c/tea6420*
20601
20602 TEAM DRIVER
20603 M:      Jiri Pirko <jiri@resnulli.us>
20604 L:      netdev@vger.kernel.org
20605 S:      Supported
20606 F:      drivers/net/team/
20607 F:      include/linux/if_team.h
20608 F:      include/uapi/linux/if_team.h
20609 F:      tools/testing/selftests/drivers/net/team/
20610
20611 TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
20612 M:      "Savoir-faire Linux Inc." <kernel@savoirfairelinux.com>
20613 S:      Maintained
20614 F:      arch/x86/platform/ts5500/
20615
20616 TECHNOTREND USB IR RECEIVER
20617 M:      Sean Young <sean@mess.org>
20618 L:      linux-media@vger.kernel.org
20619 S:      Maintained
20620 F:      drivers/media/rc/ttusbir.c
20621
20622 TECHWELL TW9910 VIDEO DECODER
20623 L:      linux-media@vger.kernel.org
20624 S:      Orphan
20625 F:      drivers/media/i2c/tw9910.c
20626 F:      include/media/i2c/tw9910.h
20627
20628 TEE SUBSYSTEM
20629 M:      Jens Wiklander <jens.wiklander@linaro.org>
20630 R:      Sumit Garg <sumit.garg@linaro.org>
20631 L:      op-tee@lists.trustedfirmware.org
20632 S:      Maintained
20633 F:      Documentation/staging/tee.rst
20634 F:      drivers/tee/
20635 F:      include/linux/tee_drv.h
20636 F:      include/uapi/linux/tee.h
20637
20638 TEGRA ARCHITECTURE SUPPORT
20639 M:      Thierry Reding <thierry.reding@gmail.com>
20640 M:      Jonathan Hunter <jonathanh@nvidia.com>
20641 L:      linux-tegra@vger.kernel.org
20642 S:      Supported
20643 Q:      http://patchwork.ozlabs.org/project/linux-tegra/list/
20644 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git
20645 N:      [^a-z]tegra
20646
20647 TEGRA CLOCK DRIVER
20648 M:      Peter De Schrijver <pdeschrijver@nvidia.com>
20649 M:      Prashant Gaikwad <pgaikwad@nvidia.com>
20650 S:      Supported
20651 F:      drivers/clk/tegra/
20652
20653 TEGRA DMA DRIVERS
20654 M:      Laxman Dewangan <ldewangan@nvidia.com>
20655 M:      Jon Hunter <jonathanh@nvidia.com>
20656 S:      Supported
20657 F:      drivers/dma/tegra*
20658
20659 TEGRA I2C DRIVER
20660 M:      Laxman Dewangan <ldewangan@nvidia.com>
20661 R:      Dmitry Osipenko <digetx@gmail.com>
20662 S:      Supported
20663 F:      drivers/i2c/busses/i2c-tegra.c
20664
20665 TEGRA IOMMU DRIVERS
20666 M:      Thierry Reding <thierry.reding@gmail.com>
20667 R:      Krishna Reddy <vdumpa@nvidia.com>
20668 L:      linux-tegra@vger.kernel.org
20669 S:      Supported
20670 F:      drivers/iommu/arm/arm-smmu/arm-smmu-nvidia.c
20671 F:      drivers/iommu/tegra*
20672
20673 TEGRA KBC DRIVER
20674 M:      Laxman Dewangan <ldewangan@nvidia.com>
20675 S:      Supported
20676 F:      drivers/input/keyboard/tegra-kbc.c
20677
20678 TEGRA NAND DRIVER
20679 M:      Stefan Agner <stefan@agner.ch>
20680 M:      Lucas Stach <dev@lynxeye.de>
20681 S:      Maintained
20682 F:      Documentation/devicetree/bindings/mtd/nvidia-tegra20-nand.txt
20683 F:      drivers/mtd/nand/raw/tegra_nand.c
20684
20685 TEGRA PWM DRIVER
20686 M:      Thierry Reding <thierry.reding@gmail.com>
20687 S:      Supported
20688 F:      drivers/pwm/pwm-tegra.c
20689
20690 TEGRA SERIAL DRIVER
20691 M:      Laxman Dewangan <ldewangan@nvidia.com>
20692 S:      Supported
20693 F:      drivers/tty/serial/serial-tegra.c
20694
20695 TEGRA SPI DRIVER
20696 M:      Laxman Dewangan <ldewangan@nvidia.com>
20697 S:      Supported
20698 F:      drivers/spi/spi-tegra*
20699
20700 TEGRA QUAD SPI DRIVER
20701 M:      Thierry Reding <thierry.reding@gmail.com>
20702 M:      Jonathan Hunter <jonathanh@nvidia.com>
20703 M:      Sowjanya Komatineni <skomatineni@nvidia.com>
20704 L:      linux-tegra@vger.kernel.org
20705 S:      Maintained
20706 F:      drivers/spi/spi-tegra210-quad.c
20707
20708 TEGRA VIDEO DRIVER
20709 M:      Thierry Reding <thierry.reding@gmail.com>
20710 M:      Jonathan Hunter <jonathanh@nvidia.com>
20711 M:      Sowjanya Komatineni <skomatineni@nvidia.com>
20712 L:      linux-media@vger.kernel.org
20713 L:      linux-tegra@vger.kernel.org
20714 S:      Maintained
20715 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.yaml
20716 F:      drivers/staging/media/tegra-video/
20717
20718 TEGRA XUSB PADCTL DRIVER
20719 M:      JC Kuo <jckuo@nvidia.com>
20720 S:      Supported
20721 F:      drivers/phy/tegra/xusb*
20722
20723 TEHUTI ETHERNET DRIVER
20724 M:      Andy Gospodarek <andy@greyhouse.net>
20725 L:      netdev@vger.kernel.org
20726 S:      Supported
20727 F:      drivers/net/ethernet/tehuti/*
20728
20729 TELECOM CLOCK DRIVER FOR MCPL0010
20730 M:      Mark Gross <markgross@kernel.org>
20731 S:      Supported
20732 F:      drivers/char/tlclk.c
20733
20734 TEMPO SEMICONDUCTOR DRIVERS
20735 M:      Steven Eckhoff <steven.eckhoff.opensource@gmail.com>
20736 S:      Maintained
20737 F:      Documentation/devicetree/bindings/sound/tscs*.txt
20738 F:      sound/soc/codecs/tscs*.c
20739 F:      sound/soc/codecs/tscs*.h
20740
20741 TENSILICA XTENSA PORT (xtensa)
20742 M:      Chris Zankel <chris@zankel.net>
20743 M:      Max Filippov <jcmvbkbc@gmail.com>
20744 S:      Maintained
20745 T:      git https://github.com/jcmvbkbc/linux-xtensa.git
20746 F:      arch/xtensa/
20747 F:      drivers/irqchip/irq-xtensa-*
20748
20749 TEXAS INSTRUMENTS ASoC DRIVERS
20750 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
20751 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
20752 S:      Maintained
20753 F:      Documentation/devicetree/bindings/sound/davinci-mcasp-audio.yaml
20754 F:      sound/soc/ti/
20755
20756 TEXAS INSTRUMENTS' DAC7612 DAC DRIVER
20757 M:      Ricardo Ribalda <ribalda@kernel.org>
20758 L:      linux-iio@vger.kernel.org
20759 S:      Supported
20760 F:      Documentation/devicetree/bindings/iio/dac/ti,dac7612.yaml
20761 F:      drivers/iio/dac/ti-dac7612.c
20762
20763 TEXAS INSTRUMENTS DMA DRIVERS
20764 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
20765 L:      dmaengine@vger.kernel.org
20766 S:      Maintained
20767 F:      Documentation/devicetree/bindings/dma/ti-dma-crossbar.txt
20768 F:      Documentation/devicetree/bindings/dma/ti-edma.txt
20769 F:      Documentation/devicetree/bindings/dma/ti/
20770 F:      drivers/dma/ti/
20771 X:      drivers/dma/ti/cppi41.c
20772 F:      include/linux/dma/k3-udma-glue.h
20773 F:      include/linux/dma/ti-cppi5.h
20774 F:      include/linux/dma/k3-psil.h
20775
20776 TEXAS INSTRUMENTS' SYSTEM CONTROL INTERFACE (TISCI) PROTOCOL DRIVER
20777 M:      Nishanth Menon <nm@ti.com>
20778 M:      Tero Kristo <kristo@kernel.org>
20779 M:      Santosh Shilimkar <ssantosh@kernel.org>
20780 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
20781 S:      Maintained
20782 F:      Documentation/devicetree/bindings/arm/keystone/ti,k3-sci-common.yaml
20783 F:      Documentation/devicetree/bindings/arm/keystone/ti,sci.yaml
20784 F:      Documentation/devicetree/bindings/clock/ti,sci-clk.yaml
20785 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-inta.yaml
20786 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-intr.yaml
20787 F:      Documentation/devicetree/bindings/reset/ti,sci-reset.yaml
20788 F:      Documentation/devicetree/bindings/soc/ti/sci-pm-domain.yaml
20789 F:      drivers/clk/keystone/sci-clk.c
20790 F:      drivers/firmware/ti_sci*
20791 F:      drivers/irqchip/irq-ti-sci-inta.c
20792 F:      drivers/irqchip/irq-ti-sci-intr.c
20793 F:      drivers/reset/reset-ti-sci.c
20794 F:      drivers/soc/ti/ti_sci_inta_msi.c
20795 F:      drivers/soc/ti/ti_sci_pm_domains.c
20796 F:      include/dt-bindings/soc/ti,sci_pm_domain.h
20797 F:      include/linux/soc/ti/ti_sci_inta_msi.h
20798 F:      include/linux/soc/ti/ti_sci_protocol.h
20799
20800 TEXAS INSTRUMENTS TPS23861 PoE PSE DRIVER
20801 M:      Robert Marko <robert.marko@sartura.hr>
20802 M:      Luka Perkov <luka.perkov@sartura.hr>
20803 L:      linux-hwmon@vger.kernel.org
20804 S:      Maintained
20805 F:      Documentation/devicetree/bindings/hwmon/ti,tps23861.yaml
20806 F:      Documentation/hwmon/tps23861.rst
20807 F:      drivers/hwmon/tps23861.c
20808
20809 TEXAS INSTRUMENTS' TMP117 TEMPERATURE SENSOR DRIVER
20810 M:      Puranjay Mohan <puranjay12@gmail.com>
20811 L:      linux-iio@vger.kernel.org
20812 S:      Supported
20813 F:      Documentation/devicetree/bindings/iio/temperature/ti,tmp117.yaml
20814 F:      drivers/iio/temperature/tmp117.c
20815
20816 THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER
20817 M:      Hans Verkuil <hverkuil@xs4all.nl>
20818 L:      linux-media@vger.kernel.org
20819 S:      Maintained
20820 W:      https://linuxtv.org
20821 T:      git git://linuxtv.org/media_tree.git
20822 F:      drivers/media/radio/radio-raremono.c
20823
20824 THERMAL
20825 M:      Rafael J. Wysocki <rafael@kernel.org>
20826 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
20827 R:      Amit Kucheria <amitk@kernel.org>
20828 R:      Zhang Rui <rui.zhang@intel.com>
20829 L:      linux-pm@vger.kernel.org
20830 S:      Supported
20831 Q:      https://patchwork.kernel.org/project/linux-pm/list/
20832 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git thermal
20833 F:      Documentation/ABI/testing/sysfs-class-thermal
20834 F:      Documentation/admin-guide/thermal/
20835 F:      Documentation/devicetree/bindings/thermal/
20836 F:      Documentation/driver-api/thermal/
20837 F:      drivers/thermal/
20838 F:      include/dt-bindings/thermal/
20839 F:      include/linux/cpu_cooling.h
20840 F:      include/linux/thermal.h
20841 F:      include/uapi/linux/thermal.h
20842 F:      tools/lib/thermal/
20843 F:      tools/thermal/
20844
20845 THERMAL DRIVER FOR AMLOGIC SOCS
20846 M:      Guillaume La Roque <glaroque@baylibre.com>
20847 L:      linux-pm@vger.kernel.org
20848 L:      linux-amlogic@lists.infradead.org
20849 S:      Supported
20850 W:      http://linux-meson.com/
20851 F:      Documentation/devicetree/bindings/thermal/amlogic,thermal.yaml
20852 F:      drivers/thermal/amlogic_thermal.c
20853
20854 THERMAL/CPU_COOLING
20855 M:      Amit Daniel Kachhap <amit.kachhap@gmail.com>
20856 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
20857 M:      Viresh Kumar <viresh.kumar@linaro.org>
20858 R:      Lukasz Luba <lukasz.luba@arm.com>
20859 L:      linux-pm@vger.kernel.org
20860 S:      Supported
20861 F:      Documentation/driver-api/thermal/cpu-cooling-api.rst
20862 F:      Documentation/driver-api/thermal/cpu-idle-cooling.rst
20863 F:      drivers/thermal/cpufreq_cooling.c
20864 F:      drivers/thermal/cpuidle_cooling.c
20865 F:      include/linux/cpu_cooling.h
20866
20867 THERMAL/POWER_ALLOCATOR
20868 M:      Lukasz Luba <lukasz.luba@arm.com>
20869 L:      linux-pm@vger.kernel.org
20870 S:      Maintained
20871 F:      Documentation/driver-api/thermal/power_allocator.rst
20872 F:      drivers/thermal/gov_power_allocator.c
20873 F:      drivers/thermal/thermal_trace_ipa.h
20874
20875 THINKPAD ACPI EXTRAS DRIVER
20876 M:      Henrique de Moraes Holschuh <hmh@hmh.eng.br>
20877 L:      ibm-acpi-devel@lists.sourceforge.net
20878 L:      platform-driver-x86@vger.kernel.org
20879 S:      Maintained
20880 W:      http://ibm-acpi.sourceforge.net
20881 W:      http://thinkwiki.org/wiki/Ibm-acpi
20882 T:      git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
20883 F:      drivers/platform/x86/thinkpad_acpi.c
20884
20885 THINKPAD LMI DRIVER
20886 M:      Mark Pearson <markpearson@lenovo.com>
20887 L:      platform-driver-x86@vger.kernel.org
20888 S:      Maintained
20889 F:      Documentation/ABI/testing/sysfs-class-firmware-attributes
20890 F:      drivers/platform/x86/think-lmi.?
20891
20892 THUNDERBOLT DMA TRAFFIC TEST DRIVER
20893 M:      Isaac Hazan <isaac.hazan@intel.com>
20894 L:      linux-usb@vger.kernel.org
20895 S:      Maintained
20896 F:      drivers/thunderbolt/dma_test.c
20897
20898 THUNDERBOLT DRIVER
20899 M:      Andreas Noever <andreas.noever@gmail.com>
20900 M:      Michael Jamet <michael.jamet@intel.com>
20901 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
20902 M:      Yehezkel Bernat <YehezkelShB@gmail.com>
20903 L:      linux-usb@vger.kernel.org
20904 S:      Maintained
20905 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/westeri/thunderbolt.git
20906 F:      Documentation/admin-guide/thunderbolt.rst
20907 F:      drivers/thunderbolt/
20908 F:      include/linux/thunderbolt.h
20909
20910 THUNDERBOLT NETWORK DRIVER
20911 M:      Michael Jamet <michael.jamet@intel.com>
20912 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
20913 M:      Yehezkel Bernat <YehezkelShB@gmail.com>
20914 L:      netdev@vger.kernel.org
20915 S:      Maintained
20916 F:      drivers/net/thunderbolt/
20917
20918 THUNDERX GPIO DRIVER
20919 M:      Robert Richter <rric@kernel.org>
20920 S:      Odd Fixes
20921 F:      drivers/gpio/gpio-thunderx.c
20922
20923 TI ADS7924 ADC DRIVER
20924 M:      Hugo Villeneuve <hvilleneuve@dimonoff.com>
20925 L:      linux-iio@vger.kernel.org
20926 S:      Supported
20927 F:      Documentation/devicetree/bindings/iio/adc/ti,ads7924.yaml
20928 F:      drivers/iio/adc/ti-ads7924.c
20929
20930 TI AM437X VPFE DRIVER
20931 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
20932 L:      linux-media@vger.kernel.org
20933 S:      Maintained
20934 W:      https://linuxtv.org
20935 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
20936 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
20937 F:      drivers/media/platform/ti/am437x/
20938
20939 TI BANDGAP AND THERMAL DRIVER
20940 M:      Eduardo Valentin <edubezval@gmail.com>
20941 M:      Keerthy <j-keerthy@ti.com>
20942 L:      linux-pm@vger.kernel.org
20943 L:      linux-omap@vger.kernel.org
20944 S:      Maintained
20945 F:      drivers/thermal/ti-soc-thermal/
20946
20947 TI BQ27XXX POWER SUPPLY DRIVER
20948 F:      drivers/power/supply/bq27xxx_battery.c
20949 F:      drivers/power/supply/bq27xxx_battery_i2c.c
20950 F:      include/linux/power/bq27xxx_battery.h
20951
20952 TI CDCE706 CLOCK DRIVER
20953 M:      Max Filippov <jcmvbkbc@gmail.com>
20954 S:      Maintained
20955 F:      drivers/clk/clk-cdce706.c
20956
20957 TI CLOCK DRIVER
20958 M:      Tero Kristo <kristo@kernel.org>
20959 L:      linux-omap@vger.kernel.org
20960 S:      Odd Fixes
20961 F:      drivers/clk/ti/
20962 F:      include/linux/clk/ti.h
20963
20964 TI DAVINCI MACHINE SUPPORT
20965 M:      Bartosz Golaszewski <brgl@bgdev.pl>
20966 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
20967 S:      Maintained
20968 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux.git
20969 F:      Documentation/devicetree/bindings/i2c/i2c-davinci.txt
20970 F:      arch/arm/boot/dts/da850*
20971 F:      arch/arm/mach-davinci/
20972 F:      drivers/i2c/busses/i2c-davinci.c
20973
20974 TI DAVINCI SERIES CLOCK DRIVER
20975 M:      David Lechner <david@lechnology.com>
20976 R:      Sekhar Nori <nsekhar@ti.com>
20977 S:      Maintained
20978 F:      Documentation/devicetree/bindings/clock/ti/davinci/
20979 F:      drivers/clk/davinci/
20980 F:      include/linux/clk/davinci.h
20981
20982 TI DAVINCI SERIES GPIO DRIVER
20983 M:      Keerthy <j-keerthy@ti.com>
20984 L:      linux-gpio@vger.kernel.org
20985 S:      Maintained
20986 F:      Documentation/devicetree/bindings/gpio/gpio-davinci.yaml
20987 F:      drivers/gpio/gpio-davinci.c
20988
20989 TI DAVINCI SERIES MEDIA DRIVER
20990 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
20991 L:      linux-media@vger.kernel.org
20992 S:      Maintained
20993 W:      https://linuxtv.org
20994 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
20995 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
20996 F:      drivers/media/platform/ti/davinci/
20997 F:      include/media/davinci/
20998
20999 TI ENHANCED CAPTURE (eCAP) DRIVER
21000 M:      Vignesh Raghavendra <vigneshr@ti.com>
21001 R:      Julien Panis <jpanis@baylibre.com>
21002 L:      linux-iio@vger.kernel.org
21003 L:      linux-omap@vger.kernel.org
21004 S:      Maintained
21005 F:      Documentation/devicetree/bindings/counter/ti,am62-ecap-capture.yaml
21006 F:      drivers/counter/ti-ecap-capture.c
21007
21008 TI ENHANCED QUADRATURE ENCODER PULSE (eQEP) DRIVER
21009 R:      David Lechner <david@lechnology.com>
21010 L:      linux-iio@vger.kernel.org
21011 F:      Documentation/devicetree/bindings/counter/ti-eqep.yaml
21012 F:      drivers/counter/ti-eqep.c
21013
21014 TI ETHERNET SWITCH DRIVER (CPSW)
21015 R:      Grygorii Strashko <grygorii.strashko@ti.com>
21016 L:      linux-omap@vger.kernel.org
21017 L:      netdev@vger.kernel.org
21018 S:      Maintained
21019 F:      drivers/net/ethernet/ti/cpsw*
21020 F:      drivers/net/ethernet/ti/davinci*
21021
21022 TI FLASH MEDIA MEMORYSTICK/MMC DRIVERS
21023 M:      Alex Dubov <oakad@yahoo.com>
21024 S:      Maintained
21025 W:      http://tifmxx.berlios.de/
21026 F:      drivers/memstick/host/tifm_ms.c
21027 F:      drivers/misc/tifm*
21028 F:      drivers/mmc/host/tifm_sd.c
21029 F:      include/linux/tifm.h
21030
21031 TI KEYSTONE MULTICORE NAVIGATOR DRIVERS
21032 M:      Nishanth Menon <nm@ti.com>
21033 M:      Santosh Shilimkar <ssantosh@kernel.org>
21034 L:      linux-kernel@vger.kernel.org
21035 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
21036 S:      Maintained
21037 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ti/linux.git
21038 F:      drivers/soc/ti/*
21039
21040 TI LM49xxx FAMILY ASoC CODEC DRIVERS
21041 M:      M R Swami Reddy <mr.swami.reddy@ti.com>
21042 M:      Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
21043 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
21044 S:      Maintained
21045 F:      sound/soc/codecs/isabelle*
21046 F:      sound/soc/codecs/lm49453*
21047
21048 TI LMP92064 ADC DRIVER
21049 M:      Leonard Göhrs <l.goehrs@pengutronix.de>
21050 R:      kernel@pengutronix.de
21051 L:      linux-iio@vger.kernel.org
21052 S:      Maintained
21053 F:      Documentation/devicetree/bindings/iio/adc/ti,lmp92064.yaml
21054 F:      drivers/iio/adc/ti-lmp92064.c
21055
21056 TI PCM3060 ASoC CODEC DRIVER
21057 M:      Kirill Marinushkin <kmarinushkin@birdec.com>
21058 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
21059 S:      Maintained
21060 F:      Documentation/devicetree/bindings/sound/pcm3060.txt
21061 F:      sound/soc/codecs/pcm3060*
21062
21063 TI TAS571X FAMILY ASoC CODEC DRIVER
21064 M:      Kevin Cernekee <cernekee@chromium.org>
21065 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
21066 S:      Odd Fixes
21067 F:      sound/soc/codecs/tas571x*
21068
21069 TI TMAG5273 MAGNETOMETER DRIVER
21070 M:      Gerald Loacker <gerald.loacker@wolfvision.net>
21071 L:      linux-iio@vger.kernel.org
21072 S:      Maintained
21073 F:      Documentation/devicetree/bindings/iio/magnetometer/ti,tmag5273.yaml
21074 F:      drivers/iio/magnetometer/tmag5273.c
21075
21076 TI TRF7970A NFC DRIVER
21077 M:      Mark Greer <mgreer@animalcreek.com>
21078 L:      linux-wireless@vger.kernel.org
21079 S:      Supported
21080 F:      Documentation/devicetree/bindings/net/nfc/ti,trf7970a.yaml
21081 F:      drivers/nfc/trf7970a.c
21082
21083 TI TSC2046 ADC DRIVER
21084 M:      Oleksij Rempel <o.rempel@pengutronix.de>
21085 R:      kernel@pengutronix.de
21086 L:      linux-iio@vger.kernel.org
21087 S:      Maintained
21088 F:      Documentation/devicetree/bindings/iio/adc/ti,tsc2046.yaml
21089 F:      drivers/iio/adc/ti-tsc2046.c
21090
21091 TI TWL4030 SERIES SOC CODEC DRIVER
21092 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
21093 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
21094 S:      Maintained
21095 F:      sound/soc/codecs/twl4030*
21096
21097 TI VPE/CAL DRIVERS
21098 M:      Benoit Parrot <bparrot@ti.com>
21099 L:      linux-media@vger.kernel.org
21100 S:      Maintained
21101 W:      http://linuxtv.org/
21102 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
21103 F:      Documentation/devicetree/bindings/media/ti,cal.yaml
21104 F:      Documentation/devicetree/bindings/media/ti,vpe.yaml
21105 F:      drivers/media/platform/ti/cal/
21106 F:      drivers/media/platform/ti/vpe/
21107
21108 TI WILINK WIRELESS DRIVERS
21109 L:      linux-wireless@vger.kernel.org
21110 S:      Orphan
21111 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wl12xx
21112 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wl1251
21113 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
21114 F:      drivers/net/wireless/ti/
21115
21116 TIMEKEEPING, CLOCKSOURCE CORE, NTP, ALARMTIMER
21117 M:      John Stultz <jstultz@google.com>
21118 M:      Thomas Gleixner <tglx@linutronix.de>
21119 R:      Stephen Boyd <sboyd@kernel.org>
21120 L:      linux-kernel@vger.kernel.org
21121 S:      Supported
21122 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
21123 F:      include/linux/clocksource.h
21124 F:      include/linux/time.h
21125 F:      include/linux/timex.h
21126 F:      include/uapi/linux/time.h
21127 F:      include/uapi/linux/timex.h
21128 F:      kernel/time/alarmtimer.c
21129 F:      kernel/time/clocksource.c
21130 F:      kernel/time/ntp.c
21131 F:      kernel/time/time*.c
21132 F:      tools/testing/selftests/timers/
21133
21134 TIPC NETWORK LAYER
21135 M:      Jon Maloy <jmaloy@redhat.com>
21136 M:      Ying Xue <ying.xue@windriver.com>
21137 L:      netdev@vger.kernel.org (core kernel code)
21138 L:      tipc-discussion@lists.sourceforge.net (user apps, general discussion)
21139 S:      Maintained
21140 W:      http://tipc.sourceforge.net/
21141 F:      include/uapi/linux/tipc*.h
21142 F:      net/tipc/
21143
21144 TLAN NETWORK DRIVER
21145 M:      Samuel Chessman <chessman@tux.org>
21146 L:      tlan-devel@lists.sourceforge.net (subscribers-only)
21147 S:      Maintained
21148 W:      http://sourceforge.net/projects/tlan/
21149 F:      Documentation/networking/device_drivers/ethernet/ti/tlan.rst
21150 F:      drivers/net/ethernet/ti/tlan.*
21151
21152 TMIO/SDHI MMC DRIVER
21153 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
21154 L:      linux-mmc@vger.kernel.org
21155 L:      linux-renesas-soc@vger.kernel.org
21156 S:      Supported
21157 F:      drivers/mmc/host/renesas_sdhi*
21158 F:      drivers/mmc/host/tmio_mmc*
21159 F:      include/linux/mfd/tmio.h
21160
21161 TMP401 HARDWARE MONITOR DRIVER
21162 M:      Guenter Roeck <linux@roeck-us.net>
21163 L:      linux-hwmon@vger.kernel.org
21164 S:      Maintained
21165 F:      Documentation/devicetree/bindings/hwmon/ti,tmp401.yaml
21166 F:      Documentation/hwmon/tmp401.rst
21167 F:      drivers/hwmon/tmp401.c
21168
21169 TMP464 HARDWARE MONITOR DRIVER
21170 M:      Guenter Roeck <linux@roeck-us.net>
21171 L:      linux-hwmon@vger.kernel.org
21172 S:      Maintained
21173 F:      Documentation/devicetree/bindings/hwmon/ti,tmp464.yaml
21174 F:      Documentation/hwmon/tmp464.rst
21175 F:      drivers/hwmon/tmp464.c
21176
21177 TMP513 HARDWARE MONITOR DRIVER
21178 M:      Eric Tremblay <etremblay@distech-controls.com>
21179 L:      linux-hwmon@vger.kernel.org
21180 S:      Maintained
21181 F:      Documentation/hwmon/tmp513.rst
21182 F:      drivers/hwmon/tmp513.c
21183
21184 TMPFS (SHMEM FILESYSTEM)
21185 M:      Hugh Dickins <hughd@google.com>
21186 L:      linux-mm@kvack.org
21187 S:      Maintained
21188 F:      include/linux/shmem_fs.h
21189 F:      mm/shmem.c
21190
21191 TOMOYO SECURITY MODULE
21192 M:      Kentaro Takeda <takedakn@nttdata.co.jp>
21193 M:      Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
21194 L:      tomoyo-dev-en@lists.osdn.me (subscribers-only, for developers in English)
21195 L:      tomoyo-users-en@lists.osdn.me (subscribers-only, for users in English)
21196 L:      tomoyo-dev@lists.osdn.me (subscribers-only, for developers in Japanese)
21197 L:      tomoyo-users@lists.osdn.me (subscribers-only, for users in Japanese)
21198 S:      Maintained
21199 W:      https://tomoyo.osdn.jp/
21200 F:      security/tomoyo/
21201
21202 TOPSTAR LAPTOP EXTRAS DRIVER
21203 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
21204 L:      platform-driver-x86@vger.kernel.org
21205 S:      Maintained
21206 F:      drivers/platform/x86/topstar-laptop.c
21207
21208 TORTURE-TEST MODULES
21209 M:      Davidlohr Bueso <dave@stgolabs.net>
21210 M:      "Paul E. McKenney" <paulmck@kernel.org>
21211 M:      Josh Triplett <josh@joshtriplett.org>
21212 L:      linux-kernel@vger.kernel.org
21213 S:      Supported
21214 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
21215 F:      Documentation/RCU/torture.rst
21216 F:      kernel/locking/locktorture.c
21217 F:      kernel/rcu/rcuscale.c
21218 F:      kernel/rcu/rcutorture.c
21219 F:      kernel/rcu/refscale.c
21220 F:      kernel/torture.c
21221
21222 TOSHIBA ACPI EXTRAS DRIVER
21223 M:      Azael Avalos <coproscefalo@gmail.com>
21224 L:      platform-driver-x86@vger.kernel.org
21225 S:      Maintained
21226 F:      drivers/platform/x86/toshiba_acpi.c
21227
21228 TOSHIBA BLUETOOTH DRIVER
21229 M:      Azael Avalos <coproscefalo@gmail.com>
21230 L:      platform-driver-x86@vger.kernel.org
21231 S:      Maintained
21232 F:      drivers/platform/x86/toshiba_bluetooth.c
21233
21234 TOSHIBA HDD ACTIVE PROTECTION SENSOR DRIVER
21235 M:      Azael Avalos <coproscefalo@gmail.com>
21236 L:      platform-driver-x86@vger.kernel.org
21237 S:      Maintained
21238 F:      drivers/platform/x86/toshiba_haps.c
21239
21240 TOSHIBA SMM DRIVER
21241 M:      Jonathan Buzzard <jonathan@buzzard.org.uk>
21242 S:      Maintained
21243 W:      http://www.buzzard.org.uk/toshiba/
21244 F:      drivers/char/toshiba.c
21245 F:      include/linux/toshiba.h
21246 F:      include/uapi/linux/toshiba.h
21247
21248 TOSHIBA TC358743 DRIVER
21249 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
21250 L:      linux-media@vger.kernel.org
21251 S:      Maintained
21252 F:      Documentation/devicetree/bindings/media/i2c/tc358743.txt
21253 F:      drivers/media/i2c/tc358743*
21254 F:      include/media/i2c/tc358743.h
21255
21256 TOSHIBA WMI HOTKEYS DRIVER
21257 M:      Azael Avalos <coproscefalo@gmail.com>
21258 L:      platform-driver-x86@vger.kernel.org
21259 S:      Maintained
21260 F:      drivers/platform/x86/toshiba-wmi.c
21261
21262 TPM DEVICE DRIVER
21263 M:      Peter Huewe <peterhuewe@gmx.de>
21264 M:      Jarkko Sakkinen <jarkko@kernel.org>
21265 R:      Jason Gunthorpe <jgg@ziepe.ca>
21266 L:      linux-integrity@vger.kernel.org
21267 S:      Maintained
21268 W:      https://kernsec.org/wiki/index.php/Linux_Kernel_Integrity
21269 Q:      https://patchwork.kernel.org/project/linux-integrity/list/
21270 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jarkko/linux-tpmdd.git
21271 F:      drivers/char/tpm/
21272
21273 TPS546D24 DRIVER
21274 M:      Duke Du <dukedu83@gmail.com>
21275 L:      linux-hwmon@vger.kernel.org
21276 S:      Maintained
21277 F:      Documentation/hwmon/tps546d24.rst
21278 F:      drivers/hwmon/pmbus/tps546d24.c
21279
21280 TRACING
21281 M:      Steven Rostedt <rostedt@goodmis.org>
21282 M:      Masami Hiramatsu <mhiramat@kernel.org>
21283 L:      linux-kernel@vger.kernel.org
21284 L:      linux-trace-kernel@vger.kernel.org
21285 Q:      https://patchwork.kernel.org/project/linux-trace-kernel/list/
21286 S:      Maintained
21287 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/trace/linux-trace.git
21288 F:      Documentation/trace/*
21289 F:      fs/tracefs/
21290 F:      include/linux/trace*.h
21291 F:      include/trace/
21292 F:      kernel/trace/
21293 F:      scripts/tracing/
21294 F:      tools/testing/selftests/ftrace/
21295
21296 TRACING MMIO ACCESSES (MMIOTRACE)
21297 M:      Steven Rostedt <rostedt@goodmis.org>
21298 M:      Masami Hiramatsu <mhiramat@kernel.org>
21299 R:      Karol Herbst <karolherbst@gmail.com>
21300 R:      Pekka Paalanen <ppaalanen@gmail.com>
21301 L:      linux-kernel@vger.kernel.org
21302 L:      nouveau@lists.freedesktop.org
21303 S:      Maintained
21304 F:      arch/x86/mm/kmmio.c
21305 F:      arch/x86/mm/mmio-mod.c
21306 F:      arch/x86/mm/testmmiotrace.c
21307 F:      include/linux/mmiotrace.h
21308 F:      kernel/trace/trace_mmiotrace.c
21309
21310 TRACING OS NOISE / LATENCY TRACERS
21311 M:      Steven Rostedt <rostedt@goodmis.org>
21312 M:      Daniel Bristot de Oliveira <bristot@kernel.org>
21313 S:      Maintained
21314 F:      kernel/trace/trace_osnoise.c
21315 F:      include/trace/events/osnoise.h
21316 F:      kernel/trace/trace_hwlat.c
21317 F:      kernel/trace/trace_irqsoff.c
21318 F:      kernel/trace/trace_sched_wakeup.c
21319 F:      Documentation/trace/osnoise-tracer.rst
21320 F:      Documentation/trace/timerlat-tracer.rst
21321 F:      Documentation/trace/hwlat_detector.rst
21322 F:      arch/*/kernel/trace.c
21323
21324 Real-time Linux Analysis (RTLA) tools
21325 M:      Daniel Bristot de Oliveira <bristot@kernel.org>
21326 M:      Steven Rostedt <rostedt@goodmis.org>
21327 L:      linux-trace-devel@vger.kernel.org
21328 S:      Maintained
21329 F:      Documentation/tools/rtla/
21330 F:      tools/tracing/rtla/
21331
21332 TECHNICAL ADVISORY BOARD PROCESS DOCS
21333 M:      "Theodore Ts'o" <tytso@mit.edu>
21334 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
21335 L:      tech-board-discuss@lists.linux-foundation.org
21336 S:      Maintained
21337 F:      Documentation/process/researcher-guidelines.rst
21338 F:      Documentation/process/contribution-maturity-model.rst
21339
21340 TRADITIONAL CHINESE DOCUMENTATION
21341 M:      Hu Haowen <src.res@email.cn>
21342 L:      linux-doc-tw-discuss@lists.sourceforge.net (moderated for non-subscribers)
21343 S:      Maintained
21344 W:      https://github.com/srcres258/linux-doc
21345 T:      git git://github.com/srcres258/linux-doc.git doc-zh-tw
21346 F:      Documentation/translations/zh_TW/
21347
21348 TTY LAYER
21349 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
21350 M:      Jiri Slaby <jirislaby@kernel.org>
21351 S:      Supported
21352 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
21353 F:      Documentation/driver-api/serial/
21354 F:      drivers/tty/
21355 F:      drivers/tty/serial/serial_core.c
21356 F:      include/linux/selection.h
21357 F:      include/linux/serial.h
21358 F:      include/linux/serial_core.h
21359 F:      include/linux/sysrq.h
21360 F:      include/linux/tty*.h
21361 F:      include/linux/vt.h
21362 F:      include/linux/vt_*.h
21363 F:      include/uapi/linux/serial.h
21364 F:      include/uapi/linux/serial_core.h
21365 F:      include/uapi/linux/tty.h
21366
21367 TUA9001 MEDIA DRIVER
21368 M:      Antti Palosaari <crope@iki.fi>
21369 L:      linux-media@vger.kernel.org
21370 S:      Maintained
21371 W:      https://linuxtv.org
21372 W:      http://palosaari.fi/linux/
21373 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
21374 T:      git git://linuxtv.org/anttip/media_tree.git
21375 F:      drivers/media/tuners/tua9001*
21376
21377 TULIP NETWORK DRIVERS
21378 L:      netdev@vger.kernel.org
21379 L:      linux-parisc@vger.kernel.org
21380 S:      Orphan
21381 F:      drivers/net/ethernet/dec/tulip/
21382
21383 TUN/TAP driver
21384 M:      Maxim Krasnyansky <maxk@qti.qualcomm.com>
21385 S:      Maintained
21386 W:      http://vtun.sourceforge.net/tun
21387 F:      Documentation/networking/tuntap.rst
21388 F:      arch/um/os-Linux/drivers/
21389
21390 TURBOCHANNEL SUBSYSTEM
21391 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
21392 M:      Ralf Baechle <ralf@linux-mips.org>
21393 L:      linux-mips@vger.kernel.org
21394 S:      Maintained
21395 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
21396 F:      drivers/tc/
21397 F:      include/linux/tc.h
21398
21399 TURBOSTAT UTILITY
21400 M:      "Len Brown" <lenb@kernel.org>
21401 L:      linux-pm@vger.kernel.org
21402 S:      Supported
21403 Q:      https://patchwork.kernel.org/project/linux-pm/list/
21404 B:      https://bugzilla.kernel.org
21405 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git turbostat
21406 F:      tools/power/x86/turbostat/
21407
21408 TW5864 VIDEO4LINUX DRIVER
21409 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
21410 M:      Anton Sviridenko <anton@corp.bluecherry.net>
21411 M:      Andrey Utkin <andrey.utkin@corp.bluecherry.net>
21412 M:      Andrey Utkin <andrey_utkin@fastmail.com>
21413 L:      linux-media@vger.kernel.org
21414 S:      Supported
21415 F:      drivers/media/pci/tw5864/
21416
21417 TW68 VIDEO4LINUX DRIVER
21418 M:      Hans Verkuil <hverkuil@xs4all.nl>
21419 L:      linux-media@vger.kernel.org
21420 S:      Odd Fixes
21421 W:      https://linuxtv.org
21422 T:      git git://linuxtv.org/media_tree.git
21423 F:      drivers/media/pci/tw68/
21424
21425 TW686X VIDEO4LINUX DRIVER
21426 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
21427 L:      linux-media@vger.kernel.org
21428 S:      Maintained
21429 W:      http://linuxtv.org
21430 T:      git git://linuxtv.org/media_tree.git
21431 F:      drivers/media/pci/tw686x/
21432
21433 U-BOOT ENVIRONMENT VARIABLES
21434 M:      Rafał Miłecki <rafal@milecki.pl>
21435 S:      Maintained
21436 F:      Documentation/devicetree/bindings/nvmem/u-boot,env.yaml
21437 F:      drivers/nvmem/u-boot-env.c
21438
21439 UACCE ACCELERATOR FRAMEWORK
21440 M:      Zhangfei Gao <zhangfei.gao@linaro.org>
21441 M:      Zhou Wang <wangzhou1@hisilicon.com>
21442 L:      linux-accelerators@lists.ozlabs.org
21443 L:      linux-kernel@vger.kernel.org
21444 S:      Maintained
21445 F:      Documentation/ABI/testing/sysfs-driver-uacce
21446 F:      Documentation/misc-devices/uacce.rst
21447 F:      drivers/misc/uacce/
21448 F:      include/linux/uacce.h
21449 F:      include/uapi/misc/uacce/
21450
21451 UBI FILE SYSTEM (UBIFS)
21452 M:      Richard Weinberger <richard@nod.at>
21453 L:      linux-mtd@lists.infradead.org
21454 S:      Supported
21455 W:      http://www.linux-mtd.infradead.org/doc/ubifs.html
21456 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
21457 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
21458 F:      Documentation/ABI/testing/sysfs-fs-ubifs
21459 F:      Documentation/filesystems/ubifs-authentication.rst
21460 F:      Documentation/filesystems/ubifs.rst
21461 F:      fs/ubifs/
21462
21463 UBLK USERSPACE BLOCK DRIVER
21464 M:      Ming Lei <ming.lei@redhat.com>
21465 L:      linux-block@vger.kernel.org
21466 S:      Maintained
21467 F:      Documentation/block/ublk.rst
21468 F:      drivers/block/ublk_drv.c
21469 F:      include/uapi/linux/ublk_cmd.h
21470
21471 UCLINUX (M68KNOMMU AND COLDFIRE)
21472 M:      Greg Ungerer <gerg@linux-m68k.org>
21473 L:      linux-m68k@lists.linux-m68k.org
21474 L:      uclinux-dev@uclinux.org  (subscribers-only)
21475 S:      Maintained
21476 W:      http://www.linux-m68k.org/
21477 W:      http://www.uclinux.org/
21478 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git
21479 F:      arch/m68k/*/*_no.*
21480 F:      arch/m68k/68*/
21481 F:      arch/m68k/coldfire/
21482 F:      arch/m68k/include/asm/*_no.*
21483
21484 UDF FILESYSTEM
21485 M:      Jan Kara <jack@suse.com>
21486 S:      Maintained
21487 F:      Documentation/filesystems/udf.rst
21488 F:      fs/udf/
21489
21490 UDRAW TABLET
21491 M:      Bastien Nocera <hadess@hadess.net>
21492 L:      linux-input@vger.kernel.org
21493 S:      Maintained
21494 F:      drivers/hid/hid-udraw-ps3.c
21495
21496 UFS FILESYSTEM
21497 M:      Evgeniy Dushistov <dushistov@mail.ru>
21498 S:      Maintained
21499 F:      Documentation/admin-guide/ufs.rst
21500 F:      fs/ufs/
21501
21502 UHID USERSPACE HID IO DRIVER
21503 M:      David Rheinsberg <david.rheinsberg@gmail.com>
21504 L:      linux-input@vger.kernel.org
21505 S:      Maintained
21506 F:      drivers/hid/uhid.c
21507 F:      include/uapi/linux/uhid.h
21508
21509 ULPI BUS
21510 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
21511 L:      linux-usb@vger.kernel.org
21512 S:      Maintained
21513 F:      drivers/usb/common/ulpi.c
21514 F:      include/linux/ulpi/
21515
21516 UNICODE SUBSYSTEM
21517 M:      Gabriel Krisman Bertazi <krisman@collabora.com>
21518 L:      linux-fsdevel@vger.kernel.org
21519 S:      Supported
21520 F:      fs/unicode/
21521
21522 UNIFDEF
21523 M:      Tony Finch <dot@dotat.at>
21524 S:      Maintained
21525 W:      http://dotat.at/prog/unifdef
21526 F:      scripts/unifdef.c
21527
21528 UNIFORM CDROM DRIVER
21529 M:      Phillip Potter <phil@philpotter.co.uk>
21530 S:      Maintained
21531 F:      Documentation/cdrom/
21532 F:      drivers/cdrom/cdrom.c
21533 F:      include/linux/cdrom.h
21534 F:      include/uapi/linux/cdrom.h
21535
21536 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
21537 R:      Alim Akhtar <alim.akhtar@samsung.com>
21538 R:      Avri Altman <avri.altman@wdc.com>
21539 R:      Bart Van Assche <bvanassche@acm.org>
21540 L:      linux-scsi@vger.kernel.org
21541 S:      Supported
21542 F:      Documentation/devicetree/bindings/ufs/
21543 F:      Documentation/scsi/ufs.rst
21544 F:      drivers/ufs/core/
21545
21546 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER DWC HOOKS
21547 M:      Pedro Sousa <pedrom.sousa@synopsys.com>
21548 L:      linux-scsi@vger.kernel.org
21549 S:      Supported
21550 F:      drivers/ufs/host/*dwc*
21551
21552 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER EXYNOS HOOKS
21553 M:      Alim Akhtar <alim.akhtar@samsung.com>
21554 L:      linux-scsi@vger.kernel.org
21555 S:      Maintained
21556 F:      drivers/ufs/host/ufs-exynos*
21557
21558 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER MEDIATEK HOOKS
21559 M:      Stanley Chu <stanley.chu@mediatek.com>
21560 L:      linux-scsi@vger.kernel.org
21561 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
21562 S:      Maintained
21563 F:      drivers/ufs/host/ufs-mediatek*
21564
21565 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER QUALCOMM HOOKS
21566 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
21567 L:      linux-arm-msm@vger.kernel.org
21568 L:      linux-scsi@vger.kernel.org
21569 S:      Maintained
21570 F:      Documentation/devicetree/bindings/ufs/qcom,ufs.yaml
21571 F:      drivers/ufs/host/ufs-qcom*
21572
21573 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER RENESAS HOOKS
21574 M:      Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
21575 L:      linux-renesas-soc@vger.kernel.org
21576 L:      linux-scsi@vger.kernel.org
21577 S:      Maintained
21578 F:      drivers/ufs/host/ufs-renesas.c
21579
21580 UNSORTED BLOCK IMAGES (UBI)
21581 M:      Richard Weinberger <richard@nod.at>
21582 L:      linux-mtd@lists.infradead.org
21583 S:      Supported
21584 W:      http://www.linux-mtd.infradead.org/
21585 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
21586 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
21587 F:      drivers/mtd/ubi/
21588 F:      include/linux/mtd/ubi.h
21589 F:      include/uapi/mtd/ubi-user.h
21590
21591 USB "USBNET" DRIVER FRAMEWORK
21592 M:      Oliver Neukum <oneukum@suse.com>
21593 L:      netdev@vger.kernel.org
21594 S:      Maintained
21595 W:      http://www.linux-usb.org/usbnet
21596 F:      drivers/net/usb/usbnet.c
21597 F:      include/linux/usb/usbnet.h
21598
21599 USB ACM DRIVER
21600 M:      Oliver Neukum <oneukum@suse.com>
21601 L:      linux-usb@vger.kernel.org
21602 S:      Maintained
21603 F:      Documentation/usb/acm.rst
21604 F:      drivers/usb/class/cdc-acm.*
21605
21606 USB APPLE MFI FASTCHARGE DRIVER
21607 M:      Bastien Nocera <hadess@hadess.net>
21608 L:      linux-usb@vger.kernel.org
21609 S:      Maintained
21610 F:      drivers/usb/misc/apple-mfi-fastcharge.c
21611
21612 USB AR5523 WIRELESS DRIVER
21613 M:      Pontus Fuchs <pontus.fuchs@gmail.com>
21614 L:      linux-wireless@vger.kernel.org
21615 S:      Maintained
21616 F:      drivers/net/wireless/ath/ar5523/
21617
21618 USB ATTACHED SCSI
21619 M:      Oliver Neukum <oneukum@suse.com>
21620 L:      linux-usb@vger.kernel.org
21621 L:      linux-scsi@vger.kernel.org
21622 S:      Maintained
21623 F:      drivers/usb/storage/uas.c
21624
21625 USB CDC ETHERNET DRIVER
21626 M:      Oliver Neukum <oliver@neukum.org>
21627 L:      linux-usb@vger.kernel.org
21628 S:      Maintained
21629 F:      drivers/net/usb/cdc_*.c
21630 F:      include/uapi/linux/usb/cdc.h
21631
21632 USB CHAOSKEY DRIVER
21633 M:      Keith Packard <keithp@keithp.com>
21634 L:      linux-usb@vger.kernel.org
21635 S:      Maintained
21636 F:      drivers/usb/misc/chaoskey.c
21637
21638 USB CYPRESS C67X00 DRIVER
21639 L:      linux-usb@vger.kernel.org
21640 S:      Orphan
21641 F:      drivers/usb/c67x00/
21642
21643 USB DAVICOM DM9601 DRIVER
21644 M:      Peter Korsgaard <peter@korsgaard.com>
21645 L:      netdev@vger.kernel.org
21646 S:      Maintained
21647 W:      http://www.linux-usb.org/usbnet
21648 F:      drivers/net/usb/dm9601.c
21649
21650 USB EHCI DRIVER
21651 M:      Alan Stern <stern@rowland.harvard.edu>
21652 L:      linux-usb@vger.kernel.org
21653 S:      Maintained
21654 F:      Documentation/usb/ehci.rst
21655 F:      drivers/usb/host/ehci*
21656
21657 USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
21658 M:      Jiri Kosina <jikos@kernel.org>
21659 M:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
21660 L:      linux-usb@vger.kernel.org
21661 S:      Maintained
21662 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
21663 F:      Documentation/hid/hiddev.rst
21664 F:      drivers/hid/usbhid/
21665
21666 USB INTEL XHCI ROLE MUX DRIVER
21667 M:      Hans de Goede <hdegoede@redhat.com>
21668 L:      linux-usb@vger.kernel.org
21669 S:      Maintained
21670 F:      drivers/usb/roles/intel-xhci-usb-role-switch.c
21671
21672 USB IP DRIVER FOR HISILICON KIRIN 960
21673 M:      Yu Chen <chenyu56@huawei.com>
21674 M:      Binghui Wang <wangbinghui@hisilicon.com>
21675 L:      linux-usb@vger.kernel.org
21676 S:      Maintained
21677 F:      Documentation/devicetree/bindings/phy/hisilicon,hi3660-usb3.yaml
21678 F:      drivers/phy/hisilicon/phy-hi3660-usb3.c
21679
21680 USB IP DRIVER FOR HISILICON KIRIN 970
21681 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
21682 L:      linux-usb@vger.kernel.org
21683 S:      Maintained
21684 F:      Documentation/devicetree/bindings/phy/hisilicon,hi3670-usb3.yaml
21685 F:      drivers/phy/hisilicon/phy-hi3670-usb3.c
21686
21687 USB ISP116X DRIVER
21688 M:      Olav Kongas <ok@artecdesign.ee>
21689 L:      linux-usb@vger.kernel.org
21690 S:      Maintained
21691 F:      drivers/usb/host/isp116x*
21692 F:      include/linux/usb/isp116x.h
21693
21694 USB ISP1760 DRIVER
21695 M:      Rui Miguel Silva <rui.silva@linaro.org>
21696 L:      linux-usb@vger.kernel.org
21697 S:      Maintained
21698 F:      drivers/usb/isp1760/*
21699 F:      Documentation/devicetree/bindings/usb/nxp,isp1760.yaml
21700
21701 USB LAN78XX ETHERNET DRIVER
21702 M:      Woojung Huh <woojung.huh@microchip.com>
21703 M:      UNGLinuxDriver@microchip.com
21704 L:      netdev@vger.kernel.org
21705 S:      Maintained
21706 F:      Documentation/devicetree/bindings/net/microchip,lan78xx.txt
21707 F:      drivers/net/usb/lan78xx.*
21708 F:      include/dt-bindings/net/microchip-lan78xx.h
21709
21710 USB MASS STORAGE DRIVER
21711 M:      Alan Stern <stern@rowland.harvard.edu>
21712 L:      linux-usb@vger.kernel.org
21713 L:      usb-storage@lists.one-eyed-alien.net
21714 S:      Maintained
21715 F:      drivers/usb/storage/
21716
21717 USB MIDI DRIVER
21718 M:      Clemens Ladisch <clemens@ladisch.de>
21719 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
21720 S:      Maintained
21721 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
21722 F:      sound/usb/midi.*
21723
21724 USB NETWORKING DRIVERS
21725 L:      linux-usb@vger.kernel.org
21726 S:      Odd Fixes
21727 F:      drivers/net/usb/
21728
21729 USB OHCI DRIVER
21730 M:      Alan Stern <stern@rowland.harvard.edu>
21731 L:      linux-usb@vger.kernel.org
21732 S:      Maintained
21733 F:      Documentation/usb/ohci.rst
21734 F:      drivers/usb/host/ohci*
21735
21736 USB OTG FSM (Finite State Machine)
21737 M:      Peter Chen <peter.chen@kernel.org>
21738 L:      linux-usb@vger.kernel.org
21739 S:      Maintained
21740 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
21741 F:      drivers/usb/common/usb-otg-fsm.c
21742
21743 USB OVER IP DRIVER
21744 M:      Valentina Manea <valentina.manea.m@gmail.com>
21745 M:      Shuah Khan <shuah@kernel.org>
21746 M:      Shuah Khan <skhan@linuxfoundation.org>
21747 R:      Hongren Zheng <i@zenithal.me>
21748 L:      linux-usb@vger.kernel.org
21749 S:      Maintained
21750 F:      Documentation/usb/usbip_protocol.rst
21751 F:      drivers/usb/usbip/
21752 F:      tools/testing/selftests/drivers/usb/usbip/
21753 F:      tools/usb/usbip/
21754
21755 USB PEGASUS DRIVER
21756 M:      Petko Manolov <petkan@nucleusys.com>
21757 L:      linux-usb@vger.kernel.org
21758 L:      netdev@vger.kernel.org
21759 S:      Maintained
21760 W:      https://github.com/petkan/pegasus
21761 T:      git https://github.com/petkan/pegasus.git
21762 F:      drivers/net/usb/pegasus.*
21763
21764 USB PRINTER DRIVER (usblp)
21765 M:      Pete Zaitcev <zaitcev@redhat.com>
21766 L:      linux-usb@vger.kernel.org
21767 S:      Supported
21768 F:      drivers/usb/class/usblp.c
21769
21770 USB RAW GADGET DRIVER
21771 R:      Andrey Konovalov <andreyknvl@gmail.com>
21772 L:      linux-usb@vger.kernel.org
21773 S:      Maintained
21774 F:      Documentation/usb/raw-gadget.rst
21775 F:      drivers/usb/gadget/legacy/raw_gadget.c
21776 F:      include/uapi/linux/usb/raw_gadget.h
21777
21778 USB QMI WWAN NETWORK DRIVER
21779 M:      Bjørn Mork <bjorn@mork.no>
21780 L:      netdev@vger.kernel.org
21781 S:      Maintained
21782 F:      Documentation/ABI/testing/sysfs-class-net-qmi
21783 F:      drivers/net/usb/qmi_wwan.c
21784
21785 USB RTL8150 DRIVER
21786 M:      Petko Manolov <petkan@nucleusys.com>
21787 L:      linux-usb@vger.kernel.org
21788 L:      netdev@vger.kernel.org
21789 S:      Maintained
21790 W:      https://github.com/petkan/rtl8150
21791 T:      git https://github.com/petkan/rtl8150.git
21792 F:      drivers/net/usb/rtl8150.c
21793
21794 USB SERIAL SUBSYSTEM
21795 M:      Johan Hovold <johan@kernel.org>
21796 L:      linux-usb@vger.kernel.org
21797 S:      Maintained
21798 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/usb-serial.git
21799 F:      Documentation/usb/usb-serial.rst
21800 F:      drivers/usb/serial/
21801 F:      include/linux/usb/serial.h
21802
21803 USB SMSC75XX ETHERNET DRIVER
21804 M:      Steve Glendinning <steve.glendinning@shawell.net>
21805 L:      netdev@vger.kernel.org
21806 S:      Maintained
21807 F:      drivers/net/usb/smsc75xx.*
21808
21809 USB SMSC95XX ETHERNET DRIVER
21810 M:      Steve Glendinning <steve.glendinning@shawell.net>
21811 M:      UNGLinuxDriver@microchip.com
21812 L:      netdev@vger.kernel.org
21813 S:      Maintained
21814 F:      drivers/net/usb/smsc95xx.*
21815
21816 USB SUBSYSTEM
21817 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
21818 L:      linux-usb@vger.kernel.org
21819 S:      Supported
21820 W:      http://www.linux-usb.org
21821 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
21822 F:      Documentation/devicetree/bindings/usb/
21823 F:      Documentation/usb/
21824 F:      drivers/usb/
21825 F:      include/dt-bindings/usb/
21826 F:      include/linux/usb.h
21827 F:      include/linux/usb/
21828
21829 USB TYPEC BUS FOR ALTERNATE MODES
21830 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
21831 L:      linux-usb@vger.kernel.org
21832 S:      Maintained
21833 F:      Documentation/ABI/testing/sysfs-bus-typec
21834 F:      Documentation/driver-api/usb/typec_bus.rst
21835 F:      drivers/usb/typec/altmodes/
21836 F:      include/linux/usb/typec_altmode.h
21837
21838 USB TYPEC CLASS
21839 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
21840 L:      linux-usb@vger.kernel.org
21841 S:      Maintained
21842 F:      Documentation/ABI/testing/sysfs-class-typec
21843 F:      Documentation/driver-api/usb/typec.rst
21844 F:      drivers/usb/typec/
21845 F:      include/linux/usb/typec.h
21846
21847 USB TYPEC INTEL PMC MUX DRIVER
21848 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
21849 L:      linux-usb@vger.kernel.org
21850 S:      Maintained
21851 F:      Documentation/firmware-guide/acpi/intel-pmc-mux.rst
21852 F:      drivers/usb/typec/mux/intel_pmc_mux.c
21853
21854 USB TYPEC PI3USB30532 MUX DRIVER
21855 M:      Hans de Goede <hdegoede@redhat.com>
21856 L:      linux-usb@vger.kernel.org
21857 S:      Maintained
21858 F:      drivers/usb/typec/mux/pi3usb30532.c
21859
21860 USB TYPEC PORT CONTROLLER DRIVERS
21861 M:      Guenter Roeck <linux@roeck-us.net>
21862 L:      linux-usb@vger.kernel.org
21863 S:      Maintained
21864 F:      drivers/usb/typec/tcpm/
21865
21866 USB UHCI DRIVER
21867 M:      Alan Stern <stern@rowland.harvard.edu>
21868 L:      linux-usb@vger.kernel.org
21869 S:      Maintained
21870 F:      drivers/usb/host/uhci*
21871
21872 USB VIDEO CLASS
21873 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
21874 L:      linux-media@vger.kernel.org
21875 S:      Maintained
21876 W:      http://www.ideasonboard.org/uvc/
21877 T:      git git://linuxtv.org/media_tree.git
21878 F:      drivers/media/usb/uvc/
21879 F:      include/uapi/linux/uvcvideo.h
21880
21881 USB WEBCAM GADGET
21882 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
21883 M:      Daniel Scally <dan.scally@ideasonboard.com>
21884 L:      linux-usb@vger.kernel.org
21885 S:      Maintained
21886 F:      drivers/usb/gadget/function/*uvc*
21887 F:      drivers/usb/gadget/legacy/webcam.c
21888 F:      include/uapi/linux/usb/g_uvc.h
21889
21890 USB WIRELESS RNDIS DRIVER (rndis_wlan)
21891 M:      Jussi Kivilinna <jussi.kivilinna@iki.fi>
21892 L:      linux-wireless@vger.kernel.org
21893 S:      Maintained
21894 F:      drivers/net/wireless/legacy/rndis_wlan.c
21895
21896 USB XHCI DRIVER
21897 M:      Mathias Nyman <mathias.nyman@intel.com>
21898 L:      linux-usb@vger.kernel.org
21899 S:      Supported
21900 F:      drivers/usb/host/pci-quirks*
21901 F:      drivers/usb/host/xhci*
21902
21903 USB ZD1201 DRIVER
21904 L:      linux-wireless@vger.kernel.org
21905 S:      Orphan
21906 W:      http://linux-lc100020.sourceforge.net
21907 F:      drivers/net/wireless/zydas/zd1201.*
21908
21909 USER DATAGRAM PROTOCOL (UDP)
21910 M:      Willem de Bruijn <willemdebruijn.kernel@gmail.com>
21911 S:      Maintained
21912 F:      include/linux/udp.h
21913 F:      net/ipv4/udp.c
21914 F:      net/ipv6/udp.c
21915
21916 USER-MODE LINUX (UML)
21917 M:      Richard Weinberger <richard@nod.at>
21918 M:      Anton Ivanov <anton.ivanov@cambridgegreys.com>
21919 M:      Johannes Berg <johannes@sipsolutions.net>
21920 L:      linux-um@lists.infradead.org
21921 S:      Maintained
21922 W:      http://user-mode-linux.sourceforge.net
21923 Q:      https://patchwork.ozlabs.org/project/linux-um/list/
21924 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/uml/linux.git next
21925 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/uml/linux.git fixes
21926 F:      Documentation/virt/uml/
21927 F:      arch/um/
21928 F:      arch/x86/um/
21929 F:      fs/hostfs/
21930
21931 USERSPACE COPYIN/COPYOUT (UIOVEC)
21932 M:      Alexander Viro <viro@zeniv.linux.org.uk>
21933 S:      Maintained
21934 F:      include/linux/uio.h
21935 F:      lib/iov_iter.c
21936
21937 USERSPACE DMA BUFFER DRIVER
21938 M:      Gerd Hoffmann <kraxel@redhat.com>
21939 L:      dri-devel@lists.freedesktop.org
21940 S:      Maintained
21941 T:      git git://anongit.freedesktop.org/drm/drm-misc
21942 F:      drivers/dma-buf/udmabuf.c
21943 F:      include/uapi/linux/udmabuf.h
21944
21945 USERSPACE I/O (UIO)
21946 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
21947 S:      Maintained
21948 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
21949 F:      Documentation/driver-api/uio-howto.rst
21950 F:      drivers/uio/
21951 F:      include/linux/uio_driver.h
21952
21953 UTIL-LINUX PACKAGE
21954 M:      Karel Zak <kzak@redhat.com>
21955 L:      util-linux@vger.kernel.org
21956 S:      Maintained
21957 W:      http://en.wikipedia.org/wiki/Util-linux
21958 T:      git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
21959
21960 UUID HELPERS
21961 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
21962 L:      linux-kernel@vger.kernel.org
21963 S:      Maintained
21964 F:      include/linux/uuid.h
21965 F:      lib/test_uuid.c
21966 F:      lib/uuid.c
21967
21968 UV SYSFS DRIVER
21969 M:      Justin Ernst <justin.ernst@hpe.com>
21970 L:      platform-driver-x86@vger.kernel.org
21971 S:      Maintained
21972 F:      drivers/platform/x86/uv_sysfs.c
21973
21974 UVESAFB DRIVER
21975 M:      Michal Januszewski <spock@gentoo.org>
21976 L:      linux-fbdev@vger.kernel.org
21977 S:      Maintained
21978 W:      https://github.com/mjanusz/v86d
21979 F:      Documentation/fb/uvesafb.rst
21980 F:      drivers/video/fbdev/uvesafb.*
21981
21982 Ux500 CLOCK DRIVERS
21983 M:      Ulf Hansson <ulf.hansson@linaro.org>
21984 L:      linux-clk@vger.kernel.org
21985 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
21986 S:      Maintained
21987 F:      drivers/clk/ux500/
21988
21989 VF610 NAND DRIVER
21990 M:      Stefan Agner <stefan@agner.ch>
21991 L:      linux-mtd@lists.infradead.org
21992 S:      Supported
21993 F:      drivers/mtd/nand/raw/vf610_nfc.c
21994
21995 VFAT/FAT/MSDOS FILESYSTEM
21996 M:      OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
21997 S:      Maintained
21998 F:      Documentation/filesystems/vfat.rst
21999 F:      fs/fat/
22000 F:      tools/testing/selftests/filesystems/fat/
22001
22002 VFIO DRIVER
22003 M:      Alex Williamson <alex.williamson@redhat.com>
22004 L:      kvm@vger.kernel.org
22005 S:      Maintained
22006 T:      git https://github.com/awilliam/linux-vfio.git
22007 F:      Documentation/ABI/testing/sysfs-devices-vfio-dev
22008 F:      Documentation/driver-api/vfio.rst
22009 F:      drivers/vfio/
22010 F:      include/linux/vfio.h
22011 F:      include/linux/vfio_pci_core.h
22012 F:      include/uapi/linux/vfio.h
22013
22014 VFIO FSL-MC DRIVER
22015 M:      Diana Craciun <diana.craciun@oss.nxp.com>
22016 L:      kvm@vger.kernel.org
22017 S:      Maintained
22018 F:      drivers/vfio/fsl-mc/
22019
22020 VFIO HISILICON PCI DRIVER
22021 M:      Longfang Liu <liulongfang@huawei.com>
22022 M:      Shameer Kolothum <shameerali.kolothum.thodi@huawei.com>
22023 L:      kvm@vger.kernel.org
22024 S:      Maintained
22025 F:      drivers/vfio/pci/hisilicon/
22026
22027 VFIO MEDIATED DEVICE DRIVERS
22028 M:      Kirti Wankhede <kwankhede@nvidia.com>
22029 L:      kvm@vger.kernel.org
22030 S:      Maintained
22031 F:      Documentation/driver-api/vfio-mediated-device.rst
22032 F:      drivers/vfio/mdev/
22033 F:      include/linux/mdev.h
22034 F:      samples/vfio-mdev/
22035
22036 VFIO PCI DEVICE SPECIFIC DRIVERS
22037 R:      Jason Gunthorpe <jgg@nvidia.com>
22038 R:      Yishai Hadas <yishaih@nvidia.com>
22039 R:      Shameer Kolothum <shameerali.kolothum.thodi@huawei.com>
22040 R:      Kevin Tian <kevin.tian@intel.com>
22041 L:      kvm@vger.kernel.org
22042 S:      Maintained
22043 P:      Documentation/driver-api/vfio-pci-device-specific-driver-acceptance.rst
22044 F:      drivers/vfio/pci/*/
22045
22046 VFIO PLATFORM DRIVER
22047 M:      Eric Auger <eric.auger@redhat.com>
22048 L:      kvm@vger.kernel.org
22049 S:      Maintained
22050 F:      drivers/vfio/platform/
22051
22052 VFIO MLX5 PCI DRIVER
22053 M:      Yishai Hadas <yishaih@nvidia.com>
22054 L:      kvm@vger.kernel.org
22055 S:      Maintained
22056 F:      drivers/vfio/pci/mlx5/
22057
22058 VGA_SWITCHEROO
22059 R:      Lukas Wunner <lukas@wunner.de>
22060 S:      Maintained
22061 T:      git git://anongit.freedesktop.org/drm/drm-misc
22062 F:      Documentation/gpu/vga-switcheroo.rst
22063 F:      drivers/gpu/vga/vga_switcheroo.c
22064 F:      include/linux/vga_switcheroo.h
22065
22066 VIA RHINE NETWORK DRIVER
22067 S:      Maintained
22068 M:      Kevin Brace <kevinbrace@bracecomputerlab.com>
22069 F:      drivers/net/ethernet/via/via-rhine.c
22070
22071 VIA SD/MMC CARD CONTROLLER DRIVER
22072 M:      Bruce Chang <brucechang@via.com.tw>
22073 M:      Harald Welte <HaraldWelte@viatech.com>
22074 S:      Maintained
22075 F:      drivers/mmc/host/via-sdmmc.c
22076
22077 VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
22078 M:      Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
22079 L:      linux-fbdev@vger.kernel.org
22080 S:      Maintained
22081 F:      drivers/video/fbdev/via/
22082 F:      include/linux/via-core.h
22083 F:      include/linux/via-gpio.h
22084 F:      include/linux/via_i2c.h
22085
22086 VIA VELOCITY NETWORK DRIVER
22087 M:      Francois Romieu <romieu@fr.zoreil.com>
22088 L:      netdev@vger.kernel.org
22089 S:      Maintained
22090 F:      drivers/net/ethernet/via/via-velocity.*
22091
22092 VICODEC VIRTUAL CODEC DRIVER
22093 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
22094 L:      linux-media@vger.kernel.org
22095 S:      Maintained
22096 W:      https://linuxtv.org
22097 T:      git git://linuxtv.org/media_tree.git
22098 F:      drivers/media/test-drivers/vicodec/*
22099
22100 VIDEO I2C POLLING DRIVER
22101 M:      Matt Ranostay <matt.ranostay@konsulko.com>
22102 L:      linux-media@vger.kernel.org
22103 S:      Maintained
22104 F:      drivers/media/i2c/video-i2c.c
22105
22106 VIDEO MULTIPLEXER DRIVER
22107 M:      Philipp Zabel <p.zabel@pengutronix.de>
22108 L:      linux-media@vger.kernel.org
22109 S:      Maintained
22110 F:      drivers/media/platform/video-mux.c
22111
22112 VIDEOBUF2 FRAMEWORK
22113 M:      Tomasz Figa <tfiga@chromium.org>
22114 M:      Marek Szyprowski <m.szyprowski@samsung.com>
22115 L:      linux-media@vger.kernel.org
22116 S:      Maintained
22117 F:      drivers/media/common/videobuf2/*
22118 F:      include/media/videobuf2-*
22119
22120 VIMC VIRTUAL MEDIA CONTROLLER DRIVER
22121 M:      Shuah Khan <skhan@linuxfoundation.org>
22122 R:      Kieran Bingham <kieran.bingham@ideasonboard.com>
22123 L:      linux-media@vger.kernel.org
22124 S:      Maintained
22125 W:      https://linuxtv.org
22126 T:      git git://linuxtv.org/media_tree.git
22127 F:      drivers/media/test-drivers/vimc/*
22128
22129 VIRT LIB
22130 M:      Alex Williamson <alex.williamson@redhat.com>
22131 M:      Paolo Bonzini <pbonzini@redhat.com>
22132 L:      kvm@vger.kernel.org
22133 S:      Supported
22134 F:      virt/lib/
22135
22136 VIRTIO AND VHOST VSOCK DRIVER
22137 M:      Stefan Hajnoczi <stefanha@redhat.com>
22138 M:      Stefano Garzarella <sgarzare@redhat.com>
22139 L:      kvm@vger.kernel.org
22140 L:      virtualization@lists.linux-foundation.org
22141 L:      netdev@vger.kernel.org
22142 S:      Maintained
22143 F:      drivers/vhost/vsock.c
22144 F:      include/linux/virtio_vsock.h
22145 F:      include/uapi/linux/virtio_vsock.h
22146 F:      net/vmw_vsock/virtio_transport.c
22147 F:      net/vmw_vsock/virtio_transport_common.c
22148
22149 VIRTIO BLOCK AND SCSI DRIVERS
22150 M:      "Michael S. Tsirkin" <mst@redhat.com>
22151 M:      Jason Wang <jasowang@redhat.com>
22152 R:      Paolo Bonzini <pbonzini@redhat.com>
22153 R:      Stefan Hajnoczi <stefanha@redhat.com>
22154 L:      virtualization@lists.linux-foundation.org
22155 S:      Maintained
22156 F:      drivers/block/virtio_blk.c
22157 F:      drivers/scsi/virtio_scsi.c
22158 F:      drivers/vhost/scsi.c
22159 F:      include/uapi/linux/virtio_blk.h
22160 F:      include/uapi/linux/virtio_scsi.h
22161
22162 VIRTIO CONSOLE DRIVER
22163 M:      Amit Shah <amit@kernel.org>
22164 L:      virtualization@lists.linux-foundation.org
22165 S:      Maintained
22166 F:      drivers/char/virtio_console.c
22167 F:      include/linux/virtio_console.h
22168 F:      include/uapi/linux/virtio_console.h
22169
22170 VIRTIO CORE AND NET DRIVERS
22171 M:      "Michael S. Tsirkin" <mst@redhat.com>
22172 M:      Jason Wang <jasowang@redhat.com>
22173 L:      virtualization@lists.linux-foundation.org
22174 S:      Maintained
22175 F:      Documentation/ABI/testing/sysfs-bus-vdpa
22176 F:      Documentation/ABI/testing/sysfs-class-vduse
22177 F:      Documentation/devicetree/bindings/virtio/
22178 F:      Documentation/driver-api/virtio/
22179 F:      drivers/block/virtio_blk.c
22180 F:      drivers/crypto/virtio/
22181 F:      drivers/net/virtio_net.c
22182 F:      drivers/vdpa/
22183 F:      drivers/virtio/
22184 F:      include/linux/vdpa.h
22185 F:      include/linux/virtio*.h
22186 F:      include/uapi/linux/virtio_*.h
22187 F:      tools/virtio/
22188
22189 VISL VIRTUAL STATELESS DECODER DRIVER
22190 M:      Daniel Almeida <daniel.almeida@collabora.com>
22191 L:      linux-media@vger.kernel.org
22192 S:      Supported
22193 F:      drivers/media/test-drivers/visl
22194
22195 IFCVF VIRTIO DATA PATH ACCELERATOR
22196 R:      Zhu Lingshan <lingshan.zhu@intel.com>
22197 F:      drivers/vdpa/ifcvf/
22198
22199 SNET DPU VIRTIO DATA PATH ACCELERATOR
22200 R:      Alvaro Karsz <alvaro.karsz@solid-run.com>
22201 F:      drivers/vdpa/solidrun/
22202
22203 VIRTIO BALLOON
22204 M:      "Michael S. Tsirkin" <mst@redhat.com>
22205 M:      David Hildenbrand <david@redhat.com>
22206 L:      virtualization@lists.linux-foundation.org
22207 S:      Maintained
22208 F:      drivers/virtio/virtio_balloon.c
22209 F:      include/uapi/linux/virtio_balloon.h
22210 F:      include/linux/balloon_compaction.h
22211 F:      mm/balloon_compaction.c
22212
22213 VIRTIO CRYPTO DRIVER
22214 M:      Gonglei <arei.gonglei@huawei.com>
22215 L:      virtualization@lists.linux-foundation.org
22216 L:      linux-crypto@vger.kernel.org
22217 S:      Maintained
22218 F:      drivers/crypto/virtio/
22219 F:      include/uapi/linux/virtio_crypto.h
22220
22221 VIRTIO DRIVERS FOR S390
22222 M:      Cornelia Huck <cohuck@redhat.com>
22223 M:      Halil Pasic <pasic@linux.ibm.com>
22224 M:      Eric Farman <farman@linux.ibm.com>
22225 L:      linux-s390@vger.kernel.org
22226 L:      virtualization@lists.linux-foundation.org
22227 L:      kvm@vger.kernel.org
22228 S:      Supported
22229 F:      arch/s390/include/uapi/asm/virtio-ccw.h
22230 F:      drivers/s390/virtio/
22231
22232 VIRTIO FILE SYSTEM
22233 M:      Vivek Goyal <vgoyal@redhat.com>
22234 M:      Stefan Hajnoczi <stefanha@redhat.com>
22235 M:      Miklos Szeredi <miklos@szeredi.hu>
22236 L:      virtualization@lists.linux-foundation.org
22237 L:      linux-fsdevel@vger.kernel.org
22238 S:      Supported
22239 W:      https://virtio-fs.gitlab.io/
22240 F:      Documentation/filesystems/virtiofs.rst
22241 F:      fs/fuse/virtio_fs.c
22242 F:      include/uapi/linux/virtio_fs.h
22243
22244 VIRTIO GPIO DRIVER
22245 M:      Enrico Weigelt, metux IT consult <info@metux.net>
22246 M:      Viresh Kumar <vireshk@kernel.org>
22247 L:      linux-gpio@vger.kernel.org
22248 L:      virtualization@lists.linux-foundation.org
22249 S:      Maintained
22250 F:      drivers/gpio/gpio-virtio.c
22251 F:      include/uapi/linux/virtio_gpio.h
22252
22253 VIRTIO GPU DRIVER
22254 M:      David Airlie <airlied@redhat.com>
22255 M:      Gerd Hoffmann <kraxel@redhat.com>
22256 R:      Gurchetan Singh <gurchetansingh@chromium.org>
22257 R:      Chia-I Wu <olvaffe@gmail.com>
22258 L:      dri-devel@lists.freedesktop.org
22259 L:      virtualization@lists.linux-foundation.org
22260 S:      Maintained
22261 T:      git git://anongit.freedesktop.org/drm/drm-misc
22262 F:      drivers/gpu/drm/virtio/
22263 F:      include/uapi/linux/virtio_gpu.h
22264
22265 VIRTIO HOST (VHOST)
22266 M:      "Michael S. Tsirkin" <mst@redhat.com>
22267 M:      Jason Wang <jasowang@redhat.com>
22268 L:      kvm@vger.kernel.org
22269 L:      virtualization@lists.linux-foundation.org
22270 L:      netdev@vger.kernel.org
22271 S:      Maintained
22272 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost.git
22273 F:      kernel/vhost_task.c
22274 F:      drivers/vhost/
22275 F:      include/linux/sched/vhost_task.h
22276 F:      include/linux/vhost_iotlb.h
22277 F:      include/uapi/linux/vhost.h
22278
22279 VIRTIO INPUT DRIVER
22280 M:      Gerd Hoffmann <kraxel@redhat.com>
22281 S:      Maintained
22282 F:      drivers/virtio/virtio_input.c
22283 F:      include/uapi/linux/virtio_input.h
22284
22285 VIRTIO IOMMU DRIVER
22286 M:      Jean-Philippe Brucker <jean-philippe@linaro.org>
22287 L:      virtualization@lists.linux-foundation.org
22288 S:      Maintained
22289 F:      drivers/iommu/virtio-iommu.c
22290 F:      include/uapi/linux/virtio_iommu.h
22291
22292 VIRTIO MEM DRIVER
22293 M:      David Hildenbrand <david@redhat.com>
22294 L:      virtualization@lists.linux-foundation.org
22295 S:      Maintained
22296 W:      https://virtio-mem.gitlab.io/
22297 F:      drivers/virtio/virtio_mem.c
22298 F:      include/uapi/linux/virtio_mem.h
22299
22300 VIRTIO SOUND DRIVER
22301 M:      Anton Yakovlev <anton.yakovlev@opensynergy.com>
22302 M:      "Michael S. Tsirkin" <mst@redhat.com>
22303 L:      virtualization@lists.linux-foundation.org
22304 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
22305 S:      Maintained
22306 F:      include/uapi/linux/virtio_snd.h
22307 F:      sound/virtio/*
22308
22309 VIRTIO I2C DRIVER
22310 M:      Conghui Chen <conghui.chen@intel.com>
22311 M:      Viresh Kumar <viresh.kumar@linaro.org>
22312 L:      linux-i2c@vger.kernel.org
22313 L:      virtualization@lists.linux-foundation.org
22314 S:      Maintained
22315 F:      drivers/i2c/busses/i2c-virtio.c
22316 F:      include/uapi/linux/virtio_i2c.h
22317
22318 VIRTIO PMEM DRIVER
22319 M:      Pankaj Gupta <pankaj.gupta.linux@gmail.com>
22320 L:      virtualization@lists.linux-foundation.org
22321 S:      Maintained
22322 F:      drivers/nvdimm/virtio_pmem.c
22323 F:      drivers/nvdimm/nd_virtio.c
22324
22325 VIRTUAL BOX GUEST DEVICE DRIVER
22326 M:      Hans de Goede <hdegoede@redhat.com>
22327 M:      Arnd Bergmann <arnd@arndb.de>
22328 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
22329 S:      Maintained
22330 F:      drivers/virt/vboxguest/
22331 F:      include/linux/vbox_utils.h
22332 F:      include/uapi/linux/vbox*.h
22333
22334 VIRTUAL BOX SHARED FOLDER VFS DRIVER
22335 M:      Hans de Goede <hdegoede@redhat.com>
22336 L:      linux-fsdevel@vger.kernel.org
22337 S:      Maintained
22338 F:      fs/vboxsf/*
22339
22340 VIRTUAL SERIO DEVICE DRIVER
22341 M:      Stephen Chandler Paul <thatslyude@gmail.com>
22342 S:      Maintained
22343 F:      drivers/input/serio/userio.c
22344 F:      include/uapi/linux/userio.h
22345
22346 VIVID VIRTUAL VIDEO DRIVER
22347 M:      Hans Verkuil <hverkuil@xs4all.nl>
22348 L:      linux-media@vger.kernel.org
22349 S:      Maintained
22350 W:      https://linuxtv.org
22351 T:      git git://linuxtv.org/media_tree.git
22352 F:      drivers/media/test-drivers/vivid/*
22353
22354 VIDTV VIRTUAL DIGITAL TV DRIVER
22355 M:      Daniel W. S. Almeida <dwlsalmeida@gmail.com>
22356 L:      linux-media@vger.kernel.org
22357 S:      Maintained
22358 W:      https://linuxtv.org
22359 T:      git git://linuxtv.org/media_tree.git
22360 F:      drivers/media/test-drivers/vidtv/*
22361
22362 VLYNQ BUS
22363 M:      Florian Fainelli <f.fainelli@gmail.com>
22364 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
22365 S:      Maintained
22366 F:      drivers/vlynq/vlynq.c
22367 F:      include/linux/vlynq.h
22368
22369 VME SUBSYSTEM
22370 M:      Martyn Welch <martyn@welchs.me.uk>
22371 M:      Manohar Vanga <manohar.vanga@gmail.com>
22372 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
22373 L:      linux-kernel@vger.kernel.org
22374 S:      Odd fixes
22375 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
22376 F:      Documentation/driver-api/vme.rst
22377 F:      drivers/staging/vme_user/
22378
22379 VM SOCKETS (AF_VSOCK)
22380 M:      Stefano Garzarella <sgarzare@redhat.com>
22381 L:      virtualization@lists.linux-foundation.org
22382 L:      netdev@vger.kernel.org
22383 S:      Maintained
22384 F:      drivers/net/vsockmon.c
22385 F:      include/net/af_vsock.h
22386 F:      include/uapi/linux/vm_sockets.h
22387 F:      include/uapi/linux/vm_sockets_diag.h
22388 F:      include/uapi/linux/vsockmon.h
22389 F:      net/vmw_vsock/
22390 F:      tools/testing/vsock/
22391
22392 VMWARE BALLOON DRIVER
22393 M:      Nadav Amit <namit@vmware.com>
22394 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
22395 L:      linux-kernel@vger.kernel.org
22396 S:      Supported
22397 F:      drivers/misc/vmw_balloon.c
22398
22399 VMWARE HYPERVISOR INTERFACE
22400 M:      Srivatsa S. Bhat (VMware) <srivatsa@csail.mit.edu>
22401 M:      Alexey Makhalov <amakhalov@vmware.com>
22402 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
22403 L:      virtualization@lists.linux-foundation.org
22404 L:      x86@kernel.org
22405 S:      Supported
22406 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vmware
22407 F:      arch/x86/include/asm/vmware.h
22408 F:      arch/x86/kernel/cpu/vmware.c
22409
22410 VMWARE PVRDMA DRIVER
22411 M:      Bryan Tan <bryantan@vmware.com>
22412 M:      Vishnu Dasa <vdasa@vmware.com>
22413 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
22414 L:      linux-rdma@vger.kernel.org
22415 S:      Supported
22416 F:      drivers/infiniband/hw/vmw_pvrdma/
22417
22418 VMWARE PVSCSI DRIVER
22419 M:      Vishal Bhakta <vbhakta@vmware.com>
22420 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
22421 L:      linux-scsi@vger.kernel.org
22422 S:      Supported
22423 F:      drivers/scsi/vmw_pvscsi.c
22424 F:      drivers/scsi/vmw_pvscsi.h
22425
22426 VMWARE VIRTUAL PTP CLOCK DRIVER
22427 M:      Srivatsa S. Bhat (VMware) <srivatsa@csail.mit.edu>
22428 M:      Deep Shah <sdeep@vmware.com>
22429 R:      Alexey Makhalov <amakhalov@vmware.com>
22430 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
22431 L:      netdev@vger.kernel.org
22432 S:      Supported
22433 F:      drivers/ptp/ptp_vmw.c
22434
22435 VMWARE VMCI DRIVER
22436 M:      Bryan Tan <bryantan@vmware.com>
22437 M:      Vishnu Dasa <vdasa@vmware.com>
22438 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
22439 L:      linux-kernel@vger.kernel.org
22440 S:      Supported
22441 F:      drivers/misc/vmw_vmci/
22442 F:      include/linux/vmw_vmci*
22443
22444 VMWARE VMMOUSE SUBDRIVER
22445 M:      Zack Rusin <zackr@vmware.com>
22446 R:      VMware Graphics Reviewers <linux-graphics-maintainer@vmware.com>
22447 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
22448 L:      linux-input@vger.kernel.org
22449 S:      Supported
22450 F:      drivers/input/mouse/vmmouse.c
22451 F:      drivers/input/mouse/vmmouse.h
22452
22453 VMWARE VMXNET3 ETHERNET DRIVER
22454 M:      Ronak Doshi <doshir@vmware.com>
22455 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
22456 L:      netdev@vger.kernel.org
22457 S:      Supported
22458 F:      drivers/net/vmxnet3/
22459
22460 VMWARE VSOCK VMCI TRANSPORT DRIVER
22461 M:      Bryan Tan <bryantan@vmware.com>
22462 M:      Vishnu Dasa <vdasa@vmware.com>
22463 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
22464 L:      linux-kernel@vger.kernel.org
22465 S:      Supported
22466 F:      net/vmw_vsock/vmci_transport*
22467
22468 VOCORE VOCORE2 BOARD
22469 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
22470 L:      linux-mips@vger.kernel.org
22471 S:      Maintained
22472 F:      arch/mips/boot/dts/ralink/vocore2.dts
22473
22474 VOLTAGE AND CURRENT REGULATOR FRAMEWORK
22475 M:      Liam Girdwood <lgirdwood@gmail.com>
22476 M:      Mark Brown <broonie@kernel.org>
22477 L:      linux-kernel@vger.kernel.org
22478 S:      Supported
22479 W:      http://www.slimlogic.co.uk/?p=48
22480 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git
22481 F:      Documentation/devicetree/bindings/regulator/
22482 F:      Documentation/power/regulator/
22483 F:      drivers/regulator/
22484 F:      include/dt-bindings/regulator/
22485 F:      include/linux/regulator/
22486 K:      regulator_get_optional
22487
22488 VOLTAGE AND CURRENT REGULATOR IRQ HELPERS
22489 R:      Matti Vaittinen <mazziesaccount@gmail.com>
22490 F:      drivers/regulator/irq_helpers.c
22491
22492 VRF
22493 M:      David Ahern <dsahern@kernel.org>
22494 L:      netdev@vger.kernel.org
22495 S:      Maintained
22496 F:      Documentation/networking/vrf.rst
22497 F:      drivers/net/vrf.c
22498
22499 VSPRINTF
22500 M:      Petr Mladek <pmladek@suse.com>
22501 M:      Steven Rostedt <rostedt@goodmis.org>
22502 M:      Sergey Senozhatsky <senozhatsky@chromium.org>
22503 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
22504 R:      Rasmus Villemoes <linux@rasmusvillemoes.dk>
22505 S:      Maintained
22506 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/printk/linux.git
22507 F:      Documentation/core-api/printk-formats.rst
22508 F:      lib/test_printf.c
22509 F:      lib/test_scanf.c
22510 F:      lib/vsprintf.c
22511
22512 VT1211 HARDWARE MONITOR DRIVER
22513 M:      Juerg Haefliger <juergh@proton.me>
22514 L:      linux-hwmon@vger.kernel.org
22515 S:      Maintained
22516 F:      Documentation/hwmon/vt1211.rst
22517 F:      drivers/hwmon/vt1211.c
22518
22519 VT8231 HARDWARE MONITOR DRIVER
22520 M:      Roger Lucas <vt8231@hiddenengine.co.uk>
22521 L:      linux-hwmon@vger.kernel.org
22522 S:      Maintained
22523 F:      drivers/hwmon/vt8231.c
22524
22525 VUB300 USB to SDIO/SD/MMC bridge chip
22526 L:      linux-mmc@vger.kernel.org
22527 S:      Orphan
22528 F:      drivers/mmc/host/vub300.c
22529
22530 W1 DALLAS'S 1-WIRE BUS
22531 M:      Evgeniy Polyakov <zbr@ioremap.net>
22532 S:      Maintained
22533 F:      Documentation/devicetree/bindings/w1/
22534 F:      Documentation/w1/
22535 F:      drivers/w1/
22536 F:      include/linux/w1.h
22537
22538 W83791D HARDWARE MONITORING DRIVER
22539 M:      Marc Hulsman <m.hulsman@tudelft.nl>
22540 L:      linux-hwmon@vger.kernel.org
22541 S:      Maintained
22542 F:      Documentation/hwmon/w83791d.rst
22543 F:      drivers/hwmon/w83791d.c
22544
22545 W83793 HARDWARE MONITORING DRIVER
22546 M:      Rudolf Marek <r.marek@assembler.cz>
22547 L:      linux-hwmon@vger.kernel.org
22548 S:      Maintained
22549 F:      Documentation/hwmon/w83793.rst
22550 F:      drivers/hwmon/w83793.c
22551
22552 W83795 HARDWARE MONITORING DRIVER
22553 M:      Jean Delvare <jdelvare@suse.com>
22554 L:      linux-hwmon@vger.kernel.org
22555 S:      Maintained
22556 F:      drivers/hwmon/w83795.c
22557
22558 W83L51xD SD/MMC CARD INTERFACE DRIVER
22559 M:      Pierre Ossman <pierre@ossman.eu>
22560 S:      Maintained
22561 F:      drivers/mmc/host/wbsd.*
22562
22563 WACOM PROTOCOL 4 SERIAL TABLETS
22564 M:      Julian Squires <julian@cipht.net>
22565 M:      Hans de Goede <hdegoede@redhat.com>
22566 L:      linux-input@vger.kernel.org
22567 S:      Maintained
22568 F:      drivers/input/tablet/wacom_serial4.c
22569
22570 WANGXUN ETHERNET DRIVER
22571 M:      Jiawen Wu <jiawenwu@trustnetic.com>
22572 M:      Mengyuan Lou <mengyuanlou@net-swift.com>
22573 W:      https://www.net-swift.com
22574 L:      netdev@vger.kernel.org
22575 S:      Maintained
22576 F:      Documentation/networking/device_drivers/ethernet/wangxun/*
22577 F:      drivers/net/ethernet/wangxun/
22578
22579 WATCHDOG DEVICE DRIVERS
22580 M:      Wim Van Sebroeck <wim@linux-watchdog.org>
22581 M:      Guenter Roeck <linux@roeck-us.net>
22582 L:      linux-watchdog@vger.kernel.org
22583 S:      Maintained
22584 W:      http://www.linux-watchdog.org/
22585 T:      git git://www.linux-watchdog.org/linux-watchdog.git
22586 F:      Documentation/devicetree/bindings/watchdog/
22587 F:      Documentation/watchdog/
22588 F:      drivers/watchdog/
22589 F:      include/linux/watchdog.h
22590 F:      include/uapi/linux/watchdog.h
22591 F:      include/trace/events/watchdog.h
22592
22593 WHISKEYCOVE PMIC GPIO DRIVER
22594 M:      Kuppuswamy Sathyanarayanan <sathyanarayanan.kuppuswamy@linux.intel.com>
22595 L:      linux-gpio@vger.kernel.org
22596 S:      Maintained
22597 F:      drivers/gpio/gpio-wcove.c
22598
22599 WHWAVE RTC DRIVER
22600 M:      Dianlong Li <long17.cool@163.com>
22601 L:      linux-rtc@vger.kernel.org
22602 S:      Maintained
22603 F:      drivers/rtc/rtc-sd3078.c
22604
22605 WIIMOTE HID DRIVER
22606 M:      David Rheinsberg <david.rheinsberg@gmail.com>
22607 L:      linux-input@vger.kernel.org
22608 S:      Maintained
22609 F:      drivers/hid/hid-wiimote*
22610
22611 WILOCITY WIL6210 WIRELESS DRIVER
22612 L:      linux-wireless@vger.kernel.org
22613 S:      Orphan
22614 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wil6210
22615 F:      drivers/net/wireless/ath/wil6210/
22616
22617 WINBOND CIR DRIVER
22618 M:      David Härdeman <david@hardeman.nu>
22619 S:      Maintained
22620 F:      drivers/media/rc/winbond-cir.c
22621
22622 WINSYSTEMS EBC-C384 WATCHDOG DRIVER
22623 M:      William Breathitt Gray <william.gray@linaro.org>
22624 L:      linux-watchdog@vger.kernel.org
22625 S:      Maintained
22626 F:      drivers/watchdog/ebc-c384_wdt.c
22627
22628 WINSYSTEMS WS16C48 GPIO DRIVER
22629 M:      William Breathitt Gray <william.gray@linaro.org>
22630 L:      linux-gpio@vger.kernel.org
22631 S:      Maintained
22632 F:      drivers/gpio/gpio-ws16c48.c
22633
22634 WIREGUARD SECURE NETWORK TUNNEL
22635 M:      Jason A. Donenfeld <Jason@zx2c4.com>
22636 L:      wireguard@lists.zx2c4.com
22637 L:      netdev@vger.kernel.org
22638 S:      Maintained
22639 F:      drivers/net/wireguard/
22640 F:      tools/testing/selftests/wireguard/
22641
22642 WISTRON LAPTOP BUTTON DRIVER
22643 M:      Miloslav Trmac <mitr@volny.cz>
22644 S:      Maintained
22645 F:      drivers/input/misc/wistron_btns.c
22646
22647 WL3501 WIRELESS PCMCIA CARD DRIVER
22648 L:      linux-wireless@vger.kernel.org
22649 S:      Odd fixes
22650 F:      drivers/net/wireless/legacy/wl3501*
22651
22652 WOLFSON MICROELECTRONICS DRIVERS
22653 L:      patches@opensource.cirrus.com
22654 S:      Supported
22655 W:      https://github.com/CirrusLogic/linux-drivers/wiki
22656 T:      git https://github.com/CirrusLogic/linux-drivers.git
22657 F:      Documentation/devicetree/bindings/extcon/wlf,arizona.yaml
22658 F:      Documentation/devicetree/bindings/mfd/wlf,arizona.yaml
22659 F:      Documentation/devicetree/bindings/mfd/wm831x.txt
22660 F:      Documentation/devicetree/bindings/regulator/wlf,arizona.yaml
22661 F:      Documentation/devicetree/bindings/sound/wlf,*.yaml
22662 F:      Documentation/devicetree/bindings/sound/wm*
22663 F:      Documentation/hwmon/wm83??.rst
22664 F:      arch/arm/mach-s3c/mach-crag6410*
22665 F:      drivers/clk/clk-wm83*.c
22666 F:      drivers/gpio/gpio-*wm*.c
22667 F:      drivers/gpio/gpio-arizona.c
22668 F:      drivers/hwmon/wm83??-hwmon.c
22669 F:      drivers/input/misc/wm831x-on.c
22670 F:      drivers/input/touchscreen/wm831x-ts.c
22671 F:      drivers/input/touchscreen/wm97*.c
22672 F:      drivers/leds/leds-wm83*.c
22673 F:      drivers/mfd/arizona*
22674 F:      drivers/mfd/cs47l24*
22675 F:      drivers/mfd/wm*.c
22676 F:      drivers/power/supply/wm83*.c
22677 F:      drivers/regulator/arizona*
22678 F:      drivers/regulator/wm8*.c
22679 F:      drivers/rtc/rtc-wm83*.c
22680 F:      drivers/video/backlight/wm83*_bl.c
22681 F:      drivers/watchdog/wm83*_wdt.c
22682 F:      include/linux/mfd/arizona/
22683 F:      include/linux/mfd/wm831x/
22684 F:      include/linux/mfd/wm8350/
22685 F:      include/linux/mfd/wm8400*
22686 F:      include/linux/regulator/arizona*
22687 F:      include/linux/wm97xx.h
22688 F:      include/sound/wm????.h
22689 F:      sound/soc/codecs/arizona*
22690 F:      sound/soc/codecs/cs47l24*
22691 F:      sound/soc/codecs/wm*
22692
22693 WORKQUEUE
22694 M:      Tejun Heo <tj@kernel.org>
22695 R:      Lai Jiangshan <jiangshanlai@gmail.com>
22696 S:      Maintained
22697 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
22698 F:      Documentation/core-api/workqueue.rst
22699 F:      include/linux/workqueue.h
22700 F:      kernel/workqueue.c
22701
22702 WWAN DRIVERS
22703 M:      Loic Poulain <loic.poulain@linaro.org>
22704 M:      Sergey Ryazanov <ryazanov.s.a@gmail.com>
22705 R:      Johannes Berg <johannes@sipsolutions.net>
22706 L:      netdev@vger.kernel.org
22707 S:      Maintained
22708 F:      drivers/net/wwan/
22709 F:      include/linux/wwan.h
22710 F:      include/uapi/linux/wwan.h
22711
22712 X-POWERS AXP288 PMIC DRIVERS
22713 M:      Hans de Goede <hdegoede@redhat.com>
22714 S:      Maintained
22715 F:      drivers/acpi/pmic/intel_pmic_xpower.c
22716 N:      axp288
22717
22718 X-POWERS MULTIFUNCTION PMIC DEVICE DRIVERS
22719 M:      Chen-Yu Tsai <wens@csie.org>
22720 L:      linux-kernel@vger.kernel.org
22721 S:      Maintained
22722 N:      axp[128]
22723
22724 X.25 STACK
22725 M:      Martin Schiller <ms@dev.tdt.de>
22726 L:      linux-x25@vger.kernel.org
22727 S:      Maintained
22728 F:      Documentation/networking/lapb-module.rst
22729 F:      Documentation/networking/x25*
22730 F:      drivers/net/wan/hdlc_x25.c
22731 F:      drivers/net/wan/lapbether.c
22732 F:      include/*/lapb.h
22733 F:      include/net/x25*
22734 F:      include/uapi/linux/x25.h
22735 F:      net/lapb/
22736 F:      net/x25/
22737
22738 X86 ARCHITECTURE (32-BIT AND 64-BIT)
22739 M:      Thomas Gleixner <tglx@linutronix.de>
22740 M:      Ingo Molnar <mingo@redhat.com>
22741 M:      Borislav Petkov <bp@alien8.de>
22742 M:      Dave Hansen <dave.hansen@linux.intel.com>
22743 M:      x86@kernel.org
22744 R:      "H. Peter Anvin" <hpa@zytor.com>
22745 L:      linux-kernel@vger.kernel.org
22746 S:      Maintained
22747 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
22748 F:      Documentation/devicetree/bindings/x86/
22749 F:      Documentation/arch/x86/
22750 F:      arch/x86/
22751
22752 X86 ENTRY CODE
22753 M:      Andy Lutomirski <luto@kernel.org>
22754 L:      linux-kernel@vger.kernel.org
22755 S:      Maintained
22756 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/asm
22757 F:      arch/x86/entry/
22758
22759 X86 HARDWARE VULNERABILITIES
22760 M:      Thomas Gleixner <tglx@linutronix.de>
22761 M:      Borislav Petkov <bp@alien8.de>
22762 M:      Peter Zijlstra <peterz@infradead.org>
22763 M:      Josh Poimboeuf <jpoimboe@kernel.org>
22764 R:      Pawan Gupta <pawan.kumar.gupta@linux.intel.com>
22765 S:      Maintained
22766 F:      Documentation/admin-guide/hw-vuln/
22767 F:      arch/x86/include/asm/nospec-branch.h
22768 F:      arch/x86/kernel/cpu/bugs.c
22769
22770 X86 MCE INFRASTRUCTURE
22771 M:      Tony Luck <tony.luck@intel.com>
22772 M:      Borislav Petkov <bp@alien8.de>
22773 L:      linux-edac@vger.kernel.org
22774 S:      Maintained
22775 F:      Documentation/ABI/testing/sysfs-mce
22776 F:      Documentation/arch/x86/x86_64/machinecheck.rst
22777 F:      arch/x86/kernel/cpu/mce/*
22778
22779 X86 MICROCODE UPDATE SUPPORT
22780 M:      Borislav Petkov <bp@alien8.de>
22781 S:      Maintained
22782 F:      arch/x86/kernel/cpu/microcode/*
22783
22784 X86 MM
22785 M:      Dave Hansen <dave.hansen@linux.intel.com>
22786 M:      Andy Lutomirski <luto@kernel.org>
22787 M:      Peter Zijlstra <peterz@infradead.org>
22788 L:      linux-kernel@vger.kernel.org
22789 S:      Maintained
22790 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/mm
22791 F:      arch/x86/mm/
22792
22793 X86 PLATFORM ANDROID TABLETS DSDT FIXUP DRIVER
22794 M:      Hans de Goede <hdegoede@redhat.com>
22795 L:      platform-driver-x86@vger.kernel.org
22796 S:      Maintained
22797 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
22798 F:      drivers/platform/x86/x86-android-tablets/
22799
22800 X86 PLATFORM DRIVERS
22801 M:      Hans de Goede <hdegoede@redhat.com>
22802 M:      Mark Gross <markgross@kernel.org>
22803 L:      platform-driver-x86@vger.kernel.org
22804 S:      Maintained
22805 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
22806 F:      drivers/platform/olpc/
22807 F:      drivers/platform/x86/
22808 F:      include/linux/platform_data/x86/
22809
22810 X86 PLATFORM DRIVERS - ARCH
22811 R:      Darren Hart <dvhart@infradead.org>
22812 R:      Andy Shevchenko <andy@infradead.org>
22813 L:      platform-driver-x86@vger.kernel.org
22814 L:      x86@kernel.org
22815 S:      Maintained
22816 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
22817 F:      arch/x86/platform
22818
22819 X86 PLATFORM UV HPE SUPERDOME FLEX
22820 M:      Steve Wahl <steve.wahl@hpe.com>
22821 R:      Mike Travis <mike.travis@hpe.com>
22822 R:      Dimitri Sivanich <dimitri.sivanich@hpe.com>
22823 R:      Russ Anderson <russ.anderson@hpe.com>
22824 S:      Supported
22825 F:      arch/x86/include/asm/uv/
22826 F:      arch/x86/kernel/apic/x2apic_uv_x.c
22827 F:      arch/x86/platform/uv/
22828
22829 X86 STACK UNWINDING
22830 M:      Josh Poimboeuf <jpoimboe@kernel.org>
22831 M:      Peter Zijlstra <peterz@infradead.org>
22832 S:      Supported
22833 F:      arch/x86/include/asm/unwind*.h
22834 F:      arch/x86/kernel/dumpstack.c
22835 F:      arch/x86/kernel/stacktrace.c
22836 F:      arch/x86/kernel/unwind_*.c
22837
22838 X86 VDSO
22839 M:      Andy Lutomirski <luto@kernel.org>
22840 L:      linux-kernel@vger.kernel.org
22841 S:      Maintained
22842 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso
22843 F:      arch/x86/entry/vdso/
22844
22845 XARRAY
22846 M:      Matthew Wilcox <willy@infradead.org>
22847 L:      linux-fsdevel@vger.kernel.org
22848 S:      Supported
22849 F:      Documentation/core-api/xarray.rst
22850 F:      include/linux/idr.h
22851 F:      include/linux/xarray.h
22852 F:      lib/idr.c
22853 F:      lib/xarray.c
22854 F:      tools/testing/radix-tree
22855
22856 XBOX DVD IR REMOTE
22857 M:      Benjamin Valentin <benpicco@googlemail.com>
22858 S:      Maintained
22859 F:      drivers/media/rc/keymaps/rc-xbox-dvd.c
22860 F:      drivers/media/rc/xbox_remote.c
22861
22862 XC2028/3028 TUNER DRIVER
22863 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
22864 L:      linux-media@vger.kernel.org
22865 S:      Maintained
22866 W:      https://linuxtv.org
22867 T:      git git://linuxtv.org/media_tree.git
22868 F:      drivers/media/tuners/xc2028.*
22869
22870 XDP (eXpress Data Path)
22871 M:      Alexei Starovoitov <ast@kernel.org>
22872 M:      Daniel Borkmann <daniel@iogearbox.net>
22873 M:      David S. Miller <davem@davemloft.net>
22874 M:      Jakub Kicinski <kuba@kernel.org>
22875 M:      Jesper Dangaard Brouer <hawk@kernel.org>
22876 M:      John Fastabend <john.fastabend@gmail.com>
22877 L:      netdev@vger.kernel.org
22878 L:      bpf@vger.kernel.org
22879 S:      Supported
22880 F:      include/net/xdp.h
22881 F:      include/net/xdp_priv.h
22882 F:      include/trace/events/xdp.h
22883 F:      kernel/bpf/cpumap.c
22884 F:      kernel/bpf/devmap.c
22885 F:      net/core/xdp.c
22886 F:      samples/bpf/xdp*
22887 F:      tools/testing/selftests/bpf/*xdp*
22888 F:      tools/testing/selftests/bpf/*/*xdp*
22889 F:      drivers/net/ethernet/*/*/*/*/*xdp*
22890 F:      drivers/net/ethernet/*/*/*xdp*
22891 K:      (?:\b|_)xdp(?:\b|_)
22892
22893 XDP SOCKETS (AF_XDP)
22894 M:      Björn Töpel <bjorn@kernel.org>
22895 M:      Magnus Karlsson <magnus.karlsson@intel.com>
22896 M:      Maciej Fijalkowski <maciej.fijalkowski@intel.com>
22897 R:      Jonathan Lemon <jonathan.lemon@gmail.com>
22898 L:      netdev@vger.kernel.org
22899 L:      bpf@vger.kernel.org
22900 S:      Maintained
22901 F:      Documentation/networking/af_xdp.rst
22902 F:      include/net/xdp_sock*
22903 F:      include/net/xsk_buff_pool.h
22904 F:      include/uapi/linux/if_xdp.h
22905 F:      include/uapi/linux/xdp_diag.h
22906 F:      include/net/netns/xdp.h
22907 F:      net/xdp/
22908 F:      tools/testing/selftests/bpf/*xsk*
22909
22910 XEN BLOCK SUBSYSTEM
22911 M:      Roger Pau Monné <roger.pau@citrix.com>
22912 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
22913 S:      Supported
22914 F:      drivers/block/xen*
22915 F:      drivers/block/xen-blkback/*
22916
22917 XEN HYPERVISOR ARM
22918 M:      Stefano Stabellini <sstabellini@kernel.org>
22919 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
22920 S:      Maintained
22921 F:      arch/arm/include/asm/xen/
22922 F:      arch/arm/xen/
22923
22924 XEN HYPERVISOR ARM64
22925 M:      Stefano Stabellini <sstabellini@kernel.org>
22926 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
22927 S:      Maintained
22928 F:      arch/arm64/include/asm/xen/
22929 F:      arch/arm64/xen/
22930
22931 XEN HYPERVISOR INTERFACE
22932 M:      Juergen Gross <jgross@suse.com>
22933 M:      Stefano Stabellini <sstabellini@kernel.org>
22934 R:      Oleksandr Tyshchenko <oleksandr_tyshchenko@epam.com>
22935 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
22936 S:      Supported
22937 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git
22938 F:      Documentation/ABI/stable/sysfs-hypervisor-xen
22939 F:      Documentation/ABI/testing/sysfs-hypervisor-xen
22940 F:      drivers/*/xen-*front.c
22941 F:      drivers/xen/
22942 F:      include/uapi/xen/
22943 F:      include/xen/
22944 F:      kernel/configs/xen.config
22945
22946 XEN HYPERVISOR X86
22947 M:      Juergen Gross <jgross@suse.com>
22948 R:      Boris Ostrovsky <boris.ostrovsky@oracle.com>
22949 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
22950 S:      Supported
22951 F:      arch/x86/configs/xen.config
22952 F:      arch/x86/include/asm/pvclock-abi.h
22953 F:      arch/x86/include/asm/xen/
22954 F:      arch/x86/platform/pvh/
22955 F:      arch/x86/xen/
22956
22957 XEN NETWORK BACKEND DRIVER
22958 M:      Wei Liu <wei.liu@kernel.org>
22959 M:      Paul Durrant <paul@xen.org>
22960 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
22961 L:      netdev@vger.kernel.org
22962 S:      Supported
22963 F:      drivers/net/xen-netback/*
22964
22965 XEN PCI SUBSYSTEM
22966 M:      Juergen Gross <jgross@suse.com>
22967 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
22968 S:      Supported
22969 F:      arch/x86/pci/*xen*
22970 F:      drivers/pci/*xen*
22971
22972 XEN PVSCSI DRIVERS
22973 M:      Juergen Gross <jgross@suse.com>
22974 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
22975 L:      linux-scsi@vger.kernel.org
22976 S:      Supported
22977 F:      drivers/scsi/xen-scsifront.c
22978 F:      drivers/xen/xen-scsiback.c
22979 F:      include/xen/interface/io/vscsiif.h
22980
22981 XEN PVUSB DRIVER
22982 M:      Juergen Gross <jgross@suse.com>
22983 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
22984 L:      linux-usb@vger.kernel.org
22985 S:      Supported
22986 F:      drivers/usb/host/xen*
22987 F:      include/xen/interface/io/usbif.h
22988
22989 XEN SOUND FRONTEND DRIVER
22990 M:      Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
22991 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
22992 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
22993 S:      Supported
22994 F:      sound/xen/*
22995
22996 XEN SWIOTLB SUBSYSTEM
22997 M:      Juergen Gross <jgross@suse.com>
22998 M:      Stefano Stabellini <sstabellini@kernel.org>
22999 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
23000 L:      iommu@lists.linux.dev
23001 S:      Supported
23002 F:      arch/*/include/asm/xen/swiotlb-xen.h
23003 F:      drivers/xen/swiotlb-xen.c
23004 F:      include/xen/arm/swiotlb-xen.h
23005 F:      include/xen/swiotlb-xen.h
23006
23007 XFS FILESYSTEM
23008 C:      irc://irc.oftc.net/xfs
23009 M:      Darrick J. Wong <djwong@kernel.org>
23010 L:      linux-xfs@vger.kernel.org
23011 S:      Supported
23012 W:      http://xfs.org/
23013 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
23014 F:      Documentation/ABI/testing/sysfs-fs-xfs
23015 F:      Documentation/admin-guide/xfs.rst
23016 F:      Documentation/filesystems/xfs-delayed-logging-design.rst
23017 F:      Documentation/filesystems/xfs-self-describing-metadata.rst
23018 F:      fs/xfs/
23019 F:      include/uapi/linux/dqblk_xfs.h
23020 F:      include/uapi/linux/fsmap.h
23021
23022 XILINX AMS DRIVER
23023 M:      Anand Ashok Dumbre <anand.ashok.dumbre@xilinx.com>
23024 L:      linux-iio@vger.kernel.org
23025 S:      Maintained
23026 F:      Documentation/devicetree/bindings/iio/adc/xlnx,zynqmp-ams.yaml
23027 F:      drivers/iio/adc/xilinx-ams.c
23028
23029 XILINX AXI ETHERNET DRIVER
23030 M:      Radhey Shyam Pandey <radhey.shyam.pandey@xilinx.com>
23031 S:      Maintained
23032 F:      drivers/net/ethernet/xilinx/xilinx_axienet*
23033
23034 XILINX CAN DRIVER
23035 M:      Appana Durga Kedareswara rao <appana.durga.rao@xilinx.com>
23036 R:      Naga Sureshkumar Relli <naga.sureshkumar.relli@xilinx.com>
23037 L:      linux-can@vger.kernel.org
23038 S:      Maintained
23039 F:      Documentation/devicetree/bindings/net/can/xilinx,can.yaml
23040 F:      drivers/net/can/xilinx_can.c
23041
23042 XILINX GPIO DRIVER
23043 M:      Shubhrajyoti Datta <shubhrajyoti.datta@xilinx.com>
23044 R:      Srinivas Neeli <srinivas.neeli@xilinx.com>
23045 R:      Michal Simek <michal.simek@xilinx.com>
23046 S:      Maintained
23047 F:      Documentation/devicetree/bindings/gpio/xlnx,gpio-xilinx.yaml
23048 F:      Documentation/devicetree/bindings/gpio/gpio-zynq.yaml
23049 F:      drivers/gpio/gpio-xilinx.c
23050 F:      drivers/gpio/gpio-zynq.c
23051
23052 XILINX SD-FEC IP CORES
23053 M:      Derek Kiernan <derek.kiernan@xilinx.com>
23054 M:      Dragan Cvetic <dragan.cvetic@xilinx.com>
23055 S:      Maintained
23056 F:      Documentation/devicetree/bindings/misc/xlnx,sd-fec.txt
23057 F:      Documentation/misc-devices/xilinx_sdfec.rst
23058 F:      drivers/misc/Kconfig
23059 F:      drivers/misc/Makefile
23060 F:      drivers/misc/xilinx_sdfec.c
23061 F:      include/uapi/misc/xilinx_sdfec.h
23062
23063 XILINX PWM DRIVER
23064 M:      Sean Anderson <sean.anderson@seco.com>
23065 S:      Maintained
23066 F:      drivers/pwm/pwm-xilinx.c
23067 F:      include/clocksource/timer-xilinx.h
23068
23069 XILINX UARTLITE SERIAL DRIVER
23070 M:      Peter Korsgaard <jacmet@sunsite.dk>
23071 L:      linux-serial@vger.kernel.org
23072 S:      Maintained
23073 F:      drivers/tty/serial/uartlite.c
23074
23075 XILINX VIDEO IP CORES
23076 M:      Hyun Kwon <hyun.kwon@xilinx.com>
23077 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
23078 L:      linux-media@vger.kernel.org
23079 S:      Supported
23080 T:      git git://linuxtv.org/media_tree.git
23081 F:      Documentation/devicetree/bindings/media/xilinx/
23082 F:      drivers/media/platform/xilinx/
23083 F:      include/uapi/linux/xilinx-v4l2-controls.h
23084
23085 XILINX XDMA DRIVER
23086 M:      Lizhi Hou <lizhi.hou@amd.com>
23087 M:      Brian Xu <brian.xu@amd.com>
23088 M:      Raj Kumar Rampelli <raj.kumar.rampelli@amd.com>
23089 L:      dmaengine@vger.kernel.org
23090 S:      Supported
23091 F:      drivers/dma/xilinx/xdma-regs.h
23092 F:      drivers/dma/xilinx/xdma.c
23093 F:      include/linux/dma/amd_xdma.h
23094 F:      include/linux/platform_data/amd_xdma.h
23095
23096 XILINX ZYNQMP DPDMA DRIVER
23097 M:      Hyun Kwon <hyun.kwon@xilinx.com>
23098 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
23099 L:      dmaengine@vger.kernel.org
23100 S:      Supported
23101 F:      Documentation/devicetree/bindings/dma/xilinx/xlnx,zynqmp-dpdma.yaml
23102 F:      drivers/dma/xilinx/xilinx_dpdma.c
23103 F:      include/dt-bindings/dma/xlnx-zynqmp-dpdma.h
23104
23105 XILINX ZYNQMP OCM EDAC DRIVER
23106 M:      Shubhrajyoti Datta <shubhrajyoti.datta@amd.com>
23107 M:      Sai Krishna Potthuri <sai.krishna.potthuri@amd.com>
23108 S:      Maintained
23109 F:      Documentation/devicetree/bindings/memory-controllers/xlnx,zynqmp-ocmc-1.0.yaml
23110 F:      drivers/edac/zynqmp_edac.c
23111
23112 XILINX ZYNQMP PSGTR PHY DRIVER
23113 M:      Anurag Kumar Vulisha <anurag.kumar.vulisha@xilinx.com>
23114 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
23115 L:      linux-kernel@vger.kernel.org
23116 S:      Supported
23117 T:      git https://github.com/Xilinx/linux-xlnx.git
23118 F:      Documentation/devicetree/bindings/phy/xlnx,zynqmp-psgtr.yaml
23119 F:      drivers/phy/xilinx/phy-zynqmp.c
23120
23121 XILINX ZYNQMP SHA3 DRIVER
23122 M:      Harsha <harsha.harsha@xilinx.com>
23123 S:      Maintained
23124 F:      drivers/crypto/xilinx/zynqmp-sha.c
23125
23126 XILINX EVENT MANAGEMENT DRIVER
23127 M:      Abhyuday Godhasara <abhyuday.godhasara@xilinx.com>
23128 S:      Maintained
23129 F:      drivers/soc/xilinx/xlnx_event_manager.c
23130 F:      include/linux/firmware/xlnx-event-manager.h
23131
23132 XILLYBUS DRIVER
23133 M:      Eli Billauer <eli.billauer@gmail.com>
23134 L:      linux-kernel@vger.kernel.org
23135 S:      Supported
23136 F:      drivers/char/xillybus/
23137
23138 XLP9XX I2C DRIVER
23139 M:      George Cherian <gcherian@marvell.com>
23140 L:      linux-i2c@vger.kernel.org
23141 S:      Supported
23142 W:      http://www.marvell.com
23143 F:      drivers/i2c/busses/i2c-xlp9xx.c
23144
23145 XRA1403 GPIO EXPANDER
23146 M:      Nandor Han <nandor.han@ge.com>
23147 L:      linux-gpio@vger.kernel.org
23148 S:      Maintained
23149 F:      Documentation/devicetree/bindings/gpio/gpio-xra1403.txt
23150 F:      drivers/gpio/gpio-xra1403.c
23151
23152 XTENSA XTFPGA PLATFORM SUPPORT
23153 M:      Max Filippov <jcmvbkbc@gmail.com>
23154 S:      Maintained
23155 F:      drivers/spi/spi-xtensa-xtfpga.c
23156 F:      sound/soc/xtensa/xtfpga-i2s.c
23157
23158 YAM DRIVER FOR AX.25
23159 M:      Jean-Paul Roubelat <jpr@f6fbb.org>
23160 L:      linux-hams@vger.kernel.org
23161 S:      Maintained
23162 F:      drivers/net/hamradio/yam*
23163 F:      include/linux/yam.h
23164
23165 YAMA SECURITY MODULE
23166 M:      Kees Cook <keescook@chromium.org>
23167 S:      Supported
23168 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/hardening
23169 F:      Documentation/admin-guide/LSM/Yama.rst
23170 F:      security/yama/
23171
23172 YEALINK PHONE DRIVER
23173 M:      Henk Vergonet <Henk.Vergonet@gmail.com>
23174 L:      usbb2k-api-dev@nongnu.org
23175 S:      Maintained
23176 F:      Documentation/input/devices/yealink.rst
23177 F:      drivers/input/misc/yealink.*
23178
23179 Z8530 DRIVER FOR AX.25
23180 M:      Joerg Reuter <jreuter@yaina.de>
23181 L:      linux-hams@vger.kernel.org
23182 S:      Maintained
23183 W:      http://yaina.de/jreuter/
23184 W:      http://www.qsl.net/dl1bke/
23185 F:      Documentation/networking/device_drivers/hamradio/z8530drv.rst
23186 F:      drivers/net/hamradio/*scc.c
23187 F:      drivers/net/hamradio/z8530.h
23188
23189 ZBUD COMPRESSED PAGE ALLOCATOR
23190 M:      Seth Jennings <sjenning@redhat.com>
23191 M:      Dan Streetman <ddstreet@ieee.org>
23192 L:      linux-mm@kvack.org
23193 S:      Maintained
23194 F:      mm/zbud.c
23195
23196 Z3FOLD COMPRESSED PAGE ALLOCATOR
23197 M:      Vitaly Wool <vitaly.wool@konsulko.com>
23198 R:      Miaohe Lin <linmiaohe@huawei.com>
23199 L:      linux-mm@kvack.org
23200 S:      Maintained
23201 F:      mm/z3fold.c
23202
23203 ZD1211RW WIRELESS DRIVER
23204 M:      Ulrich Kunitz <kune@deine-taler.de>
23205 L:      linux-wireless@vger.kernel.org
23206 L:      zd1211-devs@lists.sourceforge.net (subscribers-only)
23207 S:      Maintained
23208 W:      http://zd1211.ath.cx/wiki/DriverRewrite
23209 F:      drivers/net/wireless/zydas/zd1211rw/
23210
23211 ZD1301 MEDIA DRIVER
23212 M:      Antti Palosaari <crope@iki.fi>
23213 L:      linux-media@vger.kernel.org
23214 S:      Maintained
23215 W:      https://linuxtv.org/
23216 W:      http://palosaari.fi/linux/
23217 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
23218 F:      drivers/media/usb/dvb-usb-v2/zd1301*
23219
23220 ZD1301_DEMOD MEDIA DRIVER
23221 M:      Antti Palosaari <crope@iki.fi>
23222 L:      linux-media@vger.kernel.org
23223 S:      Maintained
23224 W:      https://linuxtv.org/
23225 W:      http://palosaari.fi/linux/
23226 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
23227 F:      drivers/media/dvb-frontends/zd1301_demod*
23228
23229 ZHAOXIN PROCESSOR SUPPORT
23230 M:      Tony W Wang-oc <TonyWWang-oc@zhaoxin.com>
23231 L:      linux-kernel@vger.kernel.org
23232 S:      Maintained
23233 F:      arch/x86/kernel/cpu/zhaoxin.c
23234
23235 ZONEFS FILESYSTEM
23236 M:      Damien Le Moal <dlemoal@kernel.org>
23237 M:      Naohiro Aota <naohiro.aota@wdc.com>
23238 R:      Johannes Thumshirn <jth@kernel.org>
23239 L:      linux-fsdevel@vger.kernel.org
23240 S:      Maintained
23241 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dlemoal/zonefs.git
23242 F:      Documentation/filesystems/zonefs.rst
23243 F:      fs/zonefs/
23244
23245 ZPOOL COMPRESSED PAGE STORAGE API
23246 M:      Dan Streetman <ddstreet@ieee.org>
23247 L:      linux-mm@kvack.org
23248 S:      Maintained
23249 F:      include/linux/zpool.h
23250 F:      mm/zpool.c
23251
23252 ZR36067 VIDEO FOR LINUX DRIVER
23253 M:      Corentin Labbe <clabbe@baylibre.com>
23254 L:      mjpeg-users@lists.sourceforge.net
23255 L:      linux-media@vger.kernel.org
23256 S:      Maintained
23257 W:      http://mjpeg.sourceforge.net/driver-zoran/
23258 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
23259 F:      Documentation/driver-api/media/drivers/zoran.rst
23260 F:      drivers/media/pci/zoran/
23261
23262 ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER
23263 M:      Minchan Kim <minchan@kernel.org>
23264 M:      Sergey Senozhatsky <senozhatsky@chromium.org>
23265 L:      linux-kernel@vger.kernel.org
23266 S:      Maintained
23267 F:      Documentation/admin-guide/blockdev/zram.rst
23268 F:      drivers/block/zram/
23269
23270 ZS DECSTATION Z85C30 SERIAL DRIVER
23271 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
23272 S:      Maintained
23273 F:      drivers/tty/serial/zs.*
23274
23275 ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR
23276 M:      Minchan Kim <minchan@kernel.org>
23277 M:      Sergey Senozhatsky <senozhatsky@chromium.org>
23278 L:      linux-mm@kvack.org
23279 S:      Maintained
23280 F:      Documentation/mm/zsmalloc.rst
23281 F:      include/linux/zsmalloc.h
23282 F:      mm/zsmalloc.c
23283
23284 ZSTD
23285 M:      Nick Terrell <terrelln@fb.com>
23286 S:      Maintained
23287 B:      https://github.com/facebook/zstd/issues
23288 T:      git https://github.com/terrelln/linux.git
23289 F:      include/linux/zstd*
23290 F:      lib/zstd/
23291 F:      lib/decompress_unzstd.c
23292 F:      crypto/zstd.c
23293 N:      zstd
23294 K:      zstd
23295
23296 ZSWAP COMPRESSED SWAP CACHING
23297 M:      Seth Jennings <sjenning@redhat.com>
23298 M:      Dan Streetman <ddstreet@ieee.org>
23299 M:      Vitaly Wool <vitaly.wool@konsulko.com>
23300 L:      linux-mm@kvack.org
23301 S:      Maintained
23302 F:      mm/zswap.c
23303
23304 NXP BLUETOOTH WIRELESS DRIVERS
23305 M:      Amitkumar Karwar <amitkumar.karwar@nxp.com>
23306 M:      Neeraj Kale <neeraj.sanjaykale@nxp.com>
23307 S:      Maintained
23308 F:      Documentation/devicetree/bindings/net/bluetooth/nxp,88w8987-bt.yaml
23309 F:      drivers/bluetooth/btnxpuart.c
23310
23311 THE REST
23312 M:      Linus Torvalds <torvalds@linux-foundation.org>
23313 L:      linux-kernel@vger.kernel.org
23314 S:      Buried alive in reporters
23315 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
23316 F:      *
23317 F:      */