dt-bindings: dma: fsl-edma: Convert to DT schema
[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 A8293 MEDIA DRIVER
246 M:      Antti Palosaari <crope@iki.fi>
247 L:      linux-media@vger.kernel.org
248 S:      Maintained
249 W:      https://linuxtv.org
250 W:      http://palosaari.fi/linux/
251 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
252 T:      git git://linuxtv.org/anttip/media_tree.git
253 F:      drivers/media/dvb-frontends/a8293*
254
255 AACRAID SCSI RAID DRIVER
256 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
257 L:      linux-scsi@vger.kernel.org
258 S:      Supported
259 W:      http://www.adaptec.com/
260 F:      Documentation/scsi/aacraid.rst
261 F:      drivers/scsi/aacraid/
262
263 ABI/API
264 L:      linux-api@vger.kernel.org
265 F:      include/linux/syscalls.h
266 F:      kernel/sys_ni.c
267 X:      include/uapi/
268 X:      arch/*/include/uapi/
269
270 ABIT UGURU 1,2 HARDWARE MONITOR DRIVER
271 M:      Hans de Goede <hdegoede@redhat.com>
272 L:      linux-hwmon@vger.kernel.org
273 S:      Maintained
274 F:      drivers/hwmon/abituguru.c
275
276 ABIT UGURU 3 HARDWARE MONITOR DRIVER
277 M:      Alistair John Strachan <alistair@devzero.co.uk>
278 L:      linux-hwmon@vger.kernel.org
279 S:      Maintained
280 F:      drivers/hwmon/abituguru3.c
281
282 ACCES 104-DIO-48E GPIO DRIVER
283 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
284 L:      linux-gpio@vger.kernel.org
285 S:      Maintained
286 F:      drivers/gpio/gpio-104-dio-48e.c
287
288 ACCES 104-IDI-48 GPIO DRIVER
289 M:      "William Breathitt Gray" <vilhelm.gray@gmail.com>
290 L:      linux-gpio@vger.kernel.org
291 S:      Maintained
292 F:      drivers/gpio/gpio-104-idi-48.c
293
294 ACCES 104-IDIO-16 GPIO DRIVER
295 M:      "William Breathitt Gray" <vilhelm.gray@gmail.com>
296 L:      linux-gpio@vger.kernel.org
297 S:      Maintained
298 F:      drivers/gpio/gpio-104-idio-16.c
299
300 ACCES 104-QUAD-8 DRIVER
301 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
302 M:      Syed Nayyar Waris <syednwaris@gmail.com>
303 L:      linux-iio@vger.kernel.org
304 S:      Maintained
305 F:      drivers/counter/104-quad-8.c
306
307 ACCES PCI-IDIO-16 GPIO DRIVER
308 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
309 L:      linux-gpio@vger.kernel.org
310 S:      Maintained
311 F:      drivers/gpio/gpio-pci-idio-16.c
312
313 ACCES PCIe-IDIO-24 GPIO DRIVER
314 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
315 L:      linux-gpio@vger.kernel.org
316 S:      Maintained
317 F:      drivers/gpio/gpio-pcie-idio-24.c
318
319 ACENIC DRIVER
320 M:      Jes Sorensen <jes@trained-monkey.org>
321 L:      linux-acenic@sunsite.dk
322 S:      Maintained
323 F:      drivers/net/ethernet/alteon/acenic*
324
325 ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER
326 M:      Peter Kaestle <peter@piie.net>
327 L:      platform-driver-x86@vger.kernel.org
328 S:      Maintained
329 W:      http://piie.net/?section=acerhdf
330 F:      drivers/platform/x86/acerhdf.c
331
332 ACER WMI LAPTOP EXTRAS
333 M:      "Lee, Chun-Yi" <jlee@suse.com>
334 L:      platform-driver-x86@vger.kernel.org
335 S:      Maintained
336 F:      drivers/platform/x86/acer-wmi.c
337
338 ACPI
339 M:      "Rafael J. Wysocki" <rafael@kernel.org>
340 R:      Len Brown <lenb@kernel.org>
341 L:      linux-acpi@vger.kernel.org
342 S:      Supported
343 W:      https://01.org/linux-acpi
344 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
345 B:      https://bugzilla.kernel.org
346 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
347 F:      Documentation/ABI/testing/configfs-acpi
348 F:      Documentation/ABI/testing/sysfs-bus-acpi
349 F:      Documentation/firmware-guide/acpi/
350 F:      drivers/acpi/
351 F:      drivers/pci/*/*acpi*
352 F:      drivers/pci/*acpi*
353 F:      drivers/pnp/pnpacpi/
354 F:      include/acpi/
355 F:      include/linux/acpi.h
356 F:      include/linux/fwnode.h
357 F:      tools/power/acpi/
358
359 ACPI APEI
360 M:      "Rafael J. Wysocki" <rafael@kernel.org>
361 R:      Len Brown <lenb@kernel.org>
362 R:      James Morse <james.morse@arm.com>
363 R:      Tony Luck <tony.luck@intel.com>
364 R:      Borislav Petkov <bp@alien8.de>
365 L:      linux-acpi@vger.kernel.org
366 F:      drivers/acpi/apei/
367
368 ACPI COMPONENT ARCHITECTURE (ACPICA)
369 M:      Robert Moore <robert.moore@intel.com>
370 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
371 L:      linux-acpi@vger.kernel.org
372 L:      devel@acpica.org
373 S:      Supported
374 W:      https://acpica.org/
375 W:      https://github.com/acpica/acpica/
376 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
377 B:      https://bugzilla.kernel.org
378 B:      https://bugs.acpica.org
379 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
380 F:      drivers/acpi/acpica/
381 F:      include/acpi/
382 F:      tools/power/acpi/
383
384 ACPI FOR ARM64 (ACPI/arm64)
385 M:      Lorenzo Pieralisi <lpieralisi@kernel.org>
386 M:      Hanjun Guo <guohanjun@huawei.com>
387 M:      Sudeep Holla <sudeep.holla@arm.com>
388 L:      linux-acpi@vger.kernel.org
389 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
390 S:      Maintained
391 F:      drivers/acpi/arm64
392
393 ACPI SERIAL MULTI INSTANTIATE DRIVER
394 M:      Hans de Goede <hdegoede@redhat.com>
395 L:      platform-driver-x86@vger.kernel.org
396 S:      Maintained
397 F:      drivers/platform/x86/serial-multi-instantiate.c
398
399 ACPI PCC(Platform Communication Channel) MAILBOX DRIVER
400 M:      Sudeep Holla <sudeep.holla@arm.com>
401 L:      linux-acpi@vger.kernel.org
402 S:      Supported
403 F:      drivers/mailbox/pcc.c
404
405 ACPI PMIC DRIVERS
406 M:      "Rafael J. Wysocki" <rafael@kernel.org>
407 M:      Len Brown <lenb@kernel.org>
408 R:      Andy Shevchenko <andy@kernel.org>
409 R:      Mika Westerberg <mika.westerberg@linux.intel.com>
410 L:      linux-acpi@vger.kernel.org
411 S:      Supported
412 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
413 B:      https://bugzilla.kernel.org
414 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
415 F:      drivers/acpi/pmic/
416
417 ACPI THERMAL DRIVER
418 M:      Rafael J. Wysocki <rafael@kernel.org>
419 R:      Zhang Rui <rui.zhang@intel.com>
420 L:      linux-acpi@vger.kernel.org
421 S:      Supported
422 W:      https://01.org/linux-acpi
423 B:      https://bugzilla.kernel.org
424 F:      drivers/acpi/*thermal*
425
426 ACPI VIOT DRIVER
427 M:      Jean-Philippe Brucker <jean-philippe@linaro.org>
428 L:      linux-acpi@vger.kernel.org
429 L:      iommu@lists.linux-foundation.org
430 S:      Maintained
431 F:      drivers/acpi/viot.c
432 F:      include/linux/acpi_viot.h
433
434 ACPI WMI DRIVER
435 L:      platform-driver-x86@vger.kernel.org
436 S:      Orphan
437 F:      drivers/platform/x86/wmi.c
438 F:      include/uapi/linux/wmi.h
439
440 ACRN HYPERVISOR SERVICE MODULE
441 M:      Fei Li <fei1.li@intel.com>
442 L:      acrn-dev@lists.projectacrn.org (subscribers-only)
443 S:      Supported
444 W:      https://projectacrn.org
445 F:      Documentation/virt/acrn/
446 F:      drivers/virt/acrn/
447 F:      include/uapi/linux/acrn.h
448
449 AD1889 ALSA SOUND DRIVER
450 L:      linux-parisc@vger.kernel.org
451 S:      Maintained
452 W:      https://parisc.wiki.kernel.org/index.php/AD1889
453 F:      sound/pci/ad1889.*
454
455 AD5110 ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
456 M:      Mugilraj Dhavachelvan <dmugil2000@gmail.com>
457 L:      linux-iio@vger.kernel.org
458 S:      Supported
459 F:      drivers/iio/potentiometer/ad5110.c
460
461 AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
462 M:      Michael Hennerich <michael.hennerich@analog.com>
463 S:      Supported
464 W:      http://wiki.analog.com/AD5254
465 W:      https://ez.analog.com/linux-software-drivers
466 F:      drivers/misc/ad525x_dpot.c
467
468 AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821)
469 M:      Michael Hennerich <michael.hennerich@analog.com>
470 S:      Supported
471 W:      http://wiki.analog.com/AD5398
472 W:      https://ez.analog.com/linux-software-drivers
473 F:      drivers/regulator/ad5398.c
474
475 AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A)
476 M:      Michael Hennerich <michael.hennerich@analog.com>
477 S:      Supported
478 W:      http://wiki.analog.com/AD7142
479 W:      https://ez.analog.com/linux-software-drivers
480 F:      drivers/input/misc/ad714x.c
481
482 AD7877 TOUCHSCREEN DRIVER
483 M:      Michael Hennerich <michael.hennerich@analog.com>
484 S:      Supported
485 W:      http://wiki.analog.com/AD7877
486 W:      https://ez.analog.com/linux-software-drivers
487 F:      drivers/input/touchscreen/ad7877.c
488
489 AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889)
490 M:      Michael Hennerich <michael.hennerich@analog.com>
491 S:      Supported
492 W:      http://wiki.analog.com/AD7879
493 W:      https://ez.analog.com/linux-software-drivers
494 F:      drivers/input/touchscreen/ad7879.c
495
496 ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR)
497 M:      Jiri Kosina <jikos@kernel.org>
498 S:      Maintained
499
500 ADF7242 IEEE 802.15.4 RADIO DRIVER
501 M:      Michael Hennerich <michael.hennerich@analog.com>
502 L:      linux-wpan@vger.kernel.org
503 S:      Supported
504 W:      https://wiki.analog.com/ADF7242
505 W:      https://ez.analog.com/linux-software-drivers
506 F:      Documentation/devicetree/bindings/net/ieee802154/adf7242.txt
507 F:      drivers/net/ieee802154/adf7242.c
508
509 ADM1025 HARDWARE MONITOR DRIVER
510 M:      Jean Delvare <jdelvare@suse.com>
511 L:      linux-hwmon@vger.kernel.org
512 S:      Maintained
513 F:      Documentation/hwmon/adm1025.rst
514 F:      drivers/hwmon/adm1025.c
515
516 ADM1029 HARDWARE MONITOR DRIVER
517 M:      Corentin Labbe <clabbe.montjoie@gmail.com>
518 L:      linux-hwmon@vger.kernel.org
519 S:      Maintained
520 F:      drivers/hwmon/adm1029.c
521
522 ADM8211 WIRELESS DRIVER
523 L:      linux-wireless@vger.kernel.org
524 S:      Orphan
525 W:      https://wireless.wiki.kernel.org/
526 F:      drivers/net/wireless/admtek/adm8211.*
527
528 ADP1653 FLASH CONTROLLER DRIVER
529 M:      Sakari Ailus <sakari.ailus@iki.fi>
530 L:      linux-media@vger.kernel.org
531 S:      Maintained
532 F:      drivers/media/i2c/adp1653.c
533 F:      include/media/i2c/adp1653.h
534
535 ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501)
536 M:      Michael Hennerich <michael.hennerich@analog.com>
537 S:      Supported
538 W:      http://wiki.analog.com/ADP5520
539 W:      https://ez.analog.com/linux-software-drivers
540 F:      drivers/gpio/gpio-adp5520.c
541 F:      drivers/input/keyboard/adp5520-keys.c
542 F:      drivers/leds/leds-adp5520.c
543 F:      drivers/mfd/adp5520.c
544 F:      drivers/video/backlight/adp5520_bl.c
545
546 ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587)
547 M:      Michael Hennerich <michael.hennerich@analog.com>
548 S:      Supported
549 W:      http://wiki.analog.com/ADP5588
550 W:      https://ez.analog.com/linux-software-drivers
551 F:      drivers/gpio/gpio-adp5588.c
552 F:      drivers/input/keyboard/adp5588-keys.c
553
554 ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863)
555 M:      Michael Hennerich <michael.hennerich@analog.com>
556 S:      Supported
557 W:      http://wiki.analog.com/ADP8860
558 W:      https://ez.analog.com/linux-software-drivers
559 F:      drivers/video/backlight/adp8860_bl.c
560
561 ADT746X FAN DRIVER
562 M:      Colin Leroy <colin@colino.net>
563 S:      Maintained
564 F:      drivers/macintosh/therm_adt746x.c
565
566 ADT7475 HARDWARE MONITOR DRIVER
567 M:      Jean Delvare <jdelvare@suse.com>
568 L:      linux-hwmon@vger.kernel.org
569 S:      Maintained
570 F:      Documentation/hwmon/adt7475.rst
571 F:      drivers/hwmon/adt7475.c
572
573 ADVANSYS SCSI DRIVER
574 M:      Matthew Wilcox <willy@infradead.org>
575 M:      Hannes Reinecke <hare@suse.com>
576 L:      linux-scsi@vger.kernel.org
577 S:      Maintained
578 F:      Documentation/scsi/advansys.rst
579 F:      drivers/scsi/advansys.c
580
581 ADVANTECH SWBTN DRIVER
582 M:      Andrea Ho <Andrea.Ho@advantech.com.tw>
583 L:      platform-driver-x86@vger.kernel.org
584 S:      Maintained
585 F:      drivers/platform/x86/adv_swbutton.c
586
587 ADXL313 THREE-AXIS DIGITAL ACCELEROMETER DRIVER
588 M:      Lucas Stankus <lucas.p.stankus@gmail.com>
589 S:      Supported
590 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl313.yaml
591 F:      drivers/iio/accel/adxl313*
592
593 ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346)
594 M:      Michael Hennerich <michael.hennerich@analog.com>
595 S:      Supported
596 W:      http://wiki.analog.com/ADXL345
597 W:      https://ez.analog.com/linux-software-drivers
598 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl345.yaml
599 F:      drivers/input/misc/adxl34x.c
600
601 ADXL355 THREE-AXIS DIGITAL ACCELEROMETER DRIVER
602 M:      Puranjay Mohan <puranjay12@gmail.com>
603 L:      linux-iio@vger.kernel.org
604 S:      Supported
605 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl355.yaml
606 F:      drivers/iio/accel/adxl355.h
607 F:      drivers/iio/accel/adxl355_core.c
608 F:      drivers/iio/accel/adxl355_i2c.c
609 F:      drivers/iio/accel/adxl355_spi.c
610
611 ADXL367 THREE-AXIS DIGITAL ACCELEROMETER DRIVER
612 M:      Cosmin Tanislav <cosmin.tanislav@analog.com>
613 L:      linux-iio@vger.kernel.org
614 S:      Supported
615 W:      http://ez.analog.com/community/linux-device-drivers
616 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl367.yaml
617 F:      drivers/iio/accel/adxl367*
618
619 ADXL372 THREE-AXIS DIGITAL ACCELEROMETER DRIVER
620 M:      Michael Hennerich <michael.hennerich@analog.com>
621 S:      Supported
622 W:      https://ez.analog.com/linux-software-drivers
623 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl372.yaml
624 F:      drivers/iio/accel/adxl372.c
625 F:      drivers/iio/accel/adxl372_i2c.c
626 F:      drivers/iio/accel/adxl372_spi.c
627
628 AF9013 MEDIA DRIVER
629 M:      Antti Palosaari <crope@iki.fi>
630 L:      linux-media@vger.kernel.org
631 S:      Maintained
632 W:      https://linuxtv.org
633 W:      http://palosaari.fi/linux/
634 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
635 T:      git git://linuxtv.org/anttip/media_tree.git
636 F:      drivers/media/dvb-frontends/af9013*
637
638 AF9033 MEDIA DRIVER
639 M:      Antti Palosaari <crope@iki.fi>
640 L:      linux-media@vger.kernel.org
641 S:      Maintained
642 W:      https://linuxtv.org
643 W:      http://palosaari.fi/linux/
644 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
645 T:      git git://linuxtv.org/anttip/media_tree.git
646 F:      drivers/media/dvb-frontends/af9033*
647
648 AFFS FILE SYSTEM
649 M:      David Sterba <dsterba@suse.com>
650 L:      linux-fsdevel@vger.kernel.org
651 S:      Odd Fixes
652 F:      Documentation/filesystems/affs.rst
653 F:      fs/affs/
654
655 AFS FILESYSTEM
656 M:      David Howells <dhowells@redhat.com>
657 M:      Marc Dionne <marc.dionne@auristor.com>
658 L:      linux-afs@lists.infradead.org
659 S:      Supported
660 W:      https://www.infradead.org/~dhowells/kafs/
661 F:      Documentation/filesystems/afs.rst
662 F:      fs/afs/
663 F:      include/trace/events/afs.h
664
665 AGPGART DRIVER
666 M:      David Airlie <airlied@linux.ie>
667 S:      Maintained
668 T:      git git://anongit.freedesktop.org/drm/drm
669 F:      drivers/char/agp/
670 F:      include/linux/agp*
671 F:      include/uapi/linux/agp*
672
673 AHA152X SCSI DRIVER
674 M:      "Juergen E. Fischer" <fischer@norbit.de>
675 L:      linux-scsi@vger.kernel.org
676 S:      Maintained
677 F:      drivers/scsi/aha152x*
678 F:      drivers/scsi/pcmcia/aha152x*
679
680 AIC7XXX / AIC79XX SCSI DRIVER
681 M:      Hannes Reinecke <hare@suse.com>
682 L:      linux-scsi@vger.kernel.org
683 S:      Maintained
684 F:      drivers/scsi/aic7xxx/
685
686 AIMSLAB FM RADIO RECEIVER DRIVER
687 M:      Hans Verkuil <hverkuil@xs4all.nl>
688 L:      linux-media@vger.kernel.org
689 S:      Maintained
690 W:      https://linuxtv.org
691 T:      git git://linuxtv.org/media_tree.git
692 F:      drivers/media/radio/radio-aimslab*
693
694 AIO
695 M:      Benjamin LaHaise <bcrl@kvack.org>
696 L:      linux-aio@kvack.org
697 S:      Supported
698 F:      fs/aio.c
699 F:      include/linux/*aio*.h
700
701 AIRSPY MEDIA DRIVER
702 M:      Antti Palosaari <crope@iki.fi>
703 L:      linux-media@vger.kernel.org
704 S:      Maintained
705 W:      https://linuxtv.org
706 W:      http://palosaari.fi/linux/
707 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
708 T:      git git://linuxtv.org/anttip/media_tree.git
709 F:      drivers/media/usb/airspy/
710
711 ALACRITECH GIGABIT ETHERNET DRIVER
712 M:      Lino Sanfilippo <LinoSanfilippo@gmx.de>
713 S:      Maintained
714 F:      drivers/net/ethernet/alacritech/*
715
716 ALCATEL SPEEDTOUCH USB DRIVER
717 M:      Duncan Sands <duncan.sands@free.fr>
718 L:      linux-usb@vger.kernel.org
719 S:      Maintained
720 W:      http://www.linux-usb.org/SpeedTouch/
721 F:      drivers/usb/atm/speedtch.c
722 F:      drivers/usb/atm/usbatm.c
723
724 ALCHEMY AU1XX0 MMC DRIVER
725 M:      Manuel Lauss <manuel.lauss@gmail.com>
726 S:      Maintained
727 F:      drivers/mmc/host/au1xmmc.c
728
729 ALI1563 I2C DRIVER
730 M:      Rudolf Marek <r.marek@assembler.cz>
731 L:      linux-i2c@vger.kernel.org
732 S:      Maintained
733 F:      Documentation/i2c/busses/i2c-ali1563.rst
734 F:      drivers/i2c/busses/i2c-ali1563.c
735
736 ALIENWARE WMI DRIVER
737 L:      Dell.Client.Kernel@dell.com
738 S:      Maintained
739 F:      drivers/platform/x86/dell/alienware-wmi.c
740
741 ALL SENSORS DLH SERIES PRESSURE SENSORS DRIVER
742 M:      Tomislav Denis <tomislav.denis@avl.com>
743 L:      linux-iio@vger.kernel.org
744 S:      Maintained
745 W:      http://www.allsensors.com/
746 F:      Documentation/devicetree/bindings/iio/pressure/asc,dlhl60d.yaml
747 F:      drivers/iio/pressure/dlhl60d.c
748
749 ALLEGRO DVT VIDEO IP CORE DRIVER
750 M:      Michael Tretter <m.tretter@pengutronix.de>
751 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
752 L:      linux-media@vger.kernel.org
753 S:      Maintained
754 F:      Documentation/devicetree/bindings/media/allegro,al5e.yaml
755 F:      drivers/media/platform/allegro-dvt/
756
757 ALLWINNER A10 CSI DRIVER
758 M:      Maxime Ripard <mripard@kernel.org>
759 L:      linux-media@vger.kernel.org
760 S:      Maintained
761 T:      git git://linuxtv.org/media_tree.git
762 F:      Documentation/devicetree/bindings/media/allwinner,sun4i-a10-csi.yaml
763 F:      drivers/media/platform/sunxi/sun4i-csi/
764
765 ALLWINNER CPUFREQ DRIVER
766 M:      Yangtao Li <tiny.windzz@gmail.com>
767 L:      linux-pm@vger.kernel.org
768 S:      Maintained
769 F:      Documentation/devicetree/bindings/opp/allwinner,sun50i-h6-operating-points.yaml
770 F:      drivers/cpufreq/sun50i-cpufreq-nvmem.c
771
772 ALLWINNER CRYPTO DRIVERS
773 M:      Corentin Labbe <clabbe.montjoie@gmail.com>
774 L:      linux-crypto@vger.kernel.org
775 S:      Maintained
776 F:      drivers/crypto/allwinner/
777
778 ALLWINNER HARDWARE SPINLOCK SUPPORT
779 M:      Wilken Gottwalt <wilken.gottwalt@posteo.net>
780 S:      Maintained
781 F:      Documentation/devicetree/bindings/hwlock/allwinner,sun6i-a31-hwspinlock.yaml
782 F:      drivers/hwspinlock/sun6i_hwspinlock.c
783
784 ALLWINNER THERMAL DRIVER
785 M:      Vasily Khoruzhick <anarsoul@gmail.com>
786 M:      Yangtao Li <tiny.windzz@gmail.com>
787 L:      linux-pm@vger.kernel.org
788 S:      Maintained
789 F:      Documentation/devicetree/bindings/thermal/allwinner,sun8i-a83t-ths.yaml
790 F:      drivers/thermal/sun8i_thermal.c
791
792 ALLWINNER VPU DRIVER
793 M:      Maxime Ripard <mripard@kernel.org>
794 M:      Paul Kocialkowski <paul.kocialkowski@bootlin.com>
795 L:      linux-media@vger.kernel.org
796 S:      Maintained
797 F:      drivers/staging/media/sunxi/cedrus/
798
799 ALPHA PORT
800 M:      Richard Henderson <rth@twiddle.net>
801 M:      Ivan Kokshaysky <ink@jurassic.park.msu.ru>
802 M:      Matt Turner <mattst88@gmail.com>
803 L:      linux-alpha@vger.kernel.org
804 S:      Odd Fixes
805 F:      arch/alpha/
806
807 ALPS PS/2 TOUCHPAD DRIVER
808 R:      Pali Rohár <pali@kernel.org>
809 F:      drivers/input/mouse/alps.*
810
811 ALTERA I2C CONTROLLER DRIVER
812 M:      Thor Thayer <thor.thayer@linux.intel.com>
813 S:      Maintained
814 F:      Documentation/devicetree/bindings/i2c/i2c-altera.txt
815 F:      drivers/i2c/busses/i2c-altera.c
816
817 ALTERA MAILBOX DRIVER
818 M:      Mun Yew Tham <mun.yew.tham@intel.com>
819 S:      Maintained
820 F:      drivers/mailbox/mailbox-altera.c
821
822 ALTERA MSGDMA IP CORE DRIVER
823 M:      Olivier Dautricourt <olivierdautricourt@gmail.com>
824 R:      Stefan Roese <sr@denx.de>
825 L:      dmaengine@vger.kernel.org
826 S:      Odd Fixes
827 F:      Documentation/devicetree/bindings/dma/altr,msgdma.yaml
828 F:      drivers/dma/altera-msgdma.c
829
830 ALTERA PIO DRIVER
831 M:      Mun Yew Tham <mun.yew.tham@intel.com>
832 L:      linux-gpio@vger.kernel.org
833 S:      Maintained
834 F:      drivers/gpio/gpio-altera.c
835
836 ALTERA SYSTEM MANAGER DRIVER
837 M:      Thor Thayer <thor.thayer@linux.intel.com>
838 S:      Maintained
839 F:      drivers/mfd/altera-sysmgr.c
840 F:      include/linux/mfd/altera-sysmgr.h
841
842 ALTERA SYSTEM RESOURCE DRIVER FOR ARRIA10 DEVKIT
843 M:      Thor Thayer <thor.thayer@linux.intel.com>
844 S:      Maintained
845 F:      drivers/gpio/gpio-altera-a10sr.c
846 F:      drivers/mfd/altera-a10sr.c
847 F:      drivers/reset/reset-a10sr.c
848 F:      include/dt-bindings/reset/altr,rst-mgr-a10sr.h
849 F:      include/linux/mfd/altera-a10sr.h
850
851 ALTERA TRIPLE SPEED ETHERNET DRIVER
852 M:      Joyce Ooi <joyce.ooi@intel.com>
853 L:      netdev@vger.kernel.org
854 S:      Maintained
855 F:      drivers/net/ethernet/altera/
856
857 ALTERA UART/JTAG UART SERIAL DRIVERS
858 M:      Tobias Klauser <tklauser@distanz.ch>
859 L:      linux-serial@vger.kernel.org
860 S:      Maintained
861 F:      drivers/tty/serial/altera_jtaguart.c
862 F:      drivers/tty/serial/altera_uart.c
863 F:      include/linux/altera_jtaguart.h
864 F:      include/linux/altera_uart.h
865
866 AMAZON ANNAPURNA LABS FIC DRIVER
867 M:      Talel Shenhar <talel@amazon.com>
868 S:      Maintained
869 F:      Documentation/devicetree/bindings/interrupt-controller/amazon,al-fic.txt
870 F:      drivers/irqchip/irq-al-fic.c
871
872 AMAZON ANNAPURNA LABS MEMORY CONTROLLER EDAC
873 M:      Talel Shenhar <talel@amazon.com>
874 M:      Talel Shenhar <talelshenhar@gmail.com>
875 S:      Maintained
876 F:      Documentation/devicetree/bindings/edac/amazon,al-mc-edac.yaml
877 F:      drivers/edac/al_mc_edac.c
878
879 AMAZON ANNAPURNA LABS THERMAL MMIO DRIVER
880 M:      Talel Shenhar <talel@amazon.com>
881 S:      Maintained
882 F:      Documentation/devicetree/bindings/thermal/amazon,al-thermal.txt
883 F:      drivers/thermal/thermal_mmio.c
884
885 AMAZON ETHERNET DRIVERS
886 M:      Shay Agroskin <shayagr@amazon.com>
887 M:      Arthur Kiyanovski <akiyano@amazon.com>
888 R:      David Arinzon <darinzon@amazon.com>
889 R:      Noam Dagan <ndagan@amazon.com>
890 R:      Saeed Bishara <saeedb@amazon.com>
891 L:      netdev@vger.kernel.org
892 S:      Supported
893 F:      Documentation/networking/device_drivers/ethernet/amazon/ena.rst
894 F:      drivers/net/ethernet/amazon/
895
896 AMAZON RDMA EFA DRIVER
897 M:      Gal Pressman <galpress@amazon.com>
898 R:      Yossi Leybovich <sleybo@amazon.com>
899 L:      linux-rdma@vger.kernel.org
900 S:      Supported
901 Q:      https://patchwork.kernel.org/project/linux-rdma/list/
902 F:      drivers/infiniband/hw/efa/
903 F:      include/uapi/rdma/efa-abi.h
904
905 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER
906 M:      Tom Lendacky <thomas.lendacky@amd.com>
907 M:      John Allen <john.allen@amd.com>
908 L:      linux-crypto@vger.kernel.org
909 S:      Supported
910 F:      drivers/crypto/ccp/
911 F:      include/linux/ccp.h
912
913 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER - SEV SUPPORT
914 M:      Brijesh Singh <brijesh.singh@amd.com>
915 M:      Tom Lendacky <thomas.lendacky@amd.com>
916 L:      linux-crypto@vger.kernel.org
917 S:      Supported
918 F:      drivers/crypto/ccp/sev*
919 F:      include/uapi/linux/psp-sev.h
920
921 AMD DISPLAY CORE
922 M:      Harry Wentland <harry.wentland@amd.com>
923 M:      Leo Li <sunpeng.li@amd.com>
924 M:      Rodrigo Siqueira <Rodrigo.Siqueira@amd.com>
925 L:      amd-gfx@lists.freedesktop.org
926 S:      Supported
927 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
928 F:      drivers/gpu/drm/amd/display/
929
930 AMD FAM15H PROCESSOR POWER MONITORING DRIVER
931 M:      Huang Rui <ray.huang@amd.com>
932 L:      linux-hwmon@vger.kernel.org
933 S:      Supported
934 F:      Documentation/hwmon/fam15h_power.rst
935 F:      drivers/hwmon/fam15h_power.c
936
937 AMD FCH GPIO DRIVER
938 M:      Enrico Weigelt, metux IT consult <info@metux.net>
939 L:      linux-gpio@vger.kernel.org
940 S:      Maintained
941 F:      drivers/gpio/gpio-amd-fch.c
942 F:      include/linux/platform_data/gpio/gpio-amd-fch.h
943
944 AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
945 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
946 S:      Orphan
947 F:      drivers/usb/gadget/udc/amd5536udc.*
948
949 AMD GEODE PROCESSOR/CHIPSET SUPPORT
950 M:      Andres Salomon <dilinger@queued.net>
951 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
952 S:      Supported
953 W:      http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
954 F:      arch/x86/include/asm/geode.h
955 F:      drivers/char/hw_random/geode-rng.c
956 F:      drivers/crypto/geode*
957 F:      drivers/video/fbdev/geode/
958
959 AMD IOMMU (AMD-VI)
960 M:      Joerg Roedel <joro@8bytes.org>
961 R:      Suravee Suthikulpanit <suravee.suthikulpanit@amd.com>
962 L:      iommu@lists.linux-foundation.org
963 S:      Maintained
964 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
965 F:      drivers/iommu/amd/
966 F:      include/linux/amd-iommu.h
967
968 AMD KFD
969 M:      Felix Kuehling <Felix.Kuehling@amd.com>
970 L:      amd-gfx@lists.freedesktop.org
971 S:      Supported
972 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
973 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd*.[ch]
974 F:      drivers/gpu/drm/amd/amdkfd/
975 F:      drivers/gpu/drm/amd/include/cik_structs.h
976 F:      drivers/gpu/drm/amd/include/kgd_kfd_interface.h
977 F:      drivers/gpu/drm/amd/include/v9_structs.h
978 F:      drivers/gpu/drm/amd/include/vi_structs.h
979 F:      include/uapi/linux/kfd_ioctl.h
980 F:      include/uapi/linux/kfd_sysfs.h
981
982 AMD SPI DRIVER
983 M:      Sanjay R Mehta <sanju.mehta@amd.com>
984 S:      Maintained
985 F:      drivers/spi/spi-amd.c
986
987 AMD MP2 I2C DRIVER
988 M:      Elie Morisse <syniurge@gmail.com>
989 M:      Nehal Shah <nehal-bakulchandra.shah@amd.com>
990 M:      Shyam Sundar S K <shyam-sundar.s-k@amd.com>
991 L:      linux-i2c@vger.kernel.org
992 S:      Maintained
993 F:      drivers/i2c/busses/i2c-amd-mp2*
994
995 AMD PMC DRIVER
996 M:      Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
997 L:      platform-driver-x86@vger.kernel.org
998 S:      Maintained
999 F:      drivers/platform/x86/amd-pmc.*
1000
1001 AMD HSMP DRIVER
1002 M:      Naveen Krishna Chatradhi <naveenkrishna.chatradhi@amd.com>
1003 R:      Carlos Bilbao <carlos.bilbao@amd.com>
1004 L:      platform-driver-x86@vger.kernel.org
1005 S:      Maintained
1006 F:      Documentation/x86/amd_hsmp.rst
1007 F:      arch/x86/include/asm/amd_hsmp.h
1008 F:      arch/x86/include/uapi/asm/amd_hsmp.h
1009 F:      drivers/platform/x86/amd_hsmp.c
1010
1011 AMD POWERPLAY AND SWSMU
1012 M:      Evan Quan <evan.quan@amd.com>
1013 L:      amd-gfx@lists.freedesktop.org
1014 S:      Supported
1015 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
1016 F:      drivers/gpu/drm/amd/pm/
1017
1018 AMD PSTATE DRIVER
1019 M:      Huang Rui <ray.huang@amd.com>
1020 L:      linux-pm@vger.kernel.org
1021 S:      Supported
1022 F:      Documentation/admin-guide/pm/amd-pstate.rst
1023 F:      drivers/cpufreq/amd-pstate*
1024 F:      tools/power/x86/amd_pstate_tracer/amd_pstate_trace.py
1025
1026 AMD PTDMA DRIVER
1027 M:      Sanjay R Mehta <sanju.mehta@amd.com>
1028 L:      dmaengine@vger.kernel.org
1029 S:      Maintained
1030 F:      drivers/dma/ptdma/
1031
1032 AMD SEATTLE DEVICE TREE SUPPORT
1033 M:      Brijesh Singh <brijeshkumar.singh@amd.com>
1034 M:      Suravee Suthikulpanit <suravee.suthikulpanit@amd.com>
1035 M:      Tom Lendacky <thomas.lendacky@amd.com>
1036 S:      Supported
1037 F:      arch/arm64/boot/dts/amd/
1038
1039 AMD XGBE DRIVER
1040 M:      Tom Lendacky <thomas.lendacky@amd.com>
1041 L:      netdev@vger.kernel.org
1042 S:      Supported
1043 F:      arch/arm64/boot/dts/amd/amd-seattle-xgbe*.dtsi
1044 F:      drivers/net/ethernet/amd/xgbe/
1045
1046 AMD SENSOR FUSION HUB DRIVER
1047 M:      Basavaraj Natikar <basavaraj.natikar@amd.com>
1048 L:      linux-input@vger.kernel.org
1049 S:      Maintained
1050 F:      Documentation/hid/amd-sfh*
1051 F:      drivers/hid/amd-sfh-hid/
1052
1053 AMPHION VPU CODEC V4L2 DRIVER
1054 M:      Ming Qian <ming.qian@nxp.com>
1055 M:      Shijie Qin <shijie.qin@nxp.com>
1056 M:      Zhou Peng <eagle.zhou@nxp.com>
1057 L:      linux-media@vger.kernel.org
1058 S:      Maintained
1059 F:      Documentation/devicetree/bindings/media/amphion,vpu.yaml
1060 F:      drivers/media/platform/amphion/
1061
1062 AMS AS73211 DRIVER
1063 M:      Christian Eggers <ceggers@arri.de>
1064 L:      linux-iio@vger.kernel.org
1065 S:      Maintained
1066 F:      Documentation/devicetree/bindings/iio/light/ams,as73211.yaml
1067 F:      drivers/iio/light/as73211.c
1068
1069 AMT (Automatic Multicast Tunneling)
1070 M:      Taehee Yoo <ap420073@gmail.com>
1071 L:      netdev@vger.kernel.org
1072 S:      Maintained
1073 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
1074 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
1075 F:      drivers/net/amt.c
1076
1077 ANALOG DEVICES INC AD7192 DRIVER
1078 M:      Alexandru Tachici <alexandru.tachici@analog.com>
1079 L:      linux-iio@vger.kernel.org
1080 S:      Supported
1081 W:      https://ez.analog.com/linux-software-drivers
1082 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7192.yaml
1083 F:      drivers/iio/adc/ad7192.c
1084
1085 ANALOG DEVICES INC AD7292 DRIVER
1086 M:      Marcelo Schmitt <marcelo.schmitt1@gmail.com>
1087 L:      linux-iio@vger.kernel.org
1088 S:      Supported
1089 W:      https://ez.analog.com/linux-software-drivers
1090 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7292.yaml
1091 F:      drivers/iio/adc/ad7292.c
1092
1093 ANALOG DEVICES INC AD3552R DRIVER
1094 M:      Nuno Sá <nuno.sa@analog.com>
1095 L:      linux-iio@vger.kernel.org
1096 S:      Supported
1097 W:      https://ez.analog.com/linux-software-drivers
1098 F:      Documentation/devicetree/bindings/iio/dac/adi,ad3552r.yaml
1099 F:      drivers/iio/dac/ad3552r.c
1100
1101 ANALOG DEVICES INC AD7293 DRIVER
1102 M:      Antoniu Miclaus <antoniu.miclaus@analog.com>
1103 L:      linux-iio@vger.kernel.org
1104 S:      Supported
1105 W:      https://ez.analog.com/linux-software-drivers
1106 F:      Documentation/devicetree/bindings/iio/dac/adi,ad7293.yaml
1107 F:      drivers/iio/dac/ad7293.c
1108
1109 ANALOG DEVICES INC AD7768-1 DRIVER
1110 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1111 L:      linux-iio@vger.kernel.org
1112 S:      Supported
1113 W:      https://ez.analog.com/linux-software-drivers
1114 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7768-1.yaml
1115 F:      drivers/iio/adc/ad7768-1.c
1116
1117 ANALOG DEVICES INC AD7780 DRIVER
1118 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1119 M:      Renato Lui Geh <renatogeh@gmail.com>
1120 L:      linux-iio@vger.kernel.org
1121 S:      Supported
1122 W:      https://ez.analog.com/linux-software-drivers
1123 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7780.yaml
1124 F:      drivers/iio/adc/ad7780.c
1125
1126 ANALOG DEVICES INC AD74413R DRIVER
1127 M:      Cosmin Tanislav <cosmin.tanislav@analog.com>
1128 L:      linux-iio@vger.kernel.org
1129 S:      Supported
1130 W:      http://ez.analog.com/community/linux-device-drivers
1131 F:      Documentation/devicetree/bindings/iio/addac/adi,ad74413r.yaml
1132 F:      drivers/iio/addac/ad74413r.c
1133 F:      include/dt-bindings/iio/addac/adi,ad74413r.h
1134
1135 ANALOG DEVICES INC AD9389B DRIVER
1136 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1137 L:      linux-media@vger.kernel.org
1138 S:      Maintained
1139 F:      drivers/media/i2c/ad9389b*
1140
1141 ANALOG DEVICES INC ADA4250 DRIVER
1142 M:      Antoniu Miclaus <antoniu.miclaus@analog.com>
1143 L:      linux-iio@vger.kernel.org
1144 S:      Supported
1145 W:      https://ez.analog.com/linux-software-drivers
1146 F:      Documentation/devicetree/bindings/iio/amplifiers/adi,ada4250.yaml
1147 F:      drivers/iio/amplifiers/ada4250.c
1148
1149 ANALOG DEVICES INC ADGS1408 DRIVER
1150 M:      Mircea Caprioru <mircea.caprioru@analog.com>
1151 S:      Supported
1152 F:      Documentation/devicetree/bindings/mux/adi,adgs1408.txt
1153 F:      drivers/mux/adgs1408.c
1154
1155 ANALOG DEVICES INC ADIN DRIVER
1156 M:      Michael Hennerich <michael.hennerich@analog.com>
1157 L:      netdev@vger.kernel.org
1158 S:      Supported
1159 W:      https://ez.analog.com/linux-software-drivers
1160 F:      Documentation/devicetree/bindings/net/adi,adin.yaml
1161 F:      drivers/net/phy/adin.c
1162
1163 ANALOG DEVICES INC ADIS DRIVER LIBRARY
1164 M:      Nuno Sa <nuno.sa@analog.com>
1165 L:      linux-iio@vger.kernel.org
1166 S:      Supported
1167 F:      drivers/iio/imu/adis.c
1168 F:      drivers/iio/imu/adis_buffer.c
1169 F:      drivers/iio/imu/adis_trigger.c
1170 F:      include/linux/iio/imu/adis.h
1171
1172 ANALOG DEVICES INC ADIS16460 DRIVER
1173 M:      Dragos Bogdan <dragos.bogdan@analog.com>
1174 L:      linux-iio@vger.kernel.org
1175 S:      Supported
1176 W:      https://ez.analog.com/linux-software-drivers
1177 F:      Documentation/devicetree/bindings/iio/imu/adi,adis16460.yaml
1178 F:      drivers/iio/imu/adis16460.c
1179
1180 ANALOG DEVICES INC ADIS16475 DRIVER
1181 M:      Nuno Sa <nuno.sa@analog.com>
1182 L:      linux-iio@vger.kernel.org
1183 W:      https://ez.analog.com/linux-software-drivers
1184 S:      Supported
1185 F:      drivers/iio/imu/adis16475.c
1186 F:      Documentation/devicetree/bindings/iio/imu/adi,adis16475.yaml
1187
1188 ANALOG DEVICES INC ADM1177 DRIVER
1189 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1190 L:      linux-hwmon@vger.kernel.org
1191 S:      Supported
1192 W:      https://ez.analog.com/linux-software-drivers
1193 F:      Documentation/devicetree/bindings/hwmon/adi,adm1177.yaml
1194 F:      drivers/hwmon/adm1177.c
1195
1196 ANALOG DEVICES INC ADMV1013 DRIVER
1197 M:      Antoniu Miclaus <antoniu.miclaus@analog.com>
1198 L:      linux-iio@vger.kernel.org
1199 S:      Supported
1200 W:      https://ez.analog.com/linux-software-drivers
1201 F:      Documentation/devicetree/bindings/iio/frequency/adi,admv1013.yaml
1202 F:      drivers/iio/frequency/admv1013.c
1203
1204 ANALOG DEVICES INC ADMV8818 DRIVER
1205 M:      Antoniu Miclaus <antoniu.miclaus@analog.com>
1206 L:      linux-iio@vger.kernel.org
1207 S:      Supported
1208 W:      https://ez.analog.com/linux-software-drivers
1209 F:      Documentation/devicetree/bindings/iio/filter/adi,admv8818.yaml
1210 F:      drivers/iio/filter/admv8818.c
1211
1212 ANALOG DEVICES INC ADMV1014 DRIVER
1213 M:      Antoniu Miclaus <antoniu.miclaus@analog.com>
1214 L:      linux-iio@vger.kernel.org
1215 S:      Supported
1216 W:      https://ez.analog.com/linux-software-drivers
1217 F:      Documentation/devicetree/bindings/iio/frequency/adi,admv1014.yaml
1218 F:      drivers/iio/frequency/admv1014.c
1219
1220 ANALOG DEVICES INC ADP5061 DRIVER
1221 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1222 L:      linux-pm@vger.kernel.org
1223 S:      Supported
1224 W:      https://ez.analog.com/linux-software-drivers
1225 F:      drivers/power/supply/adp5061.c
1226
1227 ANALOG DEVICES INC ADRF6780 DRIVER
1228 M:      Antoniu Miclaus <antoniu.miclaus@analog.com>
1229 L:      linux-iio@vger.kernel.org
1230 S:      Supported
1231 W:      https://ez.analog.com/linux-software-drivers
1232 F:      Documentation/devicetree/bindings/iio/frequency/adi,adrf6780.yaml
1233 F:      drivers/iio/frequency/adrf6780.c
1234
1235 ANALOG DEVICES INC ADV7180 DRIVER
1236 M:      Lars-Peter Clausen <lars@metafoo.de>
1237 L:      linux-media@vger.kernel.org
1238 S:      Supported
1239 W:      https://ez.analog.com/linux-software-drivers
1240 F:      drivers/media/i2c/adv7180.c
1241 F:      Documentation/devicetree/bindings/media/i2c/adv7180.yaml
1242
1243 ANALOG DEVICES INC ADV748X DRIVER
1244 M:      Kieran Bingham <kieran.bingham@ideasonboard.com>
1245 L:      linux-media@vger.kernel.org
1246 S:      Maintained
1247 F:      Documentation/devicetree/bindings/media/i2c/adv748x.yaml
1248 F:      drivers/media/i2c/adv748x/*
1249
1250 ANALOG DEVICES INC ADV7511 DRIVER
1251 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1252 L:      linux-media@vger.kernel.org
1253 S:      Maintained
1254 F:      drivers/media/i2c/adv7511*
1255
1256 ANALOG DEVICES INC ADV7604 DRIVER
1257 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1258 L:      linux-media@vger.kernel.org
1259 S:      Maintained
1260 F:      drivers/media/i2c/adv7604*
1261 F:      Documentation/devicetree/bindings/media/i2c/adv7604.yaml
1262
1263 ANALOG DEVICES INC ADV7842 DRIVER
1264 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1265 L:      linux-media@vger.kernel.org
1266 S:      Maintained
1267 F:      drivers/media/i2c/adv7842*
1268
1269 ANALOG DEVICES INC ADXRS290 DRIVER
1270 M:      Nishant Malpani <nish.malpani25@gmail.com>
1271 L:      linux-iio@vger.kernel.org
1272 S:      Supported
1273 F:      drivers/iio/gyro/adxrs290.c
1274 F:      Documentation/devicetree/bindings/iio/gyroscope/adi,adxrs290.yaml
1275
1276 ANALOG DEVICES INC ASOC CODEC DRIVERS
1277 M:      Lars-Peter Clausen <lars@metafoo.de>
1278 M:      Nuno Sá <nuno.sa@analog.com>
1279 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1280 S:      Supported
1281 W:      http://wiki.analog.com/
1282 W:      https://ez.analog.com/linux-software-drivers
1283 F:      sound/soc/codecs/ad1*
1284 F:      sound/soc/codecs/ad7*
1285 F:      sound/soc/codecs/adau*
1286 F:      sound/soc/codecs/adav*
1287 F:      sound/soc/codecs/sigmadsp.*
1288 F:      sound/soc/codecs/ssm*
1289
1290 ANALOG DEVICES INC DMA DRIVERS
1291 M:      Lars-Peter Clausen <lars@metafoo.de>
1292 S:      Supported
1293 W:      https://ez.analog.com/linux-software-drivers
1294 F:      drivers/dma/dma-axi-dmac.c
1295
1296 ANALOG DEVICES INC IIO DRIVERS
1297 M:      Lars-Peter Clausen <lars@metafoo.de>
1298 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1299 S:      Supported
1300 W:      http://wiki.analog.com/
1301 W:      https://ez.analog.com/linux-software-drivers
1302 F:      Documentation/ABI/testing/sysfs-bus-iio-frequency-ad9523
1303 F:      Documentation/ABI/testing/sysfs-bus-iio-frequency-adf4350
1304 F:      Documentation/devicetree/bindings/iio/*/adi,*
1305 F:      Documentation/devicetree/bindings/iio/dac/adi,ad5758.yaml
1306 F:      drivers/iio/*/ad*
1307 F:      drivers/iio/adc/ltc249*
1308 F:      drivers/iio/amplifiers/hmc425a.c
1309 F:      drivers/staging/iio/*/ad*
1310 X:      drivers/iio/*/adjd*
1311
1312 ANALOGBITS PLL LIBRARIES
1313 M:      Paul Walmsley <paul.walmsley@sifive.com>
1314 S:      Supported
1315 F:      drivers/clk/analogbits/*
1316 F:      include/linux/clk/analogbits*
1317
1318 ANDROID CONFIG FRAGMENTS
1319 M:      Rob Herring <robh@kernel.org>
1320 S:      Supported
1321 F:      kernel/configs/android*
1322
1323 ANDROID DRIVERS
1324 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
1325 M:      Arve Hjønnevåg <arve@android.com>
1326 M:      Todd Kjos <tkjos@android.com>
1327 M:      Martijn Coenen <maco@android.com>
1328 M:      Joel Fernandes <joel@joelfernandes.org>
1329 M:      Christian Brauner <christian@brauner.io>
1330 M:      Hridya Valsaraju <hridya@google.com>
1331 M:      Suren Baghdasaryan <surenb@google.com>
1332 L:      linux-kernel@vger.kernel.org
1333 S:      Supported
1334 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
1335 F:      drivers/android/
1336
1337 ANDROID GOLDFISH PIC DRIVER
1338 M:      Miodrag Dinic <miodrag.dinic@mips.com>
1339 S:      Supported
1340 F:      Documentation/devicetree/bindings/interrupt-controller/google,goldfish-pic.txt
1341 F:      drivers/irqchip/irq-goldfish-pic.c
1342
1343 ANDROID GOLDFISH RTC DRIVER
1344 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
1345 S:      Supported
1346 F:      Documentation/devicetree/bindings/rtc/google,goldfish-rtc.txt
1347 F:      drivers/rtc/rtc-goldfish.c
1348
1349 AOA (Apple Onboard Audio) ALSA DRIVER
1350 M:      Johannes Berg <johannes@sipsolutions.net>
1351 L:      linuxppc-dev@lists.ozlabs.org
1352 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1353 S:      Maintained
1354 F:      sound/aoa/
1355
1356 APEX EMBEDDED SYSTEMS STX104 IIO DRIVER
1357 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
1358 L:      linux-iio@vger.kernel.org
1359 S:      Maintained
1360 F:      drivers/iio/adc/stx104.c
1361
1362 APM DRIVER
1363 M:      Jiri Kosina <jikos@kernel.org>
1364 S:      Odd fixes
1365 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/apm.git
1366 F:      arch/x86/kernel/apm_32.c
1367 F:      drivers/char/apm-emulation.c
1368 F:      include/linux/apm_bios.h
1369 F:      include/uapi/linux/apm_bios.h
1370
1371 APPARMOR SECURITY MODULE
1372 M:      John Johansen <john.johansen@canonical.com>
1373 L:      apparmor@lists.ubuntu.com (subscribers-only, general discussion)
1374 S:      Supported
1375 W:      wiki.apparmor.net
1376 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jj/linux-apparmor
1377 F:      Documentation/admin-guide/LSM/apparmor.rst
1378 F:      security/apparmor/
1379
1380 APPLE BCM5974 MULTITOUCH DRIVER
1381 M:      Henrik Rydberg <rydberg@bitmath.org>
1382 L:      linux-input@vger.kernel.org
1383 S:      Odd fixes
1384 F:      drivers/input/mouse/bcm5974.c
1385
1386 APPLE PCIE CONTROLLER DRIVER
1387 M:      Alyssa Rosenzweig <alyssa@rosenzweig.io>
1388 M:      Marc Zyngier <maz@kernel.org>
1389 L:      linux-pci@vger.kernel.org
1390 S:      Maintained
1391 F:      drivers/pci/controller/pcie-apple.c
1392
1393 APPLE SMC DRIVER
1394 M:      Henrik Rydberg <rydberg@bitmath.org>
1395 L:      linux-hwmon@vger.kernel.org
1396 S:      Odd fixes
1397 F:      drivers/hwmon/applesmc.c
1398
1399 APPLETALK NETWORK LAYER
1400 L:      netdev@vger.kernel.org
1401 S:      Odd fixes
1402 F:      drivers/net/appletalk/
1403 F:      include/linux/atalk.h
1404 F:      include/uapi/linux/atalk.h
1405 F:      net/appletalk/
1406
1407 APPLIED MICRO (APM) X-GENE DEVICE TREE SUPPORT
1408 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1409 S:      Supported
1410 F:      arch/arm64/boot/dts/apm/
1411
1412 APPLIED MICRO (APM) X-GENE SOC EDAC
1413 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1414 S:      Supported
1415 F:      Documentation/devicetree/bindings/edac/apm-xgene-edac.txt
1416 F:      drivers/edac/xgene_edac.c
1417
1418 APPLIED MICRO (APM) X-GENE SOC ETHERNET (V2) DRIVER
1419 M:      Iyappan Subramanian <iyappan@os.amperecomputing.com>
1420 M:      Keyur Chudgar <keyur@os.amperecomputing.com>
1421 S:      Supported
1422 F:      drivers/net/ethernet/apm/xgene-v2/
1423
1424 APPLIED MICRO (APM) X-GENE SOC ETHERNET DRIVER
1425 M:      Iyappan Subramanian <iyappan@os.amperecomputing.com>
1426 M:      Keyur Chudgar <keyur@os.amperecomputing.com>
1427 M:      Quan Nguyen <quan@os.amperecomputing.com>
1428 S:      Supported
1429 F:      Documentation/devicetree/bindings/net/apm-xgene-enet.txt
1430 F:      Documentation/devicetree/bindings/net/apm-xgene-mdio.txt
1431 F:      drivers/net/ethernet/apm/xgene/
1432 F:      drivers/net/mdio/mdio-xgene.c
1433
1434 APPLIED MICRO (APM) X-GENE SOC PMU
1435 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1436 S:      Supported
1437 F:      Documentation/admin-guide/perf/xgene-pmu.rst
1438 F:      Documentation/devicetree/bindings/perf/apm-xgene-pmu.txt
1439 F:      drivers/perf/xgene_pmu.c
1440
1441 APTINA CAMERA SENSOR PLL
1442 M:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
1443 L:      linux-media@vger.kernel.org
1444 S:      Maintained
1445 F:      drivers/media/i2c/aptina-pll.*
1446
1447 AQUACOMPUTER D5 NEXT PUMP SENSOR DRIVER
1448 M:      Aleksa Savic <savicaleksa83@gmail.com>
1449 M:      Jack Doan <me@jackdoan.com>
1450 L:      linux-hwmon@vger.kernel.org
1451 S:      Maintained
1452 F:      Documentation/hwmon/aquacomputer_d5next.rst
1453 F:      drivers/hwmon/aquacomputer_d5next.c
1454
1455 AQUANTIA ETHERNET DRIVER (atlantic)
1456 M:      Igor Russkikh <irusskikh@marvell.com>
1457 L:      netdev@vger.kernel.org
1458 S:      Supported
1459 W:      https://www.marvell.com/
1460 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
1461 F:      Documentation/networking/device_drivers/ethernet/aquantia/atlantic.rst
1462 F:      drivers/net/ethernet/aquantia/atlantic/
1463
1464 AQUANTIA ETHERNET DRIVER PTP SUBSYSTEM
1465 M:      Egor Pomozov <epomozov@marvell.com>
1466 L:      netdev@vger.kernel.org
1467 S:      Supported
1468 W:      http://www.aquantia.com
1469 F:      drivers/net/ethernet/aquantia/atlantic/aq_ptp*
1470
1471 ARASAN NAND CONTROLLER DRIVER
1472 M:      Miquel Raynal <miquel.raynal@bootlin.com>
1473 M:      Naga Sureshkumar Relli <nagasure@xilinx.com>
1474 L:      linux-mtd@lists.infradead.org
1475 S:      Maintained
1476 F:      Documentation/devicetree/bindings/mtd/arasan,nand-controller.yaml
1477 F:      drivers/mtd/nand/raw/arasan-nand-controller.c
1478
1479 ARC FRAMEBUFFER DRIVER
1480 M:      Jaya Kumar <jayalk@intworks.biz>
1481 S:      Maintained
1482 F:      drivers/video/fbdev/arcfb.c
1483 F:      drivers/video/fbdev/core/fb_defio.c
1484
1485 ARC PGU DRM DRIVER
1486 M:      Alexey Brodkin <abrodkin@synopsys.com>
1487 S:      Supported
1488 F:      Documentation/devicetree/bindings/display/snps,arcpgu.txt
1489 F:      drivers/gpu/drm/tiny/arcpgu.c
1490
1491 ARCNET NETWORK LAYER
1492 M:      Michael Grzeschik <m.grzeschik@pengutronix.de>
1493 L:      netdev@vger.kernel.org
1494 S:      Maintained
1495 F:      drivers/net/arcnet/
1496 F:      include/uapi/linux/if_arcnet.h
1497
1498 ARM ARCHITECTED TIMER DRIVER
1499 M:      Mark Rutland <mark.rutland@arm.com>
1500 M:      Marc Zyngier <maz@kernel.org>
1501 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1502 S:      Maintained
1503 F:      arch/arm/include/asm/arch_timer.h
1504 F:      arch/arm64/include/asm/arch_timer.h
1505 F:      drivers/clocksource/arm_arch_timer.c
1506
1507 ARM HDLCD DRM DRIVER
1508 M:      Liviu Dudau <liviu.dudau@arm.com>
1509 S:      Supported
1510 F:      Documentation/devicetree/bindings/display/arm,hdlcd.txt
1511 F:      drivers/gpu/drm/arm/hdlcd_*
1512
1513 ARM INTEGRATOR, VERSATILE AND REALVIEW SUPPORT
1514 M:      Linus Walleij <linus.walleij@linaro.org>
1515 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1516 S:      Maintained
1517 F:      Documentation/devicetree/bindings/arm/arm,integrator.yaml
1518 F:      Documentation/devicetree/bindings/arm/arm,realview.yaml
1519 F:      Documentation/devicetree/bindings/arm/arm,versatile.yaml
1520 F:      Documentation/devicetree/bindings/arm/arm,vexpress-juno.yaml
1521 F:      Documentation/devicetree/bindings/auxdisplay/arm,versatile-lcd.yaml
1522 F:      Documentation/devicetree/bindings/clock/arm,syscon-icst.yaml
1523 F:      Documentation/devicetree/bindings/i2c/i2c-versatile.txt
1524 F:      Documentation/devicetree/bindings/interrupt-controller/arm,versatile-fpga-irq.txt
1525 F:      Documentation/devicetree/bindings/mtd/mtd-physmap.yaml
1526 F:      arch/arm/boot/dts/arm-realview-*
1527 F:      arch/arm/boot/dts/integrator*
1528 F:      arch/arm/boot/dts/versatile*
1529 F:      arch/arm/mach-versatile/
1530 F:      drivers/bus/arm-integrator-lm.c
1531 F:      drivers/clk/versatile/
1532 F:      drivers/i2c/busses/i2c-versatile.c
1533 F:      drivers/irqchip/irq-versatile-fpga.c
1534 F:      drivers/mtd/maps/physmap-versatile.*
1535 F:      drivers/power/reset/arm-versatile-reboot.c
1536 F:      drivers/soc/versatile/
1537
1538 ARM KOMEDA DRM-KMS DRIVER
1539 M:      James (Qian) Wang <james.qian.wang@arm.com>
1540 M:      Liviu Dudau <liviu.dudau@arm.com>
1541 M:      Mihail Atanassov <mihail.atanassov@arm.com>
1542 L:      Mali DP Maintainers <malidp@foss.arm.com>
1543 S:      Supported
1544 T:      git git://anongit.freedesktop.org/drm/drm-misc
1545 F:      Documentation/devicetree/bindings/display/arm,komeda.txt
1546 F:      Documentation/gpu/komeda-kms.rst
1547 F:      drivers/gpu/drm/arm/display/include/
1548 F:      drivers/gpu/drm/arm/display/komeda/
1549
1550 ARM MALI PANFROST DRM DRIVER
1551 M:      Rob Herring <robh@kernel.org>
1552 M:      Tomeu Vizoso <tomeu.vizoso@collabora.com>
1553 R:      Steven Price <steven.price@arm.com>
1554 R:      Alyssa Rosenzweig <alyssa.rosenzweig@collabora.com>
1555 L:      dri-devel@lists.freedesktop.org
1556 S:      Supported
1557 T:      git git://anongit.freedesktop.org/drm/drm-misc
1558 F:      drivers/gpu/drm/panfrost/
1559 F:      include/uapi/drm/panfrost_drm.h
1560
1561 ARM MALI-DP DRM DRIVER
1562 M:      Liviu Dudau <liviu.dudau@arm.com>
1563 M:      Brian Starkey <brian.starkey@arm.com>
1564 L:      Mali DP Maintainers <malidp@foss.arm.com>
1565 S:      Supported
1566 T:      git git://anongit.freedesktop.org/drm/drm-misc
1567 F:      Documentation/devicetree/bindings/display/arm,malidp.txt
1568 F:      Documentation/gpu/afbc.rst
1569 F:      drivers/gpu/drm/arm/
1570
1571 ARM MFM AND FLOPPY DRIVERS
1572 M:      Ian Molton <spyro@f2s.com>
1573 S:      Maintained
1574 F:      arch/arm/include/asm/floppy.h
1575 F:      arch/arm/mach-rpc/floppydma.S
1576
1577 ARM PMU PROFILING AND DEBUGGING
1578 M:      Will Deacon <will@kernel.org>
1579 M:      Mark Rutland <mark.rutland@arm.com>
1580 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1581 S:      Maintained
1582 F:      Documentation/devicetree/bindings/arm/pmu.yaml
1583 F:      Documentation/devicetree/bindings/perf/
1584 F:      arch/arm*/include/asm/hw_breakpoint.h
1585 F:      arch/arm*/include/asm/perf_event.h
1586 F:      arch/arm*/kernel/hw_breakpoint.c
1587 F:      arch/arm*/kernel/perf_*
1588 F:      drivers/perf/
1589 F:      include/linux/perf/arm_pmu.h
1590
1591 ARM PORT
1592 M:      Russell King <linux@armlinux.org.uk>
1593 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1594 S:      Odd Fixes
1595 W:      http://www.armlinux.org.uk/
1596 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git
1597 F:      arch/arm/
1598 X:      arch/arm/boot/dts/
1599
1600 ARM PRIMECELL AACI PL041 DRIVER
1601 M:      Russell King <linux@armlinux.org.uk>
1602 S:      Odd Fixes
1603 F:      sound/arm/aaci.*
1604
1605 ARM PRIMECELL BUS SUPPORT
1606 M:      Russell King <linux@armlinux.org.uk>
1607 S:      Odd Fixes
1608 F:      drivers/amba/
1609 F:      include/linux/amba/bus.h
1610
1611 ARM PRIMECELL PL35X NAND CONTROLLER DRIVER
1612 M:      Miquel Raynal <miquel.raynal@bootlin.com>
1613 M:      Naga Sureshkumar Relli <nagasure@xilinx.com>
1614 L:      linux-mtd@lists.infradead.org
1615 S:      Maintained
1616 F:      Documentation/devicetree/bindings/mtd/arm,pl353-nand-r2p1.yaml
1617 F:      drivers/mtd/nand/raw/pl35x-nand-controller.c
1618
1619 ARM PRIMECELL PL35X SMC DRIVER
1620 M:      Miquel Raynal <miquel.raynal@bootlin.com>
1621 M:      Naga Sureshkumar Relli <nagasure@xilinx.com>
1622 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1623 S:      Maintained
1624 F:      Documentation/devicetree/bindings/memory-controllers/arm,pl353-smc.yaml
1625 F:      drivers/memory/pl353-smc.c
1626
1627 ARM PRIMECELL CLCD PL110 DRIVER
1628 M:      Russell King <linux@armlinux.org.uk>
1629 S:      Odd Fixes
1630 F:      drivers/video/fbdev/amba-clcd.*
1631
1632 ARM PRIMECELL KMI PL050 DRIVER
1633 M:      Russell King <linux@armlinux.org.uk>
1634 S:      Odd Fixes
1635 F:      drivers/input/serio/ambakmi.*
1636 F:      include/linux/amba/kmi.h
1637
1638 ARM PRIMECELL MMCI PL180/1 DRIVER
1639 M:      Russell King <linux@armlinux.org.uk>
1640 S:      Odd Fixes
1641 F:      drivers/mmc/host/mmci.*
1642 F:      include/linux/amba/mmci.h
1643
1644 ARM PRIMECELL SSP PL022 SPI DRIVER
1645 M:      Linus Walleij <linus.walleij@linaro.org>
1646 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1647 S:      Maintained
1648 F:      Documentation/devicetree/bindings/spi/spi-pl022.yaml
1649 F:      drivers/spi/spi-pl022.c
1650
1651 ARM PRIMECELL UART PL010 AND PL011 DRIVERS
1652 M:      Russell King <linux@armlinux.org.uk>
1653 S:      Odd Fixes
1654 F:      drivers/tty/serial/amba-pl01*.c
1655 F:      include/linux/amba/serial.h
1656
1657 ARM PRIMECELL VIC PL190/PL192 DRIVER
1658 M:      Linus Walleij <linus.walleij@linaro.org>
1659 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1660 S:      Maintained
1661 F:      Documentation/devicetree/bindings/interrupt-controller/arm,vic.yaml
1662 F:      drivers/irqchip/irq-vic.c
1663
1664 ARM SMC WATCHDOG DRIVER
1665 M:      Julius Werner <jwerner@chromium.org>
1666 R:      Evan Benn <evanbenn@chromium.org>
1667 S:      Maintained
1668 F:      Documentation/devicetree/bindings/watchdog/arm-smc-wdt.yaml
1669 F:      drivers/watchdog/arm_smc_wdt.c
1670
1671 ARM SMMU DRIVERS
1672 M:      Will Deacon <will@kernel.org>
1673 R:      Robin Murphy <robin.murphy@arm.com>
1674 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1675 S:      Maintained
1676 F:      Documentation/devicetree/bindings/iommu/arm,smmu*
1677 F:      drivers/iommu/arm/
1678 F:      drivers/iommu/io-pgtable-arm*
1679
1680 ARM AND ARM64 SoC SUB-ARCHITECTURES (COMMON PARTS)
1681 M:      Arnd Bergmann <arnd@arndb.de>
1682 M:      Olof Johansson <olof@lixom.net>
1683 M:      soc@kernel.org
1684 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1685 S:      Maintained
1686 C:      irc://irc.libera.chat/armlinux
1687 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/soc/soc.git
1688 F:      arch/arm/boot/dts/Makefile
1689 F:      arch/arm64/boot/dts/Makefile
1690
1691 ARM SUB-ARCHITECTURES
1692 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1693 S:      Maintained
1694 C:      irc://irc.libera.chat/armlinux
1695 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/soc/soc.git
1696 F:      arch/arm/mach-*/
1697 F:      arch/arm/plat-*/
1698
1699 ARM/ACTIONS SEMI ARCHITECTURE
1700 M:      Andreas Färber <afaerber@suse.de>
1701 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
1702 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1703 L:      linux-actions@lists.infradead.org (moderated for non-subscribers)
1704 S:      Maintained
1705 F:      Documentation/devicetree/bindings/arm/actions.yaml
1706 F:      Documentation/devicetree/bindings/clock/actions,owl-cmu.txt
1707 F:      Documentation/devicetree/bindings/dma/owl-dma.yaml
1708 F:      Documentation/devicetree/bindings/i2c/i2c-owl.yaml
1709 F:      Documentation/devicetree/bindings/interrupt-controller/actions,owl-sirq.yaml
1710 F:      Documentation/devicetree/bindings/mmc/owl-mmc.yaml
1711 F:      Documentation/devicetree/bindings/net/actions,owl-emac.yaml
1712 F:      Documentation/devicetree/bindings/pinctrl/actions,*
1713 F:      Documentation/devicetree/bindings/power/actions,owl-sps.txt
1714 F:      Documentation/devicetree/bindings/timer/actions,owl-timer.txt
1715 F:      arch/arm/boot/dts/owl-*
1716 F:      arch/arm/mach-actions/
1717 F:      arch/arm64/boot/dts/actions/
1718 F:      drivers/clk/actions/
1719 F:      drivers/clocksource/timer-owl*
1720 F:      drivers/dma/owl-dma.c
1721 F:      drivers/i2c/busses/i2c-owl.c
1722 F:      drivers/irqchip/irq-owl-sirq.c
1723 F:      drivers/mmc/host/owl-mmc.c
1724 F:      drivers/net/ethernet/actions/
1725 F:      drivers/pinctrl/actions/*
1726 F:      drivers/soc/actions/
1727 F:      include/dt-bindings/power/owl-*
1728 F:      include/dt-bindings/reset/actions,*
1729 F:      include/linux/soc/actions/
1730 N:      owl
1731
1732 ARM/ADS SPHERE MACHINE SUPPORT
1733 M:      Lennert Buytenhek <kernel@wantstofly.org>
1734 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1735 S:      Maintained
1736
1737 ARM/AFEB9260 MACHINE SUPPORT
1738 M:      Sergey Lapin <slapin@ossfans.org>
1739 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1740 S:      Maintained
1741
1742 ARM/AJECO 1ARM MACHINE SUPPORT
1743 M:      Lennert Buytenhek <kernel@wantstofly.org>
1744 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1745 S:      Maintained
1746
1747 ARM/Allwinner SoC Clock Support
1748 M:      Emilio López <emilio@elopez.com.ar>
1749 S:      Maintained
1750 F:      drivers/clk/sunxi/
1751
1752 ARM/Allwinner sunXi SoC support
1753 M:      Chen-Yu Tsai <wens@csie.org>
1754 M:      Jernej Skrabec <jernej.skrabec@gmail.com>
1755 M:      Samuel Holland <samuel@sholland.org>
1756 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1757 S:      Maintained
1758 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sunxi/linux.git
1759 L:      linux-sunxi@lists.linux.dev
1760 F:      arch/arm/mach-sunxi/
1761 F:      arch/arm64/boot/dts/allwinner/
1762 F:      drivers/clk/sunxi-ng/
1763 F:      drivers/pinctrl/sunxi/
1764 F:      drivers/soc/sunxi/
1765 N:      allwinner
1766 N:      sun[x456789]i
1767 N:      sun50i
1768
1769 ARM/Amlogic Meson SoC CLOCK FRAMEWORK
1770 M:      Neil Armstrong <narmstrong@baylibre.com>
1771 M:      Jerome Brunet <jbrunet@baylibre.com>
1772 L:      linux-amlogic@lists.infradead.org
1773 S:      Maintained
1774 F:      Documentation/devicetree/bindings/clock/amlogic*
1775 F:      drivers/clk/meson/
1776 F:      include/dt-bindings/clock/gxbb*
1777 F:      include/dt-bindings/clock/meson*
1778
1779 ARM/Amlogic Meson SoC Crypto Drivers
1780 M:      Corentin Labbe <clabbe@baylibre.com>
1781 L:      linux-crypto@vger.kernel.org
1782 L:      linux-amlogic@lists.infradead.org
1783 S:      Maintained
1784 F:      Documentation/devicetree/bindings/crypto/amlogic*
1785 F:      drivers/crypto/amlogic/
1786
1787 ARM/Amlogic Meson SoC Sound Drivers
1788 M:      Jerome Brunet <jbrunet@baylibre.com>
1789 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1790 S:      Maintained
1791 F:      Documentation/devicetree/bindings/sound/amlogic*
1792 F:      sound/soc/meson/
1793
1794 ARM/Amlogic Meson SoC support
1795 M:      Neil Armstrong <narmstrong@baylibre.com>
1796 M:      Kevin Hilman <khilman@baylibre.com>
1797 R:      Jerome Brunet <jbrunet@baylibre.com>
1798 R:      Martin Blumenstingl <martin.blumenstingl@googlemail.com>
1799 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1800 L:      linux-amlogic@lists.infradead.org
1801 S:      Maintained
1802 W:      http://linux-meson.com/
1803 F:      arch/arm/boot/dts/meson*
1804 F:      arch/arm/mach-meson/
1805 F:      arch/arm64/boot/dts/amlogic/
1806 F:      drivers/mmc/host/meson*
1807 F:      drivers/pinctrl/meson/
1808 F:      drivers/rtc/rtc-meson*
1809 F:      drivers/soc/amlogic/
1810 N:      meson
1811
1812 ARM/Annapurna Labs ALPINE ARCHITECTURE
1813 M:      Tsahee Zidenberg <tsahee@annapurnalabs.com>
1814 M:      Antoine Tenart <atenart@kernel.org>
1815 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1816 S:      Maintained
1817 F:      arch/arm/boot/dts/alpine*
1818 F:      arch/arm/mach-alpine/
1819 F:      arch/arm64/boot/dts/amazon/
1820 F:      drivers/*/*alpine*
1821
1822 ARM/APPLE MACHINE SUPPORT
1823 M:      Hector Martin <marcan@marcan.st>
1824 M:      Sven Peter <sven@svenpeter.dev>
1825 R:      Alyssa Rosenzweig <alyssa@rosenzweig.io>
1826 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1827 S:      Maintained
1828 W:      https://asahilinux.org
1829 B:      https://github.com/AsahiLinux/linux/issues
1830 C:      irc://irc.oftc.net/asahi-dev
1831 T:      git https://github.com/AsahiLinux/linux.git
1832 F:      Documentation/devicetree/bindings/arm/apple.yaml
1833 F:      Documentation/devicetree/bindings/arm/apple/*
1834 F:      Documentation/devicetree/bindings/clock/apple,nco.yaml
1835 F:      Documentation/devicetree/bindings/dma/apple,admac.yaml
1836 F:      Documentation/devicetree/bindings/i2c/apple,i2c.yaml
1837 F:      Documentation/devicetree/bindings/interrupt-controller/apple,*
1838 F:      Documentation/devicetree/bindings/iommu/apple,dart.yaml
1839 F:      Documentation/devicetree/bindings/iommu/apple,sart.yaml
1840 F:      Documentation/devicetree/bindings/mailbox/apple,mailbox.yaml
1841 F:      Documentation/devicetree/bindings/nvme/apple,nvme-ans.yaml
1842 F:      Documentation/devicetree/bindings/nvmem/apple,efuses.yaml
1843 F:      Documentation/devicetree/bindings/pci/apple,pcie.yaml
1844 F:      Documentation/devicetree/bindings/pinctrl/apple,pinctrl.yaml
1845 F:      Documentation/devicetree/bindings/power/apple*
1846 F:      Documentation/devicetree/bindings/watchdog/apple,wdt.yaml
1847 F:      arch/arm64/boot/dts/apple/
1848 F:      drivers/clk/clk-apple-nco.c
1849 F:      drivers/dma/apple-admac.c
1850 F:      drivers/i2c/busses/i2c-pasemi-core.c
1851 F:      drivers/i2c/busses/i2c-pasemi-platform.c
1852 F:      drivers/iommu/apple-dart.c
1853 F:      drivers/irqchip/irq-apple-aic.c
1854 F:      drivers/mailbox/apple-mailbox.c
1855 F:      drivers/nvme/host/apple.c
1856 F:      drivers/nvmem/apple-efuses.c
1857 F:      drivers/pinctrl/pinctrl-apple-gpio.c
1858 F:      drivers/soc/apple/*
1859 F:      drivers/watchdog/apple_wdt.c
1860 F:      include/dt-bindings/interrupt-controller/apple-aic.h
1861 F:      include/dt-bindings/pinctrl/apple.h
1862 F:      include/linux/apple-mailbox.h
1863 F:      include/linux/soc/apple/*
1864
1865 ARM/ARTPEC MACHINE SUPPORT
1866 M:      Jesper Nilsson <jesper.nilsson@axis.com>
1867 M:      Lars Persson <lars.persson@axis.com>
1868 L:      linux-arm-kernel@axis.com
1869 S:      Maintained
1870 F:      Documentation/devicetree/bindings/pinctrl/axis,artpec6-pinctrl.txt
1871 F:      arch/arm/boot/dts/artpec6*
1872 F:      arch/arm/mach-artpec
1873 F:      drivers/clk/axis
1874 F:      drivers/crypto/axis
1875 F:      drivers/mmc/host/usdhi6rol0.c
1876 F:      drivers/pinctrl/pinctrl-artpec*
1877
1878 ARM/ASPEED I2C DRIVER
1879 M:      Brendan Higgins <brendanhiggins@google.com>
1880 R:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
1881 R:      Joel Stanley <joel@jms.id.au>
1882 L:      linux-i2c@vger.kernel.org
1883 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
1884 S:      Maintained
1885 F:      Documentation/devicetree/bindings/i2c/aspeed,i2c.yaml
1886 F:      Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2400-i2c-ic.txt
1887 F:      drivers/i2c/busses/i2c-aspeed.c
1888 F:      drivers/irqchip/irq-aspeed-i2c-ic.c
1889
1890 ARM/ASPEED MACHINE SUPPORT
1891 M:      Joel Stanley <joel@jms.id.au>
1892 R:      Andrew Jeffery <andrew@aj.id.au>
1893 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1894 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
1895 S:      Supported
1896 Q:      https://patchwork.ozlabs.org/project/linux-aspeed/list/
1897 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joel/aspeed.git
1898 F:      arch/arm/boot/dts/aspeed-*
1899 F:      arch/arm/mach-aspeed/
1900 N:      aspeed
1901
1902 ARM/BITMAIN ARCHITECTURE
1903 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
1904 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1905 S:      Maintained
1906 F:      Documentation/devicetree/bindings/arm/bitmain.yaml
1907 F:      Documentation/devicetree/bindings/clock/bitmain,bm1880-clk.yaml
1908 F:      Documentation/devicetree/bindings/pinctrl/bitmain,bm1880-pinctrl.txt
1909 F:      arch/arm64/boot/dts/bitmain/
1910 F:      drivers/clk/clk-bm1880.c
1911 F:      drivers/pinctrl/pinctrl-bm1880.c
1912
1913 ARM/CALXEDA HIGHBANK ARCHITECTURE
1914 M:      Andre Przywara <andre.przywara@arm.com>
1915 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1916 S:      Maintained
1917 F:      arch/arm/boot/dts/ecx-*.dts*
1918 F:      arch/arm/boot/dts/highbank.dts
1919 F:      arch/arm/mach-highbank/
1920
1921 ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
1922 M:      Krzysztof Halasa <khalasa@piap.pl>
1923 S:      Maintained
1924 F:      arch/arm/mach-cns3xxx/
1925
1926 ARM/CAVIUM THUNDER NETWORK DRIVER
1927 M:      Sunil Goutham <sgoutham@marvell.com>
1928 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1929 S:      Supported
1930 F:      drivers/net/ethernet/cavium/thunder/
1931
1932 ARM/CIRRUS LOGIC BK3 MACHINE SUPPORT
1933 M:      Lukasz Majewski <lukma@denx.de>
1934 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1935 S:      Maintained
1936 F:      arch/arm/mach-ep93xx/ts72xx.c
1937
1938 ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
1939 M:      Alexander Shiyan <shc_work@mail.ru>
1940 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1941 S:      Odd Fixes
1942 N:      clps711x
1943
1944 ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
1945 M:      Lennert Buytenhek <kernel@wantstofly.org>
1946 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1947 S:      Maintained
1948
1949 ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
1950 M:      Hartley Sweeten <hsweeten@visionengravers.com>
1951 M:      Alexander Sverdlin <alexander.sverdlin@gmail.com>
1952 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1953 S:      Maintained
1954 F:      arch/arm/mach-ep93xx/
1955 F:      arch/arm/mach-ep93xx/include/mach/
1956
1957 ARM/CLKDEV SUPPORT
1958 M:      Russell King <linux@armlinux.org.uk>
1959 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1960 S:      Maintained
1961 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git clkdev
1962 F:      drivers/clk/clkdev.c
1963
1964 ARM/CONEXANT DIGICOLOR MACHINE SUPPORT
1965 M:      Baruch Siach <baruch@tkos.co.il>
1966 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1967 S:      Maintained
1968 F:      arch/arm/boot/dts/cx92755*
1969 N:      digicolor
1970
1971 ARM/CONTEC MICRO9 MACHINE SUPPORT
1972 M:      Hubert Feurstein <hubert.feurstein@contec.at>
1973 S:      Maintained
1974 F:      arch/arm/mach-ep93xx/micro9.c
1975
1976 ARM/CORESIGHT FRAMEWORK AND DRIVERS
1977 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
1978 M:      Suzuki K Poulose <suzuki.poulose@arm.com>
1979 R:      Mike Leach <mike.leach@linaro.org>
1980 R:      Leo Yan <leo.yan@linaro.org>
1981 L:      coresight@lists.linaro.org (moderated for non-subscribers)
1982 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1983 S:      Maintained
1984 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/coresight/linux.git
1985 F:      Documentation/ABI/testing/sysfs-bus-coresight-devices-*
1986 F:      Documentation/devicetree/bindings/arm/coresight-cpu-debug.txt
1987 F:      Documentation/devicetree/bindings/arm/coresight-cti.yaml
1988 F:      Documentation/devicetree/bindings/arm/coresight.txt
1989 F:      Documentation/devicetree/bindings/arm/ete.yaml
1990 F:      Documentation/devicetree/bindings/arm/trbe.yaml
1991 F:      Documentation/trace/coresight/*
1992 F:      drivers/hwtracing/coresight/*
1993 F:      include/dt-bindings/arm/coresight-cti-dt.h
1994 F:      include/linux/coresight*
1995 F:      samples/coresight/*
1996 F:      tools/perf/arch/arm/util/auxtrace.c
1997 F:      tools/perf/arch/arm/util/cs-etm.c
1998 F:      tools/perf/arch/arm/util/cs-etm.h
1999 F:      tools/perf/arch/arm/util/pmu.c
2000 F:      tools/perf/util/cs-etm-decoder/*
2001 F:      tools/perf/util/cs-etm.*
2002
2003 ARM/CORGI MACHINE SUPPORT
2004 M:      Richard Purdie <rpurdie@rpsys.net>
2005 S:      Maintained
2006
2007 ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
2008 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
2009 M:      Linus Walleij <linus.walleij@linaro.org>
2010 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2011 S:      Maintained
2012 T:      git git://github.com/ulli-kroll/linux.git
2013 F:      Documentation/devicetree/bindings/arm/gemini.yaml
2014 F:      Documentation/devicetree/bindings/net/cortina,gemini-ethernet.txt
2015 F:      Documentation/devicetree/bindings/pinctrl/cortina,gemini-pinctrl.txt
2016 F:      Documentation/devicetree/bindings/rtc/faraday,ftrtc010.yaml
2017 F:      arch/arm/boot/dts/gemini*
2018 F:      arch/arm/mach-gemini/
2019 F:      drivers/crypto/gemini/
2020 F:      drivers/net/ethernet/cortina/
2021 F:      drivers/pinctrl/pinctrl-gemini.c
2022 F:      drivers/rtc/rtc-ftrtc010.c
2023
2024 ARM/CZ.NIC TURRIS SUPPORT
2025 M:      Marek Behún <kabel@kernel.org>
2026 S:      Maintained
2027 W:      https://www.turris.cz/
2028 F:      Documentation/ABI/testing/debugfs-moxtet
2029 F:      Documentation/ABI/testing/sysfs-bus-moxtet-devices
2030 F:      Documentation/ABI/testing/sysfs-firmware-turris-mox-rwtm
2031 F:      Documentation/devicetree/bindings/bus/moxtet.txt
2032 F:      Documentation/devicetree/bindings/firmware/cznic,turris-mox-rwtm.txt
2033 F:      Documentation/devicetree/bindings/gpio/gpio-moxtet.txt
2034 F:      Documentation/devicetree/bindings/leds/cznic,turris-omnia-leds.yaml
2035 F:      Documentation/devicetree/bindings/watchdog/armada-37xx-wdt.txt
2036 F:      drivers/bus/moxtet.c
2037 F:      drivers/firmware/turris-mox-rwtm.c
2038 F:      drivers/leds/leds-turris-omnia.c
2039 F:      drivers/mailbox/armada-37xx-rwtm-mailbox.c
2040 F:      drivers/gpio/gpio-moxtet.c
2041 F:      drivers/watchdog/armada_37xx_wdt.c
2042 F:      include/dt-bindings/bus/moxtet.h
2043 F:      include/linux/armada-37xx-rwtm-mailbox.h
2044 F:      include/linux/moxtet.h
2045
2046 ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
2047 M:      Robert Jarzmik <robert.jarzmik@free.fr>
2048 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2049 S:      Maintained
2050 F:      arch/arm/mach-pxa/ezx.c
2051
2052 ARM/FARADAY FA526 PORT
2053 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
2054 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2055 S:      Maintained
2056 T:      git git://git.berlios.de/gemini-board
2057 F:      arch/arm/mm/*-fa*
2058
2059 ARM/FOOTBRIDGE ARCHITECTURE
2060 M:      Russell King <linux@armlinux.org.uk>
2061 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2062 S:      Maintained
2063 W:      http://www.armlinux.org.uk/
2064 F:      arch/arm/include/asm/hardware/dec21285.h
2065 F:      arch/arm/mach-footbridge/
2066
2067 ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
2068 M:      Shawn Guo <shawnguo@kernel.org>
2069 M:      Sascha Hauer <s.hauer@pengutronix.de>
2070 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
2071 R:      Fabio Estevam <festevam@gmail.com>
2072 R:      NXP Linux Team <linux-imx@nxp.com>
2073 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2074 S:      Maintained
2075 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
2076 X:      drivers/media/i2c/
2077 N:      imx
2078 N:      mxs
2079
2080 ARM/FREESCALE LAYERSCAPE ARM ARCHITECTURE
2081 M:      Shawn Guo <shawnguo@kernel.org>
2082 M:      Li Yang <leoyang.li@nxp.com>
2083 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2084 S:      Maintained
2085 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
2086 F:      arch/arm/boot/dts/ls1021a*
2087 F:      arch/arm64/boot/dts/freescale/fsl-*
2088 F:      arch/arm64/boot/dts/freescale/qoriq-*
2089
2090 ARM/FREESCALE VYBRID ARM ARCHITECTURE
2091 M:      Shawn Guo <shawnguo@kernel.org>
2092 M:      Sascha Hauer <s.hauer@pengutronix.de>
2093 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
2094 R:      Stefan Agner <stefan@agner.ch>
2095 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2096 S:      Maintained
2097 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
2098 F:      arch/arm/boot/dts/vf*
2099 F:      arch/arm/mach-imx/*vf610*
2100
2101 ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
2102 M:      Lennert Buytenhek <kernel@wantstofly.org>
2103 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2104 S:      Maintained
2105
2106 ARM/GUMSTIX MACHINE SUPPORT
2107 M:      Steve Sakoman <sakoman@gmail.com>
2108 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2109 S:      Maintained
2110
2111 ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
2112 M:      Philipp Zabel <philipp.zabel@gmail.com>
2113 M:      Paul Parsons <lost.distance@yahoo.com>
2114 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2115 S:      Maintained
2116 F:      arch/arm/mach-pxa/hx4700.c
2117 F:      arch/arm/mach-pxa/include/mach/hx4700.h
2118 F:      sound/soc/pxa/hx4700.c
2119
2120 ARM/HISILICON SOC SUPPORT
2121 M:      Wei Xu <xuwei5@hisilicon.com>
2122 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2123 S:      Supported
2124 W:      http://www.hisilicon.com
2125 T:      git git://github.com/hisilicon/linux-hisi.git
2126 F:      arch/arm/boot/dts/hi3*
2127 F:      arch/arm/boot/dts/hip*
2128 F:      arch/arm/boot/dts/hisi*
2129 F:      arch/arm/mach-hisi/
2130 F:      arch/arm64/boot/dts/hisilicon/
2131
2132 ARM/HP JORNADA 7XX MACHINE SUPPORT
2133 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
2134 S:      Maintained
2135 W:      www.jlime.com
2136 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
2137 F:      arch/arm/mach-sa1100/include/mach/jornada720.h
2138 F:      arch/arm/mach-sa1100/jornada720.c
2139
2140 ARM/HPE GXP ARCHITECTURE
2141 M:      Jean-Marie Verdun <verdun@hpe.com>
2142 M:      Nick Hawkins <nick.hawkins@hpe.com>
2143 S:      Maintained
2144 F:      Documentation/devicetree/bindings/arm/hpe,gxp.yaml
2145 F:      Documentation/devicetree/bindings/timer/hpe,gxp-timer.yaml
2146 F:      arch/arm/boot/dts/hpe-bmc*
2147 F:      arch/arm/boot/dts/hpe-gxp*
2148 F:      arch/arm/mach-hpe/
2149 F:      drivers/clocksource/timer-gxp.c
2150 F:      drivers/watchdog/gxp-wdt.c
2151
2152 ARM/IGEP MACHINE SUPPORT
2153 M:      Enric Balletbo i Serra <eballetbo@gmail.com>
2154 M:      Javier Martinez Canillas <javier@dowhile0.org>
2155 L:      linux-omap@vger.kernel.org
2156 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2157 S:      Maintained
2158 F:      arch/arm/boot/dts/omap3-igep*
2159
2160 ARM/INCOME PXA270 SUPPORT
2161 M:      Marek Vasut <marek.vasut@gmail.com>
2162 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2163 S:      Maintained
2164 F:      arch/arm/mach-pxa/colibri-pxa270-income.c
2165
2166 ARM/INTEL IOP32X ARM ARCHITECTURE
2167 M:      Lennert Buytenhek <kernel@wantstofly.org>
2168 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2169 S:      Maintained
2170
2171 ARM/INTEL IQ81342EX MACHINE SUPPORT
2172 M:      Lennert Buytenhek <kernel@wantstofly.org>
2173 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2174 S:      Maintained
2175
2176 ARM/INTEL IXDP2850 MACHINE SUPPORT
2177 M:      Lennert Buytenhek <kernel@wantstofly.org>
2178 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2179 S:      Maintained
2180
2181 ARM/INTEL IXP4XX ARM ARCHITECTURE
2182 M:      Linus Walleij <linusw@kernel.org>
2183 M:      Imre Kaloz <kaloz@openwrt.org>
2184 M:      Krzysztof Halasa <khalasa@piap.pl>
2185 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2186 S:      Maintained
2187 F:      Documentation/devicetree/bindings/arm/intel-ixp4xx.yaml
2188 F:      Documentation/devicetree/bindings/bus/intel,ixp4xx-expansion-bus-controller.yaml
2189 F:      Documentation/devicetree/bindings/gpio/intel,ixp4xx-gpio.txt
2190 F:      Documentation/devicetree/bindings/interrupt-controller/intel,ixp4xx-interrupt.yaml
2191 F:      Documentation/devicetree/bindings/timer/intel,ixp4xx-timer.yaml
2192 F:      arch/arm/mach-ixp4xx/
2193 F:      drivers/bus/intel-ixp4xx-eb.c
2194 F:      drivers/clocksource/timer-ixp4xx.c
2195 F:      drivers/crypto/ixp4xx_crypto.c
2196 F:      drivers/gpio/gpio-ixp4xx.c
2197 F:      drivers/irqchip/irq-ixp4xx.c
2198 F:      include/linux/irqchip/irq-ixp4xx.h
2199 F:      include/linux/platform_data/timer-ixp4xx.h
2200
2201 ARM/INTEL KEEMBAY ARCHITECTURE
2202 M:      Paul J. Murphy <paul.j.murphy@intel.com>
2203 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
2204 S:      Maintained
2205 F:      Documentation/devicetree/bindings/arm/intel,keembay.yaml
2206 F:      arch/arm64/boot/dts/intel/keembay-evm.dts
2207 F:      arch/arm64/boot/dts/intel/keembay-soc.dtsi
2208
2209 ARM/INTEL XSC3 (MANZANO) ARM CORE
2210 M:      Lennert Buytenhek <kernel@wantstofly.org>
2211 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2212 S:      Maintained
2213
2214 ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
2215 M:      Lennert Buytenhek <kernel@wantstofly.org>
2216 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2217 S:      Maintained
2218
2219 ARM/LG1K ARCHITECTURE
2220 M:      Chanho Min <chanho.min@lge.com>
2221 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2222 S:      Maintained
2223 F:      arch/arm64/boot/dts/lg/
2224
2225 ARM/LOGICPD PXA270 MACHINE SUPPORT
2226 M:      Lennert Buytenhek <kernel@wantstofly.org>
2227 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2228 S:      Maintained
2229
2230 ARM/LPC18XX ARCHITECTURE
2231 M:      Vladimir Zapolskiy <vz@mleia.com>
2232 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2233 S:      Maintained
2234 F:      Documentation/devicetree/bindings/i2c/i2c-lpc2k.txt
2235 F:      arch/arm/boot/dts/lpc43*
2236 F:      drivers/i2c/busses/i2c-lpc2k.c
2237 F:      drivers/memory/pl172.c
2238 F:      drivers/mtd/spi-nor/controllers/nxp-spifi.c
2239 F:      drivers/rtc/rtc-lpc24xx.c
2240 N:      lpc18xx
2241
2242 ARM/LPC32XX SOC SUPPORT
2243 M:      Vladimir Zapolskiy <vz@mleia.com>
2244 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2245 S:      Maintained
2246 T:      git git://github.com/vzapolskiy/linux-lpc32xx.git
2247 F:      Documentation/devicetree/bindings/i2c/i2c-pnx.txt
2248 F:      arch/arm/boot/dts/lpc32*
2249 F:      arch/arm/mach-lpc32xx/
2250 F:      drivers/i2c/busses/i2c-pnx.c
2251 F:      drivers/net/ethernet/nxp/lpc_eth.c
2252 F:      drivers/usb/host/ohci-nxp.c
2253 F:      drivers/watchdog/pnx4008_wdt.c
2254 N:      lpc32xx
2255
2256 ARM/MAGICIAN MACHINE SUPPORT
2257 M:      Philipp Zabel <philipp.zabel@gmail.com>
2258 S:      Maintained
2259
2260 ARM/Marvell Dove/MV78xx0/Orion SOC support
2261 M:      Andrew Lunn <andrew@lunn.ch>
2262 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2263 M:      Gregory Clement <gregory.clement@bootlin.com>
2264 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2265 S:      Maintained
2266 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gclement/mvebu.git
2267 F:      Documentation/devicetree/bindings/soc/dove/
2268 F:      arch/arm/boot/dts/dove*
2269 F:      arch/arm/boot/dts/orion5x*
2270 F:      arch/arm/mach-dove/
2271 F:      arch/arm/mach-mv78xx0/
2272 F:      arch/arm/mach-orion5x/
2273 F:      arch/arm/plat-orion/
2274 F:      drivers/soc/dove/
2275
2276 ARM/Marvell Kirkwood and Armada 370, 375, 38x, 39x, XP, 3700, 7K/8K, CN9130 SOC support
2277 M:      Andrew Lunn <andrew@lunn.ch>
2278 M:      Gregory Clement <gregory.clement@bootlin.com>
2279 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2280 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2281 S:      Maintained
2282 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gclement/mvebu.git
2283 F:      arch/arm/boot/dts/armada*
2284 F:      arch/arm/boot/dts/kirkwood*
2285 F:      arch/arm/configs/mvebu_*_defconfig
2286 F:      arch/arm/mach-mvebu/
2287 F:      arch/arm64/boot/dts/marvell/armada*
2288 F:      arch/arm64/boot/dts/marvell/cn913*
2289 F:      drivers/cpufreq/armada-37xx-cpufreq.c
2290 F:      drivers/cpufreq/armada-8k-cpufreq.c
2291 F:      drivers/cpufreq/mvebu-cpufreq.c
2292 F:      drivers/irqchip/irq-armada-370-xp.c
2293 F:      drivers/irqchip/irq-mvebu-*
2294 F:      drivers/pinctrl/mvebu/
2295 F:      drivers/rtc/rtc-armada38x.c
2296
2297 ARM/Mediatek RTC DRIVER
2298 M:      Eddie Huang <eddie.huang@mediatek.com>
2299 M:      Sean Wang <sean.wang@mediatek.com>
2300 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2301 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2302 S:      Maintained
2303 F:      Documentation/devicetree/bindings/rtc/rtc-mt2712.txt
2304 F:      Documentation/devicetree/bindings/rtc/rtc-mt7622.txt
2305 F:      drivers/rtc/rtc-mt2712.c
2306 F:      drivers/rtc/rtc-mt6397.c
2307 F:      drivers/rtc/rtc-mt7622.c
2308
2309 ARM/Mediatek SoC support
2310 M:      Matthias Brugger <matthias.bgg@gmail.com>
2311 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2312 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2313 S:      Maintained
2314 W:      https://mtk.wiki.kernel.org/
2315 C:      irc://chat.freenode.net/linux-mediatek
2316 F:      arch/arm/boot/dts/mt6*
2317 F:      arch/arm/boot/dts/mt7*
2318 F:      arch/arm/boot/dts/mt8*
2319 F:      arch/arm/mach-mediatek/
2320 F:      arch/arm64/boot/dts/mediatek/
2321 F:      drivers/soc/mediatek/
2322 N:      mtk
2323 N:      mt[678]
2324 K:      mediatek
2325
2326 ARM/Mediatek USB3 PHY DRIVER
2327 M:      Chunfeng Yun <chunfeng.yun@mediatek.com>
2328 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2329 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2330 S:      Maintained
2331 F:      Documentation/devicetree/bindings/phy/mediatek,*
2332 F:      drivers/phy/mediatek/
2333
2334 ARM/Microchip (AT91) SoC support
2335 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
2336 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
2337 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
2338 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2339 S:      Supported
2340 W:      http://www.linux4sam.org
2341 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/at91/linux.git
2342 F:      arch/arm/boot/dts/at91*.dts
2343 F:      arch/arm/boot/dts/at91*.dtsi
2344 F:      arch/arm/boot/dts/sama*.dts
2345 F:      arch/arm/boot/dts/sama*.dtsi
2346 F:      arch/arm/include/debug/at91.S
2347 F:      arch/arm/mach-at91/
2348 F:      drivers/memory/atmel*
2349 F:      drivers/watchdog/sama5d4_wdt.c
2350 F:      include/soc/at91/
2351 X:      drivers/input/touchscreen/atmel_mxt_ts.c
2352 X:      drivers/net/wireless/atmel/
2353 N:      at91
2354 N:      atmel
2355
2356 ARM/Microchip Sparx5 SoC support
2357 M:      Lars Povlsen <lars.povlsen@microchip.com>
2358 M:      Steen Hegelund <Steen.Hegelund@microchip.com>
2359 M:      UNGLinuxDriver@microchip.com
2360 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2361 S:      Supported
2362 T:      git git://github.com/microchip-ung/linux-upstream.git
2363 F:      arch/arm64/boot/dts/microchip/
2364 F:      drivers/pinctrl/pinctrl-microchip-sgpio.c
2365 N:      sparx5
2366
2367 Microchip Timer Counter Block (TCB) Capture Driver
2368 M:      Kamel Bouhara <kamel.bouhara@bootlin.com>
2369 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2370 L:      linux-iio@vger.kernel.org
2371 S:      Maintained
2372 F:      drivers/counter/microchip-tcb-capture.c
2373
2374 ARM/MILBEAUT ARCHITECTURE
2375 M:      Taichi Sugaya <sugaya.taichi@socionext.com>
2376 M:      Takao Orito <orito.takao@socionext.com>
2377 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2378 S:      Maintained
2379 F:      arch/arm/boot/dts/milbeaut*
2380 F:      arch/arm/mach-milbeaut/
2381 N:      milbeaut
2382
2383 ARM/MIOA701 MACHINE SUPPORT
2384 M:      Robert Jarzmik <robert.jarzmik@free.fr>
2385 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2386 S:      Maintained
2387 F:      arch/arm/mach-pxa/mioa701.c
2388
2389 ARM/MStar/Sigmastar Armv7 SoC support
2390 M:      Daniel Palmer <daniel@thingy.jp>
2391 M:      Romain Perier <romain.perier@gmail.com>
2392 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2393 S:      Maintained
2394 W:      http://linux-chenxing.org/
2395 T:      git git://github.com/linux-chenxing/linux.git
2396 F:      Documentation/devicetree/bindings/arm/mstar/*
2397 F:      Documentation/devicetree/bindings/clock/mstar,msc313-mpll.yaml
2398 F:      Documentation/devicetree/bindings/gpio/mstar,msc313-gpio.yaml
2399 F:      arch/arm/boot/dts/mstar-*
2400 F:      arch/arm/mach-mstar/
2401 F:      drivers/clk/mstar/
2402 F:      drivers/clocksource/timer-msc313e.c
2403 F:      drivers/gpio/gpio-msc313.c
2404 F:      drivers/rtc/rtc-msc313.c
2405 F:      drivers/watchdog/msc313e_wdt.c
2406 F:      include/dt-bindings/clock/mstar-*
2407 F:      include/dt-bindings/gpio/msc313-gpio.h
2408
2409 ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
2410 M:      Michael Petchkovsky <mkpetch@internode.on.net>
2411 S:      Maintained
2412
2413 ARM/NOMADIK/Ux500 ARCHITECTURES
2414 M:      Linus Walleij <linus.walleij@linaro.org>
2415 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2416 S:      Maintained
2417 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
2418 F:      Documentation/devicetree/bindings/arm/ste-*
2419 F:      Documentation/devicetree/bindings/arm/ux500.yaml
2420 F:      Documentation/devicetree/bindings/arm/ux500/
2421 F:      Documentation/devicetree/bindings/i2c/i2c-nomadik.txt
2422 F:      arch/arm/boot/dts/ste-*
2423 F:      arch/arm/mach-nomadik/
2424 F:      arch/arm/mach-ux500/
2425 F:      drivers/clk/clk-nomadik.c
2426 F:      drivers/clocksource/clksrc-dbx500-prcmu.c
2427 F:      drivers/dma/ste_dma40*
2428 F:      drivers/hwspinlock/u8500_hsem.c
2429 F:      drivers/i2c/busses/i2c-nomadik.c
2430 F:      drivers/iio/adc/ab8500-gpadc.c
2431 F:      drivers/mfd/ab8500*
2432 F:      drivers/mfd/abx500*
2433 F:      drivers/mfd/db8500*
2434 F:      drivers/pinctrl/nomadik/
2435 F:      drivers/rtc/rtc-ab8500.c
2436 F:      drivers/rtc/rtc-pl031.c
2437 F:      drivers/soc/ux500/
2438
2439 ARM/NUVOTON NPCM ARCHITECTURE
2440 M:      Avi Fishman <avifishman70@gmail.com>
2441 M:      Tomer Maimon <tmaimon77@gmail.com>
2442 M:      Tali Perry <tali.perry1@gmail.com>
2443 R:      Patrick Venture <venture@google.com>
2444 R:      Nancy Yuen <yuenn@google.com>
2445 R:      Benjamin Fair <benjaminfair@google.com>
2446 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2447 S:      Supported
2448 F:      Documentation/devicetree/bindings/*/*/*npcm*
2449 F:      Documentation/devicetree/bindings/*/*npcm*
2450 F:      Documentation/devicetree/bindings/arm/npcm/*
2451 F:      arch/arm/boot/dts/nuvoton-npcm*
2452 F:      arch/arm/mach-npcm/
2453 F:      drivers/*/*npcm*
2454 F:      drivers/*/*/*npcm*
2455 F:      include/dt-bindings/clock/nuvoton,npcm7xx-clock.h
2456
2457 ARM/NUVOTON WPCM450 ARCHITECTURE
2458 M:      Jonathan Neuschäfer <j.neuschaefer@gmx.net>
2459 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2460 S:      Maintained
2461 W:      https://github.com/neuschaefer/wpcm450/wiki
2462 F:      Documentation/devicetree/bindings/*/*wpcm*
2463 F:      arch/arm/boot/dts/nuvoton-wpcm450*
2464 F:      arch/arm/mach-npcm/wpcm450.c
2465 F:      drivers/*/*/*wpcm*
2466 F:      drivers/*/*wpcm*
2467
2468 ARM/NXP S32G ARCHITECTURE
2469 M:      Chester Lin <clin@suse.com>
2470 R:      Andreas Färber <afaerber@suse.de>
2471 R:      Matthias Brugger <mbrugger@suse.com>
2472 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2473 S:      Maintained
2474 F:      arch/arm64/boot/dts/freescale/s32g*.dts*
2475
2476 ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
2477 L:      openmoko-kernel@lists.openmoko.org (subscribers-only)
2478 S:      Orphan
2479 W:      http://wiki.openmoko.org/wiki/Neo_FreeRunner
2480 F:      arch/arm/mach-s3c/gta02.h
2481 F:      arch/arm/mach-s3c/mach-gta02.c
2482
2483 ARM/Orion SoC/Technologic Systems TS-78xx platform support
2484 M:      Alexander Clouter <alex@digriz.org.uk>
2485 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2486 S:      Maintained
2487 W:      http://www.digriz.org.uk/ts78xx/kernel
2488 F:      arch/arm/mach-orion5x/ts78xx-*
2489
2490 ARM/OXNAS platform support
2491 M:      Neil Armstrong <narmstrong@baylibre.com>
2492 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2493 L:      linux-oxnas@groups.io (moderated for non-subscribers)
2494 S:      Maintained
2495 F:      arch/arm/boot/dts/ox8*.dts*
2496 F:      arch/arm/mach-oxnas/
2497 F:      drivers/power/reset/oxnas-restart.c
2498 N:      oxnas
2499
2500 ARM/PALM TREO SUPPORT
2501 M:      Tomas Cech <sleep_walker@suse.com>
2502 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2503 S:      Maintained
2504 W:      http://hackndev.com
2505 F:      arch/arm/mach-pxa/palmtreo.*
2506
2507 ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
2508 M:      Marek Vasut <marek.vasut@gmail.com>
2509 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2510 S:      Maintained
2511 W:      http://hackndev.com
2512 F:      arch/arm/mach-pxa/include/mach/palmld.h
2513 F:      arch/arm/mach-pxa/include/mach/palmtc.h
2514 F:      arch/arm/mach-pxa/include/mach/palmtx.h
2515 F:      arch/arm/mach-pxa/palmld.c
2516 F:      arch/arm/mach-pxa/palmt5.*
2517 F:      arch/arm/mach-pxa/palmtc.c
2518 F:      arch/arm/mach-pxa/palmte2.*
2519 F:      arch/arm/mach-pxa/palmtx.c
2520
2521 ARM/PALMZ72 SUPPORT
2522 M:      Sergey Lapin <slapin@ossfans.org>
2523 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2524 S:      Maintained
2525 W:      http://hackndev.com
2526 F:      arch/arm/mach-pxa/palmz72.*
2527
2528 ARM/PLEB SUPPORT
2529 M:      Peter Chubb <pleb@gelato.unsw.edu.au>
2530 S:      Maintained
2531 W:      http://www.disy.cse.unsw.edu.au/Hardware/PLEB
2532
2533 ARM/PT DIGITAL BOARD PORT
2534 M:      Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
2535 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2536 S:      Maintained
2537 W:      http://www.armlinux.org.uk/
2538
2539 ARM/QUALCOMM SUPPORT
2540 M:      Andy Gross <agross@kernel.org>
2541 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
2542 L:      linux-arm-msm@vger.kernel.org
2543 S:      Maintained
2544 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/qcom/linux.git
2545 F:      Documentation/devicetree/bindings/*/qcom*
2546 F:      Documentation/devicetree/bindings/soc/qcom/
2547 F:      arch/arm/boot/dts/qcom-*.dts
2548 F:      arch/arm/boot/dts/qcom-*.dtsi
2549 F:      arch/arm/mach-qcom/
2550 F:      arch/arm64/boot/dts/qcom/
2551 F:      drivers/*/*/qcom*
2552 F:      drivers/*/*/qcom/
2553 F:      drivers/*/pm8???-*
2554 F:      drivers/*/qcom*
2555 F:      drivers/*/qcom/
2556 F:      drivers/bluetooth/btqcomsmd.c
2557 F:      drivers/clocksource/timer-qcom.c
2558 F:      drivers/cpuidle/cpuidle-qcom-spm.c
2559 F:      drivers/extcon/extcon-qcom*
2560 F:      drivers/i2c/busses/i2c-qcom-geni.c
2561 F:      drivers/i2c/busses/i2c-qup.c
2562 F:      drivers/iommu/msm*
2563 F:      drivers/mfd/ssbi.c
2564 F:      drivers/mmc/host/mmci_qcom*
2565 F:      drivers/mmc/host/sdhci-msm.c
2566 F:      drivers/pci/controller/dwc/pcie-qcom.c
2567 F:      drivers/phy/qualcomm/
2568 F:      drivers/power/*/msm*
2569 F:      drivers/reset/reset-qcom-*
2570 F:      drivers/ufs/host/ufs-qcom*
2571 F:      drivers/spi/spi-geni-qcom.c
2572 F:      drivers/spi/spi-qcom-qspi.c
2573 F:      drivers/spi/spi-qup.c
2574 F:      drivers/tty/serial/msm_serial.c
2575 F:      drivers/usb/dwc3/dwc3-qcom.c
2576 F:      include/dt-bindings/*/qcom*
2577 F:      include/linux/*/qcom*
2578 F:      include/linux/soc/qcom/
2579
2580 ARM/RADISYS ENP2611 MACHINE SUPPORT
2581 M:      Lennert Buytenhek <kernel@wantstofly.org>
2582 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2583 S:      Maintained
2584
2585 ARM/RDA MICRO ARCHITECTURE
2586 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
2587 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2588 L:      linux-unisoc@lists.infradead.org (moderated for non-subscribers)
2589 S:      Maintained
2590 F:      Documentation/devicetree/bindings/arm/rda.yaml
2591 F:      Documentation/devicetree/bindings/gpio/gpio-rda.yaml
2592 F:      Documentation/devicetree/bindings/interrupt-controller/rda,8810pl-intc.txt
2593 F:      Documentation/devicetree/bindings/serial/rda,8810pl-uart.yaml
2594 F:      Documentation/devicetree/bindings/timer/rda,8810pl-timer.yaml
2595 F:      arch/arm/boot/dts/rda8810pl-*
2596 F:      drivers/clocksource/timer-rda.c
2597 F:      drivers/gpio/gpio-rda.c
2598 F:      drivers/irqchip/irq-rda-intc.c
2599 F:      drivers/tty/serial/rda-uart.c
2600
2601 ARM/REALTEK ARCHITECTURE
2602 M:      Andreas Färber <afaerber@suse.de>
2603 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2604 L:      linux-realtek-soc@lists.infradead.org (moderated for non-subscribers)
2605 S:      Maintained
2606 F:      Documentation/devicetree/bindings/arm/realtek.yaml
2607 F:      arch/arm/boot/dts/rtd*
2608 F:      arch/arm/mach-realtek/
2609 F:      arch/arm64/boot/dts/realtek/
2610
2611 ARM/RENESAS ARM64 ARCHITECTURE
2612 M:      Geert Uytterhoeven <geert+renesas@glider.be>
2613 M:      Magnus Damm <magnus.damm@gmail.com>
2614 L:      linux-renesas-soc@vger.kernel.org
2615 S:      Supported
2616 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
2617 C:      irc://irc.libera.chat/renesas-soc
2618 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git next
2619 F:      Documentation/devicetree/bindings/arm/renesas.yaml
2620 F:      arch/arm64/boot/dts/renesas/
2621 F:      drivers/soc/renesas/
2622 F:      include/linux/soc/renesas/
2623
2624 ARM/RISCPC ARCHITECTURE
2625 M:      Russell King <linux@armlinux.org.uk>
2626 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2627 S:      Maintained
2628 W:      http://www.armlinux.org.uk/
2629 F:      arch/arm/include/asm/hardware/entry-macro-iomd.S
2630 F:      arch/arm/include/asm/hardware/ioc.h
2631 F:      arch/arm/include/asm/hardware/iomd.h
2632 F:      arch/arm/include/asm/hardware/memc.h
2633 F:      arch/arm/mach-rpc/
2634 F:      drivers/net/ethernet/8390/etherh.c
2635 F:      drivers/net/ethernet/i825xx/ether1*
2636 F:      drivers/net/ethernet/seeq/ether3*
2637 F:      drivers/scsi/arm/
2638
2639 ARM/Rockchip SoC support
2640 M:      Heiko Stuebner <heiko@sntech.de>
2641 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2642 L:      linux-rockchip@lists.infradead.org
2643 S:      Maintained
2644 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmind/linux-rockchip.git
2645 F:      Documentation/devicetree/bindings/i2c/i2c-rk3x.yaml
2646 F:      Documentation/devicetree/bindings/mmc/rockchip-dw-mshc.yaml
2647 F:      Documentation/devicetree/bindings/spi/spi-rockchip.yaml
2648 F:      arch/arm/boot/dts/rk3*
2649 F:      arch/arm/boot/dts/rv1108*
2650 F:      arch/arm/mach-rockchip/
2651 F:      drivers/*/*/*rockchip*
2652 F:      drivers/*/*rockchip*
2653 F:      drivers/clk/rockchip/
2654 F:      drivers/i2c/busses/i2c-rk3x.c
2655 F:      sound/soc/rockchip/
2656 N:      rockchip
2657
2658 ARM/SAMSUNG S3C, S5P AND EXYNOS ARM ARCHITECTURES
2659 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
2660 R:      Alim Akhtar <alim.akhtar@samsung.com>
2661 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2662 L:      linux-samsung-soc@vger.kernel.org
2663 S:      Maintained
2664 C:      irc://irc.libera.chat/linux-exynos
2665 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
2666 B:      mailto:linux-samsung-soc@vger.kernel.org
2667 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/krzk/linux.git
2668 F:      Documentation/arm/samsung/
2669 F:      Documentation/devicetree/bindings/arm/samsung/
2670 F:      Documentation/devicetree/bindings/power/pd-samsung.yaml
2671 F:      Documentation/devicetree/bindings/soc/samsung/
2672 F:      arch/arm/boot/dts/exynos*
2673 F:      arch/arm/boot/dts/s3c*
2674 F:      arch/arm/boot/dts/s5p*
2675 F:      arch/arm/mach-exynos*/
2676 F:      arch/arm/mach-s3c/
2677 F:      arch/arm/mach-s5p*/
2678 F:      arch/arm64/boot/dts/exynos/
2679 F:      drivers/*/*/*s3c24*
2680 F:      drivers/*/*s3c24*
2681 F:      drivers/*/*s3c64xx*
2682 F:      drivers/*/*s5pv210*
2683 F:      drivers/clocksource/samsung_pwm_timer.c
2684 F:      drivers/memory/samsung/
2685 F:      drivers/pwm/pwm-samsung.c
2686 F:      drivers/soc/samsung/
2687 F:      drivers/tty/serial/samsung*
2688 F:      include/clocksource/samsung_pwm.h
2689 F:      include/linux/platform_data/*s3c*
2690 F:      include/linux/serial_s3c.h
2691 F:      include/linux/soc/samsung/
2692 N:      exynos
2693 N:      s3c2410
2694 N:      s3c64xx
2695 N:      s5pv210
2696
2697 ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT
2698 M:      Łukasz Stelmach <l.stelmach@samsung.com>
2699 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2700 L:      linux-media@vger.kernel.org
2701 S:      Maintained
2702 F:      drivers/media/platform/samsung/s5p-g2d/
2703
2704 ARM/SAMSUNG S5P SERIES HDMI CEC SUBSYSTEM SUPPORT
2705 M:      Marek Szyprowski <m.szyprowski@samsung.com>
2706 L:      linux-samsung-soc@vger.kernel.org
2707 L:      linux-media@vger.kernel.org
2708 S:      Maintained
2709 F:      Documentation/devicetree/bindings/media/s5p-cec.txt
2710 F:      drivers/media/cec/platform/s5p/
2711
2712 ARM/SAMSUNG S5P SERIES JPEG CODEC SUPPORT
2713 M:      Andrzej Pietrasiewicz <andrzejtp2010@gmail.com>
2714 M:      Jacek Anaszewski <jacek.anaszewski@gmail.com>
2715 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
2716 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2717 L:      linux-media@vger.kernel.org
2718 S:      Maintained
2719 F:      drivers/media/platform/samsung/s5p-jpeg/
2720
2721 ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
2722 M:      Marek Szyprowski <m.szyprowski@samsung.com>
2723 M:      Andrzej Hajda <andrzej.hajda@intel.com>
2724 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2725 L:      linux-media@vger.kernel.org
2726 S:      Maintained
2727 F:      drivers/media/platform/samsung/s5p-mfc/
2728
2729 ARM/SHMOBILE ARM ARCHITECTURE
2730 M:      Geert Uytterhoeven <geert+renesas@glider.be>
2731 M:      Magnus Damm <magnus.damm@gmail.com>
2732 L:      linux-renesas-soc@vger.kernel.org
2733 S:      Supported
2734 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
2735 C:      irc://irc.libera.chat/renesas-soc
2736 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git next
2737 F:      Documentation/devicetree/bindings/arm/renesas.yaml
2738 F:      arch/arm/boot/dts/emev2*
2739 F:      arch/arm/boot/dts/gr-peach*
2740 F:      arch/arm/boot/dts/iwg20d-q7*
2741 F:      arch/arm/boot/dts/r7s*
2742 F:      arch/arm/boot/dts/r8a*
2743 F:      arch/arm/boot/dts/r9a*
2744 F:      arch/arm/boot/dts/sh*
2745 F:      arch/arm/configs/shmobile_defconfig
2746 F:      arch/arm/include/debug/renesas-scif.S
2747 F:      arch/arm/mach-shmobile/
2748 F:      drivers/soc/renesas/
2749 F:      include/linux/soc/renesas/
2750
2751 ARM/SOCFPGA ARCHITECTURE
2752 M:      Dinh Nguyen <dinguyen@kernel.org>
2753 S:      Maintained
2754 W:      http://www.rocketboards.org
2755 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
2756 F:      arch/arm/boot/dts/socfpga*
2757 F:      arch/arm/configs/socfpga_defconfig
2758 F:      arch/arm/mach-socfpga/
2759 F:      arch/arm64/boot/dts/altera/
2760 F:      arch/arm64/boot/dts/intel/
2761
2762 ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
2763 M:      Dinh Nguyen <dinguyen@kernel.org>
2764 S:      Maintained
2765 F:      drivers/clk/socfpga/
2766
2767 ARM/SOCFPGA EDAC SUPPORT
2768 M:      Dinh Nguyen <dinguyen@kernel.org>
2769 S:      Maintained
2770 F:      drivers/edac/altera_edac.[ch]
2771
2772 ARM/SPREADTRUM SoC SUPPORT
2773 M:      Orson Zhai <orsonzhai@gmail.com>
2774 M:      Baolin Wang <baolin.wang7@gmail.com>
2775 M:      Chunyan Zhang <zhang.lyra@gmail.com>
2776 S:      Maintained
2777 F:      arch/arm64/boot/dts/sprd
2778 N:      sprd
2779 N:      sc27xx
2780 N:      sc2731
2781
2782 ARM/STI ARCHITECTURE
2783 M:      Patrice Chotard <patrice.chotard@foss.st.com>
2784 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2785 S:      Maintained
2786 W:      http://www.stlinux.com
2787 F:      Documentation/devicetree/bindings/i2c/i2c-st.txt
2788 F:      arch/arm/boot/dts/sti*
2789 F:      arch/arm/mach-sti/
2790 F:      drivers/ata/ahci_st.c
2791 F:      drivers/char/hw_random/st-rng.c
2792 F:      drivers/clocksource/arm_global_timer.c
2793 F:      drivers/clocksource/clksrc_st_lpc.c
2794 F:      drivers/cpufreq/sti-cpufreq.c
2795 F:      drivers/dma/st_fdma*
2796 F:      drivers/i2c/busses/i2c-st.c
2797 F:      drivers/media/platform/st/sti/c8sectpfe/
2798 F:      drivers/media/rc/st_rc.c
2799 F:      drivers/mmc/host/sdhci-st.c
2800 F:      drivers/phy/st/phy-miphy28lp.c
2801 F:      drivers/phy/st/phy-stih407-usb.c
2802 F:      drivers/pinctrl/pinctrl-st.c
2803 F:      drivers/remoteproc/st_remoteproc.c
2804 F:      drivers/remoteproc/st_slim_rproc.c
2805 F:      drivers/reset/sti/
2806 F:      drivers/rtc/rtc-st-lpc.c
2807 F:      drivers/tty/serial/st-asc.c
2808 F:      drivers/usb/dwc3/dwc3-st.c
2809 F:      drivers/usb/host/ehci-st.c
2810 F:      drivers/usb/host/ohci-st.c
2811 F:      drivers/watchdog/st_lpc_wdt.c
2812 F:      include/linux/remoteproc/st_slim_rproc.h
2813
2814 ARM/STM32 ARCHITECTURE
2815 M:      Maxime Coquelin <mcoquelin.stm32@gmail.com>
2816 M:      Alexandre Torgue <alexandre.torgue@foss.st.com>
2817 L:      linux-stm32@st-md-mailman.stormreply.com (moderated for non-subscribers)
2818 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2819 S:      Maintained
2820 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/atorgue/stm32.git stm32-next
2821 F:      arch/arm/boot/dts/stm32*
2822 F:      arch/arm/mach-stm32/
2823 F:      drivers/clocksource/armv7m_systick.c
2824 N:      stm32
2825 N:      stm
2826
2827 ARM/Synaptics SoC support
2828 M:      Jisheng Zhang <jszhang@kernel.org>
2829 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2830 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2831 S:      Maintained
2832 F:      arch/arm/boot/dts/berlin*
2833 F:      arch/arm/mach-berlin/
2834 F:      arch/arm64/boot/dts/synaptics/
2835
2836 ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
2837 M:      Lennert Buytenhek <kernel@wantstofly.org>
2838 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2839 S:      Maintained
2840
2841 ARM/TEGRA HDMI CEC SUBSYSTEM SUPPORT
2842 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
2843 L:      linux-tegra@vger.kernel.org
2844 L:      linux-media@vger.kernel.org
2845 S:      Maintained
2846 F:      Documentation/devicetree/bindings/media/tegra-cec.txt
2847 F:      drivers/media/cec/platform/tegra/
2848
2849 ARM/TESLA FSD SoC SUPPORT
2850 M:      Alim Akhtar <alim.akhtar@samsung.com>
2851 M:      linux-fsd@tesla.com
2852 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2853 L:      linux-samsung-soc@vger.kernel.org
2854 S:      Maintained
2855 F:      arch/arm64/boot/dts/tesla*
2856
2857 ARM/TETON BGA MACHINE SUPPORT
2858 M:      "Mark F. Brown" <mark.brown314@gmail.com>
2859 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2860 S:      Maintained
2861
2862 ARM/TEXAS INSTRUMENT AEMIF/EMIF DRIVERS
2863 M:      Santosh Shilimkar <ssantosh@kernel.org>
2864 L:      linux-kernel@vger.kernel.org
2865 S:      Maintained
2866 F:      drivers/memory/*emif*
2867
2868 ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE
2869 M:      Nishanth Menon <nm@ti.com>
2870 M:      Santosh Shilimkar <ssantosh@kernel.org>
2871 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2872 S:      Maintained
2873 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ti/linux.git
2874 F:      arch/arm/boot/dts/keystone-*
2875 F:      arch/arm/mach-keystone/
2876
2877 ARM/TEXAS INSTRUMENT KEYSTONE CLOCK FRAMEWORK
2878 M:      Santosh Shilimkar <ssantosh@kernel.org>
2879 L:      linux-kernel@vger.kernel.org
2880 S:      Maintained
2881 F:      drivers/clk/keystone/
2882
2883 ARM/TEXAS INSTRUMENT KEYSTONE CLOCKSOURCE
2884 M:      Santosh Shilimkar <ssantosh@kernel.org>
2885 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2886 L:      linux-kernel@vger.kernel.org
2887 S:      Maintained
2888 F:      drivers/clocksource/timer-keystone.c
2889
2890 ARM/TEXAS INSTRUMENT KEYSTONE RESET DRIVER
2891 M:      Santosh Shilimkar <ssantosh@kernel.org>
2892 L:      linux-kernel@vger.kernel.org
2893 S:      Maintained
2894 F:      drivers/power/reset/keystone-reset.c
2895
2896 ARM/TEXAS INSTRUMENTS K3 ARCHITECTURE
2897 M:      Nishanth Menon <nm@ti.com>
2898 M:      Vignesh Raghavendra <vigneshr@ti.com>
2899 M:      Tero Kristo <kristo@kernel.org>
2900 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2901 S:      Supported
2902 F:      Documentation/devicetree/bindings/arm/ti/k3.yaml
2903 F:      arch/arm64/boot/dts/ti/Makefile
2904 F:      arch/arm64/boot/dts/ti/k3-*
2905 F:      include/dt-bindings/pinctrl/k3.h
2906
2907 ARM/THECUS N2100 MACHINE SUPPORT
2908 M:      Lennert Buytenhek <kernel@wantstofly.org>
2909 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2910 S:      Maintained
2911
2912 ARM/TOSA MACHINE SUPPORT
2913 M:      Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
2914 M:      Dirk Opfer <dirk@opfer-online.de>
2915 S:      Maintained
2916
2917 ARM/TOSHIBA VISCONTI ARCHITECTURE
2918 M:      Nobuhiro Iwamatsu <nobuhiro1.iwamatsu@toshiba.co.jp>
2919 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2920 S:      Supported
2921 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwamatsu/linux-visconti.git
2922 F:      Documentation/devicetree/bindings/arm/toshiba.yaml
2923 F:      Documentation/devicetree/bindings/clock/toshiba,tmpv770x-pipllct.yaml
2924 F:      Documentation/devicetree/bindings/clock/toshiba,tmpv770x-pismu.yaml
2925 F:      Documentation/devicetree/bindings/net/toshiba,visconti-dwmac.yaml
2926 F:      Documentation/devicetree/bindings/gpio/toshiba,gpio-visconti.yaml
2927 F:      Documentation/devicetree/bindings/pci/toshiba,visconti-pcie.yaml
2928 F:      Documentation/devicetree/bindings/pinctrl/toshiba,visconti-pinctrl.yaml
2929 F:      Documentation/devicetree/bindings/watchdog/toshiba,visconti-wdt.yaml
2930 F:      arch/arm64/boot/dts/toshiba/
2931 F:      drivers/clk/visconti/
2932 F:      drivers/net/ethernet/stmicro/stmmac/dwmac-visconti.c
2933 F:      drivers/gpio/gpio-visconti.c
2934 F:      drivers/pci/controller/dwc/pcie-visconti.c
2935 F:      drivers/pinctrl/visconti/
2936 F:      drivers/watchdog/visconti_wdt.c
2937 N:      visconti
2938
2939 ARM/UNIPHIER ARCHITECTURE
2940 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
2941 M:      Masami Hiramatsu <mhiramat@kernel.org>
2942 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2943 S:      Maintained
2944 F:      Documentation/devicetree/bindings/arm/socionext/uniphier.yaml
2945 F:      Documentation/devicetree/bindings/gpio/socionext,uniphier-gpio.yaml
2946 F:      Documentation/devicetree/bindings/pinctrl/socionext,uniphier-pinctrl.yaml
2947 F:      arch/arm/boot/dts/uniphier*
2948 F:      arch/arm/include/asm/hardware/cache-uniphier.h
2949 F:      arch/arm/mach-uniphier/
2950 F:      arch/arm/mm/cache-uniphier.c
2951 F:      arch/arm64/boot/dts/socionext/uniphier*
2952 F:      drivers/bus/uniphier-system-bus.c
2953 F:      drivers/clk/uniphier/
2954 F:      drivers/dma/uniphier-mdmac.c
2955 F:      drivers/gpio/gpio-uniphier.c
2956 F:      drivers/i2c/busses/i2c-uniphier*
2957 F:      drivers/irqchip/irq-uniphier-aidet.c
2958 F:      drivers/mmc/host/uniphier-sd.c
2959 F:      drivers/pinctrl/uniphier/
2960 F:      drivers/reset/reset-uniphier.c
2961 F:      drivers/tty/serial/8250/8250_uniphier.c
2962 N:      uniphier
2963
2964 ARM/VERSATILE EXPRESS PLATFORM
2965 M:      Liviu Dudau <liviu.dudau@arm.com>
2966 M:      Sudeep Holla <sudeep.holla@arm.com>
2967 M:      Lorenzo Pieralisi <lpieralisi@kernel.org>
2968 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2969 S:      Maintained
2970 F:      */*/*/vexpress*
2971 F:      */*/vexpress*
2972 F:      arch/arm/boot/dts/vexpress*
2973 F:      arch/arm/mach-vexpress/
2974 F:      arch/arm64/boot/dts/arm/
2975 F:      drivers/clk/versatile/clk-vexpress-osc.c
2976 F:      drivers/clocksource/timer-versatile.c
2977 N:      mps2
2978
2979 ARM/VFP SUPPORT
2980 M:      Russell King <linux@armlinux.org.uk>
2981 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2982 S:      Maintained
2983 W:      http://www.armlinux.org.uk/
2984 F:      arch/arm/vfp/
2985
2986 ARM/VOIPAC PXA270 SUPPORT
2987 M:      Marek Vasut <marek.vasut@gmail.com>
2988 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2989 S:      Maintained
2990 F:      arch/arm/mach-pxa/include/mach/vpac270.h
2991 F:      arch/arm/mach-pxa/vpac270.c
2992
2993 ARM/VT8500 ARM ARCHITECTURE
2994 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2995 S:      Orphan
2996 F:      Documentation/devicetree/bindings/i2c/i2c-wmt.txt
2997 F:      arch/arm/mach-vt8500/
2998 F:      drivers/clocksource/timer-vt8500.c
2999 F:      drivers/i2c/busses/i2c-wmt.c
3000 F:      drivers/mmc/host/wmt-sdmmc.c
3001 F:      drivers/pwm/pwm-vt8500.c
3002 F:      drivers/rtc/rtc-vt8500.c
3003 F:      drivers/tty/serial/vt8500_serial.c
3004 F:      drivers/usb/host/ehci-platform.c
3005 F:      drivers/usb/host/uhci-platform.c
3006 F:      drivers/video/fbdev/vt8500lcdfb.*
3007 F:      drivers/video/fbdev/wm8505fb*
3008 F:      drivers/video/fbdev/wmt_ge_rops.*
3009
3010 ARM/ZIPIT Z2 SUPPORT
3011 M:      Marek Vasut <marek.vasut@gmail.com>
3012 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3013 S:      Maintained
3014 F:      arch/arm/mach-pxa/include/mach/z2.h
3015 F:      arch/arm/mach-pxa/z2.c
3016
3017 ARM/ZYNQ ARCHITECTURE
3018 M:      Michal Simek <michal.simek@xilinx.com>
3019 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3020 S:      Supported
3021 W:      http://wiki.xilinx.com
3022 T:      git https://github.com/Xilinx/linux-xlnx.git
3023 F:      Documentation/devicetree/bindings/i2c/cdns,i2c-r1p10.yaml
3024 F:      Documentation/devicetree/bindings/i2c/xlnx,xps-iic-2.00.a.yaml
3025 F:      Documentation/devicetree/bindings/spi/xlnx,zynq-qspi.yaml
3026 F:      arch/arm/mach-zynq/
3027 F:      drivers/clocksource/timer-cadence-ttc.c
3028 F:      drivers/cpuidle/cpuidle-zynq.c
3029 F:      drivers/edac/synopsys_edac.c
3030 F:      drivers/i2c/busses/i2c-cadence.c
3031 F:      drivers/i2c/busses/i2c-xiic.c
3032 F:      drivers/mmc/host/sdhci-of-arasan.c
3033 N:      zynq
3034 N:      xilinx
3035
3036 ARM64 PORT (AARCH64 ARCHITECTURE)
3037 M:      Catalin Marinas <catalin.marinas@arm.com>
3038 M:      Will Deacon <will@kernel.org>
3039 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3040 S:      Maintained
3041 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux.git
3042 F:      Documentation/arm64/
3043 F:      arch/arm64/
3044 F:      tools/testing/selftests/arm64/
3045 X:      arch/arm64/boot/dts/
3046
3047 ARROW SPEEDCHIPS XRS7000 SERIES ETHERNET SWITCH DRIVER
3048 M:      George McCollister <george.mccollister@gmail.com>
3049 L:      netdev@vger.kernel.org
3050 S:      Maintained
3051 F:      Documentation/devicetree/bindings/net/dsa/arrow,xrs700x.yaml
3052 F:      drivers/net/dsa/xrs700x/*
3053 F:      net/dsa/tag_xrs700x.c
3054
3055 AS3645A LED FLASH CONTROLLER DRIVER
3056 M:      Sakari Ailus <sakari.ailus@iki.fi>
3057 L:      linux-leds@vger.kernel.org
3058 S:      Maintained
3059 F:      drivers/leds/flash/leds-as3645a.c
3060
3061 ASAHI KASEI AK7375 LENS VOICE COIL DRIVER
3062 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
3063 L:      linux-media@vger.kernel.org
3064 S:      Maintained
3065 T:      git git://linuxtv.org/media_tree.git
3066 F:      Documentation/devicetree/bindings/media/i2c/ak7375.txt
3067 F:      drivers/media/i2c/ak7375.c
3068
3069 ASAHI KASEI AK8974 DRIVER
3070 M:      Linus Walleij <linus.walleij@linaro.org>
3071 L:      linux-iio@vger.kernel.org
3072 S:      Supported
3073 W:      http://www.akm.com/
3074 F:      drivers/iio/magnetometer/ak8974.c
3075
3076 ASC7621 HARDWARE MONITOR DRIVER
3077 M:      George Joseph <george.joseph@fairview5.com>
3078 L:      linux-hwmon@vger.kernel.org
3079 S:      Maintained
3080 F:      Documentation/hwmon/asc7621.rst
3081 F:      drivers/hwmon/asc7621.c
3082
3083 ASIX AX88796C SPI ETHERNET ADAPTER
3084 M:      Łukasz Stelmach <l.stelmach@samsung.com>
3085 S:      Maintained
3086 F:      Documentation/devicetree/bindings/net/asix,ax88796c.yaml
3087 F:      drivers/net/ethernet/asix/ax88796c_*
3088
3089 ASPEED PECI CONTROLLER
3090 M:      Iwona Winiarska <iwona.winiarska@intel.com>
3091 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
3092 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
3093 S:      Supported
3094 F:      Documentation/devicetree/bindings/peci/peci-aspeed.yaml
3095 F:      drivers/peci/controller/peci-aspeed.c
3096
3097 ASPEED PINCTRL DRIVERS
3098 M:      Andrew Jeffery <andrew@aj.id.au>
3099 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
3100 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
3101 L:      linux-gpio@vger.kernel.org
3102 S:      Maintained
3103 F:      Documentation/devicetree/bindings/pinctrl/aspeed,*
3104 F:      drivers/pinctrl/aspeed/
3105
3106 ASPEED SCU INTERRUPT CONTROLLER DRIVER
3107 M:      Eddie James <eajames@linux.ibm.com>
3108 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
3109 S:      Maintained
3110 F:      Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2xxx-scu-ic.txt
3111 F:      drivers/irqchip/irq-aspeed-scu-ic.c
3112 F:      include/dt-bindings/interrupt-controller/aspeed-scu-ic.h
3113
3114 ASPEED SD/MMC DRIVER
3115 M:      Andrew Jeffery <andrew@aj.id.au>
3116 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
3117 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
3118 L:      linux-mmc@vger.kernel.org
3119 S:      Maintained
3120 F:      Documentation/devicetree/bindings/mmc/aspeed,sdhci.yaml
3121 F:      drivers/mmc/host/sdhci-of-aspeed*
3122
3123 ASPEED SMC SPI DRIVER
3124 M:      Chin-Ting Kuo <chin-ting_kuo@aspeedtech.com>
3125 M:      Cédric Le Goater <clg@kaod.org>
3126 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
3127 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
3128 L:      linux-spi@vger.kernel.org
3129 S:      Maintained
3130 F:      Documentation/devicetree/bindings/spi/aspeed,ast2600-fmc.yaml
3131 F:      drivers/spi/spi-aspeed-smc.c
3132
3133 ASPEED VIDEO ENGINE DRIVER
3134 M:      Eddie James <eajames@linux.ibm.com>
3135 L:      linux-media@vger.kernel.org
3136 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
3137 S:      Maintained
3138 F:      Documentation/devicetree/bindings/media/aspeed-video.txt
3139 F:      drivers/media/platform/aspeed/
3140
3141 ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
3142 M:      Corentin Chary <corentin.chary@gmail.com>
3143 L:      acpi4asus-user@lists.sourceforge.net
3144 L:      platform-driver-x86@vger.kernel.org
3145 S:      Maintained
3146 W:      http://acpi4asus.sf.net
3147 F:      drivers/platform/x86/asus*.c
3148 F:      drivers/platform/x86/eeepc*.c
3149
3150 ASUS TF103C DOCK DRIVER
3151 M:      Hans de Goede <hdegoede@redhat.com>
3152 L:      platform-driver-x86@vger.kernel.org
3153 S:      Maintained
3154 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
3155 F:      drivers/platform/x86/asus-tf103c-dock.c
3156
3157 ASUS WMI HARDWARE MONITOR DRIVER
3158 M:      Ed Brindley <kernel@maidavale.org>
3159 M:      Denis Pauk <pauk.denis@gmail.com>
3160 L:      linux-hwmon@vger.kernel.org
3161 S:      Maintained
3162 F:      drivers/hwmon/asus_wmi_sensors.c
3163
3164 ASUS WMI EC HARDWARE MONITOR DRIVER
3165 M:      Eugene Shalygin <eugene.shalygin@gmail.com>
3166 M:      Denis Pauk <pauk.denis@gmail.com>
3167 L:      linux-hwmon@vger.kernel.org
3168 S:      Maintained
3169 F:      drivers/hwmon/asus_wmi_ec_sensors.c
3170
3171 ASUS EC HARDWARE MONITOR DRIVER
3172 M:      Eugene Shalygin <eugene.shalygin@gmail.com>
3173 L:      linux-hwmon@vger.kernel.org
3174 S:      Maintained
3175 F:      drivers/hwmon/asus-ec-sensors.c
3176
3177 ASUS WIRELESS RADIO CONTROL DRIVER
3178 M:      João Paulo Rechi Vita <jprvita@gmail.com>
3179 L:      platform-driver-x86@vger.kernel.org
3180 S:      Maintained
3181 F:      drivers/platform/x86/asus-wireless.c
3182
3183 ASYMMETRIC KEYS
3184 M:      David Howells <dhowells@redhat.com>
3185 L:      keyrings@vger.kernel.org
3186 S:      Maintained
3187 F:      Documentation/crypto/asymmetric-keys.rst
3188 F:      crypto/asymmetric_keys/
3189 F:      include/crypto/pkcs7.h
3190 F:      include/crypto/public_key.h
3191 F:      include/linux/verification.h
3192
3193 ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
3194 R:      Dan Williams <dan.j.williams@intel.com>
3195 S:      Odd fixes
3196 W:      http://sourceforge.net/projects/xscaleiop
3197 F:      Documentation/crypto/async-tx-api.rst
3198 F:      crypto/async_tx/
3199 F:      include/linux/async_tx.h
3200
3201 AT24 EEPROM DRIVER
3202 M:      Bartosz Golaszewski <brgl@bgdev.pl>
3203 L:      linux-i2c@vger.kernel.org
3204 S:      Maintained
3205 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux.git
3206 F:      Documentation/devicetree/bindings/eeprom/at24.yaml
3207 F:      drivers/misc/eeprom/at24.c
3208
3209 ATA OVER ETHERNET (AOE) DRIVER
3210 M:      "Justin Sanders" <justin@coraid.com>
3211 S:      Supported
3212 W:      http://www.openaoe.org/
3213 F:      Documentation/admin-guide/aoe/
3214 F:      drivers/block/aoe/
3215
3216 ATC260X PMIC MFD DRIVER
3217 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
3218 M:      Cristian Ciocaltea <cristian.ciocaltea@gmail.com>
3219 L:      linux-actions@lists.infradead.org
3220 S:      Maintained
3221 F:      Documentation/devicetree/bindings/mfd/actions,atc260x.yaml
3222 F:      drivers/input/misc/atc260x-onkey.c
3223 F:      drivers/mfd/atc260*
3224 F:      drivers/power/reset/atc260x-poweroff.c
3225 F:      drivers/regulator/atc260x-regulator.c
3226 F:      include/linux/mfd/atc260x/*
3227
3228 ATHEROS 71XX/9XXX GPIO DRIVER
3229 M:      Alban Bedel <albeu@free.fr>
3230 S:      Maintained
3231 W:      https://github.com/AlbanBedel/linux
3232 T:      git git://github.com/AlbanBedel/linux
3233 F:      Documentation/devicetree/bindings/gpio/gpio-ath79.txt
3234 F:      drivers/gpio/gpio-ath79.c
3235
3236 ATHEROS 71XX/9XXX USB PHY DRIVER
3237 M:      Alban Bedel <albeu@free.fr>
3238 S:      Maintained
3239 W:      https://github.com/AlbanBedel/linux
3240 T:      git git://github.com/AlbanBedel/linux
3241 F:      Documentation/devicetree/bindings/phy/phy-ath79-usb.txt
3242 F:      drivers/phy/qualcomm/phy-ath79-usb.c
3243
3244 ATHEROS ATH GENERIC UTILITIES
3245 M:      Kalle Valo <kvalo@kernel.org>
3246 L:      linux-wireless@vger.kernel.org
3247 S:      Supported
3248 F:      drivers/net/wireless/ath/*
3249
3250 ATHEROS ATH5K WIRELESS DRIVER
3251 M:      Jiri Slaby <jirislaby@kernel.org>
3252 M:      Nick Kossifidis <mickflemm@gmail.com>
3253 M:      Luis Chamberlain <mcgrof@kernel.org>
3254 L:      linux-wireless@vger.kernel.org
3255 S:      Maintained
3256 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath5k
3257 F:      drivers/net/wireless/ath/ath5k/
3258
3259 ATHEROS ATH6KL WIRELESS DRIVER
3260 L:      linux-wireless@vger.kernel.org
3261 S:      Orphan
3262 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath6kl
3263 F:      drivers/net/wireless/ath/ath6kl/
3264
3265 ATI_REMOTE2 DRIVER
3266 M:      Ville Syrjala <syrjala@sci.fi>
3267 S:      Maintained
3268 F:      drivers/input/misc/ati_remote2.c
3269
3270 ATK0110 HWMON DRIVER
3271 M:      Luca Tettamanti <kronos.it@gmail.com>
3272 L:      linux-hwmon@vger.kernel.org
3273 S:      Maintained
3274 F:      drivers/hwmon/asus_atk0110.c
3275
3276 ATLX ETHERNET DRIVERS
3277 M:      Chris Snook <chris.snook@gmail.com>
3278 L:      netdev@vger.kernel.org
3279 S:      Maintained
3280 W:      http://sourceforge.net/projects/atl1
3281 W:      http://atl1.sourceforge.net
3282 F:      drivers/net/ethernet/atheros/
3283
3284 ATM
3285 M:      Chas Williams <3chas3@gmail.com>
3286 L:      linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
3287 L:      netdev@vger.kernel.org
3288 S:      Maintained
3289 W:      http://linux-atm.sourceforge.net
3290 F:      drivers/atm/
3291 F:      include/linux/atm*
3292 F:      include/uapi/linux/atm*
3293
3294 ATMEL MACB ETHERNET DRIVER
3295 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
3296 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
3297 S:      Supported
3298 F:      drivers/net/ethernet/cadence/
3299
3300 ATMEL MAXTOUCH DRIVER
3301 M:      Nick Dyer <nick@shmanahar.org>
3302 S:      Maintained
3303 T:      git git://github.com/ndyer/linux.git
3304 F:      Documentation/devicetree/bindings/input/atmel,maxtouch.yaml
3305 F:      drivers/input/touchscreen/atmel_mxt_ts.c
3306
3307 ATMEL WIRELESS DRIVER
3308 M:      Simon Kelley <simon@thekelleys.org.uk>
3309 L:      linux-wireless@vger.kernel.org
3310 S:      Maintained
3311 W:      http://www.thekelleys.org.uk/atmel
3312 W:      http://atmelwlandriver.sourceforge.net/
3313 F:      drivers/net/wireless/atmel/atmel*
3314
3315 ATOMIC INFRASTRUCTURE
3316 M:      Will Deacon <will@kernel.org>
3317 M:      Peter Zijlstra <peterz@infradead.org>
3318 R:      Boqun Feng <boqun.feng@gmail.com>
3319 R:      Mark Rutland <mark.rutland@arm.com>
3320 L:      linux-kernel@vger.kernel.org
3321 S:      Maintained
3322 F:      arch/*/include/asm/atomic*.h
3323 F:      include/*/atomic*.h
3324 F:      include/linux/refcount.h
3325 F:      Documentation/atomic_*.txt
3326 F:      scripts/atomic/
3327
3328 ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER
3329 M:      Bradley Grove <linuxdrivers@attotech.com>
3330 L:      linux-scsi@vger.kernel.org
3331 S:      Supported
3332 W:      http://www.attotech.com
3333 F:      drivers/scsi/esas2r
3334
3335 ATUSB IEEE 802.15.4 RADIO DRIVER
3336 M:      Stefan Schmidt <stefan@datenfreihafen.org>
3337 L:      linux-wpan@vger.kernel.org
3338 S:      Maintained
3339 F:      drivers/net/ieee802154/at86rf230.h
3340 F:      drivers/net/ieee802154/atusb.c
3341 F:      drivers/net/ieee802154/atusb.h
3342
3343 AUDIT SUBSYSTEM
3344 M:      Paul Moore <paul@paul-moore.com>
3345 M:      Eric Paris <eparis@redhat.com>
3346 L:      linux-audit@redhat.com (moderated for non-subscribers)
3347 S:      Supported
3348 W:      https://github.com/linux-audit
3349 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/audit.git
3350 F:      include/asm-generic/audit_*.h
3351 F:      include/linux/audit.h
3352 F:      include/linux/audit_arch.h
3353 F:      include/uapi/linux/audit.h
3354 F:      kernel/audit*
3355 F:      lib/*audit.c
3356
3357 AUXILIARY DISPLAY DRIVERS
3358 M:      Miguel Ojeda <ojeda@kernel.org>
3359 S:      Maintained
3360 F:      Documentation/devicetree/bindings/auxdisplay/
3361 F:      drivers/auxdisplay/
3362 F:      include/linux/cfag12864b.h
3363
3364 AVIA HX711 ANALOG DIGITAL CONVERTER IIO DRIVER
3365 M:      Andreas Klinger <ak@it-klinger.de>
3366 L:      linux-iio@vger.kernel.org
3367 S:      Maintained
3368 F:      Documentation/devicetree/bindings/iio/adc/avia-hx711.yaml
3369 F:      drivers/iio/adc/hx711.c
3370
3371 AX.25 NETWORK LAYER
3372 M:      Ralf Baechle <ralf@linux-mips.org>
3373 L:      linux-hams@vger.kernel.org
3374 S:      Maintained
3375 W:      http://www.linux-ax25.org/
3376 F:      include/net/ax25.h
3377 F:      include/uapi/linux/ax25.h
3378 F:      net/ax25/
3379
3380 AXENTIA ARM DEVICES
3381 M:      Peter Rosin <peda@axentia.se>
3382 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3383 S:      Maintained
3384 F:      arch/arm/boot/dts/at91-linea.dtsi
3385 F:      arch/arm/boot/dts/at91-natte.dtsi
3386 F:      arch/arm/boot/dts/at91-nattis-2-natte-2.dts
3387 F:      arch/arm/boot/dts/at91-tse850-3.dts
3388
3389 AXENTIA ASOC DRIVERS
3390 M:      Peter Rosin <peda@axentia.se>
3391 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3392 S:      Maintained
3393 F:      Documentation/devicetree/bindings/sound/axentia,*
3394 F:      sound/soc/atmel/tse850-pcm5142.c
3395
3396 AXI-FAN-CONTROL HARDWARE MONITOR DRIVER
3397 M:      Nuno Sá <nuno.sa@analog.com>
3398 L:      linux-hwmon@vger.kernel.org
3399 S:      Supported
3400 W:      https://ez.analog.com/linux-software-drivers
3401 F:      Documentation/devicetree/bindings/hwmon/adi,axi-fan-control.yaml
3402 F:      drivers/hwmon/axi-fan-control.c
3403
3404 AXXIA I2C CONTROLLER
3405 M:      Krzysztof Adamski <krzysztof.adamski@nokia.com>
3406 L:      linux-i2c@vger.kernel.org
3407 S:      Maintained
3408 F:      Documentation/devicetree/bindings/i2c/i2c-axxia.txt
3409 F:      drivers/i2c/busses/i2c-axxia.c
3410
3411 AZ6007 DVB DRIVER
3412 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
3413 L:      linux-media@vger.kernel.org
3414 S:      Maintained
3415 W:      https://linuxtv.org
3416 T:      git git://linuxtv.org/media_tree.git
3417 F:      drivers/media/usb/dvb-usb-v2/az6007.c
3418
3419 AZTECH FM RADIO RECEIVER DRIVER
3420 M:      Hans Verkuil <hverkuil@xs4all.nl>
3421 L:      linux-media@vger.kernel.org
3422 S:      Maintained
3423 W:      https://linuxtv.org
3424 T:      git git://linuxtv.org/media_tree.git
3425 F:      drivers/media/radio/radio-aztech*
3426
3427 B43 WIRELESS DRIVER
3428 L:      linux-wireless@vger.kernel.org
3429 L:      b43-dev@lists.infradead.org
3430 S:      Odd Fixes
3431 W:      https://wireless.wiki.kernel.org/en/users/Drivers/b43
3432 F:      drivers/net/wireless/broadcom/b43/
3433
3434 B43LEGACY WIRELESS DRIVER
3435 M:      Larry Finger <Larry.Finger@lwfinger.net>
3436 L:      linux-wireless@vger.kernel.org
3437 L:      b43-dev@lists.infradead.org
3438 S:      Maintained
3439 W:      https://wireless.wiki.kernel.org/en/users/Drivers/b43
3440 F:      drivers/net/wireless/broadcom/b43legacy/
3441
3442 BACKLIGHT CLASS/SUBSYSTEM
3443 M:      Lee Jones <lee.jones@linaro.org>
3444 M:      Daniel Thompson <daniel.thompson@linaro.org>
3445 M:      Jingoo Han <jingoohan1@gmail.com>
3446 L:      dri-devel@lists.freedesktop.org
3447 S:      Maintained
3448 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/backlight.git
3449 F:      Documentation/ABI/stable/sysfs-class-backlight
3450 F:      Documentation/ABI/testing/sysfs-class-backlight
3451 F:      Documentation/devicetree/bindings/leds/backlight
3452 F:      drivers/video/backlight/
3453 F:      include/linux/backlight.h
3454 F:      include/linux/pwm_backlight.h
3455
3456 BARCO P50 GPIO DRIVER
3457 M:      Santosh Kumar Yadav <santoshkumar.yadav@barco.com>
3458 M:      Peter Korsgaard <peter.korsgaard@barco.com>
3459 S:      Maintained
3460 F:      drivers/platform/x86/barco-p50-gpio.c
3461
3462 BATMAN ADVANCED
3463 M:      Marek Lindner <mareklindner@neomailbox.ch>
3464 M:      Simon Wunderlich <sw@simonwunderlich.de>
3465 M:      Antonio Quartulli <a@unstable.cc>
3466 M:      Sven Eckelmann <sven@narfation.org>
3467 L:      b.a.t.m.a.n@lists.open-mesh.org (moderated for non-subscribers)
3468 S:      Maintained
3469 W:      https://www.open-mesh.org/
3470 Q:      https://patchwork.open-mesh.org/project/batman/list/
3471 B:      https://www.open-mesh.org/projects/batman-adv/issues
3472 C:      ircs://irc.hackint.org/batadv
3473 T:      git https://git.open-mesh.org/linux-merge.git
3474 F:      Documentation/networking/batman-adv.rst
3475 F:      include/uapi/linux/batadv_packet.h
3476 F:      include/uapi/linux/batman_adv.h
3477 F:      net/batman-adv/
3478
3479 BAYCOM/HDLCDRV DRIVERS FOR AX.25
3480 M:      Thomas Sailer <t.sailer@alumni.ethz.ch>
3481 L:      linux-hams@vger.kernel.org
3482 S:      Maintained
3483 W:      http://www.baycom.org/~tom/ham/ham.html
3484 F:      drivers/net/hamradio/baycom*
3485
3486 BCACHE (BLOCK LAYER CACHE)
3487 M:      Coly Li <colyli@suse.de>
3488 M:      Kent Overstreet <kent.overstreet@gmail.com>
3489 L:      linux-bcache@vger.kernel.org
3490 S:      Maintained
3491 W:      http://bcache.evilpiepirate.org
3492 C:      irc://irc.oftc.net/bcache
3493 F:      drivers/md/bcache/
3494
3495 BDISP ST MEDIA DRIVER
3496 M:      Fabien Dessenne <fabien.dessenne@foss.st.com>
3497 L:      linux-media@vger.kernel.org
3498 S:      Supported
3499 W:      https://linuxtv.org
3500 T:      git git://linuxtv.org/media_tree.git
3501 F:      drivers/media/platform/st/sti/bdisp
3502
3503 BECKHOFF CX5020 ETHERCAT MASTER DRIVER
3504 M:      Dariusz Marcinkiewicz <reksio@newterm.pl>
3505 L:      netdev@vger.kernel.org
3506 S:      Maintained
3507 F:      drivers/net/ethernet/ec_bhf.c
3508
3509 BEFS FILE SYSTEM
3510 M:      Luis de Bethencourt <luisbg@kernel.org>
3511 M:      Salah Triki <salah.triki@gmail.com>
3512 S:      Maintained
3513 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luisbg/linux-befs.git
3514 F:      Documentation/filesystems/befs.rst
3515 F:      fs/befs/
3516
3517 BFQ I/O SCHEDULER
3518 M:      Paolo Valente <paolo.valente@linaro.org>
3519 M:      Jens Axboe <axboe@kernel.dk>
3520 L:      linux-block@vger.kernel.org
3521 S:      Maintained
3522 F:      Documentation/block/bfq-iosched.rst
3523 F:      block/bfq-*
3524
3525 BFS FILE SYSTEM
3526 M:      "Tigran A. Aivazian" <aivazian.tigran@gmail.com>
3527 S:      Maintained
3528 F:      Documentation/filesystems/bfs.rst
3529 F:      fs/bfs/
3530 F:      include/uapi/linux/bfs_fs.h
3531
3532 BITMAP API
3533 M:      Yury Norov <yury.norov@gmail.com>
3534 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
3535 R:      Rasmus Villemoes <linux@rasmusvillemoes.dk>
3536 S:      Maintained
3537 F:      include/linux/bitmap.h
3538 F:      include/linux/cpumask.h
3539 F:      include/linux/find.h
3540 F:      include/linux/nodemask.h
3541 F:      lib/bitmap.c
3542 F:      lib/cpumask.c
3543 F:      lib/find_bit.c
3544 F:      lib/find_bit_benchmark.c
3545 F:      lib/nodemask.c
3546 F:      lib/test_bitmap.c
3547 F:      tools/include/linux/bitmap.h
3548 F:      tools/include/linux/find.h
3549 F:      tools/lib/bitmap.c
3550 F:      tools/lib/find_bit.c
3551
3552 BLINKM RGB LED DRIVER
3553 M:      Jan-Simon Moeller <jansimon.moeller@gmx.de>
3554 S:      Maintained
3555 F:      drivers/leds/leds-blinkm.c
3556
3557 BLOCK LAYER
3558 M:      Jens Axboe <axboe@kernel.dk>
3559 L:      linux-block@vger.kernel.org
3560 S:      Maintained
3561 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
3562 F:      Documentation/ABI/stable/sysfs-block
3563 F:      Documentation/block/
3564 F:      block/
3565 F:      drivers/block/
3566 F:      include/linux/bio.h
3567 F:      include/linux/blk*
3568 F:      kernel/trace/blktrace.c
3569 F:      lib/sbitmap.c
3570
3571 BLOCK2MTD DRIVER
3572 M:      Joern Engel <joern@lazybastard.org>
3573 L:      linux-mtd@lists.infradead.org
3574 S:      Maintained
3575 F:      drivers/mtd/devices/block2mtd.c
3576
3577 BLUETOOTH DRIVERS
3578 M:      Marcel Holtmann <marcel@holtmann.org>
3579 M:      Johan Hedberg <johan.hedberg@gmail.com>
3580 M:      Luiz Augusto von Dentz <luiz.dentz@gmail.com>
3581 L:      linux-bluetooth@vger.kernel.org
3582 S:      Supported
3583 W:      http://www.bluez.org/
3584 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3585 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3586 F:      drivers/bluetooth/
3587
3588 BLUETOOTH SUBSYSTEM
3589 M:      Marcel Holtmann <marcel@holtmann.org>
3590 M:      Johan Hedberg <johan.hedberg@gmail.com>
3591 M:      Luiz Augusto von Dentz <luiz.dentz@gmail.com>
3592 L:      linux-bluetooth@vger.kernel.org
3593 S:      Supported
3594 W:      http://www.bluez.org/
3595 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3596 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3597 F:      include/net/bluetooth/
3598 F:      net/bluetooth/
3599
3600 BONDING DRIVER
3601 M:      Jay Vosburgh <j.vosburgh@gmail.com>
3602 M:      Veaceslav Falico <vfalico@gmail.com>
3603 M:      Andy Gospodarek <andy@greyhouse.net>
3604 L:      netdev@vger.kernel.org
3605 S:      Supported
3606 W:      http://sourceforge.net/projects/bonding/
3607 F:      Documentation/networking/bonding.rst
3608 F:      drivers/net/bonding/
3609 F:      include/net/bond*
3610 F:      include/uapi/linux/if_bonding.h
3611
3612 BOSCH SENSORTEC BMA400 ACCELEROMETER IIO DRIVER
3613 M:      Dan Robertson <dan@dlrobertson.com>
3614 L:      linux-iio@vger.kernel.org
3615 S:      Maintained
3616 F:      Documentation/devicetree/bindings/iio/accel/bosch,bma400.yaml
3617 F:      drivers/iio/accel/bma400*
3618
3619 BPF (Safe dynamic programs and tools)
3620 M:      Alexei Starovoitov <ast@kernel.org>
3621 M:      Daniel Borkmann <daniel@iogearbox.net>
3622 M:      Andrii Nakryiko <andrii@kernel.org>
3623 R:      Martin KaFai Lau <kafai@fb.com>
3624 R:      Song Liu <songliubraving@fb.com>
3625 R:      Yonghong Song <yhs@fb.com>
3626 R:      John Fastabend <john.fastabend@gmail.com>
3627 R:      KP Singh <kpsingh@kernel.org>
3628 L:      netdev@vger.kernel.org
3629 L:      bpf@vger.kernel.org
3630 S:      Supported
3631 W:      https://bpf.io/
3632 Q:      https://patchwork.kernel.org/project/netdevbpf/list/?delegate=121173
3633 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf.git
3634 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-next.git
3635 F:      Documentation/bpf/
3636 F:      Documentation/networking/filter.rst
3637 F:      Documentation/userspace-api/ebpf/
3638 F:      arch/*/net/*
3639 F:      include/linux/bpf*
3640 F:      include/linux/btf*
3641 F:      include/linux/filter.h
3642 F:      include/trace/events/xdp.h
3643 F:      include/uapi/linux/bpf*
3644 F:      include/uapi/linux/btf*
3645 F:      include/uapi/linux/filter.h
3646 F:      kernel/bpf/
3647 F:      kernel/trace/bpf_trace.c
3648 F:      lib/test_bpf.c
3649 F:      net/bpf/
3650 F:      net/core/filter.c
3651 F:      net/sched/act_bpf.c
3652 F:      net/sched/cls_bpf.c
3653 F:      samples/bpf/
3654 F:      scripts/bpf_doc.py
3655 F:      scripts/pahole-flags.sh
3656 F:      scripts/pahole-version.sh
3657 F:      tools/bpf/
3658 F:      tools/lib/bpf/
3659 F:      tools/testing/selftests/bpf/
3660 N:      bpf
3661 K:      bpf
3662
3663 BPF JIT for ARM
3664 M:      Shubham Bansal <illusionist.neo@gmail.com>
3665 L:      netdev@vger.kernel.org
3666 L:      bpf@vger.kernel.org
3667 S:      Maintained
3668 F:      arch/arm/net/
3669
3670 BPF JIT for ARM64
3671 M:      Daniel Borkmann <daniel@iogearbox.net>
3672 M:      Alexei Starovoitov <ast@kernel.org>
3673 M:      Zi Shen Lim <zlim.lnx@gmail.com>
3674 L:      netdev@vger.kernel.org
3675 L:      bpf@vger.kernel.org
3676 S:      Supported
3677 F:      arch/arm64/net/
3678
3679 BPF JIT for MIPS (32-BIT AND 64-BIT)
3680 M:      Johan Almbladh <johan.almbladh@anyfinetworks.com>
3681 M:      Paul Burton <paulburton@kernel.org>
3682 L:      netdev@vger.kernel.org
3683 L:      bpf@vger.kernel.org
3684 S:      Maintained
3685 F:      arch/mips/net/
3686
3687 BPF JIT for NFP NICs
3688 M:      Jakub Kicinski <kuba@kernel.org>
3689 L:      netdev@vger.kernel.org
3690 L:      bpf@vger.kernel.org
3691 S:      Supported
3692 F:      drivers/net/ethernet/netronome/nfp/bpf/
3693
3694 BPF JIT for POWERPC (32-BIT AND 64-BIT)
3695 M:      Naveen N. Rao <naveen.n.rao@linux.ibm.com>
3696 L:      netdev@vger.kernel.org
3697 L:      bpf@vger.kernel.org
3698 S:      Maintained
3699 F:      arch/powerpc/net/
3700
3701 BPF JIT for RISC-V (32-bit)
3702 M:      Luke Nelson <luke.r.nels@gmail.com>
3703 M:      Xi Wang <xi.wang@gmail.com>
3704 L:      netdev@vger.kernel.org
3705 L:      bpf@vger.kernel.org
3706 S:      Maintained
3707 F:      arch/riscv/net/
3708 X:      arch/riscv/net/bpf_jit_comp64.c
3709
3710 BPF JIT for RISC-V (64-bit)
3711 M:      Björn Töpel <bjorn@kernel.org>
3712 L:      netdev@vger.kernel.org
3713 L:      bpf@vger.kernel.org
3714 S:      Maintained
3715 F:      arch/riscv/net/
3716 X:      arch/riscv/net/bpf_jit_comp32.c
3717
3718 BPF JIT for S390
3719 M:      Ilya Leoshkevich <iii@linux.ibm.com>
3720 M:      Heiko Carstens <hca@linux.ibm.com>
3721 M:      Vasily Gorbik <gor@linux.ibm.com>
3722 L:      netdev@vger.kernel.org
3723 L:      bpf@vger.kernel.org
3724 S:      Maintained
3725 F:      arch/s390/net/
3726 X:      arch/s390/net/pnet.c
3727
3728 BPF JIT for SPARC (32-BIT AND 64-BIT)
3729 M:      David S. Miller <davem@davemloft.net>
3730 L:      netdev@vger.kernel.org
3731 L:      bpf@vger.kernel.org
3732 S:      Maintained
3733 F:      arch/sparc/net/
3734
3735 BPF JIT for X86 32-BIT
3736 M:      Wang YanQing <udknight@gmail.com>
3737 L:      netdev@vger.kernel.org
3738 L:      bpf@vger.kernel.org
3739 S:      Maintained
3740 F:      arch/x86/net/bpf_jit_comp32.c
3741
3742 BPF JIT for X86 64-BIT
3743 M:      Alexei Starovoitov <ast@kernel.org>
3744 M:      Daniel Borkmann <daniel@iogearbox.net>
3745 L:      netdev@vger.kernel.org
3746 L:      bpf@vger.kernel.org
3747 S:      Supported
3748 F:      arch/x86/net/
3749 X:      arch/x86/net/bpf_jit_comp32.c
3750
3751 BPF LSM (Security Audit and Enforcement using BPF)
3752 M:      KP Singh <kpsingh@kernel.org>
3753 R:      Florent Revest <revest@chromium.org>
3754 R:      Brendan Jackman <jackmanb@chromium.org>
3755 L:      bpf@vger.kernel.org
3756 S:      Maintained
3757 F:      Documentation/bpf/prog_lsm.rst
3758 F:      include/linux/bpf_lsm.h
3759 F:      kernel/bpf/bpf_lsm.c
3760 F:      security/bpf/
3761
3762 BROADCOM B44 10/100 ETHERNET DRIVER
3763 M:      Michael Chan <michael.chan@broadcom.com>
3764 L:      netdev@vger.kernel.org
3765 S:      Supported
3766 F:      drivers/net/ethernet/broadcom/b44.*
3767
3768 BROADCOM B53/SF2 ETHERNET SWITCH DRIVER
3769 M:      Florian Fainelli <f.fainelli@gmail.com>
3770 L:      netdev@vger.kernel.org
3771 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
3772 S:      Supported
3773 F:      Documentation/devicetree/bindings/net/dsa/brcm,b53.yaml
3774 F:      drivers/net/dsa/b53/*
3775 F:      drivers/net/dsa/bcm_sf2*
3776 F:      include/linux/dsa/brcm.h
3777 F:      include/linux/platform_data/b53.h
3778
3779 BROADCOM BCMBCA ARM ARCHITECTURE
3780 M:      William Zhang <william.zhang@broadcom.com>
3781 M:      Anand Gore <anand.gore@broadcom.com>
3782 M:      Kursad Oney <kursad.oney@broadcom.com>
3783 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
3784 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3785 S:      Maintained
3786 T:      git git://github.com/broadcom/stblinux.git
3787 F:      Documentation/devicetree/bindings/arm/bcm/brcm,bcmbca.yaml
3788 F:      arch/arm/boot/dts/bcm47622.dtsi
3789 F:      arch/arm/boot/dts/bcm947622.dts
3790 N:      bcmbca
3791 N:      bcm[9]?47622
3792
3793 BROADCOM BCM2711/BCM2835 ARM ARCHITECTURE
3794 M:      Nicolas Saenz Julienne <nsaenz@kernel.org>
3795 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
3796 L:      linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
3797 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3798 S:      Maintained
3799 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nsaenz/linux-rpi.git
3800 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3801 F:      drivers/pci/controller/pcie-brcmstb.c
3802 F:      drivers/staging/vc04_services
3803 N:      bcm2711
3804 N:      bcm283*
3805 N:      raspberrypi
3806
3807 BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE
3808 M:      Florian Fainelli <f.fainelli@gmail.com>
3809 M:      Ray Jui <rjui@broadcom.com>
3810 M:      Scott Branden <sbranden@broadcom.com>
3811 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
3812 S:      Maintained
3813 T:      git git://github.com/broadcom/mach-bcm
3814 F:      arch/arm/mach-bcm/
3815 N:      bcm281*
3816 N:      bcm113*
3817 N:      bcm216*
3818 N:      kona
3819
3820 BROADCOM BCM47XX MIPS ARCHITECTURE
3821 M:      Hauke Mehrtens <hauke@hauke-m.de>
3822 M:      Rafał Miłecki <zajec5@gmail.com>
3823 L:      linux-mips@vger.kernel.org
3824 S:      Maintained
3825 F:      Documentation/devicetree/bindings/mips/brcm/
3826 F:      arch/mips/bcm47xx/*
3827 F:      arch/mips/include/asm/mach-bcm47xx/*
3828
3829 BROADCOM BCM4908 ETHERNET DRIVER
3830 M:      Rafał Miłecki <rafal@milecki.pl>
3831 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
3832 L:      netdev@vger.kernel.org
3833 S:      Maintained
3834 F:      Documentation/devicetree/bindings/net/brcm,bcm4908-enet.yaml
3835 F:      drivers/net/ethernet/broadcom/bcm4908_enet.*
3836 F:      drivers/net/ethernet/broadcom/unimac.h
3837
3838 BROADCOM BCM4908 PINMUX DRIVER
3839 M:      Rafał Miłecki <rafal@milecki.pl>
3840 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
3841 L:      linux-gpio@vger.kernel.org
3842 S:      Maintained
3843 F:      Documentation/devicetree/bindings/pinctrl/brcm,bcm4908-pinctrl.yaml
3844 F:      drivers/pinctrl/bcm/pinctrl-bcm4908.c
3845
3846 BROADCOM BCM5301X ARM ARCHITECTURE
3847 M:      Florian Fainelli <f.fainelli@gmail.com>
3848 M:      Hauke Mehrtens <hauke@hauke-m.de>
3849 M:      Rafał Miłecki <zajec5@gmail.com>
3850 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
3851 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3852 S:      Maintained
3853 F:      arch/arm/boot/dts/bcm470*
3854 F:      arch/arm/boot/dts/bcm5301*
3855 F:      arch/arm/boot/dts/bcm953012*
3856 F:      arch/arm/mach-bcm/bcm_5301x.c
3857
3858 BROADCOM BCM53573 ARM ARCHITECTURE
3859 M:      Florian Fainelli <f.fainelli@gmail.com>
3860 M:      Rafał Miłecki <rafal@milecki.pl>
3861 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
3862 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3863 S:      Maintained
3864 F:      arch/arm/boot/dts/bcm47189*
3865 F:      arch/arm/boot/dts/bcm53573*
3866
3867 BROADCOM BCM63XX ARM ARCHITECTURE
3868 M:      Florian Fainelli <f.fainelli@gmail.com>
3869 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
3870 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3871 S:      Maintained
3872 T:      git git://github.com/broadcom/stblinux.git
3873 N:      bcm63xx
3874
3875 BROADCOM BCM63XX/BCM33XX UDC DRIVER
3876 M:      Kevin Cernekee <cernekee@gmail.com>
3877 L:      linux-usb@vger.kernel.org
3878 S:      Maintained
3879 F:      drivers/usb/gadget/udc/bcm63xx_udc.*
3880
3881 BROADCOM BCM7XXX ARM ARCHITECTURE
3882 M:      Florian Fainelli <f.fainelli@gmail.com>
3883 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
3884 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3885 S:      Maintained
3886 T:      git git://github.com/broadcom/stblinux.git
3887 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3888 F:      arch/arm/boot/dts/bcm7*.dts*
3889 F:      arch/arm/include/asm/hardware/cache-b15-rac.h
3890 F:      arch/arm/mach-bcm/*brcmstb*
3891 F:      arch/arm/mm/cache-b15-rac.c
3892 F:      drivers/bus/brcmstb_gisb.c
3893 F:      drivers/pci/controller/pcie-brcmstb.c
3894 N:      brcmstb
3895 N:      bcm7038
3896 N:      bcm7120
3897
3898 BROADCOM BDC DRIVER
3899 M:      Al Cooper <alcooperx@gmail.com>
3900 L:      linux-usb@vger.kernel.org
3901 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
3902 S:      Maintained
3903 F:      Documentation/devicetree/bindings/usb/brcm,bdc.yaml
3904 F:      drivers/usb/gadget/udc/bdc/
3905
3906 BROADCOM BMIPS CPUFREQ DRIVER
3907 M:      Markus Mayer <mmayer@broadcom.com>
3908 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
3909 L:      linux-pm@vger.kernel.org
3910 S:      Maintained
3911 F:      drivers/cpufreq/bmips-cpufreq.c
3912
3913 BROADCOM BMIPS MIPS ARCHITECTURE
3914 M:      Florian Fainelli <f.fainelli@gmail.com>
3915 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
3916 L:      linux-mips@vger.kernel.org
3917 S:      Maintained
3918 T:      git git://github.com/broadcom/stblinux.git
3919 F:      arch/mips/bmips/*
3920 F:      arch/mips/boot/dts/brcm/bcm*.dts*
3921 F:      arch/mips/include/asm/mach-bmips/*
3922 F:      arch/mips/kernel/*bmips*
3923 F:      drivers/soc/bcm/bcm63xx
3924 F:      drivers/irqchip/irq-bcm63*
3925 F:      drivers/irqchip/irq-bcm7*
3926 F:      drivers/irqchip/irq-brcmstb*
3927 F:      include/linux/bcm963xx_nvram.h
3928 F:      include/linux/bcm963xx_tag.h
3929
3930 BROADCOM BNX2 GIGABIT ETHERNET DRIVER
3931 M:      Rasesh Mody <rmody@marvell.com>
3932 M:      GR-Linux-NIC-Dev@marvell.com
3933 L:      netdev@vger.kernel.org
3934 S:      Supported
3935 F:      drivers/net/ethernet/broadcom/bnx2.*
3936 F:      drivers/net/ethernet/broadcom/bnx2_*
3937
3938 BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
3939 M:      Saurav Kashyap <skashyap@marvell.com>
3940 M:      Javed Hasan <jhasan@marvell.com>
3941 M:      GR-QLogic-Storage-Upstream@marvell.com
3942 L:      linux-scsi@vger.kernel.org
3943 S:      Supported
3944 F:      drivers/scsi/bnx2fc/
3945
3946 BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER
3947 M:      Nilesh Javali <njavali@marvell.com>
3948 M:      Manish Rangankar <mrangankar@marvell.com>
3949 M:      GR-QLogic-Storage-Upstream@marvell.com
3950 L:      linux-scsi@vger.kernel.org
3951 S:      Supported
3952 F:      drivers/scsi/bnx2i/
3953
3954 BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
3955 M:      Ariel Elior <aelior@marvell.com>
3956 M:      Sudarsana Kalluru <skalluru@marvell.com>
3957 M:      Manish Chopra <manishc@marvell.com>
3958 L:      netdev@vger.kernel.org
3959 S:      Supported
3960 F:      drivers/net/ethernet/broadcom/bnx2x/
3961
3962 BROADCOM BNXT_EN 50 GIGABIT ETHERNET DRIVER
3963 M:      Michael Chan <michael.chan@broadcom.com>
3964 L:      netdev@vger.kernel.org
3965 S:      Supported
3966 F:      drivers/firmware/broadcom/tee_bnxt_fw.c
3967 F:      drivers/net/ethernet/broadcom/bnxt/
3968 F:      include/linux/firmware/broadcom/tee_bnxt_fw.h
3969
3970 BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
3971 M:      Arend van Spriel <aspriel@gmail.com>
3972 M:      Franky Lin <franky.lin@broadcom.com>
3973 M:      Hante Meuleman <hante.meuleman@broadcom.com>
3974 L:      linux-wireless@vger.kernel.org
3975 L:      brcm80211-dev-list.pdl@broadcom.com
3976 L:      SHA-cyfmac-dev-list@infineon.com
3977 S:      Supported
3978 F:      drivers/net/wireless/broadcom/brcm80211/
3979
3980 BROADCOM BRCMSTB GPIO DRIVER
3981 M:      Doug Berger <opendmb@gmail.com>
3982 M:      Florian Fainelli <f.fainelli@gmail.com>
3983 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
3984 S:      Supported
3985 F:      Documentation/devicetree/bindings/gpio/brcm,brcmstb-gpio.yaml
3986 F:      drivers/gpio/gpio-brcmstb.c
3987
3988 BROADCOM BRCMSTB I2C DRIVER
3989 M:      Kamal Dasu <kdasu.kdev@gmail.com>
3990 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
3991 L:      linux-i2c@vger.kernel.org
3992 S:      Supported
3993 F:      Documentation/devicetree/bindings/i2c/brcm,brcmstb-i2c.yaml
3994 F:      drivers/i2c/busses/i2c-brcmstb.c
3995
3996 BROADCOM BRCMSTB UART DRIVER
3997 M:      Al Cooper <alcooperx@gmail.com>
3998 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
3999 L:      linux-serial@vger.kernel.org
4000 S:      Maintained
4001 F:      Documentation/devicetree/bindings/serial/brcm,bcm7271-uart.yaml
4002 F:      drivers/tty/serial/8250/8250_bcm7271.c
4003
4004 BROADCOM BRCMSTB USB EHCI DRIVER
4005 M:      Al Cooper <alcooperx@gmail.com>
4006 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4007 L:      linux-usb@vger.kernel.org
4008 S:      Maintained
4009 F:      Documentation/devicetree/bindings/usb/brcm,bcm7445-ehci.yaml
4010 F:      drivers/usb/host/ehci-brcm.*
4011
4012 BROADCOM BRCMSTB USB PIN MAP DRIVER
4013 M:      Al Cooper <alcooperx@gmail.com>
4014 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4015 L:      linux-usb@vger.kernel.org
4016 S:      Maintained
4017 F:      Documentation/devicetree/bindings/usb/brcm,usb-pinmap.yaml
4018 F:      drivers/usb/misc/brcmstb-usb-pinmap.c
4019
4020 BROADCOM BRCMSTB USB2 and USB3 PHY DRIVER
4021 M:      Al Cooper <alcooperx@gmail.com>
4022 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4023 L:      linux-kernel@vger.kernel.org
4024 S:      Maintained
4025 F:      drivers/phy/broadcom/phy-brcm-usb*
4026
4027 BROADCOM ETHERNET PHY DRIVERS
4028 M:      Florian Fainelli <f.fainelli@gmail.com>
4029 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4030 L:      netdev@vger.kernel.org
4031 S:      Supported
4032 F:      Documentation/devicetree/bindings/net/broadcom-bcm87xx.txt
4033 F:      drivers/net/phy/bcm*.[ch]
4034 F:      drivers/net/phy/broadcom.c
4035 F:      include/linux/brcmphy.h
4036
4037 BROADCOM GENET ETHERNET DRIVER
4038 M:      Doug Berger <opendmb@gmail.com>
4039 M:      Florian Fainelli <f.fainelli@gmail.com>
4040 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4041 L:      netdev@vger.kernel.org
4042 S:      Supported
4043 F:      Documentation/devicetree/bindings/net/brcm,bcmgenet.yaml
4044 F:      Documentation/devicetree/bindings/net/brcm,unimac-mdio.yaml
4045 F:      drivers/net/ethernet/broadcom/genet/
4046 F:      drivers/net/ethernet/broadcom/unimac.h
4047 F:      drivers/net/mdio/mdio-bcm-unimac.c
4048 F:      include/linux/platform_data/bcmgenet.h
4049 F:      include/linux/platform_data/mdio-bcm-unimac.h
4050
4051 BROADCOM IPROC ARM ARCHITECTURE
4052 M:      Ray Jui <rjui@broadcom.com>
4053 M:      Scott Branden <sbranden@broadcom.com>
4054 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4055 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4056 S:      Maintained
4057 T:      git git://github.com/broadcom/stblinux.git
4058 F:      arch/arm64/boot/dts/broadcom/northstar2/*
4059 F:      arch/arm64/boot/dts/broadcom/stingray/*
4060 F:      drivers/clk/bcm/clk-ns*
4061 F:      drivers/clk/bcm/clk-sr*
4062 F:      drivers/pinctrl/bcm/pinctrl-ns*
4063 F:      include/dt-bindings/clock/bcm-sr*
4064 N:      iproc
4065 N:      cygnus
4066 N:      bcm[-_]nsp
4067 N:      bcm9113*
4068 N:      bcm9583*
4069 N:      bcm9585*
4070 N:      bcm9586*
4071 N:      bcm988312
4072 N:      bcm113*
4073 N:      bcm583*
4074 N:      bcm585*
4075 N:      bcm586*
4076 N:      bcm88312
4077 N:      hr2
4078 N:      stingray
4079
4080 BROADCOM IPROC GBIT ETHERNET DRIVER
4081 M:      Rafał Miłecki <rafal@milecki.pl>
4082 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4083 L:      netdev@vger.kernel.org
4084 S:      Maintained
4085 F:      Documentation/devicetree/bindings/net/brcm,amac.yaml
4086 F:      drivers/net/ethernet/broadcom/bgmac*
4087 F:      drivers/net/ethernet/broadcom/unimac.h
4088
4089 BROADCOM KONA GPIO DRIVER
4090 M:      Ray Jui <rjui@broadcom.com>
4091 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4092 S:      Supported
4093 F:      Documentation/devicetree/bindings/gpio/brcm,kona-gpio.txt
4094 F:      drivers/gpio/gpio-bcm-kona.c
4095
4096 BROADCOM MPI3 STORAGE CONTROLLER DRIVER
4097 M:      Sathya Prakash Veerichetty <sathya.prakash@broadcom.com>
4098 M:      Kashyap Desai <kashyap.desai@broadcom.com>
4099 M:      Sumit Saxena <sumit.saxena@broadcom.com>
4100 M:      Sreekanth Reddy <sreekanth.reddy@broadcom.com>
4101 L:      mpi3mr-linuxdrv.pdl@broadcom.com
4102 L:      linux-scsi@vger.kernel.org
4103 S:      Supported
4104 W:      https://www.broadcom.com/support/storage
4105 F:      drivers/scsi/mpi3mr/
4106
4107 BROADCOM NETXTREME-E ROCE DRIVER
4108 M:      Selvin Xavier <selvin.xavier@broadcom.com>
4109 L:      linux-rdma@vger.kernel.org
4110 S:      Supported
4111 W:      http://www.broadcom.com
4112 F:      drivers/infiniband/hw/bnxt_re/
4113 F:      include/uapi/rdma/bnxt_re-abi.h
4114
4115 BROADCOM NVRAM DRIVER
4116 M:      Rafał Miłecki <zajec5@gmail.com>
4117 L:      linux-mips@vger.kernel.org
4118 S:      Maintained
4119 F:      drivers/firmware/broadcom/*
4120
4121 BROADCOM PMB (POWER MANAGEMENT BUS) DRIVER
4122 M:      Rafał Miłecki <rafal@milecki.pl>
4123 M:      Florian Fainelli <f.fainelli@gmail.com>
4124 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4125 L:      linux-pm@vger.kernel.org
4126 S:      Maintained
4127 T:      git git://github.com/broadcom/stblinux.git
4128 F:      drivers/soc/bcm/bcm63xx/bcm-pmb.c
4129 F:      include/dt-bindings/soc/bcm-pmb.h
4130
4131 BROADCOM SPECIFIC AMBA DRIVER (BCMA)
4132 M:      Rafał Miłecki <zajec5@gmail.com>
4133 L:      linux-wireless@vger.kernel.org
4134 S:      Maintained
4135 F:      drivers/bcma/
4136 F:      include/linux/bcma/
4137
4138 BROADCOM SPI DRIVER
4139 M:      Kamal Dasu <kdasu.kdev@gmail.com>
4140 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4141 S:      Maintained
4142 F:      Documentation/devicetree/bindings/spi/brcm,spi-bcm-qspi.yaml
4143 F:      drivers/spi/spi-bcm-qspi.*
4144 F:      drivers/spi/spi-brcmstb-qspi.c
4145 F:      drivers/spi/spi-iproc-qspi.c
4146
4147 BROADCOM STB AVS CPUFREQ DRIVER
4148 M:      Markus Mayer <mmayer@broadcom.com>
4149 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4150 L:      linux-pm@vger.kernel.org
4151 S:      Maintained
4152 F:      Documentation/devicetree/bindings/cpufreq/brcm,stb-avs-cpu-freq.txt
4153 F:      drivers/cpufreq/brcmstb*
4154
4155 BROADCOM STB AVS TMON DRIVER
4156 M:      Markus Mayer <mmayer@broadcom.com>
4157 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4158 L:      linux-pm@vger.kernel.org
4159 S:      Maintained
4160 F:      Documentation/devicetree/bindings/thermal/brcm,avs-tmon.yaml
4161 F:      drivers/thermal/broadcom/brcmstb*
4162
4163 BROADCOM STB DPFE DRIVER
4164 M:      Markus Mayer <mmayer@broadcom.com>
4165 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4166 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4167 S:      Maintained
4168 F:      Documentation/devicetree/bindings/memory-controllers/brcm,dpfe-cpu.yaml
4169 F:      drivers/memory/brcmstb_dpfe.c
4170
4171 BROADCOM STB NAND FLASH DRIVER
4172 M:      Brian Norris <computersforpeace@gmail.com>
4173 M:      Kamal Dasu <kdasu.kdev@gmail.com>
4174 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4175 L:      linux-mtd@lists.infradead.org
4176 S:      Maintained
4177 F:      drivers/mtd/nand/raw/brcmnand/
4178 F:      include/linux/platform_data/brcmnand.h
4179
4180 BROADCOM STB PCIE DRIVER
4181 M:      Jim Quinlan <jim2101024@gmail.com>
4182 M:      Nicolas Saenz Julienne <nsaenz@kernel.org>
4183 M:      Florian Fainelli <f.fainelli@gmail.com>
4184 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4185 L:      linux-pci@vger.kernel.org
4186 S:      Maintained
4187 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
4188 F:      drivers/pci/controller/pcie-brcmstb.c
4189
4190 BROADCOM SYSTEMPORT ETHERNET DRIVER
4191 M:      Florian Fainelli <f.fainelli@gmail.com>
4192 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4193 L:      netdev@vger.kernel.org
4194 S:      Supported
4195 F:      drivers/net/ethernet/broadcom/bcmsysport.*
4196 F:      drivers/net/ethernet/broadcom/unimac.h
4197 F:      Documentation/devicetree/bindings/net/brcm,systemport.yaml
4198
4199 BROADCOM TG3 GIGABIT ETHERNET DRIVER
4200 M:      Siva Reddy Kallam <siva.kallam@broadcom.com>
4201 M:      Prashant Sreedharan <prashant@broadcom.com>
4202 M:      Michael Chan <mchan@broadcom.com>
4203 L:      netdev@vger.kernel.org
4204 S:      Supported
4205 F:      drivers/net/ethernet/broadcom/tg3.*
4206
4207 BROADCOM VK DRIVER
4208 M:      Scott Branden <scott.branden@broadcom.com>
4209 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4210 S:      Supported
4211 F:      drivers/misc/bcm-vk/
4212 F:      include/uapi/linux/misc/bcm_vk.h
4213
4214 BROCADE BFA FC SCSI DRIVER
4215 M:      Anil Gurumurthy <anil.gurumurthy@qlogic.com>
4216 M:      Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
4217 L:      linux-scsi@vger.kernel.org
4218 S:      Supported
4219 F:      drivers/scsi/bfa/
4220
4221 BROCADE BNA 10 GIGABIT ETHERNET DRIVER
4222 M:      Rasesh Mody <rmody@marvell.com>
4223 M:      Sudarsana Kalluru <skalluru@marvell.com>
4224 M:      GR-Linux-NIC-Dev@marvell.com
4225 L:      netdev@vger.kernel.org
4226 S:      Supported
4227 F:      drivers/net/ethernet/brocade/bna/
4228
4229 BSG (block layer generic sg v4 driver)
4230 M:      FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
4231 L:      linux-scsi@vger.kernel.org
4232 S:      Supported
4233 F:      block/bsg.c
4234 F:      include/linux/bsg.h
4235 F:      include/uapi/linux/bsg.h
4236
4237 BT87X AUDIO DRIVER
4238 M:      Clemens Ladisch <clemens@ladisch.de>
4239 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4240 S:      Maintained
4241 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
4242 F:      Documentation/sound/cards/bt87x.rst
4243 F:      sound/pci/bt87x.c
4244
4245 BT8XXGPIO DRIVER
4246 M:      Michael Buesch <m@bues.ch>
4247 S:      Maintained
4248 W:      http://bu3sch.de/btgpio.php
4249 F:      drivers/gpio/gpio-bt8xx.c
4250
4251 BTRFS FILE SYSTEM
4252 M:      Chris Mason <clm@fb.com>
4253 M:      Josef Bacik <josef@toxicpanda.com>
4254 M:      David Sterba <dsterba@suse.com>
4255 L:      linux-btrfs@vger.kernel.org
4256 S:      Maintained
4257 W:      http://btrfs.wiki.kernel.org/
4258 Q:      http://patchwork.kernel.org/project/linux-btrfs/list/
4259 C:      irc://irc.libera.chat/btrfs
4260 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kdave/linux.git
4261 F:      Documentation/filesystems/btrfs.rst
4262 F:      fs/btrfs/
4263 F:      include/linux/btrfs*
4264 F:      include/uapi/linux/btrfs*
4265
4266 BTTV VIDEO4LINUX DRIVER
4267 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
4268 L:      linux-media@vger.kernel.org
4269 S:      Odd fixes
4270 W:      https://linuxtv.org
4271 T:      git git://linuxtv.org/media_tree.git
4272 F:      Documentation/driver-api/media/drivers/bttv*
4273 F:      drivers/media/pci/bt8xx/bttv*
4274
4275 BUS FREQUENCY DRIVER FOR SAMSUNG EXYNOS
4276 M:      Chanwoo Choi <cw00.choi@samsung.com>
4277 L:      linux-pm@vger.kernel.org
4278 L:      linux-samsung-soc@vger.kernel.org
4279 S:      Maintained
4280 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
4281 F:      Documentation/devicetree/bindings/devfreq/exynos-bus.txt
4282 F:      drivers/devfreq/exynos-bus.c
4283
4284 BUSLOGIC SCSI DRIVER
4285 M:      Khalid Aziz <khalid@gonehiking.org>
4286 L:      linux-scsi@vger.kernel.org
4287 S:      Maintained
4288 F:      drivers/scsi/BusLogic.*
4289 F:      drivers/scsi/FlashPoint.*
4290
4291 C-MEDIA CMI8788 DRIVER
4292 M:      Clemens Ladisch <clemens@ladisch.de>
4293 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4294 S:      Maintained
4295 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
4296 F:      sound/pci/oxygen/
4297
4298 C-SKY ARCHITECTURE
4299 M:      Guo Ren <guoren@kernel.org>
4300 L:      linux-csky@vger.kernel.org
4301 S:      Supported
4302 T:      git https://github.com/c-sky/csky-linux.git
4303 F:      Documentation/devicetree/bindings/csky/
4304 F:      Documentation/devicetree/bindings/interrupt-controller/csky,*
4305 F:      Documentation/devicetree/bindings/timer/csky,*
4306 F:      arch/csky/
4307 F:      drivers/clocksource/timer-gx6605s.c
4308 F:      drivers/clocksource/timer-mp-csky.c
4309 F:      drivers/irqchip/irq-csky-*
4310 N:      csky
4311 K:      csky
4312
4313 CA8210 IEEE-802.15.4 RADIO DRIVER
4314 L:      linux-wpan@vger.kernel.org
4315 S:      Orphan
4316 W:      https://github.com/Cascoda/ca8210-linux.git
4317 F:      Documentation/devicetree/bindings/net/ieee802154/ca8210.txt
4318 F:      drivers/net/ieee802154/ca8210.c
4319
4320 CANAAN/KENDRYTE K210 SOC FPIOA DRIVER
4321 M:      Damien Le Moal <damien.lemoal@wdc.com>
4322 L:      linux-riscv@lists.infradead.org
4323 L:      linux-gpio@vger.kernel.org (pinctrl driver)
4324 F:      Documentation/devicetree/bindings/pinctrl/canaan,k210-fpioa.yaml
4325 F:      drivers/pinctrl/pinctrl-k210.c
4326
4327 CANAAN/KENDRYTE K210 SOC RESET CONTROLLER DRIVER
4328 M:      Damien Le Moal <damien.lemoal@wdc.com>
4329 L:      linux-kernel@vger.kernel.org
4330 L:      linux-riscv@lists.infradead.org
4331 S:      Maintained
4332 F:      Documentation/devicetree/bindings/reset/canaan,k210-rst.yaml
4333 F:      drivers/reset/reset-k210.c
4334
4335 CANAAN/KENDRYTE K210 SOC SYSTEM CONTROLLER DRIVER
4336 M:      Damien Le Moal <damien.lemoal@wdc.com>
4337 L:      linux-riscv@lists.infradead.org
4338 S:      Maintained
4339 F:      Documentation/devicetree/bindings/mfd/canaan,k210-sysctl.yaml
4340 F:      drivers/soc/canaan/
4341 F:      include/soc/canaan/
4342
4343 CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
4344 M:      David Howells <dhowells@redhat.com>
4345 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
4346 S:      Supported
4347 F:      Documentation/filesystems/caching/cachefiles.rst
4348 F:      fs/cachefiles/
4349
4350 CADENCE MIPI-CSI2 BRIDGES
4351 M:      Maxime Ripard <mripard@kernel.org>
4352 L:      linux-media@vger.kernel.org
4353 S:      Maintained
4354 F:      Documentation/devicetree/bindings/media/cdns,*.txt
4355 F:      drivers/media/platform/cadence/cdns-csi2*
4356
4357 CADENCE NAND DRIVER
4358 L:      linux-mtd@lists.infradead.org
4359 S:      Orphan
4360 F:      Documentation/devicetree/bindings/mtd/cadence-nand-controller.txt
4361 F:      drivers/mtd/nand/raw/cadence-nand-controller.c
4362
4363 CADENCE USB3 DRD IP DRIVER
4364 M:      Peter Chen <peter.chen@kernel.org>
4365 M:      Pawel Laszczak <pawell@cadence.com>
4366 R:      Roger Quadros <rogerq@kernel.org>
4367 R:      Aswath Govindraju <a-govindraju@ti.com>
4368 L:      linux-usb@vger.kernel.org
4369 S:      Maintained
4370 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4371 F:      Documentation/devicetree/bindings/usb/cdns,usb3.yaml
4372 F:      drivers/usb/cdns3/
4373 X:      drivers/usb/cdns3/cdnsp*
4374
4375 CADENCE USBSSP DRD IP DRIVER
4376 M:      Pawel Laszczak <pawell@cadence.com>
4377 L:      linux-usb@vger.kernel.org
4378 S:      Maintained
4379 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4380 F:      drivers/usb/cdns3/
4381 X:      drivers/usb/cdns3/cdns3*
4382
4383 CADET FM/AM RADIO RECEIVER DRIVER
4384 M:      Hans Verkuil <hverkuil@xs4all.nl>
4385 L:      linux-media@vger.kernel.org
4386 S:      Maintained
4387 W:      https://linuxtv.org
4388 T:      git git://linuxtv.org/media_tree.git
4389 F:      drivers/media/radio/radio-cadet*
4390
4391 CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
4392 L:      linux-media@vger.kernel.org
4393 S:      Orphan
4394 T:      git git://linuxtv.org/media_tree.git
4395 F:      Documentation/admin-guide/media/cafe_ccic*
4396 F:      drivers/media/platform/marvell/
4397
4398 CAIF NETWORK LAYER
4399 L:      netdev@vger.kernel.org
4400 S:      Orphan
4401 F:      Documentation/networking/caif/
4402 F:      drivers/net/caif/
4403 F:      include/net/caif/
4404 F:      include/uapi/linux/caif/
4405 F:      net/caif/
4406
4407 CAKE QDISC
4408 M:      Toke Høiland-Jørgensen <toke@toke.dk>
4409 L:      cake@lists.bufferbloat.net (moderated for non-subscribers)
4410 S:      Maintained
4411 F:      net/sched/sch_cake.c
4412
4413 CAN NETWORK DRIVERS
4414 M:      Wolfgang Grandegger <wg@grandegger.com>
4415 M:      Marc Kleine-Budde <mkl@pengutronix.de>
4416 L:      linux-can@vger.kernel.org
4417 S:      Maintained
4418 W:      https://github.com/linux-can
4419 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
4420 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
4421 F:      Documentation/devicetree/bindings/net/can/
4422 F:      Documentation/devicetree/bindings/phy/ti,tcan104x-can.yaml
4423 F:      drivers/net/can/
4424 F:      drivers/phy/phy-can-transceiver.c
4425 F:      include/linux/can/bittiming.h
4426 F:      include/linux/can/dev.h
4427 F:      include/linux/can/length.h
4428 F:      include/linux/can/platform/
4429 F:      include/linux/can/rx-offload.h
4430 F:      include/uapi/linux/can/error.h
4431 F:      include/uapi/linux/can/netlink.h
4432 F:      include/uapi/linux/can/vxcan.h
4433
4434 CAN NETWORK LAYER
4435 M:      Oliver Hartkopp <socketcan@hartkopp.net>
4436 M:      Marc Kleine-Budde <mkl@pengutronix.de>
4437 L:      linux-can@vger.kernel.org
4438 S:      Maintained
4439 W:      https://github.com/linux-can
4440 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
4441 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
4442 F:      Documentation/networking/can.rst
4443 F:      include/linux/can/can-ml.h
4444 F:      include/linux/can/core.h
4445 F:      include/linux/can/skb.h
4446 F:      include/net/netns/can.h
4447 F:      include/uapi/linux/can.h
4448 F:      include/uapi/linux/can/bcm.h
4449 F:      include/uapi/linux/can/gw.h
4450 F:      include/uapi/linux/can/isotp.h
4451 F:      include/uapi/linux/can/raw.h
4452 F:      net/can/
4453
4454 CAN-J1939 NETWORK LAYER
4455 M:      Robin van der Gracht <robin@protonic.nl>
4456 M:      Oleksij Rempel <o.rempel@pengutronix.de>
4457 R:      kernel@pengutronix.de
4458 L:      linux-can@vger.kernel.org
4459 S:      Maintained
4460 F:      Documentation/networking/j1939.rst
4461 F:      include/uapi/linux/can/j1939.h
4462 F:      net/can/j1939/
4463
4464 CAPABILITIES
4465 M:      Serge Hallyn <serge@hallyn.com>
4466 L:      linux-security-module@vger.kernel.org
4467 S:      Supported
4468 F:      include/linux/capability.h
4469 F:      include/uapi/linux/capability.h
4470 F:      kernel/capability.c
4471 F:      security/commoncap.c
4472
4473 CAPELLA MICROSYSTEMS LIGHT SENSOR DRIVER
4474 M:      Kevin Tsai <ktsai@capellamicro.com>
4475 S:      Maintained
4476 F:      drivers/iio/light/cm*
4477
4478 CARL9170 LINUX COMMUNITY WIRELESS DRIVER
4479 M:      Christian Lamparter <chunkeey@googlemail.com>
4480 L:      linux-wireless@vger.kernel.org
4481 S:      Maintained
4482 W:      https://wireless.wiki.kernel.org/en/users/Drivers/carl9170
4483 F:      drivers/net/wireless/ath/carl9170/
4484
4485 CAVIUM I2C DRIVER
4486 M:      Robert Richter <rric@kernel.org>
4487 S:      Odd Fixes
4488 W:      http://www.marvell.com
4489 F:      drivers/i2c/busses/i2c-octeon*
4490 F:      drivers/i2c/busses/i2c-thunderx*
4491
4492 CAVIUM LIQUIDIO NETWORK DRIVER
4493 M:      Derek Chickles <dchickles@marvell.com>
4494 M:      Satanand Burla <sburla@marvell.com>
4495 M:      Felix Manlunas <fmanlunas@marvell.com>
4496 L:      netdev@vger.kernel.org
4497 S:      Supported
4498 W:      http://www.marvell.com
4499 F:      drivers/net/ethernet/cavium/liquidio/
4500
4501 CAVIUM MMC DRIVER
4502 M:      Robert Richter <rric@kernel.org>
4503 S:      Odd Fixes
4504 W:      http://www.marvell.com
4505 F:      drivers/mmc/host/cavium*
4506
4507 CAVIUM OCTEON-TX CRYPTO DRIVER
4508 M:      George Cherian <gcherian@marvell.com>
4509 L:      linux-crypto@vger.kernel.org
4510 S:      Supported
4511 W:      http://www.marvell.com
4512 F:      drivers/crypto/cavium/cpt/
4513
4514 CAVIUM THUNDERX2 ARM64 SOC
4515 M:      Robert Richter <rric@kernel.org>
4516 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4517 S:      Odd Fixes
4518 F:      Documentation/devicetree/bindings/arm/cavium-thunder2.txt
4519 F:      arch/arm64/boot/dts/cavium/thunder2-99xx*
4520
4521 CBS/ETF/TAPRIO QDISCS
4522 M:      Vinicius Costa Gomes <vinicius.gomes@intel.com>
4523 S:      Maintained
4524 L:      netdev@vger.kernel.org
4525 F:      net/sched/sch_cbs.c
4526 F:      net/sched/sch_etf.c
4527 F:      net/sched/sch_taprio.c
4528
4529 CC2520 IEEE-802.15.4 RADIO DRIVER
4530 M:      Varka Bhadram <varkabhadram@gmail.com>
4531 L:      linux-wpan@vger.kernel.org
4532 S:      Maintained
4533 F:      Documentation/devicetree/bindings/net/ieee802154/cc2520.txt
4534 F:      drivers/net/ieee802154/cc2520.c
4535 F:      include/linux/spi/cc2520.h
4536
4537 CCREE ARM TRUSTZONE CRYPTOCELL REE DRIVER
4538 M:      Gilad Ben-Yossef <gilad@benyossef.com>
4539 L:      linux-crypto@vger.kernel.org
4540 S:      Supported
4541 W:      https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
4542 F:      drivers/crypto/ccree/
4543
4544 CCTRNG ARM TRUSTZONE CRYPTOCELL TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
4545 M:      Hadar Gat <hadar.gat@arm.com>
4546 L:      linux-crypto@vger.kernel.org
4547 S:      Supported
4548 F:      drivers/char/hw_random/cctrng.c
4549 F:      drivers/char/hw_random/cctrng.h
4550 F:      Documentation/devicetree/bindings/rng/arm-cctrng.yaml
4551 W:      https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
4552
4553 CEC FRAMEWORK
4554 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
4555 L:      linux-media@vger.kernel.org
4556 S:      Supported
4557 W:      http://linuxtv.org
4558 T:      git git://linuxtv.org/media_tree.git
4559 F:      Documentation/ABI/testing/debugfs-cec-error-inj
4560 F:      Documentation/devicetree/bindings/media/cec.txt
4561 F:      Documentation/driver-api/media/cec-core.rst
4562 F:      Documentation/userspace-api/media/cec
4563 F:      drivers/media/cec/
4564 F:      drivers/media/rc/keymaps/rc-cec.c
4565 F:      include/media/cec-notifier.h
4566 F:      include/media/cec.h
4567 F:      include/uapi/linux/cec-funcs.h
4568 F:      include/uapi/linux/cec.h
4569
4570 CEC GPIO DRIVER
4571 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
4572 L:      linux-media@vger.kernel.org
4573 S:      Supported
4574 W:      http://linuxtv.org
4575 T:      git git://linuxtv.org/media_tree.git
4576 F:      Documentation/devicetree/bindings/media/cec-gpio.txt
4577 F:      drivers/media/cec/platform/cec-gpio/
4578
4579 CELL BROADBAND ENGINE ARCHITECTURE
4580 M:      Arnd Bergmann <arnd@arndb.de>
4581 L:      linuxppc-dev@lists.ozlabs.org
4582 S:      Supported
4583 W:      http://www.ibm.com/developerworks/power/cell/
4584 F:      arch/powerpc/include/asm/cell*.h
4585 F:      arch/powerpc/include/asm/spu*.h
4586 F:      arch/powerpc/include/uapi/asm/spu*.h
4587 F:      arch/powerpc/platforms/cell/
4588
4589 CELLWISE CW2015 BATTERY DRIVER
4590 M:      Tobias Schrammm <t.schramm@manjaro.org>
4591 S:      Maintained
4592 F:      Documentation/devicetree/bindings/power/supply/cw2015_battery.yaml
4593 F:      drivers/power/supply/cw2015_battery.c
4594
4595 CEPH COMMON CODE (LIBCEPH)
4596 M:      Ilya Dryomov <idryomov@gmail.com>
4597 M:      Xiubo Li <xiubli@redhat.com>
4598 R:      Jeff Layton <jlayton@kernel.org>
4599 L:      ceph-devel@vger.kernel.org
4600 S:      Supported
4601 W:      http://ceph.com/
4602 T:      git git://github.com/ceph/ceph-client.git
4603 F:      include/linux/ceph/
4604 F:      include/linux/crush/
4605 F:      net/ceph/
4606
4607 CEPH DISTRIBUTED FILE SYSTEM CLIENT (CEPH)
4608 M:      Xiubo Li <xiubli@redhat.com>
4609 M:      Ilya Dryomov <idryomov@gmail.com>
4610 R:      Jeff Layton <jlayton@kernel.org>
4611 L:      ceph-devel@vger.kernel.org
4612 S:      Supported
4613 W:      http://ceph.com/
4614 T:      git git://github.com/ceph/ceph-client.git
4615 F:      Documentation/filesystems/ceph.rst
4616 F:      fs/ceph/
4617
4618 CERTIFICATE HANDLING
4619 M:      David Howells <dhowells@redhat.com>
4620 M:      David Woodhouse <dwmw2@infradead.org>
4621 L:      keyrings@vger.kernel.org
4622 S:      Maintained
4623 F:      Documentation/admin-guide/module-signing.rst
4624 F:      certs/
4625 F:      scripts/check-blacklist-hashes.awk
4626 F:      scripts/sign-file.c
4627 F:      tools/certs/
4628
4629 CFAG12864B LCD DRIVER
4630 M:      Miguel Ojeda <ojeda@kernel.org>
4631 S:      Maintained
4632 F:      drivers/auxdisplay/cfag12864b.c
4633 F:      include/linux/cfag12864b.h
4634
4635 CFAG12864BFB LCD FRAMEBUFFER DRIVER
4636 M:      Miguel Ojeda <ojeda@kernel.org>
4637 S:      Maintained
4638 F:      drivers/auxdisplay/cfag12864bfb.c
4639 F:      include/linux/cfag12864b.h
4640
4641 CHAR and MISC DRIVERS
4642 M:      Arnd Bergmann <arnd@arndb.de>
4643 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4644 S:      Supported
4645 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
4646 F:      drivers/char/
4647 F:      drivers/misc/
4648 F:      include/linux/miscdevice.h
4649 X:      drivers/char/agp/
4650 X:      drivers/char/hw_random/
4651 X:      drivers/char/ipmi/
4652 X:      drivers/char/random.c
4653 X:      drivers/char/tpm/
4654
4655 CHECKPATCH
4656 M:      Andy Whitcroft <apw@canonical.com>
4657 M:      Joe Perches <joe@perches.com>
4658 R:      Dwaipayan Ray <dwaipayanray1@gmail.com>
4659 R:      Lukas Bulwahn <lukas.bulwahn@gmail.com>
4660 S:      Maintained
4661 F:      scripts/checkpatch.pl
4662
4663 CHECKPATCH DOCUMENTATION
4664 M:      Dwaipayan Ray <dwaipayanray1@gmail.com>
4665 M:      Lukas Bulwahn <lukas.bulwahn@gmail.com>
4666 R:      Joe Perches <joe@perches.com>
4667 S:      Maintained
4668 F:      Documentation/dev-tools/checkpatch.rst
4669
4670 CHINESE DOCUMENTATION
4671 M:      Alex Shi <alexs@kernel.org>
4672 M:      Yanteng Si <siyanteng@loongson.cn>
4673 S:      Maintained
4674 F:      Documentation/translations/zh_CN/
4675
4676 CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
4677 M:      Peter Chen <peter.chen@kernel.org>
4678 L:      linux-usb@vger.kernel.org
4679 S:      Maintained
4680 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4681 F:      drivers/usb/chipidea/
4682
4683 CHIPONE ICN8318 I2C TOUCHSCREEN DRIVER
4684 M:      Hans de Goede <hdegoede@redhat.com>
4685 L:      linux-input@vger.kernel.org
4686 S:      Maintained
4687 F:      Documentation/devicetree/bindings/input/touchscreen/chipone,icn8318.yaml
4688 F:      drivers/input/touchscreen/chipone_icn8318.c
4689
4690 CHIPONE ICN8505 I2C TOUCHSCREEN DRIVER
4691 M:      Hans de Goede <hdegoede@redhat.com>
4692 L:      linux-input@vger.kernel.org
4693 S:      Maintained
4694 F:      drivers/input/touchscreen/chipone_icn8505.c
4695
4696 CHROME HARDWARE PLATFORM SUPPORT
4697 M:      Benson Leung <bleung@chromium.org>
4698 L:      chrome-platform@lists.linux.dev
4699 S:      Maintained
4700 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chrome-platform/linux.git
4701 F:      drivers/platform/chrome/
4702
4703 CHROMEOS EC CODEC DRIVER
4704 M:      Cheng-Yi Chiang <cychiang@chromium.org>
4705 M:      Tzung-Bi Shih <tzungbi@google.com>
4706 R:      Guenter Roeck <groeck@chromium.org>
4707 L:      chrome-platform@lists.linux.dev
4708 S:      Maintained
4709 F:      Documentation/devicetree/bindings/sound/google,cros-ec-codec.yaml
4710 F:      sound/soc/codecs/cros_ec_codec.*
4711
4712 CHROMEOS EC SUBDRIVERS
4713 M:      Benson Leung <bleung@chromium.org>
4714 R:      Guenter Roeck <groeck@chromium.org>
4715 L:      chrome-platform@lists.linux.dev
4716 S:      Maintained
4717 F:      drivers/power/supply/cros_usbpd-charger.c
4718 N:      cros_ec
4719 N:      cros-ec
4720
4721 CHROMEOS EC USB TYPE-C DRIVER
4722 M:      Prashant Malani <pmalani@chromium.org>
4723 L:      chrome-platform@lists.linux.dev
4724 S:      Maintained
4725 F:      drivers/platform/chrome/cros_ec_typec.c
4726
4727 CHROMEOS EC USB PD NOTIFY DRIVER
4728 M:      Prashant Malani <pmalani@chromium.org>
4729 L:      chrome-platform@lists.linux.dev
4730 S:      Maintained
4731 F:      drivers/platform/chrome/cros_usbpd_notify.c
4732 F:      include/linux/platform_data/cros_usbpd_notify.h
4733
4734 CHRONTEL CH7322 CEC DRIVER
4735 M:      Joe Tessler <jrt@google.com>
4736 L:      linux-media@vger.kernel.org
4737 S:      Maintained
4738 T:      git git://linuxtv.org/media_tree.git
4739 F:      Documentation/devicetree/bindings/media/i2c/chrontel,ch7322.yaml
4740 F:      drivers/media/cec/i2c/ch7322.c
4741
4742 CIRRUS LOGIC AUDIO CODEC DRIVERS
4743 M:      James Schulman <james.schulman@cirrus.com>
4744 M:      David Rhodes <david.rhodes@cirrus.com>
4745 M:      Lucas Tanure <tanureal@opensource.cirrus.com>
4746 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4747 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4748 L:      patches@opensource.cirrus.com
4749 S:      Maintained
4750 F:      Documentation/devicetree/bindings/sound/cirrus,cs*
4751 F:      include/dt-bindings/sound/cs*
4752 F:      sound/pci/hda/cs*
4753 F:      sound/soc/codecs/cs*
4754
4755 CIRRUS LOGIC DSP FIRMWARE DRIVER
4756 M:      Simon Trimmer <simont@opensource.cirrus.com>
4757 M:      Charles Keepax <ckeepax@opensource.cirrus.com>
4758 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4759 L:      patches@opensource.cirrus.com
4760 S:      Supported
4761 W:      https://github.com/CirrusLogic/linux-drivers/wiki
4762 T:      git https://github.com/CirrusLogic/linux-drivers.git
4763 F:      drivers/firmware/cirrus/*
4764 F:      include/linux/firmware/cirrus/*
4765
4766 CIRRUS LOGIC EP93XX ETHERNET DRIVER
4767 M:      Hartley Sweeten <hsweeten@visionengravers.com>
4768 L:      netdev@vger.kernel.org
4769 S:      Maintained
4770 F:      drivers/net/ethernet/cirrus/ep93xx_eth.c
4771
4772 CIRRUS LOGIC LOCHNAGAR DRIVER
4773 M:      Charles Keepax <ckeepax@opensource.cirrus.com>
4774 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4775 L:      patches@opensource.cirrus.com
4776 S:      Supported
4777 F:      Documentation/devicetree/bindings/clock/cirrus,lochnagar.yaml
4778 F:      Documentation/devicetree/bindings/hwmon/cirrus,lochnagar.yaml
4779 F:      Documentation/devicetree/bindings/mfd/cirrus,lochnagar.yaml
4780 F:      Documentation/devicetree/bindings/pinctrl/cirrus,lochnagar.yaml
4781 F:      Documentation/devicetree/bindings/sound/cirrus,lochnagar.yaml
4782 F:      Documentation/hwmon/lochnagar.rst
4783 F:      drivers/clk/clk-lochnagar.c
4784 F:      drivers/hwmon/lochnagar-hwmon.c
4785 F:      drivers/mfd/lochnagar-i2c.c
4786 F:      drivers/pinctrl/cirrus/pinctrl-lochnagar.c
4787 F:      drivers/regulator/lochnagar-regulator.c
4788 F:      include/dt-bindings/clk/lochnagar.h
4789 F:      include/dt-bindings/pinctrl/lochnagar.h
4790 F:      include/linux/mfd/lochnagar*
4791 F:      sound/soc/codecs/lochnagar-sc.c
4792
4793 CIRRUS LOGIC MADERA CODEC DRIVERS
4794 M:      Charles Keepax <ckeepax@opensource.cirrus.com>
4795 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4796 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4797 L:      patches@opensource.cirrus.com
4798 S:      Supported
4799 W:      https://github.com/CirrusLogic/linux-drivers/wiki
4800 T:      git https://github.com/CirrusLogic/linux-drivers.git
4801 F:      Documentation/devicetree/bindings/mfd/cirrus,madera.yaml
4802 F:      Documentation/devicetree/bindings/pinctrl/cirrus,madera.yaml
4803 F:      Documentation/devicetree/bindings/sound/cirrus,madera.yaml
4804 F:      drivers/gpio/gpio-madera*
4805 F:      drivers/irqchip/irq-madera*
4806 F:      drivers/mfd/cs47l*
4807 F:      drivers/mfd/madera*
4808 F:      drivers/pinctrl/cirrus/*
4809 F:      include/dt-bindings/sound/madera*
4810 F:      include/linux/irqchip/irq-madera*
4811 F:      include/linux/mfd/madera/*
4812 F:      include/sound/madera*
4813 F:      sound/soc/codecs/cs47l*
4814 F:      sound/soc/codecs/madera*
4815
4816 CISCO FCOE HBA DRIVER
4817 M:      Satish Kharat <satishkh@cisco.com>
4818 M:      Sesidhar Baddela <sebaddel@cisco.com>
4819 M:      Karan Tilak Kumar <kartilak@cisco.com>
4820 L:      linux-scsi@vger.kernel.org
4821 S:      Supported
4822 F:      drivers/scsi/fnic/
4823
4824 CISCO SCSI HBA DRIVER
4825 M:      Karan Tilak Kumar <kartilak@cisco.com>
4826 M:      Sesidhar Baddela <sebaddel@cisco.com>
4827 L:      linux-scsi@vger.kernel.org
4828 S:      Supported
4829 F:      drivers/scsi/snic/
4830
4831 CISCO VIC ETHERNET NIC DRIVER
4832 M:      Christian Benvenuti <benve@cisco.com>
4833 M:      Govindarajulu Varadarajan <_govind@gmx.com>
4834 S:      Supported
4835 F:      drivers/net/ethernet/cisco/enic/
4836
4837 CISCO VIC LOW LATENCY NIC DRIVER
4838 M:      Christian Benvenuti <benve@cisco.com>
4839 M:      Nelson Escobar <neescoba@cisco.com>
4840 S:      Supported
4841 F:      drivers/infiniband/hw/usnic/
4842
4843 CLANG-FORMAT FILE
4844 M:      Miguel Ojeda <ojeda@kernel.org>
4845 S:      Maintained
4846 F:      .clang-format
4847
4848 CLANG/LLVM BUILD SUPPORT
4849 M:      Nathan Chancellor <nathan@kernel.org>
4850 M:      Nick Desaulniers <ndesaulniers@google.com>
4851 R:      Tom Rix <trix@redhat.com>
4852 L:      llvm@lists.linux.dev
4853 S:      Supported
4854 W:      https://clangbuiltlinux.github.io/
4855 B:      https://github.com/ClangBuiltLinux/linux/issues
4856 C:      irc://irc.libera.chat/clangbuiltlinux
4857 F:      Documentation/kbuild/llvm.rst
4858 F:      include/linux/compiler-clang.h
4859 F:      scripts/Makefile.clang
4860 F:      scripts/clang-tools/
4861 K:      \b(?i:clang|llvm)\b
4862
4863 CLANG CONTROL FLOW INTEGRITY SUPPORT
4864 M:      Sami Tolvanen <samitolvanen@google.com>
4865 M:      Kees Cook <keescook@chromium.org>
4866 R:      Nathan Chancellor <nathan@kernel.org>
4867 R:      Nick Desaulniers <ndesaulniers@google.com>
4868 L:      llvm@lists.linux.dev
4869 S:      Supported
4870 B:      https://github.com/ClangBuiltLinux/linux/issues
4871 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/clang/features
4872 F:      include/linux/cfi.h
4873 F:      kernel/cfi.c
4874
4875 CLK API
4876 M:      Russell King <linux@armlinux.org.uk>
4877 L:      linux-clk@vger.kernel.org
4878 S:      Maintained
4879 F:      include/linux/clk.h
4880
4881 CLOCKSOURCE, CLOCKEVENT DRIVERS
4882 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4883 M:      Thomas Gleixner <tglx@linutronix.de>
4884 L:      linux-kernel@vger.kernel.org
4885 S:      Supported
4886 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
4887 F:      Documentation/devicetree/bindings/timer/
4888 F:      drivers/clocksource/
4889
4890 CMPC ACPI DRIVER
4891 M:      Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
4892 M:      Daniel Oliveira Nascimento <don@syst.com.br>
4893 L:      platform-driver-x86@vger.kernel.org
4894 S:      Supported
4895 F:      drivers/platform/x86/classmate-laptop.c
4896
4897 COBALT MEDIA DRIVER
4898 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
4899 L:      linux-media@vger.kernel.org
4900 S:      Supported
4901 W:      https://linuxtv.org
4902 T:      git git://linuxtv.org/media_tree.git
4903 F:      drivers/media/pci/cobalt/
4904
4905 COCCINELLE/Semantic Patches (SmPL)
4906 M:      Julia Lawall <Julia.Lawall@inria.fr>
4907 M:      Nicolas Palix <nicolas.palix@imag.fr>
4908 L:      cocci@inria.fr (moderated for non-subscribers)
4909 S:      Supported
4910 W:      https://coccinelle.gitlabpages.inria.fr/website/
4911 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jlawall/linux.git
4912 F:      Documentation/dev-tools/coccinelle.rst
4913 F:      scripts/coccicheck
4914 F:      scripts/coccinelle/
4915
4916 CODA FILE SYSTEM
4917 M:      Jan Harkes <jaharkes@cs.cmu.edu>
4918 M:      coda@cs.cmu.edu
4919 L:      codalist@coda.cs.cmu.edu
4920 S:      Maintained
4921 W:      http://www.coda.cs.cmu.edu/
4922 F:      Documentation/filesystems/coda.rst
4923 F:      fs/coda/
4924 F:      include/linux/coda*.h
4925 F:      include/uapi/linux/coda*.h
4926
4927 CODA V4L2 MEM2MEM DRIVER
4928 M:      Philipp Zabel <p.zabel@pengutronix.de>
4929 L:      linux-media@vger.kernel.org
4930 S:      Maintained
4931 F:      Documentation/devicetree/bindings/media/coda.yaml
4932 F:      drivers/media/platform/chips-media/
4933
4934 CODE OF CONDUCT
4935 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4936 S:      Supported
4937 F:      Documentation/process/code-of-conduct-interpretation.rst
4938 F:      Documentation/process/code-of-conduct.rst
4939
4940 COMEDI DRIVERS
4941 M:      Ian Abbott <abbotti@mev.co.uk>
4942 M:      H Hartley Sweeten <hsweeten@visionengravers.com>
4943 S:      Odd Fixes
4944 F:      drivers/comedi/
4945 F:      include/linux/comedi/
4946 F:      include/uapi/linux/comedi.h
4947
4948 COMMON CLK FRAMEWORK
4949 M:      Michael Turquette <mturquette@baylibre.com>
4950 M:      Stephen Boyd <sboyd@kernel.org>
4951 L:      linux-clk@vger.kernel.org
4952 S:      Maintained
4953 Q:      http://patchwork.kernel.org/project/linux-clk/list/
4954 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git
4955 F:      Documentation/devicetree/bindings/clock/
4956 F:      drivers/clk/
4957 F:      include/linux/clk-pr*
4958 F:      include/linux/clk/
4959 F:      include/linux/of_clk.h
4960 X:      drivers/clk/clkdev.c
4961
4962 COMMON INTERNET FILE SYSTEM CLIENT (CIFS)
4963 M:      Steve French <sfrench@samba.org>
4964 L:      linux-cifs@vger.kernel.org
4965 L:      samba-technical@lists.samba.org (moderated for non-subscribers)
4966 S:      Supported
4967 W:      http://linux-cifs.samba.org/
4968 T:      git git://git.samba.org/sfrench/cifs-2.6.git
4969 F:      Documentation/admin-guide/cifs/
4970 F:      fs/cifs/
4971 F:      fs/smbfs_common/
4972
4973 COMPACTPCI HOTPLUG CORE
4974 M:      Scott Murray <scott@spiteful.org>
4975 L:      linux-pci@vger.kernel.org
4976 S:      Maintained
4977 F:      drivers/pci/hotplug/cpci_hotplug*
4978
4979 COMPACTPCI HOTPLUG GENERIC DRIVER
4980 M:      Scott Murray <scott@spiteful.org>
4981 L:      linux-pci@vger.kernel.org
4982 S:      Maintained
4983 F:      drivers/pci/hotplug/cpcihp_generic.c
4984
4985 COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
4986 M:      Scott Murray <scott@spiteful.org>
4987 L:      linux-pci@vger.kernel.org
4988 S:      Maintained
4989 F:      drivers/pci/hotplug/cpcihp_zt5550.*
4990
4991 COMPAL LAPTOP SUPPORT
4992 M:      Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
4993 L:      platform-driver-x86@vger.kernel.org
4994 S:      Maintained
4995 F:      drivers/platform/x86/compal-laptop.c
4996
4997 COMPILER ATTRIBUTES
4998 M:      Miguel Ojeda <ojeda@kernel.org>
4999 R:      Nick Desaulniers <ndesaulniers@google.com>
5000 S:      Maintained
5001 F:      include/linux/compiler_attributes.h
5002
5003 COMPUTE EXPRESS LINK (CXL)
5004 M:      Alison Schofield <alison.schofield@intel.com>
5005 M:      Vishal Verma <vishal.l.verma@intel.com>
5006 M:      Ira Weiny <ira.weiny@intel.com>
5007 M:      Ben Widawsky <ben.widawsky@intel.com>
5008 M:      Dan Williams <dan.j.williams@intel.com>
5009 L:      linux-cxl@vger.kernel.org
5010 S:      Maintained
5011 F:      drivers/cxl/
5012 F:      include/uapi/linux/cxl_mem.h
5013
5014 CONEXANT ACCESSRUNNER USB DRIVER
5015 L:      accessrunner-general@lists.sourceforge.net
5016 S:      Orphan
5017 W:      http://accessrunner.sourceforge.net/
5018 F:      drivers/usb/atm/cxacru.c
5019
5020 CONFIGFS
5021 M:      Joel Becker <jlbec@evilplan.org>
5022 M:      Christoph Hellwig <hch@lst.de>
5023 S:      Supported
5024 T:      git git://git.infradead.org/users/hch/configfs.git
5025 F:      fs/configfs/
5026 F:      include/linux/configfs.h
5027 F:      samples/configfs/
5028
5029 CONSOLE SUBSYSTEM
5030 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
5031 S:      Supported
5032 F:      drivers/video/console/
5033 F:      include/linux/console*
5034
5035 CONTEXT TRACKING
5036 M:      Frederic Weisbecker <frederic@kernel.org>
5037 S:      Maintained
5038 F:      kernel/context_tracking.c
5039 F:      include/linux/context_tracking*
5040
5041 CONTROL GROUP (CGROUP)
5042 M:      Tejun Heo <tj@kernel.org>
5043 M:      Zefan Li <lizefan.x@bytedance.com>
5044 M:      Johannes Weiner <hannes@cmpxchg.org>
5045 L:      cgroups@vger.kernel.org
5046 S:      Maintained
5047 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
5048 F:      Documentation/admin-guide/cgroup-v1/
5049 F:      Documentation/admin-guide/cgroup-v2.rst
5050 F:      include/linux/cgroup*
5051 F:      kernel/cgroup/
5052 F:      tools/testing/selftests/cgroup/
5053
5054 CONTROL GROUP - BLOCK IO CONTROLLER (BLKIO)
5055 M:      Tejun Heo <tj@kernel.org>
5056 M:      Jens Axboe <axboe@kernel.dk>
5057 L:      cgroups@vger.kernel.org
5058 L:      linux-block@vger.kernel.org
5059 T:      git git://git.kernel.dk/linux-block
5060 F:      Documentation/admin-guide/cgroup-v1/blkio-controller.rst
5061 F:      block/bfq-cgroup.c
5062 F:      block/blk-cgroup.c
5063 F:      block/blk-iolatency.c
5064 F:      block/blk-throttle.c
5065 F:      include/linux/blk-cgroup.h
5066
5067 CONTROL GROUP - CPUSET
5068 M:      Zefan Li <lizefan.x@bytedance.com>
5069 L:      cgroups@vger.kernel.org
5070 S:      Maintained
5071 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
5072 F:      Documentation/admin-guide/cgroup-v1/cpusets.rst
5073 F:      include/linux/cpuset.h
5074 F:      kernel/cgroup/cpuset.c
5075
5076 CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG)
5077 M:      Johannes Weiner <hannes@cmpxchg.org>
5078 M:      Michal Hocko <mhocko@kernel.org>
5079 M:      Roman Gushchin <roman.gushchin@linux.dev>
5080 M:      Shakeel Butt <shakeelb@google.com>
5081 R:      Muchun Song <songmuchun@bytedance.com>
5082 L:      cgroups@vger.kernel.org
5083 L:      linux-mm@kvack.org
5084 S:      Maintained
5085 F:      mm/memcontrol.c
5086 F:      mm/swap_cgroup.c
5087 F:      tools/testing/selftests/cgroup/memcg_protection.m
5088 F:      tools/testing/selftests/cgroup/test_kmem.c
5089 F:      tools/testing/selftests/cgroup/test_memcontrol.c
5090
5091 CORETEMP HARDWARE MONITORING DRIVER
5092 M:      Fenghua Yu <fenghua.yu@intel.com>
5093 L:      linux-hwmon@vger.kernel.org
5094 S:      Maintained
5095 F:      Documentation/hwmon/coretemp.rst
5096 F:      drivers/hwmon/coretemp.c
5097
5098 CORSAIR-CPRO HARDWARE MONITOR DRIVER
5099 M:      Marius Zachmann <mail@mariuszachmann.de>
5100 L:      linux-hwmon@vger.kernel.org
5101 S:      Maintained
5102 F:      drivers/hwmon/corsair-cpro.c
5103
5104 CORSAIR-PSU HARDWARE MONITOR DRIVER
5105 M:      Wilken Gottwalt <wilken.gottwalt@posteo.net>
5106 L:      linux-hwmon@vger.kernel.org
5107 S:      Maintained
5108 F:      Documentation/hwmon/corsair-psu.rst
5109 F:      drivers/hwmon/corsair-psu.c
5110
5111 COUNTER SUBSYSTEM
5112 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
5113 L:      linux-iio@vger.kernel.org
5114 S:      Maintained
5115 T:      git git@gitlab.com:vilhelmgray/counter.git
5116 F:      Documentation/ABI/testing/sysfs-bus-counter
5117 F:      Documentation/driver-api/generic-counter.rst
5118 F:      drivers/counter/
5119 F:      include/linux/counter.h
5120 F:      include/uapi/linux/counter.h
5121 F:      tools/counter/
5122
5123 CP2615 I2C DRIVER
5124 M:      Bence Csókás <bence98@sch.bme.hu>
5125 S:      Maintained
5126 F:      drivers/i2c/busses/i2c-cp2615.c
5127
5128 CPMAC ETHERNET DRIVER
5129 M:      Florian Fainelli <f.fainelli@gmail.com>
5130 L:      netdev@vger.kernel.org
5131 S:      Maintained
5132 F:      drivers/net/ethernet/ti/cpmac.c
5133
5134 CPU FREQUENCY DRIVERS - VEXPRESS SPC ARM BIG LITTLE
5135 M:      Viresh Kumar <viresh.kumar@linaro.org>
5136 M:      Sudeep Holla <sudeep.holla@arm.com>
5137 L:      linux-pm@vger.kernel.org
5138 S:      Maintained
5139 W:      http://www.arm.com/products/processors/technologies/biglittleprocessing.php
5140 F:      drivers/cpufreq/vexpress-spc-cpufreq.c
5141
5142 CPU FREQUENCY SCALING FRAMEWORK
5143 M:      "Rafael J. Wysocki" <rafael@kernel.org>
5144 M:      Viresh Kumar <viresh.kumar@linaro.org>
5145 L:      linux-pm@vger.kernel.org
5146 S:      Maintained
5147 B:      https://bugzilla.kernel.org
5148 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
5149 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git (For ARM Updates)
5150 F:      Documentation/admin-guide/pm/cpufreq.rst
5151 F:      Documentation/admin-guide/pm/intel_pstate.rst
5152 F:      Documentation/cpu-freq/
5153 F:      Documentation/devicetree/bindings/cpufreq/
5154 F:      drivers/cpufreq/
5155 F:      include/linux/cpufreq.h
5156 F:      include/linux/sched/cpufreq.h
5157 F:      kernel/sched/cpufreq*.c
5158 F:      tools/testing/selftests/cpufreq/
5159
5160 CPU IDLE TIME MANAGEMENT FRAMEWORK
5161 M:      "Rafael J. Wysocki" <rafael@kernel.org>
5162 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
5163 L:      linux-pm@vger.kernel.org
5164 S:      Maintained
5165 B:      https://bugzilla.kernel.org
5166 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
5167 F:      Documentation/admin-guide/pm/cpuidle.rst
5168 F:      Documentation/driver-api/pm/cpuidle.rst
5169 F:      drivers/cpuidle/
5170 F:      include/linux/cpuidle.h
5171
5172 CPU POWER MONITORING SUBSYSTEM
5173 M:      Thomas Renninger <trenn@suse.com>
5174 M:      Shuah Khan <shuah@kernel.org>
5175 M:      Shuah Khan <skhan@linuxfoundation.org>
5176 L:      linux-pm@vger.kernel.org
5177 S:      Maintained
5178 F:      tools/power/cpupower/
5179
5180 CPUID/MSR DRIVER
5181 M:      "H. Peter Anvin" <hpa@zytor.com>
5182 S:      Maintained
5183 F:      arch/x86/kernel/cpuid.c
5184 F:      arch/x86/kernel/msr.c
5185
5186 CPUIDLE DRIVER - ARM BIG LITTLE
5187 M:      Lorenzo Pieralisi <lpieralisi@kernel.org>
5188 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
5189 L:      linux-pm@vger.kernel.org
5190 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5191 S:      Maintained
5192 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
5193 F:      drivers/cpuidle/cpuidle-big_little.c
5194
5195 CPUIDLE DRIVER - ARM EXYNOS
5196 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
5197 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
5198 M:      Kukjin Kim <kgene@kernel.org>
5199 L:      linux-pm@vger.kernel.org
5200 L:      linux-samsung-soc@vger.kernel.org
5201 S:      Supported
5202 F:      arch/arm/mach-exynos/pm.c
5203 F:      drivers/cpuidle/cpuidle-exynos.c
5204 F:      include/linux/platform_data/cpuidle-exynos.h
5205
5206 CPUIDLE DRIVER - ARM PSCI
5207 M:      Lorenzo Pieralisi <lpieralisi@kernel.org>
5208 M:      Sudeep Holla <sudeep.holla@arm.com>
5209 L:      linux-pm@vger.kernel.org
5210 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5211 S:      Supported
5212 F:      drivers/cpuidle/cpuidle-psci.c
5213
5214 CPUIDLE DRIVER - ARM PSCI PM DOMAIN
5215 M:      Ulf Hansson <ulf.hansson@linaro.org>
5216 L:      linux-pm@vger.kernel.org
5217 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5218 S:      Supported
5219 F:      drivers/cpuidle/cpuidle-psci.h
5220 F:      drivers/cpuidle/cpuidle-psci-domain.c
5221
5222 CPUIDLE DRIVER - DT IDLE PM DOMAIN
5223 M:      Ulf Hansson <ulf.hansson@linaro.org>
5224 L:      linux-pm@vger.kernel.org
5225 S:      Supported
5226 F:      drivers/cpuidle/dt_idle_genpd.c
5227 F:      drivers/cpuidle/dt_idle_genpd.h
5228
5229 CPUIDLE DRIVER - RISC-V SBI
5230 M:      Anup Patel <anup@brainfault.org>
5231 L:      linux-pm@vger.kernel.org
5232 L:      linux-riscv@lists.infradead.org
5233 S:      Maintained
5234 F:      drivers/cpuidle/cpuidle-riscv-sbi.c
5235
5236 CRAMFS FILESYSTEM
5237 M:      Nicolas Pitre <nico@fluxnic.net>
5238 S:      Maintained
5239 F:      Documentation/filesystems/cramfs.rst
5240 F:      fs/cramfs/
5241
5242 CREATIVE SB0540
5243 M:      Bastien Nocera <hadess@hadess.net>
5244 L:      linux-input@vger.kernel.org
5245 S:      Maintained
5246 F:      drivers/hid/hid-creative-sb0540.c
5247
5248 CRYPTO API
5249 M:      Herbert Xu <herbert@gondor.apana.org.au>
5250 M:      "David S. Miller" <davem@davemloft.net>
5251 L:      linux-crypto@vger.kernel.org
5252 S:      Maintained
5253 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
5254 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
5255 F:      Documentation/crypto/
5256 F:      Documentation/devicetree/bindings/crypto/
5257 F:      arch/*/crypto/
5258 F:      crypto/
5259 F:      drivers/crypto/
5260 F:      include/crypto/
5261 F:      include/linux/crypto*
5262 F:      lib/crypto/
5263
5264 CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
5265 M:      Neil Horman <nhorman@tuxdriver.com>
5266 L:      linux-crypto@vger.kernel.org
5267 S:      Maintained
5268 F:      crypto/ansi_cprng.c
5269 F:      crypto/rng.c
5270
5271 CS3308 MEDIA DRIVER
5272 M:      Hans Verkuil <hverkuil@xs4all.nl>
5273 L:      linux-media@vger.kernel.org
5274 S:      Odd Fixes
5275 W:      http://linuxtv.org
5276 T:      git git://linuxtv.org/media_tree.git
5277 F:      drivers/media/i2c/cs3308.c
5278
5279 CS5535 Audio ALSA driver
5280 M:      Jaya Kumar <jayakumar.alsa@gmail.com>
5281 S:      Maintained
5282 F:      sound/pci/cs5535audio/
5283
5284 CSI DRIVERS FOR ALLWINNER V3s
5285 M:      Yong Deng <yong.deng@magewell.com>
5286 L:      linux-media@vger.kernel.org
5287 S:      Maintained
5288 T:      git git://linuxtv.org/media_tree.git
5289 F:      Documentation/devicetree/bindings/media/allwinner,sun6i-a31-csi.yaml
5290 F:      drivers/media/platform/sunxi/sun6i-csi/
5291
5292 CTU CAN FD DRIVER
5293 M:      Pavel Pisa <pisa@cmp.felk.cvut.cz>
5294 M:      Ondrej Ille <ondrej.ille@gmail.com>
5295 L:      linux-can@vger.kernel.org
5296 S:      Maintained
5297 F:      Documentation/devicetree/bindings/net/can/ctu,ctucanfd.yaml
5298 F:      drivers/net/can/ctucanfd/
5299
5300 CW1200 WLAN driver
5301 M:      Solomon Peachy <pizza@shaftnet.org>
5302 S:      Maintained
5303 F:      drivers/net/wireless/st/cw1200/
5304
5305 CX18 VIDEO4LINUX DRIVER
5306 M:      Andy Walls <awalls@md.metrocast.net>
5307 L:      linux-media@vger.kernel.org
5308 S:      Maintained
5309 W:      https://linuxtv.org
5310 T:      git git://linuxtv.org/media_tree.git
5311 F:      drivers/media/pci/cx18/
5312 F:      include/uapi/linux/ivtv*
5313
5314 CX2341X MPEG ENCODER HELPER MODULE
5315 M:      Hans Verkuil <hverkuil@xs4all.nl>
5316 L:      linux-media@vger.kernel.org
5317 S:      Maintained
5318 W:      https://linuxtv.org
5319 T:      git git://linuxtv.org/media_tree.git
5320 F:      drivers/media/common/cx2341x*
5321 F:      include/media/drv-intf/cx2341x.h
5322
5323 CX24120 MEDIA DRIVER
5324 M:      Jemma Denson <jdenson@gmail.com>
5325 M:      Patrick Boettcher <patrick.boettcher@posteo.de>
5326 L:      linux-media@vger.kernel.org
5327 S:      Maintained
5328 W:      https://linuxtv.org
5329 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5330 F:      drivers/media/dvb-frontends/cx24120*
5331
5332 CX88 VIDEO4LINUX DRIVER
5333 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
5334 L:      linux-media@vger.kernel.org
5335 S:      Odd fixes
5336 W:      https://linuxtv.org
5337 T:      git git://linuxtv.org/media_tree.git
5338 F:      Documentation/driver-api/media/drivers/cx88*
5339 F:      drivers/media/pci/cx88/
5340
5341 CXD2820R MEDIA DRIVER
5342 M:      Antti Palosaari <crope@iki.fi>
5343 L:      linux-media@vger.kernel.org
5344 S:      Maintained
5345 W:      https://linuxtv.org
5346 W:      http://palosaari.fi/linux/
5347 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5348 T:      git git://linuxtv.org/anttip/media_tree.git
5349 F:      drivers/media/dvb-frontends/cxd2820r*
5350
5351 CXGB3 ETHERNET DRIVER (CXGB3)
5352 M:      Raju Rangoju <rajur@chelsio.com>
5353 L:      netdev@vger.kernel.org
5354 S:      Supported
5355 W:      http://www.chelsio.com
5356 F:      drivers/net/ethernet/chelsio/cxgb3/
5357
5358 CXGB3 ISCSI DRIVER (CXGB3I)
5359 M:      Karen Xie <kxie@chelsio.com>
5360 L:      linux-scsi@vger.kernel.org
5361 S:      Supported
5362 W:      http://www.chelsio.com
5363 F:      drivers/scsi/cxgbi/cxgb3i
5364
5365 CXGB4 CRYPTO DRIVER (chcr)
5366 M:      Ayush Sawal <ayush.sawal@chelsio.com>
5367 M:      Vinay Kumar Yadav <vinay.yadav@chelsio.com>
5368 M:      Rohit Maheshwari <rohitm@chelsio.com>
5369 L:      linux-crypto@vger.kernel.org
5370 S:      Supported
5371 W:      http://www.chelsio.com
5372 F:      drivers/crypto/chelsio
5373
5374 CXGB4 INLINE CRYPTO DRIVER
5375 M:      Ayush Sawal <ayush.sawal@chelsio.com>
5376 M:      Vinay Kumar Yadav <vinay.yadav@chelsio.com>
5377 M:      Rohit Maheshwari <rohitm@chelsio.com>
5378 L:      netdev@vger.kernel.org
5379 S:      Supported
5380 W:      http://www.chelsio.com
5381 F:      drivers/net/ethernet/chelsio/inline_crypto/
5382
5383 CXGB4 ETHERNET DRIVER (CXGB4)
5384 M:      Raju Rangoju <rajur@chelsio.com>
5385 L:      netdev@vger.kernel.org
5386 S:      Supported
5387 W:      http://www.chelsio.com
5388 F:      drivers/net/ethernet/chelsio/cxgb4/
5389
5390 CXGB4 ISCSI DRIVER (CXGB4I)
5391 M:      Karen Xie <kxie@chelsio.com>
5392 L:      linux-scsi@vger.kernel.org
5393 S:      Supported
5394 W:      http://www.chelsio.com
5395 F:      drivers/scsi/cxgbi/cxgb4i
5396
5397 CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
5398 M:      Potnuri Bharat Teja <bharat@chelsio.com>
5399 L:      linux-rdma@vger.kernel.org
5400 S:      Supported
5401 W:      http://www.openfabrics.org
5402 F:      drivers/infiniband/hw/cxgb4/
5403 F:      include/uapi/rdma/cxgb4-abi.h
5404
5405 CXGB4VF ETHERNET DRIVER (CXGB4VF)
5406 M:      Raju Rangoju <rajur@chelsio.com>
5407 L:      netdev@vger.kernel.org
5408 S:      Supported
5409 W:      http://www.chelsio.com
5410 F:      drivers/net/ethernet/chelsio/cxgb4vf/
5411
5412 CXL (IBM Coherent Accelerator Processor Interface CAPI) DRIVER
5413 M:      Frederic Barrat <fbarrat@linux.ibm.com>
5414 M:      Andrew Donnellan <ajd@linux.ibm.com>
5415 L:      linuxppc-dev@lists.ozlabs.org
5416 S:      Supported
5417 F:      Documentation/ABI/testing/sysfs-class-cxl
5418 F:      Documentation/powerpc/cxl.rst
5419 F:      arch/powerpc/platforms/powernv/pci-cxl.c
5420 F:      drivers/misc/cxl/
5421 F:      include/misc/cxl*
5422 F:      include/uapi/misc/cxl.h
5423
5424 CXLFLASH (IBM Coherent Accelerator Processor Interface CAPI Flash) SCSI DRIVER
5425 M:      Manoj N. Kumar <manoj@linux.ibm.com>
5426 M:      Matthew R. Ochs <mrochs@linux.ibm.com>
5427 M:      Uma Krishnan <ukrishn@linux.ibm.com>
5428 L:      linux-scsi@vger.kernel.org
5429 S:      Supported
5430 F:      Documentation/powerpc/cxlflash.rst
5431 F:      drivers/scsi/cxlflash/
5432 F:      include/uapi/scsi/cxlflash_ioctl.h
5433
5434 CYBERPRO FB DRIVER
5435 M:      Russell King <linux@armlinux.org.uk>
5436 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5437 S:      Maintained
5438 W:      http://www.armlinux.org.uk/
5439 F:      drivers/video/fbdev/cyber2000fb.*
5440
5441 CYCLADES PC300 DRIVER
5442 S:      Orphan
5443 F:      drivers/net/wan/pc300*
5444
5445 CYPRESS_FIRMWARE MEDIA DRIVER
5446 M:      Antti Palosaari <crope@iki.fi>
5447 L:      linux-media@vger.kernel.org
5448 S:      Maintained
5449 W:      https://linuxtv.org
5450 W:      http://palosaari.fi/linux/
5451 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5452 T:      git git://linuxtv.org/anttip/media_tree.git
5453 F:      drivers/media/common/cypress_firmware*
5454
5455 CYPRESS CY8CTMA140 TOUCHSCREEN DRIVER
5456 M:      Linus Walleij <linus.walleij@linaro.org>
5457 L:      linux-input@vger.kernel.org
5458 S:      Maintained
5459 F:      drivers/input/touchscreen/cy8ctma140.c
5460
5461 CYPRESS STREETFIGHTER TOUCHKEYS DRIVER
5462 M:      Yassine Oudjana <y.oudjana@protonmail.com>
5463 L:      linux-input@vger.kernel.org
5464 S:      Maintained
5465 F:      Documentation/devicetree/bindings/input/cypress-sf.yaml
5466 F:      drivers/input/keyboard/cypress-sf.c
5467
5468 CYTTSP TOUCHSCREEN DRIVER
5469 M:      Linus Walleij <linus.walleij@linaro.org>
5470 L:      linux-input@vger.kernel.org
5471 S:      Maintained
5472 F:      drivers/input/touchscreen/cyttsp*
5473
5474 D-LINK DIR-685 TOUCHKEYS DRIVER
5475 M:      Linus Walleij <linus.walleij@linaro.org>
5476 L:      linux-input@vger.kernel.org
5477 S:      Supported
5478 F:      drivers/input/keyboard/dlink-dir685-touchkeys.c
5479
5480 DALLAS/MAXIM DS1685-FAMILY REAL TIME CLOCK
5481 M:      Joshua Kinard <kumba@gentoo.org>
5482 S:      Maintained
5483 F:      drivers/rtc/rtc-ds1685.c
5484 F:      include/linux/rtc/ds1685.h
5485
5486 DAMA SLAVE for AX.25
5487 M:      Joerg Reuter <jreuter@yaina.de>
5488 L:      linux-hams@vger.kernel.org
5489 S:      Maintained
5490 W:      http://yaina.de/jreuter/
5491 W:      http://www.qsl.net/dl1bke/
5492 F:      net/ax25/af_ax25.c
5493 F:      net/ax25/ax25_dev.c
5494 F:      net/ax25/ax25_ds_*
5495 F:      net/ax25/ax25_in.c
5496 F:      net/ax25/ax25_out.c
5497 F:      net/ax25/ax25_timer.c
5498 F:      net/ax25/sysctl_net_ax25.c
5499
5500 DATA ACCESS MONITOR
5501 M:      SeongJae Park <sj@kernel.org>
5502 L:      damon@lists.linux.dev
5503 L:      linux-mm@kvack.org
5504 S:      Maintained
5505 F:      Documentation/ABI/testing/sysfs-kernel-mm-damon
5506 F:      Documentation/admin-guide/mm/damon/
5507 F:      Documentation/vm/damon/
5508 F:      include/linux/damon.h
5509 F:      include/trace/events/damon.h
5510 F:      mm/damon/
5511 F:      tools/testing/selftests/damon/
5512
5513 DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
5514 L:      netdev@vger.kernel.org
5515 S:      Orphan
5516 F:      Documentation/networking/device_drivers/ethernet/dec/dmfe.rst
5517 F:      drivers/net/ethernet/dec/tulip/dmfe.c
5518
5519 DC390/AM53C974 SCSI driver
5520 M:      Hannes Reinecke <hare@suse.com>
5521 L:      linux-scsi@vger.kernel.org
5522 S:      Maintained
5523 F:      drivers/scsi/am53c974.c
5524
5525 DC395x SCSI driver
5526 M:      Oliver Neukum <oliver@neukum.org>
5527 M:      Ali Akcaagac <aliakc@web.de>
5528 M:      Jamie Lenehan <lenehan@twibble.org>
5529 L:      dc395x@twibble.org
5530 S:      Maintained
5531 W:      http://twibble.org/dist/dc395x/
5532 W:      http://lists.twibble.org/mailman/listinfo/dc395x/
5533 F:      Documentation/scsi/dc395x.rst
5534 F:      drivers/scsi/dc395x.*
5535
5536 DCCP PROTOCOL
5537 L:      dccp@vger.kernel.org
5538 S:      Orphan
5539 W:      http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
5540 F:      include/linux/dccp.h
5541 F:      include/linux/tfrc.h
5542 F:      include/uapi/linux/dccp.h
5543 F:      net/dccp/
5544
5545 DECnet NETWORK LAYER
5546 L:      linux-decnet-user@lists.sourceforge.net
5547 S:      Orphan
5548 W:      http://linux-decnet.sourceforge.net
5549 F:      Documentation/networking/decnet.rst
5550 F:      net/decnet/
5551
5552 DECSTATION PLATFORM SUPPORT
5553 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
5554 L:      linux-mips@vger.kernel.org
5555 S:      Maintained
5556 W:      http://www.linux-mips.org/wiki/DECstation
5557 F:      arch/mips/dec/
5558 F:      arch/mips/include/asm/dec/
5559 F:      arch/mips/include/asm/mach-dec/
5560
5561 DEFXX FDDI NETWORK DRIVER
5562 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
5563 S:      Maintained
5564 F:      drivers/net/fddi/defxx.*
5565
5566 DEFZA FDDI NETWORK DRIVER
5567 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
5568 S:      Maintained
5569 F:      drivers/net/fddi/defza.*
5570
5571 DEINTERLACE DRIVERS FOR ALLWINNER H3
5572 M:      Jernej Skrabec <jernej.skrabec@gmail.com>
5573 L:      linux-media@vger.kernel.org
5574 S:      Maintained
5575 T:      git git://linuxtv.org/media_tree.git
5576 F:      Documentation/devicetree/bindings/media/allwinner,sun8i-h3-deinterlace.yaml
5577 F:      drivers/media/platform/sunxi/sun8i-di/
5578
5579 DELL LAPTOP DRIVER
5580 M:      Matthew Garrett <mjg59@srcf.ucam.org>
5581 M:      Pali Rohár <pali@kernel.org>
5582 L:      platform-driver-x86@vger.kernel.org
5583 S:      Maintained
5584 F:      drivers/platform/x86/dell/dell-laptop.c
5585
5586 DELL LAPTOP FREEFALL DRIVER
5587 M:      Pali Rohár <pali@kernel.org>
5588 S:      Maintained
5589 F:      drivers/platform/x86/dell/dell-smo8800.c
5590
5591 DELL LAPTOP RBTN DRIVER
5592 M:      Pali Rohár <pali@kernel.org>
5593 S:      Maintained
5594 F:      drivers/platform/x86/dell/dell-rbtn.*
5595
5596 DELL LAPTOP SMM DRIVER
5597 M:      Pali Rohár <pali@kernel.org>
5598 S:      Maintained
5599 F:      Documentation/ABI/obsolete/procfs-i8k
5600 F:      drivers/hwmon/dell-smm-hwmon.c
5601 F:      include/uapi/linux/i8k.h
5602
5603 DELL REMOTE BIOS UPDATE DRIVER
5604 M:      Stuart Hayes <stuart.w.hayes@gmail.com>
5605 L:      platform-driver-x86@vger.kernel.org
5606 S:      Maintained
5607 F:      drivers/platform/x86/dell/dell_rbu.c
5608
5609 DELL SMBIOS DRIVER
5610 M:      Pali Rohár <pali@kernel.org>
5611 L:      Dell.Client.Kernel@dell.com
5612 L:      platform-driver-x86@vger.kernel.org
5613 S:      Maintained
5614 F:      drivers/platform/x86/dell/dell-smbios.*
5615
5616 DELL SMBIOS SMM DRIVER
5617 L:      Dell.Client.Kernel@dell.com
5618 L:      platform-driver-x86@vger.kernel.org
5619 S:      Maintained
5620 F:      drivers/platform/x86/dell/dell-smbios-smm.c
5621
5622 DELL SMBIOS WMI DRIVER
5623 L:      Dell.Client.Kernel@dell.com
5624 L:      platform-driver-x86@vger.kernel.org
5625 S:      Maintained
5626 F:      drivers/platform/x86/dell/dell-smbios-wmi.c
5627 F:      tools/wmi/dell-smbios-example.c
5628
5629 DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
5630 M:      Stuart Hayes <stuart.w.hayes@gmail.com>
5631 L:      platform-driver-x86@vger.kernel.org
5632 S:      Maintained
5633 F:      Documentation/driver-api/dcdbas.rst
5634 F:      drivers/platform/x86/dell/dcdbas.*
5635
5636 DELL WMI DESCRIPTOR DRIVER
5637 L:      Dell.Client.Kernel@dell.com
5638 S:      Maintained
5639 F:      drivers/platform/x86/dell/dell-wmi-descriptor.c
5640
5641 DELL WMI SYSMAN DRIVER
5642 M:      Divya Bharathi <divya.bharathi@dell.com>
5643 M:      Prasanth Ksr <prasanth.ksr@dell.com>
5644 L:      Dell.Client.Kernel@dell.com
5645 L:      platform-driver-x86@vger.kernel.org
5646 S:      Maintained
5647 F:      Documentation/ABI/testing/sysfs-class-firmware-attributes
5648 F:      drivers/platform/x86/dell/dell-wmi-sysman/
5649
5650 DELL WMI NOTIFICATIONS DRIVER
5651 M:      Matthew Garrett <mjg59@srcf.ucam.org>
5652 M:      Pali Rohár <pali@kernel.org>
5653 S:      Maintained
5654 F:      drivers/platform/x86/dell/dell-wmi-base.c
5655
5656 DELL WMI HARDWARE PRIVACY SUPPORT
5657 M:      Perry Yuan <Perry.Yuan@dell.com>
5658 L:      Dell.Client.Kernel@dell.com
5659 L:      platform-driver-x86@vger.kernel.org
5660 S:      Maintained
5661 F:      drivers/platform/x86/dell/dell-wmi-privacy.c
5662
5663 DELTA ST MEDIA DRIVER
5664 M:      Hugues Fruchet <hugues.fruchet@foss.st.com>
5665 L:      linux-media@vger.kernel.org
5666 S:      Supported
5667 W:      https://linuxtv.org
5668 T:      git git://linuxtv.org/media_tree.git
5669 F:      drivers/media/platform/st/sti/delta
5670
5671 DELTA AHE-50DC FAN CONTROL MODULE DRIVER
5672 M:      Zev Weiss <zev@bewilderbeest.net>
5673 L:      linux-hwmon@vger.kernel.org
5674 S:      Maintained
5675 F:      drivers/hwmon/pmbus/delta-ahe50dc-fan.c
5676
5677 DELTA DPS920AB PSU DRIVER
5678 M:      Robert Marko <robert.marko@sartura.hr>
5679 L:      linux-hwmon@vger.kernel.org
5680 S:      Maintained
5681 F:      Documentation/hwmon/dps920ab.rst
5682 F:      drivers/hwmon/pmbus/dps920ab.c
5683
5684 DELTA NETWORKS TN48M CPLD DRIVERS
5685 M:      Robert Marko <robert.marko@sartura.hr>
5686 S:      Maintained
5687 F:      Documentation/devicetree/bindings/gpio/delta,tn48m-gpio.yaml
5688 F:      Documentation/devicetree/bindings/mfd/delta,tn48m-cpld.yaml
5689 F:      Documentation/devicetree/bindings/reset/delta,tn48m-reset.yaml
5690 F:      drivers/gpio/gpio-tn48m.c
5691 F:      include/dt-bindings/reset/delta,tn48m-reset.h
5692
5693 DENALI NAND DRIVER
5694 L:      linux-mtd@lists.infradead.org
5695 S:      Orphan
5696 F:      drivers/mtd/nand/raw/denali*
5697
5698 DESIGNWARE EDMA CORE IP DRIVER
5699 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
5700 L:      dmaengine@vger.kernel.org
5701 S:      Maintained
5702 F:      drivers/dma/dw-edma/
5703 F:      include/linux/dma/edma.h
5704
5705 DESIGNWARE XDATA IP DRIVER
5706 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
5707 L:      linux-pci@vger.kernel.org
5708 S:      Maintained
5709 F:      Documentation/misc-devices/dw-xdata-pcie.rst
5710 F:      drivers/misc/dw-xdata-pcie.c
5711
5712 DESIGNWARE USB2 DRD IP DRIVER
5713 M:      Minas Harutyunyan <hminas@synopsys.com>
5714 L:      linux-usb@vger.kernel.org
5715 S:      Maintained
5716 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
5717 F:      drivers/usb/dwc2/
5718
5719 DESIGNWARE USB3 DRD IP DRIVER
5720 M:      Felipe Balbi <balbi@kernel.org>
5721 L:      linux-usb@vger.kernel.org
5722 S:      Maintained
5723 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
5724 F:      drivers/usb/dwc3/
5725
5726 DEVANTECH SRF ULTRASONIC RANGER IIO DRIVER
5727 M:      Andreas Klinger <ak@it-klinger.de>
5728 L:      linux-iio@vger.kernel.org
5729 S:      Maintained
5730 F:      Documentation/ABI/testing/sysfs-bus-iio-distance-srf08
5731 F:      drivers/iio/proximity/srf*.c
5732
5733 DEVICE COREDUMP (DEV_COREDUMP)
5734 M:      Johannes Berg <johannes@sipsolutions.net>
5735 L:      linux-kernel@vger.kernel.org
5736 S:      Maintained
5737 F:      drivers/base/devcoredump.c
5738 F:      include/linux/devcoredump.h
5739
5740 DEVICE DEPENDENCY HELPER SCRIPT
5741 M:      Saravana Kannan <saravanak@google.com>
5742 L:      linux-kernel@vger.kernel.org
5743 S:      Maintained
5744 F:      scripts/dev-needs.sh
5745
5746 DEVICE DIRECT ACCESS (DAX)
5747 M:      Dan Williams <dan.j.williams@intel.com>
5748 M:      Vishal Verma <vishal.l.verma@intel.com>
5749 M:      Dave Jiang <dave.jiang@intel.com>
5750 L:      nvdimm@lists.linux.dev
5751 S:      Supported
5752 F:      drivers/dax/
5753
5754 DEVICE FREQUENCY (DEVFREQ)
5755 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
5756 M:      Kyungmin Park <kyungmin.park@samsung.com>
5757 M:      Chanwoo Choi <cw00.choi@samsung.com>
5758 L:      linux-pm@vger.kernel.org
5759 S:      Maintained
5760 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
5761 F:      Documentation/devicetree/bindings/devfreq/
5762 F:      drivers/devfreq/
5763 F:      include/linux/devfreq.h
5764 F:      include/trace/events/devfreq.h
5765
5766 DEVICE FREQUENCY EVENT (DEVFREQ-EVENT)
5767 M:      Chanwoo Choi <cw00.choi@samsung.com>
5768 L:      linux-pm@vger.kernel.org
5769 S:      Supported
5770 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
5771 F:      Documentation/devicetree/bindings/devfreq/event/
5772 F:      drivers/devfreq/devfreq-event.c
5773 F:      drivers/devfreq/event/
5774 F:      include/dt-bindings/pmu/exynos_ppmu.h
5775 F:      include/linux/devfreq-event.h
5776
5777 DEVICE NUMBER REGISTRY
5778 M:      Torben Mathiasen <device@lanana.org>
5779 S:      Maintained
5780 W:      http://lanana.org/docs/device-list/index.html
5781
5782 DEVICE RESOURCE MANAGEMENT HELPERS
5783 M:      Hans de Goede <hdegoede@redhat.com>
5784 R:      Matti Vaittinen <mazziesaccount@gmail.com>
5785 S:      Maintained
5786 F:      include/linux/devm-helpers.h
5787
5788 DEVICE-MAPPER  (LVM)
5789 M:      Alasdair Kergon <agk@redhat.com>
5790 M:      Mike Snitzer <snitzer@kernel.org>
5791 M:      dm-devel@redhat.com
5792 L:      dm-devel@redhat.com
5793 S:      Maintained
5794 W:      http://sources.redhat.com/dm
5795 Q:      http://patchwork.kernel.org/project/dm-devel/list/
5796 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git
5797 T:      quilt http://people.redhat.com/agk/patches/linux/editing/
5798 F:      Documentation/admin-guide/device-mapper/
5799 F:      drivers/md/Kconfig
5800 F:      drivers/md/Makefile
5801 F:      drivers/md/dm*
5802 F:      drivers/md/persistent-data/
5803 F:      include/linux/device-mapper.h
5804 F:      include/linux/dm-*.h
5805 F:      include/uapi/linux/dm-*.h
5806
5807 DEVLINK
5808 M:      Jiri Pirko <jiri@nvidia.com>
5809 L:      netdev@vger.kernel.org
5810 S:      Supported
5811 F:      Documentation/networking/devlink
5812 F:      include/net/devlink.h
5813 F:      include/uapi/linux/devlink.h
5814 F:      net/core/devlink.c
5815
5816 DH ELECTRONICS IMX6 DHCOM BOARD SUPPORT
5817 M:      Christoph Niedermaier <cniedermaier@dh-electronics.com>
5818 L:      kernel@dh-electronics.com
5819 S:      Maintained
5820 F:      arch/arm/boot/dts/imx6*-dhcom-*
5821
5822 DH ELECTRONICS STM32MP1 DHCOM/DHCOR BOARD SUPPORT
5823 M:      Marek Vasut <marex@denx.de>
5824 L:      kernel@dh-electronics.com
5825 S:      Maintained
5826 F:      arch/arm/boot/dts/stm32mp1*-dhcom-*
5827 F:      arch/arm/boot/dts/stm32mp1*-dhcor-*
5828
5829 DIALOG SEMICONDUCTOR DRIVERS
5830 M:      Support Opensource <support.opensource@diasemi.com>
5831 S:      Supported
5832 W:      http://www.dialog-semiconductor.com/products
5833 F:      Documentation/devicetree/bindings/input/da90??-onkey.txt
5834 F:      Documentation/devicetree/bindings/input/dlg,da72??.txt
5835 F:      Documentation/devicetree/bindings/mfd/da90*.txt
5836 F:      Documentation/devicetree/bindings/regulator/dlg,da9*.yaml
5837 F:      Documentation/devicetree/bindings/regulator/da92*.txt
5838 F:      Documentation/devicetree/bindings/regulator/slg51000.txt
5839 F:      Documentation/devicetree/bindings/sound/da[79]*.txt
5840 F:      Documentation/devicetree/bindings/thermal/da90??-thermal.txt
5841 F:      Documentation/devicetree/bindings/watchdog/da90??-wdt.txt
5842 F:      Documentation/hwmon/da90??.rst
5843 F:      drivers/gpio/gpio-da90??.c
5844 F:      drivers/hwmon/da90??-hwmon.c
5845 F:      drivers/iio/adc/da91??-*.c
5846 F:      drivers/input/misc/da72??.[ch]
5847 F:      drivers/input/misc/da90??_onkey.c
5848 F:      drivers/input/touchscreen/da9052_tsi.c
5849 F:      drivers/leds/leds-da90??.c
5850 F:      drivers/mfd/da903x.c
5851 F:      drivers/mfd/da90??-*.c
5852 F:      drivers/mfd/da91??-*.c
5853 F:      drivers/pinctrl/pinctrl-da90??.c
5854 F:      drivers/power/supply/da9052-battery.c
5855 F:      drivers/power/supply/da91??-*.c
5856 F:      drivers/regulator/da9???-regulator.[ch]
5857 F:      drivers/regulator/slg51000-regulator.[ch]
5858 F:      drivers/rtc/rtc-da90??.c
5859 F:      drivers/thermal/da90??-thermal.c
5860 F:      drivers/video/backlight/da90??_bl.c
5861 F:      drivers/watchdog/da90??_wdt.c
5862 F:      include/dt-bindings/regulator/dlg,da9*-regulator.h
5863 F:      include/linux/mfd/da903x.h
5864 F:      include/linux/mfd/da9052/
5865 F:      include/linux/mfd/da9055/
5866 F:      include/linux/mfd/da9062/
5867 F:      include/linux/mfd/da9063/
5868 F:      include/linux/mfd/da9150/
5869 F:      include/linux/regulator/da9211.h
5870 F:      include/sound/da[79]*.h
5871 F:      sound/soc/codecs/da[79]*.[ch]
5872
5873 DIAMOND SYSTEMS GPIO-MM GPIO DRIVER
5874 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
5875 L:      linux-gpio@vger.kernel.org
5876 S:      Maintained
5877 F:      drivers/gpio/gpio-gpio-mm.c
5878
5879 DIOLAN U2C-12 I2C DRIVER
5880 M:      Guenter Roeck <linux@roeck-us.net>
5881 L:      linux-i2c@vger.kernel.org
5882 S:      Maintained
5883 F:      drivers/i2c/busses/i2c-diolan-u2c.c
5884
5885 DIRECTORY NOTIFICATION (DNOTIFY)
5886 M:      Jan Kara <jack@suse.cz>
5887 R:      Amir Goldstein <amir73il@gmail.com>
5888 L:      linux-fsdevel@vger.kernel.org
5889 S:      Maintained
5890 F:      Documentation/filesystems/dnotify.rst
5891 F:      fs/notify/dnotify/
5892 F:      include/linux/dnotify.h
5893
5894 DISK GEOMETRY AND PARTITION HANDLING
5895 M:      Andries Brouwer <aeb@cwi.nl>
5896 S:      Maintained
5897 W:      http://www.win.tue.nl/~aeb/linux/Large-Disk.html
5898 W:      http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
5899 W:      http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
5900
5901 DISKQUOTA
5902 M:      Jan Kara <jack@suse.com>
5903 S:      Maintained
5904 F:      Documentation/filesystems/quota.rst
5905 F:      fs/quota/
5906 F:      include/linux/quota*.h
5907 F:      include/uapi/linux/quota*.h
5908
5909 DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
5910 M:      Bernie Thompson <bernie@plugable.com>
5911 L:      linux-fbdev@vger.kernel.org
5912 S:      Maintained
5913 W:      http://plugable.com/category/projects/udlfb/
5914 F:      Documentation/fb/udlfb.rst
5915 F:      drivers/video/fbdev/udlfb.c
5916 F:      include/video/udlfb.h
5917
5918 DISTRIBUTED LOCK MANAGER (DLM)
5919 M:      Christine Caulfield <ccaulfie@redhat.com>
5920 M:      David Teigland <teigland@redhat.com>
5921 L:      cluster-devel@redhat.com
5922 S:      Supported
5923 W:      http://sources.redhat.com/cluster/
5924 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/linux-dlm.git
5925 F:      fs/dlm/
5926
5927 DMA BUFFER SHARING FRAMEWORK
5928 M:      Sumit Semwal <sumit.semwal@linaro.org>
5929 M:      Christian König <christian.koenig@amd.com>
5930 L:      linux-media@vger.kernel.org
5931 L:      dri-devel@lists.freedesktop.org
5932 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
5933 S:      Maintained
5934 T:      git git://anongit.freedesktop.org/drm/drm-misc
5935 F:      Documentation/driver-api/dma-buf.rst
5936 F:      drivers/dma-buf/
5937 F:      include/linux/*fence.h
5938 F:      include/linux/dma-buf.h
5939 F:      include/linux/dma-resv.h
5940 K:      \bdma_(?:buf|fence|resv)\b
5941
5942 DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
5943 M:      Vinod Koul <vkoul@kernel.org>
5944 L:      dmaengine@vger.kernel.org
5945 S:      Maintained
5946 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
5947 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vkoul/dmaengine.git
5948 F:      Documentation/devicetree/bindings/dma/
5949 F:      Documentation/driver-api/dmaengine/
5950 F:      drivers/dma/
5951 F:      include/dt-bindings/dma/
5952 F:      include/linux/dma/
5953 F:      include/linux/dmaengine.h
5954 F:      include/linux/of_dma.h
5955
5956 DMA MAPPING HELPERS
5957 M:      Christoph Hellwig <hch@lst.de>
5958 M:      Marek Szyprowski <m.szyprowski@samsung.com>
5959 R:      Robin Murphy <robin.murphy@arm.com>
5960 L:      iommu@lists.linux-foundation.org
5961 S:      Supported
5962 W:      http://git.infradead.org/users/hch/dma-mapping.git
5963 T:      git git://git.infradead.org/users/hch/dma-mapping.git
5964 F:      include/asm-generic/dma-mapping.h
5965 F:      include/linux/dma-direct.h
5966 F:      include/linux/dma-mapping.h
5967 F:      include/linux/dma-map-ops.h
5968 F:      kernel/dma/
5969
5970 DMA MAPPING BENCHMARK
5971 M:      Xiang Chen <chenxiang66@hisilicon.com>
5972 L:      iommu@lists.linux-foundation.org
5973 F:      kernel/dma/map_benchmark.c
5974 F:      tools/testing/selftests/dma/
5975
5976 DMA-BUF HEAPS FRAMEWORK
5977 M:      Sumit Semwal <sumit.semwal@linaro.org>
5978 R:      Benjamin Gaignard <benjamin.gaignard@collabora.com>
5979 R:      Liam Mark <lmark@codeaurora.org>
5980 R:      Laura Abbott <labbott@redhat.com>
5981 R:      Brian Starkey <Brian.Starkey@arm.com>
5982 R:      John Stultz <jstultz@google.com>
5983 L:      linux-media@vger.kernel.org
5984 L:      dri-devel@lists.freedesktop.org
5985 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
5986 S:      Maintained
5987 T:      git git://anongit.freedesktop.org/drm/drm-misc
5988 F:      drivers/dma-buf/dma-heap.c
5989 F:      drivers/dma-buf/heaps/*
5990 F:      include/linux/dma-heap.h
5991 F:      include/uapi/linux/dma-heap.h
5992
5993 DMC FREQUENCY DRIVER FOR SAMSUNG EXYNOS5422
5994 M:      Lukasz Luba <lukasz.luba@arm.com>
5995 L:      linux-pm@vger.kernel.org
5996 L:      linux-samsung-soc@vger.kernel.org
5997 S:      Maintained
5998 F:      Documentation/devicetree/bindings/memory-controllers/samsung,exynos5422-dmc.yaml
5999 F:      drivers/memory/samsung/exynos5422-dmc.c
6000
6001 DME1737 HARDWARE MONITOR DRIVER
6002 M:      Juerg Haefliger <juergh@gmail.com>
6003 L:      linux-hwmon@vger.kernel.org
6004 S:      Maintained
6005 F:      Documentation/hwmon/dme1737.rst
6006 F:      drivers/hwmon/dme1737.c
6007
6008 DMI/SMBIOS SUPPORT
6009 M:      Jean Delvare <jdelvare@suse.com>
6010 S:      Maintained
6011 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jdelvare/staging.git dmi-for-next
6012 F:      Documentation/ABI/testing/sysfs-firmware-dmi-tables
6013 F:      drivers/firmware/dmi-id.c
6014 F:      drivers/firmware/dmi_scan.c
6015 F:      include/linux/dmi.h
6016
6017 DOCUMENTATION
6018 M:      Jonathan Corbet <corbet@lwn.net>
6019 L:      linux-doc@vger.kernel.org
6020 S:      Maintained
6021 P:      Documentation/doc-guide/maintainer-profile.rst
6022 T:      git git://git.lwn.net/linux.git docs-next
6023 F:      Documentation/
6024 F:      scripts/documentation-file-ref-check
6025 F:      scripts/kernel-doc
6026 F:      scripts/sphinx-pre-install
6027 X:      Documentation/ABI/
6028 X:      Documentation/admin-guide/media/
6029 X:      Documentation/devicetree/
6030 X:      Documentation/driver-api/media/
6031 X:      Documentation/firmware-guide/acpi/
6032 X:      Documentation/i2c/
6033 X:      Documentation/power/
6034 X:      Documentation/spi/
6035 X:      Documentation/userspace-api/media/
6036
6037 DOCUMENTATION REPORTING ISSUES
6038 M:      Thorsten Leemhuis <linux@leemhuis.info>
6039 L:      linux-doc@vger.kernel.org
6040 S:      Maintained
6041 F:      Documentation/admin-guide/reporting-issues.rst
6042
6043 DOCUMENTATION SCRIPTS
6044 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6045 L:      linux-doc@vger.kernel.org
6046 S:      Maintained
6047 F:      Documentation/sphinx/parse-headers.pl
6048 F:      scripts/documentation-file-ref-check
6049 F:      scripts/sphinx-pre-install
6050
6051 DOCUMENTATION/ITALIAN
6052 M:      Federico Vaga <federico.vaga@vaga.pv.it>
6053 L:      linux-doc@vger.kernel.org
6054 S:      Maintained
6055 F:      Documentation/translations/it_IT
6056
6057 DOCUMENTATION/JAPANESE
6058 R:      Akira Yokosawa <akiyks@gmail.com>
6059 L:      linux-doc@vger.kernel.org
6060 S:      Maintained
6061 F:      Documentation/translations/ja_JP
6062
6063 DONGWOON DW9714 LENS VOICE COIL DRIVER
6064 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
6065 L:      linux-media@vger.kernel.org
6066 S:      Maintained
6067 T:      git git://linuxtv.org/media_tree.git
6068 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9714.txt
6069 F:      drivers/media/i2c/dw9714.c
6070
6071 DONGWOON DW9768 LENS VOICE COIL DRIVER
6072 M:      Dongchun Zhu <dongchun.zhu@mediatek.com>
6073 L:      linux-media@vger.kernel.org
6074 S:      Maintained
6075 T:      git git://linuxtv.org/media_tree.git
6076 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9768.yaml
6077 F:      drivers/media/i2c/dw9768.c
6078
6079 DONGWOON DW9807 LENS VOICE COIL DRIVER
6080 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
6081 L:      linux-media@vger.kernel.org
6082 S:      Maintained
6083 T:      git git://linuxtv.org/media_tree.git
6084 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9807-vcm.txt
6085 F:      drivers/media/i2c/dw9807-vcm.c
6086
6087 DOUBLETALK DRIVER
6088 M:      "James R. Van Zandt" <jrv@vanzandt.mv.com>
6089 L:      blinux-list@redhat.com
6090 S:      Maintained
6091 F:      drivers/char/dtlk.c
6092 F:      include/linux/dtlk.h
6093
6094 DPAA2 DATAPATH I/O (DPIO) DRIVER
6095 M:      Roy Pledge <Roy.Pledge@nxp.com>
6096 L:      linux-kernel@vger.kernel.org
6097 S:      Maintained
6098 F:      drivers/soc/fsl/dpio
6099
6100 DPAA2 ETHERNET DRIVER
6101 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
6102 L:      netdev@vger.kernel.org
6103 S:      Maintained
6104 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/ethernet-driver.rst
6105 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/mac-phy-support.rst
6106 F:      drivers/net/ethernet/freescale/dpaa2/Kconfig
6107 F:      drivers/net/ethernet/freescale/dpaa2/Makefile
6108 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-eth*
6109 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-mac*
6110 F:      drivers/net/ethernet/freescale/dpaa2/dpkg.h
6111 F:      drivers/net/ethernet/freescale/dpaa2/dpmac*
6112 F:      drivers/net/ethernet/freescale/dpaa2/dpni*
6113
6114 DPAA2 ETHERNET SWITCH DRIVER
6115 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
6116 L:      netdev@vger.kernel.org
6117 S:      Maintained
6118 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/switch-driver.rst
6119 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-switch*
6120 F:      drivers/net/ethernet/freescale/dpaa2/dpsw*
6121
6122 DPT_I2O SCSI RAID DRIVER
6123 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
6124 L:      linux-scsi@vger.kernel.org
6125 S:      Maintained
6126 W:      http://www.adaptec.com/
6127 F:      drivers/scsi/dpt*
6128 F:      drivers/scsi/dpt/
6129
6130 DRBD DRIVER
6131 M:      Philipp Reisner <philipp.reisner@linbit.com>
6132 M:      Lars Ellenberg <lars.ellenberg@linbit.com>
6133 M:      Christoph Böhmwalder <christoph.boehmwalder@linbit.com>
6134 L:      drbd-dev@lists.linbit.com
6135 S:      Supported
6136 W:      http://www.drbd.org
6137 T:      git git://git.linbit.com/linux-drbd.git
6138 T:      git git://git.linbit.com/drbd-8.4.git
6139 F:      Documentation/admin-guide/blockdev/
6140 F:      drivers/block/drbd/
6141 F:      lib/lru_cache.c
6142
6143 DRIVER COMPONENT FRAMEWORK
6144 L:      dri-devel@lists.freedesktop.org
6145 F:      drivers/base/component.c
6146 F:      include/linux/component.h
6147
6148 DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS
6149 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
6150 R:      "Rafael J. Wysocki" <rafael@kernel.org>
6151 S:      Supported
6152 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
6153 F:      Documentation/core-api/kobject.rst
6154 F:      drivers/base/
6155 F:      fs/debugfs/
6156 F:      fs/sysfs/
6157 F:      include/linux/debugfs.h
6158 F:      include/linux/kobj*
6159 F:      lib/kobj*
6160
6161 DRIVERS FOR OMAP ADAPTIVE VOLTAGE SCALING (AVS)
6162 M:      Nishanth Menon <nm@ti.com>
6163 L:      linux-pm@vger.kernel.org
6164 S:      Maintained
6165 F:      drivers/soc/ti/smartreflex.c
6166 F:      include/linux/power/smartreflex.h
6167
6168 DRM DRIVER FOR ALLWINNER DE2 AND DE3 ENGINE
6169 M:      Maxime Ripard <mripard@kernel.org>
6170 M:      Chen-Yu Tsai <wens@csie.org>
6171 R:      Jernej Skrabec <jernej.skrabec@gmail.com>
6172 L:      dri-devel@lists.freedesktop.org
6173 S:      Supported
6174 T:      git git://anongit.freedesktop.org/drm/drm-misc
6175 F:      drivers/gpu/drm/sun4i/sun8i*
6176
6177 DRM DRIVER FOR ARM PL111 CLCD
6178 M:      Emma Anholt <emma@anholt.net>
6179 S:      Supported
6180 T:      git git://anongit.freedesktop.org/drm/drm-misc
6181 F:      drivers/gpu/drm/pl111/
6182
6183 DRM DRIVER FOR ARM VERSATILE TFT PANELS
6184 M:      Linus Walleij <linus.walleij@linaro.org>
6185 S:      Maintained
6186 T:      git git://anongit.freedesktop.org/drm/drm-misc
6187 F:      Documentation/devicetree/bindings/display/panel/arm,versatile-tft-panel.yaml
6188 F:      drivers/gpu/drm/panel/panel-arm-versatile.c
6189
6190 DRM DRIVER FOR ASPEED BMC GFX
6191 M:      Joel Stanley <joel@jms.id.au>
6192 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
6193 S:      Supported
6194 T:      git git://anongit.freedesktop.org/drm/drm-misc
6195 F:      Documentation/devicetree/bindings/gpu/aspeed-gfx.txt
6196 F:      drivers/gpu/drm/aspeed/
6197
6198 DRM DRIVER FOR AST SERVER GRAPHICS CHIPS
6199 M:      Dave Airlie <airlied@redhat.com>
6200 R:      Thomas Zimmermann <tzimmermann@suse.de>
6201 L:      dri-devel@lists.freedesktop.org
6202 S:      Supported
6203 T:      git git://anongit.freedesktop.org/drm/drm-misc
6204 F:      drivers/gpu/drm/ast/
6205
6206 DRM DRIVER FOR BOCHS VIRTUAL GPU
6207 M:      Gerd Hoffmann <kraxel@redhat.com>
6208 L:      virtualization@lists.linux-foundation.org
6209 S:      Maintained
6210 T:      git git://anongit.freedesktop.org/drm/drm-misc
6211 F:      drivers/gpu/drm/tiny/bochs.c
6212
6213 DRM DRIVER FOR BOE HIMAX8279D PANELS
6214 M:      Jerry Han <hanxu5@huaqin.corp-partner.google.com>
6215 S:      Maintained
6216 F:      Documentation/devicetree/bindings/display/panel/boe,himax8279d.yaml
6217 F:      drivers/gpu/drm/panel/panel-boe-himax8279d.c
6218
6219 DRM DRIVER FOR CHIPONE ICN6211 MIPI-DSI to RGB CONVERTER BRIDGE
6220 M:      Jagan Teki <jagan@amarulasolutions.com>
6221 S:      Maintained
6222 F:      Documentation/devicetree/bindings/display/bridge/chipone,icn6211.yaml
6223 F:      drivers/gpu/drm/bridge/chipone-icn6211.c
6224
6225 DRM DRIVER FOR FARADAY TVE200 TV ENCODER
6226 M:      Linus Walleij <linus.walleij@linaro.org>
6227 S:      Maintained
6228 T:      git git://anongit.freedesktop.org/drm/drm-misc
6229 F:      drivers/gpu/drm/tve200/
6230
6231 DRM DRIVER FOR FEIXIN K101 IM2BA02 MIPI-DSI LCD PANELS
6232 M:      Icenowy Zheng <icenowy@aosc.io>
6233 S:      Maintained
6234 F:      Documentation/devicetree/bindings/display/panel/feixin,k101-im2ba02.yaml
6235 F:      drivers/gpu/drm/panel/panel-feixin-k101-im2ba02.c
6236
6237 DRM DRIVER FOR FEIYANG FY07024DI26A30-D MIPI-DSI LCD PANELS
6238 M:      Jagan Teki <jagan@amarulasolutions.com>
6239 S:      Maintained
6240 F:      Documentation/devicetree/bindings/display/panel/feiyang,fy07024di26a30d.yaml
6241 F:      drivers/gpu/drm/panel/panel-feiyang-fy07024di26a30d.c
6242
6243 DRM DRIVER FOR GENERIC USB DISPLAY
6244 M:      Noralf Trønnes <noralf@tronnes.org>
6245 S:      Maintained
6246 W:      https://github.com/notro/gud/wiki
6247 T:      git git://anongit.freedesktop.org/drm/drm-misc
6248 F:      drivers/gpu/drm/gud/
6249 F:      include/drm/gud.h
6250
6251 DRM DRIVER FOR GRAIN MEDIA GM12U320 PROJECTORS
6252 M:      Hans de Goede <hdegoede@redhat.com>
6253 S:      Maintained
6254 T:      git git://anongit.freedesktop.org/drm/drm-misc
6255 F:      drivers/gpu/drm/tiny/gm12u320.c
6256
6257 DRM DRIVER FOR HX8357D PANELS
6258 M:      Emma Anholt <emma@anholt.net>
6259 S:      Maintained
6260 T:      git git://anongit.freedesktop.org/drm/drm-misc
6261 F:      Documentation/devicetree/bindings/display/himax,hx8357d.txt
6262 F:      drivers/gpu/drm/tiny/hx8357d.c
6263
6264 DRM DRIVER FOR ILITEK ILI9225 PANELS
6265 M:      David Lechner <david@lechnology.com>
6266 S:      Maintained
6267 T:      git git://anongit.freedesktop.org/drm/drm-misc
6268 F:      Documentation/devicetree/bindings/display/ilitek,ili9225.txt
6269 F:      drivers/gpu/drm/tiny/ili9225.c
6270
6271 DRM DRIVER FOR ILITEK ILI9486 PANELS
6272 M:      Kamlesh Gurudasani <kamlesh.gurudasani@gmail.com>
6273 S:      Maintained
6274 T:      git git://anongit.freedesktop.org/drm/drm-misc
6275 F:      Documentation/devicetree/bindings/display/ilitek,ili9486.yaml
6276 F:      drivers/gpu/drm/tiny/ili9486.c
6277
6278 DRM DRIVER FOR INTEL I810 VIDEO CARDS
6279 S:      Orphan / Obsolete
6280 F:      drivers/gpu/drm/i810/
6281 F:      include/uapi/drm/i810_drm.h
6282
6283 DRM DRIVER FOR LVDS PANELS
6284 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6285 L:      dri-devel@lists.freedesktop.org
6286 T:      git git://anongit.freedesktop.org/drm/drm-misc
6287 S:      Maintained
6288 F:      drivers/gpu/drm/panel/panel-lvds.c
6289 F:      Documentation/devicetree/bindings/display/lvds.yaml
6290 F:      Documentation/devicetree/bindings/display/panel/panel-lvds.yaml
6291
6292 DRM DRIVER FOR MANTIX MLAF057WE51 PANELS
6293 M:      Guido Günther <agx@sigxcpu.org>
6294 R:      Purism Kernel Team <kernel@puri.sm>
6295 S:      Maintained
6296 F:      Documentation/devicetree/bindings/display/panel/mantix,mlaf057we51-x.yaml
6297 F:      drivers/gpu/drm/panel/panel-mantix-mlaf057we51.c
6298
6299 DRM DRIVER FOR MATROX G200/G400 GRAPHICS CARDS
6300 S:      Orphan / Obsolete
6301 F:      drivers/gpu/drm/mga/
6302 F:      include/uapi/drm/mga_drm.h
6303
6304 DRM DRIVER FOR MGA G200 GRAPHICS CHIPS
6305 M:      Dave Airlie <airlied@redhat.com>
6306 R:      Thomas Zimmermann <tzimmermann@suse.de>
6307 L:      dri-devel@lists.freedesktop.org
6308 S:      Supported
6309 T:      git git://anongit.freedesktop.org/drm/drm-misc
6310 F:      drivers/gpu/drm/mgag200/
6311
6312 DRM DRIVER FOR MI0283QT
6313 M:      Noralf Trønnes <noralf@tronnes.org>
6314 S:      Maintained
6315 T:      git git://anongit.freedesktop.org/drm/drm-misc
6316 F:      Documentation/devicetree/bindings/display/multi-inno,mi0283qt.txt
6317 F:      drivers/gpu/drm/tiny/mi0283qt.c
6318
6319 DRM DRIVER FOR MIPI DBI compatible panels
6320 M:      Noralf Trønnes <noralf@tronnes.org>
6321 S:      Maintained
6322 W:      https://github.com/notro/panel-mipi-dbi/wiki
6323 T:      git git://anongit.freedesktop.org/drm/drm-misc
6324 F:      Documentation/devicetree/bindings/display/panel/panel-mipi-dbi-spi.yaml
6325 F:      drivers/gpu/drm/tiny/panel-mipi-dbi.c
6326
6327 DRM DRIVER FOR MSM ADRENO GPU
6328 M:      Rob Clark <robdclark@gmail.com>
6329 M:      Abhinav Kumar <quic_abhinavk@quicinc.com>
6330 M:      Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
6331 R:      Sean Paul <sean@poorly.run>
6332 L:      linux-arm-msm@vger.kernel.org
6333 L:      dri-devel@lists.freedesktop.org
6334 L:      freedreno@lists.freedesktop.org
6335 S:      Maintained
6336 T:      git https://gitlab.freedesktop.org/drm/msm.git
6337 F:      Documentation/devicetree/bindings/display/msm/
6338 F:      drivers/gpu/drm/msm/
6339 F:      include/uapi/drm/msm_drm.h
6340
6341 DRM DRIVER FOR NOVATEK NT35510 PANELS
6342 M:      Linus Walleij <linus.walleij@linaro.org>
6343 S:      Maintained
6344 T:      git git://anongit.freedesktop.org/drm/drm-misc
6345 F:      Documentation/devicetree/bindings/display/panel/novatek,nt35510.yaml
6346 F:      drivers/gpu/drm/panel/panel-novatek-nt35510.c
6347
6348 DRM DRIVER FOR NOVATEK NT35560 PANELS
6349 M:      Linus Walleij <linus.walleij@linaro.org>
6350 S:      Maintained
6351 T:      git git://anongit.freedesktop.org/drm/drm-misc
6352 F:      Documentation/devicetree/bindings/display/panel/sony,acx424akp.yaml
6353 F:      drivers/gpu/drm/panel/panel-novatek-nt35560.c
6354
6355 DRM DRIVER FOR NOVATEK NT36672A PANELS
6356 M:      Sumit Semwal <sumit.semwal@linaro.org>
6357 S:      Maintained
6358 T:      git git://anongit.freedesktop.org/drm/drm-misc
6359 F:      Documentation/devicetree/bindings/display/panel/novatek,nt36672a.yaml
6360 F:      drivers/gpu/drm/panel/panel-novatek-nt36672a.c
6361
6362 DRM DRIVER FOR NVIDIA GEFORCE/QUADRO GPUS
6363 M:      Ben Skeggs <bskeggs@redhat.com>
6364 M:      Karol Herbst <kherbst@redhat.com>
6365 M:      Lyude Paul <lyude@redhat.com>
6366 L:      dri-devel@lists.freedesktop.org
6367 L:      nouveau@lists.freedesktop.org
6368 S:      Supported
6369 W:      https://nouveau.freedesktop.org/
6370 Q:      https://patchwork.freedesktop.org/project/nouveau/
6371 Q:      https://gitlab.freedesktop.org/drm/nouveau/-/merge_requests
6372 B:      https://gitlab.freedesktop.org/drm/nouveau/-/issues
6373 C:      irc://irc.oftc.net/nouveau
6374 T:      git https://gitlab.freedesktop.org/drm/nouveau.git
6375 F:      drivers/gpu/drm/nouveau/
6376 F:      include/uapi/drm/nouveau_drm.h
6377
6378 DRM DRIVER FOR OLIMEX LCD-OLINUXINO PANELS
6379 M:      Stefan Mavrodiev <stefan@olimex.com>
6380 S:      Maintained
6381 F:      Documentation/devicetree/bindings/display/panel/olimex,lcd-olinuxino.yaml
6382 F:      drivers/gpu/drm/panel/panel-olimex-lcd-olinuxino.c
6383
6384 DRM DRIVER FOR PARADE PS8640 BRIDGE CHIP
6385 R:      Douglas Anderson <dianders@chromium.org>
6386 F:      Documentation/devicetree/bindings/display/bridge/ps8640.yaml
6387 F:      drivers/gpu/drm/bridge/parade-ps8640.c
6388
6389 DRM DRIVER FOR PERVASIVE DISPLAYS REPAPER PANELS
6390 M:      Noralf Trønnes <noralf@tronnes.org>
6391 S:      Maintained
6392 T:      git git://anongit.freedesktop.org/drm/drm-misc
6393 F:      Documentation/devicetree/bindings/display/repaper.txt
6394 F:      drivers/gpu/drm/tiny/repaper.c
6395
6396 DRM DRIVER FOR SOLOMON SSD130X OLED DISPLAYS
6397 M:      Javier Martinez Canillas <javierm@redhat.com>
6398 S:      Maintained
6399 T:      git git://anongit.freedesktop.org/drm/drm-misc
6400 F:      Documentation/devicetree/bindings/display/solomon,ssd1307fb.yaml
6401 F:      drivers/gpu/drm/solomon/ssd130x*
6402
6403 DRM DRIVER FOR QEMU'S CIRRUS DEVICE
6404 M:      Dave Airlie <airlied@redhat.com>
6405 M:      Gerd Hoffmann <kraxel@redhat.com>
6406 L:      virtualization@lists.linux-foundation.org
6407 S:      Obsolete
6408 W:      https://www.kraxel.org/blog/2014/10/qemu-using-cirrus-considered-harmful/
6409 T:      git git://anongit.freedesktop.org/drm/drm-misc
6410 F:      drivers/gpu/drm/tiny/cirrus.c
6411
6412 DRM DRIVER FOR QXL VIRTUAL GPU
6413 M:      Dave Airlie <airlied@redhat.com>
6414 M:      Gerd Hoffmann <kraxel@redhat.com>
6415 L:      virtualization@lists.linux-foundation.org
6416 L:      spice-devel@lists.freedesktop.org
6417 S:      Maintained
6418 T:      git git://anongit.freedesktop.org/drm/drm-misc
6419 F:      drivers/gpu/drm/qxl/
6420 F:      include/uapi/drm/qxl_drm.h
6421
6422 DRM DRIVER FOR RAGE 128 VIDEO CARDS
6423 S:      Orphan / Obsolete
6424 F:      drivers/gpu/drm/r128/
6425 F:      include/uapi/drm/r128_drm.h
6426
6427 DRM DRIVER FOR RAYDIUM RM67191 PANELS
6428 M:      Robert Chiras <robert.chiras@nxp.com>
6429 S:      Maintained
6430 F:      Documentation/devicetree/bindings/display/panel/raydium,rm67191.yaml
6431 F:      drivers/gpu/drm/panel/panel-raydium-rm67191.c
6432
6433 DRM DRIVER FOR SAMSUNG DB7430 PANELS
6434 M:      Linus Walleij <linus.walleij@linaro.org>
6435 S:      Maintained
6436 T:      git git://anongit.freedesktop.org/drm/drm-misc
6437 F:      Documentation/devicetree/bindings/display/panel/samsung,lms397kf04.yaml
6438 F:      drivers/gpu/drm/panel/panel-samsung-db7430.c
6439
6440 DRM DRIVER FOR SAMSUNG S6D27A1 PANELS
6441 M:      Markuss Broks <markuss.broks@gmail.com>
6442 S:      Maintained
6443 F:      Documentation/devicetree/bindings/display/panel/samsung,s6d27a1.yaml
6444 F:      drivers/gpu/drm/panel/panel-samsung-s6d27a1.c
6445
6446 DRM DRIVER FOR SITRONIX ST7703 PANELS
6447 M:      Guido Günther <agx@sigxcpu.org>
6448 R:      Purism Kernel Team <kernel@puri.sm>
6449 R:      Ondrej Jirman <megous@megous.com>
6450 S:      Maintained
6451 F:      Documentation/devicetree/bindings/display/panel/rocktech,jh057n00900.yaml
6452 F:      drivers/gpu/drm/panel/panel-sitronix-st7703.c
6453
6454 DRM DRIVER FOR SAVAGE VIDEO CARDS
6455 S:      Orphan / Obsolete
6456 F:      drivers/gpu/drm/savage/
6457 F:      include/uapi/drm/savage_drm.h
6458
6459 DRM DRIVER FOR SIMPLE FRAMEBUFFERS
6460 M:      Thomas Zimmermann <tzimmermann@suse.de>
6461 L:      dri-devel@lists.freedesktop.org
6462 S:      Maintained
6463 T:      git git://anongit.freedesktop.org/drm/drm-misc
6464 F:      drivers/gpu/drm/tiny/simpledrm.c
6465
6466 DRM DRIVER FOR SIS VIDEO CARDS
6467 S:      Orphan / Obsolete
6468 F:      drivers/gpu/drm/sis/
6469 F:      include/uapi/drm/sis_drm.h
6470
6471 DRM DRIVER FOR SITRONIX ST7586 PANELS
6472 M:      David Lechner <david@lechnology.com>
6473 S:      Maintained
6474 T:      git git://anongit.freedesktop.org/drm/drm-misc
6475 F:      Documentation/devicetree/bindings/display/sitronix,st7586.txt
6476 F:      drivers/gpu/drm/tiny/st7586.c
6477
6478 DRM DRIVER FOR SITRONIX ST7701 PANELS
6479 M:      Jagan Teki <jagan@amarulasolutions.com>
6480 S:      Maintained
6481 F:      Documentation/devicetree/bindings/display/panel/sitronix,st7701.yaml
6482 F:      drivers/gpu/drm/panel/panel-sitronix-st7701.c
6483
6484 DRM DRIVER FOR SITRONIX ST7735R PANELS
6485 M:      David Lechner <david@lechnology.com>
6486 S:      Maintained
6487 T:      git git://anongit.freedesktop.org/drm/drm-misc
6488 F:      Documentation/devicetree/bindings/display/sitronix,st7735r.yaml
6489 F:      drivers/gpu/drm/tiny/st7735r.c
6490
6491 DRM DRIVER FOR ST-ERICSSON MCDE
6492 M:      Linus Walleij <linus.walleij@linaro.org>
6493 S:      Maintained
6494 T:      git git://anongit.freedesktop.org/drm/drm-misc
6495 F:      Documentation/devicetree/bindings/display/ste,mcde.yaml
6496 F:      drivers/gpu/drm/mcde/
6497
6498 DRM DRIVER FOR TDFX VIDEO CARDS
6499 S:      Orphan / Obsolete
6500 F:      drivers/gpu/drm/tdfx/
6501
6502 DRM DRIVER FOR TI SN65DSI86 BRIDGE CHIP
6503 R:      Douglas Anderson <dianders@chromium.org>
6504 F:      Documentation/devicetree/bindings/display/bridge/ti,sn65dsi86.yaml
6505 F:      drivers/gpu/drm/bridge/ti-sn65dsi86.c
6506
6507 DRM DRIVER FOR TPO TPG110 PANELS
6508 M:      Linus Walleij <linus.walleij@linaro.org>
6509 S:      Maintained
6510 T:      git git://anongit.freedesktop.org/drm/drm-misc
6511 F:      Documentation/devicetree/bindings/display/panel/tpo,tpg110.yaml
6512 F:      drivers/gpu/drm/panel/panel-tpo-tpg110.c
6513
6514 DRM DRIVER FOR USB DISPLAYLINK VIDEO ADAPTERS
6515 M:      Dave Airlie <airlied@redhat.com>
6516 R:      Sean Paul <sean@poorly.run>
6517 R:      Thomas Zimmermann <tzimmermann@suse.de>
6518 L:      dri-devel@lists.freedesktop.org
6519 S:      Supported
6520 T:      git git://anongit.freedesktop.org/drm/drm-misc
6521 F:      drivers/gpu/drm/udl/
6522
6523 DRM DRIVER FOR VIRTUAL KERNEL MODESETTING (VKMS)
6524 M:      Rodrigo Siqueira <rodrigosiqueiramelo@gmail.com>
6525 M:      Melissa Wen <melissa.srw@gmail.com>
6526 R:      Haneen Mohammed <hamohammed.sa@gmail.com>
6527 R:      Daniel Vetter <daniel@ffwll.ch>
6528 L:      dri-devel@lists.freedesktop.org
6529 S:      Maintained
6530 T:      git git://anongit.freedesktop.org/drm/drm-misc
6531 F:      Documentation/gpu/vkms.rst
6532 F:      drivers/gpu/drm/vkms/
6533
6534 DRM DRIVER FOR VIRTUALBOX VIRTUAL GPU
6535 M:      Hans de Goede <hdegoede@redhat.com>
6536 L:      dri-devel@lists.freedesktop.org
6537 S:      Maintained
6538 T:      git git://anongit.freedesktop.org/drm/drm-misc
6539 F:      drivers/gpu/drm/vboxvideo/
6540
6541 DRM DRIVER FOR VMWARE VIRTUAL GPU
6542 M:      Zack Rusin <zackr@vmware.com>
6543 R:      VMware Graphics Reviewers <linux-graphics-maintainer@vmware.com>
6544 L:      dri-devel@lists.freedesktop.org
6545 S:      Supported
6546 T:      git git://anongit.freedesktop.org/drm/drm-misc
6547 F:      drivers/gpu/drm/vmwgfx/
6548 F:      include/uapi/drm/vmwgfx_drm.h
6549
6550 DRM DRIVER FOR WIDECHIPS WS2401 PANELS
6551 M:      Linus Walleij <linus.walleij@linaro.org>
6552 S:      Maintained
6553 T:      git git://anongit.freedesktop.org/drm/drm-misc
6554 F:      Documentation/devicetree/bindings/display/panel/samsung,lms380kf01.yaml
6555 F:      drivers/gpu/drm/panel/panel-widechips-ws2401.c
6556
6557 DRM DRIVERS
6558 M:      David Airlie <airlied@linux.ie>
6559 M:      Daniel Vetter <daniel@ffwll.ch>
6560 L:      dri-devel@lists.freedesktop.org
6561 S:      Maintained
6562 B:      https://gitlab.freedesktop.org/drm
6563 C:      irc://irc.oftc.net/dri-devel
6564 T:      git git://anongit.freedesktop.org/drm/drm
6565 F:      Documentation/devicetree/bindings/display/
6566 F:      Documentation/devicetree/bindings/gpu/
6567 F:      Documentation/gpu/
6568 F:      drivers/gpu/
6569 F:      include/drm/
6570 F:      include/linux/vga*
6571 F:      include/uapi/drm/
6572
6573 DRM DRIVERS AND MISC GPU PATCHES
6574 M:      Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
6575 M:      Maxime Ripard <mripard@kernel.org>
6576 M:      Thomas Zimmermann <tzimmermann@suse.de>
6577 S:      Maintained
6578 W:      https://01.org/linuxgraphics/gfx-docs/maintainer-tools/drm-misc.html
6579 T:      git git://anongit.freedesktop.org/drm/drm-misc
6580 F:      Documentation/gpu/
6581 F:      drivers/gpu/drm/*
6582 F:      drivers/gpu/vga/
6583 F:      include/drm/drm*
6584 F:      include/linux/vga*
6585 F:      include/uapi/drm/drm*
6586
6587 DRM DRIVERS FOR ALLWINNER A10
6588 M:      Maxime Ripard <mripard@kernel.org>
6589 M:      Chen-Yu Tsai <wens@csie.org>
6590 L:      dri-devel@lists.freedesktop.org
6591 S:      Supported
6592 T:      git git://anongit.freedesktop.org/drm/drm-misc
6593 F:      Documentation/devicetree/bindings/display/allwinner*
6594 F:      drivers/gpu/drm/sun4i/
6595
6596 DRM DRIVERS FOR AMLOGIC SOCS
6597 M:      Neil Armstrong <narmstrong@baylibre.com>
6598 L:      dri-devel@lists.freedesktop.org
6599 L:      linux-amlogic@lists.infradead.org
6600 S:      Supported
6601 W:      http://linux-meson.com/
6602 T:      git git://anongit.freedesktop.org/drm/drm-misc
6603 F:      Documentation/devicetree/bindings/display/amlogic,meson-dw-hdmi.yaml
6604 F:      Documentation/devicetree/bindings/display/amlogic,meson-vpu.yaml
6605 F:      Documentation/gpu/meson.rst
6606 F:      drivers/gpu/drm/meson/
6607
6608 DRM DRIVERS FOR ATMEL HLCDC
6609 M:      Sam Ravnborg <sam@ravnborg.org>
6610 M:      Boris Brezillon <bbrezillon@kernel.org>
6611 L:      dri-devel@lists.freedesktop.org
6612 S:      Supported
6613 T:      git git://anongit.freedesktop.org/drm/drm-misc
6614 F:      Documentation/devicetree/bindings/display/atmel/
6615 F:      drivers/gpu/drm/atmel-hlcdc/
6616
6617 DRM DRIVERS FOR BRIDGE CHIPS
6618 M:      Andrzej Hajda <andrzej.hajda@intel.com>
6619 M:      Neil Armstrong <narmstrong@baylibre.com>
6620 M:      Robert Foss <robert.foss@linaro.org>
6621 R:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
6622 R:      Jonas Karlman <jonas@kwiboo.se>
6623 R:      Jernej Skrabec <jernej.skrabec@gmail.com>
6624 S:      Maintained
6625 T:      git git://anongit.freedesktop.org/drm/drm-misc
6626 F:      Documentation/devicetree/bindings/display/bridge/
6627 F:      drivers/gpu/drm/bridge/
6628
6629 DRM DRIVERS FOR EXYNOS
6630 M:      Inki Dae <inki.dae@samsung.com>
6631 M:      Joonyoung Shim <jy0922.shim@samsung.com>
6632 M:      Seung-Woo Kim <sw0312.kim@samsung.com>
6633 M:      Kyungmin Park <kyungmin.park@samsung.com>
6634 L:      dri-devel@lists.freedesktop.org
6635 S:      Supported
6636 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
6637 F:      Documentation/devicetree/bindings/display/exynos/
6638 F:      Documentation/devicetree/bindings/display/samsung/
6639 F:      drivers/gpu/drm/exynos/
6640 F:      include/uapi/drm/exynos_drm.h
6641
6642 DRM DRIVERS FOR FREESCALE DCU
6643 M:      Stefan Agner <stefan@agner.ch>
6644 M:      Alison Wang <alison.wang@nxp.com>
6645 L:      dri-devel@lists.freedesktop.org
6646 S:      Supported
6647 T:      git git://anongit.freedesktop.org/drm/drm-misc
6648 F:      Documentation/devicetree/bindings/display/fsl,dcu.txt
6649 F:      Documentation/devicetree/bindings/display/fsl,tcon.txt
6650 F:      drivers/gpu/drm/fsl-dcu/
6651
6652 DRM DRIVERS FOR FREESCALE IMX
6653 M:      Philipp Zabel <p.zabel@pengutronix.de>
6654 L:      dri-devel@lists.freedesktop.org
6655 S:      Maintained
6656 F:      Documentation/devicetree/bindings/display/imx/
6657 F:      drivers/gpu/drm/imx/
6658 F:      drivers/gpu/ipu-v3/
6659
6660 DRM DRIVERS FOR GMA500 (Poulsbo, Moorestown and derivative chipsets)
6661 M:      Patrik Jakobsson <patrik.r.jakobsson@gmail.com>
6662 L:      dri-devel@lists.freedesktop.org
6663 S:      Maintained
6664 T:      git git://github.com/patjak/drm-gma500
6665 F:      drivers/gpu/drm/gma500/
6666
6667 DRM DRIVERS FOR HISILICON
6668 M:      Xinliang Liu <xinliang.liu@linaro.org>
6669 M:      Tian Tao  <tiantao6@hisilicon.com>
6670 R:      John Stultz <jstultz@google.com>
6671 R:      Xinwei Kong <kong.kongxinwei@hisilicon.com>
6672 R:      Chen Feng <puck.chen@hisilicon.com>
6673 L:      dri-devel@lists.freedesktop.org
6674 S:      Maintained
6675 T:      git git://anongit.freedesktop.org/drm/drm-misc
6676 F:      Documentation/devicetree/bindings/display/hisilicon/
6677 F:      drivers/gpu/drm/hisilicon/
6678
6679 DRM DRIVER FOR HYPERV SYNTHETIC VIDEO DEVICE
6680 M:      Deepak Rawat <drawat.floss@gmail.com>
6681 L:      linux-hyperv@vger.kernel.org
6682 L:      dri-devel@lists.freedesktop.org
6683 S:      Maintained
6684 T:      git git://anongit.freedesktop.org/drm/drm-misc
6685 F:      drivers/gpu/drm/hyperv
6686
6687 DRM DRIVERS FOR LIMA
6688 M:      Qiang Yu <yuq825@gmail.com>
6689 L:      dri-devel@lists.freedesktop.org
6690 L:      lima@lists.freedesktop.org (moderated for non-subscribers)
6691 S:      Maintained
6692 T:      git git://anongit.freedesktop.org/drm/drm-misc
6693 F:      drivers/gpu/drm/lima/
6694 F:      include/uapi/drm/lima_drm.h
6695
6696 DRM DRIVERS FOR MEDIATEK
6697 M:      Chun-Kuang Hu <chunkuang.hu@kernel.org>
6698 M:      Philipp Zabel <p.zabel@pengutronix.de>
6699 L:      dri-devel@lists.freedesktop.org
6700 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
6701 S:      Supported
6702 F:      Documentation/devicetree/bindings/display/mediatek/
6703 F:      drivers/gpu/drm/mediatek/
6704 F:      drivers/phy/mediatek/phy-mtk-hdmi*
6705 F:      drivers/phy/mediatek/phy-mtk-mipi*
6706
6707 DRM DRIVERS FOR NVIDIA TEGRA
6708 M:      Thierry Reding <thierry.reding@gmail.com>
6709 L:      dri-devel@lists.freedesktop.org
6710 L:      linux-tegra@vger.kernel.org
6711 S:      Supported
6712 T:      git git://anongit.freedesktop.org/tegra/linux.git
6713 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
6714 F:      Documentation/devicetree/bindings/gpu/host1x/
6715 F:      drivers/gpu/drm/tegra/
6716 F:      drivers/gpu/host1x/
6717 F:      include/linux/host1x.h
6718 F:      include/uapi/drm/tegra_drm.h
6719
6720 DRM DRIVERS FOR RENESAS
6721 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6722 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
6723 L:      dri-devel@lists.freedesktop.org
6724 L:      linux-renesas-soc@vger.kernel.org
6725 S:      Supported
6726 T:      git git://linuxtv.org/pinchartl/media drm/du/next
6727 F:      Documentation/devicetree/bindings/display/bridge/renesas,dsi-csi2-tx.yaml
6728 F:      Documentation/devicetree/bindings/display/bridge/renesas,dw-hdmi.yaml
6729 F:      Documentation/devicetree/bindings/display/bridge/renesas,lvds.yaml
6730 F:      Documentation/devicetree/bindings/display/renesas,du.yaml
6731 F:      drivers/gpu/drm/rcar-du/
6732 F:      drivers/gpu/drm/shmobile/
6733 F:      include/linux/platform_data/shmob_drm.h
6734
6735 DRM DRIVERS FOR ROCKCHIP
6736 M:      Sandy Huang <hjc@rock-chips.com>
6737 M:      Heiko Stübner <heiko@sntech.de>
6738 L:      dri-devel@lists.freedesktop.org
6739 S:      Maintained
6740 T:      git git://anongit.freedesktop.org/drm/drm-misc
6741 F:      Documentation/devicetree/bindings/display/rockchip/
6742 F:      drivers/gpu/drm/rockchip/
6743
6744 DRM DRIVERS FOR STI
6745 M:      Alain Volmat <alain.volmat@foss.st.com>
6746 L:      dri-devel@lists.freedesktop.org
6747 S:      Maintained
6748 T:      git git://anongit.freedesktop.org/drm/drm-misc
6749 F:      Documentation/devicetree/bindings/display/st,stih4xx.txt
6750 F:      drivers/gpu/drm/sti
6751
6752 DRM DRIVERS FOR STM
6753 M:      Yannick Fertre <yannick.fertre@foss.st.com>
6754 M:      Raphael Gallais-Pou <raphael.gallais-pou@foss.st.com>
6755 M:      Philippe Cornu <philippe.cornu@foss.st.com>
6756 L:      dri-devel@lists.freedesktop.org
6757 S:      Maintained
6758 T:      git git://anongit.freedesktop.org/drm/drm-misc
6759 F:      Documentation/devicetree/bindings/display/st,stm32-ltdc.yaml
6760 F:      drivers/gpu/drm/stm
6761
6762 DRM DRIVERS FOR TI KEYSTONE
6763 M:      Jyri Sarha <jyri.sarha@iki.fi>
6764 M:      Tomi Valkeinen <tomba@kernel.org>
6765 L:      dri-devel@lists.freedesktop.org
6766 S:      Maintained
6767 T:      git git://anongit.freedesktop.org/drm/drm-misc
6768 F:      Documentation/devicetree/bindings/display/ti/ti,am65x-dss.yaml
6769 F:      Documentation/devicetree/bindings/display/ti/ti,j721e-dss.yaml
6770 F:      Documentation/devicetree/bindings/display/ti/ti,k2g-dss.yaml
6771 F:      drivers/gpu/drm/tidss/
6772
6773 DRM DRIVERS FOR TI LCDC
6774 M:      Jyri Sarha <jyri.sarha@iki.fi>
6775 R:      Tomi Valkeinen <tomba@kernel.org>
6776 L:      dri-devel@lists.freedesktop.org
6777 S:      Maintained
6778 F:      Documentation/devicetree/bindings/display/tilcdc/
6779 F:      drivers/gpu/drm/tilcdc/
6780
6781 DRM DRIVERS FOR TI OMAP
6782 M:      Tomi Valkeinen <tomba@kernel.org>
6783 L:      dri-devel@lists.freedesktop.org
6784 S:      Maintained
6785 F:      Documentation/devicetree/bindings/display/ti/
6786 F:      drivers/gpu/drm/omapdrm/
6787
6788 DRM DRIVERS FOR V3D
6789 M:      Emma Anholt <emma@anholt.net>
6790 S:      Supported
6791 T:      git git://anongit.freedesktop.org/drm/drm-misc
6792 F:      Documentation/devicetree/bindings/gpu/brcm,bcm-v3d.yaml
6793 F:      drivers/gpu/drm/v3d/
6794 F:      include/uapi/drm/v3d_drm.h
6795
6796 DRM DRIVERS FOR VC4
6797 M:      Emma Anholt <emma@anholt.net>
6798 M:      Maxime Ripard <mripard@kernel.org>
6799 S:      Supported
6800 T:      git git://github.com/anholt/linux
6801 T:      git git://anongit.freedesktop.org/drm/drm-misc
6802 F:      Documentation/devicetree/bindings/display/brcm,bcm2835-*.yaml
6803 F:      drivers/gpu/drm/vc4/
6804 F:      include/uapi/drm/vc4_drm.h
6805
6806 DRM DRIVERS FOR VIVANTE GPU IP
6807 M:      Lucas Stach <l.stach@pengutronix.de>
6808 R:      Russell King <linux+etnaviv@armlinux.org.uk>
6809 R:      Christian Gmeiner <christian.gmeiner@gmail.com>
6810 L:      etnaviv@lists.freedesktop.org (moderated for non-subscribers)
6811 L:      dri-devel@lists.freedesktop.org
6812 S:      Maintained
6813 F:      Documentation/devicetree/bindings/gpu/vivante,gc.yaml
6814 F:      drivers/gpu/drm/etnaviv/
6815 F:      include/uapi/drm/etnaviv_drm.h
6816
6817 DRM DRIVERS FOR XEN
6818 M:      Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
6819 L:      dri-devel@lists.freedesktop.org
6820 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
6821 S:      Supported
6822 T:      git git://anongit.freedesktop.org/drm/drm-misc
6823 F:      Documentation/gpu/xen-front.rst
6824 F:      drivers/gpu/drm/xen/
6825
6826 DRM DRIVERS FOR XILINX
6827 M:      Hyun Kwon <hyun.kwon@xilinx.com>
6828 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6829 L:      dri-devel@lists.freedesktop.org
6830 S:      Maintained
6831 T:      git git://anongit.freedesktop.org/drm/drm-misc
6832 F:      Documentation/devicetree/bindings/display/xlnx/
6833 F:      drivers/gpu/drm/xlnx/
6834
6835 DRM PANEL DRIVERS
6836 M:      Thierry Reding <thierry.reding@gmail.com>
6837 R:      Sam Ravnborg <sam@ravnborg.org>
6838 L:      dri-devel@lists.freedesktop.org
6839 S:      Maintained
6840 T:      git git://anongit.freedesktop.org/drm/drm-misc
6841 F:      Documentation/devicetree/bindings/display/panel/
6842 F:      drivers/gpu/drm/drm_panel.c
6843 F:      drivers/gpu/drm/panel/
6844 F:      include/drm/drm_panel.h
6845
6846 DRM PRIVACY-SCREEN CLASS
6847 M:      Hans de Goede <hdegoede@redhat.com>
6848 L:      dri-devel@lists.freedesktop.org
6849 S:      Maintained
6850 T:      git git://anongit.freedesktop.org/drm/drm-misc
6851 F:      drivers/gpu/drm/drm_privacy_screen*
6852 F:      include/drm/drm_privacy_screen*
6853
6854 DRM TTM SUBSYSTEM
6855 M:      Christian Koenig <christian.koenig@amd.com>
6856 M:      Huang Rui <ray.huang@amd.com>
6857 L:      dri-devel@lists.freedesktop.org
6858 S:      Maintained
6859 T:      git git://anongit.freedesktop.org/drm/drm-misc
6860 F:      drivers/gpu/drm/ttm/
6861 F:      include/drm/ttm/
6862
6863 DRM GPU SCHEDULER
6864 M:      Andrey Grodzovsky <andrey.grodzovsky@amd.com>
6865 L:      dri-devel@lists.freedesktop.org
6866 S:      Maintained
6867 T:      git git://anongit.freedesktop.org/drm/drm-misc
6868 F:      drivers/gpu/drm/scheduler/
6869 F:      include/drm/gpu_scheduler.h
6870
6871 DSBR100 USB FM RADIO DRIVER
6872 M:      Alexey Klimov <klimov.linux@gmail.com>
6873 L:      linux-media@vger.kernel.org
6874 S:      Maintained
6875 T:      git git://linuxtv.org/media_tree.git
6876 F:      drivers/media/radio/dsbr100.c
6877
6878 DT3155 MEDIA DRIVER
6879 M:      Hans Verkuil <hverkuil@xs4all.nl>
6880 L:      linux-media@vger.kernel.org
6881 S:      Odd Fixes
6882 W:      https://linuxtv.org
6883 T:      git git://linuxtv.org/media_tree.git
6884 F:      drivers/media/pci/dt3155/
6885
6886 DVB_USB_AF9015 MEDIA DRIVER
6887 M:      Antti Palosaari <crope@iki.fi>
6888 L:      linux-media@vger.kernel.org
6889 S:      Maintained
6890 W:      https://linuxtv.org
6891 W:      http://palosaari.fi/linux/
6892 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6893 T:      git git://linuxtv.org/anttip/media_tree.git
6894 F:      drivers/media/usb/dvb-usb-v2/af9015*
6895
6896 DVB_USB_AF9035 MEDIA DRIVER
6897 M:      Antti Palosaari <crope@iki.fi>
6898 L:      linux-media@vger.kernel.org
6899 S:      Maintained
6900 W:      https://linuxtv.org
6901 W:      http://palosaari.fi/linux/
6902 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6903 T:      git git://linuxtv.org/anttip/media_tree.git
6904 F:      drivers/media/usb/dvb-usb-v2/af9035*
6905
6906 DVB_USB_ANYSEE MEDIA DRIVER
6907 M:      Antti Palosaari <crope@iki.fi>
6908 L:      linux-media@vger.kernel.org
6909 S:      Maintained
6910 W:      https://linuxtv.org
6911 W:      http://palosaari.fi/linux/
6912 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6913 T:      git git://linuxtv.org/anttip/media_tree.git
6914 F:      drivers/media/usb/dvb-usb-v2/anysee*
6915
6916 DVB_USB_AU6610 MEDIA DRIVER
6917 M:      Antti Palosaari <crope@iki.fi>
6918 L:      linux-media@vger.kernel.org
6919 S:      Maintained
6920 W:      https://linuxtv.org
6921 W:      http://palosaari.fi/linux/
6922 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6923 T:      git git://linuxtv.org/anttip/media_tree.git
6924 F:      drivers/media/usb/dvb-usb-v2/au6610*
6925
6926 DVB_USB_CE6230 MEDIA DRIVER
6927 M:      Antti Palosaari <crope@iki.fi>
6928 L:      linux-media@vger.kernel.org
6929 S:      Maintained
6930 W:      https://linuxtv.org
6931 W:      http://palosaari.fi/linux/
6932 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6933 T:      git git://linuxtv.org/anttip/media_tree.git
6934 F:      drivers/media/usb/dvb-usb-v2/ce6230*
6935
6936 DVB_USB_CXUSB MEDIA DRIVER
6937 M:      Michael Krufky <mkrufky@linuxtv.org>
6938 L:      linux-media@vger.kernel.org
6939 S:      Maintained
6940 W:      https://linuxtv.org
6941 W:      http://github.com/mkrufky
6942 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6943 T:      git git://linuxtv.org/media_tree.git
6944 F:      drivers/media/usb/dvb-usb/cxusb*
6945
6946 DVB_USB_EC168 MEDIA DRIVER
6947 M:      Antti Palosaari <crope@iki.fi>
6948 L:      linux-media@vger.kernel.org
6949 S:      Maintained
6950 W:      https://linuxtv.org
6951 W:      http://palosaari.fi/linux/
6952 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6953 T:      git git://linuxtv.org/anttip/media_tree.git
6954 F:      drivers/media/usb/dvb-usb-v2/ec168*
6955
6956 DVB_USB_GL861 MEDIA DRIVER
6957 M:      Antti Palosaari <crope@iki.fi>
6958 L:      linux-media@vger.kernel.org
6959 S:      Maintained
6960 W:      https://linuxtv.org
6961 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6962 T:      git git://linuxtv.org/anttip/media_tree.git
6963 F:      drivers/media/usb/dvb-usb-v2/gl861*
6964
6965 DVB_USB_MXL111SF MEDIA DRIVER
6966 M:      Michael Krufky <mkrufky@linuxtv.org>
6967 L:      linux-media@vger.kernel.org
6968 S:      Maintained
6969 W:      https://linuxtv.org
6970 W:      http://github.com/mkrufky
6971 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6972 T:      git git://linuxtv.org/mkrufky/mxl111sf.git
6973 F:      drivers/media/usb/dvb-usb-v2/mxl111sf*
6974
6975 DVB_USB_RTL28XXU MEDIA DRIVER
6976 M:      Antti Palosaari <crope@iki.fi>
6977 L:      linux-media@vger.kernel.org
6978 S:      Maintained
6979 W:      https://linuxtv.org
6980 W:      http://palosaari.fi/linux/
6981 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6982 T:      git git://linuxtv.org/anttip/media_tree.git
6983 F:      drivers/media/usb/dvb-usb-v2/rtl28xxu*
6984
6985 DVB_USB_V2 MEDIA DRIVER
6986 M:      Antti Palosaari <crope@iki.fi>
6987 L:      linux-media@vger.kernel.org
6988 S:      Maintained
6989 W:      https://linuxtv.org
6990 W:      http://palosaari.fi/linux/
6991 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6992 T:      git git://linuxtv.org/anttip/media_tree.git
6993 F:      drivers/media/usb/dvb-usb-v2/dvb_usb*
6994 F:      drivers/media/usb/dvb-usb-v2/usb_urb.c
6995
6996 DYNAMIC DEBUG
6997 M:      Jason Baron <jbaron@akamai.com>
6998 S:      Maintained
6999 F:      include/linux/dynamic_debug.h
7000 F:      lib/dynamic_debug.c
7001
7002 DYNAMIC INTERRUPT MODERATION
7003 M:      Tal Gilboa <talgi@nvidia.com>
7004 S:      Maintained
7005 F:      Documentation/networking/net_dim.rst
7006 F:      include/linux/dim.h
7007 F:      lib/dim/
7008
7009 DZ DECSTATION DZ11 SERIAL DRIVER
7010 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
7011 S:      Maintained
7012 F:      drivers/tty/serial/dz.*
7013
7014 E3X0 POWER BUTTON DRIVER
7015 M:      Moritz Fischer <moritz.fischer@ettus.com>
7016 L:      usrp-users@lists.ettus.com
7017 S:      Supported
7018 W:      http://www.ettus.com
7019 F:      Documentation/devicetree/bindings/input/e3x0-button.txt
7020 F:      drivers/input/misc/e3x0-button.c
7021
7022 E4000 MEDIA DRIVER
7023 M:      Antti Palosaari <crope@iki.fi>
7024 L:      linux-media@vger.kernel.org
7025 S:      Maintained
7026 W:      https://linuxtv.org
7027 W:      http://palosaari.fi/linux/
7028 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7029 T:      git git://linuxtv.org/anttip/media_tree.git
7030 F:      drivers/media/tuners/e4000*
7031
7032 EARTH_PT1 MEDIA DRIVER
7033 M:      Akihiro Tsukada <tskd08@gmail.com>
7034 L:      linux-media@vger.kernel.org
7035 S:      Odd Fixes
7036 F:      drivers/media/pci/pt1/
7037
7038 EARTH_PT3 MEDIA DRIVER
7039 M:      Akihiro Tsukada <tskd08@gmail.com>
7040 L:      linux-media@vger.kernel.org
7041 S:      Odd Fixes
7042 F:      drivers/media/pci/pt3/
7043
7044 EC100 MEDIA DRIVER
7045 M:      Antti Palosaari <crope@iki.fi>
7046 L:      linux-media@vger.kernel.org
7047 S:      Maintained
7048 W:      https://linuxtv.org
7049 W:      http://palosaari.fi/linux/
7050 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7051 T:      git git://linuxtv.org/anttip/media_tree.git
7052 F:      drivers/media/dvb-frontends/ec100*
7053
7054 ECRYPT FILE SYSTEM
7055 M:      Tyler Hicks <code@tyhicks.com>
7056 L:      ecryptfs@vger.kernel.org
7057 S:      Odd Fixes
7058 W:      http://ecryptfs.org
7059 W:      https://launchpad.net/ecryptfs
7060 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tyhicks/ecryptfs.git
7061 F:      Documentation/filesystems/ecryptfs.rst
7062 F:      fs/ecryptfs/
7063
7064 EDAC-AMD64
7065 M:      Yazen Ghannam <yazen.ghannam@amd.com>
7066 L:      linux-edac@vger.kernel.org
7067 S:      Supported
7068 F:      drivers/edac/amd64_edac*
7069 F:      drivers/edac/mce_amd*
7070
7071 EDAC-ARMADA
7072 M:      Jan Luebbe <jlu@pengutronix.de>
7073 L:      linux-edac@vger.kernel.org
7074 S:      Maintained
7075 F:      Documentation/devicetree/bindings/memory-controllers/marvell,mvebu-sdram-controller.yaml
7076 F:      drivers/edac/armada_xp_*
7077
7078 EDAC-AST2500
7079 M:      Stefan Schaeckeler <sschaeck@cisco.com>
7080 S:      Supported
7081 F:      Documentation/devicetree/bindings/edac/aspeed-sdram-edac.txt
7082 F:      drivers/edac/aspeed_edac.c
7083
7084 EDAC-BLUEFIELD
7085 M:      Shravan Kumar Ramani <shravankr@nvidia.com>
7086 S:      Supported
7087 F:      drivers/edac/bluefield_edac.c
7088
7089 EDAC-CALXEDA
7090 M:      Andre Przywara <andre.przywara@arm.com>
7091 L:      linux-edac@vger.kernel.org
7092 S:      Maintained
7093 F:      drivers/edac/highbank*
7094
7095 EDAC-CAVIUM OCTEON
7096 M:      Ralf Baechle <ralf@linux-mips.org>
7097 L:      linux-edac@vger.kernel.org
7098 L:      linux-mips@vger.kernel.org
7099 S:      Supported
7100 F:      drivers/edac/octeon_edac*
7101
7102 EDAC-CAVIUM THUNDERX
7103 M:      Robert Richter <rric@kernel.org>
7104 L:      linux-edac@vger.kernel.org
7105 S:      Odd Fixes
7106 F:      drivers/edac/thunderx_edac*
7107
7108 EDAC-CORE
7109 M:      Borislav Petkov <bp@alien8.de>
7110 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
7111 M:      Tony Luck <tony.luck@intel.com>
7112 R:      James Morse <james.morse@arm.com>
7113 R:      Robert Richter <rric@kernel.org>
7114 L:      linux-edac@vger.kernel.org
7115 S:      Supported
7116 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ras/ras.git edac-for-next
7117 F:      Documentation/admin-guide/ras.rst
7118 F:      Documentation/driver-api/edac.rst
7119 F:      drivers/edac/
7120 F:      include/linux/edac.h
7121
7122 EDAC-DMC520
7123 M:      Lei Wang <lewan@microsoft.com>
7124 L:      linux-edac@vger.kernel.org
7125 S:      Supported
7126 F:      drivers/edac/dmc520_edac.c
7127
7128 EDAC-E752X
7129 M:      Mark Gross <markgross@kernel.org>
7130 L:      linux-edac@vger.kernel.org
7131 S:      Maintained
7132 F:      drivers/edac/e752x_edac.c
7133
7134 EDAC-E7XXX
7135 L:      linux-edac@vger.kernel.org
7136 S:      Maintained
7137 F:      drivers/edac/e7xxx_edac.c
7138
7139 EDAC-FSL_DDR
7140 M:      York Sun <york.sun@nxp.com>
7141 L:      linux-edac@vger.kernel.org
7142 S:      Maintained
7143 F:      drivers/edac/fsl_ddr_edac.*
7144
7145 EDAC-GHES
7146 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
7147 L:      linux-edac@vger.kernel.org
7148 S:      Maintained
7149 F:      drivers/edac/ghes_edac.c
7150
7151 EDAC-I10NM
7152 M:      Tony Luck <tony.luck@intel.com>
7153 L:      linux-edac@vger.kernel.org
7154 S:      Maintained
7155 F:      drivers/edac/i10nm_base.c
7156
7157 EDAC-I3000
7158 L:      linux-edac@vger.kernel.org
7159 S:      Orphan
7160 F:      drivers/edac/i3000_edac.c
7161
7162 EDAC-I5000
7163 L:      linux-edac@vger.kernel.org
7164 S:      Maintained
7165 F:      drivers/edac/i5000_edac.c
7166
7167 EDAC-I5400
7168 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
7169 L:      linux-edac@vger.kernel.org
7170 S:      Maintained
7171 F:      drivers/edac/i5400_edac.c
7172
7173 EDAC-I7300
7174 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
7175 L:      linux-edac@vger.kernel.org
7176 S:      Maintained
7177 F:      drivers/edac/i7300_edac.c
7178
7179 EDAC-I7CORE
7180 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
7181 L:      linux-edac@vger.kernel.org
7182 S:      Maintained
7183 F:      drivers/edac/i7core_edac.c
7184
7185 EDAC-I82443BXGX
7186 M:      Tim Small <tim@buttersideup.com>
7187 L:      linux-edac@vger.kernel.org
7188 S:      Maintained
7189 F:      drivers/edac/i82443bxgx_edac.c
7190
7191 EDAC-I82975X
7192 M:      "Arvind R." <arvino55@gmail.com>
7193 L:      linux-edac@vger.kernel.org
7194 S:      Maintained
7195 F:      drivers/edac/i82975x_edac.c
7196
7197 EDAC-IE31200
7198 M:      Jason Baron <jbaron@akamai.com>
7199 L:      linux-edac@vger.kernel.org
7200 S:      Maintained
7201 F:      drivers/edac/ie31200_edac.c
7202
7203 EDAC-IGEN6
7204 M:      Tony Luck <tony.luck@intel.com>
7205 R:      Qiuxu Zhuo <qiuxu.zhuo@intel.com>
7206 L:      linux-edac@vger.kernel.org
7207 S:      Maintained
7208 F:      drivers/edac/igen6_edac.c
7209
7210 EDAC-MPC85XX
7211 M:      Johannes Thumshirn <morbidrsa@gmail.com>
7212 L:      linux-edac@vger.kernel.org
7213 S:      Maintained
7214 F:      drivers/edac/mpc85xx_edac.[ch]
7215
7216 EDAC-PASEMI
7217 M:      Egor Martovetsky <egor@pasemi.com>
7218 L:      linux-edac@vger.kernel.org
7219 S:      Maintained
7220 F:      drivers/edac/pasemi_edac.c
7221
7222 EDAC-PND2
7223 M:      Tony Luck <tony.luck@intel.com>
7224 L:      linux-edac@vger.kernel.org
7225 S:      Maintained
7226 F:      drivers/edac/pnd2_edac.[ch]
7227
7228 EDAC-QCOM
7229 M:      Channagoud Kadabi <ckadabi@codeaurora.org>
7230 M:      Venkata Narendra Kumar Gutta <vnkgutta@codeaurora.org>
7231 L:      linux-arm-msm@vger.kernel.org
7232 L:      linux-edac@vger.kernel.org
7233 S:      Maintained
7234 F:      drivers/edac/qcom_edac.c
7235
7236 EDAC-R82600
7237 M:      Tim Small <tim@buttersideup.com>
7238 L:      linux-edac@vger.kernel.org
7239 S:      Maintained
7240 F:      drivers/edac/r82600_edac.c
7241
7242 EDAC-SBRIDGE
7243 M:      Tony Luck <tony.luck@intel.com>
7244 R:      Qiuxu Zhuo <qiuxu.zhuo@intel.com>
7245 L:      linux-edac@vger.kernel.org
7246 S:      Maintained
7247 F:      drivers/edac/sb_edac.c
7248
7249 EDAC-SKYLAKE
7250 M:      Tony Luck <tony.luck@intel.com>
7251 L:      linux-edac@vger.kernel.org
7252 S:      Maintained
7253 F:      drivers/edac/skx_*.[ch]
7254
7255 EDAC-TI
7256 M:      Tero Kristo <kristo@kernel.org>
7257 L:      linux-edac@vger.kernel.org
7258 S:      Odd Fixes
7259 F:      drivers/edac/ti_edac.c
7260
7261 EDIROL UA-101/UA-1000 DRIVER
7262 M:      Clemens Ladisch <clemens@ladisch.de>
7263 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7264 S:      Maintained
7265 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
7266 F:      sound/usb/misc/ua101.c
7267
7268 EFI TEST DRIVER
7269 M:      Ivan Hu <ivan.hu@canonical.com>
7270 M:      Ard Biesheuvel <ardb@kernel.org>
7271 L:      linux-efi@vger.kernel.org
7272 S:      Maintained
7273 F:      drivers/firmware/efi/test/
7274
7275 EFI VARIABLE FILESYSTEM
7276 M:      Matthew Garrett <matthew.garrett@nebula.com>
7277 M:      Jeremy Kerr <jk@ozlabs.org>
7278 M:      Ard Biesheuvel <ardb@kernel.org>
7279 L:      linux-efi@vger.kernel.org
7280 S:      Maintained
7281 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
7282 F:      fs/efivarfs/
7283
7284 EFIFB FRAMEBUFFER DRIVER
7285 M:      Peter Jones <pjones@redhat.com>
7286 L:      linux-fbdev@vger.kernel.org
7287 S:      Maintained
7288 F:      drivers/video/fbdev/efifb.c
7289
7290 EFS FILESYSTEM
7291 S:      Orphan
7292 W:      http://aeschi.ch.eu.org/efs/
7293 F:      fs/efs/
7294
7295 EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
7296 M:      Douglas Miller <dougmill@linux.ibm.com>
7297 L:      netdev@vger.kernel.org
7298 S:      Maintained
7299 F:      drivers/net/ethernet/ibm/ehea/
7300
7301 EM28XX VIDEO4LINUX DRIVER
7302 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
7303 L:      linux-media@vger.kernel.org
7304 S:      Maintained
7305 W:      https://linuxtv.org
7306 T:      git git://linuxtv.org/media_tree.git
7307 F:      Documentation/admin-guide/media/em28xx*
7308 F:      drivers/media/usb/em28xx/
7309
7310 EMBEDDED LINUX
7311 M:      Matt Mackall <mpm@selenic.com>
7312 M:      David Woodhouse <dwmw2@infradead.org>
7313 L:      linux-embedded@vger.kernel.org
7314 S:      Maintained
7315
7316 EMMC CMDQ HOST CONTROLLER INTERFACE (CQHCI) DRIVER
7317 M:      Adrian Hunter <adrian.hunter@intel.com>
7318 M:      Ritesh Harjani <riteshh@codeaurora.org>
7319 M:      Asutosh Das <asutoshd@codeaurora.org>
7320 L:      linux-mmc@vger.kernel.org
7321 S:      Maintained
7322 F:      drivers/mmc/host/cqhci*
7323
7324 EMULEX 10Gbps iSCSI - OneConnect DRIVER
7325 M:      Ketan Mukadam <ketan.mukadam@broadcom.com>
7326 L:      linux-scsi@vger.kernel.org
7327 S:      Supported
7328 W:      http://www.broadcom.com
7329 F:      drivers/scsi/be2iscsi/
7330
7331 EMULEX 10Gbps NIC BE2, BE3-R, Lancer, Skyhawk-R DRIVER (be2net)
7332 M:      Ajit Khaparde <ajit.khaparde@broadcom.com>
7333 M:      Sriharsha Basavapatna <sriharsha.basavapatna@broadcom.com>
7334 M:      Somnath Kotur <somnath.kotur@broadcom.com>
7335 L:      netdev@vger.kernel.org
7336 S:      Supported
7337 W:      http://www.emulex.com
7338 F:      drivers/net/ethernet/emulex/benet/
7339
7340 EMULEX ONECONNECT ROCE DRIVER
7341 M:      Selvin Xavier <selvin.xavier@broadcom.com>
7342 L:      linux-rdma@vger.kernel.org
7343 S:      Odd Fixes
7344 W:      http://www.broadcom.com
7345 F:      drivers/infiniband/hw/ocrdma/
7346 F:      include/uapi/rdma/ocrdma-abi.h
7347
7348 EMULEX/BROADCOM LPFC FC/FCOE SCSI DRIVER
7349 M:      James Smart <james.smart@broadcom.com>
7350 M:      Dick Kennedy <dick.kennedy@broadcom.com>
7351 L:      linux-scsi@vger.kernel.org
7352 S:      Supported
7353 W:      http://www.broadcom.com
7354 F:      drivers/scsi/lpfc/
7355
7356 EMULEX/BROADCOM EFCT FC/FCOE SCSI TARGET DRIVER
7357 M:      James Smart <james.smart@broadcom.com>
7358 M:      Ram Vegesna <ram.vegesna@broadcom.com>
7359 L:      linux-scsi@vger.kernel.org
7360 L:      target-devel@vger.kernel.org
7361 S:      Supported
7362 W:      http://www.broadcom.com
7363 F:      drivers/scsi/elx/
7364
7365 ENE CB710 FLASH CARD READER DRIVER
7366 M:      Michał Mirosław <mirq-linux@rere.qmqm.pl>
7367 S:      Maintained
7368 F:      drivers/misc/cb710/
7369 F:      drivers/mmc/host/cb710-mmc.*
7370 F:      include/linux/cb710.h
7371
7372 ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
7373 M:      Maxim Levitsky <maximlevitsky@gmail.com>
7374 S:      Maintained
7375 F:      drivers/media/rc/ene_ir.*
7376
7377 EPAPR HYPERVISOR BYTE CHANNEL DEVICE DRIVER
7378 M:      Laurentiu Tudor <laurentiu.tudor@nxp.com>
7379 L:      linuxppc-dev@lists.ozlabs.org
7380 S:      Maintained
7381 F:      drivers/tty/ehv_bytechan.c
7382
7383 EPSON S1D13XXX FRAMEBUFFER DRIVER
7384 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
7385 S:      Maintained
7386 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
7387 F:      drivers/video/fbdev/s1d13xxxfb.c
7388 F:      include/video/s1d13xxxfb.h
7389
7390 EROFS FILE SYSTEM
7391 M:      Gao Xiang <xiang@kernel.org>
7392 M:      Chao Yu <chao@kernel.org>
7393 L:      linux-erofs@lists.ozlabs.org
7394 S:      Maintained
7395 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs.git
7396 F:      Documentation/filesystems/erofs.rst
7397 F:      fs/erofs/
7398 F:      include/trace/events/erofs.h
7399
7400 ERRSEQ ERROR TRACKING INFRASTRUCTURE
7401 M:      Jeff Layton <jlayton@kernel.org>
7402 S:      Maintained
7403 F:      include/linux/errseq.h
7404 F:      lib/errseq.c
7405
7406 ET131X NETWORK DRIVER
7407 M:      Mark Einon <mark.einon@gmail.com>
7408 S:      Odd Fixes
7409 F:      drivers/net/ethernet/agere/
7410
7411 ETAS ES58X CAN/USB DRIVER
7412 M:      Vincent Mailhol <mailhol.vincent@wanadoo.fr>
7413 L:      linux-can@vger.kernel.org
7414 S:      Maintained
7415 F:      drivers/net/can/usb/etas_es58x/
7416
7417 ETHERNET BRIDGE
7418 M:      Roopa Prabhu <roopa@nvidia.com>
7419 M:      Nikolay Aleksandrov <razor@blackwall.org>
7420 L:      bridge@lists.linux-foundation.org (moderated for non-subscribers)
7421 L:      netdev@vger.kernel.org
7422 S:      Maintained
7423 W:      http://www.linuxfoundation.org/en/Net:Bridge
7424 F:      include/linux/netfilter_bridge/
7425 F:      net/bridge/
7426
7427 ETHERNET PHY LIBRARY
7428 M:      Andrew Lunn <andrew@lunn.ch>
7429 M:      Heiner Kallweit <hkallweit1@gmail.com>
7430 R:      Russell King <linux@armlinux.org.uk>
7431 L:      netdev@vger.kernel.org
7432 S:      Maintained
7433 F:      Documentation/ABI/testing/sysfs-class-net-phydev
7434 F:      Documentation/devicetree/bindings/net/ethernet-phy.yaml
7435 F:      Documentation/devicetree/bindings/net/mdio*
7436 F:      Documentation/devicetree/bindings/net/qca,ar803x.yaml
7437 F:      Documentation/networking/phy.rst
7438 F:      drivers/net/mdio/
7439 F:      drivers/net/mdio/acpi_mdio.c
7440 F:      drivers/net/mdio/fwnode_mdio.c
7441 F:      drivers/net/mdio/of_mdio.c
7442 F:      drivers/net/pcs/
7443 F:      drivers/net/phy/
7444 F:      include/dt-bindings/net/qca-ar803x.h
7445 F:      include/linux/linkmode.h
7446 F:      include/linux/*mdio*.h
7447 F:      include/linux/mdio/*.h
7448 F:      include/linux/mii.h
7449 F:      include/linux/of_net.h
7450 F:      include/linux/phy.h
7451 F:      include/linux/phy_fixed.h
7452 F:      include/linux/platform_data/mdio-bcm-unimac.h
7453 F:      include/linux/platform_data/mdio-gpio.h
7454 F:      include/trace/events/mdio.h
7455 F:      include/uapi/linux/mdio.h
7456 F:      include/uapi/linux/mii.h
7457 F:      net/core/of_net.c
7458
7459 EXEC & BINFMT API
7460 R:      Eric Biederman <ebiederm@xmission.com>
7461 R:      Kees Cook <keescook@chromium.org>
7462 L:      linux-mm@kvack.org
7463 S:      Supported
7464 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/execve
7465 F:      arch/alpha/kernel/binfmt_loader.c
7466 F:      fs/*binfmt_*.c
7467 F:      fs/exec.c
7468 F:      include/linux/binfmts.h
7469 F:      include/linux/elf.h
7470 F:      include/uapi/linux/binfmts.h
7471 F:      include/uapi/linux/elf.h
7472 F:      tools/testing/selftests/exec/
7473 N:      asm/elf.h
7474 N:      binfmt
7475
7476 EXFAT FILE SYSTEM
7477 M:      Namjae Jeon <linkinjeon@kernel.org>
7478 M:      Sungjong Seo <sj1557.seo@samsung.com>
7479 L:      linux-fsdevel@vger.kernel.org
7480 S:      Maintained
7481 F:      fs/exfat/
7482
7483 EXT2 FILE SYSTEM
7484 M:      Jan Kara <jack@suse.com>
7485 L:      linux-ext4@vger.kernel.org
7486 S:      Maintained
7487 F:      Documentation/filesystems/ext2.rst
7488 F:      fs/ext2/
7489 F:      include/linux/ext2*
7490
7491 EXT4 FILE SYSTEM
7492 M:      "Theodore Ts'o" <tytso@mit.edu>
7493 M:      Andreas Dilger <adilger.kernel@dilger.ca>
7494 L:      linux-ext4@vger.kernel.org
7495 S:      Maintained
7496 W:      http://ext4.wiki.kernel.org
7497 Q:      http://patchwork.ozlabs.org/project/linux-ext4/list/
7498 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tytso/ext4.git
7499 F:      Documentation/filesystems/ext4/
7500 F:      fs/ext4/
7501 F:      include/trace/events/ext4.h
7502
7503 Extended Verification Module (EVM)
7504 M:      Mimi Zohar <zohar@linux.ibm.com>
7505 L:      linux-integrity@vger.kernel.org
7506 S:      Supported
7507 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/zohar/linux-integrity.git
7508 F:      security/integrity/evm/
7509 F:      security/integrity/
7510
7511 EXTENSIBLE FIRMWARE INTERFACE (EFI)
7512 M:      Ard Biesheuvel <ardb@kernel.org>
7513 L:      linux-efi@vger.kernel.org
7514 S:      Maintained
7515 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
7516 F:      Documentation/admin-guide/efi-stub.rst
7517 F:      arch/*/include/asm/efi.h
7518 F:      arch/*/kernel/efi.c
7519 F:      arch/arm/boot/compressed/efi-header.S
7520 F:      arch/arm64/kernel/efi-entry.S
7521 F:      arch/x86/platform/efi/
7522 F:      drivers/firmware/efi/
7523 F:      include/linux/efi*.h
7524
7525 EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
7526 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
7527 M:      Chanwoo Choi <cw00.choi@samsung.com>
7528 L:      linux-kernel@vger.kernel.org
7529 S:      Maintained
7530 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git
7531 F:      Documentation/devicetree/bindings/extcon/
7532 F:      Documentation/firmware-guide/acpi/extcon-intel-int3496.rst
7533 F:      drivers/extcon/
7534 F:      include/linux/extcon.h
7535 F:      include/linux/extcon/
7536
7537 EXTRA BOOT CONFIG
7538 M:      Masami Hiramatsu <mhiramat@kernel.org>
7539 S:      Maintained
7540 F:      Documentation/admin-guide/bootconfig.rst
7541 F:      fs/proc/bootconfig.c
7542 F:      include/linux/bootconfig.h
7543 F:      lib/bootconfig-data.S
7544 F:      lib/bootconfig.c
7545 F:      tools/bootconfig/*
7546 F:      tools/bootconfig/scripts/*
7547
7548 EXYNOS DP DRIVER
7549 M:      Jingoo Han <jingoohan1@gmail.com>
7550 L:      dri-devel@lists.freedesktop.org
7551 S:      Maintained
7552 F:      drivers/gpu/drm/exynos/exynos_dp*
7553
7554 EXYNOS SYSMMU (IOMMU) driver
7555 M:      Marek Szyprowski <m.szyprowski@samsung.com>
7556 L:      iommu@lists.linux-foundation.org
7557 S:      Maintained
7558 F:      drivers/iommu/exynos-iommu.c
7559
7560 F2FS FILE SYSTEM
7561 M:      Jaegeuk Kim <jaegeuk@kernel.org>
7562 M:      Chao Yu <chao@kernel.org>
7563 L:      linux-f2fs-devel@lists.sourceforge.net
7564 S:      Maintained
7565 W:      https://f2fs.wiki.kernel.org/
7566 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
7567 F:      Documentation/ABI/testing/sysfs-fs-f2fs
7568 F:      Documentation/filesystems/f2fs.rst
7569 F:      fs/f2fs/
7570 F:      include/linux/f2fs_fs.h
7571 F:      include/trace/events/f2fs.h
7572 F:      include/uapi/linux/f2fs.h
7573
7574 F71805F HARDWARE MONITORING DRIVER
7575 M:      Jean Delvare <jdelvare@suse.com>
7576 L:      linux-hwmon@vger.kernel.org
7577 S:      Maintained
7578 F:      Documentation/hwmon/f71805f.rst
7579 F:      drivers/hwmon/f71805f.c
7580
7581 FADDR2LINE
7582 M:      Josh Poimboeuf <jpoimboe@kernel.org>
7583 S:      Maintained
7584 F:      scripts/faddr2line
7585
7586 FAILOVER MODULE
7587 M:      Sridhar Samudrala <sridhar.samudrala@intel.com>
7588 L:      netdev@vger.kernel.org
7589 S:      Supported
7590 F:      Documentation/networking/failover.rst
7591 F:      include/net/failover.h
7592 F:      net/core/failover.c
7593
7594 FANOTIFY
7595 M:      Jan Kara <jack@suse.cz>
7596 R:      Amir Goldstein <amir73il@gmail.com>
7597 R:      Matthew Bobrowski <repnop@google.com>
7598 L:      linux-fsdevel@vger.kernel.org
7599 S:      Maintained
7600 F:      fs/notify/fanotify/
7601 F:      include/linux/fanotify.h
7602 F:      include/uapi/linux/fanotify.h
7603
7604 FARSYNC SYNCHRONOUS DRIVER
7605 M:      Kevin Curtis <kevin.curtis@farsite.co.uk>
7606 S:      Supported
7607 W:      http://www.farsite.co.uk/
7608 F:      drivers/net/wan/farsync.*
7609
7610 FAULT INJECTION SUPPORT
7611 M:      Akinobu Mita <akinobu.mita@gmail.com>
7612 S:      Supported
7613 F:      Documentation/fault-injection/
7614 F:      lib/fault-inject.c
7615
7616 FBTFT Framebuffer drivers
7617 L:      dri-devel@lists.freedesktop.org
7618 L:      linux-fbdev@vger.kernel.org
7619 S:      Orphan
7620 F:      drivers/staging/fbtft/
7621
7622 FC0011 TUNER DRIVER
7623 M:      Michael Buesch <m@bues.ch>
7624 L:      linux-media@vger.kernel.org
7625 S:      Maintained
7626 F:      drivers/media/tuners/fc0011.c
7627 F:      drivers/media/tuners/fc0011.h
7628
7629 FC2580 MEDIA DRIVER
7630 M:      Antti Palosaari <crope@iki.fi>
7631 L:      linux-media@vger.kernel.org
7632 S:      Maintained
7633 W:      https://linuxtv.org
7634 W:      http://palosaari.fi/linux/
7635 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7636 T:      git git://linuxtv.org/anttip/media_tree.git
7637 F:      drivers/media/tuners/fc2580*
7638
7639 FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
7640 M:      Hannes Reinecke <hare@suse.de>
7641 L:      linux-scsi@vger.kernel.org
7642 S:      Supported
7643 W:      www.Open-FCoE.org
7644 F:      drivers/scsi/fcoe/
7645 F:      drivers/scsi/libfc/
7646 F:      include/scsi/fc/
7647 F:      include/scsi/libfc.h
7648 F:      include/scsi/libfcoe.h
7649 F:      include/uapi/scsi/fc/
7650
7651 FILE LOCKING (flock() and fcntl()/lockf())
7652 M:      Jeff Layton <jlayton@kernel.org>
7653 L:      linux-fsdevel@vger.kernel.org
7654 S:      Maintained
7655 F:      fs/fcntl.c
7656 F:      fs/locks.c
7657 F:      include/linux/fcntl.h
7658 F:      include/uapi/linux/fcntl.h
7659
7660 FILESYSTEM DIRECT ACCESS (DAX)
7661 M:      Dan Williams <dan.j.williams@intel.com>
7662 R:      Matthew Wilcox <willy@infradead.org>
7663 R:      Jan Kara <jack@suse.cz>
7664 L:      linux-fsdevel@vger.kernel.org
7665 L:      nvdimm@lists.linux.dev
7666 S:      Supported
7667 F:      fs/dax.c
7668 F:      include/linux/dax.h
7669 F:      include/trace/events/fs_dax.h
7670
7671 FILESYSTEMS (VFS and infrastructure)
7672 M:      Alexander Viro <viro@zeniv.linux.org.uk>
7673 L:      linux-fsdevel@vger.kernel.org
7674 S:      Maintained
7675 F:      fs/*
7676 F:      include/linux/fs.h
7677 F:      include/linux/fs_types.h
7678 F:      include/uapi/linux/fs.h
7679 F:      include/uapi/linux/openat2.h
7680 X:      fs/io-wq.c
7681 X:      fs/io-wq.h
7682 X:      fs/io_uring.c
7683
7684 FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
7685 M:      Riku Voipio <riku.voipio@iki.fi>
7686 L:      linux-hwmon@vger.kernel.org
7687 S:      Maintained
7688 F:      drivers/hwmon/f75375s.c
7689 F:      include/linux/f75375s.h
7690
7691 FIREWIRE AUDIO DRIVERS and IEC 61883-1/6 PACKET STREAMING ENGINE
7692 M:      Clemens Ladisch <clemens@ladisch.de>
7693 M:      Takashi Sakamoto <o-takashi@sakamocchi.jp>
7694 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7695 S:      Maintained
7696 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
7697 F:      include/uapi/sound/firewire.h
7698 F:      sound/firewire/
7699
7700 FIREWIRE MEDIA DRIVERS (firedtv)
7701 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
7702 L:      linux-media@vger.kernel.org
7703 L:      linux1394-devel@lists.sourceforge.net
7704 S:      Maintained
7705 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
7706 F:      drivers/media/firewire/
7707
7708 FIREWIRE SBP-2 TARGET
7709 M:      Chris Boot <bootc@bootc.net>
7710 L:      linux-scsi@vger.kernel.org
7711 L:      target-devel@vger.kernel.org
7712 L:      linux1394-devel@lists.sourceforge.net
7713 S:      Maintained
7714 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
7715 F:      drivers/target/sbp/
7716
7717 FIREWIRE SUBSYSTEM
7718 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
7719 L:      linux1394-devel@lists.sourceforge.net
7720 S:      Maintained
7721 W:      http://ieee1394.wiki.kernel.org/
7722 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
7723 F:      drivers/firewire/
7724 F:      include/linux/firewire.h
7725 F:      include/uapi/linux/firewire*.h
7726 F:      tools/firewire/
7727
7728 FIRMWARE FRAMEWORK FOR ARMV8-A
7729 M:      Sudeep Holla <sudeep.holla@arm.com>
7730 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7731 S:      Maintained
7732 F:      drivers/firmware/arm_ffa/
7733 F:      include/linux/arm_ffa.h
7734
7735 FIRMWARE LOADER (request_firmware)
7736 M:      Luis Chamberlain <mcgrof@kernel.org>
7737 M:      Russ Weight <russell.h.weight@intel.com>
7738 L:      linux-kernel@vger.kernel.org
7739 S:      Maintained
7740 F:      Documentation/firmware_class/
7741 F:      drivers/base/firmware_loader/
7742 F:      include/linux/firmware.h
7743
7744 FLEXTIMER FTM-QUADDEC DRIVER
7745 M:      Patrick Havelange <patrick.havelange@essensium.com>
7746 L:      linux-iio@vger.kernel.org
7747 S:      Maintained
7748 F:      Documentation/devicetree/bindings/counter/ftm-quaddec.txt
7749 F:      drivers/counter/ftm-quaddec.c
7750
7751 FLOPPY DRIVER
7752 M:      Denis Efremov <efremov@linux.com>
7753 L:      linux-block@vger.kernel.org
7754 S:      Odd Fixes
7755 F:      drivers/block/floppy.c
7756
7757 FLYSKY FSIA6B RC RECEIVER
7758 M:      Markus Koch <markus@notsyncing.net>
7759 L:      linux-input@vger.kernel.org
7760 S:      Maintained
7761 F:      drivers/input/joystick/fsia6b.c
7762
7763 FOCUSRITE SCARLETT GEN 2/3 MIXER DRIVER
7764 M:      Geoffrey D. Bennett <g@b4.vu>
7765 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7766 S:      Maintained
7767 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
7768 F:      sound/usb/mixer_scarlett_gen2.c
7769
7770 FORCEDETH GIGABIT ETHERNET DRIVER
7771 M:      Rain River <rain.1986.08.12@gmail.com>
7772 M:      Zhu Yanjun <zyjzyj2000@gmail.com>
7773 L:      netdev@vger.kernel.org
7774 S:      Maintained
7775 F:      drivers/net/ethernet/nvidia/*
7776
7777 FORTIFY_SOURCE
7778 M:      Kees Cook <keescook@chromium.org>
7779 L:      linux-hardening@vger.kernel.org
7780 S:      Supported
7781 F:      include/linux/fortify-string.h
7782 F:      lib/test_fortify/*
7783 F:      scripts/test_fortify.sh
7784 K:      \b__NO_FORTIFY\b
7785
7786 FPGA DFL DRIVERS
7787 M:      Wu Hao <hao.wu@intel.com>
7788 R:      Tom Rix <trix@redhat.com>
7789 L:      linux-fpga@vger.kernel.org
7790 S:      Maintained
7791 F:      Documentation/ABI/testing/sysfs-bus-dfl*
7792 F:      Documentation/fpga/dfl.rst
7793 F:      drivers/fpga/dfl*
7794 F:      drivers/uio/uio_dfl.c
7795 F:      include/linux/dfl.h
7796 F:      include/uapi/linux/fpga-dfl.h
7797
7798 FPGA MANAGER FRAMEWORK
7799 M:      Moritz Fischer <mdf@kernel.org>
7800 M:      Wu Hao <hao.wu@intel.com>
7801 M:      Xu Yilun <yilun.xu@intel.com>
7802 R:      Tom Rix <trix@redhat.com>
7803 L:      linux-fpga@vger.kernel.org
7804 S:      Maintained
7805 Q:      http://patchwork.kernel.org/project/linux-fpga/list/
7806 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/fpga/linux-fpga.git
7807 F:      Documentation/devicetree/bindings/fpga/
7808 F:      Documentation/driver-api/fpga/
7809 F:      Documentation/fpga/
7810 F:      drivers/fpga/
7811 F:      include/linux/fpga/
7812
7813 FPU EMULATOR
7814 M:      Bill Metzenthen <billm@melbpc.org.au>
7815 S:      Maintained
7816 W:      http://floatingpoint.sourceforge.net/emulator/index.html
7817 F:      arch/x86/math-emu/
7818
7819 FRAMEBUFFER CORE
7820 M:      Daniel Vetter <daniel@ffwll.ch>
7821 F:      drivers/video/fbdev/core/
7822 S:      Odd Fixes
7823 T:      git git://anongit.freedesktop.org/drm/drm-misc
7824
7825 FRAMEBUFFER LAYER
7826 M:      Helge Deller <deller@gmx.de>
7827 L:      linux-fbdev@vger.kernel.org
7828 L:      dri-devel@lists.freedesktop.org
7829 S:      Maintained
7830 Q:      http://patchwork.kernel.org/project/linux-fbdev/list/
7831 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/deller/linux-fbdev.git
7832 F:      Documentation/fb/
7833 F:      drivers/video/
7834 F:      include/linux/fb.h
7835 F:      include/uapi/linux/fb.h
7836 F:      include/uapi/video/
7837 F:      include/video/
7838
7839 FREESCALE CAAM (Cryptographic Acceleration and Assurance Module) DRIVER
7840 M:      Horia Geantă <horia.geanta@nxp.com>
7841 M:      Pankaj Gupta <pankaj.gupta@nxp.com>
7842 M:      Gaurav Jain <gaurav.jain@nxp.com>
7843 L:      linux-crypto@vger.kernel.org
7844 S:      Maintained
7845 F:      Documentation/devicetree/bindings/crypto/fsl-sec4.txt
7846 F:      drivers/crypto/caam/
7847
7848 FREESCALE COLDFIRE M5441X MMC DRIVER
7849 M:      Angelo Dureghello <angelo.dureghello@timesys.com>
7850 L:      linux-mmc@vger.kernel.org
7851 S:      Maintained
7852 F:      drivers/mmc/host/sdhci-esdhc-mcf.c
7853 F:      include/linux/platform_data/mmc-esdhc-mcf.h
7854
7855 FREESCALE DIU FRAMEBUFFER DRIVER
7856 M:      Timur Tabi <timur@kernel.org>
7857 L:      linux-fbdev@vger.kernel.org
7858 S:      Maintained
7859 F:      drivers/video/fbdev/fsl-diu-fb.*
7860
7861 FREESCALE DMA DRIVER
7862 M:      Li Yang <leoyang.li@nxp.com>
7863 M:      Zhang Wei <zw@zh-kernel.org>
7864 L:      linuxppc-dev@lists.ozlabs.org
7865 S:      Maintained
7866 F:      drivers/dma/fsldma.*
7867
7868 FREESCALE DSPI DRIVER
7869 M:      Vladimir Oltean <olteanv@gmail.com>
7870 L:      linux-spi@vger.kernel.org
7871 S:      Maintained
7872 F:      Documentation/devicetree/bindings/spi/spi-fsl-dspi.txt
7873 F:      drivers/spi/spi-fsl-dspi.c
7874 F:      include/linux/spi/spi-fsl-dspi.h
7875
7876 FREESCALE ENETC ETHERNET DRIVERS
7877 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
7878 L:      netdev@vger.kernel.org
7879 S:      Maintained
7880 F:      drivers/net/ethernet/freescale/enetc/
7881
7882 FREESCALE eTSEC ETHERNET DRIVER (GIANFAR)
7883 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
7884 L:      netdev@vger.kernel.org
7885 S:      Maintained
7886 F:      Documentation/devicetree/bindings/net/fsl-tsec-phy.txt
7887 F:      drivers/net/ethernet/freescale/gianfar*
7888
7889 FREESCALE GPMI NAND DRIVER
7890 M:      Han Xu <han.xu@nxp.com>
7891 L:      linux-mtd@lists.infradead.org
7892 S:      Maintained
7893 F:      drivers/mtd/nand/raw/gpmi-nand/*
7894
7895 FREESCALE I2C CPM DRIVER
7896 M:      Jochen Friedrich <jochen@scram.de>
7897 L:      linuxppc-dev@lists.ozlabs.org
7898 L:      linux-i2c@vger.kernel.org
7899 S:      Maintained
7900 F:      drivers/i2c/busses/i2c-cpm.c
7901
7902 FREESCALE IMX / MXC FEC DRIVER
7903 M:      Joakim Zhang <qiangqing.zhang@nxp.com>
7904 L:      netdev@vger.kernel.org
7905 S:      Maintained
7906 F:      Documentation/devicetree/bindings/net/fsl,fec.yaml
7907 F:      drivers/net/ethernet/freescale/fec.h
7908 F:      drivers/net/ethernet/freescale/fec_main.c
7909 F:      drivers/net/ethernet/freescale/fec_ptp.c
7910
7911 FREESCALE IMX / MXC FRAMEBUFFER DRIVER
7912 M:      Sascha Hauer <s.hauer@pengutronix.de>
7913 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
7914 L:      linux-fbdev@vger.kernel.org
7915 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7916 S:      Maintained
7917 F:      drivers/video/fbdev/imxfb.c
7918 F:      include/linux/platform_data/video-imxfb.h
7919
7920 FREESCALE IMX DDR PMU DRIVER
7921 M:      Frank Li <Frank.li@nxp.com>
7922 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7923 S:      Maintained
7924 F:      Documentation/admin-guide/perf/imx-ddr.rst
7925 F:      Documentation/devicetree/bindings/perf/fsl-imx-ddr.yaml
7926 F:      drivers/perf/fsl_imx8_ddr_perf.c
7927
7928 FREESCALE IMX I2C DRIVER
7929 M:      Oleksij Rempel <o.rempel@pengutronix.de>
7930 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
7931 L:      linux-i2c@vger.kernel.org
7932 S:      Maintained
7933 F:      Documentation/devicetree/bindings/i2c/i2c-imx.yaml
7934 F:      drivers/i2c/busses/i2c-imx.c
7935
7936 FREESCALE IMX LPI2C DRIVER
7937 M:      Dong Aisheng <aisheng.dong@nxp.com>
7938 L:      linux-i2c@vger.kernel.org
7939 L:      linux-imx@nxp.com
7940 S:      Maintained
7941 F:      Documentation/devicetree/bindings/i2c/i2c-imx-lpi2c.yaml
7942 F:      drivers/i2c/busses/i2c-imx-lpi2c.c
7943
7944 FREESCALE MPC I2C DRIVER
7945 M:      Chris Packham <chris.packham@alliedtelesis.co.nz>
7946 L:      linux-i2c@vger.kernel.org
7947 S:      Maintained
7948 F:      Documentation/devicetree/bindings/i2c/i2c-mpc.yaml
7949 F:      drivers/i2c/busses/i2c-mpc.c
7950
7951 FREESCALE QORIQ DPAA ETHERNET DRIVER
7952 M:      Madalin Bucur <madalin.bucur@nxp.com>
7953 L:      netdev@vger.kernel.org
7954 S:      Maintained
7955 F:      drivers/net/ethernet/freescale/dpaa
7956
7957 FREESCALE QORIQ DPAA FMAN DRIVER
7958 M:      Madalin Bucur <madalin.bucur@nxp.com>
7959 L:      netdev@vger.kernel.org
7960 S:      Maintained
7961 F:      Documentation/devicetree/bindings/net/fsl-fman.txt
7962 F:      drivers/net/ethernet/freescale/fman
7963
7964 FREESCALE QORIQ PTP CLOCK DRIVER
7965 M:      Yangbo Lu <yangbo.lu@nxp.com>
7966 L:      netdev@vger.kernel.org
7967 S:      Maintained
7968 F:      Documentation/devicetree/bindings/ptp/ptp-qoriq.txt
7969 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-ptp*
7970 F:      drivers/net/ethernet/freescale/dpaa2/dprtc*
7971 F:      drivers/net/ethernet/freescale/enetc/enetc_ptp.c
7972 F:      drivers/ptp/ptp_qoriq.c
7973 F:      drivers/ptp/ptp_qoriq_debugfs.c
7974 F:      include/linux/fsl/ptp_qoriq.h
7975
7976 FREESCALE QUAD SPI DRIVER
7977 M:      Han Xu <han.xu@nxp.com>
7978 L:      linux-spi@vger.kernel.org
7979 S:      Maintained
7980 F:      Documentation/devicetree/bindings/spi/fsl,spi-fsl-qspi.yaml
7981 F:      drivers/spi/spi-fsl-qspi.c
7982
7983 FREESCALE QUICC ENGINE LIBRARY
7984 M:      Qiang Zhao <qiang.zhao@nxp.com>
7985 L:      linuxppc-dev@lists.ozlabs.org
7986 S:      Maintained
7987 F:      drivers/soc/fsl/qe/
7988 F:      include/soc/fsl/qe/
7989
7990 FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
7991 M:      Li Yang <leoyang.li@nxp.com>
7992 L:      netdev@vger.kernel.org
7993 L:      linuxppc-dev@lists.ozlabs.org
7994 S:      Maintained
7995 F:      drivers/net/ethernet/freescale/ucc_geth*
7996
7997 FREESCALE QUICC ENGINE UCC HDLC DRIVER
7998 M:      Zhao Qiang <qiang.zhao@nxp.com>
7999 L:      netdev@vger.kernel.org
8000 L:      linuxppc-dev@lists.ozlabs.org
8001 S:      Maintained
8002 F:      drivers/net/wan/fsl_ucc_hdlc*
8003
8004 FREESCALE QUICC ENGINE UCC UART DRIVER
8005 M:      Timur Tabi <timur@kernel.org>
8006 L:      linuxppc-dev@lists.ozlabs.org
8007 S:      Maintained
8008 F:      drivers/tty/serial/ucc_uart.c
8009
8010 FREESCALE SOC DRIVERS
8011 M:      Li Yang <leoyang.li@nxp.com>
8012 L:      linuxppc-dev@lists.ozlabs.org
8013 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8014 S:      Maintained
8015 F:      Documentation/devicetree/bindings/misc/fsl,dpaa2-console.yaml
8016 F:      Documentation/devicetree/bindings/soc/fsl/
8017 F:      drivers/soc/fsl/
8018 F:      include/linux/fsl/
8019 F:      include/soc/fsl/
8020
8021 FREESCALE SOC FS_ENET DRIVER
8022 M:      Pantelis Antoniou <pantelis.antoniou@gmail.com>
8023 L:      linuxppc-dev@lists.ozlabs.org
8024 L:      netdev@vger.kernel.org
8025 S:      Maintained
8026 F:      drivers/net/ethernet/freescale/fs_enet/
8027 F:      include/linux/fs_enet_pd.h
8028
8029 FREESCALE SOC SOUND DRIVERS
8030 M:      Shengjiu Wang <shengjiu.wang@gmail.com>
8031 M:      Xiubo Li <Xiubo.Lee@gmail.com>
8032 R:      Fabio Estevam <festevam@gmail.com>
8033 R:      Nicolin Chen <nicoleotsuka@gmail.com>
8034 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
8035 L:      linuxppc-dev@lists.ozlabs.org
8036 S:      Maintained
8037 F:      sound/soc/fsl/fsl*
8038 F:      sound/soc/fsl/imx*
8039 F:      sound/soc/fsl/mpc8610_hpcd.c
8040
8041 FREESCALE USB PERIPHERAL DRIVERS
8042 M:      Li Yang <leoyang.li@nxp.com>
8043 L:      linux-usb@vger.kernel.org
8044 L:      linuxppc-dev@lists.ozlabs.org
8045 S:      Maintained
8046 F:      drivers/usb/gadget/udc/fsl*
8047
8048 FREESCALE USB PHY DRIVER
8049 M:      Ran Wang <ran.wang_1@nxp.com>
8050 L:      linux-usb@vger.kernel.org
8051 L:      linuxppc-dev@lists.ozlabs.org
8052 S:      Maintained
8053 F:      drivers/usb/phy/phy-fsl-usb*
8054
8055 FREEVXFS FILESYSTEM
8056 M:      Christoph Hellwig <hch@infradead.org>
8057 S:      Maintained
8058 W:      ftp://ftp.openlinux.org/pub/people/hch/vxfs
8059 F:      fs/freevxfs/
8060
8061 FREEZER
8062 M:      "Rafael J. Wysocki" <rafael@kernel.org>
8063 M:      Pavel Machek <pavel@ucw.cz>
8064 L:      linux-pm@vger.kernel.org
8065 S:      Supported
8066 F:      Documentation/power/freezing-of-tasks.rst
8067 F:      include/linux/freezer.h
8068 F:      kernel/freezer.c
8069
8070 FRONTSWAP API
8071 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
8072 L:      linux-kernel@vger.kernel.org
8073 S:      Maintained
8074 F:      include/linux/frontswap.h
8075 F:      mm/frontswap.c
8076
8077 FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
8078 M:      David Howells <dhowells@redhat.com>
8079 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
8080 S:      Supported
8081 F:      Documentation/filesystems/caching/
8082 F:      fs/fscache/
8083 F:      include/linux/fscache*.h
8084
8085 FSCRYPT: FILE SYSTEM LEVEL ENCRYPTION SUPPORT
8086 M:      Theodore Y. Ts'o <tytso@mit.edu>
8087 M:      Jaegeuk Kim <jaegeuk@kernel.org>
8088 M:      Eric Biggers <ebiggers@kernel.org>
8089 L:      linux-fscrypt@vger.kernel.org
8090 S:      Supported
8091 Q:      https://patchwork.kernel.org/project/linux-fscrypt/list/
8092 T:      git git://git.kernel.org/pub/scm/fs/fscrypt/fscrypt.git
8093 F:      Documentation/filesystems/fscrypt.rst
8094 F:      fs/crypto/
8095 F:      include/linux/fscrypt*.h
8096 F:      include/uapi/linux/fscrypt.h
8097
8098 FSI SUBSYSTEM
8099 M:      Jeremy Kerr <jk@ozlabs.org>
8100 M:      Joel Stanley <joel@jms.id.au>
8101 R:      Alistar Popple <alistair@popple.id.au>
8102 R:      Eddie James <eajames@linux.ibm.com>
8103 L:      linux-fsi@lists.ozlabs.org
8104 S:      Supported
8105 Q:      http://patchwork.ozlabs.org/project/linux-fsi/list/
8106 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joel/fsi.git
8107 F:      drivers/fsi/
8108 F:      include/linux/fsi*.h
8109 F:      include/trace/events/fsi*.h
8110
8111 FSI-ATTACHED I2C DRIVER
8112 M:      Eddie James <eajames@linux.ibm.com>
8113 L:      linux-i2c@vger.kernel.org
8114 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
8115 S:      Maintained
8116 F:      Documentation/devicetree/bindings/i2c/i2c-fsi.txt
8117 F:      drivers/i2c/busses/i2c-fsi.c
8118
8119 FSI-ATTACHED SPI DRIVER
8120 M:      Eddie James <eajames@linux.ibm.com>
8121 L:      linux-spi@vger.kernel.org
8122 S:      Maintained
8123 F:      Documentation/devicetree/bindings/fsi/ibm,fsi2spi.yaml
8124 F:      drivers/spi/spi-fsi.c
8125
8126 FSNOTIFY: FILESYSTEM NOTIFICATION INFRASTRUCTURE
8127 M:      Jan Kara <jack@suse.cz>
8128 R:      Amir Goldstein <amir73il@gmail.com>
8129 L:      linux-fsdevel@vger.kernel.org
8130 S:      Maintained
8131 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jack/linux-fs.git fsnotify
8132 F:      fs/notify/
8133 F:      include/linux/fsnotify*.h
8134
8135 FSVERITY: READ-ONLY FILE-BASED AUTHENTICITY PROTECTION
8136 M:      Eric Biggers <ebiggers@kernel.org>
8137 M:      Theodore Y. Ts'o <tytso@mit.edu>
8138 L:      linux-fscrypt@vger.kernel.org
8139 S:      Supported
8140 Q:      https://patchwork.kernel.org/project/linux-fscrypt/list/
8141 T:      git git://git.kernel.org/pub/scm/fs/fscrypt/fscrypt.git fsverity
8142 F:      Documentation/filesystems/fsverity.rst
8143 F:      fs/verity/
8144 F:      include/linux/fsverity.h
8145 F:      include/uapi/linux/fsverity.h
8146
8147 FT260 FTDI USB-HID TO I2C BRIDGE DRIVER
8148 M:      Michael Zaidman <michael.zaidman@gmail.com>
8149 L:      linux-i2c@vger.kernel.org
8150 L:      linux-input@vger.kernel.org
8151 S:      Maintained
8152 F:      drivers/hid/hid-ft260.c
8153
8154 FUJITSU LAPTOP EXTRAS
8155 M:      Jonathan Woithe <jwoithe@just42.net>
8156 L:      platform-driver-x86@vger.kernel.org
8157 S:      Maintained
8158 F:      drivers/platform/x86/fujitsu-laptop.c
8159
8160 FUJITSU M-5MO LS CAMERA ISP DRIVER
8161 M:      Kyungmin Park <kyungmin.park@samsung.com>
8162 M:      Heungjun Kim <riverful.kim@samsung.com>
8163 L:      linux-media@vger.kernel.org
8164 S:      Maintained
8165 F:      drivers/media/i2c/m5mols/
8166 F:      include/media/i2c/m5mols.h
8167
8168 FUJITSU TABLET EXTRAS
8169 M:      Robert Gerlach <khnz@gmx.de>
8170 L:      platform-driver-x86@vger.kernel.org
8171 S:      Maintained
8172 F:      drivers/platform/x86/fujitsu-tablet.c
8173
8174 FUNGIBLE ETHERNET DRIVERS
8175 M:      Dimitris Michailidis <dmichail@fungible.com>
8176 L:      netdev@vger.kernel.org
8177 S:      Supported
8178 F:      drivers/net/ethernet/fungible/
8179
8180 FUSE: FILESYSTEM IN USERSPACE
8181 M:      Miklos Szeredi <miklos@szeredi.hu>
8182 L:      linux-fsdevel@vger.kernel.org
8183 S:      Maintained
8184 W:      https://github.com/libfuse/
8185 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse.git
8186 F:      Documentation/filesystems/fuse.rst
8187 F:      fs/fuse/
8188 F:      include/uapi/linux/fuse.h
8189
8190 FUTEX SUBSYSTEM
8191 M:      Thomas Gleixner <tglx@linutronix.de>
8192 M:      Ingo Molnar <mingo@redhat.com>
8193 R:      Peter Zijlstra <peterz@infradead.org>
8194 R:      Darren Hart <dvhart@infradead.org>
8195 R:      Davidlohr Bueso <dave@stgolabs.net>
8196 R:      André Almeida <andrealmeid@igalia.com>
8197 L:      linux-kernel@vger.kernel.org
8198 S:      Maintained
8199 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
8200 F:      Documentation/locking/*futex*
8201 F:      include/asm-generic/futex.h
8202 F:      include/linux/futex.h
8203 F:      include/uapi/linux/futex.h
8204 F:      kernel/futex/*
8205 F:      tools/perf/bench/futex*
8206 F:      tools/testing/selftests/futex/
8207
8208 GATEWORKS SYSTEM CONTROLLER (GSC) DRIVER
8209 M:      Tim Harvey <tharvey@gateworks.com>
8210 M:      Robert Jones <rjones@gateworks.com>
8211 S:      Maintained
8212 F:      Documentation/devicetree/bindings/mfd/gateworks-gsc.yaml
8213 F:      drivers/mfd/gateworks-gsc.c
8214 F:      include/linux/mfd/gsc.h
8215 F:      Documentation/hwmon/gsc-hwmon.rst
8216 F:      drivers/hwmon/gsc-hwmon.c
8217 F:      include/linux/platform_data/gsc_hwmon.h
8218
8219 GCC PLUGINS
8220 M:      Kees Cook <keescook@chromium.org>
8221 L:      linux-hardening@vger.kernel.org
8222 S:      Maintained
8223 F:      Documentation/kbuild/gcc-plugins.rst
8224 F:      scripts/Makefile.gcc-plugins
8225 F:      scripts/gcc-plugins/
8226
8227 GCOV BASED KERNEL PROFILING
8228 M:      Peter Oberparleiter <oberpar@linux.ibm.com>
8229 S:      Maintained
8230 F:      Documentation/dev-tools/gcov.rst
8231 F:      kernel/gcov/
8232
8233 GDB KERNEL DEBUGGING HELPER SCRIPTS
8234 M:      Jan Kiszka <jan.kiszka@siemens.com>
8235 M:      Kieran Bingham <kbingham@kernel.org>
8236 S:      Supported
8237 F:      scripts/gdb/
8238
8239 GEMINI CRYPTO DRIVER
8240 M:      Corentin Labbe <clabbe@baylibre.com>
8241 L:      linux-crypto@vger.kernel.org
8242 S:      Maintained
8243 F:      drivers/crypto/gemini/
8244
8245 GEMTEK FM RADIO RECEIVER DRIVER
8246 M:      Hans Verkuil <hverkuil@xs4all.nl>
8247 L:      linux-media@vger.kernel.org
8248 S:      Maintained
8249 W:      https://linuxtv.org
8250 T:      git git://linuxtv.org/media_tree.git
8251 F:      drivers/media/radio/radio-gemtek*
8252
8253 GENERIC ARCHITECTURE TOPOLOGY
8254 M:      Sudeep Holla <sudeep.holla@arm.com>
8255 L:      linux-kernel@vger.kernel.org
8256 S:      Maintained
8257 F:      drivers/base/arch_topology.c
8258 F:      include/linux/arch_topology.h
8259
8260 GENERIC ENTRY CODE
8261 M:      Thomas Gleixner <tglx@linutronix.de>
8262 M:      Peter Zijlstra <peterz@infradead.org>
8263 M:      Andy Lutomirski <luto@kernel.org>
8264 L:      linux-kernel@vger.kernel.org
8265 S:      Maintained
8266 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/entry
8267 F:      include/linux/entry-common.h
8268 F:      include/linux/entry-kvm.h
8269 F:      kernel/entry/
8270
8271 GENERIC GPIO I2C DRIVER
8272 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
8273 S:      Supported
8274 F:      drivers/i2c/busses/i2c-gpio.c
8275 F:      include/linux/platform_data/i2c-gpio.h
8276
8277 GENERIC GPIO I2C MULTIPLEXER DRIVER
8278 M:      Peter Korsgaard <peter.korsgaard@barco.com>
8279 L:      linux-i2c@vger.kernel.org
8280 S:      Supported
8281 F:      Documentation/i2c/muxes/i2c-mux-gpio.rst
8282 F:      drivers/i2c/muxes/i2c-mux-gpio.c
8283 F:      include/linux/platform_data/i2c-mux-gpio.h
8284
8285 GENERIC HDLC (WAN) DRIVERS
8286 M:      Krzysztof Halasa <khc@pm.waw.pl>
8287 S:      Maintained
8288 W:      http://www.kernel.org/pub/linux/utils/net/hdlc/
8289 F:      drivers/net/wan/c101.c
8290 F:      drivers/net/wan/hd6457*
8291 F:      drivers/net/wan/hdlc*
8292 F:      drivers/net/wan/n2.c
8293 F:      drivers/net/wan/pc300too.c
8294 F:      drivers/net/wan/pci200syn.c
8295 F:      drivers/net/wan/wanxl*
8296
8297 GENERIC INCLUDE/ASM HEADER FILES
8298 M:      Arnd Bergmann <arnd@arndb.de>
8299 L:      linux-arch@vger.kernel.org
8300 S:      Maintained
8301 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
8302 F:      include/asm-generic/
8303 F:      include/uapi/asm-generic/
8304
8305 GENERIC PHY FRAMEWORK
8306 M:      Kishon Vijay Abraham I <kishon@ti.com>
8307 M:      Vinod Koul <vkoul@kernel.org>
8308 L:      linux-phy@lists.infradead.org
8309 S:      Supported
8310 Q:      https://patchwork.kernel.org/project/linux-phy/list/
8311 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/phy/linux-phy.git
8312 F:      Documentation/devicetree/bindings/phy/
8313 F:      drivers/phy/
8314 F:      include/linux/phy/
8315
8316 GENERIC PINCTRL I2C DEMULTIPLEXER DRIVER
8317 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
8318 S:      Supported
8319 F:      drivers/i2c/muxes/i2c-demux-pinctrl.c
8320
8321 GENERIC PM DOMAINS
8322 M:      "Rafael J. Wysocki" <rafael@kernel.org>
8323 M:      Kevin Hilman <khilman@kernel.org>
8324 M:      Ulf Hansson <ulf.hansson@linaro.org>
8325 L:      linux-pm@vger.kernel.org
8326 S:      Supported
8327 F:      Documentation/devicetree/bindings/power/power?domain*
8328 F:      drivers/base/power/domain*.c
8329 F:      include/linux/pm_domain.h
8330
8331 GENERIC RESISTIVE TOUCHSCREEN ADC DRIVER
8332 M:      Eugen Hristev <eugen.hristev@microchip.com>
8333 L:      linux-input@vger.kernel.org
8334 S:      Maintained
8335 F:      drivers/input/touchscreen/resistive-adc-touch.c
8336
8337 GENERIC STRING LIBRARY
8338 R:      Andy Shevchenko <andy@kernel.org>
8339 S:      Maintained
8340 F:      lib/string.c
8341 F:      lib/string_helpers.c
8342 F:      lib/test_string.c
8343 F:      lib/test-string_helpers.c
8344
8345 GENERIC UIO DRIVER FOR PCI DEVICES
8346 M:      "Michael S. Tsirkin" <mst@redhat.com>
8347 L:      kvm@vger.kernel.org
8348 S:      Supported
8349 F:      drivers/uio/uio_pci_generic.c
8350
8351 GENERIC VDSO LIBRARY
8352 M:      Andy Lutomirski <luto@kernel.org>
8353 M:      Thomas Gleixner <tglx@linutronix.de>
8354 M:      Vincenzo Frascino <vincenzo.frascino@arm.com>
8355 L:      linux-kernel@vger.kernel.org
8356 S:      Maintained
8357 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/vdso
8358 F:      include/asm-generic/vdso/vsyscall.h
8359 F:      include/vdso/
8360 F:      kernel/time/vsyscall.c
8361 F:      lib/vdso/
8362
8363 GENWQE (IBM Generic Workqueue Card)
8364 M:      Frank Haverkamp <haver@linux.ibm.com>
8365 S:      Supported
8366 F:      drivers/misc/genwqe/
8367
8368 GET_MAINTAINER SCRIPT
8369 M:      Joe Perches <joe@perches.com>
8370 S:      Maintained
8371 F:      scripts/get_maintainer.pl
8372
8373 GFS2 FILE SYSTEM
8374 M:      Bob Peterson <rpeterso@redhat.com>
8375 M:      Andreas Gruenbacher <agruenba@redhat.com>
8376 L:      cluster-devel@redhat.com
8377 S:      Supported
8378 B:      https://bugzilla.kernel.org/enter_bug.cgi?product=File%20System&component=gfs2
8379 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git
8380 F:      Documentation/filesystems/gfs2*
8381 F:      fs/gfs2/
8382 F:      include/uapi/linux/gfs2_ondisk.h
8383
8384 GIGABYTE WMI DRIVER
8385 M:      Thomas Weißschuh <thomas@weissschuh.net>
8386 L:      platform-driver-x86@vger.kernel.org
8387 S:      Maintained
8388 F:      drivers/platform/x86/gigabyte-wmi.c
8389
8390 GNSS SUBSYSTEM
8391 M:      Johan Hovold <johan@kernel.org>
8392 S:      Maintained
8393 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/gnss.git
8394 F:      Documentation/ABI/testing/sysfs-class-gnss
8395 F:      Documentation/devicetree/bindings/gnss/
8396 F:      drivers/gnss/
8397 F:      include/linux/gnss.h
8398
8399 GO7007 MPEG CODEC
8400 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
8401 L:      linux-media@vger.kernel.org
8402 S:      Maintained
8403 F:      drivers/media/usb/go7007/
8404
8405 GOODIX TOUCHSCREEN
8406 M:      Bastien Nocera <hadess@hadess.net>
8407 M:      Hans de Goede <hdegoede@redhat.com>
8408 L:      linux-input@vger.kernel.org
8409 S:      Maintained
8410 F:      drivers/input/touchscreen/goodix*
8411
8412 GOOGLE ETHERNET DRIVERS
8413 M:      Jeroen de Borst <jeroendb@google.com>
8414 R:      Catherine Sullivan <csully@google.com>
8415 R:      David Awogbemila <awogbemila@google.com>
8416 L:      netdev@vger.kernel.org
8417 S:      Supported
8418 F:      Documentation/networking/device_drivers/ethernet/google/gve.rst
8419 F:      drivers/net/ethernet/google
8420
8421 GPD POCKET FAN DRIVER
8422 M:      Hans de Goede <hdegoede@redhat.com>
8423 L:      platform-driver-x86@vger.kernel.org
8424 S:      Maintained
8425 F:      drivers/platform/x86/gpd-pocket-fan.c
8426
8427 GPIO ACPI SUPPORT
8428 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
8429 M:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
8430 L:      linux-gpio@vger.kernel.org
8431 L:      linux-acpi@vger.kernel.org
8432 S:      Supported
8433 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
8434 F:      Documentation/firmware-guide/acpi/gpio-properties.rst
8435 F:      drivers/gpio/gpiolib-acpi.c
8436 F:      drivers/gpio/gpiolib-acpi.h
8437
8438 GPIO AGGREGATOR
8439 M:      Geert Uytterhoeven <geert+renesas@glider.be>
8440 L:      linux-gpio@vger.kernel.org
8441 S:      Supported
8442 F:      Documentation/admin-guide/gpio/gpio-aggregator.rst
8443 F:      drivers/gpio/gpio-aggregator.c
8444
8445 GPIO IR Transmitter
8446 M:      Sean Young <sean@mess.org>
8447 L:      linux-media@vger.kernel.org
8448 S:      Maintained
8449 F:      drivers/media/rc/gpio-ir-tx.c
8450
8451 GPIO MOCKUP DRIVER
8452 M:      Bamvor Jian Zhang <bamv2005@gmail.com>
8453 L:      linux-gpio@vger.kernel.org
8454 S:      Maintained
8455 F:      drivers/gpio/gpio-mockup.c
8456 F:      tools/testing/selftests/gpio/
8457
8458 GPIO REGMAP
8459 R:      Michael Walle <michael@walle.cc>
8460 S:      Maintained
8461 F:      drivers/gpio/gpio-regmap.c
8462 F:      include/linux/gpio/regmap.h
8463
8464 GPIO SUBSYSTEM
8465 M:      Linus Walleij <linus.walleij@linaro.org>
8466 M:      Bartosz Golaszewski <brgl@bgdev.pl>
8467 L:      linux-gpio@vger.kernel.org
8468 S:      Maintained
8469 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux.git
8470 F:      Documentation/ABI/obsolete/sysfs-gpio
8471 F:      Documentation/ABI/testing/gpio-cdev
8472 F:      Documentation/admin-guide/gpio/
8473 F:      Documentation/devicetree/bindings/gpio/
8474 F:      Documentation/driver-api/gpio/
8475 F:      drivers/gpio/
8476 F:      include/asm-generic/gpio.h
8477 F:      include/linux/gpio.h
8478 F:      include/linux/gpio/
8479 F:      include/linux/of_gpio.h
8480 F:      include/uapi/linux/gpio.h
8481 F:      tools/gpio/
8482
8483 GRE DEMULTIPLEXER DRIVER
8484 M:      Dmitry Kozlov <xeb@mail.ru>
8485 L:      netdev@vger.kernel.org
8486 S:      Maintained
8487 F:      include/net/gre.h
8488 F:      net/ipv4/gre_demux.c
8489 F:      net/ipv4/gre_offload.c
8490
8491 GRETH 10/100/1G Ethernet MAC device driver
8492 M:      Andreas Larsson <andreas@gaisler.com>
8493 L:      netdev@vger.kernel.org
8494 S:      Maintained
8495 F:      drivers/net/ethernet/aeroflex/
8496
8497 GREYBUS AUDIO PROTOCOLS DRIVERS
8498 M:      Vaibhav Agarwal <vaibhav.sr@gmail.com>
8499 M:      Mark Greer <mgreer@animalcreek.com>
8500 S:      Maintained
8501 F:      drivers/staging/greybus/audio_apbridgea.c
8502 F:      drivers/staging/greybus/audio_apbridgea.h
8503 F:      drivers/staging/greybus/audio_codec.c
8504 F:      drivers/staging/greybus/audio_codec.h
8505 F:      drivers/staging/greybus/audio_gb.c
8506 F:      drivers/staging/greybus/audio_manager.c
8507 F:      drivers/staging/greybus/audio_manager.h
8508 F:      drivers/staging/greybus/audio_manager_module.c
8509 F:      drivers/staging/greybus/audio_manager_private.h
8510 F:      drivers/staging/greybus/audio_manager_sysfs.c
8511 F:      drivers/staging/greybus/audio_module.c
8512 F:      drivers/staging/greybus/audio_topology.c
8513
8514 GREYBUS FW/HID/SPI PROTOCOLS DRIVERS
8515 M:      Viresh Kumar <vireshk@kernel.org>
8516 S:      Maintained
8517 F:      drivers/staging/greybus/authentication.c
8518 F:      drivers/staging/greybus/bootrom.c
8519 F:      drivers/staging/greybus/firmware.h
8520 F:      drivers/staging/greybus/fw-core.c
8521 F:      drivers/staging/greybus/fw-download.c
8522 F:      drivers/staging/greybus/fw-management.c
8523 F:      drivers/staging/greybus/greybus_authentication.h
8524 F:      drivers/staging/greybus/greybus_firmware.h
8525 F:      drivers/staging/greybus/hid.c
8526 F:      drivers/staging/greybus/i2c.c
8527 F:      drivers/staging/greybus/spi.c
8528 F:      drivers/staging/greybus/spilib.c
8529 F:      drivers/staging/greybus/spilib.h
8530
8531 GREYBUS LOOPBACK DRIVER
8532 M:      Bryan O'Donoghue <pure.logic@nexus-software.ie>
8533 S:      Maintained
8534 F:      drivers/staging/greybus/loopback.c
8535
8536 GREYBUS PLATFORM DRIVERS
8537 M:      Vaibhav Hiremath <hvaibhav.linux@gmail.com>
8538 S:      Maintained
8539 F:      drivers/staging/greybus/arche-apb-ctrl.c
8540 F:      drivers/staging/greybus/arche-platform.c
8541 F:      drivers/staging/greybus/arche_platform.h
8542
8543 GREYBUS SDIO/GPIO/SPI PROTOCOLS DRIVERS
8544 M:      Rui Miguel Silva <rmfrfs@gmail.com>
8545 S:      Maintained
8546 F:      drivers/staging/greybus/gpio.c
8547 F:      drivers/staging/greybus/light.c
8548 F:      drivers/staging/greybus/power_supply.c
8549 F:      drivers/staging/greybus/sdio.c
8550 F:      drivers/staging/greybus/spi.c
8551 F:      drivers/staging/greybus/spilib.c
8552
8553 GREYBUS SUBSYSTEM
8554 M:      Johan Hovold <johan@kernel.org>
8555 M:      Alex Elder <elder@kernel.org>
8556 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
8557 L:      greybus-dev@lists.linaro.org (moderated for non-subscribers)
8558 S:      Maintained
8559 F:      drivers/greybus/
8560 F:      drivers/staging/greybus/
8561 F:      include/linux/greybus.h
8562 F:      include/linux/greybus/
8563
8564 GREYBUS UART PROTOCOLS DRIVERS
8565 M:      David Lin <dtwlin@gmail.com>
8566 S:      Maintained
8567 F:      drivers/staging/greybus/log.c
8568 F:      drivers/staging/greybus/uart.c
8569
8570 GS1662 VIDEO SERIALIZER
8571 M:      Charles-Antoine Couret <charles-antoine.couret@nexvision.fr>
8572 L:      linux-media@vger.kernel.org
8573 S:      Maintained
8574 T:      git git://linuxtv.org/media_tree.git
8575 F:      drivers/media/spi/gs1662.c
8576
8577 GSPCA FINEPIX SUBDRIVER
8578 M:      Frank Zago <frank@zago.net>
8579 L:      linux-media@vger.kernel.org
8580 S:      Maintained
8581 T:      git git://linuxtv.org/media_tree.git
8582 F:      drivers/media/usb/gspca/finepix.c
8583
8584 GSPCA GL860 SUBDRIVER
8585 M:      Olivier Lorin <o.lorin@laposte.net>
8586 L:      linux-media@vger.kernel.org
8587 S:      Maintained
8588 T:      git git://linuxtv.org/media_tree.git
8589 F:      drivers/media/usb/gspca/gl860/
8590
8591 GSPCA M5602 SUBDRIVER
8592 M:      Erik Andren <erik.andren@gmail.com>
8593 L:      linux-media@vger.kernel.org
8594 S:      Maintained
8595 T:      git git://linuxtv.org/media_tree.git
8596 F:      drivers/media/usb/gspca/m5602/
8597
8598 GSPCA PAC207 SONIXB SUBDRIVER
8599 M:      Hans Verkuil <hverkuil@xs4all.nl>
8600 L:      linux-media@vger.kernel.org
8601 S:      Odd Fixes
8602 T:      git git://linuxtv.org/media_tree.git
8603 F:      drivers/media/usb/gspca/pac207.c
8604
8605 GSPCA SN9C20X SUBDRIVER
8606 M:      Brian Johnson <brijohn@gmail.com>
8607 L:      linux-media@vger.kernel.org
8608 S:      Maintained
8609 T:      git git://linuxtv.org/media_tree.git
8610 F:      drivers/media/usb/gspca/sn9c20x.c
8611
8612 GSPCA T613 SUBDRIVER
8613 M:      Leandro Costantino <lcostantino@gmail.com>
8614 L:      linux-media@vger.kernel.org
8615 S:      Maintained
8616 T:      git git://linuxtv.org/media_tree.git
8617 F:      drivers/media/usb/gspca/t613.c
8618
8619 GSPCA USB WEBCAM DRIVER
8620 M:      Hans Verkuil <hverkuil@xs4all.nl>
8621 L:      linux-media@vger.kernel.org
8622 S:      Odd Fixes
8623 T:      git git://linuxtv.org/media_tree.git
8624 F:      drivers/media/usb/gspca/
8625
8626 GTP (GPRS Tunneling Protocol)
8627 M:      Pablo Neira Ayuso <pablo@netfilter.org>
8628 M:      Harald Welte <laforge@gnumonks.org>
8629 L:      osmocom-net-gprs@lists.osmocom.org
8630 S:      Maintained
8631 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/gtp.git
8632 F:      drivers/net/gtp.c
8633
8634 GUID PARTITION TABLE (GPT)
8635 M:      Davidlohr Bueso <dave@stgolabs.net>
8636 L:      linux-efi@vger.kernel.org
8637 S:      Maintained
8638 F:      block/partitions/efi.*
8639
8640 HABANALABS PCI DRIVER
8641 M:      Oded Gabbay <ogabbay@kernel.org>
8642 S:      Supported
8643 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/ogabbay/linux.git
8644 F:      Documentation/ABI/testing/debugfs-driver-habanalabs
8645 F:      Documentation/ABI/testing/sysfs-driver-habanalabs
8646 F:      drivers/misc/habanalabs/
8647 F:      include/uapi/misc/habanalabs.h
8648
8649 HACKRF MEDIA DRIVER
8650 M:      Antti Palosaari <crope@iki.fi>
8651 L:      linux-media@vger.kernel.org
8652 S:      Maintained
8653 W:      https://linuxtv.org
8654 W:      http://palosaari.fi/linux/
8655 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8656 T:      git git://linuxtv.org/anttip/media_tree.git
8657 F:      drivers/media/usb/hackrf/
8658
8659 HANTRO VPU CODEC DRIVER
8660 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
8661 M:      Philipp Zabel <p.zabel@pengutronix.de>
8662 L:      linux-media@vger.kernel.org
8663 L:      linux-rockchip@lists.infradead.org
8664 S:      Maintained
8665 F:      Documentation/devicetree/bindings/media/nxp,imx8mq-vpu.yaml
8666 F:      Documentation/devicetree/bindings/media/rockchip-vpu.yaml
8667 F:      drivers/staging/media/hantro/
8668
8669 HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
8670 M:      Frank Seidel <frank@f-seidel.de>
8671 L:      platform-driver-x86@vger.kernel.org
8672 S:      Maintained
8673 W:      http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
8674 F:      drivers/platform/x86/hdaps.c
8675
8676 HARDWARE MONITORING
8677 M:      Jean Delvare <jdelvare@suse.com>
8678 M:      Guenter Roeck <linux@roeck-us.net>
8679 L:      linux-hwmon@vger.kernel.org
8680 S:      Maintained
8681 W:      http://hwmon.wiki.kernel.org/
8682 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
8683 F:      Documentation/ABI/testing/sysfs-class-hwmon
8684 F:      Documentation/devicetree/bindings/hwmon/
8685 F:      Documentation/hwmon/
8686 F:      drivers/hwmon/
8687 F:      include/linux/hwmon*.h
8688 F:      include/trace/events/hwmon*.h
8689 K:      (devm_)?hwmon_device_(un)?register(|_with_groups|_with_info)
8690
8691 HARDWARE RANDOM NUMBER GENERATOR CORE
8692 M:      Matt Mackall <mpm@selenic.com>
8693 M:      Herbert Xu <herbert@gondor.apana.org.au>
8694 L:      linux-crypto@vger.kernel.org
8695 S:      Odd fixes
8696 F:      Documentation/admin-guide/hw_random.rst
8697 F:      Documentation/devicetree/bindings/rng/
8698 F:      drivers/char/hw_random/
8699 F:      include/linux/hw_random.h
8700
8701 HARDWARE SPINLOCK CORE
8702 M:      Ohad Ben-Cohen <ohad@wizery.com>
8703 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
8704 R:      Baolin Wang <baolin.wang7@gmail.com>
8705 L:      linux-remoteproc@vger.kernel.org
8706 S:      Maintained
8707 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git hwspinlock-next
8708 F:      Documentation/devicetree/bindings/hwlock/
8709 F:      Documentation/locking/hwspinlock.rst
8710 F:      drivers/hwspinlock/
8711 F:      include/linux/hwspinlock.h
8712
8713 HARDWARE TRACING FACILITIES
8714 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
8715 S:      Maintained
8716 F:      drivers/hwtracing/
8717
8718 HARMONY SOUND DRIVER
8719 L:      linux-parisc@vger.kernel.org
8720 S:      Maintained
8721 F:      sound/parisc/harmony.*
8722
8723 HDPVR USB VIDEO ENCODER DRIVER
8724 M:      Hans Verkuil <hverkuil@xs4all.nl>
8725 L:      linux-media@vger.kernel.org
8726 S:      Odd Fixes
8727 W:      https://linuxtv.org
8728 T:      git git://linuxtv.org/media_tree.git
8729 F:      drivers/media/usb/hdpvr/
8730
8731 HEWLETT PACKARD ENTERPRISE ILO CHIF DRIVER
8732 M:      Matt Hsiao <matt.hsiao@hpe.com>
8733 S:      Supported
8734 F:      drivers/misc/hpilo.[ch]
8735
8736 HEWLETT PACKARD ENTERPRISE ILO NMI WATCHDOG DRIVER
8737 M:      Jerry Hoemann <jerry.hoemann@hpe.com>
8738 S:      Supported
8739 F:      Documentation/watchdog/hpwdt.rst
8740 F:      drivers/watchdog/hpwdt.c
8741
8742 HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
8743 M:      Don Brace <don.brace@microchip.com>
8744 L:      storagedev@microchip.com
8745 L:      linux-scsi@vger.kernel.org
8746 S:      Supported
8747 F:      Documentation/scsi/hpsa.rst
8748 F:      drivers/scsi/hpsa*.[ch]
8749 F:      include/linux/cciss*.h
8750 F:      include/uapi/linux/cciss*.h
8751
8752 HFI1 DRIVER
8753 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
8754 L:      linux-rdma@vger.kernel.org
8755 S:      Supported
8756 F:      drivers/infiniband/hw/hfi1
8757
8758 HFS FILESYSTEM
8759 L:      linux-fsdevel@vger.kernel.org
8760 S:      Orphan
8761 F:      Documentation/filesystems/hfs.rst
8762 F:      fs/hfs/
8763
8764 HFSPLUS FILESYSTEM
8765 L:      linux-fsdevel@vger.kernel.org
8766 S:      Orphan
8767 F:      Documentation/filesystems/hfsplus.rst
8768 F:      fs/hfsplus/
8769
8770 HGA FRAMEBUFFER DRIVER
8771 M:      Ferenc Bakonyi <fero@drama.obuda.kando.hu>
8772 L:      linux-nvidia@lists.surfsouth.com
8773 S:      Maintained
8774 W:      http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
8775 F:      drivers/video/fbdev/hgafb.c
8776
8777 HIBERNATION (aka Software Suspend, aka swsusp)
8778 M:      "Rafael J. Wysocki" <rafael@kernel.org>
8779 M:      Pavel Machek <pavel@ucw.cz>
8780 L:      linux-pm@vger.kernel.org
8781 S:      Supported
8782 B:      https://bugzilla.kernel.org
8783 F:      arch/*/include/asm/suspend*.h
8784 F:      arch/x86/power/
8785 F:      drivers/base/power/
8786 F:      include/linux/freezer.h
8787 F:      include/linux/pm.h
8788 F:      include/linux/suspend.h
8789 F:      kernel/power/
8790
8791 HID CORE LAYER
8792 M:      Jiri Kosina <jikos@kernel.org>
8793 M:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
8794 L:      linux-input@vger.kernel.org
8795 S:      Maintained
8796 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
8797 F:      drivers/hid/
8798 F:      include/linux/hid*
8799 F:      include/uapi/linux/hid*
8800
8801 HID LOGITECH DRIVERS
8802 R:      Filipe Laíns <lains@riseup.net>
8803 L:      linux-input@vger.kernel.org
8804 S:      Maintained
8805 F:      drivers/hid/hid-logitech-*
8806
8807 HID PLAYSTATION DRIVER
8808 M:      Roderick Colenbrander <roderick.colenbrander@sony.com>
8809 L:      linux-input@vger.kernel.org
8810 S:      Supported
8811 F:      drivers/hid/hid-playstation.c
8812
8813 HID SENSOR HUB DRIVERS
8814 M:      Jiri Kosina <jikos@kernel.org>
8815 M:      Jonathan Cameron <jic23@kernel.org>
8816 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
8817 L:      linux-input@vger.kernel.org
8818 L:      linux-iio@vger.kernel.org
8819 S:      Maintained
8820 F:      Documentation/hid/hid-sensor*
8821 F:      drivers/hid/hid-sensor-*
8822 F:      drivers/iio/*/hid-*
8823 F:      include/linux/hid-sensor-*
8824
8825 HID WACOM DRIVER
8826 M:      Ping Cheng <ping.cheng@wacom.com>
8827 M:      Jason Gerecke  <jason.gerecke@wacom.com>
8828 L:      linux-input@vger.kernel.org
8829 S:      Maintained
8830 F:      drivers/hid/wacom.h
8831 F:      drivers/hid/wacom_*
8832
8833 HIGH-RESOLUTION TIMERS, CLOCKEVENTS
8834 M:      Thomas Gleixner <tglx@linutronix.de>
8835 L:      linux-kernel@vger.kernel.org
8836 S:      Maintained
8837 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
8838 F:      Documentation/timers/
8839 F:      include/linux/clockchips.h
8840 F:      include/linux/hrtimer.h
8841 F:      kernel/time/clockevents.c
8842 F:      kernel/time/hrtimer.c
8843 F:      kernel/time/timer_*.c
8844
8845 HIGH-SPEED SCC DRIVER FOR AX.25
8846 L:      linux-hams@vger.kernel.org
8847 S:      Orphan
8848 F:      drivers/net/hamradio/scc.c
8849
8850 HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
8851 M:      HighPoint Linux Team <linux@highpoint-tech.com>
8852 S:      Supported
8853 W:      http://www.highpoint-tech.com
8854 F:      Documentation/scsi/hptiop.rst
8855 F:      drivers/scsi/hptiop.c
8856
8857 HIPPI
8858 M:      Jes Sorensen <jes@trained-monkey.org>
8859 L:      linux-hippi@sunsite.dk
8860 S:      Maintained
8861 F:      drivers/net/hippi/
8862 F:      include/linux/hippidevice.h
8863 F:      include/uapi/linux/if_hippi.h
8864 F:      net/802/hippi.c
8865
8866 HIRSCHMANN HELLCREEK ETHERNET SWITCH DRIVER
8867 M:      Kurt Kanzenbach <kurt@linutronix.de>
8868 L:      netdev@vger.kernel.org
8869 S:      Maintained
8870 F:      Documentation/devicetree/bindings/net/dsa/hirschmann,hellcreek.yaml
8871 F:      drivers/net/dsa/hirschmann/*
8872 F:      include/linux/platform_data/hirschmann-hellcreek.h
8873 F:      net/dsa/tag_hellcreek.c
8874
8875 HISILICON DMA DRIVER
8876 M:      Zhou Wang <wangzhou1@hisilicon.com>
8877 L:      dmaengine@vger.kernel.org
8878 S:      Maintained
8879 F:      drivers/dma/hisi_dma.c
8880
8881 HISILICON GPIO DRIVER
8882 M:      Luo Jiaxing <luojiaxing@huawei.com>
8883 L:      linux-gpio@vger.kernel.org
8884 S:      Maintained
8885 F:      drivers/gpio/gpio-hisi.c
8886
8887 HISILICON HIGH PERFORMANCE RSA ENGINE DRIVER (HPRE)
8888 M:      Longfang Liu <liulongfang@huawei.com>
8889 L:      linux-crypto@vger.kernel.org
8890 S:      Maintained
8891 F:      Documentation/ABI/testing/debugfs-hisi-hpre
8892 F:      drivers/crypto/hisilicon/hpre/hpre.h
8893 F:      drivers/crypto/hisilicon/hpre/hpre_crypto.c
8894 F:      drivers/crypto/hisilicon/hpre/hpre_main.c
8895
8896 HISILICON I2C CONTROLLER DRIVER
8897 M:      Yicong Yang <yangyicong@hisilicon.com>
8898 L:      linux-i2c@vger.kernel.org
8899 S:      Maintained
8900 W:      https://www.hisilicon.com
8901 F:      drivers/i2c/busses/i2c-hisi.c
8902
8903 HISILICON LPC BUS DRIVER
8904 M:      john.garry@huawei.com
8905 S:      Maintained
8906 W:      http://www.hisilicon.com
8907 F:      Documentation/devicetree/bindings/arm/hisilicon/low-pin-count.yaml
8908 F:      drivers/bus/hisi_lpc.c
8909
8910 HISILICON NETWORK SUBSYSTEM 3 DRIVER (HNS3)
8911 M:      Yisen Zhuang <yisen.zhuang@huawei.com>
8912 M:      Salil Mehta <salil.mehta@huawei.com>
8913 L:      netdev@vger.kernel.org
8914 S:      Maintained
8915 W:      http://www.hisilicon.com
8916 F:      drivers/net/ethernet/hisilicon/hns3/
8917
8918 HISILICON NETWORK SUBSYSTEM DRIVER
8919 M:      Yisen Zhuang <yisen.zhuang@huawei.com>
8920 M:      Salil Mehta <salil.mehta@huawei.com>
8921 L:      netdev@vger.kernel.org
8922 S:      Maintained
8923 W:      http://www.hisilicon.com
8924 F:      Documentation/devicetree/bindings/net/hisilicon*.txt
8925 F:      drivers/net/ethernet/hisilicon/
8926
8927 HIKEY960 ONBOARD USB GPIO HUB DRIVER
8928 M:      John Stultz <jstultz@google.com>
8929 L:      linux-kernel@vger.kernel.org
8930 S:      Maintained
8931 F:      drivers/misc/hisi_hikey_usb.c
8932
8933 HISILICON PMU DRIVER
8934 M:      Shaokun Zhang <zhangshaokun@hisilicon.com>
8935 M:      Qi Liu <liuqi115@huawei.com>
8936 S:      Supported
8937 W:      http://www.hisilicon.com
8938 F:      Documentation/admin-guide/perf/hisi-pcie-pmu.rst
8939 F:      Documentation/admin-guide/perf/hisi-pmu.rst
8940 F:      drivers/perf/hisilicon
8941
8942 HISILICON QM AND ZIP Controller DRIVER
8943 M:      Zhou Wang <wangzhou1@hisilicon.com>
8944 L:      linux-crypto@vger.kernel.org
8945 S:      Maintained
8946 F:      Documentation/ABI/testing/debugfs-hisi-zip
8947 F:      drivers/crypto/hisilicon/qm.c
8948 F:      drivers/crypto/hisilicon/sgl.c
8949 F:      drivers/crypto/hisilicon/zip/
8950 F:      include/linux/hisi_acc_qm.h
8951
8952 HISILICON ROCE DRIVER
8953 M:      Wenpeng Liang <liangwenpeng@huawei.com>
8954 M:      Weihang Li <liweihang@huawei.com>
8955 L:      linux-rdma@vger.kernel.org
8956 S:      Maintained
8957 F:      Documentation/devicetree/bindings/infiniband/hisilicon-hns-roce.txt
8958 F:      drivers/infiniband/hw/hns/
8959
8960 HISILICON SAS Controller
8961 M:      John Garry <john.garry@huawei.com>
8962 S:      Supported
8963 W:      http://www.hisilicon.com
8964 F:      Documentation/devicetree/bindings/scsi/hisilicon-sas.txt
8965 F:      drivers/scsi/hisi_sas/
8966
8967 HISILICON SECURITY ENGINE V2 DRIVER (SEC2)
8968 M:      Kai Ye <yekai13@huawei.com>
8969 M:      Longfang Liu <liulongfang@huawei.com>
8970 L:      linux-crypto@vger.kernel.org
8971 S:      Maintained
8972 F:      Documentation/ABI/testing/debugfs-hisi-sec
8973 F:      drivers/crypto/hisilicon/sec2/sec.h
8974 F:      drivers/crypto/hisilicon/sec2/sec_crypto.c
8975 F:      drivers/crypto/hisilicon/sec2/sec_crypto.h
8976 F:      drivers/crypto/hisilicon/sec2/sec_main.c
8977
8978 HISILICON SPI Controller DRIVER FOR KUNPENG SOCS
8979 M:      Jay Fang <f.fangjian@huawei.com>
8980 L:      linux-spi@vger.kernel.org
8981 S:      Maintained
8982 W:      http://www.hisilicon.com
8983 F:      drivers/spi/spi-hisi-kunpeng.c
8984
8985 HISILICON SPMI CONTROLLER DRIVER FOR HIKEY 970
8986 M:      Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
8987 L:      linux-kernel@vger.kernel.org
8988 S:      Maintained
8989 F:      Documentation/devicetree/bindings/spmi/hisilicon,hisi-spmi-controller.yaml
8990 F:      drivers/spmi/hisi-spmi-controller.c
8991
8992 HISILICON SPMI PMIC DRIVER FOR HIKEY 6421v600
8993 M:      Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
8994 L:      linux-kernel@vger.kernel.org
8995 S:      Maintained
8996 F:      Documentation/devicetree/bindings/mfd/hisilicon,hi6421-spmi-pmic.yaml
8997 F:      drivers/mfd/hi6421-spmi-pmic.c
8998
8999 HISILICON TRUE RANDOM NUMBER GENERATOR V2 SUPPORT
9000 M:      Weili Qian <qianweili@huawei.com>
9001 S:      Maintained
9002 F:      drivers/crypto/hisilicon/trng/trng.c
9003
9004 HISILICON V3XX SPI NOR FLASH Controller Driver
9005 M:      John Garry <john.garry@huawei.com>
9006 S:      Maintained
9007 W:      http://www.hisilicon.com
9008 F:      drivers/spi/spi-hisi-sfc-v3xx.c
9009
9010 HMM - Heterogeneous Memory Management
9011 M:      Jérôme Glisse <jglisse@redhat.com>
9012 L:      linux-mm@kvack.org
9013 S:      Maintained
9014 F:      Documentation/vm/hmm.rst
9015 F:      include/linux/hmm*
9016 F:      lib/test_hmm*
9017 F:      mm/hmm*
9018 F:      tools/testing/selftests/vm/*hmm*
9019
9020 HOST AP DRIVER
9021 M:      Jouni Malinen <j@w1.fi>
9022 L:      linux-wireless@vger.kernel.org
9023 S:      Obsolete
9024 W:      http://w1.fi/hostap-driver.html
9025 F:      drivers/net/wireless/intersil/hostap/
9026
9027 HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
9028 L:      platform-driver-x86@vger.kernel.org
9029 S:      Orphan
9030 F:      drivers/platform/x86/tc1100-wmi.c
9031
9032 HPET:   High Precision Event Timers driver
9033 M:      Clemens Ladisch <clemens@ladisch.de>
9034 S:      Maintained
9035 F:      Documentation/timers/hpet.rst
9036 F:      drivers/char/hpet.c
9037 F:      include/linux/hpet.h
9038 F:      include/uapi/linux/hpet.h
9039
9040 HPET:   x86
9041 S:      Orphan
9042 F:      arch/x86/include/asm/hpet.h
9043 F:      arch/x86/kernel/hpet.c
9044
9045 HPFS FILESYSTEM
9046 M:      Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
9047 S:      Maintained
9048 W:      http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
9049 F:      fs/hpfs/
9050
9051 HSI SUBSYSTEM
9052 M:      Sebastian Reichel <sre@kernel.org>
9053 S:      Maintained
9054 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git
9055 F:      Documentation/ABI/testing/sysfs-bus-hsi
9056 F:      Documentation/driver-api/hsi.rst
9057 F:      drivers/hsi/
9058 F:      include/linux/hsi/
9059 F:      include/uapi/linux/hsi/
9060
9061 HSO 3G MODEM DRIVER
9062 L:      linux-usb@vger.kernel.org
9063 S:      Orphan
9064 F:      drivers/net/usb/hso.c
9065
9066 HSR NETWORK PROTOCOL
9067 L:      netdev@vger.kernel.org
9068 S:      Orphan
9069 F:      net/hsr/
9070
9071 HT16K33 LED CONTROLLER DRIVER
9072 M:      Robin van der Gracht <robin@protonic.nl>
9073 S:      Maintained
9074 F:      Documentation/devicetree/bindings/auxdisplay/holtek,ht16k33.yaml
9075 F:      drivers/auxdisplay/ht16k33.c
9076
9077 HTCPEN TOUCHSCREEN DRIVER
9078 M:      Pau Oliva Fora <pof@eslack.org>
9079 L:      linux-input@vger.kernel.org
9080 S:      Maintained
9081 F:      drivers/input/touchscreen/htcpen.c
9082
9083 HTE SUBSYSTEM
9084 M:      Dipen Patel <dipenp@nvidia.com>
9085 S:      Maintained
9086 F:      Documentation/devicetree/bindings/timestamp/
9087 F:      Documentation/hte/
9088 F:      drivers/hte/
9089 F:      include/linux/hte.h
9090
9091 HTS221 TEMPERATURE-HUMIDITY IIO DRIVER
9092 M:      Lorenzo Bianconi <lorenzo@kernel.org>
9093 L:      linux-iio@vger.kernel.org
9094 S:      Maintained
9095 W:      http://www.st.com/
9096 F:      Documentation/devicetree/bindings/iio/humidity/st,hts221.yaml
9097 F:      drivers/iio/humidity/hts221*
9098
9099 HUAWEI ETHERNET DRIVER
9100 L:      netdev@vger.kernel.org
9101 S:      Orphan
9102 F:      Documentation/networking/device_drivers/ethernet/huawei/hinic.rst
9103 F:      drivers/net/ethernet/huawei/hinic/
9104
9105 HUGETLB SUBSYSTEM
9106 M:      Mike Kravetz <mike.kravetz@oracle.com>
9107 M:      Muchun Song <songmuchun@bytedance.com>
9108 L:      linux-mm@kvack.org
9109 S:      Maintained
9110 F:      Documentation/ABI/testing/sysfs-kernel-mm-hugepages
9111 F:      Documentation/admin-guide/mm/hugetlbpage.rst
9112 F:      Documentation/vm/hugetlbfs_reserv.rst
9113 F:      Documentation/vm/vmemmap_dedup.rst
9114 F:      fs/hugetlbfs/
9115 F:      include/linux/hugetlb.h
9116 F:      mm/hugetlb.c
9117 F:      mm/hugetlb_vmemmap.c
9118 F:      mm/hugetlb_vmemmap.h
9119
9120 HVA ST MEDIA DRIVER
9121 M:      Jean-Christophe Trotin <jean-christophe.trotin@foss.st.com>
9122 L:      linux-media@vger.kernel.org
9123 S:      Supported
9124 W:      https://linuxtv.org
9125 T:      git git://linuxtv.org/media_tree.git
9126 F:      drivers/media/platform/st/sti/hva
9127
9128 HWPOISON MEMORY FAILURE HANDLING
9129 M:      Naoya Horiguchi <naoya.horiguchi@nec.com>
9130 L:      linux-mm@kvack.org
9131 S:      Maintained
9132 F:      mm/hwpoison-inject.c
9133 F:      mm/memory-failure.c
9134
9135 HYCON HY46XX TOUCHSCREEN SUPPORT
9136 M:      Giulio Benetti <giulio.benetti@benettiengineering.com>
9137 L:      linux-input@vger.kernel.org
9138 S:      Maintained
9139 F:      Documentation/devicetree/bindings/input/touchscreen/hycon,hy46xx.yaml
9140 F:      drivers/input/touchscreen/hycon-hy46xx.c
9141
9142 HYGON PROCESSOR SUPPORT
9143 M:      Pu Wen <puwen@hygon.cn>
9144 L:      linux-kernel@vger.kernel.org
9145 S:      Maintained
9146 F:      arch/x86/kernel/cpu/hygon.c
9147
9148 HYNIX HI556 SENSOR DRIVER
9149 M:      Shawn Tu <shawnx.tu@intel.com>
9150 L:      linux-media@vger.kernel.org
9151 S:      Maintained
9152 T:      git git://linuxtv.org/media_tree.git
9153 F:      drivers/media/i2c/hi556.c
9154
9155 HYNIX HI846 SENSOR DRIVER
9156 M:      Martin Kepplinger <martin.kepplinger@puri.sm>
9157 L:      linux-media@vger.kernel.org
9158 S:      Maintained
9159 F:      drivers/media/i2c/hi846.c
9160
9161 HYNIX HI847 SENSOR DRIVER
9162 M:      Shawn Tu <shawnx.tu@intel.com>
9163 L:      linux-media@vger.kernel.org
9164 S:      Maintained
9165 F:      drivers/media/i2c/hi847.c
9166
9167 Hyper-V/Azure CORE AND DRIVERS
9168 M:      "K. Y. Srinivasan" <kys@microsoft.com>
9169 M:      Haiyang Zhang <haiyangz@microsoft.com>
9170 M:      Stephen Hemminger <sthemmin@microsoft.com>
9171 M:      Wei Liu <wei.liu@kernel.org>
9172 M:      Dexuan Cui <decui@microsoft.com>
9173 L:      linux-hyperv@vger.kernel.org
9174 S:      Supported
9175 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hyperv/linux.git
9176 F:      Documentation/ABI/stable/sysfs-bus-vmbus
9177 F:      Documentation/ABI/testing/debugfs-hyperv
9178 F:      Documentation/networking/device_drivers/ethernet/microsoft/netvsc.rst
9179 F:      arch/arm64/hyperv
9180 F:      arch/arm64/include/asm/hyperv-tlfs.h
9181 F:      arch/arm64/include/asm/mshyperv.h
9182 F:      arch/x86/hyperv
9183 F:      arch/x86/include/asm/hyperv-tlfs.h
9184 F:      arch/x86/include/asm/mshyperv.h
9185 F:      arch/x86/include/asm/trace/hyperv.h
9186 F:      arch/x86/kernel/cpu/mshyperv.c
9187 F:      drivers/clocksource/hyperv_timer.c
9188 F:      drivers/hid/hid-hyperv.c
9189 F:      drivers/hv/
9190 F:      drivers/input/serio/hyperv-keyboard.c
9191 F:      drivers/iommu/hyperv-iommu.c
9192 F:      drivers/net/ethernet/microsoft/
9193 F:      drivers/net/hyperv/
9194 F:      drivers/pci/controller/pci-hyperv-intf.c
9195 F:      drivers/pci/controller/pci-hyperv.c
9196 F:      drivers/scsi/storvsc_drv.c
9197 F:      drivers/uio/uio_hv_generic.c
9198 F:      drivers/video/fbdev/hyperv_fb.c
9199 F:      include/asm-generic/hyperv-tlfs.h
9200 F:      include/asm-generic/mshyperv.h
9201 F:      include/clocksource/hyperv_timer.h
9202 F:      include/linux/hyperv.h
9203 F:      include/uapi/linux/hyperv.h
9204 F:      net/vmw_vsock/hyperv_transport.c
9205 F:      tools/hv/
9206
9207 HYPERBUS SUPPORT
9208 M:      Vignesh Raghavendra <vigneshr@ti.com>
9209 L:      linux-mtd@lists.infradead.org
9210 S:      Supported
9211 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
9212 C:      irc://irc.oftc.net/mtd
9213 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git cfi/next
9214 F:      Documentation/devicetree/bindings/mtd/ti,am654-hbmc.yaml
9215 F:      drivers/mtd/hyperbus/
9216 F:      include/linux/mtd/hyperbus.h
9217
9218 HYPERVISOR VIRTUAL CONSOLE DRIVER
9219 L:      linuxppc-dev@lists.ozlabs.org
9220 S:      Odd Fixes
9221 F:      drivers/tty/hvc/
9222
9223 I2C ACPI SUPPORT
9224 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
9225 L:      linux-i2c@vger.kernel.org
9226 L:      linux-acpi@vger.kernel.org
9227 S:      Maintained
9228 F:      drivers/i2c/i2c-core-acpi.c
9229
9230 I2C CONTROLLER DRIVER FOR NVIDIA GPU
9231 M:      Ajay Gupta <ajayg@nvidia.com>
9232 L:      linux-i2c@vger.kernel.org
9233 S:      Maintained
9234 F:      Documentation/i2c/busses/i2c-nvidia-gpu.rst
9235 F:      drivers/i2c/busses/i2c-nvidia-gpu.c
9236
9237 I2C MUXES
9238 M:      Peter Rosin <peda@axentia.se>
9239 L:      linux-i2c@vger.kernel.org
9240 S:      Maintained
9241 F:      Documentation/devicetree/bindings/i2c/i2c-arb*
9242 F:      Documentation/devicetree/bindings/i2c/i2c-gate*
9243 F:      Documentation/devicetree/bindings/i2c/i2c-mux*
9244 F:      Documentation/i2c/i2c-topology.rst
9245 F:      Documentation/i2c/muxes/
9246 F:      drivers/i2c/i2c-mux.c
9247 F:      drivers/i2c/muxes/
9248 F:      include/linux/i2c-mux.h
9249
9250 I2C MV64XXX MARVELL AND ALLWINNER DRIVER
9251 M:      Gregory CLEMENT <gregory.clement@bootlin.com>
9252 L:      linux-i2c@vger.kernel.org
9253 S:      Maintained
9254 F:      Documentation/devicetree/bindings/i2c/marvell,mv64xxx-i2c.yaml
9255 F:      drivers/i2c/busses/i2c-mv64xxx.c
9256
9257 I2C OVER PARALLEL PORT
9258 M:      Jean Delvare <jdelvare@suse.com>
9259 L:      linux-i2c@vger.kernel.org
9260 S:      Maintained
9261 F:      Documentation/i2c/busses/i2c-parport.rst
9262 F:      drivers/i2c/busses/i2c-parport.c
9263
9264 I2C SUBSYSTEM
9265 M:      Wolfram Sang <wsa@kernel.org>
9266 L:      linux-i2c@vger.kernel.org
9267 S:      Maintained
9268 W:      https://i2c.wiki.kernel.org/
9269 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
9270 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
9271 F:      Documentation/devicetree/bindings/i2c/i2c.txt
9272 F:      Documentation/i2c/
9273 F:      drivers/i2c/*
9274 F:      include/linux/i2c-dev.h
9275 F:      include/linux/i2c-smbus.h
9276 F:      include/linux/i2c.h
9277 F:      include/uapi/linux/i2c-*.h
9278 F:      include/uapi/linux/i2c.h
9279
9280 I2C SUBSYSTEM HOST DRIVERS
9281 L:      linux-i2c@vger.kernel.org
9282 S:      Odd Fixes
9283 W:      https://i2c.wiki.kernel.org/
9284 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
9285 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
9286 F:      Documentation/devicetree/bindings/i2c/
9287 F:      drivers/i2c/algos/
9288 F:      drivers/i2c/busses/
9289
9290 I2C-TAOS-EVM DRIVER
9291 M:      Jean Delvare <jdelvare@suse.com>
9292 L:      linux-i2c@vger.kernel.org
9293 S:      Maintained
9294 F:      Documentation/i2c/busses/i2c-taos-evm.rst
9295 F:      drivers/i2c/busses/i2c-taos-evm.c
9296
9297 I2C-TINY-USB DRIVER
9298 M:      Till Harbaum <till@harbaum.org>
9299 L:      linux-i2c@vger.kernel.org
9300 S:      Maintained
9301 W:      http://www.harbaum.org/till/i2c_tiny_usb
9302 F:      drivers/i2c/busses/i2c-tiny-usb.c
9303
9304 I2C/SMBUS CONTROLLER DRIVERS FOR PC
9305 M:      Jean Delvare <jdelvare@suse.com>
9306 L:      linux-i2c@vger.kernel.org
9307 S:      Maintained
9308 F:      Documentation/i2c/busses/i2c-ali1535.rst
9309 F:      Documentation/i2c/busses/i2c-ali1563.rst
9310 F:      Documentation/i2c/busses/i2c-ali15x3.rst
9311 F:      Documentation/i2c/busses/i2c-amd756.rst
9312 F:      Documentation/i2c/busses/i2c-amd8111.rst
9313 F:      Documentation/i2c/busses/i2c-i801.rst
9314 F:      Documentation/i2c/busses/i2c-nforce2.rst
9315 F:      Documentation/i2c/busses/i2c-piix4.rst
9316 F:      Documentation/i2c/busses/i2c-sis5595.rst
9317 F:      Documentation/i2c/busses/i2c-sis630.rst
9318 F:      Documentation/i2c/busses/i2c-sis96x.rst
9319 F:      Documentation/i2c/busses/i2c-via.rst
9320 F:      Documentation/i2c/busses/i2c-viapro.rst
9321 F:      drivers/i2c/busses/i2c-ali1535.c
9322 F:      drivers/i2c/busses/i2c-ali1563.c
9323 F:      drivers/i2c/busses/i2c-ali15x3.c
9324 F:      drivers/i2c/busses/i2c-amd756-s4882.c
9325 F:      drivers/i2c/busses/i2c-amd756.c
9326 F:      drivers/i2c/busses/i2c-amd8111.c
9327 F:      drivers/i2c/busses/i2c-i801.c
9328 F:      drivers/i2c/busses/i2c-isch.c
9329 F:      drivers/i2c/busses/i2c-nforce2-s4985.c
9330 F:      drivers/i2c/busses/i2c-nforce2.c
9331 F:      drivers/i2c/busses/i2c-piix4.c
9332 F:      drivers/i2c/busses/i2c-sis5595.c
9333 F:      drivers/i2c/busses/i2c-sis630.c
9334 F:      drivers/i2c/busses/i2c-sis96x.c
9335 F:      drivers/i2c/busses/i2c-via.c
9336 F:      drivers/i2c/busses/i2c-viapro.c
9337
9338 I2C/SMBUS INTEL CHT WHISKEY COVE PMIC DRIVER
9339 M:      Hans de Goede <hdegoede@redhat.com>
9340 L:      linux-i2c@vger.kernel.org
9341 S:      Maintained
9342 F:      drivers/i2c/busses/i2c-cht-wc.c
9343
9344 I2C/SMBUS ISMT DRIVER
9345 M:      Seth Heasley <seth.heasley@intel.com>
9346 M:      Neil Horman <nhorman@tuxdriver.com>
9347 L:      linux-i2c@vger.kernel.org
9348 F:      Documentation/i2c/busses/i2c-ismt.rst
9349 F:      drivers/i2c/busses/i2c-ismt.c
9350
9351 I2C/SMBUS STUB DRIVER
9352 M:      Jean Delvare <jdelvare@suse.com>
9353 L:      linux-i2c@vger.kernel.org
9354 S:      Maintained
9355 F:      drivers/i2c/i2c-stub.c
9356
9357 I3C DRIVER FOR CADENCE I3C MASTER IP
9358 M:      Przemysław Gaj <pgaj@cadence.com>
9359 S:      Maintained
9360 F:      Documentation/devicetree/bindings/i3c/cdns,i3c-master.yaml
9361 F:      drivers/i3c/master/i3c-master-cdns.c
9362
9363 I3C DRIVER FOR SYNOPSYS DESIGNWARE
9364 M:      Vitor Soares <vitor.soares@synopsys.com>
9365 S:      Maintained
9366 F:      Documentation/devicetree/bindings/i3c/snps,dw-i3c-master.yaml
9367 F:      drivers/i3c/master/dw*
9368
9369 I3C SUBSYSTEM
9370 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
9371 L:      linux-i3c@lists.infradead.org (moderated for non-subscribers)
9372 S:      Maintained
9373 C:      irc://chat.freenode.net/linux-i3c
9374 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/i3c/linux.git
9375 F:      Documentation/ABI/testing/sysfs-bus-i3c
9376 F:      Documentation/devicetree/bindings/i3c/
9377 F:      Documentation/driver-api/i3c
9378 F:      drivers/i3c/
9379 F:      include/linux/i3c/
9380
9381 IA64 (Itanium) PLATFORM
9382 L:      linux-ia64@vger.kernel.org
9383 S:      Orphan
9384 F:      Documentation/ia64/
9385 F:      arch/ia64/
9386
9387 IBM Power 842 compression accelerator
9388 M:      Haren Myneni <haren@us.ibm.com>
9389 S:      Supported
9390 F:      crypto/842.c
9391 F:      drivers/crypto/nx/Kconfig
9392 F:      drivers/crypto/nx/Makefile
9393 F:      drivers/crypto/nx/nx-842*
9394 F:      include/linux/sw842.h
9395 F:      lib/842/
9396
9397 IBM Power in-Nest Crypto Acceleration
9398 M:      Breno Leitão <leitao@debian.org>
9399 M:      Nayna Jain <nayna@linux.ibm.com>
9400 M:      Paulo Flabiano Smorigo <pfsmorigo@gmail.com>
9401 L:      linux-crypto@vger.kernel.org
9402 S:      Supported
9403 F:      drivers/crypto/nx/Kconfig
9404 F:      drivers/crypto/nx/Makefile
9405 F:      drivers/crypto/nx/nx-aes*
9406 F:      drivers/crypto/nx/nx-sha*
9407 F:      drivers/crypto/nx/nx.*
9408 F:      drivers/crypto/nx/nx_csbcpb.h
9409 F:      drivers/crypto/nx/nx_debugfs.c
9410
9411 IBM Power IO DLPAR Driver for RPA-compliant PPC64 platform
9412 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
9413 L:      linux-pci@vger.kernel.org
9414 L:      linuxppc-dev@lists.ozlabs.org
9415 S:      Supported
9416 F:      drivers/pci/hotplug/rpadlpar*
9417
9418 IBM Power Linux RAID adapter
9419 M:      Brian King <brking@us.ibm.com>
9420 S:      Supported
9421 F:      drivers/scsi/ipr.*
9422
9423 IBM Power PCI Hotplug Driver for RPA-compliant PPC64 platform
9424 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
9425 L:      linux-pci@vger.kernel.org
9426 L:      linuxppc-dev@lists.ozlabs.org
9427 S:      Supported
9428 F:      drivers/pci/hotplug/rpaphp*
9429
9430 IBM Power SRIOV Virtual NIC Device Driver
9431 M:      Dany Madden <drt@linux.ibm.com>
9432 R:      Thomas Falcon <tlfalcon@linux.ibm.com>
9433 L:      netdev@vger.kernel.org
9434 S:      Supported
9435 F:      drivers/net/ethernet/ibm/ibmvnic.*
9436
9437 IBM Power Virtual Accelerator Switchboard
9438 L:      linuxppc-dev@lists.ozlabs.org
9439 S:      Supported
9440 F:      arch/powerpc/include/asm/vas.h
9441 F:      arch/powerpc/platforms/powernv/copy-paste.h
9442 F:      arch/powerpc/platforms/powernv/vas*
9443
9444 IBM Power Virtual Ethernet Device Driver
9445 M:      Cristobal Forno <cforno12@linux.ibm.com>
9446 L:      netdev@vger.kernel.org
9447 S:      Supported
9448 F:      drivers/net/ethernet/ibm/ibmveth.*
9449
9450 IBM Power Virtual FC Device Drivers
9451 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
9452 L:      linux-scsi@vger.kernel.org
9453 S:      Supported
9454 F:      drivers/scsi/ibmvscsi/ibmvfc*
9455
9456 IBM Power Virtual Management Channel Driver
9457 M:      Brad Warrum <bwarrum@linux.ibm.com>
9458 M:      Ritu Agarwal <rituagar@linux.ibm.com>
9459 S:      Supported
9460 F:      drivers/misc/ibmvmc.*
9461
9462 IBM Power Virtual SCSI Device Drivers
9463 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
9464 L:      linux-scsi@vger.kernel.org
9465 S:      Supported
9466 F:      drivers/scsi/ibmvscsi/ibmvscsi*
9467 F:      include/scsi/viosrp.h
9468
9469 IBM Power Virtual SCSI Device Target Driver
9470 M:      Michael Cyr <mikecyr@linux.ibm.com>
9471 L:      linux-scsi@vger.kernel.org
9472 L:      target-devel@vger.kernel.org
9473 S:      Supported
9474 F:      drivers/scsi/ibmvscsi_tgt/
9475
9476 IBM Power VMX Cryptographic instructions
9477 M:      Breno Leitão <leitao@debian.org>
9478 M:      Nayna Jain <nayna@linux.ibm.com>
9479 M:      Paulo Flabiano Smorigo <pfsmorigo@gmail.com>
9480 L:      linux-crypto@vger.kernel.org
9481 S:      Supported
9482 F:      drivers/crypto/vmx/Kconfig
9483 F:      drivers/crypto/vmx/Makefile
9484 F:      drivers/crypto/vmx/aes*
9485 F:      drivers/crypto/vmx/ghash*
9486 F:      drivers/crypto/vmx/ppc-xlate.pl
9487 F:      drivers/crypto/vmx/vmx.c
9488
9489 IBM ServeRAID RAID DRIVER
9490 S:      Orphan
9491 F:      drivers/scsi/ips.*
9492
9493 ICH LPC AND GPIO DRIVER
9494 M:      Peter Tyser <ptyser@xes-inc.com>
9495 S:      Maintained
9496 F:      drivers/gpio/gpio-ich.c
9497 F:      drivers/mfd/lpc_ich.c
9498
9499 ICY I2C DRIVER
9500 M:      Max Staudt <max@enpas.org>
9501 L:      linux-i2c@vger.kernel.org
9502 S:      Maintained
9503 F:      drivers/i2c/busses/i2c-icy.c
9504
9505 IDEAPAD LAPTOP EXTRAS DRIVER
9506 M:      Ike Panhc <ike.pan@canonical.com>
9507 L:      platform-driver-x86@vger.kernel.org
9508 S:      Maintained
9509 W:      http://launchpad.net/ideapad-laptop
9510 F:      drivers/platform/x86/ideapad-laptop.c
9511
9512 IDEAPAD LAPTOP SLIDEBAR DRIVER
9513 M:      Andrey Moiseev <o2g.org.ru@gmail.com>
9514 L:      linux-input@vger.kernel.org
9515 S:      Maintained
9516 W:      https://github.com/o2genum/ideapad-slidebar
9517 F:      drivers/input/misc/ideapad_slidebar.c
9518
9519 IDMAPPED MOUNTS
9520 M:      Christian Brauner <brauner@kernel.org>
9521 L:      linux-fsdevel@vger.kernel.org
9522 S:      Maintained
9523 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brauner/linux.git
9524 F:      Documentation/filesystems/idmappings.rst
9525 F:      tools/testing/selftests/mount_setattr/
9526 F:      include/linux/mnt_idmapping.h
9527
9528 IDT VersaClock 5 CLOCK DRIVER
9529 M:      Luca Ceresoli <luca@lucaceresoli.net>
9530 S:      Maintained
9531 F:      Documentation/devicetree/bindings/clock/idt,versaclock5.yaml
9532 F:      drivers/clk/clk-versaclock5.c
9533
9534 IEEE 802.15.4 SUBSYSTEM
9535 M:      Alexander Aring <alex.aring@gmail.com>
9536 M:      Stefan Schmidt <stefan@datenfreihafen.org>
9537 L:      linux-wpan@vger.kernel.org
9538 S:      Maintained
9539 W:      https://linux-wpan.org/
9540 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan.git
9541 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan-next.git
9542 F:      Documentation/networking/ieee802154.rst
9543 F:      drivers/net/ieee802154/
9544 F:      include/linux/ieee802154.h
9545 F:      include/linux/nl802154.h
9546 F:      include/net/af_ieee802154.h
9547 F:      include/net/cfg802154.h
9548 F:      include/net/ieee802154_netdev.h
9549 F:      include/net/mac802154.h
9550 F:      include/net/nl802154.h
9551 F:      net/ieee802154/
9552 F:      net/mac802154/
9553
9554 IFE PROTOCOL
9555 M:      Yotam Gigi <yotam.gi@gmail.com>
9556 M:      Jamal Hadi Salim <jhs@mojatatu.com>
9557 F:      include/net/ife.h
9558 F:      include/uapi/linux/ife.h
9559 F:      net/ife
9560
9561 IGORPLUG-USB IR RECEIVER
9562 M:      Sean Young <sean@mess.org>
9563 L:      linux-media@vger.kernel.org
9564 S:      Maintained
9565 F:      drivers/media/rc/igorplugusb.c
9566
9567 IGUANAWORKS USB IR TRANSCEIVER
9568 M:      Sean Young <sean@mess.org>
9569 L:      linux-media@vger.kernel.org
9570 S:      Maintained
9571 F:      drivers/media/rc/iguanair.c
9572
9573 IIO DIGITAL POTENTIOMETER DAC
9574 M:      Peter Rosin <peda@axentia.se>
9575 L:      linux-iio@vger.kernel.org
9576 S:      Maintained
9577 F:      Documentation/ABI/testing/sysfs-bus-iio-dac-dpot-dac
9578 F:      Documentation/devicetree/bindings/iio/dac/dpot-dac.yaml
9579 F:      drivers/iio/dac/dpot-dac.c
9580
9581 IIO ENVELOPE DETECTOR
9582 M:      Peter Rosin <peda@axentia.se>
9583 L:      linux-iio@vger.kernel.org
9584 S:      Maintained
9585 F:      Documentation/ABI/testing/sysfs-bus-iio-adc-envelope-detector
9586 F:      Documentation/devicetree/bindings/iio/adc/envelope-detector.yaml
9587 F:      drivers/iio/adc/envelope-detector.c
9588
9589 IIO MULTIPLEXER
9590 M:      Peter Rosin <peda@axentia.se>
9591 L:      linux-iio@vger.kernel.org
9592 S:      Maintained
9593 F:      Documentation/devicetree/bindings/iio/multiplexer/io-channel-mux.yaml
9594 F:      drivers/iio/multiplexer/iio-mux.c
9595
9596 IIO SCMI BASED DRIVER
9597 M:      Jyoti Bhayana <jbhayana@google.com>
9598 L:      linux-iio@vger.kernel.org
9599 S:      Maintained
9600 F:      drivers/iio/common/scmi_sensors/scmi_iio.c
9601
9602 IIO SUBSYSTEM AND DRIVERS
9603 M:      Jonathan Cameron <jic23@kernel.org>
9604 R:      Lars-Peter Clausen <lars@metafoo.de>
9605 L:      linux-iio@vger.kernel.org
9606 S:      Maintained
9607 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
9608 F:      Documentation/ABI/testing/configfs-iio*
9609 F:      Documentation/ABI/testing/sysfs-bus-iio*
9610 F:      Documentation/devicetree/bindings/iio/
9611 F:      drivers/iio/
9612 F:      drivers/staging/iio/
9613 F:      include/linux/iio/
9614 F:      tools/iio/
9615
9616 IIO UNIT CONVERTER
9617 M:      Peter Rosin <peda@axentia.se>
9618 L:      linux-iio@vger.kernel.org
9619 S:      Maintained
9620 F:      Documentation/devicetree/bindings/iio/afe/current-sense-amplifier.yaml
9621 F:      Documentation/devicetree/bindings/iio/afe/current-sense-shunt.yaml
9622 F:      Documentation/devicetree/bindings/iio/afe/voltage-divider.yaml
9623 F:      drivers/iio/afe/iio-rescale.c
9624
9625 IKANOS/ADI EAGLE ADSL USB DRIVER
9626 M:      Matthieu Castet <castet.matthieu@free.fr>
9627 M:      Stanislaw Gruszka <stf_xl@wp.pl>
9628 S:      Maintained
9629 F:      drivers/usb/atm/ueagle-atm.c
9630
9631 IMAGIS TOUCHSCREEN DRIVER
9632 M:      Markuss Broks <markuss.broks@gmail.com>
9633 S:      Maintained
9634 F:      Documentation/devicetree/bindings/input/touchscreen/imagis,ist3038c.yaml
9635 F:      drivers/input/touchscreen/imagis.c
9636
9637 IMGTEC ASCII LCD DRIVER
9638 M:      Paul Burton <paulburton@kernel.org>
9639 S:      Maintained
9640 F:      Documentation/devicetree/bindings/auxdisplay/img,ascii-lcd.yaml
9641 F:      drivers/auxdisplay/img-ascii-lcd.c
9642
9643 IMGTEC IR DECODER DRIVER
9644 S:      Orphan
9645 F:      drivers/media/rc/img-ir/
9646
9647 IMON SOUNDGRAPH USB IR RECEIVER
9648 M:      Sean Young <sean@mess.org>
9649 L:      linux-media@vger.kernel.org
9650 S:      Maintained
9651 F:      drivers/media/rc/imon.c
9652 F:      drivers/media/rc/imon_raw.c
9653
9654 IMS TWINTURBO FRAMEBUFFER DRIVER
9655 L:      linux-fbdev@vger.kernel.org
9656 S:      Orphan
9657 F:      drivers/video/fbdev/imsttfb.c
9658
9659 INA209 HARDWARE MONITOR DRIVER
9660 M:      Guenter Roeck <linux@roeck-us.net>
9661 L:      linux-hwmon@vger.kernel.org
9662 S:      Maintained
9663 F:      Documentation/devicetree/bindings/hwmon/ti,ina2xx.yaml
9664 F:      Documentation/hwmon/ina209.rst
9665 F:      drivers/hwmon/ina209.c
9666
9667 INA2XX HARDWARE MONITOR DRIVER
9668 M:      Guenter Roeck <linux@roeck-us.net>
9669 L:      linux-hwmon@vger.kernel.org
9670 S:      Maintained
9671 F:      Documentation/hwmon/ina2xx.rst
9672 F:      drivers/hwmon/ina2xx.c
9673 F:      include/linux/platform_data/ina2xx.h
9674
9675 INDUSTRY PACK SUBSYSTEM (IPACK)
9676 M:      Samuel Iglesias Gonsalvez <siglesias@igalia.com>
9677 M:      Jens Taprogge <jens.taprogge@taprogge.org>
9678 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
9679 L:      industrypack-devel@lists.sourceforge.net
9680 S:      Maintained
9681 W:      http://industrypack.sourceforge.net
9682 F:      drivers/ipack/
9683
9684 INFINEON DPS310 Driver
9685 M:      Eddie James <eajames@linux.ibm.com>
9686 L:      linux-iio@vger.kernel.org
9687 S:      Maintained
9688 F:      drivers/iio/pressure/dps310.c
9689
9690 INFINIBAND SUBSYSTEM
9691 M:      Jason Gunthorpe <jgg@nvidia.com>
9692 M:      Leon Romanovsky <leonro@nvidia.com>
9693 L:      linux-rdma@vger.kernel.org
9694 S:      Supported
9695 W:      https://github.com/linux-rdma/rdma-core
9696 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
9697 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rdma/rdma.git
9698 F:      Documentation/devicetree/bindings/infiniband/
9699 F:      Documentation/infiniband/
9700 F:      drivers/infiniband/
9701 F:      include/rdma/
9702 F:      include/trace/events/ib_mad.h
9703 F:      include/trace/events/ib_umad.h
9704 F:      include/uapi/linux/if_infiniband.h
9705 F:      include/uapi/rdma/
9706 F:      samples/bpf/ibumad_kern.c
9707 F:      samples/bpf/ibumad_user.c
9708
9709 INGENIC JZ4780 NAND DRIVER
9710 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
9711 L:      linux-mtd@lists.infradead.org
9712 L:      linux-mips@vger.kernel.org
9713 S:      Maintained
9714 F:      drivers/mtd/nand/raw/ingenic/
9715
9716 INGENIC JZ47xx SoCs
9717 M:      Paul Cercueil <paul@crapouillou.net>
9718 L:      linux-mips@vger.kernel.org
9719 S:      Maintained
9720 F:      arch/mips/boot/dts/ingenic/
9721 F:      arch/mips/generic/board-ingenic.c
9722 F:      arch/mips/include/asm/mach-ingenic/
9723 F:      arch/mips/ingenic/Kconfig
9724 F:      drivers/clk/ingenic/
9725 F:      drivers/dma/dma-jz4780.c
9726 F:      drivers/gpu/drm/ingenic/
9727 F:      drivers/i2c/busses/i2c-jz4780.c
9728 F:      drivers/iio/adc/ingenic-adc.c
9729 F:      drivers/irqchip/irq-ingenic.c
9730 F:      drivers/memory/jz4780-nemc.c
9731 F:      drivers/mmc/host/jz4740_mmc.c
9732 F:      drivers/mtd/nand/raw/ingenic/
9733 F:      drivers/pinctrl/pinctrl-ingenic.c
9734 F:      drivers/power/supply/ingenic-battery.c
9735 F:      drivers/pwm/pwm-jz4740.c
9736 F:      drivers/remoteproc/ingenic_rproc.c
9737 F:      drivers/rtc/rtc-jz4740.c
9738 F:      drivers/tty/serial/8250/8250_ingenic.c
9739 F:      drivers/usb/musb/jz4740.c
9740 F:      drivers/watchdog/jz4740_wdt.c
9741 F:      include/dt-bindings/iio/adc/ingenic,adc.h
9742 F:      include/linux/mfd/ingenic-tcu.h
9743 F:      sound/soc/codecs/jz47*
9744 F:      sound/soc/jz4740/
9745
9746 INJOINIC IP5xxx POWER BANK IC DRIVER
9747 M:      Samuel Holland <samuel@sholland.org>
9748 S:      Maintained
9749 F:      drivers/power/supply/ip5xxx_power.c
9750
9751 INOTIFY
9752 M:      Jan Kara <jack@suse.cz>
9753 R:      Amir Goldstein <amir73il@gmail.com>
9754 L:      linux-fsdevel@vger.kernel.org
9755 S:      Maintained
9756 F:      Documentation/filesystems/inotify.rst
9757 F:      fs/notify/inotify/
9758 F:      include/linux/inotify.h
9759 F:      include/uapi/linux/inotify.h
9760
9761 INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
9762 M:      Dmitry Torokhov <dmitry.torokhov@gmail.com>
9763 L:      linux-input@vger.kernel.org
9764 S:      Maintained
9765 Q:      http://patchwork.kernel.org/project/linux-input/list/
9766 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
9767 F:      Documentation/devicetree/bindings/input/
9768 F:      Documentation/devicetree/bindings/serio/
9769 F:      Documentation/input/
9770 F:      drivers/input/
9771 F:      include/linux/input.h
9772 F:      include/linux/input/
9773 F:      include/uapi/linux/input-event-codes.h
9774 F:      include/uapi/linux/input.h
9775
9776 INPUT MULTITOUCH (MT) PROTOCOL
9777 M:      Henrik Rydberg <rydberg@bitmath.org>
9778 L:      linux-input@vger.kernel.org
9779 S:      Odd fixes
9780 F:      Documentation/input/multi-touch-protocol.rst
9781 F:      drivers/input/input-mt.c
9782 K:      \b(ABS|SYN)_MT_
9783
9784 INSIDE SECURE CRYPTO DRIVER
9785 M:      Antoine Tenart <atenart@kernel.org>
9786 L:      linux-crypto@vger.kernel.org
9787 S:      Maintained
9788 F:      drivers/crypto/inside-secure/
9789
9790 INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
9791 M:      Mimi Zohar <zohar@linux.ibm.com>
9792 M:      Dmitry Kasatkin <dmitry.kasatkin@gmail.com>
9793 L:      linux-integrity@vger.kernel.org
9794 S:      Supported
9795 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/zohar/linux-integrity.git
9796 F:      security/integrity/ima/
9797 F:      security/integrity/
9798
9799 INTEL 810/815 FRAMEBUFFER DRIVER
9800 M:      Antonino Daplas <adaplas@gmail.com>
9801 L:      linux-fbdev@vger.kernel.org
9802 S:      Maintained
9803 F:      drivers/video/fbdev/i810/
9804
9805 INTEL ASoC DRIVERS
9806 M:      Cezary Rojewski <cezary.rojewski@intel.com>
9807 M:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
9808 M:      Liam Girdwood <liam.r.girdwood@linux.intel.com>
9809 M:      Jie Yang <yang.jie@linux.intel.com>
9810 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
9811 S:      Supported
9812 F:      sound/soc/intel/
9813
9814 INTEL ATOMISP2 DUMMY / POWER-MANAGEMENT DRIVER
9815 M:      Hans de Goede <hdegoede@redhat.com>
9816 L:      platform-driver-x86@vger.kernel.org
9817 S:      Maintained
9818 F:      drivers/platform/x86/intel/atomisp2/pm.c
9819
9820 INTEL ATOMISP2 LED DRIVER
9821 M:      Hans de Goede <hdegoede@redhat.com>
9822 L:      platform-driver-x86@vger.kernel.org
9823 S:      Maintained
9824 F:      drivers/platform/x86/intel/atomisp2/led.c
9825
9826 INTEL BIOS SAR INT1092 DRIVER
9827 M:      Shravan Sudhakar <s.shravan@intel.com>
9828 M:      Intel Corporation <linuxwwan@intel.com>
9829 L:      platform-driver-x86@vger.kernel.org
9830 S:      Maintained
9831 F:      drivers/platform/x86/intel/int1092/
9832
9833 INTEL BROXTON PMC DRIVER
9834 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
9835 M:      Zha Qipeng <qipeng.zha@intel.com>
9836 S:      Maintained
9837 F:      drivers/mfd/intel_pmc_bxt.c
9838 F:      include/linux/mfd/intel_pmc_bxt.h
9839
9840 INTEL C600 SERIES SAS CONTROLLER DRIVER
9841 M:      Artur Paszkiewicz <artur.paszkiewicz@intel.com>
9842 L:      linux-scsi@vger.kernel.org
9843 S:      Supported
9844 T:      git git://git.code.sf.net/p/intel-sas/isci
9845 F:      drivers/scsi/isci/
9846
9847 INTEL CPU family model numbers
9848 M:      Tony Luck <tony.luck@intel.com>
9849 M:      x86@kernel.org
9850 L:      linux-kernel@vger.kernel.org
9851 S:      Supported
9852 F:      arch/x86/include/asm/intel-family.h
9853
9854 INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
9855 M:      Jani Nikula <jani.nikula@linux.intel.com>
9856 M:      Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
9857 M:      Rodrigo Vivi <rodrigo.vivi@intel.com>
9858 M:      Tvrtko Ursulin <tvrtko.ursulin@linux.intel.com>
9859 L:      intel-gfx@lists.freedesktop.org
9860 S:      Supported
9861 W:      https://01.org/linuxgraphics/
9862 Q:      http://patchwork.freedesktop.org/project/intel-gfx/
9863 B:      https://gitlab.freedesktop.org/drm/intel/-/wikis/How-to-file-i915-bugs
9864 C:      irc://irc.oftc.net/intel-gfx
9865 T:      git git://anongit.freedesktop.org/drm-intel
9866 F:      Documentation/gpu/i915.rst
9867 F:      drivers/gpu/drm/i915/
9868 F:      include/drm/i915*
9869 F:      include/uapi/drm/i915_drm.h
9870
9871 INTEL ETHERNET DRIVERS
9872 M:      Jesse Brandeburg <jesse.brandeburg@intel.com>
9873 M:      Tony Nguyen <anthony.l.nguyen@intel.com>
9874 L:      intel-wired-lan@lists.osuosl.org (moderated for non-subscribers)
9875 S:      Supported
9876 W:      http://www.intel.com/support/feedback.htm
9877 W:      http://e1000.sourceforge.net/
9878 Q:      http://patchwork.ozlabs.org/project/intel-wired-lan/list/
9879 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tnguy/net-queue.git
9880 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tnguy/next-queue.git
9881 F:      Documentation/networking/device_drivers/ethernet/intel/
9882 F:      drivers/net/ethernet/intel/
9883 F:      drivers/net/ethernet/intel/*/
9884 F:      include/linux/avf/virtchnl.h
9885 F:      include/linux/net/intel/iidc.h
9886
9887 INTEL ETHERNET PROTOCOL DRIVER FOR RDMA
9888 M:      Mustafa Ismail <mustafa.ismail@intel.com>
9889 M:      Shiraz Saleem <shiraz.saleem@intel.com>
9890 L:      linux-rdma@vger.kernel.org
9891 S:      Supported
9892 F:      drivers/infiniband/hw/irdma/
9893 F:      include/uapi/rdma/irdma-abi.h
9894
9895 INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
9896 M:      Maik Broemme <mbroemme@libmpq.org>
9897 L:      linux-fbdev@vger.kernel.org
9898 S:      Maintained
9899 F:      Documentation/fb/intelfb.rst
9900 F:      drivers/video/fbdev/intelfb/
9901
9902 INTEL GPIO DRIVERS
9903 M:      Andy Shevchenko <andy@kernel.org>
9904 L:      linux-gpio@vger.kernel.org
9905 S:      Supported
9906 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
9907 F:      drivers/gpio/gpio-ich.c
9908 F:      drivers/gpio/gpio-merrifield.c
9909 F:      drivers/gpio/gpio-ml-ioh.c
9910 F:      drivers/gpio/gpio-pch.c
9911 F:      drivers/gpio/gpio-sch.c
9912 F:      drivers/gpio/gpio-sodaville.c
9913
9914 INTEL GVT-g DRIVERS (Intel GPU Virtualization)
9915 M:      Zhenyu Wang <zhenyuw@linux.intel.com>
9916 M:      Zhi Wang <zhi.a.wang@intel.com>
9917 L:      intel-gvt-dev@lists.freedesktop.org
9918 L:      intel-gfx@lists.freedesktop.org
9919 S:      Supported
9920 W:      https://01.org/igvt-g
9921 T:      git https://github.com/intel/gvt-linux.git
9922 F:      drivers/gpu/drm/i915/gvt/
9923
9924 INTEL HID EVENT DRIVER
9925 M:      Alex Hung <alex.hung@canonical.com>
9926 L:      platform-driver-x86@vger.kernel.org
9927 S:      Maintained
9928 F:      drivers/platform/x86/intel/hid.c
9929
9930 INTEL I/OAT DMA DRIVER
9931 M:      Dave Jiang <dave.jiang@intel.com>
9932 R:      Dan Williams <dan.j.williams@intel.com>
9933 L:      dmaengine@vger.kernel.org
9934 S:      Supported
9935 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
9936 F:      drivers/dma/ioat*
9937
9938 INTEL IDXD DRIVER
9939 M:      Fenghua Yu <fenghua.yu@intel.com>
9940 M:      Dave Jiang <dave.jiang@intel.com>
9941 L:      dmaengine@vger.kernel.org
9942 S:      Supported
9943 F:      drivers/dma/idxd/*
9944 F:      include/uapi/linux/idxd.h
9945
9946 INTEL IDLE DRIVER
9947 M:      Jacob Pan <jacob.jun.pan@linux.intel.com>
9948 M:      Len Brown <lenb@kernel.org>
9949 L:      linux-pm@vger.kernel.org
9950 S:      Supported
9951 B:      https://bugzilla.kernel.org
9952 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
9953 F:      drivers/idle/intel_idle.c
9954
9955 INTEL IN FIELD SCAN (IFS) DEVICE
9956 M:      Jithu Joseph <jithu.joseph@intel.com>
9957 R:      Ashok Raj <ashok.raj@intel.com>
9958 R:      Tony Luck <tony.luck@intel.com>
9959 S:      Maintained
9960 F:      drivers/platform/x86/intel/ifs
9961 F:      include/trace/events/intel_ifs.h
9962
9963 INTEL INTEGRATED SENSOR HUB DRIVER
9964 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
9965 M:      Jiri Kosina <jikos@kernel.org>
9966 L:      linux-input@vger.kernel.org
9967 S:      Maintained
9968 F:      drivers/hid/intel-ish-hid/
9969
9970 INTEL IOMMU (VT-d)
9971 M:      David Woodhouse <dwmw2@infradead.org>
9972 M:      Lu Baolu <baolu.lu@linux.intel.com>
9973 L:      iommu@lists.linux-foundation.org
9974 S:      Supported
9975 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
9976 F:      drivers/iommu/intel/
9977 F:      include/linux/intel-iommu.h
9978 F:      include/linux/intel-svm.h
9979
9980 INTEL IOP-ADMA DMA DRIVER
9981 R:      Dan Williams <dan.j.williams@intel.com>
9982 S:      Odd fixes
9983 F:      drivers/dma/iop-adma.c
9984
9985 INTEL IPU3 CSI-2 CIO2 DRIVER
9986 M:      Yong Zhi <yong.zhi@intel.com>
9987 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
9988 M:      Bingbu Cao <bingbu.cao@intel.com>
9989 M:      Dan Scally <djrscally@gmail.com>
9990 R:      Tianshu Qiu <tian.shu.qiu@intel.com>
9991 L:      linux-media@vger.kernel.org
9992 S:      Maintained
9993 T:      git git://linuxtv.org/media_tree.git
9994 F:      Documentation/userspace-api/media/v4l/pixfmt-srggb10-ipu3.rst
9995 F:      drivers/media/pci/intel/ipu3/
9996
9997 INTEL IPU3 CSI-2 IMGU DRIVER
9998 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
9999 R:      Bingbu Cao <bingbu.cao@intel.com>
10000 R:      Tianshu Qiu <tian.shu.qiu@intel.com>
10001 L:      linux-media@vger.kernel.org
10002 S:      Maintained
10003 F:      Documentation/admin-guide/media/ipu3.rst
10004 F:      Documentation/admin-guide/media/ipu3_rcb.svg
10005 F:      Documentation/userspace-api/media/v4l/pixfmt-meta-intel-ipu3.rst
10006 F:      drivers/staging/media/ipu3/
10007
10008 INTEL IXP4XX CRYPTO SUPPORT
10009 M:      Corentin Labbe <clabbe@baylibre.com>
10010 L:      linux-crypto@vger.kernel.org
10011 S:      Maintained
10012 F:      drivers/crypto/ixp4xx_crypto.c
10013
10014 INTEL ISHTP ECLITE DRIVER
10015 M:      Sumesh K Naduvalath <sumesh.k.naduvalath@intel.com>
10016 L:      platform-driver-x86@vger.kernel.org
10017 S:      Supported
10018 F:      drivers/platform/x86/intel/ishtp_eclite.c
10019
10020 INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
10021 M:      Krzysztof Halasa <khalasa@piap.pl>
10022 S:      Maintained
10023 F:      drivers/net/ethernet/xscale/ixp4xx_eth.c
10024 F:      drivers/net/wan/ixp4xx_hss.c
10025 F:      drivers/soc/ixp4xx/ixp4xx-npe.c
10026 F:      drivers/soc/ixp4xx/ixp4xx-qmgr.c
10027 F:      include/linux/soc/ixp4xx/npe.h
10028 F:      include/linux/soc/ixp4xx/qmgr.h
10029
10030 INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
10031 M:      Deepak Saxena <dsaxena@plexity.net>
10032 S:      Maintained
10033 F:      Documentation/devicetree/bindings/rng/intel,ixp46x-rng.yaml
10034 F:      drivers/char/hw_random/ixp4xx-rng.c
10035
10036 INTEL KEEM BAY DRM DRIVER
10037 M:      Anitha Chrisanthus <anitha.chrisanthus@intel.com>
10038 M:      Edmund Dea <edmund.j.dea@intel.com>
10039 S:      Maintained
10040 F:      Documentation/devicetree/bindings/display/intel,keembay-display.yaml
10041 F:      drivers/gpu/drm/kmb/
10042
10043 INTEL KEEM BAY OCS AES/SM4 CRYPTO DRIVER
10044 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
10045 S:      Maintained
10046 F:      Documentation/devicetree/bindings/crypto/intel,keembay-ocs-aes.yaml
10047 F:      drivers/crypto/keembay/Kconfig
10048 F:      drivers/crypto/keembay/Makefile
10049 F:      drivers/crypto/keembay/keembay-ocs-aes-core.c
10050 F:      drivers/crypto/keembay/ocs-aes.c
10051 F:      drivers/crypto/keembay/ocs-aes.h
10052
10053 INTEL KEEM BAY OCS ECC CRYPTO DRIVER
10054 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
10055 M:      Prabhjot Khurana <prabhjot.khurana@intel.com>
10056 M:      Mark Gross <mgross@linux.intel.com>
10057 S:      Maintained
10058 F:      Documentation/devicetree/bindings/crypto/intel,keembay-ocs-ecc.yaml
10059 F:      drivers/crypto/keembay/Kconfig
10060 F:      drivers/crypto/keembay/Makefile
10061 F:      drivers/crypto/keembay/keembay-ocs-ecc.c
10062
10063 INTEL KEEM BAY OCS HCU CRYPTO DRIVER
10064 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
10065 M:      Declan Murphy <declan.murphy@intel.com>
10066 S:      Maintained
10067 F:      Documentation/devicetree/bindings/crypto/intel,keembay-ocs-hcu.yaml
10068 F:      drivers/crypto/keembay/Kconfig
10069 F:      drivers/crypto/keembay/Makefile
10070 F:      drivers/crypto/keembay/keembay-ocs-hcu-core.c
10071 F:      drivers/crypto/keembay/ocs-hcu.c
10072 F:      drivers/crypto/keembay/ocs-hcu.h
10073
10074 INTEL THUNDER BAY EMMC PHY DRIVER
10075 M:      Nandhini Srikandan <nandhini.srikandan@intel.com>
10076 M:      Rashmi A <rashmi.a@intel.com>
10077 S:      Maintained
10078 F:      Documentation/devicetree/bindings/phy/intel,phy-thunderbay-emmc.yaml
10079 F:      drivers/phy/intel/phy-intel-thunderbay-emmc.c
10080
10081 INTEL MANAGEMENT ENGINE (mei)
10082 M:      Tomas Winkler <tomas.winkler@intel.com>
10083 L:      linux-kernel@vger.kernel.org
10084 S:      Supported
10085 F:      Documentation/driver-api/mei/*
10086 F:      drivers/misc/mei/
10087 F:      drivers/watchdog/mei_wdt.c
10088 F:      include/linux/mei_aux.h
10089 F:      include/linux/mei_cl_bus.h
10090 F:      include/uapi/linux/mei.h
10091 F:      samples/mei/*
10092
10093 INTEL MAX 10 BMC MFD DRIVER
10094 M:      Xu Yilun <yilun.xu@intel.com>
10095 R:      Tom Rix <trix@redhat.com>
10096 S:      Maintained
10097 F:      Documentation/ABI/testing/sysfs-driver-intel-m10-bmc
10098 F:      Documentation/hwmon/intel-m10-bmc-hwmon.rst
10099 F:      drivers/hwmon/intel-m10-bmc-hwmon.c
10100 F:      drivers/mfd/intel-m10-bmc.c
10101 F:      include/linux/mfd/intel-m10-bmc.h
10102
10103 INTEL MENLOW THERMAL DRIVER
10104 M:      Sujith Thomas <sujith.thomas@intel.com>
10105 L:      linux-pm@vger.kernel.org
10106 S:      Supported
10107 W:      https://01.org/linux-acpi
10108 F:      drivers/thermal/intel/intel_menlow.c
10109
10110 INTEL P-Unit IPC DRIVER
10111 M:      Zha Qipeng <qipeng.zha@intel.com>
10112 L:      platform-driver-x86@vger.kernel.org
10113 S:      Maintained
10114 F:      arch/x86/include/asm/intel_punit_ipc.h
10115 F:      drivers/platform/x86/intel/punit_ipc.c
10116
10117 INTEL PMC CORE DRIVER
10118 M:      Rajneesh Bhardwaj <irenic.rajneesh@gmail.com>
10119 M:      David E Box <david.e.box@intel.com>
10120 L:      platform-driver-x86@vger.kernel.org
10121 S:      Maintained
10122 F:      Documentation/ABI/testing/sysfs-platform-intel-pmc
10123 F:      drivers/platform/x86/intel/pmc/
10124
10125 INTEL PMIC GPIO DRIVERS
10126 M:      Andy Shevchenko <andy@kernel.org>
10127 S:      Supported
10128 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
10129 F:      drivers/gpio/gpio-*cove.c
10130
10131 INTEL PMIC MULTIFUNCTION DEVICE DRIVERS
10132 M:      Andy Shevchenko <andy@kernel.org>
10133 S:      Maintained
10134 F:      drivers/mfd/intel_soc_pmic*
10135 F:      include/linux/mfd/intel_soc_pmic*
10136
10137 INTEL PMT DRIVERS
10138 M:      David E. Box <david.e.box@linux.intel.com>
10139 S:      Supported
10140 F:      drivers/platform/x86/intel/pmt/
10141
10142 INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
10143 M:      Stanislav Yakovlev <stas.yakovlev@gmail.com>
10144 L:      linux-wireless@vger.kernel.org
10145 S:      Maintained
10146 F:      Documentation/networking/device_drivers/wifi/intel/ipw2100.rst
10147 F:      Documentation/networking/device_drivers/wifi/intel/ipw2200.rst
10148 F:      drivers/net/wireless/intel/ipw2x00/
10149
10150 INTEL PSTATE DRIVER
10151 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
10152 M:      Len Brown <lenb@kernel.org>
10153 L:      linux-pm@vger.kernel.org
10154 S:      Supported
10155 F:      drivers/cpufreq/intel_pstate.c
10156
10157 INTEL QUADRATURE ENCODER PERIPHERAL DRIVER
10158 M:      Jarkko Nikula <jarkko.nikula@linux.intel.com>
10159 L:      linux-iio@vger.kernel.org
10160 F:      drivers/counter/intel-qep.c
10161
10162 INTEL SCU DRIVERS
10163 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
10164 S:      Maintained
10165 F:      arch/x86/include/asm/intel_scu_ipc.h
10166 F:      drivers/platform/x86/intel_scu_*
10167
10168 INTEL SDSI DRIVER
10169 M:      David E. Box <david.e.box@linux.intel.com>
10170 S:      Supported
10171 F:      drivers/platform/x86/intel/sdsi.c
10172 F:      tools/arch/x86/intel_sdsi/
10173 F:      tools/testing/selftests/drivers/sdsi/
10174
10175 INTEL SKYLAKE INT3472 ACPI DEVICE DRIVER
10176 M:      Daniel Scally <djrscally@gmail.com>
10177 S:      Maintained
10178 F:      drivers/platform/x86/intel/int3472/
10179
10180 INTEL SPEED SELECT TECHNOLOGY
10181 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
10182 L:      platform-driver-x86@vger.kernel.org
10183 S:      Maintained
10184 F:      drivers/platform/x86/intel/speed_select_if/
10185 F:      include/uapi/linux/isst_if.h
10186 F:      tools/power/x86/intel-speed-select/
10187
10188 INTEL STRATIX10 FIRMWARE DRIVERS
10189 M:      Dinh Nguyen <dinguyen@kernel.org>
10190 L:      linux-kernel@vger.kernel.org
10191 S:      Maintained
10192 F:      Documentation/ABI/testing/sysfs-devices-platform-stratix10-rsu
10193 F:      Documentation/devicetree/bindings/firmware/intel,stratix10-svc.txt
10194 F:      drivers/firmware/stratix10-rsu.c
10195 F:      drivers/firmware/stratix10-svc.c
10196 F:      include/linux/firmware/intel/stratix10-smc.h
10197 F:      include/linux/firmware/intel/stratix10-svc-client.h
10198 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
10199
10200 INTEL TELEMETRY DRIVER
10201 M:      Rajneesh Bhardwaj <irenic.rajneesh@gmail.com>
10202 M:      "David E. Box" <david.e.box@linux.intel.com>
10203 L:      platform-driver-x86@vger.kernel.org
10204 S:      Maintained
10205 F:      arch/x86/include/asm/intel_telemetry.h
10206 F:      drivers/platform/x86/intel/telemetry/
10207
10208 INTEL UNCORE FREQUENCY CONTROL
10209 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
10210 L:      platform-driver-x86@vger.kernel.org
10211 S:      Maintained
10212 F:      Documentation/admin-guide/pm/intel_uncore_frequency_scaling.rst
10213 F:      drivers/platform/x86/intel/uncore-frequency/
10214
10215 INTEL VENDOR SPECIFIC EXTENDED CAPABILITIES DRIVER
10216 M:      David E. Box <david.e.box@linux.intel.com>
10217 S:      Supported
10218 F:      drivers/platform/x86/intel/vsec.*
10219
10220 INTEL VIRTUAL BUTTON DRIVER
10221 M:      AceLan Kao <acelan.kao@canonical.com>
10222 L:      platform-driver-x86@vger.kernel.org
10223 S:      Maintained
10224 F:      drivers/platform/x86/intel/vbtn.c
10225
10226 INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
10227 M:      Stanislaw Gruszka <stf_xl@wp.pl>
10228 L:      linux-wireless@vger.kernel.org
10229 S:      Supported
10230 F:      drivers/net/wireless/intel/iwlegacy/
10231
10232 INTEL WIRELESS WIFI LINK (iwlwifi)
10233 M:      Gregory Greenman <gregory.greenman@intel.com>
10234 L:      linux-wireless@vger.kernel.org
10235 S:      Supported
10236 W:      https://wireless.wiki.kernel.org/en/users/drivers/iwlwifi
10237 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
10238 F:      drivers/net/wireless/intel/iwlwifi/
10239
10240 INTEL WMI SLIM BOOTLOADER (SBL) FIRMWARE UPDATE DRIVER
10241 M:      Jithu Joseph <jithu.joseph@intel.com>
10242 R:      Maurice Ma <maurice.ma@intel.com>
10243 S:      Maintained
10244 W:      https://slimbootloader.github.io/security/firmware-update.html
10245 F:      drivers/platform/x86/intel/wmi/sbl-fw-update.c
10246
10247 INTEL WMI THUNDERBOLT FORCE POWER DRIVER
10248 L:      Dell.Client.Kernel@dell.com
10249 S:      Maintained
10250 F:      drivers/platform/x86/intel/wmi/thunderbolt.c
10251
10252 INTEL WWAN IOSM DRIVER
10253 M:      M Chetan Kumar <m.chetan.kumar@intel.com>
10254 M:      Intel Corporation <linuxwwan@intel.com>
10255 L:      netdev@vger.kernel.org
10256 S:      Maintained
10257 F:      drivers/net/wwan/iosm/
10258
10259 INTEL(R) TRACE HUB
10260 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
10261 S:      Supported
10262 F:      Documentation/trace/intel_th.rst
10263 F:      drivers/hwtracing/intel_th/
10264 F:      include/linux/intel_th.h
10265
10266 INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
10267 M:      Ning Sun <ning.sun@intel.com>
10268 L:      tboot-devel@lists.sourceforge.net
10269 S:      Supported
10270 W:      http://tboot.sourceforge.net
10271 T:      hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
10272 F:      Documentation/x86/intel_txt.rst
10273 F:      arch/x86/kernel/tboot.c
10274 F:      include/linux/tboot.h
10275
10276 INTEL SGX
10277 M:      Jarkko Sakkinen <jarkko@kernel.org>
10278 R:      Dave Hansen <dave.hansen@linux.intel.com>
10279 L:      linux-sgx@vger.kernel.org
10280 S:      Supported
10281 Q:      https://patchwork.kernel.org/project/intel-sgx/list/
10282 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/sgx
10283 F:      Documentation/x86/sgx.rst
10284 F:      arch/x86/entry/vdso/vsgx.S
10285 F:      arch/x86/include/asm/sgx.h
10286 F:      arch/x86/include/uapi/asm/sgx.h
10287 F:      arch/x86/kernel/cpu/sgx/*
10288 F:      tools/testing/selftests/sgx/*
10289 K:      \bSGX_
10290
10291 INTERCONNECT API
10292 M:      Georgi Djakov <djakov@kernel.org>
10293 L:      linux-pm@vger.kernel.org
10294 S:      Maintained
10295 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/djakov/icc.git
10296 F:      Documentation/devicetree/bindings/interconnect/
10297 F:      Documentation/driver-api/interconnect.rst
10298 F:      drivers/interconnect/
10299 F:      include/dt-bindings/interconnect/
10300 F:      include/linux/interconnect-provider.h
10301 F:      include/linux/interconnect.h
10302
10303 INTERRUPT COUNTER DRIVER
10304 M:      Oleksij Rempel <o.rempel@pengutronix.de>
10305 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
10306 L:      linux-iio@vger.kernel.org
10307 F:      Documentation/devicetree/bindings/counter/interrupt-counter.yaml
10308 F:      drivers/counter/interrupt-cnt.c
10309
10310 INTERSIL ISL7998X VIDEO DECODER DRIVER
10311 M:      Michael Tretter <m.tretter@pengutronix.de>
10312 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
10313 L:      linux-media@vger.kernel.org
10314 S:      Maintained
10315 F:      Documentation/devicetree/bindings/media/i2c/isil,isl79987.yaml
10316 F:      drivers/media/i2c/isl7998x.c
10317
10318 INVENSENSE ICM-426xx IMU DRIVER
10319 M:      Jean-Baptiste Maneyrol <jmaneyrol@invensense.com>
10320 L:      linux-iio@vger.kernel.org
10321 S:      Maintained
10322 W:      https://invensense.tdk.com/
10323 F:      Documentation/devicetree/bindings/iio/imu/invensense,icm42600.yaml
10324 F:      drivers/iio/imu/inv_icm42600/
10325
10326 INVENSENSE MPU-3050 GYROSCOPE DRIVER
10327 M:      Linus Walleij <linus.walleij@linaro.org>
10328 L:      linux-iio@vger.kernel.org
10329 S:      Maintained
10330 F:      Documentation/devicetree/bindings/iio/gyroscope/invensense,mpu3050.yaml
10331 F:      drivers/iio/gyro/mpu3050*
10332
10333 IOC3 ETHERNET DRIVER
10334 M:      Ralf Baechle <ralf@linux-mips.org>
10335 L:      linux-mips@vger.kernel.org
10336 S:      Maintained
10337 F:      drivers/net/ethernet/sgi/ioc3-eth.c
10338
10339 IOMAP FILESYSTEM LIBRARY
10340 M:      Christoph Hellwig <hch@infradead.org>
10341 M:      Darrick J. Wong <djwong@kernel.org>
10342 L:      linux-xfs@vger.kernel.org
10343 L:      linux-fsdevel@vger.kernel.org
10344 S:      Supported
10345 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
10346 F:      fs/iomap/
10347 F:      include/linux/iomap.h
10348
10349 IOMMU DRIVERS
10350 M:      Joerg Roedel <joro@8bytes.org>
10351 M:      Will Deacon <will@kernel.org>
10352 L:      iommu@lists.linux-foundation.org
10353 S:      Maintained
10354 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
10355 F:      Documentation/devicetree/bindings/iommu/
10356 F:      Documentation/userspace-api/iommu.rst
10357 F:      drivers/iommu/
10358 F:      include/linux/iommu.h
10359 F:      include/linux/iova.h
10360 F:      include/linux/of_iommu.h
10361 F:      include/uapi/linux/iommu.h
10362
10363 IOSYS-MAP HELPERS
10364 M:      Thomas Zimmermann <tzimmermann@suse.de>
10365 L:      dri-devel@lists.freedesktop.org
10366 S:      Maintained
10367 T:      git git://anongit.freedesktop.org/drm/drm-misc
10368 F:      include/linux/iosys-map.h
10369
10370 IO_URING
10371 M:      Jens Axboe <axboe@kernel.dk>
10372 R:      Pavel Begunkov <asml.silence@gmail.com>
10373 L:      io-uring@vger.kernel.org
10374 S:      Maintained
10375 T:      git git://git.kernel.dk/linux-block
10376 T:      git git://git.kernel.dk/liburing
10377 F:      fs/io-wq.c
10378 F:      fs/io-wq.h
10379 F:      fs/io_uring.c
10380 F:      include/linux/io_uring.h
10381 F:      include/uapi/linux/io_uring.h
10382 F:      tools/io_uring/
10383
10384 IPMI SUBSYSTEM
10385 M:      Corey Minyard <minyard@acm.org>
10386 L:      openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
10387 S:      Supported
10388 W:      http://openipmi.sourceforge.net/
10389 T:      git https://github.com/cminyard/linux-ipmi.git for-next
10390 F:      Documentation/driver-api/ipmi.rst
10391 F:      Documentation/devicetree/bindings/ipmi/
10392 F:      drivers/char/ipmi/
10393 F:      include/linux/ipmi*
10394 F:      include/uapi/linux/ipmi*
10395
10396 IPS SCSI RAID DRIVER
10397 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
10398 L:      linux-scsi@vger.kernel.org
10399 S:      Maintained
10400 W:      http://www.adaptec.com/
10401 F:      drivers/scsi/ips*
10402
10403 IPVS
10404 M:      Simon Horman <horms@verge.net.au>
10405 M:      Julian Anastasov <ja@ssi.bg>
10406 L:      netdev@vger.kernel.org
10407 L:      lvs-devel@vger.kernel.org
10408 S:      Maintained
10409 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs-next.git
10410 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs.git
10411 F:      Documentation/networking/ipvs-sysctl.rst
10412 F:      include/net/ip_vs.h
10413 F:      include/uapi/linux/ip_vs.h
10414 F:      net/netfilter/ipvs/
10415
10416 IPWIRELESS DRIVER
10417 M:      Jiri Kosina <jikos@kernel.org>
10418 M:      David Sterba <dsterba@suse.com>
10419 S:      Odd Fixes
10420 F:      drivers/tty/ipwireless/
10421
10422 IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
10423 M:      Marc Zyngier <maz@kernel.org>
10424 S:      Maintained
10425 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
10426 F:      Documentation/core-api/irq/irq-domain.rst
10427 F:      include/linux/irqdomain.h
10428 F:      kernel/irq/irqdomain.c
10429 F:      kernel/irq/msi.c
10430
10431 IRQ SUBSYSTEM
10432 M:      Thomas Gleixner <tglx@linutronix.de>
10433 L:      linux-kernel@vger.kernel.org
10434 S:      Maintained
10435 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
10436 F:      kernel/irq/
10437
10438 IRQCHIP DRIVERS
10439 M:      Thomas Gleixner <tglx@linutronix.de>
10440 M:      Marc Zyngier <maz@kernel.org>
10441 L:      linux-kernel@vger.kernel.org
10442 S:      Maintained
10443 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
10444 F:      Documentation/devicetree/bindings/interrupt-controller/
10445 F:      drivers/irqchip/
10446
10447 ISA
10448 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
10449 S:      Maintained
10450 F:      Documentation/driver-api/isa.rst
10451 F:      drivers/base/isa.c
10452 F:      include/linux/isa.h
10453
10454 ISA RADIO MODULE
10455 M:      Hans Verkuil <hverkuil@xs4all.nl>
10456 L:      linux-media@vger.kernel.org
10457 S:      Maintained
10458 W:      https://linuxtv.org
10459 T:      git git://linuxtv.org/media_tree.git
10460 F:      drivers/media/radio/radio-isa*
10461
10462 ISAPNP
10463 M:      Jaroslav Kysela <perex@perex.cz>
10464 S:      Maintained
10465 F:      Documentation/driver-api/isapnp.rst
10466 F:      drivers/pnp/isapnp/
10467 F:      include/linux/isapnp.h
10468
10469 ISCSI
10470 M:      Lee Duncan <lduncan@suse.com>
10471 M:      Chris Leech <cleech@redhat.com>
10472 M:      Mike Christie <michael.christie@oracle.com>
10473 L:      open-iscsi@googlegroups.com
10474 L:      linux-scsi@vger.kernel.org
10475 S:      Maintained
10476 W:      www.open-iscsi.com
10477 F:      drivers/scsi/*iscsi*
10478 F:      include/scsi/*iscsi*
10479
10480 iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
10481 M:      Peter Jones <pjones@redhat.com>
10482 M:      Konrad Rzeszutek Wilk <konrad@kernel.org>
10483 S:      Maintained
10484 F:      drivers/firmware/iscsi_ibft*
10485
10486 ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR
10487 M:      Sagi Grimberg <sagi@grimberg.me>
10488 M:      Max Gurtovoy <mgurtovoy@nvidia.com>
10489 L:      linux-rdma@vger.kernel.org
10490 S:      Supported
10491 W:      http://www.openfabrics.org
10492 W:      www.open-iscsi.org
10493 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
10494 F:      drivers/infiniband/ulp/iser/
10495
10496 ISCSI EXTENSIONS FOR RDMA (ISER) TARGET
10497 M:      Sagi Grimberg <sagi@grimberg.me>
10498 L:      linux-rdma@vger.kernel.org
10499 L:      target-devel@vger.kernel.org
10500 S:      Supported
10501 W:      http://www.linux-iscsi.org
10502 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
10503 F:      drivers/infiniband/ulp/isert
10504
10505 ISDN/CMTP OVER BLUETOOTH
10506 M:      Karsten Keil <isdn@linux-pingi.de>
10507 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
10508 L:      netdev@vger.kernel.org
10509 S:      Odd Fixes
10510 W:      http://www.isdn4linux.de
10511 F:      Documentation/isdn/
10512 F:      drivers/isdn/capi/
10513 F:      include/linux/isdn/
10514 F:      include/uapi/linux/isdn/
10515 F:      net/bluetooth/cmtp/
10516
10517 ISDN/mISDN SUBSYSTEM
10518 M:      Karsten Keil <isdn@linux-pingi.de>
10519 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
10520 L:      netdev@vger.kernel.org
10521 S:      Maintained
10522 W:      http://www.isdn4linux.de
10523 F:      drivers/isdn/Kconfig
10524 F:      drivers/isdn/Makefile
10525 F:      drivers/isdn/hardware/
10526 F:      drivers/isdn/mISDN/
10527
10528 IT87 HARDWARE MONITORING DRIVER
10529 M:      Jean Delvare <jdelvare@suse.com>
10530 L:      linux-hwmon@vger.kernel.org
10531 S:      Maintained
10532 F:      Documentation/hwmon/it87.rst
10533 F:      drivers/hwmon/it87.c
10534
10535 IT913X MEDIA DRIVER
10536 M:      Antti Palosaari <crope@iki.fi>
10537 L:      linux-media@vger.kernel.org
10538 S:      Maintained
10539 W:      https://linuxtv.org
10540 W:      http://palosaari.fi/linux/
10541 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10542 T:      git git://linuxtv.org/anttip/media_tree.git
10543 F:      drivers/media/tuners/it913x*
10544
10545 ITE IT66121 HDMI BRIDGE DRIVER
10546 M:      Phong LE <ple@baylibre.com>
10547 M:      Neil Armstrong <narmstrong@baylibre.com>
10548 S:      Maintained
10549 T:      git git://anongit.freedesktop.org/drm/drm-misc
10550 F:      Documentation/devicetree/bindings/display/bridge/ite,it66121.yaml
10551 F:      drivers/gpu/drm/bridge/ite-it66121.c
10552
10553 IVTV VIDEO4LINUX DRIVER
10554 M:      Andy Walls <awalls@md.metrocast.net>
10555 L:      linux-media@vger.kernel.org
10556 S:      Maintained
10557 W:      https://linuxtv.org
10558 T:      git git://linuxtv.org/media_tree.git
10559 F:      Documentation/admin-guide/media/ivtv*
10560 F:      drivers/media/pci/ivtv/
10561 F:      include/uapi/linux/ivtv*
10562
10563 IX2505V MEDIA DRIVER
10564 M:      Malcolm Priestley <tvboxspy@gmail.com>
10565 L:      linux-media@vger.kernel.org
10566 S:      Maintained
10567 W:      https://linuxtv.org
10568 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10569 F:      drivers/media/dvb-frontends/ix2505v*
10570
10571 JAILHOUSE HYPERVISOR INTERFACE
10572 M:      Jan Kiszka <jan.kiszka@siemens.com>
10573 L:      jailhouse-dev@googlegroups.com
10574 S:      Maintained
10575 F:      arch/x86/include/asm/jailhouse_para.h
10576 F:      arch/x86/kernel/jailhouse.c
10577
10578 JC42.4 TEMPERATURE SENSOR DRIVER
10579 M:      Guenter Roeck <linux@roeck-us.net>
10580 L:      linux-hwmon@vger.kernel.org
10581 S:      Maintained
10582 F:      Documentation/devicetree/bindings/hwmon/jedec,jc42.yaml
10583 F:      Documentation/hwmon/jc42.rst
10584 F:      drivers/hwmon/jc42.c
10585
10586 JFS FILESYSTEM
10587 M:      Dave Kleikamp <shaggy@kernel.org>
10588 L:      jfs-discussion@lists.sourceforge.net
10589 S:      Maintained
10590 W:      http://jfs.sourceforge.net/
10591 T:      git git://github.com/kleikamp/linux-shaggy.git
10592 F:      Documentation/admin-guide/jfs.rst
10593 F:      fs/jfs/
10594
10595 JME NETWORK DRIVER
10596 M:      Guo-Fu Tseng <cooldavid@cooldavid.org>
10597 L:      netdev@vger.kernel.org
10598 S:      Maintained
10599 F:      drivers/net/ethernet/jme.*
10600
10601 JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
10602 M:      David Woodhouse <dwmw2@infradead.org>
10603 M:      Richard Weinberger <richard@nod.at>
10604 L:      linux-mtd@lists.infradead.org
10605 S:      Odd Fixes
10606 W:      http://www.linux-mtd.infradead.org/doc/jffs2.html
10607 T:      git git://git.infradead.org/ubifs-2.6.git
10608 F:      fs/jffs2/
10609 F:      include/uapi/linux/jffs2.h
10610
10611 JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
10612 M:      "Theodore Ts'o" <tytso@mit.edu>
10613 M:      Jan Kara <jack@suse.com>
10614 L:      linux-ext4@vger.kernel.org
10615 S:      Maintained
10616 F:      fs/jbd2/
10617 F:      include/linux/jbd2.h
10618
10619 JPU V4L2 MEM2MEM DRIVER FOR RENESAS
10620 M:      Mikhail Ulyanov <mikhail.ulyanov@cogentembedded.com>
10621 L:      linux-media@vger.kernel.org
10622 L:      linux-renesas-soc@vger.kernel.org
10623 S:      Maintained
10624 F:      drivers/media/platform/renesas/rcar_jpu.c
10625
10626 JSM Neo PCI based serial card
10627 L:      linux-serial@vger.kernel.org
10628 S:      Orphan
10629 F:      drivers/tty/serial/jsm/
10630
10631 K10TEMP HARDWARE MONITORING DRIVER
10632 M:      Clemens Ladisch <clemens@ladisch.de>
10633 L:      linux-hwmon@vger.kernel.org
10634 S:      Maintained
10635 F:      Documentation/hwmon/k10temp.rst
10636 F:      drivers/hwmon/k10temp.c
10637
10638 K8TEMP HARDWARE MONITORING DRIVER
10639 M:      Rudolf Marek <r.marek@assembler.cz>
10640 L:      linux-hwmon@vger.kernel.org
10641 S:      Maintained
10642 F:      Documentation/hwmon/k8temp.rst
10643 F:      drivers/hwmon/k8temp.c
10644
10645 KASAN
10646 M:      Andrey Ryabinin <ryabinin.a.a@gmail.com>
10647 R:      Alexander Potapenko <glider@google.com>
10648 R:      Andrey Konovalov <andreyknvl@gmail.com>
10649 R:      Dmitry Vyukov <dvyukov@google.com>
10650 R:      Vincenzo Frascino <vincenzo.frascino@arm.com>
10651 L:      kasan-dev@googlegroups.com
10652 S:      Maintained
10653 F:      Documentation/dev-tools/kasan.rst
10654 F:      arch/*/include/asm/*kasan.h
10655 F:      arch/*/mm/kasan_init*
10656 F:      include/linux/kasan*.h
10657 F:      lib/Kconfig.kasan
10658 F:      lib/test_kasan*.c
10659 F:      mm/kasan/
10660 F:      scripts/Makefile.kasan
10661
10662 KCONFIG
10663 M:      Masahiro Yamada <masahiroy@kernel.org>
10664 L:      linux-kbuild@vger.kernel.org
10665 S:      Maintained
10666 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git kconfig
10667 F:      Documentation/kbuild/kconfig*
10668 F:      scripts/Kconfig.include
10669 F:      scripts/kconfig/
10670
10671 KCOV
10672 R:      Dmitry Vyukov <dvyukov@google.com>
10673 R:      Andrey Konovalov <andreyknvl@gmail.com>
10674 L:      kasan-dev@googlegroups.com
10675 S:      Maintained
10676 F:      Documentation/dev-tools/kcov.rst
10677 F:      include/linux/kcov.h
10678 F:      include/uapi/linux/kcov.h
10679 F:      kernel/kcov.c
10680 F:      scripts/Makefile.kcov
10681
10682 KCSAN
10683 M:      Marco Elver <elver@google.com>
10684 R:      Dmitry Vyukov <dvyukov@google.com>
10685 L:      kasan-dev@googlegroups.com
10686 S:      Maintained
10687 F:      Documentation/dev-tools/kcsan.rst
10688 F:      include/linux/kcsan*.h
10689 F:      kernel/kcsan/
10690 F:      lib/Kconfig.kcsan
10691 F:      scripts/Makefile.kcsan
10692
10693 KDUMP
10694 M:      Baoquan He <bhe@redhat.com>
10695 R:      Vivek Goyal <vgoyal@redhat.com>
10696 R:      Dave Young <dyoung@redhat.com>
10697 L:      kexec@lists.infradead.org
10698 S:      Maintained
10699 W:      http://lse.sourceforge.net/kdump/
10700 F:      Documentation/admin-guide/kdump/
10701 F:      fs/proc/vmcore.c
10702 F:      include/linux/crash_core.h
10703 F:      include/linux/crash_dump.h
10704 F:      include/uapi/linux/vmcore.h
10705 F:      kernel/crash_*.c
10706
10707 KEENE FM RADIO TRANSMITTER DRIVER
10708 M:      Hans Verkuil <hverkuil@xs4all.nl>
10709 L:      linux-media@vger.kernel.org
10710 S:      Maintained
10711 W:      https://linuxtv.org
10712 T:      git git://linuxtv.org/media_tree.git
10713 F:      drivers/media/radio/radio-keene*
10714
10715 KERNEL AUTOMOUNTER
10716 M:      Ian Kent <raven@themaw.net>
10717 L:      autofs@vger.kernel.org
10718 S:      Maintained
10719 F:      fs/autofs/
10720
10721 KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
10722 M:      Masahiro Yamada <masahiroy@kernel.org>
10723 M:      Michal Marek <michal.lkml@markovi.net>
10724 R:      Nick Desaulniers <ndesaulniers@google.com>
10725 L:      linux-kbuild@vger.kernel.org
10726 S:      Maintained
10727 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git
10728 F:      Documentation/kbuild/
10729 F:      Makefile
10730 F:      scripts/*vmlinux*
10731 F:      scripts/Kbuild*
10732 F:      scripts/Makefile*
10733 F:      scripts/basic/
10734 F:      scripts/dummy-tools/
10735 F:      scripts/mk*
10736 F:      scripts/mod/
10737 F:      scripts/package/
10738
10739 KERNEL JANITORS
10740 L:      kernel-janitors@vger.kernel.org
10741 S:      Odd Fixes
10742 W:      http://kernelnewbies.org/KernelJanitors
10743
10744 KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
10745 M:      Chuck Lever <chuck.lever@oracle.com>
10746 L:      linux-nfs@vger.kernel.org
10747 S:      Supported
10748 W:      http://nfs.sourceforge.net/
10749 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/cel/linux.git
10750 F:      fs/lockd/
10751 F:      fs/nfs_common/
10752 F:      fs/nfsd/
10753 F:      include/linux/lockd/
10754 F:      include/linux/sunrpc/
10755 F:      include/uapi/linux/nfsd/
10756 F:      include/uapi/linux/sunrpc/
10757 F:      net/sunrpc/
10758 F:      Documentation/filesystems/nfs/
10759
10760 KERNEL REGRESSIONS
10761 M:      Thorsten Leemhuis <linux@leemhuis.info>
10762 L:      regressions@lists.linux.dev
10763 S:      Supported
10764 F:      Documentation/admin-guide/reporting-regressions.rst
10765 F:      Documentation/process/handling-regressions.rst
10766
10767 KERNEL SELFTEST FRAMEWORK
10768 M:      Shuah Khan <shuah@kernel.org>
10769 M:      Shuah Khan <skhan@linuxfoundation.org>
10770 L:      linux-kselftest@vger.kernel.org
10771 S:      Maintained
10772 Q:      https://patchwork.kernel.org/project/linux-kselftest/list/
10773 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest.git
10774 F:      Documentation/dev-tools/kselftest*
10775 F:      tools/testing/selftests/
10776
10777 KERNEL SMB3 SERVER (KSMBD)
10778 M:      Namjae Jeon <linkinjeon@kernel.org>
10779 M:      Steve French <sfrench@samba.org>
10780 M:      Hyunchul Lee <hyc.lee@gmail.com>
10781 R:      Sergey Senozhatsky <senozhatsky@chromium.org>
10782 L:      linux-cifs@vger.kernel.org
10783 S:      Maintained
10784 T:      git git://git.samba.org/ksmbd.git
10785 F:      fs/ksmbd/
10786 F:      fs/smbfs_common/
10787
10788 KERNEL UNIT TESTING FRAMEWORK (KUnit)
10789 M:      Brendan Higgins <brendanhiggins@google.com>
10790 L:      linux-kselftest@vger.kernel.org
10791 L:      kunit-dev@googlegroups.com
10792 S:      Maintained
10793 W:      https://google.github.io/kunit-docs/third_party/kernel/docs/
10794 F:      Documentation/dev-tools/kunit/
10795 F:      include/kunit/
10796 F:      lib/kunit/
10797 F:      tools/testing/kunit/
10798
10799 KERNEL USERMODE HELPER
10800 M:      Luis Chamberlain <mcgrof@kernel.org>
10801 L:      linux-kernel@vger.kernel.org
10802 S:      Maintained
10803 F:      include/linux/umh.h
10804 F:      kernel/umh.c
10805
10806 KERNEL VIRTUAL MACHINE (KVM)
10807 M:      Paolo Bonzini <pbonzini@redhat.com>
10808 L:      kvm@vger.kernel.org
10809 S:      Supported
10810 W:      http://www.linux-kvm.org
10811 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
10812 F:      Documentation/virt/kvm/
10813 F:      include/asm-generic/kvm*
10814 F:      include/kvm/iodev.h
10815 F:      include/linux/kvm*
10816 F:      include/trace/events/kvm.h
10817 F:      include/uapi/asm-generic/kvm*
10818 F:      include/uapi/linux/kvm*
10819 F:      tools/kvm/
10820 F:      tools/testing/selftests/kvm/
10821 F:      virt/kvm/*
10822
10823 KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64)
10824 M:      Marc Zyngier <maz@kernel.org>
10825 R:      James Morse <james.morse@arm.com>
10826 R:      Alexandru Elisei <alexandru.elisei@arm.com>
10827 R:      Suzuki K Poulose <suzuki.poulose@arm.com>
10828 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10829 L:      kvmarm@lists.cs.columbia.edu (moderated for non-subscribers)
10830 S:      Maintained
10831 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvmarm/kvmarm.git
10832 F:      arch/arm64/include/asm/kvm*
10833 F:      arch/arm64/include/uapi/asm/kvm*
10834 F:      arch/arm64/kvm/
10835 F:      include/kvm/arm_*
10836 F:      tools/testing/selftests/kvm/*/aarch64/
10837 F:      tools/testing/selftests/kvm/aarch64/
10838
10839 KERNEL VIRTUAL MACHINE FOR MIPS (KVM/mips)
10840 M:      Huacai Chen <chenhuacai@kernel.org>
10841 M:      Aleksandar Markovic <aleksandar.qemu.devel@gmail.com>
10842 L:      linux-mips@vger.kernel.org
10843 L:      kvm@vger.kernel.org
10844 S:      Maintained
10845 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
10846 F:      arch/mips/include/asm/kvm*
10847 F:      arch/mips/include/uapi/asm/kvm*
10848 F:      arch/mips/kvm/
10849
10850 KERNEL VIRTUAL MACHINE FOR POWERPC (KVM/powerpc)
10851 L:      linuxppc-dev@lists.ozlabs.org
10852 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git topic/ppc-kvm
10853 F:      arch/powerpc/include/asm/kvm*
10854 F:      arch/powerpc/include/uapi/asm/kvm*
10855 F:      arch/powerpc/kernel/kvm*
10856 F:      arch/powerpc/kvm/
10857
10858 KERNEL VIRTUAL MACHINE FOR RISC-V (KVM/riscv)
10859 M:      Anup Patel <anup@brainfault.org>
10860 R:      Atish Patra <atishp@atishpatra.org>
10861 L:      kvm@vger.kernel.org
10862 L:      kvm-riscv@lists.infradead.org
10863 L:      linux-riscv@lists.infradead.org
10864 S:      Maintained
10865 T:      git git://github.com/kvm-riscv/linux.git
10866 F:      arch/riscv/include/asm/kvm*
10867 F:      arch/riscv/include/uapi/asm/kvm*
10868 F:      arch/riscv/kvm/
10869 F:      tools/testing/selftests/kvm/*/riscv/
10870 F:      tools/testing/selftests/kvm/riscv/
10871
10872 KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
10873 M:      Christian Borntraeger <borntraeger@linux.ibm.com>
10874 M:      Janosch Frank <frankja@linux.ibm.com>
10875 M:      Claudio Imbrenda <imbrenda@linux.ibm.com>
10876 R:      David Hildenbrand <david@redhat.com>
10877 L:      kvm@vger.kernel.org
10878 S:      Supported
10879 W:      http://www.ibm.com/developerworks/linux/linux390/
10880 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvms390/linux.git
10881 F:      Documentation/virt/kvm/s390*
10882 F:      arch/s390/include/asm/gmap.h
10883 F:      arch/s390/include/asm/kvm*
10884 F:      arch/s390/include/uapi/asm/kvm*
10885 F:      arch/s390/include/uapi/asm/uvdevice.h
10886 F:      arch/s390/kernel/uv.c
10887 F:      arch/s390/kvm/
10888 F:      arch/s390/mm/gmap.c
10889 F:      drivers/s390/char/uvdevice.c
10890 F:      tools/testing/selftests/drivers/s390x/uvdevice/
10891 F:      tools/testing/selftests/kvm/*/s390x/
10892 F:      tools/testing/selftests/kvm/s390x/
10893
10894 KERNEL VIRTUAL MACHINE FOR X86 (KVM/x86)
10895 M:      Paolo Bonzini <pbonzini@redhat.com>
10896 R:      Sean Christopherson <seanjc@google.com>
10897 R:      Vitaly Kuznetsov <vkuznets@redhat.com>
10898 R:      Wanpeng Li <wanpengli@tencent.com>
10899 R:      Jim Mattson <jmattson@google.com>
10900 R:      Joerg Roedel <joro@8bytes.org>
10901 L:      kvm@vger.kernel.org
10902 S:      Supported
10903 W:      http://www.linux-kvm.org
10904 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
10905 F:      arch/x86/include/asm/kvm*
10906 F:      arch/x86/include/asm/pvclock-abi.h
10907 F:      arch/x86/include/asm/svm.h
10908 F:      arch/x86/include/asm/vmx*.h
10909 F:      arch/x86/include/uapi/asm/kvm*
10910 F:      arch/x86/include/uapi/asm/svm.h
10911 F:      arch/x86/include/uapi/asm/vmx.h
10912 F:      arch/x86/kernel/kvm.c
10913 F:      arch/x86/kernel/kvmclock.c
10914 F:      arch/x86/kvm/
10915 F:      arch/x86/kvm/*/
10916
10917 KERNFS
10918 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10919 M:      Tejun Heo <tj@kernel.org>
10920 S:      Supported
10921 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
10922 F:      fs/kernfs/
10923 F:      include/linux/kernfs.h
10924
10925 KEXEC
10926 M:      Eric Biederman <ebiederm@xmission.com>
10927 L:      kexec@lists.infradead.org
10928 S:      Maintained
10929 W:      http://kernel.org/pub/linux/utils/kernel/kexec/
10930 F:      include/linux/kexec.h
10931 F:      include/uapi/linux/kexec.h
10932 F:      kernel/kexec*
10933
10934 KEYS-ENCRYPTED
10935 M:      Mimi Zohar <zohar@linux.ibm.com>
10936 L:      linux-integrity@vger.kernel.org
10937 L:      keyrings@vger.kernel.org
10938 S:      Supported
10939 F:      Documentation/security/keys/trusted-encrypted.rst
10940 F:      include/keys/encrypted-type.h
10941 F:      security/keys/encrypted-keys/
10942
10943 KEYS-TRUSTED
10944 M:      James Bottomley <jejb@linux.ibm.com>
10945 M:      Jarkko Sakkinen <jarkko@kernel.org>
10946 M:      Mimi Zohar <zohar@linux.ibm.com>
10947 L:      linux-integrity@vger.kernel.org
10948 L:      keyrings@vger.kernel.org
10949 S:      Supported
10950 F:      Documentation/security/keys/trusted-encrypted.rst
10951 F:      include/keys/trusted-type.h
10952 F:      include/keys/trusted_tpm.h
10953 F:      security/keys/trusted-keys/
10954
10955 KEYS-TRUSTED-TEE
10956 M:      Sumit Garg <sumit.garg@linaro.org>
10957 L:      linux-integrity@vger.kernel.org
10958 L:      keyrings@vger.kernel.org
10959 S:      Supported
10960 F:      include/keys/trusted_tee.h
10961 F:      security/keys/trusted-keys/trusted_tee.c
10962
10963 KEYS-TRUSTED-CAAM
10964 M:      Ahmad Fatoum <a.fatoum@pengutronix.de>
10965 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
10966 L:      linux-integrity@vger.kernel.org
10967 L:      keyrings@vger.kernel.org
10968 S:      Maintained
10969 F:      include/keys/trusted_caam.h
10970 F:      security/keys/trusted-keys/trusted_caam.c
10971
10972 KEYS/KEYRINGS
10973 M:      David Howells <dhowells@redhat.com>
10974 M:      Jarkko Sakkinen <jarkko@kernel.org>
10975 L:      keyrings@vger.kernel.org
10976 S:      Maintained
10977 F:      Documentation/security/keys/core.rst
10978 F:      include/keys/
10979 F:      include/linux/key-type.h
10980 F:      include/linux/key.h
10981 F:      include/linux/keyctl.h
10982 F:      include/uapi/linux/keyctl.h
10983 F:      security/keys/
10984
10985 KEYS/KEYRINGS_INTEGRITY
10986 M:      Jarkko Sakkinen <jarkko@kernel.org>
10987 M:      Mimi Zohar <zohar@linux.ibm.com>
10988 L:      linux-integrity@vger.kernel.org
10989 L:      keyrings@vger.kernel.org
10990 S:      Supported
10991 F:      security/integrity/platform_certs
10992
10993 KFENCE
10994 M:      Alexander Potapenko <glider@google.com>
10995 M:      Marco Elver <elver@google.com>
10996 R:      Dmitry Vyukov <dvyukov@google.com>
10997 L:      kasan-dev@googlegroups.com
10998 S:      Maintained
10999 F:      Documentation/dev-tools/kfence.rst
11000 F:      arch/*/include/asm/kfence.h
11001 F:      include/linux/kfence.h
11002 F:      lib/Kconfig.kfence
11003 F:      mm/kfence/
11004
11005 KFIFO
11006 M:      Stefani Seibold <stefani@seibold.net>
11007 S:      Maintained
11008 F:      include/linux/kfifo.h
11009 F:      lib/kfifo.c
11010 F:      samples/kfifo/
11011
11012 KGDB / KDB /debug_core
11013 M:      Jason Wessel <jason.wessel@windriver.com>
11014 M:      Daniel Thompson <daniel.thompson@linaro.org>
11015 R:      Douglas Anderson <dianders@chromium.org>
11016 L:      kgdb-bugreport@lists.sourceforge.net
11017 S:      Maintained
11018 W:      http://kgdb.wiki.kernel.org/
11019 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jwessel/kgdb.git
11020 F:      Documentation/dev-tools/kgdb.rst
11021 F:      drivers/misc/kgdbts.c
11022 F:      drivers/tty/serial/kgdboc.c
11023 F:      include/linux/kdb.h
11024 F:      include/linux/kgdb.h
11025 F:      kernel/debug/
11026 F:      kernel/module/kdb.c
11027
11028 KHADAS MCU MFD DRIVER
11029 M:      Neil Armstrong <narmstrong@baylibre.com>
11030 L:      linux-amlogic@lists.infradead.org
11031 S:      Maintained
11032 F:      Documentation/devicetree/bindings/mfd/khadas,mcu.yaml
11033 F:      drivers/mfd/khadas-mcu.c
11034 F:      include/linux/mfd/khadas-mcu.h
11035 F:      drivers/thermal/khadas_mcu_fan.c
11036
11037 KMEMLEAK
11038 M:      Catalin Marinas <catalin.marinas@arm.com>
11039 S:      Maintained
11040 F:      Documentation/dev-tools/kmemleak.rst
11041 F:      include/linux/kmemleak.h
11042 F:      mm/kmemleak.c
11043 F:      samples/kmemleak/kmemleak-test.c
11044
11045 KMOD KERNEL MODULE LOADER - USERMODE HELPER
11046 M:      Luis Chamberlain <mcgrof@kernel.org>
11047 L:      linux-kernel@vger.kernel.org
11048 L:      linux-modules@vger.kernel.org
11049 S:      Maintained
11050 F:      include/linux/kmod.h
11051 F:      kernel/kmod.c
11052 F:      lib/test_kmod.c
11053 F:      tools/testing/selftests/kmod/
11054
11055 KPROBES
11056 M:      Naveen N. Rao <naveen.n.rao@linux.ibm.com>
11057 M:      Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
11058 M:      "David S. Miller" <davem@davemloft.net>
11059 M:      Masami Hiramatsu <mhiramat@kernel.org>
11060 S:      Maintained
11061 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rostedt/linux-trace.git
11062 F:      Documentation/trace/kprobes.rst
11063 F:      include/asm-generic/kprobes.h
11064 F:      include/linux/kprobes.h
11065 F:      kernel/kprobes.c
11066 F:      lib/test_kprobes.c
11067 F:      samples/kprobes
11068
11069 KS0108 LCD CONTROLLER DRIVER
11070 M:      Miguel Ojeda <ojeda@kernel.org>
11071 S:      Maintained
11072 F:      Documentation/admin-guide/auxdisplay/ks0108.rst
11073 F:      drivers/auxdisplay/ks0108.c
11074 F:      include/linux/ks0108.h
11075
11076 KTD253 BACKLIGHT DRIVER
11077 M:      Linus Walleij <linus.walleij@linaro.org>
11078 S:      Maintained
11079 F:      Documentation/devicetree/bindings/leds/backlight/kinetic,ktd253.yaml
11080 F:      drivers/video/backlight/ktd253-backlight.c
11081
11082 KTEST
11083 M:      Steven Rostedt <rostedt@goodmis.org>
11084 M:      John Hawley <warthog9@eaglescrag.net>
11085 S:      Maintained
11086 F:      tools/testing/ktest
11087
11088 L3MDEV
11089 M:      David Ahern <dsahern@kernel.org>
11090 L:      netdev@vger.kernel.org
11091 S:      Maintained
11092 F:      include/net/l3mdev.h
11093 F:      net/l3mdev
11094
11095 L7 BPF FRAMEWORK
11096 M:      John Fastabend <john.fastabend@gmail.com>
11097 M:      Daniel Borkmann <daniel@iogearbox.net>
11098 M:      Jakub Sitnicki <jakub@cloudflare.com>
11099 L:      netdev@vger.kernel.org
11100 L:      bpf@vger.kernel.org
11101 S:      Maintained
11102 F:      include/linux/skmsg.h
11103 F:      net/core/skmsg.c
11104 F:      net/core/sock_map.c
11105 F:      net/ipv4/tcp_bpf.c
11106 F:      net/ipv4/udp_bpf.c
11107 F:      net/unix/unix_bpf.c
11108
11109 LANDLOCK SECURITY MODULE
11110 M:      Mickaël Salaün <mic@digikod.net>
11111 L:      linux-security-module@vger.kernel.org
11112 S:      Supported
11113 W:      https://landlock.io
11114 T:      git https://github.com/landlock-lsm/linux.git
11115 F:      Documentation/security/landlock.rst
11116 F:      Documentation/userspace-api/landlock.rst
11117 F:      include/uapi/linux/landlock.h
11118 F:      samples/landlock/
11119 F:      security/landlock/
11120 F:      tools/testing/selftests/landlock/
11121 K:      landlock
11122 K:      LANDLOCK
11123
11124 LANTIQ / INTEL Ethernet drivers
11125 M:      Hauke Mehrtens <hauke@hauke-m.de>
11126 L:      netdev@vger.kernel.org
11127 S:      Maintained
11128 F:      drivers/net/dsa/lantiq_gswip.c
11129 F:      drivers/net/dsa/lantiq_pce.h
11130 F:      drivers/net/ethernet/lantiq_xrx200.c
11131 F:      net/dsa/tag_gswip.c
11132
11133 LANTIQ MIPS ARCHITECTURE
11134 M:      John Crispin <john@phrozen.org>
11135 L:      linux-mips@vger.kernel.org
11136 S:      Maintained
11137 F:      arch/mips/lantiq
11138 F:      drivers/soc/lantiq
11139
11140 LASI 53c700 driver for PARISC
11141 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
11142 L:      linux-scsi@vger.kernel.org
11143 S:      Maintained
11144 F:      Documentation/scsi/53c700.rst
11145 F:      drivers/scsi/53c700*
11146
11147 LEAKING_ADDRESSES
11148 M:      Tobin C. Harding <me@tobin.cc>
11149 M:      Tycho Andersen <tycho@tycho.pizza>
11150 L:      linux-hardening@vger.kernel.org
11151 S:      Maintained
11152 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tobin/leaks.git
11153 F:      scripts/leaking_addresses.pl
11154
11155 LED SUBSYSTEM
11156 M:      Pavel Machek <pavel@ucw.cz>
11157 L:      linux-leds@vger.kernel.org
11158 S:      Maintained
11159 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pavel/linux-leds.git
11160 F:      Documentation/devicetree/bindings/leds/
11161 F:      drivers/leds/
11162 F:      include/linux/leds.h
11163
11164 LEGACY EEPROM DRIVER
11165 M:      Jean Delvare <jdelvare@suse.com>
11166 S:      Maintained
11167 F:      Documentation/misc-devices/eeprom.rst
11168 F:      drivers/misc/eeprom/eeprom.c
11169
11170 LEGO MINDSTORMS EV3
11171 R:      David Lechner <david@lechnology.com>
11172 S:      Maintained
11173 F:      Documentation/devicetree/bindings/power/supply/lego,ev3-battery.yaml
11174 F:      arch/arm/boot/dts/da850-lego-ev3.dts
11175 F:      drivers/power/supply/lego_ev3_battery.c
11176
11177 LEGO USB Tower driver
11178 M:      Juergen Stuber <starblue@users.sourceforge.net>
11179 L:      legousb-devel@lists.sourceforge.net
11180 S:      Maintained
11181 W:      http://legousb.sourceforge.net/
11182 F:      drivers/usb/misc/legousbtower.c
11183
11184 LETSKETCH HID TABLET DRIVER
11185 M:      Hans de Goede <hdegoede@redhat.com>
11186 L:      linux-input@vger.kernel.org
11187 S:      Maintained
11188 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
11189 F:      drivers/hid/hid-letsketch.c
11190
11191 LG LAPTOP EXTRAS
11192 M:      Matan Ziv-Av <matan@svgalib.org>
11193 L:      platform-driver-x86@vger.kernel.org
11194 S:      Maintained
11195 F:      Documentation/ABI/testing/sysfs-platform-lg-laptop
11196 F:      Documentation/admin-guide/laptops/lg-laptop.rst
11197 F:      drivers/platform/x86/lg-laptop.c
11198
11199 LG2160 MEDIA DRIVER
11200 M:      Michael Krufky <mkrufky@linuxtv.org>
11201 L:      linux-media@vger.kernel.org
11202 S:      Maintained
11203 W:      https://linuxtv.org
11204 W:      http://github.com/mkrufky
11205 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11206 T:      git git://linuxtv.org/mkrufky/tuners.git
11207 F:      drivers/media/dvb-frontends/lg2160.*
11208
11209 LGDT3305 MEDIA DRIVER
11210 M:      Michael Krufky <mkrufky@linuxtv.org>
11211 L:      linux-media@vger.kernel.org
11212 S:      Maintained
11213 W:      https://linuxtv.org
11214 W:      http://github.com/mkrufky
11215 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11216 T:      git git://linuxtv.org/mkrufky/tuners.git
11217 F:      drivers/media/dvb-frontends/lgdt3305.*
11218
11219 LIBATA PATA ARASAN COMPACT FLASH CONTROLLER
11220 M:      Viresh Kumar <vireshk@kernel.org>
11221 L:      linux-ide@vger.kernel.org
11222 S:      Maintained
11223 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
11224 F:      drivers/ata/pata_arasan_cf.c
11225 F:      include/linux/pata_arasan_cf_data.h
11226
11227 LIBATA PATA DRIVERS
11228 R:      Sergey Shtylyov <s.shtylyov@omp.ru>
11229 L:      linux-ide@vger.kernel.org
11230 F:      drivers/ata/ata_*.c
11231 F:      drivers/ata/pata_*.c
11232
11233 LIBATA PATA FARADAY FTIDE010 AND GEMINI SATA BRIDGE DRIVERS
11234 M:      Linus Walleij <linus.walleij@linaro.org>
11235 L:      linux-ide@vger.kernel.org
11236 S:      Maintained
11237 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
11238 F:      drivers/ata/pata_ftide010.c
11239 F:      drivers/ata/sata_gemini.c
11240 F:      drivers/ata/sata_gemini.h
11241
11242 LIBATA SATA AHCI PLATFORM devices support
11243 M:      Hans de Goede <hdegoede@redhat.com>
11244 M:      Jens Axboe <axboe@kernel.dk>
11245 L:      linux-ide@vger.kernel.org
11246 S:      Maintained
11247 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
11248 F:      drivers/ata/ahci_platform.c
11249 F:      drivers/ata/libahci_platform.c
11250 F:      include/linux/ahci_platform.h
11251
11252 LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER
11253 M:      Mikael Pettersson <mikpelinux@gmail.com>
11254 L:      linux-ide@vger.kernel.org
11255 S:      Maintained
11256 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
11257 F:      drivers/ata/sata_promise.*
11258
11259 LIBATA SUBSYSTEM (Serial and Parallel ATA drivers)
11260 M:      Damien Le Moal <damien.lemoal@opensource.wdc.com>
11261 L:      linux-ide@vger.kernel.org
11262 S:      Maintained
11263 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dlemoal/libata.git
11264 F:      Documentation/devicetree/bindings/ata/
11265 F:      drivers/ata/
11266 F:      include/linux/ata.h
11267 F:      include/linux/libata.h
11268
11269 LIBNVDIMM BTT: BLOCK TRANSLATION TABLE
11270 M:      Vishal Verma <vishal.l.verma@intel.com>
11271 M:      Dan Williams <dan.j.williams@intel.com>
11272 M:      Dave Jiang <dave.jiang@intel.com>
11273 L:      nvdimm@lists.linux.dev
11274 S:      Supported
11275 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
11276 P:      Documentation/nvdimm/maintainer-entry-profile.rst
11277 F:      drivers/nvdimm/btt*
11278
11279 LIBNVDIMM PMEM: PERSISTENT MEMORY DRIVER
11280 M:      Dan Williams <dan.j.williams@intel.com>
11281 M:      Vishal Verma <vishal.l.verma@intel.com>
11282 M:      Dave Jiang <dave.jiang@intel.com>
11283 L:      nvdimm@lists.linux.dev
11284 S:      Supported
11285 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
11286 P:      Documentation/nvdimm/maintainer-entry-profile.rst
11287 F:      drivers/nvdimm/pmem*
11288
11289 LIBNVDIMM: DEVICETREE BINDINGS
11290 M:      Oliver O'Halloran <oohall@gmail.com>
11291 L:      nvdimm@lists.linux.dev
11292 S:      Supported
11293 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
11294 F:      Documentation/devicetree/bindings/pmem/pmem-region.txt
11295 F:      drivers/nvdimm/of_pmem.c
11296
11297 LIBNVDIMM: NON-VOLATILE MEMORY DEVICE SUBSYSTEM
11298 M:      Dan Williams <dan.j.williams@intel.com>
11299 M:      Vishal Verma <vishal.l.verma@intel.com>
11300 M:      Dave Jiang <dave.jiang@intel.com>
11301 M:      Ira Weiny <ira.weiny@intel.com>
11302 L:      nvdimm@lists.linux.dev
11303 S:      Supported
11304 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
11305 P:      Documentation/nvdimm/maintainer-entry-profile.rst
11306 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nvdimm/nvdimm.git
11307 F:      drivers/acpi/nfit/*
11308 F:      drivers/nvdimm/*
11309 F:      include/linux/libnvdimm.h
11310 F:      include/linux/nd.h
11311 F:      include/uapi/linux/ndctl.h
11312 F:      tools/testing/nvdimm/
11313
11314 LICENSES and SPDX stuff
11315 M:      Thomas Gleixner <tglx@linutronix.de>
11316 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
11317 L:      linux-spdx@vger.kernel.org
11318 S:      Maintained
11319 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/spdx.git
11320 F:      COPYING
11321 F:      Documentation/process/license-rules.rst
11322 F:      LICENSES/
11323 F:      scripts/spdxcheck-test.sh
11324 F:      scripts/spdxcheck.py
11325
11326 LINEAR RANGES HELPERS
11327 M:      Mark Brown <broonie@kernel.org>
11328 R:      Matti Vaittinen <mazziesaccount@gmail.com>
11329 F:      lib/linear_ranges.c
11330 F:      lib/test_linear_ranges.c
11331 F:      include/linux/linear_range.h
11332
11333 LINUX FOR POWER MACINTOSH
11334 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
11335 L:      linuxppc-dev@lists.ozlabs.org
11336 S:      Odd Fixes
11337 F:      arch/powerpc/platforms/powermac/
11338 F:      drivers/macintosh/
11339
11340 LINUX FOR POWERPC (32-BIT AND 64-BIT)
11341 M:      Michael Ellerman <mpe@ellerman.id.au>
11342 R:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
11343 R:      Paul Mackerras <paulus@samba.org>
11344 L:      linuxppc-dev@lists.ozlabs.org
11345 S:      Supported
11346 W:      https://github.com/linuxppc/wiki/wiki
11347 Q:      http://patchwork.ozlabs.org/project/linuxppc-dev/list/
11348 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git
11349 F:      Documentation/ABI/stable/sysfs-firmware-opal-*
11350 F:      Documentation/devicetree/bindings/i2c/i2c-opal.txt
11351 F:      Documentation/devicetree/bindings/powerpc/
11352 F:      Documentation/devicetree/bindings/rtc/rtc-opal.txt
11353 F:      Documentation/powerpc/
11354 F:      arch/powerpc/
11355 F:      drivers/*/*/*pasemi*
11356 F:      drivers/*/*pasemi*
11357 F:      drivers/char/tpm/tpm_ibmvtpm*
11358 F:      drivers/crypto/nx/
11359 F:      drivers/crypto/vmx/
11360 F:      drivers/i2c/busses/i2c-opal.c
11361 F:      drivers/net/ethernet/ibm/ibmveth.*
11362 F:      drivers/net/ethernet/ibm/ibmvnic.*
11363 F:      drivers/pci/hotplug/pnv_php.c
11364 F:      drivers/pci/hotplug/rpa*
11365 F:      drivers/rtc/rtc-opal.c
11366 F:      drivers/scsi/ibmvscsi/
11367 F:      drivers/tty/hvc/hvc_opal.c
11368 F:      drivers/watchdog/wdrtas.c
11369 F:      tools/testing/selftests/powerpc
11370 N:      /pmac
11371 N:      powermac
11372 N:      powernv
11373 N:      [^a-z0-9]ps3
11374 N:      pseries
11375
11376 LINUX FOR POWERPC EMBEDDED MPC5XXX
11377 M:      Anatolij Gustschin <agust@denx.de>
11378 L:      linuxppc-dev@lists.ozlabs.org
11379 S:      Odd Fixes
11380 F:      arch/powerpc/platforms/512x/
11381 F:      arch/powerpc/platforms/52xx/
11382
11383 LINUX FOR POWERPC EMBEDDED PPC4XX
11384 L:      linuxppc-dev@lists.ozlabs.org
11385 S:      Orphan
11386 F:      arch/powerpc/platforms/40x/
11387 F:      arch/powerpc/platforms/44x/
11388
11389 LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
11390 M:      Scott Wood <oss@buserror.net>
11391 L:      linuxppc-dev@lists.ozlabs.org
11392 S:      Odd fixes
11393 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git
11394 F:      Documentation/devicetree/bindings/powerpc/fsl/
11395 F:      arch/powerpc/platforms/83xx/
11396 F:      arch/powerpc/platforms/85xx/
11397
11398 LINUX FOR POWERPC EMBEDDED PPC8XX
11399 M:      Christophe Leroy <christophe.leroy@csgroup.eu>
11400 L:      linuxppc-dev@lists.ozlabs.org
11401 S:      Maintained
11402 F:      arch/powerpc/platforms/8xx/
11403
11404 LINUX KERNEL DUMP TEST MODULE (LKDTM)
11405 M:      Kees Cook <keescook@chromium.org>
11406 S:      Maintained
11407 F:      drivers/misc/lkdtm/*
11408 F:      tools/testing/selftests/lkdtm/*
11409
11410 LINUX KERNEL MEMORY CONSISTENCY MODEL (LKMM)
11411 M:      Alan Stern <stern@rowland.harvard.edu>
11412 M:      Andrea Parri <parri.andrea@gmail.com>
11413 M:      Will Deacon <will@kernel.org>
11414 M:      Peter Zijlstra <peterz@infradead.org>
11415 M:      Boqun Feng <boqun.feng@gmail.com>
11416 M:      Nicholas Piggin <npiggin@gmail.com>
11417 M:      David Howells <dhowells@redhat.com>
11418 M:      Jade Alglave <j.alglave@ucl.ac.uk>
11419 M:      Luc Maranget <luc.maranget@inria.fr>
11420 M:      "Paul E. McKenney" <paulmck@kernel.org>
11421 R:      Akira Yokosawa <akiyks@gmail.com>
11422 R:      Daniel Lustig <dlustig@nvidia.com>
11423 R:      Joel Fernandes <joel@joelfernandes.org>
11424 L:      linux-kernel@vger.kernel.org
11425 L:      linux-arch@vger.kernel.org
11426 S:      Supported
11427 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
11428 F:      Documentation/atomic_bitops.txt
11429 F:      Documentation/atomic_t.txt
11430 F:      Documentation/core-api/refcount-vs-atomic.rst
11431 F:      Documentation/litmus-tests/
11432 F:      Documentation/memory-barriers.txt
11433 F:      tools/memory-model/
11434
11435 LIS3LV02D ACCELEROMETER DRIVER
11436 M:      Eric Piel <eric.piel@tremplin-utc.net>
11437 S:      Maintained
11438 F:      Documentation/misc-devices/lis3lv02d.rst
11439 F:      drivers/misc/lis3lv02d/
11440 F:      drivers/platform/x86/hp_accel.c
11441
11442 LIST KUNIT TEST
11443 M:      David Gow <davidgow@google.com>
11444 L:      linux-kselftest@vger.kernel.org
11445 L:      kunit-dev@googlegroups.com
11446 S:      Maintained
11447 F:      lib/list-test.c
11448
11449 LITEX PLATFORM
11450 M:      Karol Gugala <kgugala@antmicro.com>
11451 M:      Mateusz Holenko <mholenko@antmicro.com>
11452 M:      Gabriel Somlo <gsomlo@gmail.com>
11453 M:      Joel Stanley <joel@jms.id.au>
11454 S:      Maintained
11455 F:      Documentation/devicetree/bindings/*/litex,*.yaml
11456 F:      arch/openrisc/boot/dts/or1klitex.dts
11457 F:      include/linux/litex.h
11458 F:      drivers/tty/serial/liteuart.c
11459 F:      drivers/soc/litex/*
11460 F:      drivers/net/ethernet/litex/*
11461 F:      drivers/mmc/host/litex_mmc.c
11462 N:      litex
11463
11464 LIVE PATCHING
11465 M:      Josh Poimboeuf <jpoimboe@kernel.org>
11466 M:      Jiri Kosina <jikos@kernel.org>
11467 M:      Miroslav Benes <mbenes@suse.cz>
11468 M:      Petr Mladek <pmladek@suse.com>
11469 R:      Joe Lawrence <joe.lawrence@redhat.com>
11470 L:      live-patching@vger.kernel.org
11471 S:      Maintained
11472 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/livepatching/livepatching.git
11473 F:      Documentation/ABI/testing/sysfs-kernel-livepatch
11474 F:      Documentation/livepatch/
11475 F:      arch/powerpc/include/asm/livepatch.h
11476 F:      include/linux/livepatch.h
11477 F:      kernel/livepatch/
11478 F:      kernel/module/livepatch.c
11479 F:      lib/livepatch/
11480 F:      samples/livepatch/
11481 F:      tools/testing/selftests/livepatch/
11482
11483 LLC (802.2)
11484 L:      netdev@vger.kernel.org
11485 S:      Odd fixes
11486 F:      include/linux/llc.h
11487 F:      include/net/llc*
11488 F:      include/uapi/linux/llc.h
11489 F:      net/llc/
11490
11491 LM73 HARDWARE MONITOR DRIVER
11492 M:      Guillaume Ligneul <guillaume.ligneul@gmail.com>
11493 L:      linux-hwmon@vger.kernel.org
11494 S:      Maintained
11495 F:      drivers/hwmon/lm73.c
11496
11497 LM78 HARDWARE MONITOR DRIVER
11498 M:      Jean Delvare <jdelvare@suse.com>
11499 L:      linux-hwmon@vger.kernel.org
11500 S:      Maintained
11501 F:      Documentation/hwmon/lm78.rst
11502 F:      drivers/hwmon/lm78.c
11503
11504 LM83 HARDWARE MONITOR DRIVER
11505 M:      Jean Delvare <jdelvare@suse.com>
11506 L:      linux-hwmon@vger.kernel.org
11507 S:      Maintained
11508 F:      Documentation/hwmon/lm83.rst
11509 F:      drivers/hwmon/lm83.c
11510
11511 LM90 HARDWARE MONITOR DRIVER
11512 M:      Jean Delvare <jdelvare@suse.com>
11513 L:      linux-hwmon@vger.kernel.org
11514 S:      Maintained
11515 F:      Documentation/devicetree/bindings/hwmon/national,lm90.yaml
11516 F:      Documentation/hwmon/lm90.rst
11517 F:      drivers/hwmon/lm90.c
11518 F:      include/dt-bindings/thermal/lm90.h
11519
11520 LM95234 HARDWARE MONITOR DRIVER
11521 M:      Guenter Roeck <linux@roeck-us.net>
11522 L:      linux-hwmon@vger.kernel.org
11523 S:      Maintained
11524 F:      Documentation/hwmon/lm95234.rst
11525 F:      drivers/hwmon/lm95234.c
11526
11527 LME2510 MEDIA DRIVER
11528 M:      Malcolm Priestley <tvboxspy@gmail.com>
11529 L:      linux-media@vger.kernel.org
11530 S:      Maintained
11531 W:      https://linuxtv.org
11532 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11533 F:      drivers/media/usb/dvb-usb-v2/lmedm04*
11534
11535 LOADPIN SECURITY MODULE
11536 M:      Kees Cook <keescook@chromium.org>
11537 S:      Supported
11538 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git lsm/loadpin
11539 F:      Documentation/admin-guide/LSM/LoadPin.rst
11540 F:      security/loadpin/
11541
11542 LOCKING PRIMITIVES
11543 M:      Peter Zijlstra <peterz@infradead.org>
11544 M:      Ingo Molnar <mingo@redhat.com>
11545 M:      Will Deacon <will@kernel.org>
11546 R:      Waiman Long <longman@redhat.com>
11547 R:      Boqun Feng <boqun.feng@gmail.com> (LOCKDEP)
11548 L:      linux-kernel@vger.kernel.org
11549 S:      Maintained
11550 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
11551 F:      Documentation/locking/
11552 F:      arch/*/include/asm/spinlock*.h
11553 F:      include/linux/lockdep.h
11554 F:      include/linux/mutex*.h
11555 F:      include/linux/rwlock*.h
11556 F:      include/linux/rwsem*.h
11557 F:      include/linux/seqlock.h
11558 F:      include/linux/spinlock*.h
11559 F:      kernel/locking/
11560 F:      lib/locking*.[ch]
11561 X:      kernel/locking/locktorture.c
11562
11563 LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
11564 M:      "Richard Russon (FlatCap)" <ldm@flatcap.org>
11565 L:      linux-ntfs-dev@lists.sourceforge.net
11566 S:      Maintained
11567 W:      http://www.linux-ntfs.org/content/view/19/37/
11568 F:      Documentation/admin-guide/ldm.rst
11569 F:      block/partitions/ldm.*
11570
11571 LOGITECH HID GAMING KEYBOARDS
11572 M:      Hans de Goede <hdegoede@redhat.com>
11573 L:      linux-input@vger.kernel.org
11574 S:      Maintained
11575 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
11576 F:      drivers/hid/hid-lg-g15.c
11577
11578 LONTIUM LT8912B MIPI TO HDMI BRIDGE
11579 M:      Adrien Grassein <adrien.grassein@gmail.com>
11580 S:      Maintained
11581 F:      Documentation/devicetree/bindings/display/bridge/lontium,lt8912b.yaml
11582 F:      drivers/gpu/drm/bridge/lontium-lt8912b.c
11583
11584 LOONGARCH
11585 M:      Huacai Chen <chenhuacai@kernel.org>
11586 R:      WANG Xuerui <kernel@xen0n.name>
11587 S:      Maintained
11588 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chenhuacai/linux-loongson.git
11589 F:      arch/loongarch/
11590 F:      drivers/*/*loongarch*
11591 F:      Documentation/loongarch/
11592 F:      Documentation/translations/zh_CN/loongarch/
11593
11594 LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
11595 M:      Sathya Prakash <sathya.prakash@broadcom.com>
11596 M:      Sreekanth Reddy <sreekanth.reddy@broadcom.com>
11597 M:      Suganath Prabu Subramani <suganath-prabu.subramani@broadcom.com>
11598 L:      MPT-FusionLinux.pdl@broadcom.com
11599 L:      linux-scsi@vger.kernel.org
11600 S:      Supported
11601 W:      http://www.avagotech.com/support/
11602 F:      drivers/message/fusion/
11603 F:      drivers/scsi/mpt3sas/
11604
11605 LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
11606 M:      Matthew Wilcox <willy@infradead.org>
11607 L:      linux-scsi@vger.kernel.org
11608 S:      Maintained
11609 F:      drivers/scsi/sym53c8xx_2/
11610
11611 LTC1660 DAC DRIVER
11612 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
11613 L:      linux-iio@vger.kernel.org
11614 S:      Maintained
11615 F:      Documentation/devicetree/bindings/iio/dac/lltc,ltc1660.yaml
11616 F:      drivers/iio/dac/ltc1660.c
11617
11618 LTC2688 IIO DAC DRIVER
11619 M:      Nuno Sá <nuno.sa@analog.com>
11620 L:      linux-iio@vger.kernel.org
11621 S:      Supported
11622 W:      http://ez.analog.com/community/linux-device-drivers
11623 F:      Documentation/ABI/testing/sysfs-bus-iio-dac-ltc2688
11624 F:      Documentation/devicetree/bindings/iio/dac/adi,ltc2688.yaml
11625 F:      drivers/iio/dac/ltc2688.c
11626
11627 LTC2947 HARDWARE MONITOR DRIVER
11628 M:      Nuno Sá <nuno.sa@analog.com>
11629 L:      linux-hwmon@vger.kernel.org
11630 S:      Supported
11631 W:      https://ez.analog.com/linux-software-drivers
11632 F:      Documentation/devicetree/bindings/hwmon/adi,ltc2947.yaml
11633 F:      drivers/hwmon/ltc2947-core.c
11634 F:      drivers/hwmon/ltc2947-i2c.c
11635 F:      drivers/hwmon/ltc2947-spi.c
11636 F:      drivers/hwmon/ltc2947.h
11637
11638 LTC2983 IIO TEMPERATURE DRIVER
11639 M:      Nuno Sá <nuno.sa@analog.com>
11640 L:      linux-iio@vger.kernel.org
11641 S:      Supported
11642 W:      https://ez.analog.com/linux-software-drivers
11643 F:      Documentation/devicetree/bindings/iio/temperature/adi,ltc2983.yaml
11644 F:      drivers/iio/temperature/ltc2983.c
11645
11646 LTC4261 HARDWARE MONITOR DRIVER
11647 M:      Guenter Roeck <linux@roeck-us.net>
11648 L:      linux-hwmon@vger.kernel.org
11649 S:      Maintained
11650 F:      Documentation/hwmon/ltc4261.rst
11651 F:      drivers/hwmon/ltc4261.c
11652
11653 LTC4306 I2C MULTIPLEXER DRIVER
11654 M:      Michael Hennerich <michael.hennerich@analog.com>
11655 L:      linux-i2c@vger.kernel.org
11656 S:      Supported
11657 W:      https://ez.analog.com/linux-software-drivers
11658 F:      Documentation/devicetree/bindings/i2c/i2c-mux-ltc4306.txt
11659 F:      drivers/i2c/muxes/i2c-mux-ltc4306.c
11660
11661 LTP (Linux Test Project)
11662 M:      Mike Frysinger <vapier@gentoo.org>
11663 M:      Cyril Hrubis <chrubis@suse.cz>
11664 M:      Wanlong Gao <wanlong.gao@gmail.com>
11665 M:      Jan Stancek <jstancek@redhat.com>
11666 M:      Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com>
11667 M:      Alexey Kodanev <alexey.kodanev@oracle.com>
11668 L:      ltp@lists.linux.it (subscribers-only)
11669 S:      Maintained
11670 W:      http://linux-test-project.github.io/
11671 T:      git git://github.com/linux-test-project/ltp.git
11672
11673 LYNX 28G SERDES PHY DRIVER
11674 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
11675 L:      netdev@vger.kernel.org
11676 S:      Supported
11677 F:      Documentation/devicetree/bindings/phy/fsl,lynx-28g.yaml
11678 F:      drivers/phy/freescale/phy-fsl-lynx-28g.c
11679
11680 LYNX PCS MODULE
11681 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
11682 L:      netdev@vger.kernel.org
11683 S:      Supported
11684 F:      drivers/net/pcs/pcs-lynx.c
11685 F:      include/linux/pcs-lynx.h
11686
11687 M68K ARCHITECTURE
11688 M:      Geert Uytterhoeven <geert@linux-m68k.org>
11689 L:      linux-m68k@lists.linux-m68k.org
11690 S:      Maintained
11691 W:      http://www.linux-m68k.org/
11692 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
11693 F:      arch/m68k/
11694 F:      drivers/zorro/
11695
11696 M68K ON APPLE MACINTOSH
11697 M:      Joshua Thompson <funaho@jurai.org>
11698 L:      linux-m68k@lists.linux-m68k.org
11699 S:      Maintained
11700 W:      http://www.mac.linux-m68k.org/
11701 F:      arch/m68k/mac/
11702 F:      drivers/macintosh/adb-iop.c
11703 F:      drivers/macintosh/via-macii.c
11704
11705 M68K ON HP9000/300
11706 M:      Philip Blundell <philb@gnu.org>
11707 S:      Maintained
11708 W:      http://www.tazenda.demon.co.uk/phil/linux-hp
11709 F:      arch/m68k/hp300/
11710
11711 M88DS3103 MEDIA DRIVER
11712 M:      Antti Palosaari <crope@iki.fi>
11713 L:      linux-media@vger.kernel.org
11714 S:      Maintained
11715 W:      https://linuxtv.org
11716 W:      http://palosaari.fi/linux/
11717 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11718 T:      git git://linuxtv.org/anttip/media_tree.git
11719 F:      drivers/media/dvb-frontends/m88ds3103*
11720
11721 M88RS2000 MEDIA DRIVER
11722 M:      Malcolm Priestley <tvboxspy@gmail.com>
11723 L:      linux-media@vger.kernel.org
11724 S:      Maintained
11725 W:      https://linuxtv.org
11726 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11727 F:      drivers/media/dvb-frontends/m88rs2000*
11728
11729 MA901 MASTERKIT USB FM RADIO DRIVER
11730 M:      Alexey Klimov <klimov.linux@gmail.com>
11731 L:      linux-media@vger.kernel.org
11732 S:      Maintained
11733 T:      git git://linuxtv.org/media_tree.git
11734 F:      drivers/media/radio/radio-ma901.c
11735
11736 MAC80211
11737 M:      Johannes Berg <johannes@sipsolutions.net>
11738 L:      linux-wireless@vger.kernel.org
11739 S:      Maintained
11740 W:      https://wireless.wiki.kernel.org/
11741 Q:      https://patchwork.kernel.org/project/linux-wireless/list/
11742 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless.git
11743 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless-next.git
11744 F:      Documentation/networking/mac80211-injection.rst
11745 F:      Documentation/networking/mac80211_hwsim/mac80211_hwsim.rst
11746 F:      drivers/net/wireless/mac80211_hwsim.[ch]
11747 F:      include/net/mac80211.h
11748 F:      net/mac80211/
11749
11750 MAILBOX API
11751 M:      Jassi Brar <jassisinghbrar@gmail.com>
11752 L:      linux-kernel@vger.kernel.org
11753 S:      Maintained
11754 F:      drivers/mailbox/
11755 F:      include/linux/mailbox_client.h
11756 F:      include/linux/mailbox_controller.h
11757 F:      include/dt-bindings/mailbox/
11758 F:      Documentation/devicetree/bindings/mailbox/
11759
11760 MAILBOX ARM MHUv2
11761 M:      Viresh Kumar <viresh.kumar@linaro.org>
11762 M:      Tushar Khandelwal <Tushar.Khandelwal@arm.com>
11763 L:      linux-kernel@vger.kernel.org
11764 S:      Maintained
11765 F:      drivers/mailbox/arm_mhuv2.c
11766 F:      include/linux/mailbox/arm_mhuv2_message.h
11767 F:      Documentation/devicetree/bindings/mailbox/arm,mhuv2.yaml
11768
11769 MANAGEMENT COMPONENT TRANSPORT PROTOCOL (MCTP)
11770 M:      Jeremy Kerr <jk@codeconstruct.com.au>
11771 M:      Matt Johnston <matt@codeconstruct.com.au>
11772 L:      netdev@vger.kernel.org
11773 S:      Maintained
11774 F:      Documentation/networking/mctp.rst
11775 F:      drivers/net/mctp/
11776 F:      include/net/mctp.h
11777 F:      include/net/mctpdevice.h
11778 F:      include/net/netns/mctp.h
11779 F:      net/mctp/
11780
11781 MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
11782 M:      Michael Kerrisk <mtk.manpages@gmail.com>
11783 L:      linux-man@vger.kernel.org
11784 S:      Maintained
11785 W:      http://www.kernel.org/doc/man-pages
11786
11787 MARDUK (CREATOR CI40) DEVICE TREE SUPPORT
11788 M:      Rahul Bedarkar <rahulbedarkar89@gmail.com>
11789 L:      linux-mips@vger.kernel.org
11790 S:      Maintained
11791 F:      arch/mips/boot/dts/img/pistachio*
11792
11793 MARVELL 88E6XXX ETHERNET SWITCH FABRIC DRIVER
11794 M:      Andrew Lunn <andrew@lunn.ch>
11795 M:      Vivien Didelot <vivien.didelot@gmail.com>
11796 L:      netdev@vger.kernel.org
11797 S:      Maintained
11798 F:      Documentation/devicetree/bindings/net/dsa/marvell.txt
11799 F:      Documentation/networking/devlink/mv88e6xxx.rst
11800 F:      drivers/net/dsa/mv88e6xxx/
11801 F:      include/linux/dsa/mv88e6xxx.h
11802 F:      include/linux/platform_data/mv88e6xxx.h
11803
11804 MARVELL ARMADA 3700 PHY DRIVERS
11805 M:      Miquel Raynal <miquel.raynal@bootlin.com>
11806 S:      Maintained
11807 F:      Documentation/devicetree/bindings/phy/phy-mvebu-comphy.txt
11808 F:      Documentation/devicetree/bindings/phy/marvell,armada-3700-utmi-phy.yaml
11809 F:      drivers/phy/marvell/phy-mvebu-a3700-comphy.c
11810 F:      drivers/phy/marvell/phy-mvebu-a3700-utmi.c
11811
11812 MARVELL ARMADA 3700 SERIAL DRIVER
11813 M:      Pali Rohár <pali@kernel.org>
11814 S:      Maintained
11815 F:      Documentation/devicetree/bindings/clock/marvell,armada-3700-uart-clock.yaml
11816 F:      Documentation/devicetree/bindings/serial/mvebu-uart.txt
11817 F:      drivers/tty/serial/mvebu-uart.c
11818
11819 MARVELL ARMADA DRM SUPPORT
11820 M:      Russell King <linux@armlinux.org.uk>
11821 S:      Maintained
11822 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-devel
11823 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-fixes
11824 F:      Documentation/devicetree/bindings/display/armada/
11825 F:      drivers/gpu/drm/armada/
11826 F:      include/uapi/drm/armada_drm.h
11827
11828 MARVELL CRYPTO DRIVER
11829 M:      Boris Brezillon <bbrezillon@kernel.org>
11830 M:      Arnaud Ebalard <arno@natisbad.org>
11831 M:      Srujana Challa <schalla@marvell.com>
11832 L:      linux-crypto@vger.kernel.org
11833 S:      Maintained
11834 F:      drivers/crypto/marvell/
11835 F:      include/linux/soc/marvell/octeontx2/
11836
11837 MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
11838 M:      Mirko Lindner <mlindner@marvell.com>
11839 M:      Stephen Hemminger <stephen@networkplumber.org>
11840 L:      netdev@vger.kernel.org
11841 S:      Maintained
11842 F:      drivers/net/ethernet/marvell/sk*
11843
11844 MARVELL LIBERTAS WIRELESS DRIVER
11845 L:      libertas-dev@lists.infradead.org
11846 S:      Orphan
11847 F:      drivers/net/wireless/marvell/libertas/
11848
11849 MARVELL MACCHIATOBIN SUPPORT
11850 M:      Russell King <linux@armlinux.org.uk>
11851 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11852 S:      Maintained
11853 F:      arch/arm64/boot/dts/marvell/armada-8040-mcbin.dts
11854
11855 MARVELL MV643XX ETHERNET DRIVER
11856 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
11857 L:      netdev@vger.kernel.org
11858 S:      Maintained
11859 F:      drivers/net/ethernet/marvell/mv643xx_eth.*
11860 F:      include/linux/mv643xx.h
11861
11862 MARVELL MV88X3310 PHY DRIVER
11863 M:      Russell King <linux@armlinux.org.uk>
11864 M:      Marek Behún <kabel@kernel.org>
11865 L:      netdev@vger.kernel.org
11866 S:      Maintained
11867 F:      drivers/net/phy/marvell10g.c
11868
11869 MARVELL MVEBU THERMAL DRIVER
11870 M:      Miquel Raynal <miquel.raynal@bootlin.com>
11871 S:      Maintained
11872 F:      drivers/thermal/armada_thermal.c
11873
11874 MARVELL MVNETA ETHERNET DRIVER
11875 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
11876 L:      netdev@vger.kernel.org
11877 S:      Maintained
11878 F:      drivers/net/ethernet/marvell/mvneta.*
11879
11880 MARVELL MVPP2 ETHERNET DRIVER
11881 M:      Marcin Wojtas <mw@semihalf.com>
11882 M:      Russell King <linux@armlinux.org.uk>
11883 L:      netdev@vger.kernel.org
11884 S:      Maintained
11885 F:      Documentation/devicetree/bindings/net/marvell-pp2.txt
11886 F:      drivers/net/ethernet/marvell/mvpp2/
11887
11888 MARVELL MWIFIEX WIRELESS DRIVER
11889 M:      Amitkumar Karwar <amitkarwar@gmail.com>
11890 M:      Ganapathi Bhat <ganapathi017@gmail.com>
11891 M:      Sharvari Harisangam <sharvari.harisangam@nxp.com>
11892 M:      Xinming Hu <huxinming820@gmail.com>
11893 L:      linux-wireless@vger.kernel.org
11894 S:      Maintained
11895 F:      drivers/net/wireless/marvell/mwifiex/
11896
11897 MARVELL MWL8K WIRELESS DRIVER
11898 M:      Lennert Buytenhek <buytenh@wantstofly.org>
11899 L:      linux-wireless@vger.kernel.org
11900 S:      Odd Fixes
11901 F:      drivers/net/wireless/marvell/mwl8k.c
11902
11903 MARVELL NAND CONTROLLER DRIVER
11904 M:      Miquel Raynal <miquel.raynal@bootlin.com>
11905 L:      linux-mtd@lists.infradead.org
11906 S:      Maintained
11907 F:      Documentation/devicetree/bindings/mtd/marvell-nand.txt
11908 F:      drivers/mtd/nand/raw/marvell_nand.c
11909
11910 MARVELL OCTEONTX2 PHYSICAL FUNCTION DRIVER
11911 M:      Sunil Goutham <sgoutham@marvell.com>
11912 M:      Geetha sowjanya <gakula@marvell.com>
11913 M:      Subbaraya Sundeep <sbhatta@marvell.com>
11914 M:      hariprasad <hkelam@marvell.com>
11915 L:      netdev@vger.kernel.org
11916 S:      Supported
11917 F:      drivers/net/ethernet/marvell/octeontx2/nic/
11918 F:      include/linux/soc/marvell/octeontx2/
11919
11920 MARVELL OCTEONTX2 RVU ADMIN FUNCTION DRIVER
11921 M:      Sunil Goutham <sgoutham@marvell.com>
11922 M:      Linu Cherian <lcherian@marvell.com>
11923 M:      Geetha sowjanya <gakula@marvell.com>
11924 M:      Jerin Jacob <jerinj@marvell.com>
11925 M:      hariprasad <hkelam@marvell.com>
11926 M:      Subbaraya Sundeep <sbhatta@marvell.com>
11927 L:      netdev@vger.kernel.org
11928 S:      Supported
11929 F:      Documentation/networking/device_drivers/ethernet/marvell/octeontx2.rst
11930 F:      drivers/net/ethernet/marvell/octeontx2/af/
11931
11932 MARVELL PRESTERA ETHERNET SWITCH DRIVER
11933 M:      Taras Chornyi <tchornyi@marvell.com>
11934 S:      Supported
11935 W:      https://github.com/Marvell-switching/switchdev-prestera
11936 F:      drivers/net/ethernet/marvell/prestera/
11937
11938 MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
11939 M:      Nicolas Pitre <nico@fluxnic.net>
11940 S:      Odd Fixes
11941 F:      drivers/mmc/host/mvsdio.*
11942
11943 MARVELL USB MDIO CONTROLLER DRIVER
11944 M:      Tobias Waldekranz <tobias@waldekranz.com>
11945 L:      netdev@vger.kernel.org
11946 S:      Maintained
11947 F:      Documentation/devicetree/bindings/net/marvell,mvusb.yaml
11948 F:      drivers/net/mdio/mdio-mvusb.c
11949
11950 MARVELL XENON MMC/SD/SDIO HOST CONTROLLER DRIVER
11951 M:      Hu Ziji <huziji@marvell.com>
11952 L:      linux-mmc@vger.kernel.org
11953 S:      Supported
11954 F:      Documentation/devicetree/bindings/mmc/marvell,xenon-sdhci.yaml
11955 F:      drivers/mmc/host/sdhci-xenon*
11956
11957 MARVELL OCTEON ENDPOINT DRIVER
11958 M:      Veerasenareddy Burru <vburru@marvell.com>
11959 M:      Abhijit Ayarekar <aayarekar@marvell.com>
11960 L:      netdev@vger.kernel.org
11961 S:      Supported
11962 F:      drivers/net/ethernet/marvell/octeon_ep
11963
11964 MATROX FRAMEBUFFER DRIVER
11965 L:      linux-fbdev@vger.kernel.org
11966 S:      Orphan
11967 F:      drivers/video/fbdev/matrox/matroxfb_*
11968 F:      include/uapi/linux/matroxfb.h
11969
11970 MAX15301 DRIVER
11971 M:      Daniel Nilsson <daniel.nilsson@flex.com>
11972 L:      linux-hwmon@vger.kernel.org
11973 S:      Maintained
11974 F:      Documentation/hwmon/max15301.rst
11975 F:      drivers/hwmon/pmbus/max15301.c
11976
11977 MAX16065 HARDWARE MONITOR DRIVER
11978 M:      Guenter Roeck <linux@roeck-us.net>
11979 L:      linux-hwmon@vger.kernel.org
11980 S:      Maintained
11981 F:      Documentation/hwmon/max16065.rst
11982 F:      drivers/hwmon/max16065.c
11983
11984 MAX2175 SDR TUNER DRIVER
11985 M:      Ramesh Shanmugasundaram <rashanmu@gmail.com>
11986 L:      linux-media@vger.kernel.org
11987 S:      Maintained
11988 T:      git git://linuxtv.org/media_tree.git
11989 F:      Documentation/devicetree/bindings/media/i2c/max2175.txt
11990 F:      Documentation/userspace-api/media/drivers/max2175.rst
11991 F:      drivers/media/i2c/max2175*
11992 F:      include/uapi/linux/max2175.h
11993
11994 MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
11995 L:      linux-hwmon@vger.kernel.org
11996 S:      Orphan
11997 F:      Documentation/hwmon/max6650.rst
11998 F:      drivers/hwmon/max6650.c
11999
12000 MAX6697 HARDWARE MONITOR DRIVER
12001 M:      Guenter Roeck <linux@roeck-us.net>
12002 L:      linux-hwmon@vger.kernel.org
12003 S:      Maintained
12004 F:      Documentation/devicetree/bindings/hwmon/max6697.txt
12005 F:      Documentation/hwmon/max6697.rst
12006 F:      drivers/hwmon/max6697.c
12007 F:      include/linux/platform_data/max6697.h
12008
12009 MAX9286 QUAD GMSL DESERIALIZER DRIVER
12010 M:      Jacopo Mondi <jacopo+renesas@jmondi.org>
12011 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
12012 M:      Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
12013 M:      Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
12014 L:      linux-media@vger.kernel.org
12015 S:      Maintained
12016 F:      Documentation/devicetree/bindings/media/i2c/maxim,max9286.yaml
12017 F:      drivers/media/i2c/max9286.c
12018
12019 MAX96712 QUAD GMSL2 DESERIALIZER DRIVER
12020 M:      Niklas Söderlund <niklas.soderlund@ragnatech.se>
12021 L:      linux-media@vger.kernel.org
12022 S:      Maintained
12023 F:      drivers/staging/media/max96712/max96712.c
12024
12025 MAX9860 MONO AUDIO VOICE CODEC DRIVER
12026 M:      Peter Rosin <peda@axentia.se>
12027 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12028 S:      Maintained
12029 F:      Documentation/devicetree/bindings/sound/max9860.txt
12030 F:      sound/soc/codecs/max9860.*
12031
12032 MAXBOTIX ULTRASONIC RANGER IIO DRIVER
12033 M:      Andreas Klinger <ak@it-klinger.de>
12034 L:      linux-iio@vger.kernel.org
12035 S:      Maintained
12036 F:      Documentation/devicetree/bindings/iio/proximity/maxbotix,mb1232.yaml
12037 F:      drivers/iio/proximity/mb1232.c
12038
12039 MAXIM MAX17040 FAMILY FUEL GAUGE DRIVERS
12040 R:      Iskren Chernev <iskren.chernev@gmail.com>
12041 R:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
12042 R:      Marek Szyprowski <m.szyprowski@samsung.com>
12043 R:      Matheus Castello <matheus@castello.eng.br>
12044 L:      linux-pm@vger.kernel.org
12045 S:      Maintained
12046 F:      Documentation/devicetree/bindings/power/supply/maxim,max17040.yaml
12047 F:      drivers/power/supply/max17040_battery.c
12048
12049 MAXIM MAX17042 FAMILY FUEL GAUGE DRIVERS
12050 R:      Hans de Goede <hdegoede@redhat.com>
12051 R:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
12052 R:      Marek Szyprowski <m.szyprowski@samsung.com>
12053 R:      Sebastian Krzyszkowiak <sebastian.krzyszkowiak@puri.sm>
12054 R:      Purism Kernel Team <kernel@puri.sm>
12055 L:      linux-pm@vger.kernel.org
12056 S:      Maintained
12057 F:      Documentation/devicetree/bindings/power/supply/maxim,max17042.yaml
12058 F:      drivers/power/supply/max17042_battery.c
12059
12060 MAXIM MAX20086 CAMERA POWER PROTECTOR DRIVER
12061 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12062 L:      linux-kernel@vger.kernel.org
12063 S:      Maintained
12064 F:      Documentation/devicetree/bindings/regulator/maxim,max20086.yaml
12065 F:      drivers/regulator/max20086-regulator.c
12066
12067 MAXIM MAX77650 PMIC MFD DRIVER
12068 M:      Bartosz Golaszewski <brgl@bgdev.pl>
12069 L:      linux-kernel@vger.kernel.org
12070 S:      Maintained
12071 F:      Documentation/devicetree/bindings/*/*max77650.yaml
12072 F:      Documentation/devicetree/bindings/*/max77650*.yaml
12073 F:      drivers/gpio/gpio-max77650.c
12074 F:      drivers/input/misc/max77650-onkey.c
12075 F:      drivers/leds/leds-max77650.c
12076 F:      drivers/mfd/max77650.c
12077 F:      drivers/power/supply/max77650-charger.c
12078 F:      drivers/regulator/max77650-regulator.c
12079 F:      include/linux/mfd/max77650.h
12080
12081 MAXIM MAX77714 PMIC MFD DRIVER
12082 M:      Luca Ceresoli <luca@lucaceresoli.net>
12083 S:      Maintained
12084 F:      Documentation/devicetree/bindings/mfd/maxim,max77714.yaml
12085 F:      drivers/mfd/max77714.c
12086 F:      include/linux/mfd/max77714.h
12087
12088 MAXIM MAX77802 PMIC REGULATOR DEVICE DRIVER
12089 M:      Javier Martinez Canillas <javier@dowhile0.org>
12090 L:      linux-kernel@vger.kernel.org
12091 S:      Supported
12092 F:      Documentation/devicetree/bindings/*/*max77802.yaml
12093 F:      drivers/regulator/max77802-regulator.c
12094 F:      include/dt-bindings/*/*max77802.h
12095
12096 MAXIM MAX77976 BATTERY CHARGER
12097 M:      Luca Ceresoli <luca@lucaceresoli.net>
12098 S:      Supported
12099 F:      Documentation/devicetree/bindings/power/supply/maxim,max77976.yaml
12100 F:      drivers/power/supply/max77976_charger.c
12101
12102 MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS
12103 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
12104 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
12105 L:      linux-pm@vger.kernel.org
12106 S:      Supported
12107 B:      mailto:linux-samsung-soc@vger.kernel.org
12108 F:      Documentation/devicetree/bindings/power/supply/maxim,max14577.yaml
12109 F:      Documentation/devicetree/bindings/power/supply/maxim,max77693.yaml
12110 F:      drivers/power/supply/max14577_charger.c
12111 F:      drivers/power/supply/max77693_charger.c
12112
12113 MAXIM PMIC AND MUIC DRIVERS FOR EXYNOS BASED BOARDS
12114 M:      Chanwoo Choi <cw00.choi@samsung.com>
12115 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
12116 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
12117 L:      linux-kernel@vger.kernel.org
12118 S:      Supported
12119 B:      mailto:linux-samsung-soc@vger.kernel.org
12120 F:      Documentation/devicetree/bindings/*/maxim,max14577.yaml
12121 F:      Documentation/devicetree/bindings/*/maxim,max77686.yaml
12122 F:      Documentation/devicetree/bindings/*/maxim,max77693.yaml
12123 F:      Documentation/devicetree/bindings/*/maxim,max77843.yaml
12124 F:      Documentation/devicetree/bindings/clock/maxim,max77686.txt
12125 F:      Documentation/devicetree/bindings/mfd/max77693.txt
12126 F:      drivers/*/*max77843.c
12127 F:      drivers/*/max14577*.c
12128 F:      drivers/*/max77686*.c
12129 F:      drivers/*/max77693*.c
12130 F:      drivers/clk/clk-max77686.c
12131 F:      drivers/extcon/extcon-max14577.c
12132 F:      drivers/extcon/extcon-max77693.c
12133 F:      drivers/rtc/rtc-max77686.c
12134 F:      include/linux/mfd/max14577*.h
12135 F:      include/linux/mfd/max77686*.h
12136 F:      include/linux/mfd/max77693*.h
12137
12138 MAXIRADIO FM RADIO RECEIVER DRIVER
12139 M:      Hans Verkuil <hverkuil@xs4all.nl>
12140 L:      linux-media@vger.kernel.org
12141 S:      Maintained
12142 W:      https://linuxtv.org
12143 T:      git git://linuxtv.org/media_tree.git
12144 F:      drivers/media/radio/radio-maxiradio*
12145
12146 MAXLINEAR ETHERNET PHY DRIVER
12147 M:      Xu Liang <lxu@maxlinear.com>
12148 L:      netdev@vger.kernel.org
12149 S:      Supported
12150 F:      drivers/net/phy/mxl-gpy.c
12151
12152 MCBA MICROCHIP CAN BUS ANALYZER TOOL DRIVER
12153 R:      Yasushi SHOJI <yashi@spacecubics.com>
12154 L:      linux-can@vger.kernel.org
12155 S:      Maintained
12156 F:      drivers/net/can/usb/mcba_usb.c
12157
12158 MCAN MMIO DEVICE DRIVER
12159 M:      Chandrasekar Ramakrishnan <rcsekar@samsung.com>
12160 L:      linux-can@vger.kernel.org
12161 S:      Maintained
12162 F:      Documentation/devicetree/bindings/net/can/bosch,m_can.yaml
12163 F:      drivers/net/can/m_can/m_can.c
12164 F:      drivers/net/can/m_can/m_can.h
12165 F:      drivers/net/can/m_can/m_can_platform.c
12166
12167 MCP2221A MICROCHIP USB-HID TO I2C BRIDGE DRIVER
12168 M:      Rishi Gupta <gupt21@gmail.com>
12169 L:      linux-i2c@vger.kernel.org
12170 L:      linux-input@vger.kernel.org
12171 S:      Maintained
12172 F:      drivers/hid/hid-mcp2221.c
12173
12174 MCP251XFD SPI-CAN NETWORK DRIVER
12175 M:      Marc Kleine-Budde <mkl@pengutronix.de>
12176 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
12177 R:      Thomas Kopp <thomas.kopp@microchip.com>
12178 L:      linux-can@vger.kernel.org
12179 S:      Maintained
12180 F:      Documentation/devicetree/bindings/net/can/microchip,mcp251xfd.yaml
12181 F:      drivers/net/can/spi/mcp251xfd/
12182
12183 MCP4018 AND MCP4531 MICROCHIP DIGITAL POTENTIOMETER DRIVERS
12184 M:      Peter Rosin <peda@axentia.se>
12185 L:      linux-iio@vger.kernel.org
12186 S:      Maintained
12187 F:      Documentation/ABI/testing/sysfs-bus-iio-potentiometer-mcp4531
12188 F:      drivers/iio/potentiometer/mcp4018.c
12189 F:      drivers/iio/potentiometer/mcp4531.c
12190
12191 MCR20A IEEE-802.15.4 RADIO DRIVER
12192 M:      Xue Liu <liuxuenetmail@gmail.com>
12193 L:      linux-wpan@vger.kernel.org
12194 S:      Maintained
12195 W:      https://github.com/xueliu/mcr20a-linux
12196 F:      Documentation/devicetree/bindings/net/ieee802154/mcr20a.txt
12197 F:      drivers/net/ieee802154/mcr20a.c
12198 F:      drivers/net/ieee802154/mcr20a.h
12199
12200 MEASUREMENT COMPUTING CIO-DAC IIO DRIVER
12201 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
12202 L:      linux-iio@vger.kernel.org
12203 S:      Maintained
12204 F:      drivers/iio/dac/cio-dac.c
12205
12206 MEDIA CONTROLLER FRAMEWORK
12207 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
12208 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12209 L:      linux-media@vger.kernel.org
12210 S:      Supported
12211 W:      https://www.linuxtv.org
12212 T:      git git://linuxtv.org/media_tree.git
12213 F:      drivers/media/mc/
12214 F:      include/media/media-*.h
12215 F:      include/uapi/linux/media.h
12216
12217 MEDIA DRIVER FOR FREESCALE IMX PXP
12218 M:      Philipp Zabel <p.zabel@pengutronix.de>
12219 L:      linux-media@vger.kernel.org
12220 S:      Maintained
12221 T:      git git://linuxtv.org/media_tree.git
12222 F:      drivers/media/platform/nxp/imx-pxp.[ch]
12223
12224 MEDIA DRIVERS FOR ASCOT2E
12225 M:      Sergey Kozlov <serjk@netup.ru>
12226 M:      Abylay Ospan <aospan@netup.ru>
12227 L:      linux-media@vger.kernel.org
12228 S:      Supported
12229 W:      https://linuxtv.org
12230 W:      http://netup.tv/
12231 T:      git git://linuxtv.org/media_tree.git
12232 F:      drivers/media/dvb-frontends/ascot2e*
12233
12234 MEDIA DRIVERS FOR CXD2099AR CI CONTROLLERS
12235 M:      Jasmin Jessich <jasmin@anw.at>
12236 L:      linux-media@vger.kernel.org
12237 S:      Maintained
12238 W:      https://linuxtv.org
12239 T:      git git://linuxtv.org/media_tree.git
12240 F:      drivers/media/dvb-frontends/cxd2099*
12241
12242 MEDIA DRIVERS FOR CXD2841ER
12243 M:      Sergey Kozlov <serjk@netup.ru>
12244 M:      Abylay Ospan <aospan@netup.ru>
12245 L:      linux-media@vger.kernel.org
12246 S:      Supported
12247 W:      https://linuxtv.org
12248 W:      http://netup.tv/
12249 T:      git git://linuxtv.org/media_tree.git
12250 F:      drivers/media/dvb-frontends/cxd2841er*
12251
12252 MEDIA DRIVERS FOR CXD2880
12253 M:      Yasunari Takiguchi <Yasunari.Takiguchi@sony.com>
12254 L:      linux-media@vger.kernel.org
12255 S:      Supported
12256 W:      http://linuxtv.org/
12257 T:      git git://linuxtv.org/media_tree.git
12258 F:      drivers/media/dvb-frontends/cxd2880/*
12259 F:      drivers/media/spi/cxd2880*
12260
12261 MEDIA DRIVERS FOR DIGITAL DEVICES PCIE DEVICES
12262 L:      linux-media@vger.kernel.org
12263 S:      Orphan
12264 W:      https://linuxtv.org
12265 T:      git git://linuxtv.org/media_tree.git
12266 F:      drivers/media/pci/ddbridge/*
12267
12268 MEDIA DRIVERS FOR FREESCALE IMX
12269 M:      Steve Longerbeam <slongerbeam@gmail.com>
12270 M:      Philipp Zabel <p.zabel@pengutronix.de>
12271 L:      linux-media@vger.kernel.org
12272 S:      Maintained
12273 T:      git git://linuxtv.org/media_tree.git
12274 F:      Documentation/admin-guide/media/imx.rst
12275 F:      Documentation/devicetree/bindings/media/imx.txt
12276 F:      drivers/staging/media/imx/
12277 F:      include/linux/imx-media.h
12278 F:      include/media/imx.h
12279
12280 MEDIA DRIVERS FOR FREESCALE IMX7
12281 M:      Rui Miguel Silva <rmfrfs@gmail.com>
12282 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12283 L:      linux-media@vger.kernel.org
12284 S:      Maintained
12285 T:      git git://linuxtv.org/media_tree.git
12286 F:      Documentation/admin-guide/media/imx7.rst
12287 F:      Documentation/devicetree/bindings/media/nxp,imx-mipi-csi2.yaml
12288 F:      Documentation/devicetree/bindings/media/nxp,imx7-csi.yaml
12289 F:      drivers/media/platform/nxp/imx-mipi-csis.c
12290 F:      drivers/staging/media/imx/imx7-media-csi.c
12291
12292 MEDIA DRIVERS FOR HELENE
12293 M:      Abylay Ospan <aospan@netup.ru>
12294 L:      linux-media@vger.kernel.org
12295 S:      Supported
12296 W:      https://linuxtv.org
12297 W:      http://netup.tv/
12298 T:      git git://linuxtv.org/media_tree.git
12299 F:      drivers/media/dvb-frontends/helene*
12300
12301 MEDIA DRIVERS FOR HORUS3A
12302 M:      Sergey Kozlov <serjk@netup.ru>
12303 M:      Abylay Ospan <aospan@netup.ru>
12304 L:      linux-media@vger.kernel.org
12305 S:      Supported
12306 W:      https://linuxtv.org
12307 W:      http://netup.tv/
12308 T:      git git://linuxtv.org/media_tree.git
12309 F:      drivers/media/dvb-frontends/horus3a*
12310
12311 MEDIA DRIVERS FOR LNBH25
12312 M:      Sergey Kozlov <serjk@netup.ru>
12313 M:      Abylay Ospan <aospan@netup.ru>
12314 L:      linux-media@vger.kernel.org
12315 S:      Supported
12316 W:      https://linuxtv.org
12317 W:      http://netup.tv/
12318 T:      git git://linuxtv.org/media_tree.git
12319 F:      drivers/media/dvb-frontends/lnbh25*
12320
12321 MEDIA DRIVERS FOR MXL5XX TUNER DEMODULATORS
12322 L:      linux-media@vger.kernel.org
12323 S:      Orphan
12324 W:      https://linuxtv.org
12325 T:      git git://linuxtv.org/media_tree.git
12326 F:      drivers/media/dvb-frontends/mxl5xx*
12327
12328 MEDIA DRIVERS FOR NETUP PCI UNIVERSAL DVB devices
12329 M:      Sergey Kozlov <serjk@netup.ru>
12330 M:      Abylay Ospan <aospan@netup.ru>
12331 L:      linux-media@vger.kernel.org
12332 S:      Supported
12333 W:      https://linuxtv.org
12334 W:      http://netup.tv/
12335 T:      git git://linuxtv.org/media_tree.git
12336 F:      drivers/media/pci/netup_unidvb/*
12337
12338 MEDIA DRIVERS FOR NVIDIA TEGRA - VDE
12339 M:      Dmitry Osipenko <digetx@gmail.com>
12340 L:      linux-media@vger.kernel.org
12341 L:      linux-tegra@vger.kernel.org
12342 S:      Maintained
12343 T:      git git://linuxtv.org/media_tree.git
12344 F:      Documentation/devicetree/bindings/media/nvidia,tegra-vde.yaml
12345 F:      drivers/media/platform/nvidia/tegra-vde/
12346
12347 MEDIA DRIVERS FOR RENESAS - CEU
12348 M:      Jacopo Mondi <jacopo@jmondi.org>
12349 L:      linux-media@vger.kernel.org
12350 L:      linux-renesas-soc@vger.kernel.org
12351 S:      Supported
12352 T:      git git://linuxtv.org/media_tree.git
12353 F:      Documentation/devicetree/bindings/media/renesas,ceu.yaml
12354 F:      drivers/media/platform/renesas/renesas-ceu.c
12355 F:      include/media/drv-intf/renesas-ceu.h
12356
12357 MEDIA DRIVERS FOR RENESAS - DRIF
12358 M:      Fabrizio Castro <fabrizio.castro.jz@renesas.com>
12359 L:      linux-media@vger.kernel.org
12360 L:      linux-renesas-soc@vger.kernel.org
12361 S:      Supported
12362 T:      git git://linuxtv.org/media_tree.git
12363 F:      Documentation/devicetree/bindings/media/renesas,drif.yaml
12364 F:      drivers/media/platform/renesas/rcar_drif.c
12365
12366 MEDIA DRIVERS FOR RENESAS - FCP
12367 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12368 L:      linux-media@vger.kernel.org
12369 L:      linux-renesas-soc@vger.kernel.org
12370 S:      Supported
12371 T:      git git://linuxtv.org/media_tree.git
12372 F:      Documentation/devicetree/bindings/media/renesas,fcp.yaml
12373 F:      drivers/media/platform/renesas/rcar-fcp.c
12374 F:      include/media/rcar-fcp.h
12375
12376 MEDIA DRIVERS FOR RENESAS - FDP1
12377 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
12378 L:      linux-media@vger.kernel.org
12379 L:      linux-renesas-soc@vger.kernel.org
12380 S:      Supported
12381 T:      git git://linuxtv.org/media_tree.git
12382 F:      Documentation/devicetree/bindings/media/renesas,fdp1.yaml
12383 F:      drivers/media/platform/renesas/rcar_fdp1.c
12384
12385 MEDIA DRIVERS FOR RENESAS - VIN
12386 M:      Niklas Söderlund <niklas.soderlund@ragnatech.se>
12387 L:      linux-media@vger.kernel.org
12388 L:      linux-renesas-soc@vger.kernel.org
12389 S:      Supported
12390 T:      git git://linuxtv.org/media_tree.git
12391 F:      Documentation/devicetree/bindings/media/renesas,csi2.yaml
12392 F:      Documentation/devicetree/bindings/media/renesas,isp.yaml
12393 F:      Documentation/devicetree/bindings/media/renesas,vin.yaml
12394 F:      drivers/media/platform/renesas/rcar-isp.c
12395 F:      drivers/media/platform/renesas/rcar-vin/
12396
12397 MEDIA DRIVERS FOR RENESAS - VSP1
12398 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12399 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
12400 L:      linux-media@vger.kernel.org
12401 L:      linux-renesas-soc@vger.kernel.org
12402 S:      Supported
12403 T:      git git://linuxtv.org/media_tree.git
12404 F:      Documentation/devicetree/bindings/media/renesas,vsp1.yaml
12405 F:      drivers/media/platform/renesas/vsp1/
12406
12407 MEDIA DRIVERS FOR ST STV0910 DEMODULATOR ICs
12408 L:      linux-media@vger.kernel.org
12409 S:      Orphan
12410 W:      https://linuxtv.org
12411 T:      git git://linuxtv.org/media_tree.git
12412 F:      drivers/media/dvb-frontends/stv0910*
12413
12414 MEDIA DRIVERS FOR ST STV6111 TUNER ICs
12415 L:      linux-media@vger.kernel.org
12416 S:      Orphan
12417 W:      https://linuxtv.org
12418 T:      git git://linuxtv.org/media_tree.git
12419 F:      drivers/media/dvb-frontends/stv6111*
12420
12421 MEDIA DRIVERS FOR STM32 - DCMI
12422 M:      Hugues Fruchet <hugues.fruchet@foss.st.com>
12423 L:      linux-media@vger.kernel.org
12424 S:      Supported
12425 T:      git git://linuxtv.org/media_tree.git
12426 F:      Documentation/devicetree/bindings/media/st,stm32-dcmi.yaml
12427 F:      drivers/media/platform/st/stm32/stm32-dcmi.c
12428
12429 MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
12430 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
12431 L:      linux-media@vger.kernel.org
12432 S:      Maintained
12433 W:      https://linuxtv.org
12434 Q:      http://patchwork.kernel.org/project/linux-media/list/
12435 T:      git git://linuxtv.org/media_tree.git
12436 F:      Documentation/admin-guide/media/
12437 F:      Documentation/devicetree/bindings/media/
12438 F:      Documentation/driver-api/media/
12439 F:      Documentation/userspace-api/media/
12440 F:      drivers/media/
12441 F:      drivers/staging/media/
12442 F:      include/linux/platform_data/media/
12443 F:      include/media/
12444 F:      include/uapi/linux/dvb/
12445 F:      include/uapi/linux/ivtv*
12446 F:      include/uapi/linux/media.h
12447 F:      include/uapi/linux/meye.h
12448 F:      include/uapi/linux/uvcvideo.h
12449 F:      include/uapi/linux/v4l2-*
12450 F:      include/uapi/linux/videodev2.h
12451
12452 MEDIATEK BLUETOOTH DRIVER
12453 M:      Sean Wang <sean.wang@mediatek.com>
12454 L:      linux-bluetooth@vger.kernel.org
12455 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
12456 S:      Maintained
12457 F:      Documentation/devicetree/bindings/net/mediatek-bluetooth.txt
12458 F:      drivers/bluetooth/btmtkuart.c
12459
12460 MEDIATEK BOARD LEVEL SHUTDOWN DRIVERS
12461 M:      Sean Wang <sean.wang@mediatek.com>
12462 L:      linux-pm@vger.kernel.org
12463 S:      Maintained
12464 F:      Documentation/devicetree/bindings/power/reset/mt6323-poweroff.txt
12465 F:      drivers/power/reset/mt6323-poweroff.c
12466
12467 MEDIATEK CIR DRIVER
12468 M:      Sean Wang <sean.wang@mediatek.com>
12469 S:      Maintained
12470 F:      drivers/media/rc/mtk-cir.c
12471
12472 MEDIATEK DMA DRIVER
12473 M:      Sean Wang <sean.wang@mediatek.com>
12474 L:      dmaengine@vger.kernel.org
12475 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12476 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
12477 S:      Maintained
12478 F:      Documentation/devicetree/bindings/dma/mtk-*
12479 F:      drivers/dma/mediatek/
12480
12481 MEDIATEK ETHERNET DRIVER
12482 M:      Felix Fietkau <nbd@nbd.name>
12483 M:      John Crispin <john@phrozen.org>
12484 M:      Sean Wang <sean.wang@mediatek.com>
12485 M:      Mark Lee <Mark-MC.Lee@mediatek.com>
12486 L:      netdev@vger.kernel.org
12487 S:      Maintained
12488 F:      drivers/net/ethernet/mediatek/
12489
12490 MEDIATEK I2C CONTROLLER DRIVER
12491 M:      Qii Wang <qii.wang@mediatek.com>
12492 L:      linux-i2c@vger.kernel.org
12493 S:      Maintained
12494 F:      Documentation/devicetree/bindings/i2c/i2c-mt65xx.yaml
12495 F:      drivers/i2c/busses/i2c-mt65xx.c
12496
12497 MEDIATEK IOMMU DRIVER
12498 M:      Yong Wu <yong.wu@mediatek.com>
12499 L:      iommu@lists.linux-foundation.org
12500 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
12501 S:      Supported
12502 F:      Documentation/devicetree/bindings/iommu/mediatek*
12503 F:      drivers/iommu/mtk_iommu*
12504 F:      include/dt-bindings/memory/mt*-port.h
12505
12506 MEDIATEK JPEG DRIVER
12507 M:      Bin Liu <bin.liu@mediatek.com>
12508 S:      Supported
12509 F:      Documentation/devicetree/bindings/media/mediatek-jpeg-*.yaml
12510 F:      drivers/media/platform/mediatek/jpeg/
12511
12512 MEDIATEK MDP DRIVER
12513 M:      Minghsiu Tsai <minghsiu.tsai@mediatek.com>
12514 M:      Houlong Wei <houlong.wei@mediatek.com>
12515 M:      Andrew-CT Chen <andrew-ct.chen@mediatek.com>
12516 S:      Supported
12517 F:      Documentation/devicetree/bindings/media/mediatek-mdp.txt
12518 F:      drivers/media/platform/mediatek/mdp/
12519 F:      drivers/media/platform/mediatek/vpu/
12520
12521 MEDIATEK MEDIA DRIVER
12522 M:      Tiffany Lin <tiffany.lin@mediatek.com>
12523 M:      Andrew-CT Chen <andrew-ct.chen@mediatek.com>
12524 S:      Supported
12525 F:      Documentation/devicetree/bindings/media/mediatek,vcodec*.yaml
12526 F:      Documentation/devicetree/bindings/media/mediatek-vpu.txt
12527 F:      drivers/media/platform/mediatek/vcodec/
12528 F:      drivers/media/platform/mediatek/vpu/
12529
12530 MEDIATEK MMC/SD/SDIO DRIVER
12531 M:      Chaotian Jing <chaotian.jing@mediatek.com>
12532 S:      Maintained
12533 F:      Documentation/devicetree/bindings/mmc/mtk-sd.yaml
12534 F:      drivers/mmc/host/mtk-sd.c
12535
12536 MEDIATEK MT76 WIRELESS LAN DRIVER
12537 M:      Felix Fietkau <nbd@nbd.name>
12538 M:      Lorenzo Bianconi <lorenzo@kernel.org>
12539 M:      Ryder Lee <ryder.lee@mediatek.com>
12540 R:      Shayne Chen <shayne.chen@mediatek.com>
12541 R:      Sean Wang <sean.wang@mediatek.com>
12542 L:      linux-wireless@vger.kernel.org
12543 S:      Maintained
12544 F:      Documentation/devicetree/bindings/net/wireless/mediatek,mt76.yaml
12545 F:      drivers/net/wireless/mediatek/mt76/
12546
12547 MEDIATEK MT7601U WIRELESS LAN DRIVER
12548 M:      Jakub Kicinski <kubakici@wp.pl>
12549 L:      linux-wireless@vger.kernel.org
12550 S:      Maintained
12551 F:      drivers/net/wireless/mediatek/mt7601u/
12552
12553 MEDIATEK MT7621 CLOCK DRIVER
12554 M:      Sergio Paracuellos <sergio.paracuellos@gmail.com>
12555 S:      Maintained
12556 F:      Documentation/devicetree/bindings/clock/mediatek,mt7621-sysc.yaml
12557 F:      drivers/clk/ralink/clk-mt7621.c
12558
12559 MEDIATEK MT7621/28/88 I2C DRIVER
12560 M:      Stefan Roese <sr@denx.de>
12561 L:      linux-i2c@vger.kernel.org
12562 S:      Maintained
12563 F:      Documentation/devicetree/bindings/i2c/i2c-mt7621.txt
12564 F:      drivers/i2c/busses/i2c-mt7621.c
12565
12566 MEDIATEK MT7621 PCIE CONTROLLER DRIVER
12567 M:      Sergio Paracuellos <sergio.paracuellos@gmail.com>
12568 S:      Maintained
12569 F:      Documentation/devicetree/bindings/pci/mediatek,mt7621-pcie.yaml
12570 F:      drivers/pci/controller/pcie-mt7621.c
12571
12572 MEDIATEK MT7621 PHY PCI DRIVER
12573 M:      Sergio Paracuellos <sergio.paracuellos@gmail.com>
12574 S:      Maintained
12575 F:      Documentation/devicetree/bindings/phy/mediatek,mt7621-pci-phy.yaml
12576 F:      drivers/phy/ralink/phy-mt7621-pci.c
12577
12578 MEDIATEK NAND CONTROLLER DRIVER
12579 L:      linux-mtd@lists.infradead.org
12580 S:      Orphan
12581 F:      Documentation/devicetree/bindings/mtd/mtk-nand.txt
12582 F:      drivers/mtd/nand/raw/mtk_*
12583
12584 MEDIATEK PMIC LED DRIVER
12585 M:      Sean Wang <sean.wang@mediatek.com>
12586 S:      Maintained
12587 F:      Documentation/devicetree/bindings/leds/leds-mt6323.txt
12588 F:      drivers/leds/leds-mt6323.c
12589
12590 MEDIATEK RANDOM NUMBER GENERATOR SUPPORT
12591 M:      Sean Wang <sean.wang@mediatek.com>
12592 S:      Maintained
12593 F:      drivers/char/hw_random/mtk-rng.c
12594
12595 MEDIATEK SMI DRIVER
12596 M:      Yong Wu <yong.wu@mediatek.com>
12597 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
12598 S:      Supported
12599 F:      Documentation/devicetree/bindings/memory-controllers/mediatek,smi*
12600 F:      drivers/memory/mtk-smi.c
12601 F:      include/soc/mediatek/smi.h
12602
12603 MEDIATEK SWITCH DRIVER
12604 M:      Sean Wang <sean.wang@mediatek.com>
12605 M:      Landen Chao <Landen.Chao@mediatek.com>
12606 M:      DENG Qingfang <dqfext@gmail.com>
12607 L:      netdev@vger.kernel.org
12608 S:      Maintained
12609 F:      drivers/net/dsa/mt7530.*
12610 F:      net/dsa/tag_mtk.c
12611
12612 MEDIATEK T7XX 5G WWAN MODEM DRIVER
12613 M:      Chandrashekar Devegowda <chandrashekar.devegowda@intel.com>
12614 M:      Intel Corporation <linuxwwan@intel.com>
12615 R:      Chiranjeevi Rapolu <chiranjeevi.rapolu@linux.intel.com>
12616 R:      Liu Haijun <haijun.liu@mediatek.com>
12617 R:      M Chetan Kumar <m.chetan.kumar@linux.intel.com>
12618 R:      Ricardo Martinez <ricardo.martinez@linux.intel.com>
12619 L:      netdev@vger.kernel.org
12620 S:      Supported
12621 F:      drivers/net/wwan/t7xx/
12622
12623 MEDIATEK USB3 DRD IP DRIVER
12624 M:      Chunfeng Yun <chunfeng.yun@mediatek.com>
12625 L:      linux-usb@vger.kernel.org
12626 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12627 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
12628 S:      Maintained
12629 F:      Documentation/devicetree/bindings/usb/mediatek,*
12630 F:      drivers/usb/host/xhci-mtk*
12631 F:      drivers/usb/mtu3/
12632
12633 MEGACHIPS STDPXXXX-GE-B850V3-FW LVDS/DP++ BRIDGES
12634 M:      Peter Senna Tschudin <peter.senna@gmail.com>
12635 M:      Martin Donnelly <martin.donnelly@ge.com>
12636 M:      Martyn Welch <martyn.welch@collabora.co.uk>
12637 S:      Maintained
12638 F:      Documentation/devicetree/bindings/display/bridge/megachips-stdpxxxx-ge-b850v3-fw.txt
12639 F:      drivers/gpu/drm/bridge/megachips-stdpxxxx-ge-b850v3-fw.c
12640
12641 MEGARAID SCSI/SAS DRIVERS
12642 M:      Kashyap Desai <kashyap.desai@broadcom.com>
12643 M:      Sumit Saxena <sumit.saxena@broadcom.com>
12644 M:      Shivasharan S <shivasharan.srikanteshwara@broadcom.com>
12645 L:      megaraidlinux.pdl@broadcom.com
12646 L:      linux-scsi@vger.kernel.org
12647 S:      Maintained
12648 W:      http://www.avagotech.com/support/
12649 F:      Documentation/scsi/megaraid.rst
12650 F:      drivers/scsi/megaraid.*
12651 F:      drivers/scsi/megaraid/
12652
12653 MELEXIS MLX90614 DRIVER
12654 M:      Crt Mori <cmo@melexis.com>
12655 L:      linux-iio@vger.kernel.org
12656 S:      Supported
12657 W:      http://www.melexis.com
12658 F:      drivers/iio/temperature/mlx90614.c
12659
12660 MELEXIS MLX90632 DRIVER
12661 M:      Crt Mori <cmo@melexis.com>
12662 L:      linux-iio@vger.kernel.org
12663 S:      Supported
12664 W:      http://www.melexis.com
12665 F:      drivers/iio/temperature/mlx90632.c
12666
12667 MELFAS MIP4 TOUCHSCREEN DRIVER
12668 M:      Sangwon Jee <jeesw@melfas.com>
12669 S:      Supported
12670 W:      http://www.melfas.com
12671 F:      Documentation/devicetree/bindings/input/touchscreen/melfas_mip4.txt
12672 F:      drivers/input/touchscreen/melfas_mip4.c
12673
12674 MELLANOX BLUEFIELD I2C DRIVER
12675 M:      Khalil Blaiech <kblaiech@nvidia.com>
12676 L:      linux-i2c@vger.kernel.org
12677 S:      Supported
12678 F:      Documentation/devicetree/bindings/i2c/mellanox,i2c-mlxbf.yaml
12679 F:      drivers/i2c/busses/i2c-mlxbf.c
12680
12681 MELLANOX ETHERNET DRIVER (mlx4_en)
12682 M:      Tariq Toukan <tariqt@nvidia.com>
12683 L:      netdev@vger.kernel.org
12684 S:      Supported
12685 W:      http://www.mellanox.com
12686 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12687 F:      drivers/net/ethernet/mellanox/mlx4/en_*
12688
12689 MELLANOX ETHERNET DRIVER (mlx5e)
12690 M:      Saeed Mahameed <saeedm@nvidia.com>
12691 L:      netdev@vger.kernel.org
12692 S:      Supported
12693 W:      http://www.mellanox.com
12694 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12695 F:      drivers/net/ethernet/mellanox/mlx5/core/en_*
12696
12697 MELLANOX ETHERNET INNOVA DRIVERS
12698 R:      Boris Pismenny <borisp@nvidia.com>
12699 L:      netdev@vger.kernel.org
12700 S:      Supported
12701 W:      http://www.mellanox.com
12702 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12703 F:      drivers/net/ethernet/mellanox/mlx5/core/accel/*
12704 F:      drivers/net/ethernet/mellanox/mlx5/core/en_accel/*
12705 F:      drivers/net/ethernet/mellanox/mlx5/core/fpga/*
12706 F:      include/linux/mlx5/mlx5_ifc_fpga.h
12707
12708 MELLANOX ETHERNET SWITCH DRIVERS
12709 M:      Ido Schimmel <idosch@nvidia.com>
12710 M:      Petr Machata <petrm@nvidia.com>
12711 L:      netdev@vger.kernel.org
12712 S:      Supported
12713 W:      http://www.mellanox.com
12714 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12715 F:      drivers/net/ethernet/mellanox/mlxsw/
12716 F:      tools/testing/selftests/drivers/net/mlxsw/
12717
12718 MELLANOX FIRMWARE FLASH LIBRARY (mlxfw)
12719 M:      mlxsw@nvidia.com
12720 L:      netdev@vger.kernel.org
12721 S:      Supported
12722 W:      http://www.mellanox.com
12723 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12724 F:      drivers/net/ethernet/mellanox/mlxfw/
12725
12726 MELLANOX HARDWARE PLATFORM SUPPORT
12727 M:      Hans de Goede <hdegoede@redhat.com>
12728 M:      Mark Gross <markgross@kernel.org>
12729 M:      Vadim Pasternak <vadimp@nvidia.com>
12730 L:      platform-driver-x86@vger.kernel.org
12731 S:      Supported
12732 F:      Documentation/ABI/testing/sysfs-platform-mellanox-bootctl
12733 F:      drivers/platform/mellanox/
12734 F:      include/linux/platform_data/mlxreg.h
12735
12736 MELLANOX MLX4 core VPI driver
12737 M:      Tariq Toukan <tariqt@nvidia.com>
12738 L:      netdev@vger.kernel.org
12739 L:      linux-rdma@vger.kernel.org
12740 S:      Supported
12741 W:      http://www.mellanox.com
12742 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12743 F:      drivers/net/ethernet/mellanox/mlx4/
12744 F:      include/linux/mlx4/
12745
12746 MELLANOX MLX4 IB driver
12747 M:      Yishai Hadas <yishaih@nvidia.com>
12748 L:      linux-rdma@vger.kernel.org
12749 S:      Supported
12750 W:      http://www.mellanox.com
12751 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
12752 F:      drivers/infiniband/hw/mlx4/
12753 F:      include/linux/mlx4/
12754 F:      include/uapi/rdma/mlx4-abi.h
12755
12756 MELLANOX MLX5 core VPI driver
12757 M:      Saeed Mahameed <saeedm@nvidia.com>
12758 M:      Leon Romanovsky <leonro@nvidia.com>
12759 L:      netdev@vger.kernel.org
12760 L:      linux-rdma@vger.kernel.org
12761 S:      Supported
12762 W:      http://www.mellanox.com
12763 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12764 F:      Documentation/networking/device_drivers/ethernet/mellanox/
12765 F:      drivers/net/ethernet/mellanox/mlx5/core/
12766 F:      include/linux/mlx5/
12767
12768 MELLANOX MLX5 IB driver
12769 M:      Leon Romanovsky <leonro@nvidia.com>
12770 L:      linux-rdma@vger.kernel.org
12771 S:      Supported
12772 W:      http://www.mellanox.com
12773 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
12774 F:      drivers/infiniband/hw/mlx5/
12775 F:      include/linux/mlx5/
12776 F:      include/uapi/rdma/mlx5-abi.h
12777
12778 MELLANOX MLXCPLD I2C AND MUX DRIVER
12779 M:      Vadim Pasternak <vadimp@nvidia.com>
12780 M:      Michael Shych <michaelsh@nvidia.com>
12781 L:      linux-i2c@vger.kernel.org
12782 S:      Supported
12783 F:      Documentation/i2c/busses/i2c-mlxcpld.rst
12784 F:      drivers/i2c/busses/i2c-mlxcpld.c
12785 F:      drivers/i2c/muxes/i2c-mux-mlxcpld.c
12786
12787 MELLANOX MLXCPLD LED DRIVER
12788 M:      Vadim Pasternak <vadimp@nvidia.com>
12789 L:      linux-leds@vger.kernel.org
12790 S:      Supported
12791 F:      Documentation/leds/leds-mlxcpld.rst
12792 F:      drivers/leds/leds-mlxcpld.c
12793 F:      drivers/leds/leds-mlxreg.c
12794
12795 MELLANOX PLATFORM DRIVER
12796 M:      Vadim Pasternak <vadimp@nvidia.com>
12797 L:      platform-driver-x86@vger.kernel.org
12798 S:      Supported
12799 F:      drivers/platform/x86/mlx-platform.c
12800
12801 MEMBARRIER SUPPORT
12802 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
12803 M:      "Paul E. McKenney" <paulmck@kernel.org>
12804 L:      linux-kernel@vger.kernel.org
12805 S:      Supported
12806 F:      arch/powerpc/include/asm/membarrier.h
12807 F:      include/uapi/linux/membarrier.h
12808 F:      kernel/sched/membarrier.c
12809
12810 MEMBLOCK
12811 M:      Mike Rapoport <rppt@kernel.org>
12812 L:      linux-mm@kvack.org
12813 S:      Maintained
12814 F:      Documentation/core-api/boot-time-mm.rst
12815 F:      include/linux/memblock.h
12816 F:      mm/memblock.c
12817 F:      tools/testing/memblock/
12818
12819 MEMORY CONTROLLER DRIVERS
12820 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
12821 L:      linux-kernel@vger.kernel.org
12822 S:      Maintained
12823 B:      mailto:krzysztof.kozlowski@linaro.org
12824 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/krzk/linux-mem-ctrl.git
12825 F:      Documentation/devicetree/bindings/memory-controllers/
12826 F:      drivers/memory/
12827 F:      include/dt-bindings/memory/
12828 F:      include/memory/
12829
12830 MEMORY FREQUENCY SCALING DRIVERS FOR NVIDIA TEGRA
12831 M:      Dmitry Osipenko <digetx@gmail.com>
12832 L:      linux-pm@vger.kernel.org
12833 L:      linux-tegra@vger.kernel.org
12834 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
12835 S:      Maintained
12836 F:      drivers/devfreq/tegra30-devfreq.c
12837
12838 MEMORY MANAGEMENT
12839 M:      Andrew Morton <akpm@linux-foundation.org>
12840 L:      linux-mm@kvack.org
12841 S:      Maintained
12842 W:      http://www.linux-mm.org
12843 T:      quilt https://ozlabs.org/~akpm/mmotm/
12844 T:      quilt https://ozlabs.org/~akpm/mmots/
12845 T:      git git://github.com/hnaz/linux-mm.git
12846 F:      include/linux/gfp.h
12847 F:      include/linux/memory_hotplug.h
12848 F:      include/linux/mm.h
12849 F:      include/linux/mmzone.h
12850 F:      include/linux/pagewalk.h
12851 F:      include/linux/vmalloc.h
12852 F:      mm/
12853 F:      tools/testing/selftests/vm/
12854
12855 MEMORY TECHNOLOGY DEVICES (MTD)
12856 M:      Miquel Raynal <miquel.raynal@bootlin.com>
12857 M:      Richard Weinberger <richard@nod.at>
12858 M:      Vignesh Raghavendra <vigneshr@ti.com>
12859 L:      linux-mtd@lists.infradead.org
12860 S:      Maintained
12861 W:      http://www.linux-mtd.infradead.org/
12862 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
12863 C:      irc://irc.oftc.net/mtd
12864 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/fixes
12865 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/next
12866 F:      Documentation/devicetree/bindings/mtd/
12867 F:      drivers/mtd/
12868 F:      include/linux/mtd/
12869 F:      include/uapi/mtd/
12870
12871 MEN A21 WATCHDOG DRIVER
12872 M:      Johannes Thumshirn <morbidrsa@gmail.com>
12873 L:      linux-watchdog@vger.kernel.org
12874 S:      Maintained
12875 F:      drivers/watchdog/mena21_wdt.c
12876
12877 MEN CHAMELEON BUS (mcb)
12878 M:      Johannes Thumshirn <morbidrsa@gmail.com>
12879 S:      Maintained
12880 F:      Documentation/driver-api/men-chameleon-bus.rst
12881 F:      drivers/mcb/
12882 F:      include/linux/mcb.h
12883
12884 MEN F21BMC (Board Management Controller)
12885 M:      Andreas Werner <andreas.werner@men.de>
12886 S:      Supported
12887 F:      Documentation/hwmon/menf21bmc.rst
12888 F:      drivers/hwmon/menf21bmc_hwmon.c
12889 F:      drivers/leds/leds-menf21bmc.c
12890 F:      drivers/mfd/menf21bmc.c
12891 F:      drivers/watchdog/menf21bmc_wdt.c
12892
12893 MEN Z069 WATCHDOG DRIVER
12894 M:      Johannes Thumshirn <jth@kernel.org>
12895 L:      linux-watchdog@vger.kernel.org
12896 S:      Maintained
12897 F:      drivers/watchdog/menz69_wdt.c
12898
12899 MESON AO CEC DRIVER FOR AMLOGIC SOCS
12900 M:      Neil Armstrong <narmstrong@baylibre.com>
12901 L:      linux-media@vger.kernel.org
12902 L:      linux-amlogic@lists.infradead.org
12903 S:      Supported
12904 W:      http://linux-meson.com/
12905 T:      git git://linuxtv.org/media_tree.git
12906 F:      Documentation/devicetree/bindings/media/amlogic,meson-gx-ao-cec.yaml
12907 F:      drivers/media/cec/platform/meson/ao-cec-g12a.c
12908 F:      drivers/media/cec/platform/meson/ao-cec.c
12909
12910 MESON GE2D DRIVER FOR AMLOGIC SOCS
12911 M:      Neil Armstrong <narmstrong@baylibre.com>
12912 L:      linux-media@vger.kernel.org
12913 L:      linux-amlogic@lists.infradead.org
12914 S:      Supported
12915 T:      git git://linuxtv.org/media_tree.git
12916 F:      Documentation/devicetree/bindings/media/amlogic,axg-ge2d.yaml
12917 F:      drivers/media/platform/amlogic/meson-ge2d/
12918
12919 MESON NAND CONTROLLER DRIVER FOR AMLOGIC SOCS
12920 M:      Liang Yang <liang.yang@amlogic.com>
12921 L:      linux-mtd@lists.infradead.org
12922 S:      Maintained
12923 F:      Documentation/devicetree/bindings/mtd/amlogic,meson-nand.txt
12924 F:      drivers/mtd/nand/raw/meson_*
12925
12926 MESON VIDEO DECODER DRIVER FOR AMLOGIC SOCS
12927 M:      Neil Armstrong <narmstrong@baylibre.com>
12928 L:      linux-media@vger.kernel.org
12929 L:      linux-amlogic@lists.infradead.org
12930 S:      Supported
12931 T:      git git://linuxtv.org/media_tree.git
12932 F:      Documentation/devicetree/bindings/media/amlogic,gx-vdec.yaml
12933 F:      drivers/staging/media/meson/vdec/
12934
12935 METHODE UDPU SUPPORT
12936 M:      Vladimir Vid <vladimir.vid@sartura.hr>
12937 S:      Maintained
12938 F:      arch/arm64/boot/dts/marvell/armada-3720-uDPU.dts
12939
12940 MHI BUS
12941 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
12942 R:      Hemant Kumar <quic_hemantk@quicinc.com>
12943 L:      mhi@lists.linux.dev
12944 L:      linux-arm-msm@vger.kernel.org
12945 S:      Maintained
12946 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mani/mhi.git
12947 F:      Documentation/ABI/stable/sysfs-bus-mhi
12948 F:      Documentation/mhi/
12949 F:      drivers/bus/mhi/
12950 F:      include/linux/mhi.h
12951
12952 MICROBLAZE ARCHITECTURE
12953 M:      Michal Simek <monstr@monstr.eu>
12954 S:      Supported
12955 W:      http://www.monstr.eu/fdt/
12956 T:      git git://git.monstr.eu/linux-2.6-microblaze.git
12957 F:      arch/microblaze/
12958
12959 MICROCHIP AT91 DMA DRIVERS
12960 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
12961 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
12962 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12963 L:      dmaengine@vger.kernel.org
12964 S:      Supported
12965 F:      Documentation/devicetree/bindings/dma/atmel-dma.txt
12966 F:      drivers/dma/at_hdmac.c
12967 F:      drivers/dma/at_hdmac_regs.h
12968 F:      drivers/dma/at_xdmac.c
12969 F:      include/dt-bindings/dma/at91.h
12970
12971 MICROCHIP AT91 SERIAL DRIVER
12972 M:      Richard Genoud <richard.genoud@gmail.com>
12973 S:      Maintained
12974 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
12975 F:      drivers/tty/serial/atmel_serial.c
12976 F:      drivers/tty/serial/atmel_serial.h
12977
12978 MICROCHIP AT91 USART MFD DRIVER
12979 M:      Radu Pirea <radu_nicolae.pirea@upb.ro>
12980 L:      linux-kernel@vger.kernel.org
12981 S:      Supported
12982 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
12983 F:      drivers/mfd/at91-usart.c
12984 F:      include/dt-bindings/mfd/at91-usart.h
12985
12986 MICROCHIP AT91 USART SPI DRIVER
12987 M:      Radu Pirea <radu_nicolae.pirea@upb.ro>
12988 L:      linux-spi@vger.kernel.org
12989 S:      Supported
12990 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
12991 F:      drivers/spi/spi-at91-usart.c
12992
12993 MICROCHIP AUDIO ASOC DRIVERS
12994 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
12995 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12996 S:      Supported
12997 F:      sound/soc/atmel
12998
12999 MICROCHIP CSI2DC DRIVER
13000 M:      Eugen Hristev <eugen.hristev@microchip.com>
13001 L:      linux-media@vger.kernel.org
13002 S:      Supported
13003 F:      Documentation/devicetree/bindings/media/microchip,csi2dc.yaml
13004 F:      drivers/media/platform/atmel/microchip-csi2dc.c
13005
13006 MICROCHIP ECC DRIVER
13007 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
13008 L:      linux-crypto@vger.kernel.org
13009 S:      Maintained
13010 F:      drivers/crypto/atmel-ecc.*
13011
13012 MICROCHIP EIC DRIVER
13013 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
13014 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13015 S:      Supported
13016 F:      drivers/irqchip/irq-mchp-eic.c
13017
13018 MICROCHIP I2C DRIVER
13019 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
13020 L:      linux-i2c@vger.kernel.org
13021 S:      Supported
13022 F:      drivers/i2c/busses/i2c-at91-*.c
13023 F:      drivers/i2c/busses/i2c-at91.h
13024
13025 MICROCHIP ISC DRIVER
13026 M:      Eugen Hristev <eugen.hristev@microchip.com>
13027 L:      linux-media@vger.kernel.org
13028 S:      Supported
13029 F:      Documentation/devicetree/bindings/media/atmel,isc.yaml
13030 F:      Documentation/devicetree/bindings/media/microchip,xisc.yaml
13031 F:      drivers/media/platform/atmel/atmel-isc*
13032 F:      drivers/media/platform/atmel/atmel-sama*-isc*
13033 F:      include/linux/atmel-isc-media.h
13034
13035 MICROCHIP ISI DRIVER
13036 M:      Eugen Hristev <eugen.hristev@microchip.com>
13037 L:      linux-media@vger.kernel.org
13038 S:      Supported
13039 F:      drivers/media/platform/atmel/atmel-isi.c
13040 F:      drivers/media/platform/atmel/atmel-isi.h
13041
13042 MICROCHIP KSZ SERIES ETHERNET SWITCH DRIVER
13043 M:      Woojung Huh <woojung.huh@microchip.com>
13044 M:      UNGLinuxDriver@microchip.com
13045 L:      netdev@vger.kernel.org
13046 S:      Maintained
13047 F:      Documentation/devicetree/bindings/net/dsa/microchip,ksz.yaml
13048 F:      drivers/net/dsa/microchip/*
13049 F:      include/linux/platform_data/microchip-ksz.h
13050 F:      net/dsa/tag_ksz.c
13051
13052 MICROCHIP LAN87xx/LAN937x T1 PHY DRIVER
13053 M:      Arun Ramadoss <arun.ramadoss@microchip.com>
13054 R:      UNGLinuxDriver@microchip.com
13055 L:      netdev@vger.kernel.org
13056 S:      Maintained
13057 F:      drivers/net/phy/microchip_t1.c
13058
13059 MICROCHIP LAN743X ETHERNET DRIVER
13060 M:      Bryan Whitehead <bryan.whitehead@microchip.com>
13061 M:      UNGLinuxDriver@microchip.com
13062 L:      netdev@vger.kernel.org
13063 S:      Maintained
13064 F:      drivers/net/ethernet/microchip/lan743x_*
13065
13066 MICROCHIP LAN966X ETHERNET DRIVER
13067 M:      Horatiu Vultur <horatiu.vultur@microchip.com>
13068 M:      UNGLinuxDriver@microchip.com
13069 L:      netdev@vger.kernel.org
13070 S:      Maintained
13071 F:      drivers/net/ethernet/microchip/lan966x/*
13072
13073 MICROCHIP LCDFB DRIVER
13074 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
13075 L:      linux-fbdev@vger.kernel.org
13076 S:      Maintained
13077 F:      drivers/video/fbdev/atmel_lcdfb.c
13078 F:      include/video/atmel_lcdc.h
13079
13080 MICROCHIP MCP16502 PMIC DRIVER
13081 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
13082 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13083 S:      Supported
13084 F:      Documentation/devicetree/bindings/regulator/mcp16502-regulator.txt
13085 F:      drivers/regulator/mcp16502.c
13086
13087 MICROCHIP MCP3911 ADC DRIVER
13088 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
13089 M:      Kent Gustavsson <kent@minoris.se>
13090 L:      linux-iio@vger.kernel.org
13091 S:      Supported
13092 F:      Documentation/devicetree/bindings/iio/adc/microchip,mcp3911.yaml
13093 F:      drivers/iio/adc/mcp3911.c
13094
13095 MICROCHIP MMC/SD/SDIO MCI DRIVER
13096 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
13097 S:      Maintained
13098 F:      drivers/mmc/host/atmel-mci.c
13099
13100 MICROCHIP NAND DRIVER
13101 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
13102 L:      linux-mtd@lists.infradead.org
13103 S:      Supported
13104 F:      Documentation/devicetree/bindings/mtd/atmel-nand.txt
13105 F:      drivers/mtd/nand/raw/atmel/*
13106
13107 MICROCHIP PWM DRIVER
13108 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
13109 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13110 L:      linux-pwm@vger.kernel.org
13111 S:      Supported
13112 F:      Documentation/devicetree/bindings/pwm/atmel,at91sam-pwm.yaml
13113 F:      drivers/pwm/pwm-atmel.c
13114
13115 MICROCHIP SAMA5D2-COMPATIBLE ADC DRIVER
13116 M:      Eugen Hristev <eugen.hristev@microchip.com>
13117 L:      linux-iio@vger.kernel.org
13118 S:      Supported
13119 F:      Documentation/devicetree/bindings/iio/adc/atmel,sama5d2-adc.yaml
13120 F:      drivers/iio/adc/at91-sama5d2_adc.c
13121 F:      include/dt-bindings/iio/adc/at91-sama5d2_adc.h
13122
13123 MICROCHIP SAMA5D2-COMPATIBLE SHUTDOWN CONTROLLER
13124 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
13125 S:      Supported
13126 F:      drivers/power/reset/at91-sama5d2_shdwc.c
13127
13128 MICROCHIP SPI DRIVER
13129 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
13130 S:      Supported
13131 F:      drivers/spi/spi-atmel.*
13132
13133 MICROCHIP SSC DRIVER
13134 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
13135 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13136 S:      Supported
13137 F:      drivers/misc/atmel-ssc.c
13138 F:      include/linux/atmel-ssc.h
13139
13140 MICROCHIP USB251XB DRIVER
13141 M:      Richard Leitner <richard.leitner@skidata.com>
13142 L:      linux-usb@vger.kernel.org
13143 S:      Maintained
13144 F:      Documentation/devicetree/bindings/usb/usb251xb.txt
13145 F:      drivers/usb/misc/usb251xb.c
13146
13147 MICROCHIP USBA UDC DRIVER
13148 M:      Cristian Birsan <cristian.birsan@microchip.com>
13149 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13150 S:      Supported
13151 F:      drivers/usb/gadget/udc/atmel_usba_udc.*
13152
13153 MICROCHIP WILC1000 WIFI DRIVER
13154 M:      Ajay Singh <ajay.kathat@microchip.com>
13155 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
13156 L:      linux-wireless@vger.kernel.org
13157 S:      Supported
13158 F:      drivers/net/wireless/microchip/wilc1000/
13159
13160 MICROSEMI MIPS SOCS
13161 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
13162 M:      UNGLinuxDriver@microchip.com
13163 L:      linux-mips@vger.kernel.org
13164 S:      Supported
13165 F:      Documentation/devicetree/bindings/mips/mscc.txt
13166 F:      Documentation/devicetree/bindings/power/reset/ocelot-reset.txt
13167 F:      arch/mips/boot/dts/mscc/
13168 F:      arch/mips/configs/generic/board-ocelot.config
13169 F:      arch/mips/generic/board-ocelot.c
13170
13171 MICROSEMI SMART ARRAY SMARTPQI DRIVER (smartpqi)
13172 M:      Don Brace <don.brace@microchip.com>
13173 L:      storagedev@microchip.com
13174 L:      linux-scsi@vger.kernel.org
13175 S:      Supported
13176 F:      Documentation/scsi/smartpqi.rst
13177 F:      drivers/scsi/smartpqi/Kconfig
13178 F:      drivers/scsi/smartpqi/Makefile
13179 F:      drivers/scsi/smartpqi/smartpqi*.[ch]
13180 F:      include/linux/cciss*.h
13181 F:      include/uapi/linux/cciss*.h
13182
13183 MICROSOFT SURFACE BATTERY AND AC DRIVERS
13184 M:      Maximilian Luz <luzmaximilian@gmail.com>
13185 L:      linux-pm@vger.kernel.org
13186 L:      platform-driver-x86@vger.kernel.org
13187 S:      Maintained
13188 F:      drivers/power/supply/surface_battery.c
13189 F:      drivers/power/supply/surface_charger.c
13190
13191 MICROSOFT SURFACE DTX DRIVER
13192 M:      Maximilian Luz <luzmaximilian@gmail.com>
13193 L:      platform-driver-x86@vger.kernel.org
13194 S:      Maintained
13195 F:      Documentation/driver-api/surface_aggregator/clients/dtx.rst
13196 F:      drivers/platform/surface/surface_dtx.c
13197 F:      include/uapi/linux/surface_aggregator/dtx.h
13198
13199 MICROSOFT SURFACE GPE LID SUPPORT DRIVER
13200 M:      Maximilian Luz <luzmaximilian@gmail.com>
13201 L:      platform-driver-x86@vger.kernel.org
13202 S:      Maintained
13203 F:      drivers/platform/surface/surface_gpe.c
13204
13205 MICROSOFT SURFACE HARDWARE PLATFORM SUPPORT
13206 M:      Hans de Goede <hdegoede@redhat.com>
13207 M:      Mark Gross <markgross@kernel.org>
13208 M:      Maximilian Luz <luzmaximilian@gmail.com>
13209 L:      platform-driver-x86@vger.kernel.org
13210 S:      Maintained
13211 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
13212 F:      drivers/platform/surface/
13213
13214 MICROSOFT SURFACE HID TRANSPORT DRIVER
13215 M:      Maximilian Luz <luzmaximilian@gmail.com>
13216 L:      linux-input@vger.kernel.org
13217 L:      platform-driver-x86@vger.kernel.org
13218 S:      Maintained
13219 F:      drivers/hid/surface-hid/
13220
13221 MICROSOFT SURFACE HOT-PLUG DRIVER
13222 M:      Maximilian Luz <luzmaximilian@gmail.com>
13223 L:      platform-driver-x86@vger.kernel.org
13224 S:      Maintained
13225 F:      drivers/platform/surface/surface_hotplug.c
13226
13227 MICROSOFT SURFACE PLATFORM PROFILE DRIVER
13228 M:      Maximilian Luz <luzmaximilian@gmail.com>
13229 L:      platform-driver-x86@vger.kernel.org
13230 S:      Maintained
13231 F:      drivers/platform/surface/surface_platform_profile.c
13232
13233 MICROSOFT SURFACE PRO 3 BUTTON DRIVER
13234 M:      Chen Yu <yu.c.chen@intel.com>
13235 L:      platform-driver-x86@vger.kernel.org
13236 S:      Supported
13237 F:      drivers/platform/surface/surfacepro3_button.c
13238
13239 MICROSOFT SURFACE SYSTEM AGGREGATOR SUBSYSTEM
13240 M:      Maximilian Luz <luzmaximilian@gmail.com>
13241 L:      platform-driver-x86@vger.kernel.org
13242 S:      Maintained
13243 W:      https://github.com/linux-surface/surface-aggregator-module
13244 C:      irc://irc.libera.chat/linux-surface
13245 F:      Documentation/driver-api/surface_aggregator/
13246 F:      drivers/platform/surface/aggregator/
13247 F:      drivers/platform/surface/surface_acpi_notify.c
13248 F:      drivers/platform/surface/surface_aggregator_cdev.c
13249 F:      drivers/platform/surface/surface_aggregator_registry.c
13250 F:      include/linux/surface_acpi_notify.h
13251 F:      include/linux/surface_aggregator/
13252 F:      include/uapi/linux/surface_aggregator/
13253
13254 MICROTEK X6 SCANNER
13255 M:      Oliver Neukum <oliver@neukum.org>
13256 S:      Maintained
13257 F:      drivers/usb/image/microtek.*
13258
13259 MIKROTIK CRS3XX 98DX3236 BOARD SUPPORT
13260 M:      Luka Kovacic <luka.kovacic@sartura.hr>
13261 M:      Luka Perkov <luka.perkov@sartura.hr>
13262 S:      Maintained
13263 F:      arch/arm/boot/dts/armada-xp-crs305-1g-4s-bit.dts
13264 F:      arch/arm/boot/dts/armada-xp-crs305-1g-4s.dts
13265 F:      arch/arm/boot/dts/armada-xp-crs326-24g-2s-bit.dts
13266 F:      arch/arm/boot/dts/armada-xp-crs326-24g-2s.dts
13267 F:      arch/arm/boot/dts/armada-xp-crs328-4c-20s-4s-bit.dts
13268 F:      arch/arm/boot/dts/armada-xp-crs328-4c-20s-4s.dts
13269
13270 MIPI CCS, SMIA AND SMIA++ IMAGE SENSOR DRIVER
13271 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
13272 L:      linux-media@vger.kernel.org
13273 S:      Maintained
13274 F:      Documentation/devicetree/bindings/media/i2c/mipi-ccs.yaml
13275 F:      Documentation/driver-api/media/drivers/ccs/
13276 F:      Documentation/userspace-api/media/drivers/ccs.rst
13277 F:      drivers/media/i2c/ccs-pll.c
13278 F:      drivers/media/i2c/ccs-pll.h
13279 F:      drivers/media/i2c/ccs/
13280 F:      include/uapi/linux/ccs.h
13281 F:      include/uapi/linux/smiapp.h
13282
13283 MIPS
13284 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
13285 L:      linux-mips@vger.kernel.org
13286 S:      Maintained
13287 W:      http://www.linux-mips.org/
13288 Q:      https://patchwork.kernel.org/project/linux-mips/list/
13289 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mips/linux.git
13290 F:      Documentation/devicetree/bindings/mips/
13291 F:      Documentation/mips/
13292 F:      arch/mips/
13293 F:      drivers/platform/mips/
13294
13295 MIPS BOSTON DEVELOPMENT BOARD
13296 M:      Paul Burton <paulburton@kernel.org>
13297 L:      linux-mips@vger.kernel.org
13298 S:      Maintained
13299 F:      Documentation/devicetree/bindings/clock/img,boston-clock.txt
13300 F:      arch/mips/boot/dts/img/boston.dts
13301 F:      arch/mips/configs/generic/board-boston.config
13302 F:      drivers/clk/imgtec/clk-boston.c
13303 F:      include/dt-bindings/clock/boston-clock.h
13304
13305 MIPS CORE DRIVERS
13306 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
13307 M:      Serge Semin <fancer.lancer@gmail.com>
13308 L:      linux-mips@vger.kernel.org
13309 S:      Supported
13310 F:      drivers/bus/mips_cdmm.c
13311 F:      drivers/clocksource/mips-gic-timer.c
13312 F:      drivers/cpuidle/cpuidle-cps.c
13313 F:      drivers/irqchip/irq-mips-cpu.c
13314 F:      drivers/irqchip/irq-mips-gic.c
13315
13316 MIPS GENERIC PLATFORM
13317 M:      Paul Burton <paulburton@kernel.org>
13318 L:      linux-mips@vger.kernel.org
13319 S:      Supported
13320 F:      Documentation/devicetree/bindings/power/mti,mips-cpc.yaml
13321 F:      arch/mips/generic/
13322 F:      arch/mips/tools/generic-board-config.sh
13323
13324 MIPS RINT INSTRUCTION EMULATION
13325 M:      Aleksandar Markovic <aleksandar.markovic@mips.com>
13326 L:      linux-mips@vger.kernel.org
13327 S:      Supported
13328 F:      arch/mips/math-emu/dp_rint.c
13329 F:      arch/mips/math-emu/sp_rint.c
13330
13331 MIPS/LOONGSON1 ARCHITECTURE
13332 M:      Keguang Zhang <keguang.zhang@gmail.com>
13333 L:      linux-mips@vger.kernel.org
13334 S:      Maintained
13335 F:      arch/mips/include/asm/mach-loongson32/
13336 F:      arch/mips/loongson32/
13337 F:      drivers/*/*/*loongson1*
13338 F:      drivers/*/*loongson1*
13339
13340 MIPS/LOONGSON2EF ARCHITECTURE
13341 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
13342 L:      linux-mips@vger.kernel.org
13343 S:      Maintained
13344 F:      arch/mips/include/asm/mach-loongson2ef/
13345 F:      arch/mips/loongson2ef/
13346 F:      drivers/cpufreq/loongson2_cpufreq.c
13347
13348 MIPS/LOONGSON64 ARCHITECTURE
13349 M:      Huacai Chen <chenhuacai@kernel.org>
13350 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
13351 L:      linux-mips@vger.kernel.org
13352 S:      Maintained
13353 F:      arch/mips/include/asm/mach-loongson64/
13354 F:      arch/mips/loongson64/
13355 F:      drivers/irqchip/irq-loongson*
13356 F:      drivers/platform/mips/cpu_hwmon.c
13357
13358 MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
13359 M:      Hans Verkuil <hverkuil@xs4all.nl>
13360 L:      linux-media@vger.kernel.org
13361 S:      Odd Fixes
13362 W:      https://linuxtv.org
13363 T:      git git://linuxtv.org/media_tree.git
13364 F:      drivers/media/radio/radio-miropcm20*
13365
13366 MMP SUPPORT
13367 R:      Lubomir Rintel <lkundrak@v3.sk>
13368 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13369 S:      Odd Fixes
13370 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lkundrak/linux-mmp.git
13371 F:      arch/arm/boot/dts/mmp*
13372 F:      arch/arm/mach-mmp/
13373 F:      include/linux/soc/mmp/
13374
13375 MMP USB PHY DRIVERS
13376 R:      Lubomir Rintel <lkundrak@v3.sk>
13377 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13378 S:      Maintained
13379 F:      drivers/phy/marvell/phy-mmp3-usb.c
13380 F:      drivers/phy/marvell/phy-pxa-usb.c
13381
13382 MMU GATHER AND TLB INVALIDATION
13383 M:      Will Deacon <will@kernel.org>
13384 M:      "Aneesh Kumar K.V" <aneesh.kumar@linux.ibm.com>
13385 M:      Andrew Morton <akpm@linux-foundation.org>
13386 M:      Nick Piggin <npiggin@gmail.com>
13387 M:      Peter Zijlstra <peterz@infradead.org>
13388 L:      linux-arch@vger.kernel.org
13389 L:      linux-mm@kvack.org
13390 S:      Maintained
13391 F:      arch/*/include/asm/tlb.h
13392 F:      include/asm-generic/tlb.h
13393 F:      mm/mmu_gather.c
13394
13395 MN88472 MEDIA DRIVER
13396 M:      Antti Palosaari <crope@iki.fi>
13397 L:      linux-media@vger.kernel.org
13398 S:      Maintained
13399 W:      https://linuxtv.org
13400 W:      http://palosaari.fi/linux/
13401 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13402 F:      drivers/media/dvb-frontends/mn88472*
13403
13404 MN88473 MEDIA DRIVER
13405 M:      Antti Palosaari <crope@iki.fi>
13406 L:      linux-media@vger.kernel.org
13407 S:      Maintained
13408 W:      https://linuxtv.org
13409 W:      http://palosaari.fi/linux/
13410 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13411 F:      drivers/media/dvb-frontends/mn88473*
13412
13413 MODULE SUPPORT
13414 M:      Luis Chamberlain <mcgrof@kernel.org>
13415 L:      linux-modules@vger.kernel.org
13416 L:      linux-kernel@vger.kernel.org
13417 S:      Maintained
13418 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mcgrof/linux.git modules-next
13419 F:      include/linux/module.h
13420 F:      kernel/module/
13421
13422 MONOLITHIC POWER SYSTEM PMIC DRIVER
13423 M:      Saravanan Sekar <sravanhome@gmail.com>
13424 S:      Maintained
13425 F:      Documentation/devicetree/bindings/mfd/mps,mp2629.yaml
13426 F:      Documentation/devicetree/bindings/regulator/mps,mp*.yaml
13427 F:      drivers/iio/adc/mp2629_adc.c
13428 F:      drivers/mfd/mp2629.c
13429 F:      drivers/power/supply/mp2629_charger.c
13430 F:      drivers/regulator/mp5416.c
13431 F:      drivers/regulator/mpq7920.c
13432 F:      drivers/regulator/mpq7920.h
13433 F:      include/linux/mfd/mp2629.h
13434
13435 MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
13436 S:      Orphan
13437 W:      http://popies.net/meye/
13438 F:      Documentation/userspace-api/media/drivers/meye*
13439 F:      drivers/media/pci/meye/
13440 F:      include/uapi/linux/meye.h
13441
13442 MOTORCOMM PHY DRIVER
13443 M:      Peter Geis <pgwipeout@gmail.com>
13444 L:      netdev@vger.kernel.org
13445 S:      Maintained
13446 F:      drivers/net/phy/motorcomm.c
13447
13448 MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
13449 M:      Jiri Slaby <jirislaby@kernel.org>
13450 S:      Maintained
13451 F:      Documentation/driver-api/tty/moxa-smartio.rst
13452 F:      drivers/tty/mxser.*
13453
13454 MR800 AVERMEDIA USB FM RADIO DRIVER
13455 M:      Alexey Klimov <klimov.linux@gmail.com>
13456 L:      linux-media@vger.kernel.org
13457 S:      Maintained
13458 T:      git git://linuxtv.org/media_tree.git
13459 F:      drivers/media/radio/radio-mr800.c
13460
13461 MRF24J40 IEEE 802.15.4 RADIO DRIVER
13462 M:      Alan Ott <alan@signal11.us>
13463 L:      linux-wpan@vger.kernel.org
13464 S:      Maintained
13465 F:      Documentation/devicetree/bindings/net/ieee802154/mrf24j40.txt
13466 F:      drivers/net/ieee802154/mrf24j40.c
13467
13468 MSI LAPTOP SUPPORT
13469 M:      "Lee, Chun-Yi" <jlee@suse.com>
13470 L:      platform-driver-x86@vger.kernel.org
13471 S:      Maintained
13472 F:      drivers/platform/x86/msi-laptop.c
13473
13474 MSI WMI SUPPORT
13475 L:      platform-driver-x86@vger.kernel.org
13476 S:      Orphan
13477 F:      drivers/platform/x86/msi-wmi.c
13478
13479 MSI001 MEDIA DRIVER
13480 M:      Antti Palosaari <crope@iki.fi>
13481 L:      linux-media@vger.kernel.org
13482 S:      Maintained
13483 W:      https://linuxtv.org
13484 W:      http://palosaari.fi/linux/
13485 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13486 T:      git git://linuxtv.org/anttip/media_tree.git
13487 F:      drivers/media/tuners/msi001*
13488
13489 MSI2500 MEDIA DRIVER
13490 M:      Antti Palosaari <crope@iki.fi>
13491 L:      linux-media@vger.kernel.org
13492 S:      Maintained
13493 W:      https://linuxtv.org
13494 W:      http://palosaari.fi/linux/
13495 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13496 T:      git git://linuxtv.org/anttip/media_tree.git
13497 F:      drivers/media/usb/msi2500/
13498
13499 MSTAR INTERRUPT CONTROLLER DRIVER
13500 M:      Mark-PK Tsai <mark-pk.tsai@mediatek.com>
13501 M:      Daniel Palmer <daniel@thingy.jp>
13502 S:      Maintained
13503 F:      Documentation/devicetree/bindings/interrupt-controller/mstar,mst-intc.yaml
13504 F:      drivers/irqchip/irq-mst-intc.c
13505
13506 MSYSTEMS DISKONCHIP G3 MTD DRIVER
13507 M:      Robert Jarzmik <robert.jarzmik@free.fr>
13508 L:      linux-mtd@lists.infradead.org
13509 S:      Maintained
13510 F:      drivers/mtd/devices/docg3*
13511
13512 MT9M032 APTINA SENSOR DRIVER
13513 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
13514 L:      linux-media@vger.kernel.org
13515 S:      Maintained
13516 T:      git git://linuxtv.org/media_tree.git
13517 F:      drivers/media/i2c/mt9m032.c
13518 F:      include/media/i2c/mt9m032.h
13519
13520 MT9P031 APTINA CAMERA SENSOR
13521 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
13522 L:      linux-media@vger.kernel.org
13523 S:      Maintained
13524 T:      git git://linuxtv.org/media_tree.git
13525 F:      Documentation/devicetree/bindings/media/i2c/aptina,mt9p031.yaml
13526 F:      drivers/media/i2c/mt9p031.c
13527 F:      include/media/i2c/mt9p031.h
13528
13529 MT9T001 APTINA CAMERA SENSOR
13530 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
13531 L:      linux-media@vger.kernel.org
13532 S:      Maintained
13533 T:      git git://linuxtv.org/media_tree.git
13534 F:      drivers/media/i2c/mt9t001.c
13535 F:      include/media/i2c/mt9t001.h
13536
13537 MT9T112 APTINA CAMERA SENSOR
13538 M:      Jacopo Mondi <jacopo@jmondi.org>
13539 L:      linux-media@vger.kernel.org
13540 S:      Odd Fixes
13541 T:      git git://linuxtv.org/media_tree.git
13542 F:      drivers/media/i2c/mt9t112.c
13543 F:      include/media/i2c/mt9t112.h
13544
13545 MT9V032 APTINA CAMERA SENSOR
13546 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
13547 L:      linux-media@vger.kernel.org
13548 S:      Maintained
13549 T:      git git://linuxtv.org/media_tree.git
13550 F:      Documentation/devicetree/bindings/media/i2c/mt9v032.txt
13551 F:      drivers/media/i2c/mt9v032.c
13552 F:      include/media/i2c/mt9v032.h
13553
13554 MT9V111 APTINA CAMERA SENSOR
13555 M:      Jacopo Mondi <jacopo@jmondi.org>
13556 L:      linux-media@vger.kernel.org
13557 S:      Maintained
13558 T:      git git://linuxtv.org/media_tree.git
13559 F:      Documentation/devicetree/bindings/media/i2c/aptina,mt9v111.yaml
13560 F:      drivers/media/i2c/mt9v111.c
13561
13562 MULTIFUNCTION DEVICES (MFD)
13563 M:      Lee Jones <lee.jones@linaro.org>
13564 S:      Supported
13565 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
13566 F:      Documentation/devicetree/bindings/mfd/
13567 F:      drivers/mfd/
13568 F:      include/dt-bindings/mfd/
13569 F:      include/linux/mfd/
13570
13571 MULTIMEDIA CARD (MMC) ETC. OVER SPI
13572 S:      Orphan
13573 F:      drivers/mmc/host/mmc_spi.c
13574 F:      include/linux/spi/mmc_spi.h
13575
13576 MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
13577 M:      Ulf Hansson <ulf.hansson@linaro.org>
13578 L:      linux-mmc@vger.kernel.org
13579 S:      Maintained
13580 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
13581 F:      Documentation/devicetree/bindings/mmc/
13582 F:      drivers/mmc/
13583 F:      include/linux/mmc/
13584 F:      include/uapi/linux/mmc/
13585
13586 MULTIPLEXER SUBSYSTEM
13587 M:      Peter Rosin <peda@axentia.se>
13588 S:      Maintained
13589 F:      Documentation/ABI/testing/sysfs-class-mux*
13590 F:      Documentation/devicetree/bindings/mux/
13591 F:      drivers/mux/
13592 F:      include/dt-bindings/mux/
13593 F:      include/linux/mux/
13594
13595 MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
13596 M:      Bin Liu <b-liu@ti.com>
13597 L:      linux-usb@vger.kernel.org
13598 S:      Maintained
13599 F:      drivers/usb/musb/
13600
13601 MXL301RF MEDIA DRIVER
13602 M:      Akihiro Tsukada <tskd08@gmail.com>
13603 L:      linux-media@vger.kernel.org
13604 S:      Odd Fixes
13605 F:      drivers/media/tuners/mxl301rf*
13606
13607 MXL5007T MEDIA DRIVER
13608 M:      Michael Krufky <mkrufky@linuxtv.org>
13609 L:      linux-media@vger.kernel.org
13610 S:      Maintained
13611 W:      https://linuxtv.org
13612 W:      http://github.com/mkrufky
13613 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13614 T:      git git://linuxtv.org/mkrufky/tuners.git
13615 F:      drivers/media/tuners/mxl5007t.*
13616
13617 MXSFB DRM DRIVER
13618 M:      Marek Vasut <marex@denx.de>
13619 M:      Stefan Agner <stefan@agner.ch>
13620 L:      dri-devel@lists.freedesktop.org
13621 S:      Supported
13622 T:      git git://anongit.freedesktop.org/drm/drm-misc
13623 F:      Documentation/devicetree/bindings/display/fsl,lcdif.yaml
13624 F:      drivers/gpu/drm/mxsfb/
13625
13626 MYLEX DAC960 PCI RAID Controller
13627 M:      Hannes Reinecke <hare@kernel.org>
13628 L:      linux-scsi@vger.kernel.org
13629 S:      Supported
13630 F:      drivers/scsi/myrb.*
13631 F:      drivers/scsi/myrs.*
13632
13633 MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
13634 M:      Chris Lee <christopher.lee@cspi.com>
13635 L:      netdev@vger.kernel.org
13636 S:      Supported
13637 W:      https://www.cspi.com/ethernet-products/support/downloads/
13638 F:      drivers/net/ethernet/myricom/myri10ge/
13639
13640 NAND FLASH SUBSYSTEM
13641 M:      Miquel Raynal <miquel.raynal@bootlin.com>
13642 R:      Richard Weinberger <richard@nod.at>
13643 L:      linux-mtd@lists.infradead.org
13644 S:      Maintained
13645 W:      http://www.linux-mtd.infradead.org/
13646 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
13647 C:      irc://irc.oftc.net/mtd
13648 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git nand/next
13649 F:      drivers/mtd/nand/
13650 F:      include/linux/mtd/*nand*.h
13651
13652 NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
13653 M:      Daniel Mack <zonque@gmail.com>
13654 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
13655 S:      Maintained
13656 W:      http://www.native-instruments.com
13657 F:      sound/usb/caiaq/
13658
13659 NATSEMI ETHERNET DRIVER (DP8381x)
13660 S:      Orphan
13661 F:      drivers/net/ethernet/natsemi/natsemi.c
13662
13663 NCR 5380 SCSI DRIVERS
13664 M:      Finn Thain <fthain@linux-m68k.org>
13665 M:      Michael Schmitz <schmitzmic@gmail.com>
13666 L:      linux-scsi@vger.kernel.org
13667 S:      Maintained
13668 F:      Documentation/scsi/g_NCR5380.rst
13669 F:      drivers/scsi/NCR5380.*
13670 F:      drivers/scsi/arm/cumana_1.c
13671 F:      drivers/scsi/arm/oak.c
13672 F:      drivers/scsi/atari_scsi.*
13673 F:      drivers/scsi/dmx3191d.c
13674 F:      drivers/scsi/g_NCR5380.*
13675 F:      drivers/scsi/mac_scsi.*
13676 F:      drivers/scsi/sun3_scsi.*
13677 F:      drivers/scsi/sun3_scsi_vme.c
13678
13679 NCSI LIBRARY
13680 M:      Samuel Mendoza-Jonas <sam@mendozajonas.com>
13681 S:      Maintained
13682 F:      net/ncsi/
13683
13684 NCT6775 HARDWARE MONITOR DRIVER - CORE & PLATFORM DRIVER
13685 M:      Guenter Roeck <linux@roeck-us.net>
13686 L:      linux-hwmon@vger.kernel.org
13687 S:      Maintained
13688 F:      Documentation/hwmon/nct6775.rst
13689 F:      drivers/hwmon/nct6775-core.c
13690 F:      drivers/hwmon/nct6775-platform.c
13691 F:      drivers/hwmon/nct6775.h
13692
13693 NCT6775 HARDWARE MONITOR DRIVER - I2C DRIVER
13694 M:      Zev Weiss <zev@bewilderbeest.net>
13695 L:      linux-hwmon@vger.kernel.org
13696 S:      Maintained
13697 F:      Documentation/devicetree/bindings/hwmon/nuvoton,nct6775.yaml
13698 F:      drivers/hwmon/nct6775-i2c.c
13699
13700 NETDEVSIM
13701 M:      Jakub Kicinski <kuba@kernel.org>
13702 S:      Maintained
13703 F:      drivers/net/netdevsim/*
13704
13705 NETEM NETWORK EMULATOR
13706 M:      Stephen Hemminger <stephen@networkplumber.org>
13707 L:      netdev@vger.kernel.org
13708 S:      Maintained
13709 F:      net/sched/sch_netem.c
13710
13711 NETERION 10GbE DRIVERS (s2io/vxge)
13712 M:      Jon Mason <jdmason@kudzu.us>
13713 L:      netdev@vger.kernel.org
13714 S:      Supported
13715 F:      Documentation/networking/device_drivers/ethernet/neterion/s2io.rst
13716 F:      Documentation/networking/device_drivers/ethernet/neterion/vxge.rst
13717 F:      drivers/net/ethernet/neterion/
13718
13719 NETFILTER
13720 M:      Pablo Neira Ayuso <pablo@netfilter.org>
13721 M:      Jozsef Kadlecsik <kadlec@netfilter.org>
13722 M:      Florian Westphal <fw@strlen.de>
13723 L:      netfilter-devel@vger.kernel.org
13724 L:      coreteam@netfilter.org
13725 S:      Maintained
13726 W:      http://www.netfilter.org/
13727 W:      http://www.iptables.org/
13728 W:      http://www.nftables.org/
13729 Q:      http://patchwork.ozlabs.org/project/netfilter-devel/list/
13730 C:      irc://irc.libera.chat/netfilter
13731 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netfilter/nf.git
13732 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netfilter/nf-next.git
13733 F:      include/linux/netfilter*
13734 F:      include/linux/netfilter/
13735 F:      include/net/netfilter/
13736 F:      include/uapi/linux/netfilter*
13737 F:      include/uapi/linux/netfilter/
13738 F:      net/*/netfilter.c
13739 F:      net/*/netfilter/
13740 F:      net/bridge/br_netfilter*.c
13741 F:      net/netfilter/
13742
13743 NETROM NETWORK LAYER
13744 M:      Ralf Baechle <ralf@linux-mips.org>
13745 L:      linux-hams@vger.kernel.org
13746 S:      Maintained
13747 W:      http://www.linux-ax25.org/
13748 F:      include/net/netrom.h
13749 F:      include/uapi/linux/netrom.h
13750 F:      net/netrom/
13751
13752 NETRONIX EMBEDDED CONTROLLER
13753 M:      Jonathan Neuschäfer <j.neuschaefer@gmx.net>
13754 S:      Maintained
13755 F:      Documentation/devicetree/bindings/mfd/netronix,ntxec.yaml
13756 F:      drivers/mfd/ntxec.c
13757 F:      drivers/pwm/pwm-ntxec.c
13758 F:      drivers/rtc/rtc-ntxec.c
13759 F:      include/linux/mfd/ntxec.h
13760
13761 NETRONOME ETHERNET DRIVERS
13762 M:      Simon Horman <simon.horman@corigine.com>
13763 R:      Jakub Kicinski <kuba@kernel.org>
13764 L:      oss-drivers@corigine.com
13765 S:      Maintained
13766 F:      drivers/net/ethernet/netronome/
13767
13768 NETWORK BLOCK DEVICE (NBD)
13769 M:      Josef Bacik <josef@toxicpanda.com>
13770 L:      linux-block@vger.kernel.org
13771 L:      nbd@other.debian.org
13772 S:      Maintained
13773 F:      Documentation/admin-guide/blockdev/nbd.rst
13774 F:      drivers/block/nbd.c
13775 F:      include/trace/events/nbd.h
13776 F:      include/uapi/linux/nbd.h
13777
13778 NETWORK DROP MONITOR
13779 M:      Neil Horman <nhorman@tuxdriver.com>
13780 L:      netdev@vger.kernel.org
13781 S:      Maintained
13782 W:      https://fedorahosted.org/dropwatch/
13783 F:      include/uapi/linux/net_dropmon.h
13784 F:      net/core/drop_monitor.c
13785
13786 NETWORKING DRIVERS
13787 M:      "David S. Miller" <davem@davemloft.net>
13788 M:      Eric Dumazet <edumazet@google.com>
13789 M:      Jakub Kicinski <kuba@kernel.org>
13790 M:      Paolo Abeni <pabeni@redhat.com>
13791 L:      netdev@vger.kernel.org
13792 S:      Maintained
13793 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
13794 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
13795 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
13796 F:      Documentation/devicetree/bindings/net/
13797 F:      drivers/connector/
13798 F:      drivers/net/
13799 F:      include/linux/etherdevice.h
13800 F:      include/linux/fcdevice.h
13801 F:      include/linux/fddidevice.h
13802 F:      include/linux/hippidevice.h
13803 F:      include/linux/if_*
13804 F:      include/linux/inetdevice.h
13805 F:      include/linux/netdevice.h
13806 F:      include/uapi/linux/if_*
13807 F:      include/uapi/linux/netdevice.h
13808
13809 NETWORKING DRIVERS (WIRELESS)
13810 M:      Kalle Valo <kvalo@kernel.org>
13811 L:      linux-wireless@vger.kernel.org
13812 S:      Maintained
13813 W:      https://wireless.wiki.kernel.org/
13814 Q:      https://patchwork.kernel.org/project/linux-wireless/list/
13815 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless.git
13816 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless-next.git
13817 F:      Documentation/devicetree/bindings/net/wireless/
13818 F:      drivers/net/wireless/
13819
13820 NETWORKING [DSA]
13821 M:      Andrew Lunn <andrew@lunn.ch>
13822 M:      Vivien Didelot <vivien.didelot@gmail.com>
13823 M:      Florian Fainelli <f.fainelli@gmail.com>
13824 M:      Vladimir Oltean <olteanv@gmail.com>
13825 S:      Maintained
13826 F:      Documentation/devicetree/bindings/net/dsa/
13827 F:      drivers/net/dsa/
13828 F:      include/linux/dsa/
13829 F:      include/linux/platform_data/dsa.h
13830 F:      include/net/dsa.h
13831 F:      net/dsa/
13832 F:      tools/testing/selftests/drivers/net/dsa/
13833
13834 NETWORKING [GENERAL]
13835 M:      "David S. Miller" <davem@davemloft.net>
13836 M:      Eric Dumazet <edumazet@google.com>
13837 M:      Jakub Kicinski <kuba@kernel.org>
13838 M:      Paolo Abeni <pabeni@redhat.com>
13839 L:      netdev@vger.kernel.org
13840 S:      Maintained
13841 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
13842 B:      mailto:netdev@vger.kernel.org
13843 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
13844 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
13845 F:      Documentation/networking/
13846 F:      Documentation/process/maintainer-netdev.rst
13847 F:      include/linux/in.h
13848 F:      include/linux/net.h
13849 F:      include/linux/netdevice.h
13850 F:      include/net/
13851 F:      include/uapi/linux/in.h
13852 F:      include/uapi/linux/net.h
13853 F:      include/uapi/linux/net_namespace.h
13854 F:      include/uapi/linux/netdevice.h
13855 F:      lib/net_utils.c
13856 F:      lib/random32.c
13857 F:      net/
13858 F:      tools/testing/selftests/net/
13859
13860 NETWORKING [IPSEC]
13861 M:      Steffen Klassert <steffen.klassert@secunet.com>
13862 M:      Herbert Xu <herbert@gondor.apana.org.au>
13863 M:      "David S. Miller" <davem@davemloft.net>
13864 L:      netdev@vger.kernel.org
13865 S:      Maintained
13866 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git
13867 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git
13868 F:      include/net/xfrm.h
13869 F:      include/uapi/linux/xfrm.h
13870 F:      net/ipv4/ah4.c
13871 F:      net/ipv4/esp4*
13872 F:      net/ipv4/ip_vti.c
13873 F:      net/ipv4/ipcomp.c
13874 F:      net/ipv4/xfrm*
13875 F:      net/ipv6/ah6.c
13876 F:      net/ipv6/esp6*
13877 F:      net/ipv6/ip6_vti.c
13878 F:      net/ipv6/ipcomp6.c
13879 F:      net/ipv6/xfrm*
13880 F:      net/key/
13881 F:      net/xfrm/
13882 F:      tools/testing/selftests/net/ipsec.c
13883
13884 NETWORKING [IPv4/IPv6]
13885 M:      "David S. Miller" <davem@davemloft.net>
13886 M:      Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
13887 M:      David Ahern <dsahern@kernel.org>
13888 L:      netdev@vger.kernel.org
13889 S:      Maintained
13890 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
13891 F:      arch/x86/net/*
13892 F:      include/linux/ip.h
13893 F:      include/linux/ipv6*
13894 F:      include/net/fib*
13895 F:      include/net/ip*
13896 F:      include/net/route.h
13897 F:      net/ipv4/
13898 F:      net/ipv6/
13899
13900 NETWORKING [LABELED] (NetLabel, Labeled IPsec, SECMARK)
13901 M:      Paul Moore <paul@paul-moore.com>
13902 L:      netdev@vger.kernel.org
13903 L:      linux-security-module@vger.kernel.org
13904 S:      Maintained
13905 W:      https://github.com/netlabel
13906 F:      Documentation/netlabel/
13907 F:      include/net/calipso.h
13908 F:      include/net/cipso_ipv4.h
13909 F:      include/net/netlabel.h
13910 F:      include/uapi/linux/netfilter/xt_CONNSECMARK.h
13911 F:      include/uapi/linux/netfilter/xt_SECMARK.h
13912 F:      net/ipv4/cipso_ipv4.c
13913 F:      net/ipv6/calipso.c
13914 F:      net/netfilter/xt_CONNSECMARK.c
13915 F:      net/netfilter/xt_SECMARK.c
13916 F:      net/netlabel/
13917
13918 NETWORKING [MPTCP]
13919 M:      Mat Martineau <mathew.j.martineau@linux.intel.com>
13920 M:      Matthieu Baerts <matthieu.baerts@tessares.net>
13921 L:      netdev@vger.kernel.org
13922 L:      mptcp@lists.linux.dev
13923 S:      Maintained
13924 W:      https://github.com/multipath-tcp/mptcp_net-next/wiki
13925 B:      https://github.com/multipath-tcp/mptcp_net-next/issues
13926 F:      Documentation/networking/mptcp-sysctl.rst
13927 F:      include/net/mptcp.h
13928 F:      include/trace/events/mptcp.h
13929 F:      include/uapi/linux/mptcp.h
13930 F:      net/mptcp/
13931 F:      tools/testing/selftests/bpf/*/*mptcp*.c
13932 F:      tools/testing/selftests/net/mptcp/
13933
13934 NETWORKING [TCP]
13935 M:      Eric Dumazet <edumazet@google.com>
13936 L:      netdev@vger.kernel.org
13937 S:      Maintained
13938 F:      include/linux/tcp.h
13939 F:      include/net/tcp.h
13940 F:      include/trace/events/tcp.h
13941 F:      include/uapi/linux/tcp.h
13942 F:      net/ipv4/syncookies.c
13943 F:      net/ipv4/tcp*.c
13944 F:      net/ipv6/syncookies.c
13945 F:      net/ipv6/tcp*.c
13946
13947 NETWORKING [TLS]
13948 M:      Boris Pismenny <borisp@nvidia.com>
13949 M:      John Fastabend <john.fastabend@gmail.com>
13950 M:      Daniel Borkmann <daniel@iogearbox.net>
13951 M:      Jakub Kicinski <kuba@kernel.org>
13952 L:      netdev@vger.kernel.org
13953 S:      Maintained
13954 F:      include/net/tls.h
13955 F:      include/uapi/linux/tls.h
13956 F:      net/tls/*
13957
13958 NETXEN (1/10) GbE SUPPORT
13959 M:      Manish Chopra <manishc@marvell.com>
13960 M:      Rahul Verma <rahulv@marvell.com>
13961 M:      GR-Linux-NIC-Dev@marvell.com
13962 L:      netdev@vger.kernel.org
13963 S:      Supported
13964 F:      drivers/net/ethernet/qlogic/netxen/
13965
13966 NET_FAILOVER MODULE
13967 M:      Sridhar Samudrala <sridhar.samudrala@intel.com>
13968 L:      netdev@vger.kernel.org
13969 S:      Supported
13970 F:      Documentation/networking/net_failover.rst
13971 F:      drivers/net/net_failover.c
13972 F:      include/net/net_failover.h
13973
13974 NEXTHOP
13975 M:      David Ahern <dsahern@kernel.org>
13976 L:      netdev@vger.kernel.org
13977 S:      Maintained
13978 F:      include/net/netns/nexthop.h
13979 F:      include/net/nexthop.h
13980 F:      include/uapi/linux/nexthop.h
13981 F:      net/ipv4/nexthop.c
13982
13983 NFC SUBSYSTEM
13984 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
13985 L:      linux-nfc@lists.01.org (subscribers-only)
13986 L:      netdev@vger.kernel.org
13987 S:      Maintained
13988 B:      mailto:linux-nfc@lists.01.org
13989 F:      Documentation/devicetree/bindings/net/nfc/
13990 F:      drivers/nfc/
13991 F:      include/linux/platform_data/nfcmrvl.h
13992 F:      include/net/nfc/
13993 F:      include/uapi/linux/nfc.h
13994 F:      net/nfc/
13995
13996 NFC VIRTUAL NCI DEVICE DRIVER
13997 M:      Bongsu Jeon <bongsu.jeon@samsung.com>
13998 L:      netdev@vger.kernel.org
13999 L:      linux-nfc@lists.01.org (subscribers-only)
14000 S:      Supported
14001 F:      drivers/nfc/virtual_ncidev.c
14002 F:      tools/testing/selftests/nci/
14003
14004 NFS, SUNRPC, AND LOCKD CLIENTS
14005 M:      Trond Myklebust <trond.myklebust@hammerspace.com>
14006 M:      Anna Schumaker <anna@kernel.org>
14007 L:      linux-nfs@vger.kernel.org
14008 S:      Maintained
14009 W:      http://client.linux-nfs.org
14010 T:      git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git
14011 F:      fs/lockd/
14012 F:      fs/nfs/
14013 F:      fs/nfs_common/
14014 F:      include/linux/lockd/
14015 F:      include/linux/nfs*
14016 F:      include/linux/sunrpc/
14017 F:      include/uapi/linux/nfs*
14018 F:      include/uapi/linux/sunrpc/
14019 F:      net/sunrpc/
14020 F:      Documentation/filesystems/nfs/
14021
14022 NILFS2 FILESYSTEM
14023 M:      Ryusuke Konishi <konishi.ryusuke@gmail.com>
14024 L:      linux-nilfs@vger.kernel.org
14025 S:      Supported
14026 W:      https://nilfs.sourceforge.io/
14027 W:      https://nilfs.osdn.jp/
14028 T:      git git://github.com/konis/nilfs2.git
14029 F:      Documentation/filesystems/nilfs2.rst
14030 F:      fs/nilfs2/
14031 F:      include/trace/events/nilfs2.h
14032 F:      include/uapi/linux/nilfs2_api.h
14033 F:      include/uapi/linux/nilfs2_ondisk.h
14034
14035 NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
14036 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
14037 S:      Maintained
14038 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
14039 F:      Documentation/scsi/NinjaSCSI.rst
14040 F:      drivers/scsi/pcmcia/nsp_*
14041
14042 NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
14043 M:      GOTO Masanori <gotom@debian.or.jp>
14044 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
14045 S:      Maintained
14046 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
14047 F:      Documentation/scsi/NinjaSCSI.rst
14048 F:      drivers/scsi/nsp32*
14049
14050 NINTENDO HID DRIVER
14051 M:      Daniel J. Ogorchock <djogorchock@gmail.com>
14052 L:      linux-input@vger.kernel.org
14053 S:      Maintained
14054 F:      drivers/hid/hid-nintendo*
14055
14056 NIOS2 ARCHITECTURE
14057 M:      Dinh Nguyen <dinguyen@kernel.org>
14058 S:      Maintained
14059 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
14060 F:      arch/nios2/
14061
14062 NITRO ENCLAVES (NE)
14063 M:      Andra Paraschiv <andraprs@amazon.com>
14064 M:      Alexandru Vasile <lexnv@amazon.com>
14065 M:      Alexandru Ciobotaru <alcioa@amazon.com>
14066 L:      linux-kernel@vger.kernel.org
14067 S:      Supported
14068 W:      https://aws.amazon.com/ec2/nitro/nitro-enclaves/
14069 F:      Documentation/virt/ne_overview.rst
14070 F:      drivers/virt/nitro_enclaves/
14071 F:      include/linux/nitro_enclaves.h
14072 F:      include/uapi/linux/nitro_enclaves.h
14073 F:      samples/nitro_enclaves/
14074
14075 NOHZ, DYNTICKS SUPPORT
14076 M:      Frederic Weisbecker <fweisbec@gmail.com>
14077 M:      Thomas Gleixner <tglx@linutronix.de>
14078 M:      Ingo Molnar <mingo@kernel.org>
14079 L:      linux-kernel@vger.kernel.org
14080 S:      Maintained
14081 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/nohz
14082 F:      include/linux/sched/nohz.h
14083 F:      include/linux/tick.h
14084 F:      kernel/time/tick*.*
14085
14086 NOKIA N900 CAMERA SUPPORT (ET8EK8 SENSOR, AD5820 FOCUS)
14087 M:      Pavel Machek <pavel@ucw.cz>
14088 M:      Sakari Ailus <sakari.ailus@iki.fi>
14089 L:      linux-media@vger.kernel.org
14090 S:      Maintained
14091 F:      drivers/media/i2c/ad5820.c
14092 F:      drivers/media/i2c/et8ek8
14093
14094 NOKIA N900 POWER SUPPLY DRIVERS
14095 R:      Pali Rohár <pali@kernel.org>
14096 F:      drivers/power/supply/bq2415x_charger.c
14097 F:      drivers/power/supply/bq27xxx_battery.c
14098 F:      drivers/power/supply/bq27xxx_battery_i2c.c
14099 F:      drivers/power/supply/isp1704_charger.c
14100 F:      drivers/power/supply/rx51_battery.c
14101 F:      include/linux/power/bq2415x_charger.h
14102 F:      include/linux/power/bq27xxx_battery.h
14103
14104 NOLIBC HEADER FILE
14105 M:      Willy Tarreau <w@1wt.eu>
14106 S:      Maintained
14107 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wtarreau/nolibc.git
14108 F:      tools/include/nolibc/
14109
14110 NSDEPS
14111 M:      Matthias Maennich <maennich@google.com>
14112 S:      Maintained
14113 F:      Documentation/core-api/symbol-namespaces.rst
14114 F:      scripts/nsdeps
14115
14116 NTB AMD DRIVER
14117 M:      Sanjay R Mehta <sanju.mehta@amd.com>
14118 M:      Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
14119 L:      ntb@lists.linux.dev
14120 S:      Supported
14121 F:      drivers/ntb/hw/amd/
14122
14123 NTB DRIVER CORE
14124 M:      Jon Mason <jdmason@kudzu.us>
14125 M:      Dave Jiang <dave.jiang@intel.com>
14126 M:      Allen Hubbe <allenbh@gmail.com>
14127 L:      ntb@lists.linux.dev
14128 S:      Supported
14129 W:      https://github.com/jonmason/ntb/wiki
14130 T:      git git://github.com/jonmason/ntb.git
14131 F:      drivers/net/ntb_netdev.c
14132 F:      drivers/ntb/
14133 F:      include/linux/ntb.h
14134 F:      include/linux/ntb_transport.h
14135 F:      tools/testing/selftests/ntb/
14136
14137 NTB IDT DRIVER
14138 M:      Serge Semin <fancer.lancer@gmail.com>
14139 L:      ntb@lists.linux.dev
14140 S:      Supported
14141 F:      drivers/ntb/hw/idt/
14142
14143 NTB INTEL DRIVER
14144 M:      Dave Jiang <dave.jiang@intel.com>
14145 L:      ntb@lists.linux.dev
14146 S:      Supported
14147 W:      https://github.com/davejiang/linux/wiki
14148 T:      git https://github.com/davejiang/linux.git
14149 F:      drivers/ntb/hw/intel/
14150
14151 NTFS FILESYSTEM
14152 M:      Anton Altaparmakov <anton@tuxera.com>
14153 L:      linux-ntfs-dev@lists.sourceforge.net
14154 S:      Supported
14155 W:      http://www.tuxera.com/
14156 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
14157 F:      Documentation/filesystems/ntfs.rst
14158 F:      fs/ntfs/
14159
14160 NTFS3 FILESYSTEM
14161 M:      Konstantin Komarov <almaz.alexandrovich@paragon-software.com>
14162 L:      ntfs3@lists.linux.dev
14163 S:      Supported
14164 W:      http://www.paragon-software.com/
14165 T:      git https://github.com/Paragon-Software-Group/linux-ntfs3.git
14166 F:      Documentation/filesystems/ntfs3.rst
14167 F:      fs/ntfs3/
14168
14169 NUBUS SUBSYSTEM
14170 M:      Finn Thain <fthain@linux-m68k.org>
14171 L:      linux-m68k@lists.linux-m68k.org
14172 S:      Maintained
14173 F:      arch/*/include/asm/nubus.h
14174 F:      drivers/nubus/
14175 F:      include/linux/nubus.h
14176 F:      include/uapi/linux/nubus.h
14177
14178 NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
14179 M:      Antonino Daplas <adaplas@gmail.com>
14180 L:      linux-fbdev@vger.kernel.org
14181 S:      Maintained
14182 F:      drivers/video/fbdev/nvidia/
14183 F:      drivers/video/fbdev/riva/
14184
14185 NVIDIA WMI EC BACKLIGHT DRIVER
14186 M:      Daniel Dadap <ddadap@nvidia.com>
14187 L:      platform-driver-x86@vger.kernel.org
14188 S:      Supported
14189 F:      drivers/platform/x86/nvidia-wmi-ec-backlight.c
14190
14191 NVM EXPRESS DRIVER
14192 M:      Keith Busch <kbusch@kernel.org>
14193 M:      Jens Axboe <axboe@fb.com>
14194 M:      Christoph Hellwig <hch@lst.de>
14195 M:      Sagi Grimberg <sagi@grimberg.me>
14196 L:      linux-nvme@lists.infradead.org
14197 S:      Supported
14198 W:      http://git.infradead.org/nvme.git
14199 T:      git://git.infradead.org/nvme.git
14200 F:      drivers/nvme/host/
14201 F:      include/linux/nvme.h
14202 F:      include/uapi/linux/nvme_ioctl.h
14203
14204 NVM EXPRESS FC TRANSPORT DRIVERS
14205 M:      James Smart <james.smart@broadcom.com>
14206 L:      linux-nvme@lists.infradead.org
14207 S:      Supported
14208 F:      drivers/nvme/host/fc.c
14209 F:      drivers/nvme/target/fc.c
14210 F:      drivers/nvme/target/fcloop.c
14211 F:      include/linux/nvme-fc-driver.h
14212 F:      include/linux/nvme-fc.h
14213
14214 NVM EXPRESS TARGET DRIVER
14215 M:      Christoph Hellwig <hch@lst.de>
14216 M:      Sagi Grimberg <sagi@grimberg.me>
14217 M:      Chaitanya Kulkarni <kch@nvidia.com>
14218 L:      linux-nvme@lists.infradead.org
14219 S:      Supported
14220 W:      http://git.infradead.org/nvme.git
14221 T:      git://git.infradead.org/nvme.git
14222 F:      drivers/nvme/target/
14223
14224 NVMEM FRAMEWORK
14225 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
14226 S:      Maintained
14227 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/srini/nvmem.git
14228 F:      Documentation/ABI/stable/sysfs-bus-nvmem
14229 F:      Documentation/devicetree/bindings/nvmem/
14230 F:      drivers/nvmem/
14231 F:      include/linux/nvmem-consumer.h
14232 F:      include/linux/nvmem-provider.h
14233
14234 NXP C45 TJA11XX PHY DRIVER
14235 M:      Radu Pirea <radu-nicolae.pirea@oss.nxp.com>
14236 L:      netdev@vger.kernel.org
14237 S:      Maintained
14238 F:      drivers/net/phy/nxp-c45-tja11xx.c
14239
14240 NXP FSPI DRIVER
14241 M:      Ashish Kumar <ashish.kumar@nxp.com>
14242 R:      Yogesh Gaur <yogeshgaur.83@gmail.com>
14243 L:      linux-spi@vger.kernel.org
14244 S:      Maintained
14245 F:      Documentation/devicetree/bindings/spi/spi-nxp-fspi.yaml
14246 F:      drivers/spi/spi-nxp-fspi.c
14247
14248 NXP FXAS21002C DRIVER
14249 M:      Rui Miguel Silva <rmfrfs@gmail.com>
14250 L:      linux-iio@vger.kernel.org
14251 S:      Maintained
14252 F:      Documentation/devicetree/bindings/iio/gyroscope/nxp,fxas21002c.yaml
14253 F:      drivers/iio/gyro/fxas21002c.h
14254 F:      drivers/iio/gyro/fxas21002c_core.c
14255 F:      drivers/iio/gyro/fxas21002c_i2c.c
14256 F:      drivers/iio/gyro/fxas21002c_spi.c
14257
14258 NXP i.MX CLOCK DRIVERS
14259 M:      Abel Vesa <abel.vesa@nxp.com>
14260 L:      linux-clk@vger.kernel.org
14261 L:      linux-imx@nxp.com
14262 S:      Maintained
14263 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/abelvesa/linux.git clk/imx
14264 F:      Documentation/devicetree/bindings/clock/imx*
14265 F:      drivers/clk/imx/
14266 F:      include/dt-bindings/clock/imx*
14267
14268 NXP i.MX 8MQ DCSS DRIVER
14269 M:      Laurentiu Palcu <laurentiu.palcu@oss.nxp.com>
14270 R:      Lucas Stach <l.stach@pengutronix.de>
14271 L:      dri-devel@lists.freedesktop.org
14272 S:      Maintained
14273 F:      Documentation/devicetree/bindings/display/imx/nxp,imx8mq-dcss.yaml
14274 F:      drivers/gpu/drm/imx/dcss/
14275
14276 NXP i.MX 8QXP ADC DRIVER
14277 M:      Cai Huoqing <cai.huoqing@linux.dev>
14278 M:      Haibo Chen <haibo.chen@nxp.com>
14279 L:      linux-imx@nxp.com
14280 L:      linux-iio@vger.kernel.org
14281 S:      Maintained
14282 F:      Documentation/devicetree/bindings/iio/adc/nxp,imx8qxp-adc.yaml
14283 F:      drivers/iio/adc/imx8qxp-adc.c
14284
14285 NXP i.MX 7D/6SX/6UL AND VF610 ADC DRIVER
14286 M:      Haibo Chen <haibo.chen@nxp.com>
14287 L:      linux-iio@vger.kernel.org
14288 L:      linux-imx@nxp.com
14289 S:      Maintained
14290 F:      Documentation/devicetree/bindings/iio/adc/fsl,imx7d-adc.yaml
14291 F:      Documentation/devicetree/bindings/iio/adc/fsl,vf610-adc.yaml
14292 F:      drivers/iio/adc/imx7d_adc.c
14293 F:      drivers/iio/adc/vf610_adc.c
14294
14295 NXP PF8100/PF8121A/PF8200 PMIC REGULATOR DEVICE DRIVER
14296 M:      Jagan Teki <jagan@amarulasolutions.com>
14297 S:      Maintained
14298 F:      Documentation/devicetree/bindings/regulator/nxp,pf8x00-regulator.yaml
14299 F:      drivers/regulator/pf8x00-regulator.c
14300
14301 NXP PTN5150A CC LOGIC AND EXTCON DRIVER
14302 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
14303 L:      linux-kernel@vger.kernel.org
14304 S:      Maintained
14305 F:      Documentation/devicetree/bindings/extcon/extcon-ptn5150.yaml
14306 F:      drivers/extcon/extcon-ptn5150.c
14307
14308 NXP SGTL5000 DRIVER
14309 M:      Fabio Estevam <festevam@gmail.com>
14310 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
14311 S:      Maintained
14312 F:      Documentation/devicetree/bindings/sound/sgtl5000.yaml
14313 F:      sound/soc/codecs/sgtl5000*
14314
14315 NXP SJA1105 ETHERNET SWITCH DRIVER
14316 M:      Vladimir Oltean <olteanv@gmail.com>
14317 L:      linux-kernel@vger.kernel.org
14318 S:      Maintained
14319 F:      drivers/net/dsa/sja1105
14320 F:      drivers/net/pcs/pcs-xpcs-nxp.c
14321
14322 NXP TDA998X DRM DRIVER
14323 M:      Russell King <linux@armlinux.org.uk>
14324 S:      Maintained
14325 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-devel
14326 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-fixes
14327 F:      drivers/gpu/drm/i2c/tda998x_drv.c
14328 F:      include/drm/i2c/tda998x.h
14329 F:      include/dt-bindings/display/tda998x.h
14330 K:      "nxp,tda998x"
14331
14332 NXP TFA9879 DRIVER
14333 M:      Peter Rosin <peda@axentia.se>
14334 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
14335 S:      Maintained
14336 F:      Documentation/devicetree/bindings/sound/tfa9879.txt
14337 F:      sound/soc/codecs/tfa9879*
14338
14339 NXP/Goodix TFA989X (TFA1) DRIVER
14340 M:      Stephan Gerhold <stephan@gerhold.net>
14341 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
14342 S:      Maintained
14343 F:      Documentation/devicetree/bindings/sound/nxp,tfa989x.yaml
14344 F:      sound/soc/codecs/tfa989x.c
14345
14346 NXP-NCI NFC DRIVER
14347 R:      Charles Gorand <charles.gorand@effinnov.com>
14348 L:      linux-nfc@lists.01.org (subscribers-only)
14349 S:      Supported
14350 F:      Documentation/devicetree/bindings/net/nfc/nxp,nci.yaml
14351 F:      drivers/nfc/nxp-nci
14352
14353 NXP i.MX 8QXP/8QM JPEG V4L2 DRIVER
14354 M:      Mirela Rabulea <mirela.rabulea@nxp.com>
14355 R:      NXP Linux Team <linux-imx@nxp.com>
14356 L:      linux-media@vger.kernel.org
14357 S:      Maintained
14358 F:      Documentation/devicetree/bindings/media/nxp,imx8-jpeg.yaml
14359 F:      drivers/media/platform/nxp/imx-jpeg
14360
14361 NZXT-KRAKEN2 HARDWARE MONITORING DRIVER
14362 M:      Jonas Malaco <jonas@protocubo.io>
14363 L:      linux-hwmon@vger.kernel.org
14364 S:      Maintained
14365 F:      Documentation/hwmon/nzxt-kraken2.rst
14366 F:      drivers/hwmon/nzxt-kraken2.c
14367
14368 NZXT-SMART2 HARDWARE MONITORING DRIVER
14369 M:      Aleksandr Mezin <mezin.alexander@gmail.com>
14370 L:      linux-hwmon@vger.kernel.org
14371 S:      Maintained
14372 F:      Documentation/hwmon/nzxt-smart2.rst
14373 F:      drivers/hwmon/nzxt-smart2.c
14374
14375 OBJAGG
14376 M:      Jiri Pirko <jiri@nvidia.com>
14377 L:      netdev@vger.kernel.org
14378 S:      Supported
14379 F:      include/linux/objagg.h
14380 F:      lib/objagg.c
14381 F:      lib/test_objagg.c
14382
14383 OBJTOOL
14384 M:      Josh Poimboeuf <jpoimboe@kernel.org>
14385 M:      Peter Zijlstra <peterz@infradead.org>
14386 S:      Supported
14387 F:      tools/objtool/
14388 F:      include/linux/objtool.h
14389
14390 OCELOT ETHERNET SWITCH DRIVER
14391 M:      Vladimir Oltean <vladimir.oltean@nxp.com>
14392 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
14393 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
14394 M:      UNGLinuxDriver@microchip.com
14395 L:      netdev@vger.kernel.org
14396 S:      Supported
14397 F:      drivers/net/dsa/ocelot/*
14398 F:      drivers/net/ethernet/mscc/
14399 F:      include/soc/mscc/ocelot*
14400 F:      net/dsa/tag_ocelot.c
14401 F:      net/dsa/tag_ocelot_8021q.c
14402 F:      tools/testing/selftests/drivers/net/ocelot/*
14403
14404 OCXL (Open Coherent Accelerator Processor Interface OpenCAPI) DRIVER
14405 M:      Frederic Barrat <fbarrat@linux.ibm.com>
14406 M:      Andrew Donnellan <ajd@linux.ibm.com>
14407 L:      linuxppc-dev@lists.ozlabs.org
14408 S:      Supported
14409 F:      Documentation/userspace-api/accelerators/ocxl.rst
14410 F:      arch/powerpc/include/asm/pnv-ocxl.h
14411 F:      arch/powerpc/platforms/powernv/ocxl.c
14412 F:      drivers/misc/ocxl/
14413 F:      include/misc/ocxl*
14414 F:      include/uapi/misc/ocxl.h
14415
14416 OMAP AUDIO SUPPORT
14417 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
14418 M:      Jarkko Nikula <jarkko.nikula@bitmer.com>
14419 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
14420 L:      linux-omap@vger.kernel.org
14421 S:      Maintained
14422 F:      sound/soc/ti/n810.c
14423 F:      sound/soc/ti/omap*
14424 F:      sound/soc/ti/rx51.c
14425 F:      sound/soc/ti/sdma-pcm.*
14426
14427 OMAP CLOCK FRAMEWORK SUPPORT
14428 M:      Paul Walmsley <paul@pwsan.com>
14429 L:      linux-omap@vger.kernel.org
14430 S:      Maintained
14431 F:      arch/arm/*omap*/*clock*
14432
14433 OMAP DEVICE TREE SUPPORT
14434 M:      Benoît Cousson <bcousson@baylibre.com>
14435 M:      Tony Lindgren <tony@atomide.com>
14436 L:      linux-omap@vger.kernel.org
14437 L:      devicetree@vger.kernel.org
14438 S:      Maintained
14439 F:      arch/arm/boot/dts/*am3*
14440 F:      arch/arm/boot/dts/*am4*
14441 F:      arch/arm/boot/dts/*am5*
14442 F:      arch/arm/boot/dts/*dra7*
14443 F:      arch/arm/boot/dts/*omap*
14444 F:      arch/arm/boot/dts/logicpd-som-lv*
14445 F:      arch/arm/boot/dts/logicpd-torpedo*
14446
14447 OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
14448 L:      linux-omap@vger.kernel.org
14449 L:      linux-fbdev@vger.kernel.org
14450 S:      Orphan
14451 F:      Documentation/arm/omap/dss.rst
14452 F:      drivers/video/fbdev/omap2/
14453
14454 OMAP FRAMEBUFFER SUPPORT
14455 L:      linux-fbdev@vger.kernel.org
14456 L:      linux-omap@vger.kernel.org
14457 S:      Orphan
14458 F:      drivers/video/fbdev/omap/
14459
14460 OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT
14461 M:      Roger Quadros <rogerq@kernel.org>
14462 M:      Tony Lindgren <tony@atomide.com>
14463 L:      linux-omap@vger.kernel.org
14464 S:      Maintained
14465 F:      arch/arm/mach-omap2/*gpmc*
14466 F:      drivers/memory/omap-gpmc.c
14467
14468 OMAP GPIO DRIVER
14469 M:      Grygorii Strashko <grygorii.strashko@ti.com>
14470 M:      Santosh Shilimkar <ssantosh@kernel.org>
14471 M:      Kevin Hilman <khilman@kernel.org>
14472 L:      linux-omap@vger.kernel.org
14473 S:      Maintained
14474 F:      Documentation/devicetree/bindings/gpio/ti,omap-gpio.yaml
14475 F:      drivers/gpio/gpio-omap.c
14476
14477 OMAP HARDWARE SPINLOCK SUPPORT
14478 M:      Ohad Ben-Cohen <ohad@wizery.com>
14479 L:      linux-omap@vger.kernel.org
14480 S:      Maintained
14481 F:      drivers/hwspinlock/omap_hwspinlock.c
14482
14483 OMAP HS MMC SUPPORT
14484 L:      linux-mmc@vger.kernel.org
14485 L:      linux-omap@vger.kernel.org
14486 S:      Orphan
14487 F:      drivers/mmc/host/omap_hsmmc.c
14488
14489 OMAP HWMOD DATA
14490 M:      Paul Walmsley <paul@pwsan.com>
14491 L:      linux-omap@vger.kernel.org
14492 S:      Maintained
14493 F:      arch/arm/mach-omap2/omap_hwmod*data*
14494
14495 OMAP HWMOD SUPPORT
14496 M:      Benoît Cousson <bcousson@baylibre.com>
14497 M:      Paul Walmsley <paul@pwsan.com>
14498 L:      linux-omap@vger.kernel.org
14499 S:      Maintained
14500 F:      arch/arm/mach-omap2/omap_hwmod.*
14501
14502 OMAP I2C DRIVER
14503 M:      Vignesh R <vigneshr@ti.com>
14504 L:      linux-omap@vger.kernel.org
14505 L:      linux-i2c@vger.kernel.org
14506 S:      Maintained
14507 F:      Documentation/devicetree/bindings/i2c/ti,omap4-i2c.yaml
14508 F:      drivers/i2c/busses/i2c-omap.c
14509
14510 OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS)
14511 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
14512 L:      linux-media@vger.kernel.org
14513 S:      Maintained
14514 F:      Documentation/devicetree/bindings/media/ti,omap3isp.txt
14515 F:      drivers/media/platform/ti/omap3isp/
14516 F:      drivers/staging/media/omap4iss/
14517
14518 OMAP MMC SUPPORT
14519 M:      Aaro Koskinen <aaro.koskinen@iki.fi>
14520 L:      linux-omap@vger.kernel.org
14521 S:      Odd Fixes
14522 F:      drivers/mmc/host/omap.c
14523
14524 OMAP POWER MANAGEMENT SUPPORT
14525 M:      Kevin Hilman <khilman@kernel.org>
14526 L:      linux-omap@vger.kernel.org
14527 S:      Maintained
14528 F:      arch/arm/*omap*/*pm*
14529 F:      drivers/cpufreq/omap-cpufreq.c
14530
14531 OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT
14532 M:      Paul Walmsley <paul@pwsan.com>
14533 L:      linux-omap@vger.kernel.org
14534 S:      Maintained
14535 F:      arch/arm/mach-omap2/prm*
14536
14537 OMAP RANDOM NUMBER GENERATOR SUPPORT
14538 M:      Deepak Saxena <dsaxena@plexity.net>
14539 S:      Maintained
14540 F:      drivers/char/hw_random/omap-rng.c
14541
14542 OMAP USB SUPPORT
14543 L:      linux-usb@vger.kernel.org
14544 L:      linux-omap@vger.kernel.org
14545 S:      Orphan
14546 F:      arch/arm/*omap*/usb*
14547 F:      drivers/usb/*/*omap*
14548
14549 OMAP/NEWFLOW NANOBONE MACHINE SUPPORT
14550 M:      Mark Jackson <mpfj@newflow.co.uk>
14551 L:      linux-omap@vger.kernel.org
14552 S:      Maintained
14553 F:      arch/arm/boot/dts/am335x-nano.dts
14554
14555 OMAP1 SUPPORT
14556 M:      Aaro Koskinen <aaro.koskinen@iki.fi>
14557 M:      Janusz Krzysztofik <jmkrzyszt@gmail.com>
14558 M:      Tony Lindgren <tony@atomide.com>
14559 L:      linux-omap@vger.kernel.org
14560 S:      Maintained
14561 Q:      http://patchwork.kernel.org/project/linux-omap/list/
14562 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
14563 F:      arch/arm/configs/omap1_defconfig
14564 F:      arch/arm/mach-omap1/
14565 F:      arch/arm/plat-omap/
14566 F:      drivers/i2c/busses/i2c-omap.c
14567 F:      include/linux/platform_data/ams-delta-fiq.h
14568 F:      include/linux/platform_data/i2c-omap.h
14569
14570 OMAP2+ SUPPORT
14571 M:      Tony Lindgren <tony@atomide.com>
14572 L:      linux-omap@vger.kernel.org
14573 S:      Maintained
14574 W:      http://www.muru.com/linux/omap/
14575 W:      http://linux.omap.com/
14576 Q:      http://patchwork.kernel.org/project/linux-omap/list/
14577 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
14578 F:      arch/arm/configs/omap2plus_defconfig
14579 F:      arch/arm/mach-omap2/
14580 F:      arch/arm/plat-omap/
14581 F:      drivers/bus/ti-sysc.c
14582 F:      drivers/i2c/busses/i2c-omap.c
14583 F:      drivers/irqchip/irq-omap-intc.c
14584 F:      drivers/mfd/*omap*.c
14585 F:      drivers/mfd/menelaus.c
14586 F:      drivers/mfd/palmas.c
14587 F:      drivers/mfd/tps65217.c
14588 F:      drivers/mfd/tps65218.c
14589 F:      drivers/mfd/tps65910.c
14590 F:      drivers/mfd/twl-core.[ch]
14591 F:      drivers/mfd/twl4030*.c
14592 F:      drivers/mfd/twl6030*.c
14593 F:      drivers/mfd/twl6040*.c
14594 F:      drivers/regulator/palmas-regulator*.c
14595 F:      drivers/regulator/pbias-regulator.c
14596 F:      drivers/regulator/tps65217-regulator.c
14597 F:      drivers/regulator/tps65218-regulator.c
14598 F:      drivers/regulator/tps65910-regulator.c
14599 F:      drivers/regulator/twl-regulator.c
14600 F:      drivers/regulator/twl6030-regulator.c
14601 F:      include/linux/platform_data/i2c-omap.h
14602 F:      include/linux/platform_data/ti-sysc.h
14603
14604 OMFS FILESYSTEM
14605 M:      Bob Copeland <me@bobcopeland.com>
14606 L:      linux-karma-devel@lists.sourceforge.net
14607 S:      Maintained
14608 F:      Documentation/filesystems/omfs.rst
14609 F:      fs/omfs/
14610
14611 OMNIKEY CARDMAN 4000 DRIVER
14612 M:      Harald Welte <laforge@gnumonks.org>
14613 S:      Maintained
14614 F:      drivers/char/pcmcia/cm4000_cs.c
14615 F:      include/linux/cm4000_cs.h
14616 F:      include/uapi/linux/cm4000_cs.h
14617
14618 OMNIKEY CARDMAN 4040 DRIVER
14619 M:      Harald Welte <laforge@gnumonks.org>
14620 S:      Maintained
14621 F:      drivers/char/pcmcia/cm4040_cs.*
14622
14623 OMNIVISION OG01A1B SENSOR DRIVER
14624 M:      Shawn Tu <shawnx.tu@intel.com>
14625 L:      linux-media@vger.kernel.org
14626 S:      Maintained
14627 F:      drivers/media/i2c/og01a1b.c
14628
14629 OMNIVISION OV02A10 SENSOR DRIVER
14630 M:      Dongchun Zhu <dongchun.zhu@mediatek.com>
14631 L:      linux-media@vger.kernel.org
14632 S:      Maintained
14633 T:      git git://linuxtv.org/media_tree.git
14634 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov02a10.yaml
14635 F:      drivers/media/i2c/ov02a10.c
14636
14637 OMNIVISION OV08D10 SENSOR DRIVER
14638 M:      Jimmy Su <jimmy.su@intel.com>
14639 L:      linux-media@vger.kernel.org
14640 S:      Maintained
14641 T:      git git://linuxtv.org/media_tree.git
14642 F:      drivers/media/i2c/ov08d10.c
14643
14644 OMNIVISION OV13858 SENSOR DRIVER
14645 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
14646 L:      linux-media@vger.kernel.org
14647 S:      Maintained
14648 T:      git git://linuxtv.org/media_tree.git
14649 F:      drivers/media/i2c/ov13858.c
14650
14651 OMNIVISION OV13B10 SENSOR DRIVER
14652 M:      Arec Kao <arec.kao@intel.com>
14653 L:      linux-media@vger.kernel.org
14654 S:      Maintained
14655 T:      git git://linuxtv.org/media_tree.git
14656 F:      drivers/media/i2c/ov13b10.c
14657
14658 OMNIVISION OV2680 SENSOR DRIVER
14659 M:      Rui Miguel Silva <rmfrfs@gmail.com>
14660 L:      linux-media@vger.kernel.org
14661 S:      Maintained
14662 T:      git git://linuxtv.org/media_tree.git
14663 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov2680.yaml
14664 F:      drivers/media/i2c/ov2680.c
14665
14666 OMNIVISION OV2685 SENSOR DRIVER
14667 M:      Shunqian Zheng <zhengsq@rock-chips.com>
14668 L:      linux-media@vger.kernel.org
14669 S:      Maintained
14670 T:      git git://linuxtv.org/media_tree.git
14671 F:      drivers/media/i2c/ov2685.c
14672
14673 OMNIVISION OV2740 SENSOR DRIVER
14674 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
14675 R:      Shawn Tu <shawnx.tu@intel.com>
14676 R:      Bingbu Cao <bingbu.cao@intel.com>
14677 L:      linux-media@vger.kernel.org
14678 S:      Maintained
14679 T:      git git://linuxtv.org/media_tree.git
14680 F:      drivers/media/i2c/ov2740.c
14681
14682 OMNIVISION OV5640 SENSOR DRIVER
14683 M:      Steve Longerbeam <slongerbeam@gmail.com>
14684 L:      linux-media@vger.kernel.org
14685 S:      Maintained
14686 T:      git git://linuxtv.org/media_tree.git
14687 F:      drivers/media/i2c/ov5640.c
14688
14689 OMNIVISION OV5647 SENSOR DRIVER
14690 M:      Dave Stevenson <dave.stevenson@raspberrypi.com>
14691 M:      Jacopo Mondi <jacopo@jmondi.org>
14692 L:      linux-media@vger.kernel.org
14693 S:      Maintained
14694 T:      git git://linuxtv.org/media_tree.git
14695 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov5647.yaml
14696 F:      drivers/media/i2c/ov5647.c
14697
14698 OMNIVISION OV5670 SENSOR DRIVER
14699 M:      Chiranjeevi Rapolu <chiranjeevi.rapolu@intel.com>
14700 L:      linux-media@vger.kernel.org
14701 S:      Maintained
14702 T:      git git://linuxtv.org/media_tree.git
14703 F:      drivers/media/i2c/ov5670.c
14704
14705 OMNIVISION OV5675 SENSOR DRIVER
14706 M:      Shawn Tu <shawnx.tu@intel.com>
14707 L:      linux-media@vger.kernel.org
14708 S:      Maintained
14709 T:      git git://linuxtv.org/media_tree.git
14710 F:      drivers/media/i2c/ov5675.c
14711
14712 OMNIVISION OV5693 SENSOR DRIVER
14713 M:      Daniel Scally <djrscally@gmail.com>
14714 L:      linux-media@vger.kernel.org
14715 S:      Maintained
14716 T:      git git://linuxtv.org/media_tree.git
14717 F:      drivers/media/i2c/ov5693.c
14718
14719 OMNIVISION OV5695 SENSOR DRIVER
14720 M:      Shunqian Zheng <zhengsq@rock-chips.com>
14721 L:      linux-media@vger.kernel.org
14722 S:      Maintained
14723 T:      git git://linuxtv.org/media_tree.git
14724 F:      drivers/media/i2c/ov5695.c
14725
14726 OMNIVISION OV7670 SENSOR DRIVER
14727 L:      linux-media@vger.kernel.org
14728 S:      Orphan
14729 T:      git git://linuxtv.org/media_tree.git
14730 F:      Documentation/devicetree/bindings/media/i2c/ov7670.txt
14731 F:      drivers/media/i2c/ov7670.c
14732
14733 OMNIVISION OV772x SENSOR DRIVER
14734 M:      Jacopo Mondi <jacopo@jmondi.org>
14735 L:      linux-media@vger.kernel.org
14736 S:      Odd fixes
14737 T:      git git://linuxtv.org/media_tree.git
14738 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov772x.yaml
14739 F:      drivers/media/i2c/ov772x.c
14740 F:      include/media/i2c/ov772x.h
14741
14742 OMNIVISION OV7740 SENSOR DRIVER
14743 M:      Wenyou Yang <wenyou.yang@microchip.com>
14744 L:      linux-media@vger.kernel.org
14745 S:      Maintained
14746 T:      git git://linuxtv.org/media_tree.git
14747 F:      Documentation/devicetree/bindings/media/i2c/ov7740.txt
14748 F:      drivers/media/i2c/ov7740.c
14749
14750 OMNIVISION OV8856 SENSOR DRIVER
14751 M:      Dongchun Zhu <dongchun.zhu@mediatek.com>
14752 L:      linux-media@vger.kernel.org
14753 S:      Maintained
14754 T:      git git://linuxtv.org/media_tree.git
14755 F:      Documentation/devicetree/bindings/media/i2c/ov8856.yaml
14756 F:      drivers/media/i2c/ov8856.c
14757
14758 OMNIVISION OV9282 SENSOR DRIVER
14759 M:      Paul J. Murphy <paul.j.murphy@intel.com>
14760 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
14761 L:      linux-media@vger.kernel.org
14762 S:      Maintained
14763 T:      git git://linuxtv.org/media_tree.git
14764 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov9282.yaml
14765 F:      drivers/media/i2c/ov9282.c
14766
14767 OMNIVISION OV9640 SENSOR DRIVER
14768 M:      Petr Cvek <petrcvekcz@gmail.com>
14769 L:      linux-media@vger.kernel.org
14770 S:      Maintained
14771 F:      drivers/media/i2c/ov9640.*
14772
14773 OMNIVISION OV9650 SENSOR DRIVER
14774 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
14775 R:      Akinobu Mita <akinobu.mita@gmail.com>
14776 R:      Sylwester Nawrocki <s.nawrocki@samsung.com>
14777 L:      linux-media@vger.kernel.org
14778 S:      Maintained
14779 T:      git git://linuxtv.org/media_tree.git
14780 F:      Documentation/devicetree/bindings/media/i2c/ov9650.txt
14781 F:      drivers/media/i2c/ov9650.c
14782
14783 OMNIVISION OV9734 SENSOR DRIVER
14784 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
14785 R:      Bingbu Cao <bingbu.cao@intel.com>
14786 L:      linux-media@vger.kernel.org
14787 S:      Maintained
14788 T:      git git://linuxtv.org/media_tree.git
14789 F:      drivers/media/i2c/ov9734.c
14790
14791 ONENAND FLASH DRIVER
14792 M:      Kyungmin Park <kyungmin.park@samsung.com>
14793 L:      linux-mtd@lists.infradead.org
14794 S:      Maintained
14795 F:      drivers/mtd/nand/onenand/
14796 F:      include/linux/mtd/onenand*.h
14797
14798 ONION OMEGA2+ BOARD
14799 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
14800 L:      linux-mips@vger.kernel.org
14801 S:      Maintained
14802 F:      arch/mips/boot/dts/ralink/omega2p.dts
14803
14804 OP-TEE DRIVER
14805 M:      Jens Wiklander <jens.wiklander@linaro.org>
14806 L:      op-tee@lists.trustedfirmware.org
14807 S:      Maintained
14808 F:      Documentation/ABI/testing/sysfs-bus-optee-devices
14809 F:      drivers/tee/optee/
14810
14811 OP-TEE RANDOM NUMBER GENERATOR (RNG) DRIVER
14812 M:      Sumit Garg <sumit.garg@linaro.org>
14813 L:      op-tee@lists.trustedfirmware.org
14814 S:      Maintained
14815 F:      drivers/char/hw_random/optee-rng.c
14816
14817 OP-TEE RTC DRIVER
14818 M:      Clément Léger <clement.leger@bootlin.com>
14819 L:      linux-rtc@vger.kernel.org
14820 S:      Maintained
14821 F:      drivers/rtc/rtc-optee.c
14822
14823 OPA-VNIC DRIVER
14824 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
14825 L:      linux-rdma@vger.kernel.org
14826 S:      Supported
14827 F:      drivers/infiniband/ulp/opa_vnic
14828
14829 OPEN FIRMWARE AND DEVICE TREE OVERLAYS
14830 M:      Pantelis Antoniou <pantelis.antoniou@konsulko.com>
14831 M:      Frank Rowand <frowand.list@gmail.com>
14832 L:      devicetree@vger.kernel.org
14833 S:      Maintained
14834 F:      Documentation/devicetree/dynamic-resolution-notes.rst
14835 F:      Documentation/devicetree/overlay-notes.rst
14836 F:      drivers/of/overlay.c
14837 F:      drivers/of/resolver.c
14838 K:      of_overlay_notifier_
14839
14840 OPEN FIRMWARE AND FLATTENED DEVICE TREE
14841 M:      Rob Herring <robh+dt@kernel.org>
14842 M:      Frank Rowand <frowand.list@gmail.com>
14843 L:      devicetree@vger.kernel.org
14844 S:      Maintained
14845 C:      irc://irc.libera.chat/devicetree
14846 W:      http://www.devicetree.org/
14847 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
14848 F:      Documentation/ABI/testing/sysfs-firmware-ofw
14849 F:      drivers/of/
14850 F:      include/linux/of*.h
14851 F:      scripts/dtc/
14852
14853 OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
14854 M:      Rob Herring <robh+dt@kernel.org>
14855 M:      Krzysztof Kozlowski <krzysztof.kozlowski+dt@linaro.org>
14856 L:      devicetree@vger.kernel.org
14857 S:      Maintained
14858 C:      irc://irc.libera.chat/devicetree
14859 Q:      http://patchwork.ozlabs.org/project/devicetree-bindings/list/
14860 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
14861 F:      Documentation/devicetree/
14862 F:      arch/*/boot/dts/
14863 F:      include/dt-bindings/
14864
14865 OPENCOMPUTE PTP CLOCK DRIVER
14866 M:      Jonathan Lemon <jonathan.lemon@gmail.com>
14867 L:      netdev@vger.kernel.org
14868 S:      Maintained
14869 F:      drivers/ptp/ptp_ocp.c
14870
14871 OPENCORES I2C BUS DRIVER
14872 M:      Peter Korsgaard <peter@korsgaard.com>
14873 M:      Andrew Lunn <andrew@lunn.ch>
14874 L:      linux-i2c@vger.kernel.org
14875 S:      Maintained
14876 F:      Documentation/devicetree/bindings/i2c/i2c-ocores.txt
14877 F:      Documentation/i2c/busses/i2c-ocores.rst
14878 F:      drivers/i2c/busses/i2c-ocores.c
14879 F:      include/linux/platform_data/i2c-ocores.h
14880
14881 OPENRISC ARCHITECTURE
14882 M:      Jonas Bonn <jonas@southpole.se>
14883 M:      Stefan Kristiansson <stefan.kristiansson@saunalahti.fi>
14884 M:      Stafford Horne <shorne@gmail.com>
14885 L:      openrisc@lists.librecores.org
14886 S:      Maintained
14887 W:      http://openrisc.io
14888 T:      git git://github.com/openrisc/linux.git
14889 F:      Documentation/devicetree/bindings/openrisc/
14890 F:      Documentation/openrisc/
14891 F:      arch/openrisc/
14892 F:      drivers/irqchip/irq-ompic.c
14893 F:      drivers/irqchip/irq-or1k-*
14894
14895 OPENVSWITCH
14896 M:      Pravin B Shelar <pshelar@ovn.org>
14897 L:      netdev@vger.kernel.org
14898 L:      dev@openvswitch.org
14899 S:      Maintained
14900 W:      http://openvswitch.org
14901 F:      include/uapi/linux/openvswitch.h
14902 F:      net/openvswitch/
14903
14904 OPERATING PERFORMANCE POINTS (OPP)
14905 M:      Viresh Kumar <vireshk@kernel.org>
14906 M:      Nishanth Menon <nm@ti.com>
14907 M:      Stephen Boyd <sboyd@kernel.org>
14908 L:      linux-pm@vger.kernel.org
14909 S:      Maintained
14910 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git
14911 F:      Documentation/devicetree/bindings/opp/
14912 F:      Documentation/power/opp.rst
14913 F:      drivers/opp/
14914 F:      include/linux/pm_opp.h
14915
14916 OPL4 DRIVER
14917 M:      Clemens Ladisch <clemens@ladisch.de>
14918 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
14919 S:      Maintained
14920 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
14921 F:      sound/drivers/opl4/
14922
14923 ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
14924 M:      Mark Fasheh <mark@fasheh.com>
14925 M:      Joel Becker <jlbec@evilplan.org>
14926 M:      Joseph Qi <joseph.qi@linux.alibaba.com>
14927 L:      ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
14928 S:      Supported
14929 W:      http://ocfs2.wiki.kernel.org
14930 F:      Documentation/filesystems/dlmfs.rst
14931 F:      Documentation/filesystems/ocfs2.rst
14932 F:      fs/ocfs2/
14933
14934 ORANGEFS FILESYSTEM
14935 M:      Mike Marshall <hubcap@omnibond.com>
14936 R:      Martin Brandenburg <martin@omnibond.com>
14937 L:      devel@lists.orangefs.org
14938 S:      Supported
14939 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hubcap/linux.git
14940 F:      Documentation/filesystems/orangefs.rst
14941 F:      fs/orangefs/
14942
14943 ORINOCO DRIVER
14944 L:      linux-wireless@vger.kernel.org
14945 S:      Orphan
14946 W:      https://wireless.wiki.kernel.org/en/users/Drivers/orinoco
14947 W:      http://www.nongnu.org/orinoco/
14948 F:      drivers/net/wireless/intersil/orinoco/
14949
14950 OV2659 OMNIVISION SENSOR DRIVER
14951 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
14952 L:      linux-media@vger.kernel.org
14953 S:      Maintained
14954 W:      https://linuxtv.org
14955 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14956 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
14957 F:      drivers/media/i2c/ov2659.c
14958 F:      include/media/i2c/ov2659.h
14959
14960 OVERLAY FILESYSTEM
14961 M:      Miklos Szeredi <miklos@szeredi.hu>
14962 L:      linux-unionfs@vger.kernel.org
14963 S:      Supported
14964 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git
14965 F:      Documentation/filesystems/overlayfs.rst
14966 F:      fs/overlayfs/
14967
14968 P54 WIRELESS DRIVER
14969 M:      Christian Lamparter <chunkeey@googlemail.com>
14970 L:      linux-wireless@vger.kernel.org
14971 S:      Maintained
14972 W:      https://wireless.wiki.kernel.org/en/users/Drivers/p54
14973 F:      drivers/net/wireless/intersil/p54/
14974
14975 PACKING
14976 M:      Vladimir Oltean <olteanv@gmail.com>
14977 L:      netdev@vger.kernel.org
14978 S:      Supported
14979 F:      Documentation/core-api/packing.rst
14980 F:      include/linux/packing.h
14981 F:      lib/packing.c
14982
14983 PADATA PARALLEL EXECUTION MECHANISM
14984 M:      Steffen Klassert <steffen.klassert@secunet.com>
14985 M:      Daniel Jordan <daniel.m.jordan@oracle.com>
14986 L:      linux-crypto@vger.kernel.org
14987 L:      linux-kernel@vger.kernel.org
14988 S:      Maintained
14989 F:      Documentation/core-api/padata.rst
14990 F:      include/linux/padata.h
14991 F:      kernel/padata.c
14992
14993 PAGE CACHE
14994 M:      Matthew Wilcox (Oracle) <willy@infradead.org>
14995 L:      linux-fsdevel@vger.kernel.org
14996 S:      Supported
14997 T:      git git://git.infradead.org/users/willy/pagecache.git
14998 F:      Documentation/filesystems/locking.rst
14999 F:      Documentation/filesystems/vfs.rst
15000 F:      include/linux/pagemap.h
15001 F:      mm/filemap.c
15002 F:      mm/page-writeback.c
15003 F:      mm/readahead.c
15004 F:      mm/truncate.c
15005
15006 PAGE POOL
15007 M:      Jesper Dangaard Brouer <hawk@kernel.org>
15008 M:      Ilias Apalodimas <ilias.apalodimas@linaro.org>
15009 L:      netdev@vger.kernel.org
15010 S:      Supported
15011 F:      Documentation/networking/page_pool.rst
15012 F:      include/net/page_pool.h
15013 F:      include/trace/events/page_pool.h
15014 F:      net/core/page_pool.c
15015
15016 PAGE TABLE CHECK
15017 M:      Pasha Tatashin <pasha.tatashin@soleen.com>
15018 M:      Andrew Morton <akpm@linux-foundation.org>
15019 L:      linux-mm@kvack.org
15020 S:      Maintained
15021 F:      Documentation/vm/page_table_check.rst
15022 F:      include/linux/page_table_check.h
15023 F:      mm/page_table_check.c
15024
15025 PANASONIC LAPTOP ACPI EXTRAS DRIVER
15026 M:      Kenneth Chan <kenneth.t.chan@gmail.com>
15027 L:      platform-driver-x86@vger.kernel.org
15028 S:      Maintained
15029 F:      drivers/platform/x86/panasonic-laptop.c
15030
15031 PARALLAX PING IIO SENSOR DRIVER
15032 M:      Andreas Klinger <ak@it-klinger.de>
15033 L:      linux-iio@vger.kernel.org
15034 S:      Maintained
15035 F:      Documentation/devicetree/bindings/iio/proximity/parallax-ping.yaml
15036 F:      drivers/iio/proximity/ping.c
15037
15038 PARALLEL LCD/KEYPAD PANEL DRIVER
15039 M:      Willy Tarreau <willy@haproxy.com>
15040 M:      Ksenija Stanojevic <ksenija.stanojevic@gmail.com>
15041 S:      Odd Fixes
15042 F:      Documentation/admin-guide/lcd-panel-cgram.rst
15043 F:      drivers/auxdisplay/panel.c
15044
15045 PARALLEL PORT SUBSYSTEM
15046 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
15047 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
15048 L:      linux-parport@lists.infradead.org (subscribers-only)
15049 S:      Maintained
15050 F:      Documentation/driver-api/parport*.rst
15051 F:      drivers/char/ppdev.c
15052 F:      drivers/parport/
15053 F:      include/linux/parport*.h
15054 F:      include/uapi/linux/ppdev.h
15055
15056 PARAVIRT_OPS INTERFACE
15057 M:      Juergen Gross <jgross@suse.com>
15058 M:      Srivatsa S. Bhat (VMware) <srivatsa@csail.mit.edu>
15059 R:      Alexey Makhalov <amakhalov@vmware.com>
15060 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
15061 L:      virtualization@lists.linux-foundation.org
15062 L:      x86@kernel.org
15063 S:      Supported
15064 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
15065 F:      Documentation/virt/paravirt_ops.rst
15066 F:      arch/*/include/asm/paravirt*.h
15067 F:      arch/*/kernel/paravirt*
15068 F:      include/linux/hypervisor.h
15069
15070 PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
15071 M:      Tim Waugh <tim@cyberelk.net>
15072 L:      linux-parport@lists.infradead.org (subscribers-only)
15073 S:      Maintained
15074 F:      Documentation/admin-guide/blockdev/paride.rst
15075 F:      drivers/block/paride/
15076
15077 PARISC ARCHITECTURE
15078 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
15079 M:      Helge Deller <deller@gmx.de>
15080 L:      linux-parisc@vger.kernel.org
15081 S:      Maintained
15082 W:      https://parisc.wiki.kernel.org
15083 Q:      http://patchwork.kernel.org/project/linux-parisc/list/
15084 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
15085 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git
15086 F:      Documentation/parisc/
15087 F:      arch/parisc/
15088 F:      drivers/char/agp/parisc-agp.c
15089 F:      drivers/input/misc/hp_sdc_rtc.c
15090 F:      drivers/input/serio/gscps2.c
15091 F:      drivers/input/serio/hp_sdc*
15092 F:      drivers/parisc/
15093 F:      drivers/parport/parport_gsc.*
15094 F:      drivers/tty/serial/8250/8250_gsc.c
15095 F:      drivers/video/console/sti*
15096 F:      drivers/video/fbdev/sti*
15097 F:      drivers/video/logo/logo_parisc*
15098 F:      include/linux/hp_sdc.h
15099
15100 PARMAN
15101 M:      Jiri Pirko <jiri@nvidia.com>
15102 L:      netdev@vger.kernel.org
15103 S:      Supported
15104 F:      include/linux/parman.h
15105 F:      lib/parman.c
15106 F:      lib/test_parman.c
15107
15108 PC ENGINES APU BOARD DRIVER
15109 M:      Enrico Weigelt, metux IT consult <info@metux.net>
15110 S:      Maintained
15111 F:      drivers/platform/x86/pcengines-apuv2.c
15112
15113 PC87360 HARDWARE MONITORING DRIVER
15114 M:      Jim Cromie <jim.cromie@gmail.com>
15115 L:      linux-hwmon@vger.kernel.org
15116 S:      Maintained
15117 F:      Documentation/hwmon/pc87360.rst
15118 F:      drivers/hwmon/pc87360.c
15119
15120 PC8736x GPIO DRIVER
15121 M:      Jim Cromie <jim.cromie@gmail.com>
15122 S:      Maintained
15123 F:      drivers/char/pc8736x_gpio.c
15124
15125 PC87427 HARDWARE MONITORING DRIVER
15126 M:      Jean Delvare <jdelvare@suse.com>
15127 L:      linux-hwmon@vger.kernel.org
15128 S:      Maintained
15129 F:      Documentation/hwmon/pc87427.rst
15130 F:      drivers/hwmon/pc87427.c
15131
15132 PCA9532 LED DRIVER
15133 M:      Riku Voipio <riku.voipio@iki.fi>
15134 S:      Maintained
15135 F:      drivers/leds/leds-pca9532.c
15136 F:      include/linux/leds-pca9532.h
15137
15138 PCA9541 I2C BUS MASTER SELECTOR DRIVER
15139 M:      Guenter Roeck <linux@roeck-us.net>
15140 L:      linux-i2c@vger.kernel.org
15141 S:      Maintained
15142 F:      drivers/i2c/muxes/i2c-mux-pca9541.c
15143
15144 PCDP - PRIMARY CONSOLE AND DEBUG PORT
15145 M:      Khalid Aziz <khalid@gonehiking.org>
15146 S:      Maintained
15147 F:      drivers/firmware/pcdp.*
15148
15149 PCI DRIVER FOR AARDVARK (Marvell Armada 3700)
15150 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
15151 M:      Pali Rohár <pali@kernel.org>
15152 L:      linux-pci@vger.kernel.org
15153 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15154 S:      Maintained
15155 F:      Documentation/devicetree/bindings/pci/aardvark-pci.txt
15156 F:      drivers/pci/controller/pci-aardvark.c
15157
15158 PCI DRIVER FOR ALTERA PCIE IP
15159 M:      Joyce Ooi <joyce.ooi@intel.com>
15160 L:      linux-pci@vger.kernel.org
15161 S:      Supported
15162 F:      Documentation/devicetree/bindings/pci/altera-pcie.txt
15163 F:      drivers/pci/controller/pcie-altera.c
15164
15165 PCI DRIVER FOR APPLIEDMICRO XGENE
15166 M:      Toan Le <toan@os.amperecomputing.com>
15167 L:      linux-pci@vger.kernel.org
15168 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15169 S:      Maintained
15170 F:      Documentation/devicetree/bindings/pci/xgene-pci.txt
15171 F:      drivers/pci/controller/pci-xgene.c
15172
15173 PCI DRIVER FOR ARM VERSATILE PLATFORM
15174 M:      Rob Herring <robh@kernel.org>
15175 L:      linux-pci@vger.kernel.org
15176 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15177 S:      Maintained
15178 F:      Documentation/devicetree/bindings/pci/versatile.yaml
15179 F:      drivers/pci/controller/pci-versatile.c
15180
15181 PCI DRIVER FOR ARMADA 8K
15182 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
15183 L:      linux-pci@vger.kernel.org
15184 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15185 S:      Maintained
15186 F:      Documentation/devicetree/bindings/pci/pci-armada8k.txt
15187 F:      drivers/pci/controller/dwc/pcie-armada8k.c
15188
15189 PCI DRIVER FOR CADENCE PCIE IP
15190 M:      Tom Joseph <tjoseph@cadence.com>
15191 L:      linux-pci@vger.kernel.org
15192 S:      Maintained
15193 F:      Documentation/devicetree/bindings/pci/cdns,*
15194 F:      drivers/pci/controller/cadence/
15195
15196 PCI DRIVER FOR FREESCALE LAYERSCAPE
15197 M:      Minghuan Lian <minghuan.Lian@nxp.com>
15198 M:      Mingkai Hu <mingkai.hu@nxp.com>
15199 M:      Roy Zang <roy.zang@nxp.com>
15200 L:      linuxppc-dev@lists.ozlabs.org
15201 L:      linux-pci@vger.kernel.org
15202 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15203 S:      Maintained
15204 F:      drivers/pci/controller/dwc/*layerscape*
15205
15206 PCI DRIVER FOR GENERIC OF HOSTS
15207 M:      Will Deacon <will@kernel.org>
15208 L:      linux-pci@vger.kernel.org
15209 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15210 S:      Maintained
15211 F:      Documentation/devicetree/bindings/pci/host-generic-pci.yaml
15212 F:      drivers/pci/controller/pci-host-common.c
15213 F:      drivers/pci/controller/pci-host-generic.c
15214
15215 PCI DRIVER FOR IMX6
15216 M:      Richard Zhu <hongxing.zhu@nxp.com>
15217 M:      Lucas Stach <l.stach@pengutronix.de>
15218 L:      linux-pci@vger.kernel.org
15219 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15220 S:      Maintained
15221 F:      Documentation/devicetree/bindings/pci/fsl,imx6q-pcie.yaml
15222 F:      drivers/pci/controller/dwc/*imx6*
15223
15224 PCI DRIVER FOR FU740
15225 M:      Paul Walmsley <paul.walmsley@sifive.com>
15226 M:      Greentime Hu <greentime.hu@sifive.com>
15227 L:      linux-pci@vger.kernel.org
15228 S:      Maintained
15229 F:      Documentation/devicetree/bindings/pci/sifive,fu740-pcie.yaml
15230 F:      drivers/pci/controller/dwc/pcie-fu740.c
15231
15232 PCI DRIVER FOR INTEL IXP4XX
15233 M:      Linus Walleij <linus.walleij@linaro.org>
15234 S:      Maintained
15235 F:      Documentation/devicetree/bindings/pci/intel,ixp4xx-pci.yaml
15236 F:      drivers/pci/controller/pci-ixp4xx.c
15237
15238 PCI DRIVER FOR INTEL VOLUME MANAGEMENT DEVICE (VMD)
15239 M:      Nirmal Patel <nirmal.patel@linux.intel.com>
15240 R:      Jonathan Derrick <jonathan.derrick@linux.dev>
15241 L:      linux-pci@vger.kernel.org
15242 S:      Supported
15243 F:      drivers/pci/controller/vmd.c
15244
15245 PCI DRIVER FOR MICROSEMI SWITCHTEC
15246 M:      Kurt Schwemmer <kurt.schwemmer@microsemi.com>
15247 M:      Logan Gunthorpe <logang@deltatee.com>
15248 L:      linux-pci@vger.kernel.org
15249 S:      Maintained
15250 F:      Documentation/ABI/testing/sysfs-class-switchtec
15251 F:      Documentation/driver-api/switchtec.rst
15252 F:      drivers/ntb/hw/mscc/
15253 F:      drivers/pci/switch/switchtec*
15254 F:      include/linux/switchtec.h
15255 F:      include/uapi/linux/switchtec_ioctl.h
15256
15257 PCI DRIVER FOR MOBIVEIL PCIE IP
15258 M:      Karthikeyan Mitran <m.karthikeyan@mobiveil.co.in>
15259 M:      Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
15260 L:      linux-pci@vger.kernel.org
15261 S:      Supported
15262 F:      Documentation/devicetree/bindings/pci/mobiveil-pcie.txt
15263 F:      drivers/pci/controller/mobiveil/pcie-mobiveil*
15264
15265 PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support)
15266 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
15267 M:      Pali Rohár <pali@kernel.org>
15268 L:      linux-pci@vger.kernel.org
15269 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15270 S:      Maintained
15271 F:      drivers/pci/controller/*mvebu*
15272
15273 PCI DRIVER FOR NVIDIA TEGRA
15274 M:      Thierry Reding <thierry.reding@gmail.com>
15275 L:      linux-tegra@vger.kernel.org
15276 L:      linux-pci@vger.kernel.org
15277 S:      Supported
15278 F:      Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt
15279 F:      drivers/pci/controller/pci-tegra.c
15280
15281 PCI DRIVER FOR NXP LAYERSCAPE GEN4 CONTROLLER
15282 M:      Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
15283 L:      linux-pci@vger.kernel.org
15284 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15285 S:      Maintained
15286 F:      Documentation/devicetree/bindings/pci/layerscape-pcie-gen4.txt
15287 F:      drivers/pci/controller/mobiveil/pcie-layerscape-gen4.c
15288
15289 PCI DRIVER FOR RENESAS R-CAR
15290 M:      Marek Vasut <marek.vasut+renesas@gmail.com>
15291 M:      Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
15292 L:      linux-pci@vger.kernel.org
15293 L:      linux-renesas-soc@vger.kernel.org
15294 S:      Maintained
15295 F:      Documentation/devicetree/bindings/pci/*rcar*
15296 F:      drivers/pci/controller/*rcar*
15297
15298 PCI DRIVER FOR SAMSUNG EXYNOS
15299 M:      Jingoo Han <jingoohan1@gmail.com>
15300 L:      linux-pci@vger.kernel.org
15301 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15302 L:      linux-samsung-soc@vger.kernel.org
15303 S:      Maintained
15304 F:      drivers/pci/controller/dwc/pci-exynos.c
15305
15306 PCI DRIVER FOR SYNOPSYS DESIGNWARE
15307 M:      Jingoo Han <jingoohan1@gmail.com>
15308 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
15309 L:      linux-pci@vger.kernel.org
15310 S:      Maintained
15311 F:      Documentation/devicetree/bindings/pci/snps,dw-pcie.yaml
15312 F:      Documentation/devicetree/bindings/pci/snps,dw-pcie-ep.yaml
15313 F:      drivers/pci/controller/dwc/*designware*
15314
15315 PCI DRIVER FOR TI DRA7XX/J721E
15316 M:      Kishon Vijay Abraham I <kishon@ti.com>
15317 L:      linux-omap@vger.kernel.org
15318 L:      linux-pci@vger.kernel.org
15319 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15320 S:      Supported
15321 F:      Documentation/devicetree/bindings/pci/ti-pci.txt
15322 F:      drivers/pci/controller/cadence/pci-j721e.c
15323 F:      drivers/pci/controller/dwc/pci-dra7xx.c
15324
15325 PCI DRIVER FOR V3 SEMICONDUCTOR V360EPC
15326 M:      Linus Walleij <linus.walleij@linaro.org>
15327 L:      linux-pci@vger.kernel.org
15328 S:      Maintained
15329 F:      Documentation/devicetree/bindings/pci/v3-v360epc-pci.txt
15330 F:      drivers/pci/controller/pci-v3-semi.c
15331
15332 PCI ENDPOINT SUBSYSTEM
15333 M:      Kishon Vijay Abraham I <kishon@ti.com>
15334 M:      Lorenzo Pieralisi <lpieralisi@kernel.org>
15335 R:      Krzysztof Wilczyński <kw@linux.com>
15336 L:      linux-pci@vger.kernel.org
15337 S:      Supported
15338 Q:      https://patchwork.kernel.org/project/linux-pci/list/
15339 B:      https://bugzilla.kernel.org
15340 C:      irc://irc.oftc.net/linux-pci
15341 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lpieralisi/pci.git
15342 F:      Documentation/PCI/endpoint/*
15343 F:      Documentation/misc-devices/pci-endpoint-test.rst
15344 F:      drivers/misc/pci_endpoint_test.c
15345 F:      drivers/pci/endpoint/
15346 F:      tools/pci/
15347
15348 PCI ENHANCED ERROR HANDLING (EEH) FOR POWERPC
15349 M:      Russell Currey <ruscur@russell.cc>
15350 M:      Oliver O'Halloran <oohall@gmail.com>
15351 L:      linuxppc-dev@lists.ozlabs.org
15352 S:      Supported
15353 F:      Documentation/PCI/pci-error-recovery.rst
15354 F:      Documentation/powerpc/eeh-pci-error-recovery.rst
15355 F:      arch/powerpc/include/*/eeh*.h
15356 F:      arch/powerpc/kernel/eeh*.c
15357 F:      arch/powerpc/platforms/*/eeh*.c
15358 F:      drivers/pci/pcie/aer.c
15359 F:      drivers/pci/pcie/dpc.c
15360 F:      drivers/pci/pcie/err.c
15361
15362 PCI ERROR RECOVERY
15363 M:      Linas Vepstas <linasvepstas@gmail.com>
15364 L:      linux-pci@vger.kernel.org
15365 S:      Supported
15366 F:      Documentation/PCI/pci-error-recovery.rst
15367
15368 PCI PEER-TO-PEER DMA (P2PDMA)
15369 M:      Bjorn Helgaas <bhelgaas@google.com>
15370 M:      Logan Gunthorpe <logang@deltatee.com>
15371 L:      linux-pci@vger.kernel.org
15372 S:      Supported
15373 Q:      https://patchwork.kernel.org/project/linux-pci/list/
15374 B:      https://bugzilla.kernel.org
15375 C:      irc://irc.oftc.net/linux-pci
15376 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
15377 F:      Documentation/driver-api/pci/p2pdma.rst
15378 F:      drivers/pci/p2pdma.c
15379 F:      include/linux/pci-p2pdma.h
15380
15381 PCI MSI DRIVER FOR ALTERA MSI IP
15382 M:      Joyce Ooi <joyce.ooi@intel.com>
15383 L:      linux-pci@vger.kernel.org
15384 S:      Supported
15385 F:      Documentation/devicetree/bindings/pci/altera-pcie-msi.txt
15386 F:      drivers/pci/controller/pcie-altera-msi.c
15387
15388 PCI MSI DRIVER FOR APPLIEDMICRO XGENE
15389 M:      Toan Le <toan@os.amperecomputing.com>
15390 L:      linux-pci@vger.kernel.org
15391 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15392 S:      Maintained
15393 F:      Documentation/devicetree/bindings/pci/xgene-pci-msi.txt
15394 F:      drivers/pci/controller/pci-xgene-msi.c
15395
15396 PCI NATIVE HOST BRIDGE AND ENDPOINT DRIVERS
15397 M:      Lorenzo Pieralisi <lpieralisi@kernel.org>
15398 R:      Rob Herring <robh@kernel.org>
15399 R:      Krzysztof Wilczyński <kw@linux.com>
15400 L:      linux-pci@vger.kernel.org
15401 S:      Supported
15402 Q:      https://patchwork.kernel.org/project/linux-pci/list/
15403 B:      https://bugzilla.kernel.org
15404 C:      irc://irc.oftc.net/linux-pci
15405 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lpieralisi/pci.git
15406 F:      drivers/pci/controller/
15407 F:      drivers/pci/pci-bridge-emul.c
15408 F:      drivers/pci/pci-bridge-emul.h
15409
15410 PCI SUBSYSTEM
15411 M:      Bjorn Helgaas <bhelgaas@google.com>
15412 L:      linux-pci@vger.kernel.org
15413 S:      Supported
15414 Q:      https://patchwork.kernel.org/project/linux-pci/list/
15415 B:      https://bugzilla.kernel.org
15416 C:      irc://irc.oftc.net/linux-pci
15417 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
15418 F:      Documentation/PCI/
15419 F:      Documentation/devicetree/bindings/pci/
15420 F:      arch/x86/kernel/early-quirks.c
15421 F:      arch/x86/kernel/quirks.c
15422 F:      arch/x86/pci/
15423 F:      drivers/acpi/pci*
15424 F:      drivers/pci/
15425 F:      include/asm-generic/pci*
15426 F:      include/linux/of_pci.h
15427 F:      include/linux/pci*
15428 F:      include/uapi/linux/pci*
15429 F:      lib/pci*
15430
15431 PCIE DRIVER FOR AMAZON ANNAPURNA LABS
15432 M:      Jonathan Chocron <jonnyc@amazon.com>
15433 L:      linux-pci@vger.kernel.org
15434 S:      Maintained
15435 F:      Documentation/devicetree/bindings/pci/pcie-al.txt
15436 F:      drivers/pci/controller/dwc/pcie-al.c
15437
15438 PCIE DRIVER FOR AMLOGIC MESON
15439 M:      Yue Wang <yue.wang@Amlogic.com>
15440 L:      linux-pci@vger.kernel.org
15441 L:      linux-amlogic@lists.infradead.org
15442 S:      Maintained
15443 F:      drivers/pci/controller/dwc/pci-meson.c
15444
15445 PCIE DRIVER FOR AXIS ARTPEC
15446 M:      Jesper Nilsson <jesper.nilsson@axis.com>
15447 L:      linux-arm-kernel@axis.com
15448 L:      linux-pci@vger.kernel.org
15449 S:      Maintained
15450 F:      Documentation/devicetree/bindings/pci/axis,artpec*
15451 F:      drivers/pci/controller/dwc/*artpec*
15452
15453 PCIE DRIVER FOR CAVIUM THUNDERX
15454 M:      Robert Richter <rric@kernel.org>
15455 L:      linux-pci@vger.kernel.org
15456 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15457 S:      Odd Fixes
15458 F:      drivers/pci/controller/pci-thunder-*
15459
15460 PCIE DRIVER FOR HISILICON
15461 M:      Zhou Wang <wangzhou1@hisilicon.com>
15462 L:      linux-pci@vger.kernel.org
15463 S:      Maintained
15464 F:      drivers/pci/controller/dwc/pcie-hisi.c
15465
15466 PCIE DRIVER FOR HISILICON KIRIN
15467 M:      Xiaowei Song <songxiaowei@hisilicon.com>
15468 M:      Binghui Wang <wangbinghui@hisilicon.com>
15469 L:      linux-pci@vger.kernel.org
15470 S:      Maintained
15471 F:      Documentation/devicetree/bindings/pci/hisilicon,kirin-pcie.yaml
15472 F:      drivers/pci/controller/dwc/pcie-kirin.c
15473
15474 PCIE DRIVER FOR HISILICON STB
15475 M:      Shawn Guo <shawn.guo@linaro.org>
15476 L:      linux-pci@vger.kernel.org
15477 S:      Maintained
15478 F:      Documentation/devicetree/bindings/pci/hisilicon-histb-pcie.txt
15479 F:      drivers/pci/controller/dwc/pcie-histb.c
15480
15481 PCIE DRIVER FOR INTEL KEEM BAY
15482 M:      Srikanth Thokala <srikanth.thokala@intel.com>
15483 L:      linux-pci@vger.kernel.org
15484 S:      Supported
15485 F:      Documentation/devicetree/bindings/pci/intel,keembay-pcie*
15486 F:      drivers/pci/controller/dwc/pcie-keembay.c
15487
15488 PCIE DRIVER FOR INTEL LGM GW SOC
15489 M:      Rahul Tanwar <rtanwar@maxlinear.com>
15490 L:      linux-pci@vger.kernel.org
15491 S:      Maintained
15492 F:      Documentation/devicetree/bindings/pci/intel-gw-pcie.yaml
15493 F:      drivers/pci/controller/dwc/pcie-intel-gw.c
15494
15495 PCIE DRIVER FOR MEDIATEK
15496 M:      Ryder Lee <ryder.lee@mediatek.com>
15497 M:      Jianjun Wang <jianjun.wang@mediatek.com>
15498 L:      linux-pci@vger.kernel.org
15499 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
15500 S:      Supported
15501 F:      Documentation/devicetree/bindings/pci/mediatek*
15502 F:      drivers/pci/controller/*mediatek*
15503
15504 PCIE DRIVER FOR MICROCHIP
15505 M:      Daire McNamara <daire.mcnamara@microchip.com>
15506 L:      linux-pci@vger.kernel.org
15507 S:      Supported
15508 F:      Documentation/devicetree/bindings/pci/microchip*
15509 F:      drivers/pci/controller/*microchip*
15510
15511 PCIE DRIVER FOR QUALCOMM MSM
15512 M:      Stanimir Varbanov <svarbanov@mm-sol.com>
15513 L:      linux-pci@vger.kernel.org
15514 L:      linux-arm-msm@vger.kernel.org
15515 S:      Maintained
15516 F:      drivers/pci/controller/dwc/pcie-qcom.c
15517
15518 PCIE ENDPOINT DRIVER FOR QUALCOMM
15519 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
15520 L:      linux-pci@vger.kernel.org
15521 L:      linux-arm-msm@vger.kernel.org
15522 S:      Maintained
15523 F:      Documentation/devicetree/bindings/pci/qcom,pcie-ep.yaml
15524 F:      drivers/pci/controller/dwc/pcie-qcom-ep.c
15525
15526 PCIE DRIVER FOR ROCKCHIP
15527 M:      Shawn Lin <shawn.lin@rock-chips.com>
15528 L:      linux-pci@vger.kernel.org
15529 L:      linux-rockchip@lists.infradead.org
15530 S:      Maintained
15531 F:      Documentation/devicetree/bindings/pci/rockchip-pcie*
15532 F:      drivers/pci/controller/pcie-rockchip*
15533
15534 PCIE DRIVER FOR SOCIONEXT UNIPHIER
15535 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
15536 L:      linux-pci@vger.kernel.org
15537 S:      Maintained
15538 F:      Documentation/devicetree/bindings/pci/socionext,uniphier-pcie*
15539 F:      drivers/pci/controller/dwc/pcie-uniphier*
15540
15541 PCIE DRIVER FOR ST SPEAR13XX
15542 M:      Pratyush Anand <pratyush.anand@gmail.com>
15543 L:      linux-pci@vger.kernel.org
15544 S:      Maintained
15545 F:      drivers/pci/controller/dwc/*spear*
15546
15547 PCMCIA SUBSYSTEM
15548 M:      Dominik Brodowski <linux@dominikbrodowski.net>
15549 S:      Odd Fixes
15550 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/linux.git
15551 F:      Documentation/pcmcia/
15552 F:      drivers/pcmcia/
15553 F:      include/pcmcia/
15554 F:      tools/pcmcia/
15555
15556 PCNET32 NETWORK DRIVER
15557 M:      Don Fry <pcnet32@frontier.com>
15558 L:      netdev@vger.kernel.org
15559 S:      Maintained
15560 F:      drivers/net/ethernet/amd/pcnet32.c
15561
15562 PCRYPT PARALLEL CRYPTO ENGINE
15563 M:      Steffen Klassert <steffen.klassert@secunet.com>
15564 L:      linux-crypto@vger.kernel.org
15565 S:      Maintained
15566 F:      crypto/pcrypt.c
15567 F:      include/crypto/pcrypt.h
15568
15569 PEAQ WMI HOTKEYS DRIVER
15570 M:      Hans de Goede <hdegoede@redhat.com>
15571 L:      platform-driver-x86@vger.kernel.org
15572 S:      Maintained
15573 F:      drivers/platform/x86/peaq-wmi.c
15574
15575 PECI HARDWARE MONITORING DRIVERS
15576 M:      Iwona Winiarska <iwona.winiarska@intel.com>
15577 L:      linux-hwmon@vger.kernel.org
15578 S:      Supported
15579 F:      Documentation/hwmon/peci-cputemp.rst
15580 F:      Documentation/hwmon/peci-dimmtemp.rst
15581 F:      drivers/hwmon/peci/
15582
15583 PECI SUBSYSTEM
15584 M:      Iwona Winiarska <iwona.winiarska@intel.com>
15585 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
15586 S:      Supported
15587 F:      Documentation/devicetree/bindings/peci/
15588 F:      Documentation/peci/
15589 F:      drivers/peci/
15590 F:      include/linux/peci-cpu.h
15591 F:      include/linux/peci.h
15592
15593 PENSANDO ETHERNET DRIVERS
15594 M:      Shannon Nelson <snelson@pensando.io>
15595 M:      drivers@pensando.io
15596 L:      netdev@vger.kernel.org
15597 S:      Supported
15598 F:      Documentation/networking/device_drivers/ethernet/pensando/ionic.rst
15599 F:      drivers/net/ethernet/pensando/
15600
15601 PER-CPU MEMORY ALLOCATOR
15602 M:      Dennis Zhou <dennis@kernel.org>
15603 M:      Tejun Heo <tj@kernel.org>
15604 M:      Christoph Lameter <cl@linux.com>
15605 L:      linux-mm@kvack.org
15606 S:      Maintained
15607 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dennis/percpu.git
15608 F:      arch/*/include/asm/percpu.h
15609 F:      include/linux/percpu*.h
15610 F:      lib/percpu*.c
15611 F:      mm/percpu*.c
15612
15613 PER-TASK DELAY ACCOUNTING
15614 M:      Balbir Singh <bsingharora@gmail.com>
15615 S:      Maintained
15616 F:      include/linux/delayacct.h
15617 F:      kernel/delayacct.c
15618
15619 PERFORMANCE EVENTS SUBSYSTEM
15620 M:      Peter Zijlstra <peterz@infradead.org>
15621 M:      Ingo Molnar <mingo@redhat.com>
15622 M:      Arnaldo Carvalho de Melo <acme@kernel.org>
15623 R:      Mark Rutland <mark.rutland@arm.com>
15624 R:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
15625 R:      Jiri Olsa <jolsa@kernel.org>
15626 R:      Namhyung Kim <namhyung@kernel.org>
15627 L:      linux-perf-users@vger.kernel.org
15628 L:      linux-kernel@vger.kernel.org
15629 S:      Supported
15630 W:      https://perf.wiki.kernel.org/
15631 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
15632 F:      arch/*/events/*
15633 F:      arch/*/events/*/*
15634 F:      arch/*/include/asm/perf_event.h
15635 F:      arch/*/kernel/*/*/perf_event*.c
15636 F:      arch/*/kernel/*/perf_event*.c
15637 F:      arch/*/kernel/perf_callchain.c
15638 F:      arch/*/kernel/perf_event*.c
15639 F:      include/linux/perf_event.h
15640 F:      include/uapi/linux/perf_event.h
15641 F:      kernel/events/*
15642 F:      tools/lib/perf/
15643 F:      tools/perf/
15644
15645 PERFORMANCE EVENTS TOOLING ARM64
15646 R:      John Garry <john.garry@huawei.com>
15647 R:      Will Deacon <will@kernel.org>
15648 R:      James Clark <james.clark@arm.com>
15649 R:      Mike Leach <mike.leach@linaro.org>
15650 R:      Leo Yan <leo.yan@linaro.org>
15651 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15652 S:      Supported
15653 F:      tools/build/feature/test-libopencsd.c
15654 F:      tools/perf/arch/arm*/
15655 F:      tools/perf/pmu-events/arch/arm64/
15656 F:      tools/perf/util/arm-spe*
15657 F:      tools/perf/util/cs-etm*
15658
15659 PERSONALITY HANDLING
15660 M:      Christoph Hellwig <hch@infradead.org>
15661 L:      linux-abi-devel@lists.sourceforge.net
15662 S:      Maintained
15663 F:      include/linux/personality.h
15664 F:      include/uapi/linux/personality.h
15665
15666 PHOENIX RC FLIGHT CONTROLLER ADAPTER
15667 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
15668 L:      linux-input@vger.kernel.org
15669 S:      Maintained
15670 F:      Documentation/input/devices/pxrc.rst
15671 F:      drivers/input/joystick/pxrc.c
15672
15673 PHONET PROTOCOL
15674 M:      Remi Denis-Courmont <courmisch@gmail.com>
15675 S:      Supported
15676 F:      Documentation/networking/phonet.rst
15677 F:      include/linux/phonet.h
15678 F:      include/net/phonet/
15679 F:      include/uapi/linux/phonet.h
15680 F:      net/phonet/
15681
15682 PHRAM MTD DRIVER
15683 M:      Joern Engel <joern@lazybastard.org>
15684 L:      linux-mtd@lists.infradead.org
15685 S:      Maintained
15686 F:      drivers/mtd/devices/phram.c
15687
15688 PICOLCD HID DRIVER
15689 M:      Bruno Prémont <bonbons@linux-vserver.org>
15690 L:      linux-input@vger.kernel.org
15691 S:      Maintained
15692 F:      drivers/hid/hid-picolcd*
15693
15694 PIDFD API
15695 M:      Christian Brauner <christian@brauner.io>
15696 L:      linux-kernel@vger.kernel.org
15697 S:      Maintained
15698 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brauner/linux.git
15699 F:      samples/pidfd/
15700 F:      tools/testing/selftests/clone3/
15701 F:      tools/testing/selftests/pid_namespace/
15702 F:      tools/testing/selftests/pidfd/
15703 K:      (?i)pidfd
15704 K:      (?i)clone3
15705 K:      \b(clone_args|kernel_clone_args)\b
15706
15707 PIN CONTROL SUBSYSTEM
15708 M:      Linus Walleij <linus.walleij@linaro.org>
15709 L:      linux-gpio@vger.kernel.org
15710 S:      Maintained
15711 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git
15712 F:      Documentation/devicetree/bindings/pinctrl/
15713 F:      Documentation/driver-api/pin-control.rst
15714 F:      drivers/pinctrl/
15715 F:      include/linux/pinctrl/
15716
15717 PIN CONTROLLER - AMD
15718 M:      Basavaraj Natikar <Basavaraj.Natikar@amd.com>
15719 M:      Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
15720 S:      Maintained
15721 F:      drivers/pinctrl/pinctrl-amd.c
15722
15723 PIN CONTROLLER - FREESCALE
15724 M:      Dong Aisheng <aisheng.dong@nxp.com>
15725 M:      Fabio Estevam <festevam@gmail.com>
15726 M:      Shawn Guo <shawnguo@kernel.org>
15727 M:      Stefan Agner <stefan@agner.ch>
15728 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
15729 L:      linux-gpio@vger.kernel.org
15730 S:      Maintained
15731 F:      Documentation/devicetree/bindings/pinctrl/fsl,*
15732 F:      drivers/pinctrl/freescale/
15733
15734 PIN CONTROLLER - INTEL
15735 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
15736 M:      Andy Shevchenko <andy@kernel.org>
15737 S:      Maintained
15738 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/intel.git
15739 F:      drivers/pinctrl/intel/
15740
15741 PIN CONTROLLER - KEEMBAY
15742 M:      Lakshmi Sowjanya D <lakshmi.sowjanya.d@intel.com>
15743 S:      Supported
15744 F:      drivers/pinctrl/pinctrl-keembay*
15745
15746 PIN CONTROLLER - MEDIATEK
15747 M:      Sean Wang <sean.wang@kernel.org>
15748 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
15749 S:      Maintained
15750 F:      Documentation/devicetree/bindings/pinctrl/mediatek,mt65xx-pinctrl.yaml
15751 F:      Documentation/devicetree/bindings/pinctrl/mediatek,mt6797-pinctrl.yaml
15752 F:      Documentation/devicetree/bindings/pinctrl/mediatek,mt7622-pinctrl.yaml
15753 F:      Documentation/devicetree/bindings/pinctrl/mediatek,mt8183-pinctrl.yaml
15754 F:      drivers/pinctrl/mediatek/
15755
15756 PIN CONTROLLER - MICROCHIP AT91
15757 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
15758 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15759 L:      linux-gpio@vger.kernel.org
15760 S:      Supported
15761 F:      drivers/gpio/gpio-sama5d2-piobu.c
15762 F:      drivers/pinctrl/pinctrl-at91*
15763
15764 PIN CONTROLLER - QUALCOMM
15765 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
15766 L:      linux-arm-msm@vger.kernel.org
15767 S:      Maintained
15768 F:      Documentation/devicetree/bindings/pinctrl/qcom,*.txt
15769 F:      drivers/pinctrl/qcom/
15770
15771 PIN CONTROLLER - RENESAS
15772 M:      Geert Uytterhoeven <geert+renesas@glider.be>
15773 L:      linux-renesas-soc@vger.kernel.org
15774 S:      Supported
15775 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git renesas-pinctrl
15776 F:      Documentation/devicetree/bindings/pinctrl/renesas,*
15777 F:      drivers/pinctrl/renesas/
15778
15779 PIN CONTROLLER - SAMSUNG
15780 M:      Tomasz Figa <tomasz.figa@gmail.com>
15781 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
15782 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
15783 R:      Alim Akhtar <alim.akhtar@samsung.com>
15784 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15785 L:      linux-samsung-soc@vger.kernel.org
15786 S:      Maintained
15787 C:      irc://irc.libera.chat/linux-exynos
15788 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
15789 B:      mailto:linux-samsung-soc@vger.kernel.org
15790 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/samsung.git
15791 F:      Documentation/devicetree/bindings/pinctrl/samsung,pinctrl*yaml
15792 F:      drivers/pinctrl/samsung/
15793 F:      include/dt-bindings/pinctrl/samsung.h
15794
15795 PIN CONTROLLER - SINGLE
15796 M:      Tony Lindgren <tony@atomide.com>
15797 M:      Haojian Zhuang <haojian.zhuang@linaro.org>
15798 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15799 L:      linux-omap@vger.kernel.org
15800 S:      Maintained
15801 F:      drivers/pinctrl/pinctrl-single.c
15802
15803 PIN CONTROLLER - THUNDERBAY
15804 M:      Lakshmi Sowjanya D <lakshmi.sowjanya.d@intel.com>
15805 S:      Supported
15806 F:      drivers/pinctrl/pinctrl-thunderbay.c
15807
15808 PIN CONTROLLER - SUNPLUS / TIBBO
15809 M:      Dvorkin Dmitry <dvorkin@tibbo.com>
15810 M:      Wells Lu <wellslutw@gmail.com>
15811 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15812 S:      Maintained
15813 W:      https://sunplus.atlassian.net/wiki/spaces/doc/overview
15814 F:      Documentation/devicetree/bindings/pinctrl/sunplus,*
15815 F:      drivers/pinctrl/sunplus/
15816 F:      include/dt-bindings/pinctrl/sppctl*.h
15817
15818 PKTCDVD DRIVER
15819 M:      linux-block@vger.kernel.org
15820 S:      Orphan
15821 F:      drivers/block/pktcdvd.c
15822 F:      include/linux/pktcdvd.h
15823 F:      include/uapi/linux/pktcdvd.h
15824
15825 PLANTOWER PMS7003 AIR POLLUTION SENSOR DRIVER
15826 M:      Tomasz Duszynski <tduszyns@gmail.com>
15827 S:      Maintained
15828 F:      Documentation/devicetree/bindings/iio/chemical/plantower,pms7003.yaml
15829 F:      drivers/iio/chemical/pms7003.c
15830
15831 PLDMFW LIBRARY
15832 M:      Jacob Keller <jacob.e.keller@intel.com>
15833 S:      Maintained
15834 F:      Documentation/driver-api/pldmfw/
15835 F:      include/linux/pldmfw.h
15836 F:      lib/pldmfw/
15837
15838 PLX DMA DRIVER
15839 M:      Logan Gunthorpe <logang@deltatee.com>
15840 S:      Maintained
15841 F:      drivers/dma/plx_dma.c
15842
15843 PM6764TR DRIVER
15844 M:      Charles Hsu     <hsu.yungteng@gmail.com>
15845 L:      linux-hwmon@vger.kernel.org
15846 S:      Maintained
15847 F:      Documentation/hwmon/pm6764tr.rst
15848 F:      drivers/hwmon/pmbus/pm6764tr.c
15849
15850 PM-GRAPH UTILITY
15851 M:      "Todd E Brandt" <todd.e.brandt@linux.intel.com>
15852 L:      linux-pm@vger.kernel.org
15853 S:      Supported
15854 W:      https://01.org/pm-graph
15855 B:      https://bugzilla.kernel.org/buglist.cgi?component=pm-graph&product=Tools
15856 T:      git git://github.com/intel/pm-graph
15857 F:      tools/power/pm-graph
15858
15859 PMBUS HARDWARE MONITORING DRIVERS
15860 M:      Guenter Roeck <linux@roeck-us.net>
15861 L:      linux-hwmon@vger.kernel.org
15862 S:      Maintained
15863 W:      http://hwmon.wiki.kernel.org/
15864 W:      http://www.roeck-us.net/linux/drivers/
15865 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
15866 F:      Documentation/devicetree/bindings/hwmon/ltc2978.txt
15867 F:      Documentation/devicetree/bindings/hwmon/max31785.txt
15868 F:      Documentation/hwmon/adm1275.rst
15869 F:      Documentation/hwmon/ibm-cffps.rst
15870 F:      Documentation/hwmon/ir35221.rst
15871 F:      Documentation/hwmon/lm25066.rst
15872 F:      Documentation/hwmon/ltc2978.rst
15873 F:      Documentation/hwmon/ltc3815.rst
15874 F:      Documentation/hwmon/max16064.rst
15875 F:      Documentation/hwmon/max20751.rst
15876 F:      Documentation/hwmon/max31785.rst
15877 F:      Documentation/hwmon/max34440.rst
15878 F:      Documentation/hwmon/max8688.rst
15879 F:      Documentation/hwmon/pmbus-core.rst
15880 F:      Documentation/hwmon/pmbus.rst
15881 F:      Documentation/hwmon/tps40422.rst
15882 F:      Documentation/hwmon/ucd9000.rst
15883 F:      Documentation/hwmon/ucd9200.rst
15884 F:      Documentation/hwmon/zl6100.rst
15885 F:      drivers/hwmon/pmbus/
15886 F:      include/linux/pmbus.h
15887
15888 PMC SIERRA MaxRAID DRIVER
15889 L:      linux-scsi@vger.kernel.org
15890 S:      Orphan
15891 W:      http://www.pmc-sierra.com/
15892 F:      drivers/scsi/pmcraid.*
15893
15894 PMC SIERRA PM8001 DRIVER
15895 M:      Jack Wang <jinpu.wang@cloud.ionos.com>
15896 L:      linux-scsi@vger.kernel.org
15897 S:      Supported
15898 F:      drivers/scsi/pm8001/
15899
15900 PNI RM3100 IIO DRIVER
15901 M:      Song Qiang <songqiang1304521@gmail.com>
15902 L:      linux-iio@vger.kernel.org
15903 S:      Maintained
15904 F:      Documentation/devicetree/bindings/iio/magnetometer/pni,rm3100.yaml
15905 F:      drivers/iio/magnetometer/rm3100*
15906
15907 PNP SUPPORT
15908 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
15909 L:      linux-acpi@vger.kernel.org
15910 S:      Maintained
15911 F:      drivers/pnp/
15912 F:      include/linux/pnp.h
15913
15914 POSIX CLOCKS and TIMERS
15915 M:      Thomas Gleixner <tglx@linutronix.de>
15916 L:      linux-kernel@vger.kernel.org
15917 S:      Maintained
15918 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
15919 F:      fs/timerfd.c
15920 F:      include/linux/time_namespace.h
15921 F:      include/linux/timer*
15922 F:      kernel/time/*timer*
15923 F:      kernel/time/namespace.c
15924
15925 POWER MANAGEMENT CORE
15926 M:      "Rafael J. Wysocki" <rafael@kernel.org>
15927 L:      linux-pm@vger.kernel.org
15928 S:      Supported
15929 B:      https://bugzilla.kernel.org
15930 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
15931 F:      drivers/base/power/
15932 F:      drivers/powercap/
15933 F:      include/linux/intel_rapl.h
15934 F:      include/linux/pm.h
15935 F:      include/linux/pm_*
15936 F:      include/linux/powercap.h
15937 F:      kernel/configs/nopm.config
15938
15939 DYNAMIC THERMAL POWER MANAGEMENT (DTPM)
15940 M:      Daniel Lezcano <daniel.lezcano@kernel.org>
15941 L:      linux-pm@vger.kernel.org
15942 S:      Supported
15943 B:      https://bugzilla.kernel.org
15944 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
15945 F:      drivers/powercap/dtpm*
15946 F:      include/linux/dtpm.h
15947
15948 POWER STATE COORDINATION INTERFACE (PSCI)
15949 M:      Mark Rutland <mark.rutland@arm.com>
15950 M:      Lorenzo Pieralisi <lpieralisi@kernel.org>
15951 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15952 S:      Maintained
15953 F:      drivers/firmware/psci/
15954 F:      include/linux/psci.h
15955 F:      include/uapi/linux/psci.h
15956
15957 POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
15958 M:      Sebastian Reichel <sre@kernel.org>
15959 L:      linux-pm@vger.kernel.org
15960 S:      Maintained
15961 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
15962 F:      Documentation/ABI/testing/sysfs-class-power
15963 F:      Documentation/devicetree/bindings/power/supply/
15964 F:      drivers/power/supply/
15965 F:      include/linux/power/
15966 F:      include/linux/power_supply.h
15967
15968 POWERNV OPERATOR PANEL LCD DISPLAY DRIVER
15969 M:      Suraj Jitindar Singh <sjitindarsingh@gmail.com>
15970 L:      linuxppc-dev@lists.ozlabs.org
15971 S:      Maintained
15972 F:      drivers/char/powernv-op-panel.c
15973
15974 PPP OVER ATM (RFC 2364)
15975 M:      Mitchell Blank Jr <mitch@sfgoth.com>
15976 S:      Maintained
15977 F:      include/uapi/linux/atmppp.h
15978 F:      net/atm/pppoatm.c
15979
15980 PPP OVER ETHERNET
15981 M:      Michal Ostrowski <mostrows@earthlink.net>
15982 S:      Maintained
15983 F:      drivers/net/ppp/pppoe.c
15984 F:      drivers/net/ppp/pppox.c
15985
15986 PPP OVER L2TP
15987 M:      James Chapman <jchapman@katalix.com>
15988 S:      Maintained
15989 F:      include/linux/if_pppol2tp.h
15990 F:      include/uapi/linux/if_pppol2tp.h
15991 F:      net/l2tp/l2tp_ppp.c
15992
15993 PPP PROTOCOL DRIVERS AND COMPRESSORS
15994 M:      Paul Mackerras <paulus@samba.org>
15995 L:      linux-ppp@vger.kernel.org
15996 S:      Maintained
15997 F:      drivers/net/ppp/ppp_*
15998
15999 PPS SUPPORT
16000 M:      Rodolfo Giometti <giometti@enneenne.com>
16001 L:      linuxpps@ml.enneenne.com (subscribers-only)
16002 S:      Maintained
16003 W:      http://wiki.enneenne.com/index.php/LinuxPPS_support
16004 F:      Documentation/ABI/testing/sysfs-pps
16005 F:      Documentation/devicetree/bindings/pps/pps-gpio.txt
16006 F:      Documentation/driver-api/pps.rst
16007 F:      drivers/pps/
16008 F:      include/linux/pps*.h
16009 F:      include/uapi/linux/pps.h
16010
16011 PPTP DRIVER
16012 M:      Dmitry Kozlov <xeb@mail.ru>
16013 L:      netdev@vger.kernel.org
16014 S:      Maintained
16015 W:      http://sourceforge.net/projects/accel-pptp
16016 F:      drivers/net/ppp/pptp.c
16017
16018 PRESSURE STALL INFORMATION (PSI)
16019 M:      Johannes Weiner <hannes@cmpxchg.org>
16020 M:      Suren Baghdasaryan <surenb@google.com>
16021 S:      Maintained
16022 F:      include/linux/psi*
16023 F:      kernel/sched/psi.c
16024
16025 PRINTK
16026 M:      Petr Mladek <pmladek@suse.com>
16027 M:      Sergey Senozhatsky <senozhatsky@chromium.org>
16028 R:      Steven Rostedt <rostedt@goodmis.org>
16029 R:      John Ogness <john.ogness@linutronix.de>
16030 S:      Maintained
16031 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/printk/linux.git
16032 F:      include/linux/printk.h
16033 F:      kernel/printk/
16034
16035 PRINTK INDEXING
16036 R:      Chris Down <chris@chrisdown.name>
16037 S:      Maintained
16038 F:      Documentation/core-api/printk-index.rst
16039 F:      kernel/printk/index.c
16040 K:      printk_index
16041
16042 PROC FILESYSTEM
16043 L:      linux-kernel@vger.kernel.org
16044 L:      linux-fsdevel@vger.kernel.org
16045 S:      Maintained
16046 F:      Documentation/filesystems/proc.rst
16047 F:      fs/proc/
16048 F:      include/linux/proc_fs.h
16049 F:      tools/testing/selftests/proc/
16050
16051 PROC SYSCTL
16052 M:      Luis Chamberlain <mcgrof@kernel.org>
16053 M:      Kees Cook <keescook@chromium.org>
16054 M:      Iurii Zaikin <yzaikin@google.com>
16055 L:      linux-kernel@vger.kernel.org
16056 L:      linux-fsdevel@vger.kernel.org
16057 S:      Maintained
16058 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mcgrof/linux.git sysctl-next
16059 F:      fs/proc/proc_sysctl.c
16060 F:      include/linux/sysctl.h
16061 F:      kernel/sysctl-test.c
16062 F:      kernel/sysctl.c
16063 F:      tools/testing/selftests/sysctl/
16064
16065 PS3 NETWORK SUPPORT
16066 M:      Geoff Levand <geoff@infradead.org>
16067 L:      netdev@vger.kernel.org
16068 L:      linuxppc-dev@lists.ozlabs.org
16069 S:      Maintained
16070 F:      drivers/net/ethernet/toshiba/ps3_gelic_net.*
16071
16072 PS3 PLATFORM SUPPORT
16073 M:      Geoff Levand <geoff@infradead.org>
16074 L:      linuxppc-dev@lists.ozlabs.org
16075 S:      Maintained
16076 F:      arch/powerpc/boot/ps3*
16077 F:      arch/powerpc/include/asm/lv1call.h
16078 F:      arch/powerpc/include/asm/ps3*.h
16079 F:      arch/powerpc/platforms/ps3/
16080 F:      drivers/*/ps3*
16081 F:      drivers/ps3/
16082 F:      drivers/rtc/rtc-ps3.c
16083 F:      drivers/usb/host/*ps3.c
16084 F:      sound/ppc/snd_ps3*
16085
16086 PS3VRAM DRIVER
16087 M:      Jim Paris <jim@jtan.com>
16088 M:      Geoff Levand <geoff@infradead.org>
16089 L:      linuxppc-dev@lists.ozlabs.org
16090 S:      Maintained
16091 F:      drivers/block/ps3vram.c
16092
16093 PSAMPLE PACKET SAMPLING SUPPORT
16094 M:      Yotam Gigi <yotam.gi@gmail.com>
16095 S:      Maintained
16096 F:      include/net/psample.h
16097 F:      include/uapi/linux/psample.h
16098 F:      net/psample
16099
16100 PSTORE FILESYSTEM
16101 M:      Kees Cook <keescook@chromium.org>
16102 M:      Anton Vorontsov <anton@enomsg.org>
16103 M:      Colin Cross <ccross@android.com>
16104 M:      Tony Luck <tony.luck@intel.com>
16105 S:      Maintained
16106 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/pstore
16107 F:      Documentation/admin-guide/ramoops.rst
16108 F:      Documentation/admin-guide/pstore-blk.rst
16109 F:      Documentation/devicetree/bindings/reserved-memory/ramoops.yaml
16110 F:      drivers/acpi/apei/erst.c
16111 F:      drivers/firmware/efi/efi-pstore.c
16112 F:      fs/pstore/
16113 F:      include/linux/pstore*
16114 K:      \b(pstore|ramoops)
16115
16116 PTP HARDWARE CLOCK SUPPORT
16117 M:      Richard Cochran <richardcochran@gmail.com>
16118 L:      netdev@vger.kernel.org
16119 S:      Maintained
16120 W:      http://linuxptp.sourceforge.net/
16121 F:      Documentation/ABI/testing/sysfs-ptp
16122 F:      Documentation/driver-api/ptp.rst
16123 F:      drivers/net/phy/dp83640*
16124 F:      drivers/ptp/*
16125 F:      include/linux/ptp_cl*
16126
16127 PTP VIRTUAL CLOCK SUPPORT
16128 M:      Yangbo Lu <yangbo.lu@nxp.com>
16129 L:      netdev@vger.kernel.org
16130 S:      Maintained
16131 F:      drivers/ptp/ptp_vclock.c
16132 F:      net/ethtool/phc_vclocks.c
16133
16134 PTRACE SUPPORT
16135 M:      Oleg Nesterov <oleg@redhat.com>
16136 S:      Maintained
16137 F:      arch/*/*/ptrace*.c
16138 F:      arch/*/include/asm/ptrace*.h
16139 F:      arch/*/ptrace*.c
16140 F:      include/asm-generic/syscall.h
16141 F:      include/linux/ptrace.h
16142 F:      include/linux/regset.h
16143 F:      include/uapi/linux/ptrace.h
16144 F:      kernel/ptrace.c
16145
16146 PULSE8-CEC DRIVER
16147 M:      Hans Verkuil <hverkuil@xs4all.nl>
16148 L:      linux-media@vger.kernel.org
16149 S:      Maintained
16150 T:      git git://linuxtv.org/media_tree.git
16151 F:      Documentation/admin-guide/media/pulse8-cec.rst
16152 F:      drivers/media/cec/usb/pulse8/
16153
16154 PURELIFI PLFXLC DRIVER
16155 M:      Srinivasan Raju <srini.raju@purelifi.com>
16156 L:      linux-wireless@vger.kernel.org
16157 S:      Supported
16158 F:      drivers/net/wireless/purelifi/plfxlc/
16159
16160 PVRUSB2 VIDEO4LINUX DRIVER
16161 M:      Mike Isely <isely@pobox.com>
16162 L:      pvrusb2@isely.net       (subscribers-only)
16163 L:      linux-media@vger.kernel.org
16164 S:      Maintained
16165 W:      http://www.isely.net/pvrusb2/
16166 T:      git git://linuxtv.org/media_tree.git
16167 F:      Documentation/driver-api/media/drivers/pvrusb2*
16168 F:      drivers/media/usb/pvrusb2/
16169
16170 PWC WEBCAM DRIVER
16171 M:      Hans Verkuil <hverkuil@xs4all.nl>
16172 L:      linux-media@vger.kernel.org
16173 S:      Odd Fixes
16174 T:      git git://linuxtv.org/media_tree.git
16175 F:      drivers/media/usb/pwc/*
16176 F:      include/trace/events/pwc.h
16177
16178 PWM FAN DRIVER
16179 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
16180 L:      linux-hwmon@vger.kernel.org
16181 S:      Supported
16182 F:      Documentation/devicetree/bindings/hwmon/pwm-fan.txt
16183 F:      Documentation/hwmon/pwm-fan.rst
16184 F:      drivers/hwmon/pwm-fan.c
16185
16186 PWM IR Transmitter
16187 M:      Sean Young <sean@mess.org>
16188 L:      linux-media@vger.kernel.org
16189 S:      Maintained
16190 F:      drivers/media/rc/pwm-ir-tx.c
16191
16192 PWM SUBSYSTEM
16193 M:      Thierry Reding <thierry.reding@gmail.com>
16194 R:      Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
16195 M:      Lee Jones <lee.jones@linaro.org>
16196 L:      linux-pwm@vger.kernel.org
16197 S:      Maintained
16198 Q:      https://patchwork.ozlabs.org/project/linux-pwm/list/
16199 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git
16200 F:      Documentation/devicetree/bindings/gpio/gpio-mvebu.txt
16201 F:      Documentation/devicetree/bindings/pwm/
16202 F:      Documentation/driver-api/pwm.rst
16203 F:      drivers/gpio/gpio-mvebu.c
16204 F:      drivers/pwm/
16205 F:      drivers/video/backlight/pwm_bl.c
16206 F:      include/linux/pwm.h
16207 F:      include/linux/pwm_backlight.h
16208 K:      pwm_(config|apply_state|ops)
16209
16210 PXA GPIO DRIVER
16211 M:      Robert Jarzmik <robert.jarzmik@free.fr>
16212 L:      linux-gpio@vger.kernel.org
16213 S:      Maintained
16214 F:      drivers/gpio/gpio-pxa.c
16215
16216 PXA MMCI DRIVER
16217 S:      Orphan
16218
16219 PXA RTC DRIVER
16220 M:      Robert Jarzmik <robert.jarzmik@free.fr>
16221 L:      linux-rtc@vger.kernel.org
16222 S:      Maintained
16223
16224 PXA2xx/PXA3xx SUPPORT
16225 M:      Daniel Mack <daniel@zonque.org>
16226 M:      Haojian Zhuang <haojian.zhuang@gmail.com>
16227 M:      Robert Jarzmik <robert.jarzmik@free.fr>
16228 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16229 S:      Maintained
16230 T:      git git://github.com/hzhuang1/linux.git
16231 T:      git git://github.com/rjarzmik/linux.git
16232 F:      arch/arm/boot/dts/pxa*
16233 F:      arch/arm/mach-pxa/
16234 F:      drivers/dma/pxa*
16235 F:      drivers/pcmcia/pxa2xx*
16236 F:      drivers/pinctrl/pxa/
16237 F:      drivers/spi/spi-pxa2xx*
16238 F:      drivers/usb/gadget/udc/pxa2*
16239 F:      include/sound/pxa2xx-lib.h
16240 F:      sound/arm/pxa*
16241 F:      sound/soc/pxa/
16242
16243 QAT DRIVER
16244 M:      Giovanni Cabiddu <giovanni.cabiddu@intel.com>
16245 L:      qat-linux@intel.com
16246 S:      Supported
16247 F:      drivers/crypto/qat/
16248
16249 QCOM AUDIO (ASoC) DRIVERS
16250 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
16251 M:      Banajit Goswami <bgoswami@codeaurora.org>
16252 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16253 S:      Supported
16254 F:      sound/soc/codecs/lpass-va-macro.c
16255 F:      sound/soc/codecs/lpass-wsa-macro.*
16256 F:      sound/soc/codecs/msm8916-wcd-analog.c
16257 F:      sound/soc/codecs/msm8916-wcd-digital.c
16258 F:      sound/soc/codecs/wcd9335.*
16259 F:      sound/soc/codecs/wcd934x.c
16260 F:      sound/soc/codecs/wcd-clsh-v2.*
16261 F:      sound/soc/codecs/wsa881x.c
16262 F:      sound/soc/qcom/
16263
16264 QCOM EMBEDDED USB DEBUGGER (EUD)
16265 M:      Souradeep Chowdhury <quic_schowdhu@quicinc.com>
16266 L:      linux-arm-msm@vger.kernel.org
16267 S:      Maintained
16268 F:      Documentation/ABI/testing/sysfs-driver-eud
16269 F:      Documentation/devicetree/bindings/soc/qcom/qcom,eud.yaml
16270 F:      drivers/usb/misc/qcom_eud.c
16271
16272 QCOM IPA DRIVER
16273 M:      Alex Elder <elder@kernel.org>
16274 L:      netdev@vger.kernel.org
16275 S:      Supported
16276 F:      drivers/net/ipa/
16277
16278 QEMU MACHINE EMULATOR AND VIRTUALIZER SUPPORT
16279 M:      Gabriel Somlo <somlo@cmu.edu>
16280 M:      "Michael S. Tsirkin" <mst@redhat.com>
16281 L:      qemu-devel@nongnu.org
16282 S:      Maintained
16283 F:      drivers/firmware/qemu_fw_cfg.c
16284 F:      include/uapi/linux/qemu_fw_cfg.h
16285
16286 QIB DRIVER
16287 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
16288 L:      linux-rdma@vger.kernel.org
16289 S:      Supported
16290 F:      drivers/infiniband/hw/qib/
16291
16292 QLOGIC QL41xxx FCOE DRIVER
16293 M:      Saurav Kashyap <skashyap@marvell.com>
16294 M:      Javed Hasan <jhasan@marvell.com>
16295 M:      GR-QLogic-Storage-Upstream@marvell.com
16296 L:      linux-scsi@vger.kernel.org
16297 S:      Supported
16298 F:      drivers/scsi/qedf/
16299
16300 QLOGIC QL41xxx ISCSI DRIVER
16301 M:      Nilesh Javali <njavali@marvell.com>
16302 M:      Manish Rangankar <mrangankar@marvell.com>
16303 M:      GR-QLogic-Storage-Upstream@marvell.com
16304 L:      linux-scsi@vger.kernel.org
16305 S:      Supported
16306 F:      drivers/scsi/qedi/
16307
16308 QLOGIC QL4xxx ETHERNET DRIVER
16309 M:      Ariel Elior <aelior@marvell.com>
16310 M:      Manish Chopra <manishc@marvell.com>
16311 L:      netdev@vger.kernel.org
16312 S:      Supported
16313 F:      drivers/net/ethernet/qlogic/qed/
16314 F:      drivers/net/ethernet/qlogic/qede/
16315 F:      include/linux/qed/
16316
16317 QLOGIC QL4xxx RDMA DRIVER
16318 M:      Michal Kalderon <mkalderon@marvell.com>
16319 M:      Ariel Elior <aelior@marvell.com>
16320 L:      linux-rdma@vger.kernel.org
16321 S:      Supported
16322 F:      drivers/infiniband/hw/qedr/
16323 F:      include/uapi/rdma/qedr-abi.h
16324
16325 QLOGIC QLA1280 SCSI DRIVER
16326 M:      Michael Reed <mdr@sgi.com>
16327 L:      linux-scsi@vger.kernel.org
16328 S:      Maintained
16329 F:      drivers/scsi/qla1280.[ch]
16330
16331 QLOGIC QLA2XXX FC-SCSI DRIVER
16332 M:      Nilesh Javali <njavali@marvell.com>
16333 M:      GR-QLogic-Storage-Upstream@marvell.com
16334 L:      linux-scsi@vger.kernel.org
16335 S:      Supported
16336 F:      drivers/scsi/qla2xxx/
16337
16338 QLOGIC QLA3XXX NETWORK DRIVER
16339 M:      GR-Linux-NIC-Dev@marvell.com
16340 L:      netdev@vger.kernel.org
16341 S:      Supported
16342 F:      drivers/net/ethernet/qlogic/qla3xxx.*
16343
16344 QLOGIC QLA4XXX iSCSI DRIVER
16345 M:      Nilesh Javali <njavali@marvell.com>
16346 M:      Manish Rangankar <mrangankar@marvell.com>
16347 M:      GR-QLogic-Storage-Upstream@marvell.com
16348 L:      linux-scsi@vger.kernel.org
16349 S:      Supported
16350 F:      drivers/scsi/qla4xxx/
16351
16352 QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
16353 M:      Shahed Shaikh <shshaikh@marvell.com>
16354 M:      Manish Chopra <manishc@marvell.com>
16355 M:      GR-Linux-NIC-Dev@marvell.com
16356 L:      netdev@vger.kernel.org
16357 S:      Supported
16358 F:      drivers/net/ethernet/qlogic/qlcnic/
16359
16360 QLOGIC QLGE 10Gb ETHERNET DRIVER
16361 M:      Manish Chopra <manishc@marvell.com>
16362 M:      GR-Linux-NIC-Dev@marvell.com
16363 M:      Coiby Xu <coiby.xu@gmail.com>
16364 L:      netdev@vger.kernel.org
16365 S:      Supported
16366 F:      Documentation/networking/device_drivers/qlogic/qlge.rst
16367 F:      drivers/staging/qlge/
16368
16369 QM1D1B0004 MEDIA DRIVER
16370 M:      Akihiro Tsukada <tskd08@gmail.com>
16371 L:      linux-media@vger.kernel.org
16372 S:      Odd Fixes
16373 F:      drivers/media/tuners/qm1d1b0004*
16374
16375 QM1D1C0042 MEDIA DRIVER
16376 M:      Akihiro Tsukada <tskd08@gmail.com>
16377 L:      linux-media@vger.kernel.org
16378 S:      Odd Fixes
16379 F:      drivers/media/tuners/qm1d1c0042*
16380
16381 QNX4 FILESYSTEM
16382 M:      Anders Larsen <al@alarsen.net>
16383 S:      Maintained
16384 W:      http://www.alarsen.net/linux/qnx4fs/
16385 F:      fs/qnx4/
16386 F:      include/uapi/linux/qnx4_fs.h
16387 F:      include/uapi/linux/qnxtypes.h
16388
16389 QORIQ DPAA2 FSL-MC BUS DRIVER
16390 M:      Stuart Yoder <stuyoder@gmail.com>
16391 M:      Laurentiu Tudor <laurentiu.tudor@nxp.com>
16392 L:      linux-kernel@vger.kernel.org
16393 S:      Maintained
16394 F:      Documentation/ABI/stable/sysfs-bus-fsl-mc
16395 F:      Documentation/devicetree/bindings/misc/fsl,qoriq-mc.txt
16396 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/overview.rst
16397 F:      drivers/bus/fsl-mc/
16398 F:      include/uapi/linux/fsl_mc.h
16399
16400 QT1010 MEDIA DRIVER
16401 M:      Antti Palosaari <crope@iki.fi>
16402 L:      linux-media@vger.kernel.org
16403 S:      Maintained
16404 W:      https://linuxtv.org
16405 W:      http://palosaari.fi/linux/
16406 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16407 T:      git git://linuxtv.org/anttip/media_tree.git
16408 F:      drivers/media/tuners/qt1010*
16409
16410 QUALCOMM ATHEROS ATH10K WIRELESS DRIVER
16411 M:      Kalle Valo <kvalo@kernel.org>
16412 L:      ath10k@lists.infradead.org
16413 S:      Supported
16414 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath10k
16415 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
16416 F:      drivers/net/wireless/ath/ath10k/
16417 F:      Documentation/devicetree/bindings/net/wireless/qcom,ath10k.txt
16418
16419 QUALCOMM ATHEROS ATH11K WIRELESS DRIVER
16420 M:      Kalle Valo <kvalo@kernel.org>
16421 L:      ath11k@lists.infradead.org
16422 S:      Supported
16423 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
16424 F:      Documentation/devicetree/bindings/net/wireless/qcom,ath11k.yaml
16425 F:      drivers/net/wireless/ath/ath11k/
16426
16427 QUALCOMM ATHEROS ATH9K WIRELESS DRIVER
16428 M:      Toke Høiland-Jørgensen <toke@toke.dk>
16429 L:      linux-wireless@vger.kernel.org
16430 S:      Maintained
16431 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath9k
16432 F:      Documentation/devicetree/bindings/net/wireless/qca,ath9k.yaml
16433 F:      drivers/net/wireless/ath/ath9k/
16434
16435 QUALCOMM BAM-DMUX WWAN NETWORK DRIVER
16436 M:      Stephan Gerhold <stephan@gerhold.net>
16437 L:      netdev@vger.kernel.org
16438 L:      linux-arm-msm@vger.kernel.org
16439 S:      Maintained
16440 F:      Documentation/devicetree/bindings/net/qcom,bam-dmux.yaml
16441 F:      drivers/net/wwan/qcom_bam_dmux.c
16442
16443 QUALCOMM CAMERA SUBSYSTEM DRIVER
16444 M:      Robert Foss <robert.foss@linaro.org>
16445 M:      Todor Tomov <todor.too@gmail.com>
16446 L:      linux-media@vger.kernel.org
16447 S:      Maintained
16448 F:      Documentation/admin-guide/media/qcom_camss.rst
16449 F:      Documentation/devicetree/bindings/media/*camss*
16450 F:      drivers/media/platform/qcom/camss/
16451
16452 QUALCOMM CLOCK DRIVERS
16453 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
16454 L:      linux-arm-msm@vger.kernel.org
16455 S:      Supported
16456 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/qcom/linux.git
16457 F:      Documentation/devicetree/bindings/clock/qcom,*
16458 F:      drivers/clk/qcom/
16459 F:      include/dt-bindings/clock/qcom,*
16460
16461 QUALCOMM CORE POWER REDUCTION (CPR) AVS DRIVER
16462 M:      Niklas Cassel <nks@flawful.org>
16463 L:      linux-pm@vger.kernel.org
16464 L:      linux-arm-msm@vger.kernel.org
16465 S:      Maintained
16466 F:      Documentation/devicetree/bindings/power/avs/qcom,cpr.yaml
16467 F:      drivers/soc/qcom/cpr.c
16468
16469 QUALCOMM CPUFREQ DRIVER MSM8996/APQ8096
16470 M:      Ilia Lin <ilia.lin@kernel.org>
16471 L:      linux-pm@vger.kernel.org
16472 S:      Maintained
16473 F:      Documentation/devicetree/bindings/cpufreq/qcom-cpufreq-nvmem.yaml
16474 F:      Documentation/devicetree/bindings/opp/opp-v2-kryo-cpu.yaml
16475 F:      drivers/cpufreq/qcom-cpufreq-nvmem.c
16476
16477 QUALCOMM CRYPTO DRIVERS
16478 M:      Thara Gopinath <thara.gopinath@linaro.org>
16479 L:      linux-crypto@vger.kernel.org
16480 L:      linux-arm-msm@vger.kernel.org
16481 S:      Maintained
16482 F:      drivers/crypto/qce/
16483
16484 QUALCOMM EMAC GIGABIT ETHERNET DRIVER
16485 M:      Timur Tabi <timur@kernel.org>
16486 L:      netdev@vger.kernel.org
16487 S:      Maintained
16488 F:      drivers/net/ethernet/qualcomm/emac/
16489
16490 QUALCOMM ETHQOS ETHERNET DRIVER
16491 M:      Vinod Koul <vkoul@kernel.org>
16492 L:      netdev@vger.kernel.org
16493 S:      Maintained
16494 F:      Documentation/devicetree/bindings/net/qcom,ethqos.txt
16495 F:      drivers/net/ethernet/stmicro/stmmac/dwmac-qcom-ethqos.c
16496
16497 QUALCOMM FASTRPC DRIVER
16498 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
16499 M:      Amol Maheshwari <amahesh@qti.qualcomm.com>
16500 L:      linux-arm-msm@vger.kernel.org
16501 S:      Maintained
16502 F:      Documentation/devicetree/bindings/misc/qcom,fastrpc.txt
16503 F:      drivers/misc/fastrpc.c
16504 F:      include/uapi/misc/fastrpc.h
16505
16506 QUALCOMM HEXAGON ARCHITECTURE
16507 M:      Brian Cain <bcain@quicinc.com>
16508 L:      linux-hexagon@vger.kernel.org
16509 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bcain/linux.git
16510 S:      Supported
16511 F:      arch/hexagon/
16512
16513 QUALCOMM HIDMA DRIVER
16514 M:      Sinan Kaya <okaya@kernel.org>
16515 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16516 L:      linux-arm-msm@vger.kernel.org
16517 L:      dmaengine@vger.kernel.org
16518 S:      Supported
16519 F:      drivers/dma/qcom/hidma*
16520
16521 QUALCOMM I2C CCI DRIVER
16522 M:      Loic Poulain <loic.poulain@linaro.org>
16523 M:      Robert Foss <robert.foss@linaro.org>
16524 L:      linux-i2c@vger.kernel.org
16525 L:      linux-arm-msm@vger.kernel.org
16526 S:      Maintained
16527 F:      Documentation/devicetree/bindings/i2c/i2c-qcom-cci.txt
16528 F:      drivers/i2c/busses/i2c-qcom-cci.c
16529
16530 QUALCOMM IOMMU
16531 M:      Rob Clark <robdclark@gmail.com>
16532 L:      iommu@lists.linux-foundation.org
16533 L:      linux-arm-msm@vger.kernel.org
16534 S:      Maintained
16535 F:      drivers/iommu/arm/arm-smmu/qcom_iommu.c
16536
16537 QUALCOMM IPC ROUTER (QRTR) DRIVER
16538 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
16539 L:      linux-arm-msm@vger.kernel.org
16540 S:      Maintained
16541 F:      include/trace/events/qrtr.h
16542 F:      include/uapi/linux/qrtr.h
16543 F:      net/qrtr/
16544
16545 QUALCOMM IPCC MAILBOX DRIVER
16546 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
16547 L:      linux-arm-msm@vger.kernel.org
16548 S:      Supported
16549 F:      Documentation/devicetree/bindings/mailbox/qcom-ipcc.yaml
16550 F:      drivers/mailbox/qcom-ipcc.c
16551 F:      include/dt-bindings/mailbox/qcom-ipcc.h
16552
16553 QUALCOMM IPQ4019 USB PHY DRIVER
16554 M:      Robert Marko <robert.marko@sartura.hr>
16555 M:      Luka Perkov <luka.perkov@sartura.hr>
16556 L:      linux-arm-msm@vger.kernel.org
16557 S:      Maintained
16558 F:      Documentation/devicetree/bindings/phy/qcom-usb-ipq4019-phy.yaml
16559 F:      drivers/phy/qualcomm/phy-qcom-ipq4019-usb.c
16560
16561 QUALCOMM IPQ4019 VQMMC REGULATOR DRIVER
16562 M:      Robert Marko <robert.marko@sartura.hr>
16563 M:      Luka Perkov <luka.perkov@sartura.hr>
16564 L:      linux-arm-msm@vger.kernel.org
16565 S:      Maintained
16566 F:      Documentation/devicetree/bindings/regulator/vqmmc-ipq4019-regulator.yaml
16567 F:      drivers/regulator/vqmmc-ipq4019-regulator.c
16568
16569 QUALCOMM NAND CONTROLLER DRIVER
16570 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
16571 L:      linux-mtd@lists.infradead.org
16572 L:      linux-arm-msm@vger.kernel.org
16573 S:      Maintained
16574 F:      Documentation/devicetree/bindings/mtd/qcom,nandc.yaml
16575 F:      drivers/mtd/nand/raw/qcom_nandc.c
16576
16577 QUALCOMM RMNET DRIVER
16578 M:      Subash Abhinov Kasiviswanathan <quic_subashab@quicinc.com>
16579 M:      Sean Tranchetti <quic_stranche@quicinc.com>
16580 L:      netdev@vger.kernel.org
16581 S:      Maintained
16582 F:      Documentation/networking/device_drivers/cellular/qualcomm/rmnet.rst
16583 F:      drivers/net/ethernet/qualcomm/rmnet/
16584 F:      include/linux/if_rmnet.h
16585
16586 QUALCOMM TSENS THERMAL DRIVER
16587 M:      Amit Kucheria <amitk@kernel.org>
16588 M:      Thara Gopinath <thara.gopinath@linaro.org>
16589 L:      linux-pm@vger.kernel.org
16590 L:      linux-arm-msm@vger.kernel.org
16591 S:      Maintained
16592 F:      Documentation/devicetree/bindings/thermal/qcom-tsens.yaml
16593 F:      drivers/thermal/qcom/
16594
16595 QUALCOMM VENUS VIDEO ACCELERATOR DRIVER
16596 M:      Stanimir Varbanov <stanimir.varbanov@linaro.org>
16597 L:      linux-media@vger.kernel.org
16598 L:      linux-arm-msm@vger.kernel.org
16599 S:      Maintained
16600 T:      git git://linuxtv.org/media_tree.git
16601 F:      Documentation/devicetree/bindings/media/*venus*
16602 F:      drivers/media/platform/qcom/venus/
16603
16604 QUALCOMM WCN36XX WIRELESS DRIVER
16605 M:      Loic Poulain <loic.poulain@linaro.org>
16606 L:      wcn36xx@lists.infradead.org
16607 S:      Supported
16608 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wcn36xx
16609 F:      drivers/net/wireless/ath/wcn36xx/
16610
16611 QUANTENNA QTNFMAC WIRELESS DRIVER
16612 M:      Igor Mitsyanko <imitsyanko@quantenna.com>
16613 R:      Sergey Matyukevich <geomatsi@gmail.com>
16614 L:      linux-wireless@vger.kernel.org
16615 S:      Maintained
16616 F:      drivers/net/wireless/quantenna
16617
16618 RADEON and AMDGPU DRM DRIVERS
16619 M:      Alex Deucher <alexander.deucher@amd.com>
16620 M:      Christian König <christian.koenig@amd.com>
16621 M:      Pan, Xinhui <Xinhui.Pan@amd.com>
16622 L:      amd-gfx@lists.freedesktop.org
16623 S:      Supported
16624 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
16625 B:      https://gitlab.freedesktop.org/drm/amd/-/issues
16626 C:      irc://irc.oftc.net/radeon
16627 F:      Documentation/gpu/amdgpu/
16628 F:      drivers/gpu/drm/amd/
16629 F:      drivers/gpu/drm/radeon/
16630 F:      include/uapi/drm/amdgpu_drm.h
16631 F:      include/uapi/drm/radeon_drm.h
16632
16633 RADEON FRAMEBUFFER DISPLAY DRIVER
16634 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
16635 L:      linux-fbdev@vger.kernel.org
16636 S:      Maintained
16637 F:      drivers/video/fbdev/aty/radeon*
16638 F:      include/uapi/linux/radeonfb.h
16639
16640 RADIOSHARK RADIO DRIVER
16641 M:      Hans Verkuil <hverkuil@xs4all.nl>
16642 L:      linux-media@vger.kernel.org
16643 S:      Maintained
16644 T:      git git://linuxtv.org/media_tree.git
16645 F:      drivers/media/radio/radio-shark.c
16646
16647 RADIOSHARK2 RADIO DRIVER
16648 M:      Hans Verkuil <hverkuil@xs4all.nl>
16649 L:      linux-media@vger.kernel.org
16650 S:      Maintained
16651 T:      git git://linuxtv.org/media_tree.git
16652 F:      drivers/media/radio/radio-shark2.c
16653 F:      drivers/media/radio/radio-tea5777.c
16654
16655 RADOS BLOCK DEVICE (RBD)
16656 M:      Ilya Dryomov <idryomov@gmail.com>
16657 R:      Dongsheng Yang <dongsheng.yang@easystack.cn>
16658 L:      ceph-devel@vger.kernel.org
16659 S:      Supported
16660 W:      http://ceph.com/
16661 T:      git git://github.com/ceph/ceph-client.git
16662 F:      Documentation/ABI/testing/sysfs-bus-rbd
16663 F:      drivers/block/rbd.c
16664 F:      drivers/block/rbd_types.h
16665
16666 RAGE128 FRAMEBUFFER DISPLAY DRIVER
16667 M:      Paul Mackerras <paulus@samba.org>
16668 L:      linux-fbdev@vger.kernel.org
16669 S:      Maintained
16670 F:      drivers/video/fbdev/aty/aty128fb.c
16671
16672 RAINSHADOW-CEC DRIVER
16673 M:      Hans Verkuil <hverkuil@xs4all.nl>
16674 L:      linux-media@vger.kernel.org
16675 S:      Maintained
16676 T:      git git://linuxtv.org/media_tree.git
16677 F:      drivers/media/cec/usb/rainshadow/
16678
16679 RALINK MIPS ARCHITECTURE
16680 M:      John Crispin <john@phrozen.org>
16681 L:      linux-mips@vger.kernel.org
16682 S:      Maintained
16683 F:      arch/mips/ralink
16684
16685 RALINK MT7621 MIPS ARCHITECTURE
16686 M:      Arınç ÜNAL <arinc.unal@arinc9.com>
16687 M:      Sergio Paracuellos <sergio.paracuellos@gmail.com>
16688 L:      linux-mips@vger.kernel.org
16689 S:      Maintained
16690 F:      arch/mips/boot/dts/ralink/mt7621*
16691
16692 RALINK PINCTRL DRIVER
16693 M:      Arınç ÜNAL <arinc.unal@arinc9.com>
16694 M:      Sergio Paracuellos <sergio.paracuellos@gmail.com>
16695 L:      linux-mips@vger.kernel.org
16696 S:      Maintained
16697 F:      drivers/pinctrl/ralink/
16698
16699 RALINK RT2X00 WIRELESS LAN DRIVER
16700 M:      Stanislaw Gruszka <stf_xl@wp.pl>
16701 M:      Helmut Schaa <helmut.schaa@googlemail.com>
16702 L:      linux-wireless@vger.kernel.org
16703 S:      Maintained
16704 F:      drivers/net/wireless/ralink/rt2x00/
16705
16706 RAMDISK RAM BLOCK DEVICE DRIVER
16707 M:      Jens Axboe <axboe@kernel.dk>
16708 S:      Maintained
16709 F:      Documentation/admin-guide/blockdev/ramdisk.rst
16710 F:      drivers/block/brd.c
16711
16712 RANCHU VIRTUAL BOARD FOR MIPS
16713 M:      Miodrag Dinic <miodrag.dinic@mips.com>
16714 L:      linux-mips@vger.kernel.org
16715 S:      Supported
16716 F:      arch/mips/configs/generic/board-ranchu.config
16717 F:      arch/mips/generic/board-ranchu.c
16718
16719 RANDOM NUMBER DRIVER
16720 M:      "Theodore Ts'o" <tytso@mit.edu>
16721 M:      Jason A. Donenfeld <Jason@zx2c4.com>
16722 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/crng/random.git
16723 S:      Maintained
16724 F:      drivers/char/random.c
16725 F:      drivers/virt/vmgenid.c
16726
16727 RAPIDIO SUBSYSTEM
16728 M:      Matt Porter <mporter@kernel.crashing.org>
16729 M:      Alexandre Bounine <alex.bou9@gmail.com>
16730 S:      Maintained
16731 F:      drivers/rapidio/
16732
16733 RAS INFRASTRUCTURE
16734 M:      Tony Luck <tony.luck@intel.com>
16735 M:      Borislav Petkov <bp@alien8.de>
16736 L:      linux-edac@vger.kernel.org
16737 S:      Maintained
16738 F:      Documentation/admin-guide/ras.rst
16739 F:      drivers/ras/
16740 F:      include/linux/ras.h
16741 F:      include/ras/ras_event.h
16742
16743 RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
16744 L:      linux-wireless@vger.kernel.org
16745 S:      Orphan
16746 F:      drivers/net/wireless/ray*
16747
16748 RC-CORE / LIRC FRAMEWORK
16749 M:      Sean Young <sean@mess.org>
16750 L:      linux-media@vger.kernel.org
16751 S:      Maintained
16752 W:      http://linuxtv.org
16753 T:      git git://linuxtv.org/media_tree.git
16754 F:      Documentation/driver-api/media/rc-core.rst
16755 F:      Documentation/userspace-api/media/rc/
16756 F:      drivers/media/rc/
16757 F:      include/media/rc-map.h
16758 F:      include/media/rc-core.h
16759 F:      include/uapi/linux/lirc.h
16760
16761 RCMM REMOTE CONTROLS DECODER
16762 M:      Patrick Lerda <patrick9876@free.fr>
16763 S:      Maintained
16764 F:      drivers/media/rc/ir-rcmm-decoder.c
16765
16766 RCUTORTURE TEST FRAMEWORK
16767 M:      "Paul E. McKenney" <paulmck@kernel.org>
16768 M:      Josh Triplett <josh@joshtriplett.org>
16769 R:      Steven Rostedt <rostedt@goodmis.org>
16770 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
16771 R:      Lai Jiangshan <jiangshanlai@gmail.com>
16772 L:      rcu@vger.kernel.org
16773 S:      Supported
16774 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
16775 F:      tools/testing/selftests/rcutorture
16776
16777 RDACM20 Camera Sensor
16778 M:      Jacopo Mondi <jacopo+renesas@jmondi.org>
16779 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
16780 M:      Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
16781 M:      Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
16782 L:      linux-media@vger.kernel.org
16783 S:      Maintained
16784 F:      Documentation/devicetree/bindings/media/i2c/imi,rdacm2x-gmsl.yaml
16785 F:      drivers/media/i2c/max9271.c
16786 F:      drivers/media/i2c/max9271.h
16787 F:      drivers/media/i2c/rdacm20.c
16788
16789 RDACM21 Camera Sensor
16790 M:      Jacopo Mondi <jacopo+renesas@jmondi.org>
16791 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
16792 M:      Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
16793 M:      Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
16794 L:      linux-media@vger.kernel.org
16795 S:      Maintained
16796 F:      Documentation/devicetree/bindings/media/i2c/imi,rdacm2x-gmsl.yaml
16797 F:      drivers/media/i2c/max9271.c
16798 F:      drivers/media/i2c/max9271.h
16799 F:      drivers/media/i2c/rdacm21.c
16800
16801 RDC R-321X SoC
16802 M:      Florian Fainelli <florian@openwrt.org>
16803 S:      Maintained
16804
16805 RDC R6040 FAST ETHERNET DRIVER
16806 M:      Florian Fainelli <f.fainelli@gmail.com>
16807 L:      netdev@vger.kernel.org
16808 S:      Maintained
16809 F:      drivers/net/ethernet/rdc/r6040.c
16810
16811 RDMAVT - RDMA verbs software
16812 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
16813 L:      linux-rdma@vger.kernel.org
16814 S:      Supported
16815 F:      drivers/infiniband/sw/rdmavt
16816
16817 RDS - RELIABLE DATAGRAM SOCKETS
16818 M:      Santosh Shilimkar <santosh.shilimkar@oracle.com>
16819 L:      netdev@vger.kernel.org
16820 L:      linux-rdma@vger.kernel.org
16821 L:      rds-devel@oss.oracle.com (moderated for non-subscribers)
16822 S:      Supported
16823 W:      https://oss.oracle.com/projects/rds/
16824 F:      Documentation/networking/rds.rst
16825 F:      net/rds/
16826
16827 RDT - RESOURCE ALLOCATION
16828 M:      Fenghua Yu <fenghua.yu@intel.com>
16829 M:      Reinette Chatre <reinette.chatre@intel.com>
16830 L:      linux-kernel@vger.kernel.org
16831 S:      Supported
16832 F:      Documentation/x86/resctrl*
16833 F:      arch/x86/include/asm/resctrl.h
16834 F:      arch/x86/kernel/cpu/resctrl/
16835 F:      tools/testing/selftests/resctrl/
16836
16837 READ-COPY UPDATE (RCU)
16838 M:      "Paul E. McKenney" <paulmck@kernel.org>
16839 M:      Frederic Weisbecker <frederic@kernel.org> (kernel/rcu/tree_nocb.h)
16840 M:      Neeraj Upadhyay <quic_neeraju@quicinc.com> (kernel/rcu/tasks.h)
16841 M:      Josh Triplett <josh@joshtriplett.org>
16842 R:      Steven Rostedt <rostedt@goodmis.org>
16843 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
16844 R:      Lai Jiangshan <jiangshanlai@gmail.com>
16845 R:      Joel Fernandes <joel@joelfernandes.org>
16846 L:      rcu@vger.kernel.org
16847 S:      Supported
16848 W:      http://www.rdrop.com/users/paulmck/RCU/
16849 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
16850 F:      Documentation/RCU/
16851 F:      include/linux/rcu*
16852 F:      kernel/rcu/
16853 X:      Documentation/RCU/torture.rst
16854 X:      include/linux/srcu*.h
16855 X:      kernel/rcu/srcu*.c
16856
16857 REAL TIME CLOCK (RTC) SUBSYSTEM
16858 M:      Alessandro Zummo <a.zummo@towertech.it>
16859 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
16860 L:      linux-rtc@vger.kernel.org
16861 S:      Maintained
16862 Q:      http://patchwork.ozlabs.org/project/rtc-linux/list/
16863 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git
16864 F:      Documentation/admin-guide/rtc.rst
16865 F:      Documentation/devicetree/bindings/rtc/
16866 F:      drivers/rtc/
16867 F:      include/linux/platform_data/rtc-*
16868 F:      include/linux/rtc.h
16869 F:      include/linux/rtc/
16870 F:      include/uapi/linux/rtc.h
16871 F:      tools/testing/selftests/rtc/
16872
16873 REALTEK AUDIO CODECS
16874 M:      Oder Chiou <oder_chiou@realtek.com>
16875 S:      Maintained
16876 F:      include/sound/rt*.h
16877 F:      sound/soc/codecs/rt*
16878
16879 REALTEK OTTO WATCHDOG
16880 M:      Sander Vanheule <sander@svanheule.net>
16881 L:      linux-watchdog@vger.kernel.org
16882 S:      Maintained
16883 F:      Documentation/devicetree/bindings/watchdog/realtek,otto-wdt.yaml
16884 F:      drivers/watchdog/realtek_otto_wdt.c
16885
16886 REALTEK RTL83xx SMI DSA ROUTER CHIPS
16887 M:      Linus Walleij <linus.walleij@linaro.org>
16888 M:      Alvin Šipraga <alsi@bang-olufsen.dk>
16889 S:      Maintained
16890 F:      Documentation/devicetree/bindings/net/dsa/realtek.yaml
16891 F:      drivers/net/dsa/realtek/*
16892
16893 REALTEK WIRELESS DRIVER (rtlwifi family)
16894 M:      Ping-Ke Shih <pkshih@realtek.com>
16895 L:      linux-wireless@vger.kernel.org
16896 S:      Maintained
16897 W:      https://wireless.wiki.kernel.org/
16898 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
16899 F:      drivers/net/wireless/realtek/rtlwifi/
16900
16901 REALTEK WIRELESS DRIVER (rtw88)
16902 M:      Yan-Hsuan Chuang <tony0620emma@gmail.com>
16903 L:      linux-wireless@vger.kernel.org
16904 S:      Maintained
16905 F:      drivers/net/wireless/realtek/rtw88/
16906
16907 REALTEK WIRELESS DRIVER (rtw89)
16908 M:      Ping-Ke Shih <pkshih@realtek.com>
16909 L:      linux-wireless@vger.kernel.org
16910 S:      Maintained
16911 F:      drivers/net/wireless/realtek/rtw89/
16912
16913 REDPINE WIRELESS DRIVER
16914 M:      Amitkumar Karwar <amitkarwar@gmail.com>
16915 M:      Siva Rebbagondla <siva8118@gmail.com>
16916 L:      linux-wireless@vger.kernel.org
16917 S:      Maintained
16918 F:      drivers/net/wireless/rsi/
16919
16920 REGISTER MAP ABSTRACTION
16921 M:      Mark Brown <broonie@kernel.org>
16922 L:      linux-kernel@vger.kernel.org
16923 S:      Supported
16924 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
16925 F:      Documentation/devicetree/bindings/regmap/
16926 F:      drivers/base/regmap/
16927 F:      include/linux/regmap.h
16928
16929 REISERFS FILE SYSTEM
16930 L:      reiserfs-devel@vger.kernel.org
16931 S:      Supported
16932 F:      fs/reiserfs/
16933
16934 REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
16935 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
16936 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
16937 L:      linux-remoteproc@vger.kernel.org
16938 S:      Maintained
16939 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/remoteproc/linux.git rproc-next
16940 F:      Documentation/ABI/testing/sysfs-class-remoteproc
16941 F:      Documentation/devicetree/bindings/remoteproc/
16942 F:      Documentation/staging/remoteproc.rst
16943 F:      drivers/remoteproc/
16944 F:      include/linux/remoteproc.h
16945 F:      include/linux/remoteproc/
16946
16947 REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM
16948 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
16949 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
16950 L:      linux-remoteproc@vger.kernel.org
16951 S:      Maintained
16952 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/remoteproc/linux.git rpmsg-next
16953 F:      Documentation/ABI/testing/sysfs-bus-rpmsg
16954 F:      Documentation/staging/rpmsg.rst
16955 F:      drivers/rpmsg/
16956 F:      include/linux/rpmsg.h
16957 F:      include/linux/rpmsg/
16958 F:      include/uapi/linux/rpmsg.h
16959 F:      samples/rpmsg/
16960
16961 REMOTE PROCESSOR MESSAGING (RPMSG) WWAN CONTROL DRIVER
16962 M:      Stephan Gerhold <stephan@gerhold.net>
16963 L:      netdev@vger.kernel.org
16964 L:      linux-remoteproc@vger.kernel.org
16965 S:      Maintained
16966 F:      drivers/net/wwan/rpmsg_wwan_ctrl.c
16967
16968 RENESAS CLOCK DRIVERS
16969 M:      Geert Uytterhoeven <geert+renesas@glider.be>
16970 L:      linux-renesas-soc@vger.kernel.org
16971 S:      Supported
16972 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git renesas-clk
16973 F:      Documentation/devicetree/bindings/clock/renesas,*
16974 F:      drivers/clk/renesas/
16975
16976 RENESAS EMEV2 I2C DRIVER
16977 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
16978 L:      linux-renesas-soc@vger.kernel.org
16979 S:      Supported
16980 F:      Documentation/devicetree/bindings/i2c/renesas,iic-emev2.yaml
16981 F:      drivers/i2c/busses/i2c-emev2.c
16982
16983 RENESAS ETHERNET DRIVERS
16984 R:      Sergey Shtylyov <s.shtylyov@omp.ru>
16985 L:      netdev@vger.kernel.org
16986 L:      linux-renesas-soc@vger.kernel.org
16987 F:      Documentation/devicetree/bindings/net/renesas,*.yaml
16988 F:      drivers/net/ethernet/renesas/
16989 F:      include/linux/sh_eth.h
16990
16991 RENESAS R-CAR GYROADC DRIVER
16992 M:      Marek Vasut <marek.vasut@gmail.com>
16993 L:      linux-iio@vger.kernel.org
16994 S:      Supported
16995 F:      Documentation/devicetree/bindings/iio/adc/renesas,rcar-gyroadc.yaml
16996 F:      drivers/iio/adc/rcar-gyroadc.c
16997
16998 RENESAS R-CAR I2C DRIVERS
16999 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
17000 L:      linux-renesas-soc@vger.kernel.org
17001 S:      Supported
17002 F:      Documentation/devicetree/bindings/i2c/renesas,rcar-i2c.yaml
17003 F:      Documentation/devicetree/bindings/i2c/renesas,rmobile-iic.yaml
17004 F:      drivers/i2c/busses/i2c-rcar.c
17005 F:      drivers/i2c/busses/i2c-sh_mobile.c
17006
17007 RENESAS R-CAR SATA DRIVER
17008 R:      Sergey Shtylyov <s.shtylyov@omp.ru>
17009 S:      Supported
17010 L:      linux-ide@vger.kernel.org
17011 L:      linux-renesas-soc@vger.kernel.org
17012 F:      Documentation/devicetree/bindings/ata/renesas,rcar-sata.yaml
17013 F:      drivers/ata/sata_rcar.c
17014
17015 RENESAS R-CAR THERMAL DRIVERS
17016 M:      Niklas Söderlund <niklas.soderlund@ragnatech.se>
17017 L:      linux-renesas-soc@vger.kernel.org
17018 S:      Supported
17019 F:      Documentation/devicetree/bindings/thermal/rcar-gen3-thermal.yaml
17020 F:      Documentation/devicetree/bindings/thermal/rcar-thermal.yaml
17021 F:      drivers/thermal/rcar_gen3_thermal.c
17022 F:      drivers/thermal/rcar_thermal.c
17023
17024 RENESAS RIIC DRIVER
17025 M:      Chris Brandt <chris.brandt@renesas.com>
17026 L:      linux-renesas-soc@vger.kernel.org
17027 S:      Supported
17028 F:      Documentation/devicetree/bindings/i2c/renesas,riic.yaml
17029 F:      drivers/i2c/busses/i2c-riic.c
17030
17031 RENESAS USB PHY DRIVER
17032 M:      Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
17033 L:      linux-renesas-soc@vger.kernel.org
17034 S:      Maintained
17035 F:      drivers/phy/renesas/phy-rcar-gen3-usb*.c
17036
17037 RENESAS RZ/G2L A/D DRIVER
17038 M:      Lad Prabhakar <prabhakar.mahadev-lad.rj@bp.renesas.com>
17039 L:      linux-iio@vger.kernel.org
17040 L:      linux-renesas-soc@vger.kernel.org
17041 S:      Supported
17042 F:      Documentation/devicetree/bindings/iio/adc/renesas,rzg2l-adc.yaml
17043 F:      drivers/iio/adc/rzg2l_adc.c
17044
17045 RENESAS RZ/N1 RTC CONTROLLER DRIVER
17046 M:      Miquel Raynal <miquel.raynal@bootlin.com>
17047 L:      linux-rtc@vger.kernel.org
17048 L:      linux-renesas-soc@vger.kernel.org
17049 S:      Maintained
17050 F:      Documentation/devicetree/bindings/rtc/renesas,rzn1-rtc.yaml
17051 F:      drivers/rtc/rtc-rzn1.c
17052
17053 RENESAS R-CAR GEN3 & RZ/N1 NAND CONTROLLER DRIVER
17054 M:      Miquel Raynal <miquel.raynal@bootlin.com>
17055 L:      linux-mtd@lists.infradead.org
17056 L:      linux-renesas-soc@vger.kernel.org
17057 S:      Maintained
17058 F:      Documentation/devicetree/bindings/mtd/renesas-nandc.yaml
17059 F:      drivers/mtd/nand/raw/renesas-nand-controller.c
17060
17061 RESET CONTROLLER FRAMEWORK
17062 M:      Philipp Zabel <p.zabel@pengutronix.de>
17063 S:      Maintained
17064 T:      git git://git.pengutronix.de/git/pza/linux
17065 F:      Documentation/devicetree/bindings/reset/
17066 F:      Documentation/driver-api/reset.rst
17067 F:      drivers/reset/
17068 F:      include/dt-bindings/reset/
17069 F:      include/linux/reset-controller.h
17070 F:      include/linux/reset.h
17071 F:      include/linux/reset/
17072 K:      \b(?:devm_|of_)?reset_control(?:ler_[a-z]+|_[a-z_]+)?\b
17073
17074 RESTARTABLE SEQUENCES SUPPORT
17075 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
17076 M:      Peter Zijlstra <peterz@infradead.org>
17077 M:      "Paul E. McKenney" <paulmck@kernel.org>
17078 M:      Boqun Feng <boqun.feng@gmail.com>
17079 L:      linux-kernel@vger.kernel.org
17080 S:      Supported
17081 F:      include/trace/events/rseq.h
17082 F:      include/uapi/linux/rseq.h
17083 F:      kernel/rseq.c
17084 F:      tools/testing/selftests/rseq/
17085
17086 RFKILL
17087 M:      Johannes Berg <johannes@sipsolutions.net>
17088 L:      linux-wireless@vger.kernel.org
17089 S:      Maintained
17090 W:      https://wireless.wiki.kernel.org/
17091 Q:      https://patchwork.kernel.org/project/linux-wireless/list/
17092 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless.git
17093 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless-next.git
17094 F:      Documentation/ABI/stable/sysfs-class-rfkill
17095 F:      Documentation/driver-api/rfkill.rst
17096 F:      include/linux/rfkill.h
17097 F:      include/uapi/linux/rfkill.h
17098 F:      net/rfkill/
17099
17100 RHASHTABLE
17101 M:      Thomas Graf <tgraf@suug.ch>
17102 M:      Herbert Xu <herbert@gondor.apana.org.au>
17103 L:      netdev@vger.kernel.org
17104 S:      Maintained
17105 F:      include/linux/rhashtable-types.h
17106 F:      include/linux/rhashtable.h
17107 F:      lib/rhashtable.c
17108 F:      lib/test_rhashtable.c
17109
17110 RICOH R5C592 MEMORYSTICK DRIVER
17111 M:      Maxim Levitsky <maximlevitsky@gmail.com>
17112 S:      Maintained
17113 F:      drivers/memstick/host/r592.*
17114
17115 RICOH SMARTMEDIA/XD DRIVER
17116 M:      Maxim Levitsky <maximlevitsky@gmail.com>
17117 S:      Maintained
17118 F:      drivers/mtd/nand/raw/r852.c
17119 F:      drivers/mtd/nand/raw/r852.h
17120
17121 RISC-V PMU DRIVERS
17122 M:      Atish Patra <atishp@atishpatra.org>
17123 R:      Anup Patel <anup@brainfault.org>
17124 L:      linux-riscv@lists.infradead.org
17125 S:      Supported
17126 F:      drivers/perf/riscv_pmu.c
17127 F:      drivers/perf/riscv_pmu_legacy.c
17128 F:      drivers/perf/riscv_pmu_sbi.c
17129
17130 RISC-V ARCHITECTURE
17131 M:      Paul Walmsley <paul.walmsley@sifive.com>
17132 M:      Palmer Dabbelt <palmer@dabbelt.com>
17133 M:      Albert Ou <aou@eecs.berkeley.edu>
17134 L:      linux-riscv@lists.infradead.org
17135 S:      Supported
17136 P:      Documentation/riscv/patch-acceptance.rst
17137 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/riscv/linux.git
17138 F:      arch/riscv/
17139 N:      riscv
17140 K:      riscv
17141
17142 RISC-V/MICROCHIP POLARFIRE SOC SUPPORT
17143 M:      Lewis Hanly <lewis.hanly@microchip.com>
17144 M:      Conor Dooley <conor.dooley@microchip.com>
17145 L:      linux-riscv@lists.infradead.org
17146 S:      Supported
17147 F:      arch/riscv/boot/dts/microchip/
17148 F:      drivers/mailbox/mailbox-mpfs.c
17149 F:      drivers/soc/microchip/
17150 F:      include/soc/microchip/mpfs.h
17151
17152 RNBD BLOCK DRIVERS
17153 M:      Md. Haris Iqbal <haris.iqbal@ionos.com>
17154 M:      Jack Wang <jinpu.wang@ionos.com>
17155 L:      linux-block@vger.kernel.org
17156 S:      Maintained
17157 F:      drivers/block/rnbd/
17158
17159 ROCCAT DRIVERS
17160 M:      Stefan Achatz <erazor_de@users.sourceforge.net>
17161 S:      Maintained
17162 W:      http://sourceforge.net/projects/roccat/
17163 F:      Documentation/ABI/*/sysfs-driver-hid-roccat*
17164 F:      drivers/hid/hid-roccat*
17165 F:      include/linux/hid-roccat*
17166
17167 ROCKCHIP I2S TDM DRIVER
17168 M:      Nicolas Frattaroli <frattaroli.nicolas@gmail.com>
17169 L:      linux-rockchip@lists.infradead.org
17170 S:      Maintained
17171 F:      Documentation/devicetree/bindings/sound/rockchip,i2s-tdm.yaml
17172 F:      sound/soc/rockchip/rockchip_i2s_tdm.*
17173
17174 ROCKCHIP ISP V1 DRIVER
17175 M:      Dafna Hirschfeld <dafna@fastmail.com>
17176 L:      linux-media@vger.kernel.org
17177 L:      linux-rockchip@lists.infradead.org
17178 S:      Maintained
17179 F:      Documentation/admin-guide/media/rkisp1.rst
17180 F:      Documentation/devicetree/bindings/media/rockchip-isp1.yaml
17181 F:      Documentation/userspace-api/media/v4l/pixfmt-meta-rkisp1.rst
17182 F:      drivers/media/platform/rockchip/rkisp1
17183 F:      include/uapi/linux/rkisp1-config.h
17184
17185 ROCKCHIP RASTER 2D GRAPHIC ACCELERATION UNIT DRIVER
17186 M:      Jacob Chen <jacob-chen@iotwrt.com>
17187 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
17188 L:      linux-media@vger.kernel.org
17189 L:      linux-rockchip@lists.infradead.org
17190 S:      Maintained
17191 F:      Documentation/devicetree/bindings/media/rockchip-rga.yaml
17192 F:      drivers/media/platform/rockchip/rga/
17193
17194 ROCKCHIP VIDEO DECODER DRIVER
17195 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
17196 L:      linux-media@vger.kernel.org
17197 L:      linux-rockchip@lists.infradead.org
17198 S:      Maintained
17199 F:      Documentation/devicetree/bindings/media/rockchip,vdec.yaml
17200 F:      drivers/staging/media/rkvdec/
17201
17202 ROCKER DRIVER
17203 M:      Jiri Pirko <jiri@resnulli.us>
17204 L:      netdev@vger.kernel.org
17205 S:      Supported
17206 F:      drivers/net/ethernet/rocker/
17207
17208 ROCKETPORT EXPRESS/INFINITY DRIVER
17209 M:      Kevin Cernekee <cernekee@gmail.com>
17210 L:      linux-serial@vger.kernel.org
17211 S:      Odd Fixes
17212 F:      drivers/tty/serial/rp2.*
17213
17214 ROHM BD99954 CHARGER IC
17215 R:      Matti Vaittinen <mazziesaccount@gmail.com>
17216 S:      Supported
17217 F:      drivers/power/supply/bd99954-charger.c
17218 F:      drivers/power/supply/bd99954-charger.h
17219
17220 ROHM BH1750 AMBIENT LIGHT SENSOR DRIVER
17221 M:      Tomasz Duszynski <tduszyns@gmail.com>
17222 S:      Maintained
17223 F:      Documentation/devicetree/bindings/iio/light/bh1750.yaml
17224 F:      drivers/iio/light/bh1750.c
17225
17226 ROHM MULTIFUNCTION BD9571MWV-M PMIC DEVICE DRIVERS
17227 M:      Marek Vasut <marek.vasut+renesas@gmail.com>
17228 L:      linux-kernel@vger.kernel.org
17229 L:      linux-renesas-soc@vger.kernel.org
17230 S:      Supported
17231 F:      Documentation/devicetree/bindings/mfd/rohm,bd9571mwv.yaml
17232 F:      drivers/gpio/gpio-bd9571mwv.c
17233 F:      drivers/mfd/bd9571mwv.c
17234 F:      drivers/regulator/bd9571mwv-regulator.c
17235 F:      include/linux/mfd/bd9571mwv.h
17236
17237 ROHM POWER MANAGEMENT IC DEVICE DRIVERS
17238 R:      Matti Vaittinen <mazziesaccount@gmail.com>
17239 S:      Supported
17240 F:      drivers/clk/clk-bd718x7.c
17241 F:      drivers/gpio/gpio-bd71815.c
17242 F:      drivers/gpio/gpio-bd71828.c
17243 F:      drivers/mfd/rohm-bd71828.c
17244 F:      drivers/mfd/rohm-bd718x7.c
17245 F:      drivers/mfd/rohm-bd9576.c
17246 F:      drivers/regulator/bd71815-regulator.c
17247 F:      drivers/regulator/bd71828-regulator.c
17248 F:      drivers/regulator/bd718x7-regulator.c
17249 F:      drivers/regulator/bd9576-regulator.c
17250 F:      drivers/regulator/rohm-regulator.c
17251 F:      drivers/rtc/rtc-bd70528.c
17252 F:      drivers/watchdog/bd9576_wdt.c
17253 F:      include/linux/mfd/rohm-bd71815.h
17254 F:      include/linux/mfd/rohm-bd71828.h
17255 F:      include/linux/mfd/rohm-bd718x7.h
17256 F:      include/linux/mfd/rohm-bd957x.h
17257 F:      include/linux/mfd/rohm-generic.h
17258 F:      include/linux/mfd/rohm-shared.h
17259
17260 ROSE NETWORK LAYER
17261 M:      Ralf Baechle <ralf@linux-mips.org>
17262 L:      linux-hams@vger.kernel.org
17263 S:      Maintained
17264 W:      http://www.linux-ax25.org/
17265 F:      include/net/rose.h
17266 F:      include/uapi/linux/rose.h
17267 F:      net/rose/
17268
17269 ROTATION DRIVER FOR ALLWINNER A83T
17270 M:      Jernej Skrabec <jernej.skrabec@gmail.com>
17271 L:      linux-media@vger.kernel.org
17272 S:      Maintained
17273 T:      git git://linuxtv.org/media_tree.git
17274 F:      Documentation/devicetree/bindings/media/allwinner,sun8i-a83t-de2-rotate.yaml
17275 F:      drivers/media/platform/sunxi/sun8i-rotate/
17276
17277 RPMSG TTY DRIVER
17278 M:      Arnaud Pouliquen <arnaud.pouliquen@foss.st.com>
17279 L:      linux-remoteproc@vger.kernel.org
17280 S:      Maintained
17281 F:      drivers/tty/rpmsg_tty.c
17282
17283 RTL2830 MEDIA DRIVER
17284 M:      Antti Palosaari <crope@iki.fi>
17285 L:      linux-media@vger.kernel.org
17286 S:      Maintained
17287 W:      https://linuxtv.org
17288 W:      http://palosaari.fi/linux/
17289 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17290 T:      git git://linuxtv.org/anttip/media_tree.git
17291 F:      drivers/media/dvb-frontends/rtl2830*
17292
17293 RTL2832 MEDIA DRIVER
17294 M:      Antti Palosaari <crope@iki.fi>
17295 L:      linux-media@vger.kernel.org
17296 S:      Maintained
17297 W:      https://linuxtv.org
17298 W:      http://palosaari.fi/linux/
17299 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17300 T:      git git://linuxtv.org/anttip/media_tree.git
17301 F:      drivers/media/dvb-frontends/rtl2832*
17302
17303 RTL2832_SDR MEDIA DRIVER
17304 M:      Antti Palosaari <crope@iki.fi>
17305 L:      linux-media@vger.kernel.org
17306 S:      Maintained
17307 W:      https://linuxtv.org
17308 W:      http://palosaari.fi/linux/
17309 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17310 T:      git git://linuxtv.org/anttip/media_tree.git
17311 F:      drivers/media/dvb-frontends/rtl2832_sdr*
17312
17313 RTL8180 WIRELESS DRIVER
17314 L:      linux-wireless@vger.kernel.org
17315 S:      Orphan
17316 W:      https://wireless.wiki.kernel.org/
17317 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
17318 F:      drivers/net/wireless/realtek/rtl818x/rtl8180/
17319
17320 RTL8187 WIRELESS DRIVER
17321 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
17322 M:      Hin-Tak Leung <htl10@users.sourceforge.net>
17323 M:      Larry Finger <Larry.Finger@lwfinger.net>
17324 L:      linux-wireless@vger.kernel.org
17325 S:      Maintained
17326 W:      https://wireless.wiki.kernel.org/
17327 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
17328 F:      drivers/net/wireless/realtek/rtl818x/rtl8187/
17329
17330 RTL8XXXU WIRELESS DRIVER (rtl8xxxu)
17331 M:      Jes Sorensen <Jes.Sorensen@gmail.com>
17332 L:      linux-wireless@vger.kernel.org
17333 S:      Maintained
17334 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jes/linux.git rtl8xxxu-devel
17335 F:      drivers/net/wireless/realtek/rtl8xxxu/
17336
17337 RTRS TRANSPORT DRIVERS
17338 M:      Md. Haris Iqbal <haris.iqbal@ionos.com>
17339 M:      Jack Wang <jinpu.wang@ionos.com>
17340 L:      linux-rdma@vger.kernel.org
17341 S:      Maintained
17342 F:      drivers/infiniband/ulp/rtrs/
17343
17344 RXRPC SOCKETS (AF_RXRPC)
17345 M:      David Howells <dhowells@redhat.com>
17346 M:      Marc Dionne <marc.dionne@auristor.com>
17347 L:      linux-afs@lists.infradead.org
17348 S:      Supported
17349 W:      https://www.infradead.org/~dhowells/kafs/
17350 F:      Documentation/networking/rxrpc.rst
17351 F:      include/keys/rxrpc-type.h
17352 F:      include/net/af_rxrpc.h
17353 F:      include/trace/events/rxrpc.h
17354 F:      include/uapi/linux/rxrpc.h
17355 F:      net/rxrpc/
17356
17357 S3 SAVAGE FRAMEBUFFER DRIVER
17358 M:      Antonino Daplas <adaplas@gmail.com>
17359 L:      linux-fbdev@vger.kernel.org
17360 S:      Maintained
17361 F:      drivers/video/fbdev/savage/
17362
17363 S390
17364 M:      Heiko Carstens <hca@linux.ibm.com>
17365 M:      Vasily Gorbik <gor@linux.ibm.com>
17366 M:      Alexander Gordeev <agordeev@linux.ibm.com>
17367 R:      Christian Borntraeger <borntraeger@linux.ibm.com>
17368 R:      Sven Schnelle <svens@linux.ibm.com>
17369 L:      linux-s390@vger.kernel.org
17370 S:      Supported
17371 W:      http://www.ibm.com/developerworks/linux/linux390/
17372 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux.git
17373 F:      Documentation/driver-api/s390-drivers.rst
17374 F:      Documentation/s390/
17375 F:      arch/s390/
17376 F:      drivers/s390/
17377
17378 S390 COMMON I/O LAYER
17379 M:      Vineeth Vijayan <vneethv@linux.ibm.com>
17380 M:      Peter Oberparleiter <oberpar@linux.ibm.com>
17381 L:      linux-s390@vger.kernel.org
17382 S:      Supported
17383 W:      http://www.ibm.com/developerworks/linux/linux390/
17384 F:      drivers/s390/cio/
17385
17386 S390 DASD DRIVER
17387 M:      Stefan Haberland <sth@linux.ibm.com>
17388 M:      Jan Hoeppner <hoeppner@linux.ibm.com>
17389 L:      linux-s390@vger.kernel.org
17390 S:      Supported
17391 W:      http://www.ibm.com/developerworks/linux/linux390/
17392 F:      block/partitions/ibm.c
17393 F:      drivers/s390/block/dasd*
17394 F:      include/linux/dasd_mod.h
17395
17396 S390 IOMMU (PCI)
17397 M:      Matthew Rosato <mjrosato@linux.ibm.com>
17398 M:      Gerald Schaefer <gerald.schaefer@linux.ibm.com>
17399 L:      linux-s390@vger.kernel.org
17400 S:      Supported
17401 W:      http://www.ibm.com/developerworks/linux/linux390/
17402 F:      drivers/iommu/s390-iommu.c
17403
17404 S390 IUCV NETWORK LAYER
17405 M:      Alexandra Winter <wintera@linux.ibm.com>
17406 M:      Wenjia Zhang <wenjia@linux.ibm.com>
17407 L:      linux-s390@vger.kernel.org
17408 L:      netdev@vger.kernel.org
17409 S:      Supported
17410 W:      http://www.ibm.com/developerworks/linux/linux390/
17411 F:      drivers/s390/net/*iucv*
17412 F:      include/net/iucv/
17413 F:      net/iucv/
17414
17415 S390 NETWORK DRIVERS
17416 M:      Alexandra Winter <wintera@linux.ibm.com>
17417 M:      Wenjia Zhang <wenjia@linux.ibm.com>
17418 L:      linux-s390@vger.kernel.org
17419 L:      netdev@vger.kernel.org
17420 S:      Supported
17421 W:      http://www.ibm.com/developerworks/linux/linux390/
17422 F:      drivers/s390/net/
17423
17424 S390 PCI SUBSYSTEM
17425 M:      Niklas Schnelle <schnelle@linux.ibm.com>
17426 M:      Gerald Schaefer <gerald.schaefer@linux.ibm.com>
17427 L:      linux-s390@vger.kernel.org
17428 S:      Supported
17429 W:      http://www.ibm.com/developerworks/linux/linux390/
17430 F:      arch/s390/pci/
17431 F:      drivers/pci/hotplug/s390_pci_hpc.c
17432 F:      Documentation/s390/pci.rst
17433
17434 S390 VFIO AP DRIVER
17435 M:      Tony Krowiak <akrowiak@linux.ibm.com>
17436 M:      Halil Pasic <pasic@linux.ibm.com>
17437 M:      Jason Herne <jjherne@linux.ibm.com>
17438 L:      linux-s390@vger.kernel.org
17439 S:      Supported
17440 W:      http://www.ibm.com/developerworks/linux/linux390/
17441 F:      Documentation/s390/vfio-ap.rst
17442 F:      drivers/s390/crypto/vfio_ap*
17443
17444 S390 VFIO-CCW DRIVER
17445 M:      Eric Farman <farman@linux.ibm.com>
17446 M:      Matthew Rosato <mjrosato@linux.ibm.com>
17447 R:      Halil Pasic <pasic@linux.ibm.com>
17448 L:      linux-s390@vger.kernel.org
17449 L:      kvm@vger.kernel.org
17450 S:      Supported
17451 F:      Documentation/s390/vfio-ccw.rst
17452 F:      drivers/s390/cio/vfio_ccw*
17453 F:      include/uapi/linux/vfio_ccw.h
17454
17455 S390 VFIO-PCI DRIVER
17456 M:      Matthew Rosato <mjrosato@linux.ibm.com>
17457 M:      Eric Farman <farman@linux.ibm.com>
17458 L:      linux-s390@vger.kernel.org
17459 L:      kvm@vger.kernel.org
17460 S:      Supported
17461 F:      drivers/vfio/pci/vfio_pci_zdev.c
17462 F:      include/uapi/linux/vfio_zdev.h
17463
17464 S390 ZCRYPT DRIVER
17465 M:      Harald Freudenberger <freude@linux.ibm.com>
17466 L:      linux-s390@vger.kernel.org
17467 S:      Supported
17468 W:      http://www.ibm.com/developerworks/linux/linux390/
17469 F:      drivers/s390/crypto/
17470
17471 S390 ZFCP DRIVER
17472 M:      Steffen Maier <maier@linux.ibm.com>
17473 M:      Benjamin Block <bblock@linux.ibm.com>
17474 L:      linux-s390@vger.kernel.org
17475 S:      Supported
17476 W:      http://www.ibm.com/developerworks/linux/linux390/
17477 F:      drivers/s390/scsi/zfcp_*
17478
17479 S3C ADC BATTERY DRIVER
17480 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
17481 L:      linux-samsung-soc@vger.kernel.org
17482 S:      Odd Fixes
17483 F:      drivers/power/supply/s3c_adc_battery.c
17484 F:      include/linux/s3c_adc_battery.h
17485
17486 S3C24XX SD/MMC Driver
17487 M:      Ben Dooks <ben-linux@fluff.org>
17488 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
17489 S:      Supported
17490 F:      drivers/mmc/host/s3cmci.*
17491
17492 SAA6588 RDS RECEIVER DRIVER
17493 M:      Hans Verkuil <hverkuil@xs4all.nl>
17494 L:      linux-media@vger.kernel.org
17495 S:      Odd Fixes
17496 W:      https://linuxtv.org
17497 T:      git git://linuxtv.org/media_tree.git
17498 F:      drivers/media/i2c/saa6588*
17499
17500 SAA7134 VIDEO4LINUX DRIVER
17501 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
17502 L:      linux-media@vger.kernel.org
17503 S:      Odd fixes
17504 W:      https://linuxtv.org
17505 T:      git git://linuxtv.org/media_tree.git
17506 F:      Documentation/driver-api/media/drivers/saa7134*
17507 F:      drivers/media/pci/saa7134/
17508
17509 SAA7146 VIDEO4LINUX-2 DRIVER
17510 M:      Hans Verkuil <hverkuil@xs4all.nl>
17511 L:      linux-media@vger.kernel.org
17512 S:      Maintained
17513 T:      git git://linuxtv.org/media_tree.git
17514 F:      drivers/media/common/saa7146/
17515 F:      drivers/media/pci/saa7146/
17516 F:      include/media/drv-intf/saa7146*
17517
17518 SAFESETID SECURITY MODULE
17519 M:      Micah Morton <mortonm@chromium.org>
17520 S:      Supported
17521 F:      Documentation/admin-guide/LSM/SafeSetID.rst
17522 F:      security/safesetid/
17523
17524 SAMSUNG AUDIO (ASoC) DRIVERS
17525 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
17526 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
17527 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17528 S:      Supported
17529 B:      mailto:linux-samsung-soc@vger.kernel.org
17530 F:      Documentation/devicetree/bindings/sound/samsung*
17531 F:      sound/soc/samsung/
17532
17533 SAMSUNG EXYNOS PSEUDO RANDOM NUMBER GENERATOR (RNG) DRIVER
17534 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
17535 L:      linux-crypto@vger.kernel.org
17536 L:      linux-samsung-soc@vger.kernel.org
17537 S:      Maintained
17538 F:      Documentation/devicetree/bindings/rng/samsung,exynos4-rng.yaml
17539 F:      drivers/crypto/exynos-rng.c
17540
17541 SAMSUNG EXYNOS TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
17542 M:      Łukasz Stelmach <l.stelmach@samsung.com>
17543 L:      linux-samsung-soc@vger.kernel.org
17544 S:      Maintained
17545 F:      Documentation/devicetree/bindings/rng/samsung,exynos5250-trng.yaml
17546 F:      drivers/char/hw_random/exynos-trng.c
17547
17548 SAMSUNG FRAMEBUFFER DRIVER
17549 M:      Jingoo Han <jingoohan1@gmail.com>
17550 L:      linux-fbdev@vger.kernel.org
17551 S:      Maintained
17552 F:      drivers/video/fbdev/s3c-fb.c
17553
17554 SAMSUNG INTERCONNECT DRIVERS
17555 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
17556 M:      Artur Świgoń <a.swigon@samsung.com>
17557 L:      linux-pm@vger.kernel.org
17558 L:      linux-samsung-soc@vger.kernel.org
17559 S:      Supported
17560 F:      drivers/interconnect/samsung/
17561
17562 SAMSUNG LAPTOP DRIVER
17563 M:      Corentin Chary <corentin.chary@gmail.com>
17564 L:      platform-driver-x86@vger.kernel.org
17565 S:      Maintained
17566 F:      drivers/platform/x86/samsung-laptop.c
17567
17568 SAMSUNG MULTIFUNCTION PMIC DEVICE DRIVERS
17569 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
17570 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
17571 L:      linux-kernel@vger.kernel.org
17572 L:      linux-samsung-soc@vger.kernel.org
17573 S:      Supported
17574 B:      mailto:linux-samsung-soc@vger.kernel.org
17575 F:      Documentation/devicetree/bindings/clock/samsung,s2mps11.yaml
17576 F:      Documentation/devicetree/bindings/mfd/samsung,s2m*.yaml
17577 F:      Documentation/devicetree/bindings/mfd/samsung,s5m*.yaml
17578 F:      Documentation/devicetree/bindings/regulator/samsung,s2m*.yaml
17579 F:      Documentation/devicetree/bindings/regulator/samsung,s5m*.yaml
17580 F:      drivers/clk/clk-s2mps11.c
17581 F:      drivers/mfd/sec*.c
17582 F:      drivers/regulator/s2m*.c
17583 F:      drivers/regulator/s5m*.c
17584 F:      drivers/rtc/rtc-s5m.c
17585 F:      include/linux/mfd/samsung/
17586
17587 SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
17588 M:      Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
17589 L:      linux-media@vger.kernel.org
17590 L:      linux-samsung-soc@vger.kernel.org
17591 S:      Maintained
17592 F:      drivers/media/platform/samsung/s3c-camif/
17593 F:      include/media/drv-intf/s3c_camif.h
17594
17595 SAMSUNG S3FWRN5 NFC DRIVER
17596 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
17597 M:      Krzysztof Opasiak <k.opasiak@samsung.com>
17598 L:      linux-nfc@lists.01.org (subscribers-only)
17599 S:      Maintained
17600 F:      Documentation/devicetree/bindings/net/nfc/samsung,s3fwrn5.yaml
17601 F:      drivers/nfc/s3fwrn5
17602
17603 SAMSUNG S5C73M3 CAMERA DRIVER
17604 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
17605 M:      Andrzej Hajda <andrzej.hajda@intel.com>
17606 L:      linux-media@vger.kernel.org
17607 S:      Supported
17608 F:      drivers/media/i2c/s5c73m3/*
17609
17610 SAMSUNG S5K5BAF CAMERA DRIVER
17611 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
17612 M:      Andrzej Hajda <andrzej.hajda@intel.com>
17613 L:      linux-media@vger.kernel.org
17614 S:      Supported
17615 F:      drivers/media/i2c/s5k5baf.c
17616
17617 SAMSUNG S5P Security SubSystem (SSS) DRIVER
17618 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
17619 M:      Vladimir Zapolskiy <vz@mleia.com>
17620 L:      linux-crypto@vger.kernel.org
17621 L:      linux-samsung-soc@vger.kernel.org
17622 S:      Maintained
17623 F:      Documentation/devicetree/bindings/crypto/samsung-slimsss.yaml
17624 F:      Documentation/devicetree/bindings/crypto/samsung-sss.yaml
17625 F:      drivers/crypto/s5p-sss.c
17626
17627 SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS
17628 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
17629 L:      linux-media@vger.kernel.org
17630 S:      Supported
17631 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
17632 F:      drivers/media/platform/samsung/exynos4-is/
17633
17634 SAMSUNG SOC CLOCK DRIVERS
17635 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
17636 M:      Tomasz Figa <tomasz.figa@gmail.com>
17637 M:      Chanwoo Choi <cw00.choi@samsung.com>
17638 R:      Alim Akhtar <alim.akhtar@samsung.com>
17639 L:      linux-samsung-soc@vger.kernel.org
17640 S:      Supported
17641 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/snawrocki/clk.git
17642 F:      Documentation/devicetree/bindings/clock/samsung,*.yaml
17643 F:      Documentation/devicetree/bindings/clock/samsung,s3c*
17644 F:      drivers/clk/samsung/
17645 F:      include/dt-bindings/clock/exynos*.h
17646 F:      include/dt-bindings/clock/s3c*.h
17647 F:      include/dt-bindings/clock/s5p*.h
17648 F:      include/dt-bindings/clock/samsung,*.h
17649 F:      include/linux/clk/samsung.h
17650 F:      include/linux/platform_data/clk-s3c2410.h
17651
17652 SAMSUNG SPI DRIVERS
17653 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
17654 M:      Andi Shyti <andi@etezian.org>
17655 L:      linux-spi@vger.kernel.org
17656 L:      linux-samsung-soc@vger.kernel.org
17657 S:      Maintained
17658 F:      Documentation/devicetree/bindings/spi/samsung,spi*.yaml
17659 F:      drivers/spi/spi-s3c*
17660 F:      include/linux/platform_data/spi-s3c64xx.h
17661 F:      include/linux/spi/s3c24xx-fiq.h
17662
17663 SAMSUNG SXGBE DRIVERS
17664 M:      Byungho An <bh74.an@samsung.com>
17665 L:      netdev@vger.kernel.org
17666 S:      Supported
17667 F:      drivers/net/ethernet/samsung/sxgbe/
17668
17669 SAMSUNG THERMAL DRIVER
17670 M:      Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
17671 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
17672 L:      linux-pm@vger.kernel.org
17673 L:      linux-samsung-soc@vger.kernel.org
17674 S:      Maintained
17675 F:      Documentation/devicetree/bindings/thermal/samsung,exynos-thermal.yaml
17676 F:      drivers/thermal/samsung/
17677
17678 SAMSUNG USB2 PHY DRIVER
17679 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
17680 L:      linux-kernel@vger.kernel.org
17681 S:      Supported
17682 F:      Documentation/devicetree/bindings/phy/samsung,usb2-phy.yaml
17683 F:      Documentation/driver-api/phy/samsung-usb2.rst
17684 F:      drivers/phy/samsung/phy-exynos4210-usb2.c
17685 F:      drivers/phy/samsung/phy-exynos4x12-usb2.c
17686 F:      drivers/phy/samsung/phy-exynos5250-usb2.c
17687 F:      drivers/phy/samsung/phy-s5pv210-usb2.c
17688 F:      drivers/phy/samsung/phy-samsung-usb2.c
17689 F:      drivers/phy/samsung/phy-samsung-usb2.h
17690
17691 SANCLOUD BEAGLEBONE ENHANCED DEVICE TREE
17692 M:      Paul Barker <paul.barker@sancloud.com>
17693 R:      Marc Murphy <marc.murphy@sancloud.com>
17694 S:      Supported
17695 F:      arch/arm/boot/dts/am335x-sancloud*
17696
17697 SC1200 WDT DRIVER
17698 M:      Zwane Mwaikambo <zwanem@gmail.com>
17699 S:      Maintained
17700 F:      drivers/watchdog/sc1200wdt.c
17701
17702 SCHEDULER
17703 M:      Ingo Molnar <mingo@redhat.com>
17704 M:      Peter Zijlstra <peterz@infradead.org>
17705 M:      Juri Lelli <juri.lelli@redhat.com> (SCHED_DEADLINE)
17706 M:      Vincent Guittot <vincent.guittot@linaro.org> (SCHED_NORMAL)
17707 R:      Dietmar Eggemann <dietmar.eggemann@arm.com> (SCHED_NORMAL)
17708 R:      Steven Rostedt <rostedt@goodmis.org> (SCHED_FIFO/SCHED_RR)
17709 R:      Ben Segall <bsegall@google.com> (CONFIG_CFS_BANDWIDTH)
17710 R:      Mel Gorman <mgorman@suse.de> (CONFIG_NUMA_BALANCING)
17711 R:      Daniel Bristot de Oliveira <bristot@redhat.com> (SCHED_DEADLINE)
17712 R:      Valentin Schneider <vschneid@redhat.com> (TOPOLOGY)
17713 L:      linux-kernel@vger.kernel.org
17714 S:      Maintained
17715 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
17716 F:      include/linux/preempt.h
17717 F:      include/linux/sched.h
17718 F:      include/linux/wait.h
17719 F:      include/uapi/linux/sched.h
17720 F:      kernel/sched/
17721
17722 SCR24X CHIP CARD INTERFACE DRIVER
17723 M:      Lubomir Rintel <lkundrak@v3.sk>
17724 S:      Supported
17725 F:      drivers/char/pcmcia/scr24x_cs.c
17726
17727 SCSI RDMA PROTOCOL (SRP) INITIATOR
17728 M:      Bart Van Assche <bvanassche@acm.org>
17729 L:      linux-rdma@vger.kernel.org
17730 S:      Supported
17731 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
17732 F:      drivers/infiniband/ulp/srp/
17733 F:      include/scsi/srp.h
17734
17735 SCSI RDMA PROTOCOL (SRP) TARGET
17736 M:      Bart Van Assche <bvanassche@acm.org>
17737 L:      linux-rdma@vger.kernel.org
17738 L:      target-devel@vger.kernel.org
17739 S:      Supported
17740 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
17741 F:      drivers/infiniband/ulp/srpt/
17742
17743 SCSI SG DRIVER
17744 M:      Doug Gilbert <dgilbert@interlog.com>
17745 L:      linux-scsi@vger.kernel.org
17746 S:      Maintained
17747 W:      http://sg.danny.cz/sg
17748 F:      Documentation/scsi/scsi-generic.rst
17749 F:      drivers/scsi/sg.c
17750 F:      include/scsi/sg.h
17751
17752 SCSI SUBSYSTEM
17753 M:      "James E.J. Bottomley" <jejb@linux.ibm.com>
17754 M:      "Martin K. Petersen" <martin.petersen@oracle.com>
17755 L:      linux-scsi@vger.kernel.org
17756 S:      Maintained
17757 Q:      https://patchwork.kernel.org/project/linux-scsi/list/
17758 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git
17759 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
17760 F:      Documentation/devicetree/bindings/scsi/
17761 F:      drivers/scsi/
17762 F:      drivers/ufs/
17763 F:      include/scsi/
17764
17765 SCSI TAPE DRIVER
17766 M:      Kai Mäkisara <Kai.Makisara@kolumbus.fi>
17767 L:      linux-scsi@vger.kernel.org
17768 S:      Maintained
17769 F:      Documentation/scsi/st.rst
17770 F:      drivers/scsi/st.*
17771 F:      drivers/scsi/st_*.h
17772
17773 SCSI TARGET CORE USER DRIVER
17774 M:      Bodo Stroesser <bostroesser@gmail.com>
17775 L:      linux-scsi@vger.kernel.org
17776 L:      target-devel@vger.kernel.org
17777 S:      Supported
17778 F:      Documentation/target/tcmu-design.rst
17779 F:      drivers/target/target_core_user.c
17780 F:      include/uapi/linux/target_core_user.h
17781
17782 SCSI TARGET SUBSYSTEM
17783 M:      "Martin K. Petersen" <martin.petersen@oracle.com>
17784 L:      linux-scsi@vger.kernel.org
17785 L:      target-devel@vger.kernel.org
17786 S:      Supported
17787 W:      http://www.linux-iscsi.org
17788 Q:      https://patchwork.kernel.org/project/target-devel/list/
17789 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
17790 F:      Documentation/target/
17791 F:      drivers/target/
17792 F:      include/target/
17793
17794 SCTP PROTOCOL
17795 M:      Vlad Yasevich <vyasevich@gmail.com>
17796 M:      Neil Horman <nhorman@tuxdriver.com>
17797 M:      Marcelo Ricardo Leitner <marcelo.leitner@gmail.com>
17798 L:      linux-sctp@vger.kernel.org
17799 S:      Maintained
17800 W:      http://lksctp.sourceforge.net
17801 F:      Documentation/networking/sctp.rst
17802 F:      include/linux/sctp.h
17803 F:      include/net/sctp/
17804 F:      include/uapi/linux/sctp.h
17805 F:      net/sctp/
17806
17807 SCx200 CPU SUPPORT
17808 M:      Jim Cromie <jim.cromie@gmail.com>
17809 S:      Odd Fixes
17810 F:      Documentation/i2c/busses/scx200_acb.rst
17811 F:      arch/x86/platform/scx200/
17812 F:      drivers/i2c/busses/scx200*
17813 F:      drivers/mtd/maps/scx200_docflash.c
17814 F:      drivers/watchdog/scx200_wdt.c
17815 F:      include/linux/scx200.h
17816
17817 SCx200 GPIO DRIVER
17818 M:      Jim Cromie <jim.cromie@gmail.com>
17819 S:      Maintained
17820 F:      drivers/char/scx200_gpio.c
17821 F:      include/linux/scx200_gpio.h
17822
17823 SCx200 HRT CLOCKSOURCE DRIVER
17824 M:      Jim Cromie <jim.cromie@gmail.com>
17825 S:      Maintained
17826 F:      drivers/clocksource/scx200_hrt.c
17827
17828 SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
17829 M:      Sascha Sommer <saschasommer@freenet.de>
17830 L:      sdricohcs-devel@lists.sourceforge.net (subscribers-only)
17831 S:      Maintained
17832 F:      drivers/mmc/host/sdricoh_cs.c
17833
17834 SECO BOARDS CEC DRIVER
17835 M:      Ettore Chimenti <ek5.chimenti@gmail.com>
17836 S:      Maintained
17837 F:      drivers/media/cec/platform/seco/seco-cec.c
17838 F:      drivers/media/cec/platform/seco/seco-cec.h
17839
17840 SECURE COMPUTING
17841 M:      Kees Cook <keescook@chromium.org>
17842 R:      Andy Lutomirski <luto@amacapital.net>
17843 R:      Will Drewry <wad@chromium.org>
17844 S:      Supported
17845 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git seccomp
17846 F:      Documentation/userspace-api/seccomp_filter.rst
17847 F:      include/linux/seccomp.h
17848 F:      include/uapi/linux/seccomp.h
17849 F:      kernel/seccomp.c
17850 F:      tools/testing/selftests/kselftest_harness.h
17851 F:      tools/testing/selftests/seccomp/*
17852 K:      \bsecure_computing
17853 K:      \bTIF_SECCOMP\b
17854
17855 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) Broadcom BRCMSTB DRIVER
17856 M:      Al Cooper <alcooperx@gmail.com>
17857 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
17858 L:      linux-mmc@vger.kernel.org
17859 S:      Maintained
17860 F:      drivers/mmc/host/sdhci-brcmstb*
17861
17862 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
17863 M:      Adrian Hunter <adrian.hunter@intel.com>
17864 L:      linux-mmc@vger.kernel.org
17865 S:      Maintained
17866 F:      drivers/mmc/host/sdhci*
17867
17868 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) MICROCHIP DRIVER
17869 M:      Eugen Hristev <eugen.hristev@microchip.com>
17870 L:      linux-mmc@vger.kernel.org
17871 S:      Supported
17872 F:      drivers/mmc/host/sdhci-of-at91.c
17873
17874 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
17875 M:      Ben Dooks <ben-linux@fluff.org>
17876 M:      Jaehoon Chung <jh80.chung@samsung.com>
17877 L:      linux-mmc@vger.kernel.org
17878 S:      Maintained
17879 F:      drivers/mmc/host/sdhci-s3c*
17880
17881 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
17882 M:      Viresh Kumar <vireshk@kernel.org>
17883 L:      linux-mmc@vger.kernel.org
17884 S:      Maintained
17885 F:      drivers/mmc/host/sdhci-spear.c
17886
17887 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) TI OMAP DRIVER
17888 M:      Kishon Vijay Abraham I <kishon@ti.com>
17889 L:      linux-mmc@vger.kernel.org
17890 S:      Maintained
17891 F:      drivers/mmc/host/sdhci-omap.c
17892
17893 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) NXP i.MX DRIVER
17894 M:      Haibo Chen <haibo.chen@nxp.com>
17895 L:      linux-imx@nxp.com
17896 L:      linux-mmc@vger.kernel.org
17897 S:      Maintained
17898 F:      drivers/mmc/host/sdhci-esdhc-imx.c
17899
17900 SECURE ENCRYPTING DEVICE (SED) OPAL DRIVER
17901 M:      Jonathan Derrick <jonathan.derrick@intel.com>
17902 M:      Revanth Rajashekar <revanth.rajashekar@intel.com>
17903 L:      linux-block@vger.kernel.org
17904 S:      Supported
17905 F:      block/opal_proto.h
17906 F:      block/sed*
17907 F:      include/linux/sed*
17908 F:      include/uapi/linux/sed*
17909
17910 SECURITY CONTACT
17911 M:      Security Officers <security@kernel.org>
17912 S:      Supported
17913 F:      Documentation/admin-guide/security-bugs.rst
17914
17915 SECURITY SUBSYSTEM
17916 M:      James Morris <jmorris@namei.org>
17917 M:      "Serge E. Hallyn" <serge@hallyn.com>
17918 L:      linux-security-module@vger.kernel.org (suggested Cc:)
17919 S:      Supported
17920 W:      http://kernsec.org/
17921 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
17922 F:      security/
17923 X:      security/selinux/
17924
17925 SELINUX SECURITY MODULE
17926 M:      Paul Moore <paul@paul-moore.com>
17927 M:      Stephen Smalley <stephen.smalley.work@gmail.com>
17928 M:      Eric Paris <eparis@parisplace.org>
17929 L:      selinux@vger.kernel.org
17930 S:      Supported
17931 W:      https://selinuxproject.org
17932 W:      https://github.com/SELinuxProject
17933 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/selinux.git
17934 F:      Documentation/ABI/obsolete/sysfs-selinux-checkreqprot
17935 F:      Documentation/ABI/obsolete/sysfs-selinux-disable
17936 F:      Documentation/admin-guide/LSM/SELinux.rst
17937 F:      include/trace/events/avc.h
17938 F:      include/uapi/linux/selinux_netlink.h
17939 F:      scripts/selinux/
17940 F:      security/selinux/
17941
17942 SENSABLE PHANTOM
17943 M:      Jiri Slaby <jirislaby@kernel.org>
17944 S:      Maintained
17945 F:      drivers/misc/phantom.c
17946 F:      include/uapi/linux/phantom.h
17947
17948 SENSEAIR SUNRISE 006-0-0007
17949 M:      Jacopo Mondi <jacopo@jmondi.org>
17950 S:      Maintained
17951 F:      Documentation/ABI/testing/sysfs-bus-iio-chemical-sunrise-co2
17952 F:      Documentation/devicetree/bindings/iio/chemical/senseair,sunrise.yaml
17953 F:      drivers/iio/chemical/sunrise_co2.c
17954
17955 SENSIRION SCD30 CARBON DIOXIDE SENSOR DRIVER
17956 M:      Tomasz Duszynski <tomasz.duszynski@octakon.com>
17957 S:      Maintained
17958 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,scd30.yaml
17959 F:      drivers/iio/chemical/scd30.h
17960 F:      drivers/iio/chemical/scd30_core.c
17961 F:      drivers/iio/chemical/scd30_i2c.c
17962 F:      drivers/iio/chemical/scd30_serial.c
17963
17964 SENSIRION SCD4X CARBON DIOXIDE SENSOR DRIVER
17965 M:      Roan van Dijk <roan@protonic.nl>
17966 S:      Maintained
17967 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,scd4x.yaml
17968 F:      drivers/iio/chemical/scd4x.c
17969
17970 SENSIRION SGP40 GAS SENSOR DRIVER
17971 M:      Andreas Klinger <ak@it-klinger.de>
17972 S:      Maintained
17973 F:      Documentation/ABI/testing/sysfs-bus-iio-chemical-sgp40
17974 F:      drivers/iio/chemical/sgp40.c
17975
17976 SENSIRION SPS30 AIR POLLUTION SENSOR DRIVER
17977 M:      Tomasz Duszynski <tduszyns@gmail.com>
17978 S:      Maintained
17979 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,sps30.yaml
17980 F:      drivers/iio/chemical/sps30.c
17981 F:      drivers/iio/chemical/sps30_i2c.c
17982 F:      drivers/iio/chemical/sps30_serial.c
17983
17984 SERIAL DEVICE BUS
17985 M:      Rob Herring <robh@kernel.org>
17986 L:      linux-serial@vger.kernel.org
17987 S:      Maintained
17988 F:      Documentation/devicetree/bindings/serial/serial.yaml
17989 F:      drivers/tty/serdev/
17990 F:      include/linux/serdev.h
17991
17992 SERIAL DRIVERS
17993 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
17994 L:      linux-serial@vger.kernel.org
17995 S:      Maintained
17996 F:      Documentation/devicetree/bindings/serial/
17997 F:      drivers/tty/serial/
17998
17999 SERIAL IR RECEIVER
18000 M:      Sean Young <sean@mess.org>
18001 L:      linux-media@vger.kernel.org
18002 S:      Maintained
18003 F:      drivers/media/rc/serial_ir.c
18004
18005 SERIAL LOW-POWER INTER-CHIP MEDIA BUS (SLIMbus)
18006 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
18007 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18008 S:      Maintained
18009 F:      Documentation/devicetree/bindings/slimbus/
18010 F:      drivers/slimbus/
18011 F:      include/linux/slimbus.h
18012
18013 SFC NETWORK DRIVER
18014 M:      Edward Cree <ecree.xilinx@gmail.com>
18015 M:      Martin Habets <habetsm.xilinx@gmail.com>
18016 L:      netdev@vger.kernel.org
18017 S:      Supported
18018 F:      drivers/net/ethernet/sfc/
18019
18020 SFF/SFP/SFP+ MODULE SUPPORT
18021 M:      Russell King <linux@armlinux.org.uk>
18022 L:      netdev@vger.kernel.org
18023 S:      Maintained
18024 F:      drivers/net/phy/phylink.c
18025 F:      drivers/net/phy/sfp*
18026 F:      include/linux/mdio/mdio-i2c.h
18027 F:      include/linux/phylink.h
18028 F:      include/linux/sfp.h
18029 K:      phylink\.h|struct\s+phylink|\.phylink|>phylink_|phylink_(autoneg|clear|connect|create|destroy|disconnect|ethtool|helper|mac|mii|of|set|start|stop|test|validate)
18030
18031 SGI GRU DRIVER
18032 M:      Dimitri Sivanich <dimitri.sivanich@hpe.com>
18033 S:      Maintained
18034 F:      drivers/misc/sgi-gru/
18035
18036 SGI XP/XPC/XPNET DRIVER
18037 M:      Robin Holt <robinmholt@gmail.com>
18038 M:      Steve Wahl <steve.wahl@hpe.com>
18039 R:      Mike Travis <mike.travis@hpe.com>
18040 S:      Maintained
18041 F:      drivers/misc/sgi-xp/
18042
18043 SHARED MEMORY COMMUNICATIONS (SMC) SOCKETS
18044 M:      Karsten Graul <kgraul@linux.ibm.com>
18045 L:      linux-s390@vger.kernel.org
18046 S:      Supported
18047 W:      http://www.ibm.com/developerworks/linux/linux390/
18048 F:      net/smc/
18049
18050 SHARP GP2AP002A00F/GP2AP002S00F SENSOR DRIVER
18051 M:      Linus Walleij <linus.walleij@linaro.org>
18052 L:      linux-iio@vger.kernel.org
18053 S:      Maintained
18054 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
18055 F:      Documentation/devicetree/bindings/iio/light/sharp,gp2ap002.yaml
18056 F:      drivers/iio/light/gp2ap002.c
18057
18058 SHARP RJ54N1CB0C SENSOR DRIVER
18059 M:      Jacopo Mondi <jacopo@jmondi.org>
18060 L:      linux-media@vger.kernel.org
18061 S:      Odd fixes
18062 T:      git git://linuxtv.org/media_tree.git
18063 F:      drivers/media/i2c/rj54n1cb0c.c
18064 F:      include/media/i2c/rj54n1cb0c.h
18065
18066 SH_VOU V4L2 OUTPUT DRIVER
18067 L:      linux-media@vger.kernel.org
18068 S:      Orphan
18069 F:      drivers/media/platform/renesas/sh_vou.c
18070 F:      include/media/drv-intf/sh_vou.h
18071
18072 SI2157 MEDIA DRIVER
18073 M:      Antti Palosaari <crope@iki.fi>
18074 L:      linux-media@vger.kernel.org
18075 S:      Maintained
18076 W:      https://linuxtv.org
18077 W:      http://palosaari.fi/linux/
18078 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18079 T:      git git://linuxtv.org/anttip/media_tree.git
18080 F:      drivers/media/tuners/si2157*
18081
18082 SI2165 MEDIA DRIVER
18083 M:      Matthias Schwarzott <zzam@gentoo.org>
18084 L:      linux-media@vger.kernel.org
18085 S:      Maintained
18086 W:      https://linuxtv.org
18087 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18088 F:      drivers/media/dvb-frontends/si2165*
18089
18090 SI2168 MEDIA DRIVER
18091 M:      Antti Palosaari <crope@iki.fi>
18092 L:      linux-media@vger.kernel.org
18093 S:      Maintained
18094 W:      https://linuxtv.org
18095 W:      http://palosaari.fi/linux/
18096 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18097 T:      git git://linuxtv.org/anttip/media_tree.git
18098 F:      drivers/media/dvb-frontends/si2168*
18099
18100 SI470X FM RADIO RECEIVER I2C DRIVER
18101 M:      Hans Verkuil <hverkuil@xs4all.nl>
18102 L:      linux-media@vger.kernel.org
18103 S:      Odd Fixes
18104 W:      https://linuxtv.org
18105 T:      git git://linuxtv.org/media_tree.git
18106 F:      drivers/media/radio/si470x/radio-si470x-i2c.c
18107
18108 SI470X FM RADIO RECEIVER USB DRIVER
18109 M:      Hans Verkuil <hverkuil@xs4all.nl>
18110 L:      linux-media@vger.kernel.org
18111 S:      Maintained
18112 W:      https://linuxtv.org
18113 T:      git git://linuxtv.org/media_tree.git
18114 F:      drivers/media/radio/si470x/radio-si470x-common.c
18115 F:      drivers/media/radio/si470x/radio-si470x-usb.c
18116 F:      drivers/media/radio/si470x/radio-si470x.h
18117
18118 SI4713 FM RADIO TRANSMITTER I2C DRIVER
18119 M:      Eduardo Valentin <edubezval@gmail.com>
18120 L:      linux-media@vger.kernel.org
18121 S:      Odd Fixes
18122 W:      https://linuxtv.org
18123 T:      git git://linuxtv.org/media_tree.git
18124 F:      drivers/media/radio/si4713/si4713.?
18125
18126 SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
18127 M:      Eduardo Valentin <edubezval@gmail.com>
18128 L:      linux-media@vger.kernel.org
18129 S:      Odd Fixes
18130 W:      https://linuxtv.org
18131 T:      git git://linuxtv.org/media_tree.git
18132 F:      drivers/media/radio/si4713/radio-platform-si4713.c
18133
18134 SI4713 FM RADIO TRANSMITTER USB DRIVER
18135 M:      Hans Verkuil <hverkuil@xs4all.nl>
18136 L:      linux-media@vger.kernel.org
18137 S:      Maintained
18138 W:      https://linuxtv.org
18139 T:      git git://linuxtv.org/media_tree.git
18140 F:      drivers/media/radio/si4713/radio-usb-si4713.c
18141
18142 SIANO DVB DRIVER
18143 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
18144 L:      linux-media@vger.kernel.org
18145 S:      Odd fixes
18146 W:      https://linuxtv.org
18147 T:      git git://linuxtv.org/media_tree.git
18148 F:      drivers/media/common/siano/
18149 F:      drivers/media/mmc/siano/
18150 F:      drivers/media/usb/siano/
18151 F:      drivers/media/usb/siano/
18152
18153 SIFIVE DRIVERS
18154 M:      Palmer Dabbelt <palmer@dabbelt.com>
18155 M:      Paul Walmsley <paul.walmsley@sifive.com>
18156 L:      linux-riscv@lists.infradead.org
18157 S:      Supported
18158 T:      git git://github.com/sifive/riscv-linux.git
18159 N:      sifive
18160 K:      [^@]sifive
18161
18162 SIFIVE FU540 SYSTEM-ON-CHIP
18163 M:      Paul Walmsley <paul.walmsley@sifive.com>
18164 M:      Palmer Dabbelt <palmer@dabbelt.com>
18165 L:      linux-riscv@lists.infradead.org
18166 S:      Supported
18167 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pjw/sifive.git
18168 N:      fu540
18169 K:      fu540
18170
18171 SIFIVE PDMA DRIVER
18172 M:      Green Wan <green.wan@sifive.com>
18173 S:      Maintained
18174 F:      Documentation/devicetree/bindings/dma/sifive,fu540-c000-pdma.yaml
18175 F:      drivers/dma/sf-pdma/
18176
18177 SILEAD TOUCHSCREEN DRIVER
18178 M:      Hans de Goede <hdegoede@redhat.com>
18179 L:      linux-input@vger.kernel.org
18180 L:      platform-driver-x86@vger.kernel.org
18181 S:      Maintained
18182 F:      drivers/input/touchscreen/silead.c
18183 F:      drivers/platform/x86/touchscreen_dmi.c
18184
18185 SILICON LABS WIRELESS DRIVERS (for WFxxx series)
18186 M:      Jérôme Pouiller <jerome.pouiller@silabs.com>
18187 S:      Supported
18188 F:      Documentation/devicetree/bindings/net/wireless/silabs,wfx.yaml
18189 F:      drivers/net/wireless/silabs/wfx/
18190
18191 SILICON MOTION SM712 FRAME BUFFER DRIVER
18192 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
18193 M:      Teddy Wang <teddy.wang@siliconmotion.com>
18194 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
18195 L:      linux-fbdev@vger.kernel.org
18196 S:      Maintained
18197 F:      Documentation/fb/sm712fb.rst
18198 F:      drivers/video/fbdev/sm712*
18199
18200 SILVACO I3C DUAL-ROLE MASTER
18201 M:      Miquel Raynal <miquel.raynal@bootlin.com>
18202 M:      Conor Culhane <conor.culhane@silvaco.com>
18203 L:      linux-i3c@lists.infradead.org (moderated for non-subscribers)
18204 S:      Maintained
18205 F:      Documentation/devicetree/bindings/i3c/silvaco,i3c-master.yaml
18206 F:      drivers/i3c/master/svc-i3c-master.c
18207
18208 SIMPLEFB FB DRIVER
18209 M:      Hans de Goede <hdegoede@redhat.com>
18210 L:      linux-fbdev@vger.kernel.org
18211 S:      Maintained
18212 F:      Documentation/devicetree/bindings/display/simple-framebuffer.yaml
18213 F:      drivers/video/fbdev/simplefb.c
18214 F:      include/linux/platform_data/simplefb.h
18215
18216 SIMTEC EB110ATX (Chalice CATS)
18217 M:      Simtec Linux Team <linux@simtec.co.uk>
18218 S:      Supported
18219 W:      http://www.simtec.co.uk/products/EB110ATX/
18220
18221 SIMTEC EB2410ITX (BAST)
18222 M:      Simtec Linux Team <linux@simtec.co.uk>
18223 S:      Supported
18224 W:      http://www.simtec.co.uk/products/EB2410ITX/
18225 F:      arch/arm/mach-s3c/bast-ide.c
18226 F:      arch/arm/mach-s3c/bast-irq.c
18227 F:      arch/arm/mach-s3c/mach-bast.c
18228
18229 SIOX
18230 M:      Thorsten Scherer <t.scherer@eckelmann.de>
18231 M:      Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
18232 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
18233 S:      Supported
18234 F:      drivers/gpio/gpio-siox.c
18235 F:      drivers/siox/*
18236 F:      include/trace/events/siox.h
18237
18238 SIPHASH PRF ROUTINES
18239 M:      Jason A. Donenfeld <Jason@zx2c4.com>
18240 S:      Maintained
18241 F:      include/linux/siphash.h
18242 F:      lib/siphash.c
18243 F:      lib/test_siphash.c
18244
18245 SIS 190 ETHERNET DRIVER
18246 M:      Francois Romieu <romieu@fr.zoreil.com>
18247 L:      netdev@vger.kernel.org
18248 S:      Maintained
18249 F:      drivers/net/ethernet/sis/sis190.c
18250
18251 SIS 900/7016 FAST ETHERNET DRIVER
18252 M:      Daniele Venzano <venza@brownhat.org>
18253 L:      netdev@vger.kernel.org
18254 S:      Maintained
18255 W:      http://www.brownhat.org/sis900.html
18256 F:      drivers/net/ethernet/sis/sis900.*
18257
18258 SIS FRAMEBUFFER DRIVER
18259 M:      Thomas Winischhofer <thomas@winischhofer.net>
18260 S:      Maintained
18261 W:      http://www.winischhofer.net/linuxsisvga.shtml
18262 F:      Documentation/fb/sisfb.rst
18263 F:      drivers/video/fbdev/sis/
18264 F:      include/video/sisfb.h
18265
18266 SIS I2C TOUCHSCREEN DRIVER
18267 M:      Mika Penttilä <mika.penttila@nextfour.com>
18268 L:      linux-input@vger.kernel.org
18269 S:      Maintained
18270 F:      Documentation/devicetree/bindings/input/touchscreen/sis_i2c.txt
18271 F:      drivers/input/touchscreen/sis_i2c.c
18272
18273 SIS USB2VGA DRIVER
18274 M:      Thomas Winischhofer <thomas@winischhofer.net>
18275 S:      Maintained
18276 W:      http://www.winischhofer.at/linuxsisusbvga.shtml
18277 F:      drivers/usb/misc/sisusbvga/
18278
18279 SL28 CPLD MFD DRIVER
18280 M:      Michael Walle <michael@walle.cc>
18281 S:      Maintained
18282 F:      Documentation/devicetree/bindings/gpio/kontron,sl28cpld-gpio.yaml
18283 F:      Documentation/devicetree/bindings/hwmon/kontron,sl28cpld-hwmon.yaml
18284 F:      Documentation/devicetree/bindings/interrupt-controller/kontron,sl28cpld-intc.yaml
18285 F:      Documentation/devicetree/bindings/mfd/kontron,sl28cpld.yaml
18286 F:      Documentation/devicetree/bindings/pwm/kontron,sl28cpld-pwm.yaml
18287 F:      Documentation/devicetree/bindings/watchdog/kontron,sl28cpld-wdt.yaml
18288 F:      drivers/gpio/gpio-sl28cpld.c
18289 F:      drivers/hwmon/sl28cpld-hwmon.c
18290 F:      drivers/irqchip/irq-sl28cpld.c
18291 F:      drivers/pwm/pwm-sl28cpld.c
18292 F:      drivers/watchdog/sl28cpld_wdt.c
18293
18294 SLAB ALLOCATOR
18295 M:      Christoph Lameter <cl@linux.com>
18296 M:      Pekka Enberg <penberg@kernel.org>
18297 M:      David Rientjes <rientjes@google.com>
18298 M:      Joonsoo Kim <iamjoonsoo.kim@lge.com>
18299 M:      Andrew Morton <akpm@linux-foundation.org>
18300 M:      Vlastimil Babka <vbabka@suse.cz>
18301 R:      Roman Gushchin <roman.gushchin@linux.dev>
18302 R:      Hyeonggon Yoo <42.hyeyoo@gmail.com>
18303 L:      linux-mm@kvack.org
18304 S:      Maintained
18305 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vbabka/slab.git
18306 F:      include/linux/sl?b*.h
18307 F:      mm/sl?b*
18308
18309 SLEEPABLE READ-COPY UPDATE (SRCU)
18310 M:      Lai Jiangshan <jiangshanlai@gmail.com>
18311 M:      "Paul E. McKenney" <paulmck@kernel.org>
18312 M:      Josh Triplett <josh@joshtriplett.org>
18313 R:      Steven Rostedt <rostedt@goodmis.org>
18314 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
18315 L:      rcu@vger.kernel.org
18316 S:      Supported
18317 W:      http://www.rdrop.com/users/paulmck/RCU/
18318 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
18319 F:      include/linux/srcu*.h
18320 F:      kernel/rcu/srcu*.c
18321
18322 SMACK SECURITY MODULE
18323 M:      Casey Schaufler <casey@schaufler-ca.com>
18324 L:      linux-security-module@vger.kernel.org
18325 S:      Maintained
18326 W:      http://schaufler-ca.com
18327 T:      git git://github.com/cschaufler/smack-next
18328 F:      Documentation/admin-guide/LSM/Smack.rst
18329 F:      security/smack/
18330
18331 SMC91x ETHERNET DRIVER
18332 M:      Nicolas Pitre <nico@fluxnic.net>
18333 S:      Odd Fixes
18334 F:      drivers/net/ethernet/smsc/smc91x.*
18335
18336 SECURE MONITOR CALL(SMC) CALLING CONVENTION (SMCCC)
18337 M:      Mark Rutland <mark.rutland@arm.com>
18338 M:      Lorenzo Pieralisi <lpieralisi@kernel.org>
18339 M:      Sudeep Holla <sudeep.holla@arm.com>
18340 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
18341 S:      Maintained
18342 F:      drivers/firmware/smccc/
18343 F:      include/linux/arm-smccc.h
18344
18345 SMM665 HARDWARE MONITOR DRIVER
18346 M:      Guenter Roeck <linux@roeck-us.net>
18347 L:      linux-hwmon@vger.kernel.org
18348 S:      Maintained
18349 F:      Documentation/hwmon/smm665.rst
18350 F:      drivers/hwmon/smm665.c
18351
18352 SMSC EMC2103 HARDWARE MONITOR DRIVER
18353 M:      Steve Glendinning <steve.glendinning@shawell.net>
18354 L:      linux-hwmon@vger.kernel.org
18355 S:      Maintained
18356 F:      Documentation/hwmon/emc2103.rst
18357 F:      drivers/hwmon/emc2103.c
18358
18359 SMSC SCH5627 HARDWARE MONITOR DRIVER
18360 M:      Hans de Goede <hdegoede@redhat.com>
18361 L:      linux-hwmon@vger.kernel.org
18362 S:      Supported
18363 F:      Documentation/hwmon/sch5627.rst
18364 F:      drivers/hwmon/sch5627.c
18365
18366 SMSC UFX6000 and UFX7000 USB to VGA DRIVER
18367 M:      Steve Glendinning <steve.glendinning@shawell.net>
18368 L:      linux-fbdev@vger.kernel.org
18369 S:      Maintained
18370 F:      drivers/video/fbdev/smscufx.c
18371
18372 SMSC47B397 HARDWARE MONITOR DRIVER
18373 M:      Jean Delvare <jdelvare@suse.com>
18374 L:      linux-hwmon@vger.kernel.org
18375 S:      Maintained
18376 F:      Documentation/hwmon/smsc47b397.rst
18377 F:      drivers/hwmon/smsc47b397.c
18378
18379 SMSC911x ETHERNET DRIVER
18380 M:      Steve Glendinning <steve.glendinning@shawell.net>
18381 L:      netdev@vger.kernel.org
18382 S:      Maintained
18383 F:      drivers/net/ethernet/smsc/smsc911x.*
18384 F:      include/linux/smsc911x.h
18385
18386 SMSC9420 PCI ETHERNET DRIVER
18387 M:      Steve Glendinning <steve.glendinning@shawell.net>
18388 L:      netdev@vger.kernel.org
18389 S:      Maintained
18390 F:      drivers/net/ethernet/smsc/smsc9420.*
18391
18392 SOCIONEXT (SNI) AVE NETWORK DRIVER
18393 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
18394 L:      netdev@vger.kernel.org
18395 S:      Maintained
18396 F:      Documentation/devicetree/bindings/net/socionext,uniphier-ave4.yaml
18397 F:      drivers/net/ethernet/socionext/sni_ave.c
18398
18399 SOCIONEXT (SNI) NETSEC NETWORK DRIVER
18400 M:      Jassi Brar <jaswinder.singh@linaro.org>
18401 M:      Ilias Apalodimas <ilias.apalodimas@linaro.org>
18402 L:      netdev@vger.kernel.org
18403 S:      Maintained
18404 F:      Documentation/devicetree/bindings/net/socionext-netsec.txt
18405 F:      drivers/net/ethernet/socionext/netsec.c
18406
18407 SOCIONEXT (SNI) Synquacer SPI DRIVER
18408 M:      Masahisa Kojima <masahisa.kojima@linaro.org>
18409 M:      Jassi Brar <jaswinder.singh@linaro.org>
18410 L:      linux-spi@vger.kernel.org
18411 S:      Maintained
18412 F:      Documentation/devicetree/bindings/spi/spi-synquacer.txt
18413 F:      drivers/spi/spi-synquacer.c
18414
18415 SOCIONEXT SYNQUACER I2C DRIVER
18416 M:      Ard Biesheuvel <ardb@kernel.org>
18417 L:      linux-i2c@vger.kernel.org
18418 S:      Maintained
18419 F:      Documentation/devicetree/bindings/i2c/i2c-synquacer.txt
18420 F:      drivers/i2c/busses/i2c-synquacer.c
18421
18422 SOCIONEXT UNIPHIER SOUND DRIVER
18423 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18424 S:      Orphan
18425 F:      sound/soc/uniphier/
18426
18427 SOEKRIS NET48XX LED SUPPORT
18428 M:      Chris Boot <bootc@bootc.net>
18429 S:      Maintained
18430 F:      drivers/leds/leds-net48xx.c
18431
18432 SOFT-IWARP DRIVER (siw)
18433 M:      Bernard Metzler <bmt@zurich.ibm.com>
18434 L:      linux-rdma@vger.kernel.org
18435 S:      Supported
18436 F:      drivers/infiniband/sw/siw/
18437 F:      include/uapi/rdma/siw-abi.h
18438
18439 SOFT-ROCE DRIVER (rxe)
18440 M:      Zhu Yanjun <zyjzyj2000@gmail.com>
18441 L:      linux-rdma@vger.kernel.org
18442 S:      Supported
18443 F:      drivers/infiniband/sw/rxe/
18444 F:      include/uapi/rdma/rdma_user_rxe.h
18445
18446 SOFTLOGIC 6x10 MPEG CODEC
18447 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
18448 M:      Anton Sviridenko <anton@corp.bluecherry.net>
18449 M:      Andrey Utkin <andrey_utkin@fastmail.com>
18450 M:      Ismael Luceno <ismael@iodev.co.uk>
18451 L:      linux-media@vger.kernel.org
18452 S:      Supported
18453 F:      drivers/media/pci/solo6x10/
18454
18455 SOFTWARE DELEGATED EXCEPTION INTERFACE (SDEI)
18456 M:      James Morse <james.morse@arm.com>
18457 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
18458 S:      Maintained
18459 F:      Documentation/devicetree/bindings/arm/firmware/sdei.txt
18460 F:      drivers/firmware/arm_sdei.c
18461 F:      include/linux/arm_sdei.h
18462 F:      include/uapi/linux/arm_sdei.h
18463
18464 SOFTWARE NODES AND DEVICE PROPERTIES
18465 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
18466 R:      Daniel Scally <djrscally@gmail.com>
18467 R:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
18468 R:      Sakari Ailus <sakari.ailus@linux.intel.com>
18469 L:      linux-acpi@vger.kernel.org
18470 S:      Maintained
18471 F:      drivers/base/property.c
18472 F:      drivers/base/swnode.c
18473 F:      include/linux/fwnode.h
18474 F:      include/linux/property.h
18475
18476 SOFTWARE RAID (Multiple Disks) SUPPORT
18477 M:      Song Liu <song@kernel.org>
18478 L:      linux-raid@vger.kernel.org
18479 S:      Supported
18480 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/song/md.git
18481 F:      drivers/md/Kconfig
18482 F:      drivers/md/Makefile
18483 F:      drivers/md/md*
18484 F:      drivers/md/raid*
18485 F:      include/linux/raid/
18486 F:      include/uapi/linux/raid/
18487
18488 SOLIDRUN CLEARFOG SUPPORT
18489 M:      Russell King <linux@armlinux.org.uk>
18490 S:      Maintained
18491 F:      arch/arm/boot/dts/armada-388-clearfog*
18492 F:      arch/arm/boot/dts/armada-38x-solidrun-*
18493
18494 SOLIDRUN CUBOX-I/HUMMINGBOARD SUPPORT
18495 M:      Russell King <linux@armlinux.org.uk>
18496 S:      Maintained
18497 F:      arch/arm/boot/dts/imx6*-cubox-i*
18498 F:      arch/arm/boot/dts/imx6*-hummingboard*
18499 F:      arch/arm/boot/dts/imx6*-sr-*
18500
18501 SONIC NETWORK DRIVER
18502 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
18503 L:      netdev@vger.kernel.org
18504 S:      Maintained
18505 F:      drivers/net/ethernet/natsemi/sonic.*
18506
18507 SONICS SILICON BACKPLANE DRIVER (SSB)
18508 M:      Michael Buesch <m@bues.ch>
18509 L:      linux-wireless@vger.kernel.org
18510 S:      Maintained
18511 F:      drivers/ssb/
18512 F:      include/linux/ssb/
18513
18514 SONY IMX208 SENSOR DRIVER
18515 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
18516 L:      linux-media@vger.kernel.org
18517 S:      Maintained
18518 T:      git git://linuxtv.org/media_tree.git
18519 F:      drivers/media/i2c/imx208.c
18520
18521 SONY IMX214 SENSOR DRIVER
18522 M:      Ricardo Ribalda <ribalda@kernel.org>
18523 L:      linux-media@vger.kernel.org
18524 S:      Maintained
18525 T:      git git://linuxtv.org/media_tree.git
18526 F:      Documentation/devicetree/bindings/media/i2c/sony,imx214.yaml
18527 F:      drivers/media/i2c/imx214.c
18528
18529 SONY IMX219 SENSOR DRIVER
18530 M:      Dave Stevenson <dave.stevenson@raspberrypi.com>
18531 L:      linux-media@vger.kernel.org
18532 S:      Maintained
18533 T:      git git://linuxtv.org/media_tree.git
18534 F:      Documentation/devicetree/bindings/media/i2c/imx219.yaml
18535 F:      drivers/media/i2c/imx219.c
18536
18537 SONY IMX258 SENSOR DRIVER
18538 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
18539 L:      linux-media@vger.kernel.org
18540 S:      Maintained
18541 T:      git git://linuxtv.org/media_tree.git
18542 F:      Documentation/devicetree/bindings/media/i2c/imx258.yaml
18543 F:      drivers/media/i2c/imx258.c
18544
18545 SONY IMX274 SENSOR DRIVER
18546 M:      Leon Luo <leonl@leopardimaging.com>
18547 L:      linux-media@vger.kernel.org
18548 S:      Maintained
18549 T:      git git://linuxtv.org/media_tree.git
18550 F:      Documentation/devicetree/bindings/media/i2c/sony,imx274.yaml
18551 F:      drivers/media/i2c/imx274.c
18552
18553 SONY IMX290 SENSOR DRIVER
18554 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
18555 L:      linux-media@vger.kernel.org
18556 S:      Maintained
18557 T:      git git://linuxtv.org/media_tree.git
18558 F:      Documentation/devicetree/bindings/media/i2c/imx290.txt
18559 F:      drivers/media/i2c/imx290.c
18560
18561 SONY IMX319 SENSOR DRIVER
18562 M:      Bingbu Cao <bingbu.cao@intel.com>
18563 L:      linux-media@vger.kernel.org
18564 S:      Maintained
18565 T:      git git://linuxtv.org/media_tree.git
18566 F:      drivers/media/i2c/imx319.c
18567
18568 SONY IMX334 SENSOR DRIVER
18569 M:      Paul J. Murphy <paul.j.murphy@intel.com>
18570 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
18571 L:      linux-media@vger.kernel.org
18572 S:      Maintained
18573 T:      git git://linuxtv.org/media_tree.git
18574 F:      Documentation/devicetree/bindings/media/i2c/sony,imx334.yaml
18575 F:      drivers/media/i2c/imx334.c
18576
18577 SONY IMX335 SENSOR DRIVER
18578 M:      Paul J. Murphy <paul.j.murphy@intel.com>
18579 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
18580 L:      linux-media@vger.kernel.org
18581 S:      Maintained
18582 T:      git git://linuxtv.org/media_tree.git
18583 F:      Documentation/devicetree/bindings/media/i2c/sony,imx335.yaml
18584 F:      drivers/media/i2c/imx335.c
18585
18586 SONY IMX355 SENSOR DRIVER
18587 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
18588 L:      linux-media@vger.kernel.org
18589 S:      Maintained
18590 T:      git git://linuxtv.org/media_tree.git
18591 F:      drivers/media/i2c/imx355.c
18592
18593 SONY IMX412 SENSOR DRIVER
18594 M:      Paul J. Murphy <paul.j.murphy@intel.com>
18595 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
18596 L:      linux-media@vger.kernel.org
18597 S:      Maintained
18598 T:      git git://linuxtv.org/media_tree.git
18599 F:      Documentation/devicetree/bindings/media/i2c/sony,imx412.yaml
18600 F:      drivers/media/i2c/imx412.c
18601
18602 SONY MEMORYSTICK SUBSYSTEM
18603 M:      Maxim Levitsky <maximlevitsky@gmail.com>
18604 M:      Alex Dubov <oakad@yahoo.com>
18605 M:      Ulf Hansson <ulf.hansson@linaro.org>
18606 L:      linux-mmc@vger.kernel.org
18607 S:      Maintained
18608 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
18609 F:      drivers/memstick/
18610 F:      include/linux/memstick.h
18611
18612 SONY VAIO CONTROL DEVICE DRIVER
18613 M:      Mattia Dongili <malattia@linux.it>
18614 L:      platform-driver-x86@vger.kernel.org
18615 S:      Maintained
18616 W:      http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
18617 F:      Documentation/admin-guide/laptops/sony-laptop.rst
18618 F:      drivers/char/sonypi.c
18619 F:      drivers/platform/x86/sony-laptop.c
18620 F:      include/linux/sony-laptop.h
18621
18622 SOUND
18623 M:      Jaroslav Kysela <perex@perex.cz>
18624 M:      Takashi Iwai <tiwai@suse.com>
18625 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18626 S:      Maintained
18627 W:      http://www.alsa-project.org/
18628 Q:      http://patchwork.kernel.org/project/alsa-devel/list/
18629 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
18630 F:      Documentation/sound/
18631 F:      include/sound/
18632 F:      include/uapi/sound/
18633 F:      sound/
18634 F:      tools/testing/selftests/alsa
18635
18636 SOUND - COMPRESSED AUDIO
18637 M:      Vinod Koul <vkoul@kernel.org>
18638 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18639 S:      Supported
18640 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
18641 F:      Documentation/sound/designs/compress-offload.rst
18642 F:      include/sound/compress_driver.h
18643 F:      include/uapi/sound/compress_*
18644 F:      sound/core/compress_offload.c
18645 F:      sound/soc/soc-compress.c
18646
18647 SOUND - DMAENGINE HELPERS
18648 M:      Lars-Peter Clausen <lars@metafoo.de>
18649 S:      Supported
18650 F:      include/sound/dmaengine_pcm.h
18651 F:      sound/core/pcm_dmaengine.c
18652 F:      sound/soc/soc-generic-dmaengine-pcm.c
18653
18654 SOUND - ALSA SELFTESTS
18655 M:      Mark Brown <broonie@kernel.org>
18656 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18657 L:      linux-kselftest@vger.kernel.org
18658 S:      Supported
18659 F:      tools/testing/selftests/alsa
18660
18661 SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
18662 M:      Liam Girdwood <lgirdwood@gmail.com>
18663 M:      Mark Brown <broonie@kernel.org>
18664 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18665 S:      Supported
18666 W:      http://alsa-project.org/main/index.php/ASoC
18667 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
18668 F:      Documentation/devicetree/bindings/sound/
18669 F:      Documentation/sound/soc/
18670 F:      include/dt-bindings/sound/
18671 F:      include/sound/soc*
18672 F:      sound/soc/
18673
18674 SOUND - SOUND OPEN FIRMWARE (SOF) DRIVERS
18675 M:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
18676 M:      Liam Girdwood <lgirdwood@gmail.com>
18677 M:      Ranjani Sridharan <ranjani.sridharan@linux.intel.com>
18678 M:      Kai Vehmanen <kai.vehmanen@linux.intel.com>
18679 M:      Daniel Baluta <daniel.baluta@nxp.com>
18680 L:      sound-open-firmware@alsa-project.org (moderated for non-subscribers)
18681 S:      Supported
18682 W:      https://github.com/thesofproject/linux/
18683 F:      sound/soc/sof/
18684
18685 SOUNDWIRE SUBSYSTEM
18686 M:      Vinod Koul <vkoul@kernel.org>
18687 M:      Bard Liao <yung-chuan.liao@linux.intel.com>
18688 R:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
18689 R:      Sanyog Kale <sanyog.r.kale@intel.com>
18690 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18691 S:      Supported
18692 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vkoul/soundwire.git
18693 F:      Documentation/driver-api/soundwire/
18694 F:      drivers/soundwire/
18695 F:      include/linux/soundwire/
18696
18697 SP2 MEDIA DRIVER
18698 M:      Olli Salonen <olli.salonen@iki.fi>
18699 L:      linux-media@vger.kernel.org
18700 S:      Maintained
18701 W:      https://linuxtv.org
18702 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18703 F:      drivers/media/dvb-frontends/sp2*
18704
18705 SPARC + UltraSPARC (sparc/sparc64)
18706 M:      "David S. Miller" <davem@davemloft.net>
18707 L:      sparclinux@vger.kernel.org
18708 S:      Maintained
18709 Q:      http://patchwork.ozlabs.org/project/sparclinux/list/
18710 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
18711 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
18712 F:      arch/sparc/
18713 F:      drivers/sbus/
18714
18715 SPARC SERIAL DRIVERS
18716 M:      "David S. Miller" <davem@davemloft.net>
18717 L:      sparclinux@vger.kernel.org
18718 S:      Maintained
18719 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
18720 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
18721 F:      drivers/tty/serial/suncore.c
18722 F:      drivers/tty/serial/sunhv.c
18723 F:      drivers/tty/serial/sunsab.c
18724 F:      drivers/tty/serial/sunsab.h
18725 F:      drivers/tty/serial/sunsu.c
18726 F:      drivers/tty/serial/sunzilog.c
18727 F:      drivers/tty/serial/sunzilog.h
18728 F:      drivers/tty/vcc.c
18729 F:      include/linux/sunserialcore.h
18730
18731 SPARSE CHECKER
18732 M:      "Luc Van Oostenryck" <luc.vanoostenryck@gmail.com>
18733 L:      linux-sparse@vger.kernel.org
18734 S:      Maintained
18735 W:      https://sparse.docs.kernel.org/
18736 T:      git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
18737 Q:      https://patchwork.kernel.org/project/linux-sparse/list/
18738 B:      https://bugzilla.kernel.org/enter_bug.cgi?component=Sparse&product=Tools
18739 F:      include/linux/compiler.h
18740
18741 SPEAKUP CONSOLE SPEECH DRIVER
18742 M:      William Hubbs <w.d.hubbs@gmail.com>
18743 M:      Chris Brannon <chris@the-brannons.com>
18744 M:      Kirk Reiser <kirk@reisers.ca>
18745 M:      Samuel Thibault <samuel.thibault@ens-lyon.org>
18746 L:      speakup@linux-speakup.org
18747 S:      Odd Fixes
18748 W:      http://www.linux-speakup.org/
18749 W:      https://github.com/linux-speakup/speakup
18750 B:      https://github.com/linux-speakup/speakup/issues
18751 F:      drivers/accessibility/speakup/
18752
18753 SPEAR PLATFORM/CLOCK/PINCTRL SUPPORT
18754 M:      Viresh Kumar <vireshk@kernel.org>
18755 M:      Shiraz Hashim <shiraz.linux.kernel@gmail.com>
18756 M:      soc@kernel.org
18757 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
18758 S:      Maintained
18759 W:      http://www.st.com/spear
18760 F:      arch/arm/boot/dts/spear*
18761 F:      arch/arm/mach-spear/
18762 F:      drivers/clk/spear/
18763 F:      drivers/pinctrl/spear/
18764
18765 SPI NOR SUBSYSTEM
18766 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
18767 M:      Pratyush Yadav <p.yadav@ti.com>
18768 R:      Michael Walle <michael@walle.cc>
18769 L:      linux-mtd@lists.infradead.org
18770 S:      Maintained
18771 W:      http://www.linux-mtd.infradead.org/
18772 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
18773 C:      irc://irc.oftc.net/mtd
18774 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git spi-nor/next
18775 F:      Documentation/devicetree/bindings/mtd/jedec,spi-nor.yaml
18776 F:      drivers/mtd/spi-nor/
18777 F:      include/linux/mtd/spi-nor.h
18778
18779 SPI SUBSYSTEM
18780 M:      Mark Brown <broonie@kernel.org>
18781 L:      linux-spi@vger.kernel.org
18782 S:      Maintained
18783 Q:      http://patchwork.kernel.org/project/spi-devel-general/list/
18784 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
18785 F:      Documentation/devicetree/bindings/spi/
18786 F:      Documentation/spi/
18787 F:      drivers/spi/
18788 F:      include/linux/spi/
18789 F:      include/uapi/linux/spi/
18790 F:      tools/spi/
18791
18792 SPIDERNET NETWORK DRIVER for CELL
18793 M:      Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
18794 M:      Geoff Levand <geoff@infradead.org>
18795 L:      netdev@vger.kernel.org
18796 L:      linuxppc-dev@lists.ozlabs.org
18797 S:      Maintained
18798 F:      Documentation/networking/device_drivers/ethernet/toshiba/spider_net.rst
18799 F:      drivers/net/ethernet/toshiba/spider_net*
18800
18801 SPMI SUBSYSTEM
18802 M:      Stephen Boyd <sboyd@kernel.org>
18803 L:      linux-kernel@vger.kernel.org
18804 S:      Maintained
18805 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sboyd/spmi.git
18806 F:      Documentation/devicetree/bindings/spmi/
18807 F:      drivers/spmi/
18808 F:      include/dt-bindings/spmi/spmi.h
18809 F:      include/linux/spmi.h
18810 F:      include/trace/events/spmi.h
18811
18812 SPU FILE SYSTEM
18813 M:      Jeremy Kerr <jk@ozlabs.org>
18814 L:      linuxppc-dev@lists.ozlabs.org
18815 S:      Supported
18816 W:      http://www.ibm.com/developerworks/power/cell/
18817 F:      Documentation/filesystems/spufs/spufs.rst
18818 F:      arch/powerpc/platforms/cell/spufs/
18819
18820 SQUASHFS FILE SYSTEM
18821 M:      Phillip Lougher <phillip@squashfs.org.uk>
18822 L:      squashfs-devel@lists.sourceforge.net (subscribers-only)
18823 S:      Maintained
18824 W:      http://squashfs.org.uk
18825 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pkl/squashfs-next.git
18826 F:      Documentation/filesystems/squashfs.rst
18827 F:      fs/squashfs/
18828
18829 SRM (Alpha) environment access
18830 M:      Jan-Benedict Glaw <jbglaw@lug-owl.de>
18831 S:      Maintained
18832 F:      arch/alpha/kernel/srm_env.c
18833
18834 ST LSM6DSx IMU IIO DRIVER
18835 M:      Lorenzo Bianconi <lorenzo@kernel.org>
18836 L:      linux-iio@vger.kernel.org
18837 S:      Maintained
18838 W:      http://www.st.com/
18839 F:      Documentation/devicetree/bindings/iio/imu/st,lsm6dsx.yaml
18840 F:      drivers/iio/imu/st_lsm6dsx/
18841
18842 ST MIPID02 CSI-2 TO PARALLEL BRIDGE DRIVER
18843 M:      Benjamin Mugnier <benjamin.mugnier@foss.st.com>
18844 M:      Sylvain Petinot <sylvain.petinot@foss.st.com>
18845 L:      linux-media@vger.kernel.org
18846 S:      Maintained
18847 T:      git git://linuxtv.org/media_tree.git
18848 F:      Documentation/devicetree/bindings/media/i2c/st,st-mipid02.txt
18849 F:      drivers/media/i2c/st-mipid02.c
18850
18851 ST STM32 I2C/SMBUS DRIVER
18852 M:      Pierre-Yves MORDRET <pierre-yves.mordret@foss.st.com>
18853 M:      Alain Volmat <alain.volmat@foss.st.com>
18854 L:      linux-i2c@vger.kernel.org
18855 S:      Maintained
18856 F:      drivers/i2c/busses/i2c-stm32*
18857
18858 ST STM32 SPI DRIVER
18859 M:      Alain Volmat <alain.volmat@foss.st.com>
18860 L:      linux-spi@vger.kernel.org
18861 S:      Maintained
18862 F:      drivers/spi/spi-stm32.c
18863
18864 ST STPDDC60 DRIVER
18865 M:      Daniel Nilsson <daniel.nilsson@flex.com>
18866 L:      linux-hwmon@vger.kernel.org
18867 S:      Maintained
18868 F:      Documentation/hwmon/stpddc60.rst
18869 F:      drivers/hwmon/pmbus/stpddc60.c
18870
18871 ST VL53L0X ToF RANGER(I2C) IIO DRIVER
18872 M:      Song Qiang <songqiang1304521@gmail.com>
18873 L:      linux-iio@vger.kernel.org
18874 S:      Maintained
18875 F:      Documentation/devicetree/bindings/iio/proximity/st,vl53l0x.yaml
18876 F:      drivers/iio/proximity/vl53l0x-i2c.c
18877
18878 STABLE BRANCH
18879 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
18880 M:      Sasha Levin <sashal@kernel.org>
18881 L:      stable@vger.kernel.org
18882 S:      Supported
18883 F:      Documentation/process/stable-kernel-rules.rst
18884
18885 STAGING - ATOMISP DRIVER
18886 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
18887 R:      Sakari Ailus <sakari.ailus@linux.intel.com>
18888 L:      linux-media@vger.kernel.org
18889 S:      Maintained
18890 F:      drivers/staging/media/atomisp/
18891
18892 STAGING - FIELDBUS SUBSYSTEM
18893 M:      Sven Van Asbroeck <TheSven73@gmail.com>
18894 S:      Maintained
18895 F:      drivers/staging/fieldbus/*
18896 F:      drivers/staging/fieldbus/Documentation/
18897
18898 STAGING - HMS ANYBUS-S BUS
18899 M:      Sven Van Asbroeck <TheSven73@gmail.com>
18900 S:      Maintained
18901 F:      drivers/staging/fieldbus/anybuss/
18902
18903 STAGING - INDUSTRIAL IO
18904 M:      Jonathan Cameron <jic23@kernel.org>
18905 L:      linux-iio@vger.kernel.org
18906 S:      Odd Fixes
18907 F:      Documentation/devicetree/bindings/staging/iio/
18908 F:      drivers/staging/iio/
18909
18910 STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
18911 M:      Marc Dietrich <marvin24@gmx.de>
18912 L:      ac100@lists.launchpad.net (moderated for non-subscribers)
18913 L:      linux-tegra@vger.kernel.org
18914 S:      Maintained
18915 F:      drivers/staging/nvec/
18916
18917 STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
18918 M:      Jens Frederich <jfrederich@gmail.com>
18919 M:      Jon Nettleton <jon.nettleton@gmail.com>
18920 S:      Maintained
18921 W:      http://wiki.laptop.org/go/DCON
18922 F:      drivers/staging/olpc_dcon/
18923
18924 STAGING - REALTEK RTL8188EU DRIVERS
18925 M:      Larry Finger <Larry.Finger@lwfinger.net>
18926 M:      Phillip Potter <phil@philpotter.co.uk>
18927 S:      Supported
18928 F:      drivers/staging/r8188eu/
18929
18930 STAGING - REALTEK RTL8712U DRIVERS
18931 M:      Larry Finger <Larry.Finger@lwfinger.net>
18932 M:      Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
18933 S:      Odd Fixes
18934 F:      drivers/staging/rtl8712/
18935
18936 STAGING - SEPS525 LCD CONTROLLER DRIVERS
18937 M:      Michael Hennerich <michael.hennerich@analog.com>
18938 L:      linux-fbdev@vger.kernel.org
18939 S:      Supported
18940 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7606.yaml
18941 F:      drivers/staging/fbtft/fb_seps525.c
18942
18943 STAGING - SILICON MOTION SM750 FRAME BUFFER DRIVER
18944 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
18945 M:      Teddy Wang <teddy.wang@siliconmotion.com>
18946 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
18947 L:      linux-fbdev@vger.kernel.org
18948 S:      Maintained
18949 F:      drivers/staging/sm750fb/
18950
18951 STAGING - VIA VT665X DRIVERS
18952 M:      Forest Bond <forest@alittletooquiet.net>
18953 S:      Odd Fixes
18954 F:      drivers/staging/vt665?/
18955
18956 STAGING SUBSYSTEM
18957 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
18958 L:      linux-staging@lists.linux.dev
18959 S:      Supported
18960 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
18961 F:      drivers/staging/
18962
18963 STARFIRE/DURALAN NETWORK DRIVER
18964 M:      Ion Badulescu <ionut@badula.org>
18965 S:      Odd Fixes
18966 F:      drivers/net/ethernet/adaptec/starfire*
18967
18968 STARFIVE JH7100 CLOCK DRIVERS
18969 M:      Emil Renner Berthing <kernel@esmil.dk>
18970 S:      Maintained
18971 F:      Documentation/devicetree/bindings/clock/starfive,jh7100-*.yaml
18972 F:      drivers/clk/starfive/clk-starfive-jh7100*
18973 F:      include/dt-bindings/clock/starfive-jh7100*.h
18974
18975 STARFIVE JH7100 PINCTRL DRIVER
18976 M:      Emil Renner Berthing <kernel@esmil.dk>
18977 L:      linux-gpio@vger.kernel.org
18978 S:      Maintained
18979 F:      Documentation/devicetree/bindings/pinctrl/starfive,jh7100-pinctrl.yaml
18980 F:      drivers/pinctrl/pinctrl-starfive.c
18981 F:      include/dt-bindings/pinctrl/pinctrl-starfive.h
18982
18983 STARFIVE JH7100 RESET CONTROLLER DRIVER
18984 M:      Emil Renner Berthing <kernel@esmil.dk>
18985 S:      Maintained
18986 F:      Documentation/devicetree/bindings/reset/starfive,jh7100-reset.yaml
18987 F:      drivers/reset/reset-starfive-jh7100.c
18988 F:      include/dt-bindings/reset/starfive-jh7100.h
18989
18990 STATIC BRANCH/CALL
18991 M:      Peter Zijlstra <peterz@infradead.org>
18992 M:      Josh Poimboeuf <jpoimboe@kernel.org>
18993 M:      Jason Baron <jbaron@akamai.com>
18994 R:      Steven Rostedt <rostedt@goodmis.org>
18995 R:      Ard Biesheuvel <ardb@kernel.org>
18996 S:      Supported
18997 F:      arch/*/include/asm/jump_label*.h
18998 F:      arch/*/include/asm/static_call*.h
18999 F:      arch/*/kernel/jump_label.c
19000 F:      arch/*/kernel/static_call.c
19001 F:      include/linux/jump_label*.h
19002 F:      include/linux/static_call*.h
19003 F:      kernel/jump_label.c
19004 F:      kernel/static_call.c
19005
19006 STI AUDIO (ASoC) DRIVERS
19007 M:      Arnaud Pouliquen <arnaud.pouliquen@foss.st.com>
19008 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19009 S:      Maintained
19010 F:      Documentation/devicetree/bindings/sound/st,sti-asoc-card.txt
19011 F:      sound/soc/sti/
19012
19013 STI CEC DRIVER
19014 M:      Alain Volmat <alain.volmat@foss.st.com>
19015 S:      Maintained
19016 F:      Documentation/devicetree/bindings/media/stih-cec.txt
19017 F:      drivers/media/cec/platform/sti/
19018
19019 STK1160 USB VIDEO CAPTURE DRIVER
19020 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
19021 L:      linux-media@vger.kernel.org
19022 S:      Maintained
19023 T:      git git://linuxtv.org/media_tree.git
19024 F:      drivers/media/usb/stk1160/
19025
19026 STM32 AUDIO (ASoC) DRIVERS
19027 M:      Olivier Moysan <olivier.moysan@foss.st.com>
19028 M:      Arnaud Pouliquen <arnaud.pouliquen@foss.st.com>
19029 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19030 S:      Maintained
19031 F:      Documentation/devicetree/bindings/iio/adc/st,stm32-dfsdm-adc.yaml
19032 F:      Documentation/devicetree/bindings/sound/st,stm32-*.yaml
19033 F:      sound/soc/stm/
19034
19035 STM32 TIMER/LPTIMER DRIVERS
19036 M:      Fabrice Gasnier <fabrice.gasnier@foss.st.com>
19037 S:      Maintained
19038 F:      Documentation/ABI/testing/*timer-stm32
19039 F:      Documentation/devicetree/bindings/*/*stm32-*timer*
19040 F:      drivers/*/stm32-*timer*
19041 F:      drivers/pwm/pwm-stm32*
19042 F:      include/linux/*/stm32-*tim*
19043
19044 STMMAC ETHERNET DRIVER
19045 M:      Giuseppe Cavallaro <peppe.cavallaro@st.com>
19046 M:      Alexandre Torgue <alexandre.torgue@foss.st.com>
19047 M:      Jose Abreu <joabreu@synopsys.com>
19048 L:      netdev@vger.kernel.org
19049 S:      Supported
19050 W:      http://www.stlinux.com
19051 F:      Documentation/networking/device_drivers/ethernet/stmicro/
19052 F:      drivers/net/ethernet/stmicro/stmmac/
19053
19054 SUN3/3X
19055 M:      Sam Creasey <sammy@sammy.net>
19056 S:      Maintained
19057 W:      http://sammy.net/sun3/
19058 F:      arch/m68k/include/asm/sun3*
19059 F:      arch/m68k/kernel/*sun3*
19060 F:      arch/m68k/sun3*/
19061 F:      drivers/net/ethernet/i825xx/sun3*
19062
19063 SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER
19064 M:      Hans de Goede <hdegoede@redhat.com>
19065 L:      linux-input@vger.kernel.org
19066 S:      Maintained
19067 F:      Documentation/devicetree/bindings/input/allwinner,sun4i-a10-lradc-keys.yaml
19068 F:      drivers/input/keyboard/sun4i-lradc-keys.c
19069
19070 SUNDANCE NETWORK DRIVER
19071 M:      Denis Kirjanov <kda@linux-powerpc.org>
19072 L:      netdev@vger.kernel.org
19073 S:      Maintained
19074 F:      drivers/net/ethernet/dlink/sundance.c
19075
19076 SUNPLUS ETHERNET DRIVER
19077 M:      Wells Lu <wellslutw@gmail.com>
19078 L:      netdev@vger.kernel.org
19079 S:      Maintained
19080 W:      https://sunplus.atlassian.net/wiki/spaces/doc/overview
19081 F:      Documentation/devicetree/bindings/net/sunplus,sp7021-emac.yaml
19082 F:      drivers/net/ethernet/sunplus/
19083
19084 SUNPLUS OCOTP DRIVER
19085 M:      Vincent Shih <vincent.sunplus@gmail.com>
19086 S:      Maintained
19087 F:      Documentation/devicetree/bindings/nvmem/sunplus,sp7021-ocotp.yaml
19088 F:      drivers/nvmem/sunplus-ocotp.c
19089
19090 SUNPLUS PWM DRIVER
19091 M:      Hammer Hsieh <hammerh0314@gmail.com>
19092 S:      Maintained
19093 F:      Documentation/devicetree/bindings/pwm/sunplus,sp7021-pwm.yaml
19094 F:      drivers/pwm/pwm-sunplus.c
19095
19096 SUNPLUS RTC DRIVER
19097 M:      Vincent Shih <vincent.sunplus@gmail.com>
19098 L:      linux-rtc@vger.kernel.org
19099 S:      Maintained
19100 F:      Documentation/devicetree/bindings/rtc/sunplus,sp7021-rtc.yaml
19101 F:      drivers/rtc/rtc-sunplus.c
19102
19103 SUNPLUS SPI CONTROLLER INTERFACE DRIVER
19104 M:      Li-hao Kuo <lhjeff911@gmail.com>
19105 L:      linux-spi@vger.kernel.org
19106 S:      Maintained
19107 F:      Documentation/devicetree/bindings/spi/spi-sunplus-sp7021.yaml
19108 F:      drivers/spi/spi-sunplus-sp7021.c
19109
19110 SUNPLUS UART DRIVER
19111 M:      Hammer Hsieh <hammerh0314@gmail.com>
19112 S:      Maintained
19113 F:      Documentation/devicetree/bindings/serial/sunplus,sp7021-uart.yaml
19114 F:      drivers/tty/serial/sunplus-uart.c
19115
19116 SUNPLUS WATCHDOG DRIVER
19117 M:      Xiantao Hu <xt.hu@cqplus1.com>
19118 L:      linux-watchdog@vger.kernel.org
19119 S:      Maintained
19120 F:      Documentation/devicetree/bindings/watchdog/sunplus,sp7021-wdt.yaml
19121 F:      drivers/watchdog/sunplus_wdt.c
19122
19123 SUPERH
19124 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
19125 M:      Rich Felker <dalias@libc.org>
19126 L:      linux-sh@vger.kernel.org
19127 S:      Maintained
19128 Q:      http://patchwork.kernel.org/project/linux-sh/list/
19129 F:      Documentation/sh/
19130 F:      arch/sh/
19131 F:      drivers/sh/
19132
19133 SUSPEND TO RAM
19134 M:      "Rafael J. Wysocki" <rafael@kernel.org>
19135 M:      Len Brown <len.brown@intel.com>
19136 M:      Pavel Machek <pavel@ucw.cz>
19137 L:      linux-pm@vger.kernel.org
19138 S:      Supported
19139 B:      https://bugzilla.kernel.org
19140 F:      Documentation/power/
19141 F:      arch/x86/kernel/acpi/
19142 F:      drivers/base/power/
19143 F:      include/linux/freezer.h
19144 F:      include/linux/pm.h
19145 F:      include/linux/suspend.h
19146 F:      kernel/power/
19147
19148 SVGA HANDLING
19149 M:      Martin Mares <mj@ucw.cz>
19150 L:      linux-video@atrey.karlin.mff.cuni.cz
19151 S:      Maintained
19152 F:      Documentation/admin-guide/svga.rst
19153 F:      arch/x86/boot/video*
19154
19155 SWIOTLB SUBSYSTEM
19156 M:      Christoph Hellwig <hch@infradead.org>
19157 L:      iommu@lists.linux-foundation.org
19158 S:      Supported
19159 W:      http://git.infradead.org/users/hch/dma-mapping.git
19160 T:      git git://git.infradead.org/users/hch/dma-mapping.git
19161 F:      arch/*/kernel/pci-swiotlb.c
19162 F:      include/linux/swiotlb.h
19163 F:      kernel/dma/swiotlb.c
19164
19165 SWITCHDEV
19166 M:      Jiri Pirko <jiri@resnulli.us>
19167 M:      Ivan Vecera <ivecera@redhat.com>
19168 L:      netdev@vger.kernel.org
19169 S:      Supported
19170 F:      include/net/switchdev.h
19171 F:      net/switchdev/
19172
19173 SY8106A REGULATOR DRIVER
19174 M:      Icenowy Zheng <icenowy@aosc.io>
19175 S:      Maintained
19176 F:      Documentation/devicetree/bindings/regulator/silergy,sy8106a.yaml
19177 F:      drivers/regulator/sy8106a-regulator.c
19178
19179 SYNC FILE FRAMEWORK
19180 M:      Sumit Semwal <sumit.semwal@linaro.org>
19181 R:      Gustavo Padovan <gustavo@padovan.org>
19182 L:      linux-media@vger.kernel.org
19183 L:      dri-devel@lists.freedesktop.org
19184 S:      Maintained
19185 T:      git git://anongit.freedesktop.org/drm/drm-misc
19186 F:      Documentation/driver-api/sync_file.rst
19187 F:      drivers/dma-buf/dma-fence*
19188 F:      drivers/dma-buf/sw_sync.c
19189 F:      drivers/dma-buf/sync_*
19190 F:      include/linux/sync_file.h
19191 F:      include/uapi/linux/sync_file.h
19192
19193 SYNOPSYS ARC ARCHITECTURE
19194 M:      Vineet Gupta <vgupta@kernel.org>
19195 L:      linux-snps-arc@lists.infradead.org
19196 S:      Supported
19197 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc.git
19198 F:      Documentation/arc/
19199 F:      Documentation/devicetree/bindings/arc/*
19200 F:      Documentation/devicetree/bindings/interrupt-controller/snps,arc*
19201 F:      arch/arc/
19202 F:      drivers/clocksource/arc_timer.c
19203 F:      drivers/tty/serial/arc_uart.c
19204
19205 SYNOPSYS ARC HSDK SDP pll clock driver
19206 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
19207 S:      Supported
19208 F:      Documentation/devicetree/bindings/clock/snps,hsdk-pll-clock.txt
19209 F:      drivers/clk/clk-hsdk-pll.c
19210
19211 SYNOPSYS ARC SDP clock driver
19212 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
19213 S:      Supported
19214 F:      Documentation/devicetree/bindings/clock/snps,pll-clock.txt
19215 F:      drivers/clk/axs10x/*
19216
19217 SYNOPSYS ARC SDP platform support
19218 M:      Alexey Brodkin <abrodkin@synopsys.com>
19219 S:      Supported
19220 F:      Documentation/devicetree/bindings/arc/axs10*
19221 F:      arch/arc/boot/dts/ax*
19222 F:      arch/arc/plat-axs10x
19223
19224 SYNOPSYS AXS10x RESET CONTROLLER DRIVER
19225 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
19226 S:      Supported
19227 F:      Documentation/devicetree/bindings/reset/snps,axs10x-reset.txt
19228 F:      drivers/reset/reset-axs10x.c
19229
19230 SYNOPSYS CREG GPIO DRIVER
19231 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
19232 S:      Maintained
19233 F:      Documentation/devicetree/bindings/gpio/snps,creg-gpio.txt
19234 F:      drivers/gpio/gpio-creg-snps.c
19235
19236 SYNOPSYS DESIGNWARE 8250 UART DRIVER
19237 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
19238 S:      Maintained
19239 F:      drivers/tty/serial/8250/8250_dw.c
19240 F:      drivers/tty/serial/8250/8250_dwlib.*
19241 F:      drivers/tty/serial/8250/8250_lpss.c
19242
19243 SYNOPSYS DESIGNWARE APB GPIO DRIVER
19244 M:      Hoan Tran <hoan@os.amperecomputing.com>
19245 M:      Serge Semin <fancer.lancer@gmail.com>
19246 L:      linux-gpio@vger.kernel.org
19247 S:      Maintained
19248 F:      Documentation/devicetree/bindings/gpio/snps,dw-apb-gpio.yaml
19249 F:      drivers/gpio/gpio-dwapb.c
19250
19251 SYNOPSYS DESIGNWARE APB SSI DRIVER
19252 M:      Serge Semin <fancer.lancer@gmail.com>
19253 L:      linux-spi@vger.kernel.org
19254 S:      Supported
19255 F:      Documentation/devicetree/bindings/spi/snps,dw-apb-ssi.yaml
19256 F:      drivers/spi/spi-dw*
19257
19258 SYNOPSYS DESIGNWARE AXI DMAC DRIVER
19259 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
19260 S:      Maintained
19261 F:      Documentation/devicetree/bindings/dma/snps,dw-axi-dmac.yaml
19262 F:      drivers/dma/dw-axi-dmac/
19263
19264 SYNOPSYS DESIGNWARE DMAC DRIVER
19265 M:      Viresh Kumar <vireshk@kernel.org>
19266 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
19267 S:      Maintained
19268 F:      Documentation/devicetree/bindings/dma/renesas,rzn1-dmamux.yaml
19269 F:      Documentation/devicetree/bindings/dma/snps,dma-spear1340.yaml
19270 F:      drivers/dma/dw/
19271 F:      include/dt-bindings/dma/dw-dmac.h
19272 F:      include/linux/dma/dw.h
19273 F:      include/linux/platform_data/dma-dw.h
19274
19275 SYNOPSYS DESIGNWARE ENTERPRISE ETHERNET DRIVER
19276 M:      Jose Abreu <Jose.Abreu@synopsys.com>
19277 L:      netdev@vger.kernel.org
19278 S:      Supported
19279 F:      drivers/net/ethernet/synopsys/
19280
19281 SYNOPSYS DESIGNWARE ETHERNET XPCS DRIVER
19282 M:      Jose Abreu <Jose.Abreu@synopsys.com>
19283 L:      netdev@vger.kernel.org
19284 S:      Supported
19285 F:      drivers/net/pcs/pcs-xpcs.c
19286 F:      drivers/net/pcs/pcs-xpcs.h
19287 F:      include/linux/pcs/pcs-xpcs.h
19288
19289 SYNOPSYS DESIGNWARE I2C DRIVER
19290 M:      Jarkko Nikula <jarkko.nikula@linux.intel.com>
19291 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
19292 R:      Mika Westerberg <mika.westerberg@linux.intel.com>
19293 R:      Jan Dabros <jsd@semihalf.com>
19294 L:      linux-i2c@vger.kernel.org
19295 S:      Maintained
19296 F:      drivers/i2c/busses/i2c-designware-*
19297
19298 SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
19299 M:      Jaehoon Chung <jh80.chung@samsung.com>
19300 L:      linux-mmc@vger.kernel.org
19301 S:      Maintained
19302 F:      drivers/mmc/host/dw_mmc*
19303
19304 SYNOPSYS HSDK RESET CONTROLLER DRIVER
19305 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
19306 S:      Supported
19307 F:      Documentation/devicetree/bindings/reset/snps,hsdk-reset.txt
19308 F:      drivers/reset/reset-hsdk.c
19309 F:      include/dt-bindings/reset/snps,hsdk-reset.h
19310
19311 SYNOPSYS SDHCI COMPLIANT DWC MSHC DRIVER
19312 M:      Prabu Thangamuthu <prabu.t@synopsys.com>
19313 M:      Manjunath M B <manjumb@synopsys.com>
19314 L:      linux-mmc@vger.kernel.org
19315 S:      Maintained
19316 F:      drivers/mmc/host/sdhci-pci-dwc-mshc.c
19317
19318 SYSTEM CONFIGURATION (SYSCON)
19319 M:      Lee Jones <lee.jones@linaro.org>
19320 M:      Arnd Bergmann <arnd@arndb.de>
19321 S:      Supported
19322 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
19323 F:      drivers/mfd/syscon.c
19324
19325 SYSTEM CONTROL & POWER/MANAGEMENT INTERFACE (SCPI/SCMI) Message Protocol drivers
19326 M:      Sudeep Holla <sudeep.holla@arm.com>
19327 R:      Cristian Marussi <cristian.marussi@arm.com>
19328 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
19329 S:      Maintained
19330 F:      Documentation/devicetree/bindings/firmware/arm,sc[mp]i.yaml
19331 F:      drivers/clk/clk-sc[mp]i.c
19332 F:      drivers/cpufreq/sc[mp]i-cpufreq.c
19333 F:      drivers/firmware/arm_scmi/
19334 F:      drivers/firmware/arm_scpi.c
19335 F:      drivers/regulator/scmi-regulator.c
19336 F:      drivers/reset/reset-scmi.c
19337 F:      include/linux/sc[mp]i_protocol.h
19338 F:      include/trace/events/scmi.h
19339 F:      include/uapi/linux/virtio_scmi.h
19340
19341 SYSTEM RESET/SHUTDOWN DRIVERS
19342 M:      Sebastian Reichel <sre@kernel.org>
19343 L:      linux-pm@vger.kernel.org
19344 S:      Maintained
19345 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
19346 F:      Documentation/devicetree/bindings/power/reset/
19347 F:      drivers/power/reset/
19348
19349 SYSTEM TRACE MODULE CLASS
19350 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
19351 S:      Maintained
19352 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ash/stm.git
19353 F:      Documentation/trace/stm.rst
19354 F:      drivers/hwtracing/stm/
19355 F:      include/linux/stm.h
19356 F:      include/uapi/linux/stm.h
19357
19358 SYSTEM76 ACPI DRIVER
19359 M:      Jeremy Soller <jeremy@system76.com>
19360 M:      System76 Product Development <productdev@system76.com>
19361 L:      platform-driver-x86@vger.kernel.org
19362 S:      Maintained
19363 F:      drivers/platform/x86/system76_acpi.c
19364
19365 SYSV FILESYSTEM
19366 M:      Christoph Hellwig <hch@infradead.org>
19367 S:      Maintained
19368 F:      Documentation/filesystems/sysv-fs.rst
19369 F:      fs/sysv/
19370 F:      include/linux/sysv_fs.h
19371
19372 TASKSTATS STATISTICS INTERFACE
19373 M:      Balbir Singh <bsingharora@gmail.com>
19374 S:      Maintained
19375 F:      Documentation/accounting/taskstats*
19376 F:      include/linux/taskstats*
19377 F:      kernel/taskstats.c
19378
19379 TC subsystem
19380 M:      Jamal Hadi Salim <jhs@mojatatu.com>
19381 M:      Cong Wang <xiyou.wangcong@gmail.com>
19382 M:      Jiri Pirko <jiri@resnulli.us>
19383 L:      netdev@vger.kernel.org
19384 S:      Maintained
19385 F:      include/net/pkt_cls.h
19386 F:      include/net/pkt_sched.h
19387 F:      include/net/tc_act/
19388 F:      include/uapi/linux/pkt_cls.h
19389 F:      include/uapi/linux/pkt_sched.h
19390 F:      include/uapi/linux/tc_act/
19391 F:      include/uapi/linux/tc_ematch/
19392 F:      net/sched/
19393 F:      tools/testing/selftests/tc-testing
19394
19395 TC90522 MEDIA DRIVER
19396 M:      Akihiro Tsukada <tskd08@gmail.com>
19397 L:      linux-media@vger.kernel.org
19398 S:      Odd Fixes
19399 F:      drivers/media/dvb-frontends/tc90522*
19400
19401 TCP LOW PRIORITY MODULE
19402 M:      "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
19403 M:      "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
19404 S:      Maintained
19405 W:      http://tcp-lp-mod.sourceforge.net/
19406 F:      net/ipv4/tcp_lp.c
19407
19408 TDA10071 MEDIA DRIVER
19409 M:      Antti Palosaari <crope@iki.fi>
19410 L:      linux-media@vger.kernel.org
19411 S:      Maintained
19412 W:      https://linuxtv.org
19413 W:      http://palosaari.fi/linux/
19414 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19415 T:      git git://linuxtv.org/anttip/media_tree.git
19416 F:      drivers/media/dvb-frontends/tda10071*
19417
19418 TDA18212 MEDIA DRIVER
19419 M:      Antti Palosaari <crope@iki.fi>
19420 L:      linux-media@vger.kernel.org
19421 S:      Maintained
19422 W:      https://linuxtv.org
19423 W:      http://palosaari.fi/linux/
19424 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19425 T:      git git://linuxtv.org/anttip/media_tree.git
19426 F:      drivers/media/tuners/tda18212*
19427
19428 TDA18218 MEDIA DRIVER
19429 M:      Antti Palosaari <crope@iki.fi>
19430 L:      linux-media@vger.kernel.org
19431 S:      Maintained
19432 W:      https://linuxtv.org
19433 W:      http://palosaari.fi/linux/
19434 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19435 T:      git git://linuxtv.org/anttip/media_tree.git
19436 F:      drivers/media/tuners/tda18218*
19437
19438 TDA18250 MEDIA DRIVER
19439 M:      Olli Salonen <olli.salonen@iki.fi>
19440 L:      linux-media@vger.kernel.org
19441 S:      Maintained
19442 W:      https://linuxtv.org
19443 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19444 T:      git git://linuxtv.org/media_tree.git
19445 F:      drivers/media/tuners/tda18250*
19446
19447 TDA18271 MEDIA DRIVER
19448 M:      Michael Krufky <mkrufky@linuxtv.org>
19449 L:      linux-media@vger.kernel.org
19450 S:      Maintained
19451 W:      https://linuxtv.org
19452 W:      http://github.com/mkrufky
19453 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19454 T:      git git://linuxtv.org/mkrufky/tuners.git
19455 F:      drivers/media/tuners/tda18271*
19456
19457 TDA1997x MEDIA DRIVER
19458 M:      Tim Harvey <tharvey@gateworks.com>
19459 L:      linux-media@vger.kernel.org
19460 S:      Maintained
19461 W:      https://linuxtv.org
19462 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19463 F:      drivers/media/i2c/tda1997x.*
19464
19465 TDA827x MEDIA DRIVER
19466 M:      Michael Krufky <mkrufky@linuxtv.org>
19467 L:      linux-media@vger.kernel.org
19468 S:      Maintained
19469 W:      https://linuxtv.org
19470 W:      http://github.com/mkrufky
19471 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19472 T:      git git://linuxtv.org/mkrufky/tuners.git
19473 F:      drivers/media/tuners/tda8290.*
19474
19475 TDA8290 MEDIA DRIVER
19476 M:      Michael Krufky <mkrufky@linuxtv.org>
19477 L:      linux-media@vger.kernel.org
19478 S:      Maintained
19479 W:      https://linuxtv.org
19480 W:      http://github.com/mkrufky
19481 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19482 T:      git git://linuxtv.org/mkrufky/tuners.git
19483 F:      drivers/media/tuners/tda8290.*
19484
19485 TDA9840 MEDIA DRIVER
19486 M:      Hans Verkuil <hverkuil@xs4all.nl>
19487 L:      linux-media@vger.kernel.org
19488 S:      Maintained
19489 W:      https://linuxtv.org
19490 T:      git git://linuxtv.org/media_tree.git
19491 F:      drivers/media/i2c/tda9840*
19492
19493 TEA5761 TUNER DRIVER
19494 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
19495 L:      linux-media@vger.kernel.org
19496 S:      Odd fixes
19497 W:      https://linuxtv.org
19498 T:      git git://linuxtv.org/media_tree.git
19499 F:      drivers/media/tuners/tea5761.*
19500
19501 TEA5767 TUNER DRIVER
19502 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
19503 L:      linux-media@vger.kernel.org
19504 S:      Maintained
19505 W:      https://linuxtv.org
19506 T:      git git://linuxtv.org/media_tree.git
19507 F:      drivers/media/tuners/tea5767.*
19508
19509 TEA6415C MEDIA DRIVER
19510 M:      Hans Verkuil <hverkuil@xs4all.nl>
19511 L:      linux-media@vger.kernel.org
19512 S:      Maintained
19513 W:      https://linuxtv.org
19514 T:      git git://linuxtv.org/media_tree.git
19515 F:      drivers/media/i2c/tea6415c*
19516
19517 TEA6420 MEDIA DRIVER
19518 M:      Hans Verkuil <hverkuil@xs4all.nl>
19519 L:      linux-media@vger.kernel.org
19520 S:      Maintained
19521 W:      https://linuxtv.org
19522 T:      git git://linuxtv.org/media_tree.git
19523 F:      drivers/media/i2c/tea6420*
19524
19525 TEAM DRIVER
19526 M:      Jiri Pirko <jiri@resnulli.us>
19527 L:      netdev@vger.kernel.org
19528 S:      Supported
19529 F:      drivers/net/team/
19530 F:      include/linux/if_team.h
19531 F:      include/uapi/linux/if_team.h
19532
19533 TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
19534 M:      "Savoir-faire Linux Inc." <kernel@savoirfairelinux.com>
19535 S:      Maintained
19536 F:      arch/x86/platform/ts5500/
19537
19538 TECHNOTREND USB IR RECEIVER
19539 M:      Sean Young <sean@mess.org>
19540 L:      linux-media@vger.kernel.org
19541 S:      Maintained
19542 F:      drivers/media/rc/ttusbir.c
19543
19544 TECHWELL TW9910 VIDEO DECODER
19545 L:      linux-media@vger.kernel.org
19546 S:      Orphan
19547 F:      drivers/media/i2c/tw9910.c
19548 F:      include/media/i2c/tw9910.h
19549
19550 TEE SUBSYSTEM
19551 M:      Jens Wiklander <jens.wiklander@linaro.org>
19552 R:      Sumit Garg <sumit.garg@linaro.org>
19553 L:      op-tee@lists.trustedfirmware.org
19554 S:      Maintained
19555 F:      Documentation/staging/tee.rst
19556 F:      drivers/tee/
19557 F:      include/linux/tee_drv.h
19558 F:      include/uapi/linux/tee.h
19559
19560 TEGRA ARCHITECTURE SUPPORT
19561 M:      Thierry Reding <thierry.reding@gmail.com>
19562 M:      Jonathan Hunter <jonathanh@nvidia.com>
19563 L:      linux-tegra@vger.kernel.org
19564 S:      Supported
19565 Q:      http://patchwork.ozlabs.org/project/linux-tegra/list/
19566 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git
19567 N:      [^a-z]tegra
19568
19569 TEGRA CLOCK DRIVER
19570 M:      Peter De Schrijver <pdeschrijver@nvidia.com>
19571 M:      Prashant Gaikwad <pgaikwad@nvidia.com>
19572 S:      Supported
19573 F:      drivers/clk/tegra/
19574
19575 TEGRA DMA DRIVERS
19576 M:      Laxman Dewangan <ldewangan@nvidia.com>
19577 M:      Jon Hunter <jonathanh@nvidia.com>
19578 S:      Supported
19579 F:      drivers/dma/tegra*
19580
19581 TEGRA I2C DRIVER
19582 M:      Laxman Dewangan <ldewangan@nvidia.com>
19583 R:      Dmitry Osipenko <digetx@gmail.com>
19584 S:      Supported
19585 F:      drivers/i2c/busses/i2c-tegra.c
19586
19587 TEGRA IOMMU DRIVERS
19588 M:      Thierry Reding <thierry.reding@gmail.com>
19589 R:      Krishna Reddy <vdumpa@nvidia.com>
19590 L:      linux-tegra@vger.kernel.org
19591 S:      Supported
19592 F:      drivers/iommu/arm/arm-smmu/arm-smmu-nvidia.c
19593 F:      drivers/iommu/tegra*
19594
19595 TEGRA KBC DRIVER
19596 M:      Laxman Dewangan <ldewangan@nvidia.com>
19597 S:      Supported
19598 F:      drivers/input/keyboard/tegra-kbc.c
19599
19600 TEGRA NAND DRIVER
19601 M:      Stefan Agner <stefan@agner.ch>
19602 M:      Lucas Stach <dev@lynxeye.de>
19603 S:      Maintained
19604 F:      Documentation/devicetree/bindings/mtd/nvidia-tegra20-nand.txt
19605 F:      drivers/mtd/nand/raw/tegra_nand.c
19606
19607 TEGRA PWM DRIVER
19608 M:      Thierry Reding <thierry.reding@gmail.com>
19609 S:      Supported
19610 F:      drivers/pwm/pwm-tegra.c
19611
19612 TEGRA SERIAL DRIVER
19613 M:      Laxman Dewangan <ldewangan@nvidia.com>
19614 S:      Supported
19615 F:      drivers/tty/serial/serial-tegra.c
19616
19617 TEGRA SPI DRIVER
19618 M:      Laxman Dewangan <ldewangan@nvidia.com>
19619 S:      Supported
19620 F:      drivers/spi/spi-tegra*
19621
19622 TEGRA QUAD SPI DRIVER
19623 M:      Thierry Reding <thierry.reding@gmail.com>
19624 M:      Jonathan Hunter <jonathanh@nvidia.com>
19625 M:      Sowjanya Komatineni <skomatineni@nvidia.com>
19626 L:      linux-tegra@vger.kernel.org
19627 S:      Maintained
19628 F:      drivers/spi/spi-tegra210-quad.c
19629
19630 TEGRA VIDEO DRIVER
19631 M:      Thierry Reding <thierry.reding@gmail.com>
19632 M:      Jonathan Hunter <jonathanh@nvidia.com>
19633 M:      Sowjanya Komatineni <skomatineni@nvidia.com>
19634 L:      linux-media@vger.kernel.org
19635 L:      linux-tegra@vger.kernel.org
19636 S:      Maintained
19637 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
19638 F:      drivers/staging/media/tegra-video/
19639
19640 TEGRA XUSB PADCTL DRIVER
19641 M:      JC Kuo <jckuo@nvidia.com>
19642 S:      Supported
19643 F:      drivers/phy/tegra/xusb*
19644
19645 TEHUTI ETHERNET DRIVER
19646 M:      Andy Gospodarek <andy@greyhouse.net>
19647 L:      netdev@vger.kernel.org
19648 S:      Supported
19649 F:      drivers/net/ethernet/tehuti/*
19650
19651 TELECOM CLOCK DRIVER FOR MCPL0010
19652 M:      Mark Gross <markgross@kernel.org>
19653 S:      Supported
19654 F:      drivers/char/tlclk.c
19655
19656 TEMPO SEMICONDUCTOR DRIVERS
19657 M:      Steven Eckhoff <steven.eckhoff.opensource@gmail.com>
19658 S:      Maintained
19659 F:      Documentation/devicetree/bindings/sound/tscs*.txt
19660 F:      sound/soc/codecs/tscs*.c
19661 F:      sound/soc/codecs/tscs*.h
19662
19663 TENSILICA XTENSA PORT (xtensa)
19664 M:      Chris Zankel <chris@zankel.net>
19665 M:      Max Filippov <jcmvbkbc@gmail.com>
19666 L:      linux-xtensa@linux-xtensa.org
19667 S:      Maintained
19668 T:      git git://github.com/czankel/xtensa-linux.git
19669 F:      arch/xtensa/
19670 F:      drivers/irqchip/irq-xtensa-*
19671
19672 TEXAS INSTRUMENTS ASoC DRIVERS
19673 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
19674 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19675 S:      Maintained
19676 F:      Documentation/devicetree/bindings/sound/davinci-mcasp-audio.yaml
19677 F:      sound/soc/ti/
19678
19679 TEXAS INSTRUMENTS' DAC7612 DAC DRIVER
19680 M:      Ricardo Ribalda <ribalda@kernel.org>
19681 L:      linux-iio@vger.kernel.org
19682 S:      Supported
19683 F:      Documentation/devicetree/bindings/iio/dac/ti,dac7612.yaml
19684 F:      drivers/iio/dac/ti-dac7612.c
19685
19686 TEXAS INSTRUMENTS DMA DRIVERS
19687 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
19688 L:      dmaengine@vger.kernel.org
19689 S:      Maintained
19690 F:      Documentation/devicetree/bindings/dma/ti-dma-crossbar.txt
19691 F:      Documentation/devicetree/bindings/dma/ti-edma.txt
19692 F:      Documentation/devicetree/bindings/dma/ti/
19693 F:      drivers/dma/ti/
19694 X:      drivers/dma/ti/cppi41.c
19695 F:      include/linux/dma/k3-udma-glue.h
19696 F:      include/linux/dma/ti-cppi5.h
19697 F:      include/linux/dma/k3-psil.h
19698
19699 TEXAS INSTRUMENTS' SYSTEM CONTROL INTERFACE (TISCI) PROTOCOL DRIVER
19700 M:      Nishanth Menon <nm@ti.com>
19701 M:      Tero Kristo <kristo@kernel.org>
19702 M:      Santosh Shilimkar <ssantosh@kernel.org>
19703 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
19704 S:      Maintained
19705 F:      Documentation/devicetree/bindings/arm/keystone/ti,k3-sci-common.yaml
19706 F:      Documentation/devicetree/bindings/arm/keystone/ti,sci.yaml
19707 F:      Documentation/devicetree/bindings/clock/ti,sci-clk.yaml
19708 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-inta.yaml
19709 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-intr.yaml
19710 F:      Documentation/devicetree/bindings/reset/ti,sci-reset.yaml
19711 F:      Documentation/devicetree/bindings/soc/ti/sci-pm-domain.yaml
19712 F:      drivers/clk/keystone/sci-clk.c
19713 F:      drivers/firmware/ti_sci*
19714 F:      drivers/irqchip/irq-ti-sci-inta.c
19715 F:      drivers/irqchip/irq-ti-sci-intr.c
19716 F:      drivers/reset/reset-ti-sci.c
19717 F:      drivers/soc/ti/ti_sci_inta_msi.c
19718 F:      drivers/soc/ti/ti_sci_pm_domains.c
19719 F:      include/dt-bindings/soc/ti,sci_pm_domain.h
19720 F:      include/linux/soc/ti/ti_sci_inta_msi.h
19721 F:      include/linux/soc/ti/ti_sci_protocol.h
19722
19723 TEXAS INSTRUMENTS TPS23861 PoE PSE DRIVER
19724 M:      Robert Marko <robert.marko@sartura.hr>
19725 M:      Luka Perkov <luka.perkov@sartura.hr>
19726 L:      linux-hwmon@vger.kernel.org
19727 S:      Maintained
19728 F:      Documentation/devicetree/bindings/hwmon/ti,tps23861.yaml
19729 F:      Documentation/hwmon/tps23861.rst
19730 F:      drivers/hwmon/tps23861.c
19731
19732 TEXAS INSTRUMENTS' TMP117 TEMPERATURE SENSOR DRIVER
19733 M:      Puranjay Mohan <puranjay12@gmail.com>
19734 L:      linux-iio@vger.kernel.org
19735 S:      Supported
19736 F:      Documentation/devicetree/bindings/iio/temperature/ti,tmp117.yaml
19737 F:      drivers/iio/temperature/tmp117.c
19738
19739 THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER
19740 M:      Hans Verkuil <hverkuil@xs4all.nl>
19741 L:      linux-media@vger.kernel.org
19742 S:      Maintained
19743 W:      https://linuxtv.org
19744 T:      git git://linuxtv.org/media_tree.git
19745 F:      drivers/media/radio/radio-raremono.c
19746
19747 THERMAL
19748 M:      Rafael J. Wysocki <rafael@kernel.org>
19749 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
19750 R:      Amit Kucheria <amitk@kernel.org>
19751 R:      Zhang Rui <rui.zhang@intel.com>
19752 L:      linux-pm@vger.kernel.org
19753 S:      Supported
19754 Q:      https://patchwork.kernel.org/project/linux-pm/list/
19755 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git thermal
19756 F:      Documentation/ABI/testing/sysfs-class-thermal
19757 F:      Documentation/devicetree/bindings/thermal/
19758 F:      Documentation/driver-api/thermal/
19759 F:      drivers/thermal/
19760 F:      include/linux/cpu_cooling.h
19761 F:      include/linux/thermal.h
19762 F:      include/uapi/linux/thermal.h
19763 F:      tools/lib/thermal/
19764 F:      tools/thermal/
19765
19766 THERMAL DRIVER FOR AMLOGIC SOCS
19767 M:      Guillaume La Roque <glaroque@baylibre.com>
19768 L:      linux-pm@vger.kernel.org
19769 L:      linux-amlogic@lists.infradead.org
19770 S:      Supported
19771 W:      http://linux-meson.com/
19772 F:      Documentation/devicetree/bindings/thermal/amlogic,thermal.yaml
19773 F:      drivers/thermal/amlogic_thermal.c
19774
19775 THERMAL/CPU_COOLING
19776 M:      Amit Daniel Kachhap <amit.kachhap@gmail.com>
19777 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
19778 M:      Viresh Kumar <viresh.kumar@linaro.org>
19779 R:      Lukasz Luba <lukasz.luba@arm.com>
19780 L:      linux-pm@vger.kernel.org
19781 S:      Supported
19782 F:      Documentation/driver-api/thermal/cpu-cooling-api.rst
19783 F:      Documentation/driver-api/thermal/cpu-idle-cooling.rst
19784 F:      drivers/thermal/cpufreq_cooling.c
19785 F:      drivers/thermal/cpuidle_cooling.c
19786 F:      include/linux/cpu_cooling.h
19787
19788 THERMAL/POWER_ALLOCATOR
19789 M:      Lukasz Luba <lukasz.luba@arm.com>
19790 L:      linux-pm@vger.kernel.org
19791 S:      Maintained
19792 F:      Documentation/driver-api/thermal/power_allocator.rst
19793 F:      drivers/thermal/gov_power_allocator.c
19794 F:      include/trace/events/thermal_power_allocator.h
19795
19796 THINKPAD ACPI EXTRAS DRIVER
19797 M:      Henrique de Moraes Holschuh <hmh@hmh.eng.br>
19798 L:      ibm-acpi-devel@lists.sourceforge.net
19799 L:      platform-driver-x86@vger.kernel.org
19800 S:      Maintained
19801 W:      http://ibm-acpi.sourceforge.net
19802 W:      http://thinkwiki.org/wiki/Ibm-acpi
19803 T:      git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
19804 F:      drivers/platform/x86/thinkpad_acpi.c
19805
19806 THINKPAD LMI DRIVER
19807 M:      Mark Pearson <markpearson@lenovo.com>
19808 L:      platform-driver-x86@vger.kernel.org
19809 S:      Maintained
19810 F:      Documentation/ABI/testing/sysfs-class-firmware-attributes
19811 F:      drivers/platform/x86/think-lmi.?
19812
19813 THUNDERBOLT DMA TRAFFIC TEST DRIVER
19814 M:      Isaac Hazan <isaac.hazan@intel.com>
19815 L:      linux-usb@vger.kernel.org
19816 S:      Maintained
19817 F:      drivers/thunderbolt/dma_test.c
19818
19819 THUNDERBOLT DRIVER
19820 M:      Andreas Noever <andreas.noever@gmail.com>
19821 M:      Michael Jamet <michael.jamet@intel.com>
19822 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
19823 M:      Yehezkel Bernat <YehezkelShB@gmail.com>
19824 L:      linux-usb@vger.kernel.org
19825 S:      Maintained
19826 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/westeri/thunderbolt.git
19827 F:      Documentation/admin-guide/thunderbolt.rst
19828 F:      drivers/thunderbolt/
19829 F:      include/linux/thunderbolt.h
19830
19831 THUNDERBOLT NETWORK DRIVER
19832 M:      Michael Jamet <michael.jamet@intel.com>
19833 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
19834 M:      Yehezkel Bernat <YehezkelShB@gmail.com>
19835 L:      netdev@vger.kernel.org
19836 S:      Maintained
19837 F:      drivers/net/thunderbolt.c
19838
19839 THUNDERX GPIO DRIVER
19840 M:      Robert Richter <rric@kernel.org>
19841 S:      Odd Fixes
19842 F:      drivers/gpio/gpio-thunderx.c
19843
19844 TI ADS131E0X ADC SERIES DRIVER
19845 M:      Tomislav Denis <tomislav.denis@avl.com>
19846 L:      linux-iio@vger.kernel.org
19847 S:      Maintained
19848 F:      Documentation/devicetree/bindings/iio/adc/ti,ads131e08.yaml
19849 F:      drivers/iio/adc/ti-ads131e08.c
19850
19851 TI AM437X VPFE DRIVER
19852 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
19853 L:      linux-media@vger.kernel.org
19854 S:      Maintained
19855 W:      https://linuxtv.org
19856 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19857 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
19858 F:      drivers/media/platform/ti/am437x/
19859
19860 TI BANDGAP AND THERMAL DRIVER
19861 M:      Eduardo Valentin <edubezval@gmail.com>
19862 M:      Keerthy <j-keerthy@ti.com>
19863 L:      linux-pm@vger.kernel.org
19864 L:      linux-omap@vger.kernel.org
19865 S:      Maintained
19866 F:      drivers/thermal/ti-soc-thermal/
19867
19868 TI BQ27XXX POWER SUPPLY DRIVER
19869 F:      drivers/power/supply/bq27xxx_battery.c
19870 F:      drivers/power/supply/bq27xxx_battery_i2c.c
19871 F:      include/linux/power/bq27xxx_battery.h
19872
19873 TI CDCE706 CLOCK DRIVER
19874 M:      Max Filippov <jcmvbkbc@gmail.com>
19875 S:      Maintained
19876 F:      drivers/clk/clk-cdce706.c
19877
19878 TI CLOCK DRIVER
19879 M:      Tero Kristo <kristo@kernel.org>
19880 L:      linux-omap@vger.kernel.org
19881 S:      Odd Fixes
19882 F:      drivers/clk/ti/
19883 F:      include/linux/clk/ti.h
19884
19885 TI DAVINCI MACHINE SUPPORT
19886 M:      Sekhar Nori <nsekhar@ti.com>
19887 R:      Bartosz Golaszewski <brgl@bgdev.pl>
19888 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
19889 S:      Supported
19890 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nsekhar/linux-davinci.git
19891 F:      Documentation/devicetree/bindings/i2c/i2c-davinci.txt
19892 F:      arch/arm/boot/dts/da850*
19893 F:      arch/arm/mach-davinci/
19894 F:      drivers/i2c/busses/i2c-davinci.c
19895
19896 TI DAVINCI SERIES CLOCK DRIVER
19897 M:      David Lechner <david@lechnology.com>
19898 R:      Sekhar Nori <nsekhar@ti.com>
19899 S:      Maintained
19900 F:      Documentation/devicetree/bindings/clock/ti/davinci/
19901 F:      drivers/clk/davinci/
19902
19903 TI DAVINCI SERIES GPIO DRIVER
19904 M:      Keerthy <j-keerthy@ti.com>
19905 L:      linux-gpio@vger.kernel.org
19906 S:      Maintained
19907 F:      Documentation/devicetree/bindings/gpio/gpio-davinci.yaml
19908 F:      drivers/gpio/gpio-davinci.c
19909
19910 TI DAVINCI SERIES MEDIA DRIVER
19911 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
19912 L:      linux-media@vger.kernel.org
19913 S:      Maintained
19914 W:      https://linuxtv.org
19915 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19916 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
19917 F:      drivers/media/platform/ti/davinci/
19918 F:      include/media/davinci/
19919
19920 TI ENHANCED QUADRATURE ENCODER PULSE (eQEP) DRIVER
19921 R:      David Lechner <david@lechnology.com>
19922 L:      linux-iio@vger.kernel.org
19923 F:      Documentation/devicetree/bindings/counter/ti-eqep.yaml
19924 F:      drivers/counter/ti-eqep.c
19925
19926 TI ETHERNET SWITCH DRIVER (CPSW)
19927 R:      Grygorii Strashko <grygorii.strashko@ti.com>
19928 L:      linux-omap@vger.kernel.org
19929 L:      netdev@vger.kernel.org
19930 S:      Maintained
19931 F:      drivers/net/ethernet/ti/cpsw*
19932 F:      drivers/net/ethernet/ti/davinci*
19933
19934 TI FLASH MEDIA MEMORYSTICK/MMC DRIVERS
19935 M:      Alex Dubov <oakad@yahoo.com>
19936 S:      Maintained
19937 W:      http://tifmxx.berlios.de/
19938 F:      drivers/memstick/host/tifm_ms.c
19939 F:      drivers/misc/tifm*
19940 F:      drivers/mmc/host/tifm_sd.c
19941 F:      include/linux/tifm.h
19942
19943 TI KEYSTONE MULTICORE NAVIGATOR DRIVERS
19944 M:      Nishanth Menon <nm@ti.com>
19945 M:      Santosh Shilimkar <ssantosh@kernel.org>
19946 L:      linux-kernel@vger.kernel.org
19947 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
19948 S:      Maintained
19949 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ti/linux.git
19950 F:      drivers/soc/ti/*
19951
19952 TI LM49xxx FAMILY ASoC CODEC DRIVERS
19953 M:      M R Swami Reddy <mr.swami.reddy@ti.com>
19954 M:      Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
19955 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19956 S:      Maintained
19957 F:      sound/soc/codecs/isabelle*
19958 F:      sound/soc/codecs/lm49453*
19959
19960 TI PCM3060 ASoC CODEC DRIVER
19961 M:      Kirill Marinushkin <kmarinushkin@birdec.com>
19962 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19963 S:      Maintained
19964 F:      Documentation/devicetree/bindings/sound/pcm3060.txt
19965 F:      sound/soc/codecs/pcm3060*
19966
19967 TI TAS571X FAMILY ASoC CODEC DRIVER
19968 M:      Kevin Cernekee <cernekee@chromium.org>
19969 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19970 S:      Odd Fixes
19971 F:      sound/soc/codecs/tas571x*
19972
19973 TI TRF7970A NFC DRIVER
19974 M:      Mark Greer <mgreer@animalcreek.com>
19975 L:      linux-wireless@vger.kernel.org
19976 L:      linux-nfc@lists.01.org (subscribers-only)
19977 S:      Supported
19978 F:      Documentation/devicetree/bindings/net/nfc/ti,trf7970a.yaml
19979 F:      drivers/nfc/trf7970a.c
19980
19981 TI TSC2046 ADC DRIVER
19982 M:      Oleksij Rempel <o.rempel@pengutronix.de>
19983 R:      kernel@pengutronix.de
19984 L:      linux-iio@vger.kernel.org
19985 S:      Maintained
19986 F:      Documentation/devicetree/bindings/iio/adc/ti,tsc2046.yaml
19987 F:      drivers/iio/adc/ti-tsc2046.c
19988
19989 TI TWL4030 SERIES SOC CODEC DRIVER
19990 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
19991 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19992 S:      Maintained
19993 F:      sound/soc/codecs/twl4030*
19994
19995 TI VPE/CAL DRIVERS
19996 M:      Benoit Parrot <bparrot@ti.com>
19997 L:      linux-media@vger.kernel.org
19998 S:      Maintained
19999 W:      http://linuxtv.org/
20000 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
20001 F:      Documentation/devicetree/bindings/media/ti,cal.yaml
20002 F:      Documentation/devicetree/bindings/media/ti,vpe.yaml
20003 F:      drivers/media/platform/ti/cal/
20004 F:      drivers/media/platform/ti/vpe/
20005
20006 TI WILINK WIRELESS DRIVERS
20007 L:      linux-wireless@vger.kernel.org
20008 S:      Orphan
20009 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wl12xx
20010 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wl1251
20011 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
20012 F:      drivers/net/wireless/ti/
20013 F:      include/linux/wl12xx.h
20014
20015 TIMEKEEPING, CLOCKSOURCE CORE, NTP, ALARMTIMER
20016 M:      John Stultz <jstultz@google.com>
20017 M:      Thomas Gleixner <tglx@linutronix.de>
20018 R:      Stephen Boyd <sboyd@kernel.org>
20019 L:      linux-kernel@vger.kernel.org
20020 S:      Supported
20021 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
20022 F:      include/linux/clocksource.h
20023 F:      include/linux/time.h
20024 F:      include/linux/timex.h
20025 F:      include/uapi/linux/time.h
20026 F:      include/uapi/linux/timex.h
20027 F:      kernel/time/alarmtimer.c
20028 F:      kernel/time/clocksource.c
20029 F:      kernel/time/ntp.c
20030 F:      kernel/time/time*.c
20031 F:      tools/testing/selftests/timers/
20032
20033 TIPC NETWORK LAYER
20034 M:      Jon Maloy <jmaloy@redhat.com>
20035 M:      Ying Xue <ying.xue@windriver.com>
20036 L:      netdev@vger.kernel.org (core kernel code)
20037 L:      tipc-discussion@lists.sourceforge.net (user apps, general discussion)
20038 S:      Maintained
20039 W:      http://tipc.sourceforge.net/
20040 F:      include/uapi/linux/tipc*.h
20041 F:      net/tipc/
20042
20043 TLAN NETWORK DRIVER
20044 M:      Samuel Chessman <chessman@tux.org>
20045 L:      tlan-devel@lists.sourceforge.net (subscribers-only)
20046 S:      Maintained
20047 W:      http://sourceforge.net/projects/tlan/
20048 F:      Documentation/networking/device_drivers/ethernet/ti/tlan.rst
20049 F:      drivers/net/ethernet/ti/tlan.*
20050
20051 TM6000 VIDEO4LINUX DRIVER
20052 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
20053 L:      linux-media@vger.kernel.org
20054 S:      Odd fixes
20055 W:      https://linuxtv.org
20056 T:      git git://linuxtv.org/media_tree.git
20057 F:      Documentation/admin-guide/media/tm6000*
20058 F:      drivers/media/usb/tm6000/
20059
20060 TMIO/SDHI MMC DRIVER
20061 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
20062 L:      linux-mmc@vger.kernel.org
20063 L:      linux-renesas-soc@vger.kernel.org
20064 S:      Supported
20065 F:      drivers/mmc/host/renesas_sdhi*
20066 F:      drivers/mmc/host/tmio_mmc*
20067 F:      include/linux/mfd/tmio.h
20068
20069 TMP401 HARDWARE MONITOR DRIVER
20070 M:      Guenter Roeck <linux@roeck-us.net>
20071 L:      linux-hwmon@vger.kernel.org
20072 S:      Maintained
20073 F:      Documentation/devicetree/bindings/hwmon/ti,tmp401.yaml
20074 F:      Documentation/hwmon/tmp401.rst
20075 F:      drivers/hwmon/tmp401.c
20076
20077 TMP464 HARDWARE MONITOR DRIVER
20078 M:      Agathe Porte <agathe.porte@nokia.com>
20079 M:      Guenter Roeck <linux@roeck-us.net>
20080 L:      linux-hwmon@vger.kernel.org
20081 S:      Maintained
20082 F:      Documentation/devicetree/bindings/hwmon/ti,tmp464.yaml
20083 F:      Documentation/hwmon/tmp464.rst
20084 F:      drivers/hwmon/tmp464.c
20085
20086 TMP513 HARDWARE MONITOR DRIVER
20087 M:      Eric Tremblay <etremblay@distech-controls.com>
20088 L:      linux-hwmon@vger.kernel.org
20089 S:      Maintained
20090 F:      Documentation/hwmon/tmp513.rst
20091 F:      drivers/hwmon/tmp513.c
20092
20093 TMPFS (SHMEM FILESYSTEM)
20094 M:      Hugh Dickins <hughd@google.com>
20095 L:      linux-mm@kvack.org
20096 S:      Maintained
20097 F:      include/linux/shmem_fs.h
20098 F:      mm/shmem.c
20099
20100 TOMOYO SECURITY MODULE
20101 M:      Kentaro Takeda <takedakn@nttdata.co.jp>
20102 M:      Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
20103 L:      tomoyo-dev-en@lists.osdn.me (subscribers-only, for developers in English)
20104 L:      tomoyo-users-en@lists.osdn.me (subscribers-only, for users in English)
20105 L:      tomoyo-dev@lists.osdn.me (subscribers-only, for developers in Japanese)
20106 L:      tomoyo-users@lists.osdn.me (subscribers-only, for users in Japanese)
20107 S:      Maintained
20108 W:      https://tomoyo.osdn.jp/
20109 F:      security/tomoyo/
20110
20111 TOPSTAR LAPTOP EXTRAS DRIVER
20112 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
20113 L:      platform-driver-x86@vger.kernel.org
20114 S:      Maintained
20115 F:      drivers/platform/x86/topstar-laptop.c
20116
20117 TORTURE-TEST MODULES
20118 M:      Davidlohr Bueso <dave@stgolabs.net>
20119 M:      "Paul E. McKenney" <paulmck@kernel.org>
20120 M:      Josh Triplett <josh@joshtriplett.org>
20121 L:      linux-kernel@vger.kernel.org
20122 S:      Supported
20123 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
20124 F:      Documentation/RCU/torture.rst
20125 F:      kernel/locking/locktorture.c
20126 F:      kernel/rcu/rcuscale.c
20127 F:      kernel/rcu/rcutorture.c
20128 F:      kernel/rcu/refscale.c
20129 F:      kernel/torture.c
20130
20131 TOSHIBA ACPI EXTRAS DRIVER
20132 M:      Azael Avalos <coproscefalo@gmail.com>
20133 L:      platform-driver-x86@vger.kernel.org
20134 S:      Maintained
20135 F:      drivers/platform/x86/toshiba_acpi.c
20136
20137 TOSHIBA BLUETOOTH DRIVER
20138 M:      Azael Avalos <coproscefalo@gmail.com>
20139 L:      platform-driver-x86@vger.kernel.org
20140 S:      Maintained
20141 F:      drivers/platform/x86/toshiba_bluetooth.c
20142
20143 TOSHIBA HDD ACTIVE PROTECTION SENSOR DRIVER
20144 M:      Azael Avalos <coproscefalo@gmail.com>
20145 L:      platform-driver-x86@vger.kernel.org
20146 S:      Maintained
20147 F:      drivers/platform/x86/toshiba_haps.c
20148
20149 TOSHIBA SMM DRIVER
20150 M:      Jonathan Buzzard <jonathan@buzzard.org.uk>
20151 S:      Maintained
20152 W:      http://www.buzzard.org.uk/toshiba/
20153 F:      drivers/char/toshiba.c
20154 F:      include/linux/toshiba.h
20155 F:      include/uapi/linux/toshiba.h
20156
20157 TOSHIBA TC358743 DRIVER
20158 M:      Mats Randgaard <matrandg@cisco.com>
20159 L:      linux-media@vger.kernel.org
20160 S:      Maintained
20161 F:      drivers/media/i2c/tc358743*
20162 F:      include/media/i2c/tc358743.h
20163
20164 TOSHIBA WMI HOTKEYS DRIVER
20165 M:      Azael Avalos <coproscefalo@gmail.com>
20166 L:      platform-driver-x86@vger.kernel.org
20167 S:      Maintained
20168 F:      drivers/platform/x86/toshiba-wmi.c
20169
20170 TPM DEVICE DRIVER
20171 M:      Peter Huewe <peterhuewe@gmx.de>
20172 M:      Jarkko Sakkinen <jarkko@kernel.org>
20173 R:      Jason Gunthorpe <jgg@ziepe.ca>
20174 L:      linux-integrity@vger.kernel.org
20175 S:      Maintained
20176 W:      https://kernsec.org/wiki/index.php/Linux_Kernel_Integrity
20177 Q:      https://patchwork.kernel.org/project/linux-integrity/list/
20178 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jarkko/linux-tpmdd.git
20179 F:      drivers/char/tpm/
20180
20181 TRACING
20182 M:      Steven Rostedt <rostedt@goodmis.org>
20183 M:      Ingo Molnar <mingo@redhat.com>
20184 S:      Maintained
20185 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rostedt/linux-trace.git
20186 F:      Documentation/trace/ftrace.rst
20187 F:      arch/*/*/*/*ftrace*
20188 F:      arch/*/*/*ftrace*
20189 F:      fs/tracefs/
20190 F:      include/*/ftrace.h
20191 F:      include/linux/trace*.h
20192 F:      include/trace/
20193 F:      kernel/trace/
20194 F:      tools/testing/selftests/ftrace/
20195
20196 TRACING MMIO ACCESSES (MMIOTRACE)
20197 M:      Steven Rostedt <rostedt@goodmis.org>
20198 M:      Ingo Molnar <mingo@kernel.org>
20199 R:      Karol Herbst <karolherbst@gmail.com>
20200 R:      Pekka Paalanen <ppaalanen@gmail.com>
20201 L:      linux-kernel@vger.kernel.org
20202 L:      nouveau@lists.freedesktop.org
20203 S:      Maintained
20204 F:      arch/x86/mm/kmmio.c
20205 F:      arch/x86/mm/mmio-mod.c
20206 F:      arch/x86/mm/testmmiotrace.c
20207 F:      include/linux/mmiotrace.h
20208 F:      kernel/trace/trace_mmiotrace.c
20209
20210 TRACING OS NOISE / LATENCY TRACERS
20211 M:      Steven Rostedt <rostedt@goodmis.org>
20212 M:      Daniel Bristot de Oliveira <bristot@kernel.org>
20213 S:      Maintained
20214 F:      kernel/trace/trace_osnoise.c
20215 F:      include/trace/events/osnoise.h
20216 F:      kernel/trace/trace_hwlat.c
20217 F:      kernel/trace/trace_irqsoff.c
20218 F:      kernel/trace/trace_sched_wakeup.c
20219 F:      Documentation/trace/osnoise-tracer.rst
20220 F:      Documentation/trace/timerlat-tracer.rst
20221 F:      Documentation/trace/hwlat_detector.rst
20222 F:      arch/*/kernel/trace.c
20223
20224 Real-time Linux Analysis (RTLA) tools
20225 M:      Daniel Bristot de Oliveira <bristot@kernel.org>
20226 M:      Steven Rostedt <rostedt@goodmis.org>
20227 L:      linux-trace-devel@vger.kernel.org
20228 S:      Maintained
20229 F:      Documentation/tools/rtla/
20230 F:      tools/tracing/rtla/
20231
20232 TRADITIONAL CHINESE DOCUMENTATION
20233 M:      Hu Haowen <src.res@email.cn>
20234 L:      linux-doc-tw-discuss@lists.sourceforge.net
20235 S:      Maintained
20236 W:      https://github.com/srcres258/linux-doc
20237 T:      git git://github.com/srcres258/linux-doc.git doc-zh-tw
20238 F:      Documentation/translations/zh_TW/
20239
20240 TTY LAYER
20241 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
20242 M:      Jiri Slaby <jirislaby@kernel.org>
20243 S:      Supported
20244 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
20245 F:      Documentation/driver-api/serial/
20246 F:      drivers/tty/
20247 F:      drivers/tty/serial/serial_core.c
20248 F:      include/linux/selection.h
20249 F:      include/linux/serial.h
20250 F:      include/linux/serial_core.h
20251 F:      include/linux/sysrq.h
20252 F:      include/linux/tty*.h
20253 F:      include/linux/vt.h
20254 F:      include/linux/vt_*.h
20255 F:      include/uapi/linux/serial.h
20256 F:      include/uapi/linux/serial_core.h
20257 F:      include/uapi/linux/tty.h
20258
20259 TUA9001 MEDIA DRIVER
20260 M:      Antti Palosaari <crope@iki.fi>
20261 L:      linux-media@vger.kernel.org
20262 S:      Maintained
20263 W:      https://linuxtv.org
20264 W:      http://palosaari.fi/linux/
20265 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
20266 T:      git git://linuxtv.org/anttip/media_tree.git
20267 F:      drivers/media/tuners/tua9001*
20268
20269 TULIP NETWORK DRIVERS
20270 L:      netdev@vger.kernel.org
20271 L:      linux-parisc@vger.kernel.org
20272 S:      Orphan
20273 F:      drivers/net/ethernet/dec/tulip/
20274
20275 TUN/TAP driver
20276 M:      Maxim Krasnyansky <maxk@qti.qualcomm.com>
20277 S:      Maintained
20278 W:      http://vtun.sourceforge.net/tun
20279 F:      Documentation/networking/tuntap.rst
20280 F:      arch/um/os-Linux/drivers/
20281
20282 TURBOCHANNEL SUBSYSTEM
20283 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
20284 M:      Ralf Baechle <ralf@linux-mips.org>
20285 L:      linux-mips@vger.kernel.org
20286 S:      Maintained
20287 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
20288 F:      drivers/tc/
20289 F:      include/linux/tc.h
20290
20291 TURBOSTAT UTILITY
20292 M:      "Len Brown" <lenb@kernel.org>
20293 L:      linux-pm@vger.kernel.org
20294 S:      Supported
20295 Q:      https://patchwork.kernel.org/project/linux-pm/list/
20296 B:      https://bugzilla.kernel.org
20297 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git turbostat
20298 F:      tools/power/x86/turbostat/
20299
20300 TW5864 VIDEO4LINUX DRIVER
20301 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
20302 M:      Anton Sviridenko <anton@corp.bluecherry.net>
20303 M:      Andrey Utkin <andrey.utkin@corp.bluecherry.net>
20304 M:      Andrey Utkin <andrey_utkin@fastmail.com>
20305 L:      linux-media@vger.kernel.org
20306 S:      Supported
20307 F:      drivers/media/pci/tw5864/
20308
20309 TW68 VIDEO4LINUX DRIVER
20310 M:      Hans Verkuil <hverkuil@xs4all.nl>
20311 L:      linux-media@vger.kernel.org
20312 S:      Odd Fixes
20313 W:      https://linuxtv.org
20314 T:      git git://linuxtv.org/media_tree.git
20315 F:      drivers/media/pci/tw68/
20316
20317 TW686X VIDEO4LINUX DRIVER
20318 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
20319 L:      linux-media@vger.kernel.org
20320 S:      Maintained
20321 W:      http://linuxtv.org
20322 T:      git git://linuxtv.org/media_tree.git
20323 F:      drivers/media/pci/tw686x/
20324
20325 U-BOOT ENVIRONMENT VARIABLES
20326 M:      Rafał Miłecki <rafal@milecki.pl>
20327 S:      Maintained
20328 F:      Documentation/devicetree/bindings/nvmem/u-boot,env.yaml
20329
20330 UACCE ACCELERATOR FRAMEWORK
20331 M:      Zhangfei Gao <zhangfei.gao@linaro.org>
20332 M:      Zhou Wang <wangzhou1@hisilicon.com>
20333 L:      linux-accelerators@lists.ozlabs.org
20334 L:      linux-kernel@vger.kernel.org
20335 S:      Maintained
20336 F:      Documentation/ABI/testing/sysfs-driver-uacce
20337 F:      Documentation/misc-devices/uacce.rst
20338 F:      drivers/misc/uacce/
20339 F:      include/linux/uacce.h
20340 F:      include/uapi/misc/uacce/
20341
20342 UBI FILE SYSTEM (UBIFS)
20343 M:      Richard Weinberger <richard@nod.at>
20344 L:      linux-mtd@lists.infradead.org
20345 S:      Supported
20346 W:      http://www.linux-mtd.infradead.org/doc/ubifs.html
20347 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
20348 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
20349 F:      Documentation/ABI/testing/sysfs-fs-ubifs
20350 F:      Documentation/filesystems/ubifs-authentication.rst
20351 F:      Documentation/filesystems/ubifs.rst
20352 F:      fs/ubifs/
20353
20354 UCLINUX (M68KNOMMU AND COLDFIRE)
20355 M:      Greg Ungerer <gerg@linux-m68k.org>
20356 L:      linux-m68k@lists.linux-m68k.org
20357 L:      uclinux-dev@uclinux.org  (subscribers-only)
20358 S:      Maintained
20359 W:      http://www.linux-m68k.org/
20360 W:      http://www.uclinux.org/
20361 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git
20362 F:      arch/m68k/*/*_no.*
20363 F:      arch/m68k/68*/
20364 F:      arch/m68k/coldfire/
20365 F:      arch/m68k/include/asm/*_no.*
20366
20367 UDF FILESYSTEM
20368 M:      Jan Kara <jack@suse.com>
20369 S:      Maintained
20370 F:      Documentation/filesystems/udf.rst
20371 F:      fs/udf/
20372
20373 UDRAW TABLET
20374 M:      Bastien Nocera <hadess@hadess.net>
20375 L:      linux-input@vger.kernel.org
20376 S:      Maintained
20377 F:      drivers/hid/hid-udraw-ps3.c
20378
20379 UFS FILESYSTEM
20380 M:      Evgeniy Dushistov <dushistov@mail.ru>
20381 S:      Maintained
20382 F:      Documentation/admin-guide/ufs.rst
20383 F:      fs/ufs/
20384
20385 UHID USERSPACE HID IO DRIVER
20386 M:      David Rheinsberg <david.rheinsberg@gmail.com>
20387 L:      linux-input@vger.kernel.org
20388 S:      Maintained
20389 F:      drivers/hid/uhid.c
20390 F:      include/uapi/linux/uhid.h
20391
20392 ULPI BUS
20393 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
20394 L:      linux-usb@vger.kernel.org
20395 S:      Maintained
20396 F:      drivers/usb/common/ulpi.c
20397 F:      include/linux/ulpi/
20398
20399 UNICODE SUBSYSTEM
20400 M:      Gabriel Krisman Bertazi <krisman@collabora.com>
20401 L:      linux-fsdevel@vger.kernel.org
20402 S:      Supported
20403 F:      fs/unicode/
20404
20405 UNIFDEF
20406 M:      Tony Finch <dot@dotat.at>
20407 S:      Maintained
20408 W:      http://dotat.at/prog/unifdef
20409 F:      scripts/unifdef.c
20410
20411 UNIFORM CDROM DRIVER
20412 M:      Phillip Potter <phil@philpotter.co.uk>
20413 S:      Maintained
20414 F:      Documentation/cdrom/
20415 F:      drivers/cdrom/cdrom.c
20416 F:      include/linux/cdrom.h
20417 F:      include/uapi/linux/cdrom.h
20418
20419 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
20420 R:      Alim Akhtar <alim.akhtar@samsung.com>
20421 R:      Avri Altman <avri.altman@wdc.com>
20422 R:      Bart Van Assche <bvanassche@acm.org>
20423 L:      linux-scsi@vger.kernel.org
20424 S:      Supported
20425 F:      Documentation/devicetree/bindings/ufs/
20426 F:      Documentation/scsi/ufs.rst
20427 F:      drivers/ufs/core/
20428
20429 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER DWC HOOKS
20430 M:      Pedro Sousa <pedrom.sousa@synopsys.com>
20431 L:      linux-scsi@vger.kernel.org
20432 S:      Supported
20433 F:      drivers/ufs/host/*dwc*
20434
20435 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER MEDIATEK HOOKS
20436 M:      Stanley Chu <stanley.chu@mediatek.com>
20437 L:      linux-scsi@vger.kernel.org
20438 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
20439 S:      Maintained
20440 F:      drivers/ufs/host/ufs-mediatek*
20441
20442 UNSORTED BLOCK IMAGES (UBI)
20443 M:      Richard Weinberger <richard@nod.at>
20444 L:      linux-mtd@lists.infradead.org
20445 S:      Supported
20446 W:      http://www.linux-mtd.infradead.org/
20447 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
20448 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
20449 F:      drivers/mtd/ubi/
20450 F:      include/linux/mtd/ubi.h
20451 F:      include/uapi/mtd/ubi-user.h
20452
20453 USB "USBNET" DRIVER FRAMEWORK
20454 M:      Oliver Neukum <oneukum@suse.com>
20455 L:      netdev@vger.kernel.org
20456 S:      Maintained
20457 W:      http://www.linux-usb.org/usbnet
20458 F:      drivers/net/usb/usbnet.c
20459 F:      include/linux/usb/usbnet.h
20460
20461 USB ACM DRIVER
20462 M:      Oliver Neukum <oneukum@suse.com>
20463 L:      linux-usb@vger.kernel.org
20464 S:      Maintained
20465 F:      Documentation/usb/acm.rst
20466 F:      drivers/usb/class/cdc-acm.*
20467
20468 USB APPLE MFI FASTCHARGE DRIVER
20469 M:      Bastien Nocera <hadess@hadess.net>
20470 L:      linux-usb@vger.kernel.org
20471 S:      Maintained
20472 F:      drivers/usb/misc/apple-mfi-fastcharge.c
20473
20474 USB AR5523 WIRELESS DRIVER
20475 M:      Pontus Fuchs <pontus.fuchs@gmail.com>
20476 L:      linux-wireless@vger.kernel.org
20477 S:      Maintained
20478 F:      drivers/net/wireless/ath/ar5523/
20479
20480 USB ATTACHED SCSI
20481 M:      Oliver Neukum <oneukum@suse.com>
20482 L:      linux-usb@vger.kernel.org
20483 L:      linux-scsi@vger.kernel.org
20484 S:      Maintained
20485 F:      drivers/usb/storage/uas.c
20486
20487 USB CDC ETHERNET DRIVER
20488 M:      Oliver Neukum <oliver@neukum.org>
20489 L:      linux-usb@vger.kernel.org
20490 S:      Maintained
20491 F:      drivers/net/usb/cdc_*.c
20492 F:      include/uapi/linux/usb/cdc.h
20493
20494 USB CHAOSKEY DRIVER
20495 M:      Keith Packard <keithp@keithp.com>
20496 L:      linux-usb@vger.kernel.org
20497 S:      Maintained
20498 F:      drivers/usb/misc/chaoskey.c
20499
20500 USB CYPRESS C67X00 DRIVER
20501 L:      linux-usb@vger.kernel.org
20502 S:      Orphan
20503 F:      drivers/usb/c67x00/
20504
20505 USB DAVICOM DM9601 DRIVER
20506 M:      Peter Korsgaard <peter@korsgaard.com>
20507 L:      netdev@vger.kernel.org
20508 S:      Maintained
20509 W:      http://www.linux-usb.org/usbnet
20510 F:      drivers/net/usb/dm9601.c
20511
20512 USB EHCI DRIVER
20513 M:      Alan Stern <stern@rowland.harvard.edu>
20514 L:      linux-usb@vger.kernel.org
20515 S:      Maintained
20516 F:      Documentation/usb/ehci.rst
20517 F:      drivers/usb/host/ehci*
20518
20519 USB GADGET/PERIPHERAL SUBSYSTEM
20520 M:      Felipe Balbi <balbi@kernel.org>
20521 L:      linux-usb@vger.kernel.org
20522 S:      Maintained
20523 W:      http://www.linux-usb.org/gadget
20524 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
20525 F:      drivers/usb/gadget/
20526 F:      include/linux/usb/gadget*
20527
20528 USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
20529 M:      Jiri Kosina <jikos@kernel.org>
20530 M:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
20531 L:      linux-usb@vger.kernel.org
20532 S:      Maintained
20533 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
20534 F:      Documentation/hid/hiddev.rst
20535 F:      drivers/hid/usbhid/
20536
20537 USB INTEL XHCI ROLE MUX DRIVER
20538 M:      Hans de Goede <hdegoede@redhat.com>
20539 L:      linux-usb@vger.kernel.org
20540 S:      Maintained
20541 F:      drivers/usb/roles/intel-xhci-usb-role-switch.c
20542
20543 USB IP DRIVER FOR HISILICON KIRIN 960
20544 M:      Yu Chen <chenyu56@huawei.com>
20545 M:      Binghui Wang <wangbinghui@hisilicon.com>
20546 L:      linux-usb@vger.kernel.org
20547 S:      Maintained
20548 F:      Documentation/devicetree/bindings/phy/hisilicon,hi3660-usb3.yaml
20549 F:      drivers/phy/hisilicon/phy-hi3660-usb3.c
20550
20551 USB IP DRIVER FOR HISILICON KIRIN 970
20552 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
20553 L:      linux-usb@vger.kernel.org
20554 S:      Maintained
20555 F:      Documentation/devicetree/bindings/phy/hisilicon,hi3670-usb3.yaml
20556 F:      drivers/phy/hisilicon/phy-hi3670-usb3.c
20557
20558 USB ISP116X DRIVER
20559 M:      Olav Kongas <ok@artecdesign.ee>
20560 L:      linux-usb@vger.kernel.org
20561 S:      Maintained
20562 F:      drivers/usb/host/isp116x*
20563 F:      include/linux/usb/isp116x.h
20564
20565 USB ISP1760 DRIVER
20566 M:      Rui Miguel Silva <rui.silva@linaro.org>
20567 L:      linux-usb@vger.kernel.org
20568 S:      Maintained
20569 F:      drivers/usb/isp1760/*
20570 F:      Documentation/devicetree/bindings/usb/nxp,isp1760.yaml
20571
20572 USB LAN78XX ETHERNET DRIVER
20573 M:      Woojung Huh <woojung.huh@microchip.com>
20574 M:      UNGLinuxDriver@microchip.com
20575 L:      netdev@vger.kernel.org
20576 S:      Maintained
20577 F:      Documentation/devicetree/bindings/net/microchip,lan78xx.txt
20578 F:      drivers/net/usb/lan78xx.*
20579 F:      include/dt-bindings/net/microchip-lan78xx.h
20580
20581 USB MASS STORAGE DRIVER
20582 M:      Alan Stern <stern@rowland.harvard.edu>
20583 L:      linux-usb@vger.kernel.org
20584 L:      usb-storage@lists.one-eyed-alien.net
20585 S:      Maintained
20586 F:      drivers/usb/storage/
20587
20588 USB MIDI DRIVER
20589 M:      Clemens Ladisch <clemens@ladisch.de>
20590 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
20591 S:      Maintained
20592 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
20593 F:      sound/usb/midi.*
20594
20595 USB NETWORKING DRIVERS
20596 L:      linux-usb@vger.kernel.org
20597 S:      Odd Fixes
20598 F:      drivers/net/usb/
20599
20600 USB OHCI DRIVER
20601 M:      Alan Stern <stern@rowland.harvard.edu>
20602 L:      linux-usb@vger.kernel.org
20603 S:      Maintained
20604 F:      Documentation/usb/ohci.rst
20605 F:      drivers/usb/host/ohci*
20606
20607 USB OTG FSM (Finite State Machine)
20608 M:      Peter Chen <peter.chen@kernel.org>
20609 L:      linux-usb@vger.kernel.org
20610 S:      Maintained
20611 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
20612 F:      drivers/usb/common/usb-otg-fsm.c
20613
20614 USB OVER IP DRIVER
20615 M:      Valentina Manea <valentina.manea.m@gmail.com>
20616 M:      Shuah Khan <shuah@kernel.org>
20617 M:      Shuah Khan <skhan@linuxfoundation.org>
20618 L:      linux-usb@vger.kernel.org
20619 S:      Maintained
20620 F:      Documentation/usb/usbip_protocol.rst
20621 F:      drivers/usb/usbip/
20622 F:      tools/testing/selftests/drivers/usb/usbip/
20623 F:      tools/usb/usbip/
20624
20625 USB PEGASUS DRIVER
20626 M:      Petko Manolov <petkan@nucleusys.com>
20627 L:      linux-usb@vger.kernel.org
20628 L:      netdev@vger.kernel.org
20629 S:      Maintained
20630 W:      https://github.com/petkan/pegasus
20631 T:      git git://github.com/petkan/pegasus.git
20632 F:      drivers/net/usb/pegasus.*
20633
20634 USB PHY LAYER
20635 M:      Felipe Balbi <balbi@kernel.org>
20636 L:      linux-usb@vger.kernel.org
20637 S:      Maintained
20638 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
20639 F:      drivers/usb/phy/
20640
20641 USB PRINTER DRIVER (usblp)
20642 M:      Pete Zaitcev <zaitcev@redhat.com>
20643 L:      linux-usb@vger.kernel.org
20644 S:      Supported
20645 F:      drivers/usb/class/usblp.c
20646
20647 USB RAW GADGET DRIVER
20648 R:      Andrey Konovalov <andreyknvl@gmail.com>
20649 L:      linux-usb@vger.kernel.org
20650 S:      Maintained
20651 F:      Documentation/usb/raw-gadget.rst
20652 F:      drivers/usb/gadget/legacy/raw_gadget.c
20653 F:      include/uapi/linux/usb/raw_gadget.h
20654
20655 USB QMI WWAN NETWORK DRIVER
20656 M:      Bjørn Mork <bjorn@mork.no>
20657 L:      netdev@vger.kernel.org
20658 S:      Maintained
20659 F:      Documentation/ABI/testing/sysfs-class-net-qmi
20660 F:      drivers/net/usb/qmi_wwan.c
20661
20662 USB RTL8150 DRIVER
20663 M:      Petko Manolov <petkan@nucleusys.com>
20664 L:      linux-usb@vger.kernel.org
20665 L:      netdev@vger.kernel.org
20666 S:      Maintained
20667 W:      https://github.com/petkan/rtl8150
20668 T:      git git://github.com/petkan/rtl8150.git
20669 F:      drivers/net/usb/rtl8150.c
20670
20671 USB SERIAL SUBSYSTEM
20672 M:      Johan Hovold <johan@kernel.org>
20673 L:      linux-usb@vger.kernel.org
20674 S:      Maintained
20675 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/usb-serial.git
20676 F:      Documentation/usb/usb-serial.rst
20677 F:      drivers/usb/serial/
20678 F:      include/linux/usb/serial.h
20679
20680 USB SMSC75XX ETHERNET DRIVER
20681 M:      Steve Glendinning <steve.glendinning@shawell.net>
20682 L:      netdev@vger.kernel.org
20683 S:      Maintained
20684 F:      drivers/net/usb/smsc75xx.*
20685
20686 USB SMSC95XX ETHERNET DRIVER
20687 M:      Steve Glendinning <steve.glendinning@shawell.net>
20688 M:      UNGLinuxDriver@microchip.com
20689 L:      netdev@vger.kernel.org
20690 S:      Maintained
20691 F:      drivers/net/usb/smsc95xx.*
20692
20693 USB SUBSYSTEM
20694 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
20695 L:      linux-usb@vger.kernel.org
20696 S:      Supported
20697 W:      http://www.linux-usb.org
20698 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
20699 F:      Documentation/devicetree/bindings/usb/
20700 F:      Documentation/usb/
20701 F:      drivers/usb/
20702 F:      include/linux/usb.h
20703 F:      include/linux/usb/
20704
20705 USB TYPEC BUS FOR ALTERNATE MODES
20706 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
20707 L:      linux-usb@vger.kernel.org
20708 S:      Maintained
20709 F:      Documentation/ABI/testing/sysfs-bus-typec
20710 F:      Documentation/driver-api/usb/typec_bus.rst
20711 F:      drivers/usb/typec/altmodes/
20712 F:      include/linux/usb/typec_altmode.h
20713
20714 USB TYPEC CLASS
20715 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
20716 L:      linux-usb@vger.kernel.org
20717 S:      Maintained
20718 F:      Documentation/ABI/testing/sysfs-class-typec
20719 F:      Documentation/driver-api/usb/typec.rst
20720 F:      drivers/usb/typec/
20721 F:      include/linux/usb/typec.h
20722
20723 USB TYPEC INTEL PMC MUX DRIVER
20724 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
20725 L:      linux-usb@vger.kernel.org
20726 S:      Maintained
20727 F:      Documentation/firmware-guide/acpi/intel-pmc-mux.rst
20728 F:      drivers/usb/typec/mux/intel_pmc_mux.c
20729
20730 USB TYPEC PI3USB30532 MUX DRIVER
20731 M:      Hans de Goede <hdegoede@redhat.com>
20732 L:      linux-usb@vger.kernel.org
20733 S:      Maintained
20734 F:      drivers/usb/typec/mux/pi3usb30532.c
20735
20736 USB TYPEC PORT CONTROLLER DRIVERS
20737 M:      Guenter Roeck <linux@roeck-us.net>
20738 L:      linux-usb@vger.kernel.org
20739 S:      Maintained
20740 F:      drivers/usb/typec/tcpm/
20741
20742 USB UHCI DRIVER
20743 M:      Alan Stern <stern@rowland.harvard.edu>
20744 L:      linux-usb@vger.kernel.org
20745 S:      Maintained
20746 F:      drivers/usb/host/uhci*
20747
20748 USB VIDEO CLASS
20749 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
20750 L:      linux-media@vger.kernel.org
20751 S:      Maintained
20752 W:      http://www.ideasonboard.org/uvc/
20753 T:      git git://linuxtv.org/media_tree.git
20754 F:      drivers/media/usb/uvc/
20755 F:      include/uapi/linux/uvcvideo.h
20756
20757 USB WEBCAM GADGET
20758 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
20759 L:      linux-usb@vger.kernel.org
20760 S:      Maintained
20761 F:      drivers/usb/gadget/function/*uvc*
20762 F:      drivers/usb/gadget/legacy/webcam.c
20763 F:      include/uapi/linux/usb/g_uvc.h
20764
20765 USB WIRELESS RNDIS DRIVER (rndis_wlan)
20766 M:      Jussi Kivilinna <jussi.kivilinna@iki.fi>
20767 L:      linux-wireless@vger.kernel.org
20768 S:      Maintained
20769 F:      drivers/net/wireless/rndis_wlan.c
20770
20771 USB XHCI DRIVER
20772 M:      Mathias Nyman <mathias.nyman@intel.com>
20773 L:      linux-usb@vger.kernel.org
20774 S:      Supported
20775 F:      drivers/usb/host/pci-quirks*
20776 F:      drivers/usb/host/xhci*
20777
20778 USB ZD1201 DRIVER
20779 L:      linux-wireless@vger.kernel.org
20780 S:      Orphan
20781 W:      http://linux-lc100020.sourceforge.net
20782 F:      drivers/net/wireless/zydas/zd1201.*
20783
20784 USB ZR364XX DRIVER
20785 M:      Antoine Jacquet <royale@zerezo.com>
20786 L:      linux-usb@vger.kernel.org
20787 L:      linux-media@vger.kernel.org
20788 S:      Maintained
20789 W:      http://royale.zerezo.com/zr364xx/
20790 T:      git git://linuxtv.org/media_tree.git
20791 F:      Documentation/admin-guide/media/zr364xx*
20792 F:      drivers/media/usb/zr364xx/
20793
20794 USER-MODE LINUX (UML)
20795 M:      Richard Weinberger <richard@nod.at>
20796 M:      Anton Ivanov <anton.ivanov@cambridgegreys.com>
20797 M:      Johannes Berg <johannes@sipsolutions.net>
20798 L:      linux-um@lists.infradead.org
20799 S:      Maintained
20800 W:      http://user-mode-linux.sourceforge.net
20801 Q:      https://patchwork.ozlabs.org/project/linux-um/list/
20802 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/uml/linux.git next
20803 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/uml/linux.git fixes
20804 F:      Documentation/virt/uml/
20805 F:      arch/um/
20806 F:      arch/x86/um/
20807 F:      fs/hostfs/
20808
20809 USERSPACE COPYIN/COPYOUT (UIOVEC)
20810 M:      Alexander Viro <viro@zeniv.linux.org.uk>
20811 S:      Maintained
20812 F:      include/linux/uio.h
20813 F:      lib/iov_iter.c
20814
20815 USERSPACE DMA BUFFER DRIVER
20816 M:      Gerd Hoffmann <kraxel@redhat.com>
20817 L:      dri-devel@lists.freedesktop.org
20818 S:      Maintained
20819 T:      git git://anongit.freedesktop.org/drm/drm-misc
20820 F:      drivers/dma-buf/udmabuf.c
20821 F:      include/uapi/linux/udmabuf.h
20822
20823 USERSPACE I/O (UIO)
20824 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
20825 S:      Maintained
20826 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
20827 F:      Documentation/driver-api/uio-howto.rst
20828 F:      drivers/uio/
20829 F:      include/linux/uio_driver.h
20830
20831 UTIL-LINUX PACKAGE
20832 M:      Karel Zak <kzak@redhat.com>
20833 L:      util-linux@vger.kernel.org
20834 S:      Maintained
20835 W:      http://en.wikipedia.org/wiki/Util-linux
20836 T:      git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
20837
20838 UUID HELPERS
20839 M:      Christoph Hellwig <hch@lst.de>
20840 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
20841 L:      linux-kernel@vger.kernel.org
20842 S:      Maintained
20843 T:      git git://git.infradead.org/users/hch/uuid.git
20844 F:      include/linux/uuid.h
20845 F:      include/uapi/linux/uuid.h
20846 F:      lib/test_uuid.c
20847 F:      lib/uuid.c
20848
20849 UV SYSFS DRIVER
20850 M:      Justin Ernst <justin.ernst@hpe.com>
20851 L:      platform-driver-x86@vger.kernel.org
20852 S:      Maintained
20853 F:      drivers/platform/x86/uv_sysfs.c
20854
20855 UVESAFB DRIVER
20856 M:      Michal Januszewski <spock@gentoo.org>
20857 L:      linux-fbdev@vger.kernel.org
20858 S:      Maintained
20859 W:      https://github.com/mjanusz/v86d
20860 F:      Documentation/fb/uvesafb.rst
20861 F:      drivers/video/fbdev/uvesafb.*
20862
20863 Ux500 CLOCK DRIVERS
20864 M:      Ulf Hansson <ulf.hansson@linaro.org>
20865 L:      linux-clk@vger.kernel.org
20866 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
20867 S:      Maintained
20868 F:      drivers/clk/ux500/
20869
20870 VF610 NAND DRIVER
20871 M:      Stefan Agner <stefan@agner.ch>
20872 L:      linux-mtd@lists.infradead.org
20873 S:      Supported
20874 F:      drivers/mtd/nand/raw/vf610_nfc.c
20875
20876 VFAT/FAT/MSDOS FILESYSTEM
20877 M:      OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
20878 S:      Maintained
20879 F:      Documentation/filesystems/vfat.rst
20880 F:      fs/fat/
20881
20882 VFIO DRIVER
20883 M:      Alex Williamson <alex.williamson@redhat.com>
20884 R:      Cornelia Huck <cohuck@redhat.com>
20885 L:      kvm@vger.kernel.org
20886 S:      Maintained
20887 T:      git git://github.com/awilliam/linux-vfio.git
20888 F:      Documentation/driver-api/vfio.rst
20889 F:      drivers/vfio/
20890 F:      include/linux/vfio.h
20891 F:      include/linux/vfio_pci_core.h
20892 F:      include/uapi/linux/vfio.h
20893
20894 VFIO FSL-MC DRIVER
20895 M:      Diana Craciun <diana.craciun@oss.nxp.com>
20896 L:      kvm@vger.kernel.org
20897 S:      Maintained
20898 F:      drivers/vfio/fsl-mc/
20899
20900 VFIO HISILICON PCI DRIVER
20901 M:      Longfang Liu <liulongfang@huawei.com>
20902 M:      Shameer Kolothum <shameerali.kolothum.thodi@huawei.com>
20903 L:      kvm@vger.kernel.org
20904 S:      Maintained
20905 F:      drivers/vfio/pci/hisilicon/
20906
20907 VFIO MEDIATED DEVICE DRIVERS
20908 M:      Kirti Wankhede <kwankhede@nvidia.com>
20909 L:      kvm@vger.kernel.org
20910 S:      Maintained
20911 F:      Documentation/driver-api/vfio-mediated-device.rst
20912 F:      drivers/vfio/mdev/
20913 F:      include/linux/mdev.h
20914 F:      samples/vfio-mdev/
20915
20916 VFIO PCI DEVICE SPECIFIC DRIVERS
20917 R:      Jason Gunthorpe <jgg@nvidia.com>
20918 R:      Yishai Hadas <yishaih@nvidia.com>
20919 R:      Shameer Kolothum <shameerali.kolothum.thodi@huawei.com>
20920 R:      Kevin Tian <kevin.tian@intel.com>
20921 L:      kvm@vger.kernel.org
20922 S:      Maintained
20923 P:      Documentation/driver-api/vfio-pci-device-specific-driver-acceptance.rst
20924 F:      drivers/vfio/pci/*/
20925
20926 VFIO PLATFORM DRIVER
20927 M:      Eric Auger <eric.auger@redhat.com>
20928 L:      kvm@vger.kernel.org
20929 S:      Maintained
20930 F:      drivers/vfio/platform/
20931
20932 VFIO MLX5 PCI DRIVER
20933 M:      Yishai Hadas <yishaih@nvidia.com>
20934 L:      kvm@vger.kernel.org
20935 S:      Maintained
20936 F:      drivers/vfio/pci/mlx5/
20937
20938 VGA_SWITCHEROO
20939 R:      Lukas Wunner <lukas@wunner.de>
20940 S:      Maintained
20941 T:      git git://anongit.freedesktop.org/drm/drm-misc
20942 F:      Documentation/gpu/vga-switcheroo.rst
20943 F:      drivers/gpu/vga/vga_switcheroo.c
20944 F:      include/linux/vga_switcheroo.h
20945
20946 VIA RHINE NETWORK DRIVER
20947 S:      Maintained
20948 M:      Kevin Brace <kevinbrace@bracecomputerlab.com>
20949 F:      drivers/net/ethernet/via/via-rhine.c
20950
20951 VIA SD/MMC CARD CONTROLLER DRIVER
20952 M:      Bruce Chang <brucechang@via.com.tw>
20953 M:      Harald Welte <HaraldWelte@viatech.com>
20954 S:      Maintained
20955 F:      drivers/mmc/host/via-sdmmc.c
20956
20957 VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
20958 M:      Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
20959 L:      linux-fbdev@vger.kernel.org
20960 S:      Maintained
20961 F:      drivers/video/fbdev/via/
20962 F:      include/linux/via-core.h
20963 F:      include/linux/via-gpio.h
20964 F:      include/linux/via_i2c.h
20965
20966 VIA VELOCITY NETWORK DRIVER
20967 M:      Francois Romieu <romieu@fr.zoreil.com>
20968 L:      netdev@vger.kernel.org
20969 S:      Maintained
20970 F:      drivers/net/ethernet/via/via-velocity.*
20971
20972 VICODEC VIRTUAL CODEC DRIVER
20973 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
20974 L:      linux-media@vger.kernel.org
20975 S:      Maintained
20976 W:      https://linuxtv.org
20977 T:      git git://linuxtv.org/media_tree.git
20978 F:      drivers/media/test-drivers/vicodec/*
20979
20980 VIDEO I2C POLLING DRIVER
20981 M:      Matt Ranostay <matt.ranostay@konsulko.com>
20982 L:      linux-media@vger.kernel.org
20983 S:      Maintained
20984 F:      drivers/media/i2c/video-i2c.c
20985
20986 VIDEO MULTIPLEXER DRIVER
20987 M:      Philipp Zabel <p.zabel@pengutronix.de>
20988 L:      linux-media@vger.kernel.org
20989 S:      Maintained
20990 F:      drivers/media/platform/video-mux.c
20991
20992 VIDEOBUF2 FRAMEWORK
20993 M:      Tomasz Figa <tfiga@chromium.org>
20994 M:      Marek Szyprowski <m.szyprowski@samsung.com>
20995 L:      linux-media@vger.kernel.org
20996 S:      Maintained
20997 F:      drivers/media/common/videobuf2/*
20998 F:      include/media/videobuf2-*
20999
21000 VIMC VIRTUAL MEDIA CONTROLLER DRIVER
21001 M:      Shuah Khan <skhan@linuxfoundation.org>
21002 R:      Kieran Bingham <kieran.bingham@ideasonboard.com>
21003 L:      linux-media@vger.kernel.org
21004 S:      Maintained
21005 W:      https://linuxtv.org
21006 T:      git git://linuxtv.org/media_tree.git
21007 F:      drivers/media/test-drivers/vimc/*
21008
21009 VIRT LIB
21010 M:      Alex Williamson <alex.williamson@redhat.com>
21011 M:      Paolo Bonzini <pbonzini@redhat.com>
21012 L:      kvm@vger.kernel.org
21013 S:      Supported
21014 F:      virt/lib/
21015
21016 VIRTIO AND VHOST VSOCK DRIVER
21017 M:      Stefan Hajnoczi <stefanha@redhat.com>
21018 M:      Stefano Garzarella <sgarzare@redhat.com>
21019 L:      kvm@vger.kernel.org
21020 L:      virtualization@lists.linux-foundation.org
21021 L:      netdev@vger.kernel.org
21022 S:      Maintained
21023 F:      drivers/vhost/vsock.c
21024 F:      include/linux/virtio_vsock.h
21025 F:      include/uapi/linux/virtio_vsock.h
21026 F:      net/vmw_vsock/virtio_transport.c
21027 F:      net/vmw_vsock/virtio_transport_common.c
21028
21029 VIRTIO BLOCK AND SCSI DRIVERS
21030 M:      "Michael S. Tsirkin" <mst@redhat.com>
21031 M:      Jason Wang <jasowang@redhat.com>
21032 R:      Paolo Bonzini <pbonzini@redhat.com>
21033 R:      Stefan Hajnoczi <stefanha@redhat.com>
21034 L:      virtualization@lists.linux-foundation.org
21035 S:      Maintained
21036 F:      drivers/block/virtio_blk.c
21037 F:      drivers/scsi/virtio_scsi.c
21038 F:      drivers/vhost/scsi.c
21039 F:      include/uapi/linux/virtio_blk.h
21040 F:      include/uapi/linux/virtio_scsi.h
21041
21042 VIRTIO CONSOLE DRIVER
21043 M:      Amit Shah <amit@kernel.org>
21044 L:      virtualization@lists.linux-foundation.org
21045 S:      Maintained
21046 F:      drivers/char/virtio_console.c
21047 F:      include/linux/virtio_console.h
21048 F:      include/uapi/linux/virtio_console.h
21049
21050 VIRTIO CORE AND NET DRIVERS
21051 M:      "Michael S. Tsirkin" <mst@redhat.com>
21052 M:      Jason Wang <jasowang@redhat.com>
21053 L:      virtualization@lists.linux-foundation.org
21054 S:      Maintained
21055 F:      Documentation/ABI/testing/sysfs-bus-vdpa
21056 F:      Documentation/devicetree/bindings/virtio/
21057 F:      drivers/block/virtio_blk.c
21058 F:      drivers/crypto/virtio/
21059 F:      drivers/net/virtio_net.c
21060 F:      drivers/vdpa/
21061 F:      drivers/virtio/
21062 F:      include/linux/vdpa.h
21063 F:      include/linux/virtio*.h
21064 F:      include/uapi/linux/virtio_*.h
21065 F:      tools/virtio/
21066
21067 VIRTIO BALLOON
21068 M:      "Michael S. Tsirkin" <mst@redhat.com>
21069 M:      David Hildenbrand <david@redhat.com>
21070 L:      virtualization@lists.linux-foundation.org
21071 S:      Maintained
21072 F:      drivers/virtio/virtio_balloon.c
21073 F:      include/uapi/linux/virtio_balloon.h
21074 F:      include/linux/balloon_compaction.h
21075 F:      mm/balloon_compaction.c
21076
21077 VIRTIO CRYPTO DRIVER
21078 M:      Gonglei <arei.gonglei@huawei.com>
21079 L:      virtualization@lists.linux-foundation.org
21080 L:      linux-crypto@vger.kernel.org
21081 S:      Maintained
21082 F:      drivers/crypto/virtio/
21083 F:      include/uapi/linux/virtio_crypto.h
21084
21085 VIRTIO DRIVERS FOR S390
21086 M:      Cornelia Huck <cohuck@redhat.com>
21087 M:      Halil Pasic <pasic@linux.ibm.com>
21088 M:      Eric Farman <farman@linux.ibm.com>
21089 L:      linux-s390@vger.kernel.org
21090 L:      virtualization@lists.linux-foundation.org
21091 L:      kvm@vger.kernel.org
21092 S:      Supported
21093 F:      arch/s390/include/uapi/asm/virtio-ccw.h
21094 F:      drivers/s390/virtio/
21095
21096 VIRTIO FILE SYSTEM
21097 M:      Vivek Goyal <vgoyal@redhat.com>
21098 M:      Stefan Hajnoczi <stefanha@redhat.com>
21099 M:      Miklos Szeredi <miklos@szeredi.hu>
21100 L:      virtualization@lists.linux-foundation.org
21101 L:      linux-fsdevel@vger.kernel.org
21102 S:      Supported
21103 W:      https://virtio-fs.gitlab.io/
21104 F:      Documentation/filesystems/virtiofs.rst
21105 F:      fs/fuse/virtio_fs.c
21106 F:      include/uapi/linux/virtio_fs.h
21107
21108 VIRTIO GPIO DRIVER
21109 M:      Enrico Weigelt, metux IT consult <info@metux.net>
21110 M:      Viresh Kumar <vireshk@kernel.org>
21111 L:      linux-gpio@vger.kernel.org
21112 L:      virtualization@lists.linux-foundation.org
21113 S:      Maintained
21114 F:      drivers/gpio/gpio-virtio.c
21115 F:      include/uapi/linux/virtio_gpio.h
21116
21117 VIRTIO GPU DRIVER
21118 M:      David Airlie <airlied@linux.ie>
21119 M:      Gerd Hoffmann <kraxel@redhat.com>
21120 R:      Gurchetan Singh <gurchetansingh@chromium.org>
21121 R:      Chia-I Wu <olvaffe@gmail.com>
21122 L:      dri-devel@lists.freedesktop.org
21123 L:      virtualization@lists.linux-foundation.org
21124 S:      Maintained
21125 T:      git git://anongit.freedesktop.org/drm/drm-misc
21126 F:      drivers/gpu/drm/virtio/
21127 F:      include/uapi/linux/virtio_gpu.h
21128
21129 VIRTIO HOST (VHOST)
21130 M:      "Michael S. Tsirkin" <mst@redhat.com>
21131 M:      Jason Wang <jasowang@redhat.com>
21132 L:      kvm@vger.kernel.org
21133 L:      virtualization@lists.linux-foundation.org
21134 L:      netdev@vger.kernel.org
21135 S:      Maintained
21136 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost.git
21137 F:      drivers/vhost/
21138 F:      include/linux/vhost_iotlb.h
21139 F:      include/uapi/linux/vhost.h
21140
21141 VIRTIO INPUT DRIVER
21142 M:      Gerd Hoffmann <kraxel@redhat.com>
21143 S:      Maintained
21144 F:      drivers/virtio/virtio_input.c
21145 F:      include/uapi/linux/virtio_input.h
21146
21147 VIRTIO IOMMU DRIVER
21148 M:      Jean-Philippe Brucker <jean-philippe@linaro.org>
21149 L:      virtualization@lists.linux-foundation.org
21150 S:      Maintained
21151 F:      drivers/iommu/virtio-iommu.c
21152 F:      include/uapi/linux/virtio_iommu.h
21153
21154 VIRTIO MEM DRIVER
21155 M:      David Hildenbrand <david@redhat.com>
21156 L:      virtualization@lists.linux-foundation.org
21157 S:      Maintained
21158 W:      https://virtio-mem.gitlab.io/
21159 F:      drivers/virtio/virtio_mem.c
21160 F:      include/uapi/linux/virtio_mem.h
21161
21162 VIRTIO SOUND DRIVER
21163 M:      Anton Yakovlev <anton.yakovlev@opensynergy.com>
21164 M:      "Michael S. Tsirkin" <mst@redhat.com>
21165 L:      virtualization@lists.linux-foundation.org
21166 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
21167 S:      Maintained
21168 F:      include/uapi/linux/virtio_snd.h
21169 F:      sound/virtio/*
21170
21171 VIRTIO I2C DRIVER
21172 M:      Conghui Chen <conghui.chen@intel.com>
21173 M:      Viresh Kumar <viresh.kumar@linaro.org>
21174 L:      linux-i2c@vger.kernel.org
21175 L:      virtualization@lists.linux-foundation.org
21176 S:      Maintained
21177 F:      drivers/i2c/busses/i2c-virtio.c
21178 F:      include/uapi/linux/virtio_i2c.h
21179
21180 VIRTIO PMEM DRIVER
21181 M:      Pankaj Gupta <pankaj.gupta.linux@gmail.com>
21182 L:      virtualization@lists.linux-foundation.org
21183 S:      Maintained
21184 F:      drivers/nvdimm/virtio_pmem.c
21185 F:      drivers/nvdimm/nd_virtio.c
21186
21187 VIRTUAL BOX GUEST DEVICE DRIVER
21188 M:      Hans de Goede <hdegoede@redhat.com>
21189 M:      Arnd Bergmann <arnd@arndb.de>
21190 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
21191 S:      Maintained
21192 F:      drivers/virt/vboxguest/
21193 F:      include/linux/vbox_utils.h
21194 F:      include/uapi/linux/vbox*.h
21195
21196 VIRTUAL BOX SHARED FOLDER VFS DRIVER
21197 M:      Hans de Goede <hdegoede@redhat.com>
21198 L:      linux-fsdevel@vger.kernel.org
21199 S:      Maintained
21200 F:      fs/vboxsf/*
21201
21202 VIRTUAL SERIO DEVICE DRIVER
21203 M:      Stephen Chandler Paul <thatslyude@gmail.com>
21204 S:      Maintained
21205 F:      drivers/input/serio/userio.c
21206 F:      include/uapi/linux/userio.h
21207
21208 VIVID VIRTUAL VIDEO DRIVER
21209 M:      Hans Verkuil <hverkuil@xs4all.nl>
21210 L:      linux-media@vger.kernel.org
21211 S:      Maintained
21212 W:      https://linuxtv.org
21213 T:      git git://linuxtv.org/media_tree.git
21214 F:      drivers/media/test-drivers/vivid/*
21215
21216 VIDTV VIRTUAL DIGITAL TV DRIVER
21217 M:      Daniel W. S. Almeida <dwlsalmeida@gmail.com>
21218 L:      linux-media@vger.kernel.org
21219 S:      Maintained
21220 W:      https://linuxtv.org
21221 T:      git git://linuxtv.org/media_tree.git
21222 F:      drivers/media/test-drivers/vidtv/*
21223
21224 VLYNQ BUS
21225 M:      Florian Fainelli <f.fainelli@gmail.com>
21226 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
21227 S:      Maintained
21228 F:      drivers/vlynq/vlynq.c
21229 F:      include/linux/vlynq.h
21230
21231 VME SUBSYSTEM
21232 M:      Martyn Welch <martyn@welchs.me.uk>
21233 M:      Manohar Vanga <manohar.vanga@gmail.com>
21234 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
21235 L:      linux-kernel@vger.kernel.org
21236 S:      Maintained
21237 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
21238 F:      Documentation/driver-api/vme.rst
21239 F:      drivers/staging/vme_user/
21240 F:      drivers/vme/
21241 F:      include/linux/vme*
21242
21243 VM SOCKETS (AF_VSOCK)
21244 M:      Stefano Garzarella <sgarzare@redhat.com>
21245 L:      virtualization@lists.linux-foundation.org
21246 L:      netdev@vger.kernel.org
21247 S:      Maintained
21248 F:      drivers/net/vsockmon.c
21249 F:      include/net/af_vsock.h
21250 F:      include/uapi/linux/vm_sockets.h
21251 F:      include/uapi/linux/vm_sockets_diag.h
21252 F:      include/uapi/linux/vsockmon.h
21253 F:      net/vmw_vsock/
21254 F:      tools/testing/vsock/
21255
21256 VMWARE BALLOON DRIVER
21257 M:      Nadav Amit <namit@vmware.com>
21258 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
21259 L:      linux-kernel@vger.kernel.org
21260 S:      Maintained
21261 F:      drivers/misc/vmw_balloon.c
21262
21263 VMWARE HYPERVISOR INTERFACE
21264 M:      Srivatsa S. Bhat (VMware) <srivatsa@csail.mit.edu>
21265 M:      Alexey Makhalov <amakhalov@vmware.com>
21266 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
21267 L:      virtualization@lists.linux-foundation.org
21268 L:      x86@kernel.org
21269 S:      Supported
21270 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vmware
21271 F:      arch/x86/include/asm/vmware.h
21272 F:      arch/x86/kernel/cpu/vmware.c
21273
21274 VMWARE PVRDMA DRIVER
21275 M:      Bryan Tan <bryantan@vmware.com>
21276 M:      Vishnu Dasa <vdasa@vmware.com>
21277 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
21278 L:      linux-rdma@vger.kernel.org
21279 S:      Maintained
21280 F:      drivers/infiniband/hw/vmw_pvrdma/
21281
21282 VMware PVSCSI driver
21283 M:      Vishal Bhakta <vbhakta@vmware.com>
21284 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
21285 L:      linux-scsi@vger.kernel.org
21286 S:      Maintained
21287 F:      drivers/scsi/vmw_pvscsi.c
21288 F:      drivers/scsi/vmw_pvscsi.h
21289
21290 VMWARE VIRTUAL PTP CLOCK DRIVER
21291 M:      Vivek Thampi <vithampi@vmware.com>
21292 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
21293 L:      netdev@vger.kernel.org
21294 S:      Supported
21295 F:      drivers/ptp/ptp_vmw.c
21296
21297 VMWARE VMCI DRIVER
21298 M:      Bryan Tan <bryantan@vmware.com>
21299 M:      Rajesh Jalisatgi <rjalisatgi@vmware.com>
21300 M:      Vishnu Dasa <vdasa@vmware.com>
21301 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
21302 L:      linux-kernel@vger.kernel.org
21303 S:      Maintained
21304 F:      drivers/misc/vmw_vmci/
21305
21306 VMWARE VMMOUSE SUBDRIVER
21307 M:      Zack Rusin <zackr@vmware.com>
21308 R:      VMware Graphics Reviewers <linux-graphics-maintainer@vmware.com>
21309 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
21310 L:      linux-input@vger.kernel.org
21311 S:      Maintained
21312 F:      drivers/input/mouse/vmmouse.c
21313 F:      drivers/input/mouse/vmmouse.h
21314
21315 VMWARE VMXNET3 ETHERNET DRIVER
21316 M:      Ronak Doshi <doshir@vmware.com>
21317 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
21318 L:      netdev@vger.kernel.org
21319 S:      Maintained
21320 F:      drivers/net/vmxnet3/
21321
21322 VOCORE VOCORE2 BOARD
21323 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
21324 L:      linux-mips@vger.kernel.org
21325 S:      Maintained
21326 F:      arch/mips/boot/dts/ralink/vocore2.dts
21327
21328 VOLTAGE AND CURRENT REGULATOR FRAMEWORK
21329 M:      Liam Girdwood <lgirdwood@gmail.com>
21330 M:      Mark Brown <broonie@kernel.org>
21331 L:      linux-kernel@vger.kernel.org
21332 S:      Supported
21333 W:      http://www.slimlogic.co.uk/?p=48
21334 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git
21335 F:      Documentation/devicetree/bindings/regulator/
21336 F:      Documentation/power/regulator/
21337 F:      drivers/regulator/
21338 F:      include/dt-bindings/regulator/
21339 F:      include/linux/regulator/
21340 K:      regulator_get_optional
21341
21342 VOLTAGE AND CURRENT REGULATOR IRQ HELPERS
21343 R:      Matti Vaittinen <mazziesaccount@gmail.com>
21344 F:      drivers/regulator/irq_helpers.c
21345
21346 VRF
21347 M:      David Ahern <dsahern@kernel.org>
21348 L:      netdev@vger.kernel.org
21349 S:      Maintained
21350 F:      Documentation/networking/vrf.rst
21351 F:      drivers/net/vrf.c
21352
21353 VSPRINTF
21354 M:      Petr Mladek <pmladek@suse.com>
21355 M:      Steven Rostedt <rostedt@goodmis.org>
21356 M:      Sergey Senozhatsky <senozhatsky@chromium.org>
21357 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
21358 R:      Rasmus Villemoes <linux@rasmusvillemoes.dk>
21359 S:      Maintained
21360 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/printk/linux.git
21361 F:      Documentation/core-api/printk-formats.rst
21362 F:      lib/test_printf.c
21363 F:      lib/test_scanf.c
21364 F:      lib/vsprintf.c
21365
21366 VT1211 HARDWARE MONITOR DRIVER
21367 M:      Juerg Haefliger <juergh@gmail.com>
21368 L:      linux-hwmon@vger.kernel.org
21369 S:      Maintained
21370 F:      Documentation/hwmon/vt1211.rst
21371 F:      drivers/hwmon/vt1211.c
21372
21373 VT8231 HARDWARE MONITOR DRIVER
21374 M:      Roger Lucas <vt8231@hiddenengine.co.uk>
21375 L:      linux-hwmon@vger.kernel.org
21376 S:      Maintained
21377 F:      drivers/hwmon/vt8231.c
21378
21379 VUB300 USB to SDIO/SD/MMC bridge chip
21380 L:      linux-mmc@vger.kernel.org
21381 S:      Orphan
21382 F:      drivers/mmc/host/vub300.c
21383
21384 W1 DALLAS'S 1-WIRE BUS
21385 M:      Evgeniy Polyakov <zbr@ioremap.net>
21386 S:      Maintained
21387 F:      Documentation/devicetree/bindings/w1/
21388 F:      Documentation/w1/
21389 F:      drivers/w1/
21390 F:      include/linux/w1.h
21391
21392 W83791D HARDWARE MONITORING DRIVER
21393 M:      Marc Hulsman <m.hulsman@tudelft.nl>
21394 L:      linux-hwmon@vger.kernel.org
21395 S:      Maintained
21396 F:      Documentation/hwmon/w83791d.rst
21397 F:      drivers/hwmon/w83791d.c
21398
21399 W83793 HARDWARE MONITORING DRIVER
21400 M:      Rudolf Marek <r.marek@assembler.cz>
21401 L:      linux-hwmon@vger.kernel.org
21402 S:      Maintained
21403 F:      Documentation/hwmon/w83793.rst
21404 F:      drivers/hwmon/w83793.c
21405
21406 W83795 HARDWARE MONITORING DRIVER
21407 M:      Jean Delvare <jdelvare@suse.com>
21408 L:      linux-hwmon@vger.kernel.org
21409 S:      Maintained
21410 F:      drivers/hwmon/w83795.c
21411
21412 W83L51xD SD/MMC CARD INTERFACE DRIVER
21413 M:      Pierre Ossman <pierre@ossman.eu>
21414 S:      Maintained
21415 F:      drivers/mmc/host/wbsd.*
21416
21417 WACOM PROTOCOL 4 SERIAL TABLETS
21418 M:      Julian Squires <julian@cipht.net>
21419 M:      Hans de Goede <hdegoede@redhat.com>
21420 L:      linux-input@vger.kernel.org
21421 S:      Maintained
21422 F:      drivers/input/tablet/wacom_serial4.c
21423
21424 WATCHDOG DEVICE DRIVERS
21425 M:      Wim Van Sebroeck <wim@linux-watchdog.org>
21426 M:      Guenter Roeck <linux@roeck-us.net>
21427 L:      linux-watchdog@vger.kernel.org
21428 S:      Maintained
21429 W:      http://www.linux-watchdog.org/
21430 T:      git git://www.linux-watchdog.org/linux-watchdog.git
21431 F:      Documentation/devicetree/bindings/watchdog/
21432 F:      Documentation/watchdog/
21433 F:      drivers/watchdog/
21434 F:      include/linux/watchdog.h
21435 F:      include/uapi/linux/watchdog.h
21436
21437 WHISKEYCOVE PMIC GPIO DRIVER
21438 M:      Kuppuswamy Sathyanarayanan <sathyanarayanan.kuppuswamy@linux.intel.com>
21439 L:      linux-gpio@vger.kernel.org
21440 S:      Maintained
21441 F:      drivers/gpio/gpio-wcove.c
21442
21443 WHWAVE RTC DRIVER
21444 M:      Dianlong Li <long17.cool@163.com>
21445 L:      linux-rtc@vger.kernel.org
21446 S:      Maintained
21447 F:      drivers/rtc/rtc-sd3078.c
21448
21449 WIIMOTE HID DRIVER
21450 M:      David Rheinsberg <david.rheinsberg@gmail.com>
21451 L:      linux-input@vger.kernel.org
21452 S:      Maintained
21453 F:      drivers/hid/hid-wiimote*
21454
21455 WILOCITY WIL6210 WIRELESS DRIVER
21456 L:      linux-wireless@vger.kernel.org
21457 S:      Orphan
21458 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wil6210
21459 F:      drivers/net/wireless/ath/wil6210/
21460
21461 WINBOND CIR DRIVER
21462 M:      David Härdeman <david@hardeman.nu>
21463 S:      Maintained
21464 F:      drivers/media/rc/winbond-cir.c
21465
21466 WINSYSTEMS EBC-C384 WATCHDOG DRIVER
21467 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
21468 L:      linux-watchdog@vger.kernel.org
21469 S:      Maintained
21470 F:      drivers/watchdog/ebc-c384_wdt.c
21471
21472 WINSYSTEMS WS16C48 GPIO DRIVER
21473 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
21474 L:      linux-gpio@vger.kernel.org
21475 S:      Maintained
21476 F:      drivers/gpio/gpio-ws16c48.c
21477
21478 WIREGUARD SECURE NETWORK TUNNEL
21479 M:      Jason A. Donenfeld <Jason@zx2c4.com>
21480 L:      wireguard@lists.zx2c4.com
21481 L:      netdev@vger.kernel.org
21482 S:      Maintained
21483 F:      drivers/net/wireguard/
21484 F:      tools/testing/selftests/wireguard/
21485
21486 WISTRON LAPTOP BUTTON DRIVER
21487 M:      Miloslav Trmac <mitr@volny.cz>
21488 S:      Maintained
21489 F:      drivers/input/misc/wistron_btns.c
21490
21491 WL3501 WIRELESS PCMCIA CARD DRIVER
21492 L:      linux-wireless@vger.kernel.org
21493 S:      Odd fixes
21494 F:      drivers/net/wireless/wl3501*
21495
21496 WOLFSON MICROELECTRONICS DRIVERS
21497 L:      patches@opensource.cirrus.com
21498 S:      Supported
21499 W:      https://github.com/CirrusLogic/linux-drivers/wiki
21500 T:      git https://github.com/CirrusLogic/linux-drivers.git
21501 F:      Documentation/devicetree/bindings/extcon/wlf,arizona.yaml
21502 F:      Documentation/devicetree/bindings/mfd/wlf,arizona.yaml
21503 F:      Documentation/devicetree/bindings/mfd/wm831x.txt
21504 F:      Documentation/devicetree/bindings/regulator/wlf,arizona.yaml
21505 F:      Documentation/devicetree/bindings/sound/wlf,*.yaml
21506 F:      Documentation/devicetree/bindings/sound/wm*
21507 F:      Documentation/hwmon/wm83??.rst
21508 F:      arch/arm/mach-s3c/mach-crag6410*
21509 F:      drivers/clk/clk-wm83*.c
21510 F:      drivers/gpio/gpio-*wm*.c
21511 F:      drivers/gpio/gpio-arizona.c
21512 F:      drivers/hwmon/wm83??-hwmon.c
21513 F:      drivers/input/misc/wm831x-on.c
21514 F:      drivers/input/touchscreen/wm831x-ts.c
21515 F:      drivers/input/touchscreen/wm97*.c
21516 F:      drivers/leds/leds-wm83*.c
21517 F:      drivers/mfd/arizona*
21518 F:      drivers/mfd/cs47l24*
21519 F:      drivers/mfd/wm*.c
21520 F:      drivers/power/supply/wm83*.c
21521 F:      drivers/regulator/arizona*
21522 F:      drivers/regulator/wm8*.c
21523 F:      drivers/rtc/rtc-wm83*.c
21524 F:      drivers/video/backlight/wm83*_bl.c
21525 F:      drivers/watchdog/wm83*_wdt.c
21526 F:      include/linux/mfd/arizona/
21527 F:      include/linux/mfd/wm831x/
21528 F:      include/linux/mfd/wm8350/
21529 F:      include/linux/mfd/wm8400*
21530 F:      include/linux/regulator/arizona*
21531 F:      include/linux/wm97xx.h
21532 F:      include/sound/wm????.h
21533 F:      sound/soc/codecs/arizona*
21534 F:      sound/soc/codecs/cs47l24*
21535 F:      sound/soc/codecs/wm*
21536
21537 WORKQUEUE
21538 M:      Tejun Heo <tj@kernel.org>
21539 R:      Lai Jiangshan <jiangshanlai@gmail.com>
21540 S:      Maintained
21541 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
21542 F:      Documentation/core-api/workqueue.rst
21543 F:      include/linux/workqueue.h
21544 F:      kernel/workqueue.c
21545
21546 WWAN DRIVERS
21547 M:      Loic Poulain <loic.poulain@linaro.org>
21548 M:      Sergey Ryazanov <ryazanov.s.a@gmail.com>
21549 R:      Johannes Berg <johannes@sipsolutions.net>
21550 L:      netdev@vger.kernel.org
21551 S:      Maintained
21552 F:      drivers/net/wwan/
21553 F:      include/linux/wwan.h
21554 F:      include/uapi/linux/wwan.h
21555
21556 X-POWERS AXP288 PMIC DRIVERS
21557 M:      Hans de Goede <hdegoede@redhat.com>
21558 S:      Maintained
21559 F:      drivers/acpi/pmic/intel_pmic_xpower.c
21560 N:      axp288
21561
21562 X-POWERS MULTIFUNCTION PMIC DEVICE DRIVERS
21563 M:      Chen-Yu Tsai <wens@csie.org>
21564 L:      linux-kernel@vger.kernel.org
21565 S:      Maintained
21566 N:      axp[128]
21567
21568 X.25 STACK
21569 M:      Martin Schiller <ms@dev.tdt.de>
21570 L:      linux-x25@vger.kernel.org
21571 S:      Maintained
21572 F:      Documentation/networking/lapb-module.rst
21573 F:      Documentation/networking/x25*
21574 F:      drivers/net/wan/hdlc_x25.c
21575 F:      drivers/net/wan/lapbether.c
21576 F:      include/*/lapb.h
21577 F:      include/net/x25*
21578 F:      include/uapi/linux/x25.h
21579 F:      net/lapb/
21580 F:      net/x25/
21581
21582 X86 ARCHITECTURE (32-BIT AND 64-BIT)
21583 M:      Thomas Gleixner <tglx@linutronix.de>
21584 M:      Ingo Molnar <mingo@redhat.com>
21585 M:      Borislav Petkov <bp@alien8.de>
21586 M:      Dave Hansen <dave.hansen@linux.intel.com>
21587 M:      x86@kernel.org
21588 R:      "H. Peter Anvin" <hpa@zytor.com>
21589 L:      linux-kernel@vger.kernel.org
21590 S:      Maintained
21591 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
21592 F:      Documentation/devicetree/bindings/x86/
21593 F:      Documentation/x86/
21594 F:      arch/x86/
21595
21596 X86 ENTRY CODE
21597 M:      Andy Lutomirski <luto@kernel.org>
21598 L:      linux-kernel@vger.kernel.org
21599 S:      Maintained
21600 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/asm
21601 F:      arch/x86/entry/
21602
21603 X86 MCE INFRASTRUCTURE
21604 M:      Tony Luck <tony.luck@intel.com>
21605 M:      Borislav Petkov <bp@alien8.de>
21606 L:      linux-edac@vger.kernel.org
21607 S:      Maintained
21608 F:      Documentation/ABI/testing/sysfs-mce
21609 F:      Documentation/x86/x86_64/machinecheck.rst
21610 F:      arch/x86/kernel/cpu/mce/*
21611
21612 X86 MICROCODE UPDATE SUPPORT
21613 M:      Borislav Petkov <bp@alien8.de>
21614 S:      Maintained
21615 F:      arch/x86/kernel/cpu/microcode/*
21616
21617 X86 MM
21618 M:      Dave Hansen <dave.hansen@linux.intel.com>
21619 M:      Andy Lutomirski <luto@kernel.org>
21620 M:      Peter Zijlstra <peterz@infradead.org>
21621 L:      linux-kernel@vger.kernel.org
21622 S:      Maintained
21623 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/mm
21624 F:      arch/x86/mm/
21625
21626 X86 PLATFORM ANDROID TABLETS DSDT FIXUP DRIVER
21627 M:      Hans de Goede <hdegoede@redhat.com>
21628 L:      platform-driver-x86@vger.kernel.org
21629 S:      Maintained
21630 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
21631 F:      drivers/platform/x86/x86-android-tablets.c
21632
21633 X86 PLATFORM DRIVERS
21634 M:      Hans de Goede <hdegoede@redhat.com>
21635 M:      Mark Gross <markgross@kernel.org>
21636 L:      platform-driver-x86@vger.kernel.org
21637 S:      Maintained
21638 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
21639 F:      drivers/platform/olpc/
21640 F:      drivers/platform/x86/
21641
21642 X86 PLATFORM DRIVERS - ARCH
21643 R:      Darren Hart <dvhart@infradead.org>
21644 R:      Andy Shevchenko <andy@infradead.org>
21645 L:      platform-driver-x86@vger.kernel.org
21646 L:      x86@kernel.org
21647 S:      Maintained
21648 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
21649 F:      arch/x86/platform
21650
21651 X86 PLATFORM UV HPE SUPERDOME FLEX
21652 M:      Steve Wahl <steve.wahl@hpe.com>
21653 R:      Mike Travis <mike.travis@hpe.com>
21654 R:      Dimitri Sivanich <dimitri.sivanich@hpe.com>
21655 R:      Russ Anderson <russ.anderson@hpe.com>
21656 S:      Supported
21657 F:      arch/x86/include/asm/uv/
21658 F:      arch/x86/kernel/apic/x2apic_uv_x.c
21659 F:      arch/x86/platform/uv/
21660
21661 X86 STACK UNWINDING
21662 M:      Josh Poimboeuf <jpoimboe@kernel.org>
21663 M:      Peter Zijlstra <peterz@infradead.org>
21664 S:      Supported
21665 F:      arch/x86/include/asm/unwind*.h
21666 F:      arch/x86/kernel/dumpstack.c
21667 F:      arch/x86/kernel/stacktrace.c
21668 F:      arch/x86/kernel/unwind_*.c
21669
21670 X86 VDSO
21671 M:      Andy Lutomirski <luto@kernel.org>
21672 L:      linux-kernel@vger.kernel.org
21673 S:      Maintained
21674 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso
21675 F:      arch/x86/entry/vdso/
21676
21677 XARRAY
21678 M:      Matthew Wilcox <willy@infradead.org>
21679 L:      linux-fsdevel@vger.kernel.org
21680 S:      Supported
21681 F:      Documentation/core-api/xarray.rst
21682 F:      include/linux/idr.h
21683 F:      include/linux/xarray.h
21684 F:      lib/idr.c
21685 F:      lib/xarray.c
21686 F:      tools/testing/radix-tree
21687
21688 XBOX DVD IR REMOTE
21689 M:      Benjamin Valentin <benpicco@googlemail.com>
21690 S:      Maintained
21691 F:      drivers/media/rc/keymaps/rc-xbox-dvd.c
21692 F:      drivers/media/rc/xbox_remote.c
21693
21694 XC2028/3028 TUNER DRIVER
21695 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
21696 L:      linux-media@vger.kernel.org
21697 S:      Maintained
21698 W:      https://linuxtv.org
21699 T:      git git://linuxtv.org/media_tree.git
21700 F:      drivers/media/tuners/xc2028.*
21701
21702 XDP (eXpress Data Path)
21703 M:      Alexei Starovoitov <ast@kernel.org>
21704 M:      Daniel Borkmann <daniel@iogearbox.net>
21705 M:      David S. Miller <davem@davemloft.net>
21706 M:      Jakub Kicinski <kuba@kernel.org>
21707 M:      Jesper Dangaard Brouer <hawk@kernel.org>
21708 M:      John Fastabend <john.fastabend@gmail.com>
21709 L:      netdev@vger.kernel.org
21710 L:      bpf@vger.kernel.org
21711 S:      Supported
21712 F:      include/net/xdp.h
21713 F:      include/net/xdp_priv.h
21714 F:      include/trace/events/xdp.h
21715 F:      kernel/bpf/cpumap.c
21716 F:      kernel/bpf/devmap.c
21717 F:      net/core/xdp.c
21718 F:      samples/bpf/xdp*
21719 F:      tools/testing/selftests/bpf/*xdp*
21720 F:      tools/testing/selftests/bpf/*/*xdp*
21721 F:      drivers/net/ethernet/*/*/*/*/*xdp*
21722 F:      drivers/net/ethernet/*/*/*xdp*
21723 K:      (?:\b|_)xdp(?:\b|_)
21724
21725 XDP SOCKETS (AF_XDP)
21726 M:      Björn Töpel <bjorn@kernel.org>
21727 M:      Magnus Karlsson <magnus.karlsson@intel.com>
21728 M:      Maciej Fijalkowski <maciej.fijalkowski@intel.com>
21729 R:      Jonathan Lemon <jonathan.lemon@gmail.com>
21730 L:      netdev@vger.kernel.org
21731 L:      bpf@vger.kernel.org
21732 S:      Maintained
21733 F:      Documentation/networking/af_xdp.rst
21734 F:      include/net/xdp_sock*
21735 F:      include/net/xsk_buff_pool.h
21736 F:      include/uapi/linux/if_xdp.h
21737 F:      include/uapi/linux/xdp_diag.h
21738 F:      include/net/netns/xdp.h
21739 F:      net/xdp/
21740 F:      samples/bpf/xdpsock*
21741 F:      tools/lib/bpf/xsk*
21742
21743 XEN BLOCK SUBSYSTEM
21744 M:      Roger Pau Monné <roger.pau@citrix.com>
21745 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
21746 S:      Supported
21747 F:      drivers/block/xen*
21748 F:      drivers/block/xen-blkback/*
21749
21750 XEN HYPERVISOR ARM
21751 M:      Stefano Stabellini <sstabellini@kernel.org>
21752 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
21753 S:      Maintained
21754 F:      arch/arm/include/asm/xen/
21755 F:      arch/arm/xen/
21756
21757 XEN HYPERVISOR ARM64
21758 M:      Stefano Stabellini <sstabellini@kernel.org>
21759 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
21760 S:      Maintained
21761 F:      arch/arm64/include/asm/xen/
21762 F:      arch/arm64/xen/
21763
21764 XEN HYPERVISOR INTERFACE
21765 M:      Juergen Gross <jgross@suse.com>
21766 M:      Stefano Stabellini <sstabellini@kernel.org>
21767 R:      Oleksandr Tyshchenko <oleksandr_tyshchenko@epam.com>
21768 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
21769 S:      Supported
21770 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git
21771 F:      Documentation/ABI/stable/sysfs-hypervisor-xen
21772 F:      Documentation/ABI/testing/sysfs-hypervisor-xen
21773 F:      drivers/*/xen-*front.c
21774 F:      drivers/xen/
21775 F:      include/uapi/xen/
21776 F:      include/xen/
21777
21778 XEN HYPERVISOR X86
21779 M:      Juergen Gross <jgross@suse.com>
21780 R:      Boris Ostrovsky <boris.ostrovsky@oracle.com>
21781 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
21782 S:      Supported
21783 F:      arch/x86/include/asm/pvclock-abi.h
21784 F:      arch/x86/include/asm/xen/
21785 F:      arch/x86/platform/pvh/
21786 F:      arch/x86/xen/
21787
21788 XEN NETWORK BACKEND DRIVER
21789 M:      Wei Liu <wei.liu@kernel.org>
21790 M:      Paul Durrant <paul@xen.org>
21791 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
21792 L:      netdev@vger.kernel.org
21793 S:      Supported
21794 F:      drivers/net/xen-netback/*
21795
21796 XEN PCI SUBSYSTEM
21797 M:      Juergen Gross <jgross@suse.com>
21798 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
21799 S:      Supported
21800 F:      arch/x86/pci/*xen*
21801 F:      drivers/pci/*xen*
21802
21803 XEN PVSCSI DRIVERS
21804 M:      Juergen Gross <jgross@suse.com>
21805 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
21806 L:      linux-scsi@vger.kernel.org
21807 S:      Supported
21808 F:      drivers/scsi/xen-scsifront.c
21809 F:      drivers/xen/xen-scsiback.c
21810 F:      include/xen/interface/io/vscsiif.h
21811
21812 XEN PVUSB DRIVER
21813 M:      Juergen Gross <jgross@suse.com>
21814 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
21815 L:      linux-usb@vger.kernel.org
21816 S:      Supported
21817 F:      drivers/usb/host/xen*
21818 F:      include/xen/interface/io/usbif.h
21819
21820 XEN SOUND FRONTEND DRIVER
21821 M:      Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
21822 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
21823 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
21824 S:      Supported
21825 F:      sound/xen/*
21826
21827 XEN SWIOTLB SUBSYSTEM
21828 M:      Juergen Gross <jgross@suse.com>
21829 M:      Stefano Stabellini <sstabellini@kernel.org>
21830 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
21831 L:      iommu@lists.linux-foundation.org
21832 S:      Supported
21833 F:      arch/x86/xen/*swiotlb*
21834 F:      drivers/xen/*swiotlb*
21835
21836 XFS FILESYSTEM
21837 C:      irc://irc.oftc.net/xfs
21838 M:      Darrick J. Wong <djwong@kernel.org>
21839 L:      linux-xfs@vger.kernel.org
21840 S:      Supported
21841 W:      http://xfs.org/
21842 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
21843 F:      Documentation/ABI/testing/sysfs-fs-xfs
21844 F:      Documentation/admin-guide/xfs.rst
21845 F:      Documentation/filesystems/xfs-delayed-logging-design.rst
21846 F:      Documentation/filesystems/xfs-self-describing-metadata.rst
21847 F:      fs/xfs/
21848 F:      include/uapi/linux/dqblk_xfs.h
21849 F:      include/uapi/linux/fsmap.h
21850
21851 XILINX AMS DRIVER
21852 M:      Anand Ashok Dumbre <anand.ashok.dumbre@xilinx.com>
21853 L:      linux-iio@vger.kernel.org
21854 S:      Maintained
21855 F:      Documentation/devicetree/bindings/iio/adc/xlnx,zynqmp-ams.yaml
21856 F:      drivers/iio/adc/xilinx-ams.c
21857
21858 XILINX AXI ETHERNET DRIVER
21859 M:      Radhey Shyam Pandey <radhey.shyam.pandey@xilinx.com>
21860 S:      Maintained
21861 F:      drivers/net/ethernet/xilinx/xilinx_axienet*
21862
21863 XILINX CAN DRIVER
21864 M:      Appana Durga Kedareswara rao <appana.durga.rao@xilinx.com>
21865 R:      Naga Sureshkumar Relli <naga.sureshkumar.relli@xilinx.com>
21866 L:      linux-can@vger.kernel.org
21867 S:      Maintained
21868 F:      Documentation/devicetree/bindings/net/can/xilinx,can.yaml
21869 F:      drivers/net/can/xilinx_can.c
21870
21871 XILINX GPIO DRIVER
21872 M:      Shubhrajyoti Datta <shubhrajyoti.datta@xilinx.com>
21873 R:      Srinivas Neeli <srinivas.neeli@xilinx.com>
21874 R:      Michal Simek <michal.simek@xilinx.com>
21875 S:      Maintained
21876 F:      Documentation/devicetree/bindings/gpio/gpio-xilinx.txt
21877 F:      Documentation/devicetree/bindings/gpio/gpio-zynq.yaml
21878 F:      drivers/gpio/gpio-xilinx.c
21879 F:      drivers/gpio/gpio-zynq.c
21880
21881 XILINX SD-FEC IP CORES
21882 M:      Derek Kiernan <derek.kiernan@xilinx.com>
21883 M:      Dragan Cvetic <dragan.cvetic@xilinx.com>
21884 S:      Maintained
21885 F:      Documentation/devicetree/bindings/misc/xlnx,sd-fec.txt
21886 F:      Documentation/misc-devices/xilinx_sdfec.rst
21887 F:      drivers/misc/Kconfig
21888 F:      drivers/misc/Makefile
21889 F:      drivers/misc/xilinx_sdfec.c
21890 F:      include/uapi/misc/xilinx_sdfec.h
21891
21892 XILINX PWM DRIVER
21893 M:      Sean Anderson <sean.anderson@seco.com>
21894 S:      Maintained
21895 F:      drivers/pwm/pwm-xilinx.c
21896 F:      include/clocksource/timer-xilinx.h
21897
21898 XILINX UARTLITE SERIAL DRIVER
21899 M:      Peter Korsgaard <jacmet@sunsite.dk>
21900 L:      linux-serial@vger.kernel.org
21901 S:      Maintained
21902 F:      drivers/tty/serial/uartlite.c
21903
21904 XILINX VIDEO IP CORES
21905 M:      Hyun Kwon <hyun.kwon@xilinx.com>
21906 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
21907 L:      linux-media@vger.kernel.org
21908 S:      Supported
21909 T:      git git://linuxtv.org/media_tree.git
21910 F:      Documentation/devicetree/bindings/media/xilinx/
21911 F:      drivers/media/platform/xilinx/
21912 F:      include/uapi/linux/xilinx-v4l2-controls.h
21913
21914 XILINX ZYNQMP DPDMA DRIVER
21915 M:      Hyun Kwon <hyun.kwon@xilinx.com>
21916 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
21917 L:      dmaengine@vger.kernel.org
21918 S:      Supported
21919 F:      Documentation/devicetree/bindings/dma/xilinx/xlnx,zynqmp-dpdma.yaml
21920 F:      drivers/dma/xilinx/xilinx_dpdma.c
21921 F:      include/dt-bindings/dma/xlnx-zynqmp-dpdma.h
21922
21923 XILINX ZYNQMP PSGTR PHY DRIVER
21924 M:      Anurag Kumar Vulisha <anurag.kumar.vulisha@xilinx.com>
21925 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
21926 L:      linux-kernel@vger.kernel.org
21927 S:      Supported
21928 T:      git https://github.com/Xilinx/linux-xlnx.git
21929 F:      Documentation/devicetree/bindings/phy/xlnx,zynqmp-psgtr.yaml
21930 F:      drivers/phy/xilinx/phy-zynqmp.c
21931
21932 XILINX ZYNQMP SHA3 DRIVER
21933 M:      Harsha <harsha.harsha@xilinx.com>
21934 S:      Maintained
21935 F:      drivers/crypto/xilinx/zynqmp-sha.c
21936
21937 XILINX EVENT MANAGEMENT DRIVER
21938 M:      Abhyuday Godhasara <abhyuday.godhasara@xilinx.com>
21939 S:      Maintained
21940 F:      drivers/soc/xilinx/xlnx_event_manager.c
21941 F:      include/linux/firmware/xlnx-event-manager.h
21942
21943 XILLYBUS DRIVER
21944 M:      Eli Billauer <eli.billauer@gmail.com>
21945 L:      linux-kernel@vger.kernel.org
21946 S:      Supported
21947 F:      drivers/char/xillybus/
21948
21949 XLP9XX I2C DRIVER
21950 M:      George Cherian <gcherian@marvell.com>
21951 L:      linux-i2c@vger.kernel.org
21952 S:      Supported
21953 W:      http://www.marvell.com
21954 F:      drivers/i2c/busses/i2c-xlp9xx.c
21955
21956 XRA1403 GPIO EXPANDER
21957 M:      Nandor Han <nandor.han@ge.com>
21958 M:      Semi Malinen <semi.malinen@ge.com>
21959 L:      linux-gpio@vger.kernel.org
21960 S:      Maintained
21961 F:      Documentation/devicetree/bindings/gpio/gpio-xra1403.txt
21962 F:      drivers/gpio/gpio-xra1403.c
21963
21964 XTENSA XTFPGA PLATFORM SUPPORT
21965 M:      Max Filippov <jcmvbkbc@gmail.com>
21966 L:      linux-xtensa@linux-xtensa.org
21967 S:      Maintained
21968 F:      drivers/spi/spi-xtensa-xtfpga.c
21969 F:      sound/soc/xtensa/xtfpga-i2s.c
21970
21971 YAM DRIVER FOR AX.25
21972 M:      Jean-Paul Roubelat <jpr@f6fbb.org>
21973 L:      linux-hams@vger.kernel.org
21974 S:      Maintained
21975 F:      drivers/net/hamradio/yam*
21976 F:      include/linux/yam.h
21977
21978 YAMA SECURITY MODULE
21979 M:      Kees Cook <keescook@chromium.org>
21980 S:      Supported
21981 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git yama/tip
21982 F:      Documentation/admin-guide/LSM/Yama.rst
21983 F:      security/yama/
21984
21985 YEALINK PHONE DRIVER
21986 M:      Henk Vergonet <Henk.Vergonet@gmail.com>
21987 L:      usbb2k-api-dev@nongnu.org
21988 S:      Maintained
21989 F:      Documentation/input/devices/yealink.rst
21990 F:      drivers/input/misc/yealink.*
21991
21992 Z8530 DRIVER FOR AX.25
21993 M:      Joerg Reuter <jreuter@yaina.de>
21994 L:      linux-hams@vger.kernel.org
21995 S:      Maintained
21996 W:      http://yaina.de/jreuter/
21997 W:      http://www.qsl.net/dl1bke/
21998 F:      Documentation/networking/device_drivers/hamradio/z8530drv.rst
21999 F:      drivers/net/hamradio/*scc.c
22000 F:      drivers/net/hamradio/z8530.h
22001
22002 ZBUD COMPRESSED PAGE ALLOCATOR
22003 M:      Seth Jennings <sjenning@redhat.com>
22004 M:      Dan Streetman <ddstreet@ieee.org>
22005 L:      linux-mm@kvack.org
22006 S:      Maintained
22007 F:      mm/zbud.c
22008
22009 Z3FOLD COMPRESSED PAGE ALLOCATOR
22010 M:      Vitaly Wool <vitaly.wool@konsulko.com>
22011 R:      Miaohe Lin <linmiaohe@huawei.com>
22012 L:      linux-mm@kvack.org
22013 S:      Maintained
22014 F:      mm/z3fold.c
22015
22016 ZD1211RW WIRELESS DRIVER
22017 M:      Ulrich Kunitz <kune@deine-taler.de>
22018 L:      linux-wireless@vger.kernel.org
22019 L:      zd1211-devs@lists.sourceforge.net (subscribers-only)
22020 S:      Maintained
22021 W:      http://zd1211.ath.cx/wiki/DriverRewrite
22022 F:      drivers/net/wireless/zydas/zd1211rw/
22023
22024 ZD1301 MEDIA DRIVER
22025 M:      Antti Palosaari <crope@iki.fi>
22026 L:      linux-media@vger.kernel.org
22027 S:      Maintained
22028 W:      https://linuxtv.org/
22029 W:      http://palosaari.fi/linux/
22030 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
22031 F:      drivers/media/usb/dvb-usb-v2/zd1301*
22032
22033 ZD1301_DEMOD MEDIA DRIVER
22034 M:      Antti Palosaari <crope@iki.fi>
22035 L:      linux-media@vger.kernel.org
22036 S:      Maintained
22037 W:      https://linuxtv.org/
22038 W:      http://palosaari.fi/linux/
22039 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
22040 F:      drivers/media/dvb-frontends/zd1301_demod*
22041
22042 ZHAOXIN PROCESSOR SUPPORT
22043 M:      Tony W Wang-oc <TonyWWang-oc@zhaoxin.com>
22044 L:      linux-kernel@vger.kernel.org
22045 S:      Maintained
22046 F:      arch/x86/kernel/cpu/zhaoxin.c
22047
22048 ZONEFS FILESYSTEM
22049 M:      Damien Le Moal <damien.lemoal@opensource.wdc.com>
22050 M:      Naohiro Aota <naohiro.aota@wdc.com>
22051 R:      Johannes Thumshirn <jth@kernel.org>
22052 L:      linux-fsdevel@vger.kernel.org
22053 S:      Maintained
22054 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dlemoal/zonefs.git
22055 F:      Documentation/filesystems/zonefs.rst
22056 F:      fs/zonefs/
22057
22058 ZPOOL COMPRESSED PAGE STORAGE API
22059 M:      Dan Streetman <ddstreet@ieee.org>
22060 L:      linux-mm@kvack.org
22061 S:      Maintained
22062 F:      include/linux/zpool.h
22063 F:      mm/zpool.c
22064
22065 ZR36067 VIDEO FOR LINUX DRIVER
22066 M:      Corentin Labbe <clabbe@baylibre.com>
22067 L:      mjpeg-users@lists.sourceforge.net
22068 L:      linux-media@vger.kernel.org
22069 S:      Maintained
22070 W:      http://mjpeg.sourceforge.net/driver-zoran/
22071 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
22072 F:      Documentation/driver-api/media/drivers/zoran.rst
22073 F:      drivers/staging/media/zoran/
22074
22075 ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER
22076 M:      Minchan Kim <minchan@kernel.org>
22077 M:      Nitin Gupta <ngupta@vflare.org>
22078 R:      Sergey Senozhatsky <senozhatsky@chromium.org>
22079 L:      linux-kernel@vger.kernel.org
22080 S:      Maintained
22081 F:      Documentation/admin-guide/blockdev/zram.rst
22082 F:      drivers/block/zram/
22083
22084 ZS DECSTATION Z85C30 SERIAL DRIVER
22085 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
22086 S:      Maintained
22087 F:      drivers/tty/serial/zs.*
22088
22089 ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR
22090 M:      Minchan Kim <minchan@kernel.org>
22091 M:      Nitin Gupta <ngupta@vflare.org>
22092 R:      Sergey Senozhatsky <senozhatsky@chromium.org>
22093 L:      linux-mm@kvack.org
22094 S:      Maintained
22095 F:      Documentation/vm/zsmalloc.rst
22096 F:      include/linux/zsmalloc.h
22097 F:      mm/zsmalloc.c
22098
22099 ZSTD
22100 M:      Nick Terrell <terrelln@fb.com>
22101 S:      Maintained
22102 B:      https://github.com/facebook/zstd/issues
22103 T:      git git://github.com/terrelln/linux.git
22104 F:      include/linux/zstd*
22105 F:      lib/zstd/
22106 F:      lib/decompress_unzstd.c
22107 F:      crypto/zstd.c
22108 N:      zstd
22109 K:      zstd
22110
22111 ZSWAP COMPRESSED SWAP CACHING
22112 M:      Seth Jennings <sjenning@redhat.com>
22113 M:      Dan Streetman <ddstreet@ieee.org>
22114 M:      Vitaly Wool <vitaly.wool@konsulko.com>
22115 L:      linux-mm@kvack.org
22116 S:      Maintained
22117 F:      mm/zswap.c
22118
22119 THE REST
22120 M:      Linus Torvalds <torvalds@linux-foundation.org>
22121 L:      linux-kernel@vger.kernel.org
22122 S:      Buried alive in reporters
22123 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
22124 F:      *
22125 F:      */