md/raid5: Ensure batch_last is released before sleeping for quiesce
[linux-2.6-microblaze.git] / MAINTAINERS
1 List of maintainers and how to submit kernel changes
2 ====================================================
3
4 Please try to follow the guidelines below.  This will make things
5 easier on the maintainers.  Not all of these guidelines matter for every
6 trivial patch so apply some common sense.
7
8 Tips for patch submitters
9 -------------------------
10
11 1.      Always *test* your changes, however small, on at least 4 or
12         5 people, preferably many more.
13
14 2.      Try to release a few ALPHA test versions to the net. Announce
15         them onto the kernel channel and await results. This is especially
16         important for device drivers, because often that's the only way
17         you will find things like the fact version 3 firmware needs
18         a magic fix you didn't know about, or some clown changed the
19         chips on a board and not its name.  (Don't laugh!  Look at the
20         SMC etherpower for that.)
21
22 3.      Make sure your changes compile correctly in multiple
23         configurations. In particular check that changes work both as a
24         module and built into the kernel.
25
26 4.      When you are happy with a change make it generally available for
27         testing and await feedback.
28
29 5.      Make a patch available to the relevant maintainer in the list. Use
30         ``diff -u`` to make the patch easy to merge. Be prepared to get your
31         changes sent back with seemingly silly requests about formatting
32         and variable names.  These aren't as silly as they seem. One
33         job the maintainers (and especially Linus) do is to keep things
34         looking the same. Sometimes this means that the clever hack in
35         your driver to get around a problem actually needs to become a
36         generalized kernel feature ready for next time.
37
38         PLEASE check your patch with the automated style checker
39         (scripts/checkpatch.pl) to catch trivial style violations.
40         See Documentation/process/coding-style.rst for guidance here.
41
42         PLEASE CC: the maintainers and mailing lists that are generated
43         by ``scripts/get_maintainer.pl.`` The results returned by the
44         script will be best if you have git installed and are making
45         your changes in a branch derived from Linus' latest git tree.
46         See Documentation/process/submitting-patches.rst for details.
47
48         PLEASE try to include any credit lines you want added with the
49         patch. It avoids people being missed off by mistake and makes
50         it easier to know who wants adding and who doesn't.
51
52         PLEASE document known bugs. If it doesn't work for everything
53         or does something very odd once a month document it.
54
55         PLEASE remember that submissions must be made under the terms
56         of the Linux Foundation certificate of contribution and should
57         include a Signed-off-by: line.  The current version of this
58         "Developer's Certificate of Origin" (DCO) is listed in the file
59         Documentation/process/submitting-patches.rst.
60
61 6.      Make sure you have the right to send any changes you make. If you
62         do changes at work you may find your employer owns the patch
63         not you.
64
65 7.      When sending security related changes or reports to a maintainer
66         please Cc: security@kernel.org, especially if the maintainer
67         does not respond. Please keep in mind that the security team is
68         a small set of people who can be efficient only when working on
69         verified bugs. Please only Cc: this list when you have identified
70         that the bug would present a short-term risk to other users if it
71         were publicly disclosed. For example, reports of address leaks do
72         not represent an immediate threat and are better handled publicly,
73         and ideally, should come with a patch proposal. Please do not send
74         automated reports to this list either. Such bugs will be handled
75         better and faster in the usual public places. See
76         Documentation/admin-guide/security-bugs.rst for details.
77
78 8.      Happy hacking.
79
80 Descriptions of section entries and preferred order
81 ---------------------------------------------------
82
83         M: *Mail* patches to: FullName <address@domain>
84         R: Designated *Reviewer*: FullName <address@domain>
85            These reviewers should be CCed on patches.
86         L: *Mailing list* that is relevant to this area
87         S: *Status*, one of the following:
88            Supported:   Someone is actually paid to look after this.
89            Maintained:  Someone actually looks after it.
90            Odd Fixes:   It has a maintainer but they don't have time to do
91                         much other than throw the odd patch in. See below..
92            Orphan:      No current maintainer [but maybe you could take the
93                         role as you write your new code].
94            Obsolete:    Old code. Something tagged obsolete generally means
95                         it has been replaced by a better system and you
96                         should be using that.
97         W: *Web-page* with status/info
98         Q: *Patchwork* web based patch tracking system site
99         B: URI for where to file *bugs*. A web-page with detailed bug
100            filing info, a direct bug tracker link, or a mailto: URI.
101         C: URI for *chat* protocol, server and channel where developers
102            usually hang out, for example irc://server/channel.
103         P: Subsystem Profile document for more details submitting
104            patches to the given subsystem. This is either an in-tree file,
105            or a URI. See Documentation/maintainer/maintainer-entry-profile.rst
106            for details.
107         T: *SCM* tree type and location.
108            Type is one of: git, hg, quilt, stgit, topgit
109         F: *Files* and directories wildcard patterns.
110            A trailing slash includes all files and subdirectory files.
111            F:   drivers/net/    all files in and below drivers/net
112            F:   drivers/net/*   all files in drivers/net, but not below
113            F:   */net/*         all files in "any top level directory"/net
114            One pattern per line.  Multiple F: lines acceptable.
115         X: *Excluded* files and directories that are NOT maintained, same
116            rules as F:. Files exclusions are tested before file matches.
117            Can be useful for excluding a specific subdirectory, for instance:
118            F:   net/
119            X:   net/ipv6/
120            matches all files in and below net excluding net/ipv6/
121         N: Files and directories *Regex* patterns.
122            N:   [^a-z]tegra     all files whose path contains tegra
123                                 (not including files like integrator)
124            One pattern per line.  Multiple N: lines acceptable.
125            scripts/get_maintainer.pl has different behavior for files that
126            match F: pattern and matches of N: patterns.  By default,
127            get_maintainer will not look at git log history when an F: pattern
128            match occurs.  When an N: match occurs, git log history is used
129            to also notify the people that have git commit signatures.
130         K: *Content regex* (perl extended) pattern match in a patch or file.
131            For instance:
132            K: of_get_profile
133               matches patches or files that contain "of_get_profile"
134            K: \b(printk|pr_(info|err))\b
135               matches patches or files that contain one or more of the words
136               printk, pr_info or pr_err
137            One regex pattern per line.  Multiple K: lines acceptable.
138
139 Maintainers List
140 ----------------
141
142 .. note:: When reading this list, please look for the most precise areas
143           first. When adding to this list, please keep the entries in
144           alphabetical order.
145
146 3C59X NETWORK DRIVER
147 M:      Steffen Klassert <klassert@kernel.org>
148 L:      netdev@vger.kernel.org
149 S:      Odd Fixes
150 F:      Documentation/networking/device_drivers/ethernet/3com/vortex.rst
151 F:      drivers/net/ethernet/3com/3c59x.c
152
153 3CR990 NETWORK DRIVER
154 M:      David Dillow <dave@thedillows.org>
155 L:      netdev@vger.kernel.org
156 S:      Maintained
157 F:      drivers/net/ethernet/3com/typhoon*
158
159 3WARE SAS/SATA-RAID SCSI DRIVERS (3W-XXXX, 3W-9XXX, 3W-SAS)
160 M:      Adam Radford <aradford@gmail.com>
161 L:      linux-scsi@vger.kernel.org
162 S:      Supported
163 W:      http://www.lsi.com
164 F:      drivers/scsi/3w-*
165
166 53C700 AND 53C700-66 SCSI DRIVER
167 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
168 L:      linux-scsi@vger.kernel.org
169 S:      Maintained
170 F:      drivers/scsi/53c700*
171
172 6LOWPAN GENERIC (BTLE/IEEE 802.15.4)
173 M:      Alexander Aring <alex.aring@gmail.com>
174 M:      Jukka Rissanen <jukka.rissanen@linux.intel.com>
175 L:      linux-bluetooth@vger.kernel.org
176 L:      linux-wpan@vger.kernel.org
177 S:      Maintained
178 F:      Documentation/networking/6lowpan.rst
179 F:      include/net/6lowpan.h
180 F:      net/6lowpan/
181
182 6PACK NETWORK DRIVER FOR AX.25
183 M:      Andreas Koensgen <ajk@comnets.uni-bremen.de>
184 L:      linux-hams@vger.kernel.org
185 S:      Maintained
186 F:      drivers/net/hamradio/6pack.c
187
188 802.11 (including CFG80211/NL80211)
189 M:      Johannes Berg <johannes@sipsolutions.net>
190 L:      linux-wireless@vger.kernel.org
191 S:      Maintained
192 W:      https://wireless.wiki.kernel.org/
193 Q:      https://patchwork.kernel.org/project/linux-wireless/list/
194 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless.git
195 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless-next.git
196 F:      Documentation/driver-api/80211/cfg80211.rst
197 F:      Documentation/networking/regulatory.rst
198 F:      include/linux/ieee80211.h
199 F:      include/net/cfg80211.h
200 F:      include/net/ieee80211_radiotap.h
201 F:      include/net/iw_handler.h
202 F:      include/net/wext.h
203 F:      include/uapi/linux/nl80211.h
204 F:      include/uapi/linux/wireless.h
205 F:      net/wireless/
206
207 8169 10/100/1000 GIGABIT ETHERNET DRIVER
208 M:      Heiner Kallweit <hkallweit1@gmail.com>
209 M:      nic_swsd@realtek.com
210 L:      netdev@vger.kernel.org
211 S:      Maintained
212 F:      drivers/net/ethernet/realtek/r8169*
213
214 8250/16?50 (AND CLONE UARTS) SERIAL DRIVER
215 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
216 L:      linux-serial@vger.kernel.org
217 S:      Maintained
218 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
219 F:      drivers/tty/serial/8250*
220 F:      include/linux/serial_8250.h
221
222 8390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.]
223 L:      netdev@vger.kernel.org
224 S:      Orphan / Obsolete
225 F:      drivers/net/ethernet/8390/
226
227 9P FILE SYSTEM
228 M:      Eric Van Hensbergen <ericvh@gmail.com>
229 M:      Latchesar Ionkov <lucho@ionkov.net>
230 M:      Dominique Martinet <asmadeus@codewreck.org>
231 R:      Christian Schoenebeck <linux_oss@crudebyte.com>
232 L:      v9fs-developer@lists.sourceforge.net
233 S:      Maintained
234 W:      http://swik.net/v9fs
235 Q:      http://patchwork.kernel.org/project/v9fs-devel/list/
236 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs.git
237 T:      git git://github.com/martinetd/linux.git
238 F:      Documentation/filesystems/9p.rst
239 F:      fs/9p/
240 F:      include/net/9p/
241 F:      include/trace/events/9p.h
242 F:      include/uapi/linux/virtio_9p.h
243 F:      net/9p/
244
245 A64FX DIAG DRIVER
246 M:      Hitomi Hasegawa <hasegawa-hitomi@fujitsu.com>
247 S:      Supported
248 F:      drivers/soc/fujitsu/a64fx-diag.c
249
250 A8293 MEDIA DRIVER
251 M:      Antti Palosaari <crope@iki.fi>
252 L:      linux-media@vger.kernel.org
253 S:      Maintained
254 W:      https://linuxtv.org
255 W:      http://palosaari.fi/linux/
256 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
257 T:      git git://linuxtv.org/anttip/media_tree.git
258 F:      drivers/media/dvb-frontends/a8293*
259
260 AACRAID SCSI RAID DRIVER
261 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
262 L:      linux-scsi@vger.kernel.org
263 S:      Supported
264 W:      http://www.adaptec.com/
265 F:      Documentation/scsi/aacraid.rst
266 F:      drivers/scsi/aacraid/
267
268 ABI/API
269 L:      linux-api@vger.kernel.org
270 F:      include/linux/syscalls.h
271 F:      kernel/sys_ni.c
272 X:      include/uapi/
273 X:      arch/*/include/uapi/
274
275 ABIT UGURU 1,2 HARDWARE MONITOR DRIVER
276 M:      Hans de Goede <hdegoede@redhat.com>
277 L:      linux-hwmon@vger.kernel.org
278 S:      Maintained
279 F:      drivers/hwmon/abituguru.c
280
281 ABIT UGURU 3 HARDWARE MONITOR DRIVER
282 M:      Alistair John Strachan <alistair@devzero.co.uk>
283 L:      linux-hwmon@vger.kernel.org
284 S:      Maintained
285 F:      drivers/hwmon/abituguru3.c
286
287 ACCES 104-DIO-48E GPIO DRIVER
288 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
289 L:      linux-gpio@vger.kernel.org
290 S:      Maintained
291 F:      drivers/gpio/gpio-104-dio-48e.c
292
293 ACCES 104-IDI-48 GPIO DRIVER
294 M:      "William Breathitt Gray" <vilhelm.gray@gmail.com>
295 L:      linux-gpio@vger.kernel.org
296 S:      Maintained
297 F:      drivers/gpio/gpio-104-idi-48.c
298
299 ACCES 104-IDIO-16 GPIO DRIVER
300 M:      "William Breathitt Gray" <vilhelm.gray@gmail.com>
301 L:      linux-gpio@vger.kernel.org
302 S:      Maintained
303 F:      drivers/gpio/gpio-104-idio-16.c
304
305 ACCES 104-QUAD-8 DRIVER
306 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
307 M:      Syed Nayyar Waris <syednwaris@gmail.com>
308 L:      linux-iio@vger.kernel.org
309 S:      Maintained
310 F:      drivers/counter/104-quad-8.c
311
312 ACCES PCI-IDIO-16 GPIO DRIVER
313 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
314 L:      linux-gpio@vger.kernel.org
315 S:      Maintained
316 F:      drivers/gpio/gpio-pci-idio-16.c
317
318 ACCES PCIe-IDIO-24 GPIO DRIVER
319 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
320 L:      linux-gpio@vger.kernel.org
321 S:      Maintained
322 F:      drivers/gpio/gpio-pcie-idio-24.c
323
324 ACENIC DRIVER
325 M:      Jes Sorensen <jes@trained-monkey.org>
326 L:      linux-acenic@sunsite.dk
327 S:      Maintained
328 F:      drivers/net/ethernet/alteon/acenic*
329
330 ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER
331 M:      Peter Kaestle <peter@piie.net>
332 L:      platform-driver-x86@vger.kernel.org
333 S:      Maintained
334 W:      http://piie.net/?section=acerhdf
335 F:      drivers/platform/x86/acerhdf.c
336
337 ACER WMI LAPTOP EXTRAS
338 M:      "Lee, Chun-Yi" <jlee@suse.com>
339 L:      platform-driver-x86@vger.kernel.org
340 S:      Maintained
341 F:      drivers/platform/x86/acer-wmi.c
342
343 ACPI
344 M:      "Rafael J. Wysocki" <rafael@kernel.org>
345 R:      Len Brown <lenb@kernel.org>
346 L:      linux-acpi@vger.kernel.org
347 S:      Supported
348 W:      https://01.org/linux-acpi
349 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
350 B:      https://bugzilla.kernel.org
351 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
352 F:      Documentation/ABI/testing/configfs-acpi
353 F:      Documentation/ABI/testing/sysfs-bus-acpi
354 F:      Documentation/firmware-guide/acpi/
355 F:      drivers/acpi/
356 F:      drivers/pci/*/*acpi*
357 F:      drivers/pci/*acpi*
358 F:      drivers/pnp/pnpacpi/
359 F:      include/acpi/
360 F:      include/linux/acpi.h
361 F:      include/linux/fwnode.h
362 F:      tools/power/acpi/
363
364 ACPI APEI
365 M:      "Rafael J. Wysocki" <rafael@kernel.org>
366 R:      Len Brown <lenb@kernel.org>
367 R:      James Morse <james.morse@arm.com>
368 R:      Tony Luck <tony.luck@intel.com>
369 R:      Borislav Petkov <bp@alien8.de>
370 L:      linux-acpi@vger.kernel.org
371 F:      drivers/acpi/apei/
372
373 ACPI COMPONENT ARCHITECTURE (ACPICA)
374 M:      Robert Moore <robert.moore@intel.com>
375 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
376 L:      linux-acpi@vger.kernel.org
377 L:      devel@acpica.org
378 S:      Supported
379 W:      https://acpica.org/
380 W:      https://github.com/acpica/acpica/
381 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
382 B:      https://bugzilla.kernel.org
383 B:      https://bugs.acpica.org
384 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
385 F:      drivers/acpi/acpica/
386 F:      include/acpi/
387 F:      tools/power/acpi/
388
389 ACPI FOR ARM64 (ACPI/arm64)
390 M:      Lorenzo Pieralisi <lpieralisi@kernel.org>
391 M:      Hanjun Guo <guohanjun@huawei.com>
392 M:      Sudeep Holla <sudeep.holla@arm.com>
393 L:      linux-acpi@vger.kernel.org
394 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
395 S:      Maintained
396 F:      drivers/acpi/arm64
397
398 ACPI SERIAL MULTI INSTANTIATE DRIVER
399 M:      Hans de Goede <hdegoede@redhat.com>
400 L:      platform-driver-x86@vger.kernel.org
401 S:      Maintained
402 F:      drivers/platform/x86/serial-multi-instantiate.c
403
404 ACPI PCC(Platform Communication Channel) MAILBOX DRIVER
405 M:      Sudeep Holla <sudeep.holla@arm.com>
406 L:      linux-acpi@vger.kernel.org
407 S:      Supported
408 F:      drivers/mailbox/pcc.c
409
410 ACPI PMIC DRIVERS
411 M:      "Rafael J. Wysocki" <rafael@kernel.org>
412 M:      Len Brown <lenb@kernel.org>
413 R:      Andy Shevchenko <andy@kernel.org>
414 R:      Mika Westerberg <mika.westerberg@linux.intel.com>
415 L:      linux-acpi@vger.kernel.org
416 S:      Supported
417 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
418 B:      https://bugzilla.kernel.org
419 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
420 F:      drivers/acpi/pmic/
421
422 ACPI THERMAL DRIVER
423 M:      Rafael J. Wysocki <rafael@kernel.org>
424 R:      Zhang Rui <rui.zhang@intel.com>
425 L:      linux-acpi@vger.kernel.org
426 S:      Supported
427 W:      https://01.org/linux-acpi
428 B:      https://bugzilla.kernel.org
429 F:      drivers/acpi/*thermal*
430
431 ACPI VIOT DRIVER
432 M:      Jean-Philippe Brucker <jean-philippe@linaro.org>
433 L:      linux-acpi@vger.kernel.org
434 L:      iommu@lists.linux.dev
435 S:      Maintained
436 F:      drivers/acpi/viot.c
437 F:      include/linux/acpi_viot.h
438
439 ACPI WMI DRIVER
440 L:      platform-driver-x86@vger.kernel.org
441 S:      Orphan
442 F:      drivers/platform/x86/wmi.c
443 F:      include/uapi/linux/wmi.h
444
445 ACRN HYPERVISOR SERVICE MODULE
446 M:      Fei Li <fei1.li@intel.com>
447 L:      acrn-dev@lists.projectacrn.org (subscribers-only)
448 S:      Supported
449 W:      https://projectacrn.org
450 F:      Documentation/virt/acrn/
451 F:      drivers/virt/acrn/
452 F:      include/uapi/linux/acrn.h
453
454 AD1889 ALSA SOUND DRIVER
455 L:      linux-parisc@vger.kernel.org
456 S:      Maintained
457 W:      https://parisc.wiki.kernel.org/index.php/AD1889
458 F:      sound/pci/ad1889.*
459
460 AD5110 ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
461 M:      Mugilraj Dhavachelvan <dmugil2000@gmail.com>
462 L:      linux-iio@vger.kernel.org
463 S:      Supported
464 F:      drivers/iio/potentiometer/ad5110.c
465
466 AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
467 M:      Michael Hennerich <michael.hennerich@analog.com>
468 S:      Supported
469 W:      http://wiki.analog.com/AD5254
470 W:      https://ez.analog.com/linux-software-drivers
471 F:      drivers/misc/ad525x_dpot.c
472
473 AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821)
474 M:      Michael Hennerich <michael.hennerich@analog.com>
475 S:      Supported
476 W:      http://wiki.analog.com/AD5398
477 W:      https://ez.analog.com/linux-software-drivers
478 F:      drivers/regulator/ad5398.c
479
480 AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A)
481 M:      Michael Hennerich <michael.hennerich@analog.com>
482 S:      Supported
483 W:      http://wiki.analog.com/AD7142
484 W:      https://ez.analog.com/linux-software-drivers
485 F:      drivers/input/misc/ad714x.c
486
487 AD7877 TOUCHSCREEN DRIVER
488 M:      Michael Hennerich <michael.hennerich@analog.com>
489 S:      Supported
490 W:      http://wiki.analog.com/AD7877
491 W:      https://ez.analog.com/linux-software-drivers
492 F:      drivers/input/touchscreen/ad7877.c
493
494 AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889)
495 M:      Michael Hennerich <michael.hennerich@analog.com>
496 S:      Supported
497 W:      http://wiki.analog.com/AD7879
498 W:      https://ez.analog.com/linux-software-drivers
499 F:      drivers/input/touchscreen/ad7879.c
500
501 ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR)
502 M:      Jiri Kosina <jikos@kernel.org>
503 S:      Maintained
504
505 ADF7242 IEEE 802.15.4 RADIO DRIVER
506 M:      Michael Hennerich <michael.hennerich@analog.com>
507 L:      linux-wpan@vger.kernel.org
508 S:      Supported
509 W:      https://wiki.analog.com/ADF7242
510 W:      https://ez.analog.com/linux-software-drivers
511 F:      Documentation/devicetree/bindings/net/ieee802154/adf7242.txt
512 F:      drivers/net/ieee802154/adf7242.c
513
514 ADM1025 HARDWARE MONITOR DRIVER
515 M:      Jean Delvare <jdelvare@suse.com>
516 L:      linux-hwmon@vger.kernel.org
517 S:      Maintained
518 F:      Documentation/hwmon/adm1025.rst
519 F:      drivers/hwmon/adm1025.c
520
521 ADM1029 HARDWARE MONITOR DRIVER
522 M:      Corentin Labbe <clabbe.montjoie@gmail.com>
523 L:      linux-hwmon@vger.kernel.org
524 S:      Maintained
525 F:      drivers/hwmon/adm1029.c
526
527 ADM8211 WIRELESS DRIVER
528 L:      linux-wireless@vger.kernel.org
529 S:      Orphan
530 W:      https://wireless.wiki.kernel.org/
531 F:      drivers/net/wireless/admtek/adm8211.*
532
533 ADP1653 FLASH CONTROLLER DRIVER
534 M:      Sakari Ailus <sakari.ailus@iki.fi>
535 L:      linux-media@vger.kernel.org
536 S:      Maintained
537 F:      drivers/media/i2c/adp1653.c
538 F:      include/media/i2c/adp1653.h
539
540 ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501)
541 M:      Michael Hennerich <michael.hennerich@analog.com>
542 S:      Supported
543 W:      http://wiki.analog.com/ADP5520
544 W:      https://ez.analog.com/linux-software-drivers
545 F:      drivers/gpio/gpio-adp5520.c
546 F:      drivers/input/keyboard/adp5520-keys.c
547 F:      drivers/leds/leds-adp5520.c
548 F:      drivers/mfd/adp5520.c
549 F:      drivers/video/backlight/adp5520_bl.c
550
551 ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587)
552 M:      Michael Hennerich <michael.hennerich@analog.com>
553 S:      Supported
554 W:      http://wiki.analog.com/ADP5588
555 W:      https://ez.analog.com/linux-software-drivers
556 F:      drivers/gpio/gpio-adp5588.c
557 F:      drivers/input/keyboard/adp5588-keys.c
558
559 ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863)
560 M:      Michael Hennerich <michael.hennerich@analog.com>
561 S:      Supported
562 W:      http://wiki.analog.com/ADP8860
563 W:      https://ez.analog.com/linux-software-drivers
564 F:      drivers/video/backlight/adp8860_bl.c
565
566 ADT746X FAN DRIVER
567 M:      Colin Leroy <colin@colino.net>
568 S:      Maintained
569 F:      drivers/macintosh/therm_adt746x.c
570
571 ADT7475 HARDWARE MONITOR DRIVER
572 M:      Jean Delvare <jdelvare@suse.com>
573 L:      linux-hwmon@vger.kernel.org
574 S:      Maintained
575 F:      Documentation/hwmon/adt7475.rst
576 F:      drivers/hwmon/adt7475.c
577
578 ADVANSYS SCSI DRIVER
579 M:      Matthew Wilcox <willy@infradead.org>
580 M:      Hannes Reinecke <hare@suse.com>
581 L:      linux-scsi@vger.kernel.org
582 S:      Maintained
583 F:      Documentation/scsi/advansys.rst
584 F:      drivers/scsi/advansys.c
585
586 ADVANTECH SWBTN DRIVER
587 M:      Andrea Ho <Andrea.Ho@advantech.com.tw>
588 L:      platform-driver-x86@vger.kernel.org
589 S:      Maintained
590 F:      drivers/platform/x86/adv_swbutton.c
591
592 ADXL313 THREE-AXIS DIGITAL ACCELEROMETER DRIVER
593 M:      Lucas Stankus <lucas.p.stankus@gmail.com>
594 S:      Supported
595 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl313.yaml
596 F:      drivers/iio/accel/adxl313*
597
598 ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346)
599 M:      Michael Hennerich <michael.hennerich@analog.com>
600 S:      Supported
601 W:      http://wiki.analog.com/ADXL345
602 W:      https://ez.analog.com/linux-software-drivers
603 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl345.yaml
604 F:      drivers/input/misc/adxl34x.c
605
606 ADXL355 THREE-AXIS DIGITAL ACCELEROMETER DRIVER
607 M:      Puranjay Mohan <puranjay12@gmail.com>
608 L:      linux-iio@vger.kernel.org
609 S:      Supported
610 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl355.yaml
611 F:      drivers/iio/accel/adxl355.h
612 F:      drivers/iio/accel/adxl355_core.c
613 F:      drivers/iio/accel/adxl355_i2c.c
614 F:      drivers/iio/accel/adxl355_spi.c
615
616 ADXL367 THREE-AXIS DIGITAL ACCELEROMETER DRIVER
617 M:      Cosmin Tanislav <cosmin.tanislav@analog.com>
618 L:      linux-iio@vger.kernel.org
619 S:      Supported
620 W:      http://ez.analog.com/community/linux-device-drivers
621 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl367.yaml
622 F:      drivers/iio/accel/adxl367*
623
624 ADXL372 THREE-AXIS DIGITAL ACCELEROMETER DRIVER
625 M:      Michael Hennerich <michael.hennerich@analog.com>
626 S:      Supported
627 W:      https://ez.analog.com/linux-software-drivers
628 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl372.yaml
629 F:      drivers/iio/accel/adxl372.c
630 F:      drivers/iio/accel/adxl372_i2c.c
631 F:      drivers/iio/accel/adxl372_spi.c
632
633 AF9013 MEDIA DRIVER
634 M:      Antti Palosaari <crope@iki.fi>
635 L:      linux-media@vger.kernel.org
636 S:      Maintained
637 W:      https://linuxtv.org
638 W:      http://palosaari.fi/linux/
639 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
640 T:      git git://linuxtv.org/anttip/media_tree.git
641 F:      drivers/media/dvb-frontends/af9013*
642
643 AF9033 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/af9033*
652
653 AFFS FILE SYSTEM
654 M:      David Sterba <dsterba@suse.com>
655 L:      linux-fsdevel@vger.kernel.org
656 S:      Odd Fixes
657 F:      Documentation/filesystems/affs.rst
658 F:      fs/affs/
659
660 AFS FILESYSTEM
661 M:      David Howells <dhowells@redhat.com>
662 M:      Marc Dionne <marc.dionne@auristor.com>
663 L:      linux-afs@lists.infradead.org
664 S:      Supported
665 W:      https://www.infradead.org/~dhowells/kafs/
666 F:      Documentation/filesystems/afs.rst
667 F:      fs/afs/
668 F:      include/trace/events/afs.h
669
670 AGPGART DRIVER
671 M:      David Airlie <airlied@linux.ie>
672 S:      Maintained
673 T:      git git://anongit.freedesktop.org/drm/drm
674 F:      drivers/char/agp/
675 F:      include/linux/agp*
676 F:      include/uapi/linux/agp*
677
678 AHA152X SCSI DRIVER
679 M:      "Juergen E. Fischer" <fischer@norbit.de>
680 L:      linux-scsi@vger.kernel.org
681 S:      Maintained
682 F:      drivers/scsi/aha152x*
683 F:      drivers/scsi/pcmcia/aha152x*
684
685 AIC7XXX / AIC79XX SCSI DRIVER
686 M:      Hannes Reinecke <hare@suse.com>
687 L:      linux-scsi@vger.kernel.org
688 S:      Maintained
689 F:      drivers/scsi/aic7xxx/
690
691 AIMSLAB FM RADIO RECEIVER DRIVER
692 M:      Hans Verkuil <hverkuil@xs4all.nl>
693 L:      linux-media@vger.kernel.org
694 S:      Maintained
695 W:      https://linuxtv.org
696 T:      git git://linuxtv.org/media_tree.git
697 F:      drivers/media/radio/radio-aimslab*
698
699 AIO
700 M:      Benjamin LaHaise <bcrl@kvack.org>
701 L:      linux-aio@kvack.org
702 S:      Supported
703 F:      fs/aio.c
704 F:      include/linux/*aio*.h
705
706 AIRSPY MEDIA DRIVER
707 M:      Antti Palosaari <crope@iki.fi>
708 L:      linux-media@vger.kernel.org
709 S:      Maintained
710 W:      https://linuxtv.org
711 W:      http://palosaari.fi/linux/
712 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
713 T:      git git://linuxtv.org/anttip/media_tree.git
714 F:      drivers/media/usb/airspy/
715
716 ALACRITECH GIGABIT ETHERNET DRIVER
717 M:      Lino Sanfilippo <LinoSanfilippo@gmx.de>
718 S:      Maintained
719 F:      drivers/net/ethernet/alacritech/*
720
721 ALCATEL SPEEDTOUCH USB DRIVER
722 M:      Duncan Sands <duncan.sands@free.fr>
723 L:      linux-usb@vger.kernel.org
724 S:      Maintained
725 W:      http://www.linux-usb.org/SpeedTouch/
726 F:      drivers/usb/atm/speedtch.c
727 F:      drivers/usb/atm/usbatm.c
728
729 ALCHEMY AU1XX0 MMC DRIVER
730 M:      Manuel Lauss <manuel.lauss@gmail.com>
731 S:      Maintained
732 F:      drivers/mmc/host/au1xmmc.c
733
734 ALI1563 I2C DRIVER
735 M:      Rudolf Marek <r.marek@assembler.cz>
736 L:      linux-i2c@vger.kernel.org
737 S:      Maintained
738 F:      Documentation/i2c/busses/i2c-ali1563.rst
739 F:      drivers/i2c/busses/i2c-ali1563.c
740
741 ALIENWARE WMI DRIVER
742 L:      Dell.Client.Kernel@dell.com
743 S:      Maintained
744 F:      drivers/platform/x86/dell/alienware-wmi.c
745
746 ALL SENSORS DLH SERIES PRESSURE SENSORS DRIVER
747 M:      Tomislav Denis <tomislav.denis@avl.com>
748 L:      linux-iio@vger.kernel.org
749 S:      Maintained
750 W:      http://www.allsensors.com/
751 F:      Documentation/devicetree/bindings/iio/pressure/asc,dlhl60d.yaml
752 F:      drivers/iio/pressure/dlhl60d.c
753
754 ALLEGRO DVT VIDEO IP CORE DRIVER
755 M:      Michael Tretter <m.tretter@pengutronix.de>
756 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
757 L:      linux-media@vger.kernel.org
758 S:      Maintained
759 F:      Documentation/devicetree/bindings/media/allegro,al5e.yaml
760 F:      drivers/media/platform/allegro-dvt/
761
762 ALLWINNER A10 CSI DRIVER
763 M:      Maxime Ripard <mripard@kernel.org>
764 L:      linux-media@vger.kernel.org
765 S:      Maintained
766 T:      git git://linuxtv.org/media_tree.git
767 F:      Documentation/devicetree/bindings/media/allwinner,sun4i-a10-csi.yaml
768 F:      drivers/media/platform/sunxi/sun4i-csi/
769
770 ALLWINNER CPUFREQ DRIVER
771 M:      Yangtao Li <tiny.windzz@gmail.com>
772 L:      linux-pm@vger.kernel.org
773 S:      Maintained
774 F:      Documentation/devicetree/bindings/opp/allwinner,sun50i-h6-operating-points.yaml
775 F:      drivers/cpufreq/sun50i-cpufreq-nvmem.c
776
777 ALLWINNER CRYPTO DRIVERS
778 M:      Corentin Labbe <clabbe.montjoie@gmail.com>
779 L:      linux-crypto@vger.kernel.org
780 S:      Maintained
781 F:      drivers/crypto/allwinner/
782
783 ALLWINNER HARDWARE SPINLOCK SUPPORT
784 M:      Wilken Gottwalt <wilken.gottwalt@posteo.net>
785 S:      Maintained
786 F:      Documentation/devicetree/bindings/hwlock/allwinner,sun6i-a31-hwspinlock.yaml
787 F:      drivers/hwspinlock/sun6i_hwspinlock.c
788
789 ALLWINNER THERMAL DRIVER
790 M:      Vasily Khoruzhick <anarsoul@gmail.com>
791 M:      Yangtao Li <tiny.windzz@gmail.com>
792 L:      linux-pm@vger.kernel.org
793 S:      Maintained
794 F:      Documentation/devicetree/bindings/thermal/allwinner,sun8i-a83t-ths.yaml
795 F:      drivers/thermal/sun8i_thermal.c
796
797 ALLWINNER VPU DRIVER
798 M:      Maxime Ripard <mripard@kernel.org>
799 M:      Paul Kocialkowski <paul.kocialkowski@bootlin.com>
800 L:      linux-media@vger.kernel.org
801 S:      Maintained
802 F:      drivers/staging/media/sunxi/cedrus/
803
804 ALPHA PORT
805 M:      Richard Henderson <rth@twiddle.net>
806 M:      Ivan Kokshaysky <ink@jurassic.park.msu.ru>
807 M:      Matt Turner <mattst88@gmail.com>
808 L:      linux-alpha@vger.kernel.org
809 S:      Odd Fixes
810 F:      arch/alpha/
811
812 ALPS PS/2 TOUCHPAD DRIVER
813 R:      Pali Rohár <pali@kernel.org>
814 F:      drivers/input/mouse/alps.*
815
816 ALTERA I2C CONTROLLER DRIVER
817 M:      Thor Thayer <thor.thayer@linux.intel.com>
818 S:      Maintained
819 F:      Documentation/devicetree/bindings/i2c/i2c-altera.txt
820 F:      drivers/i2c/busses/i2c-altera.c
821
822 ALTERA MAILBOX DRIVER
823 M:      Mun Yew Tham <mun.yew.tham@intel.com>
824 S:      Maintained
825 F:      drivers/mailbox/mailbox-altera.c
826
827 ALTERA MSGDMA IP CORE DRIVER
828 M:      Olivier Dautricourt <olivierdautricourt@gmail.com>
829 R:      Stefan Roese <sr@denx.de>
830 L:      dmaengine@vger.kernel.org
831 S:      Odd Fixes
832 F:      Documentation/devicetree/bindings/dma/altr,msgdma.yaml
833 F:      drivers/dma/altera-msgdma.c
834
835 ALTERA PIO DRIVER
836 M:      Mun Yew Tham <mun.yew.tham@intel.com>
837 L:      linux-gpio@vger.kernel.org
838 S:      Maintained
839 F:      drivers/gpio/gpio-altera.c
840
841 ALTERA SYSTEM MANAGER DRIVER
842 M:      Thor Thayer <thor.thayer@linux.intel.com>
843 S:      Maintained
844 F:      drivers/mfd/altera-sysmgr.c
845 F:      include/linux/mfd/altera-sysmgr.h
846
847 ALTERA SYSTEM RESOURCE DRIVER FOR ARRIA10 DEVKIT
848 M:      Thor Thayer <thor.thayer@linux.intel.com>
849 S:      Maintained
850 F:      drivers/gpio/gpio-altera-a10sr.c
851 F:      drivers/mfd/altera-a10sr.c
852 F:      drivers/reset/reset-a10sr.c
853 F:      include/dt-bindings/reset/altr,rst-mgr-a10sr.h
854 F:      include/linux/mfd/altera-a10sr.h
855
856 ALTERA TRIPLE SPEED ETHERNET DRIVER
857 M:      Joyce Ooi <joyce.ooi@intel.com>
858 L:      netdev@vger.kernel.org
859 S:      Maintained
860 F:      drivers/net/ethernet/altera/
861
862 ALTERA UART/JTAG UART SERIAL DRIVERS
863 M:      Tobias Klauser <tklauser@distanz.ch>
864 L:      linux-serial@vger.kernel.org
865 S:      Maintained
866 F:      drivers/tty/serial/altera_jtaguart.c
867 F:      drivers/tty/serial/altera_uart.c
868 F:      include/linux/altera_jtaguart.h
869 F:      include/linux/altera_uart.h
870
871 AMAZON ANNAPURNA LABS FIC DRIVER
872 M:      Talel Shenhar <talel@amazon.com>
873 S:      Maintained
874 F:      Documentation/devicetree/bindings/interrupt-controller/amazon,al-fic.txt
875 F:      drivers/irqchip/irq-al-fic.c
876
877 AMAZON ANNAPURNA LABS MEMORY CONTROLLER EDAC
878 M:      Talel Shenhar <talel@amazon.com>
879 M:      Talel Shenhar <talelshenhar@gmail.com>
880 S:      Maintained
881 F:      Documentation/devicetree/bindings/edac/amazon,al-mc-edac.yaml
882 F:      drivers/edac/al_mc_edac.c
883
884 AMAZON ANNAPURNA LABS THERMAL MMIO DRIVER
885 M:      Talel Shenhar <talel@amazon.com>
886 S:      Maintained
887 F:      Documentation/devicetree/bindings/thermal/amazon,al-thermal.txt
888 F:      drivers/thermal/thermal_mmio.c
889
890 AMAZON ETHERNET DRIVERS
891 M:      Shay Agroskin <shayagr@amazon.com>
892 M:      Arthur Kiyanovski <akiyano@amazon.com>
893 R:      David Arinzon <darinzon@amazon.com>
894 R:      Noam Dagan <ndagan@amazon.com>
895 R:      Saeed Bishara <saeedb@amazon.com>
896 L:      netdev@vger.kernel.org
897 S:      Supported
898 F:      Documentation/networking/device_drivers/ethernet/amazon/ena.rst
899 F:      drivers/net/ethernet/amazon/
900
901 AMAZON RDMA EFA DRIVER
902 M:      Gal Pressman <galpress@amazon.com>
903 R:      Yossi Leybovich <sleybo@amazon.com>
904 L:      linux-rdma@vger.kernel.org
905 S:      Supported
906 Q:      https://patchwork.kernel.org/project/linux-rdma/list/
907 F:      drivers/infiniband/hw/efa/
908 F:      include/uapi/rdma/efa-abi.h
909
910 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER
911 M:      Tom Lendacky <thomas.lendacky@amd.com>
912 M:      John Allen <john.allen@amd.com>
913 L:      linux-crypto@vger.kernel.org
914 S:      Supported
915 F:      drivers/crypto/ccp/
916 F:      include/linux/ccp.h
917
918 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER - SEV SUPPORT
919 M:      Brijesh Singh <brijesh.singh@amd.com>
920 M:      Tom Lendacky <thomas.lendacky@amd.com>
921 L:      linux-crypto@vger.kernel.org
922 S:      Supported
923 F:      drivers/crypto/ccp/sev*
924 F:      include/uapi/linux/psp-sev.h
925
926 AMD DISPLAY CORE
927 M:      Harry Wentland <harry.wentland@amd.com>
928 M:      Leo Li <sunpeng.li@amd.com>
929 M:      Rodrigo Siqueira <Rodrigo.Siqueira@amd.com>
930 L:      amd-gfx@lists.freedesktop.org
931 S:      Supported
932 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
933 F:      drivers/gpu/drm/amd/display/
934
935 AMD FAM15H PROCESSOR POWER MONITORING DRIVER
936 M:      Huang Rui <ray.huang@amd.com>
937 L:      linux-hwmon@vger.kernel.org
938 S:      Supported
939 F:      Documentation/hwmon/fam15h_power.rst
940 F:      drivers/hwmon/fam15h_power.c
941
942 AMD FCH GPIO DRIVER
943 M:      Enrico Weigelt, metux IT consult <info@metux.net>
944 L:      linux-gpio@vger.kernel.org
945 S:      Maintained
946 F:      drivers/gpio/gpio-amd-fch.c
947 F:      include/linux/platform_data/gpio/gpio-amd-fch.h
948
949 AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
950 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
951 S:      Orphan
952 F:      drivers/usb/gadget/udc/amd5536udc.*
953
954 AMD GEODE PROCESSOR/CHIPSET SUPPORT
955 M:      Andres Salomon <dilinger@queued.net>
956 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
957 S:      Supported
958 W:      http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
959 F:      arch/x86/include/asm/geode.h
960 F:      drivers/char/hw_random/geode-rng.c
961 F:      drivers/crypto/geode*
962 F:      drivers/video/fbdev/geode/
963
964 AMD IOMMU (AMD-VI)
965 M:      Joerg Roedel <joro@8bytes.org>
966 R:      Suravee Suthikulpanit <suravee.suthikulpanit@amd.com>
967 L:      iommu@lists.linux.dev
968 S:      Maintained
969 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
970 F:      drivers/iommu/amd/
971 F:      include/linux/amd-iommu.h
972
973 AMD KFD
974 M:      Felix Kuehling <Felix.Kuehling@amd.com>
975 L:      amd-gfx@lists.freedesktop.org
976 S:      Supported
977 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
978 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd*.[ch]
979 F:      drivers/gpu/drm/amd/amdkfd/
980 F:      drivers/gpu/drm/amd/include/cik_structs.h
981 F:      drivers/gpu/drm/amd/include/kgd_kfd_interface.h
982 F:      drivers/gpu/drm/amd/include/v9_structs.h
983 F:      drivers/gpu/drm/amd/include/vi_structs.h
984 F:      include/uapi/linux/kfd_ioctl.h
985 F:      include/uapi/linux/kfd_sysfs.h
986
987 AMD SPI DRIVER
988 M:      Sanjay R Mehta <sanju.mehta@amd.com>
989 S:      Maintained
990 F:      drivers/spi/spi-amd.c
991
992 AMD MP2 I2C DRIVER
993 M:      Elie Morisse <syniurge@gmail.com>
994 M:      Nehal Shah <nehal-bakulchandra.shah@amd.com>
995 M:      Shyam Sundar S K <shyam-sundar.s-k@amd.com>
996 L:      linux-i2c@vger.kernel.org
997 S:      Maintained
998 F:      drivers/i2c/busses/i2c-amd-mp2*
999
1000 AMD PMC DRIVER
1001 M:      Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
1002 L:      platform-driver-x86@vger.kernel.org
1003 S:      Maintained
1004 F:      drivers/platform/x86/amd-pmc.*
1005
1006 AMD HSMP DRIVER
1007 M:      Naveen Krishna Chatradhi <naveenkrishna.chatradhi@amd.com>
1008 R:      Carlos Bilbao <carlos.bilbao@amd.com>
1009 L:      platform-driver-x86@vger.kernel.org
1010 S:      Maintained
1011 F:      Documentation/x86/amd_hsmp.rst
1012 F:      arch/x86/include/asm/amd_hsmp.h
1013 F:      arch/x86/include/uapi/asm/amd_hsmp.h
1014 F:      drivers/platform/x86/amd_hsmp.c
1015
1016 AMD POWERPLAY AND SWSMU
1017 M:      Evan Quan <evan.quan@amd.com>
1018 L:      amd-gfx@lists.freedesktop.org
1019 S:      Supported
1020 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
1021 F:      drivers/gpu/drm/amd/pm/
1022
1023 AMD PSTATE DRIVER
1024 M:      Huang Rui <ray.huang@amd.com>
1025 L:      linux-pm@vger.kernel.org
1026 S:      Supported
1027 F:      Documentation/admin-guide/pm/amd-pstate.rst
1028 F:      drivers/cpufreq/amd-pstate*
1029 F:      tools/power/x86/amd_pstate_tracer/amd_pstate_trace.py
1030
1031 AMD PTDMA DRIVER
1032 M:      Sanjay R Mehta <sanju.mehta@amd.com>
1033 L:      dmaengine@vger.kernel.org
1034 S:      Maintained
1035 F:      drivers/dma/ptdma/
1036
1037 AMD SEATTLE DEVICE TREE SUPPORT
1038 M:      Brijesh Singh <brijeshkumar.singh@amd.com>
1039 M:      Suravee Suthikulpanit <suravee.suthikulpanit@amd.com>
1040 M:      Tom Lendacky <thomas.lendacky@amd.com>
1041 S:      Supported
1042 F:      arch/arm64/boot/dts/amd/
1043
1044 AMD XGBE DRIVER
1045 M:      Tom Lendacky <thomas.lendacky@amd.com>
1046 M:      "Shyam Sundar S K" <Shyam-sundar.S-k@amd.com>
1047 L:      netdev@vger.kernel.org
1048 S:      Supported
1049 F:      arch/arm64/boot/dts/amd/amd-seattle-xgbe*.dtsi
1050 F:      drivers/net/ethernet/amd/xgbe/
1051
1052 AMD SENSOR FUSION HUB DRIVER
1053 M:      Basavaraj Natikar <basavaraj.natikar@amd.com>
1054 L:      linux-input@vger.kernel.org
1055 S:      Maintained
1056 F:      Documentation/hid/amd-sfh*
1057 F:      drivers/hid/amd-sfh-hid/
1058
1059 AMPHION VPU CODEC V4L2 DRIVER
1060 M:      Ming Qian <ming.qian@nxp.com>
1061 M:      Shijie Qin <shijie.qin@nxp.com>
1062 M:      Zhou Peng <eagle.zhou@nxp.com>
1063 L:      linux-media@vger.kernel.org
1064 S:      Maintained
1065 F:      Documentation/devicetree/bindings/media/amphion,vpu.yaml
1066 F:      drivers/media/platform/amphion/
1067
1068 AMS AS73211 DRIVER
1069 M:      Christian Eggers <ceggers@arri.de>
1070 L:      linux-iio@vger.kernel.org
1071 S:      Maintained
1072 F:      Documentation/devicetree/bindings/iio/light/ams,as73211.yaml
1073 F:      drivers/iio/light/as73211.c
1074
1075 AMT (Automatic Multicast Tunneling)
1076 M:      Taehee Yoo <ap420073@gmail.com>
1077 L:      netdev@vger.kernel.org
1078 S:      Maintained
1079 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
1080 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
1081 F:      drivers/net/amt.c
1082
1083 ANALOG DEVICES INC AD7192 DRIVER
1084 M:      Alexandru Tachici <alexandru.tachici@analog.com>
1085 L:      linux-iio@vger.kernel.org
1086 S:      Supported
1087 W:      https://ez.analog.com/linux-software-drivers
1088 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7192.yaml
1089 F:      drivers/iio/adc/ad7192.c
1090
1091 ANALOG DEVICES INC AD7292 DRIVER
1092 M:      Marcelo Schmitt <marcelo.schmitt1@gmail.com>
1093 L:      linux-iio@vger.kernel.org
1094 S:      Supported
1095 W:      https://ez.analog.com/linux-software-drivers
1096 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7292.yaml
1097 F:      drivers/iio/adc/ad7292.c
1098
1099 ANALOG DEVICES INC AD3552R DRIVER
1100 M:      Nuno Sá <nuno.sa@analog.com>
1101 L:      linux-iio@vger.kernel.org
1102 S:      Supported
1103 W:      https://ez.analog.com/linux-software-drivers
1104 F:      Documentation/devicetree/bindings/iio/dac/adi,ad3552r.yaml
1105 F:      drivers/iio/dac/ad3552r.c
1106
1107 ANALOG DEVICES INC AD7293 DRIVER
1108 M:      Antoniu Miclaus <antoniu.miclaus@analog.com>
1109 L:      linux-iio@vger.kernel.org
1110 S:      Supported
1111 W:      https://ez.analog.com/linux-software-drivers
1112 F:      Documentation/devicetree/bindings/iio/dac/adi,ad7293.yaml
1113 F:      drivers/iio/dac/ad7293.c
1114
1115 ANALOG DEVICES INC AD7768-1 DRIVER
1116 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1117 L:      linux-iio@vger.kernel.org
1118 S:      Supported
1119 W:      https://ez.analog.com/linux-software-drivers
1120 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7768-1.yaml
1121 F:      drivers/iio/adc/ad7768-1.c
1122
1123 ANALOG DEVICES INC AD7780 DRIVER
1124 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1125 M:      Renato Lui Geh <renatogeh@gmail.com>
1126 L:      linux-iio@vger.kernel.org
1127 S:      Supported
1128 W:      https://ez.analog.com/linux-software-drivers
1129 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7780.yaml
1130 F:      drivers/iio/adc/ad7780.c
1131
1132 ANALOG DEVICES INC AD74413R DRIVER
1133 M:      Cosmin Tanislav <cosmin.tanislav@analog.com>
1134 L:      linux-iio@vger.kernel.org
1135 S:      Supported
1136 W:      http://ez.analog.com/community/linux-device-drivers
1137 F:      Documentation/devicetree/bindings/iio/addac/adi,ad74413r.yaml
1138 F:      drivers/iio/addac/ad74413r.c
1139 F:      include/dt-bindings/iio/addac/adi,ad74413r.h
1140
1141 ANALOG DEVICES INC AD9389B DRIVER
1142 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1143 L:      linux-media@vger.kernel.org
1144 S:      Maintained
1145 F:      drivers/media/i2c/ad9389b*
1146
1147 ANALOG DEVICES INC ADA4250 DRIVER
1148 M:      Antoniu Miclaus <antoniu.miclaus@analog.com>
1149 L:      linux-iio@vger.kernel.org
1150 S:      Supported
1151 W:      https://ez.analog.com/linux-software-drivers
1152 F:      Documentation/devicetree/bindings/iio/amplifiers/adi,ada4250.yaml
1153 F:      drivers/iio/amplifiers/ada4250.c
1154
1155 ANALOG DEVICES INC ADGS1408 DRIVER
1156 M:      Mircea Caprioru <mircea.caprioru@analog.com>
1157 S:      Supported
1158 F:      Documentation/devicetree/bindings/mux/adi,adgs1408.txt
1159 F:      drivers/mux/adgs1408.c
1160
1161 ANALOG DEVICES INC ADIN DRIVER
1162 M:      Michael Hennerich <michael.hennerich@analog.com>
1163 L:      netdev@vger.kernel.org
1164 S:      Supported
1165 W:      https://ez.analog.com/linux-software-drivers
1166 F:      Documentation/devicetree/bindings/net/adi,adin.yaml
1167 F:      drivers/net/phy/adin.c
1168
1169 ANALOG DEVICES INC ADIS DRIVER LIBRARY
1170 M:      Nuno Sa <nuno.sa@analog.com>
1171 L:      linux-iio@vger.kernel.org
1172 S:      Supported
1173 F:      drivers/iio/imu/adis.c
1174 F:      drivers/iio/imu/adis_buffer.c
1175 F:      drivers/iio/imu/adis_trigger.c
1176 F:      include/linux/iio/imu/adis.h
1177
1178 ANALOG DEVICES INC ADIS16460 DRIVER
1179 M:      Dragos Bogdan <dragos.bogdan@analog.com>
1180 L:      linux-iio@vger.kernel.org
1181 S:      Supported
1182 W:      https://ez.analog.com/linux-software-drivers
1183 F:      Documentation/devicetree/bindings/iio/imu/adi,adis16460.yaml
1184 F:      drivers/iio/imu/adis16460.c
1185
1186 ANALOG DEVICES INC ADIS16475 DRIVER
1187 M:      Nuno Sa <nuno.sa@analog.com>
1188 L:      linux-iio@vger.kernel.org
1189 W:      https://ez.analog.com/linux-software-drivers
1190 S:      Supported
1191 F:      drivers/iio/imu/adis16475.c
1192 F:      Documentation/devicetree/bindings/iio/imu/adi,adis16475.yaml
1193
1194 ANALOG DEVICES INC ADM1177 DRIVER
1195 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1196 L:      linux-hwmon@vger.kernel.org
1197 S:      Supported
1198 W:      https://ez.analog.com/linux-software-drivers
1199 F:      Documentation/devicetree/bindings/hwmon/adi,adm1177.yaml
1200 F:      drivers/hwmon/adm1177.c
1201
1202 ANALOG DEVICES INC ADMV1013 DRIVER
1203 M:      Antoniu Miclaus <antoniu.miclaus@analog.com>
1204 L:      linux-iio@vger.kernel.org
1205 S:      Supported
1206 W:      https://ez.analog.com/linux-software-drivers
1207 F:      Documentation/devicetree/bindings/iio/frequency/adi,admv1013.yaml
1208 F:      drivers/iio/frequency/admv1013.c
1209
1210 ANALOG DEVICES INC ADMV8818 DRIVER
1211 M:      Antoniu Miclaus <antoniu.miclaus@analog.com>
1212 L:      linux-iio@vger.kernel.org
1213 S:      Supported
1214 W:      https://ez.analog.com/linux-software-drivers
1215 F:      Documentation/devicetree/bindings/iio/filter/adi,admv8818.yaml
1216 F:      drivers/iio/filter/admv8818.c
1217
1218 ANALOG DEVICES INC ADMV1014 DRIVER
1219 M:      Antoniu Miclaus <antoniu.miclaus@analog.com>
1220 L:      linux-iio@vger.kernel.org
1221 S:      Supported
1222 W:      https://ez.analog.com/linux-software-drivers
1223 F:      Documentation/devicetree/bindings/iio/frequency/adi,admv1014.yaml
1224 F:      drivers/iio/frequency/admv1014.c
1225
1226 ANALOG DEVICES INC ADP5061 DRIVER
1227 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1228 L:      linux-pm@vger.kernel.org
1229 S:      Supported
1230 W:      https://ez.analog.com/linux-software-drivers
1231 F:      drivers/power/supply/adp5061.c
1232
1233 ANALOG DEVICES INC ADRF6780 DRIVER
1234 M:      Antoniu Miclaus <antoniu.miclaus@analog.com>
1235 L:      linux-iio@vger.kernel.org
1236 S:      Supported
1237 W:      https://ez.analog.com/linux-software-drivers
1238 F:      Documentation/devicetree/bindings/iio/frequency/adi,adrf6780.yaml
1239 F:      drivers/iio/frequency/adrf6780.c
1240
1241 ANALOG DEVICES INC ADV7180 DRIVER
1242 M:      Lars-Peter Clausen <lars@metafoo.de>
1243 L:      linux-media@vger.kernel.org
1244 S:      Supported
1245 W:      https://ez.analog.com/linux-software-drivers
1246 F:      drivers/media/i2c/adv7180.c
1247 F:      Documentation/devicetree/bindings/media/i2c/adv7180.yaml
1248
1249 ANALOG DEVICES INC ADV748X DRIVER
1250 M:      Kieran Bingham <kieran.bingham@ideasonboard.com>
1251 L:      linux-media@vger.kernel.org
1252 S:      Maintained
1253 F:      Documentation/devicetree/bindings/media/i2c/adv748x.yaml
1254 F:      drivers/media/i2c/adv748x/*
1255
1256 ANALOG DEVICES INC ADV7511 DRIVER
1257 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1258 L:      linux-media@vger.kernel.org
1259 S:      Maintained
1260 F:      drivers/media/i2c/adv7511*
1261
1262 ANALOG DEVICES INC ADV7604 DRIVER
1263 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1264 L:      linux-media@vger.kernel.org
1265 S:      Maintained
1266 F:      drivers/media/i2c/adv7604*
1267 F:      Documentation/devicetree/bindings/media/i2c/adv7604.yaml
1268
1269 ANALOG DEVICES INC ADV7842 DRIVER
1270 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1271 L:      linux-media@vger.kernel.org
1272 S:      Maintained
1273 F:      drivers/media/i2c/adv7842*
1274
1275 ANALOG DEVICES INC ADXRS290 DRIVER
1276 M:      Nishant Malpani <nish.malpani25@gmail.com>
1277 L:      linux-iio@vger.kernel.org
1278 S:      Supported
1279 F:      drivers/iio/gyro/adxrs290.c
1280 F:      Documentation/devicetree/bindings/iio/gyroscope/adi,adxrs290.yaml
1281
1282 ANALOG DEVICES INC ASOC CODEC DRIVERS
1283 M:      Lars-Peter Clausen <lars@metafoo.de>
1284 M:      Nuno Sá <nuno.sa@analog.com>
1285 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1286 S:      Supported
1287 W:      http://wiki.analog.com/
1288 W:      https://ez.analog.com/linux-software-drivers
1289 F:      sound/soc/codecs/ad1*
1290 F:      sound/soc/codecs/ad7*
1291 F:      sound/soc/codecs/adau*
1292 F:      sound/soc/codecs/adav*
1293 F:      sound/soc/codecs/sigmadsp.*
1294 F:      sound/soc/codecs/ssm*
1295
1296 ANALOG DEVICES INC DMA DRIVERS
1297 M:      Lars-Peter Clausen <lars@metafoo.de>
1298 S:      Supported
1299 W:      https://ez.analog.com/linux-software-drivers
1300 F:      drivers/dma/dma-axi-dmac.c
1301
1302 ANALOG DEVICES INC IIO DRIVERS
1303 M:      Lars-Peter Clausen <lars@metafoo.de>
1304 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1305 S:      Supported
1306 W:      http://wiki.analog.com/
1307 W:      https://ez.analog.com/linux-software-drivers
1308 F:      Documentation/ABI/testing/sysfs-bus-iio-frequency-ad9523
1309 F:      Documentation/ABI/testing/sysfs-bus-iio-frequency-adf4350
1310 F:      Documentation/devicetree/bindings/iio/*/adi,*
1311 F:      Documentation/devicetree/bindings/iio/dac/adi,ad5758.yaml
1312 F:      drivers/iio/*/ad*
1313 F:      drivers/iio/adc/ltc249*
1314 F:      drivers/iio/amplifiers/hmc425a.c
1315 F:      drivers/staging/iio/*/ad*
1316 X:      drivers/iio/*/adjd*
1317
1318 ANALOGBITS PLL LIBRARIES
1319 M:      Paul Walmsley <paul.walmsley@sifive.com>
1320 S:      Supported
1321 F:      drivers/clk/analogbits/*
1322 F:      include/linux/clk/analogbits*
1323
1324 ANDROID CONFIG FRAGMENTS
1325 M:      Rob Herring <robh@kernel.org>
1326 S:      Supported
1327 F:      kernel/configs/android*
1328
1329 ANDROID DRIVERS
1330 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
1331 M:      Arve Hjønnevåg <arve@android.com>
1332 M:      Todd Kjos <tkjos@android.com>
1333 M:      Martijn Coenen <maco@android.com>
1334 M:      Joel Fernandes <joel@joelfernandes.org>
1335 M:      Christian Brauner <christian@brauner.io>
1336 M:      Hridya Valsaraju <hridya@google.com>
1337 M:      Suren Baghdasaryan <surenb@google.com>
1338 L:      linux-kernel@vger.kernel.org
1339 S:      Supported
1340 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
1341 F:      drivers/android/
1342
1343 ANDROID GOLDFISH PIC DRIVER
1344 M:      Miodrag Dinic <miodrag.dinic@mips.com>
1345 S:      Supported
1346 F:      Documentation/devicetree/bindings/interrupt-controller/google,goldfish-pic.txt
1347 F:      drivers/irqchip/irq-goldfish-pic.c
1348
1349 ANDROID GOLDFISH RTC DRIVER
1350 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
1351 S:      Supported
1352 F:      Documentation/devicetree/bindings/rtc/google,goldfish-rtc.txt
1353 F:      drivers/rtc/rtc-goldfish.c
1354
1355 AOA (Apple Onboard Audio) ALSA DRIVER
1356 M:      Johannes Berg <johannes@sipsolutions.net>
1357 L:      linuxppc-dev@lists.ozlabs.org
1358 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1359 S:      Maintained
1360 F:      sound/aoa/
1361
1362 APEX EMBEDDED SYSTEMS STX104 IIO DRIVER
1363 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
1364 L:      linux-iio@vger.kernel.org
1365 S:      Maintained
1366 F:      drivers/iio/adc/stx104.c
1367
1368 APM DRIVER
1369 M:      Jiri Kosina <jikos@kernel.org>
1370 S:      Odd fixes
1371 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/apm.git
1372 F:      arch/x86/kernel/apm_32.c
1373 F:      drivers/char/apm-emulation.c
1374 F:      include/linux/apm_bios.h
1375 F:      include/uapi/linux/apm_bios.h
1376
1377 APPARMOR SECURITY MODULE
1378 M:      John Johansen <john.johansen@canonical.com>
1379 L:      apparmor@lists.ubuntu.com (subscribers-only, general discussion)
1380 S:      Supported
1381 W:      wiki.apparmor.net
1382 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jj/linux-apparmor
1383 F:      Documentation/admin-guide/LSM/apparmor.rst
1384 F:      security/apparmor/
1385
1386 APPLE BCM5974 MULTITOUCH DRIVER
1387 M:      Henrik Rydberg <rydberg@bitmath.org>
1388 L:      linux-input@vger.kernel.org
1389 S:      Odd fixes
1390 F:      drivers/input/mouse/bcm5974.c
1391
1392 APPLE PCIE CONTROLLER DRIVER
1393 M:      Alyssa Rosenzweig <alyssa@rosenzweig.io>
1394 M:      Marc Zyngier <maz@kernel.org>
1395 L:      linux-pci@vger.kernel.org
1396 S:      Maintained
1397 F:      drivers/pci/controller/pcie-apple.c
1398
1399 APPLE SMC DRIVER
1400 M:      Henrik Rydberg <rydberg@bitmath.org>
1401 L:      linux-hwmon@vger.kernel.org
1402 S:      Odd fixes
1403 F:      drivers/hwmon/applesmc.c
1404
1405 APPLETALK NETWORK LAYER
1406 L:      netdev@vger.kernel.org
1407 S:      Odd fixes
1408 F:      drivers/net/appletalk/
1409 F:      include/linux/atalk.h
1410 F:      include/uapi/linux/atalk.h
1411 F:      net/appletalk/
1412
1413 APPLIED MICRO (APM) X-GENE DEVICE TREE SUPPORT
1414 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1415 S:      Supported
1416 F:      arch/arm64/boot/dts/apm/
1417
1418 APPLIED MICRO (APM) X-GENE SOC EDAC
1419 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1420 S:      Supported
1421 F:      Documentation/devicetree/bindings/edac/apm-xgene-edac.txt
1422 F:      drivers/edac/xgene_edac.c
1423
1424 APPLIED MICRO (APM) X-GENE SOC ETHERNET (V2) DRIVER
1425 M:      Iyappan Subramanian <iyappan@os.amperecomputing.com>
1426 M:      Keyur Chudgar <keyur@os.amperecomputing.com>
1427 S:      Supported
1428 F:      drivers/net/ethernet/apm/xgene-v2/
1429
1430 APPLIED MICRO (APM) X-GENE SOC ETHERNET DRIVER
1431 M:      Iyappan Subramanian <iyappan@os.amperecomputing.com>
1432 M:      Keyur Chudgar <keyur@os.amperecomputing.com>
1433 M:      Quan Nguyen <quan@os.amperecomputing.com>
1434 S:      Supported
1435 F:      Documentation/devicetree/bindings/net/apm-xgene-enet.txt
1436 F:      Documentation/devicetree/bindings/net/apm-xgene-mdio.txt
1437 F:      drivers/net/ethernet/apm/xgene/
1438 F:      drivers/net/mdio/mdio-xgene.c
1439
1440 APPLIED MICRO (APM) X-GENE SOC PMU
1441 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1442 S:      Supported
1443 F:      Documentation/admin-guide/perf/xgene-pmu.rst
1444 F:      Documentation/devicetree/bindings/perf/apm-xgene-pmu.txt
1445 F:      drivers/perf/xgene_pmu.c
1446
1447 APTINA CAMERA SENSOR PLL
1448 M:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
1449 L:      linux-media@vger.kernel.org
1450 S:      Maintained
1451 F:      drivers/media/i2c/aptina-pll.*
1452
1453 AQUACOMPUTER D5 NEXT PUMP SENSOR DRIVER
1454 M:      Aleksa Savic <savicaleksa83@gmail.com>
1455 M:      Jack Doan <me@jackdoan.com>
1456 L:      linux-hwmon@vger.kernel.org
1457 S:      Maintained
1458 F:      Documentation/hwmon/aquacomputer_d5next.rst
1459 F:      drivers/hwmon/aquacomputer_d5next.c
1460
1461 AQUANTIA ETHERNET DRIVER (atlantic)
1462 M:      Igor Russkikh <irusskikh@marvell.com>
1463 L:      netdev@vger.kernel.org
1464 S:      Supported
1465 W:      https://www.marvell.com/
1466 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
1467 F:      Documentation/networking/device_drivers/ethernet/aquantia/atlantic.rst
1468 F:      drivers/net/ethernet/aquantia/atlantic/
1469
1470 AQUANTIA ETHERNET DRIVER PTP SUBSYSTEM
1471 M:      Egor Pomozov <epomozov@marvell.com>
1472 L:      netdev@vger.kernel.org
1473 S:      Supported
1474 W:      http://www.aquantia.com
1475 F:      drivers/net/ethernet/aquantia/atlantic/aq_ptp*
1476
1477 ARASAN NAND CONTROLLER DRIVER
1478 M:      Miquel Raynal <miquel.raynal@bootlin.com>
1479 M:      Naga Sureshkumar Relli <nagasure@xilinx.com>
1480 L:      linux-mtd@lists.infradead.org
1481 S:      Maintained
1482 F:      Documentation/devicetree/bindings/mtd/arasan,nand-controller.yaml
1483 F:      drivers/mtd/nand/raw/arasan-nand-controller.c
1484
1485 ARC FRAMEBUFFER DRIVER
1486 M:      Jaya Kumar <jayalk@intworks.biz>
1487 S:      Maintained
1488 F:      drivers/video/fbdev/arcfb.c
1489 F:      drivers/video/fbdev/core/fb_defio.c
1490
1491 ARC PGU DRM DRIVER
1492 M:      Alexey Brodkin <abrodkin@synopsys.com>
1493 S:      Supported
1494 F:      Documentation/devicetree/bindings/display/snps,arcpgu.txt
1495 F:      drivers/gpu/drm/tiny/arcpgu.c
1496
1497 ARCNET NETWORK LAYER
1498 M:      Michael Grzeschik <m.grzeschik@pengutronix.de>
1499 L:      netdev@vger.kernel.org
1500 S:      Maintained
1501 F:      drivers/net/arcnet/
1502 F:      include/uapi/linux/if_arcnet.h
1503
1504 ARM ARCHITECTED TIMER DRIVER
1505 M:      Mark Rutland <mark.rutland@arm.com>
1506 M:      Marc Zyngier <maz@kernel.org>
1507 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1508 S:      Maintained
1509 F:      arch/arm/include/asm/arch_timer.h
1510 F:      arch/arm64/include/asm/arch_timer.h
1511 F:      drivers/clocksource/arm_arch_timer.c
1512
1513 ARM HDLCD DRM DRIVER
1514 M:      Liviu Dudau <liviu.dudau@arm.com>
1515 S:      Supported
1516 F:      Documentation/devicetree/bindings/display/arm,hdlcd.yaml
1517 F:      drivers/gpu/drm/arm/hdlcd_*
1518
1519 ARM INTEGRATOR, VERSATILE AND REALVIEW SUPPORT
1520 M:      Linus Walleij <linus.walleij@linaro.org>
1521 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1522 S:      Maintained
1523 F:      Documentation/devicetree/bindings/arm/arm,integrator.yaml
1524 F:      Documentation/devicetree/bindings/arm/arm,realview.yaml
1525 F:      Documentation/devicetree/bindings/arm/arm,versatile.yaml
1526 F:      Documentation/devicetree/bindings/arm/arm,vexpress-juno.yaml
1527 F:      Documentation/devicetree/bindings/auxdisplay/arm,versatile-lcd.yaml
1528 F:      Documentation/devicetree/bindings/clock/arm,syscon-icst.yaml
1529 F:      Documentation/devicetree/bindings/i2c/i2c-versatile.txt
1530 F:      Documentation/devicetree/bindings/interrupt-controller/arm,versatile-fpga-irq.txt
1531 F:      Documentation/devicetree/bindings/mtd/mtd-physmap.yaml
1532 F:      arch/arm/boot/dts/arm-realview-*
1533 F:      arch/arm/boot/dts/integrator*
1534 F:      arch/arm/boot/dts/versatile*
1535 F:      arch/arm/mach-versatile/
1536 F:      drivers/bus/arm-integrator-lm.c
1537 F:      drivers/clk/versatile/
1538 F:      drivers/i2c/busses/i2c-versatile.c
1539 F:      drivers/irqchip/irq-versatile-fpga.c
1540 F:      drivers/mtd/maps/physmap-versatile.*
1541 F:      drivers/power/reset/arm-versatile-reboot.c
1542 F:      drivers/soc/versatile/
1543
1544 ARM KOMEDA DRM-KMS DRIVER
1545 M:      James (Qian) Wang <james.qian.wang@arm.com>
1546 M:      Liviu Dudau <liviu.dudau@arm.com>
1547 M:      Mihail Atanassov <mihail.atanassov@arm.com>
1548 L:      Mali DP Maintainers <malidp@foss.arm.com>
1549 S:      Supported
1550 T:      git git://anongit.freedesktop.org/drm/drm-misc
1551 F:      Documentation/devicetree/bindings/display/arm,komeda.yaml
1552 F:      Documentation/gpu/komeda-kms.rst
1553 F:      drivers/gpu/drm/arm/display/include/
1554 F:      drivers/gpu/drm/arm/display/komeda/
1555
1556 ARM MALI PANFROST DRM DRIVER
1557 M:      Rob Herring <robh@kernel.org>
1558 M:      Tomeu Vizoso <tomeu.vizoso@collabora.com>
1559 R:      Steven Price <steven.price@arm.com>
1560 R:      Alyssa Rosenzweig <alyssa.rosenzweig@collabora.com>
1561 L:      dri-devel@lists.freedesktop.org
1562 S:      Supported
1563 T:      git git://anongit.freedesktop.org/drm/drm-misc
1564 F:      drivers/gpu/drm/panfrost/
1565 F:      include/uapi/drm/panfrost_drm.h
1566
1567 ARM MALI-DP DRM DRIVER
1568 M:      Liviu Dudau <liviu.dudau@arm.com>
1569 M:      Brian Starkey <brian.starkey@arm.com>
1570 L:      Mali DP Maintainers <malidp@foss.arm.com>
1571 S:      Supported
1572 T:      git git://anongit.freedesktop.org/drm/drm-misc
1573 F:      Documentation/devicetree/bindings/display/arm,malidp.yaml
1574 F:      Documentation/gpu/afbc.rst
1575 F:      drivers/gpu/drm/arm/
1576
1577 ARM MFM AND FLOPPY DRIVERS
1578 M:      Ian Molton <spyro@f2s.com>
1579 S:      Maintained
1580 F:      arch/arm/include/asm/floppy.h
1581 F:      arch/arm/mach-rpc/floppydma.S
1582
1583 ARM PMU PROFILING AND DEBUGGING
1584 M:      Will Deacon <will@kernel.org>
1585 M:      Mark Rutland <mark.rutland@arm.com>
1586 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1587 S:      Maintained
1588 F:      Documentation/devicetree/bindings/arm/pmu.yaml
1589 F:      Documentation/devicetree/bindings/perf/
1590 F:      arch/arm*/include/asm/hw_breakpoint.h
1591 F:      arch/arm*/include/asm/perf_event.h
1592 F:      arch/arm*/kernel/hw_breakpoint.c
1593 F:      arch/arm*/kernel/perf_*
1594 F:      drivers/perf/
1595 F:      include/linux/perf/arm_pmu.h
1596
1597 ARM PORT
1598 M:      Russell King <linux@armlinux.org.uk>
1599 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1600 S:      Odd Fixes
1601 W:      http://www.armlinux.org.uk/
1602 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git
1603 F:      arch/arm/
1604 X:      arch/arm/boot/dts/
1605
1606 ARM PRIMECELL AACI PL041 DRIVER
1607 M:      Russell King <linux@armlinux.org.uk>
1608 S:      Odd Fixes
1609 F:      sound/arm/aaci.*
1610
1611 ARM PRIMECELL BUS SUPPORT
1612 M:      Russell King <linux@armlinux.org.uk>
1613 S:      Odd Fixes
1614 F:      drivers/amba/
1615 F:      include/linux/amba/bus.h
1616
1617 ARM PRIMECELL PL35X NAND CONTROLLER DRIVER
1618 M:      Miquel Raynal <miquel.raynal@bootlin.com>
1619 M:      Naga Sureshkumar Relli <nagasure@xilinx.com>
1620 L:      linux-mtd@lists.infradead.org
1621 S:      Maintained
1622 F:      Documentation/devicetree/bindings/mtd/arm,pl353-nand-r2p1.yaml
1623 F:      drivers/mtd/nand/raw/pl35x-nand-controller.c
1624
1625 ARM PRIMECELL PL35X SMC DRIVER
1626 M:      Miquel Raynal <miquel.raynal@bootlin.com>
1627 M:      Naga Sureshkumar Relli <nagasure@xilinx.com>
1628 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1629 S:      Maintained
1630 F:      Documentation/devicetree/bindings/memory-controllers/arm,pl353-smc.yaml
1631 F:      drivers/memory/pl353-smc.c
1632
1633 ARM PRIMECELL CLCD PL110 DRIVER
1634 M:      Russell King <linux@armlinux.org.uk>
1635 S:      Odd Fixes
1636 F:      drivers/video/fbdev/amba-clcd.*
1637
1638 ARM PRIMECELL KMI PL050 DRIVER
1639 M:      Russell King <linux@armlinux.org.uk>
1640 S:      Odd Fixes
1641 F:      drivers/input/serio/ambakmi.*
1642 F:      include/linux/amba/kmi.h
1643
1644 ARM PRIMECELL MMCI PL180/1 DRIVER
1645 M:      Russell King <linux@armlinux.org.uk>
1646 S:      Odd Fixes
1647 F:      drivers/mmc/host/mmci.*
1648 F:      include/linux/amba/mmci.h
1649
1650 ARM PRIMECELL SSP PL022 SPI DRIVER
1651 M:      Linus Walleij <linus.walleij@linaro.org>
1652 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1653 S:      Maintained
1654 F:      Documentation/devicetree/bindings/spi/spi-pl022.yaml
1655 F:      drivers/spi/spi-pl022.c
1656
1657 ARM PRIMECELL UART PL010 AND PL011 DRIVERS
1658 M:      Russell King <linux@armlinux.org.uk>
1659 S:      Odd Fixes
1660 F:      drivers/tty/serial/amba-pl01*.c
1661 F:      include/linux/amba/serial.h
1662
1663 ARM PRIMECELL VIC PL190/PL192 DRIVER
1664 M:      Linus Walleij <linus.walleij@linaro.org>
1665 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1666 S:      Maintained
1667 F:      Documentation/devicetree/bindings/interrupt-controller/arm,vic.yaml
1668 F:      drivers/irqchip/irq-vic.c
1669
1670 ARM SMC WATCHDOG DRIVER
1671 M:      Julius Werner <jwerner@chromium.org>
1672 R:      Evan Benn <evanbenn@chromium.org>
1673 S:      Maintained
1674 F:      Documentation/devicetree/bindings/watchdog/arm-smc-wdt.yaml
1675 F:      drivers/watchdog/arm_smc_wdt.c
1676
1677 ARM SMMU DRIVERS
1678 M:      Will Deacon <will@kernel.org>
1679 R:      Robin Murphy <robin.murphy@arm.com>
1680 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1681 S:      Maintained
1682 F:      Documentation/devicetree/bindings/iommu/arm,smmu*
1683 F:      drivers/iommu/arm/
1684 F:      drivers/iommu/io-pgtable-arm*
1685
1686 ARM AND ARM64 SoC SUB-ARCHITECTURES (COMMON PARTS)
1687 M:      Arnd Bergmann <arnd@arndb.de>
1688 M:      Olof Johansson <olof@lixom.net>
1689 M:      soc@kernel.org
1690 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1691 S:      Maintained
1692 C:      irc://irc.libera.chat/armlinux
1693 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/soc/soc.git
1694 F:      arch/arm/boot/dts/Makefile
1695 F:      arch/arm64/boot/dts/Makefile
1696
1697 ARM SUB-ARCHITECTURES
1698 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1699 S:      Maintained
1700 C:      irc://irc.libera.chat/armlinux
1701 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/soc/soc.git
1702 F:      arch/arm/mach-*/
1703 F:      arch/arm/plat-*/
1704
1705 ARM/ACTIONS SEMI ARCHITECTURE
1706 M:      Andreas Färber <afaerber@suse.de>
1707 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
1708 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1709 L:      linux-actions@lists.infradead.org (moderated for non-subscribers)
1710 S:      Maintained
1711 F:      Documentation/devicetree/bindings/arm/actions.yaml
1712 F:      Documentation/devicetree/bindings/clock/actions,owl-cmu.txt
1713 F:      Documentation/devicetree/bindings/dma/owl-dma.yaml
1714 F:      Documentation/devicetree/bindings/i2c/i2c-owl.yaml
1715 F:      Documentation/devicetree/bindings/interrupt-controller/actions,owl-sirq.yaml
1716 F:      Documentation/devicetree/bindings/mmc/owl-mmc.yaml
1717 F:      Documentation/devicetree/bindings/net/actions,owl-emac.yaml
1718 F:      Documentation/devicetree/bindings/pinctrl/actions,*
1719 F:      Documentation/devicetree/bindings/power/actions,owl-sps.txt
1720 F:      Documentation/devicetree/bindings/timer/actions,owl-timer.txt
1721 F:      arch/arm/boot/dts/owl-*
1722 F:      arch/arm/mach-actions/
1723 F:      arch/arm64/boot/dts/actions/
1724 F:      drivers/clk/actions/
1725 F:      drivers/clocksource/timer-owl*
1726 F:      drivers/dma/owl-dma.c
1727 F:      drivers/i2c/busses/i2c-owl.c
1728 F:      drivers/irqchip/irq-owl-sirq.c
1729 F:      drivers/mmc/host/owl-mmc.c
1730 F:      drivers/net/ethernet/actions/
1731 F:      drivers/pinctrl/actions/*
1732 F:      drivers/soc/actions/
1733 F:      include/dt-bindings/power/owl-*
1734 F:      include/dt-bindings/reset/actions,*
1735 F:      include/linux/soc/actions/
1736 N:      owl
1737
1738 ARM/ADS SPHERE MACHINE SUPPORT
1739 M:      Lennert Buytenhek <kernel@wantstofly.org>
1740 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1741 S:      Maintained
1742
1743 ARM/AFEB9260 MACHINE SUPPORT
1744 M:      Sergey Lapin <slapin@ossfans.org>
1745 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1746 S:      Maintained
1747
1748 ARM/AJECO 1ARM MACHINE SUPPORT
1749 M:      Lennert Buytenhek <kernel@wantstofly.org>
1750 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1751 S:      Maintained
1752
1753 ARM/Allwinner SoC Clock Support
1754 M:      Emilio López <emilio@elopez.com.ar>
1755 S:      Maintained
1756 F:      drivers/clk/sunxi/
1757
1758 ARM/Allwinner sunXi SoC support
1759 M:      Chen-Yu Tsai <wens@csie.org>
1760 M:      Jernej Skrabec <jernej.skrabec@gmail.com>
1761 M:      Samuel Holland <samuel@sholland.org>
1762 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1763 S:      Maintained
1764 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sunxi/linux.git
1765 L:      linux-sunxi@lists.linux.dev
1766 F:      arch/arm/mach-sunxi/
1767 F:      arch/arm64/boot/dts/allwinner/
1768 F:      drivers/clk/sunxi-ng/
1769 F:      drivers/pinctrl/sunxi/
1770 F:      drivers/soc/sunxi/
1771 N:      allwinner
1772 N:      sun[x456789]i
1773 N:      sun50i
1774
1775 ARM/Amlogic Meson SoC CLOCK FRAMEWORK
1776 M:      Neil Armstrong <narmstrong@baylibre.com>
1777 M:      Jerome Brunet <jbrunet@baylibre.com>
1778 L:      linux-amlogic@lists.infradead.org
1779 S:      Maintained
1780 F:      Documentation/devicetree/bindings/clock/amlogic*
1781 F:      drivers/clk/meson/
1782 F:      include/dt-bindings/clock/gxbb*
1783 F:      include/dt-bindings/clock/meson*
1784
1785 ARM/Amlogic Meson SoC Crypto Drivers
1786 M:      Corentin Labbe <clabbe@baylibre.com>
1787 L:      linux-crypto@vger.kernel.org
1788 L:      linux-amlogic@lists.infradead.org
1789 S:      Maintained
1790 F:      Documentation/devicetree/bindings/crypto/amlogic*
1791 F:      drivers/crypto/amlogic/
1792
1793 ARM/Amlogic Meson SoC Sound Drivers
1794 M:      Jerome Brunet <jbrunet@baylibre.com>
1795 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1796 S:      Maintained
1797 F:      Documentation/devicetree/bindings/sound/amlogic*
1798 F:      sound/soc/meson/
1799
1800 ARM/Amlogic Meson SoC support
1801 M:      Neil Armstrong <narmstrong@baylibre.com>
1802 M:      Kevin Hilman <khilman@baylibre.com>
1803 R:      Jerome Brunet <jbrunet@baylibre.com>
1804 R:      Martin Blumenstingl <martin.blumenstingl@googlemail.com>
1805 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1806 L:      linux-amlogic@lists.infradead.org
1807 S:      Maintained
1808 W:      http://linux-meson.com/
1809 F:      arch/arm/boot/dts/meson*
1810 F:      arch/arm/mach-meson/
1811 F:      arch/arm64/boot/dts/amlogic/
1812 F:      drivers/mmc/host/meson*
1813 F:      drivers/pinctrl/meson/
1814 F:      drivers/rtc/rtc-meson*
1815 F:      drivers/soc/amlogic/
1816 N:      meson
1817
1818 ARM/Annapurna Labs ALPINE ARCHITECTURE
1819 M:      Tsahee Zidenberg <tsahee@annapurnalabs.com>
1820 M:      Antoine Tenart <atenart@kernel.org>
1821 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1822 S:      Maintained
1823 F:      arch/arm/boot/dts/alpine*
1824 F:      arch/arm/mach-alpine/
1825 F:      arch/arm64/boot/dts/amazon/
1826 F:      drivers/*/*alpine*
1827
1828 ARM/APPLE MACHINE SUPPORT
1829 M:      Hector Martin <marcan@marcan.st>
1830 M:      Sven Peter <sven@svenpeter.dev>
1831 R:      Alyssa Rosenzweig <alyssa@rosenzweig.io>
1832 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1833 S:      Maintained
1834 W:      https://asahilinux.org
1835 B:      https://github.com/AsahiLinux/linux/issues
1836 C:      irc://irc.oftc.net/asahi-dev
1837 T:      git https://github.com/AsahiLinux/linux.git
1838 F:      Documentation/devicetree/bindings/arm/apple.yaml
1839 F:      Documentation/devicetree/bindings/arm/apple/*
1840 F:      Documentation/devicetree/bindings/clock/apple,nco.yaml
1841 F:      Documentation/devicetree/bindings/i2c/apple,i2c.yaml
1842 F:      Documentation/devicetree/bindings/interrupt-controller/apple,*
1843 F:      Documentation/devicetree/bindings/iommu/apple,dart.yaml
1844 F:      Documentation/devicetree/bindings/iommu/apple,sart.yaml
1845 F:      Documentation/devicetree/bindings/mailbox/apple,mailbox.yaml
1846 F:      Documentation/devicetree/bindings/nvme/apple,nvme-ans.yaml
1847 F:      Documentation/devicetree/bindings/nvmem/apple,efuses.yaml
1848 F:      Documentation/devicetree/bindings/pci/apple,pcie.yaml
1849 F:      Documentation/devicetree/bindings/pinctrl/apple,pinctrl.yaml
1850 F:      Documentation/devicetree/bindings/power/apple*
1851 F:      Documentation/devicetree/bindings/watchdog/apple,wdt.yaml
1852 F:      arch/arm64/boot/dts/apple/
1853 F:      drivers/clk/clk-apple-nco.c
1854 F:      drivers/i2c/busses/i2c-pasemi-core.c
1855 F:      drivers/i2c/busses/i2c-pasemi-platform.c
1856 F:      drivers/iommu/apple-dart.c
1857 F:      drivers/irqchip/irq-apple-aic.c
1858 F:      drivers/mailbox/apple-mailbox.c
1859 F:      drivers/nvme/host/apple.c
1860 F:      drivers/nvmem/apple-efuses.c
1861 F:      drivers/pinctrl/pinctrl-apple-gpio.c
1862 F:      drivers/soc/apple/*
1863 F:      drivers/watchdog/apple_wdt.c
1864 F:      include/dt-bindings/interrupt-controller/apple-aic.h
1865 F:      include/dt-bindings/pinctrl/apple.h
1866 F:      include/linux/apple-mailbox.h
1867 F:      include/linux/soc/apple/*
1868
1869 ARM/ARTPEC MACHINE SUPPORT
1870 M:      Jesper Nilsson <jesper.nilsson@axis.com>
1871 M:      Lars Persson <lars.persson@axis.com>
1872 L:      linux-arm-kernel@axis.com
1873 S:      Maintained
1874 F:      Documentation/devicetree/bindings/pinctrl/axis,artpec6-pinctrl.txt
1875 F:      arch/arm/boot/dts/artpec6*
1876 F:      arch/arm/mach-artpec
1877 F:      drivers/clk/axis
1878 F:      drivers/crypto/axis
1879 F:      drivers/mmc/host/usdhi6rol0.c
1880 F:      drivers/pinctrl/pinctrl-artpec*
1881
1882 ARM/ASPEED I2C DRIVER
1883 M:      Brendan Higgins <brendanhiggins@google.com>
1884 R:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
1885 R:      Joel Stanley <joel@jms.id.au>
1886 L:      linux-i2c@vger.kernel.org
1887 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
1888 S:      Maintained
1889 F:      Documentation/devicetree/bindings/i2c/aspeed,i2c.yaml
1890 F:      Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2400-i2c-ic.txt
1891 F:      drivers/i2c/busses/i2c-aspeed.c
1892 F:      drivers/irqchip/irq-aspeed-i2c-ic.c
1893
1894 ARM/ASPEED MACHINE SUPPORT
1895 M:      Joel Stanley <joel@jms.id.au>
1896 R:      Andrew Jeffery <andrew@aj.id.au>
1897 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1898 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
1899 S:      Supported
1900 Q:      https://patchwork.ozlabs.org/project/linux-aspeed/list/
1901 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joel/aspeed.git
1902 F:      Documentation/devicetree/bindings/arm/aspeed/
1903 F:      arch/arm/boot/dts/aspeed-*
1904 F:      arch/arm/mach-aspeed/
1905 N:      aspeed
1906
1907 ARM/BITMAIN ARCHITECTURE
1908 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
1909 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1910 S:      Maintained
1911 F:      Documentation/devicetree/bindings/arm/bitmain.yaml
1912 F:      Documentation/devicetree/bindings/clock/bitmain,bm1880-clk.yaml
1913 F:      Documentation/devicetree/bindings/pinctrl/bitmain,bm1880-pinctrl.txt
1914 F:      arch/arm64/boot/dts/bitmain/
1915 F:      drivers/clk/clk-bm1880.c
1916 F:      drivers/pinctrl/pinctrl-bm1880.c
1917
1918 ARM/CALXEDA HIGHBANK ARCHITECTURE
1919 M:      Andre Przywara <andre.przywara@arm.com>
1920 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1921 S:      Maintained
1922 F:      arch/arm/boot/dts/ecx-*.dts*
1923 F:      arch/arm/boot/dts/highbank.dts
1924 F:      arch/arm/mach-highbank/
1925
1926 ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
1927 M:      Krzysztof Halasa <khalasa@piap.pl>
1928 S:      Maintained
1929 F:      arch/arm/mach-cns3xxx/
1930
1931 ARM/CAVIUM THUNDER NETWORK DRIVER
1932 M:      Sunil Goutham <sgoutham@marvell.com>
1933 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1934 S:      Supported
1935 F:      drivers/net/ethernet/cavium/thunder/
1936
1937 ARM/CIRRUS LOGIC BK3 MACHINE SUPPORT
1938 M:      Lukasz Majewski <lukma@denx.de>
1939 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1940 S:      Maintained
1941 F:      arch/arm/mach-ep93xx/ts72xx.c
1942
1943 ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
1944 M:      Alexander Shiyan <shc_work@mail.ru>
1945 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1946 S:      Odd Fixes
1947 N:      clps711x
1948
1949 ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
1950 M:      Lennert Buytenhek <kernel@wantstofly.org>
1951 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1952 S:      Maintained
1953
1954 ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
1955 M:      Hartley Sweeten <hsweeten@visionengravers.com>
1956 M:      Alexander Sverdlin <alexander.sverdlin@gmail.com>
1957 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1958 S:      Maintained
1959 F:      arch/arm/mach-ep93xx/
1960 F:      arch/arm/mach-ep93xx/include/mach/
1961
1962 ARM/CLKDEV SUPPORT
1963 M:      Russell King <linux@armlinux.org.uk>
1964 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1965 S:      Maintained
1966 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git clkdev
1967 F:      drivers/clk/clkdev.c
1968
1969 ARM/CONEXANT DIGICOLOR MACHINE SUPPORT
1970 M:      Baruch Siach <baruch@tkos.co.il>
1971 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1972 S:      Maintained
1973 F:      arch/arm/boot/dts/cx92755*
1974 N:      digicolor
1975
1976 ARM/CONTEC MICRO9 MACHINE SUPPORT
1977 M:      Hubert Feurstein <hubert.feurstein@contec.at>
1978 S:      Maintained
1979 F:      arch/arm/mach-ep93xx/micro9.c
1980
1981 ARM/CORESIGHT FRAMEWORK AND DRIVERS
1982 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
1983 M:      Suzuki K Poulose <suzuki.poulose@arm.com>
1984 R:      Mike Leach <mike.leach@linaro.org>
1985 R:      Leo Yan <leo.yan@linaro.org>
1986 L:      coresight@lists.linaro.org (moderated for non-subscribers)
1987 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1988 S:      Maintained
1989 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/coresight/linux.git
1990 F:      Documentation/ABI/testing/sysfs-bus-coresight-devices-*
1991 F:      Documentation/devicetree/bindings/arm/coresight-cpu-debug.txt
1992 F:      Documentation/devicetree/bindings/arm/coresight-cti.yaml
1993 F:      Documentation/devicetree/bindings/arm/coresight.txt
1994 F:      Documentation/devicetree/bindings/arm/ete.yaml
1995 F:      Documentation/devicetree/bindings/arm/trbe.yaml
1996 F:      Documentation/trace/coresight/*
1997 F:      drivers/hwtracing/coresight/*
1998 F:      include/dt-bindings/arm/coresight-cti-dt.h
1999 F:      include/linux/coresight*
2000 F:      samples/coresight/*
2001 F:      tools/perf/arch/arm/util/auxtrace.c
2002 F:      tools/perf/arch/arm/util/cs-etm.c
2003 F:      tools/perf/arch/arm/util/cs-etm.h
2004 F:      tools/perf/arch/arm/util/pmu.c
2005 F:      tools/perf/util/cs-etm-decoder/*
2006 F:      tools/perf/util/cs-etm.*
2007
2008 ARM/CORGI MACHINE SUPPORT
2009 M:      Richard Purdie <rpurdie@rpsys.net>
2010 S:      Maintained
2011
2012 ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
2013 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
2014 M:      Linus Walleij <linus.walleij@linaro.org>
2015 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2016 S:      Maintained
2017 T:      git git://github.com/ulli-kroll/linux.git
2018 F:      Documentation/devicetree/bindings/arm/gemini.yaml
2019 F:      Documentation/devicetree/bindings/net/cortina,gemini-ethernet.yaml
2020 F:      Documentation/devicetree/bindings/pinctrl/cortina,gemini-pinctrl.txt
2021 F:      Documentation/devicetree/bindings/rtc/faraday,ftrtc010.yaml
2022 F:      arch/arm/boot/dts/gemini*
2023 F:      arch/arm/mach-gemini/
2024 F:      drivers/crypto/gemini/
2025 F:      drivers/net/ethernet/cortina/
2026 F:      drivers/pinctrl/pinctrl-gemini.c
2027 F:      drivers/rtc/rtc-ftrtc010.c
2028
2029 ARM/CZ.NIC TURRIS SUPPORT
2030 M:      Marek Behún <kabel@kernel.org>
2031 S:      Maintained
2032 W:      https://www.turris.cz/
2033 F:      Documentation/ABI/testing/debugfs-moxtet
2034 F:      Documentation/ABI/testing/sysfs-bus-moxtet-devices
2035 F:      Documentation/ABI/testing/sysfs-firmware-turris-mox-rwtm
2036 F:      Documentation/devicetree/bindings/bus/moxtet.txt
2037 F:      Documentation/devicetree/bindings/firmware/cznic,turris-mox-rwtm.txt
2038 F:      Documentation/devicetree/bindings/gpio/gpio-moxtet.txt
2039 F:      Documentation/devicetree/bindings/leds/cznic,turris-omnia-leds.yaml
2040 F:      Documentation/devicetree/bindings/watchdog/armada-37xx-wdt.txt
2041 F:      drivers/bus/moxtet.c
2042 F:      drivers/firmware/turris-mox-rwtm.c
2043 F:      drivers/leds/leds-turris-omnia.c
2044 F:      drivers/mailbox/armada-37xx-rwtm-mailbox.c
2045 F:      drivers/gpio/gpio-moxtet.c
2046 F:      drivers/watchdog/armada_37xx_wdt.c
2047 F:      include/dt-bindings/bus/moxtet.h
2048 F:      include/linux/armada-37xx-rwtm-mailbox.h
2049 F:      include/linux/moxtet.h
2050
2051 ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
2052 M:      Robert Jarzmik <robert.jarzmik@free.fr>
2053 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2054 S:      Maintained
2055 F:      arch/arm/mach-pxa/ezx.c
2056
2057 ARM/FARADAY FA526 PORT
2058 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
2059 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2060 S:      Maintained
2061 T:      git git://git.berlios.de/gemini-board
2062 F:      arch/arm/mm/*-fa*
2063
2064 ARM/FOOTBRIDGE ARCHITECTURE
2065 M:      Russell King <linux@armlinux.org.uk>
2066 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2067 S:      Maintained
2068 W:      http://www.armlinux.org.uk/
2069 F:      arch/arm/include/asm/hardware/dec21285.h
2070 F:      arch/arm/mach-footbridge/
2071
2072 ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
2073 M:      Shawn Guo <shawnguo@kernel.org>
2074 M:      Sascha Hauer <s.hauer@pengutronix.de>
2075 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
2076 R:      Fabio Estevam <festevam@gmail.com>
2077 R:      NXP Linux Team <linux-imx@nxp.com>
2078 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2079 S:      Maintained
2080 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
2081 X:      drivers/media/i2c/
2082 N:      imx
2083 N:      mxs
2084
2085 ARM/FREESCALE LAYERSCAPE ARM ARCHITECTURE
2086 M:      Shawn Guo <shawnguo@kernel.org>
2087 M:      Li Yang <leoyang.li@nxp.com>
2088 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2089 S:      Maintained
2090 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
2091 F:      arch/arm/boot/dts/ls1021a*
2092 F:      arch/arm64/boot/dts/freescale/fsl-*
2093 F:      arch/arm64/boot/dts/freescale/qoriq-*
2094
2095 ARM/FREESCALE VYBRID ARM ARCHITECTURE
2096 M:      Shawn Guo <shawnguo@kernel.org>
2097 M:      Sascha Hauer <s.hauer@pengutronix.de>
2098 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
2099 R:      Stefan Agner <stefan@agner.ch>
2100 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2101 S:      Maintained
2102 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
2103 F:      arch/arm/boot/dts/vf*
2104 F:      arch/arm/mach-imx/*vf610*
2105
2106 ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
2107 M:      Lennert Buytenhek <kernel@wantstofly.org>
2108 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2109 S:      Maintained
2110
2111 ARM/GUMSTIX MACHINE SUPPORT
2112 M:      Steve Sakoman <sakoman@gmail.com>
2113 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2114 S:      Maintained
2115
2116 ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
2117 M:      Philipp Zabel <philipp.zabel@gmail.com>
2118 M:      Paul Parsons <lost.distance@yahoo.com>
2119 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2120 S:      Maintained
2121 F:      arch/arm/mach-pxa/hx4700.c
2122 F:      arch/arm/mach-pxa/include/mach/hx4700.h
2123 F:      sound/soc/pxa/hx4700.c
2124
2125 ARM/HISILICON SOC SUPPORT
2126 M:      Wei Xu <xuwei5@hisilicon.com>
2127 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2128 S:      Supported
2129 W:      http://www.hisilicon.com
2130 T:      git git://github.com/hisilicon/linux-hisi.git
2131 F:      arch/arm/boot/dts/hi3*
2132 F:      arch/arm/boot/dts/hip*
2133 F:      arch/arm/boot/dts/hisi*
2134 F:      arch/arm/mach-hisi/
2135 F:      arch/arm64/boot/dts/hisilicon/
2136
2137 ARM/HP JORNADA 7XX MACHINE SUPPORT
2138 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
2139 S:      Maintained
2140 W:      www.jlime.com
2141 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
2142 F:      arch/arm/mach-sa1100/include/mach/jornada720.h
2143 F:      arch/arm/mach-sa1100/jornada720.c
2144
2145 ARM/HPE GXP ARCHITECTURE
2146 M:      Jean-Marie Verdun <verdun@hpe.com>
2147 M:      Nick Hawkins <nick.hawkins@hpe.com>
2148 S:      Maintained
2149 F:      Documentation/devicetree/bindings/arm/hpe,gxp.yaml
2150 F:      Documentation/devicetree/bindings/spi/hpe,gxp-spi.yaml
2151 F:      Documentation/devicetree/bindings/timer/hpe,gxp-timer.yaml
2152 F:      arch/arm/boot/dts/hpe-bmc*
2153 F:      arch/arm/boot/dts/hpe-gxp*
2154 F:      arch/arm/mach-hpe/
2155 F:      drivers/clocksource/timer-gxp.c
2156 F:      drivers/spi/spi-gxp.c
2157 F:      drivers/watchdog/gxp-wdt.c
2158
2159 ARM/IGEP MACHINE SUPPORT
2160 M:      Enric Balletbo i Serra <eballetbo@gmail.com>
2161 M:      Javier Martinez Canillas <javier@dowhile0.org>
2162 L:      linux-omap@vger.kernel.org
2163 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2164 S:      Maintained
2165 F:      arch/arm/boot/dts/omap3-igep*
2166
2167 ARM/INCOME PXA270 SUPPORT
2168 M:      Marek Vasut <marek.vasut@gmail.com>
2169 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2170 S:      Maintained
2171 F:      arch/arm/mach-pxa/colibri-pxa270-income.c
2172
2173 ARM/INTEL IOP32X ARM ARCHITECTURE
2174 M:      Lennert Buytenhek <kernel@wantstofly.org>
2175 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2176 S:      Maintained
2177
2178 ARM/INTEL IQ81342EX MACHINE SUPPORT
2179 M:      Lennert Buytenhek <kernel@wantstofly.org>
2180 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2181 S:      Maintained
2182
2183 ARM/INTEL IXDP2850 MACHINE SUPPORT
2184 M:      Lennert Buytenhek <kernel@wantstofly.org>
2185 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2186 S:      Maintained
2187
2188 ARM/INTEL IXP4XX ARM ARCHITECTURE
2189 M:      Linus Walleij <linusw@kernel.org>
2190 M:      Imre Kaloz <kaloz@openwrt.org>
2191 M:      Krzysztof Halasa <khalasa@piap.pl>
2192 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2193 S:      Maintained
2194 F:      Documentation/devicetree/bindings/arm/intel-ixp4xx.yaml
2195 F:      Documentation/devicetree/bindings/bus/intel,ixp4xx-expansion-bus-controller.yaml
2196 F:      Documentation/devicetree/bindings/gpio/intel,ixp4xx-gpio.txt
2197 F:      Documentation/devicetree/bindings/interrupt-controller/intel,ixp4xx-interrupt.yaml
2198 F:      Documentation/devicetree/bindings/timer/intel,ixp4xx-timer.yaml
2199 F:      arch/arm/mach-ixp4xx/
2200 F:      drivers/bus/intel-ixp4xx-eb.c
2201 F:      drivers/clocksource/timer-ixp4xx.c
2202 F:      drivers/crypto/ixp4xx_crypto.c
2203 F:      drivers/gpio/gpio-ixp4xx.c
2204 F:      drivers/irqchip/irq-ixp4xx.c
2205 F:      include/linux/irqchip/irq-ixp4xx.h
2206 F:      include/linux/platform_data/timer-ixp4xx.h
2207
2208 ARM/INTEL KEEMBAY ARCHITECTURE
2209 M:      Paul J. Murphy <paul.j.murphy@intel.com>
2210 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
2211 S:      Maintained
2212 F:      Documentation/devicetree/bindings/arm/intel,keembay.yaml
2213 F:      arch/arm64/boot/dts/intel/keembay-evm.dts
2214 F:      arch/arm64/boot/dts/intel/keembay-soc.dtsi
2215
2216 ARM/INTEL XSC3 (MANZANO) ARM CORE
2217 M:      Lennert Buytenhek <kernel@wantstofly.org>
2218 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2219 S:      Maintained
2220
2221 ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
2222 M:      Lennert Buytenhek <kernel@wantstofly.org>
2223 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2224 S:      Maintained
2225
2226 ARM/LG1K ARCHITECTURE
2227 M:      Chanho Min <chanho.min@lge.com>
2228 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2229 S:      Maintained
2230 F:      arch/arm64/boot/dts/lg/
2231
2232 ARM/LOGICPD PXA270 MACHINE SUPPORT
2233 M:      Lennert Buytenhek <kernel@wantstofly.org>
2234 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2235 S:      Maintained
2236
2237 ARM/LPC18XX ARCHITECTURE
2238 M:      Vladimir Zapolskiy <vz@mleia.com>
2239 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2240 S:      Maintained
2241 F:      Documentation/devicetree/bindings/i2c/i2c-lpc2k.txt
2242 F:      arch/arm/boot/dts/lpc43*
2243 F:      drivers/i2c/busses/i2c-lpc2k.c
2244 F:      drivers/memory/pl172.c
2245 F:      drivers/mtd/spi-nor/controllers/nxp-spifi.c
2246 F:      drivers/rtc/rtc-lpc24xx.c
2247 N:      lpc18xx
2248
2249 ARM/LPC32XX SOC SUPPORT
2250 M:      Vladimir Zapolskiy <vz@mleia.com>
2251 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2252 S:      Maintained
2253 T:      git git://github.com/vzapolskiy/linux-lpc32xx.git
2254 F:      Documentation/devicetree/bindings/i2c/i2c-pnx.txt
2255 F:      arch/arm/boot/dts/lpc32*
2256 F:      arch/arm/mach-lpc32xx/
2257 F:      drivers/i2c/busses/i2c-pnx.c
2258 F:      drivers/net/ethernet/nxp/lpc_eth.c
2259 F:      drivers/usb/host/ohci-nxp.c
2260 F:      drivers/watchdog/pnx4008_wdt.c
2261 N:      lpc32xx
2262
2263 ARM/MAGICIAN MACHINE SUPPORT
2264 M:      Philipp Zabel <philipp.zabel@gmail.com>
2265 S:      Maintained
2266
2267 ARM/Marvell Dove/MV78xx0/Orion SOC support
2268 M:      Andrew Lunn <andrew@lunn.ch>
2269 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2270 M:      Gregory Clement <gregory.clement@bootlin.com>
2271 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2272 S:      Maintained
2273 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gclement/mvebu.git
2274 F:      Documentation/devicetree/bindings/soc/dove/
2275 F:      arch/arm/boot/dts/dove*
2276 F:      arch/arm/boot/dts/orion5x*
2277 F:      arch/arm/mach-dove/
2278 F:      arch/arm/mach-mv78xx0/
2279 F:      arch/arm/mach-orion5x/
2280 F:      arch/arm/plat-orion/
2281 F:      drivers/soc/dove/
2282
2283 ARM/Marvell Kirkwood and Armada 370, 375, 38x, 39x, XP, 3700, 7K/8K, CN9130 SOC support
2284 M:      Andrew Lunn <andrew@lunn.ch>
2285 M:      Gregory Clement <gregory.clement@bootlin.com>
2286 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2287 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2288 S:      Maintained
2289 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gclement/mvebu.git
2290 F:      arch/arm/boot/dts/armada*
2291 F:      arch/arm/boot/dts/kirkwood*
2292 F:      arch/arm/configs/mvebu_*_defconfig
2293 F:      arch/arm/mach-mvebu/
2294 F:      arch/arm64/boot/dts/marvell/armada*
2295 F:      arch/arm64/boot/dts/marvell/cn913*
2296 F:      drivers/cpufreq/armada-37xx-cpufreq.c
2297 F:      drivers/cpufreq/armada-8k-cpufreq.c
2298 F:      drivers/cpufreq/mvebu-cpufreq.c
2299 F:      drivers/irqchip/irq-armada-370-xp.c
2300 F:      drivers/irqchip/irq-mvebu-*
2301 F:      drivers/pinctrl/mvebu/
2302 F:      drivers/rtc/rtc-armada38x.c
2303
2304 ARM/Mediatek RTC DRIVER
2305 M:      Eddie Huang <eddie.huang@mediatek.com>
2306 M:      Sean Wang <sean.wang@mediatek.com>
2307 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2308 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2309 S:      Maintained
2310 F:      Documentation/devicetree/bindings/rtc/rtc-mt2712.txt
2311 F:      Documentation/devicetree/bindings/rtc/rtc-mt7622.txt
2312 F:      drivers/rtc/rtc-mt2712.c
2313 F:      drivers/rtc/rtc-mt6397.c
2314 F:      drivers/rtc/rtc-mt7622.c
2315
2316 ARM/Mediatek SoC support
2317 M:      Matthias Brugger <matthias.bgg@gmail.com>
2318 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2319 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2320 S:      Maintained
2321 W:      https://mtk.wiki.kernel.org/
2322 C:      irc://chat.freenode.net/linux-mediatek
2323 F:      arch/arm/boot/dts/mt6*
2324 F:      arch/arm/boot/dts/mt7*
2325 F:      arch/arm/boot/dts/mt8*
2326 F:      arch/arm/mach-mediatek/
2327 F:      arch/arm64/boot/dts/mediatek/
2328 F:      drivers/soc/mediatek/
2329 N:      mtk
2330 N:      mt[678]
2331 K:      mediatek
2332
2333 ARM/Mediatek USB3 PHY DRIVER
2334 M:      Chunfeng Yun <chunfeng.yun@mediatek.com>
2335 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2336 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2337 S:      Maintained
2338 F:      Documentation/devicetree/bindings/phy/mediatek,*
2339 F:      drivers/phy/mediatek/
2340
2341 ARM/Microchip (AT91) SoC support
2342 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
2343 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
2344 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
2345 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2346 S:      Supported
2347 W:      http://www.linux4sam.org
2348 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/at91/linux.git
2349 F:      arch/arm/boot/dts/at91*.dts
2350 F:      arch/arm/boot/dts/at91*.dtsi
2351 F:      arch/arm/boot/dts/sama*.dts
2352 F:      arch/arm/boot/dts/sama*.dtsi
2353 F:      arch/arm/include/debug/at91.S
2354 F:      arch/arm/mach-at91/
2355 F:      drivers/memory/atmel*
2356 F:      drivers/watchdog/sama5d4_wdt.c
2357 F:      include/soc/at91/
2358 X:      drivers/input/touchscreen/atmel_mxt_ts.c
2359 X:      drivers/net/wireless/atmel/
2360 N:      at91
2361 N:      atmel
2362
2363 ARM/Microchip Sparx5 SoC support
2364 M:      Lars Povlsen <lars.povlsen@microchip.com>
2365 M:      Steen Hegelund <Steen.Hegelund@microchip.com>
2366 M:      UNGLinuxDriver@microchip.com
2367 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2368 S:      Supported
2369 T:      git git://github.com/microchip-ung/linux-upstream.git
2370 F:      arch/arm64/boot/dts/microchip/
2371 F:      drivers/pinctrl/pinctrl-microchip-sgpio.c
2372 N:      sparx5
2373
2374 Microchip Timer Counter Block (TCB) Capture Driver
2375 M:      Kamel Bouhara <kamel.bouhara@bootlin.com>
2376 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2377 L:      linux-iio@vger.kernel.org
2378 S:      Maintained
2379 F:      drivers/counter/microchip-tcb-capture.c
2380
2381 ARM/MILBEAUT ARCHITECTURE
2382 M:      Taichi Sugaya <sugaya.taichi@socionext.com>
2383 M:      Takao Orito <orito.takao@socionext.com>
2384 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2385 S:      Maintained
2386 F:      arch/arm/boot/dts/milbeaut*
2387 F:      arch/arm/mach-milbeaut/
2388 N:      milbeaut
2389
2390 ARM/MIOA701 MACHINE SUPPORT
2391 M:      Robert Jarzmik <robert.jarzmik@free.fr>
2392 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2393 S:      Maintained
2394 F:      arch/arm/mach-pxa/mioa701.c
2395
2396 ARM/MStar/Sigmastar Armv7 SoC support
2397 M:      Daniel Palmer <daniel@thingy.jp>
2398 M:      Romain Perier <romain.perier@gmail.com>
2399 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2400 S:      Maintained
2401 W:      http://linux-chenxing.org/
2402 T:      git git://github.com/linux-chenxing/linux.git
2403 F:      Documentation/devicetree/bindings/arm/mstar/*
2404 F:      Documentation/devicetree/bindings/clock/mstar,msc313-mpll.yaml
2405 F:      Documentation/devicetree/bindings/gpio/mstar,msc313-gpio.yaml
2406 F:      arch/arm/boot/dts/mstar-*
2407 F:      arch/arm/mach-mstar/
2408 F:      drivers/clk/mstar/
2409 F:      drivers/clocksource/timer-msc313e.c
2410 F:      drivers/gpio/gpio-msc313.c
2411 F:      drivers/rtc/rtc-msc313.c
2412 F:      drivers/watchdog/msc313e_wdt.c
2413 F:      include/dt-bindings/clock/mstar-*
2414 F:      include/dt-bindings/gpio/msc313-gpio.h
2415
2416 ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
2417 M:      Michael Petchkovsky <mkpetch@internode.on.net>
2418 S:      Maintained
2419
2420 ARM/NOMADIK/Ux500 ARCHITECTURES
2421 M:      Linus Walleij <linus.walleij@linaro.org>
2422 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2423 S:      Maintained
2424 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
2425 F:      Documentation/devicetree/bindings/arm/ste-*
2426 F:      Documentation/devicetree/bindings/arm/ux500.yaml
2427 F:      Documentation/devicetree/bindings/arm/ux500/
2428 F:      Documentation/devicetree/bindings/i2c/i2c-nomadik.txt
2429 F:      arch/arm/boot/dts/ste-*
2430 F:      arch/arm/mach-nomadik/
2431 F:      arch/arm/mach-ux500/
2432 F:      drivers/clk/clk-nomadik.c
2433 F:      drivers/clocksource/clksrc-dbx500-prcmu.c
2434 F:      drivers/dma/ste_dma40*
2435 F:      drivers/hwspinlock/u8500_hsem.c
2436 F:      drivers/i2c/busses/i2c-nomadik.c
2437 F:      drivers/iio/adc/ab8500-gpadc.c
2438 F:      drivers/mfd/ab8500*
2439 F:      drivers/mfd/abx500*
2440 F:      drivers/mfd/db8500*
2441 F:      drivers/pinctrl/nomadik/
2442 F:      drivers/rtc/rtc-ab8500.c
2443 F:      drivers/rtc/rtc-pl031.c
2444 F:      drivers/soc/ux500/
2445
2446 ARM/NUVOTON NPCM ARCHITECTURE
2447 M:      Avi Fishman <avifishman70@gmail.com>
2448 M:      Tomer Maimon <tmaimon77@gmail.com>
2449 M:      Tali Perry <tali.perry1@gmail.com>
2450 R:      Patrick Venture <venture@google.com>
2451 R:      Nancy Yuen <yuenn@google.com>
2452 R:      Benjamin Fair <benjaminfair@google.com>
2453 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2454 S:      Supported
2455 F:      Documentation/devicetree/bindings/*/*/*npcm*
2456 F:      Documentation/devicetree/bindings/*/*npcm*
2457 F:      Documentation/devicetree/bindings/arm/npcm/*
2458 F:      arch/arm/boot/dts/nuvoton-npcm*
2459 F:      arch/arm/mach-npcm/
2460 F:      arch/arm64/boot/dts/nuvoton/
2461 F:      drivers/*/*npcm*
2462 F:      drivers/*/*/*npcm*
2463 F:      include/dt-bindings/clock/nuvoton,npcm7xx-clock.h
2464 F:      include/dt-bindings/clock/nuvoton,npcm845-clk.h
2465
2466 ARM/NUVOTON WPCM450 ARCHITECTURE
2467 M:      Jonathan Neuschäfer <j.neuschaefer@gmx.net>
2468 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2469 S:      Maintained
2470 W:      https://github.com/neuschaefer/wpcm450/wiki
2471 F:      Documentation/devicetree/bindings/*/*wpcm*
2472 F:      arch/arm/boot/dts/nuvoton-wpcm450*
2473 F:      arch/arm/mach-npcm/wpcm450.c
2474 F:      drivers/*/*/*wpcm*
2475 F:      drivers/*/*wpcm*
2476
2477 ARM/NXP S32G ARCHITECTURE
2478 M:      Chester Lin <clin@suse.com>
2479 R:      Andreas Färber <afaerber@suse.de>
2480 R:      Matthias Brugger <mbrugger@suse.com>
2481 R:      NXP S32 Linux Team <s32@nxp.com>
2482 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2483 S:      Maintained
2484 F:      arch/arm64/boot/dts/freescale/s32g*.dts*
2485
2486 ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
2487 L:      openmoko-kernel@lists.openmoko.org (subscribers-only)
2488 S:      Orphan
2489 W:      http://wiki.openmoko.org/wiki/Neo_FreeRunner
2490 F:      arch/arm/mach-s3c/gta02.h
2491 F:      arch/arm/mach-s3c/mach-gta02.c
2492
2493 ARM/Orion SoC/Technologic Systems TS-78xx platform support
2494 M:      Alexander Clouter <alex@digriz.org.uk>
2495 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2496 S:      Maintained
2497 W:      http://www.digriz.org.uk/ts78xx/kernel
2498 F:      arch/arm/mach-orion5x/ts78xx-*
2499
2500 ARM/OXNAS platform support
2501 M:      Neil Armstrong <narmstrong@baylibre.com>
2502 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2503 L:      linux-oxnas@groups.io (moderated for non-subscribers)
2504 S:      Maintained
2505 F:      arch/arm/boot/dts/ox8*.dts*
2506 F:      arch/arm/mach-oxnas/
2507 F:      drivers/power/reset/oxnas-restart.c
2508 N:      oxnas
2509
2510 ARM/PALM TREO SUPPORT
2511 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2512 S:      Orphan
2513 F:      arch/arm/mach-pxa/palmtreo.*
2514
2515 ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
2516 M:      Marek Vasut <marek.vasut@gmail.com>
2517 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2518 S:      Maintained
2519 W:      http://hackndev.com
2520 F:      arch/arm/mach-pxa/include/mach/palmld.h
2521 F:      arch/arm/mach-pxa/include/mach/palmtc.h
2522 F:      arch/arm/mach-pxa/include/mach/palmtx.h
2523 F:      arch/arm/mach-pxa/palmld.c
2524 F:      arch/arm/mach-pxa/palmt5.*
2525 F:      arch/arm/mach-pxa/palmtc.c
2526 F:      arch/arm/mach-pxa/palmte2.*
2527 F:      arch/arm/mach-pxa/palmtx.c
2528
2529 ARM/PALMZ72 SUPPORT
2530 M:      Sergey Lapin <slapin@ossfans.org>
2531 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2532 S:      Maintained
2533 W:      http://hackndev.com
2534 F:      arch/arm/mach-pxa/palmz72.*
2535
2536 ARM/PLEB SUPPORT
2537 M:      Peter Chubb <pleb@gelato.unsw.edu.au>
2538 S:      Maintained
2539 W:      http://www.disy.cse.unsw.edu.au/Hardware/PLEB
2540
2541 ARM/PT DIGITAL BOARD PORT
2542 M:      Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
2543 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2544 S:      Maintained
2545 W:      http://www.armlinux.org.uk/
2546
2547 ARM/QUALCOMM SUPPORT
2548 M:      Andy Gross <agross@kernel.org>
2549 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
2550 R:      Konrad Dybcio <konrad.dybcio@somainline.org>
2551 L:      linux-arm-msm@vger.kernel.org
2552 S:      Maintained
2553 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/qcom/linux.git
2554 F:      Documentation/devicetree/bindings/*/qcom*
2555 F:      Documentation/devicetree/bindings/soc/qcom/
2556 F:      arch/arm/boot/dts/qcom-*.dts
2557 F:      arch/arm/boot/dts/qcom-*.dtsi
2558 F:      arch/arm/mach-qcom/
2559 F:      arch/arm64/boot/dts/qcom/
2560 F:      drivers/*/*/qcom*
2561 F:      drivers/*/*/qcom/
2562 F:      drivers/*/pm8???-*
2563 F:      drivers/*/qcom*
2564 F:      drivers/*/qcom/
2565 F:      drivers/bluetooth/btqcomsmd.c
2566 F:      drivers/clocksource/timer-qcom.c
2567 F:      drivers/cpuidle/cpuidle-qcom-spm.c
2568 F:      drivers/extcon/extcon-qcom*
2569 F:      drivers/i2c/busses/i2c-qcom-geni.c
2570 F:      drivers/i2c/busses/i2c-qup.c
2571 F:      drivers/iommu/msm*
2572 F:      drivers/mfd/ssbi.c
2573 F:      drivers/mmc/host/mmci_qcom*
2574 F:      drivers/mmc/host/sdhci-msm.c
2575 F:      drivers/pci/controller/dwc/pcie-qcom.c
2576 F:      drivers/phy/qualcomm/
2577 F:      drivers/power/*/msm*
2578 F:      drivers/reset/reset-qcom-*
2579 F:      drivers/ufs/host/ufs-qcom*
2580 F:      drivers/spi/spi-geni-qcom.c
2581 F:      drivers/spi/spi-qcom-qspi.c
2582 F:      drivers/spi/spi-qup.c
2583 F:      drivers/tty/serial/msm_serial.c
2584 F:      drivers/usb/dwc3/dwc3-qcom.c
2585 F:      include/dt-bindings/*/qcom*
2586 F:      include/linux/*/qcom*
2587 F:      include/linux/soc/qcom/
2588
2589 ARM/RADISYS ENP2611 MACHINE SUPPORT
2590 M:      Lennert Buytenhek <kernel@wantstofly.org>
2591 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2592 S:      Maintained
2593
2594 ARM/RDA MICRO ARCHITECTURE
2595 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
2596 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2597 L:      linux-unisoc@lists.infradead.org (moderated for non-subscribers)
2598 S:      Maintained
2599 F:      Documentation/devicetree/bindings/arm/rda.yaml
2600 F:      Documentation/devicetree/bindings/gpio/gpio-rda.yaml
2601 F:      Documentation/devicetree/bindings/interrupt-controller/rda,8810pl-intc.txt
2602 F:      Documentation/devicetree/bindings/serial/rda,8810pl-uart.yaml
2603 F:      Documentation/devicetree/bindings/timer/rda,8810pl-timer.yaml
2604 F:      arch/arm/boot/dts/rda8810pl-*
2605 F:      drivers/clocksource/timer-rda.c
2606 F:      drivers/gpio/gpio-rda.c
2607 F:      drivers/irqchip/irq-rda-intc.c
2608 F:      drivers/tty/serial/rda-uart.c
2609
2610 ARM/REALTEK ARCHITECTURE
2611 M:      Andreas Färber <afaerber@suse.de>
2612 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2613 L:      linux-realtek-soc@lists.infradead.org (moderated for non-subscribers)
2614 S:      Maintained
2615 F:      Documentation/devicetree/bindings/arm/realtek.yaml
2616 F:      arch/arm/boot/dts/rtd*
2617 F:      arch/arm/mach-realtek/
2618 F:      arch/arm64/boot/dts/realtek/
2619
2620 ARM/RENESAS ARM64 ARCHITECTURE
2621 M:      Geert Uytterhoeven <geert+renesas@glider.be>
2622 M:      Magnus Damm <magnus.damm@gmail.com>
2623 L:      linux-renesas-soc@vger.kernel.org
2624 S:      Supported
2625 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
2626 C:      irc://irc.libera.chat/renesas-soc
2627 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git next
2628 F:      Documentation/devicetree/bindings/arm/renesas.yaml
2629 F:      Documentation/devicetree/bindings/hwinfo/renesas,prr.yaml
2630 F:      Documentation/devicetree/bindings/soc/renesas/
2631 F:      arch/arm64/boot/dts/renesas/
2632 F:      drivers/soc/renesas/
2633 F:      include/linux/soc/renesas/
2634
2635 ARM/RISCPC ARCHITECTURE
2636 M:      Russell King <linux@armlinux.org.uk>
2637 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2638 S:      Maintained
2639 W:      http://www.armlinux.org.uk/
2640 F:      arch/arm/include/asm/hardware/entry-macro-iomd.S
2641 F:      arch/arm/include/asm/hardware/ioc.h
2642 F:      arch/arm/include/asm/hardware/iomd.h
2643 F:      arch/arm/include/asm/hardware/memc.h
2644 F:      arch/arm/mach-rpc/
2645 F:      drivers/net/ethernet/8390/etherh.c
2646 F:      drivers/net/ethernet/i825xx/ether1*
2647 F:      drivers/net/ethernet/seeq/ether3*
2648 F:      drivers/scsi/arm/
2649
2650 ARM/Rockchip SoC support
2651 M:      Heiko Stuebner <heiko@sntech.de>
2652 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2653 L:      linux-rockchip@lists.infradead.org
2654 S:      Maintained
2655 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmind/linux-rockchip.git
2656 F:      Documentation/devicetree/bindings/i2c/i2c-rk3x.yaml
2657 F:      Documentation/devicetree/bindings/mmc/rockchip-dw-mshc.yaml
2658 F:      Documentation/devicetree/bindings/spi/spi-rockchip.yaml
2659 F:      arch/arm/boot/dts/rk3*
2660 F:      arch/arm/boot/dts/rv1108*
2661 F:      arch/arm/mach-rockchip/
2662 F:      drivers/*/*/*rockchip*
2663 F:      drivers/*/*rockchip*
2664 F:      drivers/clk/rockchip/
2665 F:      drivers/i2c/busses/i2c-rk3x.c
2666 F:      sound/soc/rockchip/
2667 N:      rockchip
2668
2669 ARM/SAMSUNG S3C, S5P AND EXYNOS ARM ARCHITECTURES
2670 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
2671 R:      Alim Akhtar <alim.akhtar@samsung.com>
2672 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2673 L:      linux-samsung-soc@vger.kernel.org
2674 S:      Maintained
2675 C:      irc://irc.libera.chat/linux-exynos
2676 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
2677 B:      mailto:linux-samsung-soc@vger.kernel.org
2678 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/krzk/linux.git
2679 F:      Documentation/arm/samsung/
2680 F:      Documentation/devicetree/bindings/arm/samsung/
2681 F:      Documentation/devicetree/bindings/power/pd-samsung.yaml
2682 F:      Documentation/devicetree/bindings/soc/samsung/
2683 F:      arch/arm/boot/dts/exynos*
2684 F:      arch/arm/boot/dts/s3c*
2685 F:      arch/arm/boot/dts/s5p*
2686 F:      arch/arm/mach-exynos*/
2687 F:      arch/arm/mach-s3c/
2688 F:      arch/arm/mach-s5p*/
2689 F:      arch/arm64/boot/dts/exynos/
2690 F:      drivers/*/*/*s3c24*
2691 F:      drivers/*/*s3c24*
2692 F:      drivers/*/*s3c64xx*
2693 F:      drivers/*/*s5pv210*
2694 F:      drivers/clocksource/samsung_pwm_timer.c
2695 F:      drivers/memory/samsung/
2696 F:      drivers/pwm/pwm-samsung.c
2697 F:      drivers/soc/samsung/
2698 F:      drivers/tty/serial/samsung*
2699 F:      include/clocksource/samsung_pwm.h
2700 F:      include/linux/platform_data/*s3c*
2701 F:      include/linux/serial_s3c.h
2702 F:      include/linux/soc/samsung/
2703 N:      exynos
2704 N:      s3c2410
2705 N:      s3c64xx
2706 N:      s5pv210
2707
2708 ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT
2709 M:      Łukasz Stelmach <l.stelmach@samsung.com>
2710 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2711 L:      linux-media@vger.kernel.org
2712 S:      Maintained
2713 F:      drivers/media/platform/samsung/s5p-g2d/
2714
2715 ARM/SAMSUNG S5P SERIES HDMI CEC SUBSYSTEM SUPPORT
2716 M:      Marek Szyprowski <m.szyprowski@samsung.com>
2717 L:      linux-samsung-soc@vger.kernel.org
2718 L:      linux-media@vger.kernel.org
2719 S:      Maintained
2720 F:      Documentation/devicetree/bindings/media/s5p-cec.txt
2721 F:      drivers/media/cec/platform/s5p/
2722
2723 ARM/SAMSUNG S5P SERIES JPEG CODEC SUPPORT
2724 M:      Andrzej Pietrasiewicz <andrzejtp2010@gmail.com>
2725 M:      Jacek Anaszewski <jacek.anaszewski@gmail.com>
2726 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
2727 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2728 L:      linux-media@vger.kernel.org
2729 S:      Maintained
2730 F:      drivers/media/platform/samsung/s5p-jpeg/
2731
2732 ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
2733 M:      Marek Szyprowski <m.szyprowski@samsung.com>
2734 M:      Andrzej Hajda <andrzej.hajda@intel.com>
2735 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2736 L:      linux-media@vger.kernel.org
2737 S:      Maintained
2738 F:      drivers/media/platform/samsung/s5p-mfc/
2739
2740 ARM/SHMOBILE ARM ARCHITECTURE
2741 M:      Geert Uytterhoeven <geert+renesas@glider.be>
2742 M:      Magnus Damm <magnus.damm@gmail.com>
2743 L:      linux-renesas-soc@vger.kernel.org
2744 S:      Supported
2745 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
2746 C:      irc://irc.libera.chat/renesas-soc
2747 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git next
2748 F:      Documentation/devicetree/bindings/arm/renesas.yaml
2749 F:      Documentation/devicetree/bindings/soc/renesas/
2750 F:      arch/arm/boot/dts/emev2*
2751 F:      arch/arm/boot/dts/gr-peach*
2752 F:      arch/arm/boot/dts/iwg20d-q7*
2753 F:      arch/arm/boot/dts/r7s*
2754 F:      arch/arm/boot/dts/r8a*
2755 F:      arch/arm/boot/dts/r9a*
2756 F:      arch/arm/boot/dts/sh*
2757 F:      arch/arm/configs/shmobile_defconfig
2758 F:      arch/arm/include/debug/renesas-scif.S
2759 F:      arch/arm/mach-shmobile/
2760 F:      drivers/soc/renesas/
2761 F:      include/linux/soc/renesas/
2762
2763 ARM/SOCFPGA ARCHITECTURE
2764 M:      Dinh Nguyen <dinguyen@kernel.org>
2765 S:      Maintained
2766 W:      http://www.rocketboards.org
2767 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
2768 F:      arch/arm/boot/dts/socfpga*
2769 F:      arch/arm/configs/socfpga_defconfig
2770 F:      arch/arm/mach-socfpga/
2771 F:      arch/arm64/boot/dts/altera/
2772 F:      arch/arm64/boot/dts/intel/
2773
2774 ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
2775 M:      Dinh Nguyen <dinguyen@kernel.org>
2776 S:      Maintained
2777 F:      drivers/clk/socfpga/
2778
2779 ARM/SOCFPGA EDAC SUPPORT
2780 M:      Dinh Nguyen <dinguyen@kernel.org>
2781 S:      Maintained
2782 F:      drivers/edac/altera_edac.[ch]
2783
2784 ARM/SPREADTRUM SoC SUPPORT
2785 M:      Orson Zhai <orsonzhai@gmail.com>
2786 M:      Baolin Wang <baolin.wang7@gmail.com>
2787 M:      Chunyan Zhang <zhang.lyra@gmail.com>
2788 S:      Maintained
2789 F:      arch/arm64/boot/dts/sprd
2790 N:      sprd
2791 N:      sc27xx
2792 N:      sc2731
2793
2794 ARM/STI ARCHITECTURE
2795 M:      Patrice Chotard <patrice.chotard@foss.st.com>
2796 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2797 S:      Maintained
2798 W:      http://www.stlinux.com
2799 F:      Documentation/devicetree/bindings/i2c/i2c-st.txt
2800 F:      arch/arm/boot/dts/sti*
2801 F:      arch/arm/mach-sti/
2802 F:      drivers/ata/ahci_st.c
2803 F:      drivers/char/hw_random/st-rng.c
2804 F:      drivers/clocksource/arm_global_timer.c
2805 F:      drivers/clocksource/clksrc_st_lpc.c
2806 F:      drivers/cpufreq/sti-cpufreq.c
2807 F:      drivers/dma/st_fdma*
2808 F:      drivers/i2c/busses/i2c-st.c
2809 F:      drivers/media/platform/st/sti/c8sectpfe/
2810 F:      drivers/media/rc/st_rc.c
2811 F:      drivers/mmc/host/sdhci-st.c
2812 F:      drivers/phy/st/phy-miphy28lp.c
2813 F:      drivers/phy/st/phy-stih407-usb.c
2814 F:      drivers/pinctrl/pinctrl-st.c
2815 F:      drivers/remoteproc/st_remoteproc.c
2816 F:      drivers/remoteproc/st_slim_rproc.c
2817 F:      drivers/reset/sti/
2818 F:      drivers/rtc/rtc-st-lpc.c
2819 F:      drivers/tty/serial/st-asc.c
2820 F:      drivers/usb/dwc3/dwc3-st.c
2821 F:      drivers/usb/host/ehci-st.c
2822 F:      drivers/usb/host/ohci-st.c
2823 F:      drivers/watchdog/st_lpc_wdt.c
2824 F:      include/linux/remoteproc/st_slim_rproc.h
2825
2826 ARM/STM32 ARCHITECTURE
2827 M:      Maxime Coquelin <mcoquelin.stm32@gmail.com>
2828 M:      Alexandre Torgue <alexandre.torgue@foss.st.com>
2829 L:      linux-stm32@st-md-mailman.stormreply.com (moderated for non-subscribers)
2830 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2831 S:      Maintained
2832 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/atorgue/stm32.git stm32-next
2833 F:      arch/arm/boot/dts/stm32*
2834 F:      arch/arm/mach-stm32/
2835 F:      drivers/clocksource/armv7m_systick.c
2836 N:      stm32
2837 N:      stm
2838
2839 ARM/SUNPLUS SP7021 SOC SUPPORT
2840 M:      Qin Jian <qinjian@cqplus1.com>
2841 L:      linux-arm-kernel@lists.infradead.org (moderated for mon-subscribers)
2842 S:      Maintained
2843 W:      https://sunplus-tibbo.atlassian.net/wiki/spaces/doc/overview
2844 F:      Documentation/devicetree/bindings/arm/sunplus,sp7021.yaml
2845 F:      Documentation/devicetree/bindings/clock/sunplus,sp7021-clkc.yaml
2846 F:      Documentation/devicetree/bindings/interrupt-controller/sunplus,sp7021-intc.yaml
2847 F:      Documentation/devicetree/bindings/reset/sunplus,reset.yaml
2848 F:      arch/arm/boot/dts/sunplus-sp7021*.dts*
2849 F:      arch/arm/configs/sp7021_*defconfig
2850 F:      arch/arm/mach-sunplus/
2851 F:      drivers/irqchip/irq-sp7021-intc.c
2852 F:      drivers/reset/reset-sunplus.c
2853 F:      include/dt-bindings/clock/sunplus,sp7021-clkc.h
2854 F:      include/dt-bindings/reset/sunplus,sp7021-reset.h
2855
2856 ARM/Synaptics SoC support
2857 M:      Jisheng Zhang <jszhang@kernel.org>
2858 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2859 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2860 S:      Maintained
2861 F:      arch/arm/boot/dts/berlin*
2862 F:      arch/arm/mach-berlin/
2863 F:      arch/arm64/boot/dts/synaptics/
2864
2865 ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
2866 M:      Lennert Buytenhek <kernel@wantstofly.org>
2867 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2868 S:      Maintained
2869
2870 ARM/TEGRA HDMI CEC SUBSYSTEM SUPPORT
2871 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
2872 L:      linux-tegra@vger.kernel.org
2873 L:      linux-media@vger.kernel.org
2874 S:      Maintained
2875 F:      Documentation/devicetree/bindings/media/tegra-cec.txt
2876 F:      drivers/media/cec/platform/tegra/
2877
2878 ARM/TESLA FSD SoC SUPPORT
2879 M:      Alim Akhtar <alim.akhtar@samsung.com>
2880 M:      linux-fsd@tesla.com
2881 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2882 L:      linux-samsung-soc@vger.kernel.org
2883 S:      Maintained
2884 F:      arch/arm64/boot/dts/tesla*
2885
2886 ARM/TETON BGA MACHINE SUPPORT
2887 M:      "Mark F. Brown" <mark.brown314@gmail.com>
2888 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2889 S:      Maintained
2890
2891 ARM/TEXAS INSTRUMENT AEMIF/EMIF DRIVERS
2892 M:      Santosh Shilimkar <ssantosh@kernel.org>
2893 L:      linux-kernel@vger.kernel.org
2894 S:      Maintained
2895 F:      drivers/memory/*emif*
2896
2897 ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE
2898 M:      Nishanth Menon <nm@ti.com>
2899 M:      Santosh Shilimkar <ssantosh@kernel.org>
2900 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2901 S:      Maintained
2902 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ti/linux.git
2903 F:      arch/arm/boot/dts/keystone-*
2904 F:      arch/arm/mach-keystone/
2905
2906 ARM/TEXAS INSTRUMENT KEYSTONE CLOCK FRAMEWORK
2907 M:      Santosh Shilimkar <ssantosh@kernel.org>
2908 L:      linux-kernel@vger.kernel.org
2909 S:      Maintained
2910 F:      drivers/clk/keystone/
2911
2912 ARM/TEXAS INSTRUMENT KEYSTONE CLOCKSOURCE
2913 M:      Santosh Shilimkar <ssantosh@kernel.org>
2914 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2915 L:      linux-kernel@vger.kernel.org
2916 S:      Maintained
2917 F:      drivers/clocksource/timer-keystone.c
2918
2919 ARM/TEXAS INSTRUMENT KEYSTONE RESET DRIVER
2920 M:      Santosh Shilimkar <ssantosh@kernel.org>
2921 L:      linux-kernel@vger.kernel.org
2922 S:      Maintained
2923 F:      drivers/power/reset/keystone-reset.c
2924
2925 ARM/TEXAS INSTRUMENTS K3 ARCHITECTURE
2926 M:      Nishanth Menon <nm@ti.com>
2927 M:      Vignesh Raghavendra <vigneshr@ti.com>
2928 M:      Tero Kristo <kristo@kernel.org>
2929 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2930 S:      Supported
2931 F:      Documentation/devicetree/bindings/arm/ti/k3.yaml
2932 F:      arch/arm64/boot/dts/ti/Makefile
2933 F:      arch/arm64/boot/dts/ti/k3-*
2934 F:      include/dt-bindings/pinctrl/k3.h
2935
2936 ARM/THECUS N2100 MACHINE SUPPORT
2937 M:      Lennert Buytenhek <kernel@wantstofly.org>
2938 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2939 S:      Maintained
2940
2941 ARM/TOSA MACHINE SUPPORT
2942 M:      Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
2943 M:      Dirk Opfer <dirk@opfer-online.de>
2944 S:      Maintained
2945
2946 ARM/TOSHIBA VISCONTI ARCHITECTURE
2947 M:      Nobuhiro Iwamatsu <nobuhiro1.iwamatsu@toshiba.co.jp>
2948 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2949 S:      Supported
2950 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwamatsu/linux-visconti.git
2951 F:      Documentation/devicetree/bindings/arm/toshiba.yaml
2952 F:      Documentation/devicetree/bindings/clock/toshiba,tmpv770x-pipllct.yaml
2953 F:      Documentation/devicetree/bindings/clock/toshiba,tmpv770x-pismu.yaml
2954 F:      Documentation/devicetree/bindings/net/toshiba,visconti-dwmac.yaml
2955 F:      Documentation/devicetree/bindings/gpio/toshiba,gpio-visconti.yaml
2956 F:      Documentation/devicetree/bindings/pci/toshiba,visconti-pcie.yaml
2957 F:      Documentation/devicetree/bindings/pinctrl/toshiba,visconti-pinctrl.yaml
2958 F:      Documentation/devicetree/bindings/watchdog/toshiba,visconti-wdt.yaml
2959 F:      arch/arm64/boot/dts/toshiba/
2960 F:      drivers/clk/visconti/
2961 F:      drivers/net/ethernet/stmicro/stmmac/dwmac-visconti.c
2962 F:      drivers/gpio/gpio-visconti.c
2963 F:      drivers/pci/controller/dwc/pcie-visconti.c
2964 F:      drivers/pinctrl/visconti/
2965 F:      drivers/watchdog/visconti_wdt.c
2966 N:      visconti
2967
2968 ARM/UNIPHIER ARCHITECTURE
2969 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
2970 M:      Masami Hiramatsu <mhiramat@kernel.org>
2971 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2972 S:      Maintained
2973 F:      Documentation/devicetree/bindings/arm/socionext/uniphier.yaml
2974 F:      Documentation/devicetree/bindings/gpio/socionext,uniphier-gpio.yaml
2975 F:      Documentation/devicetree/bindings/pinctrl/socionext,uniphier-pinctrl.yaml
2976 F:      arch/arm/boot/dts/uniphier*
2977 F:      arch/arm/include/asm/hardware/cache-uniphier.h
2978 F:      arch/arm/mach-uniphier/
2979 F:      arch/arm/mm/cache-uniphier.c
2980 F:      arch/arm64/boot/dts/socionext/uniphier*
2981 F:      drivers/bus/uniphier-system-bus.c
2982 F:      drivers/clk/uniphier/
2983 F:      drivers/dma/uniphier-mdmac.c
2984 F:      drivers/gpio/gpio-uniphier.c
2985 F:      drivers/i2c/busses/i2c-uniphier*
2986 F:      drivers/irqchip/irq-uniphier-aidet.c
2987 F:      drivers/mmc/host/uniphier-sd.c
2988 F:      drivers/pinctrl/uniphier/
2989 F:      drivers/reset/reset-uniphier.c
2990 F:      drivers/tty/serial/8250/8250_uniphier.c
2991 N:      uniphier
2992
2993 ARM/VERSATILE EXPRESS PLATFORM
2994 M:      Liviu Dudau <liviu.dudau@arm.com>
2995 M:      Sudeep Holla <sudeep.holla@arm.com>
2996 M:      Lorenzo Pieralisi <lpieralisi@kernel.org>
2997 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2998 S:      Maintained
2999 F:      */*/*/vexpress*
3000 F:      */*/vexpress*
3001 F:      arch/arm/boot/dts/vexpress*
3002 F:      arch/arm/mach-vexpress/
3003 F:      arch/arm64/boot/dts/arm/
3004 F:      drivers/clk/versatile/clk-vexpress-osc.c
3005 F:      drivers/clocksource/timer-versatile.c
3006 N:      mps2
3007
3008 ARM/VFP SUPPORT
3009 M:      Russell King <linux@armlinux.org.uk>
3010 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3011 S:      Maintained
3012 W:      http://www.armlinux.org.uk/
3013 F:      arch/arm/vfp/
3014
3015 ARM/VOIPAC PXA270 SUPPORT
3016 M:      Marek Vasut <marek.vasut@gmail.com>
3017 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3018 S:      Maintained
3019 F:      arch/arm/mach-pxa/include/mach/vpac270.h
3020 F:      arch/arm/mach-pxa/vpac270.c
3021
3022 ARM/VT8500 ARM ARCHITECTURE
3023 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3024 S:      Orphan
3025 F:      Documentation/devicetree/bindings/i2c/i2c-wmt.txt
3026 F:      arch/arm/mach-vt8500/
3027 F:      drivers/clocksource/timer-vt8500.c
3028 F:      drivers/i2c/busses/i2c-wmt.c
3029 F:      drivers/mmc/host/wmt-sdmmc.c
3030 F:      drivers/pwm/pwm-vt8500.c
3031 F:      drivers/rtc/rtc-vt8500.c
3032 F:      drivers/tty/serial/vt8500_serial.c
3033 F:      drivers/usb/host/ehci-platform.c
3034 F:      drivers/usb/host/uhci-platform.c
3035 F:      drivers/video/fbdev/vt8500lcdfb.*
3036 F:      drivers/video/fbdev/wm8505fb*
3037 F:      drivers/video/fbdev/wmt_ge_rops.*
3038
3039 ARM/ZIPIT Z2 SUPPORT
3040 M:      Marek Vasut <marek.vasut@gmail.com>
3041 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3042 S:      Maintained
3043 F:      arch/arm/mach-pxa/include/mach/z2.h
3044 F:      arch/arm/mach-pxa/z2.c
3045
3046 ARM/ZYNQ ARCHITECTURE
3047 M:      Michal Simek <michal.simek@xilinx.com>
3048 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3049 S:      Supported
3050 W:      http://wiki.xilinx.com
3051 T:      git https://github.com/Xilinx/linux-xlnx.git
3052 F:      Documentation/devicetree/bindings/i2c/cdns,i2c-r1p10.yaml
3053 F:      Documentation/devicetree/bindings/i2c/xlnx,xps-iic-2.00.a.yaml
3054 F:      Documentation/devicetree/bindings/spi/xlnx,zynq-qspi.yaml
3055 F:      arch/arm/mach-zynq/
3056 F:      drivers/clocksource/timer-cadence-ttc.c
3057 F:      drivers/cpuidle/cpuidle-zynq.c
3058 F:      drivers/edac/synopsys_edac.c
3059 F:      drivers/i2c/busses/i2c-cadence.c
3060 F:      drivers/i2c/busses/i2c-xiic.c
3061 F:      drivers/mmc/host/sdhci-of-arasan.c
3062 N:      zynq
3063 N:      xilinx
3064
3065 ARM64 PORT (AARCH64 ARCHITECTURE)
3066 M:      Catalin Marinas <catalin.marinas@arm.com>
3067 M:      Will Deacon <will@kernel.org>
3068 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3069 S:      Maintained
3070 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux.git
3071 F:      Documentation/arm64/
3072 F:      arch/arm64/
3073 F:      tools/testing/selftests/arm64/
3074 X:      arch/arm64/boot/dts/
3075
3076 ARROW SPEEDCHIPS XRS7000 SERIES ETHERNET SWITCH DRIVER
3077 M:      George McCollister <george.mccollister@gmail.com>
3078 L:      netdev@vger.kernel.org
3079 S:      Maintained
3080 F:      Documentation/devicetree/bindings/net/dsa/arrow,xrs700x.yaml
3081 F:      drivers/net/dsa/xrs700x/*
3082 F:      net/dsa/tag_xrs700x.c
3083
3084 AS3645A LED FLASH CONTROLLER DRIVER
3085 M:      Sakari Ailus <sakari.ailus@iki.fi>
3086 L:      linux-leds@vger.kernel.org
3087 S:      Maintained
3088 F:      drivers/leds/flash/leds-as3645a.c
3089
3090 ASAHI KASEI AK7375 LENS VOICE COIL DRIVER
3091 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
3092 L:      linux-media@vger.kernel.org
3093 S:      Maintained
3094 T:      git git://linuxtv.org/media_tree.git
3095 F:      Documentation/devicetree/bindings/media/i2c/ak7375.txt
3096 F:      drivers/media/i2c/ak7375.c
3097
3098 ASAHI KASEI AK8974 DRIVER
3099 M:      Linus Walleij <linus.walleij@linaro.org>
3100 L:      linux-iio@vger.kernel.org
3101 S:      Supported
3102 W:      http://www.akm.com/
3103 F:      drivers/iio/magnetometer/ak8974.c
3104
3105 ASC7621 HARDWARE MONITOR DRIVER
3106 M:      George Joseph <george.joseph@fairview5.com>
3107 L:      linux-hwmon@vger.kernel.org
3108 S:      Maintained
3109 F:      Documentation/hwmon/asc7621.rst
3110 F:      drivers/hwmon/asc7621.c
3111
3112 ASIX AX88796C SPI ETHERNET ADAPTER
3113 M:      Łukasz Stelmach <l.stelmach@samsung.com>
3114 S:      Maintained
3115 F:      Documentation/devicetree/bindings/net/asix,ax88796c.yaml
3116 F:      drivers/net/ethernet/asix/ax88796c_*
3117
3118 ASPEED PECI CONTROLLER
3119 M:      Iwona Winiarska <iwona.winiarska@intel.com>
3120 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
3121 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
3122 S:      Supported
3123 F:      Documentation/devicetree/bindings/peci/peci-aspeed.yaml
3124 F:      drivers/peci/controller/peci-aspeed.c
3125
3126 ASPEED PINCTRL DRIVERS
3127 M:      Andrew Jeffery <andrew@aj.id.au>
3128 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
3129 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
3130 L:      linux-gpio@vger.kernel.org
3131 S:      Maintained
3132 F:      Documentation/devicetree/bindings/pinctrl/aspeed,*
3133 F:      drivers/pinctrl/aspeed/
3134
3135 ASPEED SCU INTERRUPT CONTROLLER DRIVER
3136 M:      Eddie James <eajames@linux.ibm.com>
3137 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
3138 S:      Maintained
3139 F:      Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2xxx-scu-ic.txt
3140 F:      drivers/irqchip/irq-aspeed-scu-ic.c
3141 F:      include/dt-bindings/interrupt-controller/aspeed-scu-ic.h
3142
3143 ASPEED SD/MMC DRIVER
3144 M:      Andrew Jeffery <andrew@aj.id.au>
3145 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
3146 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
3147 L:      linux-mmc@vger.kernel.org
3148 S:      Maintained
3149 F:      Documentation/devicetree/bindings/mmc/aspeed,sdhci.yaml
3150 F:      drivers/mmc/host/sdhci-of-aspeed*
3151
3152 ASPEED SMC SPI DRIVER
3153 M:      Chin-Ting Kuo <chin-ting_kuo@aspeedtech.com>
3154 M:      Cédric Le Goater <clg@kaod.org>
3155 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
3156 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
3157 L:      linux-spi@vger.kernel.org
3158 S:      Maintained
3159 F:      Documentation/devicetree/bindings/spi/aspeed,ast2600-fmc.yaml
3160 F:      drivers/spi/spi-aspeed-smc.c
3161
3162 ASPEED VIDEO ENGINE DRIVER
3163 M:      Eddie James <eajames@linux.ibm.com>
3164 L:      linux-media@vger.kernel.org
3165 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
3166 S:      Maintained
3167 F:      Documentation/devicetree/bindings/media/aspeed-video.txt
3168 F:      drivers/media/platform/aspeed/
3169
3170 ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
3171 M:      Corentin Chary <corentin.chary@gmail.com>
3172 L:      acpi4asus-user@lists.sourceforge.net
3173 L:      platform-driver-x86@vger.kernel.org
3174 S:      Maintained
3175 W:      http://acpi4asus.sf.net
3176 F:      drivers/platform/x86/asus*.c
3177 F:      drivers/platform/x86/eeepc*.c
3178
3179 ASUS TF103C DOCK DRIVER
3180 M:      Hans de Goede <hdegoede@redhat.com>
3181 L:      platform-driver-x86@vger.kernel.org
3182 S:      Maintained
3183 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
3184 F:      drivers/platform/x86/asus-tf103c-dock.c
3185
3186 ASUS WMI HARDWARE MONITOR DRIVER
3187 M:      Ed Brindley <kernel@maidavale.org>
3188 M:      Denis Pauk <pauk.denis@gmail.com>
3189 L:      linux-hwmon@vger.kernel.org
3190 S:      Maintained
3191 F:      drivers/hwmon/asus_wmi_sensors.c
3192
3193 ASUS WMI EC HARDWARE MONITOR DRIVER
3194 M:      Eugene Shalygin <eugene.shalygin@gmail.com>
3195 M:      Denis Pauk <pauk.denis@gmail.com>
3196 L:      linux-hwmon@vger.kernel.org
3197 S:      Maintained
3198 F:      drivers/hwmon/asus_wmi_ec_sensors.c
3199
3200 ASUS EC HARDWARE MONITOR DRIVER
3201 M:      Eugene Shalygin <eugene.shalygin@gmail.com>
3202 L:      linux-hwmon@vger.kernel.org
3203 S:      Maintained
3204 F:      drivers/hwmon/asus-ec-sensors.c
3205
3206 ASUS WIRELESS RADIO CONTROL DRIVER
3207 M:      João Paulo Rechi Vita <jprvita@gmail.com>
3208 L:      platform-driver-x86@vger.kernel.org
3209 S:      Maintained
3210 F:      drivers/platform/x86/asus-wireless.c
3211
3212 ASYMMETRIC KEYS
3213 M:      David Howells <dhowells@redhat.com>
3214 L:      keyrings@vger.kernel.org
3215 S:      Maintained
3216 F:      Documentation/crypto/asymmetric-keys.rst
3217 F:      crypto/asymmetric_keys/
3218 F:      include/crypto/pkcs7.h
3219 F:      include/crypto/public_key.h
3220 F:      include/linux/verification.h
3221
3222 ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
3223 R:      Dan Williams <dan.j.williams@intel.com>
3224 S:      Odd fixes
3225 W:      http://sourceforge.net/projects/xscaleiop
3226 F:      Documentation/crypto/async-tx-api.rst
3227 F:      crypto/async_tx/
3228 F:      include/linux/async_tx.h
3229
3230 AT24 EEPROM DRIVER
3231 M:      Bartosz Golaszewski <brgl@bgdev.pl>
3232 L:      linux-i2c@vger.kernel.org
3233 S:      Maintained
3234 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux.git
3235 F:      Documentation/devicetree/bindings/eeprom/at24.yaml
3236 F:      drivers/misc/eeprom/at24.c
3237
3238 ATA OVER ETHERNET (AOE) DRIVER
3239 M:      "Justin Sanders" <justin@coraid.com>
3240 S:      Supported
3241 W:      http://www.openaoe.org/
3242 F:      Documentation/admin-guide/aoe/
3243 F:      drivers/block/aoe/
3244
3245 ATC260X PMIC MFD DRIVER
3246 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
3247 M:      Cristian Ciocaltea <cristian.ciocaltea@gmail.com>
3248 L:      linux-actions@lists.infradead.org
3249 S:      Maintained
3250 F:      Documentation/devicetree/bindings/mfd/actions,atc260x.yaml
3251 F:      drivers/input/misc/atc260x-onkey.c
3252 F:      drivers/mfd/atc260*
3253 F:      drivers/power/reset/atc260x-poweroff.c
3254 F:      drivers/regulator/atc260x-regulator.c
3255 F:      include/linux/mfd/atc260x/*
3256
3257 ATHEROS 71XX/9XXX GPIO DRIVER
3258 M:      Alban Bedel <albeu@free.fr>
3259 S:      Maintained
3260 W:      https://github.com/AlbanBedel/linux
3261 T:      git git://github.com/AlbanBedel/linux
3262 F:      Documentation/devicetree/bindings/gpio/gpio-ath79.txt
3263 F:      drivers/gpio/gpio-ath79.c
3264
3265 ATHEROS 71XX/9XXX USB PHY DRIVER
3266 M:      Alban Bedel <albeu@free.fr>
3267 S:      Maintained
3268 W:      https://github.com/AlbanBedel/linux
3269 T:      git git://github.com/AlbanBedel/linux
3270 F:      Documentation/devicetree/bindings/phy/phy-ath79-usb.txt
3271 F:      drivers/phy/qualcomm/phy-ath79-usb.c
3272
3273 ATHEROS ATH GENERIC UTILITIES
3274 M:      Kalle Valo <kvalo@kernel.org>
3275 L:      linux-wireless@vger.kernel.org
3276 S:      Supported
3277 F:      drivers/net/wireless/ath/*
3278
3279 ATHEROS ATH5K WIRELESS DRIVER
3280 M:      Jiri Slaby <jirislaby@kernel.org>
3281 M:      Nick Kossifidis <mickflemm@gmail.com>
3282 M:      Luis Chamberlain <mcgrof@kernel.org>
3283 L:      linux-wireless@vger.kernel.org
3284 S:      Maintained
3285 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath5k
3286 F:      drivers/net/wireless/ath/ath5k/
3287
3288 ATHEROS ATH6KL WIRELESS DRIVER
3289 L:      linux-wireless@vger.kernel.org
3290 S:      Orphan
3291 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath6kl
3292 F:      drivers/net/wireless/ath/ath6kl/
3293
3294 ATI_REMOTE2 DRIVER
3295 M:      Ville Syrjala <syrjala@sci.fi>
3296 S:      Maintained
3297 F:      drivers/input/misc/ati_remote2.c
3298
3299 ATK0110 HWMON DRIVER
3300 M:      Luca Tettamanti <kronos.it@gmail.com>
3301 L:      linux-hwmon@vger.kernel.org
3302 S:      Maintained
3303 F:      drivers/hwmon/asus_atk0110.c
3304
3305 ATLX ETHERNET DRIVERS
3306 M:      Chris Snook <chris.snook@gmail.com>
3307 L:      netdev@vger.kernel.org
3308 S:      Maintained
3309 W:      http://sourceforge.net/projects/atl1
3310 W:      http://atl1.sourceforge.net
3311 F:      drivers/net/ethernet/atheros/
3312
3313 ATM
3314 M:      Chas Williams <3chas3@gmail.com>
3315 L:      linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
3316 L:      netdev@vger.kernel.org
3317 S:      Maintained
3318 W:      http://linux-atm.sourceforge.net
3319 F:      drivers/atm/
3320 F:      include/linux/atm*
3321 F:      include/uapi/linux/atm*
3322
3323 ATMEL MACB ETHERNET DRIVER
3324 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
3325 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
3326 S:      Supported
3327 F:      drivers/net/ethernet/cadence/
3328
3329 ATMEL MAXTOUCH DRIVER
3330 M:      Nick Dyer <nick@shmanahar.org>
3331 S:      Maintained
3332 T:      git git://github.com/ndyer/linux.git
3333 F:      Documentation/devicetree/bindings/input/atmel,maxtouch.yaml
3334 F:      drivers/input/touchscreen/atmel_mxt_ts.c
3335
3336 ATMEL WIRELESS DRIVER
3337 M:      Simon Kelley <simon@thekelleys.org.uk>
3338 L:      linux-wireless@vger.kernel.org
3339 S:      Maintained
3340 W:      http://www.thekelleys.org.uk/atmel
3341 W:      http://atmelwlandriver.sourceforge.net/
3342 F:      drivers/net/wireless/atmel/atmel*
3343
3344 ATOMIC INFRASTRUCTURE
3345 M:      Will Deacon <will@kernel.org>
3346 M:      Peter Zijlstra <peterz@infradead.org>
3347 R:      Boqun Feng <boqun.feng@gmail.com>
3348 R:      Mark Rutland <mark.rutland@arm.com>
3349 L:      linux-kernel@vger.kernel.org
3350 S:      Maintained
3351 F:      arch/*/include/asm/atomic*.h
3352 F:      include/*/atomic*.h
3353 F:      include/linux/refcount.h
3354 F:      Documentation/atomic_*.txt
3355 F:      scripts/atomic/
3356
3357 ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER
3358 M:      Bradley Grove <linuxdrivers@attotech.com>
3359 L:      linux-scsi@vger.kernel.org
3360 S:      Supported
3361 W:      http://www.attotech.com
3362 F:      drivers/scsi/esas2r
3363
3364 ATUSB IEEE 802.15.4 RADIO DRIVER
3365 M:      Stefan Schmidt <stefan@datenfreihafen.org>
3366 L:      linux-wpan@vger.kernel.org
3367 S:      Maintained
3368 F:      drivers/net/ieee802154/at86rf230.h
3369 F:      drivers/net/ieee802154/atusb.c
3370 F:      drivers/net/ieee802154/atusb.h
3371
3372 AUDIT SUBSYSTEM
3373 M:      Paul Moore <paul@paul-moore.com>
3374 M:      Eric Paris <eparis@redhat.com>
3375 L:      linux-audit@redhat.com (moderated for non-subscribers)
3376 S:      Supported
3377 W:      https://github.com/linux-audit
3378 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/audit.git
3379 F:      include/asm-generic/audit_*.h
3380 F:      include/linux/audit.h
3381 F:      include/linux/audit_arch.h
3382 F:      include/uapi/linux/audit.h
3383 F:      kernel/audit*
3384 F:      lib/*audit.c
3385
3386 AUXILIARY DISPLAY DRIVERS
3387 M:      Miguel Ojeda <ojeda@kernel.org>
3388 S:      Maintained
3389 F:      Documentation/devicetree/bindings/auxdisplay/
3390 F:      drivers/auxdisplay/
3391 F:      include/linux/cfag12864b.h
3392
3393 AVIA HX711 ANALOG DIGITAL CONVERTER IIO DRIVER
3394 M:      Andreas Klinger <ak@it-klinger.de>
3395 L:      linux-iio@vger.kernel.org
3396 S:      Maintained
3397 F:      Documentation/devicetree/bindings/iio/adc/avia-hx711.yaml
3398 F:      drivers/iio/adc/hx711.c
3399
3400 AX.25 NETWORK LAYER
3401 M:      Ralf Baechle <ralf@linux-mips.org>
3402 L:      linux-hams@vger.kernel.org
3403 S:      Maintained
3404 W:      http://www.linux-ax25.org/
3405 F:      include/net/ax25.h
3406 F:      include/uapi/linux/ax25.h
3407 F:      net/ax25/
3408
3409 AXENTIA ARM DEVICES
3410 M:      Peter Rosin <peda@axentia.se>
3411 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3412 S:      Maintained
3413 F:      arch/arm/boot/dts/at91-linea.dtsi
3414 F:      arch/arm/boot/dts/at91-natte.dtsi
3415 F:      arch/arm/boot/dts/at91-nattis-2-natte-2.dts
3416 F:      arch/arm/boot/dts/at91-tse850-3.dts
3417
3418 AXENTIA ASOC DRIVERS
3419 M:      Peter Rosin <peda@axentia.se>
3420 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3421 S:      Maintained
3422 F:      Documentation/devicetree/bindings/sound/axentia,*
3423 F:      sound/soc/atmel/tse850-pcm5142.c
3424
3425 AXI-FAN-CONTROL HARDWARE MONITOR DRIVER
3426 M:      Nuno Sá <nuno.sa@analog.com>
3427 L:      linux-hwmon@vger.kernel.org
3428 S:      Supported
3429 W:      https://ez.analog.com/linux-software-drivers
3430 F:      Documentation/devicetree/bindings/hwmon/adi,axi-fan-control.yaml
3431 F:      drivers/hwmon/axi-fan-control.c
3432
3433 AXXIA I2C CONTROLLER
3434 M:      Krzysztof Adamski <krzysztof.adamski@nokia.com>
3435 L:      linux-i2c@vger.kernel.org
3436 S:      Maintained
3437 F:      Documentation/devicetree/bindings/i2c/i2c-axxia.txt
3438 F:      drivers/i2c/busses/i2c-axxia.c
3439
3440 AZ6007 DVB DRIVER
3441 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
3442 L:      linux-media@vger.kernel.org
3443 S:      Maintained
3444 W:      https://linuxtv.org
3445 T:      git git://linuxtv.org/media_tree.git
3446 F:      drivers/media/usb/dvb-usb-v2/az6007.c
3447
3448 AZTECH FM RADIO RECEIVER DRIVER
3449 M:      Hans Verkuil <hverkuil@xs4all.nl>
3450 L:      linux-media@vger.kernel.org
3451 S:      Maintained
3452 W:      https://linuxtv.org
3453 T:      git git://linuxtv.org/media_tree.git
3454 F:      drivers/media/radio/radio-aztech*
3455
3456 B43 WIRELESS DRIVER
3457 L:      linux-wireless@vger.kernel.org
3458 L:      b43-dev@lists.infradead.org
3459 S:      Odd Fixes
3460 W:      https://wireless.wiki.kernel.org/en/users/Drivers/b43
3461 F:      drivers/net/wireless/broadcom/b43/
3462
3463 B43LEGACY WIRELESS DRIVER
3464 M:      Larry Finger <Larry.Finger@lwfinger.net>
3465 L:      linux-wireless@vger.kernel.org
3466 L:      b43-dev@lists.infradead.org
3467 S:      Maintained
3468 W:      https://wireless.wiki.kernel.org/en/users/Drivers/b43
3469 F:      drivers/net/wireless/broadcom/b43legacy/
3470
3471 BACKLIGHT CLASS/SUBSYSTEM
3472 M:      Lee Jones <lee.jones@linaro.org>
3473 M:      Daniel Thompson <daniel.thompson@linaro.org>
3474 M:      Jingoo Han <jingoohan1@gmail.com>
3475 L:      dri-devel@lists.freedesktop.org
3476 S:      Maintained
3477 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/backlight.git
3478 F:      Documentation/ABI/stable/sysfs-class-backlight
3479 F:      Documentation/ABI/testing/sysfs-class-backlight
3480 F:      Documentation/devicetree/bindings/leds/backlight
3481 F:      drivers/video/backlight/
3482 F:      include/linux/backlight.h
3483 F:      include/linux/pwm_backlight.h
3484
3485 BARCO P50 GPIO DRIVER
3486 M:      Santosh Kumar Yadav <santoshkumar.yadav@barco.com>
3487 M:      Peter Korsgaard <peter.korsgaard@barco.com>
3488 S:      Maintained
3489 F:      drivers/platform/x86/barco-p50-gpio.c
3490
3491 BATMAN ADVANCED
3492 M:      Marek Lindner <mareklindner@neomailbox.ch>
3493 M:      Simon Wunderlich <sw@simonwunderlich.de>
3494 M:      Antonio Quartulli <a@unstable.cc>
3495 M:      Sven Eckelmann <sven@narfation.org>
3496 L:      b.a.t.m.a.n@lists.open-mesh.org (moderated for non-subscribers)
3497 S:      Maintained
3498 W:      https://www.open-mesh.org/
3499 Q:      https://patchwork.open-mesh.org/project/batman/list/
3500 B:      https://www.open-mesh.org/projects/batman-adv/issues
3501 C:      ircs://irc.hackint.org/batadv
3502 T:      git https://git.open-mesh.org/linux-merge.git
3503 F:      Documentation/networking/batman-adv.rst
3504 F:      include/uapi/linux/batadv_packet.h
3505 F:      include/uapi/linux/batman_adv.h
3506 F:      net/batman-adv/
3507
3508 BAYCOM/HDLCDRV DRIVERS FOR AX.25
3509 M:      Thomas Sailer <t.sailer@alumni.ethz.ch>
3510 L:      linux-hams@vger.kernel.org
3511 S:      Maintained
3512 W:      http://www.baycom.org/~tom/ham/ham.html
3513 F:      drivers/net/hamradio/baycom*
3514
3515 BCACHE (BLOCK LAYER CACHE)
3516 M:      Coly Li <colyli@suse.de>
3517 M:      Kent Overstreet <kent.overstreet@gmail.com>
3518 L:      linux-bcache@vger.kernel.org
3519 S:      Maintained
3520 W:      http://bcache.evilpiepirate.org
3521 C:      irc://irc.oftc.net/bcache
3522 F:      drivers/md/bcache/
3523
3524 BDISP ST MEDIA DRIVER
3525 M:      Fabien Dessenne <fabien.dessenne@foss.st.com>
3526 L:      linux-media@vger.kernel.org
3527 S:      Supported
3528 W:      https://linuxtv.org
3529 T:      git git://linuxtv.org/media_tree.git
3530 F:      drivers/media/platform/st/sti/bdisp
3531
3532 BECKHOFF CX5020 ETHERCAT MASTER DRIVER
3533 M:      Dariusz Marcinkiewicz <reksio@newterm.pl>
3534 L:      netdev@vger.kernel.org
3535 S:      Maintained
3536 F:      drivers/net/ethernet/ec_bhf.c
3537
3538 BEFS FILE SYSTEM
3539 M:      Luis de Bethencourt <luisbg@kernel.org>
3540 M:      Salah Triki <salah.triki@gmail.com>
3541 S:      Maintained
3542 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luisbg/linux-befs.git
3543 F:      Documentation/filesystems/befs.rst
3544 F:      fs/befs/
3545
3546 BFQ I/O SCHEDULER
3547 M:      Paolo Valente <paolo.valente@linaro.org>
3548 M:      Jens Axboe <axboe@kernel.dk>
3549 L:      linux-block@vger.kernel.org
3550 S:      Maintained
3551 F:      Documentation/block/bfq-iosched.rst
3552 F:      block/bfq-*
3553
3554 BFS FILE SYSTEM
3555 M:      "Tigran A. Aivazian" <aivazian.tigran@gmail.com>
3556 S:      Maintained
3557 F:      Documentation/filesystems/bfs.rst
3558 F:      fs/bfs/
3559 F:      include/uapi/linux/bfs_fs.h
3560
3561 BITMAP API
3562 M:      Yury Norov <yury.norov@gmail.com>
3563 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
3564 R:      Rasmus Villemoes <linux@rasmusvillemoes.dk>
3565 S:      Maintained
3566 F:      include/linux/bitmap.h
3567 F:      include/linux/cpumask.h
3568 F:      include/linux/find.h
3569 F:      include/linux/nodemask.h
3570 F:      lib/bitmap.c
3571 F:      lib/cpumask.c
3572 F:      lib/find_bit.c
3573 F:      lib/find_bit_benchmark.c
3574 F:      lib/nodemask.c
3575 F:      lib/test_bitmap.c
3576 F:      tools/include/linux/bitmap.h
3577 F:      tools/include/linux/find.h
3578 F:      tools/lib/bitmap.c
3579 F:      tools/lib/find_bit.c
3580
3581 BLINKM RGB LED DRIVER
3582 M:      Jan-Simon Moeller <jansimon.moeller@gmx.de>
3583 S:      Maintained
3584 F:      drivers/leds/leds-blinkm.c
3585
3586 BLOCK LAYER
3587 M:      Jens Axboe <axboe@kernel.dk>
3588 L:      linux-block@vger.kernel.org
3589 S:      Maintained
3590 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
3591 F:      Documentation/ABI/stable/sysfs-block
3592 F:      Documentation/block/
3593 F:      block/
3594 F:      drivers/block/
3595 F:      include/linux/bio.h
3596 F:      include/linux/blk*
3597 F:      kernel/trace/blktrace.c
3598 F:      lib/sbitmap.c
3599
3600 BLOCK2MTD DRIVER
3601 M:      Joern Engel <joern@lazybastard.org>
3602 L:      linux-mtd@lists.infradead.org
3603 S:      Maintained
3604 F:      drivers/mtd/devices/block2mtd.c
3605
3606 BLUETOOTH DRIVERS
3607 M:      Marcel Holtmann <marcel@holtmann.org>
3608 M:      Johan Hedberg <johan.hedberg@gmail.com>
3609 M:      Luiz Augusto von Dentz <luiz.dentz@gmail.com>
3610 L:      linux-bluetooth@vger.kernel.org
3611 S:      Supported
3612 W:      http://www.bluez.org/
3613 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3614 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3615 F:      drivers/bluetooth/
3616
3617 BLUETOOTH SUBSYSTEM
3618 M:      Marcel Holtmann <marcel@holtmann.org>
3619 M:      Johan Hedberg <johan.hedberg@gmail.com>
3620 M:      Luiz Augusto von Dentz <luiz.dentz@gmail.com>
3621 L:      linux-bluetooth@vger.kernel.org
3622 S:      Supported
3623 W:      http://www.bluez.org/
3624 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3625 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3626 F:      include/net/bluetooth/
3627 F:      net/bluetooth/
3628
3629 BONDING DRIVER
3630 M:      Jay Vosburgh <j.vosburgh@gmail.com>
3631 M:      Veaceslav Falico <vfalico@gmail.com>
3632 M:      Andy Gospodarek <andy@greyhouse.net>
3633 L:      netdev@vger.kernel.org
3634 S:      Supported
3635 W:      http://sourceforge.net/projects/bonding/
3636 F:      Documentation/networking/bonding.rst
3637 F:      drivers/net/bonding/
3638 F:      include/net/bond*
3639 F:      include/uapi/linux/if_bonding.h
3640
3641 BOSCH SENSORTEC BMA400 ACCELEROMETER IIO DRIVER
3642 M:      Dan Robertson <dan@dlrobertson.com>
3643 L:      linux-iio@vger.kernel.org
3644 S:      Maintained
3645 F:      Documentation/devicetree/bindings/iio/accel/bosch,bma400.yaml
3646 F:      drivers/iio/accel/bma400*
3647
3648 BPF [GENERAL] (Safe Dynamic Programs and Tools)
3649 M:      Alexei Starovoitov <ast@kernel.org>
3650 M:      Daniel Borkmann <daniel@iogearbox.net>
3651 M:      Andrii Nakryiko <andrii@kernel.org>
3652 R:      Martin KaFai Lau <martin.lau@linux.dev>
3653 R:      Song Liu <song@kernel.org>
3654 R:      Yonghong Song <yhs@fb.com>
3655 R:      John Fastabend <john.fastabend@gmail.com>
3656 R:      KP Singh <kpsingh@kernel.org>
3657 R:      Stanislav Fomichev <sdf@google.com>
3658 R:      Hao Luo <haoluo@google.com>
3659 R:      Jiri Olsa <jolsa@kernel.org>
3660 L:      bpf@vger.kernel.org
3661 S:      Supported
3662 W:      https://bpf.io/
3663 Q:      https://patchwork.kernel.org/project/netdevbpf/list/?delegate=121173
3664 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf.git
3665 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-next.git
3666 F:      Documentation/bpf/
3667 F:      Documentation/networking/filter.rst
3668 F:      Documentation/userspace-api/ebpf/
3669 F:      arch/*/net/*
3670 F:      include/linux/bpf*
3671 F:      include/linux/btf*
3672 F:      include/linux/filter.h
3673 F:      include/trace/events/xdp.h
3674 F:      include/uapi/linux/bpf*
3675 F:      include/uapi/linux/btf*
3676 F:      include/uapi/linux/filter.h
3677 F:      kernel/bpf/
3678 F:      kernel/trace/bpf_trace.c
3679 F:      lib/test_bpf.c
3680 F:      net/bpf/
3681 F:      net/core/filter.c
3682 F:      net/sched/act_bpf.c
3683 F:      net/sched/cls_bpf.c
3684 F:      samples/bpf/
3685 F:      scripts/bpf_doc.py
3686 F:      scripts/pahole-flags.sh
3687 F:      scripts/pahole-version.sh
3688 F:      tools/bpf/
3689 F:      tools/lib/bpf/
3690 F:      tools/testing/selftests/bpf/
3691
3692 BPF JIT for ARM
3693 M:      Shubham Bansal <illusionist.neo@gmail.com>
3694 L:      bpf@vger.kernel.org
3695 S:      Odd Fixes
3696 F:      arch/arm/net/
3697
3698 BPF JIT for ARM64
3699 M:      Daniel Borkmann <daniel@iogearbox.net>
3700 M:      Alexei Starovoitov <ast@kernel.org>
3701 M:      Zi Shen Lim <zlim.lnx@gmail.com>
3702 L:      bpf@vger.kernel.org
3703 S:      Supported
3704 F:      arch/arm64/net/
3705
3706 BPF JIT for MIPS (32-BIT AND 64-BIT)
3707 M:      Johan Almbladh <johan.almbladh@anyfinetworks.com>
3708 M:      Paul Burton <paulburton@kernel.org>
3709 L:      bpf@vger.kernel.org
3710 S:      Maintained
3711 F:      arch/mips/net/
3712
3713 BPF JIT for NFP NICs
3714 M:      Jakub Kicinski <kuba@kernel.org>
3715 L:      bpf@vger.kernel.org
3716 S:      Odd Fixes
3717 F:      drivers/net/ethernet/netronome/nfp/bpf/
3718
3719 BPF JIT for POWERPC (32-BIT AND 64-BIT)
3720 M:      Naveen N. Rao <naveen.n.rao@linux.ibm.com>
3721 M:      Michael Ellerman <mpe@ellerman.id.au>
3722 L:      bpf@vger.kernel.org
3723 S:      Supported
3724 F:      arch/powerpc/net/
3725
3726 BPF JIT for RISC-V (32-bit)
3727 M:      Luke Nelson <luke.r.nels@gmail.com>
3728 M:      Xi Wang <xi.wang@gmail.com>
3729 L:      bpf@vger.kernel.org
3730 S:      Maintained
3731 F:      arch/riscv/net/
3732 X:      arch/riscv/net/bpf_jit_comp64.c
3733
3734 BPF JIT for RISC-V (64-bit)
3735 M:      Björn Töpel <bjorn@kernel.org>
3736 L:      bpf@vger.kernel.org
3737 S:      Maintained
3738 F:      arch/riscv/net/
3739 X:      arch/riscv/net/bpf_jit_comp32.c
3740
3741 BPF JIT for S390
3742 M:      Ilya Leoshkevich <iii@linux.ibm.com>
3743 M:      Heiko Carstens <hca@linux.ibm.com>
3744 M:      Vasily Gorbik <gor@linux.ibm.com>
3745 L:      bpf@vger.kernel.org
3746 S:      Supported
3747 F:      arch/s390/net/
3748 X:      arch/s390/net/pnet.c
3749
3750 BPF JIT for SPARC (32-BIT AND 64-BIT)
3751 M:      David S. Miller <davem@davemloft.net>
3752 L:      bpf@vger.kernel.org
3753 S:      Odd Fixes
3754 F:      arch/sparc/net/
3755
3756 BPF JIT for X86 32-BIT
3757 M:      Wang YanQing <udknight@gmail.com>
3758 L:      bpf@vger.kernel.org
3759 S:      Odd Fixes
3760 F:      arch/x86/net/bpf_jit_comp32.c
3761
3762 BPF JIT for X86 64-BIT
3763 M:      Alexei Starovoitov <ast@kernel.org>
3764 M:      Daniel Borkmann <daniel@iogearbox.net>
3765 L:      bpf@vger.kernel.org
3766 S:      Supported
3767 F:      arch/x86/net/
3768 X:      arch/x86/net/bpf_jit_comp32.c
3769
3770 BPF [CORE]
3771 M:      Alexei Starovoitov <ast@kernel.org>
3772 M:      Daniel Borkmann <daniel@iogearbox.net>
3773 R:      John Fastabend <john.fastabend@gmail.com>
3774 L:      bpf@vger.kernel.org
3775 S:      Maintained
3776 F:      kernel/bpf/verifier.c
3777 F:      kernel/bpf/tnum.c
3778 F:      kernel/bpf/core.c
3779 F:      kernel/bpf/syscall.c
3780 F:      kernel/bpf/dispatcher.c
3781 F:      kernel/bpf/trampoline.c
3782 F:      include/linux/bpf*
3783 F:      include/linux/filter.h
3784
3785 BPF [BTF]
3786 M:      Martin KaFai Lau <martin.lau@linux.dev>
3787 L:      bpf@vger.kernel.org
3788 S:      Maintained
3789 F:      kernel/bpf/btf.c
3790 F:      include/linux/btf*
3791
3792 BPF [TRACING]
3793 M:      Song Liu <song@kernel.org>
3794 R:      Jiri Olsa <jolsa@kernel.org>
3795 L:      bpf@vger.kernel.org
3796 S:      Maintained
3797 F:      kernel/trace/bpf_trace.c
3798 F:      kernel/bpf/stackmap.c
3799
3800 BPF [NETWORKING] (tc BPF, sock_addr)
3801 M:      Martin KaFai Lau <martin.lau@linux.dev>
3802 M:      Daniel Borkmann <daniel@iogearbox.net>
3803 R:      John Fastabend <john.fastabend@gmail.com>
3804 L:      bpf@vger.kernel.org
3805 L:      netdev@vger.kernel.org
3806 S:      Maintained
3807 F:      net/core/filter.c
3808 F:      net/sched/act_bpf.c
3809 F:      net/sched/cls_bpf.c
3810
3811 BPF [NETWORKING] (struct_ops, reuseport)
3812 M:      Martin KaFai Lau <martin.lau@linux.dev>
3813 L:      bpf@vger.kernel.org
3814 L:      netdev@vger.kernel.org
3815 S:      Maintained
3816 F:      kernel/bpf/bpf_struct*
3817
3818 BPF [SECURITY & LSM] (Security Audit and Enforcement using BPF)
3819 M:      KP Singh <kpsingh@kernel.org>
3820 R:      Florent Revest <revest@chromium.org>
3821 R:      Brendan Jackman <jackmanb@chromium.org>
3822 L:      bpf@vger.kernel.org
3823 S:      Maintained
3824 F:      Documentation/bpf/prog_lsm.rst
3825 F:      include/linux/bpf_lsm.h
3826 F:      kernel/bpf/bpf_lsm.c
3827 F:      security/bpf/
3828
3829 BPF [STORAGE & CGROUPS]
3830 M:      Martin KaFai Lau <martin.lau@linux.dev>
3831 L:      bpf@vger.kernel.org
3832 S:      Maintained
3833 F:      kernel/bpf/cgroup.c
3834 F:      kernel/bpf/*storage.c
3835 F:      kernel/bpf/bpf_lru*
3836
3837 BPF [RINGBUF]
3838 M:      Andrii Nakryiko <andrii@kernel.org>
3839 L:      bpf@vger.kernel.org
3840 S:      Maintained
3841 F:      kernel/bpf/ringbuf.c
3842
3843 BPF [ITERATOR]
3844 M:      Yonghong Song <yhs@fb.com>
3845 L:      bpf@vger.kernel.org
3846 S:      Maintained
3847 F:      kernel/bpf/*iter.c
3848
3849 BPF [L7 FRAMEWORK] (sockmap)
3850 M:      John Fastabend <john.fastabend@gmail.com>
3851 M:      Jakub Sitnicki <jakub@cloudflare.com>
3852 L:      netdev@vger.kernel.org
3853 L:      bpf@vger.kernel.org
3854 S:      Maintained
3855 F:      include/linux/skmsg.h
3856 F:      net/core/skmsg.c
3857 F:      net/core/sock_map.c
3858 F:      net/ipv4/tcp_bpf.c
3859 F:      net/ipv4/udp_bpf.c
3860 F:      net/unix/unix_bpf.c
3861
3862 BPF [LIBRARY] (libbpf)
3863 M:      Andrii Nakryiko <andrii@kernel.org>
3864 L:      bpf@vger.kernel.org
3865 S:      Maintained
3866 F:      tools/lib/bpf/
3867
3868 BPF [TOOLING] (bpftool)
3869 M:      Quentin Monnet <quentin@isovalent.com>
3870 L:      bpf@vger.kernel.org
3871 S:      Maintained
3872 F:      kernel/bpf/disasm.*
3873 F:      tools/bpf/bpftool/
3874
3875 BPF [SELFTESTS] (Test Runners & Infrastructure)
3876 M:      Andrii Nakryiko <andrii@kernel.org>
3877 R:      Mykola Lysenko <mykolal@fb.com>
3878 L:      bpf@vger.kernel.org
3879 S:      Maintained
3880 F:      tools/testing/selftests/bpf/
3881
3882 BPF [MISC]
3883 L:      bpf@vger.kernel.org
3884 S:      Odd Fixes
3885 K:      (?:\b|_)bpf(?:\b|_)
3886
3887 BROADCOM B44 10/100 ETHERNET DRIVER
3888 M:      Michael Chan <michael.chan@broadcom.com>
3889 L:      netdev@vger.kernel.org
3890 S:      Supported
3891 F:      drivers/net/ethernet/broadcom/b44.*
3892
3893 BROADCOM B53/SF2 ETHERNET SWITCH DRIVER
3894 M:      Florian Fainelli <f.fainelli@gmail.com>
3895 L:      netdev@vger.kernel.org
3896 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
3897 S:      Supported
3898 F:      Documentation/devicetree/bindings/net/dsa/brcm,b53.yaml
3899 F:      drivers/net/dsa/b53/*
3900 F:      drivers/net/dsa/bcm_sf2*
3901 F:      include/linux/dsa/brcm.h
3902 F:      include/linux/platform_data/b53.h
3903
3904 BROADCOM BCMBCA ARM ARCHITECTURE
3905 M:      William Zhang <william.zhang@broadcom.com>
3906 M:      Anand Gore <anand.gore@broadcom.com>
3907 M:      Kursad Oney <kursad.oney@broadcom.com>
3908 M:      Florian Fainelli <f.fainelli@gmail.com>
3909 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
3910 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3911 S:      Maintained
3912 T:      git git://github.com/broadcom/stblinux.git
3913 F:      Documentation/devicetree/bindings/arm/bcm/brcm,bcmbca.yaml
3914 F:      arch/arm64/boot/dts/broadcom/bcmbca/*
3915 N:      bcmbca
3916 N:      bcm[9]?47622
3917 N:      bcm[9]?4912
3918 N:      bcm[9]?63138
3919 N:      bcm[9]?63146
3920 N:      bcm[9]?63148
3921 N:      bcm[9]?63158
3922 N:      bcm[9]?63178
3923 N:      bcm[9]?6756
3924 N:      bcm[9]?6813
3925 N:      bcm[9]?6846
3926 N:      bcm[9]?6855
3927 N:      bcm[9]?6856
3928 N:      bcm[9]?6858
3929 N:      bcm[9]?6878
3930
3931 BROADCOM BCM2711/BCM2835 ARM ARCHITECTURE
3932 M:      Florian Fainelli <f.fainelli@gmail.com>
3933 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
3934 L:      linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
3935 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3936 S:      Maintained
3937 T:      git git://github.com/broadcom/stblinux.git
3938 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3939 F:      drivers/pci/controller/pcie-brcmstb.c
3940 F:      drivers/staging/vc04_services
3941 N:      bcm2711
3942 N:      bcm283*
3943 N:      raspberrypi
3944
3945 BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE
3946 M:      Florian Fainelli <f.fainelli@gmail.com>
3947 M:      Ray Jui <rjui@broadcom.com>
3948 M:      Scott Branden <sbranden@broadcom.com>
3949 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
3950 S:      Maintained
3951 T:      git git://github.com/broadcom/mach-bcm
3952 F:      arch/arm/mach-bcm/
3953 N:      bcm281*
3954 N:      bcm113*
3955 N:      bcm216*
3956 N:      kona
3957
3958 BROADCOM BCM47XX MIPS ARCHITECTURE
3959 M:      Hauke Mehrtens <hauke@hauke-m.de>
3960 M:      Rafał Miłecki <zajec5@gmail.com>
3961 L:      linux-mips@vger.kernel.org
3962 S:      Maintained
3963 F:      Documentation/devicetree/bindings/mips/brcm/
3964 F:      arch/mips/bcm47xx/*
3965 F:      arch/mips/include/asm/mach-bcm47xx/*
3966
3967 BROADCOM BCM4908 ETHERNET DRIVER
3968 M:      Rafał Miłecki <rafal@milecki.pl>
3969 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
3970 L:      netdev@vger.kernel.org
3971 S:      Maintained
3972 F:      Documentation/devicetree/bindings/net/brcm,bcm4908-enet.yaml
3973 F:      drivers/net/ethernet/broadcom/bcm4908_enet.*
3974 F:      drivers/net/ethernet/broadcom/unimac.h
3975
3976 BROADCOM BCM4908 PINMUX DRIVER
3977 M:      Rafał Miłecki <rafal@milecki.pl>
3978 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
3979 L:      linux-gpio@vger.kernel.org
3980 S:      Maintained
3981 F:      Documentation/devicetree/bindings/pinctrl/brcm,bcm4908-pinctrl.yaml
3982 F:      drivers/pinctrl/bcm/pinctrl-bcm4908.c
3983
3984 BROADCOM BCM5301X ARM ARCHITECTURE
3985 M:      Florian Fainelli <f.fainelli@gmail.com>
3986 M:      Hauke Mehrtens <hauke@hauke-m.de>
3987 M:      Rafał Miłecki <zajec5@gmail.com>
3988 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
3989 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3990 S:      Maintained
3991 F:      arch/arm/boot/dts/bcm470*
3992 F:      arch/arm/boot/dts/bcm5301*
3993 F:      arch/arm/boot/dts/bcm953012*
3994 F:      arch/arm/mach-bcm/bcm_5301x.c
3995
3996 BROADCOM BCM53573 ARM ARCHITECTURE
3997 M:      Florian Fainelli <f.fainelli@gmail.com>
3998 M:      Rafał Miłecki <rafal@milecki.pl>
3999 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4000 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4001 S:      Maintained
4002 F:      arch/arm/boot/dts/bcm47189*
4003 F:      arch/arm/boot/dts/bcm53573*
4004
4005 BROADCOM BCM63XX/BCM33XX UDC DRIVER
4006 M:      Kevin Cernekee <cernekee@gmail.com>
4007 L:      linux-usb@vger.kernel.org
4008 S:      Maintained
4009 F:      drivers/usb/gadget/udc/bcm63xx_udc.*
4010
4011 BROADCOM BCM7XXX ARM ARCHITECTURE
4012 M:      Florian Fainelli <f.fainelli@gmail.com>
4013 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4014 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4015 S:      Maintained
4016 T:      git git://github.com/broadcom/stblinux.git
4017 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
4018 F:      arch/arm/boot/dts/bcm7*.dts*
4019 F:      arch/arm/include/asm/hardware/cache-b15-rac.h
4020 F:      arch/arm/mach-bcm/*brcmstb*
4021 F:      arch/arm/mm/cache-b15-rac.c
4022 F:      drivers/bus/brcmstb_gisb.c
4023 F:      drivers/pci/controller/pcie-brcmstb.c
4024 N:      brcmstb
4025 N:      bcm7038
4026 N:      bcm7120
4027
4028 BROADCOM BDC DRIVER
4029 M:      Al Cooper <alcooperx@gmail.com>
4030 L:      linux-usb@vger.kernel.org
4031 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4032 S:      Maintained
4033 F:      Documentation/devicetree/bindings/usb/brcm,bdc.yaml
4034 F:      drivers/usb/gadget/udc/bdc/
4035
4036 BROADCOM BMIPS CPUFREQ DRIVER
4037 M:      Markus Mayer <mmayer@broadcom.com>
4038 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4039 L:      linux-pm@vger.kernel.org
4040 S:      Maintained
4041 F:      drivers/cpufreq/bmips-cpufreq.c
4042
4043 BROADCOM BMIPS MIPS ARCHITECTURE
4044 M:      Florian Fainelli <f.fainelli@gmail.com>
4045 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4046 L:      linux-mips@vger.kernel.org
4047 S:      Maintained
4048 T:      git git://github.com/broadcom/stblinux.git
4049 F:      arch/mips/bmips/*
4050 F:      arch/mips/boot/dts/brcm/bcm*.dts*
4051 F:      arch/mips/include/asm/mach-bmips/*
4052 F:      arch/mips/kernel/*bmips*
4053 F:      drivers/soc/bcm/bcm63xx
4054 F:      drivers/irqchip/irq-bcm63*
4055 F:      drivers/irqchip/irq-bcm7*
4056 F:      drivers/irqchip/irq-brcmstb*
4057 F:      include/linux/bcm963xx_nvram.h
4058 F:      include/linux/bcm963xx_tag.h
4059
4060 BROADCOM BNX2 GIGABIT ETHERNET DRIVER
4061 M:      Rasesh Mody <rmody@marvell.com>
4062 M:      GR-Linux-NIC-Dev@marvell.com
4063 L:      netdev@vger.kernel.org
4064 S:      Supported
4065 F:      drivers/net/ethernet/broadcom/bnx2.*
4066 F:      drivers/net/ethernet/broadcom/bnx2_*
4067
4068 BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
4069 M:      Saurav Kashyap <skashyap@marvell.com>
4070 M:      Javed Hasan <jhasan@marvell.com>
4071 M:      GR-QLogic-Storage-Upstream@marvell.com
4072 L:      linux-scsi@vger.kernel.org
4073 S:      Supported
4074 F:      drivers/scsi/bnx2fc/
4075
4076 BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER
4077 M:      Nilesh Javali <njavali@marvell.com>
4078 M:      Manish Rangankar <mrangankar@marvell.com>
4079 M:      GR-QLogic-Storage-Upstream@marvell.com
4080 L:      linux-scsi@vger.kernel.org
4081 S:      Supported
4082 F:      drivers/scsi/bnx2i/
4083
4084 BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
4085 M:      Ariel Elior <aelior@marvell.com>
4086 M:      Sudarsana Kalluru <skalluru@marvell.com>
4087 M:      Manish Chopra <manishc@marvell.com>
4088 L:      netdev@vger.kernel.org
4089 S:      Supported
4090 F:      drivers/net/ethernet/broadcom/bnx2x/
4091
4092 BROADCOM BNXT_EN 50 GIGABIT ETHERNET DRIVER
4093 M:      Michael Chan <michael.chan@broadcom.com>
4094 L:      netdev@vger.kernel.org
4095 S:      Supported
4096 F:      drivers/firmware/broadcom/tee_bnxt_fw.c
4097 F:      drivers/net/ethernet/broadcom/bnxt/
4098 F:      include/linux/firmware/broadcom/tee_bnxt_fw.h
4099
4100 BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
4101 M:      Arend van Spriel <aspriel@gmail.com>
4102 M:      Franky Lin <franky.lin@broadcom.com>
4103 M:      Hante Meuleman <hante.meuleman@broadcom.com>
4104 L:      linux-wireless@vger.kernel.org
4105 L:      brcm80211-dev-list.pdl@broadcom.com
4106 L:      SHA-cyfmac-dev-list@infineon.com
4107 S:      Supported
4108 F:      drivers/net/wireless/broadcom/brcm80211/
4109
4110 BROADCOM BRCMSTB GPIO DRIVER
4111 M:      Doug Berger <opendmb@gmail.com>
4112 M:      Florian Fainelli <f.fainelli@gmail.com>
4113 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4114 S:      Supported
4115 F:      Documentation/devicetree/bindings/gpio/brcm,brcmstb-gpio.yaml
4116 F:      drivers/gpio/gpio-brcmstb.c
4117
4118 BROADCOM BRCMSTB I2C DRIVER
4119 M:      Kamal Dasu <kdasu.kdev@gmail.com>
4120 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4121 L:      linux-i2c@vger.kernel.org
4122 S:      Supported
4123 F:      Documentation/devicetree/bindings/i2c/brcm,brcmstb-i2c.yaml
4124 F:      drivers/i2c/busses/i2c-brcmstb.c
4125
4126 BROADCOM BRCMSTB UART DRIVER
4127 M:      Al Cooper <alcooperx@gmail.com>
4128 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4129 L:      linux-serial@vger.kernel.org
4130 S:      Maintained
4131 F:      Documentation/devicetree/bindings/serial/brcm,bcm7271-uart.yaml
4132 F:      drivers/tty/serial/8250/8250_bcm7271.c
4133
4134 BROADCOM BRCMSTB USB EHCI DRIVER
4135 M:      Al Cooper <alcooperx@gmail.com>
4136 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4137 L:      linux-usb@vger.kernel.org
4138 S:      Maintained
4139 F:      Documentation/devicetree/bindings/usb/brcm,bcm7445-ehci.yaml
4140 F:      drivers/usb/host/ehci-brcm.*
4141
4142 BROADCOM BRCMSTB USB PIN MAP DRIVER
4143 M:      Al Cooper <alcooperx@gmail.com>
4144 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4145 L:      linux-usb@vger.kernel.org
4146 S:      Maintained
4147 F:      Documentation/devicetree/bindings/usb/brcm,usb-pinmap.yaml
4148 F:      drivers/usb/misc/brcmstb-usb-pinmap.c
4149
4150 BROADCOM BRCMSTB USB2 and USB3 PHY DRIVER
4151 M:      Al Cooper <alcooperx@gmail.com>
4152 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4153 L:      linux-kernel@vger.kernel.org
4154 S:      Maintained
4155 F:      drivers/phy/broadcom/phy-brcm-usb*
4156
4157 BROADCOM ETHERNET PHY DRIVERS
4158 M:      Florian Fainelli <f.fainelli@gmail.com>
4159 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4160 L:      netdev@vger.kernel.org
4161 S:      Supported
4162 F:      Documentation/devicetree/bindings/net/broadcom-bcm87xx.txt
4163 F:      drivers/net/phy/bcm*.[ch]
4164 F:      drivers/net/phy/broadcom.c
4165 F:      include/linux/brcmphy.h
4166
4167 BROADCOM GENET ETHERNET DRIVER
4168 M:      Doug Berger <opendmb@gmail.com>
4169 M:      Florian Fainelli <f.fainelli@gmail.com>
4170 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4171 L:      netdev@vger.kernel.org
4172 S:      Supported
4173 F:      Documentation/devicetree/bindings/net/brcm,bcmgenet.yaml
4174 F:      Documentation/devicetree/bindings/net/brcm,unimac-mdio.yaml
4175 F:      drivers/net/ethernet/broadcom/genet/
4176 F:      drivers/net/ethernet/broadcom/unimac.h
4177 F:      drivers/net/mdio/mdio-bcm-unimac.c
4178 F:      include/linux/platform_data/bcmgenet.h
4179 F:      include/linux/platform_data/mdio-bcm-unimac.h
4180
4181 BROADCOM IPROC ARM ARCHITECTURE
4182 M:      Ray Jui <rjui@broadcom.com>
4183 M:      Scott Branden <sbranden@broadcom.com>
4184 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4185 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4186 S:      Maintained
4187 T:      git git://github.com/broadcom/stblinux.git
4188 F:      arch/arm64/boot/dts/broadcom/northstar2/*
4189 F:      arch/arm64/boot/dts/broadcom/stingray/*
4190 F:      drivers/clk/bcm/clk-ns*
4191 F:      drivers/clk/bcm/clk-sr*
4192 F:      drivers/pinctrl/bcm/pinctrl-ns*
4193 F:      include/dt-bindings/clock/bcm-sr*
4194 N:      iproc
4195 N:      cygnus
4196 N:      bcm[-_]nsp
4197 N:      bcm9113*
4198 N:      bcm9583*
4199 N:      bcm9585*
4200 N:      bcm9586*
4201 N:      bcm988312
4202 N:      bcm113*
4203 N:      bcm583*
4204 N:      bcm585*
4205 N:      bcm586*
4206 N:      bcm88312
4207 N:      hr2
4208 N:      stingray
4209
4210 BROADCOM IPROC GBIT ETHERNET DRIVER
4211 M:      Rafał Miłecki <rafal@milecki.pl>
4212 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4213 L:      netdev@vger.kernel.org
4214 S:      Maintained
4215 F:      Documentation/devicetree/bindings/net/brcm,amac.yaml
4216 F:      drivers/net/ethernet/broadcom/bgmac*
4217 F:      drivers/net/ethernet/broadcom/unimac.h
4218
4219 BROADCOM KONA GPIO DRIVER
4220 M:      Ray Jui <rjui@broadcom.com>
4221 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4222 S:      Supported
4223 F:      Documentation/devicetree/bindings/gpio/brcm,kona-gpio.txt
4224 F:      drivers/gpio/gpio-bcm-kona.c
4225
4226 BROADCOM MPI3 STORAGE CONTROLLER DRIVER
4227 M:      Sathya Prakash Veerichetty <sathya.prakash@broadcom.com>
4228 M:      Kashyap Desai <kashyap.desai@broadcom.com>
4229 M:      Sumit Saxena <sumit.saxena@broadcom.com>
4230 M:      Sreekanth Reddy <sreekanth.reddy@broadcom.com>
4231 L:      mpi3mr-linuxdrv.pdl@broadcom.com
4232 L:      linux-scsi@vger.kernel.org
4233 S:      Supported
4234 W:      https://www.broadcom.com/support/storage
4235 F:      drivers/scsi/mpi3mr/
4236
4237 BROADCOM NETXTREME-E ROCE DRIVER
4238 M:      Selvin Xavier <selvin.xavier@broadcom.com>
4239 L:      linux-rdma@vger.kernel.org
4240 S:      Supported
4241 W:      http://www.broadcom.com
4242 F:      drivers/infiniband/hw/bnxt_re/
4243 F:      include/uapi/rdma/bnxt_re-abi.h
4244
4245 BROADCOM NVRAM DRIVER
4246 M:      Rafał Miłecki <zajec5@gmail.com>
4247 L:      linux-mips@vger.kernel.org
4248 S:      Maintained
4249 F:      drivers/firmware/broadcom/*
4250
4251 BROADCOM PMB (POWER MANAGEMENT BUS) DRIVER
4252 M:      Rafał Miłecki <rafal@milecki.pl>
4253 M:      Florian Fainelli <f.fainelli@gmail.com>
4254 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4255 L:      linux-pm@vger.kernel.org
4256 S:      Maintained
4257 T:      git git://github.com/broadcom/stblinux.git
4258 F:      drivers/soc/bcm/bcm63xx/bcm-pmb.c
4259 F:      include/dt-bindings/soc/bcm-pmb.h
4260
4261 BROADCOM SPECIFIC AMBA DRIVER (BCMA)
4262 M:      Rafał Miłecki <zajec5@gmail.com>
4263 L:      linux-wireless@vger.kernel.org
4264 S:      Maintained
4265 F:      drivers/bcma/
4266 F:      include/linux/bcma/
4267
4268 BROADCOM SPI DRIVER
4269 M:      Kamal Dasu <kdasu.kdev@gmail.com>
4270 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4271 S:      Maintained
4272 F:      Documentation/devicetree/bindings/spi/brcm,spi-bcm-qspi.yaml
4273 F:      drivers/spi/spi-bcm-qspi.*
4274 F:      drivers/spi/spi-brcmstb-qspi.c
4275 F:      drivers/spi/spi-iproc-qspi.c
4276
4277 BROADCOM STB AVS CPUFREQ DRIVER
4278 M:      Markus Mayer <mmayer@broadcom.com>
4279 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4280 L:      linux-pm@vger.kernel.org
4281 S:      Maintained
4282 F:      Documentation/devicetree/bindings/cpufreq/brcm,stb-avs-cpu-freq.txt
4283 F:      drivers/cpufreq/brcmstb*
4284
4285 BROADCOM STB AVS TMON DRIVER
4286 M:      Markus Mayer <mmayer@broadcom.com>
4287 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4288 L:      linux-pm@vger.kernel.org
4289 S:      Maintained
4290 F:      Documentation/devicetree/bindings/thermal/brcm,avs-tmon.yaml
4291 F:      drivers/thermal/broadcom/brcmstb*
4292
4293 BROADCOM STB DPFE DRIVER
4294 M:      Markus Mayer <mmayer@broadcom.com>
4295 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4296 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4297 S:      Maintained
4298 F:      Documentation/devicetree/bindings/memory-controllers/brcm,dpfe-cpu.yaml
4299 F:      drivers/memory/brcmstb_dpfe.c
4300
4301 BROADCOM STB NAND FLASH DRIVER
4302 M:      Brian Norris <computersforpeace@gmail.com>
4303 M:      Kamal Dasu <kdasu.kdev@gmail.com>
4304 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4305 L:      linux-mtd@lists.infradead.org
4306 S:      Maintained
4307 F:      drivers/mtd/nand/raw/brcmnand/
4308 F:      include/linux/platform_data/brcmnand.h
4309
4310 BROADCOM STB PCIE DRIVER
4311 M:      Jim Quinlan <jim2101024@gmail.com>
4312 M:      Nicolas Saenz Julienne <nsaenz@kernel.org>
4313 M:      Florian Fainelli <f.fainelli@gmail.com>
4314 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4315 L:      linux-pci@vger.kernel.org
4316 S:      Maintained
4317 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
4318 F:      drivers/pci/controller/pcie-brcmstb.c
4319
4320 BROADCOM SYSTEMPORT ETHERNET DRIVER
4321 M:      Florian Fainelli <f.fainelli@gmail.com>
4322 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4323 L:      netdev@vger.kernel.org
4324 S:      Supported
4325 F:      drivers/net/ethernet/broadcom/bcmsysport.*
4326 F:      drivers/net/ethernet/broadcom/unimac.h
4327 F:      Documentation/devicetree/bindings/net/brcm,systemport.yaml
4328
4329 BROADCOM TG3 GIGABIT ETHERNET DRIVER
4330 M:      Siva Reddy Kallam <siva.kallam@broadcom.com>
4331 M:      Prashant Sreedharan <prashant@broadcom.com>
4332 M:      Michael Chan <mchan@broadcom.com>
4333 L:      netdev@vger.kernel.org
4334 S:      Supported
4335 F:      drivers/net/ethernet/broadcom/tg3.*
4336
4337 BROADCOM VK DRIVER
4338 M:      Scott Branden <scott.branden@broadcom.com>
4339 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4340 S:      Supported
4341 F:      drivers/misc/bcm-vk/
4342 F:      include/uapi/linux/misc/bcm_vk.h
4343
4344 BROCADE BFA FC SCSI DRIVER
4345 M:      Anil Gurumurthy <anil.gurumurthy@qlogic.com>
4346 M:      Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
4347 L:      linux-scsi@vger.kernel.org
4348 S:      Supported
4349 F:      drivers/scsi/bfa/
4350
4351 BROCADE BNA 10 GIGABIT ETHERNET DRIVER
4352 M:      Rasesh Mody <rmody@marvell.com>
4353 M:      Sudarsana Kalluru <skalluru@marvell.com>
4354 M:      GR-Linux-NIC-Dev@marvell.com
4355 L:      netdev@vger.kernel.org
4356 S:      Supported
4357 F:      drivers/net/ethernet/brocade/bna/
4358
4359 BSG (block layer generic sg v4 driver)
4360 M:      FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
4361 L:      linux-scsi@vger.kernel.org
4362 S:      Supported
4363 F:      block/bsg.c
4364 F:      include/linux/bsg.h
4365 F:      include/uapi/linux/bsg.h
4366
4367 BT87X AUDIO DRIVER
4368 M:      Clemens Ladisch <clemens@ladisch.de>
4369 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4370 S:      Maintained
4371 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
4372 F:      Documentation/sound/cards/bt87x.rst
4373 F:      sound/pci/bt87x.c
4374
4375 BT8XXGPIO DRIVER
4376 M:      Michael Buesch <m@bues.ch>
4377 S:      Maintained
4378 W:      http://bu3sch.de/btgpio.php
4379 F:      drivers/gpio/gpio-bt8xx.c
4380
4381 BTRFS FILE SYSTEM
4382 M:      Chris Mason <clm@fb.com>
4383 M:      Josef Bacik <josef@toxicpanda.com>
4384 M:      David Sterba <dsterba@suse.com>
4385 L:      linux-btrfs@vger.kernel.org
4386 S:      Maintained
4387 W:      http://btrfs.wiki.kernel.org/
4388 Q:      http://patchwork.kernel.org/project/linux-btrfs/list/
4389 C:      irc://irc.libera.chat/btrfs
4390 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kdave/linux.git
4391 F:      Documentation/filesystems/btrfs.rst
4392 F:      fs/btrfs/
4393 F:      include/linux/btrfs*
4394 F:      include/uapi/linux/btrfs*
4395
4396 BTTV VIDEO4LINUX DRIVER
4397 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
4398 L:      linux-media@vger.kernel.org
4399 S:      Odd fixes
4400 W:      https://linuxtv.org
4401 T:      git git://linuxtv.org/media_tree.git
4402 F:      Documentation/driver-api/media/drivers/bttv*
4403 F:      drivers/media/pci/bt8xx/bttv*
4404
4405 BUS FREQUENCY DRIVER FOR SAMSUNG EXYNOS
4406 M:      Chanwoo Choi <cw00.choi@samsung.com>
4407 L:      linux-pm@vger.kernel.org
4408 L:      linux-samsung-soc@vger.kernel.org
4409 S:      Maintained
4410 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
4411 F:      Documentation/devicetree/bindings/interconnect/samsung,exynos-bus.yaml
4412 F:      drivers/devfreq/exynos-bus.c
4413
4414 BUSLOGIC SCSI DRIVER
4415 M:      Khalid Aziz <khalid@gonehiking.org>
4416 L:      linux-scsi@vger.kernel.org
4417 S:      Maintained
4418 F:      drivers/scsi/BusLogic.*
4419 F:      drivers/scsi/FlashPoint.*
4420
4421 C-MEDIA CMI8788 DRIVER
4422 M:      Clemens Ladisch <clemens@ladisch.de>
4423 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4424 S:      Maintained
4425 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
4426 F:      sound/pci/oxygen/
4427
4428 C-SKY ARCHITECTURE
4429 M:      Guo Ren <guoren@kernel.org>
4430 L:      linux-csky@vger.kernel.org
4431 S:      Supported
4432 T:      git https://github.com/c-sky/csky-linux.git
4433 F:      Documentation/devicetree/bindings/csky/
4434 F:      Documentation/devicetree/bindings/interrupt-controller/csky,*
4435 F:      Documentation/devicetree/bindings/timer/csky,*
4436 F:      arch/csky/
4437 F:      drivers/clocksource/timer-gx6605s.c
4438 F:      drivers/clocksource/timer-mp-csky.c
4439 F:      drivers/irqchip/irq-csky-*
4440 N:      csky
4441 K:      csky
4442
4443 CA8210 IEEE-802.15.4 RADIO DRIVER
4444 L:      linux-wpan@vger.kernel.org
4445 S:      Orphan
4446 W:      https://github.com/Cascoda/ca8210-linux.git
4447 F:      Documentation/devicetree/bindings/net/ieee802154/ca8210.txt
4448 F:      drivers/net/ieee802154/ca8210.c
4449
4450 CANAAN/KENDRYTE K210 SOC FPIOA DRIVER
4451 M:      Damien Le Moal <damien.lemoal@wdc.com>
4452 L:      linux-riscv@lists.infradead.org
4453 L:      linux-gpio@vger.kernel.org (pinctrl driver)
4454 F:      Documentation/devicetree/bindings/pinctrl/canaan,k210-fpioa.yaml
4455 F:      drivers/pinctrl/pinctrl-k210.c
4456
4457 CANAAN/KENDRYTE K210 SOC RESET CONTROLLER DRIVER
4458 M:      Damien Le Moal <damien.lemoal@wdc.com>
4459 L:      linux-kernel@vger.kernel.org
4460 L:      linux-riscv@lists.infradead.org
4461 S:      Maintained
4462 F:      Documentation/devicetree/bindings/reset/canaan,k210-rst.yaml
4463 F:      drivers/reset/reset-k210.c
4464
4465 CANAAN/KENDRYTE K210 SOC SYSTEM CONTROLLER DRIVER
4466 M:      Damien Le Moal <damien.lemoal@wdc.com>
4467 L:      linux-riscv@lists.infradead.org
4468 S:      Maintained
4469 F:      Documentation/devicetree/bindings/mfd/canaan,k210-sysctl.yaml
4470 F:      drivers/soc/canaan/
4471 F:      include/soc/canaan/
4472
4473 CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
4474 M:      David Howells <dhowells@redhat.com>
4475 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
4476 S:      Supported
4477 F:      Documentation/filesystems/caching/cachefiles.rst
4478 F:      fs/cachefiles/
4479
4480 CADENCE MIPI-CSI2 BRIDGES
4481 M:      Maxime Ripard <mripard@kernel.org>
4482 L:      linux-media@vger.kernel.org
4483 S:      Maintained
4484 F:      Documentation/devicetree/bindings/media/cdns,*.txt
4485 F:      drivers/media/platform/cadence/cdns-csi2*
4486
4487 CADENCE NAND DRIVER
4488 L:      linux-mtd@lists.infradead.org
4489 S:      Orphan
4490 F:      Documentation/devicetree/bindings/mtd/cadence-nand-controller.txt
4491 F:      drivers/mtd/nand/raw/cadence-nand-controller.c
4492
4493 CADENCE USB3 DRD IP DRIVER
4494 M:      Peter Chen <peter.chen@kernel.org>
4495 M:      Pawel Laszczak <pawell@cadence.com>
4496 R:      Roger Quadros <rogerq@kernel.org>
4497 R:      Aswath Govindraju <a-govindraju@ti.com>
4498 L:      linux-usb@vger.kernel.org
4499 S:      Maintained
4500 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4501 F:      Documentation/devicetree/bindings/usb/cdns,usb3.yaml
4502 F:      drivers/usb/cdns3/
4503 X:      drivers/usb/cdns3/cdnsp*
4504
4505 CADENCE USBSSP DRD IP DRIVER
4506 M:      Pawel Laszczak <pawell@cadence.com>
4507 L:      linux-usb@vger.kernel.org
4508 S:      Maintained
4509 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4510 F:      drivers/usb/cdns3/
4511 X:      drivers/usb/cdns3/cdns3*
4512
4513 CADET FM/AM RADIO RECEIVER DRIVER
4514 M:      Hans Verkuil <hverkuil@xs4all.nl>
4515 L:      linux-media@vger.kernel.org
4516 S:      Maintained
4517 W:      https://linuxtv.org
4518 T:      git git://linuxtv.org/media_tree.git
4519 F:      drivers/media/radio/radio-cadet*
4520
4521 CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
4522 L:      linux-media@vger.kernel.org
4523 S:      Orphan
4524 T:      git git://linuxtv.org/media_tree.git
4525 F:      Documentation/admin-guide/media/cafe_ccic*
4526 F:      drivers/media/platform/marvell/
4527
4528 CAIF NETWORK LAYER
4529 L:      netdev@vger.kernel.org
4530 S:      Orphan
4531 F:      Documentation/networking/caif/
4532 F:      drivers/net/caif/
4533 F:      include/net/caif/
4534 F:      include/uapi/linux/caif/
4535 F:      net/caif/
4536
4537 CAKE QDISC
4538 M:      Toke Høiland-Jørgensen <toke@toke.dk>
4539 L:      cake@lists.bufferbloat.net (moderated for non-subscribers)
4540 S:      Maintained
4541 F:      net/sched/sch_cake.c
4542
4543 CAN NETWORK DRIVERS
4544 M:      Wolfgang Grandegger <wg@grandegger.com>
4545 M:      Marc Kleine-Budde <mkl@pengutronix.de>
4546 L:      linux-can@vger.kernel.org
4547 S:      Maintained
4548 W:      https://github.com/linux-can
4549 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
4550 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
4551 F:      Documentation/devicetree/bindings/net/can/
4552 F:      Documentation/devicetree/bindings/phy/ti,tcan104x-can.yaml
4553 F:      drivers/net/can/
4554 F:      drivers/phy/phy-can-transceiver.c
4555 F:      include/linux/can/bittiming.h
4556 F:      include/linux/can/dev.h
4557 F:      include/linux/can/length.h
4558 F:      include/linux/can/platform/
4559 F:      include/linux/can/rx-offload.h
4560 F:      include/uapi/linux/can/error.h
4561 F:      include/uapi/linux/can/netlink.h
4562 F:      include/uapi/linux/can/vxcan.h
4563
4564 CAN NETWORK LAYER
4565 M:      Oliver Hartkopp <socketcan@hartkopp.net>
4566 M:      Marc Kleine-Budde <mkl@pengutronix.de>
4567 L:      linux-can@vger.kernel.org
4568 S:      Maintained
4569 W:      https://github.com/linux-can
4570 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
4571 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
4572 F:      Documentation/networking/can.rst
4573 F:      include/linux/can/can-ml.h
4574 F:      include/linux/can/core.h
4575 F:      include/linux/can/skb.h
4576 F:      include/net/netns/can.h
4577 F:      include/uapi/linux/can.h
4578 F:      include/uapi/linux/can/bcm.h
4579 F:      include/uapi/linux/can/gw.h
4580 F:      include/uapi/linux/can/isotp.h
4581 F:      include/uapi/linux/can/raw.h
4582 F:      net/can/
4583
4584 CAN-J1939 NETWORK LAYER
4585 M:      Robin van der Gracht <robin@protonic.nl>
4586 M:      Oleksij Rempel <o.rempel@pengutronix.de>
4587 R:      kernel@pengutronix.de
4588 L:      linux-can@vger.kernel.org
4589 S:      Maintained
4590 F:      Documentation/networking/j1939.rst
4591 F:      include/uapi/linux/can/j1939.h
4592 F:      net/can/j1939/
4593
4594 CAPABILITIES
4595 M:      Serge Hallyn <serge@hallyn.com>
4596 L:      linux-security-module@vger.kernel.org
4597 S:      Supported
4598 F:      include/linux/capability.h
4599 F:      include/uapi/linux/capability.h
4600 F:      kernel/capability.c
4601 F:      security/commoncap.c
4602
4603 CAPELLA MICROSYSTEMS LIGHT SENSOR DRIVER
4604 M:      Kevin Tsai <ktsai@capellamicro.com>
4605 S:      Maintained
4606 F:      drivers/iio/light/cm*
4607
4608 CARL9170 LINUX COMMUNITY WIRELESS DRIVER
4609 M:      Christian Lamparter <chunkeey@googlemail.com>
4610 L:      linux-wireless@vger.kernel.org
4611 S:      Maintained
4612 W:      https://wireless.wiki.kernel.org/en/users/Drivers/carl9170
4613 F:      drivers/net/wireless/ath/carl9170/
4614
4615 CAVIUM I2C DRIVER
4616 M:      Robert Richter <rric@kernel.org>
4617 S:      Odd Fixes
4618 W:      http://www.marvell.com
4619 F:      drivers/i2c/busses/i2c-octeon*
4620 F:      drivers/i2c/busses/i2c-thunderx*
4621
4622 CAVIUM LIQUIDIO NETWORK DRIVER
4623 M:      Derek Chickles <dchickles@marvell.com>
4624 M:      Satanand Burla <sburla@marvell.com>
4625 M:      Felix Manlunas <fmanlunas@marvell.com>
4626 L:      netdev@vger.kernel.org
4627 S:      Supported
4628 W:      http://www.marvell.com
4629 F:      drivers/net/ethernet/cavium/liquidio/
4630
4631 CAVIUM MMC DRIVER
4632 M:      Robert Richter <rric@kernel.org>
4633 S:      Odd Fixes
4634 W:      http://www.marvell.com
4635 F:      drivers/mmc/host/cavium*
4636
4637 CAVIUM OCTEON-TX CRYPTO DRIVER
4638 M:      George Cherian <gcherian@marvell.com>
4639 L:      linux-crypto@vger.kernel.org
4640 S:      Supported
4641 W:      http://www.marvell.com
4642 F:      drivers/crypto/cavium/cpt/
4643
4644 CAVIUM THUNDERX2 ARM64 SOC
4645 M:      Robert Richter <rric@kernel.org>
4646 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4647 S:      Odd Fixes
4648 F:      Documentation/devicetree/bindings/arm/cavium-thunder2.txt
4649 F:      arch/arm64/boot/dts/cavium/thunder2-99xx*
4650
4651 CBS/ETF/TAPRIO QDISCS
4652 M:      Vinicius Costa Gomes <vinicius.gomes@intel.com>
4653 S:      Maintained
4654 L:      netdev@vger.kernel.org
4655 F:      net/sched/sch_cbs.c
4656 F:      net/sched/sch_etf.c
4657 F:      net/sched/sch_taprio.c
4658
4659 CC2520 IEEE-802.15.4 RADIO DRIVER
4660 M:      Varka Bhadram <varkabhadram@gmail.com>
4661 L:      linux-wpan@vger.kernel.org
4662 S:      Maintained
4663 F:      Documentation/devicetree/bindings/net/ieee802154/cc2520.txt
4664 F:      drivers/net/ieee802154/cc2520.c
4665 F:      include/linux/spi/cc2520.h
4666
4667 CCREE ARM TRUSTZONE CRYPTOCELL REE DRIVER
4668 M:      Gilad Ben-Yossef <gilad@benyossef.com>
4669 L:      linux-crypto@vger.kernel.org
4670 S:      Supported
4671 W:      https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
4672 F:      drivers/crypto/ccree/
4673
4674 CCTRNG ARM TRUSTZONE CRYPTOCELL TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
4675 M:      Hadar Gat <hadar.gat@arm.com>
4676 L:      linux-crypto@vger.kernel.org
4677 S:      Supported
4678 F:      drivers/char/hw_random/cctrng.c
4679 F:      drivers/char/hw_random/cctrng.h
4680 F:      Documentation/devicetree/bindings/rng/arm-cctrng.yaml
4681 W:      https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
4682
4683 CEC FRAMEWORK
4684 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
4685 L:      linux-media@vger.kernel.org
4686 S:      Supported
4687 W:      http://linuxtv.org
4688 T:      git git://linuxtv.org/media_tree.git
4689 F:      Documentation/ABI/testing/debugfs-cec-error-inj
4690 F:      Documentation/devicetree/bindings/media/cec.txt
4691 F:      Documentation/driver-api/media/cec-core.rst
4692 F:      Documentation/userspace-api/media/cec
4693 F:      drivers/media/cec/
4694 F:      drivers/media/rc/keymaps/rc-cec.c
4695 F:      include/media/cec-notifier.h
4696 F:      include/media/cec.h
4697 F:      include/uapi/linux/cec-funcs.h
4698 F:      include/uapi/linux/cec.h
4699
4700 CEC GPIO DRIVER
4701 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
4702 L:      linux-media@vger.kernel.org
4703 S:      Supported
4704 W:      http://linuxtv.org
4705 T:      git git://linuxtv.org/media_tree.git
4706 F:      Documentation/devicetree/bindings/media/cec-gpio.txt
4707 F:      drivers/media/cec/platform/cec-gpio/
4708
4709 CELL BROADBAND ENGINE ARCHITECTURE
4710 M:      Arnd Bergmann <arnd@arndb.de>
4711 L:      linuxppc-dev@lists.ozlabs.org
4712 S:      Supported
4713 W:      http://www.ibm.com/developerworks/power/cell/
4714 F:      arch/powerpc/include/asm/cell*.h
4715 F:      arch/powerpc/include/asm/spu*.h
4716 F:      arch/powerpc/include/uapi/asm/spu*.h
4717 F:      arch/powerpc/platforms/cell/
4718
4719 CELLWISE CW2015 BATTERY DRIVER
4720 M:      Tobias Schrammm <t.schramm@manjaro.org>
4721 S:      Maintained
4722 F:      Documentation/devicetree/bindings/power/supply/cw2015_battery.yaml
4723 F:      drivers/power/supply/cw2015_battery.c
4724
4725 CEPH COMMON CODE (LIBCEPH)
4726 M:      Ilya Dryomov <idryomov@gmail.com>
4727 M:      Xiubo Li <xiubli@redhat.com>
4728 R:      Jeff Layton <jlayton@kernel.org>
4729 L:      ceph-devel@vger.kernel.org
4730 S:      Supported
4731 W:      http://ceph.com/
4732 T:      git git://github.com/ceph/ceph-client.git
4733 F:      include/linux/ceph/
4734 F:      include/linux/crush/
4735 F:      net/ceph/
4736
4737 CEPH DISTRIBUTED FILE SYSTEM CLIENT (CEPH)
4738 M:      Xiubo Li <xiubli@redhat.com>
4739 M:      Ilya Dryomov <idryomov@gmail.com>
4740 R:      Jeff Layton <jlayton@kernel.org>
4741 L:      ceph-devel@vger.kernel.org
4742 S:      Supported
4743 W:      http://ceph.com/
4744 T:      git git://github.com/ceph/ceph-client.git
4745 F:      Documentation/filesystems/ceph.rst
4746 F:      fs/ceph/
4747
4748 CERTIFICATE HANDLING
4749 M:      David Howells <dhowells@redhat.com>
4750 M:      David Woodhouse <dwmw2@infradead.org>
4751 L:      keyrings@vger.kernel.org
4752 S:      Maintained
4753 F:      Documentation/admin-guide/module-signing.rst
4754 F:      certs/
4755 F:      scripts/check-blacklist-hashes.awk
4756 F:      scripts/sign-file.c
4757 F:      tools/certs/
4758
4759 CFAG12864B LCD DRIVER
4760 M:      Miguel Ojeda <ojeda@kernel.org>
4761 S:      Maintained
4762 F:      drivers/auxdisplay/cfag12864b.c
4763 F:      include/linux/cfag12864b.h
4764
4765 CFAG12864BFB LCD FRAMEBUFFER DRIVER
4766 M:      Miguel Ojeda <ojeda@kernel.org>
4767 S:      Maintained
4768 F:      drivers/auxdisplay/cfag12864bfb.c
4769 F:      include/linux/cfag12864b.h
4770
4771 CHAR and MISC DRIVERS
4772 M:      Arnd Bergmann <arnd@arndb.de>
4773 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4774 S:      Supported
4775 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
4776 F:      drivers/char/
4777 F:      drivers/misc/
4778 F:      include/linux/miscdevice.h
4779 X:      drivers/char/agp/
4780 X:      drivers/char/hw_random/
4781 X:      drivers/char/ipmi/
4782 X:      drivers/char/random.c
4783 X:      drivers/char/tpm/
4784
4785 CHECKPATCH
4786 M:      Andy Whitcroft <apw@canonical.com>
4787 M:      Joe Perches <joe@perches.com>
4788 R:      Dwaipayan Ray <dwaipayanray1@gmail.com>
4789 R:      Lukas Bulwahn <lukas.bulwahn@gmail.com>
4790 S:      Maintained
4791 F:      scripts/checkpatch.pl
4792
4793 CHECKPATCH DOCUMENTATION
4794 M:      Dwaipayan Ray <dwaipayanray1@gmail.com>
4795 M:      Lukas Bulwahn <lukas.bulwahn@gmail.com>
4796 R:      Joe Perches <joe@perches.com>
4797 S:      Maintained
4798 F:      Documentation/dev-tools/checkpatch.rst
4799
4800 CHINESE DOCUMENTATION
4801 M:      Alex Shi <alexs@kernel.org>
4802 M:      Yanteng Si <siyanteng@loongson.cn>
4803 S:      Maintained
4804 F:      Documentation/translations/zh_CN/
4805
4806 CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
4807 M:      Peter Chen <peter.chen@kernel.org>
4808 L:      linux-usb@vger.kernel.org
4809 S:      Maintained
4810 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4811 F:      drivers/usb/chipidea/
4812
4813 CHIPONE ICN8318 I2C TOUCHSCREEN DRIVER
4814 M:      Hans de Goede <hdegoede@redhat.com>
4815 L:      linux-input@vger.kernel.org
4816 S:      Maintained
4817 F:      Documentation/devicetree/bindings/input/touchscreen/chipone,icn8318.yaml
4818 F:      drivers/input/touchscreen/chipone_icn8318.c
4819
4820 CHIPONE ICN8505 I2C TOUCHSCREEN DRIVER
4821 M:      Hans de Goede <hdegoede@redhat.com>
4822 L:      linux-input@vger.kernel.org
4823 S:      Maintained
4824 F:      drivers/input/touchscreen/chipone_icn8505.c
4825
4826 CHROME HARDWARE PLATFORM SUPPORT
4827 M:      Benson Leung <bleung@chromium.org>
4828 L:      chrome-platform@lists.linux.dev
4829 S:      Maintained
4830 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chrome-platform/linux.git
4831 F:      drivers/platform/chrome/
4832
4833 CHROMEOS EC CODEC DRIVER
4834 M:      Cheng-Yi Chiang <cychiang@chromium.org>
4835 M:      Tzung-Bi Shih <tzungbi@google.com>
4836 R:      Guenter Roeck <groeck@chromium.org>
4837 L:      chrome-platform@lists.linux.dev
4838 S:      Maintained
4839 F:      Documentation/devicetree/bindings/sound/google,cros-ec-codec.yaml
4840 F:      sound/soc/codecs/cros_ec_codec.*
4841
4842 CHROMEOS EC SUBDRIVERS
4843 M:      Benson Leung <bleung@chromium.org>
4844 R:      Guenter Roeck <groeck@chromium.org>
4845 L:      chrome-platform@lists.linux.dev
4846 S:      Maintained
4847 F:      drivers/power/supply/cros_usbpd-charger.c
4848 N:      cros_ec
4849 N:      cros-ec
4850
4851 CHROMEOS EC USB TYPE-C DRIVER
4852 M:      Prashant Malani <pmalani@chromium.org>
4853 L:      chrome-platform@lists.linux.dev
4854 S:      Maintained
4855 F:      drivers/platform/chrome/cros_ec_typec.c
4856
4857 CHROMEOS EC USB PD NOTIFY DRIVER
4858 M:      Prashant Malani <pmalani@chromium.org>
4859 L:      chrome-platform@lists.linux.dev
4860 S:      Maintained
4861 F:      drivers/platform/chrome/cros_usbpd_notify.c
4862 F:      include/linux/platform_data/cros_usbpd_notify.h
4863
4864 CHRONTEL CH7322 CEC DRIVER
4865 M:      Joe Tessler <jrt@google.com>
4866 L:      linux-media@vger.kernel.org
4867 S:      Maintained
4868 T:      git git://linuxtv.org/media_tree.git
4869 F:      Documentation/devicetree/bindings/media/i2c/chrontel,ch7322.yaml
4870 F:      drivers/media/cec/i2c/ch7322.c
4871
4872 CIRRUS LOGIC AUDIO CODEC DRIVERS
4873 M:      James Schulman <james.schulman@cirrus.com>
4874 M:      David Rhodes <david.rhodes@cirrus.com>
4875 M:      Lucas Tanure <tanureal@opensource.cirrus.com>
4876 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4877 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4878 L:      patches@opensource.cirrus.com
4879 S:      Maintained
4880 F:      Documentation/devicetree/bindings/sound/cirrus,cs*
4881 F:      include/dt-bindings/sound/cs*
4882 F:      sound/pci/hda/cs*
4883 F:      sound/soc/codecs/cs*
4884
4885 CIRRUS LOGIC DSP FIRMWARE DRIVER
4886 M:      Simon Trimmer <simont@opensource.cirrus.com>
4887 M:      Charles Keepax <ckeepax@opensource.cirrus.com>
4888 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4889 L:      patches@opensource.cirrus.com
4890 S:      Supported
4891 W:      https://github.com/CirrusLogic/linux-drivers/wiki
4892 T:      git https://github.com/CirrusLogic/linux-drivers.git
4893 F:      drivers/firmware/cirrus/*
4894 F:      include/linux/firmware/cirrus/*
4895
4896 CIRRUS LOGIC EP93XX ETHERNET DRIVER
4897 M:      Hartley Sweeten <hsweeten@visionengravers.com>
4898 L:      netdev@vger.kernel.org
4899 S:      Maintained
4900 F:      drivers/net/ethernet/cirrus/ep93xx_eth.c
4901
4902 CIRRUS LOGIC LOCHNAGAR DRIVER
4903 M:      Charles Keepax <ckeepax@opensource.cirrus.com>
4904 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4905 L:      patches@opensource.cirrus.com
4906 S:      Supported
4907 F:      Documentation/devicetree/bindings/clock/cirrus,lochnagar.yaml
4908 F:      Documentation/devicetree/bindings/hwmon/cirrus,lochnagar.yaml
4909 F:      Documentation/devicetree/bindings/mfd/cirrus,lochnagar.yaml
4910 F:      Documentation/devicetree/bindings/pinctrl/cirrus,lochnagar.yaml
4911 F:      Documentation/devicetree/bindings/sound/cirrus,lochnagar.yaml
4912 F:      Documentation/hwmon/lochnagar.rst
4913 F:      drivers/clk/clk-lochnagar.c
4914 F:      drivers/hwmon/lochnagar-hwmon.c
4915 F:      drivers/mfd/lochnagar-i2c.c
4916 F:      drivers/pinctrl/cirrus/pinctrl-lochnagar.c
4917 F:      drivers/regulator/lochnagar-regulator.c
4918 F:      include/dt-bindings/clk/lochnagar.h
4919 F:      include/dt-bindings/pinctrl/lochnagar.h
4920 F:      include/linux/mfd/lochnagar*
4921 F:      sound/soc/codecs/lochnagar-sc.c
4922
4923 CIRRUS LOGIC MADERA CODEC DRIVERS
4924 M:      Charles Keepax <ckeepax@opensource.cirrus.com>
4925 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4926 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4927 L:      patches@opensource.cirrus.com
4928 S:      Supported
4929 W:      https://github.com/CirrusLogic/linux-drivers/wiki
4930 T:      git https://github.com/CirrusLogic/linux-drivers.git
4931 F:      Documentation/devicetree/bindings/mfd/cirrus,madera.yaml
4932 F:      Documentation/devicetree/bindings/pinctrl/cirrus,madera.yaml
4933 F:      Documentation/devicetree/bindings/sound/cirrus,madera.yaml
4934 F:      drivers/gpio/gpio-madera*
4935 F:      drivers/irqchip/irq-madera*
4936 F:      drivers/mfd/cs47l*
4937 F:      drivers/mfd/madera*
4938 F:      drivers/pinctrl/cirrus/*
4939 F:      include/dt-bindings/sound/madera*
4940 F:      include/linux/irqchip/irq-madera*
4941 F:      include/linux/mfd/madera/*
4942 F:      include/sound/madera*
4943 F:      sound/soc/codecs/cs47l*
4944 F:      sound/soc/codecs/madera*
4945
4946 CISCO FCOE HBA DRIVER
4947 M:      Satish Kharat <satishkh@cisco.com>
4948 M:      Sesidhar Baddela <sebaddel@cisco.com>
4949 M:      Karan Tilak Kumar <kartilak@cisco.com>
4950 L:      linux-scsi@vger.kernel.org
4951 S:      Supported
4952 F:      drivers/scsi/fnic/
4953
4954 CISCO SCSI HBA DRIVER
4955 M:      Karan Tilak Kumar <kartilak@cisco.com>
4956 M:      Sesidhar Baddela <sebaddel@cisco.com>
4957 L:      linux-scsi@vger.kernel.org
4958 S:      Supported
4959 F:      drivers/scsi/snic/
4960
4961 CISCO VIC ETHERNET NIC DRIVER
4962 M:      Christian Benvenuti <benve@cisco.com>
4963 M:      Govindarajulu Varadarajan <_govind@gmx.com>
4964 S:      Supported
4965 F:      drivers/net/ethernet/cisco/enic/
4966
4967 CISCO VIC LOW LATENCY NIC DRIVER
4968 M:      Christian Benvenuti <benve@cisco.com>
4969 M:      Nelson Escobar <neescoba@cisco.com>
4970 S:      Supported
4971 F:      drivers/infiniband/hw/usnic/
4972
4973 CLANG-FORMAT FILE
4974 M:      Miguel Ojeda <ojeda@kernel.org>
4975 S:      Maintained
4976 F:      .clang-format
4977
4978 CLANG/LLVM BUILD SUPPORT
4979 M:      Nathan Chancellor <nathan@kernel.org>
4980 M:      Nick Desaulniers <ndesaulniers@google.com>
4981 R:      Tom Rix <trix@redhat.com>
4982 L:      llvm@lists.linux.dev
4983 S:      Supported
4984 W:      https://clangbuiltlinux.github.io/
4985 B:      https://github.com/ClangBuiltLinux/linux/issues
4986 C:      irc://irc.libera.chat/clangbuiltlinux
4987 F:      Documentation/kbuild/llvm.rst
4988 F:      include/linux/compiler-clang.h
4989 F:      scripts/Makefile.clang
4990 F:      scripts/clang-tools/
4991 K:      \b(?i:clang|llvm)\b
4992
4993 CLANG CONTROL FLOW INTEGRITY SUPPORT
4994 M:      Sami Tolvanen <samitolvanen@google.com>
4995 M:      Kees Cook <keescook@chromium.org>
4996 R:      Nathan Chancellor <nathan@kernel.org>
4997 R:      Nick Desaulniers <ndesaulniers@google.com>
4998 L:      llvm@lists.linux.dev
4999 S:      Supported
5000 B:      https://github.com/ClangBuiltLinux/linux/issues
5001 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/clang/features
5002 F:      include/linux/cfi.h
5003 F:      kernel/cfi.c
5004
5005 CLK API
5006 M:      Russell King <linux@armlinux.org.uk>
5007 L:      linux-clk@vger.kernel.org
5008 S:      Maintained
5009 F:      include/linux/clk.h
5010
5011 CLOCKSOURCE, CLOCKEVENT DRIVERS
5012 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
5013 M:      Thomas Gleixner <tglx@linutronix.de>
5014 L:      linux-kernel@vger.kernel.org
5015 S:      Supported
5016 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
5017 F:      Documentation/devicetree/bindings/timer/
5018 F:      drivers/clocksource/
5019
5020 CMPC ACPI DRIVER
5021 M:      Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
5022 M:      Daniel Oliveira Nascimento <don@syst.com.br>
5023 L:      platform-driver-x86@vger.kernel.org
5024 S:      Supported
5025 F:      drivers/platform/x86/classmate-laptop.c
5026
5027 COBALT MEDIA DRIVER
5028 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
5029 L:      linux-media@vger.kernel.org
5030 S:      Supported
5031 W:      https://linuxtv.org
5032 T:      git git://linuxtv.org/media_tree.git
5033 F:      drivers/media/pci/cobalt/
5034
5035 COCCINELLE/Semantic Patches (SmPL)
5036 M:      Julia Lawall <Julia.Lawall@inria.fr>
5037 M:      Nicolas Palix <nicolas.palix@imag.fr>
5038 L:      cocci@inria.fr (moderated for non-subscribers)
5039 S:      Supported
5040 W:      https://coccinelle.gitlabpages.inria.fr/website/
5041 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jlawall/linux.git
5042 F:      Documentation/dev-tools/coccinelle.rst
5043 F:      scripts/coccicheck
5044 F:      scripts/coccinelle/
5045
5046 CODA FILE SYSTEM
5047 M:      Jan Harkes <jaharkes@cs.cmu.edu>
5048 M:      coda@cs.cmu.edu
5049 L:      codalist@coda.cs.cmu.edu
5050 S:      Maintained
5051 W:      http://www.coda.cs.cmu.edu/
5052 F:      Documentation/filesystems/coda.rst
5053 F:      fs/coda/
5054 F:      include/linux/coda*.h
5055 F:      include/uapi/linux/coda*.h
5056
5057 CODA V4L2 MEM2MEM DRIVER
5058 M:      Philipp Zabel <p.zabel@pengutronix.de>
5059 L:      linux-media@vger.kernel.org
5060 S:      Maintained
5061 F:      Documentation/devicetree/bindings/media/coda.yaml
5062 F:      drivers/media/platform/chips-media/
5063
5064 CODE OF CONDUCT
5065 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
5066 S:      Supported
5067 F:      Documentation/process/code-of-conduct-interpretation.rst
5068 F:      Documentation/process/code-of-conduct.rst
5069
5070 COMEDI DRIVERS
5071 M:      Ian Abbott <abbotti@mev.co.uk>
5072 M:      H Hartley Sweeten <hsweeten@visionengravers.com>
5073 S:      Odd Fixes
5074 F:      drivers/comedi/
5075 F:      include/linux/comedi/
5076 F:      include/uapi/linux/comedi.h
5077
5078 COMMON CLK FRAMEWORK
5079 M:      Michael Turquette <mturquette@baylibre.com>
5080 M:      Stephen Boyd <sboyd@kernel.org>
5081 L:      linux-clk@vger.kernel.org
5082 S:      Maintained
5083 Q:      http://patchwork.kernel.org/project/linux-clk/list/
5084 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git
5085 F:      Documentation/devicetree/bindings/clock/
5086 F:      drivers/clk/
5087 F:      include/dt-bindings/clock/
5088 F:      include/linux/clk-pr*
5089 F:      include/linux/clk/
5090 F:      include/linux/of_clk.h
5091 X:      drivers/clk/clkdev.c
5092
5093 COMMON INTERNET FILE SYSTEM CLIENT (CIFS)
5094 M:      Steve French <sfrench@samba.org>
5095 L:      linux-cifs@vger.kernel.org
5096 L:      samba-technical@lists.samba.org (moderated for non-subscribers)
5097 S:      Supported
5098 W:      http://linux-cifs.samba.org/
5099 T:      git git://git.samba.org/sfrench/cifs-2.6.git
5100 F:      Documentation/admin-guide/cifs/
5101 F:      fs/cifs/
5102 F:      fs/smbfs_common/
5103
5104 COMPACTPCI HOTPLUG CORE
5105 M:      Scott Murray <scott@spiteful.org>
5106 L:      linux-pci@vger.kernel.org
5107 S:      Maintained
5108 F:      drivers/pci/hotplug/cpci_hotplug*
5109
5110 COMPACTPCI HOTPLUG GENERIC DRIVER
5111 M:      Scott Murray <scott@spiteful.org>
5112 L:      linux-pci@vger.kernel.org
5113 S:      Maintained
5114 F:      drivers/pci/hotplug/cpcihp_generic.c
5115
5116 COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
5117 M:      Scott Murray <scott@spiteful.org>
5118 L:      linux-pci@vger.kernel.org
5119 S:      Maintained
5120 F:      drivers/pci/hotplug/cpcihp_zt5550.*
5121
5122 COMPAL LAPTOP SUPPORT
5123 M:      Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
5124 L:      platform-driver-x86@vger.kernel.org
5125 S:      Maintained
5126 F:      drivers/platform/x86/compal-laptop.c
5127
5128 COMPILER ATTRIBUTES
5129 M:      Miguel Ojeda <ojeda@kernel.org>
5130 R:      Nick Desaulniers <ndesaulniers@google.com>
5131 S:      Maintained
5132 F:      include/linux/compiler_attributes.h
5133
5134 COMPUTE EXPRESS LINK (CXL)
5135 M:      Alison Schofield <alison.schofield@intel.com>
5136 M:      Vishal Verma <vishal.l.verma@intel.com>
5137 M:      Ira Weiny <ira.weiny@intel.com>
5138 M:      Ben Widawsky <bwidawsk@kernel.org>
5139 M:      Dan Williams <dan.j.williams@intel.com>
5140 L:      linux-cxl@vger.kernel.org
5141 S:      Maintained
5142 F:      drivers/cxl/
5143 F:      include/uapi/linux/cxl_mem.h
5144
5145 CONEXANT ACCESSRUNNER USB DRIVER
5146 L:      accessrunner-general@lists.sourceforge.net
5147 S:      Orphan
5148 W:      http://accessrunner.sourceforge.net/
5149 F:      drivers/usb/atm/cxacru.c
5150
5151 CONFIGFS
5152 M:      Joel Becker <jlbec@evilplan.org>
5153 M:      Christoph Hellwig <hch@lst.de>
5154 S:      Supported
5155 T:      git git://git.infradead.org/users/hch/configfs.git
5156 F:      fs/configfs/
5157 F:      include/linux/configfs.h
5158 F:      samples/configfs/
5159
5160 CONSOLE SUBSYSTEM
5161 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
5162 S:      Supported
5163 F:      drivers/video/console/
5164 F:      include/linux/console*
5165
5166 CONTEXT TRACKING
5167 M:      Frederic Weisbecker <frederic@kernel.org>
5168 S:      Maintained
5169 F:      kernel/context_tracking.c
5170 F:      include/linux/context_tracking*
5171
5172 CONTROL GROUP (CGROUP)
5173 M:      Tejun Heo <tj@kernel.org>
5174 M:      Zefan Li <lizefan.x@bytedance.com>
5175 M:      Johannes Weiner <hannes@cmpxchg.org>
5176 L:      cgroups@vger.kernel.org
5177 S:      Maintained
5178 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
5179 F:      Documentation/admin-guide/cgroup-v1/
5180 F:      Documentation/admin-guide/cgroup-v2.rst
5181 F:      include/linux/cgroup*
5182 F:      kernel/cgroup/
5183 F:      tools/testing/selftests/cgroup/
5184
5185 CONTROL GROUP - BLOCK IO CONTROLLER (BLKIO)
5186 M:      Tejun Heo <tj@kernel.org>
5187 M:      Jens Axboe <axboe@kernel.dk>
5188 L:      cgroups@vger.kernel.org
5189 L:      linux-block@vger.kernel.org
5190 T:      git git://git.kernel.dk/linux-block
5191 F:      Documentation/admin-guide/cgroup-v1/blkio-controller.rst
5192 F:      block/bfq-cgroup.c
5193 F:      block/blk-cgroup.c
5194 F:      block/blk-iolatency.c
5195 F:      block/blk-throttle.c
5196 F:      include/linux/blk-cgroup.h
5197
5198 CONTROL GROUP - CPUSET
5199 M:      Zefan Li <lizefan.x@bytedance.com>
5200 L:      cgroups@vger.kernel.org
5201 S:      Maintained
5202 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
5203 F:      Documentation/admin-guide/cgroup-v1/cpusets.rst
5204 F:      include/linux/cpuset.h
5205 F:      kernel/cgroup/cpuset.c
5206
5207 CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG)
5208 M:      Johannes Weiner <hannes@cmpxchg.org>
5209 M:      Michal Hocko <mhocko@kernel.org>
5210 M:      Roman Gushchin <roman.gushchin@linux.dev>
5211 M:      Shakeel Butt <shakeelb@google.com>
5212 R:      Muchun Song <songmuchun@bytedance.com>
5213 L:      cgroups@vger.kernel.org
5214 L:      linux-mm@kvack.org
5215 S:      Maintained
5216 F:      mm/memcontrol.c
5217 F:      mm/swap_cgroup.c
5218 F:      tools/testing/selftests/cgroup/memcg_protection.m
5219 F:      tools/testing/selftests/cgroup/test_kmem.c
5220 F:      tools/testing/selftests/cgroup/test_memcontrol.c
5221
5222 CORETEMP HARDWARE MONITORING DRIVER
5223 M:      Fenghua Yu <fenghua.yu@intel.com>
5224 L:      linux-hwmon@vger.kernel.org
5225 S:      Maintained
5226 F:      Documentation/hwmon/coretemp.rst
5227 F:      drivers/hwmon/coretemp.c
5228
5229 CORSAIR-CPRO HARDWARE MONITOR DRIVER
5230 M:      Marius Zachmann <mail@mariuszachmann.de>
5231 L:      linux-hwmon@vger.kernel.org
5232 S:      Maintained
5233 F:      drivers/hwmon/corsair-cpro.c
5234
5235 CORSAIR-PSU HARDWARE MONITOR DRIVER
5236 M:      Wilken Gottwalt <wilken.gottwalt@posteo.net>
5237 L:      linux-hwmon@vger.kernel.org
5238 S:      Maintained
5239 F:      Documentation/hwmon/corsair-psu.rst
5240 F:      drivers/hwmon/corsair-psu.c
5241
5242 COUNTER SUBSYSTEM
5243 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
5244 L:      linux-iio@vger.kernel.org
5245 S:      Maintained
5246 T:      git git@gitlab.com:vilhelmgray/counter.git
5247 F:      Documentation/ABI/testing/sysfs-bus-counter
5248 F:      Documentation/driver-api/generic-counter.rst
5249 F:      drivers/counter/
5250 F:      include/linux/counter.h
5251 F:      include/uapi/linux/counter.h
5252 F:      tools/counter/
5253
5254 CP2615 I2C DRIVER
5255 M:      Bence Csókás <bence98@sch.bme.hu>
5256 S:      Maintained
5257 F:      drivers/i2c/busses/i2c-cp2615.c
5258
5259 CPMAC ETHERNET DRIVER
5260 M:      Florian Fainelli <f.fainelli@gmail.com>
5261 L:      netdev@vger.kernel.org
5262 S:      Maintained
5263 F:      drivers/net/ethernet/ti/cpmac.c
5264
5265 CPU FREQUENCY DRIVERS - VEXPRESS SPC ARM BIG LITTLE
5266 M:      Viresh Kumar <viresh.kumar@linaro.org>
5267 M:      Sudeep Holla <sudeep.holla@arm.com>
5268 L:      linux-pm@vger.kernel.org
5269 S:      Maintained
5270 W:      http://www.arm.com/products/processors/technologies/biglittleprocessing.php
5271 F:      drivers/cpufreq/vexpress-spc-cpufreq.c
5272
5273 CPU FREQUENCY SCALING FRAMEWORK
5274 M:      "Rafael J. Wysocki" <rafael@kernel.org>
5275 M:      Viresh Kumar <viresh.kumar@linaro.org>
5276 L:      linux-pm@vger.kernel.org
5277 S:      Maintained
5278 B:      https://bugzilla.kernel.org
5279 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
5280 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git (For ARM Updates)
5281 F:      Documentation/admin-guide/pm/cpufreq.rst
5282 F:      Documentation/admin-guide/pm/intel_pstate.rst
5283 F:      Documentation/cpu-freq/
5284 F:      Documentation/devicetree/bindings/cpufreq/
5285 F:      drivers/cpufreq/
5286 F:      include/linux/cpufreq.h
5287 F:      include/linux/sched/cpufreq.h
5288 F:      kernel/sched/cpufreq*.c
5289 F:      tools/testing/selftests/cpufreq/
5290
5291 CPU IDLE TIME MANAGEMENT FRAMEWORK
5292 M:      "Rafael J. Wysocki" <rafael@kernel.org>
5293 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
5294 L:      linux-pm@vger.kernel.org
5295 S:      Maintained
5296 B:      https://bugzilla.kernel.org
5297 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
5298 F:      Documentation/admin-guide/pm/cpuidle.rst
5299 F:      Documentation/driver-api/pm/cpuidle.rst
5300 F:      drivers/cpuidle/
5301 F:      include/linux/cpuidle.h
5302
5303 CPU POWER MONITORING SUBSYSTEM
5304 M:      Thomas Renninger <trenn@suse.com>
5305 M:      Shuah Khan <shuah@kernel.org>
5306 M:      Shuah Khan <skhan@linuxfoundation.org>
5307 L:      linux-pm@vger.kernel.org
5308 S:      Maintained
5309 F:      tools/power/cpupower/
5310
5311 CPUID/MSR DRIVER
5312 M:      "H. Peter Anvin" <hpa@zytor.com>
5313 S:      Maintained
5314 F:      arch/x86/kernel/cpuid.c
5315 F:      arch/x86/kernel/msr.c
5316
5317 CPUIDLE DRIVER - ARM BIG LITTLE
5318 M:      Lorenzo Pieralisi <lpieralisi@kernel.org>
5319 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
5320 L:      linux-pm@vger.kernel.org
5321 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5322 S:      Maintained
5323 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
5324 F:      drivers/cpuidle/cpuidle-big_little.c
5325
5326 CPUIDLE DRIVER - ARM EXYNOS
5327 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
5328 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
5329 M:      Kukjin Kim <kgene@kernel.org>
5330 L:      linux-pm@vger.kernel.org
5331 L:      linux-samsung-soc@vger.kernel.org
5332 S:      Supported
5333 F:      arch/arm/mach-exynos/pm.c
5334 F:      drivers/cpuidle/cpuidle-exynos.c
5335 F:      include/linux/platform_data/cpuidle-exynos.h
5336
5337 CPUIDLE DRIVER - ARM PSCI
5338 M:      Lorenzo Pieralisi <lpieralisi@kernel.org>
5339 M:      Sudeep Holla <sudeep.holla@arm.com>
5340 L:      linux-pm@vger.kernel.org
5341 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5342 S:      Supported
5343 F:      drivers/cpuidle/cpuidle-psci.c
5344
5345 CPUIDLE DRIVER - ARM PSCI PM DOMAIN
5346 M:      Ulf Hansson <ulf.hansson@linaro.org>
5347 L:      linux-pm@vger.kernel.org
5348 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5349 S:      Supported
5350 F:      drivers/cpuidle/cpuidle-psci.h
5351 F:      drivers/cpuidle/cpuidle-psci-domain.c
5352
5353 CPUIDLE DRIVER - DT IDLE PM DOMAIN
5354 M:      Ulf Hansson <ulf.hansson@linaro.org>
5355 L:      linux-pm@vger.kernel.org
5356 S:      Supported
5357 F:      drivers/cpuidle/dt_idle_genpd.c
5358 F:      drivers/cpuidle/dt_idle_genpd.h
5359
5360 CPUIDLE DRIVER - RISC-V SBI
5361 M:      Anup Patel <anup@brainfault.org>
5362 L:      linux-pm@vger.kernel.org
5363 L:      linux-riscv@lists.infradead.org
5364 S:      Maintained
5365 F:      drivers/cpuidle/cpuidle-riscv-sbi.c
5366
5367 CRAMFS FILESYSTEM
5368 M:      Nicolas Pitre <nico@fluxnic.net>
5369 S:      Maintained
5370 F:      Documentation/filesystems/cramfs.rst
5371 F:      fs/cramfs/
5372
5373 CREATIVE SB0540
5374 M:      Bastien Nocera <hadess@hadess.net>
5375 L:      linux-input@vger.kernel.org
5376 S:      Maintained
5377 F:      drivers/hid/hid-creative-sb0540.c
5378
5379 CRYPTO API
5380 M:      Herbert Xu <herbert@gondor.apana.org.au>
5381 M:      "David S. Miller" <davem@davemloft.net>
5382 L:      linux-crypto@vger.kernel.org
5383 S:      Maintained
5384 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
5385 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
5386 F:      Documentation/crypto/
5387 F:      Documentation/devicetree/bindings/crypto/
5388 F:      arch/*/crypto/
5389 F:      crypto/
5390 F:      drivers/crypto/
5391 F:      include/crypto/
5392 F:      include/linux/crypto*
5393 F:      lib/crypto/
5394
5395 CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
5396 M:      Neil Horman <nhorman@tuxdriver.com>
5397 L:      linux-crypto@vger.kernel.org
5398 S:      Maintained
5399 F:      crypto/ansi_cprng.c
5400 F:      crypto/rng.c
5401
5402 CS3308 MEDIA DRIVER
5403 M:      Hans Verkuil <hverkuil@xs4all.nl>
5404 L:      linux-media@vger.kernel.org
5405 S:      Odd Fixes
5406 W:      http://linuxtv.org
5407 T:      git git://linuxtv.org/media_tree.git
5408 F:      drivers/media/i2c/cs3308.c
5409
5410 CS5535 Audio ALSA driver
5411 M:      Jaya Kumar <jayakumar.alsa@gmail.com>
5412 S:      Maintained
5413 F:      sound/pci/cs5535audio/
5414
5415 CSI DRIVERS FOR ALLWINNER V3s
5416 M:      Yong Deng <yong.deng@magewell.com>
5417 L:      linux-media@vger.kernel.org
5418 S:      Maintained
5419 T:      git git://linuxtv.org/media_tree.git
5420 F:      Documentation/devicetree/bindings/media/allwinner,sun6i-a31-csi.yaml
5421 F:      drivers/media/platform/sunxi/sun6i-csi/
5422
5423 CTU CAN FD DRIVER
5424 M:      Pavel Pisa <pisa@cmp.felk.cvut.cz>
5425 M:      Ondrej Ille <ondrej.ille@gmail.com>
5426 L:      linux-can@vger.kernel.org
5427 S:      Maintained
5428 F:      Documentation/devicetree/bindings/net/can/ctu,ctucanfd.yaml
5429 F:      drivers/net/can/ctucanfd/
5430
5431 CW1200 WLAN driver
5432 M:      Solomon Peachy <pizza@shaftnet.org>
5433 S:      Maintained
5434 F:      drivers/net/wireless/st/cw1200/
5435
5436 CX18 VIDEO4LINUX DRIVER
5437 M:      Andy Walls <awalls@md.metrocast.net>
5438 L:      linux-media@vger.kernel.org
5439 S:      Maintained
5440 W:      https://linuxtv.org
5441 T:      git git://linuxtv.org/media_tree.git
5442 F:      drivers/media/pci/cx18/
5443 F:      include/uapi/linux/ivtv*
5444
5445 CX2341X MPEG ENCODER HELPER MODULE
5446 M:      Hans Verkuil <hverkuil@xs4all.nl>
5447 L:      linux-media@vger.kernel.org
5448 S:      Maintained
5449 W:      https://linuxtv.org
5450 T:      git git://linuxtv.org/media_tree.git
5451 F:      drivers/media/common/cx2341x*
5452 F:      include/media/drv-intf/cx2341x.h
5453
5454 CX24120 MEDIA DRIVER
5455 M:      Jemma Denson <jdenson@gmail.com>
5456 M:      Patrick Boettcher <patrick.boettcher@posteo.de>
5457 L:      linux-media@vger.kernel.org
5458 S:      Maintained
5459 W:      https://linuxtv.org
5460 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5461 F:      drivers/media/dvb-frontends/cx24120*
5462
5463 CX88 VIDEO4LINUX DRIVER
5464 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
5465 L:      linux-media@vger.kernel.org
5466 S:      Odd fixes
5467 W:      https://linuxtv.org
5468 T:      git git://linuxtv.org/media_tree.git
5469 F:      Documentation/driver-api/media/drivers/cx88*
5470 F:      drivers/media/pci/cx88/
5471
5472 CXD2820R MEDIA DRIVER
5473 M:      Antti Palosaari <crope@iki.fi>
5474 L:      linux-media@vger.kernel.org
5475 S:      Maintained
5476 W:      https://linuxtv.org
5477 W:      http://palosaari.fi/linux/
5478 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5479 T:      git git://linuxtv.org/anttip/media_tree.git
5480 F:      drivers/media/dvb-frontends/cxd2820r*
5481
5482 CXGB3 ETHERNET DRIVER (CXGB3)
5483 M:      Raju Rangoju <rajur@chelsio.com>
5484 L:      netdev@vger.kernel.org
5485 S:      Supported
5486 W:      http://www.chelsio.com
5487 F:      drivers/net/ethernet/chelsio/cxgb3/
5488
5489 CXGB3 ISCSI DRIVER (CXGB3I)
5490 M:      Karen Xie <kxie@chelsio.com>
5491 L:      linux-scsi@vger.kernel.org
5492 S:      Supported
5493 W:      http://www.chelsio.com
5494 F:      drivers/scsi/cxgbi/cxgb3i
5495
5496 CXGB4 CRYPTO DRIVER (chcr)
5497 M:      Ayush Sawal <ayush.sawal@chelsio.com>
5498 M:      Vinay Kumar Yadav <vinay.yadav@chelsio.com>
5499 M:      Rohit Maheshwari <rohitm@chelsio.com>
5500 L:      linux-crypto@vger.kernel.org
5501 S:      Supported
5502 W:      http://www.chelsio.com
5503 F:      drivers/crypto/chelsio
5504
5505 CXGB4 INLINE CRYPTO DRIVER
5506 M:      Ayush Sawal <ayush.sawal@chelsio.com>
5507 M:      Vinay Kumar Yadav <vinay.yadav@chelsio.com>
5508 M:      Rohit Maheshwari <rohitm@chelsio.com>
5509 L:      netdev@vger.kernel.org
5510 S:      Supported
5511 W:      http://www.chelsio.com
5512 F:      drivers/net/ethernet/chelsio/inline_crypto/
5513
5514 CXGB4 ETHERNET DRIVER (CXGB4)
5515 M:      Raju Rangoju <rajur@chelsio.com>
5516 L:      netdev@vger.kernel.org
5517 S:      Supported
5518 W:      http://www.chelsio.com
5519 F:      drivers/net/ethernet/chelsio/cxgb4/
5520
5521 CXGB4 ISCSI DRIVER (CXGB4I)
5522 M:      Karen Xie <kxie@chelsio.com>
5523 L:      linux-scsi@vger.kernel.org
5524 S:      Supported
5525 W:      http://www.chelsio.com
5526 F:      drivers/scsi/cxgbi/cxgb4i
5527
5528 CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
5529 M:      Potnuri Bharat Teja <bharat@chelsio.com>
5530 L:      linux-rdma@vger.kernel.org
5531 S:      Supported
5532 W:      http://www.openfabrics.org
5533 F:      drivers/infiniband/hw/cxgb4/
5534 F:      include/uapi/rdma/cxgb4-abi.h
5535
5536 CXGB4VF ETHERNET DRIVER (CXGB4VF)
5537 M:      Raju Rangoju <rajur@chelsio.com>
5538 L:      netdev@vger.kernel.org
5539 S:      Supported
5540 W:      http://www.chelsio.com
5541 F:      drivers/net/ethernet/chelsio/cxgb4vf/
5542
5543 CXL (IBM Coherent Accelerator Processor Interface CAPI) DRIVER
5544 M:      Frederic Barrat <fbarrat@linux.ibm.com>
5545 M:      Andrew Donnellan <ajd@linux.ibm.com>
5546 L:      linuxppc-dev@lists.ozlabs.org
5547 S:      Supported
5548 F:      Documentation/ABI/testing/sysfs-class-cxl
5549 F:      Documentation/powerpc/cxl.rst
5550 F:      arch/powerpc/platforms/powernv/pci-cxl.c
5551 F:      drivers/misc/cxl/
5552 F:      include/misc/cxl*
5553 F:      include/uapi/misc/cxl.h
5554
5555 CXLFLASH (IBM Coherent Accelerator Processor Interface CAPI Flash) SCSI DRIVER
5556 M:      Manoj N. Kumar <manoj@linux.ibm.com>
5557 M:      Matthew R. Ochs <mrochs@linux.ibm.com>
5558 M:      Uma Krishnan <ukrishn@linux.ibm.com>
5559 L:      linux-scsi@vger.kernel.org
5560 S:      Supported
5561 F:      Documentation/powerpc/cxlflash.rst
5562 F:      drivers/scsi/cxlflash/
5563 F:      include/uapi/scsi/cxlflash_ioctl.h
5564
5565 CYBERPRO FB DRIVER
5566 M:      Russell King <linux@armlinux.org.uk>
5567 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5568 S:      Maintained
5569 W:      http://www.armlinux.org.uk/
5570 F:      drivers/video/fbdev/cyber2000fb.*
5571
5572 CYCLADES PC300 DRIVER
5573 S:      Orphan
5574 F:      drivers/net/wan/pc300*
5575
5576 CYPRESS_FIRMWARE MEDIA DRIVER
5577 M:      Antti Palosaari <crope@iki.fi>
5578 L:      linux-media@vger.kernel.org
5579 S:      Maintained
5580 W:      https://linuxtv.org
5581 W:      http://palosaari.fi/linux/
5582 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5583 T:      git git://linuxtv.org/anttip/media_tree.git
5584 F:      drivers/media/common/cypress_firmware*
5585
5586 CYPRESS CY8CTMA140 TOUCHSCREEN DRIVER
5587 M:      Linus Walleij <linus.walleij@linaro.org>
5588 L:      linux-input@vger.kernel.org
5589 S:      Maintained
5590 F:      drivers/input/touchscreen/cy8ctma140.c
5591
5592 CYPRESS STREETFIGHTER TOUCHKEYS DRIVER
5593 M:      Yassine Oudjana <y.oudjana@protonmail.com>
5594 L:      linux-input@vger.kernel.org
5595 S:      Maintained
5596 F:      Documentation/devicetree/bindings/input/cypress-sf.yaml
5597 F:      drivers/input/keyboard/cypress-sf.c
5598
5599 CYTTSP TOUCHSCREEN DRIVER
5600 M:      Linus Walleij <linus.walleij@linaro.org>
5601 L:      linux-input@vger.kernel.org
5602 S:      Maintained
5603 F:      drivers/input/touchscreen/cyttsp*
5604
5605 D-LINK DIR-685 TOUCHKEYS DRIVER
5606 M:      Linus Walleij <linus.walleij@linaro.org>
5607 L:      linux-input@vger.kernel.org
5608 S:      Supported
5609 F:      drivers/input/keyboard/dlink-dir685-touchkeys.c
5610
5611 DALLAS/MAXIM DS1685-FAMILY REAL TIME CLOCK
5612 M:      Joshua Kinard <kumba@gentoo.org>
5613 S:      Maintained
5614 F:      drivers/rtc/rtc-ds1685.c
5615 F:      include/linux/rtc/ds1685.h
5616
5617 DAMA SLAVE for AX.25
5618 M:      Joerg Reuter <jreuter@yaina.de>
5619 L:      linux-hams@vger.kernel.org
5620 S:      Maintained
5621 W:      http://yaina.de/jreuter/
5622 W:      http://www.qsl.net/dl1bke/
5623 F:      net/ax25/af_ax25.c
5624 F:      net/ax25/ax25_dev.c
5625 F:      net/ax25/ax25_ds_*
5626 F:      net/ax25/ax25_in.c
5627 F:      net/ax25/ax25_out.c
5628 F:      net/ax25/ax25_timer.c
5629 F:      net/ax25/sysctl_net_ax25.c
5630
5631 DATA ACCESS MONITOR
5632 M:      SeongJae Park <sj@kernel.org>
5633 L:      damon@lists.linux.dev
5634 L:      linux-mm@kvack.org
5635 S:      Maintained
5636 F:      Documentation/ABI/testing/sysfs-kernel-mm-damon
5637 F:      Documentation/admin-guide/mm/damon/
5638 F:      Documentation/vm/damon/
5639 F:      include/linux/damon.h
5640 F:      include/trace/events/damon.h
5641 F:      mm/damon/
5642 F:      tools/testing/selftests/damon/
5643
5644 DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
5645 L:      netdev@vger.kernel.org
5646 S:      Orphan
5647 F:      Documentation/networking/device_drivers/ethernet/dec/dmfe.rst
5648 F:      drivers/net/ethernet/dec/tulip/dmfe.c
5649
5650 DC390/AM53C974 SCSI driver
5651 M:      Hannes Reinecke <hare@suse.com>
5652 L:      linux-scsi@vger.kernel.org
5653 S:      Maintained
5654 F:      drivers/scsi/am53c974.c
5655
5656 DC395x SCSI driver
5657 M:      Oliver Neukum <oliver@neukum.org>
5658 M:      Ali Akcaagac <aliakc@web.de>
5659 M:      Jamie Lenehan <lenehan@twibble.org>
5660 L:      dc395x@twibble.org
5661 S:      Maintained
5662 W:      http://twibble.org/dist/dc395x/
5663 W:      http://lists.twibble.org/mailman/listinfo/dc395x/
5664 F:      Documentation/scsi/dc395x.rst
5665 F:      drivers/scsi/dc395x.*
5666
5667 DCCP PROTOCOL
5668 L:      dccp@vger.kernel.org
5669 S:      Orphan
5670 W:      http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
5671 F:      include/linux/dccp.h
5672 F:      include/linux/tfrc.h
5673 F:      include/uapi/linux/dccp.h
5674 F:      net/dccp/
5675
5676 DECnet NETWORK LAYER
5677 L:      linux-decnet-user@lists.sourceforge.net
5678 S:      Orphan
5679 W:      http://linux-decnet.sourceforge.net
5680 F:      Documentation/networking/decnet.rst
5681 F:      net/decnet/
5682
5683 DECSTATION PLATFORM SUPPORT
5684 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
5685 L:      linux-mips@vger.kernel.org
5686 S:      Maintained
5687 W:      http://www.linux-mips.org/wiki/DECstation
5688 F:      arch/mips/dec/
5689 F:      arch/mips/include/asm/dec/
5690 F:      arch/mips/include/asm/mach-dec/
5691
5692 DEFXX FDDI NETWORK DRIVER
5693 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
5694 S:      Maintained
5695 F:      drivers/net/fddi/defxx.*
5696
5697 DEFZA FDDI NETWORK DRIVER
5698 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
5699 S:      Maintained
5700 F:      drivers/net/fddi/defza.*
5701
5702 DEINTERLACE DRIVERS FOR ALLWINNER H3
5703 M:      Jernej Skrabec <jernej.skrabec@gmail.com>
5704 L:      linux-media@vger.kernel.org
5705 S:      Maintained
5706 T:      git git://linuxtv.org/media_tree.git
5707 F:      Documentation/devicetree/bindings/media/allwinner,sun8i-h3-deinterlace.yaml
5708 F:      drivers/media/platform/sunxi/sun8i-di/
5709
5710 DELL LAPTOP DRIVER
5711 M:      Matthew Garrett <mjg59@srcf.ucam.org>
5712 M:      Pali Rohár <pali@kernel.org>
5713 L:      platform-driver-x86@vger.kernel.org
5714 S:      Maintained
5715 F:      drivers/platform/x86/dell/dell-laptop.c
5716
5717 DELL LAPTOP FREEFALL DRIVER
5718 M:      Pali Rohár <pali@kernel.org>
5719 S:      Maintained
5720 F:      drivers/platform/x86/dell/dell-smo8800.c
5721
5722 DELL LAPTOP RBTN DRIVER
5723 M:      Pali Rohár <pali@kernel.org>
5724 S:      Maintained
5725 F:      drivers/platform/x86/dell/dell-rbtn.*
5726
5727 DELL LAPTOP SMM DRIVER
5728 M:      Pali Rohár <pali@kernel.org>
5729 S:      Maintained
5730 F:      Documentation/ABI/obsolete/procfs-i8k
5731 F:      drivers/hwmon/dell-smm-hwmon.c
5732 F:      include/uapi/linux/i8k.h
5733
5734 DELL REMOTE BIOS UPDATE DRIVER
5735 M:      Stuart Hayes <stuart.w.hayes@gmail.com>
5736 L:      platform-driver-x86@vger.kernel.org
5737 S:      Maintained
5738 F:      drivers/platform/x86/dell/dell_rbu.c
5739
5740 DELL SMBIOS DRIVER
5741 M:      Pali Rohár <pali@kernel.org>
5742 L:      Dell.Client.Kernel@dell.com
5743 L:      platform-driver-x86@vger.kernel.org
5744 S:      Maintained
5745 F:      drivers/platform/x86/dell/dell-smbios.*
5746
5747 DELL SMBIOS SMM DRIVER
5748 L:      Dell.Client.Kernel@dell.com
5749 L:      platform-driver-x86@vger.kernel.org
5750 S:      Maintained
5751 F:      drivers/platform/x86/dell/dell-smbios-smm.c
5752
5753 DELL SMBIOS WMI DRIVER
5754 L:      Dell.Client.Kernel@dell.com
5755 L:      platform-driver-x86@vger.kernel.org
5756 S:      Maintained
5757 F:      drivers/platform/x86/dell/dell-smbios-wmi.c
5758 F:      tools/wmi/dell-smbios-example.c
5759
5760 DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
5761 M:      Stuart Hayes <stuart.w.hayes@gmail.com>
5762 L:      platform-driver-x86@vger.kernel.org
5763 S:      Maintained
5764 F:      Documentation/driver-api/dcdbas.rst
5765 F:      drivers/platform/x86/dell/dcdbas.*
5766
5767 DELL WMI DESCRIPTOR DRIVER
5768 L:      Dell.Client.Kernel@dell.com
5769 S:      Maintained
5770 F:      drivers/platform/x86/dell/dell-wmi-descriptor.c
5771
5772 DELL WMI SYSMAN DRIVER
5773 M:      Divya Bharathi <divya.bharathi@dell.com>
5774 M:      Prasanth Ksr <prasanth.ksr@dell.com>
5775 L:      Dell.Client.Kernel@dell.com
5776 L:      platform-driver-x86@vger.kernel.org
5777 S:      Maintained
5778 F:      Documentation/ABI/testing/sysfs-class-firmware-attributes
5779 F:      drivers/platform/x86/dell/dell-wmi-sysman/
5780
5781 DELL WMI NOTIFICATIONS DRIVER
5782 M:      Matthew Garrett <mjg59@srcf.ucam.org>
5783 M:      Pali Rohár <pali@kernel.org>
5784 S:      Maintained
5785 F:      drivers/platform/x86/dell/dell-wmi-base.c
5786
5787 DELL WMI HARDWARE PRIVACY SUPPORT
5788 M:      Perry Yuan <Perry.Yuan@dell.com>
5789 L:      Dell.Client.Kernel@dell.com
5790 L:      platform-driver-x86@vger.kernel.org
5791 S:      Maintained
5792 F:      drivers/platform/x86/dell/dell-wmi-privacy.c
5793
5794 DELTA ST MEDIA DRIVER
5795 M:      Hugues Fruchet <hugues.fruchet@foss.st.com>
5796 L:      linux-media@vger.kernel.org
5797 S:      Supported
5798 W:      https://linuxtv.org
5799 T:      git git://linuxtv.org/media_tree.git
5800 F:      drivers/media/platform/st/sti/delta
5801
5802 DELTA AHE-50DC FAN CONTROL MODULE DRIVER
5803 M:      Zev Weiss <zev@bewilderbeest.net>
5804 L:      linux-hwmon@vger.kernel.org
5805 S:      Maintained
5806 F:      drivers/hwmon/pmbus/delta-ahe50dc-fan.c
5807
5808 DELTA DPS920AB PSU DRIVER
5809 M:      Robert Marko <robert.marko@sartura.hr>
5810 L:      linux-hwmon@vger.kernel.org
5811 S:      Maintained
5812 F:      Documentation/hwmon/dps920ab.rst
5813 F:      drivers/hwmon/pmbus/dps920ab.c
5814
5815 DELTA NETWORKS TN48M CPLD DRIVERS
5816 M:      Robert Marko <robert.marko@sartura.hr>
5817 S:      Maintained
5818 F:      Documentation/devicetree/bindings/gpio/delta,tn48m-gpio.yaml
5819 F:      Documentation/devicetree/bindings/mfd/delta,tn48m-cpld.yaml
5820 F:      Documentation/devicetree/bindings/reset/delta,tn48m-reset.yaml
5821 F:      drivers/gpio/gpio-tn48m.c
5822 F:      include/dt-bindings/reset/delta,tn48m-reset.h
5823
5824 DENALI NAND DRIVER
5825 L:      linux-mtd@lists.infradead.org
5826 S:      Orphan
5827 F:      drivers/mtd/nand/raw/denali*
5828
5829 DESIGNWARE EDMA CORE IP DRIVER
5830 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
5831 L:      dmaengine@vger.kernel.org
5832 S:      Maintained
5833 F:      drivers/dma/dw-edma/
5834 F:      include/linux/dma/edma.h
5835
5836 DESIGNWARE XDATA IP DRIVER
5837 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
5838 L:      linux-pci@vger.kernel.org
5839 S:      Maintained
5840 F:      Documentation/misc-devices/dw-xdata-pcie.rst
5841 F:      drivers/misc/dw-xdata-pcie.c
5842
5843 DESIGNWARE USB2 DRD IP DRIVER
5844 M:      Minas Harutyunyan <hminas@synopsys.com>
5845 L:      linux-usb@vger.kernel.org
5846 S:      Maintained
5847 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
5848 F:      drivers/usb/dwc2/
5849
5850 DESIGNWARE USB3 DRD IP DRIVER
5851 M:      Felipe Balbi <balbi@kernel.org>
5852 L:      linux-usb@vger.kernel.org
5853 S:      Maintained
5854 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
5855 F:      drivers/usb/dwc3/
5856
5857 DEVANTECH SRF ULTRASONIC RANGER IIO DRIVER
5858 M:      Andreas Klinger <ak@it-klinger.de>
5859 L:      linux-iio@vger.kernel.org
5860 S:      Maintained
5861 F:      Documentation/ABI/testing/sysfs-bus-iio-distance-srf08
5862 F:      drivers/iio/proximity/srf*.c
5863
5864 DEVICE COREDUMP (DEV_COREDUMP)
5865 M:      Johannes Berg <johannes@sipsolutions.net>
5866 L:      linux-kernel@vger.kernel.org
5867 S:      Maintained
5868 F:      drivers/base/devcoredump.c
5869 F:      include/linux/devcoredump.h
5870
5871 DEVICE DEPENDENCY HELPER SCRIPT
5872 M:      Saravana Kannan <saravanak@google.com>
5873 L:      linux-kernel@vger.kernel.org
5874 S:      Maintained
5875 F:      scripts/dev-needs.sh
5876
5877 DEVICE DIRECT ACCESS (DAX)
5878 M:      Dan Williams <dan.j.williams@intel.com>
5879 M:      Vishal Verma <vishal.l.verma@intel.com>
5880 M:      Dave Jiang <dave.jiang@intel.com>
5881 L:      nvdimm@lists.linux.dev
5882 S:      Supported
5883 F:      drivers/dax/
5884
5885 DEVICE FREQUENCY (DEVFREQ)
5886 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
5887 M:      Kyungmin Park <kyungmin.park@samsung.com>
5888 M:      Chanwoo Choi <cw00.choi@samsung.com>
5889 L:      linux-pm@vger.kernel.org
5890 S:      Maintained
5891 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
5892 F:      Documentation/devicetree/bindings/devfreq/
5893 F:      Documentation/devicetree/bindings/interconnect/mediatek,cci.yaml
5894 F:      drivers/devfreq/
5895 F:      include/linux/devfreq.h
5896 F:      include/trace/events/devfreq.h
5897
5898 DEVICE FREQUENCY EVENT (DEVFREQ-EVENT)
5899 M:      Chanwoo Choi <cw00.choi@samsung.com>
5900 L:      linux-pm@vger.kernel.org
5901 S:      Supported
5902 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
5903 F:      Documentation/devicetree/bindings/devfreq/event/
5904 F:      drivers/devfreq/devfreq-event.c
5905 F:      drivers/devfreq/event/
5906 F:      include/dt-bindings/pmu/exynos_ppmu.h
5907 F:      include/linux/devfreq-event.h
5908
5909 DEVICE NUMBER REGISTRY
5910 M:      Torben Mathiasen <device@lanana.org>
5911 S:      Maintained
5912 W:      http://lanana.org/docs/device-list/index.html
5913
5914 DEVICE RESOURCE MANAGEMENT HELPERS
5915 M:      Hans de Goede <hdegoede@redhat.com>
5916 R:      Matti Vaittinen <mazziesaccount@gmail.com>
5917 S:      Maintained
5918 F:      include/linux/devm-helpers.h
5919
5920 DEVICE-MAPPER  (LVM)
5921 M:      Alasdair Kergon <agk@redhat.com>
5922 M:      Mike Snitzer <snitzer@kernel.org>
5923 M:      dm-devel@redhat.com
5924 L:      dm-devel@redhat.com
5925 S:      Maintained
5926 W:      http://sources.redhat.com/dm
5927 Q:      http://patchwork.kernel.org/project/dm-devel/list/
5928 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git
5929 T:      quilt http://people.redhat.com/agk/patches/linux/editing/
5930 F:      Documentation/admin-guide/device-mapper/
5931 F:      drivers/md/Kconfig
5932 F:      drivers/md/Makefile
5933 F:      drivers/md/dm*
5934 F:      drivers/md/persistent-data/
5935 F:      include/linux/device-mapper.h
5936 F:      include/linux/dm-*.h
5937 F:      include/uapi/linux/dm-*.h
5938
5939 DEVLINK
5940 M:      Jiri Pirko <jiri@nvidia.com>
5941 L:      netdev@vger.kernel.org
5942 S:      Supported
5943 F:      Documentation/networking/devlink
5944 F:      include/net/devlink.h
5945 F:      include/uapi/linux/devlink.h
5946 F:      net/core/devlink.c
5947
5948 DH ELECTRONICS IMX6 DHCOM BOARD SUPPORT
5949 M:      Christoph Niedermaier <cniedermaier@dh-electronics.com>
5950 L:      kernel@dh-electronics.com
5951 S:      Maintained
5952 F:      arch/arm/boot/dts/imx6*-dhcom-*
5953
5954 DH ELECTRONICS STM32MP1 DHCOM/DHCOR BOARD SUPPORT
5955 M:      Marek Vasut <marex@denx.de>
5956 L:      kernel@dh-electronics.com
5957 S:      Maintained
5958 F:      arch/arm/boot/dts/stm32mp1*-dhcom-*
5959 F:      arch/arm/boot/dts/stm32mp1*-dhcor-*
5960
5961 DIALOG SEMICONDUCTOR DRIVERS
5962 M:      Support Opensource <support.opensource@diasemi.com>
5963 S:      Supported
5964 W:      http://www.dialog-semiconductor.com/products
5965 F:      Documentation/devicetree/bindings/input/da90??-onkey.txt
5966 F:      Documentation/devicetree/bindings/input/dlg,da72??.txt
5967 F:      Documentation/devicetree/bindings/mfd/da90*.txt
5968 F:      Documentation/devicetree/bindings/regulator/dlg,da9*.yaml
5969 F:      Documentation/devicetree/bindings/regulator/da92*.txt
5970 F:      Documentation/devicetree/bindings/regulator/slg51000.txt
5971 F:      Documentation/devicetree/bindings/sound/da[79]*.txt
5972 F:      Documentation/devicetree/bindings/thermal/da90??-thermal.txt
5973 F:      Documentation/devicetree/bindings/watchdog/da90??-wdt.txt
5974 F:      Documentation/hwmon/da90??.rst
5975 F:      drivers/gpio/gpio-da90??.c
5976 F:      drivers/hwmon/da90??-hwmon.c
5977 F:      drivers/iio/adc/da91??-*.c
5978 F:      drivers/input/misc/da72??.[ch]
5979 F:      drivers/input/misc/da90??_onkey.c
5980 F:      drivers/input/touchscreen/da9052_tsi.c
5981 F:      drivers/leds/leds-da90??.c
5982 F:      drivers/mfd/da903x.c
5983 F:      drivers/mfd/da90??-*.c
5984 F:      drivers/mfd/da91??-*.c
5985 F:      drivers/pinctrl/pinctrl-da90??.c
5986 F:      drivers/power/supply/da9052-battery.c
5987 F:      drivers/power/supply/da91??-*.c
5988 F:      drivers/regulator/da9???-regulator.[ch]
5989 F:      drivers/regulator/slg51000-regulator.[ch]
5990 F:      drivers/rtc/rtc-da90??.c
5991 F:      drivers/thermal/da90??-thermal.c
5992 F:      drivers/video/backlight/da90??_bl.c
5993 F:      drivers/watchdog/da90??_wdt.c
5994 F:      include/dt-bindings/regulator/dlg,da9*-regulator.h
5995 F:      include/linux/mfd/da903x.h
5996 F:      include/linux/mfd/da9052/
5997 F:      include/linux/mfd/da9055/
5998 F:      include/linux/mfd/da9062/
5999 F:      include/linux/mfd/da9063/
6000 F:      include/linux/mfd/da9150/
6001 F:      include/linux/regulator/da9211.h
6002 F:      include/sound/da[79]*.h
6003 F:      sound/soc/codecs/da[79]*.[ch]
6004
6005 DIAMOND SYSTEMS GPIO-MM GPIO DRIVER
6006 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
6007 L:      linux-gpio@vger.kernel.org
6008 S:      Maintained
6009 F:      drivers/gpio/gpio-gpio-mm.c
6010
6011 DIOLAN U2C-12 I2C DRIVER
6012 M:      Guenter Roeck <linux@roeck-us.net>
6013 L:      linux-i2c@vger.kernel.org
6014 S:      Maintained
6015 F:      drivers/i2c/busses/i2c-diolan-u2c.c
6016
6017 DIRECTORY NOTIFICATION (DNOTIFY)
6018 M:      Jan Kara <jack@suse.cz>
6019 R:      Amir Goldstein <amir73il@gmail.com>
6020 L:      linux-fsdevel@vger.kernel.org
6021 S:      Maintained
6022 F:      Documentation/filesystems/dnotify.rst
6023 F:      fs/notify/dnotify/
6024 F:      include/linux/dnotify.h
6025
6026 DISK GEOMETRY AND PARTITION HANDLING
6027 M:      Andries Brouwer <aeb@cwi.nl>
6028 S:      Maintained
6029 W:      http://www.win.tue.nl/~aeb/linux/Large-Disk.html
6030 W:      http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
6031 W:      http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
6032
6033 DISKQUOTA
6034 M:      Jan Kara <jack@suse.com>
6035 S:      Maintained
6036 F:      Documentation/filesystems/quota.rst
6037 F:      fs/quota/
6038 F:      include/linux/quota*.h
6039 F:      include/uapi/linux/quota*.h
6040
6041 DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
6042 M:      Bernie Thompson <bernie@plugable.com>
6043 L:      linux-fbdev@vger.kernel.org
6044 S:      Maintained
6045 W:      http://plugable.com/category/projects/udlfb/
6046 F:      Documentation/fb/udlfb.rst
6047 F:      drivers/video/fbdev/udlfb.c
6048 F:      include/video/udlfb.h
6049
6050 DISTRIBUTED LOCK MANAGER (DLM)
6051 M:      Christine Caulfield <ccaulfie@redhat.com>
6052 M:      David Teigland <teigland@redhat.com>
6053 L:      cluster-devel@redhat.com
6054 S:      Supported
6055 W:      http://sources.redhat.com/cluster/
6056 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/linux-dlm.git
6057 F:      fs/dlm/
6058
6059 DMA BUFFER SHARING FRAMEWORK
6060 M:      Sumit Semwal <sumit.semwal@linaro.org>
6061 M:      Christian König <christian.koenig@amd.com>
6062 L:      linux-media@vger.kernel.org
6063 L:      dri-devel@lists.freedesktop.org
6064 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
6065 S:      Maintained
6066 T:      git git://anongit.freedesktop.org/drm/drm-misc
6067 F:      Documentation/driver-api/dma-buf.rst
6068 F:      drivers/dma-buf/
6069 F:      include/linux/*fence.h
6070 F:      include/linux/dma-buf.h
6071 F:      include/linux/dma-resv.h
6072 K:      \bdma_(?:buf|fence|resv)\b
6073
6074 DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
6075 M:      Vinod Koul <vkoul@kernel.org>
6076 L:      dmaengine@vger.kernel.org
6077 S:      Maintained
6078 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
6079 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vkoul/dmaengine.git
6080 F:      Documentation/devicetree/bindings/dma/
6081 F:      Documentation/driver-api/dmaengine/
6082 F:      drivers/dma/
6083 F:      include/linux/dma/
6084 F:      include/linux/dmaengine.h
6085 F:      include/linux/of_dma.h
6086
6087 DMA MAPPING HELPERS
6088 M:      Christoph Hellwig <hch@lst.de>
6089 M:      Marek Szyprowski <m.szyprowski@samsung.com>
6090 R:      Robin Murphy <robin.murphy@arm.com>
6091 L:      iommu@lists.linux.dev
6092 S:      Supported
6093 W:      http://git.infradead.org/users/hch/dma-mapping.git
6094 T:      git git://git.infradead.org/users/hch/dma-mapping.git
6095 F:      include/asm-generic/dma-mapping.h
6096 F:      include/linux/dma-direct.h
6097 F:      include/linux/dma-mapping.h
6098 F:      include/linux/dma-map-ops.h
6099 F:      kernel/dma/
6100
6101 DMA MAPPING BENCHMARK
6102 M:      Xiang Chen <chenxiang66@hisilicon.com>
6103 L:      iommu@lists.linux.dev
6104 F:      kernel/dma/map_benchmark.c
6105 F:      tools/testing/selftests/dma/
6106
6107 DMA-BUF HEAPS FRAMEWORK
6108 M:      Sumit Semwal <sumit.semwal@linaro.org>
6109 R:      Benjamin Gaignard <benjamin.gaignard@collabora.com>
6110 R:      Liam Mark <lmark@codeaurora.org>
6111 R:      Laura Abbott <labbott@redhat.com>
6112 R:      Brian Starkey <Brian.Starkey@arm.com>
6113 R:      John Stultz <jstultz@google.com>
6114 L:      linux-media@vger.kernel.org
6115 L:      dri-devel@lists.freedesktop.org
6116 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
6117 S:      Maintained
6118 T:      git git://anongit.freedesktop.org/drm/drm-misc
6119 F:      drivers/dma-buf/dma-heap.c
6120 F:      drivers/dma-buf/heaps/*
6121 F:      include/linux/dma-heap.h
6122 F:      include/uapi/linux/dma-heap.h
6123
6124 DMC FREQUENCY DRIVER FOR SAMSUNG EXYNOS5422
6125 M:      Lukasz Luba <lukasz.luba@arm.com>
6126 L:      linux-pm@vger.kernel.org
6127 L:      linux-samsung-soc@vger.kernel.org
6128 S:      Maintained
6129 F:      Documentation/devicetree/bindings/memory-controllers/samsung,exynos5422-dmc.yaml
6130 F:      drivers/memory/samsung/exynos5422-dmc.c
6131
6132 DME1737 HARDWARE MONITOR DRIVER
6133 M:      Juerg Haefliger <juergh@gmail.com>
6134 L:      linux-hwmon@vger.kernel.org
6135 S:      Maintained
6136 F:      Documentation/hwmon/dme1737.rst
6137 F:      drivers/hwmon/dme1737.c
6138
6139 DMI/SMBIOS SUPPORT
6140 M:      Jean Delvare <jdelvare@suse.com>
6141 S:      Maintained
6142 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jdelvare/staging.git dmi-for-next
6143 F:      Documentation/ABI/testing/sysfs-firmware-dmi-tables
6144 F:      drivers/firmware/dmi-id.c
6145 F:      drivers/firmware/dmi_scan.c
6146 F:      include/linux/dmi.h
6147
6148 DOCUMENTATION
6149 M:      Jonathan Corbet <corbet@lwn.net>
6150 L:      linux-doc@vger.kernel.org
6151 S:      Maintained
6152 P:      Documentation/doc-guide/maintainer-profile.rst
6153 T:      git git://git.lwn.net/linux.git docs-next
6154 F:      Documentation/
6155 F:      scripts/documentation-file-ref-check
6156 F:      scripts/kernel-doc
6157 F:      scripts/sphinx-pre-install
6158 X:      Documentation/ABI/
6159 X:      Documentation/admin-guide/media/
6160 X:      Documentation/devicetree/
6161 X:      Documentation/driver-api/media/
6162 X:      Documentation/firmware-guide/acpi/
6163 X:      Documentation/i2c/
6164 X:      Documentation/power/
6165 X:      Documentation/spi/
6166 X:      Documentation/userspace-api/media/
6167
6168 DOCUMENTATION REPORTING ISSUES
6169 M:      Thorsten Leemhuis <linux@leemhuis.info>
6170 L:      linux-doc@vger.kernel.org
6171 S:      Maintained
6172 F:      Documentation/admin-guide/reporting-issues.rst
6173
6174 DOCUMENTATION SCRIPTS
6175 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6176 L:      linux-doc@vger.kernel.org
6177 S:      Maintained
6178 F:      Documentation/sphinx/parse-headers.pl
6179 F:      scripts/documentation-file-ref-check
6180 F:      scripts/sphinx-pre-install
6181
6182 DOCUMENTATION/ITALIAN
6183 M:      Federico Vaga <federico.vaga@vaga.pv.it>
6184 L:      linux-doc@vger.kernel.org
6185 S:      Maintained
6186 F:      Documentation/translations/it_IT
6187
6188 DOCUMENTATION/JAPANESE
6189 R:      Akira Yokosawa <akiyks@gmail.com>
6190 L:      linux-doc@vger.kernel.org
6191 S:      Maintained
6192 F:      Documentation/translations/ja_JP
6193
6194 DONGWOON DW9714 LENS VOICE COIL DRIVER
6195 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
6196 L:      linux-media@vger.kernel.org
6197 S:      Maintained
6198 T:      git git://linuxtv.org/media_tree.git
6199 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9714.txt
6200 F:      drivers/media/i2c/dw9714.c
6201
6202 DONGWOON DW9768 LENS VOICE COIL DRIVER
6203 M:      Dongchun Zhu <dongchun.zhu@mediatek.com>
6204 L:      linux-media@vger.kernel.org
6205 S:      Maintained
6206 T:      git git://linuxtv.org/media_tree.git
6207 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9768.yaml
6208 F:      drivers/media/i2c/dw9768.c
6209
6210 DONGWOON DW9807 LENS VOICE COIL DRIVER
6211 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
6212 L:      linux-media@vger.kernel.org
6213 S:      Maintained
6214 T:      git git://linuxtv.org/media_tree.git
6215 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9807-vcm.yaml
6216 F:      drivers/media/i2c/dw9807-vcm.c
6217
6218 DOUBLETALK DRIVER
6219 M:      "James R. Van Zandt" <jrv@vanzandt.mv.com>
6220 L:      blinux-list@redhat.com
6221 S:      Maintained
6222 F:      drivers/char/dtlk.c
6223 F:      include/linux/dtlk.h
6224
6225 DPAA2 DATAPATH I/O (DPIO) DRIVER
6226 M:      Roy Pledge <Roy.Pledge@nxp.com>
6227 L:      linux-kernel@vger.kernel.org
6228 S:      Maintained
6229 F:      drivers/soc/fsl/dpio
6230
6231 DPAA2 ETHERNET DRIVER
6232 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
6233 L:      netdev@vger.kernel.org
6234 S:      Maintained
6235 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/ethernet-driver.rst
6236 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/mac-phy-support.rst
6237 F:      drivers/net/ethernet/freescale/dpaa2/Kconfig
6238 F:      drivers/net/ethernet/freescale/dpaa2/Makefile
6239 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-eth*
6240 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-mac*
6241 F:      drivers/net/ethernet/freescale/dpaa2/dpkg.h
6242 F:      drivers/net/ethernet/freescale/dpaa2/dpmac*
6243 F:      drivers/net/ethernet/freescale/dpaa2/dpni*
6244
6245 DPAA2 ETHERNET SWITCH DRIVER
6246 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
6247 L:      netdev@vger.kernel.org
6248 S:      Maintained
6249 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/switch-driver.rst
6250 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-switch*
6251 F:      drivers/net/ethernet/freescale/dpaa2/dpsw*
6252
6253 DPT_I2O SCSI RAID DRIVER
6254 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
6255 L:      linux-scsi@vger.kernel.org
6256 S:      Maintained
6257 W:      http://www.adaptec.com/
6258 F:      drivers/scsi/dpt*
6259 F:      drivers/scsi/dpt/
6260
6261 DRBD DRIVER
6262 M:      Philipp Reisner <philipp.reisner@linbit.com>
6263 M:      Lars Ellenberg <lars.ellenberg@linbit.com>
6264 M:      Christoph Böhmwalder <christoph.boehmwalder@linbit.com>
6265 L:      drbd-dev@lists.linbit.com
6266 S:      Supported
6267 W:      http://www.drbd.org
6268 T:      git git://git.linbit.com/linux-drbd.git
6269 T:      git git://git.linbit.com/drbd-8.4.git
6270 F:      Documentation/admin-guide/blockdev/
6271 F:      drivers/block/drbd/
6272 F:      lib/lru_cache.c
6273
6274 DRIVER COMPONENT FRAMEWORK
6275 L:      dri-devel@lists.freedesktop.org
6276 F:      drivers/base/component.c
6277 F:      include/linux/component.h
6278
6279 DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS
6280 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
6281 R:      "Rafael J. Wysocki" <rafael@kernel.org>
6282 S:      Supported
6283 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
6284 F:      Documentation/core-api/kobject.rst
6285 F:      drivers/base/
6286 F:      fs/debugfs/
6287 F:      fs/sysfs/
6288 F:      include/linux/debugfs.h
6289 F:      include/linux/kobj*
6290 F:      lib/kobj*
6291
6292 DRIVERS FOR OMAP ADAPTIVE VOLTAGE SCALING (AVS)
6293 M:      Nishanth Menon <nm@ti.com>
6294 L:      linux-pm@vger.kernel.org
6295 S:      Maintained
6296 F:      drivers/soc/ti/smartreflex.c
6297 F:      include/linux/power/smartreflex.h
6298
6299 DRM DRIVER FOR ALLWINNER DE2 AND DE3 ENGINE
6300 M:      Maxime Ripard <mripard@kernel.org>
6301 M:      Chen-Yu Tsai <wens@csie.org>
6302 R:      Jernej Skrabec <jernej.skrabec@gmail.com>
6303 L:      dri-devel@lists.freedesktop.org
6304 S:      Supported
6305 T:      git git://anongit.freedesktop.org/drm/drm-misc
6306 F:      drivers/gpu/drm/sun4i/sun8i*
6307
6308 DRM DRIVER FOR ARM PL111 CLCD
6309 M:      Emma Anholt <emma@anholt.net>
6310 S:      Supported
6311 T:      git git://anongit.freedesktop.org/drm/drm-misc
6312 F:      drivers/gpu/drm/pl111/
6313
6314 DRM DRIVER FOR ARM VERSATILE TFT PANELS
6315 M:      Linus Walleij <linus.walleij@linaro.org>
6316 S:      Maintained
6317 T:      git git://anongit.freedesktop.org/drm/drm-misc
6318 F:      Documentation/devicetree/bindings/display/panel/arm,versatile-tft-panel.yaml
6319 F:      drivers/gpu/drm/panel/panel-arm-versatile.c
6320
6321 DRM DRIVER FOR ASPEED BMC GFX
6322 M:      Joel Stanley <joel@jms.id.au>
6323 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
6324 S:      Supported
6325 T:      git git://anongit.freedesktop.org/drm/drm-misc
6326 F:      Documentation/devicetree/bindings/gpu/aspeed-gfx.txt
6327 F:      drivers/gpu/drm/aspeed/
6328
6329 DRM DRIVER FOR AST SERVER GRAPHICS CHIPS
6330 M:      Dave Airlie <airlied@redhat.com>
6331 R:      Thomas Zimmermann <tzimmermann@suse.de>
6332 L:      dri-devel@lists.freedesktop.org
6333 S:      Supported
6334 T:      git git://anongit.freedesktop.org/drm/drm-misc
6335 F:      drivers/gpu/drm/ast/
6336
6337 DRM DRIVER FOR BOCHS VIRTUAL GPU
6338 M:      Gerd Hoffmann <kraxel@redhat.com>
6339 L:      virtualization@lists.linux-foundation.org
6340 S:      Maintained
6341 T:      git git://anongit.freedesktop.org/drm/drm-misc
6342 F:      drivers/gpu/drm/tiny/bochs.c
6343
6344 DRM DRIVER FOR BOE HIMAX8279D PANELS
6345 M:      Jerry Han <hanxu5@huaqin.corp-partner.google.com>
6346 S:      Maintained
6347 F:      Documentation/devicetree/bindings/display/panel/boe,himax8279d.yaml
6348 F:      drivers/gpu/drm/panel/panel-boe-himax8279d.c
6349
6350 DRM DRIVER FOR CHIPONE ICN6211 MIPI-DSI to RGB CONVERTER BRIDGE
6351 M:      Jagan Teki <jagan@amarulasolutions.com>
6352 S:      Maintained
6353 F:      Documentation/devicetree/bindings/display/bridge/chipone,icn6211.yaml
6354 F:      drivers/gpu/drm/bridge/chipone-icn6211.c
6355
6356 DRM DRIVER FOR FARADAY TVE200 TV ENCODER
6357 M:      Linus Walleij <linus.walleij@linaro.org>
6358 S:      Maintained
6359 T:      git git://anongit.freedesktop.org/drm/drm-misc
6360 F:      drivers/gpu/drm/tve200/
6361
6362 DRM DRIVER FOR FEIXIN K101 IM2BA02 MIPI-DSI LCD PANELS
6363 M:      Icenowy Zheng <icenowy@aosc.io>
6364 S:      Maintained
6365 F:      Documentation/devicetree/bindings/display/panel/feixin,k101-im2ba02.yaml
6366 F:      drivers/gpu/drm/panel/panel-feixin-k101-im2ba02.c
6367
6368 DRM DRIVER FOR FEIYANG FY07024DI26A30-D MIPI-DSI LCD PANELS
6369 M:      Jagan Teki <jagan@amarulasolutions.com>
6370 S:      Maintained
6371 F:      Documentation/devicetree/bindings/display/panel/feiyang,fy07024di26a30d.yaml
6372 F:      drivers/gpu/drm/panel/panel-feiyang-fy07024di26a30d.c
6373
6374 DRM DRIVER FOR GENERIC USB DISPLAY
6375 M:      Noralf Trønnes <noralf@tronnes.org>
6376 S:      Maintained
6377 W:      https://github.com/notro/gud/wiki
6378 T:      git git://anongit.freedesktop.org/drm/drm-misc
6379 F:      drivers/gpu/drm/gud/
6380 F:      include/drm/gud.h
6381
6382 DRM DRIVER FOR GRAIN MEDIA GM12U320 PROJECTORS
6383 M:      Hans de Goede <hdegoede@redhat.com>
6384 S:      Maintained
6385 T:      git git://anongit.freedesktop.org/drm/drm-misc
6386 F:      drivers/gpu/drm/tiny/gm12u320.c
6387
6388 DRM DRIVER FOR HX8357D PANELS
6389 M:      Emma Anholt <emma@anholt.net>
6390 S:      Maintained
6391 T:      git git://anongit.freedesktop.org/drm/drm-misc
6392 F:      Documentation/devicetree/bindings/display/himax,hx8357d.txt
6393 F:      drivers/gpu/drm/tiny/hx8357d.c
6394
6395 DRM DRIVER FOR ILITEK ILI9225 PANELS
6396 M:      David Lechner <david@lechnology.com>
6397 S:      Maintained
6398 T:      git git://anongit.freedesktop.org/drm/drm-misc
6399 F:      Documentation/devicetree/bindings/display/ilitek,ili9225.txt
6400 F:      drivers/gpu/drm/tiny/ili9225.c
6401
6402 DRM DRIVER FOR ILITEK ILI9486 PANELS
6403 M:      Kamlesh Gurudasani <kamlesh.gurudasani@gmail.com>
6404 S:      Maintained
6405 T:      git git://anongit.freedesktop.org/drm/drm-misc
6406 F:      Documentation/devicetree/bindings/display/ilitek,ili9486.yaml
6407 F:      drivers/gpu/drm/tiny/ili9486.c
6408
6409 DRM DRIVER FOR INTEL I810 VIDEO CARDS
6410 S:      Orphan / Obsolete
6411 F:      drivers/gpu/drm/i810/
6412 F:      include/uapi/drm/i810_drm.h
6413
6414 DRM DRIVER FOR LVDS PANELS
6415 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6416 L:      dri-devel@lists.freedesktop.org
6417 T:      git git://anongit.freedesktop.org/drm/drm-misc
6418 S:      Maintained
6419 F:      drivers/gpu/drm/panel/panel-lvds.c
6420 F:      Documentation/devicetree/bindings/display/lvds.yaml
6421 F:      Documentation/devicetree/bindings/display/panel/panel-lvds.yaml
6422
6423 DRM DRIVER FOR MANTIX MLAF057WE51 PANELS
6424 M:      Guido Günther <agx@sigxcpu.org>
6425 R:      Purism Kernel Team <kernel@puri.sm>
6426 S:      Maintained
6427 F:      Documentation/devicetree/bindings/display/panel/mantix,mlaf057we51-x.yaml
6428 F:      drivers/gpu/drm/panel/panel-mantix-mlaf057we51.c
6429
6430 DRM DRIVER FOR MATROX G200/G400 GRAPHICS CARDS
6431 S:      Orphan / Obsolete
6432 F:      drivers/gpu/drm/mga/
6433 F:      include/uapi/drm/mga_drm.h
6434
6435 DRM DRIVER FOR MGA G200 GRAPHICS CHIPS
6436 M:      Dave Airlie <airlied@redhat.com>
6437 R:      Thomas Zimmermann <tzimmermann@suse.de>
6438 L:      dri-devel@lists.freedesktop.org
6439 S:      Supported
6440 T:      git git://anongit.freedesktop.org/drm/drm-misc
6441 F:      drivers/gpu/drm/mgag200/
6442
6443 DRM DRIVER FOR MI0283QT
6444 M:      Noralf Trønnes <noralf@tronnes.org>
6445 S:      Maintained
6446 T:      git git://anongit.freedesktop.org/drm/drm-misc
6447 F:      Documentation/devicetree/bindings/display/multi-inno,mi0283qt.txt
6448 F:      drivers/gpu/drm/tiny/mi0283qt.c
6449
6450 DRM DRIVER FOR MIPI DBI compatible panels
6451 M:      Noralf Trønnes <noralf@tronnes.org>
6452 S:      Maintained
6453 W:      https://github.com/notro/panel-mipi-dbi/wiki
6454 T:      git git://anongit.freedesktop.org/drm/drm-misc
6455 F:      Documentation/devicetree/bindings/display/panel/panel-mipi-dbi-spi.yaml
6456 F:      drivers/gpu/drm/tiny/panel-mipi-dbi.c
6457
6458 DRM DRIVER FOR MSM ADRENO GPU
6459 M:      Rob Clark <robdclark@gmail.com>
6460 M:      Abhinav Kumar <quic_abhinavk@quicinc.com>
6461 M:      Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
6462 R:      Sean Paul <sean@poorly.run>
6463 L:      linux-arm-msm@vger.kernel.org
6464 L:      dri-devel@lists.freedesktop.org
6465 L:      freedreno@lists.freedesktop.org
6466 S:      Maintained
6467 T:      git https://gitlab.freedesktop.org/drm/msm.git
6468 F:      Documentation/devicetree/bindings/display/msm/
6469 F:      drivers/gpu/drm/msm/
6470 F:      include/uapi/drm/msm_drm.h
6471
6472 DRM DRIVER FOR NOVATEK NT35510 PANELS
6473 M:      Linus Walleij <linus.walleij@linaro.org>
6474 S:      Maintained
6475 T:      git git://anongit.freedesktop.org/drm/drm-misc
6476 F:      Documentation/devicetree/bindings/display/panel/novatek,nt35510.yaml
6477 F:      drivers/gpu/drm/panel/panel-novatek-nt35510.c
6478
6479 DRM DRIVER FOR NOVATEK NT35560 PANELS
6480 M:      Linus Walleij <linus.walleij@linaro.org>
6481 S:      Maintained
6482 T:      git git://anongit.freedesktop.org/drm/drm-misc
6483 F:      Documentation/devicetree/bindings/display/panel/sony,acx424akp.yaml
6484 F:      drivers/gpu/drm/panel/panel-novatek-nt35560.c
6485
6486 DRM DRIVER FOR NOVATEK NT36672A PANELS
6487 M:      Sumit Semwal <sumit.semwal@linaro.org>
6488 S:      Maintained
6489 T:      git git://anongit.freedesktop.org/drm/drm-misc
6490 F:      Documentation/devicetree/bindings/display/panel/novatek,nt36672a.yaml
6491 F:      drivers/gpu/drm/panel/panel-novatek-nt36672a.c
6492
6493 DRM DRIVER FOR NVIDIA GEFORCE/QUADRO GPUS
6494 M:      Ben Skeggs <bskeggs@redhat.com>
6495 M:      Karol Herbst <kherbst@redhat.com>
6496 M:      Lyude Paul <lyude@redhat.com>
6497 L:      dri-devel@lists.freedesktop.org
6498 L:      nouveau@lists.freedesktop.org
6499 S:      Supported
6500 W:      https://nouveau.freedesktop.org/
6501 Q:      https://patchwork.freedesktop.org/project/nouveau/
6502 Q:      https://gitlab.freedesktop.org/drm/nouveau/-/merge_requests
6503 B:      https://gitlab.freedesktop.org/drm/nouveau/-/issues
6504 C:      irc://irc.oftc.net/nouveau
6505 T:      git https://gitlab.freedesktop.org/drm/nouveau.git
6506 F:      drivers/gpu/drm/nouveau/
6507 F:      include/uapi/drm/nouveau_drm.h
6508
6509 DRM DRIVER FOR OLIMEX LCD-OLINUXINO PANELS
6510 M:      Stefan Mavrodiev <stefan@olimex.com>
6511 S:      Maintained
6512 F:      Documentation/devicetree/bindings/display/panel/olimex,lcd-olinuxino.yaml
6513 F:      drivers/gpu/drm/panel/panel-olimex-lcd-olinuxino.c
6514
6515 DRM DRIVER FOR PARADE PS8640 BRIDGE CHIP
6516 R:      Douglas Anderson <dianders@chromium.org>
6517 F:      Documentation/devicetree/bindings/display/bridge/ps8640.yaml
6518 F:      drivers/gpu/drm/bridge/parade-ps8640.c
6519
6520 DRM DRIVER FOR PERVASIVE DISPLAYS REPAPER PANELS
6521 M:      Noralf Trønnes <noralf@tronnes.org>
6522 S:      Maintained
6523 T:      git git://anongit.freedesktop.org/drm/drm-misc
6524 F:      Documentation/devicetree/bindings/display/repaper.txt
6525 F:      drivers/gpu/drm/tiny/repaper.c
6526
6527 DRM DRIVER FOR SOLOMON SSD130X OLED DISPLAYS
6528 M:      Javier Martinez Canillas <javierm@redhat.com>
6529 S:      Maintained
6530 T:      git git://anongit.freedesktop.org/drm/drm-misc
6531 F:      Documentation/devicetree/bindings/display/solomon,ssd1307fb.yaml
6532 F:      drivers/gpu/drm/solomon/ssd130x*
6533
6534 DRM DRIVER FOR QEMU'S CIRRUS DEVICE
6535 M:      Dave Airlie <airlied@redhat.com>
6536 M:      Gerd Hoffmann <kraxel@redhat.com>
6537 L:      virtualization@lists.linux-foundation.org
6538 S:      Obsolete
6539 W:      https://www.kraxel.org/blog/2014/10/qemu-using-cirrus-considered-harmful/
6540 T:      git git://anongit.freedesktop.org/drm/drm-misc
6541 F:      drivers/gpu/drm/tiny/cirrus.c
6542
6543 DRM DRIVER FOR QXL VIRTUAL GPU
6544 M:      Dave Airlie <airlied@redhat.com>
6545 M:      Gerd Hoffmann <kraxel@redhat.com>
6546 L:      virtualization@lists.linux-foundation.org
6547 L:      spice-devel@lists.freedesktop.org
6548 S:      Maintained
6549 T:      git git://anongit.freedesktop.org/drm/drm-misc
6550 F:      drivers/gpu/drm/qxl/
6551 F:      include/uapi/drm/qxl_drm.h
6552
6553 DRM DRIVER FOR RAGE 128 VIDEO CARDS
6554 S:      Orphan / Obsolete
6555 F:      drivers/gpu/drm/r128/
6556 F:      include/uapi/drm/r128_drm.h
6557
6558 DRM DRIVER FOR RAYDIUM RM67191 PANELS
6559 M:      Robert Chiras <robert.chiras@nxp.com>
6560 S:      Maintained
6561 F:      Documentation/devicetree/bindings/display/panel/raydium,rm67191.yaml
6562 F:      drivers/gpu/drm/panel/panel-raydium-rm67191.c
6563
6564 DRM DRIVER FOR SAMSUNG DB7430 PANELS
6565 M:      Linus Walleij <linus.walleij@linaro.org>
6566 S:      Maintained
6567 T:      git git://anongit.freedesktop.org/drm/drm-misc
6568 F:      Documentation/devicetree/bindings/display/panel/samsung,lms397kf04.yaml
6569 F:      drivers/gpu/drm/panel/panel-samsung-db7430.c
6570
6571 DRM DRIVER FOR SAMSUNG S6D27A1 PANELS
6572 M:      Markuss Broks <markuss.broks@gmail.com>
6573 S:      Maintained
6574 F:      Documentation/devicetree/bindings/display/panel/samsung,s6d27a1.yaml
6575 F:      drivers/gpu/drm/panel/panel-samsung-s6d27a1.c
6576
6577 DRM DRIVER FOR SITRONIX ST7703 PANELS
6578 M:      Guido Günther <agx@sigxcpu.org>
6579 R:      Purism Kernel Team <kernel@puri.sm>
6580 R:      Ondrej Jirman <megous@megous.com>
6581 S:      Maintained
6582 F:      Documentation/devicetree/bindings/display/panel/rocktech,jh057n00900.yaml
6583 F:      drivers/gpu/drm/panel/panel-sitronix-st7703.c
6584
6585 DRM DRIVER FOR SAVAGE VIDEO CARDS
6586 S:      Orphan / Obsolete
6587 F:      drivers/gpu/drm/savage/
6588 F:      include/uapi/drm/savage_drm.h
6589
6590 DRM DRIVER FOR SIMPLE FRAMEBUFFERS
6591 M:      Thomas Zimmermann <tzimmermann@suse.de>
6592 L:      dri-devel@lists.freedesktop.org
6593 S:      Maintained
6594 T:      git git://anongit.freedesktop.org/drm/drm-misc
6595 F:      drivers/gpu/drm/tiny/simpledrm.c
6596
6597 DRM DRIVER FOR SIS VIDEO CARDS
6598 S:      Orphan / Obsolete
6599 F:      drivers/gpu/drm/sis/
6600 F:      include/uapi/drm/sis_drm.h
6601
6602 DRM DRIVER FOR SITRONIX ST7586 PANELS
6603 M:      David Lechner <david@lechnology.com>
6604 S:      Maintained
6605 T:      git git://anongit.freedesktop.org/drm/drm-misc
6606 F:      Documentation/devicetree/bindings/display/sitronix,st7586.txt
6607 F:      drivers/gpu/drm/tiny/st7586.c
6608
6609 DRM DRIVER FOR SITRONIX ST7701 PANELS
6610 M:      Jagan Teki <jagan@amarulasolutions.com>
6611 S:      Maintained
6612 F:      Documentation/devicetree/bindings/display/panel/sitronix,st7701.yaml
6613 F:      drivers/gpu/drm/panel/panel-sitronix-st7701.c
6614
6615 DRM DRIVER FOR SITRONIX ST7735R PANELS
6616 M:      David Lechner <david@lechnology.com>
6617 S:      Maintained
6618 T:      git git://anongit.freedesktop.org/drm/drm-misc
6619 F:      Documentation/devicetree/bindings/display/sitronix,st7735r.yaml
6620 F:      drivers/gpu/drm/tiny/st7735r.c
6621
6622 DRM DRIVER FOR ST-ERICSSON MCDE
6623 M:      Linus Walleij <linus.walleij@linaro.org>
6624 S:      Maintained
6625 T:      git git://anongit.freedesktop.org/drm/drm-misc
6626 F:      Documentation/devicetree/bindings/display/ste,mcde.yaml
6627 F:      drivers/gpu/drm/mcde/
6628
6629 DRM DRIVER FOR TDFX VIDEO CARDS
6630 S:      Orphan / Obsolete
6631 F:      drivers/gpu/drm/tdfx/
6632
6633 DRM DRIVER FOR TI SN65DSI86 BRIDGE CHIP
6634 R:      Douglas Anderson <dianders@chromium.org>
6635 F:      Documentation/devicetree/bindings/display/bridge/ti,sn65dsi86.yaml
6636 F:      drivers/gpu/drm/bridge/ti-sn65dsi86.c
6637
6638 DRM DRIVER FOR TPO TPG110 PANELS
6639 M:      Linus Walleij <linus.walleij@linaro.org>
6640 S:      Maintained
6641 T:      git git://anongit.freedesktop.org/drm/drm-misc
6642 F:      Documentation/devicetree/bindings/display/panel/tpo,tpg110.yaml
6643 F:      drivers/gpu/drm/panel/panel-tpo-tpg110.c
6644
6645 DRM DRIVER FOR USB DISPLAYLINK VIDEO ADAPTERS
6646 M:      Dave Airlie <airlied@redhat.com>
6647 R:      Sean Paul <sean@poorly.run>
6648 R:      Thomas Zimmermann <tzimmermann@suse.de>
6649 L:      dri-devel@lists.freedesktop.org
6650 S:      Supported
6651 T:      git git://anongit.freedesktop.org/drm/drm-misc
6652 F:      drivers/gpu/drm/udl/
6653
6654 DRM DRIVER FOR VIRTUAL KERNEL MODESETTING (VKMS)
6655 M:      Rodrigo Siqueira <rodrigosiqueiramelo@gmail.com>
6656 M:      Melissa Wen <melissa.srw@gmail.com>
6657 R:      Haneen Mohammed <hamohammed.sa@gmail.com>
6658 R:      Daniel Vetter <daniel@ffwll.ch>
6659 L:      dri-devel@lists.freedesktop.org
6660 S:      Maintained
6661 T:      git git://anongit.freedesktop.org/drm/drm-misc
6662 F:      Documentation/gpu/vkms.rst
6663 F:      drivers/gpu/drm/vkms/
6664
6665 DRM DRIVER FOR VIRTUALBOX VIRTUAL GPU
6666 M:      Hans de Goede <hdegoede@redhat.com>
6667 L:      dri-devel@lists.freedesktop.org
6668 S:      Maintained
6669 T:      git git://anongit.freedesktop.org/drm/drm-misc
6670 F:      drivers/gpu/drm/vboxvideo/
6671
6672 DRM DRIVER FOR VMWARE VIRTUAL GPU
6673 M:      Zack Rusin <zackr@vmware.com>
6674 R:      VMware Graphics Reviewers <linux-graphics-maintainer@vmware.com>
6675 L:      dri-devel@lists.freedesktop.org
6676 S:      Supported
6677 T:      git git://anongit.freedesktop.org/drm/drm-misc
6678 F:      drivers/gpu/drm/vmwgfx/
6679 F:      include/uapi/drm/vmwgfx_drm.h
6680
6681 DRM DRIVER FOR WIDECHIPS WS2401 PANELS
6682 M:      Linus Walleij <linus.walleij@linaro.org>
6683 S:      Maintained
6684 T:      git git://anongit.freedesktop.org/drm/drm-misc
6685 F:      Documentation/devicetree/bindings/display/panel/samsung,lms380kf01.yaml
6686 F:      drivers/gpu/drm/panel/panel-widechips-ws2401.c
6687
6688 DRM DRIVERS
6689 M:      David Airlie <airlied@linux.ie>
6690 M:      Daniel Vetter <daniel@ffwll.ch>
6691 L:      dri-devel@lists.freedesktop.org
6692 S:      Maintained
6693 B:      https://gitlab.freedesktop.org/drm
6694 C:      irc://irc.oftc.net/dri-devel
6695 T:      git git://anongit.freedesktop.org/drm/drm
6696 F:      Documentation/devicetree/bindings/display/
6697 F:      Documentation/devicetree/bindings/gpu/
6698 F:      Documentation/gpu/
6699 F:      drivers/gpu/
6700 F:      include/drm/
6701 F:      include/linux/vga*
6702 F:      include/uapi/drm/
6703
6704 DRM DRIVERS AND MISC GPU PATCHES
6705 M:      Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
6706 M:      Maxime Ripard <mripard@kernel.org>
6707 M:      Thomas Zimmermann <tzimmermann@suse.de>
6708 S:      Maintained
6709 W:      https://01.org/linuxgraphics/gfx-docs/maintainer-tools/drm-misc.html
6710 T:      git git://anongit.freedesktop.org/drm/drm-misc
6711 F:      Documentation/gpu/
6712 F:      drivers/gpu/drm/*
6713 F:      drivers/gpu/vga/
6714 F:      include/drm/drm*
6715 F:      include/linux/vga*
6716 F:      include/uapi/drm/drm*
6717
6718 DRM DRIVERS FOR ALLWINNER A10
6719 M:      Maxime Ripard <mripard@kernel.org>
6720 M:      Chen-Yu Tsai <wens@csie.org>
6721 L:      dri-devel@lists.freedesktop.org
6722 S:      Supported
6723 T:      git git://anongit.freedesktop.org/drm/drm-misc
6724 F:      Documentation/devicetree/bindings/display/allwinner*
6725 F:      drivers/gpu/drm/sun4i/
6726
6727 DRM DRIVERS FOR AMLOGIC SOCS
6728 M:      Neil Armstrong <narmstrong@baylibre.com>
6729 L:      dri-devel@lists.freedesktop.org
6730 L:      linux-amlogic@lists.infradead.org
6731 S:      Supported
6732 W:      http://linux-meson.com/
6733 T:      git git://anongit.freedesktop.org/drm/drm-misc
6734 F:      Documentation/devicetree/bindings/display/amlogic,meson-dw-hdmi.yaml
6735 F:      Documentation/devicetree/bindings/display/amlogic,meson-vpu.yaml
6736 F:      Documentation/gpu/meson.rst
6737 F:      drivers/gpu/drm/meson/
6738
6739 DRM DRIVERS FOR ATMEL HLCDC
6740 M:      Sam Ravnborg <sam@ravnborg.org>
6741 M:      Boris Brezillon <bbrezillon@kernel.org>
6742 L:      dri-devel@lists.freedesktop.org
6743 S:      Supported
6744 T:      git git://anongit.freedesktop.org/drm/drm-misc
6745 F:      Documentation/devicetree/bindings/display/atmel/
6746 F:      drivers/gpu/drm/atmel-hlcdc/
6747
6748 DRM DRIVERS FOR BRIDGE CHIPS
6749 M:      Andrzej Hajda <andrzej.hajda@intel.com>
6750 M:      Neil Armstrong <narmstrong@baylibre.com>
6751 M:      Robert Foss <robert.foss@linaro.org>
6752 R:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
6753 R:      Jonas Karlman <jonas@kwiboo.se>
6754 R:      Jernej Skrabec <jernej.skrabec@gmail.com>
6755 S:      Maintained
6756 T:      git git://anongit.freedesktop.org/drm/drm-misc
6757 F:      Documentation/devicetree/bindings/display/bridge/
6758 F:      drivers/gpu/drm/bridge/
6759
6760 DRM DRIVERS FOR EXYNOS
6761 M:      Inki Dae <inki.dae@samsung.com>
6762 M:      Joonyoung Shim <jy0922.shim@samsung.com>
6763 M:      Seung-Woo Kim <sw0312.kim@samsung.com>
6764 M:      Kyungmin Park <kyungmin.park@samsung.com>
6765 L:      dri-devel@lists.freedesktop.org
6766 S:      Supported
6767 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
6768 F:      Documentation/devicetree/bindings/display/exynos/
6769 F:      Documentation/devicetree/bindings/display/samsung/
6770 F:      drivers/gpu/drm/exynos/
6771 F:      include/uapi/drm/exynos_drm.h
6772
6773 DRM DRIVERS FOR FREESCALE DCU
6774 M:      Stefan Agner <stefan@agner.ch>
6775 M:      Alison Wang <alison.wang@nxp.com>
6776 L:      dri-devel@lists.freedesktop.org
6777 S:      Supported
6778 T:      git git://anongit.freedesktop.org/drm/drm-misc
6779 F:      Documentation/devicetree/bindings/display/fsl,dcu.txt
6780 F:      Documentation/devicetree/bindings/display/fsl,tcon.txt
6781 F:      drivers/gpu/drm/fsl-dcu/
6782
6783 DRM DRIVERS FOR FREESCALE IMX
6784 M:      Philipp Zabel <p.zabel@pengutronix.de>
6785 L:      dri-devel@lists.freedesktop.org
6786 S:      Maintained
6787 F:      Documentation/devicetree/bindings/display/imx/
6788 F:      drivers/gpu/drm/imx/
6789 F:      drivers/gpu/ipu-v3/
6790
6791 DRM DRIVERS FOR GMA500 (Poulsbo, Moorestown and derivative chipsets)
6792 M:      Patrik Jakobsson <patrik.r.jakobsson@gmail.com>
6793 L:      dri-devel@lists.freedesktop.org
6794 S:      Maintained
6795 T:      git git://github.com/patjak/drm-gma500
6796 F:      drivers/gpu/drm/gma500/
6797
6798 DRM DRIVERS FOR HISILICON
6799 M:      Xinliang Liu <xinliang.liu@linaro.org>
6800 M:      Tian Tao  <tiantao6@hisilicon.com>
6801 R:      John Stultz <jstultz@google.com>
6802 R:      Xinwei Kong <kong.kongxinwei@hisilicon.com>
6803 R:      Chen Feng <puck.chen@hisilicon.com>
6804 L:      dri-devel@lists.freedesktop.org
6805 S:      Maintained
6806 T:      git git://anongit.freedesktop.org/drm/drm-misc
6807 F:      Documentation/devicetree/bindings/display/hisilicon/
6808 F:      drivers/gpu/drm/hisilicon/
6809
6810 DRM DRIVER FOR HYPERV SYNTHETIC VIDEO DEVICE
6811 M:      Deepak Rawat <drawat.floss@gmail.com>
6812 L:      linux-hyperv@vger.kernel.org
6813 L:      dri-devel@lists.freedesktop.org
6814 S:      Maintained
6815 T:      git git://anongit.freedesktop.org/drm/drm-misc
6816 F:      drivers/gpu/drm/hyperv
6817
6818 DRM DRIVERS FOR LIMA
6819 M:      Qiang Yu <yuq825@gmail.com>
6820 L:      dri-devel@lists.freedesktop.org
6821 L:      lima@lists.freedesktop.org (moderated for non-subscribers)
6822 S:      Maintained
6823 T:      git git://anongit.freedesktop.org/drm/drm-misc
6824 F:      drivers/gpu/drm/lima/
6825 F:      include/uapi/drm/lima_drm.h
6826
6827 DRM DRIVERS FOR MEDIATEK
6828 M:      Chun-Kuang Hu <chunkuang.hu@kernel.org>
6829 M:      Philipp Zabel <p.zabel@pengutronix.de>
6830 L:      dri-devel@lists.freedesktop.org
6831 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
6832 S:      Supported
6833 F:      Documentation/devicetree/bindings/display/mediatek/
6834 F:      drivers/gpu/drm/mediatek/
6835 F:      drivers/phy/mediatek/phy-mtk-hdmi*
6836 F:      drivers/phy/mediatek/phy-mtk-mipi*
6837
6838 DRM DRIVERS FOR NVIDIA TEGRA
6839 M:      Thierry Reding <thierry.reding@gmail.com>
6840 L:      dri-devel@lists.freedesktop.org
6841 L:      linux-tegra@vger.kernel.org
6842 S:      Supported
6843 T:      git git://anongit.freedesktop.org/tegra/linux.git
6844 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
6845 F:      Documentation/devicetree/bindings/gpu/host1x/
6846 F:      drivers/gpu/drm/tegra/
6847 F:      drivers/gpu/host1x/
6848 F:      include/linux/host1x.h
6849 F:      include/uapi/drm/tegra_drm.h
6850
6851 DRM DRIVERS FOR RENESAS
6852 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6853 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
6854 L:      dri-devel@lists.freedesktop.org
6855 L:      linux-renesas-soc@vger.kernel.org
6856 S:      Supported
6857 T:      git git://linuxtv.org/pinchartl/media drm/du/next
6858 F:      Documentation/devicetree/bindings/display/bridge/renesas,dsi-csi2-tx.yaml
6859 F:      Documentation/devicetree/bindings/display/bridge/renesas,dw-hdmi.yaml
6860 F:      Documentation/devicetree/bindings/display/bridge/renesas,lvds.yaml
6861 F:      Documentation/devicetree/bindings/display/renesas,du.yaml
6862 F:      drivers/gpu/drm/rcar-du/
6863 F:      drivers/gpu/drm/shmobile/
6864 F:      include/linux/platform_data/shmob_drm.h
6865
6866 DRM DRIVERS FOR ROCKCHIP
6867 M:      Sandy Huang <hjc@rock-chips.com>
6868 M:      Heiko Stübner <heiko@sntech.de>
6869 L:      dri-devel@lists.freedesktop.org
6870 S:      Maintained
6871 T:      git git://anongit.freedesktop.org/drm/drm-misc
6872 F:      Documentation/devicetree/bindings/display/rockchip/
6873 F:      drivers/gpu/drm/rockchip/
6874
6875 DRM DRIVERS FOR STI
6876 M:      Alain Volmat <alain.volmat@foss.st.com>
6877 L:      dri-devel@lists.freedesktop.org
6878 S:      Maintained
6879 T:      git git://anongit.freedesktop.org/drm/drm-misc
6880 F:      Documentation/devicetree/bindings/display/st,stih4xx.txt
6881 F:      drivers/gpu/drm/sti
6882
6883 DRM DRIVERS FOR STM
6884 M:      Yannick Fertre <yannick.fertre@foss.st.com>
6885 M:      Raphael Gallais-Pou <raphael.gallais-pou@foss.st.com>
6886 M:      Philippe Cornu <philippe.cornu@foss.st.com>
6887 L:      dri-devel@lists.freedesktop.org
6888 S:      Maintained
6889 T:      git git://anongit.freedesktop.org/drm/drm-misc
6890 F:      Documentation/devicetree/bindings/display/st,stm32-ltdc.yaml
6891 F:      drivers/gpu/drm/stm
6892
6893 DRM DRIVERS FOR TI KEYSTONE
6894 M:      Jyri Sarha <jyri.sarha@iki.fi>
6895 M:      Tomi Valkeinen <tomba@kernel.org>
6896 L:      dri-devel@lists.freedesktop.org
6897 S:      Maintained
6898 T:      git git://anongit.freedesktop.org/drm/drm-misc
6899 F:      Documentation/devicetree/bindings/display/ti/ti,am65x-dss.yaml
6900 F:      Documentation/devicetree/bindings/display/ti/ti,j721e-dss.yaml
6901 F:      Documentation/devicetree/bindings/display/ti/ti,k2g-dss.yaml
6902 F:      drivers/gpu/drm/tidss/
6903
6904 DRM DRIVERS FOR TI LCDC
6905 M:      Jyri Sarha <jyri.sarha@iki.fi>
6906 R:      Tomi Valkeinen <tomba@kernel.org>
6907 L:      dri-devel@lists.freedesktop.org
6908 S:      Maintained
6909 F:      Documentation/devicetree/bindings/display/tilcdc/
6910 F:      drivers/gpu/drm/tilcdc/
6911
6912 DRM DRIVERS FOR TI OMAP
6913 M:      Tomi Valkeinen <tomba@kernel.org>
6914 L:      dri-devel@lists.freedesktop.org
6915 S:      Maintained
6916 F:      Documentation/devicetree/bindings/display/ti/
6917 F:      drivers/gpu/drm/omapdrm/
6918
6919 DRM DRIVERS FOR V3D
6920 M:      Emma Anholt <emma@anholt.net>
6921 S:      Supported
6922 T:      git git://anongit.freedesktop.org/drm/drm-misc
6923 F:      Documentation/devicetree/bindings/gpu/brcm,bcm-v3d.yaml
6924 F:      drivers/gpu/drm/v3d/
6925 F:      include/uapi/drm/v3d_drm.h
6926
6927 DRM DRIVERS FOR VC4
6928 M:      Emma Anholt <emma@anholt.net>
6929 M:      Maxime Ripard <mripard@kernel.org>
6930 S:      Supported
6931 T:      git git://github.com/anholt/linux
6932 T:      git git://anongit.freedesktop.org/drm/drm-misc
6933 F:      Documentation/devicetree/bindings/display/brcm,bcm2835-*.yaml
6934 F:      drivers/gpu/drm/vc4/
6935 F:      include/uapi/drm/vc4_drm.h
6936
6937 DRM DRIVERS FOR VIVANTE GPU IP
6938 M:      Lucas Stach <l.stach@pengutronix.de>
6939 R:      Russell King <linux+etnaviv@armlinux.org.uk>
6940 R:      Christian Gmeiner <christian.gmeiner@gmail.com>
6941 L:      etnaviv@lists.freedesktop.org (moderated for non-subscribers)
6942 L:      dri-devel@lists.freedesktop.org
6943 S:      Maintained
6944 F:      Documentation/devicetree/bindings/gpu/vivante,gc.yaml
6945 F:      drivers/gpu/drm/etnaviv/
6946 F:      include/uapi/drm/etnaviv_drm.h
6947
6948 DRM DRIVERS FOR XEN
6949 M:      Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
6950 L:      dri-devel@lists.freedesktop.org
6951 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
6952 S:      Supported
6953 T:      git git://anongit.freedesktop.org/drm/drm-misc
6954 F:      Documentation/gpu/xen-front.rst
6955 F:      drivers/gpu/drm/xen/
6956
6957 DRM DRIVERS FOR XILINX
6958 M:      Hyun Kwon <hyun.kwon@xilinx.com>
6959 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6960 L:      dri-devel@lists.freedesktop.org
6961 S:      Maintained
6962 T:      git git://anongit.freedesktop.org/drm/drm-misc
6963 F:      Documentation/devicetree/bindings/display/xlnx/
6964 F:      drivers/gpu/drm/xlnx/
6965
6966 DRM PANEL DRIVERS
6967 M:      Thierry Reding <thierry.reding@gmail.com>
6968 R:      Sam Ravnborg <sam@ravnborg.org>
6969 L:      dri-devel@lists.freedesktop.org
6970 S:      Maintained
6971 T:      git git://anongit.freedesktop.org/drm/drm-misc
6972 F:      Documentation/devicetree/bindings/display/panel/
6973 F:      drivers/gpu/drm/drm_panel.c
6974 F:      drivers/gpu/drm/panel/
6975 F:      include/drm/drm_panel.h
6976
6977 DRM PRIVACY-SCREEN CLASS
6978 M:      Hans de Goede <hdegoede@redhat.com>
6979 L:      dri-devel@lists.freedesktop.org
6980 S:      Maintained
6981 T:      git git://anongit.freedesktop.org/drm/drm-misc
6982 F:      drivers/gpu/drm/drm_privacy_screen*
6983 F:      include/drm/drm_privacy_screen*
6984
6985 DRM TTM SUBSYSTEM
6986 M:      Christian Koenig <christian.koenig@amd.com>
6987 M:      Huang Rui <ray.huang@amd.com>
6988 L:      dri-devel@lists.freedesktop.org
6989 S:      Maintained
6990 T:      git git://anongit.freedesktop.org/drm/drm-misc
6991 F:      drivers/gpu/drm/ttm/
6992 F:      include/drm/ttm/
6993
6994 DRM GPU SCHEDULER
6995 M:      Andrey Grodzovsky <andrey.grodzovsky@amd.com>
6996 L:      dri-devel@lists.freedesktop.org
6997 S:      Maintained
6998 T:      git git://anongit.freedesktop.org/drm/drm-misc
6999 F:      drivers/gpu/drm/scheduler/
7000 F:      include/drm/gpu_scheduler.h
7001
7002 DSBR100 USB FM RADIO DRIVER
7003 M:      Alexey Klimov <klimov.linux@gmail.com>
7004 L:      linux-media@vger.kernel.org
7005 S:      Maintained
7006 T:      git git://linuxtv.org/media_tree.git
7007 F:      drivers/media/radio/dsbr100.c
7008
7009 DT3155 MEDIA DRIVER
7010 M:      Hans Verkuil <hverkuil@xs4all.nl>
7011 L:      linux-media@vger.kernel.org
7012 S:      Odd Fixes
7013 W:      https://linuxtv.org
7014 T:      git git://linuxtv.org/media_tree.git
7015 F:      drivers/media/pci/dt3155/
7016
7017 DVB_USB_AF9015 MEDIA DRIVER
7018 M:      Antti Palosaari <crope@iki.fi>
7019 L:      linux-media@vger.kernel.org
7020 S:      Maintained
7021 W:      https://linuxtv.org
7022 W:      http://palosaari.fi/linux/
7023 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7024 T:      git git://linuxtv.org/anttip/media_tree.git
7025 F:      drivers/media/usb/dvb-usb-v2/af9015*
7026
7027 DVB_USB_AF9035 MEDIA DRIVER
7028 M:      Antti Palosaari <crope@iki.fi>
7029 L:      linux-media@vger.kernel.org
7030 S:      Maintained
7031 W:      https://linuxtv.org
7032 W:      http://palosaari.fi/linux/
7033 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7034 T:      git git://linuxtv.org/anttip/media_tree.git
7035 F:      drivers/media/usb/dvb-usb-v2/af9035*
7036
7037 DVB_USB_ANYSEE MEDIA DRIVER
7038 M:      Antti Palosaari <crope@iki.fi>
7039 L:      linux-media@vger.kernel.org
7040 S:      Maintained
7041 W:      https://linuxtv.org
7042 W:      http://palosaari.fi/linux/
7043 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7044 T:      git git://linuxtv.org/anttip/media_tree.git
7045 F:      drivers/media/usb/dvb-usb-v2/anysee*
7046
7047 DVB_USB_AU6610 MEDIA DRIVER
7048 M:      Antti Palosaari <crope@iki.fi>
7049 L:      linux-media@vger.kernel.org
7050 S:      Maintained
7051 W:      https://linuxtv.org
7052 W:      http://palosaari.fi/linux/
7053 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7054 T:      git git://linuxtv.org/anttip/media_tree.git
7055 F:      drivers/media/usb/dvb-usb-v2/au6610*
7056
7057 DVB_USB_CE6230 MEDIA DRIVER
7058 M:      Antti Palosaari <crope@iki.fi>
7059 L:      linux-media@vger.kernel.org
7060 S:      Maintained
7061 W:      https://linuxtv.org
7062 W:      http://palosaari.fi/linux/
7063 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7064 T:      git git://linuxtv.org/anttip/media_tree.git
7065 F:      drivers/media/usb/dvb-usb-v2/ce6230*
7066
7067 DVB_USB_CXUSB MEDIA DRIVER
7068 M:      Michael Krufky <mkrufky@linuxtv.org>
7069 L:      linux-media@vger.kernel.org
7070 S:      Maintained
7071 W:      https://linuxtv.org
7072 W:      http://github.com/mkrufky
7073 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7074 T:      git git://linuxtv.org/media_tree.git
7075 F:      drivers/media/usb/dvb-usb/cxusb*
7076
7077 DVB_USB_EC168 MEDIA DRIVER
7078 M:      Antti Palosaari <crope@iki.fi>
7079 L:      linux-media@vger.kernel.org
7080 S:      Maintained
7081 W:      https://linuxtv.org
7082 W:      http://palosaari.fi/linux/
7083 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7084 T:      git git://linuxtv.org/anttip/media_tree.git
7085 F:      drivers/media/usb/dvb-usb-v2/ec168*
7086
7087 DVB_USB_GL861 MEDIA DRIVER
7088 M:      Antti Palosaari <crope@iki.fi>
7089 L:      linux-media@vger.kernel.org
7090 S:      Maintained
7091 W:      https://linuxtv.org
7092 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7093 T:      git git://linuxtv.org/anttip/media_tree.git
7094 F:      drivers/media/usb/dvb-usb-v2/gl861*
7095
7096 DVB_USB_MXL111SF MEDIA DRIVER
7097 M:      Michael Krufky <mkrufky@linuxtv.org>
7098 L:      linux-media@vger.kernel.org
7099 S:      Maintained
7100 W:      https://linuxtv.org
7101 W:      http://github.com/mkrufky
7102 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7103 T:      git git://linuxtv.org/mkrufky/mxl111sf.git
7104 F:      drivers/media/usb/dvb-usb-v2/mxl111sf*
7105
7106 DVB_USB_RTL28XXU MEDIA DRIVER
7107 M:      Antti Palosaari <crope@iki.fi>
7108 L:      linux-media@vger.kernel.org
7109 S:      Maintained
7110 W:      https://linuxtv.org
7111 W:      http://palosaari.fi/linux/
7112 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7113 T:      git git://linuxtv.org/anttip/media_tree.git
7114 F:      drivers/media/usb/dvb-usb-v2/rtl28xxu*
7115
7116 DVB_USB_V2 MEDIA DRIVER
7117 M:      Antti Palosaari <crope@iki.fi>
7118 L:      linux-media@vger.kernel.org
7119 S:      Maintained
7120 W:      https://linuxtv.org
7121 W:      http://palosaari.fi/linux/
7122 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7123 T:      git git://linuxtv.org/anttip/media_tree.git
7124 F:      drivers/media/usb/dvb-usb-v2/dvb_usb*
7125 F:      drivers/media/usb/dvb-usb-v2/usb_urb.c
7126
7127 DYNAMIC DEBUG
7128 M:      Jason Baron <jbaron@akamai.com>
7129 S:      Maintained
7130 F:      include/linux/dynamic_debug.h
7131 F:      lib/dynamic_debug.c
7132
7133 DYNAMIC INTERRUPT MODERATION
7134 M:      Tal Gilboa <talgi@nvidia.com>
7135 S:      Maintained
7136 F:      Documentation/networking/net_dim.rst
7137 F:      include/linux/dim.h
7138 F:      lib/dim/
7139
7140 DZ DECSTATION DZ11 SERIAL DRIVER
7141 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
7142 S:      Maintained
7143 F:      drivers/tty/serial/dz.*
7144
7145 E3X0 POWER BUTTON DRIVER
7146 M:      Moritz Fischer <moritz.fischer@ettus.com>
7147 L:      usrp-users@lists.ettus.com
7148 S:      Supported
7149 W:      http://www.ettus.com
7150 F:      Documentation/devicetree/bindings/input/e3x0-button.txt
7151 F:      drivers/input/misc/e3x0-button.c
7152
7153 E4000 MEDIA DRIVER
7154 M:      Antti Palosaari <crope@iki.fi>
7155 L:      linux-media@vger.kernel.org
7156 S:      Maintained
7157 W:      https://linuxtv.org
7158 W:      http://palosaari.fi/linux/
7159 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7160 T:      git git://linuxtv.org/anttip/media_tree.git
7161 F:      drivers/media/tuners/e4000*
7162
7163 EARTH_PT1 MEDIA DRIVER
7164 M:      Akihiro Tsukada <tskd08@gmail.com>
7165 L:      linux-media@vger.kernel.org
7166 S:      Odd Fixes
7167 F:      drivers/media/pci/pt1/
7168
7169 EARTH_PT3 MEDIA DRIVER
7170 M:      Akihiro Tsukada <tskd08@gmail.com>
7171 L:      linux-media@vger.kernel.org
7172 S:      Odd Fixes
7173 F:      drivers/media/pci/pt3/
7174
7175 EC100 MEDIA DRIVER
7176 M:      Antti Palosaari <crope@iki.fi>
7177 L:      linux-media@vger.kernel.org
7178 S:      Maintained
7179 W:      https://linuxtv.org
7180 W:      http://palosaari.fi/linux/
7181 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7182 T:      git git://linuxtv.org/anttip/media_tree.git
7183 F:      drivers/media/dvb-frontends/ec100*
7184
7185 ECRYPT FILE SYSTEM
7186 M:      Tyler Hicks <code@tyhicks.com>
7187 L:      ecryptfs@vger.kernel.org
7188 S:      Odd Fixes
7189 W:      http://ecryptfs.org
7190 W:      https://launchpad.net/ecryptfs
7191 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tyhicks/ecryptfs.git
7192 F:      Documentation/filesystems/ecryptfs.rst
7193 F:      fs/ecryptfs/
7194
7195 EDAC-AMD64
7196 M:      Yazen Ghannam <yazen.ghannam@amd.com>
7197 L:      linux-edac@vger.kernel.org
7198 S:      Supported
7199 F:      drivers/edac/amd64_edac*
7200 F:      drivers/edac/mce_amd*
7201
7202 EDAC-ARMADA
7203 M:      Jan Luebbe <jlu@pengutronix.de>
7204 L:      linux-edac@vger.kernel.org
7205 S:      Maintained
7206 F:      Documentation/devicetree/bindings/memory-controllers/marvell,mvebu-sdram-controller.yaml
7207 F:      drivers/edac/armada_xp_*
7208
7209 EDAC-AST2500
7210 M:      Stefan Schaeckeler <sschaeck@cisco.com>
7211 S:      Supported
7212 F:      Documentation/devicetree/bindings/edac/aspeed-sdram-edac.txt
7213 F:      drivers/edac/aspeed_edac.c
7214
7215 EDAC-BLUEFIELD
7216 M:      Shravan Kumar Ramani <shravankr@nvidia.com>
7217 S:      Supported
7218 F:      drivers/edac/bluefield_edac.c
7219
7220 EDAC-CALXEDA
7221 M:      Andre Przywara <andre.przywara@arm.com>
7222 L:      linux-edac@vger.kernel.org
7223 S:      Maintained
7224 F:      drivers/edac/highbank*
7225
7226 EDAC-CAVIUM OCTEON
7227 M:      Ralf Baechle <ralf@linux-mips.org>
7228 L:      linux-edac@vger.kernel.org
7229 L:      linux-mips@vger.kernel.org
7230 S:      Supported
7231 F:      drivers/edac/octeon_edac*
7232
7233 EDAC-CAVIUM THUNDERX
7234 M:      Robert Richter <rric@kernel.org>
7235 L:      linux-edac@vger.kernel.org
7236 S:      Odd Fixes
7237 F:      drivers/edac/thunderx_edac*
7238
7239 EDAC-CORE
7240 M:      Borislav Petkov <bp@alien8.de>
7241 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
7242 M:      Tony Luck <tony.luck@intel.com>
7243 R:      James Morse <james.morse@arm.com>
7244 R:      Robert Richter <rric@kernel.org>
7245 L:      linux-edac@vger.kernel.org
7246 S:      Supported
7247 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ras/ras.git edac-for-next
7248 F:      Documentation/admin-guide/ras.rst
7249 F:      Documentation/driver-api/edac.rst
7250 F:      drivers/edac/
7251 F:      include/linux/edac.h
7252
7253 EDAC-DMC520
7254 M:      Lei Wang <lewan@microsoft.com>
7255 L:      linux-edac@vger.kernel.org
7256 S:      Supported
7257 F:      drivers/edac/dmc520_edac.c
7258
7259 EDAC-E752X
7260 M:      Mark Gross <markgross@kernel.org>
7261 L:      linux-edac@vger.kernel.org
7262 S:      Maintained
7263 F:      drivers/edac/e752x_edac.c
7264
7265 EDAC-E7XXX
7266 L:      linux-edac@vger.kernel.org
7267 S:      Maintained
7268 F:      drivers/edac/e7xxx_edac.c
7269
7270 EDAC-FSL_DDR
7271 M:      York Sun <york.sun@nxp.com>
7272 L:      linux-edac@vger.kernel.org
7273 S:      Maintained
7274 F:      drivers/edac/fsl_ddr_edac.*
7275
7276 EDAC-GHES
7277 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
7278 L:      linux-edac@vger.kernel.org
7279 S:      Maintained
7280 F:      drivers/edac/ghes_edac.c
7281
7282 EDAC-I10NM
7283 M:      Tony Luck <tony.luck@intel.com>
7284 L:      linux-edac@vger.kernel.org
7285 S:      Maintained
7286 F:      drivers/edac/i10nm_base.c
7287
7288 EDAC-I3000
7289 L:      linux-edac@vger.kernel.org
7290 S:      Orphan
7291 F:      drivers/edac/i3000_edac.c
7292
7293 EDAC-I5000
7294 L:      linux-edac@vger.kernel.org
7295 S:      Maintained
7296 F:      drivers/edac/i5000_edac.c
7297
7298 EDAC-I5400
7299 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
7300 L:      linux-edac@vger.kernel.org
7301 S:      Maintained
7302 F:      drivers/edac/i5400_edac.c
7303
7304 EDAC-I7300
7305 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
7306 L:      linux-edac@vger.kernel.org
7307 S:      Maintained
7308 F:      drivers/edac/i7300_edac.c
7309
7310 EDAC-I7CORE
7311 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
7312 L:      linux-edac@vger.kernel.org
7313 S:      Maintained
7314 F:      drivers/edac/i7core_edac.c
7315
7316 EDAC-I82443BXGX
7317 M:      Tim Small <tim@buttersideup.com>
7318 L:      linux-edac@vger.kernel.org
7319 S:      Maintained
7320 F:      drivers/edac/i82443bxgx_edac.c
7321
7322 EDAC-I82975X
7323 M:      "Arvind R." <arvino55@gmail.com>
7324 L:      linux-edac@vger.kernel.org
7325 S:      Maintained
7326 F:      drivers/edac/i82975x_edac.c
7327
7328 EDAC-IE31200
7329 M:      Jason Baron <jbaron@akamai.com>
7330 L:      linux-edac@vger.kernel.org
7331 S:      Maintained
7332 F:      drivers/edac/ie31200_edac.c
7333
7334 EDAC-IGEN6
7335 M:      Tony Luck <tony.luck@intel.com>
7336 R:      Qiuxu Zhuo <qiuxu.zhuo@intel.com>
7337 L:      linux-edac@vger.kernel.org
7338 S:      Maintained
7339 F:      drivers/edac/igen6_edac.c
7340
7341 EDAC-MPC85XX
7342 M:      Johannes Thumshirn <morbidrsa@gmail.com>
7343 L:      linux-edac@vger.kernel.org
7344 S:      Maintained
7345 F:      drivers/edac/mpc85xx_edac.[ch]
7346
7347 EDAC-PASEMI
7348 M:      Egor Martovetsky <egor@pasemi.com>
7349 L:      linux-edac@vger.kernel.org
7350 S:      Maintained
7351 F:      drivers/edac/pasemi_edac.c
7352
7353 EDAC-PND2
7354 M:      Tony Luck <tony.luck@intel.com>
7355 L:      linux-edac@vger.kernel.org
7356 S:      Maintained
7357 F:      drivers/edac/pnd2_edac.[ch]
7358
7359 EDAC-QCOM
7360 M:      Channagoud Kadabi <ckadabi@codeaurora.org>
7361 M:      Venkata Narendra Kumar Gutta <vnkgutta@codeaurora.org>
7362 L:      linux-arm-msm@vger.kernel.org
7363 L:      linux-edac@vger.kernel.org
7364 S:      Maintained
7365 F:      drivers/edac/qcom_edac.c
7366
7367 EDAC-R82600
7368 M:      Tim Small <tim@buttersideup.com>
7369 L:      linux-edac@vger.kernel.org
7370 S:      Maintained
7371 F:      drivers/edac/r82600_edac.c
7372
7373 EDAC-SBRIDGE
7374 M:      Tony Luck <tony.luck@intel.com>
7375 R:      Qiuxu Zhuo <qiuxu.zhuo@intel.com>
7376 L:      linux-edac@vger.kernel.org
7377 S:      Maintained
7378 F:      drivers/edac/sb_edac.c
7379
7380 EDAC-SKYLAKE
7381 M:      Tony Luck <tony.luck@intel.com>
7382 L:      linux-edac@vger.kernel.org
7383 S:      Maintained
7384 F:      drivers/edac/skx_*.[ch]
7385
7386 EDAC-TI
7387 M:      Tero Kristo <kristo@kernel.org>
7388 L:      linux-edac@vger.kernel.org
7389 S:      Odd Fixes
7390 F:      drivers/edac/ti_edac.c
7391
7392 EDIROL UA-101/UA-1000 DRIVER
7393 M:      Clemens Ladisch <clemens@ladisch.de>
7394 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7395 S:      Maintained
7396 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
7397 F:      sound/usb/misc/ua101.c
7398
7399 EFI TEST DRIVER
7400 M:      Ivan Hu <ivan.hu@canonical.com>
7401 M:      Ard Biesheuvel <ardb@kernel.org>
7402 L:      linux-efi@vger.kernel.org
7403 S:      Maintained
7404 F:      drivers/firmware/efi/test/
7405
7406 EFI VARIABLE FILESYSTEM
7407 M:      Matthew Garrett <matthew.garrett@nebula.com>
7408 M:      Jeremy Kerr <jk@ozlabs.org>
7409 M:      Ard Biesheuvel <ardb@kernel.org>
7410 L:      linux-efi@vger.kernel.org
7411 S:      Maintained
7412 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
7413 F:      fs/efivarfs/
7414
7415 EFIFB FRAMEBUFFER DRIVER
7416 M:      Peter Jones <pjones@redhat.com>
7417 L:      linux-fbdev@vger.kernel.org
7418 S:      Maintained
7419 F:      drivers/video/fbdev/efifb.c
7420
7421 EFS FILESYSTEM
7422 S:      Orphan
7423 W:      http://aeschi.ch.eu.org/efs/
7424 F:      fs/efs/
7425
7426 EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
7427 M:      Douglas Miller <dougmill@linux.ibm.com>
7428 L:      netdev@vger.kernel.org
7429 S:      Maintained
7430 F:      drivers/net/ethernet/ibm/ehea/
7431
7432 EM28XX VIDEO4LINUX DRIVER
7433 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
7434 L:      linux-media@vger.kernel.org
7435 S:      Maintained
7436 W:      https://linuxtv.org
7437 T:      git git://linuxtv.org/media_tree.git
7438 F:      Documentation/admin-guide/media/em28xx*
7439 F:      drivers/media/usb/em28xx/
7440
7441 EMBEDDED LINUX
7442 M:      Matt Mackall <mpm@selenic.com>
7443 M:      David Woodhouse <dwmw2@infradead.org>
7444 L:      linux-embedded@vger.kernel.org
7445 S:      Maintained
7446
7447 EMMC CMDQ HOST CONTROLLER INTERFACE (CQHCI) DRIVER
7448 M:      Adrian Hunter <adrian.hunter@intel.com>
7449 M:      Ritesh Harjani <riteshh@codeaurora.org>
7450 M:      Asutosh Das <asutoshd@codeaurora.org>
7451 L:      linux-mmc@vger.kernel.org
7452 S:      Maintained
7453 F:      drivers/mmc/host/cqhci*
7454
7455 EMULEX 10Gbps iSCSI - OneConnect DRIVER
7456 M:      Ketan Mukadam <ketan.mukadam@broadcom.com>
7457 L:      linux-scsi@vger.kernel.org
7458 S:      Supported
7459 W:      http://www.broadcom.com
7460 F:      drivers/scsi/be2iscsi/
7461
7462 EMULEX 10Gbps NIC BE2, BE3-R, Lancer, Skyhawk-R DRIVER (be2net)
7463 M:      Ajit Khaparde <ajit.khaparde@broadcom.com>
7464 M:      Sriharsha Basavapatna <sriharsha.basavapatna@broadcom.com>
7465 M:      Somnath Kotur <somnath.kotur@broadcom.com>
7466 L:      netdev@vger.kernel.org
7467 S:      Supported
7468 W:      http://www.emulex.com
7469 F:      drivers/net/ethernet/emulex/benet/
7470
7471 EMULEX ONECONNECT ROCE DRIVER
7472 M:      Selvin Xavier <selvin.xavier@broadcom.com>
7473 L:      linux-rdma@vger.kernel.org
7474 S:      Odd Fixes
7475 W:      http://www.broadcom.com
7476 F:      drivers/infiniband/hw/ocrdma/
7477 F:      include/uapi/rdma/ocrdma-abi.h
7478
7479 EMULEX/BROADCOM LPFC FC/FCOE SCSI DRIVER
7480 M:      James Smart <james.smart@broadcom.com>
7481 M:      Dick Kennedy <dick.kennedy@broadcom.com>
7482 L:      linux-scsi@vger.kernel.org
7483 S:      Supported
7484 W:      http://www.broadcom.com
7485 F:      drivers/scsi/lpfc/
7486
7487 EMULEX/BROADCOM EFCT FC/FCOE SCSI TARGET DRIVER
7488 M:      James Smart <james.smart@broadcom.com>
7489 M:      Ram Vegesna <ram.vegesna@broadcom.com>
7490 L:      linux-scsi@vger.kernel.org
7491 L:      target-devel@vger.kernel.org
7492 S:      Supported
7493 W:      http://www.broadcom.com
7494 F:      drivers/scsi/elx/
7495
7496 ENE CB710 FLASH CARD READER DRIVER
7497 M:      Michał Mirosław <mirq-linux@rere.qmqm.pl>
7498 S:      Maintained
7499 F:      drivers/misc/cb710/
7500 F:      drivers/mmc/host/cb710-mmc.*
7501 F:      include/linux/cb710.h
7502
7503 ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
7504 M:      Maxim Levitsky <maximlevitsky@gmail.com>
7505 S:      Maintained
7506 F:      drivers/media/rc/ene_ir.*
7507
7508 EPAPR HYPERVISOR BYTE CHANNEL DEVICE DRIVER
7509 M:      Laurentiu Tudor <laurentiu.tudor@nxp.com>
7510 L:      linuxppc-dev@lists.ozlabs.org
7511 S:      Maintained
7512 F:      drivers/tty/ehv_bytechan.c
7513
7514 EPSON S1D13XXX FRAMEBUFFER DRIVER
7515 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
7516 S:      Maintained
7517 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
7518 F:      drivers/video/fbdev/s1d13xxxfb.c
7519 F:      include/video/s1d13xxxfb.h
7520
7521 EROFS FILE SYSTEM
7522 M:      Gao Xiang <xiang@kernel.org>
7523 M:      Chao Yu <chao@kernel.org>
7524 R:      Yue Hu <huyue2@coolpad.com>
7525 R:      Jeffle Xu <jefflexu@linux.alibaba.com>
7526 L:      linux-erofs@lists.ozlabs.org
7527 S:      Maintained
7528 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs.git
7529 F:      Documentation/filesystems/erofs.rst
7530 F:      fs/erofs/
7531 F:      include/trace/events/erofs.h
7532
7533 ERRSEQ ERROR TRACKING INFRASTRUCTURE
7534 M:      Jeff Layton <jlayton@kernel.org>
7535 S:      Maintained
7536 F:      include/linux/errseq.h
7537 F:      lib/errseq.c
7538
7539 ET131X NETWORK DRIVER
7540 M:      Mark Einon <mark.einon@gmail.com>
7541 S:      Odd Fixes
7542 F:      drivers/net/ethernet/agere/
7543
7544 ETAS ES58X CAN/USB DRIVER
7545 M:      Vincent Mailhol <mailhol.vincent@wanadoo.fr>
7546 L:      linux-can@vger.kernel.org
7547 S:      Maintained
7548 F:      drivers/net/can/usb/etas_es58x/
7549
7550 ETHERNET BRIDGE
7551 M:      Roopa Prabhu <roopa@nvidia.com>
7552 M:      Nikolay Aleksandrov <razor@blackwall.org>
7553 L:      bridge@lists.linux-foundation.org (moderated for non-subscribers)
7554 L:      netdev@vger.kernel.org
7555 S:      Maintained
7556 W:      http://www.linuxfoundation.org/en/Net:Bridge
7557 F:      include/linux/netfilter_bridge/
7558 F:      net/bridge/
7559
7560 ETHERNET PHY LIBRARY
7561 M:      Andrew Lunn <andrew@lunn.ch>
7562 M:      Heiner Kallweit <hkallweit1@gmail.com>
7563 R:      Russell King <linux@armlinux.org.uk>
7564 L:      netdev@vger.kernel.org
7565 S:      Maintained
7566 F:      Documentation/ABI/testing/sysfs-class-net-phydev
7567 F:      Documentation/devicetree/bindings/net/ethernet-phy.yaml
7568 F:      Documentation/devicetree/bindings/net/mdio*
7569 F:      Documentation/devicetree/bindings/net/qca,ar803x.yaml
7570 F:      Documentation/networking/phy.rst
7571 F:      drivers/net/mdio/
7572 F:      drivers/net/mdio/acpi_mdio.c
7573 F:      drivers/net/mdio/fwnode_mdio.c
7574 F:      drivers/net/mdio/of_mdio.c
7575 F:      drivers/net/pcs/
7576 F:      drivers/net/phy/
7577 F:      include/dt-bindings/net/qca-ar803x.h
7578 F:      include/linux/linkmode.h
7579 F:      include/linux/*mdio*.h
7580 F:      include/linux/mdio/*.h
7581 F:      include/linux/mii.h
7582 F:      include/linux/of_net.h
7583 F:      include/linux/phy.h
7584 F:      include/linux/phy_fixed.h
7585 F:      include/linux/platform_data/mdio-bcm-unimac.h
7586 F:      include/linux/platform_data/mdio-gpio.h
7587 F:      include/trace/events/mdio.h
7588 F:      include/uapi/linux/mdio.h
7589 F:      include/uapi/linux/mii.h
7590 F:      net/core/of_net.c
7591
7592 EXEC & BINFMT API
7593 R:      Eric Biederman <ebiederm@xmission.com>
7594 R:      Kees Cook <keescook@chromium.org>
7595 L:      linux-mm@kvack.org
7596 S:      Supported
7597 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/execve
7598 F:      arch/alpha/kernel/binfmt_loader.c
7599 F:      fs/*binfmt_*.c
7600 F:      fs/exec.c
7601 F:      include/linux/binfmts.h
7602 F:      include/linux/elf.h
7603 F:      include/uapi/linux/binfmts.h
7604 F:      include/uapi/linux/elf.h
7605 F:      tools/testing/selftests/exec/
7606 N:      asm/elf.h
7607 N:      binfmt
7608
7609 EXFAT FILE SYSTEM
7610 M:      Namjae Jeon <linkinjeon@kernel.org>
7611 M:      Sungjong Seo <sj1557.seo@samsung.com>
7612 L:      linux-fsdevel@vger.kernel.org
7613 S:      Maintained
7614 F:      fs/exfat/
7615
7616 EXT2 FILE SYSTEM
7617 M:      Jan Kara <jack@suse.com>
7618 L:      linux-ext4@vger.kernel.org
7619 S:      Maintained
7620 F:      Documentation/filesystems/ext2.rst
7621 F:      fs/ext2/
7622 F:      include/linux/ext2*
7623
7624 EXT4 FILE SYSTEM
7625 M:      "Theodore Ts'o" <tytso@mit.edu>
7626 M:      Andreas Dilger <adilger.kernel@dilger.ca>
7627 L:      linux-ext4@vger.kernel.org
7628 S:      Maintained
7629 W:      http://ext4.wiki.kernel.org
7630 Q:      http://patchwork.ozlabs.org/project/linux-ext4/list/
7631 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tytso/ext4.git
7632 F:      Documentation/filesystems/ext4/
7633 F:      fs/ext4/
7634 F:      include/trace/events/ext4.h
7635
7636 Extended Verification Module (EVM)
7637 M:      Mimi Zohar <zohar@linux.ibm.com>
7638 L:      linux-integrity@vger.kernel.org
7639 S:      Supported
7640 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/zohar/linux-integrity.git
7641 F:      security/integrity/evm/
7642 F:      security/integrity/
7643
7644 EXTENSIBLE FIRMWARE INTERFACE (EFI)
7645 M:      Ard Biesheuvel <ardb@kernel.org>
7646 L:      linux-efi@vger.kernel.org
7647 S:      Maintained
7648 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
7649 F:      Documentation/admin-guide/efi-stub.rst
7650 F:      arch/*/include/asm/efi.h
7651 F:      arch/*/kernel/efi.c
7652 F:      arch/arm/boot/compressed/efi-header.S
7653 F:      arch/arm64/kernel/efi-entry.S
7654 F:      arch/x86/platform/efi/
7655 F:      drivers/firmware/efi/
7656 F:      include/linux/efi*.h
7657
7658 EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
7659 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
7660 M:      Chanwoo Choi <cw00.choi@samsung.com>
7661 L:      linux-kernel@vger.kernel.org
7662 S:      Maintained
7663 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git
7664 F:      Documentation/devicetree/bindings/extcon/
7665 F:      Documentation/firmware-guide/acpi/extcon-intel-int3496.rst
7666 F:      drivers/extcon/
7667 F:      include/linux/extcon.h
7668 F:      include/linux/extcon/
7669
7670 EXTRA BOOT CONFIG
7671 M:      Masami Hiramatsu <mhiramat@kernel.org>
7672 S:      Maintained
7673 F:      Documentation/admin-guide/bootconfig.rst
7674 F:      fs/proc/bootconfig.c
7675 F:      include/linux/bootconfig.h
7676 F:      lib/bootconfig-data.S
7677 F:      lib/bootconfig.c
7678 F:      tools/bootconfig/*
7679 F:      tools/bootconfig/scripts/*
7680
7681 EXYNOS DP DRIVER
7682 M:      Jingoo Han <jingoohan1@gmail.com>
7683 L:      dri-devel@lists.freedesktop.org
7684 S:      Maintained
7685 F:      drivers/gpu/drm/exynos/exynos_dp*
7686
7687 EXYNOS SYSMMU (IOMMU) driver
7688 M:      Marek Szyprowski <m.szyprowski@samsung.com>
7689 L:      iommu@lists.linux.dev
7690 S:      Maintained
7691 F:      drivers/iommu/exynos-iommu.c
7692
7693 F2FS FILE SYSTEM
7694 M:      Jaegeuk Kim <jaegeuk@kernel.org>
7695 M:      Chao Yu <chao@kernel.org>
7696 L:      linux-f2fs-devel@lists.sourceforge.net
7697 S:      Maintained
7698 W:      https://f2fs.wiki.kernel.org/
7699 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
7700 F:      Documentation/ABI/testing/sysfs-fs-f2fs
7701 F:      Documentation/filesystems/f2fs.rst
7702 F:      fs/f2fs/
7703 F:      include/linux/f2fs_fs.h
7704 F:      include/trace/events/f2fs.h
7705 F:      include/uapi/linux/f2fs.h
7706
7707 F71805F HARDWARE MONITORING DRIVER
7708 M:      Jean Delvare <jdelvare@suse.com>
7709 L:      linux-hwmon@vger.kernel.org
7710 S:      Maintained
7711 F:      Documentation/hwmon/f71805f.rst
7712 F:      drivers/hwmon/f71805f.c
7713
7714 FADDR2LINE
7715 M:      Josh Poimboeuf <jpoimboe@kernel.org>
7716 S:      Maintained
7717 F:      scripts/faddr2line
7718
7719 FAILOVER MODULE
7720 M:      Sridhar Samudrala <sridhar.samudrala@intel.com>
7721 L:      netdev@vger.kernel.org
7722 S:      Supported
7723 F:      Documentation/networking/failover.rst
7724 F:      include/net/failover.h
7725 F:      net/core/failover.c
7726
7727 FANOTIFY
7728 M:      Jan Kara <jack@suse.cz>
7729 R:      Amir Goldstein <amir73il@gmail.com>
7730 R:      Matthew Bobrowski <repnop@google.com>
7731 L:      linux-fsdevel@vger.kernel.org
7732 S:      Maintained
7733 F:      fs/notify/fanotify/
7734 F:      include/linux/fanotify.h
7735 F:      include/uapi/linux/fanotify.h
7736
7737 FARSYNC SYNCHRONOUS DRIVER
7738 M:      Kevin Curtis <kevin.curtis@farsite.co.uk>
7739 S:      Supported
7740 W:      http://www.farsite.co.uk/
7741 F:      drivers/net/wan/farsync.*
7742
7743 FAULT INJECTION SUPPORT
7744 M:      Akinobu Mita <akinobu.mita@gmail.com>
7745 S:      Supported
7746 F:      Documentation/fault-injection/
7747 F:      lib/fault-inject.c
7748
7749 FBTFT Framebuffer drivers
7750 L:      dri-devel@lists.freedesktop.org
7751 L:      linux-fbdev@vger.kernel.org
7752 S:      Orphan
7753 F:      drivers/staging/fbtft/
7754
7755 FC0011 TUNER DRIVER
7756 M:      Michael Buesch <m@bues.ch>
7757 L:      linux-media@vger.kernel.org
7758 S:      Maintained
7759 F:      drivers/media/tuners/fc0011.c
7760 F:      drivers/media/tuners/fc0011.h
7761
7762 FC2580 MEDIA DRIVER
7763 M:      Antti Palosaari <crope@iki.fi>
7764 L:      linux-media@vger.kernel.org
7765 S:      Maintained
7766 W:      https://linuxtv.org
7767 W:      http://palosaari.fi/linux/
7768 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7769 T:      git git://linuxtv.org/anttip/media_tree.git
7770 F:      drivers/media/tuners/fc2580*
7771
7772 FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
7773 M:      Hannes Reinecke <hare@suse.de>
7774 L:      linux-scsi@vger.kernel.org
7775 S:      Supported
7776 W:      www.Open-FCoE.org
7777 F:      drivers/scsi/fcoe/
7778 F:      drivers/scsi/libfc/
7779 F:      include/scsi/fc/
7780 F:      include/scsi/libfc.h
7781 F:      include/scsi/libfcoe.h
7782 F:      include/uapi/scsi/fc/
7783
7784 FILE LOCKING (flock() and fcntl()/lockf())
7785 M:      Jeff Layton <jlayton@kernel.org>
7786 M:      Chuck Lever <chuck.lever@oracle.com>
7787 L:      linux-fsdevel@vger.kernel.org
7788 S:      Maintained
7789 F:      fs/fcntl.c
7790 F:      fs/locks.c
7791 F:      include/linux/fcntl.h
7792 F:      include/uapi/linux/fcntl.h
7793
7794 FILESYSTEM DIRECT ACCESS (DAX)
7795 M:      Dan Williams <dan.j.williams@intel.com>
7796 R:      Matthew Wilcox <willy@infradead.org>
7797 R:      Jan Kara <jack@suse.cz>
7798 L:      linux-fsdevel@vger.kernel.org
7799 L:      nvdimm@lists.linux.dev
7800 S:      Supported
7801 F:      fs/dax.c
7802 F:      include/linux/dax.h
7803 F:      include/trace/events/fs_dax.h
7804
7805 FILESYSTEMS (VFS and infrastructure)
7806 M:      Alexander Viro <viro@zeniv.linux.org.uk>
7807 L:      linux-fsdevel@vger.kernel.org
7808 S:      Maintained
7809 F:      fs/*
7810 F:      include/linux/fs.h
7811 F:      include/linux/fs_types.h
7812 F:      include/uapi/linux/fs.h
7813 F:      include/uapi/linux/openat2.h
7814
7815 FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
7816 M:      Riku Voipio <riku.voipio@iki.fi>
7817 L:      linux-hwmon@vger.kernel.org
7818 S:      Maintained
7819 F:      drivers/hwmon/f75375s.c
7820 F:      include/linux/f75375s.h
7821
7822 FIREWIRE AUDIO DRIVERS and IEC 61883-1/6 PACKET STREAMING ENGINE
7823 M:      Clemens Ladisch <clemens@ladisch.de>
7824 M:      Takashi Sakamoto <o-takashi@sakamocchi.jp>
7825 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7826 S:      Maintained
7827 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
7828 F:      include/uapi/sound/firewire.h
7829 F:      sound/firewire/
7830
7831 FIREWIRE MEDIA DRIVERS (firedtv)
7832 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
7833 L:      linux-media@vger.kernel.org
7834 L:      linux1394-devel@lists.sourceforge.net
7835 S:      Maintained
7836 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
7837 F:      drivers/media/firewire/
7838
7839 FIREWIRE SBP-2 TARGET
7840 M:      Chris Boot <bootc@bootc.net>
7841 L:      linux-scsi@vger.kernel.org
7842 L:      target-devel@vger.kernel.org
7843 L:      linux1394-devel@lists.sourceforge.net
7844 S:      Maintained
7845 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
7846 F:      drivers/target/sbp/
7847
7848 FIREWIRE SUBSYSTEM
7849 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
7850 L:      linux1394-devel@lists.sourceforge.net
7851 S:      Maintained
7852 W:      http://ieee1394.wiki.kernel.org/
7853 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
7854 F:      drivers/firewire/
7855 F:      include/linux/firewire.h
7856 F:      include/uapi/linux/firewire*.h
7857 F:      tools/firewire/
7858
7859 FIRMWARE FRAMEWORK FOR ARMV8-A
7860 M:      Sudeep Holla <sudeep.holla@arm.com>
7861 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7862 S:      Maintained
7863 F:      drivers/firmware/arm_ffa/
7864 F:      include/linux/arm_ffa.h
7865
7866 FIRMWARE LOADER (request_firmware)
7867 M:      Luis Chamberlain <mcgrof@kernel.org>
7868 M:      Russ Weight <russell.h.weight@intel.com>
7869 L:      linux-kernel@vger.kernel.org
7870 S:      Maintained
7871 F:      Documentation/firmware_class/
7872 F:      drivers/base/firmware_loader/
7873 F:      include/linux/firmware.h
7874
7875 FLEXTIMER FTM-QUADDEC DRIVER
7876 M:      Patrick Havelange <patrick.havelange@essensium.com>
7877 L:      linux-iio@vger.kernel.org
7878 S:      Maintained
7879 F:      Documentation/devicetree/bindings/counter/ftm-quaddec.txt
7880 F:      drivers/counter/ftm-quaddec.c
7881
7882 FLOPPY DRIVER
7883 M:      Denis Efremov <efremov@linux.com>
7884 L:      linux-block@vger.kernel.org
7885 S:      Odd Fixes
7886 F:      drivers/block/floppy.c
7887
7888 FLYSKY FSIA6B RC RECEIVER
7889 M:      Markus Koch <markus@notsyncing.net>
7890 L:      linux-input@vger.kernel.org
7891 S:      Maintained
7892 F:      drivers/input/joystick/fsia6b.c
7893
7894 FOCUSRITE SCARLETT GEN 2/3 MIXER DRIVER
7895 M:      Geoffrey D. Bennett <g@b4.vu>
7896 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7897 S:      Maintained
7898 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
7899 F:      sound/usb/mixer_scarlett_gen2.c
7900
7901 FORCEDETH GIGABIT ETHERNET DRIVER
7902 M:      Rain River <rain.1986.08.12@gmail.com>
7903 M:      Zhu Yanjun <zyjzyj2000@gmail.com>
7904 L:      netdev@vger.kernel.org
7905 S:      Maintained
7906 F:      drivers/net/ethernet/nvidia/*
7907
7908 FORTIFY_SOURCE
7909 M:      Kees Cook <keescook@chromium.org>
7910 L:      linux-hardening@vger.kernel.org
7911 S:      Supported
7912 F:      include/linux/fortify-string.h
7913 F:      lib/test_fortify/*
7914 F:      scripts/test_fortify.sh
7915 K:      \b__NO_FORTIFY\b
7916
7917 FPGA DFL DRIVERS
7918 M:      Wu Hao <hao.wu@intel.com>
7919 R:      Tom Rix <trix@redhat.com>
7920 L:      linux-fpga@vger.kernel.org
7921 S:      Maintained
7922 F:      Documentation/ABI/testing/sysfs-bus-dfl*
7923 F:      Documentation/fpga/dfl.rst
7924 F:      drivers/fpga/dfl*
7925 F:      drivers/uio/uio_dfl.c
7926 F:      include/linux/dfl.h
7927 F:      include/uapi/linux/fpga-dfl.h
7928
7929 FPGA MANAGER FRAMEWORK
7930 M:      Moritz Fischer <mdf@kernel.org>
7931 M:      Wu Hao <hao.wu@intel.com>
7932 M:      Xu Yilun <yilun.xu@intel.com>
7933 R:      Tom Rix <trix@redhat.com>
7934 L:      linux-fpga@vger.kernel.org
7935 S:      Maintained
7936 Q:      http://patchwork.kernel.org/project/linux-fpga/list/
7937 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/fpga/linux-fpga.git
7938 F:      Documentation/devicetree/bindings/fpga/
7939 F:      Documentation/driver-api/fpga/
7940 F:      Documentation/fpga/
7941 F:      drivers/fpga/
7942 F:      include/linux/fpga/
7943
7944 FPU EMULATOR
7945 M:      Bill Metzenthen <billm@melbpc.org.au>
7946 S:      Maintained
7947 W:      http://floatingpoint.sourceforge.net/emulator/index.html
7948 F:      arch/x86/math-emu/
7949
7950 FRAMEBUFFER CORE
7951 M:      Daniel Vetter <daniel@ffwll.ch>
7952 F:      drivers/video/fbdev/core/
7953 S:      Odd Fixes
7954 T:      git git://anongit.freedesktop.org/drm/drm-misc
7955
7956 FRAMEBUFFER LAYER
7957 M:      Helge Deller <deller@gmx.de>
7958 L:      linux-fbdev@vger.kernel.org
7959 L:      dri-devel@lists.freedesktop.org
7960 S:      Maintained
7961 Q:      http://patchwork.kernel.org/project/linux-fbdev/list/
7962 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/deller/linux-fbdev.git
7963 F:      Documentation/fb/
7964 F:      drivers/video/
7965 F:      include/linux/fb.h
7966 F:      include/uapi/linux/fb.h
7967 F:      include/uapi/video/
7968 F:      include/video/
7969
7970 FREESCALE CAAM (Cryptographic Acceleration and Assurance Module) DRIVER
7971 M:      Horia Geantă <horia.geanta@nxp.com>
7972 M:      Pankaj Gupta <pankaj.gupta@nxp.com>
7973 M:      Gaurav Jain <gaurav.jain@nxp.com>
7974 L:      linux-crypto@vger.kernel.org
7975 S:      Maintained
7976 F:      Documentation/devicetree/bindings/crypto/fsl-sec4.txt
7977 F:      drivers/crypto/caam/
7978
7979 FREESCALE COLDFIRE M5441X MMC DRIVER
7980 M:      Angelo Dureghello <angelo.dureghello@timesys.com>
7981 L:      linux-mmc@vger.kernel.org
7982 S:      Maintained
7983 F:      drivers/mmc/host/sdhci-esdhc-mcf.c
7984 F:      include/linux/platform_data/mmc-esdhc-mcf.h
7985
7986 FREESCALE DIU FRAMEBUFFER DRIVER
7987 M:      Timur Tabi <timur@kernel.org>
7988 L:      linux-fbdev@vger.kernel.org
7989 S:      Maintained
7990 F:      drivers/video/fbdev/fsl-diu-fb.*
7991
7992 FREESCALE DMA DRIVER
7993 M:      Li Yang <leoyang.li@nxp.com>
7994 M:      Zhang Wei <zw@zh-kernel.org>
7995 L:      linuxppc-dev@lists.ozlabs.org
7996 S:      Maintained
7997 F:      drivers/dma/fsldma.*
7998
7999 FREESCALE DSPI DRIVER
8000 M:      Vladimir Oltean <olteanv@gmail.com>
8001 L:      linux-spi@vger.kernel.org
8002 S:      Maintained
8003 F:      Documentation/devicetree/bindings/spi/spi-fsl-dspi.txt
8004 F:      drivers/spi/spi-fsl-dspi.c
8005 F:      include/linux/spi/spi-fsl-dspi.h
8006
8007 FREESCALE ENETC ETHERNET DRIVERS
8008 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
8009 L:      netdev@vger.kernel.org
8010 S:      Maintained
8011 F:      drivers/net/ethernet/freescale/enetc/
8012
8013 FREESCALE eTSEC ETHERNET DRIVER (GIANFAR)
8014 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
8015 L:      netdev@vger.kernel.org
8016 S:      Maintained
8017 F:      Documentation/devicetree/bindings/net/fsl-tsec-phy.txt
8018 F:      drivers/net/ethernet/freescale/gianfar*
8019
8020 FREESCALE GPMI NAND DRIVER
8021 M:      Han Xu <han.xu@nxp.com>
8022 L:      linux-mtd@lists.infradead.org
8023 S:      Maintained
8024 F:      drivers/mtd/nand/raw/gpmi-nand/*
8025
8026 FREESCALE I2C CPM DRIVER
8027 M:      Jochen Friedrich <jochen@scram.de>
8028 L:      linuxppc-dev@lists.ozlabs.org
8029 L:      linux-i2c@vger.kernel.org
8030 S:      Maintained
8031 F:      drivers/i2c/busses/i2c-cpm.c
8032
8033 FREESCALE IMX / MXC FEC DRIVER
8034 M:      Joakim Zhang <qiangqing.zhang@nxp.com>
8035 L:      netdev@vger.kernel.org
8036 S:      Maintained
8037 F:      Documentation/devicetree/bindings/net/fsl,fec.yaml
8038 F:      drivers/net/ethernet/freescale/fec.h
8039 F:      drivers/net/ethernet/freescale/fec_main.c
8040 F:      drivers/net/ethernet/freescale/fec_ptp.c
8041
8042 FREESCALE IMX / MXC FRAMEBUFFER DRIVER
8043 M:      Sascha Hauer <s.hauer@pengutronix.de>
8044 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
8045 L:      linux-fbdev@vger.kernel.org
8046 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8047 S:      Maintained
8048 F:      drivers/video/fbdev/imxfb.c
8049 F:      include/linux/platform_data/video-imxfb.h
8050
8051 FREESCALE IMX DDR PMU DRIVER
8052 M:      Frank Li <Frank.li@nxp.com>
8053 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8054 S:      Maintained
8055 F:      Documentation/admin-guide/perf/imx-ddr.rst
8056 F:      Documentation/devicetree/bindings/perf/fsl-imx-ddr.yaml
8057 F:      drivers/perf/fsl_imx8_ddr_perf.c
8058
8059 FREESCALE IMX I2C DRIVER
8060 M:      Oleksij Rempel <o.rempel@pengutronix.de>
8061 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
8062 L:      linux-i2c@vger.kernel.org
8063 S:      Maintained
8064 F:      Documentation/devicetree/bindings/i2c/i2c-imx.yaml
8065 F:      drivers/i2c/busses/i2c-imx.c
8066
8067 FREESCALE IMX LPI2C DRIVER
8068 M:      Dong Aisheng <aisheng.dong@nxp.com>
8069 L:      linux-i2c@vger.kernel.org
8070 L:      linux-imx@nxp.com
8071 S:      Maintained
8072 F:      Documentation/devicetree/bindings/i2c/i2c-imx-lpi2c.yaml
8073 F:      drivers/i2c/busses/i2c-imx-lpi2c.c
8074
8075 FREESCALE MPC I2C DRIVER
8076 M:      Chris Packham <chris.packham@alliedtelesis.co.nz>
8077 L:      linux-i2c@vger.kernel.org
8078 S:      Maintained
8079 F:      Documentation/devicetree/bindings/i2c/i2c-mpc.yaml
8080 F:      drivers/i2c/busses/i2c-mpc.c
8081
8082 FREESCALE QORIQ DPAA ETHERNET DRIVER
8083 M:      Madalin Bucur <madalin.bucur@nxp.com>
8084 L:      netdev@vger.kernel.org
8085 S:      Maintained
8086 F:      drivers/net/ethernet/freescale/dpaa
8087
8088 FREESCALE QORIQ DPAA FMAN DRIVER
8089 M:      Madalin Bucur <madalin.bucur@nxp.com>
8090 L:      netdev@vger.kernel.org
8091 S:      Maintained
8092 F:      Documentation/devicetree/bindings/net/fsl-fman.txt
8093 F:      drivers/net/ethernet/freescale/fman
8094
8095 FREESCALE QORIQ PTP CLOCK DRIVER
8096 M:      Yangbo Lu <yangbo.lu@nxp.com>
8097 L:      netdev@vger.kernel.org
8098 S:      Maintained
8099 F:      Documentation/devicetree/bindings/ptp/ptp-qoriq.txt
8100 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-ptp*
8101 F:      drivers/net/ethernet/freescale/dpaa2/dprtc*
8102 F:      drivers/net/ethernet/freescale/enetc/enetc_ptp.c
8103 F:      drivers/ptp/ptp_qoriq.c
8104 F:      drivers/ptp/ptp_qoriq_debugfs.c
8105 F:      include/linux/fsl/ptp_qoriq.h
8106
8107 FREESCALE QUAD SPI DRIVER
8108 M:      Han Xu <han.xu@nxp.com>
8109 L:      linux-spi@vger.kernel.org
8110 S:      Maintained
8111 F:      Documentation/devicetree/bindings/spi/fsl,spi-fsl-qspi.yaml
8112 F:      drivers/spi/spi-fsl-qspi.c
8113
8114 FREESCALE QUICC ENGINE LIBRARY
8115 M:      Qiang Zhao <qiang.zhao@nxp.com>
8116 L:      linuxppc-dev@lists.ozlabs.org
8117 S:      Maintained
8118 F:      drivers/soc/fsl/qe/
8119 F:      include/soc/fsl/qe/
8120
8121 FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
8122 M:      Li Yang <leoyang.li@nxp.com>
8123 L:      netdev@vger.kernel.org
8124 L:      linuxppc-dev@lists.ozlabs.org
8125 S:      Maintained
8126 F:      drivers/net/ethernet/freescale/ucc_geth*
8127
8128 FREESCALE QUICC ENGINE UCC HDLC DRIVER
8129 M:      Zhao Qiang <qiang.zhao@nxp.com>
8130 L:      netdev@vger.kernel.org
8131 L:      linuxppc-dev@lists.ozlabs.org
8132 S:      Maintained
8133 F:      drivers/net/wan/fsl_ucc_hdlc*
8134
8135 FREESCALE QUICC ENGINE UCC UART DRIVER
8136 M:      Timur Tabi <timur@kernel.org>
8137 L:      linuxppc-dev@lists.ozlabs.org
8138 S:      Maintained
8139 F:      drivers/tty/serial/ucc_uart.c
8140
8141 FREESCALE SOC DRIVERS
8142 M:      Li Yang <leoyang.li@nxp.com>
8143 L:      linuxppc-dev@lists.ozlabs.org
8144 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8145 S:      Maintained
8146 F:      Documentation/devicetree/bindings/misc/fsl,dpaa2-console.yaml
8147 F:      Documentation/devicetree/bindings/soc/fsl/
8148 F:      drivers/soc/fsl/
8149 F:      include/linux/fsl/
8150 F:      include/soc/fsl/
8151
8152 FREESCALE SOC FS_ENET DRIVER
8153 M:      Pantelis Antoniou <pantelis.antoniou@gmail.com>
8154 L:      linuxppc-dev@lists.ozlabs.org
8155 L:      netdev@vger.kernel.org
8156 S:      Maintained
8157 F:      drivers/net/ethernet/freescale/fs_enet/
8158 F:      include/linux/fs_enet_pd.h
8159
8160 FREESCALE SOC SOUND DRIVERS
8161 M:      Shengjiu Wang <shengjiu.wang@gmail.com>
8162 M:      Xiubo Li <Xiubo.Lee@gmail.com>
8163 R:      Fabio Estevam <festevam@gmail.com>
8164 R:      Nicolin Chen <nicoleotsuka@gmail.com>
8165 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
8166 L:      linuxppc-dev@lists.ozlabs.org
8167 S:      Maintained
8168 F:      sound/soc/fsl/fsl*
8169 F:      sound/soc/fsl/imx*
8170 F:      sound/soc/fsl/mpc8610_hpcd.c
8171
8172 FREESCALE USB PERIPHERAL DRIVERS
8173 M:      Li Yang <leoyang.li@nxp.com>
8174 L:      linux-usb@vger.kernel.org
8175 L:      linuxppc-dev@lists.ozlabs.org
8176 S:      Maintained
8177 F:      drivers/usb/gadget/udc/fsl*
8178
8179 FREESCALE USB PHY DRIVER
8180 M:      Ran Wang <ran.wang_1@nxp.com>
8181 L:      linux-usb@vger.kernel.org
8182 L:      linuxppc-dev@lists.ozlabs.org
8183 S:      Maintained
8184 F:      drivers/usb/phy/phy-fsl-usb*
8185
8186 FREEVXFS FILESYSTEM
8187 M:      Christoph Hellwig <hch@infradead.org>
8188 S:      Maintained
8189 W:      ftp://ftp.openlinux.org/pub/people/hch/vxfs
8190 F:      fs/freevxfs/
8191
8192 FREEZER
8193 M:      "Rafael J. Wysocki" <rafael@kernel.org>
8194 M:      Pavel Machek <pavel@ucw.cz>
8195 L:      linux-pm@vger.kernel.org
8196 S:      Supported
8197 F:      Documentation/power/freezing-of-tasks.rst
8198 F:      include/linux/freezer.h
8199 F:      kernel/freezer.c
8200
8201 FRONTSWAP API
8202 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
8203 L:      linux-kernel@vger.kernel.org
8204 S:      Maintained
8205 F:      include/linux/frontswap.h
8206 F:      mm/frontswap.c
8207
8208 FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
8209 M:      David Howells <dhowells@redhat.com>
8210 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
8211 S:      Supported
8212 F:      Documentation/filesystems/caching/
8213 F:      fs/fscache/
8214 F:      include/linux/fscache*.h
8215
8216 FSCRYPT: FILE SYSTEM LEVEL ENCRYPTION SUPPORT
8217 M:      Theodore Y. Ts'o <tytso@mit.edu>
8218 M:      Jaegeuk Kim <jaegeuk@kernel.org>
8219 M:      Eric Biggers <ebiggers@kernel.org>
8220 L:      linux-fscrypt@vger.kernel.org
8221 S:      Supported
8222 Q:      https://patchwork.kernel.org/project/linux-fscrypt/list/
8223 T:      git git://git.kernel.org/pub/scm/fs/fscrypt/fscrypt.git
8224 F:      Documentation/filesystems/fscrypt.rst
8225 F:      fs/crypto/
8226 F:      include/linux/fscrypt*.h
8227 F:      include/uapi/linux/fscrypt.h
8228
8229 FSI SUBSYSTEM
8230 M:      Jeremy Kerr <jk@ozlabs.org>
8231 M:      Joel Stanley <joel@jms.id.au>
8232 R:      Alistar Popple <alistair@popple.id.au>
8233 R:      Eddie James <eajames@linux.ibm.com>
8234 L:      linux-fsi@lists.ozlabs.org
8235 S:      Supported
8236 Q:      http://patchwork.ozlabs.org/project/linux-fsi/list/
8237 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joel/fsi.git
8238 F:      drivers/fsi/
8239 F:      include/linux/fsi*.h
8240 F:      include/trace/events/fsi*.h
8241
8242 FSI-ATTACHED I2C DRIVER
8243 M:      Eddie James <eajames@linux.ibm.com>
8244 L:      linux-i2c@vger.kernel.org
8245 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
8246 S:      Maintained
8247 F:      Documentation/devicetree/bindings/i2c/i2c-fsi.txt
8248 F:      drivers/i2c/busses/i2c-fsi.c
8249
8250 FSI-ATTACHED SPI DRIVER
8251 M:      Eddie James <eajames@linux.ibm.com>
8252 L:      linux-spi@vger.kernel.org
8253 S:      Maintained
8254 F:      Documentation/devicetree/bindings/fsi/ibm,fsi2spi.yaml
8255 F:      drivers/spi/spi-fsi.c
8256
8257 FSNOTIFY: FILESYSTEM NOTIFICATION INFRASTRUCTURE
8258 M:      Jan Kara <jack@suse.cz>
8259 R:      Amir Goldstein <amir73il@gmail.com>
8260 L:      linux-fsdevel@vger.kernel.org
8261 S:      Maintained
8262 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jack/linux-fs.git fsnotify
8263 F:      fs/notify/
8264 F:      include/linux/fsnotify*.h
8265
8266 FSVERITY: READ-ONLY FILE-BASED AUTHENTICITY PROTECTION
8267 M:      Eric Biggers <ebiggers@kernel.org>
8268 M:      Theodore Y. Ts'o <tytso@mit.edu>
8269 L:      linux-fscrypt@vger.kernel.org
8270 S:      Supported
8271 Q:      https://patchwork.kernel.org/project/linux-fscrypt/list/
8272 T:      git git://git.kernel.org/pub/scm/fs/fscrypt/fscrypt.git fsverity
8273 F:      Documentation/filesystems/fsverity.rst
8274 F:      fs/verity/
8275 F:      include/linux/fsverity.h
8276 F:      include/uapi/linux/fsverity.h
8277
8278 FT260 FTDI USB-HID TO I2C BRIDGE DRIVER
8279 M:      Michael Zaidman <michael.zaidman@gmail.com>
8280 L:      linux-i2c@vger.kernel.org
8281 L:      linux-input@vger.kernel.org
8282 S:      Maintained
8283 F:      drivers/hid/hid-ft260.c
8284
8285 FUJITSU LAPTOP EXTRAS
8286 M:      Jonathan Woithe <jwoithe@just42.net>
8287 L:      platform-driver-x86@vger.kernel.org
8288 S:      Maintained
8289 F:      drivers/platform/x86/fujitsu-laptop.c
8290
8291 FUJITSU M-5MO LS CAMERA ISP DRIVER
8292 M:      Kyungmin Park <kyungmin.park@samsung.com>
8293 M:      Heungjun Kim <riverful.kim@samsung.com>
8294 L:      linux-media@vger.kernel.org
8295 S:      Maintained
8296 F:      drivers/media/i2c/m5mols/
8297 F:      include/media/i2c/m5mols.h
8298
8299 FUJITSU TABLET EXTRAS
8300 M:      Robert Gerlach <khnz@gmx.de>
8301 L:      platform-driver-x86@vger.kernel.org
8302 S:      Maintained
8303 F:      drivers/platform/x86/fujitsu-tablet.c
8304
8305 FUNGIBLE ETHERNET DRIVERS
8306 M:      Dimitris Michailidis <dmichail@fungible.com>
8307 L:      netdev@vger.kernel.org
8308 S:      Supported
8309 F:      drivers/net/ethernet/fungible/
8310
8311 FUSE: FILESYSTEM IN USERSPACE
8312 M:      Miklos Szeredi <miklos@szeredi.hu>
8313 L:      linux-fsdevel@vger.kernel.org
8314 S:      Maintained
8315 W:      https://github.com/libfuse/
8316 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse.git
8317 F:      Documentation/filesystems/fuse.rst
8318 F:      fs/fuse/
8319 F:      include/uapi/linux/fuse.h
8320
8321 FUTEX SUBSYSTEM
8322 M:      Thomas Gleixner <tglx@linutronix.de>
8323 M:      Ingo Molnar <mingo@redhat.com>
8324 R:      Peter Zijlstra <peterz@infradead.org>
8325 R:      Darren Hart <dvhart@infradead.org>
8326 R:      Davidlohr Bueso <dave@stgolabs.net>
8327 R:      André Almeida <andrealmeid@igalia.com>
8328 L:      linux-kernel@vger.kernel.org
8329 S:      Maintained
8330 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
8331 F:      Documentation/locking/*futex*
8332 F:      include/asm-generic/futex.h
8333 F:      include/linux/futex.h
8334 F:      include/uapi/linux/futex.h
8335 F:      kernel/futex/*
8336 F:      tools/perf/bench/futex*
8337 F:      tools/testing/selftests/futex/
8338
8339 GATEWORKS SYSTEM CONTROLLER (GSC) DRIVER
8340 M:      Tim Harvey <tharvey@gateworks.com>
8341 M:      Robert Jones <rjones@gateworks.com>
8342 S:      Maintained
8343 F:      Documentation/devicetree/bindings/mfd/gateworks-gsc.yaml
8344 F:      drivers/mfd/gateworks-gsc.c
8345 F:      include/linux/mfd/gsc.h
8346 F:      Documentation/hwmon/gsc-hwmon.rst
8347 F:      drivers/hwmon/gsc-hwmon.c
8348 F:      include/linux/platform_data/gsc_hwmon.h
8349
8350 GCC PLUGINS
8351 M:      Kees Cook <keescook@chromium.org>
8352 L:      linux-hardening@vger.kernel.org
8353 S:      Maintained
8354 F:      Documentation/kbuild/gcc-plugins.rst
8355 F:      scripts/Makefile.gcc-plugins
8356 F:      scripts/gcc-plugins/
8357
8358 GCOV BASED KERNEL PROFILING
8359 M:      Peter Oberparleiter <oberpar@linux.ibm.com>
8360 S:      Maintained
8361 F:      Documentation/dev-tools/gcov.rst
8362 F:      kernel/gcov/
8363
8364 GDB KERNEL DEBUGGING HELPER SCRIPTS
8365 M:      Jan Kiszka <jan.kiszka@siemens.com>
8366 M:      Kieran Bingham <kbingham@kernel.org>
8367 S:      Supported
8368 F:      scripts/gdb/
8369
8370 GEMINI CRYPTO DRIVER
8371 M:      Corentin Labbe <clabbe@baylibre.com>
8372 L:      linux-crypto@vger.kernel.org
8373 S:      Maintained
8374 F:      drivers/crypto/gemini/
8375
8376 GEMTEK FM RADIO RECEIVER DRIVER
8377 M:      Hans Verkuil <hverkuil@xs4all.nl>
8378 L:      linux-media@vger.kernel.org
8379 S:      Maintained
8380 W:      https://linuxtv.org
8381 T:      git git://linuxtv.org/media_tree.git
8382 F:      drivers/media/radio/radio-gemtek*
8383
8384 GENERIC ARCHITECTURE TOPOLOGY
8385 M:      Sudeep Holla <sudeep.holla@arm.com>
8386 L:      linux-kernel@vger.kernel.org
8387 S:      Maintained
8388 F:      drivers/base/arch_topology.c
8389 F:      include/linux/arch_topology.h
8390
8391 GENERIC ENTRY CODE
8392 M:      Thomas Gleixner <tglx@linutronix.de>
8393 M:      Peter Zijlstra <peterz@infradead.org>
8394 M:      Andy Lutomirski <luto@kernel.org>
8395 L:      linux-kernel@vger.kernel.org
8396 S:      Maintained
8397 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/entry
8398 F:      include/linux/entry-common.h
8399 F:      include/linux/entry-kvm.h
8400 F:      kernel/entry/
8401
8402 GENERIC GPIO I2C DRIVER
8403 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
8404 S:      Supported
8405 F:      drivers/i2c/busses/i2c-gpio.c
8406 F:      include/linux/platform_data/i2c-gpio.h
8407
8408 GENERIC GPIO I2C MULTIPLEXER DRIVER
8409 M:      Peter Korsgaard <peter.korsgaard@barco.com>
8410 L:      linux-i2c@vger.kernel.org
8411 S:      Supported
8412 F:      Documentation/i2c/muxes/i2c-mux-gpio.rst
8413 F:      drivers/i2c/muxes/i2c-mux-gpio.c
8414 F:      include/linux/platform_data/i2c-mux-gpio.h
8415
8416 GENERIC HDLC (WAN) DRIVERS
8417 M:      Krzysztof Halasa <khc@pm.waw.pl>
8418 S:      Maintained
8419 W:      http://www.kernel.org/pub/linux/utils/net/hdlc/
8420 F:      drivers/net/wan/c101.c
8421 F:      drivers/net/wan/hd6457*
8422 F:      drivers/net/wan/hdlc*
8423 F:      drivers/net/wan/n2.c
8424 F:      drivers/net/wan/pc300too.c
8425 F:      drivers/net/wan/pci200syn.c
8426 F:      drivers/net/wan/wanxl*
8427
8428 GENERIC INCLUDE/ASM HEADER FILES
8429 M:      Arnd Bergmann <arnd@arndb.de>
8430 L:      linux-arch@vger.kernel.org
8431 S:      Maintained
8432 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
8433 F:      include/asm-generic/
8434 F:      include/uapi/asm-generic/
8435
8436 GENERIC PHY FRAMEWORK
8437 M:      Kishon Vijay Abraham I <kishon@ti.com>
8438 M:      Vinod Koul <vkoul@kernel.org>
8439 L:      linux-phy@lists.infradead.org
8440 S:      Supported
8441 Q:      https://patchwork.kernel.org/project/linux-phy/list/
8442 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/phy/linux-phy.git
8443 F:      Documentation/devicetree/bindings/phy/
8444 F:      drivers/phy/
8445 F:      include/linux/phy/
8446
8447 GENERIC PINCTRL I2C DEMULTIPLEXER DRIVER
8448 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
8449 S:      Supported
8450 F:      drivers/i2c/muxes/i2c-demux-pinctrl.c
8451
8452 GENERIC PM DOMAINS
8453 M:      "Rafael J. Wysocki" <rafael@kernel.org>
8454 M:      Kevin Hilman <khilman@kernel.org>
8455 M:      Ulf Hansson <ulf.hansson@linaro.org>
8456 L:      linux-pm@vger.kernel.org
8457 S:      Supported
8458 F:      Documentation/devicetree/bindings/power/power?domain*
8459 F:      drivers/base/power/domain*.c
8460 F:      include/linux/pm_domain.h
8461
8462 GENERIC RESISTIVE TOUCHSCREEN ADC DRIVER
8463 M:      Eugen Hristev <eugen.hristev@microchip.com>
8464 L:      linux-input@vger.kernel.org
8465 S:      Maintained
8466 F:      drivers/input/touchscreen/resistive-adc-touch.c
8467
8468 GENERIC STRING LIBRARY
8469 R:      Andy Shevchenko <andy@kernel.org>
8470 S:      Maintained
8471 F:      lib/string.c
8472 F:      lib/string_helpers.c
8473 F:      lib/test_string.c
8474 F:      lib/test-string_helpers.c
8475
8476 GENERIC UIO DRIVER FOR PCI DEVICES
8477 M:      "Michael S. Tsirkin" <mst@redhat.com>
8478 L:      kvm@vger.kernel.org
8479 S:      Supported
8480 F:      drivers/uio/uio_pci_generic.c
8481
8482 GENERIC VDSO LIBRARY
8483 M:      Andy Lutomirski <luto@kernel.org>
8484 M:      Thomas Gleixner <tglx@linutronix.de>
8485 M:      Vincenzo Frascino <vincenzo.frascino@arm.com>
8486 L:      linux-kernel@vger.kernel.org
8487 S:      Maintained
8488 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/vdso
8489 F:      include/asm-generic/vdso/vsyscall.h
8490 F:      include/vdso/
8491 F:      kernel/time/vsyscall.c
8492 F:      lib/vdso/
8493
8494 GENWQE (IBM Generic Workqueue Card)
8495 M:      Frank Haverkamp <haver@linux.ibm.com>
8496 S:      Supported
8497 F:      drivers/misc/genwqe/
8498
8499 GET_MAINTAINER SCRIPT
8500 M:      Joe Perches <joe@perches.com>
8501 S:      Maintained
8502 F:      scripts/get_maintainer.pl
8503
8504 GFS2 FILE SYSTEM
8505 M:      Bob Peterson <rpeterso@redhat.com>
8506 M:      Andreas Gruenbacher <agruenba@redhat.com>
8507 L:      cluster-devel@redhat.com
8508 S:      Supported
8509 B:      https://bugzilla.kernel.org/enter_bug.cgi?product=File%20System&component=gfs2
8510 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git
8511 F:      Documentation/filesystems/gfs2*
8512 F:      fs/gfs2/
8513 F:      include/uapi/linux/gfs2_ondisk.h
8514
8515 GIGABYTE WMI DRIVER
8516 M:      Thomas Weißschuh <thomas@weissschuh.net>
8517 L:      platform-driver-x86@vger.kernel.org
8518 S:      Maintained
8519 F:      drivers/platform/x86/gigabyte-wmi.c
8520
8521 GNSS SUBSYSTEM
8522 M:      Johan Hovold <johan@kernel.org>
8523 S:      Maintained
8524 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/gnss.git
8525 F:      Documentation/ABI/testing/sysfs-class-gnss
8526 F:      Documentation/devicetree/bindings/gnss/
8527 F:      drivers/gnss/
8528 F:      include/linux/gnss.h
8529
8530 GO7007 MPEG CODEC
8531 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
8532 L:      linux-media@vger.kernel.org
8533 S:      Maintained
8534 F:      drivers/media/usb/go7007/
8535
8536 GOODIX TOUCHSCREEN
8537 M:      Bastien Nocera <hadess@hadess.net>
8538 M:      Hans de Goede <hdegoede@redhat.com>
8539 L:      linux-input@vger.kernel.org
8540 S:      Maintained
8541 F:      drivers/input/touchscreen/goodix*
8542
8543 GOOGLE ETHERNET DRIVERS
8544 M:      Jeroen de Borst <jeroendb@google.com>
8545 R:      Catherine Sullivan <csully@google.com>
8546 R:      David Awogbemila <awogbemila@google.com>
8547 L:      netdev@vger.kernel.org
8548 S:      Supported
8549 F:      Documentation/networking/device_drivers/ethernet/google/gve.rst
8550 F:      drivers/net/ethernet/google
8551
8552 GPD POCKET FAN DRIVER
8553 M:      Hans de Goede <hdegoede@redhat.com>
8554 L:      platform-driver-x86@vger.kernel.org
8555 S:      Maintained
8556 F:      drivers/platform/x86/gpd-pocket-fan.c
8557
8558 GPIO ACPI SUPPORT
8559 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
8560 M:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
8561 L:      linux-gpio@vger.kernel.org
8562 L:      linux-acpi@vger.kernel.org
8563 S:      Supported
8564 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
8565 F:      Documentation/firmware-guide/acpi/gpio-properties.rst
8566 F:      drivers/gpio/gpiolib-acpi.c
8567 F:      drivers/gpio/gpiolib-acpi.h
8568
8569 GPIO AGGREGATOR
8570 M:      Geert Uytterhoeven <geert+renesas@glider.be>
8571 L:      linux-gpio@vger.kernel.org
8572 S:      Supported
8573 F:      Documentation/admin-guide/gpio/gpio-aggregator.rst
8574 F:      drivers/gpio/gpio-aggregator.c
8575
8576 GPIO IR Transmitter
8577 M:      Sean Young <sean@mess.org>
8578 L:      linux-media@vger.kernel.org
8579 S:      Maintained
8580 F:      drivers/media/rc/gpio-ir-tx.c
8581
8582 GPIO MOCKUP DRIVER
8583 M:      Bamvor Jian Zhang <bamv2005@gmail.com>
8584 L:      linux-gpio@vger.kernel.org
8585 S:      Maintained
8586 F:      drivers/gpio/gpio-mockup.c
8587 F:      tools/testing/selftests/gpio/
8588
8589 GPIO REGMAP
8590 R:      Michael Walle <michael@walle.cc>
8591 S:      Maintained
8592 F:      drivers/gpio/gpio-regmap.c
8593 F:      include/linux/gpio/regmap.h
8594
8595 GPIO SUBSYSTEM
8596 M:      Linus Walleij <linus.walleij@linaro.org>
8597 M:      Bartosz Golaszewski <brgl@bgdev.pl>
8598 L:      linux-gpio@vger.kernel.org
8599 S:      Maintained
8600 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux.git
8601 F:      Documentation/ABI/obsolete/sysfs-gpio
8602 F:      Documentation/ABI/testing/gpio-cdev
8603 F:      Documentation/admin-guide/gpio/
8604 F:      Documentation/devicetree/bindings/gpio/
8605 F:      Documentation/driver-api/gpio/
8606 F:      drivers/gpio/
8607 F:      include/asm-generic/gpio.h
8608 F:      include/dt-bindings/gpio/
8609 F:      include/linux/gpio.h
8610 F:      include/linux/gpio/
8611 F:      include/linux/of_gpio.h
8612 F:      include/uapi/linux/gpio.h
8613 F:      tools/gpio/
8614
8615 GRE DEMULTIPLEXER DRIVER
8616 M:      Dmitry Kozlov <xeb@mail.ru>
8617 L:      netdev@vger.kernel.org
8618 S:      Maintained
8619 F:      include/net/gre.h
8620 F:      net/ipv4/gre_demux.c
8621 F:      net/ipv4/gre_offload.c
8622
8623 GRETH 10/100/1G Ethernet MAC device driver
8624 M:      Andreas Larsson <andreas@gaisler.com>
8625 L:      netdev@vger.kernel.org
8626 S:      Maintained
8627 F:      drivers/net/ethernet/aeroflex/
8628
8629 GREYBUS AUDIO PROTOCOLS DRIVERS
8630 M:      Vaibhav Agarwal <vaibhav.sr@gmail.com>
8631 M:      Mark Greer <mgreer@animalcreek.com>
8632 S:      Maintained
8633 F:      drivers/staging/greybus/audio_apbridgea.c
8634 F:      drivers/staging/greybus/audio_apbridgea.h
8635 F:      drivers/staging/greybus/audio_codec.c
8636 F:      drivers/staging/greybus/audio_codec.h
8637 F:      drivers/staging/greybus/audio_gb.c
8638 F:      drivers/staging/greybus/audio_manager.c
8639 F:      drivers/staging/greybus/audio_manager.h
8640 F:      drivers/staging/greybus/audio_manager_module.c
8641 F:      drivers/staging/greybus/audio_manager_private.h
8642 F:      drivers/staging/greybus/audio_manager_sysfs.c
8643 F:      drivers/staging/greybus/audio_module.c
8644 F:      drivers/staging/greybus/audio_topology.c
8645
8646 GREYBUS FW/HID/SPI PROTOCOLS DRIVERS
8647 M:      Viresh Kumar <vireshk@kernel.org>
8648 S:      Maintained
8649 F:      drivers/staging/greybus/authentication.c
8650 F:      drivers/staging/greybus/bootrom.c
8651 F:      drivers/staging/greybus/firmware.h
8652 F:      drivers/staging/greybus/fw-core.c
8653 F:      drivers/staging/greybus/fw-download.c
8654 F:      drivers/staging/greybus/fw-management.c
8655 F:      drivers/staging/greybus/greybus_authentication.h
8656 F:      drivers/staging/greybus/greybus_firmware.h
8657 F:      drivers/staging/greybus/hid.c
8658 F:      drivers/staging/greybus/i2c.c
8659 F:      drivers/staging/greybus/spi.c
8660 F:      drivers/staging/greybus/spilib.c
8661 F:      drivers/staging/greybus/spilib.h
8662
8663 GREYBUS LOOPBACK DRIVER
8664 M:      Bryan O'Donoghue <pure.logic@nexus-software.ie>
8665 S:      Maintained
8666 F:      drivers/staging/greybus/loopback.c
8667
8668 GREYBUS PLATFORM DRIVERS
8669 M:      Vaibhav Hiremath <hvaibhav.linux@gmail.com>
8670 S:      Maintained
8671 F:      drivers/staging/greybus/arche-apb-ctrl.c
8672 F:      drivers/staging/greybus/arche-platform.c
8673 F:      drivers/staging/greybus/arche_platform.h
8674
8675 GREYBUS SDIO/GPIO/SPI PROTOCOLS DRIVERS
8676 M:      Rui Miguel Silva <rmfrfs@gmail.com>
8677 S:      Maintained
8678 F:      drivers/staging/greybus/gpio.c
8679 F:      drivers/staging/greybus/light.c
8680 F:      drivers/staging/greybus/power_supply.c
8681 F:      drivers/staging/greybus/sdio.c
8682 F:      drivers/staging/greybus/spi.c
8683 F:      drivers/staging/greybus/spilib.c
8684
8685 GREYBUS SUBSYSTEM
8686 M:      Johan Hovold <johan@kernel.org>
8687 M:      Alex Elder <elder@kernel.org>
8688 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
8689 L:      greybus-dev@lists.linaro.org (moderated for non-subscribers)
8690 S:      Maintained
8691 F:      drivers/greybus/
8692 F:      drivers/staging/greybus/
8693 F:      include/linux/greybus.h
8694 F:      include/linux/greybus/
8695
8696 GREYBUS UART PROTOCOLS DRIVERS
8697 M:      David Lin <dtwlin@gmail.com>
8698 S:      Maintained
8699 F:      drivers/staging/greybus/log.c
8700 F:      drivers/staging/greybus/uart.c
8701
8702 GS1662 VIDEO SERIALIZER
8703 M:      Charles-Antoine Couret <charles-antoine.couret@nexvision.fr>
8704 L:      linux-media@vger.kernel.org
8705 S:      Maintained
8706 T:      git git://linuxtv.org/media_tree.git
8707 F:      drivers/media/spi/gs1662.c
8708
8709 GSPCA FINEPIX SUBDRIVER
8710 M:      Frank Zago <frank@zago.net>
8711 L:      linux-media@vger.kernel.org
8712 S:      Maintained
8713 T:      git git://linuxtv.org/media_tree.git
8714 F:      drivers/media/usb/gspca/finepix.c
8715
8716 GSPCA GL860 SUBDRIVER
8717 M:      Olivier Lorin <o.lorin@laposte.net>
8718 L:      linux-media@vger.kernel.org
8719 S:      Maintained
8720 T:      git git://linuxtv.org/media_tree.git
8721 F:      drivers/media/usb/gspca/gl860/
8722
8723 GSPCA M5602 SUBDRIVER
8724 M:      Erik Andren <erik.andren@gmail.com>
8725 L:      linux-media@vger.kernel.org
8726 S:      Maintained
8727 T:      git git://linuxtv.org/media_tree.git
8728 F:      drivers/media/usb/gspca/m5602/
8729
8730 GSPCA PAC207 SONIXB SUBDRIVER
8731 M:      Hans Verkuil <hverkuil@xs4all.nl>
8732 L:      linux-media@vger.kernel.org
8733 S:      Odd Fixes
8734 T:      git git://linuxtv.org/media_tree.git
8735 F:      drivers/media/usb/gspca/pac207.c
8736
8737 GSPCA SN9C20X SUBDRIVER
8738 M:      Brian Johnson <brijohn@gmail.com>
8739 L:      linux-media@vger.kernel.org
8740 S:      Maintained
8741 T:      git git://linuxtv.org/media_tree.git
8742 F:      drivers/media/usb/gspca/sn9c20x.c
8743
8744 GSPCA T613 SUBDRIVER
8745 M:      Leandro Costantino <lcostantino@gmail.com>
8746 L:      linux-media@vger.kernel.org
8747 S:      Maintained
8748 T:      git git://linuxtv.org/media_tree.git
8749 F:      drivers/media/usb/gspca/t613.c
8750
8751 GSPCA USB WEBCAM DRIVER
8752 M:      Hans Verkuil <hverkuil@xs4all.nl>
8753 L:      linux-media@vger.kernel.org
8754 S:      Odd Fixes
8755 T:      git git://linuxtv.org/media_tree.git
8756 F:      drivers/media/usb/gspca/
8757
8758 GTP (GPRS Tunneling Protocol)
8759 M:      Pablo Neira Ayuso <pablo@netfilter.org>
8760 M:      Harald Welte <laforge@gnumonks.org>
8761 L:      osmocom-net-gprs@lists.osmocom.org
8762 S:      Maintained
8763 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/gtp.git
8764 F:      drivers/net/gtp.c
8765
8766 GUID PARTITION TABLE (GPT)
8767 M:      Davidlohr Bueso <dave@stgolabs.net>
8768 L:      linux-efi@vger.kernel.org
8769 S:      Maintained
8770 F:      block/partitions/efi.*
8771
8772 HABANALABS PCI DRIVER
8773 M:      Oded Gabbay <ogabbay@kernel.org>
8774 S:      Supported
8775 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/ogabbay/linux.git
8776 F:      Documentation/ABI/testing/debugfs-driver-habanalabs
8777 F:      Documentation/ABI/testing/sysfs-driver-habanalabs
8778 F:      drivers/misc/habanalabs/
8779 F:      include/uapi/misc/habanalabs.h
8780
8781 HACKRF MEDIA DRIVER
8782 M:      Antti Palosaari <crope@iki.fi>
8783 L:      linux-media@vger.kernel.org
8784 S:      Maintained
8785 W:      https://linuxtv.org
8786 W:      http://palosaari.fi/linux/
8787 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8788 T:      git git://linuxtv.org/anttip/media_tree.git
8789 F:      drivers/media/usb/hackrf/
8790
8791 HANTRO VPU CODEC DRIVER
8792 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
8793 M:      Philipp Zabel <p.zabel@pengutronix.de>
8794 L:      linux-media@vger.kernel.org
8795 L:      linux-rockchip@lists.infradead.org
8796 S:      Maintained
8797 F:      Documentation/devicetree/bindings/media/nxp,imx8mq-vpu.yaml
8798 F:      Documentation/devicetree/bindings/media/rockchip-vpu.yaml
8799 F:      drivers/staging/media/hantro/
8800
8801 HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
8802 M:      Frank Seidel <frank@f-seidel.de>
8803 L:      platform-driver-x86@vger.kernel.org
8804 S:      Maintained
8805 W:      http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
8806 F:      drivers/platform/x86/hdaps.c
8807
8808 HARDWARE MONITORING
8809 M:      Jean Delvare <jdelvare@suse.com>
8810 M:      Guenter Roeck <linux@roeck-us.net>
8811 L:      linux-hwmon@vger.kernel.org
8812 S:      Maintained
8813 W:      http://hwmon.wiki.kernel.org/
8814 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
8815 F:      Documentation/ABI/testing/sysfs-class-hwmon
8816 F:      Documentation/devicetree/bindings/hwmon/
8817 F:      Documentation/hwmon/
8818 F:      drivers/hwmon/
8819 F:      include/linux/hwmon*.h
8820 F:      include/trace/events/hwmon*.h
8821 K:      (devm_)?hwmon_device_(un)?register(|_with_groups|_with_info)
8822
8823 HARDWARE RANDOM NUMBER GENERATOR CORE
8824 M:      Matt Mackall <mpm@selenic.com>
8825 M:      Herbert Xu <herbert@gondor.apana.org.au>
8826 L:      linux-crypto@vger.kernel.org
8827 S:      Odd fixes
8828 F:      Documentation/admin-guide/hw_random.rst
8829 F:      Documentation/devicetree/bindings/rng/
8830 F:      drivers/char/hw_random/
8831 F:      include/linux/hw_random.h
8832
8833 HARDWARE SPINLOCK CORE
8834 M:      Ohad Ben-Cohen <ohad@wizery.com>
8835 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
8836 R:      Baolin Wang <baolin.wang7@gmail.com>
8837 L:      linux-remoteproc@vger.kernel.org
8838 S:      Maintained
8839 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git hwspinlock-next
8840 F:      Documentation/devicetree/bindings/hwlock/
8841 F:      Documentation/locking/hwspinlock.rst
8842 F:      drivers/hwspinlock/
8843 F:      include/linux/hwspinlock.h
8844
8845 HARDWARE TRACING FACILITIES
8846 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
8847 S:      Maintained
8848 F:      drivers/hwtracing/
8849
8850 HARMONY SOUND DRIVER
8851 L:      linux-parisc@vger.kernel.org
8852 S:      Maintained
8853 F:      sound/parisc/harmony.*
8854
8855 HDPVR USB VIDEO ENCODER DRIVER
8856 M:      Hans Verkuil <hverkuil@xs4all.nl>
8857 L:      linux-media@vger.kernel.org
8858 S:      Odd Fixes
8859 W:      https://linuxtv.org
8860 T:      git git://linuxtv.org/media_tree.git
8861 F:      drivers/media/usb/hdpvr/
8862
8863 HEWLETT PACKARD ENTERPRISE ILO CHIF DRIVER
8864 M:      Matt Hsiao <matt.hsiao@hpe.com>
8865 S:      Supported
8866 F:      drivers/misc/hpilo.[ch]
8867
8868 HEWLETT PACKARD ENTERPRISE ILO NMI WATCHDOG DRIVER
8869 M:      Jerry Hoemann <jerry.hoemann@hpe.com>
8870 S:      Supported
8871 F:      Documentation/watchdog/hpwdt.rst
8872 F:      drivers/watchdog/hpwdt.c
8873
8874 HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
8875 M:      Don Brace <don.brace@microchip.com>
8876 L:      storagedev@microchip.com
8877 L:      linux-scsi@vger.kernel.org
8878 S:      Supported
8879 F:      Documentation/scsi/hpsa.rst
8880 F:      drivers/scsi/hpsa*.[ch]
8881 F:      include/linux/cciss*.h
8882 F:      include/uapi/linux/cciss*.h
8883
8884 HFI1 DRIVER
8885 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
8886 L:      linux-rdma@vger.kernel.org
8887 S:      Supported
8888 F:      drivers/infiniband/hw/hfi1
8889
8890 HFS FILESYSTEM
8891 L:      linux-fsdevel@vger.kernel.org
8892 S:      Orphan
8893 F:      Documentation/filesystems/hfs.rst
8894 F:      fs/hfs/
8895
8896 HFSPLUS FILESYSTEM
8897 L:      linux-fsdevel@vger.kernel.org
8898 S:      Orphan
8899 F:      Documentation/filesystems/hfsplus.rst
8900 F:      fs/hfsplus/
8901
8902 HGA FRAMEBUFFER DRIVER
8903 M:      Ferenc Bakonyi <fero@drama.obuda.kando.hu>
8904 L:      linux-nvidia@lists.surfsouth.com
8905 S:      Maintained
8906 W:      http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
8907 F:      drivers/video/fbdev/hgafb.c
8908
8909 HIBERNATION (aka Software Suspend, aka swsusp)
8910 M:      "Rafael J. Wysocki" <rafael@kernel.org>
8911 M:      Pavel Machek <pavel@ucw.cz>
8912 L:      linux-pm@vger.kernel.org
8913 S:      Supported
8914 B:      https://bugzilla.kernel.org
8915 F:      arch/*/include/asm/suspend*.h
8916 F:      arch/x86/power/
8917 F:      drivers/base/power/
8918 F:      include/linux/freezer.h
8919 F:      include/linux/pm.h
8920 F:      include/linux/suspend.h
8921 F:      kernel/power/
8922
8923 HID CORE LAYER
8924 M:      Jiri Kosina <jikos@kernel.org>
8925 M:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
8926 L:      linux-input@vger.kernel.org
8927 S:      Maintained
8928 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
8929 F:      drivers/hid/
8930 F:      include/linux/hid*
8931 F:      include/uapi/linux/hid*
8932
8933 HID LOGITECH DRIVERS
8934 R:      Filipe Laíns <lains@riseup.net>
8935 L:      linux-input@vger.kernel.org
8936 S:      Maintained
8937 F:      drivers/hid/hid-logitech-*
8938
8939 HID PLAYSTATION DRIVER
8940 M:      Roderick Colenbrander <roderick.colenbrander@sony.com>
8941 L:      linux-input@vger.kernel.org
8942 S:      Supported
8943 F:      drivers/hid/hid-playstation.c
8944
8945 HID SENSOR HUB DRIVERS
8946 M:      Jiri Kosina <jikos@kernel.org>
8947 M:      Jonathan Cameron <jic23@kernel.org>
8948 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
8949 L:      linux-input@vger.kernel.org
8950 L:      linux-iio@vger.kernel.org
8951 S:      Maintained
8952 F:      Documentation/hid/hid-sensor*
8953 F:      drivers/hid/hid-sensor-*
8954 F:      drivers/iio/*/hid-*
8955 F:      include/linux/hid-sensor-*
8956
8957 HID WACOM DRIVER
8958 M:      Ping Cheng <ping.cheng@wacom.com>
8959 M:      Jason Gerecke  <jason.gerecke@wacom.com>
8960 L:      linux-input@vger.kernel.org
8961 S:      Maintained
8962 F:      drivers/hid/wacom.h
8963 F:      drivers/hid/wacom_*
8964
8965 HIGH-RESOLUTION TIMERS, CLOCKEVENTS
8966 M:      Thomas Gleixner <tglx@linutronix.de>
8967 L:      linux-kernel@vger.kernel.org
8968 S:      Maintained
8969 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
8970 F:      Documentation/timers/
8971 F:      include/linux/clockchips.h
8972 F:      include/linux/hrtimer.h
8973 F:      kernel/time/clockevents.c
8974 F:      kernel/time/hrtimer.c
8975 F:      kernel/time/timer_*.c
8976
8977 HIGH-SPEED SCC DRIVER FOR AX.25
8978 L:      linux-hams@vger.kernel.org
8979 S:      Orphan
8980 F:      drivers/net/hamradio/scc.c
8981
8982 HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
8983 M:      HighPoint Linux Team <linux@highpoint-tech.com>
8984 S:      Supported
8985 W:      http://www.highpoint-tech.com
8986 F:      Documentation/scsi/hptiop.rst
8987 F:      drivers/scsi/hptiop.c
8988
8989 HIPPI
8990 M:      Jes Sorensen <jes@trained-monkey.org>
8991 L:      linux-hippi@sunsite.dk
8992 S:      Maintained
8993 F:      drivers/net/hippi/
8994 F:      include/linux/hippidevice.h
8995 F:      include/uapi/linux/if_hippi.h
8996 F:      net/802/hippi.c
8997
8998 HIRSCHMANN HELLCREEK ETHERNET SWITCH DRIVER
8999 M:      Kurt Kanzenbach <kurt@linutronix.de>
9000 L:      netdev@vger.kernel.org
9001 S:      Maintained
9002 F:      Documentation/devicetree/bindings/net/dsa/hirschmann,hellcreek.yaml
9003 F:      drivers/net/dsa/hirschmann/*
9004 F:      include/linux/platform_data/hirschmann-hellcreek.h
9005 F:      net/dsa/tag_hellcreek.c
9006
9007 HISILICON DMA DRIVER
9008 M:      Zhou Wang <wangzhou1@hisilicon.com>
9009 L:      dmaengine@vger.kernel.org
9010 S:      Maintained
9011 F:      drivers/dma/hisi_dma.c
9012
9013 HISILICON GPIO DRIVER
9014 M:      Luo Jiaxing <luojiaxing@huawei.com>
9015 L:      linux-gpio@vger.kernel.org
9016 S:      Maintained
9017 F:      drivers/gpio/gpio-hisi.c
9018
9019 HISILICON HIGH PERFORMANCE RSA ENGINE DRIVER (HPRE)
9020 M:      Longfang Liu <liulongfang@huawei.com>
9021 L:      linux-crypto@vger.kernel.org
9022 S:      Maintained
9023 F:      Documentation/ABI/testing/debugfs-hisi-hpre
9024 F:      drivers/crypto/hisilicon/hpre/hpre.h
9025 F:      drivers/crypto/hisilicon/hpre/hpre_crypto.c
9026 F:      drivers/crypto/hisilicon/hpre/hpre_main.c
9027
9028 HISILICON I2C CONTROLLER DRIVER
9029 M:      Yicong Yang <yangyicong@hisilicon.com>
9030 L:      linux-i2c@vger.kernel.org
9031 S:      Maintained
9032 W:      https://www.hisilicon.com
9033 F:      drivers/i2c/busses/i2c-hisi.c
9034
9035 HISILICON LPC BUS DRIVER
9036 M:      john.garry@huawei.com
9037 S:      Maintained
9038 W:      http://www.hisilicon.com
9039 F:      Documentation/devicetree/bindings/arm/hisilicon/low-pin-count.yaml
9040 F:      drivers/bus/hisi_lpc.c
9041
9042 HISILICON NETWORK SUBSYSTEM 3 DRIVER (HNS3)
9043 M:      Yisen Zhuang <yisen.zhuang@huawei.com>
9044 M:      Salil Mehta <salil.mehta@huawei.com>
9045 L:      netdev@vger.kernel.org
9046 S:      Maintained
9047 W:      http://www.hisilicon.com
9048 F:      drivers/net/ethernet/hisilicon/hns3/
9049
9050 HISILICON NETWORK SUBSYSTEM DRIVER
9051 M:      Yisen Zhuang <yisen.zhuang@huawei.com>
9052 M:      Salil Mehta <salil.mehta@huawei.com>
9053 L:      netdev@vger.kernel.org
9054 S:      Maintained
9055 W:      http://www.hisilicon.com
9056 F:      Documentation/devicetree/bindings/net/hisilicon*.txt
9057 F:      drivers/net/ethernet/hisilicon/
9058
9059 HIKEY960 ONBOARD USB GPIO HUB DRIVER
9060 M:      John Stultz <jstultz@google.com>
9061 L:      linux-kernel@vger.kernel.org
9062 S:      Maintained
9063 F:      drivers/misc/hisi_hikey_usb.c
9064
9065 HISILICON PMU DRIVER
9066 M:      Shaokun Zhang <zhangshaokun@hisilicon.com>
9067 M:      Qi Liu <liuqi115@huawei.com>
9068 S:      Supported
9069 W:      http://www.hisilicon.com
9070 F:      Documentation/admin-guide/perf/hisi-pcie-pmu.rst
9071 F:      Documentation/admin-guide/perf/hisi-pmu.rst
9072 F:      drivers/perf/hisilicon
9073
9074 HISILICON HNS3 PMU DRIVER
9075 M:      Guangbin Huang <huangguangbin2@huawei.com>
9076 S:      Supported
9077 F:      Documentation/admin-guide/perf/hns3-pmu.rst
9078 F:      drivers/perf/hisilicon/hns3_pmu.c
9079
9080 HISILICON QM AND ZIP Controller DRIVER
9081 M:      Zhou Wang <wangzhou1@hisilicon.com>
9082 L:      linux-crypto@vger.kernel.org
9083 S:      Maintained
9084 F:      Documentation/ABI/testing/debugfs-hisi-zip
9085 F:      drivers/crypto/hisilicon/qm.c
9086 F:      drivers/crypto/hisilicon/sgl.c
9087 F:      drivers/crypto/hisilicon/zip/
9088 F:      include/linux/hisi_acc_qm.h
9089
9090 HISILICON ROCE DRIVER
9091 M:      Wenpeng Liang <liangwenpeng@huawei.com>
9092 M:      Weihang Li <liweihang@huawei.com>
9093 L:      linux-rdma@vger.kernel.org
9094 S:      Maintained
9095 F:      Documentation/devicetree/bindings/infiniband/hisilicon-hns-roce.txt
9096 F:      drivers/infiniband/hw/hns/
9097
9098 HISILICON SAS Controller
9099 M:      John Garry <john.garry@huawei.com>
9100 S:      Supported
9101 W:      http://www.hisilicon.com
9102 F:      Documentation/devicetree/bindings/scsi/hisilicon-sas.txt
9103 F:      drivers/scsi/hisi_sas/
9104
9105 HISILICON SECURITY ENGINE V2 DRIVER (SEC2)
9106 M:      Kai Ye <yekai13@huawei.com>
9107 M:      Longfang Liu <liulongfang@huawei.com>
9108 L:      linux-crypto@vger.kernel.org
9109 S:      Maintained
9110 F:      Documentation/ABI/testing/debugfs-hisi-sec
9111 F:      drivers/crypto/hisilicon/sec2/sec.h
9112 F:      drivers/crypto/hisilicon/sec2/sec_crypto.c
9113 F:      drivers/crypto/hisilicon/sec2/sec_crypto.h
9114 F:      drivers/crypto/hisilicon/sec2/sec_main.c
9115
9116 HISILICON SPI Controller DRIVER FOR KUNPENG SOCS
9117 M:      Jay Fang <f.fangjian@huawei.com>
9118 L:      linux-spi@vger.kernel.org
9119 S:      Maintained
9120 W:      http://www.hisilicon.com
9121 F:      drivers/spi/spi-hisi-kunpeng.c
9122
9123 HISILICON SPMI CONTROLLER DRIVER FOR HIKEY 970
9124 M:      Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
9125 L:      linux-kernel@vger.kernel.org
9126 S:      Maintained
9127 F:      Documentation/devicetree/bindings/spmi/hisilicon,hisi-spmi-controller.yaml
9128 F:      drivers/spmi/hisi-spmi-controller.c
9129
9130 HISILICON SPMI PMIC DRIVER FOR HIKEY 6421v600
9131 M:      Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
9132 L:      linux-kernel@vger.kernel.org
9133 S:      Maintained
9134 F:      Documentation/devicetree/bindings/mfd/hisilicon,hi6421-spmi-pmic.yaml
9135 F:      drivers/mfd/hi6421-spmi-pmic.c
9136
9137 HISILICON TRUE RANDOM NUMBER GENERATOR V2 SUPPORT
9138 M:      Weili Qian <qianweili@huawei.com>
9139 S:      Maintained
9140 F:      drivers/crypto/hisilicon/trng/trng.c
9141
9142 HISILICON V3XX SPI NOR FLASH Controller Driver
9143 M:      John Garry <john.garry@huawei.com>
9144 S:      Maintained
9145 W:      http://www.hisilicon.com
9146 F:      drivers/spi/spi-hisi-sfc-v3xx.c
9147
9148 HMM - Heterogeneous Memory Management
9149 M:      Jérôme Glisse <jglisse@redhat.com>
9150 L:      linux-mm@kvack.org
9151 S:      Maintained
9152 F:      Documentation/vm/hmm.rst
9153 F:      include/linux/hmm*
9154 F:      lib/test_hmm*
9155 F:      mm/hmm*
9156 F:      tools/testing/selftests/vm/*hmm*
9157
9158 HOST AP DRIVER
9159 M:      Jouni Malinen <j@w1.fi>
9160 L:      linux-wireless@vger.kernel.org
9161 S:      Obsolete
9162 W:      http://w1.fi/hostap-driver.html
9163 F:      drivers/net/wireless/intersil/hostap/
9164
9165 HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
9166 L:      platform-driver-x86@vger.kernel.org
9167 S:      Orphan
9168 F:      drivers/platform/x86/tc1100-wmi.c
9169
9170 HPET:   High Precision Event Timers driver
9171 M:      Clemens Ladisch <clemens@ladisch.de>
9172 S:      Maintained
9173 F:      Documentation/timers/hpet.rst
9174 F:      drivers/char/hpet.c
9175 F:      include/linux/hpet.h
9176 F:      include/uapi/linux/hpet.h
9177
9178 HPET:   x86
9179 S:      Orphan
9180 F:      arch/x86/include/asm/hpet.h
9181 F:      arch/x86/kernel/hpet.c
9182
9183 HPFS FILESYSTEM
9184 M:      Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
9185 S:      Maintained
9186 W:      http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
9187 F:      fs/hpfs/
9188
9189 HSI SUBSYSTEM
9190 M:      Sebastian Reichel <sre@kernel.org>
9191 S:      Maintained
9192 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git
9193 F:      Documentation/ABI/testing/sysfs-bus-hsi
9194 F:      Documentation/driver-api/hsi.rst
9195 F:      drivers/hsi/
9196 F:      include/linux/hsi/
9197 F:      include/uapi/linux/hsi/
9198
9199 HSO 3G MODEM DRIVER
9200 L:      linux-usb@vger.kernel.org
9201 S:      Orphan
9202 F:      drivers/net/usb/hso.c
9203
9204 HSR NETWORK PROTOCOL
9205 L:      netdev@vger.kernel.org
9206 S:      Orphan
9207 F:      net/hsr/
9208
9209 HT16K33 LED CONTROLLER DRIVER
9210 M:      Robin van der Gracht <robin@protonic.nl>
9211 S:      Maintained
9212 F:      Documentation/devicetree/bindings/auxdisplay/holtek,ht16k33.yaml
9213 F:      drivers/auxdisplay/ht16k33.c
9214
9215 HTCPEN TOUCHSCREEN DRIVER
9216 M:      Pau Oliva Fora <pof@eslack.org>
9217 L:      linux-input@vger.kernel.org
9218 S:      Maintained
9219 F:      drivers/input/touchscreen/htcpen.c
9220
9221 HTE SUBSYSTEM
9222 M:      Dipen Patel <dipenp@nvidia.com>
9223 S:      Maintained
9224 F:      Documentation/devicetree/bindings/timestamp/
9225 F:      Documentation/driver-api/hte/
9226 F:      drivers/hte/
9227 F:      include/linux/hte.h
9228
9229 HTS221 TEMPERATURE-HUMIDITY IIO DRIVER
9230 M:      Lorenzo Bianconi <lorenzo@kernel.org>
9231 L:      linux-iio@vger.kernel.org
9232 S:      Maintained
9233 W:      http://www.st.com/
9234 F:      Documentation/devicetree/bindings/iio/humidity/st,hts221.yaml
9235 F:      drivers/iio/humidity/hts221*
9236
9237 HUAWEI ETHERNET DRIVER
9238 L:      netdev@vger.kernel.org
9239 S:      Orphan
9240 F:      Documentation/networking/device_drivers/ethernet/huawei/hinic.rst
9241 F:      drivers/net/ethernet/huawei/hinic/
9242
9243 HUGETLB SUBSYSTEM
9244 M:      Mike Kravetz <mike.kravetz@oracle.com>
9245 M:      Muchun Song <songmuchun@bytedance.com>
9246 L:      linux-mm@kvack.org
9247 S:      Maintained
9248 F:      Documentation/ABI/testing/sysfs-kernel-mm-hugepages
9249 F:      Documentation/admin-guide/mm/hugetlbpage.rst
9250 F:      Documentation/vm/hugetlbfs_reserv.rst
9251 F:      Documentation/vm/vmemmap_dedup.rst
9252 F:      fs/hugetlbfs/
9253 F:      include/linux/hugetlb.h
9254 F:      mm/hugetlb.c
9255 F:      mm/hugetlb_vmemmap.c
9256 F:      mm/hugetlb_vmemmap.h
9257
9258 HVA ST MEDIA DRIVER
9259 M:      Jean-Christophe Trotin <jean-christophe.trotin@foss.st.com>
9260 L:      linux-media@vger.kernel.org
9261 S:      Supported
9262 W:      https://linuxtv.org
9263 T:      git git://linuxtv.org/media_tree.git
9264 F:      drivers/media/platform/st/sti/hva
9265
9266 HWPOISON MEMORY FAILURE HANDLING
9267 M:      Naoya Horiguchi <naoya.horiguchi@nec.com>
9268 R:      Miaohe Lin <linmiaohe@huawei.com>
9269 L:      linux-mm@kvack.org
9270 S:      Maintained
9271 F:      mm/hwpoison-inject.c
9272 F:      mm/memory-failure.c
9273
9274 HYCON HY46XX TOUCHSCREEN SUPPORT
9275 M:      Giulio Benetti <giulio.benetti@benettiengineering.com>
9276 L:      linux-input@vger.kernel.org
9277 S:      Maintained
9278 F:      Documentation/devicetree/bindings/input/touchscreen/hycon,hy46xx.yaml
9279 F:      drivers/input/touchscreen/hycon-hy46xx.c
9280
9281 HYGON PROCESSOR SUPPORT
9282 M:      Pu Wen <puwen@hygon.cn>
9283 L:      linux-kernel@vger.kernel.org
9284 S:      Maintained
9285 F:      arch/x86/kernel/cpu/hygon.c
9286
9287 HYNIX HI556 SENSOR DRIVER
9288 M:      Shawn Tu <shawnx.tu@intel.com>
9289 L:      linux-media@vger.kernel.org
9290 S:      Maintained
9291 T:      git git://linuxtv.org/media_tree.git
9292 F:      drivers/media/i2c/hi556.c
9293
9294 HYNIX HI846 SENSOR DRIVER
9295 M:      Martin Kepplinger <martin.kepplinger@puri.sm>
9296 L:      linux-media@vger.kernel.org
9297 S:      Maintained
9298 F:      drivers/media/i2c/hi846.c
9299
9300 HYNIX HI847 SENSOR DRIVER
9301 M:      Shawn Tu <shawnx.tu@intel.com>
9302 L:      linux-media@vger.kernel.org
9303 S:      Maintained
9304 F:      drivers/media/i2c/hi847.c
9305
9306 Hyper-V/Azure CORE AND DRIVERS
9307 M:      "K. Y. Srinivasan" <kys@microsoft.com>
9308 M:      Haiyang Zhang <haiyangz@microsoft.com>
9309 M:      Stephen Hemminger <sthemmin@microsoft.com>
9310 M:      Wei Liu <wei.liu@kernel.org>
9311 M:      Dexuan Cui <decui@microsoft.com>
9312 L:      linux-hyperv@vger.kernel.org
9313 S:      Supported
9314 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hyperv/linux.git
9315 F:      Documentation/ABI/stable/sysfs-bus-vmbus
9316 F:      Documentation/ABI/testing/debugfs-hyperv
9317 F:      Documentation/networking/device_drivers/ethernet/microsoft/netvsc.rst
9318 F:      arch/arm64/hyperv
9319 F:      arch/arm64/include/asm/hyperv-tlfs.h
9320 F:      arch/arm64/include/asm/mshyperv.h
9321 F:      arch/x86/hyperv
9322 F:      arch/x86/include/asm/hyperv-tlfs.h
9323 F:      arch/x86/include/asm/mshyperv.h
9324 F:      arch/x86/include/asm/trace/hyperv.h
9325 F:      arch/x86/kernel/cpu/mshyperv.c
9326 F:      drivers/clocksource/hyperv_timer.c
9327 F:      drivers/hid/hid-hyperv.c
9328 F:      drivers/hv/
9329 F:      drivers/input/serio/hyperv-keyboard.c
9330 F:      drivers/iommu/hyperv-iommu.c
9331 F:      drivers/net/ethernet/microsoft/
9332 F:      drivers/net/hyperv/
9333 F:      drivers/pci/controller/pci-hyperv-intf.c
9334 F:      drivers/pci/controller/pci-hyperv.c
9335 F:      drivers/scsi/storvsc_drv.c
9336 F:      drivers/uio/uio_hv_generic.c
9337 F:      drivers/video/fbdev/hyperv_fb.c
9338 F:      include/asm-generic/hyperv-tlfs.h
9339 F:      include/asm-generic/mshyperv.h
9340 F:      include/clocksource/hyperv_timer.h
9341 F:      include/linux/hyperv.h
9342 F:      include/uapi/linux/hyperv.h
9343 F:      net/vmw_vsock/hyperv_transport.c
9344 F:      tools/hv/
9345
9346 HYPERBUS SUPPORT
9347 M:      Vignesh Raghavendra <vigneshr@ti.com>
9348 L:      linux-mtd@lists.infradead.org
9349 S:      Supported
9350 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
9351 C:      irc://irc.oftc.net/mtd
9352 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git cfi/next
9353 F:      Documentation/devicetree/bindings/mtd/ti,am654-hbmc.yaml
9354 F:      drivers/mtd/hyperbus/
9355 F:      include/linux/mtd/hyperbus.h
9356
9357 HYPERVISOR VIRTUAL CONSOLE DRIVER
9358 L:      linuxppc-dev@lists.ozlabs.org
9359 S:      Odd Fixes
9360 F:      drivers/tty/hvc/
9361
9362 I2C ACPI SUPPORT
9363 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
9364 L:      linux-i2c@vger.kernel.org
9365 L:      linux-acpi@vger.kernel.org
9366 S:      Maintained
9367 F:      drivers/i2c/i2c-core-acpi.c
9368
9369 I2C CONTROLLER DRIVER FOR NVIDIA GPU
9370 M:      Ajay Gupta <ajayg@nvidia.com>
9371 L:      linux-i2c@vger.kernel.org
9372 S:      Maintained
9373 F:      Documentation/i2c/busses/i2c-nvidia-gpu.rst
9374 F:      drivers/i2c/busses/i2c-nvidia-gpu.c
9375
9376 I2C MUXES
9377 M:      Peter Rosin <peda@axentia.se>
9378 L:      linux-i2c@vger.kernel.org
9379 S:      Maintained
9380 F:      Documentation/devicetree/bindings/i2c/i2c-arb*
9381 F:      Documentation/devicetree/bindings/i2c/i2c-gate*
9382 F:      Documentation/devicetree/bindings/i2c/i2c-mux*
9383 F:      Documentation/i2c/i2c-topology.rst
9384 F:      Documentation/i2c/muxes/
9385 F:      drivers/i2c/i2c-mux.c
9386 F:      drivers/i2c/muxes/
9387 F:      include/linux/i2c-mux.h
9388
9389 I2C MV64XXX MARVELL AND ALLWINNER DRIVER
9390 M:      Gregory CLEMENT <gregory.clement@bootlin.com>
9391 L:      linux-i2c@vger.kernel.org
9392 S:      Maintained
9393 F:      Documentation/devicetree/bindings/i2c/marvell,mv64xxx-i2c.yaml
9394 F:      drivers/i2c/busses/i2c-mv64xxx.c
9395
9396 I2C OVER PARALLEL PORT
9397 M:      Jean Delvare <jdelvare@suse.com>
9398 L:      linux-i2c@vger.kernel.org
9399 S:      Maintained
9400 F:      Documentation/i2c/busses/i2c-parport.rst
9401 F:      drivers/i2c/busses/i2c-parport.c
9402
9403 I2C SUBSYSTEM
9404 M:      Wolfram Sang <wsa@kernel.org>
9405 L:      linux-i2c@vger.kernel.org
9406 S:      Maintained
9407 W:      https://i2c.wiki.kernel.org/
9408 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
9409 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
9410 F:      Documentation/devicetree/bindings/i2c/i2c.txt
9411 F:      Documentation/i2c/
9412 F:      drivers/i2c/*
9413 F:      include/dt-bindings/i2c/i2c.h
9414 F:      include/linux/i2c-dev.h
9415 F:      include/linux/i2c-smbus.h
9416 F:      include/linux/i2c.h
9417 F:      include/uapi/linux/i2c-*.h
9418 F:      include/uapi/linux/i2c.h
9419
9420 I2C SUBSYSTEM HOST DRIVERS
9421 L:      linux-i2c@vger.kernel.org
9422 S:      Odd Fixes
9423 W:      https://i2c.wiki.kernel.org/
9424 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
9425 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
9426 F:      Documentation/devicetree/bindings/i2c/
9427 F:      drivers/i2c/algos/
9428 F:      drivers/i2c/busses/
9429 F:      include/dt-bindings/i2c/
9430
9431 I2C-TAOS-EVM DRIVER
9432 M:      Jean Delvare <jdelvare@suse.com>
9433 L:      linux-i2c@vger.kernel.org
9434 S:      Maintained
9435 F:      Documentation/i2c/busses/i2c-taos-evm.rst
9436 F:      drivers/i2c/busses/i2c-taos-evm.c
9437
9438 I2C-TINY-USB DRIVER
9439 M:      Till Harbaum <till@harbaum.org>
9440 L:      linux-i2c@vger.kernel.org
9441 S:      Maintained
9442 W:      http://www.harbaum.org/till/i2c_tiny_usb
9443 F:      drivers/i2c/busses/i2c-tiny-usb.c
9444
9445 I2C/SMBUS CONTROLLER DRIVERS FOR PC
9446 M:      Jean Delvare <jdelvare@suse.com>
9447 L:      linux-i2c@vger.kernel.org
9448 S:      Maintained
9449 F:      Documentation/i2c/busses/i2c-ali1535.rst
9450 F:      Documentation/i2c/busses/i2c-ali1563.rst
9451 F:      Documentation/i2c/busses/i2c-ali15x3.rst
9452 F:      Documentation/i2c/busses/i2c-amd756.rst
9453 F:      Documentation/i2c/busses/i2c-amd8111.rst
9454 F:      Documentation/i2c/busses/i2c-i801.rst
9455 F:      Documentation/i2c/busses/i2c-nforce2.rst
9456 F:      Documentation/i2c/busses/i2c-piix4.rst
9457 F:      Documentation/i2c/busses/i2c-sis5595.rst
9458 F:      Documentation/i2c/busses/i2c-sis630.rst
9459 F:      Documentation/i2c/busses/i2c-sis96x.rst
9460 F:      Documentation/i2c/busses/i2c-via.rst
9461 F:      Documentation/i2c/busses/i2c-viapro.rst
9462 F:      drivers/i2c/busses/i2c-ali1535.c
9463 F:      drivers/i2c/busses/i2c-ali1563.c
9464 F:      drivers/i2c/busses/i2c-ali15x3.c
9465 F:      drivers/i2c/busses/i2c-amd756-s4882.c
9466 F:      drivers/i2c/busses/i2c-amd756.c
9467 F:      drivers/i2c/busses/i2c-amd8111.c
9468 F:      drivers/i2c/busses/i2c-i801.c
9469 F:      drivers/i2c/busses/i2c-isch.c
9470 F:      drivers/i2c/busses/i2c-nforce2-s4985.c
9471 F:      drivers/i2c/busses/i2c-nforce2.c
9472 F:      drivers/i2c/busses/i2c-piix4.c
9473 F:      drivers/i2c/busses/i2c-sis5595.c
9474 F:      drivers/i2c/busses/i2c-sis630.c
9475 F:      drivers/i2c/busses/i2c-sis96x.c
9476 F:      drivers/i2c/busses/i2c-via.c
9477 F:      drivers/i2c/busses/i2c-viapro.c
9478
9479 I2C/SMBUS INTEL CHT WHISKEY COVE PMIC DRIVER
9480 M:      Hans de Goede <hdegoede@redhat.com>
9481 L:      linux-i2c@vger.kernel.org
9482 S:      Maintained
9483 F:      drivers/i2c/busses/i2c-cht-wc.c
9484
9485 I2C/SMBUS ISMT DRIVER
9486 M:      Seth Heasley <seth.heasley@intel.com>
9487 M:      Neil Horman <nhorman@tuxdriver.com>
9488 L:      linux-i2c@vger.kernel.org
9489 F:      Documentation/i2c/busses/i2c-ismt.rst
9490 F:      drivers/i2c/busses/i2c-ismt.c
9491
9492 I2C/SMBUS STUB DRIVER
9493 M:      Jean Delvare <jdelvare@suse.com>
9494 L:      linux-i2c@vger.kernel.org
9495 S:      Maintained
9496 F:      drivers/i2c/i2c-stub.c
9497
9498 I3C DRIVER FOR CADENCE I3C MASTER IP
9499 M:      Przemysław Gaj <pgaj@cadence.com>
9500 S:      Maintained
9501 F:      Documentation/devicetree/bindings/i3c/cdns,i3c-master.yaml
9502 F:      drivers/i3c/master/i3c-master-cdns.c
9503
9504 I3C DRIVER FOR SYNOPSYS DESIGNWARE
9505 M:      Vitor Soares <vitor.soares@synopsys.com>
9506 S:      Maintained
9507 F:      Documentation/devicetree/bindings/i3c/snps,dw-i3c-master.yaml
9508 F:      drivers/i3c/master/dw*
9509
9510 I3C SUBSYSTEM
9511 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
9512 L:      linux-i3c@lists.infradead.org (moderated for non-subscribers)
9513 S:      Maintained
9514 C:      irc://chat.freenode.net/linux-i3c
9515 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/i3c/linux.git
9516 F:      Documentation/ABI/testing/sysfs-bus-i3c
9517 F:      Documentation/devicetree/bindings/i3c/
9518 F:      Documentation/driver-api/i3c
9519 F:      drivers/i3c/
9520 F:      include/linux/i3c/
9521
9522 IA64 (Itanium) PLATFORM
9523 L:      linux-ia64@vger.kernel.org
9524 S:      Orphan
9525 F:      Documentation/ia64/
9526 F:      arch/ia64/
9527
9528 IBM Power 842 compression accelerator
9529 M:      Haren Myneni <haren@us.ibm.com>
9530 S:      Supported
9531 F:      crypto/842.c
9532 F:      drivers/crypto/nx/Kconfig
9533 F:      drivers/crypto/nx/Makefile
9534 F:      drivers/crypto/nx/nx-842*
9535 F:      include/linux/sw842.h
9536 F:      lib/842/
9537
9538 IBM Power in-Nest Crypto Acceleration
9539 M:      Breno Leitão <leitao@debian.org>
9540 M:      Nayna Jain <nayna@linux.ibm.com>
9541 M:      Paulo Flabiano Smorigo <pfsmorigo@gmail.com>
9542 L:      linux-crypto@vger.kernel.org
9543 S:      Supported
9544 F:      drivers/crypto/nx/Kconfig
9545 F:      drivers/crypto/nx/Makefile
9546 F:      drivers/crypto/nx/nx-aes*
9547 F:      drivers/crypto/nx/nx-sha*
9548 F:      drivers/crypto/nx/nx.*
9549 F:      drivers/crypto/nx/nx_csbcpb.h
9550 F:      drivers/crypto/nx/nx_debugfs.c
9551
9552 IBM Power IO DLPAR Driver for RPA-compliant PPC64 platform
9553 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
9554 L:      linux-pci@vger.kernel.org
9555 L:      linuxppc-dev@lists.ozlabs.org
9556 S:      Supported
9557 F:      drivers/pci/hotplug/rpadlpar*
9558
9559 IBM Power Linux RAID adapter
9560 M:      Brian King <brking@us.ibm.com>
9561 S:      Supported
9562 F:      drivers/scsi/ipr.*
9563
9564 IBM Power PCI Hotplug Driver for RPA-compliant PPC64 platform
9565 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
9566 L:      linux-pci@vger.kernel.org
9567 L:      linuxppc-dev@lists.ozlabs.org
9568 S:      Supported
9569 F:      drivers/pci/hotplug/rpaphp*
9570
9571 IBM Power SRIOV Virtual NIC Device Driver
9572 M:      Dany Madden <drt@linux.ibm.com>
9573 R:      Thomas Falcon <tlfalcon@linux.ibm.com>
9574 L:      netdev@vger.kernel.org
9575 S:      Supported
9576 F:      drivers/net/ethernet/ibm/ibmvnic.*
9577
9578 IBM Power Virtual Accelerator Switchboard
9579 L:      linuxppc-dev@lists.ozlabs.org
9580 S:      Supported
9581 F:      arch/powerpc/include/asm/vas.h
9582 F:      arch/powerpc/platforms/powernv/copy-paste.h
9583 F:      arch/powerpc/platforms/powernv/vas*
9584
9585 IBM Power Virtual Ethernet Device Driver
9586 M:      Cristobal Forno <cforno12@linux.ibm.com>
9587 L:      netdev@vger.kernel.org
9588 S:      Supported
9589 F:      drivers/net/ethernet/ibm/ibmveth.*
9590
9591 IBM Power Virtual FC Device Drivers
9592 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
9593 L:      linux-scsi@vger.kernel.org
9594 S:      Supported
9595 F:      drivers/scsi/ibmvscsi/ibmvfc*
9596
9597 IBM Power Virtual Management Channel Driver
9598 M:      Brad Warrum <bwarrum@linux.ibm.com>
9599 M:      Ritu Agarwal <rituagar@linux.ibm.com>
9600 S:      Supported
9601 F:      drivers/misc/ibmvmc.*
9602
9603 IBM Power Virtual SCSI Device Drivers
9604 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
9605 L:      linux-scsi@vger.kernel.org
9606 S:      Supported
9607 F:      drivers/scsi/ibmvscsi/ibmvscsi*
9608 F:      include/scsi/viosrp.h
9609
9610 IBM Power Virtual SCSI Device Target Driver
9611 M:      Michael Cyr <mikecyr@linux.ibm.com>
9612 L:      linux-scsi@vger.kernel.org
9613 L:      target-devel@vger.kernel.org
9614 S:      Supported
9615 F:      drivers/scsi/ibmvscsi_tgt/
9616
9617 IBM Power VMX Cryptographic instructions
9618 M:      Breno Leitão <leitao@debian.org>
9619 M:      Nayna Jain <nayna@linux.ibm.com>
9620 M:      Paulo Flabiano Smorigo <pfsmorigo@gmail.com>
9621 L:      linux-crypto@vger.kernel.org
9622 S:      Supported
9623 F:      drivers/crypto/vmx/Kconfig
9624 F:      drivers/crypto/vmx/Makefile
9625 F:      drivers/crypto/vmx/aes*
9626 F:      drivers/crypto/vmx/ghash*
9627 F:      drivers/crypto/vmx/ppc-xlate.pl
9628 F:      drivers/crypto/vmx/vmx.c
9629
9630 IBM ServeRAID RAID DRIVER
9631 S:      Orphan
9632 F:      drivers/scsi/ips.*
9633
9634 ICH LPC AND GPIO DRIVER
9635 M:      Peter Tyser <ptyser@xes-inc.com>
9636 S:      Maintained
9637 F:      drivers/gpio/gpio-ich.c
9638 F:      drivers/mfd/lpc_ich.c
9639
9640 ICY I2C DRIVER
9641 M:      Max Staudt <max@enpas.org>
9642 L:      linux-i2c@vger.kernel.org
9643 S:      Maintained
9644 F:      drivers/i2c/busses/i2c-icy.c
9645
9646 IDEAPAD LAPTOP EXTRAS DRIVER
9647 M:      Ike Panhc <ike.pan@canonical.com>
9648 L:      platform-driver-x86@vger.kernel.org
9649 S:      Maintained
9650 W:      http://launchpad.net/ideapad-laptop
9651 F:      drivers/platform/x86/ideapad-laptop.c
9652
9653 IDEAPAD LAPTOP SLIDEBAR DRIVER
9654 M:      Andrey Moiseev <o2g.org.ru@gmail.com>
9655 L:      linux-input@vger.kernel.org
9656 S:      Maintained
9657 W:      https://github.com/o2genum/ideapad-slidebar
9658 F:      drivers/input/misc/ideapad_slidebar.c
9659
9660 IDMAPPED MOUNTS
9661 M:      Christian Brauner <brauner@kernel.org>
9662 M:      Seth Forshee <sforshee@kernel.org>
9663 L:      linux-fsdevel@vger.kernel.org
9664 S:      Maintained
9665 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brauner/linux.git
9666 F:      Documentation/filesystems/idmappings.rst
9667 F:      tools/testing/selftests/mount_setattr/
9668 F:      include/linux/mnt_idmapping.h
9669
9670 IDT VersaClock 5 CLOCK DRIVER
9671 M:      Luca Ceresoli <luca@lucaceresoli.net>
9672 S:      Maintained
9673 F:      Documentation/devicetree/bindings/clock/idt,versaclock5.yaml
9674 F:      drivers/clk/clk-versaclock5.c
9675
9676 IEEE 802.15.4 SUBSYSTEM
9677 M:      Alexander Aring <alex.aring@gmail.com>
9678 M:      Stefan Schmidt <stefan@datenfreihafen.org>
9679 L:      linux-wpan@vger.kernel.org
9680 S:      Maintained
9681 W:      https://linux-wpan.org/
9682 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan.git
9683 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan-next.git
9684 F:      Documentation/networking/ieee802154.rst
9685 F:      drivers/net/ieee802154/
9686 F:      include/linux/ieee802154.h
9687 F:      include/linux/nl802154.h
9688 F:      include/net/af_ieee802154.h
9689 F:      include/net/cfg802154.h
9690 F:      include/net/ieee802154_netdev.h
9691 F:      include/net/mac802154.h
9692 F:      include/net/nl802154.h
9693 F:      net/ieee802154/
9694 F:      net/mac802154/
9695
9696 IFE PROTOCOL
9697 M:      Yotam Gigi <yotam.gi@gmail.com>
9698 M:      Jamal Hadi Salim <jhs@mojatatu.com>
9699 F:      include/net/ife.h
9700 F:      include/uapi/linux/ife.h
9701 F:      net/ife
9702
9703 IGORPLUG-USB IR RECEIVER
9704 M:      Sean Young <sean@mess.org>
9705 L:      linux-media@vger.kernel.org
9706 S:      Maintained
9707 F:      drivers/media/rc/igorplugusb.c
9708
9709 IGUANAWORKS USB IR TRANSCEIVER
9710 M:      Sean Young <sean@mess.org>
9711 L:      linux-media@vger.kernel.org
9712 S:      Maintained
9713 F:      drivers/media/rc/iguanair.c
9714
9715 IIO DIGITAL POTENTIOMETER DAC
9716 M:      Peter Rosin <peda@axentia.se>
9717 L:      linux-iio@vger.kernel.org
9718 S:      Maintained
9719 F:      Documentation/ABI/testing/sysfs-bus-iio-dac-dpot-dac
9720 F:      Documentation/devicetree/bindings/iio/dac/dpot-dac.yaml
9721 F:      drivers/iio/dac/dpot-dac.c
9722
9723 IIO ENVELOPE DETECTOR
9724 M:      Peter Rosin <peda@axentia.se>
9725 L:      linux-iio@vger.kernel.org
9726 S:      Maintained
9727 F:      Documentation/ABI/testing/sysfs-bus-iio-adc-envelope-detector
9728 F:      Documentation/devicetree/bindings/iio/adc/envelope-detector.yaml
9729 F:      drivers/iio/adc/envelope-detector.c
9730
9731 IIO MULTIPLEXER
9732 M:      Peter Rosin <peda@axentia.se>
9733 L:      linux-iio@vger.kernel.org
9734 S:      Maintained
9735 F:      Documentation/devicetree/bindings/iio/multiplexer/io-channel-mux.yaml
9736 F:      drivers/iio/multiplexer/iio-mux.c
9737
9738 IIO SCMI BASED DRIVER
9739 M:      Jyoti Bhayana <jbhayana@google.com>
9740 L:      linux-iio@vger.kernel.org
9741 S:      Maintained
9742 F:      drivers/iio/common/scmi_sensors/scmi_iio.c
9743
9744 IIO SUBSYSTEM AND DRIVERS
9745 M:      Jonathan Cameron <jic23@kernel.org>
9746 R:      Lars-Peter Clausen <lars@metafoo.de>
9747 L:      linux-iio@vger.kernel.org
9748 S:      Maintained
9749 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
9750 F:      Documentation/ABI/testing/configfs-iio*
9751 F:      Documentation/ABI/testing/sysfs-bus-iio*
9752 F:      Documentation/devicetree/bindings/iio/
9753 F:      drivers/iio/
9754 F:      drivers/staging/iio/
9755 F:      include/linux/iio/
9756 F:      tools/iio/
9757
9758 IIO UNIT CONVERTER
9759 M:      Peter Rosin <peda@axentia.se>
9760 L:      linux-iio@vger.kernel.org
9761 S:      Maintained
9762 F:      Documentation/devicetree/bindings/iio/afe/current-sense-amplifier.yaml
9763 F:      Documentation/devicetree/bindings/iio/afe/current-sense-shunt.yaml
9764 F:      Documentation/devicetree/bindings/iio/afe/voltage-divider.yaml
9765 F:      drivers/iio/afe/iio-rescale.c
9766
9767 IKANOS/ADI EAGLE ADSL USB DRIVER
9768 M:      Matthieu Castet <castet.matthieu@free.fr>
9769 M:      Stanislaw Gruszka <stf_xl@wp.pl>
9770 S:      Maintained
9771 F:      drivers/usb/atm/ueagle-atm.c
9772
9773 IMAGIS TOUCHSCREEN DRIVER
9774 M:      Markuss Broks <markuss.broks@gmail.com>
9775 S:      Maintained
9776 F:      Documentation/devicetree/bindings/input/touchscreen/imagis,ist3038c.yaml
9777 F:      drivers/input/touchscreen/imagis.c
9778
9779 IMGTEC ASCII LCD DRIVER
9780 M:      Paul Burton <paulburton@kernel.org>
9781 S:      Maintained
9782 F:      Documentation/devicetree/bindings/auxdisplay/img,ascii-lcd.yaml
9783 F:      drivers/auxdisplay/img-ascii-lcd.c
9784
9785 IMGTEC IR DECODER DRIVER
9786 S:      Orphan
9787 F:      drivers/media/rc/img-ir/
9788
9789 IMON SOUNDGRAPH USB IR RECEIVER
9790 M:      Sean Young <sean@mess.org>
9791 L:      linux-media@vger.kernel.org
9792 S:      Maintained
9793 F:      drivers/media/rc/imon.c
9794 F:      drivers/media/rc/imon_raw.c
9795
9796 IMS TWINTURBO FRAMEBUFFER DRIVER
9797 L:      linux-fbdev@vger.kernel.org
9798 S:      Orphan
9799 F:      drivers/video/fbdev/imsttfb.c
9800
9801 INA209 HARDWARE MONITOR DRIVER
9802 M:      Guenter Roeck <linux@roeck-us.net>
9803 L:      linux-hwmon@vger.kernel.org
9804 S:      Maintained
9805 F:      Documentation/devicetree/bindings/hwmon/ti,ina2xx.yaml
9806 F:      Documentation/hwmon/ina209.rst
9807 F:      drivers/hwmon/ina209.c
9808
9809 INA2XX HARDWARE MONITOR DRIVER
9810 M:      Guenter Roeck <linux@roeck-us.net>
9811 L:      linux-hwmon@vger.kernel.org
9812 S:      Maintained
9813 F:      Documentation/hwmon/ina2xx.rst
9814 F:      drivers/hwmon/ina2xx.c
9815 F:      include/linux/platform_data/ina2xx.h
9816
9817 INDUSTRY PACK SUBSYSTEM (IPACK)
9818 M:      Samuel Iglesias Gonsalvez <siglesias@igalia.com>
9819 M:      Jens Taprogge <jens.taprogge@taprogge.org>
9820 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
9821 L:      industrypack-devel@lists.sourceforge.net
9822 S:      Maintained
9823 W:      http://industrypack.sourceforge.net
9824 F:      drivers/ipack/
9825
9826 INFINEON DPS310 Driver
9827 M:      Eddie James <eajames@linux.ibm.com>
9828 L:      linux-iio@vger.kernel.org
9829 S:      Maintained
9830 F:      drivers/iio/pressure/dps310.c
9831
9832 INFINIBAND SUBSYSTEM
9833 M:      Jason Gunthorpe <jgg@nvidia.com>
9834 M:      Leon Romanovsky <leonro@nvidia.com>
9835 L:      linux-rdma@vger.kernel.org
9836 S:      Supported
9837 W:      https://github.com/linux-rdma/rdma-core
9838 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
9839 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rdma/rdma.git
9840 F:      Documentation/devicetree/bindings/infiniband/
9841 F:      Documentation/infiniband/
9842 F:      drivers/infiniband/
9843 F:      include/rdma/
9844 F:      include/trace/events/ib_mad.h
9845 F:      include/trace/events/ib_umad.h
9846 F:      include/uapi/linux/if_infiniband.h
9847 F:      include/uapi/rdma/
9848 F:      samples/bpf/ibumad_kern.c
9849 F:      samples/bpf/ibumad_user.c
9850
9851 INGENIC JZ4780 NAND DRIVER
9852 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
9853 L:      linux-mtd@lists.infradead.org
9854 L:      linux-mips@vger.kernel.org
9855 S:      Maintained
9856 F:      drivers/mtd/nand/raw/ingenic/
9857
9858 INGENIC JZ47xx SoCs
9859 M:      Paul Cercueil <paul@crapouillou.net>
9860 L:      linux-mips@vger.kernel.org
9861 S:      Maintained
9862 F:      arch/mips/boot/dts/ingenic/
9863 F:      arch/mips/generic/board-ingenic.c
9864 F:      arch/mips/include/asm/mach-ingenic/
9865 F:      arch/mips/ingenic/Kconfig
9866 F:      drivers/clk/ingenic/
9867 F:      drivers/dma/dma-jz4780.c
9868 F:      drivers/gpu/drm/ingenic/
9869 F:      drivers/i2c/busses/i2c-jz4780.c
9870 F:      drivers/iio/adc/ingenic-adc.c
9871 F:      drivers/irqchip/irq-ingenic.c
9872 F:      drivers/memory/jz4780-nemc.c
9873 F:      drivers/mmc/host/jz4740_mmc.c
9874 F:      drivers/mtd/nand/raw/ingenic/
9875 F:      drivers/pinctrl/pinctrl-ingenic.c
9876 F:      drivers/power/supply/ingenic-battery.c
9877 F:      drivers/pwm/pwm-jz4740.c
9878 F:      drivers/remoteproc/ingenic_rproc.c
9879 F:      drivers/rtc/rtc-jz4740.c
9880 F:      drivers/tty/serial/8250/8250_ingenic.c
9881 F:      drivers/usb/musb/jz4740.c
9882 F:      drivers/watchdog/jz4740_wdt.c
9883 F:      include/dt-bindings/iio/adc/ingenic,adc.h
9884 F:      include/linux/mfd/ingenic-tcu.h
9885 F:      sound/soc/codecs/jz47*
9886 F:      sound/soc/jz4740/
9887
9888 INJOINIC IP5xxx POWER BANK IC DRIVER
9889 M:      Samuel Holland <samuel@sholland.org>
9890 S:      Maintained
9891 F:      drivers/power/supply/ip5xxx_power.c
9892
9893 INOTIFY
9894 M:      Jan Kara <jack@suse.cz>
9895 R:      Amir Goldstein <amir73il@gmail.com>
9896 L:      linux-fsdevel@vger.kernel.org
9897 S:      Maintained
9898 F:      Documentation/filesystems/inotify.rst
9899 F:      fs/notify/inotify/
9900 F:      include/linux/inotify.h
9901 F:      include/uapi/linux/inotify.h
9902
9903 INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
9904 M:      Dmitry Torokhov <dmitry.torokhov@gmail.com>
9905 L:      linux-input@vger.kernel.org
9906 S:      Maintained
9907 Q:      http://patchwork.kernel.org/project/linux-input/list/
9908 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
9909 F:      Documentation/devicetree/bindings/input/
9910 F:      Documentation/devicetree/bindings/serio/
9911 F:      Documentation/input/
9912 F:      drivers/input/
9913 F:      include/linux/input.h
9914 F:      include/linux/input/
9915 F:      include/uapi/linux/input-event-codes.h
9916 F:      include/uapi/linux/input.h
9917
9918 INPUT MULTITOUCH (MT) PROTOCOL
9919 M:      Henrik Rydberg <rydberg@bitmath.org>
9920 L:      linux-input@vger.kernel.org
9921 S:      Odd fixes
9922 F:      Documentation/input/multi-touch-protocol.rst
9923 F:      drivers/input/input-mt.c
9924 K:      \b(ABS|SYN)_MT_
9925
9926 INSIDE SECURE CRYPTO DRIVER
9927 M:      Antoine Tenart <atenart@kernel.org>
9928 L:      linux-crypto@vger.kernel.org
9929 S:      Maintained
9930 F:      drivers/crypto/inside-secure/
9931
9932 INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
9933 M:      Mimi Zohar <zohar@linux.ibm.com>
9934 M:      Dmitry Kasatkin <dmitry.kasatkin@gmail.com>
9935 L:      linux-integrity@vger.kernel.org
9936 S:      Supported
9937 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/zohar/linux-integrity.git
9938 F:      security/integrity/ima/
9939 F:      security/integrity/
9940
9941 INTEL 810/815 FRAMEBUFFER DRIVER
9942 M:      Antonino Daplas <adaplas@gmail.com>
9943 L:      linux-fbdev@vger.kernel.org
9944 S:      Maintained
9945 F:      drivers/video/fbdev/i810/
9946
9947 INTEL ASoC DRIVERS
9948 M:      Cezary Rojewski <cezary.rojewski@intel.com>
9949 M:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
9950 M:      Liam Girdwood <liam.r.girdwood@linux.intel.com>
9951 M:      Peter Ujfalusi <peter.ujfalusi@linux.intel.com>
9952 M:      Bard Liao <yung-chuan.liao@linux.intel.com>
9953 M:      Ranjani Sridharan <ranjani.sridharan@linux.intel.com>
9954 M:      Kai Vehmanen <kai.vehmanen@linux.intel.com>
9955 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
9956 S:      Supported
9957 F:      sound/soc/intel/
9958
9959 INTEL ATOMISP2 DUMMY / POWER-MANAGEMENT DRIVER
9960 M:      Hans de Goede <hdegoede@redhat.com>
9961 L:      platform-driver-x86@vger.kernel.org
9962 S:      Maintained
9963 F:      drivers/platform/x86/intel/atomisp2/pm.c
9964
9965 INTEL ATOMISP2 LED DRIVER
9966 M:      Hans de Goede <hdegoede@redhat.com>
9967 L:      platform-driver-x86@vger.kernel.org
9968 S:      Maintained
9969 F:      drivers/platform/x86/intel/atomisp2/led.c
9970
9971 INTEL BIOS SAR INT1092 DRIVER
9972 M:      Shravan Sudhakar <s.shravan@intel.com>
9973 M:      Intel Corporation <linuxwwan@intel.com>
9974 L:      platform-driver-x86@vger.kernel.org
9975 S:      Maintained
9976 F:      drivers/platform/x86/intel/int1092/
9977
9978 INTEL BROXTON PMC DRIVER
9979 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
9980 M:      Zha Qipeng <qipeng.zha@intel.com>
9981 S:      Maintained
9982 F:      drivers/mfd/intel_pmc_bxt.c
9983 F:      include/linux/mfd/intel_pmc_bxt.h
9984
9985 INTEL C600 SERIES SAS CONTROLLER DRIVER
9986 M:      Artur Paszkiewicz <artur.paszkiewicz@intel.com>
9987 L:      linux-scsi@vger.kernel.org
9988 S:      Supported
9989 T:      git git://git.code.sf.net/p/intel-sas/isci
9990 F:      drivers/scsi/isci/
9991
9992 INTEL CPU family model numbers
9993 M:      Tony Luck <tony.luck@intel.com>
9994 M:      x86@kernel.org
9995 L:      linux-kernel@vger.kernel.org
9996 S:      Supported
9997 F:      arch/x86/include/asm/intel-family.h
9998
9999 INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
10000 M:      Jani Nikula <jani.nikula@linux.intel.com>
10001 M:      Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
10002 M:      Rodrigo Vivi <rodrigo.vivi@intel.com>
10003 M:      Tvrtko Ursulin <tvrtko.ursulin@linux.intel.com>
10004 L:      intel-gfx@lists.freedesktop.org
10005 S:      Supported
10006 W:      https://01.org/linuxgraphics/
10007 Q:      http://patchwork.freedesktop.org/project/intel-gfx/
10008 B:      https://gitlab.freedesktop.org/drm/intel/-/wikis/How-to-file-i915-bugs
10009 C:      irc://irc.oftc.net/intel-gfx
10010 T:      git git://anongit.freedesktop.org/drm-intel
10011 F:      Documentation/gpu/i915.rst
10012 F:      drivers/gpu/drm/i915/
10013 F:      include/drm/i915*
10014 F:      include/uapi/drm/i915_drm.h
10015
10016 INTEL ETHERNET DRIVERS
10017 M:      Jesse Brandeburg <jesse.brandeburg@intel.com>
10018 M:      Tony Nguyen <anthony.l.nguyen@intel.com>
10019 L:      intel-wired-lan@lists.osuosl.org (moderated for non-subscribers)
10020 S:      Supported
10021 W:      http://www.intel.com/support/feedback.htm
10022 W:      http://e1000.sourceforge.net/
10023 Q:      http://patchwork.ozlabs.org/project/intel-wired-lan/list/
10024 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tnguy/net-queue.git
10025 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tnguy/next-queue.git
10026 F:      Documentation/networking/device_drivers/ethernet/intel/
10027 F:      drivers/net/ethernet/intel/
10028 F:      drivers/net/ethernet/intel/*/
10029 F:      include/linux/avf/virtchnl.h
10030 F:      include/linux/net/intel/iidc.h
10031
10032 INTEL ETHERNET PROTOCOL DRIVER FOR RDMA
10033 M:      Mustafa Ismail <mustafa.ismail@intel.com>
10034 M:      Shiraz Saleem <shiraz.saleem@intel.com>
10035 L:      linux-rdma@vger.kernel.org
10036 S:      Supported
10037 F:      drivers/infiniband/hw/irdma/
10038 F:      include/uapi/rdma/irdma-abi.h
10039
10040 INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
10041 M:      Maik Broemme <mbroemme@libmpq.org>
10042 L:      linux-fbdev@vger.kernel.org
10043 S:      Maintained
10044 F:      Documentation/fb/intelfb.rst
10045 F:      drivers/video/fbdev/intelfb/
10046
10047 INTEL GPIO DRIVERS
10048 M:      Andy Shevchenko <andy@kernel.org>
10049 L:      linux-gpio@vger.kernel.org
10050 S:      Supported
10051 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
10052 F:      drivers/gpio/gpio-ich.c
10053 F:      drivers/gpio/gpio-merrifield.c
10054 F:      drivers/gpio/gpio-ml-ioh.c
10055 F:      drivers/gpio/gpio-pch.c
10056 F:      drivers/gpio/gpio-sch.c
10057 F:      drivers/gpio/gpio-sodaville.c
10058
10059 INTEL GVT-g DRIVERS (Intel GPU Virtualization)
10060 M:      Zhenyu Wang <zhenyuw@linux.intel.com>
10061 M:      Zhi Wang <zhi.a.wang@intel.com>
10062 L:      intel-gvt-dev@lists.freedesktop.org
10063 L:      intel-gfx@lists.freedesktop.org
10064 S:      Supported
10065 W:      https://01.org/igvt-g
10066 T:      git https://github.com/intel/gvt-linux.git
10067 F:      drivers/gpu/drm/i915/gvt/
10068
10069 INTEL HID EVENT DRIVER
10070 M:      Alex Hung <alex.hung@canonical.com>
10071 L:      platform-driver-x86@vger.kernel.org
10072 S:      Maintained
10073 F:      drivers/platform/x86/intel/hid.c
10074
10075 INTEL I/OAT DMA DRIVER
10076 M:      Dave Jiang <dave.jiang@intel.com>
10077 R:      Dan Williams <dan.j.williams@intel.com>
10078 L:      dmaengine@vger.kernel.org
10079 S:      Supported
10080 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
10081 F:      drivers/dma/ioat*
10082
10083 INTEL IADX DRIVER
10084 M:      Dave Jiang <dave.jiang@intel.com>
10085 L:      dmaengine@vger.kernel.org
10086 S:      Supported
10087 F:      drivers/dma/idxd/*
10088 F:      include/uapi/linux/idxd.h
10089
10090 INTEL IDLE DRIVER
10091 M:      Jacob Pan <jacob.jun.pan@linux.intel.com>
10092 M:      Len Brown <lenb@kernel.org>
10093 L:      linux-pm@vger.kernel.org
10094 S:      Supported
10095 B:      https://bugzilla.kernel.org
10096 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
10097 F:      drivers/idle/intel_idle.c
10098
10099 INTEL IN FIELD SCAN (IFS) DEVICE
10100 M:      Jithu Joseph <jithu.joseph@intel.com>
10101 R:      Ashok Raj <ashok.raj@intel.com>
10102 R:      Tony Luck <tony.luck@intel.com>
10103 S:      Maintained
10104 F:      drivers/platform/x86/intel/ifs
10105 F:      include/trace/events/intel_ifs.h
10106
10107 INTEL INTEGRATED SENSOR HUB DRIVER
10108 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
10109 M:      Jiri Kosina <jikos@kernel.org>
10110 L:      linux-input@vger.kernel.org
10111 S:      Maintained
10112 F:      drivers/hid/intel-ish-hid/
10113
10114 INTEL IOMMU (VT-d)
10115 M:      David Woodhouse <dwmw2@infradead.org>
10116 M:      Lu Baolu <baolu.lu@linux.intel.com>
10117 L:      iommu@lists.linux.dev
10118 S:      Supported
10119 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
10120 F:      drivers/iommu/intel/
10121 F:      include/linux/intel-iommu.h
10122 F:      include/linux/intel-svm.h
10123
10124 INTEL IOP-ADMA DMA DRIVER
10125 R:      Dan Williams <dan.j.williams@intel.com>
10126 S:      Odd fixes
10127 F:      drivers/dma/iop-adma.c
10128
10129 INTEL IPU3 CSI-2 CIO2 DRIVER
10130 M:      Yong Zhi <yong.zhi@intel.com>
10131 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
10132 M:      Bingbu Cao <bingbu.cao@intel.com>
10133 M:      Dan Scally <djrscally@gmail.com>
10134 R:      Tianshu Qiu <tian.shu.qiu@intel.com>
10135 L:      linux-media@vger.kernel.org
10136 S:      Maintained
10137 T:      git git://linuxtv.org/media_tree.git
10138 F:      Documentation/userspace-api/media/v4l/pixfmt-srggb10-ipu3.rst
10139 F:      drivers/media/pci/intel/ipu3/
10140
10141 INTEL IPU3 CSI-2 IMGU DRIVER
10142 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
10143 R:      Bingbu Cao <bingbu.cao@intel.com>
10144 R:      Tianshu Qiu <tian.shu.qiu@intel.com>
10145 L:      linux-media@vger.kernel.org
10146 S:      Maintained
10147 F:      Documentation/admin-guide/media/ipu3.rst
10148 F:      Documentation/admin-guide/media/ipu3_rcb.svg
10149 F:      Documentation/userspace-api/media/v4l/pixfmt-meta-intel-ipu3.rst
10150 F:      drivers/staging/media/ipu3/
10151
10152 INTEL IXP4XX CRYPTO SUPPORT
10153 M:      Corentin Labbe <clabbe@baylibre.com>
10154 L:      linux-crypto@vger.kernel.org
10155 S:      Maintained
10156 F:      drivers/crypto/ixp4xx_crypto.c
10157
10158 INTEL ISHTP ECLITE DRIVER
10159 M:      Sumesh K Naduvalath <sumesh.k.naduvalath@intel.com>
10160 L:      platform-driver-x86@vger.kernel.org
10161 S:      Supported
10162 F:      drivers/platform/x86/intel/ishtp_eclite.c
10163
10164 INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
10165 M:      Krzysztof Halasa <khalasa@piap.pl>
10166 S:      Maintained
10167 F:      drivers/net/ethernet/xscale/ixp4xx_eth.c
10168 F:      drivers/net/wan/ixp4xx_hss.c
10169 F:      drivers/soc/ixp4xx/ixp4xx-npe.c
10170 F:      drivers/soc/ixp4xx/ixp4xx-qmgr.c
10171 F:      include/linux/soc/ixp4xx/npe.h
10172 F:      include/linux/soc/ixp4xx/qmgr.h
10173
10174 INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
10175 M:      Deepak Saxena <dsaxena@plexity.net>
10176 S:      Maintained
10177 F:      Documentation/devicetree/bindings/rng/intel,ixp46x-rng.yaml
10178 F:      drivers/char/hw_random/ixp4xx-rng.c
10179
10180 INTEL KEEM BAY DRM DRIVER
10181 M:      Anitha Chrisanthus <anitha.chrisanthus@intel.com>
10182 M:      Edmund Dea <edmund.j.dea@intel.com>
10183 S:      Maintained
10184 F:      Documentation/devicetree/bindings/display/intel,keembay-display.yaml
10185 F:      drivers/gpu/drm/kmb/
10186
10187 INTEL KEEM BAY OCS AES/SM4 CRYPTO DRIVER
10188 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
10189 S:      Maintained
10190 F:      Documentation/devicetree/bindings/crypto/intel,keembay-ocs-aes.yaml
10191 F:      drivers/crypto/keembay/Kconfig
10192 F:      drivers/crypto/keembay/Makefile
10193 F:      drivers/crypto/keembay/keembay-ocs-aes-core.c
10194 F:      drivers/crypto/keembay/ocs-aes.c
10195 F:      drivers/crypto/keembay/ocs-aes.h
10196
10197 INTEL KEEM BAY OCS ECC CRYPTO DRIVER
10198 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
10199 M:      Prabhjot Khurana <prabhjot.khurana@intel.com>
10200 M:      Mark Gross <mgross@linux.intel.com>
10201 S:      Maintained
10202 F:      Documentation/devicetree/bindings/crypto/intel,keembay-ocs-ecc.yaml
10203 F:      drivers/crypto/keembay/Kconfig
10204 F:      drivers/crypto/keembay/Makefile
10205 F:      drivers/crypto/keembay/keembay-ocs-ecc.c
10206
10207 INTEL KEEM BAY OCS HCU CRYPTO DRIVER
10208 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
10209 M:      Declan Murphy <declan.murphy@intel.com>
10210 S:      Maintained
10211 F:      Documentation/devicetree/bindings/crypto/intel,keembay-ocs-hcu.yaml
10212 F:      drivers/crypto/keembay/Kconfig
10213 F:      drivers/crypto/keembay/Makefile
10214 F:      drivers/crypto/keembay/keembay-ocs-hcu-core.c
10215 F:      drivers/crypto/keembay/ocs-hcu.c
10216 F:      drivers/crypto/keembay/ocs-hcu.h
10217
10218 INTEL THUNDER BAY EMMC PHY DRIVER
10219 M:      Nandhini Srikandan <nandhini.srikandan@intel.com>
10220 M:      Rashmi A <rashmi.a@intel.com>
10221 S:      Maintained
10222 F:      Documentation/devicetree/bindings/phy/intel,phy-thunderbay-emmc.yaml
10223 F:      drivers/phy/intel/phy-intel-thunderbay-emmc.c
10224
10225 INTEL MANAGEMENT ENGINE (mei)
10226 M:      Tomas Winkler <tomas.winkler@intel.com>
10227 L:      linux-kernel@vger.kernel.org
10228 S:      Supported
10229 F:      Documentation/driver-api/mei/*
10230 F:      drivers/misc/mei/
10231 F:      drivers/watchdog/mei_wdt.c
10232 F:      include/linux/mei_aux.h
10233 F:      include/linux/mei_cl_bus.h
10234 F:      include/uapi/linux/mei.h
10235 F:      samples/mei/*
10236
10237 INTEL MAX 10 BMC MFD DRIVER
10238 M:      Xu Yilun <yilun.xu@intel.com>
10239 R:      Tom Rix <trix@redhat.com>
10240 S:      Maintained
10241 F:      Documentation/ABI/testing/sysfs-driver-intel-m10-bmc
10242 F:      Documentation/hwmon/intel-m10-bmc-hwmon.rst
10243 F:      drivers/hwmon/intel-m10-bmc-hwmon.c
10244 F:      drivers/mfd/intel-m10-bmc.c
10245 F:      include/linux/mfd/intel-m10-bmc.h
10246
10247 INTEL MENLOW THERMAL DRIVER
10248 M:      Sujith Thomas <sujith.thomas@intel.com>
10249 L:      linux-pm@vger.kernel.org
10250 S:      Supported
10251 W:      https://01.org/linux-acpi
10252 F:      drivers/thermal/intel/intel_menlow.c
10253
10254 INTEL P-Unit IPC DRIVER
10255 M:      Zha Qipeng <qipeng.zha@intel.com>
10256 L:      platform-driver-x86@vger.kernel.org
10257 S:      Maintained
10258 F:      arch/x86/include/asm/intel_punit_ipc.h
10259 F:      drivers/platform/x86/intel/punit_ipc.c
10260
10261 INTEL PMC CORE DRIVER
10262 M:      Rajneesh Bhardwaj <irenic.rajneesh@gmail.com>
10263 M:      David E Box <david.e.box@intel.com>
10264 L:      platform-driver-x86@vger.kernel.org
10265 S:      Maintained
10266 F:      Documentation/ABI/testing/sysfs-platform-intel-pmc
10267 F:      drivers/platform/x86/intel/pmc/
10268
10269 INTEL PMIC GPIO DRIVERS
10270 M:      Andy Shevchenko <andy@kernel.org>
10271 S:      Supported
10272 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
10273 F:      drivers/gpio/gpio-*cove.c
10274
10275 INTEL PMIC MULTIFUNCTION DEVICE DRIVERS
10276 M:      Andy Shevchenko <andy@kernel.org>
10277 S:      Maintained
10278 F:      drivers/mfd/intel_soc_pmic*
10279 F:      include/linux/mfd/intel_soc_pmic*
10280
10281 INTEL PMT DRIVERS
10282 M:      David E. Box <david.e.box@linux.intel.com>
10283 S:      Supported
10284 F:      drivers/platform/x86/intel/pmt/
10285
10286 INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
10287 M:      Stanislav Yakovlev <stas.yakovlev@gmail.com>
10288 L:      linux-wireless@vger.kernel.org
10289 S:      Maintained
10290 F:      Documentation/networking/device_drivers/wifi/intel/ipw2100.rst
10291 F:      Documentation/networking/device_drivers/wifi/intel/ipw2200.rst
10292 F:      drivers/net/wireless/intel/ipw2x00/
10293
10294 INTEL PSTATE DRIVER
10295 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
10296 M:      Len Brown <lenb@kernel.org>
10297 L:      linux-pm@vger.kernel.org
10298 S:      Supported
10299 F:      drivers/cpufreq/intel_pstate.c
10300
10301 INTEL QUADRATURE ENCODER PERIPHERAL DRIVER
10302 M:      Jarkko Nikula <jarkko.nikula@linux.intel.com>
10303 L:      linux-iio@vger.kernel.org
10304 F:      drivers/counter/intel-qep.c
10305
10306 INTEL SCU DRIVERS
10307 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
10308 S:      Maintained
10309 F:      arch/x86/include/asm/intel_scu_ipc.h
10310 F:      drivers/platform/x86/intel_scu_*
10311
10312 INTEL SDSI DRIVER
10313 M:      David E. Box <david.e.box@linux.intel.com>
10314 S:      Supported
10315 F:      drivers/platform/x86/intel/sdsi.c
10316 F:      tools/arch/x86/intel_sdsi/
10317 F:      tools/testing/selftests/drivers/sdsi/
10318
10319 INTEL SKYLAKE INT3472 ACPI DEVICE DRIVER
10320 M:      Daniel Scally <djrscally@gmail.com>
10321 S:      Maintained
10322 F:      drivers/platform/x86/intel/int3472/
10323
10324 INTEL SPEED SELECT TECHNOLOGY
10325 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
10326 L:      platform-driver-x86@vger.kernel.org
10327 S:      Maintained
10328 F:      drivers/platform/x86/intel/speed_select_if/
10329 F:      include/uapi/linux/isst_if.h
10330 F:      tools/power/x86/intel-speed-select/
10331
10332 INTEL STRATIX10 FIRMWARE DRIVERS
10333 M:      Dinh Nguyen <dinguyen@kernel.org>
10334 L:      linux-kernel@vger.kernel.org
10335 S:      Maintained
10336 F:      Documentation/ABI/testing/sysfs-devices-platform-stratix10-rsu
10337 F:      Documentation/devicetree/bindings/firmware/intel,stratix10-svc.txt
10338 F:      drivers/firmware/stratix10-rsu.c
10339 F:      drivers/firmware/stratix10-svc.c
10340 F:      include/linux/firmware/intel/stratix10-smc.h
10341 F:      include/linux/firmware/intel/stratix10-svc-client.h
10342 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
10343
10344 INTEL TELEMETRY DRIVER
10345 M:      Rajneesh Bhardwaj <irenic.rajneesh@gmail.com>
10346 M:      "David E. Box" <david.e.box@linux.intel.com>
10347 L:      platform-driver-x86@vger.kernel.org
10348 S:      Maintained
10349 F:      arch/x86/include/asm/intel_telemetry.h
10350 F:      drivers/platform/x86/intel/telemetry/
10351
10352 INTEL UNCORE FREQUENCY CONTROL
10353 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
10354 L:      platform-driver-x86@vger.kernel.org
10355 S:      Maintained
10356 F:      Documentation/admin-guide/pm/intel_uncore_frequency_scaling.rst
10357 F:      drivers/platform/x86/intel/uncore-frequency/
10358
10359 INTEL VENDOR SPECIFIC EXTENDED CAPABILITIES DRIVER
10360 M:      David E. Box <david.e.box@linux.intel.com>
10361 S:      Supported
10362 F:      drivers/platform/x86/intel/vsec.*
10363
10364 INTEL VIRTUAL BUTTON DRIVER
10365 M:      AceLan Kao <acelan.kao@canonical.com>
10366 L:      platform-driver-x86@vger.kernel.org
10367 S:      Maintained
10368 F:      drivers/platform/x86/intel/vbtn.c
10369
10370 INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
10371 M:      Stanislaw Gruszka <stf_xl@wp.pl>
10372 L:      linux-wireless@vger.kernel.org
10373 S:      Supported
10374 F:      drivers/net/wireless/intel/iwlegacy/
10375
10376 INTEL WIRELESS WIFI LINK (iwlwifi)
10377 M:      Gregory Greenman <gregory.greenman@intel.com>
10378 L:      linux-wireless@vger.kernel.org
10379 S:      Supported
10380 W:      https://wireless.wiki.kernel.org/en/users/drivers/iwlwifi
10381 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
10382 F:      drivers/net/wireless/intel/iwlwifi/
10383
10384 INTEL WMI SLIM BOOTLOADER (SBL) FIRMWARE UPDATE DRIVER
10385 M:      Jithu Joseph <jithu.joseph@intel.com>
10386 R:      Maurice Ma <maurice.ma@intel.com>
10387 S:      Maintained
10388 W:      https://slimbootloader.github.io/security/firmware-update.html
10389 F:      drivers/platform/x86/intel/wmi/sbl-fw-update.c
10390
10391 INTEL WMI THUNDERBOLT FORCE POWER DRIVER
10392 L:      Dell.Client.Kernel@dell.com
10393 S:      Maintained
10394 F:      drivers/platform/x86/intel/wmi/thunderbolt.c
10395
10396 INTEL WWAN IOSM DRIVER
10397 M:      M Chetan Kumar <m.chetan.kumar@intel.com>
10398 M:      Intel Corporation <linuxwwan@intel.com>
10399 L:      netdev@vger.kernel.org
10400 S:      Maintained
10401 F:      drivers/net/wwan/iosm/
10402
10403 INTEL(R) TRACE HUB
10404 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
10405 S:      Supported
10406 F:      Documentation/trace/intel_th.rst
10407 F:      drivers/hwtracing/intel_th/
10408 F:      include/linux/intel_th.h
10409
10410 INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
10411 M:      Ning Sun <ning.sun@intel.com>
10412 L:      tboot-devel@lists.sourceforge.net
10413 S:      Supported
10414 W:      http://tboot.sourceforge.net
10415 T:      hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
10416 F:      Documentation/x86/intel_txt.rst
10417 F:      arch/x86/kernel/tboot.c
10418 F:      include/linux/tboot.h
10419
10420 INTEL SGX
10421 M:      Jarkko Sakkinen <jarkko@kernel.org>
10422 R:      Dave Hansen <dave.hansen@linux.intel.com>
10423 L:      linux-sgx@vger.kernel.org
10424 S:      Supported
10425 Q:      https://patchwork.kernel.org/project/intel-sgx/list/
10426 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/sgx
10427 F:      Documentation/x86/sgx.rst
10428 F:      arch/x86/entry/vdso/vsgx.S
10429 F:      arch/x86/include/asm/sgx.h
10430 F:      arch/x86/include/uapi/asm/sgx.h
10431 F:      arch/x86/kernel/cpu/sgx/*
10432 F:      tools/testing/selftests/sgx/*
10433 K:      \bSGX_
10434
10435 INTERCONNECT API
10436 M:      Georgi Djakov <djakov@kernel.org>
10437 L:      linux-pm@vger.kernel.org
10438 S:      Maintained
10439 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/djakov/icc.git
10440 F:      Documentation/devicetree/bindings/interconnect/
10441 F:      Documentation/driver-api/interconnect.rst
10442 F:      drivers/interconnect/
10443 F:      include/dt-bindings/interconnect/
10444 F:      include/linux/interconnect-provider.h
10445 F:      include/linux/interconnect.h
10446
10447 INTERRUPT COUNTER DRIVER
10448 M:      Oleksij Rempel <o.rempel@pengutronix.de>
10449 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
10450 L:      linux-iio@vger.kernel.org
10451 F:      Documentation/devicetree/bindings/counter/interrupt-counter.yaml
10452 F:      drivers/counter/interrupt-cnt.c
10453
10454 INTERSIL ISL7998X VIDEO DECODER DRIVER
10455 M:      Michael Tretter <m.tretter@pengutronix.de>
10456 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
10457 L:      linux-media@vger.kernel.org
10458 S:      Maintained
10459 F:      Documentation/devicetree/bindings/media/i2c/isil,isl79987.yaml
10460 F:      drivers/media/i2c/isl7998x.c
10461
10462 INVENSENSE ICM-426xx IMU DRIVER
10463 M:      Jean-Baptiste Maneyrol <jmaneyrol@invensense.com>
10464 L:      linux-iio@vger.kernel.org
10465 S:      Maintained
10466 W:      https://invensense.tdk.com/
10467 F:      Documentation/devicetree/bindings/iio/imu/invensense,icm42600.yaml
10468 F:      drivers/iio/imu/inv_icm42600/
10469
10470 INVENSENSE MPU-3050 GYROSCOPE DRIVER
10471 M:      Linus Walleij <linus.walleij@linaro.org>
10472 L:      linux-iio@vger.kernel.org
10473 S:      Maintained
10474 F:      Documentation/devicetree/bindings/iio/gyroscope/invensense,mpu3050.yaml
10475 F:      drivers/iio/gyro/mpu3050*
10476
10477 IOC3 ETHERNET DRIVER
10478 M:      Ralf Baechle <ralf@linux-mips.org>
10479 L:      linux-mips@vger.kernel.org
10480 S:      Maintained
10481 F:      drivers/net/ethernet/sgi/ioc3-eth.c
10482
10483 IOMAP FILESYSTEM LIBRARY
10484 M:      Christoph Hellwig <hch@infradead.org>
10485 M:      Darrick J. Wong <djwong@kernel.org>
10486 L:      linux-xfs@vger.kernel.org
10487 L:      linux-fsdevel@vger.kernel.org
10488 S:      Supported
10489 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
10490 F:      fs/iomap/
10491 F:      include/linux/iomap.h
10492
10493 IOMMU DRIVERS
10494 M:      Joerg Roedel <joro@8bytes.org>
10495 M:      Will Deacon <will@kernel.org>
10496 L:      iommu@lists.linux.dev
10497 S:      Maintained
10498 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
10499 F:      Documentation/devicetree/bindings/iommu/
10500 F:      Documentation/userspace-api/iommu.rst
10501 F:      drivers/iommu/
10502 F:      include/linux/iommu.h
10503 F:      include/linux/iova.h
10504 F:      include/linux/of_iommu.h
10505 F:      include/uapi/linux/iommu.h
10506
10507 IOSYS-MAP HELPERS
10508 M:      Thomas Zimmermann <tzimmermann@suse.de>
10509 L:      dri-devel@lists.freedesktop.org
10510 S:      Maintained
10511 T:      git git://anongit.freedesktop.org/drm/drm-misc
10512 F:      include/linux/iosys-map.h
10513
10514 IO_URING
10515 M:      Jens Axboe <axboe@kernel.dk>
10516 R:      Pavel Begunkov <asml.silence@gmail.com>
10517 L:      io-uring@vger.kernel.org
10518 S:      Maintained
10519 T:      git git://git.kernel.dk/linux-block
10520 T:      git git://git.kernel.dk/liburing
10521 F:      io_uring/
10522 F:      include/linux/io_uring.h
10523 F:      include/uapi/linux/io_uring.h
10524 F:      tools/io_uring/
10525
10526 IPMI SUBSYSTEM
10527 M:      Corey Minyard <minyard@acm.org>
10528 L:      openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
10529 S:      Supported
10530 W:      http://openipmi.sourceforge.net/
10531 T:      git https://github.com/cminyard/linux-ipmi.git for-next
10532 F:      Documentation/driver-api/ipmi.rst
10533 F:      Documentation/devicetree/bindings/ipmi/
10534 F:      drivers/char/ipmi/
10535 F:      include/linux/ipmi*
10536 F:      include/uapi/linux/ipmi*
10537
10538 IPS SCSI RAID DRIVER
10539 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
10540 L:      linux-scsi@vger.kernel.org
10541 S:      Maintained
10542 W:      http://www.adaptec.com/
10543 F:      drivers/scsi/ips*
10544
10545 IPVS
10546 M:      Simon Horman <horms@verge.net.au>
10547 M:      Julian Anastasov <ja@ssi.bg>
10548 L:      netdev@vger.kernel.org
10549 L:      lvs-devel@vger.kernel.org
10550 S:      Maintained
10551 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs-next.git
10552 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs.git
10553 F:      Documentation/networking/ipvs-sysctl.rst
10554 F:      include/net/ip_vs.h
10555 F:      include/uapi/linux/ip_vs.h
10556 F:      net/netfilter/ipvs/
10557
10558 IPWIRELESS DRIVER
10559 M:      Jiri Kosina <jikos@kernel.org>
10560 M:      David Sterba <dsterba@suse.com>
10561 S:      Odd Fixes
10562 F:      drivers/tty/ipwireless/
10563
10564 IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
10565 M:      Marc Zyngier <maz@kernel.org>
10566 S:      Maintained
10567 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
10568 F:      Documentation/core-api/irq/irq-domain.rst
10569 F:      include/linux/irqdomain.h
10570 F:      kernel/irq/irqdomain.c
10571 F:      kernel/irq/msi.c
10572
10573 IRQ SUBSYSTEM
10574 M:      Thomas Gleixner <tglx@linutronix.de>
10575 L:      linux-kernel@vger.kernel.org
10576 S:      Maintained
10577 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
10578 F:      kernel/irq/
10579
10580 IRQCHIP DRIVERS
10581 M:      Thomas Gleixner <tglx@linutronix.de>
10582 M:      Marc Zyngier <maz@kernel.org>
10583 L:      linux-kernel@vger.kernel.org
10584 S:      Maintained
10585 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
10586 F:      Documentation/devicetree/bindings/interrupt-controller/
10587 F:      drivers/irqchip/
10588
10589 ISA
10590 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
10591 S:      Maintained
10592 F:      Documentation/driver-api/isa.rst
10593 F:      drivers/base/isa.c
10594 F:      include/linux/isa.h
10595
10596 ISA RADIO MODULE
10597 M:      Hans Verkuil <hverkuil@xs4all.nl>
10598 L:      linux-media@vger.kernel.org
10599 S:      Maintained
10600 W:      https://linuxtv.org
10601 T:      git git://linuxtv.org/media_tree.git
10602 F:      drivers/media/radio/radio-isa*
10603
10604 ISAPNP
10605 M:      Jaroslav Kysela <perex@perex.cz>
10606 S:      Maintained
10607 F:      Documentation/driver-api/isapnp.rst
10608 F:      drivers/pnp/isapnp/
10609 F:      include/linux/isapnp.h
10610
10611 ISCSI
10612 M:      Lee Duncan <lduncan@suse.com>
10613 M:      Chris Leech <cleech@redhat.com>
10614 M:      Mike Christie <michael.christie@oracle.com>
10615 L:      open-iscsi@googlegroups.com
10616 L:      linux-scsi@vger.kernel.org
10617 S:      Maintained
10618 W:      www.open-iscsi.com
10619 F:      drivers/scsi/*iscsi*
10620 F:      include/scsi/*iscsi*
10621
10622 iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
10623 M:      Peter Jones <pjones@redhat.com>
10624 M:      Konrad Rzeszutek Wilk <konrad@kernel.org>
10625 S:      Maintained
10626 F:      drivers/firmware/iscsi_ibft*
10627
10628 ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR
10629 M:      Sagi Grimberg <sagi@grimberg.me>
10630 M:      Max Gurtovoy <mgurtovoy@nvidia.com>
10631 L:      linux-rdma@vger.kernel.org
10632 S:      Supported
10633 W:      http://www.openfabrics.org
10634 W:      www.open-iscsi.org
10635 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
10636 F:      drivers/infiniband/ulp/iser/
10637
10638 ISCSI EXTENSIONS FOR RDMA (ISER) TARGET
10639 M:      Sagi Grimberg <sagi@grimberg.me>
10640 L:      linux-rdma@vger.kernel.org
10641 L:      target-devel@vger.kernel.org
10642 S:      Supported
10643 W:      http://www.linux-iscsi.org
10644 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
10645 F:      drivers/infiniband/ulp/isert
10646
10647 ISDN/CMTP OVER BLUETOOTH
10648 M:      Karsten Keil <isdn@linux-pingi.de>
10649 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
10650 L:      netdev@vger.kernel.org
10651 S:      Odd Fixes
10652 W:      http://www.isdn4linux.de
10653 F:      Documentation/isdn/
10654 F:      drivers/isdn/capi/
10655 F:      include/linux/isdn/
10656 F:      include/uapi/linux/isdn/
10657 F:      net/bluetooth/cmtp/
10658
10659 ISDN/mISDN SUBSYSTEM
10660 M:      Karsten Keil <isdn@linux-pingi.de>
10661 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
10662 L:      netdev@vger.kernel.org
10663 S:      Maintained
10664 W:      http://www.isdn4linux.de
10665 F:      drivers/isdn/Kconfig
10666 F:      drivers/isdn/Makefile
10667 F:      drivers/isdn/hardware/
10668 F:      drivers/isdn/mISDN/
10669
10670 IT87 HARDWARE MONITORING DRIVER
10671 M:      Jean Delvare <jdelvare@suse.com>
10672 L:      linux-hwmon@vger.kernel.org
10673 S:      Maintained
10674 F:      Documentation/hwmon/it87.rst
10675 F:      drivers/hwmon/it87.c
10676
10677 IT913X MEDIA DRIVER
10678 M:      Antti Palosaari <crope@iki.fi>
10679 L:      linux-media@vger.kernel.org
10680 S:      Maintained
10681 W:      https://linuxtv.org
10682 W:      http://palosaari.fi/linux/
10683 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10684 T:      git git://linuxtv.org/anttip/media_tree.git
10685 F:      drivers/media/tuners/it913x*
10686
10687 ITE IT66121 HDMI BRIDGE DRIVER
10688 M:      Phong LE <ple@baylibre.com>
10689 M:      Neil Armstrong <narmstrong@baylibre.com>
10690 S:      Maintained
10691 T:      git git://anongit.freedesktop.org/drm/drm-misc
10692 F:      Documentation/devicetree/bindings/display/bridge/ite,it66121.yaml
10693 F:      drivers/gpu/drm/bridge/ite-it66121.c
10694
10695 IVTV VIDEO4LINUX DRIVER
10696 M:      Andy Walls <awalls@md.metrocast.net>
10697 L:      linux-media@vger.kernel.org
10698 S:      Maintained
10699 W:      https://linuxtv.org
10700 T:      git git://linuxtv.org/media_tree.git
10701 F:      Documentation/admin-guide/media/ivtv*
10702 F:      drivers/media/pci/ivtv/
10703 F:      include/uapi/linux/ivtv*
10704
10705 IX2505V MEDIA DRIVER
10706 M:      Malcolm Priestley <tvboxspy@gmail.com>
10707 L:      linux-media@vger.kernel.org
10708 S:      Maintained
10709 W:      https://linuxtv.org
10710 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10711 F:      drivers/media/dvb-frontends/ix2505v*
10712
10713 JAILHOUSE HYPERVISOR INTERFACE
10714 M:      Jan Kiszka <jan.kiszka@siemens.com>
10715 L:      jailhouse-dev@googlegroups.com
10716 S:      Maintained
10717 F:      arch/x86/include/asm/jailhouse_para.h
10718 F:      arch/x86/kernel/jailhouse.c
10719
10720 JC42.4 TEMPERATURE SENSOR DRIVER
10721 M:      Guenter Roeck <linux@roeck-us.net>
10722 L:      linux-hwmon@vger.kernel.org
10723 S:      Maintained
10724 F:      Documentation/devicetree/bindings/hwmon/jedec,jc42.yaml
10725 F:      Documentation/hwmon/jc42.rst
10726 F:      drivers/hwmon/jc42.c
10727
10728 JFS FILESYSTEM
10729 M:      Dave Kleikamp <shaggy@kernel.org>
10730 L:      jfs-discussion@lists.sourceforge.net
10731 S:      Maintained
10732 W:      http://jfs.sourceforge.net/
10733 T:      git git://github.com/kleikamp/linux-shaggy.git
10734 F:      Documentation/admin-guide/jfs.rst
10735 F:      fs/jfs/
10736
10737 JME NETWORK DRIVER
10738 M:      Guo-Fu Tseng <cooldavid@cooldavid.org>
10739 L:      netdev@vger.kernel.org
10740 S:      Maintained
10741 F:      drivers/net/ethernet/jme.*
10742
10743 JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
10744 M:      David Woodhouse <dwmw2@infradead.org>
10745 M:      Richard Weinberger <richard@nod.at>
10746 L:      linux-mtd@lists.infradead.org
10747 S:      Odd Fixes
10748 W:      http://www.linux-mtd.infradead.org/doc/jffs2.html
10749 T:      git git://git.infradead.org/ubifs-2.6.git
10750 F:      fs/jffs2/
10751 F:      include/uapi/linux/jffs2.h
10752
10753 JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
10754 M:      "Theodore Ts'o" <tytso@mit.edu>
10755 M:      Jan Kara <jack@suse.com>
10756 L:      linux-ext4@vger.kernel.org
10757 S:      Maintained
10758 F:      fs/jbd2/
10759 F:      include/linux/jbd2.h
10760
10761 JPU V4L2 MEM2MEM DRIVER FOR RENESAS
10762 M:      Mikhail Ulyanov <mikhail.ulyanov@cogentembedded.com>
10763 L:      linux-media@vger.kernel.org
10764 L:      linux-renesas-soc@vger.kernel.org
10765 S:      Maintained
10766 F:      drivers/media/platform/renesas/rcar_jpu.c
10767
10768 JSM Neo PCI based serial card
10769 L:      linux-serial@vger.kernel.org
10770 S:      Orphan
10771 F:      drivers/tty/serial/jsm/
10772
10773 K10TEMP HARDWARE MONITORING DRIVER
10774 M:      Clemens Ladisch <clemens@ladisch.de>
10775 L:      linux-hwmon@vger.kernel.org
10776 S:      Maintained
10777 F:      Documentation/hwmon/k10temp.rst
10778 F:      drivers/hwmon/k10temp.c
10779
10780 K8TEMP HARDWARE MONITORING DRIVER
10781 M:      Rudolf Marek <r.marek@assembler.cz>
10782 L:      linux-hwmon@vger.kernel.org
10783 S:      Maintained
10784 F:      Documentation/hwmon/k8temp.rst
10785 F:      drivers/hwmon/k8temp.c
10786
10787 KASAN
10788 M:      Andrey Ryabinin <ryabinin.a.a@gmail.com>
10789 R:      Alexander Potapenko <glider@google.com>
10790 R:      Andrey Konovalov <andreyknvl@gmail.com>
10791 R:      Dmitry Vyukov <dvyukov@google.com>
10792 R:      Vincenzo Frascino <vincenzo.frascino@arm.com>
10793 L:      kasan-dev@googlegroups.com
10794 S:      Maintained
10795 F:      Documentation/dev-tools/kasan.rst
10796 F:      arch/*/include/asm/*kasan.h
10797 F:      arch/*/mm/kasan_init*
10798 F:      include/linux/kasan*.h
10799 F:      lib/Kconfig.kasan
10800 F:      lib/test_kasan*.c
10801 F:      mm/kasan/
10802 F:      scripts/Makefile.kasan
10803
10804 KCONFIG
10805 M:      Masahiro Yamada <masahiroy@kernel.org>
10806 L:      linux-kbuild@vger.kernel.org
10807 S:      Maintained
10808 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git kconfig
10809 F:      Documentation/kbuild/kconfig*
10810 F:      scripts/Kconfig.include
10811 F:      scripts/kconfig/
10812
10813 KCOV
10814 R:      Dmitry Vyukov <dvyukov@google.com>
10815 R:      Andrey Konovalov <andreyknvl@gmail.com>
10816 L:      kasan-dev@googlegroups.com
10817 S:      Maintained
10818 F:      Documentation/dev-tools/kcov.rst
10819 F:      include/linux/kcov.h
10820 F:      include/uapi/linux/kcov.h
10821 F:      kernel/kcov.c
10822 F:      scripts/Makefile.kcov
10823
10824 KCSAN
10825 M:      Marco Elver <elver@google.com>
10826 R:      Dmitry Vyukov <dvyukov@google.com>
10827 L:      kasan-dev@googlegroups.com
10828 S:      Maintained
10829 F:      Documentation/dev-tools/kcsan.rst
10830 F:      include/linux/kcsan*.h
10831 F:      kernel/kcsan/
10832 F:      lib/Kconfig.kcsan
10833 F:      scripts/Makefile.kcsan
10834
10835 KDUMP
10836 M:      Baoquan He <bhe@redhat.com>
10837 R:      Vivek Goyal <vgoyal@redhat.com>
10838 R:      Dave Young <dyoung@redhat.com>
10839 L:      kexec@lists.infradead.org
10840 S:      Maintained
10841 W:      http://lse.sourceforge.net/kdump/
10842 F:      Documentation/admin-guide/kdump/
10843 F:      fs/proc/vmcore.c
10844 F:      include/linux/crash_core.h
10845 F:      include/linux/crash_dump.h
10846 F:      include/uapi/linux/vmcore.h
10847 F:      kernel/crash_*.c
10848
10849 KEENE FM RADIO TRANSMITTER DRIVER
10850 M:      Hans Verkuil <hverkuil@xs4all.nl>
10851 L:      linux-media@vger.kernel.org
10852 S:      Maintained
10853 W:      https://linuxtv.org
10854 T:      git git://linuxtv.org/media_tree.git
10855 F:      drivers/media/radio/radio-keene*
10856
10857 KERNEL AUTOMOUNTER
10858 M:      Ian Kent <raven@themaw.net>
10859 L:      autofs@vger.kernel.org
10860 S:      Maintained
10861 F:      fs/autofs/
10862
10863 KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
10864 M:      Masahiro Yamada <masahiroy@kernel.org>
10865 M:      Michal Marek <michal.lkml@markovi.net>
10866 R:      Nick Desaulniers <ndesaulniers@google.com>
10867 L:      linux-kbuild@vger.kernel.org
10868 S:      Maintained
10869 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git
10870 F:      Documentation/kbuild/
10871 F:      Makefile
10872 F:      scripts/*vmlinux*
10873 F:      scripts/Kbuild*
10874 F:      scripts/Makefile*
10875 F:      scripts/basic/
10876 F:      scripts/dummy-tools/
10877 F:      scripts/mk*
10878 F:      scripts/mod/
10879 F:      scripts/package/
10880
10881 KERNEL JANITORS
10882 L:      kernel-janitors@vger.kernel.org
10883 S:      Odd Fixes
10884 W:      http://kernelnewbies.org/KernelJanitors
10885
10886 KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
10887 M:      Chuck Lever <chuck.lever@oracle.com>
10888 M:      Jeff Layton <jlayton@kernel.org>
10889 L:      linux-nfs@vger.kernel.org
10890 S:      Supported
10891 W:      http://nfs.sourceforge.net/
10892 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/cel/linux.git
10893 F:      fs/lockd/
10894 F:      fs/nfs_common/
10895 F:      fs/nfsd/
10896 F:      include/linux/lockd/
10897 F:      include/linux/sunrpc/
10898 F:      include/uapi/linux/nfsd/
10899 F:      include/uapi/linux/sunrpc/
10900 F:      net/sunrpc/
10901 F:      Documentation/filesystems/nfs/
10902
10903 KERNEL REGRESSIONS
10904 M:      Thorsten Leemhuis <linux@leemhuis.info>
10905 L:      regressions@lists.linux.dev
10906 S:      Supported
10907 F:      Documentation/admin-guide/reporting-regressions.rst
10908 F:      Documentation/process/handling-regressions.rst
10909
10910 KERNEL SELFTEST FRAMEWORK
10911 M:      Shuah Khan <shuah@kernel.org>
10912 M:      Shuah Khan <skhan@linuxfoundation.org>
10913 L:      linux-kselftest@vger.kernel.org
10914 S:      Maintained
10915 Q:      https://patchwork.kernel.org/project/linux-kselftest/list/
10916 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest.git
10917 F:      Documentation/dev-tools/kselftest*
10918 F:      tools/testing/selftests/
10919
10920 KERNEL SMB3 SERVER (KSMBD)
10921 M:      Namjae Jeon <linkinjeon@kernel.org>
10922 M:      Steve French <sfrench@samba.org>
10923 M:      Hyunchul Lee <hyc.lee@gmail.com>
10924 R:      Sergey Senozhatsky <senozhatsky@chromium.org>
10925 L:      linux-cifs@vger.kernel.org
10926 S:      Maintained
10927 T:      git git://git.samba.org/ksmbd.git
10928 F:      fs/ksmbd/
10929 F:      fs/smbfs_common/
10930
10931 KERNEL UNIT TESTING FRAMEWORK (KUnit)
10932 M:      Brendan Higgins <brendanhiggins@google.com>
10933 L:      linux-kselftest@vger.kernel.org
10934 L:      kunit-dev@googlegroups.com
10935 S:      Maintained
10936 W:      https://google.github.io/kunit-docs/third_party/kernel/docs/
10937 F:      Documentation/dev-tools/kunit/
10938 F:      include/kunit/
10939 F:      lib/kunit/
10940 F:      tools/testing/kunit/
10941
10942 KERNEL USERMODE HELPER
10943 M:      Luis Chamberlain <mcgrof@kernel.org>
10944 L:      linux-kernel@vger.kernel.org
10945 S:      Maintained
10946 F:      include/linux/umh.h
10947 F:      kernel/umh.c
10948
10949 KERNEL VIRTUAL MACHINE (KVM)
10950 M:      Paolo Bonzini <pbonzini@redhat.com>
10951 L:      kvm@vger.kernel.org
10952 S:      Supported
10953 W:      http://www.linux-kvm.org
10954 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
10955 F:      Documentation/virt/kvm/
10956 F:      include/asm-generic/kvm*
10957 F:      include/kvm/iodev.h
10958 F:      include/linux/kvm*
10959 F:      include/trace/events/kvm.h
10960 F:      include/uapi/asm-generic/kvm*
10961 F:      include/uapi/linux/kvm*
10962 F:      tools/kvm/
10963 F:      tools/testing/selftests/kvm/
10964 F:      virt/kvm/*
10965
10966 KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64)
10967 M:      Marc Zyngier <maz@kernel.org>
10968 R:      James Morse <james.morse@arm.com>
10969 R:      Alexandru Elisei <alexandru.elisei@arm.com>
10970 R:      Suzuki K Poulose <suzuki.poulose@arm.com>
10971 R:      Oliver Upton <oliver.upton@linux.dev>
10972 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10973 L:      kvmarm@lists.cs.columbia.edu (moderated for non-subscribers)
10974 S:      Maintained
10975 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvmarm/kvmarm.git
10976 F:      arch/arm64/include/asm/kvm*
10977 F:      arch/arm64/include/uapi/asm/kvm*
10978 F:      arch/arm64/kvm/
10979 F:      include/kvm/arm_*
10980 F:      tools/testing/selftests/kvm/*/aarch64/
10981 F:      tools/testing/selftests/kvm/aarch64/
10982
10983 KERNEL VIRTUAL MACHINE FOR MIPS (KVM/mips)
10984 M:      Huacai Chen <chenhuacai@kernel.org>
10985 M:      Aleksandar Markovic <aleksandar.qemu.devel@gmail.com>
10986 L:      linux-mips@vger.kernel.org
10987 L:      kvm@vger.kernel.org
10988 S:      Maintained
10989 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
10990 F:      arch/mips/include/asm/kvm*
10991 F:      arch/mips/include/uapi/asm/kvm*
10992 F:      arch/mips/kvm/
10993
10994 KERNEL VIRTUAL MACHINE FOR POWERPC (KVM/powerpc)
10995 L:      linuxppc-dev@lists.ozlabs.org
10996 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git topic/ppc-kvm
10997 F:      arch/powerpc/include/asm/kvm*
10998 F:      arch/powerpc/include/uapi/asm/kvm*
10999 F:      arch/powerpc/kernel/kvm*
11000 F:      arch/powerpc/kvm/
11001
11002 KERNEL VIRTUAL MACHINE FOR RISC-V (KVM/riscv)
11003 M:      Anup Patel <anup@brainfault.org>
11004 R:      Atish Patra <atishp@atishpatra.org>
11005 L:      kvm@vger.kernel.org
11006 L:      kvm-riscv@lists.infradead.org
11007 L:      linux-riscv@lists.infradead.org
11008 S:      Maintained
11009 T:      git git://github.com/kvm-riscv/linux.git
11010 F:      arch/riscv/include/asm/kvm*
11011 F:      arch/riscv/include/uapi/asm/kvm*
11012 F:      arch/riscv/kvm/
11013 F:      tools/testing/selftests/kvm/*/riscv/
11014
11015 KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
11016 M:      Christian Borntraeger <borntraeger@linux.ibm.com>
11017 M:      Janosch Frank <frankja@linux.ibm.com>
11018 M:      Claudio Imbrenda <imbrenda@linux.ibm.com>
11019 R:      David Hildenbrand <david@redhat.com>
11020 L:      kvm@vger.kernel.org
11021 S:      Supported
11022 W:      http://www.ibm.com/developerworks/linux/linux390/
11023 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvms390/linux.git
11024 F:      Documentation/virt/kvm/s390*
11025 F:      arch/s390/include/asm/gmap.h
11026 F:      arch/s390/include/asm/kvm*
11027 F:      arch/s390/include/uapi/asm/kvm*
11028 F:      arch/s390/include/uapi/asm/uvdevice.h
11029 F:      arch/s390/kernel/uv.c
11030 F:      arch/s390/kvm/
11031 F:      arch/s390/mm/gmap.c
11032 F:      drivers/s390/char/uvdevice.c
11033 F:      tools/testing/selftests/drivers/s390x/uvdevice/
11034 F:      tools/testing/selftests/kvm/*/s390x/
11035 F:      tools/testing/selftests/kvm/s390x/
11036
11037 KERNEL VIRTUAL MACHINE FOR X86 (KVM/x86)
11038 M:      Sean Christopherson <seanjc@google.com>
11039 M:      Paolo Bonzini <pbonzini@redhat.com>
11040 L:      kvm@vger.kernel.org
11041 S:      Supported
11042 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
11043 F:      arch/x86/include/asm/kvm*
11044 F:      arch/x86/include/asm/svm.h
11045 F:      arch/x86/include/asm/vmx*.h
11046 F:      arch/x86/include/uapi/asm/kvm*
11047 F:      arch/x86/include/uapi/asm/svm.h
11048 F:      arch/x86/include/uapi/asm/vmx.h
11049 F:      arch/x86/kvm/
11050 F:      arch/x86/kvm/*/
11051
11052 KVM PARAVIRT (KVM/paravirt)
11053 M:      Paolo Bonzini <pbonzini@redhat.com>
11054 R:      Wanpeng Li <wanpengli@tencent.com>
11055 R:      Vitaly Kuznetsov <vkuznets@redhat.com>
11056 L:      kvm@vger.kernel.org
11057 S:      Supported
11058 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
11059 F:      arch/x86/kernel/kvm.c
11060 F:      arch/x86/kernel/kvmclock.c
11061 F:      arch/x86/include/asm/pvclock-abi.h
11062 F:      include/linux/kvm_para.h
11063 F:      include/uapi/linux/kvm_para.h
11064 F:      include/uapi/asm-generic/kvm_para.h
11065 F:      include/asm-generic/kvm_para.h
11066 F:      arch/um/include/asm/kvm_para.h
11067 F:      arch/x86/include/asm/kvm_para.h
11068 F:      arch/x86/include/uapi/asm/kvm_para.h
11069
11070 KVM X86 HYPER-V (KVM/hyper-v)
11071 M:      Vitaly Kuznetsov <vkuznets@redhat.com>
11072 M:      Sean Christopherson <seanjc@google.com>
11073 M:      Paolo Bonzini <pbonzini@redhat.com>
11074 L:      kvm@vger.kernel.org
11075 S:      Supported
11076 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
11077 F:      arch/x86/kvm/hyperv.*
11078 F:      arch/x86/kvm/kvm_onhyperv.*
11079 F:      arch/x86/kvm/svm/hyperv.*
11080 F:      arch/x86/kvm/svm/svm_onhyperv.*
11081 F:      arch/x86/kvm/vmx/evmcs.*
11082
11083 KERNFS
11084 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
11085 M:      Tejun Heo <tj@kernel.org>
11086 S:      Supported
11087 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
11088 F:      fs/kernfs/
11089 F:      include/linux/kernfs.h
11090
11091 KEXEC
11092 M:      Eric Biederman <ebiederm@xmission.com>
11093 L:      kexec@lists.infradead.org
11094 S:      Maintained
11095 W:      http://kernel.org/pub/linux/utils/kernel/kexec/
11096 F:      include/linux/kexec.h
11097 F:      include/uapi/linux/kexec.h
11098 F:      kernel/kexec*
11099
11100 KEYS-ENCRYPTED
11101 M:      Mimi Zohar <zohar@linux.ibm.com>
11102 L:      linux-integrity@vger.kernel.org
11103 L:      keyrings@vger.kernel.org
11104 S:      Supported
11105 F:      Documentation/security/keys/trusted-encrypted.rst
11106 F:      include/keys/encrypted-type.h
11107 F:      security/keys/encrypted-keys/
11108
11109 KEYS-TRUSTED
11110 M:      James Bottomley <jejb@linux.ibm.com>
11111 M:      Jarkko Sakkinen <jarkko@kernel.org>
11112 M:      Mimi Zohar <zohar@linux.ibm.com>
11113 L:      linux-integrity@vger.kernel.org
11114 L:      keyrings@vger.kernel.org
11115 S:      Supported
11116 F:      Documentation/security/keys/trusted-encrypted.rst
11117 F:      include/keys/trusted-type.h
11118 F:      include/keys/trusted_tpm.h
11119 F:      security/keys/trusted-keys/
11120
11121 KEYS-TRUSTED-TEE
11122 M:      Sumit Garg <sumit.garg@linaro.org>
11123 L:      linux-integrity@vger.kernel.org
11124 L:      keyrings@vger.kernel.org
11125 S:      Supported
11126 F:      include/keys/trusted_tee.h
11127 F:      security/keys/trusted-keys/trusted_tee.c
11128
11129 KEYS-TRUSTED-CAAM
11130 M:      Ahmad Fatoum <a.fatoum@pengutronix.de>
11131 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
11132 L:      linux-integrity@vger.kernel.org
11133 L:      keyrings@vger.kernel.org
11134 S:      Maintained
11135 F:      include/keys/trusted_caam.h
11136 F:      security/keys/trusted-keys/trusted_caam.c
11137
11138 KEYS/KEYRINGS
11139 M:      David Howells <dhowells@redhat.com>
11140 M:      Jarkko Sakkinen <jarkko@kernel.org>
11141 L:      keyrings@vger.kernel.org
11142 S:      Maintained
11143 F:      Documentation/security/keys/core.rst
11144 F:      include/keys/
11145 F:      include/linux/key-type.h
11146 F:      include/linux/key.h
11147 F:      include/linux/keyctl.h
11148 F:      include/uapi/linux/keyctl.h
11149 F:      security/keys/
11150
11151 KEYS/KEYRINGS_INTEGRITY
11152 M:      Jarkko Sakkinen <jarkko@kernel.org>
11153 M:      Mimi Zohar <zohar@linux.ibm.com>
11154 L:      linux-integrity@vger.kernel.org
11155 L:      keyrings@vger.kernel.org
11156 S:      Supported
11157 F:      security/integrity/platform_certs
11158
11159 KFENCE
11160 M:      Alexander Potapenko <glider@google.com>
11161 M:      Marco Elver <elver@google.com>
11162 R:      Dmitry Vyukov <dvyukov@google.com>
11163 L:      kasan-dev@googlegroups.com
11164 S:      Maintained
11165 F:      Documentation/dev-tools/kfence.rst
11166 F:      arch/*/include/asm/kfence.h
11167 F:      include/linux/kfence.h
11168 F:      lib/Kconfig.kfence
11169 F:      mm/kfence/
11170
11171 KFIFO
11172 M:      Stefani Seibold <stefani@seibold.net>
11173 S:      Maintained
11174 F:      include/linux/kfifo.h
11175 F:      lib/kfifo.c
11176 F:      samples/kfifo/
11177
11178 KGDB / KDB /debug_core
11179 M:      Jason Wessel <jason.wessel@windriver.com>
11180 M:      Daniel Thompson <daniel.thompson@linaro.org>
11181 R:      Douglas Anderson <dianders@chromium.org>
11182 L:      kgdb-bugreport@lists.sourceforge.net
11183 S:      Maintained
11184 W:      http://kgdb.wiki.kernel.org/
11185 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jwessel/kgdb.git
11186 F:      Documentation/dev-tools/kgdb.rst
11187 F:      drivers/misc/kgdbts.c
11188 F:      drivers/tty/serial/kgdboc.c
11189 F:      include/linux/kdb.h
11190 F:      include/linux/kgdb.h
11191 F:      kernel/debug/
11192 F:      kernel/module/kdb.c
11193
11194 KHADAS MCU MFD DRIVER
11195 M:      Neil Armstrong <narmstrong@baylibre.com>
11196 L:      linux-amlogic@lists.infradead.org
11197 S:      Maintained
11198 F:      Documentation/devicetree/bindings/mfd/khadas,mcu.yaml
11199 F:      drivers/mfd/khadas-mcu.c
11200 F:      include/linux/mfd/khadas-mcu.h
11201 F:      drivers/thermal/khadas_mcu_fan.c
11202
11203 KMEMLEAK
11204 M:      Catalin Marinas <catalin.marinas@arm.com>
11205 S:      Maintained
11206 F:      Documentation/dev-tools/kmemleak.rst
11207 F:      include/linux/kmemleak.h
11208 F:      mm/kmemleak.c
11209 F:      samples/kmemleak/kmemleak-test.c
11210
11211 KMOD KERNEL MODULE LOADER - USERMODE HELPER
11212 M:      Luis Chamberlain <mcgrof@kernel.org>
11213 L:      linux-kernel@vger.kernel.org
11214 L:      linux-modules@vger.kernel.org
11215 S:      Maintained
11216 F:      include/linux/kmod.h
11217 F:      kernel/kmod.c
11218 F:      lib/test_kmod.c
11219 F:      tools/testing/selftests/kmod/
11220
11221 KPROBES
11222 M:      Naveen N. Rao <naveen.n.rao@linux.ibm.com>
11223 M:      Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
11224 M:      "David S. Miller" <davem@davemloft.net>
11225 M:      Masami Hiramatsu <mhiramat@kernel.org>
11226 S:      Maintained
11227 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rostedt/linux-trace.git
11228 F:      Documentation/trace/kprobes.rst
11229 F:      include/asm-generic/kprobes.h
11230 F:      include/linux/kprobes.h
11231 F:      kernel/kprobes.c
11232 F:      lib/test_kprobes.c
11233 F:      samples/kprobes
11234
11235 KS0108 LCD CONTROLLER DRIVER
11236 M:      Miguel Ojeda <ojeda@kernel.org>
11237 S:      Maintained
11238 F:      Documentation/admin-guide/auxdisplay/ks0108.rst
11239 F:      drivers/auxdisplay/ks0108.c
11240 F:      include/linux/ks0108.h
11241
11242 KTD253 BACKLIGHT DRIVER
11243 M:      Linus Walleij <linus.walleij@linaro.org>
11244 S:      Maintained
11245 F:      Documentation/devicetree/bindings/leds/backlight/kinetic,ktd253.yaml
11246 F:      drivers/video/backlight/ktd253-backlight.c
11247
11248 KTEST
11249 M:      Steven Rostedt <rostedt@goodmis.org>
11250 M:      John Hawley <warthog9@eaglescrag.net>
11251 S:      Maintained
11252 F:      tools/testing/ktest
11253
11254 L3MDEV
11255 M:      David Ahern <dsahern@kernel.org>
11256 L:      netdev@vger.kernel.org
11257 S:      Maintained
11258 F:      include/net/l3mdev.h
11259 F:      net/l3mdev
11260
11261 LANDLOCK SECURITY MODULE
11262 M:      Mickaël Salaün <mic@digikod.net>
11263 L:      linux-security-module@vger.kernel.org
11264 S:      Supported
11265 W:      https://landlock.io
11266 T:      git https://github.com/landlock-lsm/linux.git
11267 F:      Documentation/security/landlock.rst
11268 F:      Documentation/userspace-api/landlock.rst
11269 F:      include/uapi/linux/landlock.h
11270 F:      samples/landlock/
11271 F:      security/landlock/
11272 F:      tools/testing/selftests/landlock/
11273 K:      landlock
11274 K:      LANDLOCK
11275
11276 LANTIQ / INTEL Ethernet drivers
11277 M:      Hauke Mehrtens <hauke@hauke-m.de>
11278 L:      netdev@vger.kernel.org
11279 S:      Maintained
11280 F:      drivers/net/dsa/lantiq_gswip.c
11281 F:      drivers/net/dsa/lantiq_pce.h
11282 F:      drivers/net/ethernet/lantiq_xrx200.c
11283 F:      net/dsa/tag_gswip.c
11284
11285 LANTIQ MIPS ARCHITECTURE
11286 M:      John Crispin <john@phrozen.org>
11287 L:      linux-mips@vger.kernel.org
11288 S:      Maintained
11289 F:      arch/mips/lantiq
11290 F:      drivers/soc/lantiq
11291
11292 LASI 53c700 driver for PARISC
11293 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
11294 L:      linux-scsi@vger.kernel.org
11295 S:      Maintained
11296 F:      Documentation/scsi/53c700.rst
11297 F:      drivers/scsi/53c700*
11298
11299 LEAKING_ADDRESSES
11300 M:      Tobin C. Harding <me@tobin.cc>
11301 M:      Tycho Andersen <tycho@tycho.pizza>
11302 L:      linux-hardening@vger.kernel.org
11303 S:      Maintained
11304 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tobin/leaks.git
11305 F:      scripts/leaking_addresses.pl
11306
11307 LED SUBSYSTEM
11308 M:      Pavel Machek <pavel@ucw.cz>
11309 L:      linux-leds@vger.kernel.org
11310 S:      Maintained
11311 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pavel/linux-leds.git
11312 F:      Documentation/devicetree/bindings/leds/
11313 F:      drivers/leds/
11314 F:      include/linux/leds.h
11315
11316 LEGACY EEPROM DRIVER
11317 M:      Jean Delvare <jdelvare@suse.com>
11318 S:      Maintained
11319 F:      Documentation/misc-devices/eeprom.rst
11320 F:      drivers/misc/eeprom/eeprom.c
11321
11322 LEGO MINDSTORMS EV3
11323 R:      David Lechner <david@lechnology.com>
11324 S:      Maintained
11325 F:      Documentation/devicetree/bindings/power/supply/lego,ev3-battery.yaml
11326 F:      arch/arm/boot/dts/da850-lego-ev3.dts
11327 F:      drivers/power/supply/lego_ev3_battery.c
11328
11329 LEGO USB Tower driver
11330 M:      Juergen Stuber <starblue@users.sourceforge.net>
11331 L:      legousb-devel@lists.sourceforge.net
11332 S:      Maintained
11333 W:      http://legousb.sourceforge.net/
11334 F:      drivers/usb/misc/legousbtower.c
11335
11336 LETSKETCH HID TABLET DRIVER
11337 M:      Hans de Goede <hdegoede@redhat.com>
11338 L:      linux-input@vger.kernel.org
11339 S:      Maintained
11340 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
11341 F:      drivers/hid/hid-letsketch.c
11342
11343 LG LAPTOP EXTRAS
11344 M:      Matan Ziv-Av <matan@svgalib.org>
11345 L:      platform-driver-x86@vger.kernel.org
11346 S:      Maintained
11347 F:      Documentation/ABI/testing/sysfs-platform-lg-laptop
11348 F:      Documentation/admin-guide/laptops/lg-laptop.rst
11349 F:      drivers/platform/x86/lg-laptop.c
11350
11351 LG2160 MEDIA DRIVER
11352 M:      Michael Krufky <mkrufky@linuxtv.org>
11353 L:      linux-media@vger.kernel.org
11354 S:      Maintained
11355 W:      https://linuxtv.org
11356 W:      http://github.com/mkrufky
11357 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11358 T:      git git://linuxtv.org/mkrufky/tuners.git
11359 F:      drivers/media/dvb-frontends/lg2160.*
11360
11361 LGDT3305 MEDIA DRIVER
11362 M:      Michael Krufky <mkrufky@linuxtv.org>
11363 L:      linux-media@vger.kernel.org
11364 S:      Maintained
11365 W:      https://linuxtv.org
11366 W:      http://github.com/mkrufky
11367 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11368 T:      git git://linuxtv.org/mkrufky/tuners.git
11369 F:      drivers/media/dvb-frontends/lgdt3305.*
11370
11371 LIBATA PATA ARASAN COMPACT FLASH CONTROLLER
11372 M:      Viresh Kumar <vireshk@kernel.org>
11373 L:      linux-ide@vger.kernel.org
11374 S:      Maintained
11375 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
11376 F:      drivers/ata/pata_arasan_cf.c
11377 F:      include/linux/pata_arasan_cf_data.h
11378
11379 LIBATA PATA DRIVERS
11380 R:      Sergey Shtylyov <s.shtylyov@omp.ru>
11381 L:      linux-ide@vger.kernel.org
11382 F:      drivers/ata/ata_*.c
11383 F:      drivers/ata/pata_*.c
11384
11385 LIBATA PATA FARADAY FTIDE010 AND GEMINI SATA BRIDGE DRIVERS
11386 M:      Linus Walleij <linus.walleij@linaro.org>
11387 L:      linux-ide@vger.kernel.org
11388 S:      Maintained
11389 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
11390 F:      drivers/ata/pata_ftide010.c
11391 F:      drivers/ata/sata_gemini.c
11392 F:      drivers/ata/sata_gemini.h
11393
11394 LIBATA SATA AHCI PLATFORM devices support
11395 M:      Hans de Goede <hdegoede@redhat.com>
11396 M:      Jens Axboe <axboe@kernel.dk>
11397 L:      linux-ide@vger.kernel.org
11398 S:      Maintained
11399 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
11400 F:      drivers/ata/ahci_platform.c
11401 F:      drivers/ata/libahci_platform.c
11402 F:      include/linux/ahci_platform.h
11403
11404 LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER
11405 M:      Mikael Pettersson <mikpelinux@gmail.com>
11406 L:      linux-ide@vger.kernel.org
11407 S:      Maintained
11408 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
11409 F:      drivers/ata/sata_promise.*
11410
11411 LIBATA SUBSYSTEM (Serial and Parallel ATA drivers)
11412 M:      Damien Le Moal <damien.lemoal@opensource.wdc.com>
11413 L:      linux-ide@vger.kernel.org
11414 S:      Maintained
11415 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dlemoal/libata.git
11416 F:      Documentation/ABI/testing/sysfs-ata
11417 F:      Documentation/devicetree/bindings/ata/
11418 F:      drivers/ata/
11419 F:      include/linux/ata.h
11420 F:      include/linux/libata.h
11421
11422 LIBNVDIMM BTT: BLOCK TRANSLATION TABLE
11423 M:      Vishal Verma <vishal.l.verma@intel.com>
11424 M:      Dan Williams <dan.j.williams@intel.com>
11425 M:      Dave Jiang <dave.jiang@intel.com>
11426 L:      nvdimm@lists.linux.dev
11427 S:      Supported
11428 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
11429 P:      Documentation/nvdimm/maintainer-entry-profile.rst
11430 F:      drivers/nvdimm/btt*
11431
11432 LIBNVDIMM PMEM: PERSISTENT MEMORY DRIVER
11433 M:      Dan Williams <dan.j.williams@intel.com>
11434 M:      Vishal Verma <vishal.l.verma@intel.com>
11435 M:      Dave Jiang <dave.jiang@intel.com>
11436 L:      nvdimm@lists.linux.dev
11437 S:      Supported
11438 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
11439 P:      Documentation/nvdimm/maintainer-entry-profile.rst
11440 F:      drivers/nvdimm/pmem*
11441
11442 LIBNVDIMM: DEVICETREE BINDINGS
11443 M:      Oliver O'Halloran <oohall@gmail.com>
11444 L:      nvdimm@lists.linux.dev
11445 S:      Supported
11446 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
11447 F:      Documentation/devicetree/bindings/pmem/pmem-region.txt
11448 F:      drivers/nvdimm/of_pmem.c
11449
11450 LIBNVDIMM: NON-VOLATILE MEMORY DEVICE SUBSYSTEM
11451 M:      Dan Williams <dan.j.williams@intel.com>
11452 M:      Vishal Verma <vishal.l.verma@intel.com>
11453 M:      Dave Jiang <dave.jiang@intel.com>
11454 M:      Ira Weiny <ira.weiny@intel.com>
11455 L:      nvdimm@lists.linux.dev
11456 S:      Supported
11457 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
11458 P:      Documentation/nvdimm/maintainer-entry-profile.rst
11459 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nvdimm/nvdimm.git
11460 F:      drivers/acpi/nfit/*
11461 F:      drivers/nvdimm/*
11462 F:      include/linux/libnvdimm.h
11463 F:      include/linux/nd.h
11464 F:      include/uapi/linux/ndctl.h
11465 F:      tools/testing/nvdimm/
11466
11467 LICENSES and SPDX stuff
11468 M:      Thomas Gleixner <tglx@linutronix.de>
11469 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
11470 L:      linux-spdx@vger.kernel.org
11471 S:      Maintained
11472 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/spdx.git
11473 F:      COPYING
11474 F:      Documentation/process/license-rules.rst
11475 F:      LICENSES/
11476 F:      scripts/spdxcheck-test.sh
11477 F:      scripts/spdxcheck.py
11478
11479 LINEAR RANGES HELPERS
11480 M:      Mark Brown <broonie@kernel.org>
11481 R:      Matti Vaittinen <mazziesaccount@gmail.com>
11482 F:      lib/linear_ranges.c
11483 F:      lib/test_linear_ranges.c
11484 F:      include/linux/linear_range.h
11485
11486 LINUX FOR POWER MACINTOSH
11487 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
11488 L:      linuxppc-dev@lists.ozlabs.org
11489 S:      Odd Fixes
11490 F:      arch/powerpc/platforms/powermac/
11491 F:      drivers/macintosh/
11492
11493 LINUX FOR POWERPC (32-BIT AND 64-BIT)
11494 M:      Michael Ellerman <mpe@ellerman.id.au>
11495 R:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
11496 R:      Paul Mackerras <paulus@samba.org>
11497 L:      linuxppc-dev@lists.ozlabs.org
11498 S:      Supported
11499 W:      https://github.com/linuxppc/wiki/wiki
11500 Q:      http://patchwork.ozlabs.org/project/linuxppc-dev/list/
11501 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git
11502 F:      Documentation/ABI/stable/sysfs-firmware-opal-*
11503 F:      Documentation/devicetree/bindings/i2c/i2c-opal.txt
11504 F:      Documentation/devicetree/bindings/powerpc/
11505 F:      Documentation/devicetree/bindings/rtc/rtc-opal.txt
11506 F:      Documentation/powerpc/
11507 F:      arch/powerpc/
11508 F:      drivers/*/*/*pasemi*
11509 F:      drivers/*/*pasemi*
11510 F:      drivers/char/tpm/tpm_ibmvtpm*
11511 F:      drivers/crypto/nx/
11512 F:      drivers/crypto/vmx/
11513 F:      drivers/i2c/busses/i2c-opal.c
11514 F:      drivers/net/ethernet/ibm/ibmveth.*
11515 F:      drivers/net/ethernet/ibm/ibmvnic.*
11516 F:      drivers/pci/hotplug/pnv_php.c
11517 F:      drivers/pci/hotplug/rpa*
11518 F:      drivers/rtc/rtc-opal.c
11519 F:      drivers/scsi/ibmvscsi/
11520 F:      drivers/tty/hvc/hvc_opal.c
11521 F:      drivers/watchdog/wdrtas.c
11522 F:      tools/testing/selftests/powerpc
11523 N:      /pmac
11524 N:      powermac
11525 N:      powernv
11526 N:      [^a-z0-9]ps3
11527 N:      pseries
11528
11529 LINUX FOR POWERPC EMBEDDED MPC5XXX
11530 M:      Anatolij Gustschin <agust@denx.de>
11531 L:      linuxppc-dev@lists.ozlabs.org
11532 S:      Odd Fixes
11533 F:      arch/powerpc/platforms/512x/
11534 F:      arch/powerpc/platforms/52xx/
11535
11536 LINUX FOR POWERPC EMBEDDED PPC4XX
11537 L:      linuxppc-dev@lists.ozlabs.org
11538 S:      Orphan
11539 F:      arch/powerpc/platforms/40x/
11540 F:      arch/powerpc/platforms/44x/
11541
11542 LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
11543 M:      Scott Wood <oss@buserror.net>
11544 L:      linuxppc-dev@lists.ozlabs.org
11545 S:      Odd fixes
11546 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git
11547 F:      Documentation/devicetree/bindings/powerpc/fsl/
11548 F:      arch/powerpc/platforms/83xx/
11549 F:      arch/powerpc/platforms/85xx/
11550
11551 LINUX FOR POWERPC EMBEDDED PPC8XX
11552 M:      Christophe Leroy <christophe.leroy@csgroup.eu>
11553 L:      linuxppc-dev@lists.ozlabs.org
11554 S:      Maintained
11555 F:      arch/powerpc/platforms/8xx/
11556
11557 LINUX KERNEL DUMP TEST MODULE (LKDTM)
11558 M:      Kees Cook <keescook@chromium.org>
11559 S:      Maintained
11560 F:      drivers/misc/lkdtm/*
11561 F:      tools/testing/selftests/lkdtm/*
11562
11563 LINUX KERNEL MEMORY CONSISTENCY MODEL (LKMM)
11564 M:      Alan Stern <stern@rowland.harvard.edu>
11565 M:      Andrea Parri <parri.andrea@gmail.com>
11566 M:      Will Deacon <will@kernel.org>
11567 M:      Peter Zijlstra <peterz@infradead.org>
11568 M:      Boqun Feng <boqun.feng@gmail.com>
11569 M:      Nicholas Piggin <npiggin@gmail.com>
11570 M:      David Howells <dhowells@redhat.com>
11571 M:      Jade Alglave <j.alglave@ucl.ac.uk>
11572 M:      Luc Maranget <luc.maranget@inria.fr>
11573 M:      "Paul E. McKenney" <paulmck@kernel.org>
11574 R:      Akira Yokosawa <akiyks@gmail.com>
11575 R:      Daniel Lustig <dlustig@nvidia.com>
11576 R:      Joel Fernandes <joel@joelfernandes.org>
11577 L:      linux-kernel@vger.kernel.org
11578 L:      linux-arch@vger.kernel.org
11579 S:      Supported
11580 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
11581 F:      Documentation/atomic_bitops.txt
11582 F:      Documentation/atomic_t.txt
11583 F:      Documentation/core-api/refcount-vs-atomic.rst
11584 F:      Documentation/litmus-tests/
11585 F:      Documentation/memory-barriers.txt
11586 F:      tools/memory-model/
11587
11588 LIS3LV02D ACCELEROMETER DRIVER
11589 M:      Eric Piel <eric.piel@tremplin-utc.net>
11590 S:      Maintained
11591 F:      Documentation/misc-devices/lis3lv02d.rst
11592 F:      drivers/misc/lis3lv02d/
11593 F:      drivers/platform/x86/hp_accel.c
11594
11595 LIST KUNIT TEST
11596 M:      David Gow <davidgow@google.com>
11597 L:      linux-kselftest@vger.kernel.org
11598 L:      kunit-dev@googlegroups.com
11599 S:      Maintained
11600 F:      lib/list-test.c
11601
11602 LITEX PLATFORM
11603 M:      Karol Gugala <kgugala@antmicro.com>
11604 M:      Mateusz Holenko <mholenko@antmicro.com>
11605 M:      Gabriel Somlo <gsomlo@gmail.com>
11606 M:      Joel Stanley <joel@jms.id.au>
11607 S:      Maintained
11608 F:      Documentation/devicetree/bindings/*/litex,*.yaml
11609 F:      arch/openrisc/boot/dts/or1klitex.dts
11610 F:      include/linux/litex.h
11611 F:      drivers/tty/serial/liteuart.c
11612 F:      drivers/soc/litex/*
11613 F:      drivers/net/ethernet/litex/*
11614 F:      drivers/mmc/host/litex_mmc.c
11615 N:      litex
11616
11617 LIVE PATCHING
11618 M:      Josh Poimboeuf <jpoimboe@kernel.org>
11619 M:      Jiri Kosina <jikos@kernel.org>
11620 M:      Miroslav Benes <mbenes@suse.cz>
11621 M:      Petr Mladek <pmladek@suse.com>
11622 R:      Joe Lawrence <joe.lawrence@redhat.com>
11623 L:      live-patching@vger.kernel.org
11624 S:      Maintained
11625 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/livepatching/livepatching.git
11626 F:      Documentation/ABI/testing/sysfs-kernel-livepatch
11627 F:      Documentation/livepatch/
11628 F:      arch/powerpc/include/asm/livepatch.h
11629 F:      include/linux/livepatch.h
11630 F:      kernel/livepatch/
11631 F:      kernel/module/livepatch.c
11632 F:      lib/livepatch/
11633 F:      samples/livepatch/
11634 F:      tools/testing/selftests/livepatch/
11635
11636 LLC (802.2)
11637 L:      netdev@vger.kernel.org
11638 S:      Odd fixes
11639 F:      include/linux/llc.h
11640 F:      include/net/llc*
11641 F:      include/uapi/linux/llc.h
11642 F:      net/llc/
11643
11644 LM73 HARDWARE MONITOR DRIVER
11645 M:      Guillaume Ligneul <guillaume.ligneul@gmail.com>
11646 L:      linux-hwmon@vger.kernel.org
11647 S:      Maintained
11648 F:      drivers/hwmon/lm73.c
11649
11650 LM78 HARDWARE MONITOR DRIVER
11651 M:      Jean Delvare <jdelvare@suse.com>
11652 L:      linux-hwmon@vger.kernel.org
11653 S:      Maintained
11654 F:      Documentation/hwmon/lm78.rst
11655 F:      drivers/hwmon/lm78.c
11656
11657 LM83 HARDWARE MONITOR DRIVER
11658 M:      Jean Delvare <jdelvare@suse.com>
11659 L:      linux-hwmon@vger.kernel.org
11660 S:      Maintained
11661 F:      Documentation/hwmon/lm83.rst
11662 F:      drivers/hwmon/lm83.c
11663
11664 LM90 HARDWARE MONITOR DRIVER
11665 M:      Jean Delvare <jdelvare@suse.com>
11666 L:      linux-hwmon@vger.kernel.org
11667 S:      Maintained
11668 F:      Documentation/devicetree/bindings/hwmon/national,lm90.yaml
11669 F:      Documentation/hwmon/lm90.rst
11670 F:      drivers/hwmon/lm90.c
11671 F:      include/dt-bindings/thermal/lm90.h
11672
11673 LM95234 HARDWARE MONITOR DRIVER
11674 M:      Guenter Roeck <linux@roeck-us.net>
11675 L:      linux-hwmon@vger.kernel.org
11676 S:      Maintained
11677 F:      Documentation/hwmon/lm95234.rst
11678 F:      drivers/hwmon/lm95234.c
11679
11680 LME2510 MEDIA DRIVER
11681 M:      Malcolm Priestley <tvboxspy@gmail.com>
11682 L:      linux-media@vger.kernel.org
11683 S:      Maintained
11684 W:      https://linuxtv.org
11685 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11686 F:      drivers/media/usb/dvb-usb-v2/lmedm04*
11687
11688 LOADPIN SECURITY MODULE
11689 M:      Kees Cook <keescook@chromium.org>
11690 S:      Supported
11691 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git lsm/loadpin
11692 F:      Documentation/admin-guide/LSM/LoadPin.rst
11693 F:      security/loadpin/
11694
11695 LOCKING PRIMITIVES
11696 M:      Peter Zijlstra <peterz@infradead.org>
11697 M:      Ingo Molnar <mingo@redhat.com>
11698 M:      Will Deacon <will@kernel.org>
11699 R:      Waiman Long <longman@redhat.com>
11700 R:      Boqun Feng <boqun.feng@gmail.com> (LOCKDEP)
11701 L:      linux-kernel@vger.kernel.org
11702 S:      Maintained
11703 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
11704 F:      Documentation/locking/
11705 F:      arch/*/include/asm/spinlock*.h
11706 F:      include/linux/lockdep.h
11707 F:      include/linux/mutex*.h
11708 F:      include/linux/rwlock*.h
11709 F:      include/linux/rwsem*.h
11710 F:      include/linux/seqlock.h
11711 F:      include/linux/spinlock*.h
11712 F:      kernel/locking/
11713 F:      lib/locking*.[ch]
11714 X:      kernel/locking/locktorture.c
11715
11716 LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
11717 M:      "Richard Russon (FlatCap)" <ldm@flatcap.org>
11718 L:      linux-ntfs-dev@lists.sourceforge.net
11719 S:      Maintained
11720 W:      http://www.linux-ntfs.org/content/view/19/37/
11721 F:      Documentation/admin-guide/ldm.rst
11722 F:      block/partitions/ldm.*
11723
11724 LOGITECH HID GAMING KEYBOARDS
11725 M:      Hans de Goede <hdegoede@redhat.com>
11726 L:      linux-input@vger.kernel.org
11727 S:      Maintained
11728 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
11729 F:      drivers/hid/hid-lg-g15.c
11730
11731 LONTIUM LT8912B MIPI TO HDMI BRIDGE
11732 M:      Adrien Grassein <adrien.grassein@gmail.com>
11733 S:      Maintained
11734 F:      Documentation/devicetree/bindings/display/bridge/lontium,lt8912b.yaml
11735 F:      drivers/gpu/drm/bridge/lontium-lt8912b.c
11736
11737 LOONGARCH
11738 M:      Huacai Chen <chenhuacai@kernel.org>
11739 R:      WANG Xuerui <kernel@xen0n.name>
11740 L:      loongarch@lists.linux.dev
11741 S:      Maintained
11742 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chenhuacai/linux-loongson.git
11743 F:      arch/loongarch/
11744 F:      drivers/*/*loongarch*
11745 F:      Documentation/loongarch/
11746 F:      Documentation/translations/zh_CN/loongarch/
11747
11748 LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
11749 M:      Sathya Prakash <sathya.prakash@broadcom.com>
11750 M:      Sreekanth Reddy <sreekanth.reddy@broadcom.com>
11751 M:      Suganath Prabu Subramani <suganath-prabu.subramani@broadcom.com>
11752 L:      MPT-FusionLinux.pdl@broadcom.com
11753 L:      linux-scsi@vger.kernel.org
11754 S:      Supported
11755 W:      http://www.avagotech.com/support/
11756 F:      drivers/message/fusion/
11757 F:      drivers/scsi/mpt3sas/
11758
11759 LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
11760 M:      Matthew Wilcox <willy@infradead.org>
11761 L:      linux-scsi@vger.kernel.org
11762 S:      Maintained
11763 F:      drivers/scsi/sym53c8xx_2/
11764
11765 LTC1660 DAC DRIVER
11766 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
11767 L:      linux-iio@vger.kernel.org
11768 S:      Maintained
11769 F:      Documentation/devicetree/bindings/iio/dac/lltc,ltc1660.yaml
11770 F:      drivers/iio/dac/ltc1660.c
11771
11772 LTC2688 IIO DAC DRIVER
11773 M:      Nuno Sá <nuno.sa@analog.com>
11774 L:      linux-iio@vger.kernel.org
11775 S:      Supported
11776 W:      http://ez.analog.com/community/linux-device-drivers
11777 F:      Documentation/ABI/testing/sysfs-bus-iio-dac-ltc2688
11778 F:      Documentation/devicetree/bindings/iio/dac/adi,ltc2688.yaml
11779 F:      drivers/iio/dac/ltc2688.c
11780
11781 LTC2947 HARDWARE MONITOR DRIVER
11782 M:      Nuno Sá <nuno.sa@analog.com>
11783 L:      linux-hwmon@vger.kernel.org
11784 S:      Supported
11785 W:      https://ez.analog.com/linux-software-drivers
11786 F:      Documentation/devicetree/bindings/hwmon/adi,ltc2947.yaml
11787 F:      drivers/hwmon/ltc2947-core.c
11788 F:      drivers/hwmon/ltc2947-i2c.c
11789 F:      drivers/hwmon/ltc2947-spi.c
11790 F:      drivers/hwmon/ltc2947.h
11791
11792 LTC2983 IIO TEMPERATURE DRIVER
11793 M:      Nuno Sá <nuno.sa@analog.com>
11794 L:      linux-iio@vger.kernel.org
11795 S:      Supported
11796 W:      https://ez.analog.com/linux-software-drivers
11797 F:      Documentation/devicetree/bindings/iio/temperature/adi,ltc2983.yaml
11798 F:      drivers/iio/temperature/ltc2983.c
11799
11800 LTC4261 HARDWARE MONITOR DRIVER
11801 M:      Guenter Roeck <linux@roeck-us.net>
11802 L:      linux-hwmon@vger.kernel.org
11803 S:      Maintained
11804 F:      Documentation/hwmon/ltc4261.rst
11805 F:      drivers/hwmon/ltc4261.c
11806
11807 LTC4306 I2C MULTIPLEXER DRIVER
11808 M:      Michael Hennerich <michael.hennerich@analog.com>
11809 L:      linux-i2c@vger.kernel.org
11810 S:      Supported
11811 W:      https://ez.analog.com/linux-software-drivers
11812 F:      Documentation/devicetree/bindings/i2c/i2c-mux-ltc4306.txt
11813 F:      drivers/i2c/muxes/i2c-mux-ltc4306.c
11814
11815 LTP (Linux Test Project)
11816 M:      Mike Frysinger <vapier@gentoo.org>
11817 M:      Cyril Hrubis <chrubis@suse.cz>
11818 M:      Wanlong Gao <wanlong.gao@gmail.com>
11819 M:      Jan Stancek <jstancek@redhat.com>
11820 M:      Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com>
11821 M:      Alexey Kodanev <alexey.kodanev@oracle.com>
11822 L:      ltp@lists.linux.it (subscribers-only)
11823 S:      Maintained
11824 W:      http://linux-test-project.github.io/
11825 T:      git git://github.com/linux-test-project/ltp.git
11826
11827 LYNX 28G SERDES PHY DRIVER
11828 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
11829 L:      netdev@vger.kernel.org
11830 S:      Supported
11831 F:      Documentation/devicetree/bindings/phy/fsl,lynx-28g.yaml
11832 F:      drivers/phy/freescale/phy-fsl-lynx-28g.c
11833
11834 LYNX PCS MODULE
11835 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
11836 L:      netdev@vger.kernel.org
11837 S:      Supported
11838 F:      drivers/net/pcs/pcs-lynx.c
11839 F:      include/linux/pcs-lynx.h
11840
11841 M68K ARCHITECTURE
11842 M:      Geert Uytterhoeven <geert@linux-m68k.org>
11843 L:      linux-m68k@lists.linux-m68k.org
11844 S:      Maintained
11845 W:      http://www.linux-m68k.org/
11846 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
11847 F:      arch/m68k/
11848 F:      drivers/zorro/
11849
11850 M68K ON APPLE MACINTOSH
11851 M:      Joshua Thompson <funaho@jurai.org>
11852 L:      linux-m68k@lists.linux-m68k.org
11853 S:      Maintained
11854 W:      http://www.mac.linux-m68k.org/
11855 F:      arch/m68k/mac/
11856 F:      drivers/macintosh/adb-iop.c
11857 F:      drivers/macintosh/via-macii.c
11858
11859 M68K ON HP9000/300
11860 M:      Philip Blundell <philb@gnu.org>
11861 S:      Maintained
11862 W:      http://www.tazenda.demon.co.uk/phil/linux-hp
11863 F:      arch/m68k/hp300/
11864
11865 M88DS3103 MEDIA DRIVER
11866 M:      Antti Palosaari <crope@iki.fi>
11867 L:      linux-media@vger.kernel.org
11868 S:      Maintained
11869 W:      https://linuxtv.org
11870 W:      http://palosaari.fi/linux/
11871 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11872 T:      git git://linuxtv.org/anttip/media_tree.git
11873 F:      drivers/media/dvb-frontends/m88ds3103*
11874
11875 M88RS2000 MEDIA DRIVER
11876 M:      Malcolm Priestley <tvboxspy@gmail.com>
11877 L:      linux-media@vger.kernel.org
11878 S:      Maintained
11879 W:      https://linuxtv.org
11880 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11881 F:      drivers/media/dvb-frontends/m88rs2000*
11882
11883 MA901 MASTERKIT USB FM RADIO DRIVER
11884 M:      Alexey Klimov <klimov.linux@gmail.com>
11885 L:      linux-media@vger.kernel.org
11886 S:      Maintained
11887 T:      git git://linuxtv.org/media_tree.git
11888 F:      drivers/media/radio/radio-ma901.c
11889
11890 MAC80211
11891 M:      Johannes Berg <johannes@sipsolutions.net>
11892 L:      linux-wireless@vger.kernel.org
11893 S:      Maintained
11894 W:      https://wireless.wiki.kernel.org/
11895 Q:      https://patchwork.kernel.org/project/linux-wireless/list/
11896 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless.git
11897 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless-next.git
11898 F:      Documentation/networking/mac80211-injection.rst
11899 F:      Documentation/networking/mac80211_hwsim/mac80211_hwsim.rst
11900 F:      drivers/net/wireless/mac80211_hwsim.[ch]
11901 F:      include/net/mac80211.h
11902 F:      net/mac80211/
11903
11904 MAILBOX API
11905 M:      Jassi Brar <jassisinghbrar@gmail.com>
11906 L:      linux-kernel@vger.kernel.org
11907 S:      Maintained
11908 F:      drivers/mailbox/
11909 F:      include/linux/mailbox_client.h
11910 F:      include/linux/mailbox_controller.h
11911 F:      include/dt-bindings/mailbox/
11912 F:      Documentation/devicetree/bindings/mailbox/
11913
11914 MAILBOX ARM MHUv2
11915 M:      Viresh Kumar <viresh.kumar@linaro.org>
11916 M:      Tushar Khandelwal <Tushar.Khandelwal@arm.com>
11917 L:      linux-kernel@vger.kernel.org
11918 S:      Maintained
11919 F:      drivers/mailbox/arm_mhuv2.c
11920 F:      include/linux/mailbox/arm_mhuv2_message.h
11921 F:      Documentation/devicetree/bindings/mailbox/arm,mhuv2.yaml
11922
11923 MANAGEMENT COMPONENT TRANSPORT PROTOCOL (MCTP)
11924 M:      Jeremy Kerr <jk@codeconstruct.com.au>
11925 M:      Matt Johnston <matt@codeconstruct.com.au>
11926 L:      netdev@vger.kernel.org
11927 S:      Maintained
11928 F:      Documentation/networking/mctp.rst
11929 F:      drivers/net/mctp/
11930 F:      include/net/mctp.h
11931 F:      include/net/mctpdevice.h
11932 F:      include/net/netns/mctp.h
11933 F:      net/mctp/
11934
11935 MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
11936 M:      Michael Kerrisk <mtk.manpages@gmail.com>
11937 L:      linux-man@vger.kernel.org
11938 S:      Maintained
11939 W:      http://www.kernel.org/doc/man-pages
11940
11941 MARDUK (CREATOR CI40) DEVICE TREE SUPPORT
11942 M:      Rahul Bedarkar <rahulbedarkar89@gmail.com>
11943 L:      linux-mips@vger.kernel.org
11944 S:      Maintained
11945 F:      arch/mips/boot/dts/img/pistachio*
11946
11947 MARVELL 88E6XXX ETHERNET SWITCH FABRIC DRIVER
11948 M:      Andrew Lunn <andrew@lunn.ch>
11949 M:      Vivien Didelot <vivien.didelot@gmail.com>
11950 L:      netdev@vger.kernel.org
11951 S:      Maintained
11952 F:      Documentation/devicetree/bindings/net/dsa/marvell.txt
11953 F:      Documentation/networking/devlink/mv88e6xxx.rst
11954 F:      drivers/net/dsa/mv88e6xxx/
11955 F:      include/linux/dsa/mv88e6xxx.h
11956 F:      include/linux/platform_data/mv88e6xxx.h
11957
11958 MARVELL ARMADA 3700 PHY DRIVERS
11959 M:      Miquel Raynal <miquel.raynal@bootlin.com>
11960 S:      Maintained
11961 F:      Documentation/devicetree/bindings/phy/phy-mvebu-comphy.txt
11962 F:      Documentation/devicetree/bindings/phy/marvell,armada-3700-utmi-phy.yaml
11963 F:      drivers/phy/marvell/phy-mvebu-a3700-comphy.c
11964 F:      drivers/phy/marvell/phy-mvebu-a3700-utmi.c
11965
11966 MARVELL ARMADA 3700 SERIAL DRIVER
11967 M:      Pali Rohár <pali@kernel.org>
11968 S:      Maintained
11969 F:      Documentation/devicetree/bindings/clock/marvell,armada-3700-uart-clock.yaml
11970 F:      Documentation/devicetree/bindings/serial/mvebu-uart.txt
11971 F:      drivers/tty/serial/mvebu-uart.c
11972
11973 MARVELL ARMADA DRM SUPPORT
11974 M:      Russell King <linux@armlinux.org.uk>
11975 S:      Maintained
11976 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-devel
11977 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-fixes
11978 F:      Documentation/devicetree/bindings/display/armada/
11979 F:      drivers/gpu/drm/armada/
11980 F:      include/uapi/drm/armada_drm.h
11981
11982 MARVELL CRYPTO DRIVER
11983 M:      Boris Brezillon <bbrezillon@kernel.org>
11984 M:      Arnaud Ebalard <arno@natisbad.org>
11985 M:      Srujana Challa <schalla@marvell.com>
11986 L:      linux-crypto@vger.kernel.org
11987 S:      Maintained
11988 F:      drivers/crypto/marvell/
11989 F:      include/linux/soc/marvell/octeontx2/
11990
11991 MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
11992 M:      Mirko Lindner <mlindner@marvell.com>
11993 M:      Stephen Hemminger <stephen@networkplumber.org>
11994 L:      netdev@vger.kernel.org
11995 S:      Maintained
11996 F:      drivers/net/ethernet/marvell/sk*
11997
11998 MARVELL LIBERTAS WIRELESS DRIVER
11999 L:      libertas-dev@lists.infradead.org
12000 S:      Orphan
12001 F:      drivers/net/wireless/marvell/libertas/
12002
12003 MARVELL MACCHIATOBIN SUPPORT
12004 M:      Russell King <linux@armlinux.org.uk>
12005 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12006 S:      Maintained
12007 F:      arch/arm64/boot/dts/marvell/armada-8040-mcbin.dts
12008
12009 MARVELL MV643XX ETHERNET DRIVER
12010 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
12011 L:      netdev@vger.kernel.org
12012 S:      Maintained
12013 F:      drivers/net/ethernet/marvell/mv643xx_eth.*
12014 F:      include/linux/mv643xx.h
12015
12016 MARVELL MV88X3310 PHY DRIVER
12017 M:      Russell King <linux@armlinux.org.uk>
12018 M:      Marek Behún <kabel@kernel.org>
12019 L:      netdev@vger.kernel.org
12020 S:      Maintained
12021 F:      drivers/net/phy/marvell10g.c
12022
12023 MARVELL MVEBU THERMAL DRIVER
12024 M:      Miquel Raynal <miquel.raynal@bootlin.com>
12025 S:      Maintained
12026 F:      drivers/thermal/armada_thermal.c
12027
12028 MARVELL MVNETA ETHERNET DRIVER
12029 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
12030 L:      netdev@vger.kernel.org
12031 S:      Maintained
12032 F:      drivers/net/ethernet/marvell/mvneta.*
12033
12034 MARVELL MVPP2 ETHERNET DRIVER
12035 M:      Marcin Wojtas <mw@semihalf.com>
12036 M:      Russell King <linux@armlinux.org.uk>
12037 L:      netdev@vger.kernel.org
12038 S:      Maintained
12039 F:      Documentation/devicetree/bindings/net/marvell-pp2.txt
12040 F:      drivers/net/ethernet/marvell/mvpp2/
12041
12042 MARVELL MWIFIEX WIRELESS DRIVER
12043 M:      Amitkumar Karwar <amitkarwar@gmail.com>
12044 M:      Ganapathi Bhat <ganapathi017@gmail.com>
12045 M:      Sharvari Harisangam <sharvari.harisangam@nxp.com>
12046 M:      Xinming Hu <huxinming820@gmail.com>
12047 L:      linux-wireless@vger.kernel.org
12048 S:      Maintained
12049 F:      drivers/net/wireless/marvell/mwifiex/
12050
12051 MARVELL MWL8K WIRELESS DRIVER
12052 M:      Lennert Buytenhek <buytenh@wantstofly.org>
12053 L:      linux-wireless@vger.kernel.org
12054 S:      Odd Fixes
12055 F:      drivers/net/wireless/marvell/mwl8k.c
12056
12057 MARVELL NAND CONTROLLER DRIVER
12058 M:      Miquel Raynal <miquel.raynal@bootlin.com>
12059 L:      linux-mtd@lists.infradead.org
12060 S:      Maintained
12061 F:      Documentation/devicetree/bindings/mtd/marvell-nand.txt
12062 F:      drivers/mtd/nand/raw/marvell_nand.c
12063
12064 MARVELL OCTEONTX2 PHYSICAL FUNCTION DRIVER
12065 M:      Sunil Goutham <sgoutham@marvell.com>
12066 M:      Geetha sowjanya <gakula@marvell.com>
12067 M:      Subbaraya Sundeep <sbhatta@marvell.com>
12068 M:      hariprasad <hkelam@marvell.com>
12069 L:      netdev@vger.kernel.org
12070 S:      Supported
12071 F:      drivers/net/ethernet/marvell/octeontx2/nic/
12072 F:      include/linux/soc/marvell/octeontx2/
12073
12074 MARVELL OCTEONTX2 RVU ADMIN FUNCTION DRIVER
12075 M:      Sunil Goutham <sgoutham@marvell.com>
12076 M:      Linu Cherian <lcherian@marvell.com>
12077 M:      Geetha sowjanya <gakula@marvell.com>
12078 M:      Jerin Jacob <jerinj@marvell.com>
12079 M:      hariprasad <hkelam@marvell.com>
12080 M:      Subbaraya Sundeep <sbhatta@marvell.com>
12081 L:      netdev@vger.kernel.org
12082 S:      Supported
12083 F:      Documentation/networking/device_drivers/ethernet/marvell/octeontx2.rst
12084 F:      drivers/net/ethernet/marvell/octeontx2/af/
12085
12086 MARVELL PRESTERA ETHERNET SWITCH DRIVER
12087 M:      Taras Chornyi <tchornyi@marvell.com>
12088 S:      Supported
12089 W:      https://github.com/Marvell-switching/switchdev-prestera
12090 F:      drivers/net/ethernet/marvell/prestera/
12091
12092 MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
12093 M:      Nicolas Pitre <nico@fluxnic.net>
12094 S:      Odd Fixes
12095 F:      drivers/mmc/host/mvsdio.*
12096
12097 MARVELL USB MDIO CONTROLLER DRIVER
12098 M:      Tobias Waldekranz <tobias@waldekranz.com>
12099 L:      netdev@vger.kernel.org
12100 S:      Maintained
12101 F:      Documentation/devicetree/bindings/net/marvell,mvusb.yaml
12102 F:      drivers/net/mdio/mdio-mvusb.c
12103
12104 MARVELL XENON MMC/SD/SDIO HOST CONTROLLER DRIVER
12105 M:      Hu Ziji <huziji@marvell.com>
12106 L:      linux-mmc@vger.kernel.org
12107 S:      Supported
12108 F:      Documentation/devicetree/bindings/mmc/marvell,xenon-sdhci.yaml
12109 F:      drivers/mmc/host/sdhci-xenon*
12110
12111 MARVELL OCTEON ENDPOINT DRIVER
12112 M:      Veerasenareddy Burru <vburru@marvell.com>
12113 M:      Abhijit Ayarekar <aayarekar@marvell.com>
12114 L:      netdev@vger.kernel.org
12115 S:      Supported
12116 F:      drivers/net/ethernet/marvell/octeon_ep
12117
12118 MATROX FRAMEBUFFER DRIVER
12119 L:      linux-fbdev@vger.kernel.org
12120 S:      Orphan
12121 F:      drivers/video/fbdev/matrox/matroxfb_*
12122 F:      include/uapi/linux/matroxfb.h
12123
12124 MAX15301 DRIVER
12125 M:      Daniel Nilsson <daniel.nilsson@flex.com>
12126 L:      linux-hwmon@vger.kernel.org
12127 S:      Maintained
12128 F:      Documentation/hwmon/max15301.rst
12129 F:      drivers/hwmon/pmbus/max15301.c
12130
12131 MAX16065 HARDWARE MONITOR DRIVER
12132 M:      Guenter Roeck <linux@roeck-us.net>
12133 L:      linux-hwmon@vger.kernel.org
12134 S:      Maintained
12135 F:      Documentation/hwmon/max16065.rst
12136 F:      drivers/hwmon/max16065.c
12137
12138 MAX2175 SDR TUNER DRIVER
12139 M:      Ramesh Shanmugasundaram <rashanmu@gmail.com>
12140 L:      linux-media@vger.kernel.org
12141 S:      Maintained
12142 T:      git git://linuxtv.org/media_tree.git
12143 F:      Documentation/devicetree/bindings/media/i2c/max2175.txt
12144 F:      Documentation/userspace-api/media/drivers/max2175.rst
12145 F:      drivers/media/i2c/max2175*
12146 F:      include/uapi/linux/max2175.h
12147
12148 MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
12149 L:      linux-hwmon@vger.kernel.org
12150 S:      Orphan
12151 F:      Documentation/hwmon/max6650.rst
12152 F:      drivers/hwmon/max6650.c
12153
12154 MAX6697 HARDWARE MONITOR DRIVER
12155 M:      Guenter Roeck <linux@roeck-us.net>
12156 L:      linux-hwmon@vger.kernel.org
12157 S:      Maintained
12158 F:      Documentation/devicetree/bindings/hwmon/max6697.txt
12159 F:      Documentation/hwmon/max6697.rst
12160 F:      drivers/hwmon/max6697.c
12161 F:      include/linux/platform_data/max6697.h
12162
12163 MAX9286 QUAD GMSL DESERIALIZER DRIVER
12164 M:      Jacopo Mondi <jacopo+renesas@jmondi.org>
12165 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
12166 M:      Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
12167 M:      Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
12168 L:      linux-media@vger.kernel.org
12169 S:      Maintained
12170 F:      Documentation/devicetree/bindings/media/i2c/maxim,max9286.yaml
12171 F:      drivers/media/i2c/max9286.c
12172
12173 MAX96712 QUAD GMSL2 DESERIALIZER DRIVER
12174 M:      Niklas Söderlund <niklas.soderlund@ragnatech.se>
12175 L:      linux-media@vger.kernel.org
12176 S:      Maintained
12177 F:      drivers/staging/media/max96712/max96712.c
12178
12179 MAX9860 MONO AUDIO VOICE CODEC DRIVER
12180 M:      Peter Rosin <peda@axentia.se>
12181 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12182 S:      Maintained
12183 F:      Documentation/devicetree/bindings/sound/max9860.txt
12184 F:      sound/soc/codecs/max9860.*
12185
12186 MAXBOTIX ULTRASONIC RANGER IIO DRIVER
12187 M:      Andreas Klinger <ak@it-klinger.de>
12188 L:      linux-iio@vger.kernel.org
12189 S:      Maintained
12190 F:      Documentation/devicetree/bindings/iio/proximity/maxbotix,mb1232.yaml
12191 F:      drivers/iio/proximity/mb1232.c
12192
12193 MAXIM MAX17040 FAMILY FUEL GAUGE DRIVERS
12194 R:      Iskren Chernev <iskren.chernev@gmail.com>
12195 R:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
12196 R:      Marek Szyprowski <m.szyprowski@samsung.com>
12197 R:      Matheus Castello <matheus@castello.eng.br>
12198 L:      linux-pm@vger.kernel.org
12199 S:      Maintained
12200 F:      Documentation/devicetree/bindings/power/supply/maxim,max17040.yaml
12201 F:      drivers/power/supply/max17040_battery.c
12202
12203 MAXIM MAX17042 FAMILY FUEL GAUGE DRIVERS
12204 R:      Hans de Goede <hdegoede@redhat.com>
12205 R:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
12206 R:      Marek Szyprowski <m.szyprowski@samsung.com>
12207 R:      Sebastian Krzyszkowiak <sebastian.krzyszkowiak@puri.sm>
12208 R:      Purism Kernel Team <kernel@puri.sm>
12209 L:      linux-pm@vger.kernel.org
12210 S:      Maintained
12211 F:      Documentation/devicetree/bindings/power/supply/maxim,max17042.yaml
12212 F:      drivers/power/supply/max17042_battery.c
12213
12214 MAXIM MAX20086 CAMERA POWER PROTECTOR DRIVER
12215 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12216 L:      linux-kernel@vger.kernel.org
12217 S:      Maintained
12218 F:      Documentation/devicetree/bindings/regulator/maxim,max20086.yaml
12219 F:      drivers/regulator/max20086-regulator.c
12220
12221 MAXIM MAX77650 PMIC MFD DRIVER
12222 M:      Bartosz Golaszewski <brgl@bgdev.pl>
12223 L:      linux-kernel@vger.kernel.org
12224 S:      Maintained
12225 F:      Documentation/devicetree/bindings/*/*max77650.yaml
12226 F:      Documentation/devicetree/bindings/*/max77650*.yaml
12227 F:      drivers/gpio/gpio-max77650.c
12228 F:      drivers/input/misc/max77650-onkey.c
12229 F:      drivers/leds/leds-max77650.c
12230 F:      drivers/mfd/max77650.c
12231 F:      drivers/power/supply/max77650-charger.c
12232 F:      drivers/regulator/max77650-regulator.c
12233 F:      include/linux/mfd/max77650.h
12234
12235 MAXIM MAX77714 PMIC MFD DRIVER
12236 M:      Luca Ceresoli <luca@lucaceresoli.net>
12237 S:      Maintained
12238 F:      Documentation/devicetree/bindings/mfd/maxim,max77714.yaml
12239 F:      drivers/mfd/max77714.c
12240 F:      include/linux/mfd/max77714.h
12241
12242 MAXIM MAX77802 PMIC REGULATOR DEVICE DRIVER
12243 M:      Javier Martinez Canillas <javier@dowhile0.org>
12244 L:      linux-kernel@vger.kernel.org
12245 S:      Supported
12246 F:      Documentation/devicetree/bindings/*/*max77802.yaml
12247 F:      drivers/regulator/max77802-regulator.c
12248 F:      include/dt-bindings/*/*max77802.h
12249
12250 MAXIM MAX77976 BATTERY CHARGER
12251 M:      Luca Ceresoli <luca@lucaceresoli.net>
12252 S:      Supported
12253 F:      Documentation/devicetree/bindings/power/supply/maxim,max77976.yaml
12254 F:      drivers/power/supply/max77976_charger.c
12255
12256 MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS
12257 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
12258 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
12259 L:      linux-pm@vger.kernel.org
12260 S:      Supported
12261 B:      mailto:linux-samsung-soc@vger.kernel.org
12262 F:      Documentation/devicetree/bindings/power/supply/maxim,max14577.yaml
12263 F:      Documentation/devicetree/bindings/power/supply/maxim,max77693.yaml
12264 F:      drivers/power/supply/max14577_charger.c
12265 F:      drivers/power/supply/max77693_charger.c
12266
12267 MAXIM PMIC AND MUIC DRIVERS FOR EXYNOS BASED BOARDS
12268 M:      Chanwoo Choi <cw00.choi@samsung.com>
12269 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
12270 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
12271 L:      linux-kernel@vger.kernel.org
12272 S:      Supported
12273 B:      mailto:linux-samsung-soc@vger.kernel.org
12274 F:      Documentation/devicetree/bindings/*/maxim,max14577.yaml
12275 F:      Documentation/devicetree/bindings/*/maxim,max77686.yaml
12276 F:      Documentation/devicetree/bindings/*/maxim,max77693.yaml
12277 F:      Documentation/devicetree/bindings/*/maxim,max77843.yaml
12278 F:      Documentation/devicetree/bindings/clock/maxim,max77686.txt
12279 F:      Documentation/devicetree/bindings/mfd/max77693.txt
12280 F:      drivers/*/*max77843.c
12281 F:      drivers/*/max14577*.c
12282 F:      drivers/*/max77686*.c
12283 F:      drivers/*/max77693*.c
12284 F:      drivers/clk/clk-max77686.c
12285 F:      drivers/extcon/extcon-max14577.c
12286 F:      drivers/extcon/extcon-max77693.c
12287 F:      drivers/rtc/rtc-max77686.c
12288 F:      include/linux/mfd/max14577*.h
12289 F:      include/linux/mfd/max77686*.h
12290 F:      include/linux/mfd/max77693*.h
12291
12292 MAXIRADIO FM RADIO RECEIVER DRIVER
12293 M:      Hans Verkuil <hverkuil@xs4all.nl>
12294 L:      linux-media@vger.kernel.org
12295 S:      Maintained
12296 W:      https://linuxtv.org
12297 T:      git git://linuxtv.org/media_tree.git
12298 F:      drivers/media/radio/radio-maxiradio*
12299
12300 MAXLINEAR ETHERNET PHY DRIVER
12301 M:      Xu Liang <lxu@maxlinear.com>
12302 L:      netdev@vger.kernel.org
12303 S:      Supported
12304 F:      drivers/net/phy/mxl-gpy.c
12305
12306 MCBA MICROCHIP CAN BUS ANALYZER TOOL DRIVER
12307 R:      Yasushi SHOJI <yashi@spacecubics.com>
12308 L:      linux-can@vger.kernel.org
12309 S:      Maintained
12310 F:      drivers/net/can/usb/mcba_usb.c
12311
12312 MCAN MMIO DEVICE DRIVER
12313 M:      Chandrasekar Ramakrishnan <rcsekar@samsung.com>
12314 L:      linux-can@vger.kernel.org
12315 S:      Maintained
12316 F:      Documentation/devicetree/bindings/net/can/bosch,m_can.yaml
12317 F:      drivers/net/can/m_can/m_can.c
12318 F:      drivers/net/can/m_can/m_can.h
12319 F:      drivers/net/can/m_can/m_can_platform.c
12320
12321 MCP2221A MICROCHIP USB-HID TO I2C BRIDGE DRIVER
12322 M:      Rishi Gupta <gupt21@gmail.com>
12323 L:      linux-i2c@vger.kernel.org
12324 L:      linux-input@vger.kernel.org
12325 S:      Maintained
12326 F:      drivers/hid/hid-mcp2221.c
12327
12328 MCP251XFD SPI-CAN NETWORK DRIVER
12329 M:      Marc Kleine-Budde <mkl@pengutronix.de>
12330 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
12331 R:      Thomas Kopp <thomas.kopp@microchip.com>
12332 L:      linux-can@vger.kernel.org
12333 S:      Maintained
12334 F:      Documentation/devicetree/bindings/net/can/microchip,mcp251xfd.yaml
12335 F:      drivers/net/can/spi/mcp251xfd/
12336
12337 MCP4018 AND MCP4531 MICROCHIP DIGITAL POTENTIOMETER DRIVERS
12338 M:      Peter Rosin <peda@axentia.se>
12339 L:      linux-iio@vger.kernel.org
12340 S:      Maintained
12341 F:      Documentation/ABI/testing/sysfs-bus-iio-potentiometer-mcp4531
12342 F:      drivers/iio/potentiometer/mcp4018.c
12343 F:      drivers/iio/potentiometer/mcp4531.c
12344
12345 MCR20A IEEE-802.15.4 RADIO DRIVER
12346 M:      Xue Liu <liuxuenetmail@gmail.com>
12347 L:      linux-wpan@vger.kernel.org
12348 S:      Maintained
12349 W:      https://github.com/xueliu/mcr20a-linux
12350 F:      Documentation/devicetree/bindings/net/ieee802154/mcr20a.txt
12351 F:      drivers/net/ieee802154/mcr20a.c
12352 F:      drivers/net/ieee802154/mcr20a.h
12353
12354 MEASUREMENT COMPUTING CIO-DAC IIO DRIVER
12355 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
12356 L:      linux-iio@vger.kernel.org
12357 S:      Maintained
12358 F:      drivers/iio/dac/cio-dac.c
12359
12360 MEDIA CONTROLLER FRAMEWORK
12361 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
12362 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12363 L:      linux-media@vger.kernel.org
12364 S:      Supported
12365 W:      https://www.linuxtv.org
12366 T:      git git://linuxtv.org/media_tree.git
12367 F:      drivers/media/mc/
12368 F:      include/media/media-*.h
12369 F:      include/uapi/linux/media.h
12370
12371 MEDIA DRIVER FOR FREESCALE IMX PXP
12372 M:      Philipp Zabel <p.zabel@pengutronix.de>
12373 L:      linux-media@vger.kernel.org
12374 S:      Maintained
12375 T:      git git://linuxtv.org/media_tree.git
12376 F:      drivers/media/platform/nxp/imx-pxp.[ch]
12377
12378 MEDIA DRIVERS FOR ASCOT2E
12379 M:      Sergey Kozlov <serjk@netup.ru>
12380 M:      Abylay Ospan <aospan@netup.ru>
12381 L:      linux-media@vger.kernel.org
12382 S:      Supported
12383 W:      https://linuxtv.org
12384 W:      http://netup.tv/
12385 T:      git git://linuxtv.org/media_tree.git
12386 F:      drivers/media/dvb-frontends/ascot2e*
12387
12388 MEDIA DRIVERS FOR CXD2099AR CI CONTROLLERS
12389 M:      Jasmin Jessich <jasmin@anw.at>
12390 L:      linux-media@vger.kernel.org
12391 S:      Maintained
12392 W:      https://linuxtv.org
12393 T:      git git://linuxtv.org/media_tree.git
12394 F:      drivers/media/dvb-frontends/cxd2099*
12395
12396 MEDIA DRIVERS FOR CXD2841ER
12397 M:      Sergey Kozlov <serjk@netup.ru>
12398 M:      Abylay Ospan <aospan@netup.ru>
12399 L:      linux-media@vger.kernel.org
12400 S:      Supported
12401 W:      https://linuxtv.org
12402 W:      http://netup.tv/
12403 T:      git git://linuxtv.org/media_tree.git
12404 F:      drivers/media/dvb-frontends/cxd2841er*
12405
12406 MEDIA DRIVERS FOR CXD2880
12407 M:      Yasunari Takiguchi <Yasunari.Takiguchi@sony.com>
12408 L:      linux-media@vger.kernel.org
12409 S:      Supported
12410 W:      http://linuxtv.org/
12411 T:      git git://linuxtv.org/media_tree.git
12412 F:      drivers/media/dvb-frontends/cxd2880/*
12413 F:      drivers/media/spi/cxd2880*
12414
12415 MEDIA DRIVERS FOR DIGITAL DEVICES PCIE DEVICES
12416 L:      linux-media@vger.kernel.org
12417 S:      Orphan
12418 W:      https://linuxtv.org
12419 T:      git git://linuxtv.org/media_tree.git
12420 F:      drivers/media/pci/ddbridge/*
12421
12422 MEDIA DRIVERS FOR FREESCALE IMX
12423 M:      Steve Longerbeam <slongerbeam@gmail.com>
12424 M:      Philipp Zabel <p.zabel@pengutronix.de>
12425 L:      linux-media@vger.kernel.org
12426 S:      Maintained
12427 T:      git git://linuxtv.org/media_tree.git
12428 F:      Documentation/admin-guide/media/imx.rst
12429 F:      Documentation/devicetree/bindings/media/imx.txt
12430 F:      drivers/staging/media/imx/
12431 F:      include/linux/imx-media.h
12432 F:      include/media/imx.h
12433
12434 MEDIA DRIVERS FOR FREESCALE IMX7
12435 M:      Rui Miguel Silva <rmfrfs@gmail.com>
12436 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12437 L:      linux-media@vger.kernel.org
12438 S:      Maintained
12439 T:      git git://linuxtv.org/media_tree.git
12440 F:      Documentation/admin-guide/media/imx7.rst
12441 F:      Documentation/devicetree/bindings/media/nxp,imx-mipi-csi2.yaml
12442 F:      Documentation/devicetree/bindings/media/nxp,imx7-csi.yaml
12443 F:      drivers/media/platform/nxp/imx-mipi-csis.c
12444 F:      drivers/staging/media/imx/imx7-media-csi.c
12445
12446 MEDIA DRIVERS FOR HELENE
12447 M:      Abylay Ospan <aospan@netup.ru>
12448 L:      linux-media@vger.kernel.org
12449 S:      Supported
12450 W:      https://linuxtv.org
12451 W:      http://netup.tv/
12452 T:      git git://linuxtv.org/media_tree.git
12453 F:      drivers/media/dvb-frontends/helene*
12454
12455 MEDIA DRIVERS FOR HORUS3A
12456 M:      Sergey Kozlov <serjk@netup.ru>
12457 M:      Abylay Ospan <aospan@netup.ru>
12458 L:      linux-media@vger.kernel.org
12459 S:      Supported
12460 W:      https://linuxtv.org
12461 W:      http://netup.tv/
12462 T:      git git://linuxtv.org/media_tree.git
12463 F:      drivers/media/dvb-frontends/horus3a*
12464
12465 MEDIA DRIVERS FOR LNBH25
12466 M:      Sergey Kozlov <serjk@netup.ru>
12467 M:      Abylay Ospan <aospan@netup.ru>
12468 L:      linux-media@vger.kernel.org
12469 S:      Supported
12470 W:      https://linuxtv.org
12471 W:      http://netup.tv/
12472 T:      git git://linuxtv.org/media_tree.git
12473 F:      drivers/media/dvb-frontends/lnbh25*
12474
12475 MEDIA DRIVERS FOR MXL5XX TUNER DEMODULATORS
12476 L:      linux-media@vger.kernel.org
12477 S:      Orphan
12478 W:      https://linuxtv.org
12479 T:      git git://linuxtv.org/media_tree.git
12480 F:      drivers/media/dvb-frontends/mxl5xx*
12481
12482 MEDIA DRIVERS FOR NETUP PCI UNIVERSAL DVB devices
12483 M:      Sergey Kozlov <serjk@netup.ru>
12484 M:      Abylay Ospan <aospan@netup.ru>
12485 L:      linux-media@vger.kernel.org
12486 S:      Supported
12487 W:      https://linuxtv.org
12488 W:      http://netup.tv/
12489 T:      git git://linuxtv.org/media_tree.git
12490 F:      drivers/media/pci/netup_unidvb/*
12491
12492 MEDIA DRIVERS FOR NVIDIA TEGRA - VDE
12493 M:      Dmitry Osipenko <digetx@gmail.com>
12494 L:      linux-media@vger.kernel.org
12495 L:      linux-tegra@vger.kernel.org
12496 S:      Maintained
12497 T:      git git://linuxtv.org/media_tree.git
12498 F:      Documentation/devicetree/bindings/media/nvidia,tegra-vde.yaml
12499 F:      drivers/media/platform/nvidia/tegra-vde/
12500
12501 MEDIA DRIVERS FOR RENESAS - CEU
12502 M:      Jacopo Mondi <jacopo@jmondi.org>
12503 L:      linux-media@vger.kernel.org
12504 L:      linux-renesas-soc@vger.kernel.org
12505 S:      Supported
12506 T:      git git://linuxtv.org/media_tree.git
12507 F:      Documentation/devicetree/bindings/media/renesas,ceu.yaml
12508 F:      drivers/media/platform/renesas/renesas-ceu.c
12509 F:      include/media/drv-intf/renesas-ceu.h
12510
12511 MEDIA DRIVERS FOR RENESAS - DRIF
12512 M:      Fabrizio Castro <fabrizio.castro.jz@renesas.com>
12513 L:      linux-media@vger.kernel.org
12514 L:      linux-renesas-soc@vger.kernel.org
12515 S:      Supported
12516 T:      git git://linuxtv.org/media_tree.git
12517 F:      Documentation/devicetree/bindings/media/renesas,drif.yaml
12518 F:      drivers/media/platform/renesas/rcar_drif.c
12519
12520 MEDIA DRIVERS FOR RENESAS - FCP
12521 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12522 L:      linux-media@vger.kernel.org
12523 L:      linux-renesas-soc@vger.kernel.org
12524 S:      Supported
12525 T:      git git://linuxtv.org/media_tree.git
12526 F:      Documentation/devicetree/bindings/media/renesas,fcp.yaml
12527 F:      drivers/media/platform/renesas/rcar-fcp.c
12528 F:      include/media/rcar-fcp.h
12529
12530 MEDIA DRIVERS FOR RENESAS - FDP1
12531 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
12532 L:      linux-media@vger.kernel.org
12533 L:      linux-renesas-soc@vger.kernel.org
12534 S:      Supported
12535 T:      git git://linuxtv.org/media_tree.git
12536 F:      Documentation/devicetree/bindings/media/renesas,fdp1.yaml
12537 F:      drivers/media/platform/renesas/rcar_fdp1.c
12538
12539 MEDIA DRIVERS FOR RENESAS - VIN
12540 M:      Niklas Söderlund <niklas.soderlund@ragnatech.se>
12541 L:      linux-media@vger.kernel.org
12542 L:      linux-renesas-soc@vger.kernel.org
12543 S:      Supported
12544 T:      git git://linuxtv.org/media_tree.git
12545 F:      Documentation/devicetree/bindings/media/renesas,csi2.yaml
12546 F:      Documentation/devicetree/bindings/media/renesas,isp.yaml
12547 F:      Documentation/devicetree/bindings/media/renesas,vin.yaml
12548 F:      drivers/media/platform/renesas/rcar-isp.c
12549 F:      drivers/media/platform/renesas/rcar-vin/
12550
12551 MEDIA DRIVERS FOR RENESAS - VSP1
12552 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12553 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
12554 L:      linux-media@vger.kernel.org
12555 L:      linux-renesas-soc@vger.kernel.org
12556 S:      Supported
12557 T:      git git://linuxtv.org/media_tree.git
12558 F:      Documentation/devicetree/bindings/media/renesas,vsp1.yaml
12559 F:      drivers/media/platform/renesas/vsp1/
12560
12561 MEDIA DRIVERS FOR ST STV0910 DEMODULATOR ICs
12562 L:      linux-media@vger.kernel.org
12563 S:      Orphan
12564 W:      https://linuxtv.org
12565 T:      git git://linuxtv.org/media_tree.git
12566 F:      drivers/media/dvb-frontends/stv0910*
12567
12568 MEDIA DRIVERS FOR ST STV6111 TUNER ICs
12569 L:      linux-media@vger.kernel.org
12570 S:      Orphan
12571 W:      https://linuxtv.org
12572 T:      git git://linuxtv.org/media_tree.git
12573 F:      drivers/media/dvb-frontends/stv6111*
12574
12575 MEDIA DRIVERS FOR STM32 - DCMI
12576 M:      Hugues Fruchet <hugues.fruchet@foss.st.com>
12577 L:      linux-media@vger.kernel.org
12578 S:      Supported
12579 T:      git git://linuxtv.org/media_tree.git
12580 F:      Documentation/devicetree/bindings/media/st,stm32-dcmi.yaml
12581 F:      drivers/media/platform/st/stm32/stm32-dcmi.c
12582
12583 MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
12584 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
12585 L:      linux-media@vger.kernel.org
12586 S:      Maintained
12587 W:      https://linuxtv.org
12588 Q:      http://patchwork.kernel.org/project/linux-media/list/
12589 T:      git git://linuxtv.org/media_tree.git
12590 F:      Documentation/admin-guide/media/
12591 F:      Documentation/devicetree/bindings/media/
12592 F:      Documentation/driver-api/media/
12593 F:      Documentation/userspace-api/media/
12594 F:      drivers/media/
12595 F:      drivers/staging/media/
12596 F:      include/linux/platform_data/media/
12597 F:      include/media/
12598 F:      include/uapi/linux/dvb/
12599 F:      include/uapi/linux/ivtv*
12600 F:      include/uapi/linux/media.h
12601 F:      include/uapi/linux/meye.h
12602 F:      include/uapi/linux/uvcvideo.h
12603 F:      include/uapi/linux/v4l2-*
12604 F:      include/uapi/linux/videodev2.h
12605
12606 MEDIATEK BLUETOOTH DRIVER
12607 M:      Sean Wang <sean.wang@mediatek.com>
12608 L:      linux-bluetooth@vger.kernel.org
12609 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
12610 S:      Maintained
12611 F:      Documentation/devicetree/bindings/net/mediatek-bluetooth.txt
12612 F:      drivers/bluetooth/btmtkuart.c
12613
12614 MEDIATEK BOARD LEVEL SHUTDOWN DRIVERS
12615 M:      Sean Wang <sean.wang@mediatek.com>
12616 L:      linux-pm@vger.kernel.org
12617 S:      Maintained
12618 F:      Documentation/devicetree/bindings/power/reset/mt6323-poweroff.txt
12619 F:      drivers/power/reset/mt6323-poweroff.c
12620
12621 MEDIATEK CIR DRIVER
12622 M:      Sean Wang <sean.wang@mediatek.com>
12623 S:      Maintained
12624 F:      drivers/media/rc/mtk-cir.c
12625
12626 MEDIATEK DMA DRIVER
12627 M:      Sean Wang <sean.wang@mediatek.com>
12628 L:      dmaengine@vger.kernel.org
12629 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12630 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
12631 S:      Maintained
12632 F:      Documentation/devicetree/bindings/dma/mtk-*
12633 F:      drivers/dma/mediatek/
12634
12635 MEDIATEK ETHERNET DRIVER
12636 M:      Felix Fietkau <nbd@nbd.name>
12637 M:      John Crispin <john@phrozen.org>
12638 M:      Sean Wang <sean.wang@mediatek.com>
12639 M:      Mark Lee <Mark-MC.Lee@mediatek.com>
12640 L:      netdev@vger.kernel.org
12641 S:      Maintained
12642 F:      drivers/net/ethernet/mediatek/
12643
12644 MEDIATEK I2C CONTROLLER DRIVER
12645 M:      Qii Wang <qii.wang@mediatek.com>
12646 L:      linux-i2c@vger.kernel.org
12647 S:      Maintained
12648 F:      Documentation/devicetree/bindings/i2c/i2c-mt65xx.yaml
12649 F:      drivers/i2c/busses/i2c-mt65xx.c
12650
12651 MEDIATEK IOMMU DRIVER
12652 M:      Yong Wu <yong.wu@mediatek.com>
12653 L:      iommu@lists.linux.dev
12654 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
12655 S:      Supported
12656 F:      Documentation/devicetree/bindings/iommu/mediatek*
12657 F:      drivers/iommu/mtk_iommu*
12658 F:      include/dt-bindings/memory/mt*-port.h
12659
12660 MEDIATEK JPEG DRIVER
12661 M:      Bin Liu <bin.liu@mediatek.com>
12662 S:      Supported
12663 F:      Documentation/devicetree/bindings/media/mediatek-jpeg-*.yaml
12664 F:      drivers/media/platform/mediatek/jpeg/
12665
12666 MEDIATEK MDP DRIVER
12667 M:      Minghsiu Tsai <minghsiu.tsai@mediatek.com>
12668 M:      Houlong Wei <houlong.wei@mediatek.com>
12669 M:      Andrew-CT Chen <andrew-ct.chen@mediatek.com>
12670 S:      Supported
12671 F:      Documentation/devicetree/bindings/media/mediatek-mdp.txt
12672 F:      drivers/media/platform/mediatek/mdp/
12673 F:      drivers/media/platform/mediatek/vpu/
12674
12675 MEDIATEK MEDIA DRIVER
12676 M:      Tiffany Lin <tiffany.lin@mediatek.com>
12677 M:      Andrew-CT Chen <andrew-ct.chen@mediatek.com>
12678 S:      Supported
12679 F:      Documentation/devicetree/bindings/media/mediatek,vcodec*.yaml
12680 F:      Documentation/devicetree/bindings/media/mediatek-vpu.txt
12681 F:      drivers/media/platform/mediatek/vcodec/
12682 F:      drivers/media/platform/mediatek/vpu/
12683
12684 MEDIATEK MMC/SD/SDIO DRIVER
12685 M:      Chaotian Jing <chaotian.jing@mediatek.com>
12686 S:      Maintained
12687 F:      Documentation/devicetree/bindings/mmc/mtk-sd.yaml
12688 F:      drivers/mmc/host/mtk-sd.c
12689
12690 MEDIATEK MT76 WIRELESS LAN DRIVER
12691 M:      Felix Fietkau <nbd@nbd.name>
12692 M:      Lorenzo Bianconi <lorenzo@kernel.org>
12693 M:      Ryder Lee <ryder.lee@mediatek.com>
12694 R:      Shayne Chen <shayne.chen@mediatek.com>
12695 R:      Sean Wang <sean.wang@mediatek.com>
12696 L:      linux-wireless@vger.kernel.org
12697 S:      Maintained
12698 F:      Documentation/devicetree/bindings/net/wireless/mediatek,mt76.yaml
12699 F:      drivers/net/wireless/mediatek/mt76/
12700
12701 MEDIATEK MT7601U WIRELESS LAN DRIVER
12702 M:      Jakub Kicinski <kubakici@wp.pl>
12703 L:      linux-wireless@vger.kernel.org
12704 S:      Maintained
12705 F:      drivers/net/wireless/mediatek/mt7601u/
12706
12707 MEDIATEK MT7621 CLOCK DRIVER
12708 M:      Sergio Paracuellos <sergio.paracuellos@gmail.com>
12709 S:      Maintained
12710 F:      Documentation/devicetree/bindings/clock/mediatek,mt7621-sysc.yaml
12711 F:      drivers/clk/ralink/clk-mt7621.c
12712
12713 MEDIATEK MT7621/28/88 I2C DRIVER
12714 M:      Stefan Roese <sr@denx.de>
12715 L:      linux-i2c@vger.kernel.org
12716 S:      Maintained
12717 F:      Documentation/devicetree/bindings/i2c/i2c-mt7621.txt
12718 F:      drivers/i2c/busses/i2c-mt7621.c
12719
12720 MEDIATEK MT7621 PCIE CONTROLLER DRIVER
12721 M:      Sergio Paracuellos <sergio.paracuellos@gmail.com>
12722 S:      Maintained
12723 F:      Documentation/devicetree/bindings/pci/mediatek,mt7621-pcie.yaml
12724 F:      drivers/pci/controller/pcie-mt7621.c
12725
12726 MEDIATEK MT7621 PHY PCI DRIVER
12727 M:      Sergio Paracuellos <sergio.paracuellos@gmail.com>
12728 S:      Maintained
12729 F:      Documentation/devicetree/bindings/phy/mediatek,mt7621-pci-phy.yaml
12730 F:      drivers/phy/ralink/phy-mt7621-pci.c
12731
12732 MEDIATEK NAND CONTROLLER DRIVER
12733 L:      linux-mtd@lists.infradead.org
12734 S:      Orphan
12735 F:      Documentation/devicetree/bindings/mtd/mtk-nand.txt
12736 F:      drivers/mtd/nand/raw/mtk_*
12737
12738 MEDIATEK PMIC LED DRIVER
12739 M:      Sean Wang <sean.wang@mediatek.com>
12740 S:      Maintained
12741 F:      Documentation/devicetree/bindings/leds/leds-mt6323.txt
12742 F:      drivers/leds/leds-mt6323.c
12743
12744 MEDIATEK RANDOM NUMBER GENERATOR SUPPORT
12745 M:      Sean Wang <sean.wang@mediatek.com>
12746 S:      Maintained
12747 F:      drivers/char/hw_random/mtk-rng.c
12748
12749 MEDIATEK SMI DRIVER
12750 M:      Yong Wu <yong.wu@mediatek.com>
12751 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
12752 S:      Supported
12753 F:      Documentation/devicetree/bindings/memory-controllers/mediatek,smi*
12754 F:      drivers/memory/mtk-smi.c
12755 F:      include/soc/mediatek/smi.h
12756
12757 MEDIATEK SWITCH DRIVER
12758 M:      Sean Wang <sean.wang@mediatek.com>
12759 M:      Landen Chao <Landen.Chao@mediatek.com>
12760 M:      DENG Qingfang <dqfext@gmail.com>
12761 L:      netdev@vger.kernel.org
12762 S:      Maintained
12763 F:      drivers/net/dsa/mt7530.*
12764 F:      net/dsa/tag_mtk.c
12765
12766 MEDIATEK T7XX 5G WWAN MODEM DRIVER
12767 M:      Chandrashekar Devegowda <chandrashekar.devegowda@intel.com>
12768 M:      Intel Corporation <linuxwwan@intel.com>
12769 R:      Chiranjeevi Rapolu <chiranjeevi.rapolu@linux.intel.com>
12770 R:      Liu Haijun <haijun.liu@mediatek.com>
12771 R:      M Chetan Kumar <m.chetan.kumar@linux.intel.com>
12772 R:      Ricardo Martinez <ricardo.martinez@linux.intel.com>
12773 L:      netdev@vger.kernel.org
12774 S:      Supported
12775 F:      drivers/net/wwan/t7xx/
12776
12777 MEDIATEK USB3 DRD IP DRIVER
12778 M:      Chunfeng Yun <chunfeng.yun@mediatek.com>
12779 L:      linux-usb@vger.kernel.org
12780 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12781 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
12782 S:      Maintained
12783 F:      Documentation/devicetree/bindings/usb/mediatek,*
12784 F:      drivers/usb/host/xhci-mtk*
12785 F:      drivers/usb/mtu3/
12786
12787 MEGACHIPS STDPXXXX-GE-B850V3-FW LVDS/DP++ BRIDGES
12788 M:      Peter Senna Tschudin <peter.senna@gmail.com>
12789 M:      Martin Donnelly <martin.donnelly@ge.com>
12790 M:      Martyn Welch <martyn.welch@collabora.co.uk>
12791 S:      Maintained
12792 F:      Documentation/devicetree/bindings/display/bridge/megachips-stdpxxxx-ge-b850v3-fw.txt
12793 F:      drivers/gpu/drm/bridge/megachips-stdpxxxx-ge-b850v3-fw.c
12794
12795 MEGARAID SCSI/SAS DRIVERS
12796 M:      Kashyap Desai <kashyap.desai@broadcom.com>
12797 M:      Sumit Saxena <sumit.saxena@broadcom.com>
12798 M:      Shivasharan S <shivasharan.srikanteshwara@broadcom.com>
12799 L:      megaraidlinux.pdl@broadcom.com
12800 L:      linux-scsi@vger.kernel.org
12801 S:      Maintained
12802 W:      http://www.avagotech.com/support/
12803 F:      Documentation/scsi/megaraid.rst
12804 F:      drivers/scsi/megaraid.*
12805 F:      drivers/scsi/megaraid/
12806
12807 MELEXIS MLX90614 DRIVER
12808 M:      Crt Mori <cmo@melexis.com>
12809 L:      linux-iio@vger.kernel.org
12810 S:      Supported
12811 W:      http://www.melexis.com
12812 F:      drivers/iio/temperature/mlx90614.c
12813
12814 MELEXIS MLX90632 DRIVER
12815 M:      Crt Mori <cmo@melexis.com>
12816 L:      linux-iio@vger.kernel.org
12817 S:      Supported
12818 W:      http://www.melexis.com
12819 F:      drivers/iio/temperature/mlx90632.c
12820
12821 MELFAS MIP4 TOUCHSCREEN DRIVER
12822 M:      Sangwon Jee <jeesw@melfas.com>
12823 S:      Supported
12824 W:      http://www.melfas.com
12825 F:      Documentation/devicetree/bindings/input/touchscreen/melfas_mip4.txt
12826 F:      drivers/input/touchscreen/melfas_mip4.c
12827
12828 MELLANOX BLUEFIELD I2C DRIVER
12829 M:      Khalil Blaiech <kblaiech@nvidia.com>
12830 L:      linux-i2c@vger.kernel.org
12831 S:      Supported
12832 F:      Documentation/devicetree/bindings/i2c/mellanox,i2c-mlxbf.yaml
12833 F:      drivers/i2c/busses/i2c-mlxbf.c
12834
12835 MELLANOX ETHERNET DRIVER (mlx4_en)
12836 M:      Tariq Toukan <tariqt@nvidia.com>
12837 L:      netdev@vger.kernel.org
12838 S:      Supported
12839 W:      http://www.mellanox.com
12840 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12841 F:      drivers/net/ethernet/mellanox/mlx4/en_*
12842
12843 MELLANOX ETHERNET DRIVER (mlx5e)
12844 M:      Saeed Mahameed <saeedm@nvidia.com>
12845 L:      netdev@vger.kernel.org
12846 S:      Supported
12847 W:      http://www.mellanox.com
12848 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12849 F:      drivers/net/ethernet/mellanox/mlx5/core/en_*
12850
12851 MELLANOX ETHERNET INNOVA DRIVERS
12852 R:      Boris Pismenny <borisp@nvidia.com>
12853 L:      netdev@vger.kernel.org
12854 S:      Supported
12855 W:      http://www.mellanox.com
12856 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12857 F:      drivers/net/ethernet/mellanox/mlx5/core/en_accel/*
12858 F:      drivers/net/ethernet/mellanox/mlx5/core/fpga/*
12859 F:      include/linux/mlx5/mlx5_ifc_fpga.h
12860
12861 MELLANOX ETHERNET SWITCH DRIVERS
12862 M:      Ido Schimmel <idosch@nvidia.com>
12863 M:      Petr Machata <petrm@nvidia.com>
12864 L:      netdev@vger.kernel.org
12865 S:      Supported
12866 W:      http://www.mellanox.com
12867 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12868 F:      drivers/net/ethernet/mellanox/mlxsw/
12869 F:      tools/testing/selftests/drivers/net/mlxsw/
12870
12871 MELLANOX FIRMWARE FLASH LIBRARY (mlxfw)
12872 M:      mlxsw@nvidia.com
12873 L:      netdev@vger.kernel.org
12874 S:      Supported
12875 W:      http://www.mellanox.com
12876 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12877 F:      drivers/net/ethernet/mellanox/mlxfw/
12878
12879 MELLANOX HARDWARE PLATFORM SUPPORT
12880 M:      Hans de Goede <hdegoede@redhat.com>
12881 M:      Mark Gross <markgross@kernel.org>
12882 M:      Vadim Pasternak <vadimp@nvidia.com>
12883 L:      platform-driver-x86@vger.kernel.org
12884 S:      Supported
12885 F:      Documentation/ABI/testing/sysfs-platform-mellanox-bootctl
12886 F:      drivers/platform/mellanox/
12887 F:      include/linux/platform_data/mlxreg.h
12888
12889 MELLANOX MLX4 core VPI driver
12890 M:      Tariq Toukan <tariqt@nvidia.com>
12891 L:      netdev@vger.kernel.org
12892 L:      linux-rdma@vger.kernel.org
12893 S:      Supported
12894 W:      http://www.mellanox.com
12895 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12896 F:      drivers/net/ethernet/mellanox/mlx4/
12897 F:      include/linux/mlx4/
12898
12899 MELLANOX MLX4 IB driver
12900 M:      Yishai Hadas <yishaih@nvidia.com>
12901 L:      linux-rdma@vger.kernel.org
12902 S:      Supported
12903 W:      http://www.mellanox.com
12904 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
12905 F:      drivers/infiniband/hw/mlx4/
12906 F:      include/linux/mlx4/
12907 F:      include/uapi/rdma/mlx4-abi.h
12908
12909 MELLANOX MLX5 core VPI driver
12910 M:      Saeed Mahameed <saeedm@nvidia.com>
12911 M:      Leon Romanovsky <leonro@nvidia.com>
12912 L:      netdev@vger.kernel.org
12913 L:      linux-rdma@vger.kernel.org
12914 S:      Supported
12915 W:      http://www.mellanox.com
12916 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12917 F:      Documentation/networking/device_drivers/ethernet/mellanox/
12918 F:      drivers/net/ethernet/mellanox/mlx5/core/
12919 F:      include/linux/mlx5/
12920
12921 MELLANOX MLX5 IB driver
12922 M:      Leon Romanovsky <leonro@nvidia.com>
12923 L:      linux-rdma@vger.kernel.org
12924 S:      Supported
12925 W:      http://www.mellanox.com
12926 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
12927 F:      drivers/infiniband/hw/mlx5/
12928 F:      include/linux/mlx5/
12929 F:      include/uapi/rdma/mlx5-abi.h
12930
12931 MELLANOX MLXCPLD I2C AND MUX DRIVER
12932 M:      Vadim Pasternak <vadimp@nvidia.com>
12933 M:      Michael Shych <michaelsh@nvidia.com>
12934 L:      linux-i2c@vger.kernel.org
12935 S:      Supported
12936 F:      Documentation/i2c/busses/i2c-mlxcpld.rst
12937 F:      drivers/i2c/busses/i2c-mlxcpld.c
12938 F:      drivers/i2c/muxes/i2c-mux-mlxcpld.c
12939
12940 MELLANOX MLXCPLD LED DRIVER
12941 M:      Vadim Pasternak <vadimp@nvidia.com>
12942 L:      linux-leds@vger.kernel.org
12943 S:      Supported
12944 F:      Documentation/leds/leds-mlxcpld.rst
12945 F:      drivers/leds/leds-mlxcpld.c
12946 F:      drivers/leds/leds-mlxreg.c
12947
12948 MELLANOX PLATFORM DRIVER
12949 M:      Vadim Pasternak <vadimp@nvidia.com>
12950 L:      platform-driver-x86@vger.kernel.org
12951 S:      Supported
12952 F:      drivers/platform/x86/mlx-platform.c
12953
12954 MEMBARRIER SUPPORT
12955 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
12956 M:      "Paul E. McKenney" <paulmck@kernel.org>
12957 L:      linux-kernel@vger.kernel.org
12958 S:      Supported
12959 F:      arch/powerpc/include/asm/membarrier.h
12960 F:      include/uapi/linux/membarrier.h
12961 F:      kernel/sched/membarrier.c
12962
12963 MEMBLOCK
12964 M:      Mike Rapoport <rppt@kernel.org>
12965 L:      linux-mm@kvack.org
12966 S:      Maintained
12967 F:      Documentation/core-api/boot-time-mm.rst
12968 F:      include/linux/memblock.h
12969 F:      mm/memblock.c
12970 F:      tools/testing/memblock/
12971
12972 MEMORY CONTROLLER DRIVERS
12973 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
12974 L:      linux-kernel@vger.kernel.org
12975 S:      Maintained
12976 B:      mailto:krzysztof.kozlowski@linaro.org
12977 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/krzk/linux-mem-ctrl.git
12978 F:      Documentation/devicetree/bindings/memory-controllers/
12979 F:      drivers/memory/
12980 F:      include/dt-bindings/memory/
12981 F:      include/memory/
12982
12983 MEMORY FREQUENCY SCALING DRIVERS FOR NVIDIA TEGRA
12984 M:      Dmitry Osipenko <digetx@gmail.com>
12985 L:      linux-pm@vger.kernel.org
12986 L:      linux-tegra@vger.kernel.org
12987 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
12988 S:      Maintained
12989 F:      drivers/devfreq/tegra30-devfreq.c
12990
12991 MEMORY MANAGEMENT
12992 M:      Andrew Morton <akpm@linux-foundation.org>
12993 L:      linux-mm@kvack.org
12994 S:      Maintained
12995 W:      http://www.linux-mm.org
12996 T:      git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm
12997 T:      quilt git://git.kernel.org/pub/scm/linux/kernel/git/akpm/25-new
12998 F:      include/linux/gfp.h
12999 F:      include/linux/memory_hotplug.h
13000 F:      include/linux/mm.h
13001 F:      include/linux/mmzone.h
13002 F:      include/linux/pagewalk.h
13003 F:      include/linux/vmalloc.h
13004 F:      mm/
13005 F:      tools/testing/selftests/vm/
13006
13007 MEMORY HOT(UN)PLUG
13008 M:      David Hildenbrand <david@redhat.com>
13009 M:      Oscar Salvador <osalvador@suse.de>
13010 L:      linux-mm@kvack.org
13011 S:      Maintained
13012 F:      Documentation/admin-guide/mm/memory-hotplug.rst
13013 F:      Documentation/core-api/memory-hotplug.rst
13014 F:      drivers/base/memory.c
13015 F:      include/linux/memory_hotplug.h
13016 F:      mm/memory_hotplug.c
13017 F:      tools/testing/selftests/memory-hotplug/
13018
13019 MEMORY TECHNOLOGY DEVICES (MTD)
13020 M:      Miquel Raynal <miquel.raynal@bootlin.com>
13021 M:      Richard Weinberger <richard@nod.at>
13022 M:      Vignesh Raghavendra <vigneshr@ti.com>
13023 L:      linux-mtd@lists.infradead.org
13024 S:      Maintained
13025 W:      http://www.linux-mtd.infradead.org/
13026 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
13027 C:      irc://irc.oftc.net/mtd
13028 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/fixes
13029 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/next
13030 F:      Documentation/devicetree/bindings/mtd/
13031 F:      drivers/mtd/
13032 F:      include/linux/mtd/
13033 F:      include/uapi/mtd/
13034
13035 MEN A21 WATCHDOG DRIVER
13036 M:      Johannes Thumshirn <morbidrsa@gmail.com>
13037 L:      linux-watchdog@vger.kernel.org
13038 S:      Maintained
13039 F:      drivers/watchdog/mena21_wdt.c
13040
13041 MEN CHAMELEON BUS (mcb)
13042 M:      Johannes Thumshirn <morbidrsa@gmail.com>
13043 S:      Maintained
13044 F:      Documentation/driver-api/men-chameleon-bus.rst
13045 F:      drivers/mcb/
13046 F:      include/linux/mcb.h
13047
13048 MEN F21BMC (Board Management Controller)
13049 M:      Andreas Werner <andreas.werner@men.de>
13050 S:      Supported
13051 F:      Documentation/hwmon/menf21bmc.rst
13052 F:      drivers/hwmon/menf21bmc_hwmon.c
13053 F:      drivers/leds/leds-menf21bmc.c
13054 F:      drivers/mfd/menf21bmc.c
13055 F:      drivers/watchdog/menf21bmc_wdt.c
13056
13057 MEN Z069 WATCHDOG DRIVER
13058 M:      Johannes Thumshirn <jth@kernel.org>
13059 L:      linux-watchdog@vger.kernel.org
13060 S:      Maintained
13061 F:      drivers/watchdog/menz69_wdt.c
13062
13063 MESON AO CEC DRIVER FOR AMLOGIC SOCS
13064 M:      Neil Armstrong <narmstrong@baylibre.com>
13065 L:      linux-media@vger.kernel.org
13066 L:      linux-amlogic@lists.infradead.org
13067 S:      Supported
13068 W:      http://linux-meson.com/
13069 T:      git git://linuxtv.org/media_tree.git
13070 F:      Documentation/devicetree/bindings/media/amlogic,meson-gx-ao-cec.yaml
13071 F:      drivers/media/cec/platform/meson/ao-cec-g12a.c
13072 F:      drivers/media/cec/platform/meson/ao-cec.c
13073
13074 MESON GE2D DRIVER FOR AMLOGIC SOCS
13075 M:      Neil Armstrong <narmstrong@baylibre.com>
13076 L:      linux-media@vger.kernel.org
13077 L:      linux-amlogic@lists.infradead.org
13078 S:      Supported
13079 T:      git git://linuxtv.org/media_tree.git
13080 F:      Documentation/devicetree/bindings/media/amlogic,axg-ge2d.yaml
13081 F:      drivers/media/platform/amlogic/meson-ge2d/
13082
13083 MESON NAND CONTROLLER DRIVER FOR AMLOGIC SOCS
13084 M:      Liang Yang <liang.yang@amlogic.com>
13085 L:      linux-mtd@lists.infradead.org
13086 S:      Maintained
13087 F:      Documentation/devicetree/bindings/mtd/amlogic,meson-nand.txt
13088 F:      drivers/mtd/nand/raw/meson_*
13089
13090 MESON VIDEO DECODER DRIVER FOR AMLOGIC SOCS
13091 M:      Neil Armstrong <narmstrong@baylibre.com>
13092 L:      linux-media@vger.kernel.org
13093 L:      linux-amlogic@lists.infradead.org
13094 S:      Supported
13095 T:      git git://linuxtv.org/media_tree.git
13096 F:      Documentation/devicetree/bindings/media/amlogic,gx-vdec.yaml
13097 F:      drivers/staging/media/meson/vdec/
13098
13099 METHODE UDPU SUPPORT
13100 M:      Vladimir Vid <vladimir.vid@sartura.hr>
13101 S:      Maintained
13102 F:      arch/arm64/boot/dts/marvell/armada-3720-uDPU.dts
13103
13104 MHI BUS
13105 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
13106 R:      Hemant Kumar <quic_hemantk@quicinc.com>
13107 L:      mhi@lists.linux.dev
13108 L:      linux-arm-msm@vger.kernel.org
13109 S:      Maintained
13110 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mani/mhi.git
13111 F:      Documentation/ABI/stable/sysfs-bus-mhi
13112 F:      Documentation/mhi/
13113 F:      drivers/bus/mhi/
13114 F:      include/linux/mhi.h
13115
13116 MICROBLAZE ARCHITECTURE
13117 M:      Michal Simek <monstr@monstr.eu>
13118 S:      Supported
13119 W:      http://www.monstr.eu/fdt/
13120 T:      git git://git.monstr.eu/linux-2.6-microblaze.git
13121 F:      arch/microblaze/
13122
13123 MICROCHIP AT91 DMA DRIVERS
13124 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
13125 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
13126 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13127 L:      dmaengine@vger.kernel.org
13128 S:      Supported
13129 F:      Documentation/devicetree/bindings/dma/atmel-dma.txt
13130 F:      drivers/dma/at_hdmac.c
13131 F:      drivers/dma/at_hdmac_regs.h
13132 F:      drivers/dma/at_xdmac.c
13133 F:      include/dt-bindings/dma/at91.h
13134
13135 MICROCHIP AT91 SERIAL DRIVER
13136 M:      Richard Genoud <richard.genoud@gmail.com>
13137 S:      Maintained
13138 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
13139 F:      drivers/tty/serial/atmel_serial.c
13140 F:      drivers/tty/serial/atmel_serial.h
13141
13142 MICROCHIP AT91 USART MFD DRIVER
13143 M:      Radu Pirea <radu_nicolae.pirea@upb.ro>
13144 L:      linux-kernel@vger.kernel.org
13145 S:      Supported
13146 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
13147 F:      drivers/mfd/at91-usart.c
13148 F:      include/dt-bindings/mfd/at91-usart.h
13149
13150 MICROCHIP AT91 USART SPI DRIVER
13151 M:      Radu Pirea <radu_nicolae.pirea@upb.ro>
13152 L:      linux-spi@vger.kernel.org
13153 S:      Supported
13154 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
13155 F:      drivers/spi/spi-at91-usart.c
13156
13157 MICROCHIP AUDIO ASOC DRIVERS
13158 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
13159 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
13160 S:      Supported
13161 F:      sound/soc/atmel
13162
13163 MICROCHIP CSI2DC DRIVER
13164 M:      Eugen Hristev <eugen.hristev@microchip.com>
13165 L:      linux-media@vger.kernel.org
13166 S:      Supported
13167 F:      Documentation/devicetree/bindings/media/microchip,csi2dc.yaml
13168 F:      drivers/media/platform/atmel/microchip-csi2dc.c
13169
13170 MICROCHIP ECC DRIVER
13171 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
13172 L:      linux-crypto@vger.kernel.org
13173 S:      Maintained
13174 F:      drivers/crypto/atmel-ecc.*
13175
13176 MICROCHIP EIC DRIVER
13177 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
13178 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13179 S:      Supported
13180 F:      drivers/irqchip/irq-mchp-eic.c
13181
13182 MICROCHIP I2C DRIVER
13183 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
13184 L:      linux-i2c@vger.kernel.org
13185 S:      Supported
13186 F:      drivers/i2c/busses/i2c-at91-*.c
13187 F:      drivers/i2c/busses/i2c-at91.h
13188
13189 MICROCHIP ISC DRIVER
13190 M:      Eugen Hristev <eugen.hristev@microchip.com>
13191 L:      linux-media@vger.kernel.org
13192 S:      Supported
13193 F:      Documentation/devicetree/bindings/media/atmel,isc.yaml
13194 F:      Documentation/devicetree/bindings/media/microchip,xisc.yaml
13195 F:      drivers/media/platform/atmel/atmel-isc*
13196 F:      drivers/media/platform/atmel/atmel-sama*-isc*
13197 F:      include/linux/atmel-isc-media.h
13198
13199 MICROCHIP ISI DRIVER
13200 M:      Eugen Hristev <eugen.hristev@microchip.com>
13201 L:      linux-media@vger.kernel.org
13202 S:      Supported
13203 F:      drivers/media/platform/atmel/atmel-isi.c
13204 F:      drivers/media/platform/atmel/atmel-isi.h
13205
13206 MICROCHIP KSZ SERIES ETHERNET SWITCH DRIVER
13207 M:      Woojung Huh <woojung.huh@microchip.com>
13208 M:      UNGLinuxDriver@microchip.com
13209 L:      netdev@vger.kernel.org
13210 S:      Maintained
13211 F:      Documentation/devicetree/bindings/net/dsa/microchip,ksz.yaml
13212 F:      drivers/net/dsa/microchip/*
13213 F:      include/linux/platform_data/microchip-ksz.h
13214 F:      net/dsa/tag_ksz.c
13215
13216 MICROCHIP LAN87xx/LAN937x T1 PHY DRIVER
13217 M:      Arun Ramadoss <arun.ramadoss@microchip.com>
13218 R:      UNGLinuxDriver@microchip.com
13219 L:      netdev@vger.kernel.org
13220 S:      Maintained
13221 F:      drivers/net/phy/microchip_t1.c
13222
13223 MICROCHIP LAN743X ETHERNET DRIVER
13224 M:      Bryan Whitehead <bryan.whitehead@microchip.com>
13225 M:      UNGLinuxDriver@microchip.com
13226 L:      netdev@vger.kernel.org
13227 S:      Maintained
13228 F:      drivers/net/ethernet/microchip/lan743x_*
13229
13230 MICROCHIP LAN966X ETHERNET DRIVER
13231 M:      Horatiu Vultur <horatiu.vultur@microchip.com>
13232 M:      UNGLinuxDriver@microchip.com
13233 L:      netdev@vger.kernel.org
13234 S:      Maintained
13235 F:      drivers/net/ethernet/microchip/lan966x/*
13236
13237 MICROCHIP LCDFB DRIVER
13238 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
13239 L:      linux-fbdev@vger.kernel.org
13240 S:      Maintained
13241 F:      drivers/video/fbdev/atmel_lcdfb.c
13242 F:      include/video/atmel_lcdc.h
13243
13244 MICROCHIP MCP16502 PMIC DRIVER
13245 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
13246 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13247 S:      Supported
13248 F:      Documentation/devicetree/bindings/regulator/mcp16502-regulator.txt
13249 F:      drivers/regulator/mcp16502.c
13250
13251 MICROCHIP MCP3911 ADC DRIVER
13252 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
13253 M:      Kent Gustavsson <kent@minoris.se>
13254 L:      linux-iio@vger.kernel.org
13255 S:      Supported
13256 F:      Documentation/devicetree/bindings/iio/adc/microchip,mcp3911.yaml
13257 F:      drivers/iio/adc/mcp3911.c
13258
13259 MICROCHIP MMC/SD/SDIO MCI DRIVER
13260 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
13261 S:      Maintained
13262 F:      drivers/mmc/host/atmel-mci.c
13263
13264 MICROCHIP NAND DRIVER
13265 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
13266 L:      linux-mtd@lists.infradead.org
13267 S:      Supported
13268 F:      Documentation/devicetree/bindings/mtd/atmel-nand.txt
13269 F:      drivers/mtd/nand/raw/atmel/*
13270
13271 MICROCHIP PWM DRIVER
13272 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
13273 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13274 L:      linux-pwm@vger.kernel.org
13275 S:      Supported
13276 F:      Documentation/devicetree/bindings/pwm/atmel,at91sam-pwm.yaml
13277 F:      drivers/pwm/pwm-atmel.c
13278
13279 MICROCHIP SAMA5D2-COMPATIBLE ADC DRIVER
13280 M:      Eugen Hristev <eugen.hristev@microchip.com>
13281 L:      linux-iio@vger.kernel.org
13282 S:      Supported
13283 F:      Documentation/devicetree/bindings/iio/adc/atmel,sama5d2-adc.yaml
13284 F:      drivers/iio/adc/at91-sama5d2_adc.c
13285 F:      include/dt-bindings/iio/adc/at91-sama5d2_adc.h
13286
13287 MICROCHIP SAMA5D2-COMPATIBLE SHUTDOWN CONTROLLER
13288 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
13289 S:      Supported
13290 F:      drivers/power/reset/at91-sama5d2_shdwc.c
13291
13292 MICROCHIP SPI DRIVER
13293 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
13294 S:      Supported
13295 F:      drivers/spi/spi-atmel.*
13296
13297 MICROCHIP SSC DRIVER
13298 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
13299 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13300 S:      Supported
13301 F:      drivers/misc/atmel-ssc.c
13302 F:      include/linux/atmel-ssc.h
13303
13304 MICROCHIP USB251XB DRIVER
13305 M:      Richard Leitner <richard.leitner@skidata.com>
13306 L:      linux-usb@vger.kernel.org
13307 S:      Maintained
13308 F:      Documentation/devicetree/bindings/usb/usb251xb.txt
13309 F:      drivers/usb/misc/usb251xb.c
13310
13311 MICROCHIP USBA UDC DRIVER
13312 M:      Cristian Birsan <cristian.birsan@microchip.com>
13313 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13314 S:      Supported
13315 F:      drivers/usb/gadget/udc/atmel_usba_udc.*
13316
13317 MICROCHIP WILC1000 WIFI DRIVER
13318 M:      Ajay Singh <ajay.kathat@microchip.com>
13319 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
13320 L:      linux-wireless@vger.kernel.org
13321 S:      Supported
13322 F:      drivers/net/wireless/microchip/wilc1000/
13323
13324 MICROSEMI MIPS SOCS
13325 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
13326 M:      UNGLinuxDriver@microchip.com
13327 L:      linux-mips@vger.kernel.org
13328 S:      Supported
13329 F:      Documentation/devicetree/bindings/mips/mscc.txt
13330 F:      Documentation/devicetree/bindings/power/reset/ocelot-reset.txt
13331 F:      arch/mips/boot/dts/mscc/
13332 F:      arch/mips/configs/generic/board-ocelot.config
13333 F:      arch/mips/generic/board-ocelot.c
13334
13335 MICROSEMI SMART ARRAY SMARTPQI DRIVER (smartpqi)
13336 M:      Don Brace <don.brace@microchip.com>
13337 L:      storagedev@microchip.com
13338 L:      linux-scsi@vger.kernel.org
13339 S:      Supported
13340 F:      Documentation/scsi/smartpqi.rst
13341 F:      drivers/scsi/smartpqi/Kconfig
13342 F:      drivers/scsi/smartpqi/Makefile
13343 F:      drivers/scsi/smartpqi/smartpqi*.[ch]
13344 F:      include/linux/cciss*.h
13345 F:      include/uapi/linux/cciss*.h
13346
13347 MICROSOFT SURFACE BATTERY AND AC DRIVERS
13348 M:      Maximilian Luz <luzmaximilian@gmail.com>
13349 L:      linux-pm@vger.kernel.org
13350 L:      platform-driver-x86@vger.kernel.org
13351 S:      Maintained
13352 F:      drivers/power/supply/surface_battery.c
13353 F:      drivers/power/supply/surface_charger.c
13354
13355 MICROSOFT SURFACE DTX DRIVER
13356 M:      Maximilian Luz <luzmaximilian@gmail.com>
13357 L:      platform-driver-x86@vger.kernel.org
13358 S:      Maintained
13359 F:      Documentation/driver-api/surface_aggregator/clients/dtx.rst
13360 F:      drivers/platform/surface/surface_dtx.c
13361 F:      include/uapi/linux/surface_aggregator/dtx.h
13362
13363 MICROSOFT SURFACE GPE LID SUPPORT DRIVER
13364 M:      Maximilian Luz <luzmaximilian@gmail.com>
13365 L:      platform-driver-x86@vger.kernel.org
13366 S:      Maintained
13367 F:      drivers/platform/surface/surface_gpe.c
13368
13369 MICROSOFT SURFACE HARDWARE PLATFORM SUPPORT
13370 M:      Hans de Goede <hdegoede@redhat.com>
13371 M:      Mark Gross <markgross@kernel.org>
13372 M:      Maximilian Luz <luzmaximilian@gmail.com>
13373 L:      platform-driver-x86@vger.kernel.org
13374 S:      Maintained
13375 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
13376 F:      drivers/platform/surface/
13377
13378 MICROSOFT SURFACE HID TRANSPORT DRIVER
13379 M:      Maximilian Luz <luzmaximilian@gmail.com>
13380 L:      linux-input@vger.kernel.org
13381 L:      platform-driver-x86@vger.kernel.org
13382 S:      Maintained
13383 F:      drivers/hid/surface-hid/
13384
13385 MICROSOFT SURFACE HOT-PLUG DRIVER
13386 M:      Maximilian Luz <luzmaximilian@gmail.com>
13387 L:      platform-driver-x86@vger.kernel.org
13388 S:      Maintained
13389 F:      drivers/platform/surface/surface_hotplug.c
13390
13391 MICROSOFT SURFACE PLATFORM PROFILE DRIVER
13392 M:      Maximilian Luz <luzmaximilian@gmail.com>
13393 L:      platform-driver-x86@vger.kernel.org
13394 S:      Maintained
13395 F:      drivers/platform/surface/surface_platform_profile.c
13396
13397 MICROSOFT SURFACE PRO 3 BUTTON DRIVER
13398 M:      Chen Yu <yu.c.chen@intel.com>
13399 L:      platform-driver-x86@vger.kernel.org
13400 S:      Supported
13401 F:      drivers/platform/surface/surfacepro3_button.c
13402
13403 MICROSOFT SURFACE SYSTEM AGGREGATOR SUBSYSTEM
13404 M:      Maximilian Luz <luzmaximilian@gmail.com>
13405 L:      platform-driver-x86@vger.kernel.org
13406 S:      Maintained
13407 W:      https://github.com/linux-surface/surface-aggregator-module
13408 C:      irc://irc.libera.chat/linux-surface
13409 F:      Documentation/driver-api/surface_aggregator/
13410 F:      drivers/platform/surface/aggregator/
13411 F:      drivers/platform/surface/surface_acpi_notify.c
13412 F:      drivers/platform/surface/surface_aggregator_cdev.c
13413 F:      drivers/platform/surface/surface_aggregator_registry.c
13414 F:      include/linux/surface_acpi_notify.h
13415 F:      include/linux/surface_aggregator/
13416 F:      include/uapi/linux/surface_aggregator/
13417
13418 MICROTEK X6 SCANNER
13419 M:      Oliver Neukum <oliver@neukum.org>
13420 S:      Maintained
13421 F:      drivers/usb/image/microtek.*
13422
13423 MIKROTIK CRS3XX 98DX3236 BOARD SUPPORT
13424 M:      Luka Kovacic <luka.kovacic@sartura.hr>
13425 M:      Luka Perkov <luka.perkov@sartura.hr>
13426 S:      Maintained
13427 F:      arch/arm/boot/dts/armada-xp-crs305-1g-4s-bit.dts
13428 F:      arch/arm/boot/dts/armada-xp-crs305-1g-4s.dts
13429 F:      arch/arm/boot/dts/armada-xp-crs326-24g-2s-bit.dts
13430 F:      arch/arm/boot/dts/armada-xp-crs326-24g-2s.dts
13431 F:      arch/arm/boot/dts/armada-xp-crs328-4c-20s-4s-bit.dts
13432 F:      arch/arm/boot/dts/armada-xp-crs328-4c-20s-4s.dts
13433
13434 MIPI CCS, SMIA AND SMIA++ IMAGE SENSOR DRIVER
13435 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
13436 L:      linux-media@vger.kernel.org
13437 S:      Maintained
13438 F:      Documentation/devicetree/bindings/media/i2c/mipi-ccs.yaml
13439 F:      Documentation/driver-api/media/drivers/ccs/
13440 F:      Documentation/userspace-api/media/drivers/ccs.rst
13441 F:      drivers/media/i2c/ccs-pll.c
13442 F:      drivers/media/i2c/ccs-pll.h
13443 F:      drivers/media/i2c/ccs/
13444 F:      include/uapi/linux/ccs.h
13445 F:      include/uapi/linux/smiapp.h
13446
13447 MIPS
13448 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
13449 L:      linux-mips@vger.kernel.org
13450 S:      Maintained
13451 W:      http://www.linux-mips.org/
13452 Q:      https://patchwork.kernel.org/project/linux-mips/list/
13453 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mips/linux.git
13454 F:      Documentation/devicetree/bindings/mips/
13455 F:      Documentation/mips/
13456 F:      arch/mips/
13457 F:      drivers/platform/mips/
13458
13459 MIPS BOSTON DEVELOPMENT BOARD
13460 M:      Paul Burton <paulburton@kernel.org>
13461 L:      linux-mips@vger.kernel.org
13462 S:      Maintained
13463 F:      Documentation/devicetree/bindings/clock/img,boston-clock.txt
13464 F:      arch/mips/boot/dts/img/boston.dts
13465 F:      arch/mips/configs/generic/board-boston.config
13466 F:      drivers/clk/imgtec/clk-boston.c
13467 F:      include/dt-bindings/clock/boston-clock.h
13468
13469 MIPS CORE DRIVERS
13470 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
13471 M:      Serge Semin <fancer.lancer@gmail.com>
13472 L:      linux-mips@vger.kernel.org
13473 S:      Supported
13474 F:      drivers/bus/mips_cdmm.c
13475 F:      drivers/clocksource/mips-gic-timer.c
13476 F:      drivers/cpuidle/cpuidle-cps.c
13477 F:      drivers/irqchip/irq-mips-cpu.c
13478 F:      drivers/irqchip/irq-mips-gic.c
13479
13480 MIPS GENERIC PLATFORM
13481 M:      Paul Burton <paulburton@kernel.org>
13482 L:      linux-mips@vger.kernel.org
13483 S:      Supported
13484 F:      Documentation/devicetree/bindings/power/mti,mips-cpc.yaml
13485 F:      arch/mips/generic/
13486 F:      arch/mips/tools/generic-board-config.sh
13487
13488 MIPS RINT INSTRUCTION EMULATION
13489 M:      Aleksandar Markovic <aleksandar.markovic@mips.com>
13490 L:      linux-mips@vger.kernel.org
13491 S:      Supported
13492 F:      arch/mips/math-emu/dp_rint.c
13493 F:      arch/mips/math-emu/sp_rint.c
13494
13495 MIPS/LOONGSON1 ARCHITECTURE
13496 M:      Keguang Zhang <keguang.zhang@gmail.com>
13497 L:      linux-mips@vger.kernel.org
13498 S:      Maintained
13499 F:      arch/mips/include/asm/mach-loongson32/
13500 F:      arch/mips/loongson32/
13501 F:      drivers/*/*/*loongson1*
13502 F:      drivers/*/*loongson1*
13503
13504 MIPS/LOONGSON2EF ARCHITECTURE
13505 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
13506 L:      linux-mips@vger.kernel.org
13507 S:      Maintained
13508 F:      arch/mips/include/asm/mach-loongson2ef/
13509 F:      arch/mips/loongson2ef/
13510 F:      drivers/cpufreq/loongson2_cpufreq.c
13511
13512 MIPS/LOONGSON64 ARCHITECTURE
13513 M:      Huacai Chen <chenhuacai@kernel.org>
13514 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
13515 L:      linux-mips@vger.kernel.org
13516 S:      Maintained
13517 F:      arch/mips/include/asm/mach-loongson64/
13518 F:      arch/mips/loongson64/
13519 F:      drivers/irqchip/irq-loongson*
13520 F:      drivers/platform/mips/cpu_hwmon.c
13521
13522 MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
13523 M:      Hans Verkuil <hverkuil@xs4all.nl>
13524 L:      linux-media@vger.kernel.org
13525 S:      Odd Fixes
13526 W:      https://linuxtv.org
13527 T:      git git://linuxtv.org/media_tree.git
13528 F:      drivers/media/radio/radio-miropcm20*
13529
13530 MMP SUPPORT
13531 R:      Lubomir Rintel <lkundrak@v3.sk>
13532 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13533 S:      Odd Fixes
13534 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lkundrak/linux-mmp.git
13535 F:      arch/arm/boot/dts/mmp*
13536 F:      arch/arm/mach-mmp/
13537 F:      include/linux/soc/mmp/
13538
13539 MMP USB PHY DRIVERS
13540 R:      Lubomir Rintel <lkundrak@v3.sk>
13541 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13542 S:      Maintained
13543 F:      drivers/phy/marvell/phy-mmp3-usb.c
13544 F:      drivers/phy/marvell/phy-pxa-usb.c
13545
13546 MMU GATHER AND TLB INVALIDATION
13547 M:      Will Deacon <will@kernel.org>
13548 M:      "Aneesh Kumar K.V" <aneesh.kumar@linux.ibm.com>
13549 M:      Andrew Morton <akpm@linux-foundation.org>
13550 M:      Nick Piggin <npiggin@gmail.com>
13551 M:      Peter Zijlstra <peterz@infradead.org>
13552 L:      linux-arch@vger.kernel.org
13553 L:      linux-mm@kvack.org
13554 S:      Maintained
13555 F:      arch/*/include/asm/tlb.h
13556 F:      include/asm-generic/tlb.h
13557 F:      mm/mmu_gather.c
13558
13559 MN88472 MEDIA DRIVER
13560 M:      Antti Palosaari <crope@iki.fi>
13561 L:      linux-media@vger.kernel.org
13562 S:      Maintained
13563 W:      https://linuxtv.org
13564 W:      http://palosaari.fi/linux/
13565 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13566 F:      drivers/media/dvb-frontends/mn88472*
13567
13568 MN88473 MEDIA DRIVER
13569 M:      Antti Palosaari <crope@iki.fi>
13570 L:      linux-media@vger.kernel.org
13571 S:      Maintained
13572 W:      https://linuxtv.org
13573 W:      http://palosaari.fi/linux/
13574 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13575 F:      drivers/media/dvb-frontends/mn88473*
13576
13577 MODULE SUPPORT
13578 M:      Luis Chamberlain <mcgrof@kernel.org>
13579 L:      linux-modules@vger.kernel.org
13580 L:      linux-kernel@vger.kernel.org
13581 S:      Maintained
13582 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mcgrof/linux.git modules-next
13583 F:      include/linux/module.h
13584 F:      kernel/module/
13585
13586 MONOLITHIC POWER SYSTEM PMIC DRIVER
13587 M:      Saravanan Sekar <sravanhome@gmail.com>
13588 S:      Maintained
13589 F:      Documentation/devicetree/bindings/mfd/mps,mp2629.yaml
13590 F:      Documentation/devicetree/bindings/regulator/mps,mp*.yaml
13591 F:      drivers/iio/adc/mp2629_adc.c
13592 F:      drivers/mfd/mp2629.c
13593 F:      drivers/power/supply/mp2629_charger.c
13594 F:      drivers/regulator/mp5416.c
13595 F:      drivers/regulator/mpq7920.c
13596 F:      drivers/regulator/mpq7920.h
13597 F:      include/linux/mfd/mp2629.h
13598
13599 MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
13600 S:      Orphan
13601 W:      http://popies.net/meye/
13602 F:      Documentation/userspace-api/media/drivers/meye*
13603 F:      drivers/media/pci/meye/
13604 F:      include/uapi/linux/meye.h
13605
13606 MOTORCOMM PHY DRIVER
13607 M:      Peter Geis <pgwipeout@gmail.com>
13608 L:      netdev@vger.kernel.org
13609 S:      Maintained
13610 F:      drivers/net/phy/motorcomm.c
13611
13612 MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
13613 M:      Jiri Slaby <jirislaby@kernel.org>
13614 S:      Maintained
13615 F:      Documentation/driver-api/tty/moxa-smartio.rst
13616 F:      drivers/tty/mxser.*
13617
13618 MR800 AVERMEDIA USB FM RADIO DRIVER
13619 M:      Alexey Klimov <klimov.linux@gmail.com>
13620 L:      linux-media@vger.kernel.org
13621 S:      Maintained
13622 T:      git git://linuxtv.org/media_tree.git
13623 F:      drivers/media/radio/radio-mr800.c
13624
13625 MRF24J40 IEEE 802.15.4 RADIO DRIVER
13626 M:      Alan Ott <alan@signal11.us>
13627 L:      linux-wpan@vger.kernel.org
13628 S:      Maintained
13629 F:      Documentation/devicetree/bindings/net/ieee802154/mrf24j40.txt
13630 F:      drivers/net/ieee802154/mrf24j40.c
13631
13632 MSI LAPTOP SUPPORT
13633 M:      "Lee, Chun-Yi" <jlee@suse.com>
13634 L:      platform-driver-x86@vger.kernel.org
13635 S:      Maintained
13636 F:      drivers/platform/x86/msi-laptop.c
13637
13638 MSI WMI SUPPORT
13639 L:      platform-driver-x86@vger.kernel.org
13640 S:      Orphan
13641 F:      drivers/platform/x86/msi-wmi.c
13642
13643 MSI001 MEDIA DRIVER
13644 M:      Antti Palosaari <crope@iki.fi>
13645 L:      linux-media@vger.kernel.org
13646 S:      Maintained
13647 W:      https://linuxtv.org
13648 W:      http://palosaari.fi/linux/
13649 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13650 T:      git git://linuxtv.org/anttip/media_tree.git
13651 F:      drivers/media/tuners/msi001*
13652
13653 MSI2500 MEDIA DRIVER
13654 M:      Antti Palosaari <crope@iki.fi>
13655 L:      linux-media@vger.kernel.org
13656 S:      Maintained
13657 W:      https://linuxtv.org
13658 W:      http://palosaari.fi/linux/
13659 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13660 T:      git git://linuxtv.org/anttip/media_tree.git
13661 F:      drivers/media/usb/msi2500/
13662
13663 MSTAR INTERRUPT CONTROLLER DRIVER
13664 M:      Mark-PK Tsai <mark-pk.tsai@mediatek.com>
13665 M:      Daniel Palmer <daniel@thingy.jp>
13666 S:      Maintained
13667 F:      Documentation/devicetree/bindings/interrupt-controller/mstar,mst-intc.yaml
13668 F:      drivers/irqchip/irq-mst-intc.c
13669
13670 MSYSTEMS DISKONCHIP G3 MTD DRIVER
13671 M:      Robert Jarzmik <robert.jarzmik@free.fr>
13672 L:      linux-mtd@lists.infradead.org
13673 S:      Maintained
13674 F:      drivers/mtd/devices/docg3*
13675
13676 MT9M032 APTINA SENSOR DRIVER
13677 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
13678 L:      linux-media@vger.kernel.org
13679 S:      Maintained
13680 T:      git git://linuxtv.org/media_tree.git
13681 F:      drivers/media/i2c/mt9m032.c
13682 F:      include/media/i2c/mt9m032.h
13683
13684 MT9P031 APTINA CAMERA SENSOR
13685 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
13686 L:      linux-media@vger.kernel.org
13687 S:      Maintained
13688 T:      git git://linuxtv.org/media_tree.git
13689 F:      Documentation/devicetree/bindings/media/i2c/aptina,mt9p031.yaml
13690 F:      drivers/media/i2c/mt9p031.c
13691 F:      include/media/i2c/mt9p031.h
13692
13693 MT9T001 APTINA CAMERA SENSOR
13694 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
13695 L:      linux-media@vger.kernel.org
13696 S:      Maintained
13697 T:      git git://linuxtv.org/media_tree.git
13698 F:      drivers/media/i2c/mt9t001.c
13699 F:      include/media/i2c/mt9t001.h
13700
13701 MT9T112 APTINA CAMERA SENSOR
13702 M:      Jacopo Mondi <jacopo@jmondi.org>
13703 L:      linux-media@vger.kernel.org
13704 S:      Odd Fixes
13705 T:      git git://linuxtv.org/media_tree.git
13706 F:      drivers/media/i2c/mt9t112.c
13707 F:      include/media/i2c/mt9t112.h
13708
13709 MT9V032 APTINA CAMERA SENSOR
13710 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
13711 L:      linux-media@vger.kernel.org
13712 S:      Maintained
13713 T:      git git://linuxtv.org/media_tree.git
13714 F:      Documentation/devicetree/bindings/media/i2c/mt9v032.txt
13715 F:      drivers/media/i2c/mt9v032.c
13716 F:      include/media/i2c/mt9v032.h
13717
13718 MT9V111 APTINA CAMERA SENSOR
13719 M:      Jacopo Mondi <jacopo@jmondi.org>
13720 L:      linux-media@vger.kernel.org
13721 S:      Maintained
13722 T:      git git://linuxtv.org/media_tree.git
13723 F:      Documentation/devicetree/bindings/media/i2c/aptina,mt9v111.yaml
13724 F:      drivers/media/i2c/mt9v111.c
13725
13726 MULTIFUNCTION DEVICES (MFD)
13727 M:      Lee Jones <lee.jones@linaro.org>
13728 S:      Supported
13729 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
13730 F:      Documentation/devicetree/bindings/mfd/
13731 F:      drivers/mfd/
13732 F:      include/dt-bindings/mfd/
13733 F:      include/linux/mfd/
13734
13735 MULTIMEDIA CARD (MMC) ETC. OVER SPI
13736 S:      Orphan
13737 F:      drivers/mmc/host/mmc_spi.c
13738 F:      include/linux/spi/mmc_spi.h
13739
13740 MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
13741 M:      Ulf Hansson <ulf.hansson@linaro.org>
13742 L:      linux-mmc@vger.kernel.org
13743 S:      Maintained
13744 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
13745 F:      Documentation/devicetree/bindings/mmc/
13746 F:      drivers/mmc/
13747 F:      include/linux/mmc/
13748 F:      include/uapi/linux/mmc/
13749
13750 MULTIPLEXER SUBSYSTEM
13751 M:      Peter Rosin <peda@axentia.se>
13752 S:      Maintained
13753 F:      Documentation/ABI/testing/sysfs-class-mux*
13754 F:      Documentation/devicetree/bindings/mux/
13755 F:      drivers/mux/
13756 F:      include/dt-bindings/mux/
13757 F:      include/linux/mux/
13758
13759 MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
13760 M:      Bin Liu <b-liu@ti.com>
13761 L:      linux-usb@vger.kernel.org
13762 S:      Maintained
13763 F:      drivers/usb/musb/
13764
13765 MXL301RF MEDIA DRIVER
13766 M:      Akihiro Tsukada <tskd08@gmail.com>
13767 L:      linux-media@vger.kernel.org
13768 S:      Odd Fixes
13769 F:      drivers/media/tuners/mxl301rf*
13770
13771 MXL5007T MEDIA DRIVER
13772 M:      Michael Krufky <mkrufky@linuxtv.org>
13773 L:      linux-media@vger.kernel.org
13774 S:      Maintained
13775 W:      https://linuxtv.org
13776 W:      http://github.com/mkrufky
13777 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13778 T:      git git://linuxtv.org/mkrufky/tuners.git
13779 F:      drivers/media/tuners/mxl5007t.*
13780
13781 MXSFB DRM DRIVER
13782 M:      Marek Vasut <marex@denx.de>
13783 M:      Stefan Agner <stefan@agner.ch>
13784 L:      dri-devel@lists.freedesktop.org
13785 S:      Supported
13786 T:      git git://anongit.freedesktop.org/drm/drm-misc
13787 F:      Documentation/devicetree/bindings/display/fsl,lcdif.yaml
13788 F:      drivers/gpu/drm/mxsfb/
13789
13790 MYLEX DAC960 PCI RAID Controller
13791 M:      Hannes Reinecke <hare@kernel.org>
13792 L:      linux-scsi@vger.kernel.org
13793 S:      Supported
13794 F:      drivers/scsi/myrb.*
13795 F:      drivers/scsi/myrs.*
13796
13797 MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
13798 M:      Chris Lee <christopher.lee@cspi.com>
13799 L:      netdev@vger.kernel.org
13800 S:      Supported
13801 W:      https://www.cspi.com/ethernet-products/support/downloads/
13802 F:      drivers/net/ethernet/myricom/myri10ge/
13803
13804 NAND FLASH SUBSYSTEM
13805 M:      Miquel Raynal <miquel.raynal@bootlin.com>
13806 R:      Richard Weinberger <richard@nod.at>
13807 L:      linux-mtd@lists.infradead.org
13808 S:      Maintained
13809 W:      http://www.linux-mtd.infradead.org/
13810 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
13811 C:      irc://irc.oftc.net/mtd
13812 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git nand/next
13813 F:      drivers/mtd/nand/
13814 F:      include/linux/mtd/*nand*.h
13815
13816 NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
13817 M:      Daniel Mack <zonque@gmail.com>
13818 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
13819 S:      Maintained
13820 W:      http://www.native-instruments.com
13821 F:      sound/usb/caiaq/
13822
13823 NATSEMI ETHERNET DRIVER (DP8381x)
13824 S:      Orphan
13825 F:      drivers/net/ethernet/natsemi/natsemi.c
13826
13827 NCR 5380 SCSI DRIVERS
13828 M:      Finn Thain <fthain@linux-m68k.org>
13829 M:      Michael Schmitz <schmitzmic@gmail.com>
13830 L:      linux-scsi@vger.kernel.org
13831 S:      Maintained
13832 F:      Documentation/scsi/g_NCR5380.rst
13833 F:      drivers/scsi/NCR5380.*
13834 F:      drivers/scsi/arm/cumana_1.c
13835 F:      drivers/scsi/arm/oak.c
13836 F:      drivers/scsi/atari_scsi.*
13837 F:      drivers/scsi/dmx3191d.c
13838 F:      drivers/scsi/g_NCR5380.*
13839 F:      drivers/scsi/mac_scsi.*
13840 F:      drivers/scsi/sun3_scsi.*
13841 F:      drivers/scsi/sun3_scsi_vme.c
13842
13843 NCSI LIBRARY
13844 M:      Samuel Mendoza-Jonas <sam@mendozajonas.com>
13845 S:      Maintained
13846 F:      net/ncsi/
13847
13848 NCT6775 HARDWARE MONITOR DRIVER - CORE & PLATFORM DRIVER
13849 M:      Guenter Roeck <linux@roeck-us.net>
13850 L:      linux-hwmon@vger.kernel.org
13851 S:      Maintained
13852 F:      Documentation/hwmon/nct6775.rst
13853 F:      drivers/hwmon/nct6775-core.c
13854 F:      drivers/hwmon/nct6775-platform.c
13855 F:      drivers/hwmon/nct6775.h
13856
13857 NCT6775 HARDWARE MONITOR DRIVER - I2C DRIVER
13858 M:      Zev Weiss <zev@bewilderbeest.net>
13859 L:      linux-hwmon@vger.kernel.org
13860 S:      Maintained
13861 F:      Documentation/devicetree/bindings/hwmon/nuvoton,nct6775.yaml
13862 F:      drivers/hwmon/nct6775-i2c.c
13863
13864 NETDEVSIM
13865 M:      Jakub Kicinski <kuba@kernel.org>
13866 S:      Maintained
13867 F:      drivers/net/netdevsim/*
13868
13869 NETEM NETWORK EMULATOR
13870 M:      Stephen Hemminger <stephen@networkplumber.org>
13871 L:      netdev@vger.kernel.org
13872 S:      Maintained
13873 F:      net/sched/sch_netem.c
13874
13875 NETERION 10GbE DRIVERS (s2io/vxge)
13876 M:      Jon Mason <jdmason@kudzu.us>
13877 L:      netdev@vger.kernel.org
13878 S:      Supported
13879 F:      Documentation/networking/device_drivers/ethernet/neterion/s2io.rst
13880 F:      Documentation/networking/device_drivers/ethernet/neterion/vxge.rst
13881 F:      drivers/net/ethernet/neterion/
13882
13883 NETFILTER
13884 M:      Pablo Neira Ayuso <pablo@netfilter.org>
13885 M:      Jozsef Kadlecsik <kadlec@netfilter.org>
13886 M:      Florian Westphal <fw@strlen.de>
13887 L:      netfilter-devel@vger.kernel.org
13888 L:      coreteam@netfilter.org
13889 S:      Maintained
13890 W:      http://www.netfilter.org/
13891 W:      http://www.iptables.org/
13892 W:      http://www.nftables.org/
13893 Q:      http://patchwork.ozlabs.org/project/netfilter-devel/list/
13894 C:      irc://irc.libera.chat/netfilter
13895 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netfilter/nf.git
13896 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netfilter/nf-next.git
13897 F:      include/linux/netfilter*
13898 F:      include/linux/netfilter/
13899 F:      include/net/netfilter/
13900 F:      include/uapi/linux/netfilter*
13901 F:      include/uapi/linux/netfilter/
13902 F:      net/*/netfilter.c
13903 F:      net/*/netfilter/
13904 F:      net/bridge/br_netfilter*.c
13905 F:      net/netfilter/
13906
13907 NETROM NETWORK LAYER
13908 M:      Ralf Baechle <ralf@linux-mips.org>
13909 L:      linux-hams@vger.kernel.org
13910 S:      Maintained
13911 W:      http://www.linux-ax25.org/
13912 F:      include/net/netrom.h
13913 F:      include/uapi/linux/netrom.h
13914 F:      net/netrom/
13915
13916 NETRONIX EMBEDDED CONTROLLER
13917 M:      Jonathan Neuschäfer <j.neuschaefer@gmx.net>
13918 S:      Maintained
13919 F:      Documentation/devicetree/bindings/mfd/netronix,ntxec.yaml
13920 F:      drivers/mfd/ntxec.c
13921 F:      drivers/pwm/pwm-ntxec.c
13922 F:      drivers/rtc/rtc-ntxec.c
13923 F:      include/linux/mfd/ntxec.h
13924
13925 NETRONOME ETHERNET DRIVERS
13926 M:      Simon Horman <simon.horman@corigine.com>
13927 R:      Jakub Kicinski <kuba@kernel.org>
13928 L:      oss-drivers@corigine.com
13929 S:      Maintained
13930 F:      drivers/net/ethernet/netronome/
13931
13932 NETWORK BLOCK DEVICE (NBD)
13933 M:      Josef Bacik <josef@toxicpanda.com>
13934 L:      linux-block@vger.kernel.org
13935 L:      nbd@other.debian.org
13936 S:      Maintained
13937 F:      Documentation/admin-guide/blockdev/nbd.rst
13938 F:      drivers/block/nbd.c
13939 F:      include/trace/events/nbd.h
13940 F:      include/uapi/linux/nbd.h
13941
13942 NETWORK DROP MONITOR
13943 M:      Neil Horman <nhorman@tuxdriver.com>
13944 L:      netdev@vger.kernel.org
13945 S:      Maintained
13946 W:      https://fedorahosted.org/dropwatch/
13947 F:      include/uapi/linux/net_dropmon.h
13948 F:      net/core/drop_monitor.c
13949
13950 NETWORKING DRIVERS
13951 M:      "David S. Miller" <davem@davemloft.net>
13952 M:      Eric Dumazet <edumazet@google.com>
13953 M:      Jakub Kicinski <kuba@kernel.org>
13954 M:      Paolo Abeni <pabeni@redhat.com>
13955 L:      netdev@vger.kernel.org
13956 S:      Maintained
13957 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
13958 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
13959 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
13960 F:      Documentation/devicetree/bindings/net/
13961 F:      drivers/connector/
13962 F:      drivers/net/
13963 F:      include/dt-bindings/net/
13964 F:      include/linux/etherdevice.h
13965 F:      include/linux/fcdevice.h
13966 F:      include/linux/fddidevice.h
13967 F:      include/linux/hippidevice.h
13968 F:      include/linux/if_*
13969 F:      include/linux/inetdevice.h
13970 F:      include/linux/netdevice.h
13971 F:      include/uapi/linux/if_*
13972 F:      include/uapi/linux/netdevice.h
13973
13974 NETWORKING DRIVERS (WIRELESS)
13975 M:      Kalle Valo <kvalo@kernel.org>
13976 L:      linux-wireless@vger.kernel.org
13977 S:      Maintained
13978 W:      https://wireless.wiki.kernel.org/
13979 Q:      https://patchwork.kernel.org/project/linux-wireless/list/
13980 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless.git
13981 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless-next.git
13982 F:      Documentation/devicetree/bindings/net/wireless/
13983 F:      drivers/net/wireless/
13984
13985 NETWORKING [DSA]
13986 M:      Andrew Lunn <andrew@lunn.ch>
13987 M:      Vivien Didelot <vivien.didelot@gmail.com>
13988 M:      Florian Fainelli <f.fainelli@gmail.com>
13989 M:      Vladimir Oltean <olteanv@gmail.com>
13990 S:      Maintained
13991 F:      Documentation/devicetree/bindings/net/dsa/
13992 F:      drivers/net/dsa/
13993 F:      include/linux/dsa/
13994 F:      include/linux/platform_data/dsa.h
13995 F:      include/net/dsa.h
13996 F:      net/dsa/
13997 F:      tools/testing/selftests/drivers/net/dsa/
13998
13999 NETWORKING [GENERAL]
14000 M:      "David S. Miller" <davem@davemloft.net>
14001 M:      Eric Dumazet <edumazet@google.com>
14002 M:      Jakub Kicinski <kuba@kernel.org>
14003 M:      Paolo Abeni <pabeni@redhat.com>
14004 L:      netdev@vger.kernel.org
14005 S:      Maintained
14006 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
14007 B:      mailto:netdev@vger.kernel.org
14008 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
14009 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
14010 F:      Documentation/networking/
14011 F:      Documentation/process/maintainer-netdev.rst
14012 F:      include/linux/in.h
14013 F:      include/linux/net.h
14014 F:      include/linux/netdevice.h
14015 F:      include/net/
14016 F:      include/uapi/linux/in.h
14017 F:      include/uapi/linux/net.h
14018 F:      include/uapi/linux/net_namespace.h
14019 F:      include/uapi/linux/netdevice.h
14020 F:      lib/net_utils.c
14021 F:      lib/random32.c
14022 F:      net/
14023 F:      tools/testing/selftests/net/
14024
14025 NETWORKING [IPSEC]
14026 M:      Steffen Klassert <steffen.klassert@secunet.com>
14027 M:      Herbert Xu <herbert@gondor.apana.org.au>
14028 M:      "David S. Miller" <davem@davemloft.net>
14029 L:      netdev@vger.kernel.org
14030 S:      Maintained
14031 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git
14032 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git
14033 F:      include/net/xfrm.h
14034 F:      include/uapi/linux/xfrm.h
14035 F:      net/ipv4/ah4.c
14036 F:      net/ipv4/esp4*
14037 F:      net/ipv4/ip_vti.c
14038 F:      net/ipv4/ipcomp.c
14039 F:      net/ipv4/xfrm*
14040 F:      net/ipv6/ah6.c
14041 F:      net/ipv6/esp6*
14042 F:      net/ipv6/ip6_vti.c
14043 F:      net/ipv6/ipcomp6.c
14044 F:      net/ipv6/xfrm*
14045 F:      net/key/
14046 F:      net/xfrm/
14047 F:      tools/testing/selftests/net/ipsec.c
14048
14049 NETWORKING [IPv4/IPv6]
14050 M:      "David S. Miller" <davem@davemloft.net>
14051 M:      Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
14052 M:      David Ahern <dsahern@kernel.org>
14053 L:      netdev@vger.kernel.org
14054 S:      Maintained
14055 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
14056 F:      arch/x86/net/*
14057 F:      include/linux/ip.h
14058 F:      include/linux/ipv6*
14059 F:      include/net/fib*
14060 F:      include/net/ip*
14061 F:      include/net/route.h
14062 F:      net/ipv4/
14063 F:      net/ipv6/
14064
14065 NETWORKING [LABELED] (NetLabel, Labeled IPsec, SECMARK)
14066 M:      Paul Moore <paul@paul-moore.com>
14067 L:      netdev@vger.kernel.org
14068 L:      linux-security-module@vger.kernel.org
14069 S:      Maintained
14070 W:      https://github.com/netlabel
14071 F:      Documentation/netlabel/
14072 F:      include/net/calipso.h
14073 F:      include/net/cipso_ipv4.h
14074 F:      include/net/netlabel.h
14075 F:      include/uapi/linux/netfilter/xt_CONNSECMARK.h
14076 F:      include/uapi/linux/netfilter/xt_SECMARK.h
14077 F:      net/ipv4/cipso_ipv4.c
14078 F:      net/ipv6/calipso.c
14079 F:      net/netfilter/xt_CONNSECMARK.c
14080 F:      net/netfilter/xt_SECMARK.c
14081 F:      net/netlabel/
14082
14083 NETWORKING [MPTCP]
14084 M:      Mat Martineau <mathew.j.martineau@linux.intel.com>
14085 M:      Matthieu Baerts <matthieu.baerts@tessares.net>
14086 L:      netdev@vger.kernel.org
14087 L:      mptcp@lists.linux.dev
14088 S:      Maintained
14089 W:      https://github.com/multipath-tcp/mptcp_net-next/wiki
14090 B:      https://github.com/multipath-tcp/mptcp_net-next/issues
14091 F:      Documentation/networking/mptcp-sysctl.rst
14092 F:      include/net/mptcp.h
14093 F:      include/trace/events/mptcp.h
14094 F:      include/uapi/linux/mptcp.h
14095 F:      net/mptcp/
14096 F:      tools/testing/selftests/bpf/*/*mptcp*.c
14097 F:      tools/testing/selftests/net/mptcp/
14098
14099 NETWORKING [TCP]
14100 M:      Eric Dumazet <edumazet@google.com>
14101 L:      netdev@vger.kernel.org
14102 S:      Maintained
14103 F:      include/linux/tcp.h
14104 F:      include/net/tcp.h
14105 F:      include/trace/events/tcp.h
14106 F:      include/uapi/linux/tcp.h
14107 F:      net/ipv4/syncookies.c
14108 F:      net/ipv4/tcp*.c
14109 F:      net/ipv6/syncookies.c
14110 F:      net/ipv6/tcp*.c
14111
14112 NETWORKING [TLS]
14113 M:      Boris Pismenny <borisp@nvidia.com>
14114 M:      John Fastabend <john.fastabend@gmail.com>
14115 M:      Jakub Kicinski <kuba@kernel.org>
14116 L:      netdev@vger.kernel.org
14117 S:      Maintained
14118 F:      include/net/tls.h
14119 F:      include/uapi/linux/tls.h
14120 F:      net/tls/*
14121
14122 NETXEN (1/10) GbE SUPPORT
14123 M:      Manish Chopra <manishc@marvell.com>
14124 M:      Rahul Verma <rahulv@marvell.com>
14125 M:      GR-Linux-NIC-Dev@marvell.com
14126 L:      netdev@vger.kernel.org
14127 S:      Supported
14128 F:      drivers/net/ethernet/qlogic/netxen/
14129
14130 NET_FAILOVER MODULE
14131 M:      Sridhar Samudrala <sridhar.samudrala@intel.com>
14132 L:      netdev@vger.kernel.org
14133 S:      Supported
14134 F:      Documentation/networking/net_failover.rst
14135 F:      drivers/net/net_failover.c
14136 F:      include/net/net_failover.h
14137
14138 NEXTHOP
14139 M:      David Ahern <dsahern@kernel.org>
14140 L:      netdev@vger.kernel.org
14141 S:      Maintained
14142 F:      include/net/netns/nexthop.h
14143 F:      include/net/nexthop.h
14144 F:      include/uapi/linux/nexthop.h
14145 F:      net/ipv4/nexthop.c
14146
14147 NFC SUBSYSTEM
14148 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
14149 L:      linux-nfc@lists.01.org (subscribers-only)
14150 L:      netdev@vger.kernel.org
14151 S:      Maintained
14152 B:      mailto:linux-nfc@lists.01.org
14153 F:      Documentation/devicetree/bindings/net/nfc/
14154 F:      drivers/nfc/
14155 F:      include/linux/platform_data/nfcmrvl.h
14156 F:      include/net/nfc/
14157 F:      include/uapi/linux/nfc.h
14158 F:      net/nfc/
14159
14160 NFC VIRTUAL NCI DEVICE DRIVER
14161 M:      Bongsu Jeon <bongsu.jeon@samsung.com>
14162 L:      netdev@vger.kernel.org
14163 L:      linux-nfc@lists.01.org (subscribers-only)
14164 S:      Supported
14165 F:      drivers/nfc/virtual_ncidev.c
14166 F:      tools/testing/selftests/nci/
14167
14168 NFS, SUNRPC, AND LOCKD CLIENTS
14169 M:      Trond Myklebust <trond.myklebust@hammerspace.com>
14170 M:      Anna Schumaker <anna@kernel.org>
14171 L:      linux-nfs@vger.kernel.org
14172 S:      Maintained
14173 W:      http://client.linux-nfs.org
14174 T:      git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git
14175 F:      fs/lockd/
14176 F:      fs/nfs/
14177 F:      fs/nfs_common/
14178 F:      include/linux/lockd/
14179 F:      include/linux/nfs*
14180 F:      include/linux/sunrpc/
14181 F:      include/uapi/linux/nfs*
14182 F:      include/uapi/linux/sunrpc/
14183 F:      net/sunrpc/
14184 F:      Documentation/filesystems/nfs/
14185
14186 NILFS2 FILESYSTEM
14187 M:      Ryusuke Konishi <konishi.ryusuke@gmail.com>
14188 L:      linux-nilfs@vger.kernel.org
14189 S:      Supported
14190 W:      https://nilfs.sourceforge.io/
14191 W:      https://nilfs.osdn.jp/
14192 T:      git git://github.com/konis/nilfs2.git
14193 F:      Documentation/filesystems/nilfs2.rst
14194 F:      fs/nilfs2/
14195 F:      include/trace/events/nilfs2.h
14196 F:      include/uapi/linux/nilfs2_api.h
14197 F:      include/uapi/linux/nilfs2_ondisk.h
14198
14199 NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
14200 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
14201 S:      Maintained
14202 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
14203 F:      Documentation/scsi/NinjaSCSI.rst
14204 F:      drivers/scsi/pcmcia/nsp_*
14205
14206 NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
14207 M:      GOTO Masanori <gotom@debian.or.jp>
14208 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
14209 S:      Maintained
14210 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
14211 F:      Documentation/scsi/NinjaSCSI.rst
14212 F:      drivers/scsi/nsp32*
14213
14214 NINTENDO HID DRIVER
14215 M:      Daniel J. Ogorchock <djogorchock@gmail.com>
14216 L:      linux-input@vger.kernel.org
14217 S:      Maintained
14218 F:      drivers/hid/hid-nintendo*
14219
14220 NIOS2 ARCHITECTURE
14221 M:      Dinh Nguyen <dinguyen@kernel.org>
14222 S:      Maintained
14223 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
14224 F:      arch/nios2/
14225
14226 NITRO ENCLAVES (NE)
14227 M:      Andra Paraschiv <andraprs@amazon.com>
14228 M:      Alexandru Vasile <lexnv@amazon.com>
14229 M:      Alexandru Ciobotaru <alcioa@amazon.com>
14230 L:      linux-kernel@vger.kernel.org
14231 S:      Supported
14232 W:      https://aws.amazon.com/ec2/nitro/nitro-enclaves/
14233 F:      Documentation/virt/ne_overview.rst
14234 F:      drivers/virt/nitro_enclaves/
14235 F:      include/linux/nitro_enclaves.h
14236 F:      include/uapi/linux/nitro_enclaves.h
14237 F:      samples/nitro_enclaves/
14238
14239 NOHZ, DYNTICKS SUPPORT
14240 M:      Frederic Weisbecker <fweisbec@gmail.com>
14241 M:      Thomas Gleixner <tglx@linutronix.de>
14242 M:      Ingo Molnar <mingo@kernel.org>
14243 L:      linux-kernel@vger.kernel.org
14244 S:      Maintained
14245 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/nohz
14246 F:      include/linux/sched/nohz.h
14247 F:      include/linux/tick.h
14248 F:      kernel/time/tick*.*
14249
14250 NOKIA N900 CAMERA SUPPORT (ET8EK8 SENSOR, AD5820 FOCUS)
14251 M:      Pavel Machek <pavel@ucw.cz>
14252 M:      Sakari Ailus <sakari.ailus@iki.fi>
14253 L:      linux-media@vger.kernel.org
14254 S:      Maintained
14255 F:      drivers/media/i2c/ad5820.c
14256 F:      drivers/media/i2c/et8ek8
14257
14258 NOKIA N900 POWER SUPPLY DRIVERS
14259 R:      Pali Rohár <pali@kernel.org>
14260 F:      drivers/power/supply/bq2415x_charger.c
14261 F:      drivers/power/supply/bq27xxx_battery.c
14262 F:      drivers/power/supply/bq27xxx_battery_i2c.c
14263 F:      drivers/power/supply/isp1704_charger.c
14264 F:      drivers/power/supply/rx51_battery.c
14265 F:      include/linux/power/bq2415x_charger.h
14266 F:      include/linux/power/bq27xxx_battery.h
14267
14268 NOLIBC HEADER FILE
14269 M:      Willy Tarreau <w@1wt.eu>
14270 S:      Maintained
14271 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wtarreau/nolibc.git
14272 F:      tools/include/nolibc/
14273
14274 NSDEPS
14275 M:      Matthias Maennich <maennich@google.com>
14276 S:      Maintained
14277 F:      Documentation/core-api/symbol-namespaces.rst
14278 F:      scripts/nsdeps
14279
14280 NTB AMD DRIVER
14281 M:      Sanjay R Mehta <sanju.mehta@amd.com>
14282 M:      Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
14283 L:      ntb@lists.linux.dev
14284 S:      Supported
14285 F:      drivers/ntb/hw/amd/
14286
14287 NTB DRIVER CORE
14288 M:      Jon Mason <jdmason@kudzu.us>
14289 M:      Dave Jiang <dave.jiang@intel.com>
14290 M:      Allen Hubbe <allenbh@gmail.com>
14291 L:      ntb@lists.linux.dev
14292 S:      Supported
14293 W:      https://github.com/jonmason/ntb/wiki
14294 T:      git git://github.com/jonmason/ntb.git
14295 F:      drivers/net/ntb_netdev.c
14296 F:      drivers/ntb/
14297 F:      include/linux/ntb.h
14298 F:      include/linux/ntb_transport.h
14299 F:      tools/testing/selftests/ntb/
14300
14301 NTB IDT DRIVER
14302 M:      Serge Semin <fancer.lancer@gmail.com>
14303 L:      ntb@lists.linux.dev
14304 S:      Supported
14305 F:      drivers/ntb/hw/idt/
14306
14307 NTB INTEL DRIVER
14308 M:      Dave Jiang <dave.jiang@intel.com>
14309 L:      ntb@lists.linux.dev
14310 S:      Supported
14311 W:      https://github.com/davejiang/linux/wiki
14312 T:      git https://github.com/davejiang/linux.git
14313 F:      drivers/ntb/hw/intel/
14314
14315 NTFS FILESYSTEM
14316 M:      Anton Altaparmakov <anton@tuxera.com>
14317 L:      linux-ntfs-dev@lists.sourceforge.net
14318 S:      Supported
14319 W:      http://www.tuxera.com/
14320 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
14321 F:      Documentation/filesystems/ntfs.rst
14322 F:      fs/ntfs/
14323
14324 NTFS3 FILESYSTEM
14325 M:      Konstantin Komarov <almaz.alexandrovich@paragon-software.com>
14326 L:      ntfs3@lists.linux.dev
14327 S:      Supported
14328 W:      http://www.paragon-software.com/
14329 T:      git https://github.com/Paragon-Software-Group/linux-ntfs3.git
14330 F:      Documentation/filesystems/ntfs3.rst
14331 F:      fs/ntfs3/
14332
14333 NUBUS SUBSYSTEM
14334 M:      Finn Thain <fthain@linux-m68k.org>
14335 L:      linux-m68k@lists.linux-m68k.org
14336 S:      Maintained
14337 F:      arch/*/include/asm/nubus.h
14338 F:      drivers/nubus/
14339 F:      include/linux/nubus.h
14340 F:      include/uapi/linux/nubus.h
14341
14342 NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
14343 M:      Antonino Daplas <adaplas@gmail.com>
14344 L:      linux-fbdev@vger.kernel.org
14345 S:      Maintained
14346 F:      drivers/video/fbdev/nvidia/
14347 F:      drivers/video/fbdev/riva/
14348
14349 NVIDIA WMI EC BACKLIGHT DRIVER
14350 M:      Daniel Dadap <ddadap@nvidia.com>
14351 L:      platform-driver-x86@vger.kernel.org
14352 S:      Supported
14353 F:      drivers/platform/x86/nvidia-wmi-ec-backlight.c
14354
14355 NVM EXPRESS DRIVER
14356 M:      Keith Busch <kbusch@kernel.org>
14357 M:      Jens Axboe <axboe@fb.com>
14358 M:      Christoph Hellwig <hch@lst.de>
14359 M:      Sagi Grimberg <sagi@grimberg.me>
14360 L:      linux-nvme@lists.infradead.org
14361 S:      Supported
14362 W:      http://git.infradead.org/nvme.git
14363 T:      git://git.infradead.org/nvme.git
14364 F:      drivers/nvme/host/
14365 F:      drivers/nvme/common/
14366 F:      include/linux/nvme*
14367 F:      include/uapi/linux/nvme_ioctl.h
14368
14369 NVM EXPRESS FC TRANSPORT DRIVERS
14370 M:      James Smart <james.smart@broadcom.com>
14371 L:      linux-nvme@lists.infradead.org
14372 S:      Supported
14373 F:      drivers/nvme/host/fc.c
14374 F:      drivers/nvme/target/fc.c
14375 F:      drivers/nvme/target/fcloop.c
14376 F:      include/linux/nvme-fc-driver.h
14377 F:      include/linux/nvme-fc.h
14378
14379 NVM EXPRESS TARGET DRIVER
14380 M:      Christoph Hellwig <hch@lst.de>
14381 M:      Sagi Grimberg <sagi@grimberg.me>
14382 M:      Chaitanya Kulkarni <kch@nvidia.com>
14383 L:      linux-nvme@lists.infradead.org
14384 S:      Supported
14385 W:      http://git.infradead.org/nvme.git
14386 T:      git://git.infradead.org/nvme.git
14387 F:      drivers/nvme/target/
14388
14389 NVMEM FRAMEWORK
14390 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
14391 S:      Maintained
14392 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/srini/nvmem.git
14393 F:      Documentation/ABI/stable/sysfs-bus-nvmem
14394 F:      Documentation/devicetree/bindings/nvmem/
14395 F:      drivers/nvmem/
14396 F:      include/linux/nvmem-consumer.h
14397 F:      include/linux/nvmem-provider.h
14398
14399 NXP C45 TJA11XX PHY DRIVER
14400 M:      Radu Pirea <radu-nicolae.pirea@oss.nxp.com>
14401 L:      netdev@vger.kernel.org
14402 S:      Maintained
14403 F:      drivers/net/phy/nxp-c45-tja11xx.c
14404
14405 NXP FSPI DRIVER
14406 M:      Han Xu <han.xu@nxp.com>
14407 M:      Haibo Chen <haibo.chen@nxp.com>
14408 R:      Yogesh Gaur <yogeshgaur.83@gmail.com>
14409 L:      linux-spi@vger.kernel.org
14410 S:      Maintained
14411 F:      Documentation/devicetree/bindings/spi/spi-nxp-fspi.yaml
14412 F:      drivers/spi/spi-nxp-fspi.c
14413
14414 NXP FXAS21002C DRIVER
14415 M:      Rui Miguel Silva <rmfrfs@gmail.com>
14416 L:      linux-iio@vger.kernel.org
14417 S:      Maintained
14418 F:      Documentation/devicetree/bindings/iio/gyroscope/nxp,fxas21002c.yaml
14419 F:      drivers/iio/gyro/fxas21002c.h
14420 F:      drivers/iio/gyro/fxas21002c_core.c
14421 F:      drivers/iio/gyro/fxas21002c_i2c.c
14422 F:      drivers/iio/gyro/fxas21002c_spi.c
14423
14424 NXP i.MX CLOCK DRIVERS
14425 M:      Abel Vesa <abelvesa@kernel.org>
14426 L:      linux-clk@vger.kernel.org
14427 L:      linux-imx@nxp.com
14428 S:      Maintained
14429 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/abelvesa/linux.git clk/imx
14430 F:      Documentation/devicetree/bindings/clock/imx*
14431 F:      drivers/clk/imx/
14432 F:      include/dt-bindings/clock/imx*
14433
14434 NXP i.MX 8MQ DCSS DRIVER
14435 M:      Laurentiu Palcu <laurentiu.palcu@oss.nxp.com>
14436 R:      Lucas Stach <l.stach@pengutronix.de>
14437 L:      dri-devel@lists.freedesktop.org
14438 S:      Maintained
14439 F:      Documentation/devicetree/bindings/display/imx/nxp,imx8mq-dcss.yaml
14440 F:      drivers/gpu/drm/imx/dcss/
14441
14442 NXP i.MX 8QXP ADC DRIVER
14443 M:      Cai Huoqing <cai.huoqing@linux.dev>
14444 M:      Haibo Chen <haibo.chen@nxp.com>
14445 L:      linux-imx@nxp.com
14446 L:      linux-iio@vger.kernel.org
14447 S:      Maintained
14448 F:      Documentation/devicetree/bindings/iio/adc/nxp,imx8qxp-adc.yaml
14449 F:      drivers/iio/adc/imx8qxp-adc.c
14450
14451 NXP i.MX 7D/6SX/6UL AND VF610 ADC DRIVER
14452 M:      Haibo Chen <haibo.chen@nxp.com>
14453 L:      linux-iio@vger.kernel.org
14454 L:      linux-imx@nxp.com
14455 S:      Maintained
14456 F:      Documentation/devicetree/bindings/iio/adc/fsl,imx7d-adc.yaml
14457 F:      Documentation/devicetree/bindings/iio/adc/fsl,vf610-adc.yaml
14458 F:      drivers/iio/adc/imx7d_adc.c
14459 F:      drivers/iio/adc/vf610_adc.c
14460
14461 NXP PF8100/PF8121A/PF8200 PMIC REGULATOR DEVICE DRIVER
14462 M:      Jagan Teki <jagan@amarulasolutions.com>
14463 S:      Maintained
14464 F:      Documentation/devicetree/bindings/regulator/nxp,pf8x00-regulator.yaml
14465 F:      drivers/regulator/pf8x00-regulator.c
14466
14467 NXP PTN5150A CC LOGIC AND EXTCON DRIVER
14468 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
14469 L:      linux-kernel@vger.kernel.org
14470 S:      Maintained
14471 F:      Documentation/devicetree/bindings/extcon/extcon-ptn5150.yaml
14472 F:      drivers/extcon/extcon-ptn5150.c
14473
14474 NXP SGTL5000 DRIVER
14475 M:      Fabio Estevam <festevam@gmail.com>
14476 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
14477 S:      Maintained
14478 F:      Documentation/devicetree/bindings/sound/sgtl5000.yaml
14479 F:      sound/soc/codecs/sgtl5000*
14480
14481 NXP SJA1105 ETHERNET SWITCH DRIVER
14482 M:      Vladimir Oltean <olteanv@gmail.com>
14483 L:      linux-kernel@vger.kernel.org
14484 S:      Maintained
14485 F:      drivers/net/dsa/sja1105
14486 F:      drivers/net/pcs/pcs-xpcs-nxp.c
14487
14488 NXP TDA998X DRM DRIVER
14489 M:      Russell King <linux@armlinux.org.uk>
14490 S:      Maintained
14491 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-devel
14492 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-fixes
14493 F:      drivers/gpu/drm/i2c/tda998x_drv.c
14494 F:      include/drm/i2c/tda998x.h
14495 F:      include/dt-bindings/display/tda998x.h
14496 K:      "nxp,tda998x"
14497
14498 NXP TFA9879 DRIVER
14499 M:      Peter Rosin <peda@axentia.se>
14500 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
14501 S:      Maintained
14502 F:      Documentation/devicetree/bindings/sound/tfa9879.txt
14503 F:      sound/soc/codecs/tfa9879*
14504
14505 NXP/Goodix TFA989X (TFA1) DRIVER
14506 M:      Stephan Gerhold <stephan@gerhold.net>
14507 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
14508 S:      Maintained
14509 F:      Documentation/devicetree/bindings/sound/nxp,tfa989x.yaml
14510 F:      sound/soc/codecs/tfa989x.c
14511
14512 NXP-NCI NFC DRIVER
14513 L:      linux-nfc@lists.01.org (subscribers-only)
14514 S:      Orphan
14515 F:      Documentation/devicetree/bindings/net/nfc/nxp,nci.yaml
14516 F:      drivers/nfc/nxp-nci
14517
14518 NXP i.MX 8QXP/8QM JPEG V4L2 DRIVER
14519 M:      Mirela Rabulea <mirela.rabulea@nxp.com>
14520 R:      NXP Linux Team <linux-imx@nxp.com>
14521 L:      linux-media@vger.kernel.org
14522 S:      Maintained
14523 F:      Documentation/devicetree/bindings/media/nxp,imx8-jpeg.yaml
14524 F:      drivers/media/platform/nxp/imx-jpeg
14525
14526 NZXT-KRAKEN2 HARDWARE MONITORING DRIVER
14527 M:      Jonas Malaco <jonas@protocubo.io>
14528 L:      linux-hwmon@vger.kernel.org
14529 S:      Maintained
14530 F:      Documentation/hwmon/nzxt-kraken2.rst
14531 F:      drivers/hwmon/nzxt-kraken2.c
14532
14533 NZXT-SMART2 HARDWARE MONITORING DRIVER
14534 M:      Aleksandr Mezin <mezin.alexander@gmail.com>
14535 L:      linux-hwmon@vger.kernel.org
14536 S:      Maintained
14537 F:      Documentation/hwmon/nzxt-smart2.rst
14538 F:      drivers/hwmon/nzxt-smart2.c
14539
14540 OBJAGG
14541 M:      Jiri Pirko <jiri@nvidia.com>
14542 L:      netdev@vger.kernel.org
14543 S:      Supported
14544 F:      include/linux/objagg.h
14545 F:      lib/objagg.c
14546 F:      lib/test_objagg.c
14547
14548 OBJTOOL
14549 M:      Josh Poimboeuf <jpoimboe@kernel.org>
14550 M:      Peter Zijlstra <peterz@infradead.org>
14551 S:      Supported
14552 F:      tools/objtool/
14553 F:      include/linux/objtool.h
14554
14555 OCELOT ETHERNET SWITCH DRIVER
14556 M:      Vladimir Oltean <vladimir.oltean@nxp.com>
14557 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
14558 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
14559 M:      UNGLinuxDriver@microchip.com
14560 L:      netdev@vger.kernel.org
14561 S:      Supported
14562 F:      drivers/net/dsa/ocelot/*
14563 F:      drivers/net/ethernet/mscc/
14564 F:      include/soc/mscc/ocelot*
14565 F:      net/dsa/tag_ocelot.c
14566 F:      net/dsa/tag_ocelot_8021q.c
14567 F:      tools/testing/selftests/drivers/net/ocelot/*
14568
14569 OCXL (Open Coherent Accelerator Processor Interface OpenCAPI) DRIVER
14570 M:      Frederic Barrat <fbarrat@linux.ibm.com>
14571 M:      Andrew Donnellan <ajd@linux.ibm.com>
14572 L:      linuxppc-dev@lists.ozlabs.org
14573 S:      Supported
14574 F:      Documentation/userspace-api/accelerators/ocxl.rst
14575 F:      arch/powerpc/include/asm/pnv-ocxl.h
14576 F:      arch/powerpc/platforms/powernv/ocxl.c
14577 F:      drivers/misc/ocxl/
14578 F:      include/misc/ocxl*
14579 F:      include/uapi/misc/ocxl.h
14580
14581 OMAP AUDIO SUPPORT
14582 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
14583 M:      Jarkko Nikula <jarkko.nikula@bitmer.com>
14584 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
14585 L:      linux-omap@vger.kernel.org
14586 S:      Maintained
14587 F:      sound/soc/ti/n810.c
14588 F:      sound/soc/ti/omap*
14589 F:      sound/soc/ti/rx51.c
14590 F:      sound/soc/ti/sdma-pcm.*
14591
14592 OMAP CLOCK FRAMEWORK SUPPORT
14593 M:      Paul Walmsley <paul@pwsan.com>
14594 L:      linux-omap@vger.kernel.org
14595 S:      Maintained
14596 F:      arch/arm/*omap*/*clock*
14597
14598 OMAP DEVICE TREE SUPPORT
14599 M:      Benoît Cousson <bcousson@baylibre.com>
14600 M:      Tony Lindgren <tony@atomide.com>
14601 L:      linux-omap@vger.kernel.org
14602 L:      devicetree@vger.kernel.org
14603 S:      Maintained
14604 F:      arch/arm/boot/dts/*am3*
14605 F:      arch/arm/boot/dts/*am4*
14606 F:      arch/arm/boot/dts/*am5*
14607 F:      arch/arm/boot/dts/*dra7*
14608 F:      arch/arm/boot/dts/*omap*
14609 F:      arch/arm/boot/dts/logicpd-som-lv*
14610 F:      arch/arm/boot/dts/logicpd-torpedo*
14611
14612 OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
14613 L:      linux-omap@vger.kernel.org
14614 L:      linux-fbdev@vger.kernel.org
14615 S:      Orphan
14616 F:      Documentation/arm/omap/dss.rst
14617 F:      drivers/video/fbdev/omap2/
14618
14619 OMAP FRAMEBUFFER SUPPORT
14620 L:      linux-fbdev@vger.kernel.org
14621 L:      linux-omap@vger.kernel.org
14622 S:      Orphan
14623 F:      drivers/video/fbdev/omap/
14624
14625 OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT
14626 M:      Roger Quadros <rogerq@kernel.org>
14627 M:      Tony Lindgren <tony@atomide.com>
14628 L:      linux-omap@vger.kernel.org
14629 S:      Maintained
14630 F:      arch/arm/mach-omap2/*gpmc*
14631 F:      drivers/memory/omap-gpmc.c
14632
14633 OMAP GPIO DRIVER
14634 M:      Grygorii Strashko <grygorii.strashko@ti.com>
14635 M:      Santosh Shilimkar <ssantosh@kernel.org>
14636 M:      Kevin Hilman <khilman@kernel.org>
14637 L:      linux-omap@vger.kernel.org
14638 S:      Maintained
14639 F:      Documentation/devicetree/bindings/gpio/ti,omap-gpio.yaml
14640 F:      drivers/gpio/gpio-omap.c
14641
14642 OMAP HARDWARE SPINLOCK SUPPORT
14643 M:      Ohad Ben-Cohen <ohad@wizery.com>
14644 L:      linux-omap@vger.kernel.org
14645 S:      Maintained
14646 F:      drivers/hwspinlock/omap_hwspinlock.c
14647
14648 OMAP HS MMC SUPPORT
14649 L:      linux-mmc@vger.kernel.org
14650 L:      linux-omap@vger.kernel.org
14651 S:      Orphan
14652 F:      drivers/mmc/host/omap_hsmmc.c
14653
14654 OMAP HWMOD DATA
14655 M:      Paul Walmsley <paul@pwsan.com>
14656 L:      linux-omap@vger.kernel.org
14657 S:      Maintained
14658 F:      arch/arm/mach-omap2/omap_hwmod*data*
14659
14660 OMAP HWMOD SUPPORT
14661 M:      Benoît Cousson <bcousson@baylibre.com>
14662 M:      Paul Walmsley <paul@pwsan.com>
14663 L:      linux-omap@vger.kernel.org
14664 S:      Maintained
14665 F:      arch/arm/mach-omap2/omap_hwmod.*
14666
14667 OMAP I2C DRIVER
14668 M:      Vignesh R <vigneshr@ti.com>
14669 L:      linux-omap@vger.kernel.org
14670 L:      linux-i2c@vger.kernel.org
14671 S:      Maintained
14672 F:      Documentation/devicetree/bindings/i2c/ti,omap4-i2c.yaml
14673 F:      drivers/i2c/busses/i2c-omap.c
14674
14675 OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS)
14676 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
14677 L:      linux-media@vger.kernel.org
14678 S:      Maintained
14679 F:      Documentation/devicetree/bindings/media/ti,omap3isp.txt
14680 F:      drivers/media/platform/ti/omap3isp/
14681 F:      drivers/staging/media/omap4iss/
14682
14683 OMAP MMC SUPPORT
14684 M:      Aaro Koskinen <aaro.koskinen@iki.fi>
14685 L:      linux-omap@vger.kernel.org
14686 S:      Odd Fixes
14687 F:      drivers/mmc/host/omap.c
14688
14689 OMAP POWER MANAGEMENT SUPPORT
14690 M:      Kevin Hilman <khilman@kernel.org>
14691 L:      linux-omap@vger.kernel.org
14692 S:      Maintained
14693 F:      arch/arm/*omap*/*pm*
14694 F:      drivers/cpufreq/omap-cpufreq.c
14695
14696 OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT
14697 M:      Paul Walmsley <paul@pwsan.com>
14698 L:      linux-omap@vger.kernel.org
14699 S:      Maintained
14700 F:      arch/arm/mach-omap2/prm*
14701
14702 OMAP RANDOM NUMBER GENERATOR SUPPORT
14703 M:      Deepak Saxena <dsaxena@plexity.net>
14704 S:      Maintained
14705 F:      drivers/char/hw_random/omap-rng.c
14706
14707 OMAP USB SUPPORT
14708 L:      linux-usb@vger.kernel.org
14709 L:      linux-omap@vger.kernel.org
14710 S:      Orphan
14711 F:      arch/arm/*omap*/usb*
14712 F:      drivers/usb/*/*omap*
14713
14714 OMAP/NEWFLOW NANOBONE MACHINE SUPPORT
14715 M:      Mark Jackson <mpfj@newflow.co.uk>
14716 L:      linux-omap@vger.kernel.org
14717 S:      Maintained
14718 F:      arch/arm/boot/dts/am335x-nano.dts
14719
14720 OMAP1 SUPPORT
14721 M:      Aaro Koskinen <aaro.koskinen@iki.fi>
14722 M:      Janusz Krzysztofik <jmkrzyszt@gmail.com>
14723 M:      Tony Lindgren <tony@atomide.com>
14724 L:      linux-omap@vger.kernel.org
14725 S:      Maintained
14726 Q:      http://patchwork.kernel.org/project/linux-omap/list/
14727 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
14728 F:      arch/arm/configs/omap1_defconfig
14729 F:      arch/arm/mach-omap1/
14730 F:      arch/arm/plat-omap/
14731 F:      drivers/i2c/busses/i2c-omap.c
14732 F:      include/linux/platform_data/ams-delta-fiq.h
14733 F:      include/linux/platform_data/i2c-omap.h
14734
14735 OMAP2+ SUPPORT
14736 M:      Tony Lindgren <tony@atomide.com>
14737 L:      linux-omap@vger.kernel.org
14738 S:      Maintained
14739 W:      http://www.muru.com/linux/omap/
14740 W:      http://linux.omap.com/
14741 Q:      http://patchwork.kernel.org/project/linux-omap/list/
14742 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
14743 F:      arch/arm/configs/omap2plus_defconfig
14744 F:      arch/arm/mach-omap2/
14745 F:      arch/arm/plat-omap/
14746 F:      drivers/bus/ti-sysc.c
14747 F:      drivers/i2c/busses/i2c-omap.c
14748 F:      drivers/irqchip/irq-omap-intc.c
14749 F:      drivers/mfd/*omap*.c
14750 F:      drivers/mfd/menelaus.c
14751 F:      drivers/mfd/palmas.c
14752 F:      drivers/mfd/tps65217.c
14753 F:      drivers/mfd/tps65218.c
14754 F:      drivers/mfd/tps65910.c
14755 F:      drivers/mfd/twl-core.[ch]
14756 F:      drivers/mfd/twl4030*.c
14757 F:      drivers/mfd/twl6030*.c
14758 F:      drivers/mfd/twl6040*.c
14759 F:      drivers/regulator/palmas-regulator*.c
14760 F:      drivers/regulator/pbias-regulator.c
14761 F:      drivers/regulator/tps65217-regulator.c
14762 F:      drivers/regulator/tps65218-regulator.c
14763 F:      drivers/regulator/tps65910-regulator.c
14764 F:      drivers/regulator/twl-regulator.c
14765 F:      drivers/regulator/twl6030-regulator.c
14766 F:      include/linux/platform_data/i2c-omap.h
14767 F:      include/linux/platform_data/ti-sysc.h
14768
14769 OMFS FILESYSTEM
14770 M:      Bob Copeland <me@bobcopeland.com>
14771 L:      linux-karma-devel@lists.sourceforge.net
14772 S:      Maintained
14773 F:      Documentation/filesystems/omfs.rst
14774 F:      fs/omfs/
14775
14776 OMNIKEY CARDMAN 4000 DRIVER
14777 M:      Harald Welte <laforge@gnumonks.org>
14778 S:      Maintained
14779 F:      drivers/char/pcmcia/cm4000_cs.c
14780 F:      include/linux/cm4000_cs.h
14781 F:      include/uapi/linux/cm4000_cs.h
14782
14783 OMNIKEY CARDMAN 4040 DRIVER
14784 M:      Harald Welte <laforge@gnumonks.org>
14785 S:      Maintained
14786 F:      drivers/char/pcmcia/cm4040_cs.*
14787
14788 OMNIVISION OG01A1B SENSOR DRIVER
14789 M:      Shawn Tu <shawnx.tu@intel.com>
14790 L:      linux-media@vger.kernel.org
14791 S:      Maintained
14792 F:      drivers/media/i2c/og01a1b.c
14793
14794 OMNIVISION OV02A10 SENSOR DRIVER
14795 M:      Dongchun Zhu <dongchun.zhu@mediatek.com>
14796 L:      linux-media@vger.kernel.org
14797 S:      Maintained
14798 T:      git git://linuxtv.org/media_tree.git
14799 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov02a10.yaml
14800 F:      drivers/media/i2c/ov02a10.c
14801
14802 OMNIVISION OV08D10 SENSOR DRIVER
14803 M:      Jimmy Su <jimmy.su@intel.com>
14804 L:      linux-media@vger.kernel.org
14805 S:      Maintained
14806 T:      git git://linuxtv.org/media_tree.git
14807 F:      drivers/media/i2c/ov08d10.c
14808
14809 OMNIVISION OV13858 SENSOR DRIVER
14810 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
14811 L:      linux-media@vger.kernel.org
14812 S:      Maintained
14813 T:      git git://linuxtv.org/media_tree.git
14814 F:      drivers/media/i2c/ov13858.c
14815
14816 OMNIVISION OV13B10 SENSOR DRIVER
14817 M:      Arec Kao <arec.kao@intel.com>
14818 L:      linux-media@vger.kernel.org
14819 S:      Maintained
14820 T:      git git://linuxtv.org/media_tree.git
14821 F:      drivers/media/i2c/ov13b10.c
14822
14823 OMNIVISION OV2680 SENSOR DRIVER
14824 M:      Rui Miguel Silva <rmfrfs@gmail.com>
14825 L:      linux-media@vger.kernel.org
14826 S:      Maintained
14827 T:      git git://linuxtv.org/media_tree.git
14828 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov2680.yaml
14829 F:      drivers/media/i2c/ov2680.c
14830
14831 OMNIVISION OV2685 SENSOR DRIVER
14832 M:      Shunqian Zheng <zhengsq@rock-chips.com>
14833 L:      linux-media@vger.kernel.org
14834 S:      Maintained
14835 T:      git git://linuxtv.org/media_tree.git
14836 F:      drivers/media/i2c/ov2685.c
14837
14838 OMNIVISION OV2740 SENSOR DRIVER
14839 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
14840 R:      Shawn Tu <shawnx.tu@intel.com>
14841 R:      Bingbu Cao <bingbu.cao@intel.com>
14842 L:      linux-media@vger.kernel.org
14843 S:      Maintained
14844 T:      git git://linuxtv.org/media_tree.git
14845 F:      drivers/media/i2c/ov2740.c
14846
14847 OMNIVISION OV5640 SENSOR DRIVER
14848 M:      Steve Longerbeam <slongerbeam@gmail.com>
14849 L:      linux-media@vger.kernel.org
14850 S:      Maintained
14851 T:      git git://linuxtv.org/media_tree.git
14852 F:      drivers/media/i2c/ov5640.c
14853
14854 OMNIVISION OV5647 SENSOR DRIVER
14855 M:      Dave Stevenson <dave.stevenson@raspberrypi.com>
14856 M:      Jacopo Mondi <jacopo@jmondi.org>
14857 L:      linux-media@vger.kernel.org
14858 S:      Maintained
14859 T:      git git://linuxtv.org/media_tree.git
14860 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov5647.yaml
14861 F:      drivers/media/i2c/ov5647.c
14862
14863 OMNIVISION OV5670 SENSOR DRIVER
14864 M:      Chiranjeevi Rapolu <chiranjeevi.rapolu@intel.com>
14865 L:      linux-media@vger.kernel.org
14866 S:      Maintained
14867 T:      git git://linuxtv.org/media_tree.git
14868 F:      drivers/media/i2c/ov5670.c
14869
14870 OMNIVISION OV5675 SENSOR DRIVER
14871 M:      Shawn Tu <shawnx.tu@intel.com>
14872 L:      linux-media@vger.kernel.org
14873 S:      Maintained
14874 T:      git git://linuxtv.org/media_tree.git
14875 F:      drivers/media/i2c/ov5675.c
14876
14877 OMNIVISION OV5693 SENSOR DRIVER
14878 M:      Daniel Scally <djrscally@gmail.com>
14879 L:      linux-media@vger.kernel.org
14880 S:      Maintained
14881 T:      git git://linuxtv.org/media_tree.git
14882 F:      drivers/media/i2c/ov5693.c
14883
14884 OMNIVISION OV5695 SENSOR DRIVER
14885 M:      Shunqian Zheng <zhengsq@rock-chips.com>
14886 L:      linux-media@vger.kernel.org
14887 S:      Maintained
14888 T:      git git://linuxtv.org/media_tree.git
14889 F:      drivers/media/i2c/ov5695.c
14890
14891 OMNIVISION OV7670 SENSOR DRIVER
14892 L:      linux-media@vger.kernel.org
14893 S:      Orphan
14894 T:      git git://linuxtv.org/media_tree.git
14895 F:      Documentation/devicetree/bindings/media/i2c/ov7670.txt
14896 F:      drivers/media/i2c/ov7670.c
14897
14898 OMNIVISION OV772x SENSOR DRIVER
14899 M:      Jacopo Mondi <jacopo@jmondi.org>
14900 L:      linux-media@vger.kernel.org
14901 S:      Odd fixes
14902 T:      git git://linuxtv.org/media_tree.git
14903 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov772x.yaml
14904 F:      drivers/media/i2c/ov772x.c
14905 F:      include/media/i2c/ov772x.h
14906
14907 OMNIVISION OV7740 SENSOR DRIVER
14908 M:      Wenyou Yang <wenyou.yang@microchip.com>
14909 L:      linux-media@vger.kernel.org
14910 S:      Maintained
14911 T:      git git://linuxtv.org/media_tree.git
14912 F:      Documentation/devicetree/bindings/media/i2c/ov7740.txt
14913 F:      drivers/media/i2c/ov7740.c
14914
14915 OMNIVISION OV8856 SENSOR DRIVER
14916 M:      Dongchun Zhu <dongchun.zhu@mediatek.com>
14917 L:      linux-media@vger.kernel.org
14918 S:      Maintained
14919 T:      git git://linuxtv.org/media_tree.git
14920 F:      Documentation/devicetree/bindings/media/i2c/ov8856.yaml
14921 F:      drivers/media/i2c/ov8856.c
14922
14923 OMNIVISION OV9282 SENSOR DRIVER
14924 M:      Paul J. Murphy <paul.j.murphy@intel.com>
14925 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
14926 L:      linux-media@vger.kernel.org
14927 S:      Maintained
14928 T:      git git://linuxtv.org/media_tree.git
14929 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov9282.yaml
14930 F:      drivers/media/i2c/ov9282.c
14931
14932 OMNIVISION OV9640 SENSOR DRIVER
14933 M:      Petr Cvek <petrcvekcz@gmail.com>
14934 L:      linux-media@vger.kernel.org
14935 S:      Maintained
14936 F:      drivers/media/i2c/ov9640.*
14937
14938 OMNIVISION OV9650 SENSOR DRIVER
14939 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
14940 R:      Akinobu Mita <akinobu.mita@gmail.com>
14941 R:      Sylwester Nawrocki <s.nawrocki@samsung.com>
14942 L:      linux-media@vger.kernel.org
14943 S:      Maintained
14944 T:      git git://linuxtv.org/media_tree.git
14945 F:      Documentation/devicetree/bindings/media/i2c/ov9650.txt
14946 F:      drivers/media/i2c/ov9650.c
14947
14948 OMNIVISION OV9734 SENSOR DRIVER
14949 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
14950 R:      Bingbu Cao <bingbu.cao@intel.com>
14951 L:      linux-media@vger.kernel.org
14952 S:      Maintained
14953 T:      git git://linuxtv.org/media_tree.git
14954 F:      drivers/media/i2c/ov9734.c
14955
14956 ONENAND FLASH DRIVER
14957 M:      Kyungmin Park <kyungmin.park@samsung.com>
14958 L:      linux-mtd@lists.infradead.org
14959 S:      Maintained
14960 F:      drivers/mtd/nand/onenand/
14961 F:      include/linux/mtd/onenand*.h
14962
14963 ONION OMEGA2+ BOARD
14964 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
14965 L:      linux-mips@vger.kernel.org
14966 S:      Maintained
14967 F:      arch/mips/boot/dts/ralink/omega2p.dts
14968
14969 OP-TEE DRIVER
14970 M:      Jens Wiklander <jens.wiklander@linaro.org>
14971 L:      op-tee@lists.trustedfirmware.org
14972 S:      Maintained
14973 F:      Documentation/ABI/testing/sysfs-bus-optee-devices
14974 F:      drivers/tee/optee/
14975
14976 OP-TEE RANDOM NUMBER GENERATOR (RNG) DRIVER
14977 M:      Sumit Garg <sumit.garg@linaro.org>
14978 L:      op-tee@lists.trustedfirmware.org
14979 S:      Maintained
14980 F:      drivers/char/hw_random/optee-rng.c
14981
14982 OP-TEE RTC DRIVER
14983 M:      Clément Léger <clement.leger@bootlin.com>
14984 L:      linux-rtc@vger.kernel.org
14985 S:      Maintained
14986 F:      drivers/rtc/rtc-optee.c
14987
14988 OPA-VNIC DRIVER
14989 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
14990 L:      linux-rdma@vger.kernel.org
14991 S:      Supported
14992 F:      drivers/infiniband/ulp/opa_vnic
14993
14994 OPEN FIRMWARE AND DEVICE TREE OVERLAYS
14995 M:      Pantelis Antoniou <pantelis.antoniou@konsulko.com>
14996 M:      Frank Rowand <frowand.list@gmail.com>
14997 L:      devicetree@vger.kernel.org
14998 S:      Maintained
14999 F:      Documentation/devicetree/dynamic-resolution-notes.rst
15000 F:      Documentation/devicetree/overlay-notes.rst
15001 F:      drivers/of/overlay.c
15002 F:      drivers/of/resolver.c
15003 K:      of_overlay_notifier_
15004
15005 OPEN FIRMWARE AND FLATTENED DEVICE TREE
15006 M:      Rob Herring <robh+dt@kernel.org>
15007 M:      Frank Rowand <frowand.list@gmail.com>
15008 L:      devicetree@vger.kernel.org
15009 S:      Maintained
15010 C:      irc://irc.libera.chat/devicetree
15011 W:      http://www.devicetree.org/
15012 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
15013 F:      Documentation/ABI/testing/sysfs-firmware-ofw
15014 F:      drivers/of/
15015 F:      include/linux/of*.h
15016 F:      scripts/dtc/
15017
15018 OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
15019 M:      Rob Herring <robh+dt@kernel.org>
15020 M:      Krzysztof Kozlowski <krzysztof.kozlowski+dt@linaro.org>
15021 L:      devicetree@vger.kernel.org
15022 S:      Maintained
15023 C:      irc://irc.libera.chat/devicetree
15024 Q:      http://patchwork.ozlabs.org/project/devicetree-bindings/list/
15025 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
15026 F:      Documentation/devicetree/
15027 F:      arch/*/boot/dts/
15028 F:      include/dt-bindings/
15029
15030 OPENCOMPUTE PTP CLOCK DRIVER
15031 M:      Jonathan Lemon <jonathan.lemon@gmail.com>
15032 M:      Vadim Fedorenko <vadfed@fb.com>
15033 L:      netdev@vger.kernel.org
15034 S:      Maintained
15035 F:      drivers/ptp/ptp_ocp.c
15036
15037 OPENCORES I2C BUS DRIVER
15038 M:      Peter Korsgaard <peter@korsgaard.com>
15039 M:      Andrew Lunn <andrew@lunn.ch>
15040 L:      linux-i2c@vger.kernel.org
15041 S:      Maintained
15042 F:      Documentation/devicetree/bindings/i2c/i2c-ocores.txt
15043 F:      Documentation/i2c/busses/i2c-ocores.rst
15044 F:      drivers/i2c/busses/i2c-ocores.c
15045 F:      include/linux/platform_data/i2c-ocores.h
15046
15047 OPENRISC ARCHITECTURE
15048 M:      Jonas Bonn <jonas@southpole.se>
15049 M:      Stefan Kristiansson <stefan.kristiansson@saunalahti.fi>
15050 M:      Stafford Horne <shorne@gmail.com>
15051 L:      openrisc@lists.librecores.org
15052 S:      Maintained
15053 W:      http://openrisc.io
15054 T:      git git://github.com/openrisc/linux.git
15055 F:      Documentation/devicetree/bindings/openrisc/
15056 F:      Documentation/openrisc/
15057 F:      arch/openrisc/
15058 F:      drivers/irqchip/irq-ompic.c
15059 F:      drivers/irqchip/irq-or1k-*
15060
15061 OPENVSWITCH
15062 M:      Pravin B Shelar <pshelar@ovn.org>
15063 L:      netdev@vger.kernel.org
15064 L:      dev@openvswitch.org
15065 S:      Maintained
15066 W:      http://openvswitch.org
15067 F:      include/uapi/linux/openvswitch.h
15068 F:      net/openvswitch/
15069
15070 OPERATING PERFORMANCE POINTS (OPP)
15071 M:      Viresh Kumar <vireshk@kernel.org>
15072 M:      Nishanth Menon <nm@ti.com>
15073 M:      Stephen Boyd <sboyd@kernel.org>
15074 L:      linux-pm@vger.kernel.org
15075 S:      Maintained
15076 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git
15077 F:      Documentation/devicetree/bindings/opp/
15078 F:      Documentation/power/opp.rst
15079 F:      drivers/opp/
15080 F:      include/linux/pm_opp.h
15081
15082 OPL4 DRIVER
15083 M:      Clemens Ladisch <clemens@ladisch.de>
15084 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15085 S:      Maintained
15086 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
15087 F:      sound/drivers/opl4/
15088
15089 ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
15090 M:      Mark Fasheh <mark@fasheh.com>
15091 M:      Joel Becker <jlbec@evilplan.org>
15092 M:      Joseph Qi <joseph.qi@linux.alibaba.com>
15093 L:      ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
15094 S:      Supported
15095 W:      http://ocfs2.wiki.kernel.org
15096 F:      Documentation/filesystems/dlmfs.rst
15097 F:      Documentation/filesystems/ocfs2.rst
15098 F:      fs/ocfs2/
15099
15100 ORANGEFS FILESYSTEM
15101 M:      Mike Marshall <hubcap@omnibond.com>
15102 R:      Martin Brandenburg <martin@omnibond.com>
15103 L:      devel@lists.orangefs.org
15104 S:      Supported
15105 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hubcap/linux.git
15106 F:      Documentation/filesystems/orangefs.rst
15107 F:      fs/orangefs/
15108
15109 ORINOCO DRIVER
15110 L:      linux-wireless@vger.kernel.org
15111 S:      Orphan
15112 W:      https://wireless.wiki.kernel.org/en/users/Drivers/orinoco
15113 W:      http://www.nongnu.org/orinoco/
15114 F:      drivers/net/wireless/intersil/orinoco/
15115
15116 OV2659 OMNIVISION SENSOR DRIVER
15117 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
15118 L:      linux-media@vger.kernel.org
15119 S:      Maintained
15120 W:      https://linuxtv.org
15121 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15122 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
15123 F:      drivers/media/i2c/ov2659.c
15124 F:      include/media/i2c/ov2659.h
15125
15126 OVERLAY FILESYSTEM
15127 M:      Miklos Szeredi <miklos@szeredi.hu>
15128 L:      linux-unionfs@vger.kernel.org
15129 S:      Supported
15130 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git
15131 F:      Documentation/filesystems/overlayfs.rst
15132 F:      fs/overlayfs/
15133
15134 P54 WIRELESS DRIVER
15135 M:      Christian Lamparter <chunkeey@googlemail.com>
15136 L:      linux-wireless@vger.kernel.org
15137 S:      Maintained
15138 W:      https://wireless.wiki.kernel.org/en/users/Drivers/p54
15139 F:      drivers/net/wireless/intersil/p54/
15140
15141 PACKING
15142 M:      Vladimir Oltean <olteanv@gmail.com>
15143 L:      netdev@vger.kernel.org
15144 S:      Supported
15145 F:      Documentation/core-api/packing.rst
15146 F:      include/linux/packing.h
15147 F:      lib/packing.c
15148
15149 PADATA PARALLEL EXECUTION MECHANISM
15150 M:      Steffen Klassert <steffen.klassert@secunet.com>
15151 M:      Daniel Jordan <daniel.m.jordan@oracle.com>
15152 L:      linux-crypto@vger.kernel.org
15153 L:      linux-kernel@vger.kernel.org
15154 S:      Maintained
15155 F:      Documentation/core-api/padata.rst
15156 F:      include/linux/padata.h
15157 F:      kernel/padata.c
15158
15159 PAGE CACHE
15160 M:      Matthew Wilcox (Oracle) <willy@infradead.org>
15161 L:      linux-fsdevel@vger.kernel.org
15162 S:      Supported
15163 T:      git git://git.infradead.org/users/willy/pagecache.git
15164 F:      Documentation/filesystems/locking.rst
15165 F:      Documentation/filesystems/vfs.rst
15166 F:      include/linux/pagemap.h
15167 F:      mm/filemap.c
15168 F:      mm/page-writeback.c
15169 F:      mm/readahead.c
15170 F:      mm/truncate.c
15171
15172 PAGE POOL
15173 M:      Jesper Dangaard Brouer <hawk@kernel.org>
15174 M:      Ilias Apalodimas <ilias.apalodimas@linaro.org>
15175 L:      netdev@vger.kernel.org
15176 S:      Supported
15177 F:      Documentation/networking/page_pool.rst
15178 F:      include/net/page_pool.h
15179 F:      include/trace/events/page_pool.h
15180 F:      net/core/page_pool.c
15181
15182 PAGE TABLE CHECK
15183 M:      Pasha Tatashin <pasha.tatashin@soleen.com>
15184 M:      Andrew Morton <akpm@linux-foundation.org>
15185 L:      linux-mm@kvack.org
15186 S:      Maintained
15187 F:      Documentation/vm/page_table_check.rst
15188 F:      include/linux/page_table_check.h
15189 F:      mm/page_table_check.c
15190
15191 PANASONIC LAPTOP ACPI EXTRAS DRIVER
15192 M:      Kenneth Chan <kenneth.t.chan@gmail.com>
15193 L:      platform-driver-x86@vger.kernel.org
15194 S:      Maintained
15195 F:      drivers/platform/x86/panasonic-laptop.c
15196
15197 PARALLAX PING IIO SENSOR DRIVER
15198 M:      Andreas Klinger <ak@it-klinger.de>
15199 L:      linux-iio@vger.kernel.org
15200 S:      Maintained
15201 F:      Documentation/devicetree/bindings/iio/proximity/parallax-ping.yaml
15202 F:      drivers/iio/proximity/ping.c
15203
15204 PARALLEL LCD/KEYPAD PANEL DRIVER
15205 M:      Willy Tarreau <willy@haproxy.com>
15206 M:      Ksenija Stanojevic <ksenija.stanojevic@gmail.com>
15207 S:      Odd Fixes
15208 F:      Documentation/admin-guide/lcd-panel-cgram.rst
15209 F:      drivers/auxdisplay/panel.c
15210
15211 PARALLEL PORT SUBSYSTEM
15212 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
15213 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
15214 L:      linux-parport@lists.infradead.org (subscribers-only)
15215 S:      Maintained
15216 F:      Documentation/driver-api/parport*.rst
15217 F:      drivers/char/ppdev.c
15218 F:      drivers/parport/
15219 F:      include/linux/parport*.h
15220 F:      include/uapi/linux/ppdev.h
15221
15222 PARAVIRT_OPS INTERFACE
15223 M:      Juergen Gross <jgross@suse.com>
15224 M:      Srivatsa S. Bhat (VMware) <srivatsa@csail.mit.edu>
15225 R:      Alexey Makhalov <amakhalov@vmware.com>
15226 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
15227 L:      virtualization@lists.linux-foundation.org
15228 L:      x86@kernel.org
15229 S:      Supported
15230 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
15231 F:      Documentation/virt/paravirt_ops.rst
15232 F:      arch/*/include/asm/paravirt*.h
15233 F:      arch/*/kernel/paravirt*
15234 F:      include/linux/hypervisor.h
15235
15236 PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
15237 M:      Tim Waugh <tim@cyberelk.net>
15238 L:      linux-parport@lists.infradead.org (subscribers-only)
15239 S:      Maintained
15240 F:      Documentation/admin-guide/blockdev/paride.rst
15241 F:      drivers/block/paride/
15242
15243 PARISC ARCHITECTURE
15244 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
15245 M:      Helge Deller <deller@gmx.de>
15246 L:      linux-parisc@vger.kernel.org
15247 S:      Maintained
15248 W:      https://parisc.wiki.kernel.org
15249 Q:      http://patchwork.kernel.org/project/linux-parisc/list/
15250 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
15251 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git
15252 F:      Documentation/parisc/
15253 F:      arch/parisc/
15254 F:      drivers/char/agp/parisc-agp.c
15255 F:      drivers/input/misc/hp_sdc_rtc.c
15256 F:      drivers/input/serio/gscps2.c
15257 F:      drivers/input/serio/hp_sdc*
15258 F:      drivers/parisc/
15259 F:      drivers/parport/parport_gsc.*
15260 F:      drivers/tty/serial/8250/8250_gsc.c
15261 F:      drivers/video/console/sti*
15262 F:      drivers/video/fbdev/sti*
15263 F:      drivers/video/logo/logo_parisc*
15264 F:      include/linux/hp_sdc.h
15265
15266 PARMAN
15267 M:      Jiri Pirko <jiri@nvidia.com>
15268 L:      netdev@vger.kernel.org
15269 S:      Supported
15270 F:      include/linux/parman.h
15271 F:      lib/parman.c
15272 F:      lib/test_parman.c
15273
15274 PC ENGINES APU BOARD DRIVER
15275 M:      Enrico Weigelt, metux IT consult <info@metux.net>
15276 S:      Maintained
15277 F:      drivers/platform/x86/pcengines-apuv2.c
15278
15279 PC87360 HARDWARE MONITORING DRIVER
15280 M:      Jim Cromie <jim.cromie@gmail.com>
15281 L:      linux-hwmon@vger.kernel.org
15282 S:      Maintained
15283 F:      Documentation/hwmon/pc87360.rst
15284 F:      drivers/hwmon/pc87360.c
15285
15286 PC8736x GPIO DRIVER
15287 M:      Jim Cromie <jim.cromie@gmail.com>
15288 S:      Maintained
15289 F:      drivers/char/pc8736x_gpio.c
15290
15291 PC87427 HARDWARE MONITORING DRIVER
15292 M:      Jean Delvare <jdelvare@suse.com>
15293 L:      linux-hwmon@vger.kernel.org
15294 S:      Maintained
15295 F:      Documentation/hwmon/pc87427.rst
15296 F:      drivers/hwmon/pc87427.c
15297
15298 PCA9532 LED DRIVER
15299 M:      Riku Voipio <riku.voipio@iki.fi>
15300 S:      Maintained
15301 F:      drivers/leds/leds-pca9532.c
15302 F:      include/linux/leds-pca9532.h
15303
15304 PCA9541 I2C BUS MASTER SELECTOR DRIVER
15305 M:      Guenter Roeck <linux@roeck-us.net>
15306 L:      linux-i2c@vger.kernel.org
15307 S:      Maintained
15308 F:      drivers/i2c/muxes/i2c-mux-pca9541.c
15309
15310 PCDP - PRIMARY CONSOLE AND DEBUG PORT
15311 M:      Khalid Aziz <khalid@gonehiking.org>
15312 S:      Maintained
15313 F:      drivers/firmware/pcdp.*
15314
15315 PCI DRIVER FOR AARDVARK (Marvell Armada 3700)
15316 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
15317 M:      Pali Rohár <pali@kernel.org>
15318 L:      linux-pci@vger.kernel.org
15319 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15320 S:      Maintained
15321 F:      Documentation/devicetree/bindings/pci/aardvark-pci.txt
15322 F:      drivers/pci/controller/pci-aardvark.c
15323
15324 PCI DRIVER FOR ALTERA PCIE IP
15325 M:      Joyce Ooi <joyce.ooi@intel.com>
15326 L:      linux-pci@vger.kernel.org
15327 S:      Supported
15328 F:      Documentation/devicetree/bindings/pci/altera-pcie.txt
15329 F:      drivers/pci/controller/pcie-altera.c
15330
15331 PCI DRIVER FOR APPLIEDMICRO XGENE
15332 M:      Toan Le <toan@os.amperecomputing.com>
15333 L:      linux-pci@vger.kernel.org
15334 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15335 S:      Maintained
15336 F:      Documentation/devicetree/bindings/pci/xgene-pci.txt
15337 F:      drivers/pci/controller/pci-xgene.c
15338
15339 PCI DRIVER FOR ARM VERSATILE PLATFORM
15340 M:      Rob Herring <robh@kernel.org>
15341 L:      linux-pci@vger.kernel.org
15342 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15343 S:      Maintained
15344 F:      Documentation/devicetree/bindings/pci/versatile.yaml
15345 F:      drivers/pci/controller/pci-versatile.c
15346
15347 PCI DRIVER FOR ARMADA 8K
15348 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
15349 L:      linux-pci@vger.kernel.org
15350 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15351 S:      Maintained
15352 F:      Documentation/devicetree/bindings/pci/pci-armada8k.txt
15353 F:      drivers/pci/controller/dwc/pcie-armada8k.c
15354
15355 PCI DRIVER FOR CADENCE PCIE IP
15356 M:      Tom Joseph <tjoseph@cadence.com>
15357 L:      linux-pci@vger.kernel.org
15358 S:      Maintained
15359 F:      Documentation/devicetree/bindings/pci/cdns,*
15360 F:      drivers/pci/controller/cadence/
15361
15362 PCI DRIVER FOR FREESCALE LAYERSCAPE
15363 M:      Minghuan Lian <minghuan.Lian@nxp.com>
15364 M:      Mingkai Hu <mingkai.hu@nxp.com>
15365 M:      Roy Zang <roy.zang@nxp.com>
15366 L:      linuxppc-dev@lists.ozlabs.org
15367 L:      linux-pci@vger.kernel.org
15368 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15369 S:      Maintained
15370 F:      drivers/pci/controller/dwc/*layerscape*
15371
15372 PCI DRIVER FOR GENERIC OF HOSTS
15373 M:      Will Deacon <will@kernel.org>
15374 L:      linux-pci@vger.kernel.org
15375 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15376 S:      Maintained
15377 F:      Documentation/devicetree/bindings/pci/host-generic-pci.yaml
15378 F:      drivers/pci/controller/pci-host-common.c
15379 F:      drivers/pci/controller/pci-host-generic.c
15380
15381 PCI DRIVER FOR IMX6
15382 M:      Richard Zhu <hongxing.zhu@nxp.com>
15383 M:      Lucas Stach <l.stach@pengutronix.de>
15384 L:      linux-pci@vger.kernel.org
15385 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15386 S:      Maintained
15387 F:      Documentation/devicetree/bindings/pci/fsl,imx6q-pcie.yaml
15388 F:      drivers/pci/controller/dwc/*imx6*
15389
15390 PCI DRIVER FOR FU740
15391 M:      Paul Walmsley <paul.walmsley@sifive.com>
15392 M:      Greentime Hu <greentime.hu@sifive.com>
15393 L:      linux-pci@vger.kernel.org
15394 S:      Maintained
15395 F:      Documentation/devicetree/bindings/pci/sifive,fu740-pcie.yaml
15396 F:      drivers/pci/controller/dwc/pcie-fu740.c
15397
15398 PCI DRIVER FOR INTEL IXP4XX
15399 M:      Linus Walleij <linus.walleij@linaro.org>
15400 S:      Maintained
15401 F:      Documentation/devicetree/bindings/pci/intel,ixp4xx-pci.yaml
15402 F:      drivers/pci/controller/pci-ixp4xx.c
15403
15404 PCI DRIVER FOR INTEL VOLUME MANAGEMENT DEVICE (VMD)
15405 M:      Nirmal Patel <nirmal.patel@linux.intel.com>
15406 R:      Jonathan Derrick <jonathan.derrick@linux.dev>
15407 L:      linux-pci@vger.kernel.org
15408 S:      Supported
15409 F:      drivers/pci/controller/vmd.c
15410
15411 PCI DRIVER FOR MICROSEMI SWITCHTEC
15412 M:      Kurt Schwemmer <kurt.schwemmer@microsemi.com>
15413 M:      Logan Gunthorpe <logang@deltatee.com>
15414 L:      linux-pci@vger.kernel.org
15415 S:      Maintained
15416 F:      Documentation/ABI/testing/sysfs-class-switchtec
15417 F:      Documentation/driver-api/switchtec.rst
15418 F:      drivers/ntb/hw/mscc/
15419 F:      drivers/pci/switch/switchtec*
15420 F:      include/linux/switchtec.h
15421 F:      include/uapi/linux/switchtec_ioctl.h
15422
15423 PCI DRIVER FOR MOBIVEIL PCIE IP
15424 M:      Karthikeyan Mitran <m.karthikeyan@mobiveil.co.in>
15425 M:      Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
15426 L:      linux-pci@vger.kernel.org
15427 S:      Supported
15428 F:      Documentation/devicetree/bindings/pci/mobiveil-pcie.txt
15429 F:      drivers/pci/controller/mobiveil/pcie-mobiveil*
15430
15431 PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support)
15432 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
15433 M:      Pali Rohár <pali@kernel.org>
15434 L:      linux-pci@vger.kernel.org
15435 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15436 S:      Maintained
15437 F:      drivers/pci/controller/*mvebu*
15438
15439 PCI DRIVER FOR NVIDIA TEGRA
15440 M:      Thierry Reding <thierry.reding@gmail.com>
15441 L:      linux-tegra@vger.kernel.org
15442 L:      linux-pci@vger.kernel.org
15443 S:      Supported
15444 F:      Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt
15445 F:      drivers/pci/controller/pci-tegra.c
15446
15447 PCI DRIVER FOR NXP LAYERSCAPE GEN4 CONTROLLER
15448 M:      Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
15449 L:      linux-pci@vger.kernel.org
15450 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15451 S:      Maintained
15452 F:      Documentation/devicetree/bindings/pci/layerscape-pcie-gen4.txt
15453 F:      drivers/pci/controller/mobiveil/pcie-layerscape-gen4.c
15454
15455 PCI DRIVER FOR RENESAS R-CAR
15456 M:      Marek Vasut <marek.vasut+renesas@gmail.com>
15457 M:      Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
15458 L:      linux-pci@vger.kernel.org
15459 L:      linux-renesas-soc@vger.kernel.org
15460 S:      Maintained
15461 F:      Documentation/devicetree/bindings/pci/*rcar*
15462 F:      drivers/pci/controller/*rcar*
15463
15464 PCI DRIVER FOR SAMSUNG EXYNOS
15465 M:      Jingoo Han <jingoohan1@gmail.com>
15466 L:      linux-pci@vger.kernel.org
15467 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15468 L:      linux-samsung-soc@vger.kernel.org
15469 S:      Maintained
15470 F:      drivers/pci/controller/dwc/pci-exynos.c
15471
15472 PCI DRIVER FOR SYNOPSYS DESIGNWARE
15473 M:      Jingoo Han <jingoohan1@gmail.com>
15474 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
15475 L:      linux-pci@vger.kernel.org
15476 S:      Maintained
15477 F:      Documentation/devicetree/bindings/pci/snps,dw-pcie.yaml
15478 F:      Documentation/devicetree/bindings/pci/snps,dw-pcie-ep.yaml
15479 F:      drivers/pci/controller/dwc/*designware*
15480
15481 PCI DRIVER FOR TI DRA7XX/J721E
15482 M:      Kishon Vijay Abraham I <kishon@ti.com>
15483 L:      linux-omap@vger.kernel.org
15484 L:      linux-pci@vger.kernel.org
15485 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15486 S:      Supported
15487 F:      Documentation/devicetree/bindings/pci/ti-pci.txt
15488 F:      drivers/pci/controller/cadence/pci-j721e.c
15489 F:      drivers/pci/controller/dwc/pci-dra7xx.c
15490
15491 PCI DRIVER FOR V3 SEMICONDUCTOR V360EPC
15492 M:      Linus Walleij <linus.walleij@linaro.org>
15493 L:      linux-pci@vger.kernel.org
15494 S:      Maintained
15495 F:      Documentation/devicetree/bindings/pci/v3-v360epc-pci.txt
15496 F:      drivers/pci/controller/pci-v3-semi.c
15497
15498 PCI ENDPOINT SUBSYSTEM
15499 M:      Kishon Vijay Abraham I <kishon@ti.com>
15500 M:      Lorenzo Pieralisi <lpieralisi@kernel.org>
15501 R:      Krzysztof Wilczyński <kw@linux.com>
15502 L:      linux-pci@vger.kernel.org
15503 S:      Supported
15504 Q:      https://patchwork.kernel.org/project/linux-pci/list/
15505 B:      https://bugzilla.kernel.org
15506 C:      irc://irc.oftc.net/linux-pci
15507 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lpieralisi/pci.git
15508 F:      Documentation/PCI/endpoint/*
15509 F:      Documentation/misc-devices/pci-endpoint-test.rst
15510 F:      drivers/misc/pci_endpoint_test.c
15511 F:      drivers/pci/endpoint/
15512 F:      tools/pci/
15513
15514 PCI ENHANCED ERROR HANDLING (EEH) FOR POWERPC
15515 M:      Russell Currey <ruscur@russell.cc>
15516 M:      Oliver O'Halloran <oohall@gmail.com>
15517 L:      linuxppc-dev@lists.ozlabs.org
15518 S:      Supported
15519 F:      Documentation/PCI/pci-error-recovery.rst
15520 F:      Documentation/powerpc/eeh-pci-error-recovery.rst
15521 F:      arch/powerpc/include/*/eeh*.h
15522 F:      arch/powerpc/kernel/eeh*.c
15523 F:      arch/powerpc/platforms/*/eeh*.c
15524 F:      drivers/pci/pcie/aer.c
15525 F:      drivers/pci/pcie/dpc.c
15526 F:      drivers/pci/pcie/err.c
15527
15528 PCI ERROR RECOVERY
15529 M:      Linas Vepstas <linasvepstas@gmail.com>
15530 L:      linux-pci@vger.kernel.org
15531 S:      Supported
15532 F:      Documentation/PCI/pci-error-recovery.rst
15533
15534 PCI PEER-TO-PEER DMA (P2PDMA)
15535 M:      Bjorn Helgaas <bhelgaas@google.com>
15536 M:      Logan Gunthorpe <logang@deltatee.com>
15537 L:      linux-pci@vger.kernel.org
15538 S:      Supported
15539 Q:      https://patchwork.kernel.org/project/linux-pci/list/
15540 B:      https://bugzilla.kernel.org
15541 C:      irc://irc.oftc.net/linux-pci
15542 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
15543 F:      Documentation/driver-api/pci/p2pdma.rst
15544 F:      drivers/pci/p2pdma.c
15545 F:      include/linux/pci-p2pdma.h
15546
15547 PCI MSI DRIVER FOR ALTERA MSI IP
15548 M:      Joyce Ooi <joyce.ooi@intel.com>
15549 L:      linux-pci@vger.kernel.org
15550 S:      Supported
15551 F:      Documentation/devicetree/bindings/pci/altera-pcie-msi.txt
15552 F:      drivers/pci/controller/pcie-altera-msi.c
15553
15554 PCI MSI DRIVER FOR APPLIEDMICRO XGENE
15555 M:      Toan Le <toan@os.amperecomputing.com>
15556 L:      linux-pci@vger.kernel.org
15557 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15558 S:      Maintained
15559 F:      Documentation/devicetree/bindings/pci/xgene-pci-msi.txt
15560 F:      drivers/pci/controller/pci-xgene-msi.c
15561
15562 PCI NATIVE HOST BRIDGE AND ENDPOINT DRIVERS
15563 M:      Lorenzo Pieralisi <lpieralisi@kernel.org>
15564 R:      Rob Herring <robh@kernel.org>
15565 R:      Krzysztof Wilczyński <kw@linux.com>
15566 L:      linux-pci@vger.kernel.org
15567 S:      Supported
15568 Q:      https://patchwork.kernel.org/project/linux-pci/list/
15569 B:      https://bugzilla.kernel.org
15570 C:      irc://irc.oftc.net/linux-pci
15571 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lpieralisi/pci.git
15572 F:      drivers/pci/controller/
15573 F:      drivers/pci/pci-bridge-emul.c
15574 F:      drivers/pci/pci-bridge-emul.h
15575
15576 PCI SUBSYSTEM
15577 M:      Bjorn Helgaas <bhelgaas@google.com>
15578 L:      linux-pci@vger.kernel.org
15579 S:      Supported
15580 Q:      https://patchwork.kernel.org/project/linux-pci/list/
15581 B:      https://bugzilla.kernel.org
15582 C:      irc://irc.oftc.net/linux-pci
15583 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
15584 F:      Documentation/PCI/
15585 F:      Documentation/devicetree/bindings/pci/
15586 F:      arch/x86/kernel/early-quirks.c
15587 F:      arch/x86/kernel/quirks.c
15588 F:      arch/x86/pci/
15589 F:      drivers/acpi/pci*
15590 F:      drivers/pci/
15591 F:      include/asm-generic/pci*
15592 F:      include/linux/of_pci.h
15593 F:      include/linux/pci*
15594 F:      include/uapi/linux/pci*
15595 F:      lib/pci*
15596
15597 PCIE DRIVER FOR AMAZON ANNAPURNA LABS
15598 M:      Jonathan Chocron <jonnyc@amazon.com>
15599 L:      linux-pci@vger.kernel.org
15600 S:      Maintained
15601 F:      Documentation/devicetree/bindings/pci/pcie-al.txt
15602 F:      drivers/pci/controller/dwc/pcie-al.c
15603
15604 PCIE DRIVER FOR AMLOGIC MESON
15605 M:      Yue Wang <yue.wang@Amlogic.com>
15606 L:      linux-pci@vger.kernel.org
15607 L:      linux-amlogic@lists.infradead.org
15608 S:      Maintained
15609 F:      drivers/pci/controller/dwc/pci-meson.c
15610
15611 PCIE DRIVER FOR AXIS ARTPEC
15612 M:      Jesper Nilsson <jesper.nilsson@axis.com>
15613 L:      linux-arm-kernel@axis.com
15614 L:      linux-pci@vger.kernel.org
15615 S:      Maintained
15616 F:      Documentation/devicetree/bindings/pci/axis,artpec*
15617 F:      drivers/pci/controller/dwc/*artpec*
15618
15619 PCIE DRIVER FOR CAVIUM THUNDERX
15620 M:      Robert Richter <rric@kernel.org>
15621 L:      linux-pci@vger.kernel.org
15622 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15623 S:      Odd Fixes
15624 F:      drivers/pci/controller/pci-thunder-*
15625
15626 PCIE DRIVER FOR HISILICON
15627 M:      Zhou Wang <wangzhou1@hisilicon.com>
15628 L:      linux-pci@vger.kernel.org
15629 S:      Maintained
15630 F:      drivers/pci/controller/dwc/pcie-hisi.c
15631
15632 PCIE DRIVER FOR HISILICON KIRIN
15633 M:      Xiaowei Song <songxiaowei@hisilicon.com>
15634 M:      Binghui Wang <wangbinghui@hisilicon.com>
15635 L:      linux-pci@vger.kernel.org
15636 S:      Maintained
15637 F:      Documentation/devicetree/bindings/pci/hisilicon,kirin-pcie.yaml
15638 F:      drivers/pci/controller/dwc/pcie-kirin.c
15639
15640 PCIE DRIVER FOR HISILICON STB
15641 M:      Shawn Guo <shawn.guo@linaro.org>
15642 L:      linux-pci@vger.kernel.org
15643 S:      Maintained
15644 F:      Documentation/devicetree/bindings/pci/hisilicon-histb-pcie.txt
15645 F:      drivers/pci/controller/dwc/pcie-histb.c
15646
15647 PCIE DRIVER FOR INTEL KEEM BAY
15648 M:      Srikanth Thokala <srikanth.thokala@intel.com>
15649 L:      linux-pci@vger.kernel.org
15650 S:      Supported
15651 F:      Documentation/devicetree/bindings/pci/intel,keembay-pcie*
15652 F:      drivers/pci/controller/dwc/pcie-keembay.c
15653
15654 PCIE DRIVER FOR INTEL LGM GW SOC
15655 M:      Rahul Tanwar <rtanwar@maxlinear.com>
15656 L:      linux-pci@vger.kernel.org
15657 S:      Maintained
15658 F:      Documentation/devicetree/bindings/pci/intel-gw-pcie.yaml
15659 F:      drivers/pci/controller/dwc/pcie-intel-gw.c
15660
15661 PCIE DRIVER FOR MEDIATEK
15662 M:      Ryder Lee <ryder.lee@mediatek.com>
15663 M:      Jianjun Wang <jianjun.wang@mediatek.com>
15664 L:      linux-pci@vger.kernel.org
15665 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
15666 S:      Supported
15667 F:      Documentation/devicetree/bindings/pci/mediatek*
15668 F:      drivers/pci/controller/*mediatek*
15669
15670 PCIE DRIVER FOR MICROCHIP
15671 M:      Daire McNamara <daire.mcnamara@microchip.com>
15672 L:      linux-pci@vger.kernel.org
15673 S:      Supported
15674 F:      Documentation/devicetree/bindings/pci/microchip*
15675 F:      drivers/pci/controller/*microchip*
15676
15677 PCIE DRIVER FOR QUALCOMM MSM
15678 M:      Stanimir Varbanov <svarbanov@mm-sol.com>
15679 L:      linux-pci@vger.kernel.org
15680 L:      linux-arm-msm@vger.kernel.org
15681 S:      Maintained
15682 F:      drivers/pci/controller/dwc/pcie-qcom.c
15683
15684 PCIE ENDPOINT DRIVER FOR QUALCOMM
15685 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
15686 L:      linux-pci@vger.kernel.org
15687 L:      linux-arm-msm@vger.kernel.org
15688 S:      Maintained
15689 F:      Documentation/devicetree/bindings/pci/qcom,pcie-ep.yaml
15690 F:      drivers/pci/controller/dwc/pcie-qcom-ep.c
15691
15692 PCIE DRIVER FOR ROCKCHIP
15693 M:      Shawn Lin <shawn.lin@rock-chips.com>
15694 L:      linux-pci@vger.kernel.org
15695 L:      linux-rockchip@lists.infradead.org
15696 S:      Maintained
15697 F:      Documentation/devicetree/bindings/pci/rockchip-pcie*
15698 F:      drivers/pci/controller/pcie-rockchip*
15699
15700 PCIE DRIVER FOR SOCIONEXT UNIPHIER
15701 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
15702 L:      linux-pci@vger.kernel.org
15703 S:      Maintained
15704 F:      Documentation/devicetree/bindings/pci/socionext,uniphier-pcie*
15705 F:      drivers/pci/controller/dwc/pcie-uniphier*
15706
15707 PCIE DRIVER FOR ST SPEAR13XX
15708 M:      Pratyush Anand <pratyush.anand@gmail.com>
15709 L:      linux-pci@vger.kernel.org
15710 S:      Maintained
15711 F:      drivers/pci/controller/dwc/*spear*
15712
15713 PCMCIA SUBSYSTEM
15714 M:      Dominik Brodowski <linux@dominikbrodowski.net>
15715 S:      Odd Fixes
15716 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/linux.git
15717 F:      Documentation/pcmcia/
15718 F:      drivers/pcmcia/
15719 F:      include/pcmcia/
15720 F:      tools/pcmcia/
15721
15722 PCNET32 NETWORK DRIVER
15723 M:      Don Fry <pcnet32@frontier.com>
15724 L:      netdev@vger.kernel.org
15725 S:      Maintained
15726 F:      drivers/net/ethernet/amd/pcnet32.c
15727
15728 PCRYPT PARALLEL CRYPTO ENGINE
15729 M:      Steffen Klassert <steffen.klassert@secunet.com>
15730 L:      linux-crypto@vger.kernel.org
15731 S:      Maintained
15732 F:      crypto/pcrypt.c
15733 F:      include/crypto/pcrypt.h
15734
15735 PEAQ WMI HOTKEYS DRIVER
15736 M:      Hans de Goede <hdegoede@redhat.com>
15737 L:      platform-driver-x86@vger.kernel.org
15738 S:      Maintained
15739 F:      drivers/platform/x86/peaq-wmi.c
15740
15741 PECI HARDWARE MONITORING DRIVERS
15742 M:      Iwona Winiarska <iwona.winiarska@intel.com>
15743 L:      linux-hwmon@vger.kernel.org
15744 S:      Supported
15745 F:      Documentation/hwmon/peci-cputemp.rst
15746 F:      Documentation/hwmon/peci-dimmtemp.rst
15747 F:      drivers/hwmon/peci/
15748
15749 PECI SUBSYSTEM
15750 M:      Iwona Winiarska <iwona.winiarska@intel.com>
15751 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
15752 S:      Supported
15753 F:      Documentation/devicetree/bindings/peci/
15754 F:      Documentation/peci/
15755 F:      drivers/peci/
15756 F:      include/linux/peci-cpu.h
15757 F:      include/linux/peci.h
15758
15759 PENSANDO ETHERNET DRIVERS
15760 M:      Shannon Nelson <snelson@pensando.io>
15761 M:      drivers@pensando.io
15762 L:      netdev@vger.kernel.org
15763 S:      Supported
15764 F:      Documentation/networking/device_drivers/ethernet/pensando/ionic.rst
15765 F:      drivers/net/ethernet/pensando/
15766
15767 PER-CPU MEMORY ALLOCATOR
15768 M:      Dennis Zhou <dennis@kernel.org>
15769 M:      Tejun Heo <tj@kernel.org>
15770 M:      Christoph Lameter <cl@linux.com>
15771 L:      linux-mm@kvack.org
15772 S:      Maintained
15773 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dennis/percpu.git
15774 F:      arch/*/include/asm/percpu.h
15775 F:      include/linux/percpu*.h
15776 F:      lib/percpu*.c
15777 F:      mm/percpu*.c
15778
15779 PER-TASK DELAY ACCOUNTING
15780 M:      Balbir Singh <bsingharora@gmail.com>
15781 S:      Maintained
15782 F:      include/linux/delayacct.h
15783 F:      kernel/delayacct.c
15784
15785 PERFORMANCE EVENTS SUBSYSTEM
15786 M:      Peter Zijlstra <peterz@infradead.org>
15787 M:      Ingo Molnar <mingo@redhat.com>
15788 M:      Arnaldo Carvalho de Melo <acme@kernel.org>
15789 R:      Mark Rutland <mark.rutland@arm.com>
15790 R:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
15791 R:      Jiri Olsa <jolsa@kernel.org>
15792 R:      Namhyung Kim <namhyung@kernel.org>
15793 L:      linux-perf-users@vger.kernel.org
15794 L:      linux-kernel@vger.kernel.org
15795 S:      Supported
15796 W:      https://perf.wiki.kernel.org/
15797 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
15798 F:      arch/*/events/*
15799 F:      arch/*/events/*/*
15800 F:      arch/*/include/asm/perf_event.h
15801 F:      arch/*/kernel/*/*/perf_event*.c
15802 F:      arch/*/kernel/*/perf_event*.c
15803 F:      arch/*/kernel/perf_callchain.c
15804 F:      arch/*/kernel/perf_event*.c
15805 F:      include/linux/perf_event.h
15806 F:      include/uapi/linux/perf_event.h
15807 F:      kernel/events/*
15808 F:      tools/lib/perf/
15809 F:      tools/perf/
15810
15811 PERFORMANCE EVENTS TOOLING ARM64
15812 R:      John Garry <john.garry@huawei.com>
15813 R:      Will Deacon <will@kernel.org>
15814 R:      James Clark <james.clark@arm.com>
15815 R:      Mike Leach <mike.leach@linaro.org>
15816 R:      Leo Yan <leo.yan@linaro.org>
15817 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15818 S:      Supported
15819 F:      tools/build/feature/test-libopencsd.c
15820 F:      tools/perf/arch/arm*/
15821 F:      tools/perf/pmu-events/arch/arm64/
15822 F:      tools/perf/util/arm-spe*
15823 F:      tools/perf/util/cs-etm*
15824
15825 PERSONALITY HANDLING
15826 M:      Christoph Hellwig <hch@infradead.org>
15827 L:      linux-abi-devel@lists.sourceforge.net
15828 S:      Maintained
15829 F:      include/linux/personality.h
15830 F:      include/uapi/linux/personality.h
15831
15832 PHOENIX RC FLIGHT CONTROLLER ADAPTER
15833 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
15834 L:      linux-input@vger.kernel.org
15835 S:      Maintained
15836 F:      Documentation/input/devices/pxrc.rst
15837 F:      drivers/input/joystick/pxrc.c
15838
15839 PHONET PROTOCOL
15840 M:      Remi Denis-Courmont <courmisch@gmail.com>
15841 S:      Supported
15842 F:      Documentation/networking/phonet.rst
15843 F:      include/linux/phonet.h
15844 F:      include/net/phonet/
15845 F:      include/uapi/linux/phonet.h
15846 F:      net/phonet/
15847
15848 PHRAM MTD DRIVER
15849 M:      Joern Engel <joern@lazybastard.org>
15850 L:      linux-mtd@lists.infradead.org
15851 S:      Maintained
15852 F:      drivers/mtd/devices/phram.c
15853
15854 PICOLCD HID DRIVER
15855 M:      Bruno Prémont <bonbons@linux-vserver.org>
15856 L:      linux-input@vger.kernel.org
15857 S:      Maintained
15858 F:      drivers/hid/hid-picolcd*
15859
15860 PIDFD API
15861 M:      Christian Brauner <christian@brauner.io>
15862 L:      linux-kernel@vger.kernel.org
15863 S:      Maintained
15864 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brauner/linux.git
15865 F:      samples/pidfd/
15866 F:      tools/testing/selftests/clone3/
15867 F:      tools/testing/selftests/pid_namespace/
15868 F:      tools/testing/selftests/pidfd/
15869 K:      (?i)pidfd
15870 K:      (?i)clone3
15871 K:      \b(clone_args|kernel_clone_args)\b
15872
15873 PIN CONTROL SUBSYSTEM
15874 M:      Linus Walleij <linus.walleij@linaro.org>
15875 L:      linux-gpio@vger.kernel.org
15876 S:      Maintained
15877 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git
15878 F:      Documentation/devicetree/bindings/pinctrl/
15879 F:      Documentation/driver-api/pin-control.rst
15880 F:      drivers/pinctrl/
15881 F:      include/linux/pinctrl/
15882
15883 PIN CONTROLLER - AMD
15884 M:      Basavaraj Natikar <Basavaraj.Natikar@amd.com>
15885 M:      Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
15886 S:      Maintained
15887 F:      drivers/pinctrl/pinctrl-amd.c
15888
15889 PIN CONTROLLER - FREESCALE
15890 M:      Dong Aisheng <aisheng.dong@nxp.com>
15891 M:      Fabio Estevam <festevam@gmail.com>
15892 M:      Shawn Guo <shawnguo@kernel.org>
15893 M:      Jacky Bai <ping.bai@nxp.com>
15894 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
15895 L:      linux-gpio@vger.kernel.org
15896 S:      Maintained
15897 F:      Documentation/devicetree/bindings/pinctrl/fsl,*
15898 F:      drivers/pinctrl/freescale/
15899
15900 PIN CONTROLLER - INTEL
15901 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
15902 M:      Andy Shevchenko <andy@kernel.org>
15903 S:      Supported
15904 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/intel.git
15905 F:      drivers/pinctrl/intel/
15906
15907 PIN CONTROLLER - KEEMBAY
15908 M:      Lakshmi Sowjanya D <lakshmi.sowjanya.d@intel.com>
15909 S:      Supported
15910 F:      drivers/pinctrl/pinctrl-keembay*
15911
15912 PIN CONTROLLER - MEDIATEK
15913 M:      Sean Wang <sean.wang@kernel.org>
15914 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
15915 S:      Maintained
15916 F:      Documentation/devicetree/bindings/pinctrl/mediatek,mt65xx-pinctrl.yaml
15917 F:      Documentation/devicetree/bindings/pinctrl/mediatek,mt6797-pinctrl.yaml
15918 F:      Documentation/devicetree/bindings/pinctrl/mediatek,mt7622-pinctrl.yaml
15919 F:      Documentation/devicetree/bindings/pinctrl/mediatek,mt8183-pinctrl.yaml
15920 F:      drivers/pinctrl/mediatek/
15921
15922 PIN CONTROLLER - MICROCHIP AT91
15923 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
15924 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15925 L:      linux-gpio@vger.kernel.org
15926 S:      Supported
15927 F:      drivers/gpio/gpio-sama5d2-piobu.c
15928 F:      drivers/pinctrl/pinctrl-at91*
15929
15930 PIN CONTROLLER - QUALCOMM
15931 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
15932 L:      linux-arm-msm@vger.kernel.org
15933 S:      Maintained
15934 F:      Documentation/devicetree/bindings/pinctrl/qcom,*.txt
15935 F:      drivers/pinctrl/qcom/
15936
15937 PIN CONTROLLER - RENESAS
15938 M:      Geert Uytterhoeven <geert+renesas@glider.be>
15939 L:      linux-renesas-soc@vger.kernel.org
15940 S:      Supported
15941 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git renesas-pinctrl
15942 F:      Documentation/devicetree/bindings/pinctrl/renesas,*
15943 F:      drivers/pinctrl/renesas/
15944
15945 PIN CONTROLLER - SAMSUNG
15946 M:      Tomasz Figa <tomasz.figa@gmail.com>
15947 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
15948 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
15949 R:      Alim Akhtar <alim.akhtar@samsung.com>
15950 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15951 L:      linux-samsung-soc@vger.kernel.org
15952 S:      Maintained
15953 C:      irc://irc.libera.chat/linux-exynos
15954 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
15955 B:      mailto:linux-samsung-soc@vger.kernel.org
15956 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/samsung.git
15957 F:      Documentation/devicetree/bindings/pinctrl/samsung,pinctrl*yaml
15958 F:      drivers/pinctrl/samsung/
15959 F:      include/dt-bindings/pinctrl/samsung.h
15960
15961 PIN CONTROLLER - SINGLE
15962 M:      Tony Lindgren <tony@atomide.com>
15963 M:      Haojian Zhuang <haojian.zhuang@linaro.org>
15964 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15965 L:      linux-omap@vger.kernel.org
15966 S:      Maintained
15967 F:      drivers/pinctrl/pinctrl-single.c
15968
15969 PIN CONTROLLER - THUNDERBAY
15970 M:      Lakshmi Sowjanya D <lakshmi.sowjanya.d@intel.com>
15971 S:      Supported
15972 F:      drivers/pinctrl/pinctrl-thunderbay.c
15973
15974 PIN CONTROLLER - SUNPLUS / TIBBO
15975 M:      Dvorkin Dmitry <dvorkin@tibbo.com>
15976 M:      Wells Lu <wellslutw@gmail.com>
15977 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15978 S:      Maintained
15979 W:      https://sunplus.atlassian.net/wiki/spaces/doc/overview
15980 F:      Documentation/devicetree/bindings/pinctrl/sunplus,*
15981 F:      drivers/pinctrl/sunplus/
15982 F:      include/dt-bindings/pinctrl/sppctl*.h
15983
15984 PKTCDVD DRIVER
15985 M:      linux-block@vger.kernel.org
15986 S:      Orphan
15987 F:      drivers/block/pktcdvd.c
15988 F:      include/linux/pktcdvd.h
15989 F:      include/uapi/linux/pktcdvd.h
15990
15991 PLANTOWER PMS7003 AIR POLLUTION SENSOR DRIVER
15992 M:      Tomasz Duszynski <tduszyns@gmail.com>
15993 S:      Maintained
15994 F:      Documentation/devicetree/bindings/iio/chemical/plantower,pms7003.yaml
15995 F:      drivers/iio/chemical/pms7003.c
15996
15997 PLATFORM FEATURE INFRASTRUCTURE
15998 M:      Juergen Gross <jgross@suse.com>
15999 S:      Maintained
16000 F:      arch/*/include/asm/platform-feature.h
16001 F:      include/asm-generic/platform-feature.h
16002 F:      include/linux/platform-feature.h
16003 F:      kernel/platform-feature.c
16004
16005 PLDMFW LIBRARY
16006 M:      Jacob Keller <jacob.e.keller@intel.com>
16007 S:      Maintained
16008 F:      Documentation/driver-api/pldmfw/
16009 F:      include/linux/pldmfw.h
16010 F:      lib/pldmfw/
16011
16012 PLX DMA DRIVER
16013 M:      Logan Gunthorpe <logang@deltatee.com>
16014 S:      Maintained
16015 F:      drivers/dma/plx_dma.c
16016
16017 PM6764TR DRIVER
16018 M:      Charles Hsu     <hsu.yungteng@gmail.com>
16019 L:      linux-hwmon@vger.kernel.org
16020 S:      Maintained
16021 F:      Documentation/hwmon/pm6764tr.rst
16022 F:      drivers/hwmon/pmbus/pm6764tr.c
16023
16024 PM-GRAPH UTILITY
16025 M:      "Todd E Brandt" <todd.e.brandt@linux.intel.com>
16026 L:      linux-pm@vger.kernel.org
16027 S:      Supported
16028 W:      https://01.org/pm-graph
16029 B:      https://bugzilla.kernel.org/buglist.cgi?component=pm-graph&product=Tools
16030 T:      git git://github.com/intel/pm-graph
16031 F:      tools/power/pm-graph
16032
16033 PMBUS HARDWARE MONITORING DRIVERS
16034 M:      Guenter Roeck <linux@roeck-us.net>
16035 L:      linux-hwmon@vger.kernel.org
16036 S:      Maintained
16037 W:      http://hwmon.wiki.kernel.org/
16038 W:      http://www.roeck-us.net/linux/drivers/
16039 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
16040 F:      Documentation/devicetree/bindings/hwmon/ltc2978.txt
16041 F:      Documentation/devicetree/bindings/hwmon/max31785.txt
16042 F:      Documentation/hwmon/adm1275.rst
16043 F:      Documentation/hwmon/ibm-cffps.rst
16044 F:      Documentation/hwmon/ir35221.rst
16045 F:      Documentation/hwmon/lm25066.rst
16046 F:      Documentation/hwmon/ltc2978.rst
16047 F:      Documentation/hwmon/ltc3815.rst
16048 F:      Documentation/hwmon/max16064.rst
16049 F:      Documentation/hwmon/max20751.rst
16050 F:      Documentation/hwmon/max31785.rst
16051 F:      Documentation/hwmon/max34440.rst
16052 F:      Documentation/hwmon/max8688.rst
16053 F:      Documentation/hwmon/pmbus-core.rst
16054 F:      Documentation/hwmon/pmbus.rst
16055 F:      Documentation/hwmon/tps40422.rst
16056 F:      Documentation/hwmon/ucd9000.rst
16057 F:      Documentation/hwmon/ucd9200.rst
16058 F:      Documentation/hwmon/zl6100.rst
16059 F:      drivers/hwmon/pmbus/
16060 F:      include/linux/pmbus.h
16061
16062 PMC SIERRA MaxRAID DRIVER
16063 L:      linux-scsi@vger.kernel.org
16064 S:      Orphan
16065 W:      http://www.pmc-sierra.com/
16066 F:      drivers/scsi/pmcraid.*
16067
16068 PMC SIERRA PM8001 DRIVER
16069 M:      Jack Wang <jinpu.wang@cloud.ionos.com>
16070 L:      linux-scsi@vger.kernel.org
16071 S:      Supported
16072 F:      drivers/scsi/pm8001/
16073
16074 PNI RM3100 IIO DRIVER
16075 M:      Song Qiang <songqiang1304521@gmail.com>
16076 L:      linux-iio@vger.kernel.org
16077 S:      Maintained
16078 F:      Documentation/devicetree/bindings/iio/magnetometer/pni,rm3100.yaml
16079 F:      drivers/iio/magnetometer/rm3100*
16080
16081 PNP SUPPORT
16082 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
16083 L:      linux-acpi@vger.kernel.org
16084 S:      Maintained
16085 F:      drivers/pnp/
16086 F:      include/linux/pnp.h
16087
16088 POSIX CLOCKS and TIMERS
16089 M:      Thomas Gleixner <tglx@linutronix.de>
16090 L:      linux-kernel@vger.kernel.org
16091 S:      Maintained
16092 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
16093 F:      fs/timerfd.c
16094 F:      include/linux/time_namespace.h
16095 F:      include/linux/timer*
16096 F:      kernel/time/*timer*
16097 F:      kernel/time/namespace.c
16098
16099 POWER MANAGEMENT CORE
16100 M:      "Rafael J. Wysocki" <rafael@kernel.org>
16101 L:      linux-pm@vger.kernel.org
16102 S:      Supported
16103 B:      https://bugzilla.kernel.org
16104 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
16105 F:      drivers/base/power/
16106 F:      drivers/powercap/
16107 F:      include/linux/intel_rapl.h
16108 F:      include/linux/pm.h
16109 F:      include/linux/pm_*
16110 F:      include/linux/powercap.h
16111 F:      kernel/configs/nopm.config
16112
16113 DYNAMIC THERMAL POWER MANAGEMENT (DTPM)
16114 M:      Daniel Lezcano <daniel.lezcano@kernel.org>
16115 L:      linux-pm@vger.kernel.org
16116 S:      Supported
16117 B:      https://bugzilla.kernel.org
16118 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
16119 F:      drivers/powercap/dtpm*
16120 F:      include/linux/dtpm.h
16121
16122 POWER STATE COORDINATION INTERFACE (PSCI)
16123 M:      Mark Rutland <mark.rutland@arm.com>
16124 M:      Lorenzo Pieralisi <lpieralisi@kernel.org>
16125 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16126 S:      Maintained
16127 F:      drivers/firmware/psci/
16128 F:      include/linux/psci.h
16129 F:      include/uapi/linux/psci.h
16130
16131 POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
16132 M:      Sebastian Reichel <sre@kernel.org>
16133 L:      linux-pm@vger.kernel.org
16134 S:      Maintained
16135 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
16136 F:      Documentation/ABI/testing/sysfs-class-power
16137 F:      Documentation/devicetree/bindings/power/supply/
16138 F:      drivers/power/supply/
16139 F:      include/linux/power/
16140 F:      include/linux/power_supply.h
16141
16142 POWERNV OPERATOR PANEL LCD DISPLAY DRIVER
16143 M:      Suraj Jitindar Singh <sjitindarsingh@gmail.com>
16144 L:      linuxppc-dev@lists.ozlabs.org
16145 S:      Maintained
16146 F:      drivers/char/powernv-op-panel.c
16147
16148 PPP OVER ATM (RFC 2364)
16149 M:      Mitchell Blank Jr <mitch@sfgoth.com>
16150 S:      Maintained
16151 F:      include/uapi/linux/atmppp.h
16152 F:      net/atm/pppoatm.c
16153
16154 PPP OVER ETHERNET
16155 M:      Michal Ostrowski <mostrows@earthlink.net>
16156 S:      Maintained
16157 F:      drivers/net/ppp/pppoe.c
16158 F:      drivers/net/ppp/pppox.c
16159
16160 PPP OVER L2TP
16161 M:      James Chapman <jchapman@katalix.com>
16162 S:      Maintained
16163 F:      include/linux/if_pppol2tp.h
16164 F:      include/uapi/linux/if_pppol2tp.h
16165 F:      net/l2tp/l2tp_ppp.c
16166
16167 PPP PROTOCOL DRIVERS AND COMPRESSORS
16168 M:      Paul Mackerras <paulus@samba.org>
16169 L:      linux-ppp@vger.kernel.org
16170 S:      Maintained
16171 F:      drivers/net/ppp/ppp_*
16172
16173 PPS SUPPORT
16174 M:      Rodolfo Giometti <giometti@enneenne.com>
16175 L:      linuxpps@ml.enneenne.com (subscribers-only)
16176 S:      Maintained
16177 W:      http://wiki.enneenne.com/index.php/LinuxPPS_support
16178 F:      Documentation/ABI/testing/sysfs-pps
16179 F:      Documentation/devicetree/bindings/pps/pps-gpio.txt
16180 F:      Documentation/driver-api/pps.rst
16181 F:      drivers/pps/
16182 F:      include/linux/pps*.h
16183 F:      include/uapi/linux/pps.h
16184
16185 PPTP DRIVER
16186 M:      Dmitry Kozlov <xeb@mail.ru>
16187 L:      netdev@vger.kernel.org
16188 S:      Maintained
16189 W:      http://sourceforge.net/projects/accel-pptp
16190 F:      drivers/net/ppp/pptp.c
16191
16192 PRESSURE STALL INFORMATION (PSI)
16193 M:      Johannes Weiner <hannes@cmpxchg.org>
16194 M:      Suren Baghdasaryan <surenb@google.com>
16195 S:      Maintained
16196 F:      include/linux/psi*
16197 F:      kernel/sched/psi.c
16198
16199 PRINTK
16200 M:      Petr Mladek <pmladek@suse.com>
16201 M:      Sergey Senozhatsky <senozhatsky@chromium.org>
16202 R:      Steven Rostedt <rostedt@goodmis.org>
16203 R:      John Ogness <john.ogness@linutronix.de>
16204 S:      Maintained
16205 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/printk/linux.git
16206 F:      include/linux/printk.h
16207 F:      kernel/printk/
16208
16209 PRINTK INDEXING
16210 R:      Chris Down <chris@chrisdown.name>
16211 S:      Maintained
16212 F:      Documentation/core-api/printk-index.rst
16213 F:      kernel/printk/index.c
16214 K:      printk_index
16215
16216 PROC FILESYSTEM
16217 L:      linux-kernel@vger.kernel.org
16218 L:      linux-fsdevel@vger.kernel.org
16219 S:      Maintained
16220 F:      Documentation/filesystems/proc.rst
16221 F:      fs/proc/
16222 F:      include/linux/proc_fs.h
16223 F:      tools/testing/selftests/proc/
16224
16225 PROC SYSCTL
16226 M:      Luis Chamberlain <mcgrof@kernel.org>
16227 M:      Kees Cook <keescook@chromium.org>
16228 M:      Iurii Zaikin <yzaikin@google.com>
16229 L:      linux-kernel@vger.kernel.org
16230 L:      linux-fsdevel@vger.kernel.org
16231 S:      Maintained
16232 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mcgrof/linux.git sysctl-next
16233 F:      fs/proc/proc_sysctl.c
16234 F:      include/linux/sysctl.h
16235 F:      kernel/sysctl-test.c
16236 F:      kernel/sysctl.c
16237 F:      tools/testing/selftests/sysctl/
16238
16239 PS3 NETWORK SUPPORT
16240 M:      Geoff Levand <geoff@infradead.org>
16241 L:      netdev@vger.kernel.org
16242 L:      linuxppc-dev@lists.ozlabs.org
16243 S:      Maintained
16244 F:      drivers/net/ethernet/toshiba/ps3_gelic_net.*
16245
16246 PS3 PLATFORM SUPPORT
16247 M:      Geoff Levand <geoff@infradead.org>
16248 L:      linuxppc-dev@lists.ozlabs.org
16249 S:      Maintained
16250 F:      arch/powerpc/boot/ps3*
16251 F:      arch/powerpc/include/asm/lv1call.h
16252 F:      arch/powerpc/include/asm/ps3*.h
16253 F:      arch/powerpc/platforms/ps3/
16254 F:      drivers/*/ps3*
16255 F:      drivers/ps3/
16256 F:      drivers/rtc/rtc-ps3.c
16257 F:      drivers/usb/host/*ps3.c
16258 F:      sound/ppc/snd_ps3*
16259
16260 PS3VRAM DRIVER
16261 M:      Jim Paris <jim@jtan.com>
16262 M:      Geoff Levand <geoff@infradead.org>
16263 L:      linuxppc-dev@lists.ozlabs.org
16264 S:      Maintained
16265 F:      drivers/block/ps3vram.c
16266
16267 PSAMPLE PACKET SAMPLING SUPPORT
16268 M:      Yotam Gigi <yotam.gi@gmail.com>
16269 S:      Maintained
16270 F:      include/net/psample.h
16271 F:      include/uapi/linux/psample.h
16272 F:      net/psample
16273
16274 PSTORE FILESYSTEM
16275 M:      Kees Cook <keescook@chromium.org>
16276 M:      Anton Vorontsov <anton@enomsg.org>
16277 M:      Colin Cross <ccross@android.com>
16278 M:      Tony Luck <tony.luck@intel.com>
16279 S:      Maintained
16280 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/pstore
16281 F:      Documentation/admin-guide/ramoops.rst
16282 F:      Documentation/admin-guide/pstore-blk.rst
16283 F:      Documentation/devicetree/bindings/reserved-memory/ramoops.yaml
16284 F:      drivers/acpi/apei/erst.c
16285 F:      drivers/firmware/efi/efi-pstore.c
16286 F:      fs/pstore/
16287 F:      include/linux/pstore*
16288 K:      \b(pstore|ramoops)
16289
16290 PTP HARDWARE CLOCK SUPPORT
16291 M:      Richard Cochran <richardcochran@gmail.com>
16292 L:      netdev@vger.kernel.org
16293 S:      Maintained
16294 W:      http://linuxptp.sourceforge.net/
16295 F:      Documentation/ABI/testing/sysfs-ptp
16296 F:      Documentation/driver-api/ptp.rst
16297 F:      drivers/net/phy/dp83640*
16298 F:      drivers/ptp/*
16299 F:      include/linux/ptp_cl*
16300
16301 PTP VIRTUAL CLOCK SUPPORT
16302 M:      Yangbo Lu <yangbo.lu@nxp.com>
16303 L:      netdev@vger.kernel.org
16304 S:      Maintained
16305 F:      drivers/ptp/ptp_vclock.c
16306 F:      net/ethtool/phc_vclocks.c
16307
16308 PTRACE SUPPORT
16309 M:      Oleg Nesterov <oleg@redhat.com>
16310 S:      Maintained
16311 F:      arch/*/*/ptrace*.c
16312 F:      arch/*/include/asm/ptrace*.h
16313 F:      arch/*/ptrace*.c
16314 F:      include/asm-generic/syscall.h
16315 F:      include/linux/ptrace.h
16316 F:      include/linux/regset.h
16317 F:      include/uapi/linux/ptrace.h
16318 F:      kernel/ptrace.c
16319
16320 PULSE8-CEC DRIVER
16321 M:      Hans Verkuil <hverkuil@xs4all.nl>
16322 L:      linux-media@vger.kernel.org
16323 S:      Maintained
16324 T:      git git://linuxtv.org/media_tree.git
16325 F:      Documentation/admin-guide/media/pulse8-cec.rst
16326 F:      drivers/media/cec/usb/pulse8/
16327
16328 PURELIFI PLFXLC DRIVER
16329 M:      Srinivasan Raju <srini.raju@purelifi.com>
16330 L:      linux-wireless@vger.kernel.org
16331 S:      Supported
16332 F:      drivers/net/wireless/purelifi/plfxlc/
16333
16334 PVRUSB2 VIDEO4LINUX DRIVER
16335 M:      Mike Isely <isely@pobox.com>
16336 L:      pvrusb2@isely.net       (subscribers-only)
16337 L:      linux-media@vger.kernel.org
16338 S:      Maintained
16339 W:      http://www.isely.net/pvrusb2/
16340 T:      git git://linuxtv.org/media_tree.git
16341 F:      Documentation/driver-api/media/drivers/pvrusb2*
16342 F:      drivers/media/usb/pvrusb2/
16343
16344 PWC WEBCAM DRIVER
16345 M:      Hans Verkuil <hverkuil@xs4all.nl>
16346 L:      linux-media@vger.kernel.org
16347 S:      Odd Fixes
16348 T:      git git://linuxtv.org/media_tree.git
16349 F:      drivers/media/usb/pwc/*
16350 F:      include/trace/events/pwc.h
16351
16352 PWM FAN DRIVER
16353 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
16354 L:      linux-hwmon@vger.kernel.org
16355 S:      Supported
16356 F:      Documentation/devicetree/bindings/hwmon/pwm-fan.txt
16357 F:      Documentation/hwmon/pwm-fan.rst
16358 F:      drivers/hwmon/pwm-fan.c
16359
16360 PWM IR Transmitter
16361 M:      Sean Young <sean@mess.org>
16362 L:      linux-media@vger.kernel.org
16363 S:      Maintained
16364 F:      drivers/media/rc/pwm-ir-tx.c
16365
16366 PWM SUBSYSTEM
16367 M:      Thierry Reding <thierry.reding@gmail.com>
16368 R:      Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
16369 L:      linux-pwm@vger.kernel.org
16370 S:      Maintained
16371 Q:      https://patchwork.ozlabs.org/project/linux-pwm/list/
16372 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git
16373 F:      Documentation/devicetree/bindings/gpio/gpio-mvebu.txt
16374 F:      Documentation/devicetree/bindings/pwm/
16375 F:      Documentation/driver-api/pwm.rst
16376 F:      drivers/gpio/gpio-mvebu.c
16377 F:      drivers/pwm/
16378 F:      drivers/video/backlight/pwm_bl.c
16379 F:      include/dt-bindings/pwm/
16380 F:      include/linux/pwm.h
16381 F:      include/linux/pwm_backlight.h
16382 K:      pwm_(config|apply_state|ops)
16383
16384 PXA GPIO DRIVER
16385 M:      Robert Jarzmik <robert.jarzmik@free.fr>
16386 L:      linux-gpio@vger.kernel.org
16387 S:      Maintained
16388 F:      drivers/gpio/gpio-pxa.c
16389
16390 PXA MMCI DRIVER
16391 S:      Orphan
16392
16393 PXA RTC DRIVER
16394 M:      Robert Jarzmik <robert.jarzmik@free.fr>
16395 L:      linux-rtc@vger.kernel.org
16396 S:      Maintained
16397
16398 PXA2xx/PXA3xx SUPPORT
16399 M:      Daniel Mack <daniel@zonque.org>
16400 M:      Haojian Zhuang <haojian.zhuang@gmail.com>
16401 M:      Robert Jarzmik <robert.jarzmik@free.fr>
16402 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16403 S:      Maintained
16404 T:      git git://github.com/hzhuang1/linux.git
16405 T:      git git://github.com/rjarzmik/linux.git
16406 F:      arch/arm/boot/dts/pxa*
16407 F:      arch/arm/mach-pxa/
16408 F:      drivers/dma/pxa*
16409 F:      drivers/pcmcia/pxa2xx*
16410 F:      drivers/pinctrl/pxa/
16411 F:      drivers/spi/spi-pxa2xx*
16412 F:      drivers/usb/gadget/udc/pxa2*
16413 F:      include/sound/pxa2xx-lib.h
16414 F:      sound/arm/pxa*
16415 F:      sound/soc/pxa/
16416
16417 QAT DRIVER
16418 M:      Giovanni Cabiddu <giovanni.cabiddu@intel.com>
16419 L:      qat-linux@intel.com
16420 S:      Supported
16421 F:      drivers/crypto/qat/
16422
16423 QCOM AUDIO (ASoC) DRIVERS
16424 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
16425 M:      Banajit Goswami <bgoswami@quicinc.com>
16426 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16427 S:      Supported
16428 F:      sound/soc/codecs/lpass-va-macro.c
16429 F:      sound/soc/codecs/lpass-wsa-macro.*
16430 F:      sound/soc/codecs/msm8916-wcd-analog.c
16431 F:      sound/soc/codecs/msm8916-wcd-digital.c
16432 F:      sound/soc/codecs/wcd9335.*
16433 F:      sound/soc/codecs/wcd934x.c
16434 F:      sound/soc/codecs/wcd-clsh-v2.*
16435 F:      sound/soc/codecs/wsa881x.c
16436 F:      sound/soc/qcom/
16437
16438 QCOM EMBEDDED USB DEBUGGER (EUD)
16439 M:      Souradeep Chowdhury <quic_schowdhu@quicinc.com>
16440 L:      linux-arm-msm@vger.kernel.org
16441 S:      Maintained
16442 F:      Documentation/ABI/testing/sysfs-driver-eud
16443 F:      Documentation/devicetree/bindings/soc/qcom/qcom,eud.yaml
16444 F:      drivers/usb/misc/qcom_eud.c
16445
16446 QCOM IPA DRIVER
16447 M:      Alex Elder <elder@kernel.org>
16448 L:      netdev@vger.kernel.org
16449 S:      Supported
16450 F:      drivers/net/ipa/
16451
16452 QEMU MACHINE EMULATOR AND VIRTUALIZER SUPPORT
16453 M:      Gabriel Somlo <somlo@cmu.edu>
16454 M:      "Michael S. Tsirkin" <mst@redhat.com>
16455 L:      qemu-devel@nongnu.org
16456 S:      Maintained
16457 F:      drivers/firmware/qemu_fw_cfg.c
16458 F:      include/uapi/linux/qemu_fw_cfg.h
16459
16460 QIB DRIVER
16461 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
16462 L:      linux-rdma@vger.kernel.org
16463 S:      Supported
16464 F:      drivers/infiniband/hw/qib/
16465
16466 QLOGIC QL41xxx FCOE DRIVER
16467 M:      Saurav Kashyap <skashyap@marvell.com>
16468 M:      Javed Hasan <jhasan@marvell.com>
16469 M:      GR-QLogic-Storage-Upstream@marvell.com
16470 L:      linux-scsi@vger.kernel.org
16471 S:      Supported
16472 F:      drivers/scsi/qedf/
16473
16474 QLOGIC QL41xxx ISCSI DRIVER
16475 M:      Nilesh Javali <njavali@marvell.com>
16476 M:      Manish Rangankar <mrangankar@marvell.com>
16477 M:      GR-QLogic-Storage-Upstream@marvell.com
16478 L:      linux-scsi@vger.kernel.org
16479 S:      Supported
16480 F:      drivers/scsi/qedi/
16481
16482 QLOGIC QL4xxx ETHERNET DRIVER
16483 M:      Ariel Elior <aelior@marvell.com>
16484 M:      Manish Chopra <manishc@marvell.com>
16485 L:      netdev@vger.kernel.org
16486 S:      Supported
16487 F:      drivers/net/ethernet/qlogic/qed/
16488 F:      drivers/net/ethernet/qlogic/qede/
16489 F:      include/linux/qed/
16490
16491 QLOGIC QL4xxx RDMA DRIVER
16492 M:      Michal Kalderon <mkalderon@marvell.com>
16493 M:      Ariel Elior <aelior@marvell.com>
16494 L:      linux-rdma@vger.kernel.org
16495 S:      Supported
16496 F:      drivers/infiniband/hw/qedr/
16497 F:      include/uapi/rdma/qedr-abi.h
16498
16499 QLOGIC QLA1280 SCSI DRIVER
16500 M:      Michael Reed <mdr@sgi.com>
16501 L:      linux-scsi@vger.kernel.org
16502 S:      Maintained
16503 F:      drivers/scsi/qla1280.[ch]
16504
16505 QLOGIC QLA2XXX FC-SCSI DRIVER
16506 M:      Nilesh Javali <njavali@marvell.com>
16507 M:      GR-QLogic-Storage-Upstream@marvell.com
16508 L:      linux-scsi@vger.kernel.org
16509 S:      Supported
16510 F:      drivers/scsi/qla2xxx/
16511
16512 QLOGIC QLA3XXX NETWORK DRIVER
16513 M:      GR-Linux-NIC-Dev@marvell.com
16514 L:      netdev@vger.kernel.org
16515 S:      Supported
16516 F:      drivers/net/ethernet/qlogic/qla3xxx.*
16517
16518 QLOGIC QLA4XXX iSCSI DRIVER
16519 M:      Nilesh Javali <njavali@marvell.com>
16520 M:      Manish Rangankar <mrangankar@marvell.com>
16521 M:      GR-QLogic-Storage-Upstream@marvell.com
16522 L:      linux-scsi@vger.kernel.org
16523 S:      Supported
16524 F:      drivers/scsi/qla4xxx/
16525
16526 QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
16527 M:      Shahed Shaikh <shshaikh@marvell.com>
16528 M:      Manish Chopra <manishc@marvell.com>
16529 M:      GR-Linux-NIC-Dev@marvell.com
16530 L:      netdev@vger.kernel.org
16531 S:      Supported
16532 F:      drivers/net/ethernet/qlogic/qlcnic/
16533
16534 QLOGIC QLGE 10Gb ETHERNET DRIVER
16535 M:      Manish Chopra <manishc@marvell.com>
16536 M:      GR-Linux-NIC-Dev@marvell.com
16537 M:      Coiby Xu <coiby.xu@gmail.com>
16538 L:      netdev@vger.kernel.org
16539 S:      Supported
16540 F:      Documentation/networking/device_drivers/qlogic/qlge.rst
16541 F:      drivers/staging/qlge/
16542
16543 QM1D1B0004 MEDIA DRIVER
16544 M:      Akihiro Tsukada <tskd08@gmail.com>
16545 L:      linux-media@vger.kernel.org
16546 S:      Odd Fixes
16547 F:      drivers/media/tuners/qm1d1b0004*
16548
16549 QM1D1C0042 MEDIA DRIVER
16550 M:      Akihiro Tsukada <tskd08@gmail.com>
16551 L:      linux-media@vger.kernel.org
16552 S:      Odd Fixes
16553 F:      drivers/media/tuners/qm1d1c0042*
16554
16555 QNX4 FILESYSTEM
16556 M:      Anders Larsen <al@alarsen.net>
16557 S:      Maintained
16558 W:      http://www.alarsen.net/linux/qnx4fs/
16559 F:      fs/qnx4/
16560 F:      include/uapi/linux/qnx4_fs.h
16561 F:      include/uapi/linux/qnxtypes.h
16562
16563 QORIQ DPAA2 FSL-MC BUS DRIVER
16564 M:      Stuart Yoder <stuyoder@gmail.com>
16565 M:      Laurentiu Tudor <laurentiu.tudor@nxp.com>
16566 L:      linux-kernel@vger.kernel.org
16567 S:      Maintained
16568 F:      Documentation/ABI/stable/sysfs-bus-fsl-mc
16569 F:      Documentation/devicetree/bindings/misc/fsl,qoriq-mc.txt
16570 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/overview.rst
16571 F:      drivers/bus/fsl-mc/
16572 F:      include/uapi/linux/fsl_mc.h
16573
16574 QT1010 MEDIA DRIVER
16575 M:      Antti Palosaari <crope@iki.fi>
16576 L:      linux-media@vger.kernel.org
16577 S:      Maintained
16578 W:      https://linuxtv.org
16579 W:      http://palosaari.fi/linux/
16580 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16581 T:      git git://linuxtv.org/anttip/media_tree.git
16582 F:      drivers/media/tuners/qt1010*
16583
16584 QUALCOMM ATHEROS ATH10K WIRELESS DRIVER
16585 M:      Kalle Valo <kvalo@kernel.org>
16586 L:      ath10k@lists.infradead.org
16587 S:      Supported
16588 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath10k
16589 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
16590 F:      drivers/net/wireless/ath/ath10k/
16591 F:      Documentation/devicetree/bindings/net/wireless/qcom,ath10k.txt
16592
16593 QUALCOMM ATHEROS ATH11K WIRELESS DRIVER
16594 M:      Kalle Valo <kvalo@kernel.org>
16595 L:      ath11k@lists.infradead.org
16596 S:      Supported
16597 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
16598 F:      Documentation/devicetree/bindings/net/wireless/qcom,ath11k.yaml
16599 F:      drivers/net/wireless/ath/ath11k/
16600
16601 QUALCOMM ATHEROS ATH9K WIRELESS DRIVER
16602 M:      Toke Høiland-Jørgensen <toke@toke.dk>
16603 L:      linux-wireless@vger.kernel.org
16604 S:      Maintained
16605 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath9k
16606 F:      Documentation/devicetree/bindings/net/wireless/qca,ath9k.yaml
16607 F:      drivers/net/wireless/ath/ath9k/
16608
16609 QUALCOMM BAM-DMUX WWAN NETWORK DRIVER
16610 M:      Stephan Gerhold <stephan@gerhold.net>
16611 L:      netdev@vger.kernel.org
16612 L:      linux-arm-msm@vger.kernel.org
16613 S:      Maintained
16614 F:      Documentation/devicetree/bindings/net/qcom,bam-dmux.yaml
16615 F:      drivers/net/wwan/qcom_bam_dmux.c
16616
16617 QUALCOMM CAMERA SUBSYSTEM DRIVER
16618 M:      Robert Foss <robert.foss@linaro.org>
16619 M:      Todor Tomov <todor.too@gmail.com>
16620 L:      linux-media@vger.kernel.org
16621 S:      Maintained
16622 F:      Documentation/admin-guide/media/qcom_camss.rst
16623 F:      Documentation/devicetree/bindings/media/*camss*
16624 F:      drivers/media/platform/qcom/camss/
16625
16626 QUALCOMM CLOCK DRIVERS
16627 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
16628 L:      linux-arm-msm@vger.kernel.org
16629 S:      Supported
16630 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/qcom/linux.git
16631 F:      Documentation/devicetree/bindings/clock/qcom,*
16632 F:      drivers/clk/qcom/
16633 F:      include/dt-bindings/clock/qcom,*
16634
16635 QUALCOMM CORE POWER REDUCTION (CPR) AVS DRIVER
16636 M:      Niklas Cassel <nks@flawful.org>
16637 L:      linux-pm@vger.kernel.org
16638 L:      linux-arm-msm@vger.kernel.org
16639 S:      Maintained
16640 F:      Documentation/devicetree/bindings/power/avs/qcom,cpr.yaml
16641 F:      drivers/soc/qcom/cpr.c
16642
16643 QUALCOMM CPUFREQ DRIVER MSM8996/APQ8096
16644 M:      Ilia Lin <ilia.lin@kernel.org>
16645 L:      linux-pm@vger.kernel.org
16646 S:      Maintained
16647 F:      Documentation/devicetree/bindings/cpufreq/qcom-cpufreq-nvmem.yaml
16648 F:      Documentation/devicetree/bindings/opp/opp-v2-kryo-cpu.yaml
16649 F:      drivers/cpufreq/qcom-cpufreq-nvmem.c
16650
16651 QUALCOMM CRYPTO DRIVERS
16652 M:      Thara Gopinath <thara.gopinath@gmail.com>
16653 L:      linux-crypto@vger.kernel.org
16654 L:      linux-arm-msm@vger.kernel.org
16655 S:      Maintained
16656 F:      drivers/crypto/qce/
16657
16658 QUALCOMM EMAC GIGABIT ETHERNET DRIVER
16659 M:      Timur Tabi <timur@kernel.org>
16660 L:      netdev@vger.kernel.org
16661 S:      Maintained
16662 F:      drivers/net/ethernet/qualcomm/emac/
16663
16664 QUALCOMM ETHQOS ETHERNET DRIVER
16665 M:      Vinod Koul <vkoul@kernel.org>
16666 L:      netdev@vger.kernel.org
16667 S:      Maintained
16668 F:      Documentation/devicetree/bindings/net/qcom,ethqos.txt
16669 F:      drivers/net/ethernet/stmicro/stmmac/dwmac-qcom-ethqos.c
16670
16671 QUALCOMM FASTRPC DRIVER
16672 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
16673 M:      Amol Maheshwari <amahesh@qti.qualcomm.com>
16674 L:      linux-arm-msm@vger.kernel.org
16675 S:      Maintained
16676 F:      Documentation/devicetree/bindings/misc/qcom,fastrpc.txt
16677 F:      drivers/misc/fastrpc.c
16678 F:      include/uapi/misc/fastrpc.h
16679
16680 QUALCOMM HEXAGON ARCHITECTURE
16681 M:      Brian Cain <bcain@quicinc.com>
16682 L:      linux-hexagon@vger.kernel.org
16683 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bcain/linux.git
16684 S:      Supported
16685 F:      arch/hexagon/
16686
16687 QUALCOMM HIDMA DRIVER
16688 M:      Sinan Kaya <okaya@kernel.org>
16689 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16690 L:      linux-arm-msm@vger.kernel.org
16691 L:      dmaengine@vger.kernel.org
16692 S:      Supported
16693 F:      drivers/dma/qcom/hidma*
16694
16695 QUALCOMM I2C CCI DRIVER
16696 M:      Loic Poulain <loic.poulain@linaro.org>
16697 M:      Robert Foss <robert.foss@linaro.org>
16698 L:      linux-i2c@vger.kernel.org
16699 L:      linux-arm-msm@vger.kernel.org
16700 S:      Maintained
16701 F:      Documentation/devicetree/bindings/i2c/i2c-qcom-cci.txt
16702 F:      drivers/i2c/busses/i2c-qcom-cci.c
16703
16704 QUALCOMM INTERCONNECT BWMON DRIVER
16705 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
16706 L:      linux-arm-msm@vger.kernel.org
16707 S:      Maintained
16708 F:      Documentation/devicetree/bindings/interconnect/qcom,msm8998-bwmon.yaml
16709 F:      drivers/soc/qcom/icc-bwmon.c
16710
16711 QUALCOMM IOMMU
16712 M:      Rob Clark <robdclark@gmail.com>
16713 L:      iommu@lists.linux.dev
16714 L:      linux-arm-msm@vger.kernel.org
16715 S:      Maintained
16716 F:      drivers/iommu/arm/arm-smmu/qcom_iommu.c
16717
16718 QUALCOMM IPC ROUTER (QRTR) DRIVER
16719 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
16720 L:      linux-arm-msm@vger.kernel.org
16721 S:      Maintained
16722 F:      include/trace/events/qrtr.h
16723 F:      include/uapi/linux/qrtr.h
16724 F:      net/qrtr/
16725
16726 QUALCOMM IPCC MAILBOX DRIVER
16727 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
16728 L:      linux-arm-msm@vger.kernel.org
16729 S:      Supported
16730 F:      Documentation/devicetree/bindings/mailbox/qcom-ipcc.yaml
16731 F:      drivers/mailbox/qcom-ipcc.c
16732 F:      include/dt-bindings/mailbox/qcom-ipcc.h
16733
16734 QUALCOMM IPQ4019 USB PHY DRIVER
16735 M:      Robert Marko <robert.marko@sartura.hr>
16736 M:      Luka Perkov <luka.perkov@sartura.hr>
16737 L:      linux-arm-msm@vger.kernel.org
16738 S:      Maintained
16739 F:      Documentation/devicetree/bindings/phy/qcom-usb-ipq4019-phy.yaml
16740 F:      drivers/phy/qualcomm/phy-qcom-ipq4019-usb.c
16741
16742 QUALCOMM IPQ4019 VQMMC REGULATOR DRIVER
16743 M:      Robert Marko <robert.marko@sartura.hr>
16744 M:      Luka Perkov <luka.perkov@sartura.hr>
16745 L:      linux-arm-msm@vger.kernel.org
16746 S:      Maintained
16747 F:      Documentation/devicetree/bindings/regulator/vqmmc-ipq4019-regulator.yaml
16748 F:      drivers/regulator/vqmmc-ipq4019-regulator.c
16749
16750 QUALCOMM NAND CONTROLLER DRIVER
16751 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
16752 L:      linux-mtd@lists.infradead.org
16753 L:      linux-arm-msm@vger.kernel.org
16754 S:      Maintained
16755 F:      Documentation/devicetree/bindings/mtd/qcom,nandc.yaml
16756 F:      drivers/mtd/nand/raw/qcom_nandc.c
16757
16758 QUALCOMM RMNET DRIVER
16759 M:      Subash Abhinov Kasiviswanathan <quic_subashab@quicinc.com>
16760 M:      Sean Tranchetti <quic_stranche@quicinc.com>
16761 L:      netdev@vger.kernel.org
16762 S:      Maintained
16763 F:      Documentation/networking/device_drivers/cellular/qualcomm/rmnet.rst
16764 F:      drivers/net/ethernet/qualcomm/rmnet/
16765 F:      include/linux/if_rmnet.h
16766
16767 QUALCOMM TSENS THERMAL DRIVER
16768 M:      Amit Kucheria <amitk@kernel.org>
16769 M:      Thara Gopinath <thara.gopinath@gmail.com>
16770 L:      linux-pm@vger.kernel.org
16771 L:      linux-arm-msm@vger.kernel.org
16772 S:      Maintained
16773 F:      Documentation/devicetree/bindings/thermal/qcom-tsens.yaml
16774 F:      drivers/thermal/qcom/
16775
16776 QUALCOMM VENUS VIDEO ACCELERATOR DRIVER
16777 M:      Stanimir Varbanov <stanimir.varbanov@linaro.org>
16778 L:      linux-media@vger.kernel.org
16779 L:      linux-arm-msm@vger.kernel.org
16780 S:      Maintained
16781 T:      git git://linuxtv.org/media_tree.git
16782 F:      Documentation/devicetree/bindings/media/*venus*
16783 F:      drivers/media/platform/qcom/venus/
16784
16785 QUALCOMM WCN36XX WIRELESS DRIVER
16786 M:      Loic Poulain <loic.poulain@linaro.org>
16787 L:      wcn36xx@lists.infradead.org
16788 S:      Supported
16789 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wcn36xx
16790 F:      drivers/net/wireless/ath/wcn36xx/
16791
16792 QUANTENNA QTNFMAC WIRELESS DRIVER
16793 M:      Igor Mitsyanko <imitsyanko@quantenna.com>
16794 R:      Sergey Matyukevich <geomatsi@gmail.com>
16795 L:      linux-wireless@vger.kernel.org
16796 S:      Maintained
16797 F:      drivers/net/wireless/quantenna
16798
16799 RADEON and AMDGPU DRM DRIVERS
16800 M:      Alex Deucher <alexander.deucher@amd.com>
16801 M:      Christian König <christian.koenig@amd.com>
16802 M:      Pan, Xinhui <Xinhui.Pan@amd.com>
16803 L:      amd-gfx@lists.freedesktop.org
16804 S:      Supported
16805 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
16806 B:      https://gitlab.freedesktop.org/drm/amd/-/issues
16807 C:      irc://irc.oftc.net/radeon
16808 F:      Documentation/gpu/amdgpu/
16809 F:      drivers/gpu/drm/amd/
16810 F:      drivers/gpu/drm/radeon/
16811 F:      include/uapi/drm/amdgpu_drm.h
16812 F:      include/uapi/drm/radeon_drm.h
16813
16814 RADEON FRAMEBUFFER DISPLAY DRIVER
16815 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
16816 L:      linux-fbdev@vger.kernel.org
16817 S:      Maintained
16818 F:      drivers/video/fbdev/aty/radeon*
16819 F:      include/uapi/linux/radeonfb.h
16820
16821 RADIOSHARK RADIO DRIVER
16822 M:      Hans Verkuil <hverkuil@xs4all.nl>
16823 L:      linux-media@vger.kernel.org
16824 S:      Maintained
16825 T:      git git://linuxtv.org/media_tree.git
16826 F:      drivers/media/radio/radio-shark.c
16827
16828 RADIOSHARK2 RADIO DRIVER
16829 M:      Hans Verkuil <hverkuil@xs4all.nl>
16830 L:      linux-media@vger.kernel.org
16831 S:      Maintained
16832 T:      git git://linuxtv.org/media_tree.git
16833 F:      drivers/media/radio/radio-shark2.c
16834 F:      drivers/media/radio/radio-tea5777.c
16835
16836 RADOS BLOCK DEVICE (RBD)
16837 M:      Ilya Dryomov <idryomov@gmail.com>
16838 R:      Dongsheng Yang <dongsheng.yang@easystack.cn>
16839 L:      ceph-devel@vger.kernel.org
16840 S:      Supported
16841 W:      http://ceph.com/
16842 T:      git git://github.com/ceph/ceph-client.git
16843 F:      Documentation/ABI/testing/sysfs-bus-rbd
16844 F:      drivers/block/rbd.c
16845 F:      drivers/block/rbd_types.h
16846
16847 RAGE128 FRAMEBUFFER DISPLAY DRIVER
16848 M:      Paul Mackerras <paulus@samba.org>
16849 L:      linux-fbdev@vger.kernel.org
16850 S:      Maintained
16851 F:      drivers/video/fbdev/aty/aty128fb.c
16852
16853 RAINSHADOW-CEC DRIVER
16854 M:      Hans Verkuil <hverkuil@xs4all.nl>
16855 L:      linux-media@vger.kernel.org
16856 S:      Maintained
16857 T:      git git://linuxtv.org/media_tree.git
16858 F:      drivers/media/cec/usb/rainshadow/
16859
16860 RALINK MIPS ARCHITECTURE
16861 M:      John Crispin <john@phrozen.org>
16862 L:      linux-mips@vger.kernel.org
16863 S:      Maintained
16864 F:      arch/mips/ralink
16865
16866 RALINK MT7621 MIPS ARCHITECTURE
16867 M:      Arınç ÜNAL <arinc.unal@arinc9.com>
16868 M:      Sergio Paracuellos <sergio.paracuellos@gmail.com>
16869 L:      linux-mips@vger.kernel.org
16870 S:      Maintained
16871 F:      arch/mips/boot/dts/ralink/mt7621*
16872
16873 RALINK PINCTRL DRIVER
16874 M:      Arınç ÜNAL <arinc.unal@arinc9.com>
16875 M:      Sergio Paracuellos <sergio.paracuellos@gmail.com>
16876 L:      linux-mips@vger.kernel.org
16877 S:      Maintained
16878 F:      drivers/pinctrl/ralink/
16879
16880 RALINK RT2X00 WIRELESS LAN DRIVER
16881 M:      Stanislaw Gruszka <stf_xl@wp.pl>
16882 M:      Helmut Schaa <helmut.schaa@googlemail.com>
16883 L:      linux-wireless@vger.kernel.org
16884 S:      Maintained
16885 F:      drivers/net/wireless/ralink/rt2x00/
16886
16887 RAMDISK RAM BLOCK DEVICE DRIVER
16888 M:      Jens Axboe <axboe@kernel.dk>
16889 S:      Maintained
16890 F:      Documentation/admin-guide/blockdev/ramdisk.rst
16891 F:      drivers/block/brd.c
16892
16893 RANCHU VIRTUAL BOARD FOR MIPS
16894 M:      Miodrag Dinic <miodrag.dinic@mips.com>
16895 L:      linux-mips@vger.kernel.org
16896 S:      Supported
16897 F:      arch/mips/configs/generic/board-ranchu.config
16898 F:      arch/mips/generic/board-ranchu.c
16899
16900 RANDOM NUMBER DRIVER
16901 M:      "Theodore Ts'o" <tytso@mit.edu>
16902 M:      Jason A. Donenfeld <Jason@zx2c4.com>
16903 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/crng/random.git
16904 S:      Maintained
16905 F:      drivers/char/random.c
16906 F:      drivers/virt/vmgenid.c
16907
16908 RAPIDIO SUBSYSTEM
16909 M:      Matt Porter <mporter@kernel.crashing.org>
16910 M:      Alexandre Bounine <alex.bou9@gmail.com>
16911 S:      Maintained
16912 F:      drivers/rapidio/
16913
16914 RAS INFRASTRUCTURE
16915 M:      Tony Luck <tony.luck@intel.com>
16916 M:      Borislav Petkov <bp@alien8.de>
16917 L:      linux-edac@vger.kernel.org
16918 S:      Maintained
16919 F:      Documentation/admin-guide/ras.rst
16920 F:      drivers/ras/
16921 F:      include/linux/ras.h
16922 F:      include/ras/ras_event.h
16923
16924 RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
16925 L:      linux-wireless@vger.kernel.org
16926 S:      Orphan
16927 F:      drivers/net/wireless/ray*
16928
16929 RC-CORE / LIRC FRAMEWORK
16930 M:      Sean Young <sean@mess.org>
16931 L:      linux-media@vger.kernel.org
16932 S:      Maintained
16933 W:      http://linuxtv.org
16934 T:      git git://linuxtv.org/media_tree.git
16935 F:      Documentation/driver-api/media/rc-core.rst
16936 F:      Documentation/userspace-api/media/rc/
16937 F:      drivers/media/rc/
16938 F:      include/media/rc-map.h
16939 F:      include/media/rc-core.h
16940 F:      include/uapi/linux/lirc.h
16941
16942 RCMM REMOTE CONTROLS DECODER
16943 M:      Patrick Lerda <patrick9876@free.fr>
16944 S:      Maintained
16945 F:      drivers/media/rc/ir-rcmm-decoder.c
16946
16947 RCUTORTURE TEST FRAMEWORK
16948 M:      "Paul E. McKenney" <paulmck@kernel.org>
16949 M:      Josh Triplett <josh@joshtriplett.org>
16950 R:      Steven Rostedt <rostedt@goodmis.org>
16951 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
16952 R:      Lai Jiangshan <jiangshanlai@gmail.com>
16953 L:      rcu@vger.kernel.org
16954 S:      Supported
16955 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
16956 F:      tools/testing/selftests/rcutorture
16957
16958 RDACM20 Camera Sensor
16959 M:      Jacopo Mondi <jacopo+renesas@jmondi.org>
16960 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
16961 M:      Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
16962 M:      Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
16963 L:      linux-media@vger.kernel.org
16964 S:      Maintained
16965 F:      Documentation/devicetree/bindings/media/i2c/imi,rdacm2x-gmsl.yaml
16966 F:      drivers/media/i2c/max9271.c
16967 F:      drivers/media/i2c/max9271.h
16968 F:      drivers/media/i2c/rdacm20.c
16969
16970 RDACM21 Camera Sensor
16971 M:      Jacopo Mondi <jacopo+renesas@jmondi.org>
16972 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
16973 M:      Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
16974 M:      Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
16975 L:      linux-media@vger.kernel.org
16976 S:      Maintained
16977 F:      Documentation/devicetree/bindings/media/i2c/imi,rdacm2x-gmsl.yaml
16978 F:      drivers/media/i2c/max9271.c
16979 F:      drivers/media/i2c/max9271.h
16980 F:      drivers/media/i2c/rdacm21.c
16981
16982 RDC R-321X SoC
16983 M:      Florian Fainelli <florian@openwrt.org>
16984 S:      Maintained
16985
16986 RDC R6040 FAST ETHERNET DRIVER
16987 M:      Florian Fainelli <f.fainelli@gmail.com>
16988 L:      netdev@vger.kernel.org
16989 S:      Maintained
16990 F:      drivers/net/ethernet/rdc/r6040.c
16991
16992 RDMAVT - RDMA verbs software
16993 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
16994 L:      linux-rdma@vger.kernel.org
16995 S:      Supported
16996 F:      drivers/infiniband/sw/rdmavt
16997
16998 RDS - RELIABLE DATAGRAM SOCKETS
16999 M:      Santosh Shilimkar <santosh.shilimkar@oracle.com>
17000 L:      netdev@vger.kernel.org
17001 L:      linux-rdma@vger.kernel.org
17002 L:      rds-devel@oss.oracle.com (moderated for non-subscribers)
17003 S:      Supported
17004 W:      https://oss.oracle.com/projects/rds/
17005 F:      Documentation/networking/rds.rst
17006 F:      net/rds/
17007
17008 RDT - RESOURCE ALLOCATION
17009 M:      Fenghua Yu <fenghua.yu@intel.com>
17010 M:      Reinette Chatre <reinette.chatre@intel.com>
17011 L:      linux-kernel@vger.kernel.org
17012 S:      Supported
17013 F:      Documentation/x86/resctrl*
17014 F:      arch/x86/include/asm/resctrl.h
17015 F:      arch/x86/kernel/cpu/resctrl/
17016 F:      tools/testing/selftests/resctrl/
17017
17018 READ-COPY UPDATE (RCU)
17019 M:      "Paul E. McKenney" <paulmck@kernel.org>
17020 M:      Frederic Weisbecker <frederic@kernel.org> (kernel/rcu/tree_nocb.h)
17021 M:      Neeraj Upadhyay <quic_neeraju@quicinc.com> (kernel/rcu/tasks.h)
17022 M:      Josh Triplett <josh@joshtriplett.org>
17023 R:      Steven Rostedt <rostedt@goodmis.org>
17024 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
17025 R:      Lai Jiangshan <jiangshanlai@gmail.com>
17026 R:      Joel Fernandes <joel@joelfernandes.org>
17027 L:      rcu@vger.kernel.org
17028 S:      Supported
17029 W:      http://www.rdrop.com/users/paulmck/RCU/
17030 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
17031 F:      Documentation/RCU/
17032 F:      include/linux/rcu*
17033 F:      kernel/rcu/
17034 X:      Documentation/RCU/torture.rst
17035 X:      include/linux/srcu*.h
17036 X:      kernel/rcu/srcu*.c
17037
17038 REAL TIME CLOCK (RTC) SUBSYSTEM
17039 M:      Alessandro Zummo <a.zummo@towertech.it>
17040 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
17041 L:      linux-rtc@vger.kernel.org
17042 S:      Maintained
17043 Q:      http://patchwork.ozlabs.org/project/rtc-linux/list/
17044 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git
17045 F:      Documentation/admin-guide/rtc.rst
17046 F:      Documentation/devicetree/bindings/rtc/
17047 F:      drivers/rtc/
17048 F:      include/linux/platform_data/rtc-*
17049 F:      include/linux/rtc.h
17050 F:      include/linux/rtc/
17051 F:      include/uapi/linux/rtc.h
17052 F:      tools/testing/selftests/rtc/
17053
17054 REALTEK AUDIO CODECS
17055 M:      Oder Chiou <oder_chiou@realtek.com>
17056 S:      Maintained
17057 F:      include/sound/rt*.h
17058 F:      sound/soc/codecs/rt*
17059
17060 REALTEK OTTO WATCHDOG
17061 M:      Sander Vanheule <sander@svanheule.net>
17062 L:      linux-watchdog@vger.kernel.org
17063 S:      Maintained
17064 F:      Documentation/devicetree/bindings/watchdog/realtek,otto-wdt.yaml
17065 F:      drivers/watchdog/realtek_otto_wdt.c
17066
17067 REALTEK RTL83xx SMI DSA ROUTER CHIPS
17068 M:      Linus Walleij <linus.walleij@linaro.org>
17069 M:      Alvin Šipraga <alsi@bang-olufsen.dk>
17070 S:      Maintained
17071 F:      Documentation/devicetree/bindings/net/dsa/realtek.yaml
17072 F:      drivers/net/dsa/realtek/*
17073
17074 REALTEK WIRELESS DRIVER (rtlwifi family)
17075 M:      Ping-Ke Shih <pkshih@realtek.com>
17076 L:      linux-wireless@vger.kernel.org
17077 S:      Maintained
17078 W:      https://wireless.wiki.kernel.org/
17079 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
17080 F:      drivers/net/wireless/realtek/rtlwifi/
17081
17082 REALTEK WIRELESS DRIVER (rtw88)
17083 M:      Yan-Hsuan Chuang <tony0620emma@gmail.com>
17084 L:      linux-wireless@vger.kernel.org
17085 S:      Maintained
17086 F:      drivers/net/wireless/realtek/rtw88/
17087
17088 REALTEK WIRELESS DRIVER (rtw89)
17089 M:      Ping-Ke Shih <pkshih@realtek.com>
17090 L:      linux-wireless@vger.kernel.org
17091 S:      Maintained
17092 F:      drivers/net/wireless/realtek/rtw89/
17093
17094 REDPINE WIRELESS DRIVER
17095 M:      Amitkumar Karwar <amitkarwar@gmail.com>
17096 M:      Siva Rebbagondla <siva8118@gmail.com>
17097 L:      linux-wireless@vger.kernel.org
17098 S:      Maintained
17099 F:      drivers/net/wireless/rsi/
17100
17101 REGISTER MAP ABSTRACTION
17102 M:      Mark Brown <broonie@kernel.org>
17103 L:      linux-kernel@vger.kernel.org
17104 S:      Supported
17105 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
17106 F:      Documentation/devicetree/bindings/regmap/
17107 F:      drivers/base/regmap/
17108 F:      include/linux/regmap.h
17109
17110 REISERFS FILE SYSTEM
17111 L:      reiserfs-devel@vger.kernel.org
17112 S:      Supported
17113 F:      fs/reiserfs/
17114
17115 REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
17116 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
17117 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
17118 L:      linux-remoteproc@vger.kernel.org
17119 S:      Maintained
17120 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/remoteproc/linux.git rproc-next
17121 F:      Documentation/ABI/testing/sysfs-class-remoteproc
17122 F:      Documentation/devicetree/bindings/remoteproc/
17123 F:      Documentation/staging/remoteproc.rst
17124 F:      drivers/remoteproc/
17125 F:      include/linux/remoteproc.h
17126 F:      include/linux/remoteproc/
17127
17128 REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM
17129 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
17130 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
17131 L:      linux-remoteproc@vger.kernel.org
17132 S:      Maintained
17133 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/remoteproc/linux.git rpmsg-next
17134 F:      Documentation/ABI/testing/sysfs-bus-rpmsg
17135 F:      Documentation/staging/rpmsg.rst
17136 F:      drivers/rpmsg/
17137 F:      include/linux/rpmsg.h
17138 F:      include/linux/rpmsg/
17139 F:      include/uapi/linux/rpmsg.h
17140 F:      samples/rpmsg/
17141
17142 REMOTE PROCESSOR MESSAGING (RPMSG) WWAN CONTROL DRIVER
17143 M:      Stephan Gerhold <stephan@gerhold.net>
17144 L:      netdev@vger.kernel.org
17145 L:      linux-remoteproc@vger.kernel.org
17146 S:      Maintained
17147 F:      drivers/net/wwan/rpmsg_wwan_ctrl.c
17148
17149 RENESAS CLOCK DRIVERS
17150 M:      Geert Uytterhoeven <geert+renesas@glider.be>
17151 L:      linux-renesas-soc@vger.kernel.org
17152 S:      Supported
17153 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git renesas-clk
17154 F:      Documentation/devicetree/bindings/clock/renesas,*
17155 F:      drivers/clk/renesas/
17156
17157 RENESAS EMEV2 I2C DRIVER
17158 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
17159 L:      linux-renesas-soc@vger.kernel.org
17160 S:      Supported
17161 F:      Documentation/devicetree/bindings/i2c/renesas,iic-emev2.yaml
17162 F:      drivers/i2c/busses/i2c-emev2.c
17163
17164 RENESAS ETHERNET DRIVERS
17165 R:      Sergey Shtylyov <s.shtylyov@omp.ru>
17166 L:      netdev@vger.kernel.org
17167 L:      linux-renesas-soc@vger.kernel.org
17168 F:      Documentation/devicetree/bindings/net/renesas,*.yaml
17169 F:      drivers/net/ethernet/renesas/
17170 F:      include/linux/sh_eth.h
17171
17172 RENESAS R-CAR GYROADC DRIVER
17173 M:      Marek Vasut <marek.vasut@gmail.com>
17174 L:      linux-iio@vger.kernel.org
17175 S:      Supported
17176 F:      Documentation/devicetree/bindings/iio/adc/renesas,rcar-gyroadc.yaml
17177 F:      drivers/iio/adc/rcar-gyroadc.c
17178
17179 RENESAS R-CAR I2C DRIVERS
17180 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
17181 L:      linux-renesas-soc@vger.kernel.org
17182 S:      Supported
17183 F:      Documentation/devicetree/bindings/i2c/renesas,rcar-i2c.yaml
17184 F:      Documentation/devicetree/bindings/i2c/renesas,rmobile-iic.yaml
17185 F:      drivers/i2c/busses/i2c-rcar.c
17186 F:      drivers/i2c/busses/i2c-sh_mobile.c
17187
17188 RENESAS R-CAR SATA DRIVER
17189 R:      Sergey Shtylyov <s.shtylyov@omp.ru>
17190 S:      Supported
17191 L:      linux-ide@vger.kernel.org
17192 L:      linux-renesas-soc@vger.kernel.org
17193 F:      Documentation/devicetree/bindings/ata/renesas,rcar-sata.yaml
17194 F:      drivers/ata/sata_rcar.c
17195
17196 RENESAS R-CAR THERMAL DRIVERS
17197 M:      Niklas Söderlund <niklas.soderlund@ragnatech.se>
17198 L:      linux-renesas-soc@vger.kernel.org
17199 S:      Supported
17200 F:      Documentation/devicetree/bindings/thermal/rcar-gen3-thermal.yaml
17201 F:      Documentation/devicetree/bindings/thermal/rcar-thermal.yaml
17202 F:      drivers/thermal/rcar_gen3_thermal.c
17203 F:      drivers/thermal/rcar_thermal.c
17204
17205 RENESAS RIIC DRIVER
17206 M:      Chris Brandt <chris.brandt@renesas.com>
17207 L:      linux-renesas-soc@vger.kernel.org
17208 S:      Supported
17209 F:      Documentation/devicetree/bindings/i2c/renesas,riic.yaml
17210 F:      drivers/i2c/busses/i2c-riic.c
17211
17212 RENESAS USB PHY DRIVER
17213 M:      Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
17214 L:      linux-renesas-soc@vger.kernel.org
17215 S:      Maintained
17216 F:      drivers/phy/renesas/phy-rcar-gen3-usb*.c
17217
17218 RENESAS RZ/G2L A/D DRIVER
17219 M:      Lad Prabhakar <prabhakar.mahadev-lad.rj@bp.renesas.com>
17220 L:      linux-iio@vger.kernel.org
17221 L:      linux-renesas-soc@vger.kernel.org
17222 S:      Supported
17223 F:      Documentation/devicetree/bindings/iio/adc/renesas,rzg2l-adc.yaml
17224 F:      drivers/iio/adc/rzg2l_adc.c
17225
17226 RENESAS RZ/N1 RTC CONTROLLER DRIVER
17227 M:      Miquel Raynal <miquel.raynal@bootlin.com>
17228 L:      linux-rtc@vger.kernel.org
17229 L:      linux-renesas-soc@vger.kernel.org
17230 S:      Maintained
17231 F:      Documentation/devicetree/bindings/rtc/renesas,rzn1-rtc.yaml
17232 F:      drivers/rtc/rtc-rzn1.c
17233
17234 RENESAS R-CAR GEN3 & RZ/N1 NAND CONTROLLER DRIVER
17235 M:      Miquel Raynal <miquel.raynal@bootlin.com>
17236 L:      linux-mtd@lists.infradead.org
17237 L:      linux-renesas-soc@vger.kernel.org
17238 S:      Maintained
17239 F:      Documentation/devicetree/bindings/mtd/renesas-nandc.yaml
17240 F:      drivers/mtd/nand/raw/renesas-nand-controller.c
17241
17242 RESET CONTROLLER FRAMEWORK
17243 M:      Philipp Zabel <p.zabel@pengutronix.de>
17244 S:      Maintained
17245 T:      git git://git.pengutronix.de/git/pza/linux
17246 F:      Documentation/devicetree/bindings/reset/
17247 F:      Documentation/driver-api/reset.rst
17248 F:      drivers/reset/
17249 F:      include/dt-bindings/reset/
17250 F:      include/linux/reset-controller.h
17251 F:      include/linux/reset.h
17252 F:      include/linux/reset/
17253 K:      \b(?:devm_|of_)?reset_control(?:ler_[a-z]+|_[a-z_]+)?\b
17254
17255 RESTARTABLE SEQUENCES SUPPORT
17256 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
17257 M:      Peter Zijlstra <peterz@infradead.org>
17258 M:      "Paul E. McKenney" <paulmck@kernel.org>
17259 M:      Boqun Feng <boqun.feng@gmail.com>
17260 L:      linux-kernel@vger.kernel.org
17261 S:      Supported
17262 F:      include/trace/events/rseq.h
17263 F:      include/uapi/linux/rseq.h
17264 F:      kernel/rseq.c
17265 F:      tools/testing/selftests/rseq/
17266
17267 RFKILL
17268 M:      Johannes Berg <johannes@sipsolutions.net>
17269 L:      linux-wireless@vger.kernel.org
17270 S:      Maintained
17271 W:      https://wireless.wiki.kernel.org/
17272 Q:      https://patchwork.kernel.org/project/linux-wireless/list/
17273 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless.git
17274 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless-next.git
17275 F:      Documentation/ABI/stable/sysfs-class-rfkill
17276 F:      Documentation/driver-api/rfkill.rst
17277 F:      include/linux/rfkill.h
17278 F:      include/uapi/linux/rfkill.h
17279 F:      net/rfkill/
17280
17281 RHASHTABLE
17282 M:      Thomas Graf <tgraf@suug.ch>
17283 M:      Herbert Xu <herbert@gondor.apana.org.au>
17284 L:      netdev@vger.kernel.org
17285 S:      Maintained
17286 F:      include/linux/rhashtable-types.h
17287 F:      include/linux/rhashtable.h
17288 F:      lib/rhashtable.c
17289 F:      lib/test_rhashtable.c
17290
17291 RICOH R5C592 MEMORYSTICK DRIVER
17292 M:      Maxim Levitsky <maximlevitsky@gmail.com>
17293 S:      Maintained
17294 F:      drivers/memstick/host/r592.*
17295
17296 RICOH SMARTMEDIA/XD DRIVER
17297 M:      Maxim Levitsky <maximlevitsky@gmail.com>
17298 S:      Maintained
17299 F:      drivers/mtd/nand/raw/r852.c
17300 F:      drivers/mtd/nand/raw/r852.h
17301
17302 RISC-V PMU DRIVERS
17303 M:      Atish Patra <atishp@atishpatra.org>
17304 R:      Anup Patel <anup@brainfault.org>
17305 L:      linux-riscv@lists.infradead.org
17306 S:      Supported
17307 F:      drivers/perf/riscv_pmu.c
17308 F:      drivers/perf/riscv_pmu_legacy.c
17309 F:      drivers/perf/riscv_pmu_sbi.c
17310
17311 RISC-V ARCHITECTURE
17312 M:      Paul Walmsley <paul.walmsley@sifive.com>
17313 M:      Palmer Dabbelt <palmer@dabbelt.com>
17314 M:      Albert Ou <aou@eecs.berkeley.edu>
17315 L:      linux-riscv@lists.infradead.org
17316 S:      Supported
17317 P:      Documentation/riscv/patch-acceptance.rst
17318 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/riscv/linux.git
17319 F:      arch/riscv/
17320 N:      riscv
17321 K:      riscv
17322
17323 RISC-V/MICROCHIP POLARFIRE SOC SUPPORT
17324 M:      Conor Dooley <conor.dooley@microchip.com>
17325 M:      Daire McNamara <daire.mcnamara@microchip.com>
17326 L:      linux-riscv@lists.infradead.org
17327 S:      Supported
17328 F:      arch/riscv/boot/dts/microchip/
17329 F:      drivers/char/hw_random/mpfs-rng.c
17330 F:      drivers/clk/microchip/clk-mpfs.c
17331 F:      drivers/mailbox/mailbox-mpfs.c
17332 F:      drivers/pci/controller/pcie-microchip-host.c
17333 F:      drivers/soc/microchip/
17334 F:      drivers/spi/spi-microchip-core.c
17335 F:      include/soc/microchip/mpfs.h
17336
17337 RNBD BLOCK DRIVERS
17338 M:      Md. Haris Iqbal <haris.iqbal@ionos.com>
17339 M:      Jack Wang <jinpu.wang@ionos.com>
17340 L:      linux-block@vger.kernel.org
17341 S:      Maintained
17342 F:      drivers/block/rnbd/
17343
17344 ROCCAT DRIVERS
17345 M:      Stefan Achatz <erazor_de@users.sourceforge.net>
17346 S:      Maintained
17347 W:      http://sourceforge.net/projects/roccat/
17348 F:      Documentation/ABI/*/sysfs-driver-hid-roccat*
17349 F:      drivers/hid/hid-roccat*
17350 F:      include/linux/hid-roccat*
17351
17352 ROCKCHIP I2S TDM DRIVER
17353 M:      Nicolas Frattaroli <frattaroli.nicolas@gmail.com>
17354 L:      linux-rockchip@lists.infradead.org
17355 S:      Maintained
17356 F:      Documentation/devicetree/bindings/sound/rockchip,i2s-tdm.yaml
17357 F:      sound/soc/rockchip/rockchip_i2s_tdm.*
17358
17359 ROCKCHIP ISP V1 DRIVER
17360 M:      Dafna Hirschfeld <dafna@fastmail.com>
17361 L:      linux-media@vger.kernel.org
17362 L:      linux-rockchip@lists.infradead.org
17363 S:      Maintained
17364 F:      Documentation/admin-guide/media/rkisp1.rst
17365 F:      Documentation/devicetree/bindings/media/rockchip-isp1.yaml
17366 F:      Documentation/userspace-api/media/v4l/pixfmt-meta-rkisp1.rst
17367 F:      drivers/media/platform/rockchip/rkisp1
17368 F:      include/uapi/linux/rkisp1-config.h
17369
17370 ROCKCHIP RASTER 2D GRAPHIC ACCELERATION UNIT DRIVER
17371 M:      Jacob Chen <jacob-chen@iotwrt.com>
17372 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
17373 L:      linux-media@vger.kernel.org
17374 L:      linux-rockchip@lists.infradead.org
17375 S:      Maintained
17376 F:      Documentation/devicetree/bindings/media/rockchip-rga.yaml
17377 F:      drivers/media/platform/rockchip/rga/
17378
17379 ROCKCHIP VIDEO DECODER DRIVER
17380 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
17381 L:      linux-media@vger.kernel.org
17382 L:      linux-rockchip@lists.infradead.org
17383 S:      Maintained
17384 F:      Documentation/devicetree/bindings/media/rockchip,vdec.yaml
17385 F:      drivers/staging/media/rkvdec/
17386
17387 ROCKER DRIVER
17388 M:      Jiri Pirko <jiri@resnulli.us>
17389 L:      netdev@vger.kernel.org
17390 S:      Supported
17391 F:      drivers/net/ethernet/rocker/
17392
17393 ROCKETPORT EXPRESS/INFINITY DRIVER
17394 M:      Kevin Cernekee <cernekee@gmail.com>
17395 L:      linux-serial@vger.kernel.org
17396 S:      Odd Fixes
17397 F:      drivers/tty/serial/rp2.*
17398
17399 ROHM BD99954 CHARGER IC
17400 R:      Matti Vaittinen <mazziesaccount@gmail.com>
17401 S:      Supported
17402 F:      drivers/power/supply/bd99954-charger.c
17403 F:      drivers/power/supply/bd99954-charger.h
17404
17405 ROHM BH1750 AMBIENT LIGHT SENSOR DRIVER
17406 M:      Tomasz Duszynski <tduszyns@gmail.com>
17407 S:      Maintained
17408 F:      Documentation/devicetree/bindings/iio/light/bh1750.yaml
17409 F:      drivers/iio/light/bh1750.c
17410
17411 ROHM MULTIFUNCTION BD9571MWV-M PMIC DEVICE DRIVERS
17412 M:      Marek Vasut <marek.vasut+renesas@gmail.com>
17413 L:      linux-kernel@vger.kernel.org
17414 L:      linux-renesas-soc@vger.kernel.org
17415 S:      Supported
17416 F:      Documentation/devicetree/bindings/mfd/rohm,bd9571mwv.yaml
17417 F:      drivers/gpio/gpio-bd9571mwv.c
17418 F:      drivers/mfd/bd9571mwv.c
17419 F:      drivers/regulator/bd9571mwv-regulator.c
17420 F:      include/linux/mfd/bd9571mwv.h
17421
17422 ROHM POWER MANAGEMENT IC DEVICE DRIVERS
17423 R:      Matti Vaittinen <mazziesaccount@gmail.com>
17424 S:      Supported
17425 F:      drivers/clk/clk-bd718x7.c
17426 F:      drivers/gpio/gpio-bd71815.c
17427 F:      drivers/gpio/gpio-bd71828.c
17428 F:      drivers/mfd/rohm-bd71828.c
17429 F:      drivers/mfd/rohm-bd718x7.c
17430 F:      drivers/mfd/rohm-bd9576.c
17431 F:      drivers/regulator/bd71815-regulator.c
17432 F:      drivers/regulator/bd71828-regulator.c
17433 F:      drivers/regulator/bd718x7-regulator.c
17434 F:      drivers/regulator/bd9576-regulator.c
17435 F:      drivers/regulator/rohm-regulator.c
17436 F:      drivers/rtc/rtc-bd70528.c
17437 F:      drivers/watchdog/bd9576_wdt.c
17438 F:      include/linux/mfd/rohm-bd71815.h
17439 F:      include/linux/mfd/rohm-bd71828.h
17440 F:      include/linux/mfd/rohm-bd718x7.h
17441 F:      include/linux/mfd/rohm-bd957x.h
17442 F:      include/linux/mfd/rohm-generic.h
17443 F:      include/linux/mfd/rohm-shared.h
17444
17445 ROSE NETWORK LAYER
17446 M:      Ralf Baechle <ralf@linux-mips.org>
17447 L:      linux-hams@vger.kernel.org
17448 S:      Maintained
17449 W:      http://www.linux-ax25.org/
17450 F:      include/net/rose.h
17451 F:      include/uapi/linux/rose.h
17452 F:      net/rose/
17453
17454 ROTATION DRIVER FOR ALLWINNER A83T
17455 M:      Jernej Skrabec <jernej.skrabec@gmail.com>
17456 L:      linux-media@vger.kernel.org
17457 S:      Maintained
17458 T:      git git://linuxtv.org/media_tree.git
17459 F:      Documentation/devicetree/bindings/media/allwinner,sun8i-a83t-de2-rotate.yaml
17460 F:      drivers/media/platform/sunxi/sun8i-rotate/
17461
17462 RPMSG TTY DRIVER
17463 M:      Arnaud Pouliquen <arnaud.pouliquen@foss.st.com>
17464 L:      linux-remoteproc@vger.kernel.org
17465 S:      Maintained
17466 F:      drivers/tty/rpmsg_tty.c
17467
17468 RTL2830 MEDIA DRIVER
17469 M:      Antti Palosaari <crope@iki.fi>
17470 L:      linux-media@vger.kernel.org
17471 S:      Maintained
17472 W:      https://linuxtv.org
17473 W:      http://palosaari.fi/linux/
17474 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17475 T:      git git://linuxtv.org/anttip/media_tree.git
17476 F:      drivers/media/dvb-frontends/rtl2830*
17477
17478 RTL2832 MEDIA DRIVER
17479 M:      Antti Palosaari <crope@iki.fi>
17480 L:      linux-media@vger.kernel.org
17481 S:      Maintained
17482 W:      https://linuxtv.org
17483 W:      http://palosaari.fi/linux/
17484 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17485 T:      git git://linuxtv.org/anttip/media_tree.git
17486 F:      drivers/media/dvb-frontends/rtl2832*
17487
17488 RTL2832_SDR MEDIA DRIVER
17489 M:      Antti Palosaari <crope@iki.fi>
17490 L:      linux-media@vger.kernel.org
17491 S:      Maintained
17492 W:      https://linuxtv.org
17493 W:      http://palosaari.fi/linux/
17494 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17495 T:      git git://linuxtv.org/anttip/media_tree.git
17496 F:      drivers/media/dvb-frontends/rtl2832_sdr*
17497
17498 RTL8180 WIRELESS DRIVER
17499 L:      linux-wireless@vger.kernel.org
17500 S:      Orphan
17501 W:      https://wireless.wiki.kernel.org/
17502 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
17503 F:      drivers/net/wireless/realtek/rtl818x/rtl8180/
17504
17505 RTL8187 WIRELESS DRIVER
17506 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
17507 M:      Hin-Tak Leung <htl10@users.sourceforge.net>
17508 M:      Larry Finger <Larry.Finger@lwfinger.net>
17509 L:      linux-wireless@vger.kernel.org
17510 S:      Maintained
17511 W:      https://wireless.wiki.kernel.org/
17512 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
17513 F:      drivers/net/wireless/realtek/rtl818x/rtl8187/
17514
17515 RTL8XXXU WIRELESS DRIVER (rtl8xxxu)
17516 M:      Jes Sorensen <Jes.Sorensen@gmail.com>
17517 L:      linux-wireless@vger.kernel.org
17518 S:      Maintained
17519 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jes/linux.git rtl8xxxu-devel
17520 F:      drivers/net/wireless/realtek/rtl8xxxu/
17521
17522 RTRS TRANSPORT DRIVERS
17523 M:      Md. Haris Iqbal <haris.iqbal@ionos.com>
17524 M:      Jack Wang <jinpu.wang@ionos.com>
17525 L:      linux-rdma@vger.kernel.org
17526 S:      Maintained
17527 F:      drivers/infiniband/ulp/rtrs/
17528
17529 RXRPC SOCKETS (AF_RXRPC)
17530 M:      David Howells <dhowells@redhat.com>
17531 M:      Marc Dionne <marc.dionne@auristor.com>
17532 L:      linux-afs@lists.infradead.org
17533 S:      Supported
17534 W:      https://www.infradead.org/~dhowells/kafs/
17535 F:      Documentation/networking/rxrpc.rst
17536 F:      include/keys/rxrpc-type.h
17537 F:      include/net/af_rxrpc.h
17538 F:      include/trace/events/rxrpc.h
17539 F:      include/uapi/linux/rxrpc.h
17540 F:      net/rxrpc/
17541
17542 S3 SAVAGE FRAMEBUFFER DRIVER
17543 M:      Antonino Daplas <adaplas@gmail.com>
17544 L:      linux-fbdev@vger.kernel.org
17545 S:      Maintained
17546 F:      drivers/video/fbdev/savage/
17547
17548 S390
17549 M:      Heiko Carstens <hca@linux.ibm.com>
17550 M:      Vasily Gorbik <gor@linux.ibm.com>
17551 M:      Alexander Gordeev <agordeev@linux.ibm.com>
17552 R:      Christian Borntraeger <borntraeger@linux.ibm.com>
17553 R:      Sven Schnelle <svens@linux.ibm.com>
17554 L:      linux-s390@vger.kernel.org
17555 S:      Supported
17556 W:      http://www.ibm.com/developerworks/linux/linux390/
17557 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux.git
17558 F:      Documentation/driver-api/s390-drivers.rst
17559 F:      Documentation/s390/
17560 F:      arch/s390/
17561 F:      drivers/s390/
17562
17563 S390 COMMON I/O LAYER
17564 M:      Vineeth Vijayan <vneethv@linux.ibm.com>
17565 M:      Peter Oberparleiter <oberpar@linux.ibm.com>
17566 L:      linux-s390@vger.kernel.org
17567 S:      Supported
17568 W:      http://www.ibm.com/developerworks/linux/linux390/
17569 F:      drivers/s390/cio/
17570
17571 S390 DASD DRIVER
17572 M:      Stefan Haberland <sth@linux.ibm.com>
17573 M:      Jan Hoeppner <hoeppner@linux.ibm.com>
17574 L:      linux-s390@vger.kernel.org
17575 S:      Supported
17576 W:      http://www.ibm.com/developerworks/linux/linux390/
17577 F:      block/partitions/ibm.c
17578 F:      drivers/s390/block/dasd*
17579 F:      include/linux/dasd_mod.h
17580
17581 S390 IOMMU (PCI)
17582 M:      Matthew Rosato <mjrosato@linux.ibm.com>
17583 M:      Gerald Schaefer <gerald.schaefer@linux.ibm.com>
17584 L:      linux-s390@vger.kernel.org
17585 S:      Supported
17586 W:      http://www.ibm.com/developerworks/linux/linux390/
17587 F:      drivers/iommu/s390-iommu.c
17588
17589 S390 IUCV NETWORK LAYER
17590 M:      Alexandra Winter <wintera@linux.ibm.com>
17591 M:      Wenjia Zhang <wenjia@linux.ibm.com>
17592 L:      linux-s390@vger.kernel.org
17593 L:      netdev@vger.kernel.org
17594 S:      Supported
17595 W:      http://www.ibm.com/developerworks/linux/linux390/
17596 F:      drivers/s390/net/*iucv*
17597 F:      include/net/iucv/
17598 F:      net/iucv/
17599
17600 S390 NETWORK DRIVERS
17601 M:      Alexandra Winter <wintera@linux.ibm.com>
17602 M:      Wenjia Zhang <wenjia@linux.ibm.com>
17603 L:      linux-s390@vger.kernel.org
17604 L:      netdev@vger.kernel.org
17605 S:      Supported
17606 W:      http://www.ibm.com/developerworks/linux/linux390/
17607 F:      drivers/s390/net/
17608
17609 S390 PCI SUBSYSTEM
17610 M:      Niklas Schnelle <schnelle@linux.ibm.com>
17611 M:      Gerald Schaefer <gerald.schaefer@linux.ibm.com>
17612 L:      linux-s390@vger.kernel.org
17613 S:      Supported
17614 W:      http://www.ibm.com/developerworks/linux/linux390/
17615 F:      arch/s390/pci/
17616 F:      drivers/pci/hotplug/s390_pci_hpc.c
17617 F:      Documentation/s390/pci.rst
17618
17619 S390 VFIO AP DRIVER
17620 M:      Tony Krowiak <akrowiak@linux.ibm.com>
17621 M:      Halil Pasic <pasic@linux.ibm.com>
17622 M:      Jason Herne <jjherne@linux.ibm.com>
17623 L:      linux-s390@vger.kernel.org
17624 S:      Supported
17625 W:      http://www.ibm.com/developerworks/linux/linux390/
17626 F:      Documentation/s390/vfio-ap.rst
17627 F:      drivers/s390/crypto/vfio_ap*
17628
17629 S390 VFIO-CCW DRIVER
17630 M:      Eric Farman <farman@linux.ibm.com>
17631 M:      Matthew Rosato <mjrosato@linux.ibm.com>
17632 R:      Halil Pasic <pasic@linux.ibm.com>
17633 L:      linux-s390@vger.kernel.org
17634 L:      kvm@vger.kernel.org
17635 S:      Supported
17636 F:      Documentation/s390/vfio-ccw.rst
17637 F:      drivers/s390/cio/vfio_ccw*
17638 F:      include/uapi/linux/vfio_ccw.h
17639
17640 S390 VFIO-PCI DRIVER
17641 M:      Matthew Rosato <mjrosato@linux.ibm.com>
17642 M:      Eric Farman <farman@linux.ibm.com>
17643 L:      linux-s390@vger.kernel.org
17644 L:      kvm@vger.kernel.org
17645 S:      Supported
17646 F:      drivers/vfio/pci/vfio_pci_zdev.c
17647 F:      include/uapi/linux/vfio_zdev.h
17648
17649 S390 ZCRYPT DRIVER
17650 M:      Harald Freudenberger <freude@linux.ibm.com>
17651 L:      linux-s390@vger.kernel.org
17652 S:      Supported
17653 W:      http://www.ibm.com/developerworks/linux/linux390/
17654 F:      drivers/s390/crypto/
17655
17656 S390 ZFCP DRIVER
17657 M:      Steffen Maier <maier@linux.ibm.com>
17658 M:      Benjamin Block <bblock@linux.ibm.com>
17659 L:      linux-s390@vger.kernel.org
17660 S:      Supported
17661 W:      http://www.ibm.com/developerworks/linux/linux390/
17662 F:      drivers/s390/scsi/zfcp_*
17663
17664 S3C ADC BATTERY DRIVER
17665 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
17666 L:      linux-samsung-soc@vger.kernel.org
17667 S:      Odd Fixes
17668 F:      drivers/power/supply/s3c_adc_battery.c
17669 F:      include/linux/s3c_adc_battery.h
17670
17671 S3C24XX SD/MMC Driver
17672 M:      Ben Dooks <ben-linux@fluff.org>
17673 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
17674 S:      Supported
17675 F:      drivers/mmc/host/s3cmci.*
17676
17677 SAA6588 RDS RECEIVER DRIVER
17678 M:      Hans Verkuil <hverkuil@xs4all.nl>
17679 L:      linux-media@vger.kernel.org
17680 S:      Odd Fixes
17681 W:      https://linuxtv.org
17682 T:      git git://linuxtv.org/media_tree.git
17683 F:      drivers/media/i2c/saa6588*
17684
17685 SAA7134 VIDEO4LINUX DRIVER
17686 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
17687 L:      linux-media@vger.kernel.org
17688 S:      Odd fixes
17689 W:      https://linuxtv.org
17690 T:      git git://linuxtv.org/media_tree.git
17691 F:      Documentation/driver-api/media/drivers/saa7134*
17692 F:      drivers/media/pci/saa7134/
17693
17694 SAA7146 VIDEO4LINUX-2 DRIVER
17695 M:      Hans Verkuil <hverkuil@xs4all.nl>
17696 L:      linux-media@vger.kernel.org
17697 S:      Maintained
17698 T:      git git://linuxtv.org/media_tree.git
17699 F:      drivers/media/common/saa7146/
17700 F:      drivers/media/pci/saa7146/
17701 F:      include/media/drv-intf/saa7146*
17702
17703 SAFESETID SECURITY MODULE
17704 M:      Micah Morton <mortonm@chromium.org>
17705 S:      Supported
17706 F:      Documentation/admin-guide/LSM/SafeSetID.rst
17707 F:      security/safesetid/
17708
17709 SAMSUNG AUDIO (ASoC) DRIVERS
17710 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
17711 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
17712 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17713 S:      Supported
17714 B:      mailto:linux-samsung-soc@vger.kernel.org
17715 F:      Documentation/devicetree/bindings/sound/samsung*
17716 F:      sound/soc/samsung/
17717
17718 SAMSUNG EXYNOS PSEUDO RANDOM NUMBER GENERATOR (RNG) DRIVER
17719 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
17720 L:      linux-crypto@vger.kernel.org
17721 L:      linux-samsung-soc@vger.kernel.org
17722 S:      Maintained
17723 F:      Documentation/devicetree/bindings/rng/samsung,exynos4-rng.yaml
17724 F:      drivers/crypto/exynos-rng.c
17725
17726 SAMSUNG EXYNOS TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
17727 M:      Łukasz Stelmach <l.stelmach@samsung.com>
17728 L:      linux-samsung-soc@vger.kernel.org
17729 S:      Maintained
17730 F:      Documentation/devicetree/bindings/rng/samsung,exynos5250-trng.yaml
17731 F:      drivers/char/hw_random/exynos-trng.c
17732
17733 SAMSUNG FRAMEBUFFER DRIVER
17734 M:      Jingoo Han <jingoohan1@gmail.com>
17735 L:      linux-fbdev@vger.kernel.org
17736 S:      Maintained
17737 F:      drivers/video/fbdev/s3c-fb.c
17738
17739 SAMSUNG INTERCONNECT DRIVERS
17740 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
17741 M:      Artur Świgoń <a.swigon@samsung.com>
17742 L:      linux-pm@vger.kernel.org
17743 L:      linux-samsung-soc@vger.kernel.org
17744 S:      Supported
17745 F:      drivers/interconnect/samsung/
17746
17747 SAMSUNG LAPTOP DRIVER
17748 M:      Corentin Chary <corentin.chary@gmail.com>
17749 L:      platform-driver-x86@vger.kernel.org
17750 S:      Maintained
17751 F:      drivers/platform/x86/samsung-laptop.c
17752
17753 SAMSUNG MULTIFUNCTION PMIC DEVICE DRIVERS
17754 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
17755 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
17756 L:      linux-kernel@vger.kernel.org
17757 L:      linux-samsung-soc@vger.kernel.org
17758 S:      Supported
17759 B:      mailto:linux-samsung-soc@vger.kernel.org
17760 F:      Documentation/devicetree/bindings/clock/samsung,s2mps11.yaml
17761 F:      Documentation/devicetree/bindings/mfd/samsung,s2m*.yaml
17762 F:      Documentation/devicetree/bindings/mfd/samsung,s5m*.yaml
17763 F:      Documentation/devicetree/bindings/regulator/samsung,s2m*.yaml
17764 F:      Documentation/devicetree/bindings/regulator/samsung,s5m*.yaml
17765 F:      drivers/clk/clk-s2mps11.c
17766 F:      drivers/mfd/sec*.c
17767 F:      drivers/regulator/s2m*.c
17768 F:      drivers/regulator/s5m*.c
17769 F:      drivers/rtc/rtc-s5m.c
17770 F:      include/linux/mfd/samsung/
17771
17772 SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
17773 M:      Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
17774 L:      linux-media@vger.kernel.org
17775 L:      linux-samsung-soc@vger.kernel.org
17776 S:      Maintained
17777 F:      drivers/media/platform/samsung/s3c-camif/
17778 F:      include/media/drv-intf/s3c_camif.h
17779
17780 SAMSUNG S3FWRN5 NFC DRIVER
17781 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
17782 M:      Krzysztof Opasiak <k.opasiak@samsung.com>
17783 L:      linux-nfc@lists.01.org (subscribers-only)
17784 S:      Maintained
17785 F:      Documentation/devicetree/bindings/net/nfc/samsung,s3fwrn5.yaml
17786 F:      drivers/nfc/s3fwrn5
17787
17788 SAMSUNG S5C73M3 CAMERA DRIVER
17789 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
17790 M:      Andrzej Hajda <andrzej.hajda@intel.com>
17791 L:      linux-media@vger.kernel.org
17792 S:      Supported
17793 F:      drivers/media/i2c/s5c73m3/*
17794
17795 SAMSUNG S5K5BAF CAMERA DRIVER
17796 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
17797 M:      Andrzej Hajda <andrzej.hajda@intel.com>
17798 L:      linux-media@vger.kernel.org
17799 S:      Supported
17800 F:      drivers/media/i2c/s5k5baf.c
17801
17802 SAMSUNG S5P Security SubSystem (SSS) DRIVER
17803 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
17804 M:      Vladimir Zapolskiy <vz@mleia.com>
17805 L:      linux-crypto@vger.kernel.org
17806 L:      linux-samsung-soc@vger.kernel.org
17807 S:      Maintained
17808 F:      Documentation/devicetree/bindings/crypto/samsung-slimsss.yaml
17809 F:      Documentation/devicetree/bindings/crypto/samsung-sss.yaml
17810 F:      drivers/crypto/s5p-sss.c
17811
17812 SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS
17813 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
17814 L:      linux-media@vger.kernel.org
17815 S:      Supported
17816 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
17817 F:      drivers/media/platform/samsung/exynos4-is/
17818
17819 SAMSUNG SOC CLOCK DRIVERS
17820 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
17821 M:      Tomasz Figa <tomasz.figa@gmail.com>
17822 M:      Chanwoo Choi <cw00.choi@samsung.com>
17823 R:      Alim Akhtar <alim.akhtar@samsung.com>
17824 L:      linux-samsung-soc@vger.kernel.org
17825 S:      Supported
17826 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/snawrocki/clk.git
17827 F:      Documentation/devicetree/bindings/clock/samsung,*.yaml
17828 F:      Documentation/devicetree/bindings/clock/samsung,s3c*
17829 F:      drivers/clk/samsung/
17830 F:      include/dt-bindings/clock/exynos*.h
17831 F:      include/dt-bindings/clock/s3c*.h
17832 F:      include/dt-bindings/clock/s5p*.h
17833 F:      include/dt-bindings/clock/samsung,*.h
17834 F:      include/linux/clk/samsung.h
17835 F:      include/linux/platform_data/clk-s3c2410.h
17836
17837 SAMSUNG SPI DRIVERS
17838 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
17839 M:      Andi Shyti <andi@etezian.org>
17840 L:      linux-spi@vger.kernel.org
17841 L:      linux-samsung-soc@vger.kernel.org
17842 S:      Maintained
17843 F:      Documentation/devicetree/bindings/spi/samsung,spi*.yaml
17844 F:      drivers/spi/spi-s3c*
17845 F:      include/linux/platform_data/spi-s3c64xx.h
17846 F:      include/linux/spi/s3c24xx-fiq.h
17847
17848 SAMSUNG SXGBE DRIVERS
17849 M:      Byungho An <bh74.an@samsung.com>
17850 L:      netdev@vger.kernel.org
17851 S:      Supported
17852 F:      drivers/net/ethernet/samsung/sxgbe/
17853
17854 SAMSUNG THERMAL DRIVER
17855 M:      Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
17856 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
17857 L:      linux-pm@vger.kernel.org
17858 L:      linux-samsung-soc@vger.kernel.org
17859 S:      Maintained
17860 F:      Documentation/devicetree/bindings/thermal/samsung,exynos-thermal.yaml
17861 F:      drivers/thermal/samsung/
17862
17863 SAMSUNG USB2 PHY DRIVER
17864 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
17865 L:      linux-kernel@vger.kernel.org
17866 S:      Supported
17867 F:      Documentation/devicetree/bindings/phy/samsung,usb2-phy.yaml
17868 F:      Documentation/driver-api/phy/samsung-usb2.rst
17869 F:      drivers/phy/samsung/phy-exynos4210-usb2.c
17870 F:      drivers/phy/samsung/phy-exynos4x12-usb2.c
17871 F:      drivers/phy/samsung/phy-exynos5250-usb2.c
17872 F:      drivers/phy/samsung/phy-s5pv210-usb2.c
17873 F:      drivers/phy/samsung/phy-samsung-usb2.c
17874 F:      drivers/phy/samsung/phy-samsung-usb2.h
17875
17876 SANCLOUD BEAGLEBONE ENHANCED DEVICE TREE
17877 M:      Paul Barker <paul.barker@sancloud.com>
17878 R:      Marc Murphy <marc.murphy@sancloud.com>
17879 S:      Supported
17880 F:      arch/arm/boot/dts/am335x-sancloud*
17881
17882 SC1200 WDT DRIVER
17883 M:      Zwane Mwaikambo <zwanem@gmail.com>
17884 S:      Maintained
17885 F:      drivers/watchdog/sc1200wdt.c
17886
17887 SCHEDULER
17888 M:      Ingo Molnar <mingo@redhat.com>
17889 M:      Peter Zijlstra <peterz@infradead.org>
17890 M:      Juri Lelli <juri.lelli@redhat.com> (SCHED_DEADLINE)
17891 M:      Vincent Guittot <vincent.guittot@linaro.org> (SCHED_NORMAL)
17892 R:      Dietmar Eggemann <dietmar.eggemann@arm.com> (SCHED_NORMAL)
17893 R:      Steven Rostedt <rostedt@goodmis.org> (SCHED_FIFO/SCHED_RR)
17894 R:      Ben Segall <bsegall@google.com> (CONFIG_CFS_BANDWIDTH)
17895 R:      Mel Gorman <mgorman@suse.de> (CONFIG_NUMA_BALANCING)
17896 R:      Daniel Bristot de Oliveira <bristot@redhat.com> (SCHED_DEADLINE)
17897 R:      Valentin Schneider <vschneid@redhat.com> (TOPOLOGY)
17898 L:      linux-kernel@vger.kernel.org
17899 S:      Maintained
17900 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
17901 F:      include/linux/preempt.h
17902 F:      include/linux/sched.h
17903 F:      include/linux/wait.h
17904 F:      include/uapi/linux/sched.h
17905 F:      kernel/sched/
17906
17907 SCR24X CHIP CARD INTERFACE DRIVER
17908 M:      Lubomir Rintel <lkundrak@v3.sk>
17909 S:      Supported
17910 F:      drivers/char/pcmcia/scr24x_cs.c
17911
17912 SCSI RDMA PROTOCOL (SRP) INITIATOR
17913 M:      Bart Van Assche <bvanassche@acm.org>
17914 L:      linux-rdma@vger.kernel.org
17915 S:      Supported
17916 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
17917 F:      drivers/infiniband/ulp/srp/
17918 F:      include/scsi/srp.h
17919
17920 SCSI RDMA PROTOCOL (SRP) TARGET
17921 M:      Bart Van Assche <bvanassche@acm.org>
17922 L:      linux-rdma@vger.kernel.org
17923 L:      target-devel@vger.kernel.org
17924 S:      Supported
17925 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
17926 F:      drivers/infiniband/ulp/srpt/
17927
17928 SCSI SG DRIVER
17929 M:      Doug Gilbert <dgilbert@interlog.com>
17930 L:      linux-scsi@vger.kernel.org
17931 S:      Maintained
17932 W:      http://sg.danny.cz/sg
17933 F:      Documentation/scsi/scsi-generic.rst
17934 F:      drivers/scsi/sg.c
17935 F:      include/scsi/sg.h
17936
17937 SCSI SUBSYSTEM
17938 M:      "James E.J. Bottomley" <jejb@linux.ibm.com>
17939 M:      "Martin K. Petersen" <martin.petersen@oracle.com>
17940 L:      linux-scsi@vger.kernel.org
17941 S:      Maintained
17942 Q:      https://patchwork.kernel.org/project/linux-scsi/list/
17943 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git
17944 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
17945 F:      Documentation/devicetree/bindings/scsi/
17946 F:      drivers/scsi/
17947 F:      drivers/ufs/
17948 F:      include/scsi/
17949
17950 SCSI TAPE DRIVER
17951 M:      Kai Mäkisara <Kai.Makisara@kolumbus.fi>
17952 L:      linux-scsi@vger.kernel.org
17953 S:      Maintained
17954 F:      Documentation/scsi/st.rst
17955 F:      drivers/scsi/st.*
17956 F:      drivers/scsi/st_*.h
17957
17958 SCSI TARGET CORE USER DRIVER
17959 M:      Bodo Stroesser <bostroesser@gmail.com>
17960 L:      linux-scsi@vger.kernel.org
17961 L:      target-devel@vger.kernel.org
17962 S:      Supported
17963 F:      Documentation/target/tcmu-design.rst
17964 F:      drivers/target/target_core_user.c
17965 F:      include/uapi/linux/target_core_user.h
17966
17967 SCSI TARGET SUBSYSTEM
17968 M:      "Martin K. Petersen" <martin.petersen@oracle.com>
17969 L:      linux-scsi@vger.kernel.org
17970 L:      target-devel@vger.kernel.org
17971 S:      Supported
17972 W:      http://www.linux-iscsi.org
17973 Q:      https://patchwork.kernel.org/project/target-devel/list/
17974 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
17975 F:      Documentation/target/
17976 F:      drivers/target/
17977 F:      include/target/
17978
17979 SCTP PROTOCOL
17980 M:      Vlad Yasevich <vyasevich@gmail.com>
17981 M:      Neil Horman <nhorman@tuxdriver.com>
17982 M:      Marcelo Ricardo Leitner <marcelo.leitner@gmail.com>
17983 L:      linux-sctp@vger.kernel.org
17984 S:      Maintained
17985 W:      http://lksctp.sourceforge.net
17986 F:      Documentation/networking/sctp.rst
17987 F:      include/linux/sctp.h
17988 F:      include/net/sctp/
17989 F:      include/uapi/linux/sctp.h
17990 F:      net/sctp/
17991
17992 SCx200 CPU SUPPORT
17993 M:      Jim Cromie <jim.cromie@gmail.com>
17994 S:      Odd Fixes
17995 F:      Documentation/i2c/busses/scx200_acb.rst
17996 F:      arch/x86/platform/scx200/
17997 F:      drivers/i2c/busses/scx200*
17998 F:      drivers/mtd/maps/scx200_docflash.c
17999 F:      drivers/watchdog/scx200_wdt.c
18000 F:      include/linux/scx200.h
18001
18002 SCx200 GPIO DRIVER
18003 M:      Jim Cromie <jim.cromie@gmail.com>
18004 S:      Maintained
18005 F:      drivers/char/scx200_gpio.c
18006 F:      include/linux/scx200_gpio.h
18007
18008 SCx200 HRT CLOCKSOURCE DRIVER
18009 M:      Jim Cromie <jim.cromie@gmail.com>
18010 S:      Maintained
18011 F:      drivers/clocksource/scx200_hrt.c
18012
18013 SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
18014 M:      Sascha Sommer <saschasommer@freenet.de>
18015 L:      sdricohcs-devel@lists.sourceforge.net (subscribers-only)
18016 S:      Maintained
18017 F:      drivers/mmc/host/sdricoh_cs.c
18018
18019 SECO BOARDS CEC DRIVER
18020 M:      Ettore Chimenti <ek5.chimenti@gmail.com>
18021 S:      Maintained
18022 F:      drivers/media/cec/platform/seco/seco-cec.c
18023 F:      drivers/media/cec/platform/seco/seco-cec.h
18024
18025 SECURE COMPUTING
18026 M:      Kees Cook <keescook@chromium.org>
18027 R:      Andy Lutomirski <luto@amacapital.net>
18028 R:      Will Drewry <wad@chromium.org>
18029 S:      Supported
18030 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git seccomp
18031 F:      Documentation/userspace-api/seccomp_filter.rst
18032 F:      include/linux/seccomp.h
18033 F:      include/uapi/linux/seccomp.h
18034 F:      kernel/seccomp.c
18035 F:      tools/testing/selftests/kselftest_harness.h
18036 F:      tools/testing/selftests/seccomp/*
18037 K:      \bsecure_computing
18038 K:      \bTIF_SECCOMP\b
18039
18040 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) Broadcom BRCMSTB DRIVER
18041 M:      Al Cooper <alcooperx@gmail.com>
18042 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
18043 L:      linux-mmc@vger.kernel.org
18044 S:      Maintained
18045 F:      drivers/mmc/host/sdhci-brcmstb*
18046
18047 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
18048 M:      Adrian Hunter <adrian.hunter@intel.com>
18049 L:      linux-mmc@vger.kernel.org
18050 S:      Maintained
18051 F:      drivers/mmc/host/sdhci*
18052
18053 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) MICROCHIP DRIVER
18054 M:      Eugen Hristev <eugen.hristev@microchip.com>
18055 L:      linux-mmc@vger.kernel.org
18056 S:      Supported
18057 F:      drivers/mmc/host/sdhci-of-at91.c
18058
18059 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
18060 M:      Ben Dooks <ben-linux@fluff.org>
18061 M:      Jaehoon Chung <jh80.chung@samsung.com>
18062 L:      linux-mmc@vger.kernel.org
18063 S:      Maintained
18064 F:      drivers/mmc/host/sdhci-s3c*
18065
18066 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
18067 M:      Viresh Kumar <vireshk@kernel.org>
18068 L:      linux-mmc@vger.kernel.org
18069 S:      Maintained
18070 F:      drivers/mmc/host/sdhci-spear.c
18071
18072 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) TI OMAP DRIVER
18073 M:      Kishon Vijay Abraham I <kishon@ti.com>
18074 L:      linux-mmc@vger.kernel.org
18075 S:      Maintained
18076 F:      drivers/mmc/host/sdhci-omap.c
18077
18078 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) NXP i.MX DRIVER
18079 M:      Haibo Chen <haibo.chen@nxp.com>
18080 L:      linux-imx@nxp.com
18081 L:      linux-mmc@vger.kernel.org
18082 S:      Maintained
18083 F:      drivers/mmc/host/sdhci-esdhc-imx.c
18084
18085 SECURE ENCRYPTING DEVICE (SED) OPAL DRIVER
18086 M:      Jonathan Derrick <jonathan.derrick@intel.com>
18087 M:      Revanth Rajashekar <revanth.rajashekar@intel.com>
18088 L:      linux-block@vger.kernel.org
18089 S:      Supported
18090 F:      block/opal_proto.h
18091 F:      block/sed*
18092 F:      include/linux/sed*
18093 F:      include/uapi/linux/sed*
18094
18095 SECURITY CONTACT
18096 M:      Security Officers <security@kernel.org>
18097 S:      Supported
18098 F:      Documentation/admin-guide/security-bugs.rst
18099
18100 SECURITY SUBSYSTEM
18101 M:      James Morris <jmorris@namei.org>
18102 M:      "Serge E. Hallyn" <serge@hallyn.com>
18103 L:      linux-security-module@vger.kernel.org (suggested Cc:)
18104 S:      Supported
18105 W:      http://kernsec.org/
18106 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
18107 F:      security/
18108 X:      security/selinux/
18109
18110 SELINUX SECURITY MODULE
18111 M:      Paul Moore <paul@paul-moore.com>
18112 M:      Stephen Smalley <stephen.smalley.work@gmail.com>
18113 M:      Eric Paris <eparis@parisplace.org>
18114 L:      selinux@vger.kernel.org
18115 S:      Supported
18116 W:      https://selinuxproject.org
18117 W:      https://github.com/SELinuxProject
18118 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/selinux.git
18119 F:      Documentation/ABI/obsolete/sysfs-selinux-checkreqprot
18120 F:      Documentation/ABI/obsolete/sysfs-selinux-disable
18121 F:      Documentation/admin-guide/LSM/SELinux.rst
18122 F:      include/trace/events/avc.h
18123 F:      include/uapi/linux/selinux_netlink.h
18124 F:      scripts/selinux/
18125 F:      security/selinux/
18126
18127 SENSABLE PHANTOM
18128 M:      Jiri Slaby <jirislaby@kernel.org>
18129 S:      Maintained
18130 F:      drivers/misc/phantom.c
18131 F:      include/uapi/linux/phantom.h
18132
18133 SENSEAIR SUNRISE 006-0-0007
18134 M:      Jacopo Mondi <jacopo@jmondi.org>
18135 S:      Maintained
18136 F:      Documentation/ABI/testing/sysfs-bus-iio-chemical-sunrise-co2
18137 F:      Documentation/devicetree/bindings/iio/chemical/senseair,sunrise.yaml
18138 F:      drivers/iio/chemical/sunrise_co2.c
18139
18140 SENSIRION SCD30 CARBON DIOXIDE SENSOR DRIVER
18141 M:      Tomasz Duszynski <tomasz.duszynski@octakon.com>
18142 S:      Maintained
18143 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,scd30.yaml
18144 F:      drivers/iio/chemical/scd30.h
18145 F:      drivers/iio/chemical/scd30_core.c
18146 F:      drivers/iio/chemical/scd30_i2c.c
18147 F:      drivers/iio/chemical/scd30_serial.c
18148
18149 SENSIRION SCD4X CARBON DIOXIDE SENSOR DRIVER
18150 M:      Roan van Dijk <roan@protonic.nl>
18151 S:      Maintained
18152 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,scd4x.yaml
18153 F:      drivers/iio/chemical/scd4x.c
18154
18155 SENSIRION SGP40 GAS SENSOR DRIVER
18156 M:      Andreas Klinger <ak@it-klinger.de>
18157 S:      Maintained
18158 F:      Documentation/ABI/testing/sysfs-bus-iio-chemical-sgp40
18159 F:      drivers/iio/chemical/sgp40.c
18160
18161 SENSIRION SPS30 AIR POLLUTION SENSOR DRIVER
18162 M:      Tomasz Duszynski <tduszyns@gmail.com>
18163 S:      Maintained
18164 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,sps30.yaml
18165 F:      drivers/iio/chemical/sps30.c
18166 F:      drivers/iio/chemical/sps30_i2c.c
18167 F:      drivers/iio/chemical/sps30_serial.c
18168
18169 SERIAL DEVICE BUS
18170 M:      Rob Herring <robh@kernel.org>
18171 L:      linux-serial@vger.kernel.org
18172 S:      Maintained
18173 F:      Documentation/devicetree/bindings/serial/serial.yaml
18174 F:      drivers/tty/serdev/
18175 F:      include/linux/serdev.h
18176
18177 SERIAL DRIVERS
18178 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
18179 L:      linux-serial@vger.kernel.org
18180 S:      Maintained
18181 F:      Documentation/devicetree/bindings/serial/
18182 F:      drivers/tty/serial/
18183
18184 SERIAL IR RECEIVER
18185 M:      Sean Young <sean@mess.org>
18186 L:      linux-media@vger.kernel.org
18187 S:      Maintained
18188 F:      drivers/media/rc/serial_ir.c
18189
18190 SERIAL LOW-POWER INTER-CHIP MEDIA BUS (SLIMbus)
18191 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
18192 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18193 S:      Maintained
18194 F:      Documentation/devicetree/bindings/slimbus/
18195 F:      drivers/slimbus/
18196 F:      include/linux/slimbus.h
18197
18198 SFC NETWORK DRIVER
18199 M:      Edward Cree <ecree.xilinx@gmail.com>
18200 M:      Martin Habets <habetsm.xilinx@gmail.com>
18201 L:      netdev@vger.kernel.org
18202 S:      Supported
18203 F:      drivers/net/ethernet/sfc/
18204
18205 SFF/SFP/SFP+ MODULE SUPPORT
18206 M:      Russell King <linux@armlinux.org.uk>
18207 L:      netdev@vger.kernel.org
18208 S:      Maintained
18209 F:      drivers/net/phy/phylink.c
18210 F:      drivers/net/phy/sfp*
18211 F:      include/linux/mdio/mdio-i2c.h
18212 F:      include/linux/phylink.h
18213 F:      include/linux/sfp.h
18214 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)
18215
18216 SGI GRU DRIVER
18217 M:      Dimitri Sivanich <dimitri.sivanich@hpe.com>
18218 S:      Maintained
18219 F:      drivers/misc/sgi-gru/
18220
18221 SGI XP/XPC/XPNET DRIVER
18222 M:      Robin Holt <robinmholt@gmail.com>
18223 M:      Steve Wahl <steve.wahl@hpe.com>
18224 R:      Mike Travis <mike.travis@hpe.com>
18225 S:      Maintained
18226 F:      drivers/misc/sgi-xp/
18227
18228 SHARED MEMORY COMMUNICATIONS (SMC) SOCKETS
18229 M:      Karsten Graul <kgraul@linux.ibm.com>
18230 M:      Wenjia Zhang <wenjia@linux.ibm.com>
18231 L:      linux-s390@vger.kernel.org
18232 S:      Supported
18233 W:      http://www.ibm.com/developerworks/linux/linux390/
18234 F:      net/smc/
18235
18236 SHARP GP2AP002A00F/GP2AP002S00F SENSOR DRIVER
18237 M:      Linus Walleij <linus.walleij@linaro.org>
18238 L:      linux-iio@vger.kernel.org
18239 S:      Maintained
18240 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
18241 F:      Documentation/devicetree/bindings/iio/light/sharp,gp2ap002.yaml
18242 F:      drivers/iio/light/gp2ap002.c
18243
18244 SHARP RJ54N1CB0C SENSOR DRIVER
18245 M:      Jacopo Mondi <jacopo@jmondi.org>
18246 L:      linux-media@vger.kernel.org
18247 S:      Odd fixes
18248 T:      git git://linuxtv.org/media_tree.git
18249 F:      drivers/media/i2c/rj54n1cb0c.c
18250 F:      include/media/i2c/rj54n1cb0c.h
18251
18252 SH_VOU V4L2 OUTPUT DRIVER
18253 L:      linux-media@vger.kernel.org
18254 S:      Orphan
18255 F:      drivers/media/platform/renesas/sh_vou.c
18256 F:      include/media/drv-intf/sh_vou.h
18257
18258 SI2157 MEDIA DRIVER
18259 M:      Antti Palosaari <crope@iki.fi>
18260 L:      linux-media@vger.kernel.org
18261 S:      Maintained
18262 W:      https://linuxtv.org
18263 W:      http://palosaari.fi/linux/
18264 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18265 T:      git git://linuxtv.org/anttip/media_tree.git
18266 F:      drivers/media/tuners/si2157*
18267
18268 SI2165 MEDIA DRIVER
18269 M:      Matthias Schwarzott <zzam@gentoo.org>
18270 L:      linux-media@vger.kernel.org
18271 S:      Maintained
18272 W:      https://linuxtv.org
18273 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18274 F:      drivers/media/dvb-frontends/si2165*
18275
18276 SI2168 MEDIA DRIVER
18277 M:      Antti Palosaari <crope@iki.fi>
18278 L:      linux-media@vger.kernel.org
18279 S:      Maintained
18280 W:      https://linuxtv.org
18281 W:      http://palosaari.fi/linux/
18282 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18283 T:      git git://linuxtv.org/anttip/media_tree.git
18284 F:      drivers/media/dvb-frontends/si2168*
18285
18286 SI470X FM RADIO RECEIVER I2C DRIVER
18287 M:      Hans Verkuil <hverkuil@xs4all.nl>
18288 L:      linux-media@vger.kernel.org
18289 S:      Odd Fixes
18290 W:      https://linuxtv.org
18291 T:      git git://linuxtv.org/media_tree.git
18292 F:      drivers/media/radio/si470x/radio-si470x-i2c.c
18293
18294 SI470X FM RADIO RECEIVER USB DRIVER
18295 M:      Hans Verkuil <hverkuil@xs4all.nl>
18296 L:      linux-media@vger.kernel.org
18297 S:      Maintained
18298 W:      https://linuxtv.org
18299 T:      git git://linuxtv.org/media_tree.git
18300 F:      drivers/media/radio/si470x/radio-si470x-common.c
18301 F:      drivers/media/radio/si470x/radio-si470x-usb.c
18302 F:      drivers/media/radio/si470x/radio-si470x.h
18303
18304 SI4713 FM RADIO TRANSMITTER I2C DRIVER
18305 M:      Eduardo Valentin <edubezval@gmail.com>
18306 L:      linux-media@vger.kernel.org
18307 S:      Odd Fixes
18308 W:      https://linuxtv.org
18309 T:      git git://linuxtv.org/media_tree.git
18310 F:      drivers/media/radio/si4713/si4713.?
18311
18312 SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
18313 M:      Eduardo Valentin <edubezval@gmail.com>
18314 L:      linux-media@vger.kernel.org
18315 S:      Odd Fixes
18316 W:      https://linuxtv.org
18317 T:      git git://linuxtv.org/media_tree.git
18318 F:      drivers/media/radio/si4713/radio-platform-si4713.c
18319
18320 SI4713 FM RADIO TRANSMITTER USB DRIVER
18321 M:      Hans Verkuil <hverkuil@xs4all.nl>
18322 L:      linux-media@vger.kernel.org
18323 S:      Maintained
18324 W:      https://linuxtv.org
18325 T:      git git://linuxtv.org/media_tree.git
18326 F:      drivers/media/radio/si4713/radio-usb-si4713.c
18327
18328 SIANO DVB DRIVER
18329 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
18330 L:      linux-media@vger.kernel.org
18331 S:      Odd fixes
18332 W:      https://linuxtv.org
18333 T:      git git://linuxtv.org/media_tree.git
18334 F:      drivers/media/common/siano/
18335 F:      drivers/media/mmc/siano/
18336 F:      drivers/media/usb/siano/
18337 F:      drivers/media/usb/siano/
18338
18339 SIFIVE DRIVERS
18340 M:      Palmer Dabbelt <palmer@dabbelt.com>
18341 M:      Paul Walmsley <paul.walmsley@sifive.com>
18342 L:      linux-riscv@lists.infradead.org
18343 S:      Supported
18344 T:      git git://github.com/sifive/riscv-linux.git
18345 N:      sifive
18346 K:      [^@]sifive
18347
18348 SIFIVE FU540 SYSTEM-ON-CHIP
18349 M:      Paul Walmsley <paul.walmsley@sifive.com>
18350 M:      Palmer Dabbelt <palmer@dabbelt.com>
18351 L:      linux-riscv@lists.infradead.org
18352 S:      Supported
18353 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pjw/sifive.git
18354 N:      fu540
18355 K:      fu540
18356
18357 SIFIVE PDMA DRIVER
18358 M:      Green Wan <green.wan@sifive.com>
18359 S:      Maintained
18360 F:      Documentation/devicetree/bindings/dma/sifive,fu540-c000-pdma.yaml
18361 F:      drivers/dma/sf-pdma/
18362
18363 SILEAD TOUCHSCREEN DRIVER
18364 M:      Hans de Goede <hdegoede@redhat.com>
18365 L:      linux-input@vger.kernel.org
18366 L:      platform-driver-x86@vger.kernel.org
18367 S:      Maintained
18368 F:      drivers/input/touchscreen/silead.c
18369 F:      drivers/platform/x86/touchscreen_dmi.c
18370
18371 SILICON LABS WIRELESS DRIVERS (for WFxxx series)
18372 M:      Jérôme Pouiller <jerome.pouiller@silabs.com>
18373 S:      Supported
18374 F:      Documentation/devicetree/bindings/net/wireless/silabs,wfx.yaml
18375 F:      drivers/net/wireless/silabs/wfx/
18376
18377 SILICON MOTION SM712 FRAME BUFFER DRIVER
18378 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
18379 M:      Teddy Wang <teddy.wang@siliconmotion.com>
18380 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
18381 L:      linux-fbdev@vger.kernel.org
18382 S:      Maintained
18383 F:      Documentation/fb/sm712fb.rst
18384 F:      drivers/video/fbdev/sm712*
18385
18386 SILVACO I3C DUAL-ROLE MASTER
18387 M:      Miquel Raynal <miquel.raynal@bootlin.com>
18388 M:      Conor Culhane <conor.culhane@silvaco.com>
18389 L:      linux-i3c@lists.infradead.org (moderated for non-subscribers)
18390 S:      Maintained
18391 F:      Documentation/devicetree/bindings/i3c/silvaco,i3c-master.yaml
18392 F:      drivers/i3c/master/svc-i3c-master.c
18393
18394 SIMPLEFB FB DRIVER
18395 M:      Hans de Goede <hdegoede@redhat.com>
18396 L:      linux-fbdev@vger.kernel.org
18397 S:      Maintained
18398 F:      Documentation/devicetree/bindings/display/simple-framebuffer.yaml
18399 F:      drivers/video/fbdev/simplefb.c
18400 F:      include/linux/platform_data/simplefb.h
18401
18402 SIMTEC EB110ATX (Chalice CATS)
18403 M:      Simtec Linux Team <linux@simtec.co.uk>
18404 S:      Supported
18405 W:      http://www.simtec.co.uk/products/EB110ATX/
18406
18407 SIMTEC EB2410ITX (BAST)
18408 M:      Simtec Linux Team <linux@simtec.co.uk>
18409 S:      Supported
18410 W:      http://www.simtec.co.uk/products/EB2410ITX/
18411 F:      arch/arm/mach-s3c/bast-ide.c
18412 F:      arch/arm/mach-s3c/bast-irq.c
18413 F:      arch/arm/mach-s3c/mach-bast.c
18414
18415 SIOX
18416 M:      Thorsten Scherer <t.scherer@eckelmann.de>
18417 M:      Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
18418 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
18419 S:      Supported
18420 F:      drivers/gpio/gpio-siox.c
18421 F:      drivers/siox/*
18422 F:      include/trace/events/siox.h
18423
18424 SIPHASH PRF ROUTINES
18425 M:      Jason A. Donenfeld <Jason@zx2c4.com>
18426 S:      Maintained
18427 F:      include/linux/siphash.h
18428 F:      lib/siphash.c
18429 F:      lib/test_siphash.c
18430
18431 SIS 190 ETHERNET DRIVER
18432 M:      Francois Romieu <romieu@fr.zoreil.com>
18433 L:      netdev@vger.kernel.org
18434 S:      Maintained
18435 F:      drivers/net/ethernet/sis/sis190.c
18436
18437 SIS 900/7016 FAST ETHERNET DRIVER
18438 M:      Daniele Venzano <venza@brownhat.org>
18439 L:      netdev@vger.kernel.org
18440 S:      Maintained
18441 W:      http://www.brownhat.org/sis900.html
18442 F:      drivers/net/ethernet/sis/sis900.*
18443
18444 SIS FRAMEBUFFER DRIVER
18445 M:      Thomas Winischhofer <thomas@winischhofer.net>
18446 S:      Maintained
18447 W:      http://www.winischhofer.net/linuxsisvga.shtml
18448 F:      Documentation/fb/sisfb.rst
18449 F:      drivers/video/fbdev/sis/
18450 F:      include/video/sisfb.h
18451
18452 SIS I2C TOUCHSCREEN DRIVER
18453 M:      Mika Penttilä <mika.penttila@nextfour.com>
18454 L:      linux-input@vger.kernel.org
18455 S:      Maintained
18456 F:      Documentation/devicetree/bindings/input/touchscreen/sis_i2c.txt
18457 F:      drivers/input/touchscreen/sis_i2c.c
18458
18459 SIS USB2VGA DRIVER
18460 M:      Thomas Winischhofer <thomas@winischhofer.net>
18461 S:      Maintained
18462 W:      http://www.winischhofer.at/linuxsisusbvga.shtml
18463 F:      drivers/usb/misc/sisusbvga/
18464
18465 SL28 CPLD MFD DRIVER
18466 M:      Michael Walle <michael@walle.cc>
18467 S:      Maintained
18468 F:      Documentation/devicetree/bindings/gpio/kontron,sl28cpld-gpio.yaml
18469 F:      Documentation/devicetree/bindings/hwmon/kontron,sl28cpld-hwmon.yaml
18470 F:      Documentation/devicetree/bindings/interrupt-controller/kontron,sl28cpld-intc.yaml
18471 F:      Documentation/devicetree/bindings/mfd/kontron,sl28cpld.yaml
18472 F:      Documentation/devicetree/bindings/pwm/kontron,sl28cpld-pwm.yaml
18473 F:      Documentation/devicetree/bindings/watchdog/kontron,sl28cpld-wdt.yaml
18474 F:      drivers/gpio/gpio-sl28cpld.c
18475 F:      drivers/hwmon/sl28cpld-hwmon.c
18476 F:      drivers/irqchip/irq-sl28cpld.c
18477 F:      drivers/pwm/pwm-sl28cpld.c
18478 F:      drivers/watchdog/sl28cpld_wdt.c
18479
18480 SLAB ALLOCATOR
18481 M:      Christoph Lameter <cl@linux.com>
18482 M:      Pekka Enberg <penberg@kernel.org>
18483 M:      David Rientjes <rientjes@google.com>
18484 M:      Joonsoo Kim <iamjoonsoo.kim@lge.com>
18485 M:      Andrew Morton <akpm@linux-foundation.org>
18486 M:      Vlastimil Babka <vbabka@suse.cz>
18487 R:      Roman Gushchin <roman.gushchin@linux.dev>
18488 R:      Hyeonggon Yoo <42.hyeyoo@gmail.com>
18489 L:      linux-mm@kvack.org
18490 S:      Maintained
18491 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vbabka/slab.git
18492 F:      include/linux/sl?b*.h
18493 F:      mm/sl?b*
18494
18495 SLEEPABLE READ-COPY UPDATE (SRCU)
18496 M:      Lai Jiangshan <jiangshanlai@gmail.com>
18497 M:      "Paul E. McKenney" <paulmck@kernel.org>
18498 M:      Josh Triplett <josh@joshtriplett.org>
18499 R:      Steven Rostedt <rostedt@goodmis.org>
18500 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
18501 L:      rcu@vger.kernel.org
18502 S:      Supported
18503 W:      http://www.rdrop.com/users/paulmck/RCU/
18504 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
18505 F:      include/linux/srcu*.h
18506 F:      kernel/rcu/srcu*.c
18507
18508 SMACK SECURITY MODULE
18509 M:      Casey Schaufler <casey@schaufler-ca.com>
18510 L:      linux-security-module@vger.kernel.org
18511 S:      Maintained
18512 W:      http://schaufler-ca.com
18513 T:      git git://github.com/cschaufler/smack-next
18514 F:      Documentation/admin-guide/LSM/Smack.rst
18515 F:      security/smack/
18516
18517 SMC91x ETHERNET DRIVER
18518 M:      Nicolas Pitre <nico@fluxnic.net>
18519 S:      Odd Fixes
18520 F:      drivers/net/ethernet/smsc/smc91x.*
18521
18522 SECURE MONITOR CALL(SMC) CALLING CONVENTION (SMCCC)
18523 M:      Mark Rutland <mark.rutland@arm.com>
18524 M:      Lorenzo Pieralisi <lpieralisi@kernel.org>
18525 M:      Sudeep Holla <sudeep.holla@arm.com>
18526 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
18527 S:      Maintained
18528 F:      drivers/firmware/smccc/
18529 F:      include/linux/arm-smccc.h
18530
18531 SMM665 HARDWARE MONITOR DRIVER
18532 M:      Guenter Roeck <linux@roeck-us.net>
18533 L:      linux-hwmon@vger.kernel.org
18534 S:      Maintained
18535 F:      Documentation/hwmon/smm665.rst
18536 F:      drivers/hwmon/smm665.c
18537
18538 SMSC EMC2103 HARDWARE MONITOR DRIVER
18539 M:      Steve Glendinning <steve.glendinning@shawell.net>
18540 L:      linux-hwmon@vger.kernel.org
18541 S:      Maintained
18542 F:      Documentation/hwmon/emc2103.rst
18543 F:      drivers/hwmon/emc2103.c
18544
18545 SMSC SCH5627 HARDWARE MONITOR DRIVER
18546 M:      Hans de Goede <hdegoede@redhat.com>
18547 L:      linux-hwmon@vger.kernel.org
18548 S:      Supported
18549 F:      Documentation/hwmon/sch5627.rst
18550 F:      drivers/hwmon/sch5627.c
18551
18552 SMSC UFX6000 and UFX7000 USB to VGA DRIVER
18553 M:      Steve Glendinning <steve.glendinning@shawell.net>
18554 L:      linux-fbdev@vger.kernel.org
18555 S:      Maintained
18556 F:      drivers/video/fbdev/smscufx.c
18557
18558 SMSC47B397 HARDWARE MONITOR DRIVER
18559 M:      Jean Delvare <jdelvare@suse.com>
18560 L:      linux-hwmon@vger.kernel.org
18561 S:      Maintained
18562 F:      Documentation/hwmon/smsc47b397.rst
18563 F:      drivers/hwmon/smsc47b397.c
18564
18565 SMSC911x ETHERNET DRIVER
18566 M:      Steve Glendinning <steve.glendinning@shawell.net>
18567 L:      netdev@vger.kernel.org
18568 S:      Maintained
18569 F:      drivers/net/ethernet/smsc/smsc911x.*
18570 F:      include/linux/smsc911x.h
18571
18572 SMSC9420 PCI ETHERNET DRIVER
18573 M:      Steve Glendinning <steve.glendinning@shawell.net>
18574 L:      netdev@vger.kernel.org
18575 S:      Maintained
18576 F:      drivers/net/ethernet/smsc/smsc9420.*
18577
18578 SOCIONEXT (SNI) AVE NETWORK DRIVER
18579 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
18580 L:      netdev@vger.kernel.org
18581 S:      Maintained
18582 F:      Documentation/devicetree/bindings/net/socionext,uniphier-ave4.yaml
18583 F:      drivers/net/ethernet/socionext/sni_ave.c
18584
18585 SOCIONEXT (SNI) NETSEC NETWORK DRIVER
18586 M:      Jassi Brar <jaswinder.singh@linaro.org>
18587 M:      Ilias Apalodimas <ilias.apalodimas@linaro.org>
18588 L:      netdev@vger.kernel.org
18589 S:      Maintained
18590 F:      Documentation/devicetree/bindings/net/socionext-netsec.txt
18591 F:      drivers/net/ethernet/socionext/netsec.c
18592
18593 SOCIONEXT (SNI) Synquacer SPI DRIVER
18594 M:      Masahisa Kojima <masahisa.kojima@linaro.org>
18595 M:      Jassi Brar <jaswinder.singh@linaro.org>
18596 L:      linux-spi@vger.kernel.org
18597 S:      Maintained
18598 F:      Documentation/devicetree/bindings/spi/spi-synquacer.txt
18599 F:      drivers/spi/spi-synquacer.c
18600
18601 SOCIONEXT SYNQUACER I2C DRIVER
18602 M:      Ard Biesheuvel <ardb@kernel.org>
18603 L:      linux-i2c@vger.kernel.org
18604 S:      Maintained
18605 F:      Documentation/devicetree/bindings/i2c/i2c-synquacer.txt
18606 F:      drivers/i2c/busses/i2c-synquacer.c
18607
18608 SOCIONEXT UNIPHIER SOUND DRIVER
18609 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18610 S:      Orphan
18611 F:      sound/soc/uniphier/
18612
18613 SOEKRIS NET48XX LED SUPPORT
18614 M:      Chris Boot <bootc@bootc.net>
18615 S:      Maintained
18616 F:      drivers/leds/leds-net48xx.c
18617
18618 SOFT-IWARP DRIVER (siw)
18619 M:      Bernard Metzler <bmt@zurich.ibm.com>
18620 L:      linux-rdma@vger.kernel.org
18621 S:      Supported
18622 F:      drivers/infiniband/sw/siw/
18623 F:      include/uapi/rdma/siw-abi.h
18624
18625 SOFT-ROCE DRIVER (rxe)
18626 M:      Zhu Yanjun <zyjzyj2000@gmail.com>
18627 L:      linux-rdma@vger.kernel.org
18628 S:      Supported
18629 F:      drivers/infiniband/sw/rxe/
18630 F:      include/uapi/rdma/rdma_user_rxe.h
18631
18632 SOFTLOGIC 6x10 MPEG CODEC
18633 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
18634 M:      Anton Sviridenko <anton@corp.bluecherry.net>
18635 M:      Andrey Utkin <andrey_utkin@fastmail.com>
18636 M:      Ismael Luceno <ismael@iodev.co.uk>
18637 L:      linux-media@vger.kernel.org
18638 S:      Supported
18639 F:      drivers/media/pci/solo6x10/
18640
18641 SOFTWARE DELEGATED EXCEPTION INTERFACE (SDEI)
18642 M:      James Morse <james.morse@arm.com>
18643 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
18644 S:      Maintained
18645 F:      Documentation/devicetree/bindings/arm/firmware/sdei.txt
18646 F:      drivers/firmware/arm_sdei.c
18647 F:      include/linux/arm_sdei.h
18648 F:      include/uapi/linux/arm_sdei.h
18649
18650 SOFTWARE NODES AND DEVICE PROPERTIES
18651 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
18652 R:      Daniel Scally <djrscally@gmail.com>
18653 R:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
18654 R:      Sakari Ailus <sakari.ailus@linux.intel.com>
18655 L:      linux-acpi@vger.kernel.org
18656 S:      Maintained
18657 F:      drivers/base/property.c
18658 F:      drivers/base/swnode.c
18659 F:      include/linux/fwnode.h
18660 F:      include/linux/property.h
18661
18662 SOFTWARE RAID (Multiple Disks) SUPPORT
18663 M:      Song Liu <song@kernel.org>
18664 L:      linux-raid@vger.kernel.org
18665 S:      Supported
18666 Q:      https://patchwork.kernel.org/project/linux-raid/list/
18667 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/song/md.git
18668 F:      drivers/md/Kconfig
18669 F:      drivers/md/Makefile
18670 F:      drivers/md/md*
18671 F:      drivers/md/raid*
18672 F:      include/linux/raid/
18673 F:      include/uapi/linux/raid/
18674
18675 SOLIDRUN CLEARFOG SUPPORT
18676 M:      Russell King <linux@armlinux.org.uk>
18677 S:      Maintained
18678 F:      arch/arm/boot/dts/armada-388-clearfog*
18679 F:      arch/arm/boot/dts/armada-38x-solidrun-*
18680
18681 SOLIDRUN CUBOX-I/HUMMINGBOARD SUPPORT
18682 M:      Russell King <linux@armlinux.org.uk>
18683 S:      Maintained
18684 F:      arch/arm/boot/dts/imx6*-cubox-i*
18685 F:      arch/arm/boot/dts/imx6*-hummingboard*
18686 F:      arch/arm/boot/dts/imx6*-sr-*
18687
18688 SONIC NETWORK DRIVER
18689 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
18690 L:      netdev@vger.kernel.org
18691 S:      Maintained
18692 F:      drivers/net/ethernet/natsemi/sonic.*
18693
18694 SONICS SILICON BACKPLANE DRIVER (SSB)
18695 M:      Michael Buesch <m@bues.ch>
18696 L:      linux-wireless@vger.kernel.org
18697 S:      Maintained
18698 F:      drivers/ssb/
18699 F:      include/linux/ssb/
18700
18701 SONY IMX208 SENSOR DRIVER
18702 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
18703 L:      linux-media@vger.kernel.org
18704 S:      Maintained
18705 T:      git git://linuxtv.org/media_tree.git
18706 F:      drivers/media/i2c/imx208.c
18707
18708 SONY IMX214 SENSOR DRIVER
18709 M:      Ricardo Ribalda <ribalda@kernel.org>
18710 L:      linux-media@vger.kernel.org
18711 S:      Maintained
18712 T:      git git://linuxtv.org/media_tree.git
18713 F:      Documentation/devicetree/bindings/media/i2c/sony,imx214.yaml
18714 F:      drivers/media/i2c/imx214.c
18715
18716 SONY IMX219 SENSOR DRIVER
18717 M:      Dave Stevenson <dave.stevenson@raspberrypi.com>
18718 L:      linux-media@vger.kernel.org
18719 S:      Maintained
18720 T:      git git://linuxtv.org/media_tree.git
18721 F:      Documentation/devicetree/bindings/media/i2c/imx219.yaml
18722 F:      drivers/media/i2c/imx219.c
18723
18724 SONY IMX258 SENSOR DRIVER
18725 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
18726 L:      linux-media@vger.kernel.org
18727 S:      Maintained
18728 T:      git git://linuxtv.org/media_tree.git
18729 F:      Documentation/devicetree/bindings/media/i2c/imx258.yaml
18730 F:      drivers/media/i2c/imx258.c
18731
18732 SONY IMX274 SENSOR DRIVER
18733 M:      Leon Luo <leonl@leopardimaging.com>
18734 L:      linux-media@vger.kernel.org
18735 S:      Maintained
18736 T:      git git://linuxtv.org/media_tree.git
18737 F:      Documentation/devicetree/bindings/media/i2c/sony,imx274.yaml
18738 F:      drivers/media/i2c/imx274.c
18739
18740 SONY IMX290 SENSOR DRIVER
18741 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
18742 L:      linux-media@vger.kernel.org
18743 S:      Maintained
18744 T:      git git://linuxtv.org/media_tree.git
18745 F:      Documentation/devicetree/bindings/media/i2c/imx290.txt
18746 F:      drivers/media/i2c/imx290.c
18747
18748 SONY IMX319 SENSOR DRIVER
18749 M:      Bingbu Cao <bingbu.cao@intel.com>
18750 L:      linux-media@vger.kernel.org
18751 S:      Maintained
18752 T:      git git://linuxtv.org/media_tree.git
18753 F:      drivers/media/i2c/imx319.c
18754
18755 SONY IMX334 SENSOR DRIVER
18756 M:      Paul J. Murphy <paul.j.murphy@intel.com>
18757 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
18758 L:      linux-media@vger.kernel.org
18759 S:      Maintained
18760 T:      git git://linuxtv.org/media_tree.git
18761 F:      Documentation/devicetree/bindings/media/i2c/sony,imx334.yaml
18762 F:      drivers/media/i2c/imx334.c
18763
18764 SONY IMX335 SENSOR DRIVER
18765 M:      Paul J. Murphy <paul.j.murphy@intel.com>
18766 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
18767 L:      linux-media@vger.kernel.org
18768 S:      Maintained
18769 T:      git git://linuxtv.org/media_tree.git
18770 F:      Documentation/devicetree/bindings/media/i2c/sony,imx335.yaml
18771 F:      drivers/media/i2c/imx335.c
18772
18773 SONY IMX355 SENSOR DRIVER
18774 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
18775 L:      linux-media@vger.kernel.org
18776 S:      Maintained
18777 T:      git git://linuxtv.org/media_tree.git
18778 F:      drivers/media/i2c/imx355.c
18779
18780 SONY IMX412 SENSOR DRIVER
18781 M:      Paul J. Murphy <paul.j.murphy@intel.com>
18782 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
18783 L:      linux-media@vger.kernel.org
18784 S:      Maintained
18785 T:      git git://linuxtv.org/media_tree.git
18786 F:      Documentation/devicetree/bindings/media/i2c/sony,imx412.yaml
18787 F:      drivers/media/i2c/imx412.c
18788
18789 SONY MEMORYSTICK SUBSYSTEM
18790 M:      Maxim Levitsky <maximlevitsky@gmail.com>
18791 M:      Alex Dubov <oakad@yahoo.com>
18792 M:      Ulf Hansson <ulf.hansson@linaro.org>
18793 L:      linux-mmc@vger.kernel.org
18794 S:      Maintained
18795 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
18796 F:      drivers/memstick/
18797 F:      include/linux/memstick.h
18798
18799 SONY VAIO CONTROL DEVICE DRIVER
18800 M:      Mattia Dongili <malattia@linux.it>
18801 L:      platform-driver-x86@vger.kernel.org
18802 S:      Maintained
18803 W:      http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
18804 F:      Documentation/admin-guide/laptops/sony-laptop.rst
18805 F:      drivers/char/sonypi.c
18806 F:      drivers/platform/x86/sony-laptop.c
18807 F:      include/linux/sony-laptop.h
18808
18809 SOUND
18810 M:      Jaroslav Kysela <perex@perex.cz>
18811 M:      Takashi Iwai <tiwai@suse.com>
18812 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18813 S:      Maintained
18814 W:      http://www.alsa-project.org/
18815 Q:      http://patchwork.kernel.org/project/alsa-devel/list/
18816 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
18817 F:      Documentation/sound/
18818 F:      include/sound/
18819 F:      include/uapi/sound/
18820 F:      sound/
18821 F:      tools/testing/selftests/alsa
18822
18823 SOUND - COMPRESSED AUDIO
18824 M:      Vinod Koul <vkoul@kernel.org>
18825 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18826 S:      Supported
18827 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
18828 F:      Documentation/sound/designs/compress-offload.rst
18829 F:      include/sound/compress_driver.h
18830 F:      include/uapi/sound/compress_*
18831 F:      sound/core/compress_offload.c
18832 F:      sound/soc/soc-compress.c
18833
18834 SOUND - DMAENGINE HELPERS
18835 M:      Lars-Peter Clausen <lars@metafoo.de>
18836 S:      Supported
18837 F:      include/sound/dmaengine_pcm.h
18838 F:      sound/core/pcm_dmaengine.c
18839 F:      sound/soc/soc-generic-dmaengine-pcm.c
18840
18841 SOUND - ALSA SELFTESTS
18842 M:      Mark Brown <broonie@kernel.org>
18843 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18844 L:      linux-kselftest@vger.kernel.org
18845 S:      Supported
18846 F:      tools/testing/selftests/alsa
18847
18848 SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
18849 M:      Liam Girdwood <lgirdwood@gmail.com>
18850 M:      Mark Brown <broonie@kernel.org>
18851 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18852 S:      Supported
18853 W:      http://alsa-project.org/main/index.php/ASoC
18854 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
18855 F:      Documentation/devicetree/bindings/sound/
18856 F:      Documentation/sound/soc/
18857 F:      include/dt-bindings/sound/
18858 F:      include/sound/soc*
18859 F:      sound/soc/
18860
18861 SOUND - SOUND OPEN FIRMWARE (SOF) DRIVERS
18862 M:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
18863 M:      Liam Girdwood <lgirdwood@gmail.com>
18864 M:      Peter Ujfalusi <peter.ujfalusi@linux.intel.com>
18865 M:      Bard Liao <yung-chuan.liao@linux.intel.com>
18866 M:      Ranjani Sridharan <ranjani.sridharan@linux.intel.com>
18867 R:      Kai Vehmanen <kai.vehmanen@linux.intel.com>
18868 M:      Daniel Baluta <daniel.baluta@nxp.com>
18869 L:      sound-open-firmware@alsa-project.org (moderated for non-subscribers)
18870 S:      Supported
18871 W:      https://github.com/thesofproject/linux/
18872 F:      sound/soc/sof/
18873
18874 SOUNDWIRE SUBSYSTEM
18875 M:      Vinod Koul <vkoul@kernel.org>
18876 M:      Bard Liao <yung-chuan.liao@linux.intel.com>
18877 R:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
18878 R:      Sanyog Kale <sanyog.r.kale@intel.com>
18879 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18880 S:      Supported
18881 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vkoul/soundwire.git
18882 F:      Documentation/driver-api/soundwire/
18883 F:      drivers/soundwire/
18884 F:      include/linux/soundwire/
18885
18886 SP2 MEDIA DRIVER
18887 M:      Olli Salonen <olli.salonen@iki.fi>
18888 L:      linux-media@vger.kernel.org
18889 S:      Maintained
18890 W:      https://linuxtv.org
18891 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18892 F:      drivers/media/dvb-frontends/sp2*
18893
18894 SPARC + UltraSPARC (sparc/sparc64)
18895 M:      "David S. Miller" <davem@davemloft.net>
18896 L:      sparclinux@vger.kernel.org
18897 S:      Maintained
18898 Q:      http://patchwork.ozlabs.org/project/sparclinux/list/
18899 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
18900 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
18901 F:      arch/sparc/
18902 F:      drivers/sbus/
18903
18904 SPARC SERIAL DRIVERS
18905 M:      "David S. Miller" <davem@davemloft.net>
18906 L:      sparclinux@vger.kernel.org
18907 S:      Maintained
18908 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
18909 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
18910 F:      drivers/tty/serial/suncore.c
18911 F:      drivers/tty/serial/sunhv.c
18912 F:      drivers/tty/serial/sunsab.c
18913 F:      drivers/tty/serial/sunsab.h
18914 F:      drivers/tty/serial/sunsu.c
18915 F:      drivers/tty/serial/sunzilog.c
18916 F:      drivers/tty/serial/sunzilog.h
18917 F:      drivers/tty/vcc.c
18918 F:      include/linux/sunserialcore.h
18919
18920 SPARSE CHECKER
18921 M:      "Luc Van Oostenryck" <luc.vanoostenryck@gmail.com>
18922 L:      linux-sparse@vger.kernel.org
18923 S:      Maintained
18924 W:      https://sparse.docs.kernel.org/
18925 T:      git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
18926 Q:      https://patchwork.kernel.org/project/linux-sparse/list/
18927 B:      https://bugzilla.kernel.org/enter_bug.cgi?component=Sparse&product=Tools
18928 F:      include/linux/compiler.h
18929
18930 SPEAKUP CONSOLE SPEECH DRIVER
18931 M:      William Hubbs <w.d.hubbs@gmail.com>
18932 M:      Chris Brannon <chris@the-brannons.com>
18933 M:      Kirk Reiser <kirk@reisers.ca>
18934 M:      Samuel Thibault <samuel.thibault@ens-lyon.org>
18935 L:      speakup@linux-speakup.org
18936 S:      Odd Fixes
18937 W:      http://www.linux-speakup.org/
18938 W:      https://github.com/linux-speakup/speakup
18939 B:      https://github.com/linux-speakup/speakup/issues
18940 F:      drivers/accessibility/speakup/
18941
18942 SPEAR PLATFORM/CLOCK/PINCTRL SUPPORT
18943 M:      Viresh Kumar <vireshk@kernel.org>
18944 M:      Shiraz Hashim <shiraz.linux.kernel@gmail.com>
18945 M:      soc@kernel.org
18946 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
18947 S:      Maintained
18948 W:      http://www.st.com/spear
18949 F:      arch/arm/boot/dts/spear*
18950 F:      arch/arm/mach-spear/
18951 F:      drivers/clk/spear/
18952 F:      drivers/pinctrl/spear/
18953
18954 SPI NOR SUBSYSTEM
18955 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
18956 M:      Pratyush Yadav <p.yadav@ti.com>
18957 R:      Michael Walle <michael@walle.cc>
18958 L:      linux-mtd@lists.infradead.org
18959 S:      Maintained
18960 W:      http://www.linux-mtd.infradead.org/
18961 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
18962 C:      irc://irc.oftc.net/mtd
18963 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git spi-nor/next
18964 F:      Documentation/devicetree/bindings/mtd/jedec,spi-nor.yaml
18965 F:      drivers/mtd/spi-nor/
18966 F:      include/linux/mtd/spi-nor.h
18967
18968 SPI SUBSYSTEM
18969 M:      Mark Brown <broonie@kernel.org>
18970 L:      linux-spi@vger.kernel.org
18971 S:      Maintained
18972 Q:      http://patchwork.kernel.org/project/spi-devel-general/list/
18973 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
18974 F:      Documentation/devicetree/bindings/spi/
18975 F:      Documentation/spi/
18976 F:      drivers/spi/
18977 F:      include/linux/spi/
18978 F:      include/uapi/linux/spi/
18979 F:      tools/spi/
18980
18981 SPIDERNET NETWORK DRIVER for CELL
18982 M:      Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
18983 M:      Geoff Levand <geoff@infradead.org>
18984 L:      netdev@vger.kernel.org
18985 L:      linuxppc-dev@lists.ozlabs.org
18986 S:      Maintained
18987 F:      Documentation/networking/device_drivers/ethernet/toshiba/spider_net.rst
18988 F:      drivers/net/ethernet/toshiba/spider_net*
18989
18990 SPMI SUBSYSTEM
18991 M:      Stephen Boyd <sboyd@kernel.org>
18992 L:      linux-kernel@vger.kernel.org
18993 S:      Maintained
18994 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sboyd/spmi.git
18995 F:      Documentation/devicetree/bindings/spmi/
18996 F:      drivers/spmi/
18997 F:      include/dt-bindings/spmi/spmi.h
18998 F:      include/linux/spmi.h
18999 F:      include/trace/events/spmi.h
19000
19001 SPU FILE SYSTEM
19002 M:      Jeremy Kerr <jk@ozlabs.org>
19003 L:      linuxppc-dev@lists.ozlabs.org
19004 S:      Supported
19005 W:      http://www.ibm.com/developerworks/power/cell/
19006 F:      Documentation/filesystems/spufs/spufs.rst
19007 F:      arch/powerpc/platforms/cell/spufs/
19008
19009 SQUASHFS FILE SYSTEM
19010 M:      Phillip Lougher <phillip@squashfs.org.uk>
19011 L:      squashfs-devel@lists.sourceforge.net (subscribers-only)
19012 S:      Maintained
19013 W:      http://squashfs.org.uk
19014 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pkl/squashfs-next.git
19015 F:      Documentation/filesystems/squashfs.rst
19016 F:      fs/squashfs/
19017
19018 SRM (Alpha) environment access
19019 M:      Jan-Benedict Glaw <jbglaw@lug-owl.de>
19020 S:      Maintained
19021 F:      arch/alpha/kernel/srm_env.c
19022
19023 ST LSM6DSx IMU IIO DRIVER
19024 M:      Lorenzo Bianconi <lorenzo@kernel.org>
19025 L:      linux-iio@vger.kernel.org
19026 S:      Maintained
19027 W:      http://www.st.com/
19028 F:      Documentation/devicetree/bindings/iio/imu/st,lsm6dsx.yaml
19029 F:      drivers/iio/imu/st_lsm6dsx/
19030
19031 ST MIPID02 CSI-2 TO PARALLEL BRIDGE DRIVER
19032 M:      Benjamin Mugnier <benjamin.mugnier@foss.st.com>
19033 M:      Sylvain Petinot <sylvain.petinot@foss.st.com>
19034 L:      linux-media@vger.kernel.org
19035 S:      Maintained
19036 T:      git git://linuxtv.org/media_tree.git
19037 F:      Documentation/devicetree/bindings/media/i2c/st,st-mipid02.txt
19038 F:      drivers/media/i2c/st-mipid02.c
19039
19040 ST STM32 I2C/SMBUS DRIVER
19041 M:      Pierre-Yves MORDRET <pierre-yves.mordret@foss.st.com>
19042 M:      Alain Volmat <alain.volmat@foss.st.com>
19043 L:      linux-i2c@vger.kernel.org
19044 S:      Maintained
19045 F:      drivers/i2c/busses/i2c-stm32*
19046
19047 ST STM32 SPI DRIVER
19048 M:      Alain Volmat <alain.volmat@foss.st.com>
19049 L:      linux-spi@vger.kernel.org
19050 S:      Maintained
19051 F:      drivers/spi/spi-stm32.c
19052
19053 ST STPDDC60 DRIVER
19054 M:      Daniel Nilsson <daniel.nilsson@flex.com>
19055 L:      linux-hwmon@vger.kernel.org
19056 S:      Maintained
19057 F:      Documentation/hwmon/stpddc60.rst
19058 F:      drivers/hwmon/pmbus/stpddc60.c
19059
19060 ST VL53L0X ToF RANGER(I2C) IIO DRIVER
19061 M:      Song Qiang <songqiang1304521@gmail.com>
19062 L:      linux-iio@vger.kernel.org
19063 S:      Maintained
19064 F:      Documentation/devicetree/bindings/iio/proximity/st,vl53l0x.yaml
19065 F:      drivers/iio/proximity/vl53l0x-i2c.c
19066
19067 STABLE BRANCH
19068 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
19069 M:      Sasha Levin <sashal@kernel.org>
19070 L:      stable@vger.kernel.org
19071 S:      Supported
19072 F:      Documentation/process/stable-kernel-rules.rst
19073
19074 STAGING - ATOMISP DRIVER
19075 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
19076 R:      Sakari Ailus <sakari.ailus@linux.intel.com>
19077 L:      linux-media@vger.kernel.org
19078 S:      Maintained
19079 F:      drivers/staging/media/atomisp/
19080
19081 STAGING - FIELDBUS SUBSYSTEM
19082 M:      Sven Van Asbroeck <TheSven73@gmail.com>
19083 S:      Maintained
19084 F:      drivers/staging/fieldbus/*
19085 F:      drivers/staging/fieldbus/Documentation/
19086
19087 STAGING - HMS ANYBUS-S BUS
19088 M:      Sven Van Asbroeck <TheSven73@gmail.com>
19089 S:      Maintained
19090 F:      drivers/staging/fieldbus/anybuss/
19091
19092 STAGING - INDUSTRIAL IO
19093 M:      Jonathan Cameron <jic23@kernel.org>
19094 L:      linux-iio@vger.kernel.org
19095 S:      Odd Fixes
19096 F:      Documentation/devicetree/bindings/staging/iio/
19097 F:      drivers/staging/iio/
19098
19099 STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
19100 M:      Marc Dietrich <marvin24@gmx.de>
19101 L:      ac100@lists.launchpad.net (moderated for non-subscribers)
19102 L:      linux-tegra@vger.kernel.org
19103 S:      Maintained
19104 F:      drivers/staging/nvec/
19105
19106 STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
19107 M:      Jens Frederich <jfrederich@gmail.com>
19108 M:      Jon Nettleton <jon.nettleton@gmail.com>
19109 S:      Maintained
19110 W:      http://wiki.laptop.org/go/DCON
19111 F:      drivers/staging/olpc_dcon/
19112
19113 STAGING - REALTEK RTL8188EU DRIVERS
19114 M:      Larry Finger <Larry.Finger@lwfinger.net>
19115 M:      Phillip Potter <phil@philpotter.co.uk>
19116 S:      Supported
19117 F:      drivers/staging/r8188eu/
19118
19119 STAGING - REALTEK RTL8712U DRIVERS
19120 M:      Larry Finger <Larry.Finger@lwfinger.net>
19121 M:      Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
19122 S:      Odd Fixes
19123 F:      drivers/staging/rtl8712/
19124
19125 STAGING - SEPS525 LCD CONTROLLER DRIVERS
19126 M:      Michael Hennerich <michael.hennerich@analog.com>
19127 L:      linux-fbdev@vger.kernel.org
19128 S:      Supported
19129 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7606.yaml
19130 F:      drivers/staging/fbtft/fb_seps525.c
19131
19132 STAGING - SILICON MOTION SM750 FRAME BUFFER DRIVER
19133 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
19134 M:      Teddy Wang <teddy.wang@siliconmotion.com>
19135 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
19136 L:      linux-fbdev@vger.kernel.org
19137 S:      Maintained
19138 F:      drivers/staging/sm750fb/
19139
19140 STAGING - VIA VT665X DRIVERS
19141 M:      Forest Bond <forest@alittletooquiet.net>
19142 S:      Odd Fixes
19143 F:      drivers/staging/vt665?/
19144
19145 STAGING SUBSYSTEM
19146 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
19147 L:      linux-staging@lists.linux.dev
19148 S:      Supported
19149 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
19150 F:      drivers/staging/
19151
19152 STARFIRE/DURALAN NETWORK DRIVER
19153 M:      Ion Badulescu <ionut@badula.org>
19154 S:      Odd Fixes
19155 F:      drivers/net/ethernet/adaptec/starfire*
19156
19157 STARFIVE JH7100 CLOCK DRIVERS
19158 M:      Emil Renner Berthing <kernel@esmil.dk>
19159 S:      Maintained
19160 F:      Documentation/devicetree/bindings/clock/starfive,jh7100-*.yaml
19161 F:      drivers/clk/starfive/clk-starfive-jh7100*
19162 F:      include/dt-bindings/clock/starfive-jh7100*.h
19163
19164 STARFIVE JH7100 PINCTRL DRIVER
19165 M:      Emil Renner Berthing <kernel@esmil.dk>
19166 L:      linux-gpio@vger.kernel.org
19167 S:      Maintained
19168 F:      Documentation/devicetree/bindings/pinctrl/starfive,jh7100-pinctrl.yaml
19169 F:      drivers/pinctrl/pinctrl-starfive.c
19170 F:      include/dt-bindings/pinctrl/pinctrl-starfive.h
19171
19172 STARFIVE JH7100 RESET CONTROLLER DRIVER
19173 M:      Emil Renner Berthing <kernel@esmil.dk>
19174 S:      Maintained
19175 F:      Documentation/devicetree/bindings/reset/starfive,jh7100-reset.yaml
19176 F:      drivers/reset/reset-starfive-jh7100.c
19177 F:      include/dt-bindings/reset/starfive-jh7100.h
19178
19179 STATIC BRANCH/CALL
19180 M:      Peter Zijlstra <peterz@infradead.org>
19181 M:      Josh Poimboeuf <jpoimboe@kernel.org>
19182 M:      Jason Baron <jbaron@akamai.com>
19183 R:      Steven Rostedt <rostedt@goodmis.org>
19184 R:      Ard Biesheuvel <ardb@kernel.org>
19185 S:      Supported
19186 F:      arch/*/include/asm/jump_label*.h
19187 F:      arch/*/include/asm/static_call*.h
19188 F:      arch/*/kernel/jump_label.c
19189 F:      arch/*/kernel/static_call.c
19190 F:      include/linux/jump_label*.h
19191 F:      include/linux/static_call*.h
19192 F:      kernel/jump_label.c
19193 F:      kernel/static_call.c
19194
19195 STI AUDIO (ASoC) DRIVERS
19196 M:      Arnaud Pouliquen <arnaud.pouliquen@foss.st.com>
19197 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19198 S:      Maintained
19199 F:      Documentation/devicetree/bindings/sound/st,sti-asoc-card.txt
19200 F:      sound/soc/sti/
19201
19202 STI CEC DRIVER
19203 M:      Alain Volmat <alain.volmat@foss.st.com>
19204 S:      Maintained
19205 F:      Documentation/devicetree/bindings/media/stih-cec.txt
19206 F:      drivers/media/cec/platform/sti/
19207
19208 STK1160 USB VIDEO CAPTURE DRIVER
19209 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
19210 L:      linux-media@vger.kernel.org
19211 S:      Maintained
19212 T:      git git://linuxtv.org/media_tree.git
19213 F:      drivers/media/usb/stk1160/
19214
19215 STM32 AUDIO (ASoC) DRIVERS
19216 M:      Olivier Moysan <olivier.moysan@foss.st.com>
19217 M:      Arnaud Pouliquen <arnaud.pouliquen@foss.st.com>
19218 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19219 S:      Maintained
19220 F:      Documentation/devicetree/bindings/iio/adc/st,stm32-dfsdm-adc.yaml
19221 F:      Documentation/devicetree/bindings/sound/st,stm32-*.yaml
19222 F:      sound/soc/stm/
19223
19224 STM32 TIMER/LPTIMER DRIVERS
19225 M:      Fabrice Gasnier <fabrice.gasnier@foss.st.com>
19226 S:      Maintained
19227 F:      Documentation/ABI/testing/*timer-stm32
19228 F:      Documentation/devicetree/bindings/*/*stm32-*timer*
19229 F:      drivers/*/stm32-*timer*
19230 F:      drivers/pwm/pwm-stm32*
19231 F:      include/linux/*/stm32-*tim*
19232
19233 STMMAC ETHERNET DRIVER
19234 M:      Giuseppe Cavallaro <peppe.cavallaro@st.com>
19235 M:      Alexandre Torgue <alexandre.torgue@foss.st.com>
19236 M:      Jose Abreu <joabreu@synopsys.com>
19237 L:      netdev@vger.kernel.org
19238 S:      Supported
19239 W:      http://www.stlinux.com
19240 F:      Documentation/networking/device_drivers/ethernet/stmicro/
19241 F:      drivers/net/ethernet/stmicro/stmmac/
19242
19243 SUN3/3X
19244 M:      Sam Creasey <sammy@sammy.net>
19245 S:      Maintained
19246 W:      http://sammy.net/sun3/
19247 F:      arch/m68k/include/asm/sun3*
19248 F:      arch/m68k/kernel/*sun3*
19249 F:      arch/m68k/sun3*/
19250 F:      drivers/net/ethernet/i825xx/sun3*
19251
19252 SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER
19253 M:      Hans de Goede <hdegoede@redhat.com>
19254 L:      linux-input@vger.kernel.org
19255 S:      Maintained
19256 F:      Documentation/devicetree/bindings/input/allwinner,sun4i-a10-lradc-keys.yaml
19257 F:      drivers/input/keyboard/sun4i-lradc-keys.c
19258
19259 SUNDANCE NETWORK DRIVER
19260 M:      Denis Kirjanov <kda@linux-powerpc.org>
19261 L:      netdev@vger.kernel.org
19262 S:      Maintained
19263 F:      drivers/net/ethernet/dlink/sundance.c
19264
19265 SUNPLUS ETHERNET DRIVER
19266 M:      Wells Lu <wellslutw@gmail.com>
19267 L:      netdev@vger.kernel.org
19268 S:      Maintained
19269 W:      https://sunplus.atlassian.net/wiki/spaces/doc/overview
19270 F:      Documentation/devicetree/bindings/net/sunplus,sp7021-emac.yaml
19271 F:      drivers/net/ethernet/sunplus/
19272
19273 SUNPLUS OCOTP DRIVER
19274 M:      Vincent Shih <vincent.sunplus@gmail.com>
19275 S:      Maintained
19276 F:      Documentation/devicetree/bindings/nvmem/sunplus,sp7021-ocotp.yaml
19277 F:      drivers/nvmem/sunplus-ocotp.c
19278
19279 SUNPLUS PWM DRIVER
19280 M:      Hammer Hsieh <hammerh0314@gmail.com>
19281 S:      Maintained
19282 F:      Documentation/devicetree/bindings/pwm/sunplus,sp7021-pwm.yaml
19283 F:      drivers/pwm/pwm-sunplus.c
19284
19285 SUNPLUS RTC DRIVER
19286 M:      Vincent Shih <vincent.sunplus@gmail.com>
19287 L:      linux-rtc@vger.kernel.org
19288 S:      Maintained
19289 F:      Documentation/devicetree/bindings/rtc/sunplus,sp7021-rtc.yaml
19290 F:      drivers/rtc/rtc-sunplus.c
19291
19292 SUNPLUS SPI CONTROLLER INTERFACE DRIVER
19293 M:      Li-hao Kuo <lhjeff911@gmail.com>
19294 L:      linux-spi@vger.kernel.org
19295 S:      Maintained
19296 F:      Documentation/devicetree/bindings/spi/spi-sunplus-sp7021.yaml
19297 F:      drivers/spi/spi-sunplus-sp7021.c
19298
19299 SUNPLUS UART DRIVER
19300 M:      Hammer Hsieh <hammerh0314@gmail.com>
19301 S:      Maintained
19302 F:      Documentation/devicetree/bindings/serial/sunplus,sp7021-uart.yaml
19303 F:      drivers/tty/serial/sunplus-uart.c
19304
19305 SUNPLUS WATCHDOG DRIVER
19306 M:      Xiantao Hu <xt.hu@cqplus1.com>
19307 L:      linux-watchdog@vger.kernel.org
19308 S:      Maintained
19309 F:      Documentation/devicetree/bindings/watchdog/sunplus,sp7021-wdt.yaml
19310 F:      drivers/watchdog/sunplus_wdt.c
19311
19312 SUPERH
19313 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
19314 M:      Rich Felker <dalias@libc.org>
19315 L:      linux-sh@vger.kernel.org
19316 S:      Maintained
19317 Q:      http://patchwork.kernel.org/project/linux-sh/list/
19318 F:      Documentation/sh/
19319 F:      arch/sh/
19320 F:      drivers/sh/
19321
19322 SUSPEND TO RAM
19323 M:      "Rafael J. Wysocki" <rafael@kernel.org>
19324 M:      Len Brown <len.brown@intel.com>
19325 M:      Pavel Machek <pavel@ucw.cz>
19326 L:      linux-pm@vger.kernel.org
19327 S:      Supported
19328 B:      https://bugzilla.kernel.org
19329 F:      Documentation/power/
19330 F:      arch/x86/kernel/acpi/
19331 F:      drivers/base/power/
19332 F:      include/linux/freezer.h
19333 F:      include/linux/pm.h
19334 F:      include/linux/suspend.h
19335 F:      kernel/power/
19336
19337 SVGA HANDLING
19338 M:      Martin Mares <mj@ucw.cz>
19339 L:      linux-video@atrey.karlin.mff.cuni.cz
19340 S:      Maintained
19341 F:      Documentation/admin-guide/svga.rst
19342 F:      arch/x86/boot/video*
19343
19344 SWIOTLB SUBSYSTEM
19345 M:      Christoph Hellwig <hch@infradead.org>
19346 L:      iommu@lists.linux.dev
19347 S:      Supported
19348 W:      http://git.infradead.org/users/hch/dma-mapping.git
19349 T:      git git://git.infradead.org/users/hch/dma-mapping.git
19350 F:      arch/*/kernel/pci-swiotlb.c
19351 F:      include/linux/swiotlb.h
19352 F:      kernel/dma/swiotlb.c
19353
19354 SWITCHDEV
19355 M:      Jiri Pirko <jiri@resnulli.us>
19356 M:      Ivan Vecera <ivecera@redhat.com>
19357 L:      netdev@vger.kernel.org
19358 S:      Supported
19359 F:      include/net/switchdev.h
19360 F:      net/switchdev/
19361
19362 SY8106A REGULATOR DRIVER
19363 M:      Icenowy Zheng <icenowy@aosc.io>
19364 S:      Maintained
19365 F:      Documentation/devicetree/bindings/regulator/silergy,sy8106a.yaml
19366 F:      drivers/regulator/sy8106a-regulator.c
19367
19368 SYNC FILE FRAMEWORK
19369 M:      Sumit Semwal <sumit.semwal@linaro.org>
19370 R:      Gustavo Padovan <gustavo@padovan.org>
19371 L:      linux-media@vger.kernel.org
19372 L:      dri-devel@lists.freedesktop.org
19373 S:      Maintained
19374 T:      git git://anongit.freedesktop.org/drm/drm-misc
19375 F:      Documentation/driver-api/sync_file.rst
19376 F:      drivers/dma-buf/dma-fence*
19377 F:      drivers/dma-buf/sw_sync.c
19378 F:      drivers/dma-buf/sync_*
19379 F:      include/linux/sync_file.h
19380 F:      include/uapi/linux/sync_file.h
19381
19382 SYNOPSYS ARC ARCHITECTURE
19383 M:      Vineet Gupta <vgupta@kernel.org>
19384 L:      linux-snps-arc@lists.infradead.org
19385 S:      Supported
19386 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc.git
19387 F:      Documentation/arc/
19388 F:      Documentation/devicetree/bindings/arc/*
19389 F:      Documentation/devicetree/bindings/interrupt-controller/snps,arc*
19390 F:      arch/arc/
19391 F:      drivers/clocksource/arc_timer.c
19392 F:      drivers/tty/serial/arc_uart.c
19393
19394 SYNOPSYS ARC HSDK SDP pll clock driver
19395 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
19396 S:      Supported
19397 F:      Documentation/devicetree/bindings/clock/snps,hsdk-pll-clock.txt
19398 F:      drivers/clk/clk-hsdk-pll.c
19399
19400 SYNOPSYS ARC SDP clock driver
19401 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
19402 S:      Supported
19403 F:      Documentation/devicetree/bindings/clock/snps,pll-clock.txt
19404 F:      drivers/clk/axs10x/*
19405
19406 SYNOPSYS ARC SDP platform support
19407 M:      Alexey Brodkin <abrodkin@synopsys.com>
19408 S:      Supported
19409 F:      Documentation/devicetree/bindings/arc/axs10*
19410 F:      arch/arc/boot/dts/ax*
19411 F:      arch/arc/plat-axs10x
19412
19413 SYNOPSYS AXS10x RESET CONTROLLER DRIVER
19414 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
19415 S:      Supported
19416 F:      Documentation/devicetree/bindings/reset/snps,axs10x-reset.yaml
19417 F:      drivers/reset/reset-axs10x.c
19418
19419 SYNOPSYS CREG GPIO DRIVER
19420 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
19421 S:      Maintained
19422 F:      Documentation/devicetree/bindings/gpio/snps,creg-gpio.txt
19423 F:      drivers/gpio/gpio-creg-snps.c
19424
19425 SYNOPSYS DESIGNWARE 8250 UART DRIVER
19426 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
19427 S:      Maintained
19428 F:      drivers/tty/serial/8250/8250_dw.c
19429 F:      drivers/tty/serial/8250/8250_dwlib.*
19430 F:      drivers/tty/serial/8250/8250_lpss.c
19431
19432 SYNOPSYS DESIGNWARE APB GPIO DRIVER
19433 M:      Hoan Tran <hoan@os.amperecomputing.com>
19434 M:      Serge Semin <fancer.lancer@gmail.com>
19435 L:      linux-gpio@vger.kernel.org
19436 S:      Maintained
19437 F:      Documentation/devicetree/bindings/gpio/snps,dw-apb-gpio.yaml
19438 F:      drivers/gpio/gpio-dwapb.c
19439
19440 SYNOPSYS DESIGNWARE APB SSI DRIVER
19441 M:      Serge Semin <fancer.lancer@gmail.com>
19442 L:      linux-spi@vger.kernel.org
19443 S:      Supported
19444 F:      Documentation/devicetree/bindings/spi/snps,dw-apb-ssi.yaml
19445 F:      drivers/spi/spi-dw*
19446
19447 SYNOPSYS DESIGNWARE AXI DMAC DRIVER
19448 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
19449 S:      Maintained
19450 F:      Documentation/devicetree/bindings/dma/snps,dw-axi-dmac.yaml
19451 F:      drivers/dma/dw-axi-dmac/
19452
19453 SYNOPSYS DESIGNWARE DMAC DRIVER
19454 M:      Viresh Kumar <vireshk@kernel.org>
19455 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
19456 S:      Maintained
19457 F:      Documentation/devicetree/bindings/dma/renesas,rzn1-dmamux.yaml
19458 F:      Documentation/devicetree/bindings/dma/snps,dma-spear1340.yaml
19459 F:      drivers/dma/dw/
19460 F:      include/dt-bindings/dma/dw-dmac.h
19461 F:      include/linux/dma/dw.h
19462 F:      include/linux/platform_data/dma-dw.h
19463
19464 SYNOPSYS DESIGNWARE ENTERPRISE ETHERNET DRIVER
19465 M:      Jose Abreu <Jose.Abreu@synopsys.com>
19466 L:      netdev@vger.kernel.org
19467 S:      Supported
19468 F:      drivers/net/ethernet/synopsys/
19469
19470 SYNOPSYS DESIGNWARE ETHERNET XPCS DRIVER
19471 M:      Jose Abreu <Jose.Abreu@synopsys.com>
19472 L:      netdev@vger.kernel.org
19473 S:      Supported
19474 F:      drivers/net/pcs/pcs-xpcs.c
19475 F:      drivers/net/pcs/pcs-xpcs.h
19476 F:      include/linux/pcs/pcs-xpcs.h
19477
19478 SYNOPSYS DESIGNWARE I2C DRIVER
19479 M:      Jarkko Nikula <jarkko.nikula@linux.intel.com>
19480 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
19481 R:      Mika Westerberg <mika.westerberg@linux.intel.com>
19482 R:      Jan Dabros <jsd@semihalf.com>
19483 L:      linux-i2c@vger.kernel.org
19484 S:      Supported
19485 F:      drivers/i2c/busses/i2c-designware-*
19486
19487 SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
19488 M:      Jaehoon Chung <jh80.chung@samsung.com>
19489 L:      linux-mmc@vger.kernel.org
19490 S:      Maintained
19491 F:      drivers/mmc/host/dw_mmc*
19492
19493 SYNOPSYS HSDK RESET CONTROLLER DRIVER
19494 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
19495 S:      Supported
19496 F:      Documentation/devicetree/bindings/reset/snps,hsdk-reset.txt
19497 F:      drivers/reset/reset-hsdk.c
19498 F:      include/dt-bindings/reset/snps,hsdk-reset.h
19499
19500 SYNOPSYS SDHCI COMPLIANT DWC MSHC DRIVER
19501 M:      Prabu Thangamuthu <prabu.t@synopsys.com>
19502 M:      Manjunath M B <manjumb@synopsys.com>
19503 L:      linux-mmc@vger.kernel.org
19504 S:      Maintained
19505 F:      drivers/mmc/host/sdhci-pci-dwc-mshc.c
19506
19507 SYSTEM CONFIGURATION (SYSCON)
19508 M:      Lee Jones <lee.jones@linaro.org>
19509 M:      Arnd Bergmann <arnd@arndb.de>
19510 S:      Supported
19511 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
19512 F:      drivers/mfd/syscon.c
19513
19514 SYSTEM CONTROL & POWER/MANAGEMENT INTERFACE (SCPI/SCMI) Message Protocol drivers
19515 M:      Sudeep Holla <sudeep.holla@arm.com>
19516 R:      Cristian Marussi <cristian.marussi@arm.com>
19517 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
19518 S:      Maintained
19519 F:      Documentation/devicetree/bindings/firmware/arm,sc[mp]i.yaml
19520 F:      drivers/clk/clk-sc[mp]i.c
19521 F:      drivers/cpufreq/sc[mp]i-cpufreq.c
19522 F:      drivers/firmware/arm_scmi/
19523 F:      drivers/firmware/arm_scpi.c
19524 F:      drivers/regulator/scmi-regulator.c
19525 F:      drivers/reset/reset-scmi.c
19526 F:      include/linux/sc[mp]i_protocol.h
19527 F:      include/trace/events/scmi.h
19528 F:      include/uapi/linux/virtio_scmi.h
19529
19530 SYSTEM RESET/SHUTDOWN DRIVERS
19531 M:      Sebastian Reichel <sre@kernel.org>
19532 L:      linux-pm@vger.kernel.org
19533 S:      Maintained
19534 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
19535 F:      Documentation/devicetree/bindings/power/reset/
19536 F:      drivers/power/reset/
19537
19538 SYSTEM TRACE MODULE CLASS
19539 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
19540 S:      Maintained
19541 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ash/stm.git
19542 F:      Documentation/trace/stm.rst
19543 F:      drivers/hwtracing/stm/
19544 F:      include/linux/stm.h
19545 F:      include/uapi/linux/stm.h
19546
19547 SYSTEM76 ACPI DRIVER
19548 M:      Jeremy Soller <jeremy@system76.com>
19549 M:      System76 Product Development <productdev@system76.com>
19550 L:      platform-driver-x86@vger.kernel.org
19551 S:      Maintained
19552 F:      drivers/platform/x86/system76_acpi.c
19553
19554 SYSV FILESYSTEM
19555 M:      Christoph Hellwig <hch@infradead.org>
19556 S:      Maintained
19557 F:      Documentation/filesystems/sysv-fs.rst
19558 F:      fs/sysv/
19559 F:      include/linux/sysv_fs.h
19560
19561 TASKSTATS STATISTICS INTERFACE
19562 M:      Balbir Singh <bsingharora@gmail.com>
19563 S:      Maintained
19564 F:      Documentation/accounting/taskstats*
19565 F:      include/linux/taskstats*
19566 F:      kernel/taskstats.c
19567
19568 TC subsystem
19569 M:      Jamal Hadi Salim <jhs@mojatatu.com>
19570 M:      Cong Wang <xiyou.wangcong@gmail.com>
19571 M:      Jiri Pirko <jiri@resnulli.us>
19572 L:      netdev@vger.kernel.org
19573 S:      Maintained
19574 F:      include/net/pkt_cls.h
19575 F:      include/net/pkt_sched.h
19576 F:      include/net/tc_act/
19577 F:      include/uapi/linux/pkt_cls.h
19578 F:      include/uapi/linux/pkt_sched.h
19579 F:      include/uapi/linux/tc_act/
19580 F:      include/uapi/linux/tc_ematch/
19581 F:      net/sched/
19582 F:      tools/testing/selftests/tc-testing
19583
19584 TC90522 MEDIA DRIVER
19585 M:      Akihiro Tsukada <tskd08@gmail.com>
19586 L:      linux-media@vger.kernel.org
19587 S:      Odd Fixes
19588 F:      drivers/media/dvb-frontends/tc90522*
19589
19590 TCP LOW PRIORITY MODULE
19591 M:      "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
19592 M:      "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
19593 S:      Maintained
19594 W:      http://tcp-lp-mod.sourceforge.net/
19595 F:      net/ipv4/tcp_lp.c
19596
19597 TDA10071 MEDIA DRIVER
19598 M:      Antti Palosaari <crope@iki.fi>
19599 L:      linux-media@vger.kernel.org
19600 S:      Maintained
19601 W:      https://linuxtv.org
19602 W:      http://palosaari.fi/linux/
19603 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19604 T:      git git://linuxtv.org/anttip/media_tree.git
19605 F:      drivers/media/dvb-frontends/tda10071*
19606
19607 TDA18212 MEDIA DRIVER
19608 M:      Antti Palosaari <crope@iki.fi>
19609 L:      linux-media@vger.kernel.org
19610 S:      Maintained
19611 W:      https://linuxtv.org
19612 W:      http://palosaari.fi/linux/
19613 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19614 T:      git git://linuxtv.org/anttip/media_tree.git
19615 F:      drivers/media/tuners/tda18212*
19616
19617 TDA18218 MEDIA DRIVER
19618 M:      Antti Palosaari <crope@iki.fi>
19619 L:      linux-media@vger.kernel.org
19620 S:      Maintained
19621 W:      https://linuxtv.org
19622 W:      http://palosaari.fi/linux/
19623 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19624 T:      git git://linuxtv.org/anttip/media_tree.git
19625 F:      drivers/media/tuners/tda18218*
19626
19627 TDA18250 MEDIA DRIVER
19628 M:      Olli Salonen <olli.salonen@iki.fi>
19629 L:      linux-media@vger.kernel.org
19630 S:      Maintained
19631 W:      https://linuxtv.org
19632 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19633 T:      git git://linuxtv.org/media_tree.git
19634 F:      drivers/media/tuners/tda18250*
19635
19636 TDA18271 MEDIA DRIVER
19637 M:      Michael Krufky <mkrufky@linuxtv.org>
19638 L:      linux-media@vger.kernel.org
19639 S:      Maintained
19640 W:      https://linuxtv.org
19641 W:      http://github.com/mkrufky
19642 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19643 T:      git git://linuxtv.org/mkrufky/tuners.git
19644 F:      drivers/media/tuners/tda18271*
19645
19646 TDA1997x MEDIA DRIVER
19647 M:      Tim Harvey <tharvey@gateworks.com>
19648 L:      linux-media@vger.kernel.org
19649 S:      Maintained
19650 W:      https://linuxtv.org
19651 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19652 F:      drivers/media/i2c/tda1997x.*
19653
19654 TDA827x MEDIA DRIVER
19655 M:      Michael Krufky <mkrufky@linuxtv.org>
19656 L:      linux-media@vger.kernel.org
19657 S:      Maintained
19658 W:      https://linuxtv.org
19659 W:      http://github.com/mkrufky
19660 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19661 T:      git git://linuxtv.org/mkrufky/tuners.git
19662 F:      drivers/media/tuners/tda8290.*
19663
19664 TDA8290 MEDIA DRIVER
19665 M:      Michael Krufky <mkrufky@linuxtv.org>
19666 L:      linux-media@vger.kernel.org
19667 S:      Maintained
19668 W:      https://linuxtv.org
19669 W:      http://github.com/mkrufky
19670 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19671 T:      git git://linuxtv.org/mkrufky/tuners.git
19672 F:      drivers/media/tuners/tda8290.*
19673
19674 TDA9840 MEDIA DRIVER
19675 M:      Hans Verkuil <hverkuil@xs4all.nl>
19676 L:      linux-media@vger.kernel.org
19677 S:      Maintained
19678 W:      https://linuxtv.org
19679 T:      git git://linuxtv.org/media_tree.git
19680 F:      drivers/media/i2c/tda9840*
19681
19682 TEA5761 TUNER DRIVER
19683 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
19684 L:      linux-media@vger.kernel.org
19685 S:      Odd fixes
19686 W:      https://linuxtv.org
19687 T:      git git://linuxtv.org/media_tree.git
19688 F:      drivers/media/tuners/tea5761.*
19689
19690 TEA5767 TUNER DRIVER
19691 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
19692 L:      linux-media@vger.kernel.org
19693 S:      Maintained
19694 W:      https://linuxtv.org
19695 T:      git git://linuxtv.org/media_tree.git
19696 F:      drivers/media/tuners/tea5767.*
19697
19698 TEA6415C MEDIA DRIVER
19699 M:      Hans Verkuil <hverkuil@xs4all.nl>
19700 L:      linux-media@vger.kernel.org
19701 S:      Maintained
19702 W:      https://linuxtv.org
19703 T:      git git://linuxtv.org/media_tree.git
19704 F:      drivers/media/i2c/tea6415c*
19705
19706 TEA6420 MEDIA DRIVER
19707 M:      Hans Verkuil <hverkuil@xs4all.nl>
19708 L:      linux-media@vger.kernel.org
19709 S:      Maintained
19710 W:      https://linuxtv.org
19711 T:      git git://linuxtv.org/media_tree.git
19712 F:      drivers/media/i2c/tea6420*
19713
19714 TEAM DRIVER
19715 M:      Jiri Pirko <jiri@resnulli.us>
19716 L:      netdev@vger.kernel.org
19717 S:      Supported
19718 F:      drivers/net/team/
19719 F:      include/linux/if_team.h
19720 F:      include/uapi/linux/if_team.h
19721
19722 TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
19723 M:      "Savoir-faire Linux Inc." <kernel@savoirfairelinux.com>
19724 S:      Maintained
19725 F:      arch/x86/platform/ts5500/
19726
19727 TECHNOTREND USB IR RECEIVER
19728 M:      Sean Young <sean@mess.org>
19729 L:      linux-media@vger.kernel.org
19730 S:      Maintained
19731 F:      drivers/media/rc/ttusbir.c
19732
19733 TECHWELL TW9910 VIDEO DECODER
19734 L:      linux-media@vger.kernel.org
19735 S:      Orphan
19736 F:      drivers/media/i2c/tw9910.c
19737 F:      include/media/i2c/tw9910.h
19738
19739 TEE SUBSYSTEM
19740 M:      Jens Wiklander <jens.wiklander@linaro.org>
19741 R:      Sumit Garg <sumit.garg@linaro.org>
19742 L:      op-tee@lists.trustedfirmware.org
19743 S:      Maintained
19744 F:      Documentation/staging/tee.rst
19745 F:      drivers/tee/
19746 F:      include/linux/tee_drv.h
19747 F:      include/uapi/linux/tee.h
19748
19749 TEGRA ARCHITECTURE SUPPORT
19750 M:      Thierry Reding <thierry.reding@gmail.com>
19751 M:      Jonathan Hunter <jonathanh@nvidia.com>
19752 L:      linux-tegra@vger.kernel.org
19753 S:      Supported
19754 Q:      http://patchwork.ozlabs.org/project/linux-tegra/list/
19755 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git
19756 N:      [^a-z]tegra
19757
19758 TEGRA CLOCK DRIVER
19759 M:      Peter De Schrijver <pdeschrijver@nvidia.com>
19760 M:      Prashant Gaikwad <pgaikwad@nvidia.com>
19761 S:      Supported
19762 F:      drivers/clk/tegra/
19763
19764 TEGRA DMA DRIVERS
19765 M:      Laxman Dewangan <ldewangan@nvidia.com>
19766 M:      Jon Hunter <jonathanh@nvidia.com>
19767 S:      Supported
19768 F:      drivers/dma/tegra*
19769
19770 TEGRA I2C DRIVER
19771 M:      Laxman Dewangan <ldewangan@nvidia.com>
19772 R:      Dmitry Osipenko <digetx@gmail.com>
19773 S:      Supported
19774 F:      drivers/i2c/busses/i2c-tegra.c
19775
19776 TEGRA IOMMU DRIVERS
19777 M:      Thierry Reding <thierry.reding@gmail.com>
19778 R:      Krishna Reddy <vdumpa@nvidia.com>
19779 L:      linux-tegra@vger.kernel.org
19780 S:      Supported
19781 F:      drivers/iommu/arm/arm-smmu/arm-smmu-nvidia.c
19782 F:      drivers/iommu/tegra*
19783
19784 TEGRA KBC DRIVER
19785 M:      Laxman Dewangan <ldewangan@nvidia.com>
19786 S:      Supported
19787 F:      drivers/input/keyboard/tegra-kbc.c
19788
19789 TEGRA NAND DRIVER
19790 M:      Stefan Agner <stefan@agner.ch>
19791 M:      Lucas Stach <dev@lynxeye.de>
19792 S:      Maintained
19793 F:      Documentation/devicetree/bindings/mtd/nvidia-tegra20-nand.txt
19794 F:      drivers/mtd/nand/raw/tegra_nand.c
19795
19796 TEGRA PWM DRIVER
19797 M:      Thierry Reding <thierry.reding@gmail.com>
19798 S:      Supported
19799 F:      drivers/pwm/pwm-tegra.c
19800
19801 TEGRA SERIAL DRIVER
19802 M:      Laxman Dewangan <ldewangan@nvidia.com>
19803 S:      Supported
19804 F:      drivers/tty/serial/serial-tegra.c
19805
19806 TEGRA SPI DRIVER
19807 M:      Laxman Dewangan <ldewangan@nvidia.com>
19808 S:      Supported
19809 F:      drivers/spi/spi-tegra*
19810
19811 TEGRA QUAD SPI DRIVER
19812 M:      Thierry Reding <thierry.reding@gmail.com>
19813 M:      Jonathan Hunter <jonathanh@nvidia.com>
19814 M:      Sowjanya Komatineni <skomatineni@nvidia.com>
19815 L:      linux-tegra@vger.kernel.org
19816 S:      Maintained
19817 F:      drivers/spi/spi-tegra210-quad.c
19818
19819 TEGRA VIDEO DRIVER
19820 M:      Thierry Reding <thierry.reding@gmail.com>
19821 M:      Jonathan Hunter <jonathanh@nvidia.com>
19822 M:      Sowjanya Komatineni <skomatineni@nvidia.com>
19823 L:      linux-media@vger.kernel.org
19824 L:      linux-tegra@vger.kernel.org
19825 S:      Maintained
19826 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
19827 F:      drivers/staging/media/tegra-video/
19828
19829 TEGRA XUSB PADCTL DRIVER
19830 M:      JC Kuo <jckuo@nvidia.com>
19831 S:      Supported
19832 F:      drivers/phy/tegra/xusb*
19833
19834 TEHUTI ETHERNET DRIVER
19835 M:      Andy Gospodarek <andy@greyhouse.net>
19836 L:      netdev@vger.kernel.org
19837 S:      Supported
19838 F:      drivers/net/ethernet/tehuti/*
19839
19840 TELECOM CLOCK DRIVER FOR MCPL0010
19841 M:      Mark Gross <markgross@kernel.org>
19842 S:      Supported
19843 F:      drivers/char/tlclk.c
19844
19845 TEMPO SEMICONDUCTOR DRIVERS
19846 M:      Steven Eckhoff <steven.eckhoff.opensource@gmail.com>
19847 S:      Maintained
19848 F:      Documentation/devicetree/bindings/sound/tscs*.txt
19849 F:      sound/soc/codecs/tscs*.c
19850 F:      sound/soc/codecs/tscs*.h
19851
19852 TENSILICA XTENSA PORT (xtensa)
19853 M:      Chris Zankel <chris@zankel.net>
19854 M:      Max Filippov <jcmvbkbc@gmail.com>
19855 L:      linux-xtensa@linux-xtensa.org
19856 S:      Maintained
19857 T:      git git://github.com/czankel/xtensa-linux.git
19858 F:      arch/xtensa/
19859 F:      drivers/irqchip/irq-xtensa-*
19860
19861 TEXAS INSTRUMENTS ASoC DRIVERS
19862 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
19863 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19864 S:      Maintained
19865 F:      Documentation/devicetree/bindings/sound/davinci-mcasp-audio.yaml
19866 F:      sound/soc/ti/
19867
19868 TEXAS INSTRUMENTS' DAC7612 DAC DRIVER
19869 M:      Ricardo Ribalda <ribalda@kernel.org>
19870 L:      linux-iio@vger.kernel.org
19871 S:      Supported
19872 F:      Documentation/devicetree/bindings/iio/dac/ti,dac7612.yaml
19873 F:      drivers/iio/dac/ti-dac7612.c
19874
19875 TEXAS INSTRUMENTS DMA DRIVERS
19876 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
19877 L:      dmaengine@vger.kernel.org
19878 S:      Maintained
19879 F:      Documentation/devicetree/bindings/dma/ti-dma-crossbar.txt
19880 F:      Documentation/devicetree/bindings/dma/ti-edma.txt
19881 F:      Documentation/devicetree/bindings/dma/ti/
19882 F:      drivers/dma/ti/
19883 X:      drivers/dma/ti/cppi41.c
19884 F:      include/linux/dma/k3-udma-glue.h
19885 F:      include/linux/dma/ti-cppi5.h
19886 F:      include/linux/dma/k3-psil.h
19887
19888 TEXAS INSTRUMENTS' SYSTEM CONTROL INTERFACE (TISCI) PROTOCOL DRIVER
19889 M:      Nishanth Menon <nm@ti.com>
19890 M:      Tero Kristo <kristo@kernel.org>
19891 M:      Santosh Shilimkar <ssantosh@kernel.org>
19892 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
19893 S:      Maintained
19894 F:      Documentation/devicetree/bindings/arm/keystone/ti,k3-sci-common.yaml
19895 F:      Documentation/devicetree/bindings/arm/keystone/ti,sci.yaml
19896 F:      Documentation/devicetree/bindings/clock/ti,sci-clk.yaml
19897 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-inta.yaml
19898 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-intr.yaml
19899 F:      Documentation/devicetree/bindings/reset/ti,sci-reset.yaml
19900 F:      Documentation/devicetree/bindings/soc/ti/sci-pm-domain.yaml
19901 F:      drivers/clk/keystone/sci-clk.c
19902 F:      drivers/firmware/ti_sci*
19903 F:      drivers/irqchip/irq-ti-sci-inta.c
19904 F:      drivers/irqchip/irq-ti-sci-intr.c
19905 F:      drivers/reset/reset-ti-sci.c
19906 F:      drivers/soc/ti/ti_sci_inta_msi.c
19907 F:      drivers/soc/ti/ti_sci_pm_domains.c
19908 F:      include/dt-bindings/soc/ti,sci_pm_domain.h
19909 F:      include/linux/soc/ti/ti_sci_inta_msi.h
19910 F:      include/linux/soc/ti/ti_sci_protocol.h
19911
19912 TEXAS INSTRUMENTS TPS23861 PoE PSE DRIVER
19913 M:      Robert Marko <robert.marko@sartura.hr>
19914 M:      Luka Perkov <luka.perkov@sartura.hr>
19915 L:      linux-hwmon@vger.kernel.org
19916 S:      Maintained
19917 F:      Documentation/devicetree/bindings/hwmon/ti,tps23861.yaml
19918 F:      Documentation/hwmon/tps23861.rst
19919 F:      drivers/hwmon/tps23861.c
19920
19921 TEXAS INSTRUMENTS' TMP117 TEMPERATURE SENSOR DRIVER
19922 M:      Puranjay Mohan <puranjay12@gmail.com>
19923 L:      linux-iio@vger.kernel.org
19924 S:      Supported
19925 F:      Documentation/devicetree/bindings/iio/temperature/ti,tmp117.yaml
19926 F:      drivers/iio/temperature/tmp117.c
19927
19928 THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER
19929 M:      Hans Verkuil <hverkuil@xs4all.nl>
19930 L:      linux-media@vger.kernel.org
19931 S:      Maintained
19932 W:      https://linuxtv.org
19933 T:      git git://linuxtv.org/media_tree.git
19934 F:      drivers/media/radio/radio-raremono.c
19935
19936 THERMAL
19937 M:      Rafael J. Wysocki <rafael@kernel.org>
19938 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
19939 R:      Amit Kucheria <amitk@kernel.org>
19940 R:      Zhang Rui <rui.zhang@intel.com>
19941 L:      linux-pm@vger.kernel.org
19942 S:      Supported
19943 Q:      https://patchwork.kernel.org/project/linux-pm/list/
19944 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git thermal
19945 F:      Documentation/ABI/testing/sysfs-class-thermal
19946 F:      Documentation/devicetree/bindings/thermal/
19947 F:      Documentation/driver-api/thermal/
19948 F:      drivers/thermal/
19949 F:      include/dt-bindings/thermal/
19950 F:      include/linux/cpu_cooling.h
19951 F:      include/linux/thermal.h
19952 F:      include/uapi/linux/thermal.h
19953 F:      tools/lib/thermal/
19954 F:      tools/thermal/
19955
19956 THERMAL DRIVER FOR AMLOGIC SOCS
19957 M:      Guillaume La Roque <glaroque@baylibre.com>
19958 L:      linux-pm@vger.kernel.org
19959 L:      linux-amlogic@lists.infradead.org
19960 S:      Supported
19961 W:      http://linux-meson.com/
19962 F:      Documentation/devicetree/bindings/thermal/amlogic,thermal.yaml
19963 F:      drivers/thermal/amlogic_thermal.c
19964
19965 THERMAL/CPU_COOLING
19966 M:      Amit Daniel Kachhap <amit.kachhap@gmail.com>
19967 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
19968 M:      Viresh Kumar <viresh.kumar@linaro.org>
19969 R:      Lukasz Luba <lukasz.luba@arm.com>
19970 L:      linux-pm@vger.kernel.org
19971 S:      Supported
19972 F:      Documentation/driver-api/thermal/cpu-cooling-api.rst
19973 F:      Documentation/driver-api/thermal/cpu-idle-cooling.rst
19974 F:      drivers/thermal/cpufreq_cooling.c
19975 F:      drivers/thermal/cpuidle_cooling.c
19976 F:      include/linux/cpu_cooling.h
19977
19978 THERMAL/POWER_ALLOCATOR
19979 M:      Lukasz Luba <lukasz.luba@arm.com>
19980 L:      linux-pm@vger.kernel.org
19981 S:      Maintained
19982 F:      Documentation/driver-api/thermal/power_allocator.rst
19983 F:      drivers/thermal/gov_power_allocator.c
19984 F:      include/trace/events/thermal_power_allocator.h
19985
19986 THINKPAD ACPI EXTRAS DRIVER
19987 M:      Henrique de Moraes Holschuh <hmh@hmh.eng.br>
19988 L:      ibm-acpi-devel@lists.sourceforge.net
19989 L:      platform-driver-x86@vger.kernel.org
19990 S:      Maintained
19991 W:      http://ibm-acpi.sourceforge.net
19992 W:      http://thinkwiki.org/wiki/Ibm-acpi
19993 T:      git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
19994 F:      drivers/platform/x86/thinkpad_acpi.c
19995
19996 THINKPAD LMI DRIVER
19997 M:      Mark Pearson <markpearson@lenovo.com>
19998 L:      platform-driver-x86@vger.kernel.org
19999 S:      Maintained
20000 F:      Documentation/ABI/testing/sysfs-class-firmware-attributes
20001 F:      drivers/platform/x86/think-lmi.?
20002
20003 THUNDERBOLT DMA TRAFFIC TEST DRIVER
20004 M:      Isaac Hazan <isaac.hazan@intel.com>
20005 L:      linux-usb@vger.kernel.org
20006 S:      Maintained
20007 F:      drivers/thunderbolt/dma_test.c
20008
20009 THUNDERBOLT DRIVER
20010 M:      Andreas Noever <andreas.noever@gmail.com>
20011 M:      Michael Jamet <michael.jamet@intel.com>
20012 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
20013 M:      Yehezkel Bernat <YehezkelShB@gmail.com>
20014 L:      linux-usb@vger.kernel.org
20015 S:      Maintained
20016 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/westeri/thunderbolt.git
20017 F:      Documentation/admin-guide/thunderbolt.rst
20018 F:      drivers/thunderbolt/
20019 F:      include/linux/thunderbolt.h
20020
20021 THUNDERBOLT NETWORK DRIVER
20022 M:      Michael Jamet <michael.jamet@intel.com>
20023 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
20024 M:      Yehezkel Bernat <YehezkelShB@gmail.com>
20025 L:      netdev@vger.kernel.org
20026 S:      Maintained
20027 F:      drivers/net/thunderbolt.c
20028
20029 THUNDERX GPIO DRIVER
20030 M:      Robert Richter <rric@kernel.org>
20031 S:      Odd Fixes
20032 F:      drivers/gpio/gpio-thunderx.c
20033
20034 TI ADS131E0X ADC SERIES DRIVER
20035 M:      Tomislav Denis <tomislav.denis@avl.com>
20036 L:      linux-iio@vger.kernel.org
20037 S:      Maintained
20038 F:      Documentation/devicetree/bindings/iio/adc/ti,ads131e08.yaml
20039 F:      drivers/iio/adc/ti-ads131e08.c
20040
20041 TI AM437X VPFE DRIVER
20042 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
20043 L:      linux-media@vger.kernel.org
20044 S:      Maintained
20045 W:      https://linuxtv.org
20046 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
20047 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
20048 F:      drivers/media/platform/ti/am437x/
20049
20050 TI BANDGAP AND THERMAL DRIVER
20051 M:      Eduardo Valentin <edubezval@gmail.com>
20052 M:      Keerthy <j-keerthy@ti.com>
20053 L:      linux-pm@vger.kernel.org
20054 L:      linux-omap@vger.kernel.org
20055 S:      Maintained
20056 F:      drivers/thermal/ti-soc-thermal/
20057
20058 TI BQ27XXX POWER SUPPLY DRIVER
20059 F:      drivers/power/supply/bq27xxx_battery.c
20060 F:      drivers/power/supply/bq27xxx_battery_i2c.c
20061 F:      include/linux/power/bq27xxx_battery.h
20062
20063 TI CDCE706 CLOCK DRIVER
20064 M:      Max Filippov <jcmvbkbc@gmail.com>
20065 S:      Maintained
20066 F:      drivers/clk/clk-cdce706.c
20067
20068 TI CLOCK DRIVER
20069 M:      Tero Kristo <kristo@kernel.org>
20070 L:      linux-omap@vger.kernel.org
20071 S:      Odd Fixes
20072 F:      drivers/clk/ti/
20073 F:      include/linux/clk/ti.h
20074
20075 TI DAVINCI MACHINE SUPPORT
20076 M:      Sekhar Nori <nsekhar@ti.com>
20077 R:      Bartosz Golaszewski <brgl@bgdev.pl>
20078 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
20079 S:      Supported
20080 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nsekhar/linux-davinci.git
20081 F:      Documentation/devicetree/bindings/i2c/i2c-davinci.txt
20082 F:      arch/arm/boot/dts/da850*
20083 F:      arch/arm/mach-davinci/
20084 F:      drivers/i2c/busses/i2c-davinci.c
20085
20086 TI DAVINCI SERIES CLOCK DRIVER
20087 M:      David Lechner <david@lechnology.com>
20088 R:      Sekhar Nori <nsekhar@ti.com>
20089 S:      Maintained
20090 F:      Documentation/devicetree/bindings/clock/ti/davinci/
20091 F:      drivers/clk/davinci/
20092
20093 TI DAVINCI SERIES GPIO DRIVER
20094 M:      Keerthy <j-keerthy@ti.com>
20095 L:      linux-gpio@vger.kernel.org
20096 S:      Maintained
20097 F:      Documentation/devicetree/bindings/gpio/gpio-davinci.yaml
20098 F:      drivers/gpio/gpio-davinci.c
20099
20100 TI DAVINCI SERIES MEDIA DRIVER
20101 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
20102 L:      linux-media@vger.kernel.org
20103 S:      Maintained
20104 W:      https://linuxtv.org
20105 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
20106 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
20107 F:      drivers/media/platform/ti/davinci/
20108 F:      include/media/davinci/
20109
20110 TI ENHANCED QUADRATURE ENCODER PULSE (eQEP) DRIVER
20111 R:      David Lechner <david@lechnology.com>
20112 L:      linux-iio@vger.kernel.org
20113 F:      Documentation/devicetree/bindings/counter/ti-eqep.yaml
20114 F:      drivers/counter/ti-eqep.c
20115
20116 TI ETHERNET SWITCH DRIVER (CPSW)
20117 R:      Grygorii Strashko <grygorii.strashko@ti.com>
20118 L:      linux-omap@vger.kernel.org
20119 L:      netdev@vger.kernel.org
20120 S:      Maintained
20121 F:      drivers/net/ethernet/ti/cpsw*
20122 F:      drivers/net/ethernet/ti/davinci*
20123
20124 TI FLASH MEDIA MEMORYSTICK/MMC DRIVERS
20125 M:      Alex Dubov <oakad@yahoo.com>
20126 S:      Maintained
20127 W:      http://tifmxx.berlios.de/
20128 F:      drivers/memstick/host/tifm_ms.c
20129 F:      drivers/misc/tifm*
20130 F:      drivers/mmc/host/tifm_sd.c
20131 F:      include/linux/tifm.h
20132
20133 TI KEYSTONE MULTICORE NAVIGATOR DRIVERS
20134 M:      Nishanth Menon <nm@ti.com>
20135 M:      Santosh Shilimkar <ssantosh@kernel.org>
20136 L:      linux-kernel@vger.kernel.org
20137 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
20138 S:      Maintained
20139 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ti/linux.git
20140 F:      drivers/soc/ti/*
20141
20142 TI LM49xxx FAMILY ASoC CODEC DRIVERS
20143 M:      M R Swami Reddy <mr.swami.reddy@ti.com>
20144 M:      Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
20145 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
20146 S:      Maintained
20147 F:      sound/soc/codecs/isabelle*
20148 F:      sound/soc/codecs/lm49453*
20149
20150 TI PCM3060 ASoC CODEC DRIVER
20151 M:      Kirill Marinushkin <kmarinushkin@birdec.com>
20152 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
20153 S:      Maintained
20154 F:      Documentation/devicetree/bindings/sound/pcm3060.txt
20155 F:      sound/soc/codecs/pcm3060*
20156
20157 TI TAS571X FAMILY ASoC CODEC DRIVER
20158 M:      Kevin Cernekee <cernekee@chromium.org>
20159 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
20160 S:      Odd Fixes
20161 F:      sound/soc/codecs/tas571x*
20162
20163 TI TRF7970A NFC DRIVER
20164 M:      Mark Greer <mgreer@animalcreek.com>
20165 L:      linux-wireless@vger.kernel.org
20166 L:      linux-nfc@lists.01.org (subscribers-only)
20167 S:      Supported
20168 F:      Documentation/devicetree/bindings/net/nfc/ti,trf7970a.yaml
20169 F:      drivers/nfc/trf7970a.c
20170
20171 TI TSC2046 ADC DRIVER
20172 M:      Oleksij Rempel <o.rempel@pengutronix.de>
20173 R:      kernel@pengutronix.de
20174 L:      linux-iio@vger.kernel.org
20175 S:      Maintained
20176 F:      Documentation/devicetree/bindings/iio/adc/ti,tsc2046.yaml
20177 F:      drivers/iio/adc/ti-tsc2046.c
20178
20179 TI TWL4030 SERIES SOC CODEC DRIVER
20180 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
20181 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
20182 S:      Maintained
20183 F:      sound/soc/codecs/twl4030*
20184
20185 TI VPE/CAL DRIVERS
20186 M:      Benoit Parrot <bparrot@ti.com>
20187 L:      linux-media@vger.kernel.org
20188 S:      Maintained
20189 W:      http://linuxtv.org/
20190 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
20191 F:      Documentation/devicetree/bindings/media/ti,cal.yaml
20192 F:      Documentation/devicetree/bindings/media/ti,vpe.yaml
20193 F:      drivers/media/platform/ti/cal/
20194 F:      drivers/media/platform/ti/vpe/
20195
20196 TI WILINK WIRELESS DRIVERS
20197 L:      linux-wireless@vger.kernel.org
20198 S:      Orphan
20199 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wl12xx
20200 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wl1251
20201 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
20202 F:      drivers/net/wireless/ti/
20203 F:      include/linux/wl12xx.h
20204
20205 TIMEKEEPING, CLOCKSOURCE CORE, NTP, ALARMTIMER
20206 M:      John Stultz <jstultz@google.com>
20207 M:      Thomas Gleixner <tglx@linutronix.de>
20208 R:      Stephen Boyd <sboyd@kernel.org>
20209 L:      linux-kernel@vger.kernel.org
20210 S:      Supported
20211 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
20212 F:      include/linux/clocksource.h
20213 F:      include/linux/time.h
20214 F:      include/linux/timex.h
20215 F:      include/uapi/linux/time.h
20216 F:      include/uapi/linux/timex.h
20217 F:      kernel/time/alarmtimer.c
20218 F:      kernel/time/clocksource.c
20219 F:      kernel/time/ntp.c
20220 F:      kernel/time/time*.c
20221 F:      tools/testing/selftests/timers/
20222
20223 TIPC NETWORK LAYER
20224 M:      Jon Maloy <jmaloy@redhat.com>
20225 M:      Ying Xue <ying.xue@windriver.com>
20226 L:      netdev@vger.kernel.org (core kernel code)
20227 L:      tipc-discussion@lists.sourceforge.net (user apps, general discussion)
20228 S:      Maintained
20229 W:      http://tipc.sourceforge.net/
20230 F:      include/uapi/linux/tipc*.h
20231 F:      net/tipc/
20232
20233 TLAN NETWORK DRIVER
20234 M:      Samuel Chessman <chessman@tux.org>
20235 L:      tlan-devel@lists.sourceforge.net (subscribers-only)
20236 S:      Maintained
20237 W:      http://sourceforge.net/projects/tlan/
20238 F:      Documentation/networking/device_drivers/ethernet/ti/tlan.rst
20239 F:      drivers/net/ethernet/ti/tlan.*
20240
20241 TM6000 VIDEO4LINUX DRIVER
20242 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
20243 L:      linux-media@vger.kernel.org
20244 S:      Odd fixes
20245 W:      https://linuxtv.org
20246 T:      git git://linuxtv.org/media_tree.git
20247 F:      Documentation/admin-guide/media/tm6000*
20248 F:      drivers/media/usb/tm6000/
20249
20250 TMIO/SDHI MMC DRIVER
20251 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
20252 L:      linux-mmc@vger.kernel.org
20253 L:      linux-renesas-soc@vger.kernel.org
20254 S:      Supported
20255 F:      drivers/mmc/host/renesas_sdhi*
20256 F:      drivers/mmc/host/tmio_mmc*
20257 F:      include/linux/mfd/tmio.h
20258
20259 TMP401 HARDWARE MONITOR DRIVER
20260 M:      Guenter Roeck <linux@roeck-us.net>
20261 L:      linux-hwmon@vger.kernel.org
20262 S:      Maintained
20263 F:      Documentation/devicetree/bindings/hwmon/ti,tmp401.yaml
20264 F:      Documentation/hwmon/tmp401.rst
20265 F:      drivers/hwmon/tmp401.c
20266
20267 TMP464 HARDWARE MONITOR DRIVER
20268 M:      Agathe Porte <agathe.porte@nokia.com>
20269 M:      Guenter Roeck <linux@roeck-us.net>
20270 L:      linux-hwmon@vger.kernel.org
20271 S:      Maintained
20272 F:      Documentation/devicetree/bindings/hwmon/ti,tmp464.yaml
20273 F:      Documentation/hwmon/tmp464.rst
20274 F:      drivers/hwmon/tmp464.c
20275
20276 TMP513 HARDWARE MONITOR DRIVER
20277 M:      Eric Tremblay <etremblay@distech-controls.com>
20278 L:      linux-hwmon@vger.kernel.org
20279 S:      Maintained
20280 F:      Documentation/hwmon/tmp513.rst
20281 F:      drivers/hwmon/tmp513.c
20282
20283 TMPFS (SHMEM FILESYSTEM)
20284 M:      Hugh Dickins <hughd@google.com>
20285 L:      linux-mm@kvack.org
20286 S:      Maintained
20287 F:      include/linux/shmem_fs.h
20288 F:      mm/shmem.c
20289
20290 TOMOYO SECURITY MODULE
20291 M:      Kentaro Takeda <takedakn@nttdata.co.jp>
20292 M:      Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
20293 L:      tomoyo-dev-en@lists.osdn.me (subscribers-only, for developers in English)
20294 L:      tomoyo-users-en@lists.osdn.me (subscribers-only, for users in English)
20295 L:      tomoyo-dev@lists.osdn.me (subscribers-only, for developers in Japanese)
20296 L:      tomoyo-users@lists.osdn.me (subscribers-only, for users in Japanese)
20297 S:      Maintained
20298 W:      https://tomoyo.osdn.jp/
20299 F:      security/tomoyo/
20300
20301 TOPSTAR LAPTOP EXTRAS DRIVER
20302 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
20303 L:      platform-driver-x86@vger.kernel.org
20304 S:      Maintained
20305 F:      drivers/platform/x86/topstar-laptop.c
20306
20307 TORTURE-TEST MODULES
20308 M:      Davidlohr Bueso <dave@stgolabs.net>
20309 M:      "Paul E. McKenney" <paulmck@kernel.org>
20310 M:      Josh Triplett <josh@joshtriplett.org>
20311 L:      linux-kernel@vger.kernel.org
20312 S:      Supported
20313 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
20314 F:      Documentation/RCU/torture.rst
20315 F:      kernel/locking/locktorture.c
20316 F:      kernel/rcu/rcuscale.c
20317 F:      kernel/rcu/rcutorture.c
20318 F:      kernel/rcu/refscale.c
20319 F:      kernel/torture.c
20320
20321 TOSHIBA ACPI EXTRAS DRIVER
20322 M:      Azael Avalos <coproscefalo@gmail.com>
20323 L:      platform-driver-x86@vger.kernel.org
20324 S:      Maintained
20325 F:      drivers/platform/x86/toshiba_acpi.c
20326
20327 TOSHIBA BLUETOOTH DRIVER
20328 M:      Azael Avalos <coproscefalo@gmail.com>
20329 L:      platform-driver-x86@vger.kernel.org
20330 S:      Maintained
20331 F:      drivers/platform/x86/toshiba_bluetooth.c
20332
20333 TOSHIBA HDD ACTIVE PROTECTION SENSOR DRIVER
20334 M:      Azael Avalos <coproscefalo@gmail.com>
20335 L:      platform-driver-x86@vger.kernel.org
20336 S:      Maintained
20337 F:      drivers/platform/x86/toshiba_haps.c
20338
20339 TOSHIBA SMM DRIVER
20340 M:      Jonathan Buzzard <jonathan@buzzard.org.uk>
20341 S:      Maintained
20342 W:      http://www.buzzard.org.uk/toshiba/
20343 F:      drivers/char/toshiba.c
20344 F:      include/linux/toshiba.h
20345 F:      include/uapi/linux/toshiba.h
20346
20347 TOSHIBA TC358743 DRIVER
20348 M:      Mats Randgaard <matrandg@cisco.com>
20349 L:      linux-media@vger.kernel.org
20350 S:      Maintained
20351 F:      drivers/media/i2c/tc358743*
20352 F:      include/media/i2c/tc358743.h
20353
20354 TOSHIBA WMI HOTKEYS DRIVER
20355 M:      Azael Avalos <coproscefalo@gmail.com>
20356 L:      platform-driver-x86@vger.kernel.org
20357 S:      Maintained
20358 F:      drivers/platform/x86/toshiba-wmi.c
20359
20360 TPM DEVICE DRIVER
20361 M:      Peter Huewe <peterhuewe@gmx.de>
20362 M:      Jarkko Sakkinen <jarkko@kernel.org>
20363 R:      Jason Gunthorpe <jgg@ziepe.ca>
20364 L:      linux-integrity@vger.kernel.org
20365 S:      Maintained
20366 W:      https://kernsec.org/wiki/index.php/Linux_Kernel_Integrity
20367 Q:      https://patchwork.kernel.org/project/linux-integrity/list/
20368 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jarkko/linux-tpmdd.git
20369 F:      drivers/char/tpm/
20370
20371 TRACING
20372 M:      Steven Rostedt <rostedt@goodmis.org>
20373 M:      Ingo Molnar <mingo@redhat.com>
20374 S:      Maintained
20375 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rostedt/linux-trace.git
20376 F:      Documentation/trace/ftrace.rst
20377 F:      arch/*/*/*/*ftrace*
20378 F:      arch/*/*/*ftrace*
20379 F:      fs/tracefs/
20380 F:      include/*/ftrace.h
20381 F:      include/linux/trace*.h
20382 F:      include/trace/
20383 F:      kernel/trace/
20384 F:      tools/testing/selftests/ftrace/
20385
20386 TRACING MMIO ACCESSES (MMIOTRACE)
20387 M:      Steven Rostedt <rostedt@goodmis.org>
20388 M:      Ingo Molnar <mingo@kernel.org>
20389 R:      Karol Herbst <karolherbst@gmail.com>
20390 R:      Pekka Paalanen <ppaalanen@gmail.com>
20391 L:      linux-kernel@vger.kernel.org
20392 L:      nouveau@lists.freedesktop.org
20393 S:      Maintained
20394 F:      arch/x86/mm/kmmio.c
20395 F:      arch/x86/mm/mmio-mod.c
20396 F:      arch/x86/mm/testmmiotrace.c
20397 F:      include/linux/mmiotrace.h
20398 F:      kernel/trace/trace_mmiotrace.c
20399
20400 TRACING OS NOISE / LATENCY TRACERS
20401 M:      Steven Rostedt <rostedt@goodmis.org>
20402 M:      Daniel Bristot de Oliveira <bristot@kernel.org>
20403 S:      Maintained
20404 F:      kernel/trace/trace_osnoise.c
20405 F:      include/trace/events/osnoise.h
20406 F:      kernel/trace/trace_hwlat.c
20407 F:      kernel/trace/trace_irqsoff.c
20408 F:      kernel/trace/trace_sched_wakeup.c
20409 F:      Documentation/trace/osnoise-tracer.rst
20410 F:      Documentation/trace/timerlat-tracer.rst
20411 F:      Documentation/trace/hwlat_detector.rst
20412 F:      arch/*/kernel/trace.c
20413
20414 Real-time Linux Analysis (RTLA) tools
20415 M:      Daniel Bristot de Oliveira <bristot@kernel.org>
20416 M:      Steven Rostedt <rostedt@goodmis.org>
20417 L:      linux-trace-devel@vger.kernel.org
20418 S:      Maintained
20419 F:      Documentation/tools/rtla/
20420 F:      tools/tracing/rtla/
20421
20422 TRADITIONAL CHINESE DOCUMENTATION
20423 M:      Hu Haowen <src.res@email.cn>
20424 L:      linux-doc-tw-discuss@lists.sourceforge.net
20425 S:      Maintained
20426 W:      https://github.com/srcres258/linux-doc
20427 T:      git git://github.com/srcres258/linux-doc.git doc-zh-tw
20428 F:      Documentation/translations/zh_TW/
20429
20430 TTY LAYER
20431 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
20432 M:      Jiri Slaby <jirislaby@kernel.org>
20433 S:      Supported
20434 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
20435 F:      Documentation/driver-api/serial/
20436 F:      drivers/tty/
20437 F:      drivers/tty/serial/serial_core.c
20438 F:      include/linux/selection.h
20439 F:      include/linux/serial.h
20440 F:      include/linux/serial_core.h
20441 F:      include/linux/sysrq.h
20442 F:      include/linux/tty*.h
20443 F:      include/linux/vt.h
20444 F:      include/linux/vt_*.h
20445 F:      include/uapi/linux/serial.h
20446 F:      include/uapi/linux/serial_core.h
20447 F:      include/uapi/linux/tty.h
20448
20449 TUA9001 MEDIA DRIVER
20450 M:      Antti Palosaari <crope@iki.fi>
20451 L:      linux-media@vger.kernel.org
20452 S:      Maintained
20453 W:      https://linuxtv.org
20454 W:      http://palosaari.fi/linux/
20455 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
20456 T:      git git://linuxtv.org/anttip/media_tree.git
20457 F:      drivers/media/tuners/tua9001*
20458
20459 TULIP NETWORK DRIVERS
20460 L:      netdev@vger.kernel.org
20461 L:      linux-parisc@vger.kernel.org
20462 S:      Orphan
20463 F:      drivers/net/ethernet/dec/tulip/
20464
20465 TUN/TAP driver
20466 M:      Maxim Krasnyansky <maxk@qti.qualcomm.com>
20467 S:      Maintained
20468 W:      http://vtun.sourceforge.net/tun
20469 F:      Documentation/networking/tuntap.rst
20470 F:      arch/um/os-Linux/drivers/
20471
20472 TURBOCHANNEL SUBSYSTEM
20473 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
20474 M:      Ralf Baechle <ralf@linux-mips.org>
20475 L:      linux-mips@vger.kernel.org
20476 S:      Maintained
20477 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
20478 F:      drivers/tc/
20479 F:      include/linux/tc.h
20480
20481 TURBOSTAT UTILITY
20482 M:      "Len Brown" <lenb@kernel.org>
20483 L:      linux-pm@vger.kernel.org
20484 S:      Supported
20485 Q:      https://patchwork.kernel.org/project/linux-pm/list/
20486 B:      https://bugzilla.kernel.org
20487 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git turbostat
20488 F:      tools/power/x86/turbostat/
20489
20490 TW5864 VIDEO4LINUX DRIVER
20491 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
20492 M:      Anton Sviridenko <anton@corp.bluecherry.net>
20493 M:      Andrey Utkin <andrey.utkin@corp.bluecherry.net>
20494 M:      Andrey Utkin <andrey_utkin@fastmail.com>
20495 L:      linux-media@vger.kernel.org
20496 S:      Supported
20497 F:      drivers/media/pci/tw5864/
20498
20499 TW68 VIDEO4LINUX DRIVER
20500 M:      Hans Verkuil <hverkuil@xs4all.nl>
20501 L:      linux-media@vger.kernel.org
20502 S:      Odd Fixes
20503 W:      https://linuxtv.org
20504 T:      git git://linuxtv.org/media_tree.git
20505 F:      drivers/media/pci/tw68/
20506
20507 TW686X VIDEO4LINUX DRIVER
20508 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
20509 L:      linux-media@vger.kernel.org
20510 S:      Maintained
20511 W:      http://linuxtv.org
20512 T:      git git://linuxtv.org/media_tree.git
20513 F:      drivers/media/pci/tw686x/
20514
20515 U-BOOT ENVIRONMENT VARIABLES
20516 M:      Rafał Miłecki <rafal@milecki.pl>
20517 S:      Maintained
20518 F:      Documentation/devicetree/bindings/nvmem/u-boot,env.yaml
20519
20520 UACCE ACCELERATOR FRAMEWORK
20521 M:      Zhangfei Gao <zhangfei.gao@linaro.org>
20522 M:      Zhou Wang <wangzhou1@hisilicon.com>
20523 L:      linux-accelerators@lists.ozlabs.org
20524 L:      linux-kernel@vger.kernel.org
20525 S:      Maintained
20526 F:      Documentation/ABI/testing/sysfs-driver-uacce
20527 F:      Documentation/misc-devices/uacce.rst
20528 F:      drivers/misc/uacce/
20529 F:      include/linux/uacce.h
20530 F:      include/uapi/misc/uacce/
20531
20532 UBI FILE SYSTEM (UBIFS)
20533 M:      Richard Weinberger <richard@nod.at>
20534 L:      linux-mtd@lists.infradead.org
20535 S:      Supported
20536 W:      http://www.linux-mtd.infradead.org/doc/ubifs.html
20537 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
20538 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
20539 F:      Documentation/ABI/testing/sysfs-fs-ubifs
20540 F:      Documentation/filesystems/ubifs-authentication.rst
20541 F:      Documentation/filesystems/ubifs.rst
20542 F:      fs/ubifs/
20543
20544 UBLK USERSPACE BLOCK DRIVER
20545 M:      Ming Lei <ming.lei@redhat.com>
20546 L:      linux-block@vger.kernel.org
20547 S:      Maintained
20548 F:      drivers/block/ublk_drv.c
20549 F:      include/uapi/linux/ublk_cmd.h
20550
20551 UCLINUX (M68KNOMMU AND COLDFIRE)
20552 M:      Greg Ungerer <gerg@linux-m68k.org>
20553 L:      linux-m68k@lists.linux-m68k.org
20554 L:      uclinux-dev@uclinux.org  (subscribers-only)
20555 S:      Maintained
20556 W:      http://www.linux-m68k.org/
20557 W:      http://www.uclinux.org/
20558 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git
20559 F:      arch/m68k/*/*_no.*
20560 F:      arch/m68k/68*/
20561 F:      arch/m68k/coldfire/
20562 F:      arch/m68k/include/asm/*_no.*
20563
20564 UDF FILESYSTEM
20565 M:      Jan Kara <jack@suse.com>
20566 S:      Maintained
20567 F:      Documentation/filesystems/udf.rst
20568 F:      fs/udf/
20569
20570 UDRAW TABLET
20571 M:      Bastien Nocera <hadess@hadess.net>
20572 L:      linux-input@vger.kernel.org
20573 S:      Maintained
20574 F:      drivers/hid/hid-udraw-ps3.c
20575
20576 UFS FILESYSTEM
20577 M:      Evgeniy Dushistov <dushistov@mail.ru>
20578 S:      Maintained
20579 F:      Documentation/admin-guide/ufs.rst
20580 F:      fs/ufs/
20581
20582 UHID USERSPACE HID IO DRIVER
20583 M:      David Rheinsberg <david.rheinsberg@gmail.com>
20584 L:      linux-input@vger.kernel.org
20585 S:      Maintained
20586 F:      drivers/hid/uhid.c
20587 F:      include/uapi/linux/uhid.h
20588
20589 ULPI BUS
20590 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
20591 L:      linux-usb@vger.kernel.org
20592 S:      Maintained
20593 F:      drivers/usb/common/ulpi.c
20594 F:      include/linux/ulpi/
20595
20596 UNICODE SUBSYSTEM
20597 M:      Gabriel Krisman Bertazi <krisman@collabora.com>
20598 L:      linux-fsdevel@vger.kernel.org
20599 S:      Supported
20600 F:      fs/unicode/
20601
20602 UNIFDEF
20603 M:      Tony Finch <dot@dotat.at>
20604 S:      Maintained
20605 W:      http://dotat.at/prog/unifdef
20606 F:      scripts/unifdef.c
20607
20608 UNIFORM CDROM DRIVER
20609 M:      Phillip Potter <phil@philpotter.co.uk>
20610 S:      Maintained
20611 F:      Documentation/cdrom/
20612 F:      drivers/cdrom/cdrom.c
20613 F:      include/linux/cdrom.h
20614 F:      include/uapi/linux/cdrom.h
20615
20616 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
20617 R:      Alim Akhtar <alim.akhtar@samsung.com>
20618 R:      Avri Altman <avri.altman@wdc.com>
20619 R:      Bart Van Assche <bvanassche@acm.org>
20620 L:      linux-scsi@vger.kernel.org
20621 S:      Supported
20622 F:      Documentation/devicetree/bindings/ufs/
20623 F:      Documentation/scsi/ufs.rst
20624 F:      drivers/ufs/core/
20625
20626 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER DWC HOOKS
20627 M:      Pedro Sousa <pedrom.sousa@synopsys.com>
20628 L:      linux-scsi@vger.kernel.org
20629 S:      Supported
20630 F:      drivers/ufs/host/*dwc*
20631
20632 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER MEDIATEK HOOKS
20633 M:      Stanley Chu <stanley.chu@mediatek.com>
20634 L:      linux-scsi@vger.kernel.org
20635 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
20636 S:      Maintained
20637 F:      drivers/ufs/host/ufs-mediatek*
20638
20639 UNSORTED BLOCK IMAGES (UBI)
20640 M:      Richard Weinberger <richard@nod.at>
20641 L:      linux-mtd@lists.infradead.org
20642 S:      Supported
20643 W:      http://www.linux-mtd.infradead.org/
20644 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
20645 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
20646 F:      drivers/mtd/ubi/
20647 F:      include/linux/mtd/ubi.h
20648 F:      include/uapi/mtd/ubi-user.h
20649
20650 USB "USBNET" DRIVER FRAMEWORK
20651 M:      Oliver Neukum <oneukum@suse.com>
20652 L:      netdev@vger.kernel.org
20653 S:      Maintained
20654 W:      http://www.linux-usb.org/usbnet
20655 F:      drivers/net/usb/usbnet.c
20656 F:      include/linux/usb/usbnet.h
20657
20658 USB ACM DRIVER
20659 M:      Oliver Neukum <oneukum@suse.com>
20660 L:      linux-usb@vger.kernel.org
20661 S:      Maintained
20662 F:      Documentation/usb/acm.rst
20663 F:      drivers/usb/class/cdc-acm.*
20664
20665 USB APPLE MFI FASTCHARGE DRIVER
20666 M:      Bastien Nocera <hadess@hadess.net>
20667 L:      linux-usb@vger.kernel.org
20668 S:      Maintained
20669 F:      drivers/usb/misc/apple-mfi-fastcharge.c
20670
20671 USB AR5523 WIRELESS DRIVER
20672 M:      Pontus Fuchs <pontus.fuchs@gmail.com>
20673 L:      linux-wireless@vger.kernel.org
20674 S:      Maintained
20675 F:      drivers/net/wireless/ath/ar5523/
20676
20677 USB ATTACHED SCSI
20678 M:      Oliver Neukum <oneukum@suse.com>
20679 L:      linux-usb@vger.kernel.org
20680 L:      linux-scsi@vger.kernel.org
20681 S:      Maintained
20682 F:      drivers/usb/storage/uas.c
20683
20684 USB CDC ETHERNET DRIVER
20685 M:      Oliver Neukum <oliver@neukum.org>
20686 L:      linux-usb@vger.kernel.org
20687 S:      Maintained
20688 F:      drivers/net/usb/cdc_*.c
20689 F:      include/uapi/linux/usb/cdc.h
20690
20691 USB CHAOSKEY DRIVER
20692 M:      Keith Packard <keithp@keithp.com>
20693 L:      linux-usb@vger.kernel.org
20694 S:      Maintained
20695 F:      drivers/usb/misc/chaoskey.c
20696
20697 USB CYPRESS C67X00 DRIVER
20698 L:      linux-usb@vger.kernel.org
20699 S:      Orphan
20700 F:      drivers/usb/c67x00/
20701
20702 USB DAVICOM DM9601 DRIVER
20703 M:      Peter Korsgaard <peter@korsgaard.com>
20704 L:      netdev@vger.kernel.org
20705 S:      Maintained
20706 W:      http://www.linux-usb.org/usbnet
20707 F:      drivers/net/usb/dm9601.c
20708
20709 USB EHCI DRIVER
20710 M:      Alan Stern <stern@rowland.harvard.edu>
20711 L:      linux-usb@vger.kernel.org
20712 S:      Maintained
20713 F:      Documentation/usb/ehci.rst
20714 F:      drivers/usb/host/ehci*
20715
20716 USB GADGET/PERIPHERAL SUBSYSTEM
20717 M:      Felipe Balbi <balbi@kernel.org>
20718 L:      linux-usb@vger.kernel.org
20719 S:      Maintained
20720 W:      http://www.linux-usb.org/gadget
20721 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
20722 F:      drivers/usb/gadget/
20723 F:      include/linux/usb/gadget*
20724
20725 USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
20726 M:      Jiri Kosina <jikos@kernel.org>
20727 M:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
20728 L:      linux-usb@vger.kernel.org
20729 S:      Maintained
20730 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
20731 F:      Documentation/hid/hiddev.rst
20732 F:      drivers/hid/usbhid/
20733
20734 USB INTEL XHCI ROLE MUX DRIVER
20735 M:      Hans de Goede <hdegoede@redhat.com>
20736 L:      linux-usb@vger.kernel.org
20737 S:      Maintained
20738 F:      drivers/usb/roles/intel-xhci-usb-role-switch.c
20739
20740 USB IP DRIVER FOR HISILICON KIRIN 960
20741 M:      Yu Chen <chenyu56@huawei.com>
20742 M:      Binghui Wang <wangbinghui@hisilicon.com>
20743 L:      linux-usb@vger.kernel.org
20744 S:      Maintained
20745 F:      Documentation/devicetree/bindings/phy/hisilicon,hi3660-usb3.yaml
20746 F:      drivers/phy/hisilicon/phy-hi3660-usb3.c
20747
20748 USB IP DRIVER FOR HISILICON KIRIN 970
20749 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
20750 L:      linux-usb@vger.kernel.org
20751 S:      Maintained
20752 F:      Documentation/devicetree/bindings/phy/hisilicon,hi3670-usb3.yaml
20753 F:      drivers/phy/hisilicon/phy-hi3670-usb3.c
20754
20755 USB ISP116X DRIVER
20756 M:      Olav Kongas <ok@artecdesign.ee>
20757 L:      linux-usb@vger.kernel.org
20758 S:      Maintained
20759 F:      drivers/usb/host/isp116x*
20760 F:      include/linux/usb/isp116x.h
20761
20762 USB ISP1760 DRIVER
20763 M:      Rui Miguel Silva <rui.silva@linaro.org>
20764 L:      linux-usb@vger.kernel.org
20765 S:      Maintained
20766 F:      drivers/usb/isp1760/*
20767 F:      Documentation/devicetree/bindings/usb/nxp,isp1760.yaml
20768
20769 USB LAN78XX ETHERNET DRIVER
20770 M:      Woojung Huh <woojung.huh@microchip.com>
20771 M:      UNGLinuxDriver@microchip.com
20772 L:      netdev@vger.kernel.org
20773 S:      Maintained
20774 F:      Documentation/devicetree/bindings/net/microchip,lan78xx.txt
20775 F:      drivers/net/usb/lan78xx.*
20776 F:      include/dt-bindings/net/microchip-lan78xx.h
20777
20778 USB MASS STORAGE DRIVER
20779 M:      Alan Stern <stern@rowland.harvard.edu>
20780 L:      linux-usb@vger.kernel.org
20781 L:      usb-storage@lists.one-eyed-alien.net
20782 S:      Maintained
20783 F:      drivers/usb/storage/
20784
20785 USB MIDI DRIVER
20786 M:      Clemens Ladisch <clemens@ladisch.de>
20787 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
20788 S:      Maintained
20789 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
20790 F:      sound/usb/midi.*
20791
20792 USB NETWORKING DRIVERS
20793 L:      linux-usb@vger.kernel.org
20794 S:      Odd Fixes
20795 F:      drivers/net/usb/
20796
20797 USB OHCI DRIVER
20798 M:      Alan Stern <stern@rowland.harvard.edu>
20799 L:      linux-usb@vger.kernel.org
20800 S:      Maintained
20801 F:      Documentation/usb/ohci.rst
20802 F:      drivers/usb/host/ohci*
20803
20804 USB OTG FSM (Finite State Machine)
20805 M:      Peter Chen <peter.chen@kernel.org>
20806 L:      linux-usb@vger.kernel.org
20807 S:      Maintained
20808 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
20809 F:      drivers/usb/common/usb-otg-fsm.c
20810
20811 USB OVER IP DRIVER
20812 M:      Valentina Manea <valentina.manea.m@gmail.com>
20813 M:      Shuah Khan <shuah@kernel.org>
20814 M:      Shuah Khan <skhan@linuxfoundation.org>
20815 L:      linux-usb@vger.kernel.org
20816 S:      Maintained
20817 F:      Documentation/usb/usbip_protocol.rst
20818 F:      drivers/usb/usbip/
20819 F:      tools/testing/selftests/drivers/usb/usbip/
20820 F:      tools/usb/usbip/
20821
20822 USB PEGASUS DRIVER
20823 M:      Petko Manolov <petkan@nucleusys.com>
20824 L:      linux-usb@vger.kernel.org
20825 L:      netdev@vger.kernel.org
20826 S:      Maintained
20827 W:      https://github.com/petkan/pegasus
20828 T:      git git://github.com/petkan/pegasus.git
20829 F:      drivers/net/usb/pegasus.*
20830
20831 USB PHY LAYER
20832 M:      Felipe Balbi <balbi@kernel.org>
20833 L:      linux-usb@vger.kernel.org
20834 S:      Maintained
20835 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
20836 F:      drivers/usb/phy/
20837
20838 USB PRINTER DRIVER (usblp)
20839 M:      Pete Zaitcev <zaitcev@redhat.com>
20840 L:      linux-usb@vger.kernel.org
20841 S:      Supported
20842 F:      drivers/usb/class/usblp.c
20843
20844 USB RAW GADGET DRIVER
20845 R:      Andrey Konovalov <andreyknvl@gmail.com>
20846 L:      linux-usb@vger.kernel.org
20847 S:      Maintained
20848 F:      Documentation/usb/raw-gadget.rst
20849 F:      drivers/usb/gadget/legacy/raw_gadget.c
20850 F:      include/uapi/linux/usb/raw_gadget.h
20851
20852 USB QMI WWAN NETWORK DRIVER
20853 M:      Bjørn Mork <bjorn@mork.no>
20854 L:      netdev@vger.kernel.org
20855 S:      Maintained
20856 F:      Documentation/ABI/testing/sysfs-class-net-qmi
20857 F:      drivers/net/usb/qmi_wwan.c
20858
20859 USB RTL8150 DRIVER
20860 M:      Petko Manolov <petkan@nucleusys.com>
20861 L:      linux-usb@vger.kernel.org
20862 L:      netdev@vger.kernel.org
20863 S:      Maintained
20864 W:      https://github.com/petkan/rtl8150
20865 T:      git git://github.com/petkan/rtl8150.git
20866 F:      drivers/net/usb/rtl8150.c
20867
20868 USB SERIAL SUBSYSTEM
20869 M:      Johan Hovold <johan@kernel.org>
20870 L:      linux-usb@vger.kernel.org
20871 S:      Maintained
20872 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/usb-serial.git
20873 F:      Documentation/usb/usb-serial.rst
20874 F:      drivers/usb/serial/
20875 F:      include/linux/usb/serial.h
20876
20877 USB SMSC75XX ETHERNET DRIVER
20878 M:      Steve Glendinning <steve.glendinning@shawell.net>
20879 L:      netdev@vger.kernel.org
20880 S:      Maintained
20881 F:      drivers/net/usb/smsc75xx.*
20882
20883 USB SMSC95XX ETHERNET DRIVER
20884 M:      Steve Glendinning <steve.glendinning@shawell.net>
20885 M:      UNGLinuxDriver@microchip.com
20886 L:      netdev@vger.kernel.org
20887 S:      Maintained
20888 F:      drivers/net/usb/smsc95xx.*
20889
20890 USB SUBSYSTEM
20891 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
20892 L:      linux-usb@vger.kernel.org
20893 S:      Supported
20894 W:      http://www.linux-usb.org
20895 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
20896 F:      Documentation/devicetree/bindings/usb/
20897 F:      Documentation/usb/
20898 F:      drivers/usb/
20899 F:      include/dt-bindings/usb/
20900 F:      include/linux/usb.h
20901 F:      include/linux/usb/
20902
20903 USB TYPEC BUS FOR ALTERNATE MODES
20904 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
20905 L:      linux-usb@vger.kernel.org
20906 S:      Maintained
20907 F:      Documentation/ABI/testing/sysfs-bus-typec
20908 F:      Documentation/driver-api/usb/typec_bus.rst
20909 F:      drivers/usb/typec/altmodes/
20910 F:      include/linux/usb/typec_altmode.h
20911
20912 USB TYPEC CLASS
20913 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
20914 L:      linux-usb@vger.kernel.org
20915 S:      Maintained
20916 F:      Documentation/ABI/testing/sysfs-class-typec
20917 F:      Documentation/driver-api/usb/typec.rst
20918 F:      drivers/usb/typec/
20919 F:      include/linux/usb/typec.h
20920
20921 USB TYPEC INTEL PMC MUX DRIVER
20922 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
20923 L:      linux-usb@vger.kernel.org
20924 S:      Maintained
20925 F:      Documentation/firmware-guide/acpi/intel-pmc-mux.rst
20926 F:      drivers/usb/typec/mux/intel_pmc_mux.c
20927
20928 USB TYPEC PI3USB30532 MUX DRIVER
20929 M:      Hans de Goede <hdegoede@redhat.com>
20930 L:      linux-usb@vger.kernel.org
20931 S:      Maintained
20932 F:      drivers/usb/typec/mux/pi3usb30532.c
20933
20934 USB TYPEC PORT CONTROLLER DRIVERS
20935 M:      Guenter Roeck <linux@roeck-us.net>
20936 L:      linux-usb@vger.kernel.org
20937 S:      Maintained
20938 F:      drivers/usb/typec/tcpm/
20939
20940 USB UHCI DRIVER
20941 M:      Alan Stern <stern@rowland.harvard.edu>
20942 L:      linux-usb@vger.kernel.org
20943 S:      Maintained
20944 F:      drivers/usb/host/uhci*
20945
20946 USB VIDEO CLASS
20947 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
20948 L:      linux-media@vger.kernel.org
20949 S:      Maintained
20950 W:      http://www.ideasonboard.org/uvc/
20951 T:      git git://linuxtv.org/media_tree.git
20952 F:      drivers/media/usb/uvc/
20953 F:      include/uapi/linux/uvcvideo.h
20954
20955 USB WEBCAM GADGET
20956 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
20957 L:      linux-usb@vger.kernel.org
20958 S:      Maintained
20959 F:      drivers/usb/gadget/function/*uvc*
20960 F:      drivers/usb/gadget/legacy/webcam.c
20961 F:      include/uapi/linux/usb/g_uvc.h
20962
20963 USB WIRELESS RNDIS DRIVER (rndis_wlan)
20964 M:      Jussi Kivilinna <jussi.kivilinna@iki.fi>
20965 L:      linux-wireless@vger.kernel.org
20966 S:      Maintained
20967 F:      drivers/net/wireless/rndis_wlan.c
20968
20969 USB XHCI DRIVER
20970 M:      Mathias Nyman <mathias.nyman@intel.com>
20971 L:      linux-usb@vger.kernel.org
20972 S:      Supported
20973 F:      drivers/usb/host/pci-quirks*
20974 F:      drivers/usb/host/xhci*
20975
20976 USB ZD1201 DRIVER
20977 L:      linux-wireless@vger.kernel.org
20978 S:      Orphan
20979 W:      http://linux-lc100020.sourceforge.net
20980 F:      drivers/net/wireless/zydas/zd1201.*
20981
20982 USB ZR364XX DRIVER
20983 M:      Antoine Jacquet <royale@zerezo.com>
20984 L:      linux-usb@vger.kernel.org
20985 L:      linux-media@vger.kernel.org
20986 S:      Maintained
20987 W:      http://royale.zerezo.com/zr364xx/
20988 T:      git git://linuxtv.org/media_tree.git
20989 F:      Documentation/admin-guide/media/zr364xx*
20990 F:      drivers/media/usb/zr364xx/
20991
20992 USER-MODE LINUX (UML)
20993 M:      Richard Weinberger <richard@nod.at>
20994 M:      Anton Ivanov <anton.ivanov@cambridgegreys.com>
20995 M:      Johannes Berg <johannes@sipsolutions.net>
20996 L:      linux-um@lists.infradead.org
20997 S:      Maintained
20998 W:      http://user-mode-linux.sourceforge.net
20999 Q:      https://patchwork.ozlabs.org/project/linux-um/list/
21000 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/uml/linux.git next
21001 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/uml/linux.git fixes
21002 F:      Documentation/virt/uml/
21003 F:      arch/um/
21004 F:      arch/x86/um/
21005 F:      fs/hostfs/
21006
21007 USERSPACE COPYIN/COPYOUT (UIOVEC)
21008 M:      Alexander Viro <viro@zeniv.linux.org.uk>
21009 S:      Maintained
21010 F:      include/linux/uio.h
21011 F:      lib/iov_iter.c
21012
21013 USERSPACE DMA BUFFER DRIVER
21014 M:      Gerd Hoffmann <kraxel@redhat.com>
21015 L:      dri-devel@lists.freedesktop.org
21016 S:      Maintained
21017 T:      git git://anongit.freedesktop.org/drm/drm-misc
21018 F:      drivers/dma-buf/udmabuf.c
21019 F:      include/uapi/linux/udmabuf.h
21020
21021 USERSPACE I/O (UIO)
21022 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
21023 S:      Maintained
21024 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
21025 F:      Documentation/driver-api/uio-howto.rst
21026 F:      drivers/uio/
21027 F:      include/linux/uio_driver.h
21028
21029 UTIL-LINUX PACKAGE
21030 M:      Karel Zak <kzak@redhat.com>
21031 L:      util-linux@vger.kernel.org
21032 S:      Maintained
21033 W:      http://en.wikipedia.org/wiki/Util-linux
21034 T:      git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
21035
21036 UUID HELPERS
21037 M:      Christoph Hellwig <hch@lst.de>
21038 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
21039 L:      linux-kernel@vger.kernel.org
21040 S:      Maintained
21041 T:      git git://git.infradead.org/users/hch/uuid.git
21042 F:      include/linux/uuid.h
21043 F:      include/uapi/linux/uuid.h
21044 F:      lib/test_uuid.c
21045 F:      lib/uuid.c
21046
21047 UV SYSFS DRIVER
21048 M:      Justin Ernst <justin.ernst@hpe.com>
21049 L:      platform-driver-x86@vger.kernel.org
21050 S:      Maintained
21051 F:      drivers/platform/x86/uv_sysfs.c
21052
21053 UVESAFB DRIVER
21054 M:      Michal Januszewski <spock@gentoo.org>
21055 L:      linux-fbdev@vger.kernel.org
21056 S:      Maintained
21057 W:      https://github.com/mjanusz/v86d
21058 F:      Documentation/fb/uvesafb.rst
21059 F:      drivers/video/fbdev/uvesafb.*
21060
21061 Ux500 CLOCK DRIVERS
21062 M:      Ulf Hansson <ulf.hansson@linaro.org>
21063 L:      linux-clk@vger.kernel.org
21064 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
21065 S:      Maintained
21066 F:      drivers/clk/ux500/
21067
21068 VF610 NAND DRIVER
21069 M:      Stefan Agner <stefan@agner.ch>
21070 L:      linux-mtd@lists.infradead.org
21071 S:      Supported
21072 F:      drivers/mtd/nand/raw/vf610_nfc.c
21073
21074 VFAT/FAT/MSDOS FILESYSTEM
21075 M:      OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
21076 S:      Maintained
21077 F:      Documentation/filesystems/vfat.rst
21078 F:      fs/fat/
21079
21080 VFIO DRIVER
21081 M:      Alex Williamson <alex.williamson@redhat.com>
21082 R:      Cornelia Huck <cohuck@redhat.com>
21083 L:      kvm@vger.kernel.org
21084 S:      Maintained
21085 T:      git git://github.com/awilliam/linux-vfio.git
21086 F:      Documentation/driver-api/vfio.rst
21087 F:      drivers/vfio/
21088 F:      include/linux/vfio.h
21089 F:      include/linux/vfio_pci_core.h
21090 F:      include/uapi/linux/vfio.h
21091
21092 VFIO FSL-MC DRIVER
21093 M:      Diana Craciun <diana.craciun@oss.nxp.com>
21094 L:      kvm@vger.kernel.org
21095 S:      Maintained
21096 F:      drivers/vfio/fsl-mc/
21097
21098 VFIO HISILICON PCI DRIVER
21099 M:      Longfang Liu <liulongfang@huawei.com>
21100 M:      Shameer Kolothum <shameerali.kolothum.thodi@huawei.com>
21101 L:      kvm@vger.kernel.org
21102 S:      Maintained
21103 F:      drivers/vfio/pci/hisilicon/
21104
21105 VFIO MEDIATED DEVICE DRIVERS
21106 M:      Kirti Wankhede <kwankhede@nvidia.com>
21107 L:      kvm@vger.kernel.org
21108 S:      Maintained
21109 F:      Documentation/driver-api/vfio-mediated-device.rst
21110 F:      drivers/vfio/mdev/
21111 F:      include/linux/mdev.h
21112 F:      samples/vfio-mdev/
21113
21114 VFIO PCI DEVICE SPECIFIC DRIVERS
21115 R:      Jason Gunthorpe <jgg@nvidia.com>
21116 R:      Yishai Hadas <yishaih@nvidia.com>
21117 R:      Shameer Kolothum <shameerali.kolothum.thodi@huawei.com>
21118 R:      Kevin Tian <kevin.tian@intel.com>
21119 L:      kvm@vger.kernel.org
21120 S:      Maintained
21121 P:      Documentation/driver-api/vfio-pci-device-specific-driver-acceptance.rst
21122 F:      drivers/vfio/pci/*/
21123
21124 VFIO PLATFORM DRIVER
21125 M:      Eric Auger <eric.auger@redhat.com>
21126 L:      kvm@vger.kernel.org
21127 S:      Maintained
21128 F:      drivers/vfio/platform/
21129
21130 VFIO MLX5 PCI DRIVER
21131 M:      Yishai Hadas <yishaih@nvidia.com>
21132 L:      kvm@vger.kernel.org
21133 S:      Maintained
21134 F:      drivers/vfio/pci/mlx5/
21135
21136 VGA_SWITCHEROO
21137 R:      Lukas Wunner <lukas@wunner.de>
21138 S:      Maintained
21139 T:      git git://anongit.freedesktop.org/drm/drm-misc
21140 F:      Documentation/gpu/vga-switcheroo.rst
21141 F:      drivers/gpu/vga/vga_switcheroo.c
21142 F:      include/linux/vga_switcheroo.h
21143
21144 VIA RHINE NETWORK DRIVER
21145 S:      Maintained
21146 M:      Kevin Brace <kevinbrace@bracecomputerlab.com>
21147 F:      drivers/net/ethernet/via/via-rhine.c
21148
21149 VIA SD/MMC CARD CONTROLLER DRIVER
21150 M:      Bruce Chang <brucechang@via.com.tw>
21151 M:      Harald Welte <HaraldWelte@viatech.com>
21152 S:      Maintained
21153 F:      drivers/mmc/host/via-sdmmc.c
21154
21155 VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
21156 M:      Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
21157 L:      linux-fbdev@vger.kernel.org
21158 S:      Maintained
21159 F:      drivers/video/fbdev/via/
21160 F:      include/linux/via-core.h
21161 F:      include/linux/via-gpio.h
21162 F:      include/linux/via_i2c.h
21163
21164 VIA VELOCITY NETWORK DRIVER
21165 M:      Francois Romieu <romieu@fr.zoreil.com>
21166 L:      netdev@vger.kernel.org
21167 S:      Maintained
21168 F:      drivers/net/ethernet/via/via-velocity.*
21169
21170 VICODEC VIRTUAL CODEC DRIVER
21171 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
21172 L:      linux-media@vger.kernel.org
21173 S:      Maintained
21174 W:      https://linuxtv.org
21175 T:      git git://linuxtv.org/media_tree.git
21176 F:      drivers/media/test-drivers/vicodec/*
21177
21178 VIDEO I2C POLLING DRIVER
21179 M:      Matt Ranostay <matt.ranostay@konsulko.com>
21180 L:      linux-media@vger.kernel.org
21181 S:      Maintained
21182 F:      drivers/media/i2c/video-i2c.c
21183
21184 VIDEO MULTIPLEXER DRIVER
21185 M:      Philipp Zabel <p.zabel@pengutronix.de>
21186 L:      linux-media@vger.kernel.org
21187 S:      Maintained
21188 F:      drivers/media/platform/video-mux.c
21189
21190 VIDEOBUF2 FRAMEWORK
21191 M:      Tomasz Figa <tfiga@chromium.org>
21192 M:      Marek Szyprowski <m.szyprowski@samsung.com>
21193 L:      linux-media@vger.kernel.org
21194 S:      Maintained
21195 F:      drivers/media/common/videobuf2/*
21196 F:      include/media/videobuf2-*
21197
21198 VIMC VIRTUAL MEDIA CONTROLLER DRIVER
21199 M:      Shuah Khan <skhan@linuxfoundation.org>
21200 R:      Kieran Bingham <kieran.bingham@ideasonboard.com>
21201 L:      linux-media@vger.kernel.org
21202 S:      Maintained
21203 W:      https://linuxtv.org
21204 T:      git git://linuxtv.org/media_tree.git
21205 F:      drivers/media/test-drivers/vimc/*
21206
21207 VIRT LIB
21208 M:      Alex Williamson <alex.williamson@redhat.com>
21209 M:      Paolo Bonzini <pbonzini@redhat.com>
21210 L:      kvm@vger.kernel.org
21211 S:      Supported
21212 F:      virt/lib/
21213
21214 VIRTIO AND VHOST VSOCK DRIVER
21215 M:      Stefan Hajnoczi <stefanha@redhat.com>
21216 M:      Stefano Garzarella <sgarzare@redhat.com>
21217 L:      kvm@vger.kernel.org
21218 L:      virtualization@lists.linux-foundation.org
21219 L:      netdev@vger.kernel.org
21220 S:      Maintained
21221 F:      drivers/vhost/vsock.c
21222 F:      include/linux/virtio_vsock.h
21223 F:      include/uapi/linux/virtio_vsock.h
21224 F:      net/vmw_vsock/virtio_transport.c
21225 F:      net/vmw_vsock/virtio_transport_common.c
21226
21227 VIRTIO BLOCK AND SCSI DRIVERS
21228 M:      "Michael S. Tsirkin" <mst@redhat.com>
21229 M:      Jason Wang <jasowang@redhat.com>
21230 R:      Paolo Bonzini <pbonzini@redhat.com>
21231 R:      Stefan Hajnoczi <stefanha@redhat.com>
21232 L:      virtualization@lists.linux-foundation.org
21233 S:      Maintained
21234 F:      drivers/block/virtio_blk.c
21235 F:      drivers/scsi/virtio_scsi.c
21236 F:      drivers/vhost/scsi.c
21237 F:      include/uapi/linux/virtio_blk.h
21238 F:      include/uapi/linux/virtio_scsi.h
21239
21240 VIRTIO CONSOLE DRIVER
21241 M:      Amit Shah <amit@kernel.org>
21242 L:      virtualization@lists.linux-foundation.org
21243 S:      Maintained
21244 F:      drivers/char/virtio_console.c
21245 F:      include/linux/virtio_console.h
21246 F:      include/uapi/linux/virtio_console.h
21247
21248 VIRTIO CORE AND NET DRIVERS
21249 M:      "Michael S. Tsirkin" <mst@redhat.com>
21250 M:      Jason Wang <jasowang@redhat.com>
21251 L:      virtualization@lists.linux-foundation.org
21252 S:      Maintained
21253 F:      Documentation/ABI/testing/sysfs-bus-vdpa
21254 F:      Documentation/devicetree/bindings/virtio/
21255 F:      drivers/block/virtio_blk.c
21256 F:      drivers/crypto/virtio/
21257 F:      drivers/net/virtio_net.c
21258 F:      drivers/vdpa/
21259 F:      drivers/virtio/
21260 F:      include/linux/vdpa.h
21261 F:      include/linux/virtio*.h
21262 F:      include/uapi/linux/virtio_*.h
21263 F:      tools/virtio/
21264
21265 VIRTIO BALLOON
21266 M:      "Michael S. Tsirkin" <mst@redhat.com>
21267 M:      David Hildenbrand <david@redhat.com>
21268 L:      virtualization@lists.linux-foundation.org
21269 S:      Maintained
21270 F:      drivers/virtio/virtio_balloon.c
21271 F:      include/uapi/linux/virtio_balloon.h
21272 F:      include/linux/balloon_compaction.h
21273 F:      mm/balloon_compaction.c
21274
21275 VIRTIO CRYPTO DRIVER
21276 M:      Gonglei <arei.gonglei@huawei.com>
21277 L:      virtualization@lists.linux-foundation.org
21278 L:      linux-crypto@vger.kernel.org
21279 S:      Maintained
21280 F:      drivers/crypto/virtio/
21281 F:      include/uapi/linux/virtio_crypto.h
21282
21283 VIRTIO DRIVERS FOR S390
21284 M:      Cornelia Huck <cohuck@redhat.com>
21285 M:      Halil Pasic <pasic@linux.ibm.com>
21286 M:      Eric Farman <farman@linux.ibm.com>
21287 L:      linux-s390@vger.kernel.org
21288 L:      virtualization@lists.linux-foundation.org
21289 L:      kvm@vger.kernel.org
21290 S:      Supported
21291 F:      arch/s390/include/uapi/asm/virtio-ccw.h
21292 F:      drivers/s390/virtio/
21293
21294 VIRTIO FILE SYSTEM
21295 M:      Vivek Goyal <vgoyal@redhat.com>
21296 M:      Stefan Hajnoczi <stefanha@redhat.com>
21297 M:      Miklos Szeredi <miklos@szeredi.hu>
21298 L:      virtualization@lists.linux-foundation.org
21299 L:      linux-fsdevel@vger.kernel.org
21300 S:      Supported
21301 W:      https://virtio-fs.gitlab.io/
21302 F:      Documentation/filesystems/virtiofs.rst
21303 F:      fs/fuse/virtio_fs.c
21304 F:      include/uapi/linux/virtio_fs.h
21305
21306 VIRTIO GPIO DRIVER
21307 M:      Enrico Weigelt, metux IT consult <info@metux.net>
21308 M:      Viresh Kumar <vireshk@kernel.org>
21309 L:      linux-gpio@vger.kernel.org
21310 L:      virtualization@lists.linux-foundation.org
21311 S:      Maintained
21312 F:      drivers/gpio/gpio-virtio.c
21313 F:      include/uapi/linux/virtio_gpio.h
21314
21315 VIRTIO GPU DRIVER
21316 M:      David Airlie <airlied@linux.ie>
21317 M:      Gerd Hoffmann <kraxel@redhat.com>
21318 R:      Gurchetan Singh <gurchetansingh@chromium.org>
21319 R:      Chia-I Wu <olvaffe@gmail.com>
21320 L:      dri-devel@lists.freedesktop.org
21321 L:      virtualization@lists.linux-foundation.org
21322 S:      Maintained
21323 T:      git git://anongit.freedesktop.org/drm/drm-misc
21324 F:      drivers/gpu/drm/virtio/
21325 F:      include/uapi/linux/virtio_gpu.h
21326
21327 VIRTIO HOST (VHOST)
21328 M:      "Michael S. Tsirkin" <mst@redhat.com>
21329 M:      Jason Wang <jasowang@redhat.com>
21330 L:      kvm@vger.kernel.org
21331 L:      virtualization@lists.linux-foundation.org
21332 L:      netdev@vger.kernel.org
21333 S:      Maintained
21334 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost.git
21335 F:      drivers/vhost/
21336 F:      include/linux/vhost_iotlb.h
21337 F:      include/uapi/linux/vhost.h
21338
21339 VIRTIO INPUT DRIVER
21340 M:      Gerd Hoffmann <kraxel@redhat.com>
21341 S:      Maintained
21342 F:      drivers/virtio/virtio_input.c
21343 F:      include/uapi/linux/virtio_input.h
21344
21345 VIRTIO IOMMU DRIVER
21346 M:      Jean-Philippe Brucker <jean-philippe@linaro.org>
21347 L:      virtualization@lists.linux-foundation.org
21348 S:      Maintained
21349 F:      drivers/iommu/virtio-iommu.c
21350 F:      include/uapi/linux/virtio_iommu.h
21351
21352 VIRTIO MEM DRIVER
21353 M:      David Hildenbrand <david@redhat.com>
21354 L:      virtualization@lists.linux-foundation.org
21355 S:      Maintained
21356 W:      https://virtio-mem.gitlab.io/
21357 F:      drivers/virtio/virtio_mem.c
21358 F:      include/uapi/linux/virtio_mem.h
21359
21360 VIRTIO SOUND DRIVER
21361 M:      Anton Yakovlev <anton.yakovlev@opensynergy.com>
21362 M:      "Michael S. Tsirkin" <mst@redhat.com>
21363 L:      virtualization@lists.linux-foundation.org
21364 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
21365 S:      Maintained
21366 F:      include/uapi/linux/virtio_snd.h
21367 F:      sound/virtio/*
21368
21369 VIRTIO I2C DRIVER
21370 M:      Conghui Chen <conghui.chen@intel.com>
21371 M:      Viresh Kumar <viresh.kumar@linaro.org>
21372 L:      linux-i2c@vger.kernel.org
21373 L:      virtualization@lists.linux-foundation.org
21374 S:      Maintained
21375 F:      drivers/i2c/busses/i2c-virtio.c
21376 F:      include/uapi/linux/virtio_i2c.h
21377
21378 VIRTIO PMEM DRIVER
21379 M:      Pankaj Gupta <pankaj.gupta.linux@gmail.com>
21380 L:      virtualization@lists.linux-foundation.org
21381 S:      Maintained
21382 F:      drivers/nvdimm/virtio_pmem.c
21383 F:      drivers/nvdimm/nd_virtio.c
21384
21385 VIRTUAL BOX GUEST DEVICE DRIVER
21386 M:      Hans de Goede <hdegoede@redhat.com>
21387 M:      Arnd Bergmann <arnd@arndb.de>
21388 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
21389 S:      Maintained
21390 F:      drivers/virt/vboxguest/
21391 F:      include/linux/vbox_utils.h
21392 F:      include/uapi/linux/vbox*.h
21393
21394 VIRTUAL BOX SHARED FOLDER VFS DRIVER
21395 M:      Hans de Goede <hdegoede@redhat.com>
21396 L:      linux-fsdevel@vger.kernel.org
21397 S:      Maintained
21398 F:      fs/vboxsf/*
21399
21400 VIRTUAL SERIO DEVICE DRIVER
21401 M:      Stephen Chandler Paul <thatslyude@gmail.com>
21402 S:      Maintained
21403 F:      drivers/input/serio/userio.c
21404 F:      include/uapi/linux/userio.h
21405
21406 VIVID VIRTUAL VIDEO DRIVER
21407 M:      Hans Verkuil <hverkuil@xs4all.nl>
21408 L:      linux-media@vger.kernel.org
21409 S:      Maintained
21410 W:      https://linuxtv.org
21411 T:      git git://linuxtv.org/media_tree.git
21412 F:      drivers/media/test-drivers/vivid/*
21413
21414 VIDTV VIRTUAL DIGITAL TV DRIVER
21415 M:      Daniel W. S. Almeida <dwlsalmeida@gmail.com>
21416 L:      linux-media@vger.kernel.org
21417 S:      Maintained
21418 W:      https://linuxtv.org
21419 T:      git git://linuxtv.org/media_tree.git
21420 F:      drivers/media/test-drivers/vidtv/*
21421
21422 VLYNQ BUS
21423 M:      Florian Fainelli <f.fainelli@gmail.com>
21424 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
21425 S:      Maintained
21426 F:      drivers/vlynq/vlynq.c
21427 F:      include/linux/vlynq.h
21428
21429 VME SUBSYSTEM
21430 M:      Martyn Welch <martyn@welchs.me.uk>
21431 M:      Manohar Vanga <manohar.vanga@gmail.com>
21432 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
21433 L:      linux-kernel@vger.kernel.org
21434 S:      Maintained
21435 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
21436 F:      Documentation/driver-api/vme.rst
21437 F:      drivers/staging/vme_user/
21438 F:      drivers/vme/
21439 F:      include/linux/vme*
21440
21441 VM SOCKETS (AF_VSOCK)
21442 M:      Stefano Garzarella <sgarzare@redhat.com>
21443 L:      virtualization@lists.linux-foundation.org
21444 L:      netdev@vger.kernel.org
21445 S:      Maintained
21446 F:      drivers/net/vsockmon.c
21447 F:      include/net/af_vsock.h
21448 F:      include/uapi/linux/vm_sockets.h
21449 F:      include/uapi/linux/vm_sockets_diag.h
21450 F:      include/uapi/linux/vsockmon.h
21451 F:      net/vmw_vsock/
21452 F:      tools/testing/vsock/
21453
21454 VMWARE BALLOON DRIVER
21455 M:      Nadav Amit <namit@vmware.com>
21456 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
21457 L:      linux-kernel@vger.kernel.org
21458 S:      Maintained
21459 F:      drivers/misc/vmw_balloon.c
21460
21461 VMWARE HYPERVISOR INTERFACE
21462 M:      Srivatsa S. Bhat (VMware) <srivatsa@csail.mit.edu>
21463 M:      Alexey Makhalov <amakhalov@vmware.com>
21464 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
21465 L:      virtualization@lists.linux-foundation.org
21466 L:      x86@kernel.org
21467 S:      Supported
21468 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vmware
21469 F:      arch/x86/include/asm/vmware.h
21470 F:      arch/x86/kernel/cpu/vmware.c
21471
21472 VMWARE PVRDMA DRIVER
21473 M:      Bryan Tan <bryantan@vmware.com>
21474 M:      Vishnu Dasa <vdasa@vmware.com>
21475 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
21476 L:      linux-rdma@vger.kernel.org
21477 S:      Maintained
21478 F:      drivers/infiniband/hw/vmw_pvrdma/
21479
21480 VMware PVSCSI driver
21481 M:      Vishal Bhakta <vbhakta@vmware.com>
21482 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
21483 L:      linux-scsi@vger.kernel.org
21484 S:      Maintained
21485 F:      drivers/scsi/vmw_pvscsi.c
21486 F:      drivers/scsi/vmw_pvscsi.h
21487
21488 VMWARE VIRTUAL PTP CLOCK DRIVER
21489 M:      Vivek Thampi <vithampi@vmware.com>
21490 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
21491 L:      netdev@vger.kernel.org
21492 S:      Supported
21493 F:      drivers/ptp/ptp_vmw.c
21494
21495 VMWARE VMCI DRIVER
21496 M:      Bryan Tan <bryantan@vmware.com>
21497 M:      Rajesh Jalisatgi <rjalisatgi@vmware.com>
21498 M:      Vishnu Dasa <vdasa@vmware.com>
21499 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
21500 L:      linux-kernel@vger.kernel.org
21501 S:      Maintained
21502 F:      drivers/misc/vmw_vmci/
21503
21504 VMWARE VMMOUSE SUBDRIVER
21505 M:      Zack Rusin <zackr@vmware.com>
21506 R:      VMware Graphics Reviewers <linux-graphics-maintainer@vmware.com>
21507 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
21508 L:      linux-input@vger.kernel.org
21509 S:      Maintained
21510 F:      drivers/input/mouse/vmmouse.c
21511 F:      drivers/input/mouse/vmmouse.h
21512
21513 VMWARE VMXNET3 ETHERNET DRIVER
21514 M:      Ronak Doshi <doshir@vmware.com>
21515 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
21516 L:      netdev@vger.kernel.org
21517 S:      Maintained
21518 F:      drivers/net/vmxnet3/
21519
21520 VOCORE VOCORE2 BOARD
21521 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
21522 L:      linux-mips@vger.kernel.org
21523 S:      Maintained
21524 F:      arch/mips/boot/dts/ralink/vocore2.dts
21525
21526 VOLTAGE AND CURRENT REGULATOR FRAMEWORK
21527 M:      Liam Girdwood <lgirdwood@gmail.com>
21528 M:      Mark Brown <broonie@kernel.org>
21529 L:      linux-kernel@vger.kernel.org
21530 S:      Supported
21531 W:      http://www.slimlogic.co.uk/?p=48
21532 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git
21533 F:      Documentation/devicetree/bindings/regulator/
21534 F:      Documentation/power/regulator/
21535 F:      drivers/regulator/
21536 F:      include/dt-bindings/regulator/
21537 F:      include/linux/regulator/
21538 K:      regulator_get_optional
21539
21540 VOLTAGE AND CURRENT REGULATOR IRQ HELPERS
21541 R:      Matti Vaittinen <mazziesaccount@gmail.com>
21542 F:      drivers/regulator/irq_helpers.c
21543
21544 VRF
21545 M:      David Ahern <dsahern@kernel.org>
21546 L:      netdev@vger.kernel.org
21547 S:      Maintained
21548 F:      Documentation/networking/vrf.rst
21549 F:      drivers/net/vrf.c
21550
21551 VSPRINTF
21552 M:      Petr Mladek <pmladek@suse.com>
21553 M:      Steven Rostedt <rostedt@goodmis.org>
21554 M:      Sergey Senozhatsky <senozhatsky@chromium.org>
21555 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
21556 R:      Rasmus Villemoes <linux@rasmusvillemoes.dk>
21557 S:      Maintained
21558 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/printk/linux.git
21559 F:      Documentation/core-api/printk-formats.rst
21560 F:      lib/test_printf.c
21561 F:      lib/test_scanf.c
21562 F:      lib/vsprintf.c
21563
21564 VT1211 HARDWARE MONITOR DRIVER
21565 M:      Juerg Haefliger <juergh@gmail.com>
21566 L:      linux-hwmon@vger.kernel.org
21567 S:      Maintained
21568 F:      Documentation/hwmon/vt1211.rst
21569 F:      drivers/hwmon/vt1211.c
21570
21571 VT8231 HARDWARE MONITOR DRIVER
21572 M:      Roger Lucas <vt8231@hiddenengine.co.uk>
21573 L:      linux-hwmon@vger.kernel.org
21574 S:      Maintained
21575 F:      drivers/hwmon/vt8231.c
21576
21577 VUB300 USB to SDIO/SD/MMC bridge chip
21578 L:      linux-mmc@vger.kernel.org
21579 S:      Orphan
21580 F:      drivers/mmc/host/vub300.c
21581
21582 W1 DALLAS'S 1-WIRE BUS
21583 M:      Evgeniy Polyakov <zbr@ioremap.net>
21584 S:      Maintained
21585 F:      Documentation/devicetree/bindings/w1/
21586 F:      Documentation/w1/
21587 F:      drivers/w1/
21588 F:      include/linux/w1.h
21589
21590 W83791D HARDWARE MONITORING DRIVER
21591 M:      Marc Hulsman <m.hulsman@tudelft.nl>
21592 L:      linux-hwmon@vger.kernel.org
21593 S:      Maintained
21594 F:      Documentation/hwmon/w83791d.rst
21595 F:      drivers/hwmon/w83791d.c
21596
21597 W83793 HARDWARE MONITORING DRIVER
21598 M:      Rudolf Marek <r.marek@assembler.cz>
21599 L:      linux-hwmon@vger.kernel.org
21600 S:      Maintained
21601 F:      Documentation/hwmon/w83793.rst
21602 F:      drivers/hwmon/w83793.c
21603
21604 W83795 HARDWARE MONITORING DRIVER
21605 M:      Jean Delvare <jdelvare@suse.com>
21606 L:      linux-hwmon@vger.kernel.org
21607 S:      Maintained
21608 F:      drivers/hwmon/w83795.c
21609
21610 W83L51xD SD/MMC CARD INTERFACE DRIVER
21611 M:      Pierre Ossman <pierre@ossman.eu>
21612 S:      Maintained
21613 F:      drivers/mmc/host/wbsd.*
21614
21615 WACOM PROTOCOL 4 SERIAL TABLETS
21616 M:      Julian Squires <julian@cipht.net>
21617 M:      Hans de Goede <hdegoede@redhat.com>
21618 L:      linux-input@vger.kernel.org
21619 S:      Maintained
21620 F:      drivers/input/tablet/wacom_serial4.c
21621
21622 WATCHDOG DEVICE DRIVERS
21623 M:      Wim Van Sebroeck <wim@linux-watchdog.org>
21624 M:      Guenter Roeck <linux@roeck-us.net>
21625 L:      linux-watchdog@vger.kernel.org
21626 S:      Maintained
21627 W:      http://www.linux-watchdog.org/
21628 T:      git git://www.linux-watchdog.org/linux-watchdog.git
21629 F:      Documentation/devicetree/bindings/watchdog/
21630 F:      Documentation/watchdog/
21631 F:      drivers/watchdog/
21632 F:      include/linux/watchdog.h
21633 F:      include/uapi/linux/watchdog.h
21634
21635 WHISKEYCOVE PMIC GPIO DRIVER
21636 M:      Kuppuswamy Sathyanarayanan <sathyanarayanan.kuppuswamy@linux.intel.com>
21637 L:      linux-gpio@vger.kernel.org
21638 S:      Maintained
21639 F:      drivers/gpio/gpio-wcove.c
21640
21641 WHWAVE RTC DRIVER
21642 M:      Dianlong Li <long17.cool@163.com>
21643 L:      linux-rtc@vger.kernel.org
21644 S:      Maintained
21645 F:      drivers/rtc/rtc-sd3078.c
21646
21647 WIIMOTE HID DRIVER
21648 M:      David Rheinsberg <david.rheinsberg@gmail.com>
21649 L:      linux-input@vger.kernel.org
21650 S:      Maintained
21651 F:      drivers/hid/hid-wiimote*
21652
21653 WILOCITY WIL6210 WIRELESS DRIVER
21654 L:      linux-wireless@vger.kernel.org
21655 S:      Orphan
21656 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wil6210
21657 F:      drivers/net/wireless/ath/wil6210/
21658
21659 WINBOND CIR DRIVER
21660 M:      David Härdeman <david@hardeman.nu>
21661 S:      Maintained
21662 F:      drivers/media/rc/winbond-cir.c
21663
21664 WINSYSTEMS EBC-C384 WATCHDOG DRIVER
21665 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
21666 L:      linux-watchdog@vger.kernel.org
21667 S:      Maintained
21668 F:      drivers/watchdog/ebc-c384_wdt.c
21669
21670 WINSYSTEMS WS16C48 GPIO DRIVER
21671 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
21672 L:      linux-gpio@vger.kernel.org
21673 S:      Maintained
21674 F:      drivers/gpio/gpio-ws16c48.c
21675
21676 WIREGUARD SECURE NETWORK TUNNEL
21677 M:      Jason A. Donenfeld <Jason@zx2c4.com>
21678 L:      wireguard@lists.zx2c4.com
21679 L:      netdev@vger.kernel.org
21680 S:      Maintained
21681 F:      drivers/net/wireguard/
21682 F:      tools/testing/selftests/wireguard/
21683
21684 WISTRON LAPTOP BUTTON DRIVER
21685 M:      Miloslav Trmac <mitr@volny.cz>
21686 S:      Maintained
21687 F:      drivers/input/misc/wistron_btns.c
21688
21689 WL3501 WIRELESS PCMCIA CARD DRIVER
21690 L:      linux-wireless@vger.kernel.org
21691 S:      Odd fixes
21692 F:      drivers/net/wireless/wl3501*
21693
21694 WOLFSON MICROELECTRONICS DRIVERS
21695 L:      patches@opensource.cirrus.com
21696 S:      Supported
21697 W:      https://github.com/CirrusLogic/linux-drivers/wiki
21698 T:      git https://github.com/CirrusLogic/linux-drivers.git
21699 F:      Documentation/devicetree/bindings/extcon/wlf,arizona.yaml
21700 F:      Documentation/devicetree/bindings/mfd/wlf,arizona.yaml
21701 F:      Documentation/devicetree/bindings/mfd/wm831x.txt
21702 F:      Documentation/devicetree/bindings/regulator/wlf,arizona.yaml
21703 F:      Documentation/devicetree/bindings/sound/wlf,*.yaml
21704 F:      Documentation/devicetree/bindings/sound/wm*
21705 F:      Documentation/hwmon/wm83??.rst
21706 F:      arch/arm/mach-s3c/mach-crag6410*
21707 F:      drivers/clk/clk-wm83*.c
21708 F:      drivers/gpio/gpio-*wm*.c
21709 F:      drivers/gpio/gpio-arizona.c
21710 F:      drivers/hwmon/wm83??-hwmon.c
21711 F:      drivers/input/misc/wm831x-on.c
21712 F:      drivers/input/touchscreen/wm831x-ts.c
21713 F:      drivers/input/touchscreen/wm97*.c
21714 F:      drivers/leds/leds-wm83*.c
21715 F:      drivers/mfd/arizona*
21716 F:      drivers/mfd/cs47l24*
21717 F:      drivers/mfd/wm*.c
21718 F:      drivers/power/supply/wm83*.c
21719 F:      drivers/regulator/arizona*
21720 F:      drivers/regulator/wm8*.c
21721 F:      drivers/rtc/rtc-wm83*.c
21722 F:      drivers/video/backlight/wm83*_bl.c
21723 F:      drivers/watchdog/wm83*_wdt.c
21724 F:      include/linux/mfd/arizona/
21725 F:      include/linux/mfd/wm831x/
21726 F:      include/linux/mfd/wm8350/
21727 F:      include/linux/mfd/wm8400*
21728 F:      include/linux/regulator/arizona*
21729 F:      include/linux/wm97xx.h
21730 F:      include/sound/wm????.h
21731 F:      sound/soc/codecs/arizona*
21732 F:      sound/soc/codecs/cs47l24*
21733 F:      sound/soc/codecs/wm*
21734
21735 WORKQUEUE
21736 M:      Tejun Heo <tj@kernel.org>
21737 R:      Lai Jiangshan <jiangshanlai@gmail.com>
21738 S:      Maintained
21739 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
21740 F:      Documentation/core-api/workqueue.rst
21741 F:      include/linux/workqueue.h
21742 F:      kernel/workqueue.c
21743
21744 WWAN DRIVERS
21745 M:      Loic Poulain <loic.poulain@linaro.org>
21746 M:      Sergey Ryazanov <ryazanov.s.a@gmail.com>
21747 R:      Johannes Berg <johannes@sipsolutions.net>
21748 L:      netdev@vger.kernel.org
21749 S:      Maintained
21750 F:      drivers/net/wwan/
21751 F:      include/linux/wwan.h
21752 F:      include/uapi/linux/wwan.h
21753
21754 X-POWERS AXP288 PMIC DRIVERS
21755 M:      Hans de Goede <hdegoede@redhat.com>
21756 S:      Maintained
21757 F:      drivers/acpi/pmic/intel_pmic_xpower.c
21758 N:      axp288
21759
21760 X-POWERS MULTIFUNCTION PMIC DEVICE DRIVERS
21761 M:      Chen-Yu Tsai <wens@csie.org>
21762 L:      linux-kernel@vger.kernel.org
21763 S:      Maintained
21764 N:      axp[128]
21765
21766 X.25 STACK
21767 M:      Martin Schiller <ms@dev.tdt.de>
21768 L:      linux-x25@vger.kernel.org
21769 S:      Maintained
21770 F:      Documentation/networking/lapb-module.rst
21771 F:      Documentation/networking/x25*
21772 F:      drivers/net/wan/hdlc_x25.c
21773 F:      drivers/net/wan/lapbether.c
21774 F:      include/*/lapb.h
21775 F:      include/net/x25*
21776 F:      include/uapi/linux/x25.h
21777 F:      net/lapb/
21778 F:      net/x25/
21779
21780 X86 ARCHITECTURE (32-BIT AND 64-BIT)
21781 M:      Thomas Gleixner <tglx@linutronix.de>
21782 M:      Ingo Molnar <mingo@redhat.com>
21783 M:      Borislav Petkov <bp@alien8.de>
21784 M:      Dave Hansen <dave.hansen@linux.intel.com>
21785 M:      x86@kernel.org
21786 R:      "H. Peter Anvin" <hpa@zytor.com>
21787 L:      linux-kernel@vger.kernel.org
21788 S:      Maintained
21789 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
21790 F:      Documentation/devicetree/bindings/x86/
21791 F:      Documentation/x86/
21792 F:      arch/x86/
21793
21794 X86 ENTRY CODE
21795 M:      Andy Lutomirski <luto@kernel.org>
21796 L:      linux-kernel@vger.kernel.org
21797 S:      Maintained
21798 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/asm
21799 F:      arch/x86/entry/
21800
21801 X86 MCE INFRASTRUCTURE
21802 M:      Tony Luck <tony.luck@intel.com>
21803 M:      Borislav Petkov <bp@alien8.de>
21804 L:      linux-edac@vger.kernel.org
21805 S:      Maintained
21806 F:      Documentation/ABI/testing/sysfs-mce
21807 F:      Documentation/x86/x86_64/machinecheck.rst
21808 F:      arch/x86/kernel/cpu/mce/*
21809
21810 X86 MICROCODE UPDATE SUPPORT
21811 M:      Borislav Petkov <bp@alien8.de>
21812 S:      Maintained
21813 F:      arch/x86/kernel/cpu/microcode/*
21814
21815 X86 MM
21816 M:      Dave Hansen <dave.hansen@linux.intel.com>
21817 M:      Andy Lutomirski <luto@kernel.org>
21818 M:      Peter Zijlstra <peterz@infradead.org>
21819 L:      linux-kernel@vger.kernel.org
21820 S:      Maintained
21821 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/mm
21822 F:      arch/x86/mm/
21823
21824 X86 PLATFORM ANDROID TABLETS DSDT FIXUP DRIVER
21825 M:      Hans de Goede <hdegoede@redhat.com>
21826 L:      platform-driver-x86@vger.kernel.org
21827 S:      Maintained
21828 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
21829 F:      drivers/platform/x86/x86-android-tablets.c
21830
21831 X86 PLATFORM DRIVERS
21832 M:      Hans de Goede <hdegoede@redhat.com>
21833 M:      Mark Gross <markgross@kernel.org>
21834 L:      platform-driver-x86@vger.kernel.org
21835 S:      Maintained
21836 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
21837 F:      drivers/platform/olpc/
21838 F:      drivers/platform/x86/
21839
21840 X86 PLATFORM DRIVERS - ARCH
21841 R:      Darren Hart <dvhart@infradead.org>
21842 R:      Andy Shevchenko <andy@infradead.org>
21843 L:      platform-driver-x86@vger.kernel.org
21844 L:      x86@kernel.org
21845 S:      Maintained
21846 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
21847 F:      arch/x86/platform
21848
21849 X86 PLATFORM UV HPE SUPERDOME FLEX
21850 M:      Steve Wahl <steve.wahl@hpe.com>
21851 R:      Mike Travis <mike.travis@hpe.com>
21852 R:      Dimitri Sivanich <dimitri.sivanich@hpe.com>
21853 R:      Russ Anderson <russ.anderson@hpe.com>
21854 S:      Supported
21855 F:      arch/x86/include/asm/uv/
21856 F:      arch/x86/kernel/apic/x2apic_uv_x.c
21857 F:      arch/x86/platform/uv/
21858
21859 X86 STACK UNWINDING
21860 M:      Josh Poimboeuf <jpoimboe@kernel.org>
21861 M:      Peter Zijlstra <peterz@infradead.org>
21862 S:      Supported
21863 F:      arch/x86/include/asm/unwind*.h
21864 F:      arch/x86/kernel/dumpstack.c
21865 F:      arch/x86/kernel/stacktrace.c
21866 F:      arch/x86/kernel/unwind_*.c
21867
21868 X86 VDSO
21869 M:      Andy Lutomirski <luto@kernel.org>
21870 L:      linux-kernel@vger.kernel.org
21871 S:      Maintained
21872 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso
21873 F:      arch/x86/entry/vdso/
21874
21875 XARRAY
21876 M:      Matthew Wilcox <willy@infradead.org>
21877 L:      linux-fsdevel@vger.kernel.org
21878 S:      Supported
21879 F:      Documentation/core-api/xarray.rst
21880 F:      include/linux/idr.h
21881 F:      include/linux/xarray.h
21882 F:      lib/idr.c
21883 F:      lib/xarray.c
21884 F:      tools/testing/radix-tree
21885
21886 XBOX DVD IR REMOTE
21887 M:      Benjamin Valentin <benpicco@googlemail.com>
21888 S:      Maintained
21889 F:      drivers/media/rc/keymaps/rc-xbox-dvd.c
21890 F:      drivers/media/rc/xbox_remote.c
21891
21892 XC2028/3028 TUNER DRIVER
21893 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
21894 L:      linux-media@vger.kernel.org
21895 S:      Maintained
21896 W:      https://linuxtv.org
21897 T:      git git://linuxtv.org/media_tree.git
21898 F:      drivers/media/tuners/xc2028.*
21899
21900 XDP (eXpress Data Path)
21901 M:      Alexei Starovoitov <ast@kernel.org>
21902 M:      Daniel Borkmann <daniel@iogearbox.net>
21903 M:      David S. Miller <davem@davemloft.net>
21904 M:      Jakub Kicinski <kuba@kernel.org>
21905 M:      Jesper Dangaard Brouer <hawk@kernel.org>
21906 M:      John Fastabend <john.fastabend@gmail.com>
21907 L:      netdev@vger.kernel.org
21908 L:      bpf@vger.kernel.org
21909 S:      Supported
21910 F:      include/net/xdp.h
21911 F:      include/net/xdp_priv.h
21912 F:      include/trace/events/xdp.h
21913 F:      kernel/bpf/cpumap.c
21914 F:      kernel/bpf/devmap.c
21915 F:      net/core/xdp.c
21916 F:      samples/bpf/xdp*
21917 F:      tools/testing/selftests/bpf/*xdp*
21918 F:      tools/testing/selftests/bpf/*/*xdp*
21919 F:      drivers/net/ethernet/*/*/*/*/*xdp*
21920 F:      drivers/net/ethernet/*/*/*xdp*
21921 K:      (?:\b|_)xdp(?:\b|_)
21922
21923 XDP SOCKETS (AF_XDP)
21924 M:      Björn Töpel <bjorn@kernel.org>
21925 M:      Magnus Karlsson <magnus.karlsson@intel.com>
21926 M:      Maciej Fijalkowski <maciej.fijalkowski@intel.com>
21927 R:      Jonathan Lemon <jonathan.lemon@gmail.com>
21928 L:      netdev@vger.kernel.org
21929 L:      bpf@vger.kernel.org
21930 S:      Maintained
21931 F:      Documentation/networking/af_xdp.rst
21932 F:      include/net/xdp_sock*
21933 F:      include/net/xsk_buff_pool.h
21934 F:      include/uapi/linux/if_xdp.h
21935 F:      include/uapi/linux/xdp_diag.h
21936 F:      include/net/netns/xdp.h
21937 F:      net/xdp/
21938 F:      samples/bpf/xdpsock*
21939 F:      tools/lib/bpf/xsk*
21940
21941 XEN BLOCK SUBSYSTEM
21942 M:      Roger Pau Monné <roger.pau@citrix.com>
21943 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
21944 S:      Supported
21945 F:      drivers/block/xen*
21946 F:      drivers/block/xen-blkback/*
21947
21948 XEN HYPERVISOR ARM
21949 M:      Stefano Stabellini <sstabellini@kernel.org>
21950 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
21951 S:      Maintained
21952 F:      arch/arm/include/asm/xen/
21953 F:      arch/arm/xen/
21954
21955 XEN HYPERVISOR ARM64
21956 M:      Stefano Stabellini <sstabellini@kernel.org>
21957 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
21958 S:      Maintained
21959 F:      arch/arm64/include/asm/xen/
21960 F:      arch/arm64/xen/
21961
21962 XEN HYPERVISOR INTERFACE
21963 M:      Juergen Gross <jgross@suse.com>
21964 M:      Stefano Stabellini <sstabellini@kernel.org>
21965 R:      Oleksandr Tyshchenko <oleksandr_tyshchenko@epam.com>
21966 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
21967 S:      Supported
21968 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git
21969 F:      Documentation/ABI/stable/sysfs-hypervisor-xen
21970 F:      Documentation/ABI/testing/sysfs-hypervisor-xen
21971 F:      drivers/*/xen-*front.c
21972 F:      drivers/xen/
21973 F:      include/uapi/xen/
21974 F:      include/xen/
21975
21976 XEN HYPERVISOR X86
21977 M:      Juergen Gross <jgross@suse.com>
21978 R:      Boris Ostrovsky <boris.ostrovsky@oracle.com>
21979 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
21980 S:      Supported
21981 F:      arch/x86/include/asm/pvclock-abi.h
21982 F:      arch/x86/include/asm/xen/
21983 F:      arch/x86/platform/pvh/
21984 F:      arch/x86/xen/
21985
21986 XEN NETWORK BACKEND DRIVER
21987 M:      Wei Liu <wei.liu@kernel.org>
21988 M:      Paul Durrant <paul@xen.org>
21989 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
21990 L:      netdev@vger.kernel.org
21991 S:      Supported
21992 F:      drivers/net/xen-netback/*
21993
21994 XEN PCI SUBSYSTEM
21995 M:      Juergen Gross <jgross@suse.com>
21996 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
21997 S:      Supported
21998 F:      arch/x86/pci/*xen*
21999 F:      drivers/pci/*xen*
22000
22001 XEN PVSCSI DRIVERS
22002 M:      Juergen Gross <jgross@suse.com>
22003 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
22004 L:      linux-scsi@vger.kernel.org
22005 S:      Supported
22006 F:      drivers/scsi/xen-scsifront.c
22007 F:      drivers/xen/xen-scsiback.c
22008 F:      include/xen/interface/io/vscsiif.h
22009
22010 XEN PVUSB DRIVER
22011 M:      Juergen Gross <jgross@suse.com>
22012 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
22013 L:      linux-usb@vger.kernel.org
22014 S:      Supported
22015 F:      drivers/usb/host/xen*
22016 F:      include/xen/interface/io/usbif.h
22017
22018 XEN SOUND FRONTEND DRIVER
22019 M:      Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
22020 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
22021 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
22022 S:      Supported
22023 F:      sound/xen/*
22024
22025 XEN SWIOTLB SUBSYSTEM
22026 M:      Juergen Gross <jgross@suse.com>
22027 M:      Stefano Stabellini <sstabellini@kernel.org>
22028 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
22029 L:      iommu@lists.linux.dev
22030 S:      Supported
22031 F:      arch/x86/xen/*swiotlb*
22032 F:      drivers/xen/*swiotlb*
22033
22034 XFS FILESYSTEM
22035 C:      irc://irc.oftc.net/xfs
22036 M:      Darrick J. Wong <djwong@kernel.org>
22037 L:      linux-xfs@vger.kernel.org
22038 S:      Supported
22039 W:      http://xfs.org/
22040 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
22041 F:      Documentation/ABI/testing/sysfs-fs-xfs
22042 F:      Documentation/admin-guide/xfs.rst
22043 F:      Documentation/filesystems/xfs-delayed-logging-design.rst
22044 F:      Documentation/filesystems/xfs-self-describing-metadata.rst
22045 F:      fs/xfs/
22046 F:      include/uapi/linux/dqblk_xfs.h
22047 F:      include/uapi/linux/fsmap.h
22048
22049 XILINX AMS DRIVER
22050 M:      Anand Ashok Dumbre <anand.ashok.dumbre@xilinx.com>
22051 L:      linux-iio@vger.kernel.org
22052 S:      Maintained
22053 F:      Documentation/devicetree/bindings/iio/adc/xlnx,zynqmp-ams.yaml
22054 F:      drivers/iio/adc/xilinx-ams.c
22055
22056 XILINX AXI ETHERNET DRIVER
22057 M:      Radhey Shyam Pandey <radhey.shyam.pandey@xilinx.com>
22058 S:      Maintained
22059 F:      drivers/net/ethernet/xilinx/xilinx_axienet*
22060
22061 XILINX CAN DRIVER
22062 M:      Appana Durga Kedareswara rao <appana.durga.rao@xilinx.com>
22063 R:      Naga Sureshkumar Relli <naga.sureshkumar.relli@xilinx.com>
22064 L:      linux-can@vger.kernel.org
22065 S:      Maintained
22066 F:      Documentation/devicetree/bindings/net/can/xilinx,can.yaml
22067 F:      drivers/net/can/xilinx_can.c
22068
22069 XILINX GPIO DRIVER
22070 M:      Shubhrajyoti Datta <shubhrajyoti.datta@xilinx.com>
22071 R:      Srinivas Neeli <srinivas.neeli@xilinx.com>
22072 R:      Michal Simek <michal.simek@xilinx.com>
22073 S:      Maintained
22074 F:      Documentation/devicetree/bindings/gpio/gpio-xilinx.txt
22075 F:      Documentation/devicetree/bindings/gpio/gpio-zynq.yaml
22076 F:      drivers/gpio/gpio-xilinx.c
22077 F:      drivers/gpio/gpio-zynq.c
22078
22079 XILINX SD-FEC IP CORES
22080 M:      Derek Kiernan <derek.kiernan@xilinx.com>
22081 M:      Dragan Cvetic <dragan.cvetic@xilinx.com>
22082 S:      Maintained
22083 F:      Documentation/devicetree/bindings/misc/xlnx,sd-fec.txt
22084 F:      Documentation/misc-devices/xilinx_sdfec.rst
22085 F:      drivers/misc/Kconfig
22086 F:      drivers/misc/Makefile
22087 F:      drivers/misc/xilinx_sdfec.c
22088 F:      include/uapi/misc/xilinx_sdfec.h
22089
22090 XILINX PWM DRIVER
22091 M:      Sean Anderson <sean.anderson@seco.com>
22092 S:      Maintained
22093 F:      drivers/pwm/pwm-xilinx.c
22094 F:      include/clocksource/timer-xilinx.h
22095
22096 XILINX UARTLITE SERIAL DRIVER
22097 M:      Peter Korsgaard <jacmet@sunsite.dk>
22098 L:      linux-serial@vger.kernel.org
22099 S:      Maintained
22100 F:      drivers/tty/serial/uartlite.c
22101
22102 XILINX VIDEO IP CORES
22103 M:      Hyun Kwon <hyun.kwon@xilinx.com>
22104 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
22105 L:      linux-media@vger.kernel.org
22106 S:      Supported
22107 T:      git git://linuxtv.org/media_tree.git
22108 F:      Documentation/devicetree/bindings/media/xilinx/
22109 F:      drivers/media/platform/xilinx/
22110 F:      include/uapi/linux/xilinx-v4l2-controls.h
22111
22112 XILINX ZYNQMP DPDMA DRIVER
22113 M:      Hyun Kwon <hyun.kwon@xilinx.com>
22114 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
22115 L:      dmaengine@vger.kernel.org
22116 S:      Supported
22117 F:      Documentation/devicetree/bindings/dma/xilinx/xlnx,zynqmp-dpdma.yaml
22118 F:      drivers/dma/xilinx/xilinx_dpdma.c
22119 F:      include/dt-bindings/dma/xlnx-zynqmp-dpdma.h
22120
22121 XILINX ZYNQMP PSGTR PHY DRIVER
22122 M:      Anurag Kumar Vulisha <anurag.kumar.vulisha@xilinx.com>
22123 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
22124 L:      linux-kernel@vger.kernel.org
22125 S:      Supported
22126 T:      git https://github.com/Xilinx/linux-xlnx.git
22127 F:      Documentation/devicetree/bindings/phy/xlnx,zynqmp-psgtr.yaml
22128 F:      drivers/phy/xilinx/phy-zynqmp.c
22129
22130 XILINX ZYNQMP SHA3 DRIVER
22131 M:      Harsha <harsha.harsha@xilinx.com>
22132 S:      Maintained
22133 F:      drivers/crypto/xilinx/zynqmp-sha.c
22134
22135 XILINX EVENT MANAGEMENT DRIVER
22136 M:      Abhyuday Godhasara <abhyuday.godhasara@xilinx.com>
22137 S:      Maintained
22138 F:      drivers/soc/xilinx/xlnx_event_manager.c
22139 F:      include/linux/firmware/xlnx-event-manager.h
22140
22141 XILLYBUS DRIVER
22142 M:      Eli Billauer <eli.billauer@gmail.com>
22143 L:      linux-kernel@vger.kernel.org
22144 S:      Supported
22145 F:      drivers/char/xillybus/
22146
22147 XLP9XX I2C DRIVER
22148 M:      George Cherian <gcherian@marvell.com>
22149 L:      linux-i2c@vger.kernel.org
22150 S:      Supported
22151 W:      http://www.marvell.com
22152 F:      drivers/i2c/busses/i2c-xlp9xx.c
22153
22154 XRA1403 GPIO EXPANDER
22155 M:      Nandor Han <nandor.han@ge.com>
22156 M:      Semi Malinen <semi.malinen@ge.com>
22157 L:      linux-gpio@vger.kernel.org
22158 S:      Maintained
22159 F:      Documentation/devicetree/bindings/gpio/gpio-xra1403.txt
22160 F:      drivers/gpio/gpio-xra1403.c
22161
22162 XTENSA XTFPGA PLATFORM SUPPORT
22163 M:      Max Filippov <jcmvbkbc@gmail.com>
22164 L:      linux-xtensa@linux-xtensa.org
22165 S:      Maintained
22166 F:      drivers/spi/spi-xtensa-xtfpga.c
22167 F:      sound/soc/xtensa/xtfpga-i2s.c
22168
22169 YAM DRIVER FOR AX.25
22170 M:      Jean-Paul Roubelat <jpr@f6fbb.org>
22171 L:      linux-hams@vger.kernel.org
22172 S:      Maintained
22173 F:      drivers/net/hamradio/yam*
22174 F:      include/linux/yam.h
22175
22176 YAMA SECURITY MODULE
22177 M:      Kees Cook <keescook@chromium.org>
22178 S:      Supported
22179 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git yama/tip
22180 F:      Documentation/admin-guide/LSM/Yama.rst
22181 F:      security/yama/
22182
22183 YEALINK PHONE DRIVER
22184 M:      Henk Vergonet <Henk.Vergonet@gmail.com>
22185 L:      usbb2k-api-dev@nongnu.org
22186 S:      Maintained
22187 F:      Documentation/input/devices/yealink.rst
22188 F:      drivers/input/misc/yealink.*
22189
22190 Z8530 DRIVER FOR AX.25
22191 M:      Joerg Reuter <jreuter@yaina.de>
22192 L:      linux-hams@vger.kernel.org
22193 S:      Maintained
22194 W:      http://yaina.de/jreuter/
22195 W:      http://www.qsl.net/dl1bke/
22196 F:      Documentation/networking/device_drivers/hamradio/z8530drv.rst
22197 F:      drivers/net/hamradio/*scc.c
22198 F:      drivers/net/hamradio/z8530.h
22199
22200 ZBUD COMPRESSED PAGE ALLOCATOR
22201 M:      Seth Jennings <sjenning@redhat.com>
22202 M:      Dan Streetman <ddstreet@ieee.org>
22203 L:      linux-mm@kvack.org
22204 S:      Maintained
22205 F:      mm/zbud.c
22206
22207 Z3FOLD COMPRESSED PAGE ALLOCATOR
22208 M:      Vitaly Wool <vitaly.wool@konsulko.com>
22209 R:      Miaohe Lin <linmiaohe@huawei.com>
22210 L:      linux-mm@kvack.org
22211 S:      Maintained
22212 F:      mm/z3fold.c
22213
22214 ZD1211RW WIRELESS DRIVER
22215 M:      Ulrich Kunitz <kune@deine-taler.de>
22216 L:      linux-wireless@vger.kernel.org
22217 L:      zd1211-devs@lists.sourceforge.net (subscribers-only)
22218 S:      Maintained
22219 W:      http://zd1211.ath.cx/wiki/DriverRewrite
22220 F:      drivers/net/wireless/zydas/zd1211rw/
22221
22222 ZD1301 MEDIA DRIVER
22223 M:      Antti Palosaari <crope@iki.fi>
22224 L:      linux-media@vger.kernel.org
22225 S:      Maintained
22226 W:      https://linuxtv.org/
22227 W:      http://palosaari.fi/linux/
22228 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
22229 F:      drivers/media/usb/dvb-usb-v2/zd1301*
22230
22231 ZD1301_DEMOD MEDIA DRIVER
22232 M:      Antti Palosaari <crope@iki.fi>
22233 L:      linux-media@vger.kernel.org
22234 S:      Maintained
22235 W:      https://linuxtv.org/
22236 W:      http://palosaari.fi/linux/
22237 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
22238 F:      drivers/media/dvb-frontends/zd1301_demod*
22239
22240 ZHAOXIN PROCESSOR SUPPORT
22241 M:      Tony W Wang-oc <TonyWWang-oc@zhaoxin.com>
22242 L:      linux-kernel@vger.kernel.org
22243 S:      Maintained
22244 F:      arch/x86/kernel/cpu/zhaoxin.c
22245
22246 ZONEFS FILESYSTEM
22247 M:      Damien Le Moal <damien.lemoal@opensource.wdc.com>
22248 M:      Naohiro Aota <naohiro.aota@wdc.com>
22249 R:      Johannes Thumshirn <jth@kernel.org>
22250 L:      linux-fsdevel@vger.kernel.org
22251 S:      Maintained
22252 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dlemoal/zonefs.git
22253 F:      Documentation/filesystems/zonefs.rst
22254 F:      fs/zonefs/
22255
22256 ZPOOL COMPRESSED PAGE STORAGE API
22257 M:      Dan Streetman <ddstreet@ieee.org>
22258 L:      linux-mm@kvack.org
22259 S:      Maintained
22260 F:      include/linux/zpool.h
22261 F:      mm/zpool.c
22262
22263 ZR36067 VIDEO FOR LINUX DRIVER
22264 M:      Corentin Labbe <clabbe@baylibre.com>
22265 L:      mjpeg-users@lists.sourceforge.net
22266 L:      linux-media@vger.kernel.org
22267 S:      Maintained
22268 W:      http://mjpeg.sourceforge.net/driver-zoran/
22269 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
22270 F:      Documentation/driver-api/media/drivers/zoran.rst
22271 F:      drivers/staging/media/zoran/
22272
22273 ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER
22274 M:      Minchan Kim <minchan@kernel.org>
22275 M:      Nitin Gupta <ngupta@vflare.org>
22276 R:      Sergey Senozhatsky <senozhatsky@chromium.org>
22277 L:      linux-kernel@vger.kernel.org
22278 S:      Maintained
22279 F:      Documentation/admin-guide/blockdev/zram.rst
22280 F:      drivers/block/zram/
22281
22282 ZS DECSTATION Z85C30 SERIAL DRIVER
22283 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
22284 S:      Maintained
22285 F:      drivers/tty/serial/zs.*
22286
22287 ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR
22288 M:      Minchan Kim <minchan@kernel.org>
22289 M:      Nitin Gupta <ngupta@vflare.org>
22290 R:      Sergey Senozhatsky <senozhatsky@chromium.org>
22291 L:      linux-mm@kvack.org
22292 S:      Maintained
22293 F:      Documentation/vm/zsmalloc.rst
22294 F:      include/linux/zsmalloc.h
22295 F:      mm/zsmalloc.c
22296
22297 ZSTD
22298 M:      Nick Terrell <terrelln@fb.com>
22299 S:      Maintained
22300 B:      https://github.com/facebook/zstd/issues
22301 T:      git git://github.com/terrelln/linux.git
22302 F:      include/linux/zstd*
22303 F:      lib/zstd/
22304 F:      lib/decompress_unzstd.c
22305 F:      crypto/zstd.c
22306 N:      zstd
22307 K:      zstd
22308
22309 ZSWAP COMPRESSED SWAP CACHING
22310 M:      Seth Jennings <sjenning@redhat.com>
22311 M:      Dan Streetman <ddstreet@ieee.org>
22312 M:      Vitaly Wool <vitaly.wool@konsulko.com>
22313 L:      linux-mm@kvack.org
22314 S:      Maintained
22315 F:      mm/zswap.c
22316
22317 THE REST
22318 M:      Linus Torvalds <torvalds@linux-foundation.org>
22319 L:      linux-kernel@vger.kernel.org
22320 S:      Buried alive in reporters
22321 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
22322 F:      *
22323 F:      */