Merge tag 'media/v5.20-1' of git://git.kernel.org/pub/scm/linux/kernel/git/mchehab...
[platform/kernel/linux-rpi.git] / MAINTAINERS
1 List of maintainers and how to submit kernel changes
2 ====================================================
3
4 Please try to follow the guidelines below.  This will make things
5 easier on the maintainers.  Not all of these guidelines matter for every
6 trivial patch so apply some common sense.
7
8 Tips for patch submitters
9 -------------------------
10
11 1.      Always *test* your changes, however small, on at least 4 or
12         5 people, preferably many more.
13
14 2.      Try to release a few ALPHA test versions to the net. Announce
15         them onto the kernel channel and await results. This is especially
16         important for device drivers, because often that's the only way
17         you will find things like the fact version 3 firmware needs
18         a magic fix you didn't know about, or some clown changed the
19         chips on a board and not its name.  (Don't laugh!  Look at the
20         SMC etherpower for that.)
21
22 3.      Make sure your changes compile correctly in multiple
23         configurations. In particular check that changes work both as a
24         module and built into the kernel.
25
26 4.      When you are happy with a change make it generally available for
27         testing and await feedback.
28
29 5.      Make a patch available to the relevant maintainer in the list. Use
30         ``diff -u`` to make the patch easy to merge. Be prepared to get your
31         changes sent back with seemingly silly requests about formatting
32         and variable names.  These aren't as silly as they seem. One
33         job the maintainers (and especially Linus) do is to keep things
34         looking the same. Sometimes this means that the clever hack in
35         your driver to get around a problem actually needs to become a
36         generalized kernel feature ready for next time.
37
38         PLEASE check your patch with the automated style checker
39         (scripts/checkpatch.pl) to catch trivial style violations.
40         See Documentation/process/coding-style.rst for guidance here.
41
42         PLEASE CC: the maintainers and mailing lists that are generated
43         by ``scripts/get_maintainer.pl.`` The results returned by the
44         script will be best if you have git installed and are making
45         your changes in a branch derived from Linus' latest git tree.
46         See Documentation/process/submitting-patches.rst for details.
47
48         PLEASE try to include any credit lines you want added with the
49         patch. It avoids people being missed off by mistake and makes
50         it easier to know who wants adding and who doesn't.
51
52         PLEASE document known bugs. If it doesn't work for everything
53         or does something very odd once a month document it.
54
55         PLEASE remember that submissions must be made under the terms
56         of the Linux Foundation certificate of contribution and should
57         include a Signed-off-by: line.  The current version of this
58         "Developer's Certificate of Origin" (DCO) is listed in the file
59         Documentation/process/submitting-patches.rst.
60
61 6.      Make sure you have the right to send any changes you make. If you
62         do changes at work you may find your employer owns the patch
63         not you.
64
65 7.      When sending security related changes or reports to a maintainer
66         please Cc: security@kernel.org, especially if the maintainer
67         does not respond. Please keep in mind that the security team is
68         a small set of people who can be efficient only when working on
69         verified bugs. Please only Cc: this list when you have identified
70         that the bug would present a short-term risk to other users if it
71         were publicly disclosed. For example, reports of address leaks do
72         not represent an immediate threat and are better handled publicly,
73         and ideally, should come with a patch proposal. Please do not send
74         automated reports to this list either. Such bugs will be handled
75         better and faster in the usual public places. See
76         Documentation/admin-guide/security-bugs.rst for details.
77
78 8.      Happy hacking.
79
80 Descriptions of section entries and preferred order
81 ---------------------------------------------------
82
83         M: *Mail* patches to: FullName <address@domain>
84         R: Designated *Reviewer*: FullName <address@domain>
85            These reviewers should be CCed on patches.
86         L: *Mailing list* that is relevant to this area
87         S: *Status*, one of the following:
88            Supported:   Someone is actually paid to look after this.
89            Maintained:  Someone actually looks after it.
90            Odd Fixes:   It has a maintainer but they don't have time to do
91                         much other than throw the odd patch in. See below..
92            Orphan:      No current maintainer [but maybe you could take the
93                         role as you write your new code].
94            Obsolete:    Old code. Something tagged obsolete generally means
95                         it has been replaced by a better system and you
96                         should be using that.
97         W: *Web-page* with status/info
98         Q: *Patchwork* web based patch tracking system site
99         B: URI for where to file *bugs*. A web-page with detailed bug
100            filing info, a direct bug tracker link, or a mailto: URI.
101         C: URI for *chat* protocol, server and channel where developers
102            usually hang out, for example irc://server/channel.
103         P: Subsystem Profile document for more details submitting
104            patches to the given subsystem. This is either an in-tree file,
105            or a URI. See Documentation/maintainer/maintainer-entry-profile.rst
106            for details.
107         T: *SCM* tree type and location.
108            Type is one of: git, hg, quilt, stgit, topgit
109         F: *Files* and directories wildcard patterns.
110            A trailing slash includes all files and subdirectory files.
111            F:   drivers/net/    all files in and below drivers/net
112            F:   drivers/net/*   all files in drivers/net, but not below
113            F:   */net/*         all files in "any top level directory"/net
114            One pattern per line.  Multiple F: lines acceptable.
115         X: *Excluded* files and directories that are NOT maintained, same
116            rules as F:. Files exclusions are tested before file matches.
117            Can be useful for excluding a specific subdirectory, for instance:
118            F:   net/
119            X:   net/ipv6/
120            matches all files in and below net excluding net/ipv6/
121         N: Files and directories *Regex* patterns.
122            N:   [^a-z]tegra     all files whose path contains tegra
123                                 (not including files like integrator)
124            One pattern per line.  Multiple N: lines acceptable.
125            scripts/get_maintainer.pl has different behavior for files that
126            match F: pattern and matches of N: patterns.  By default,
127            get_maintainer will not look at git log history when an F: pattern
128            match occurs.  When an N: match occurs, git log history is used
129            to also notify the people that have git commit signatures.
130         K: *Content regex* (perl extended) pattern match in a patch or file.
131            For instance:
132            K: of_get_profile
133               matches patches or files that contain "of_get_profile"
134            K: \b(printk|pr_(info|err))\b
135               matches patches or files that contain one or more of the words
136               printk, pr_info or pr_err
137            One regex pattern per line.  Multiple K: lines acceptable.
138
139 Maintainers List
140 ----------------
141
142 .. note:: When reading this list, please look for the most precise areas
143           first. When adding to this list, please keep the entries in
144           alphabetical order.
145
146 3C59X NETWORK DRIVER
147 M:      Steffen Klassert <klassert@kernel.org>
148 L:      netdev@vger.kernel.org
149 S:      Odd Fixes
150 F:      Documentation/networking/device_drivers/ethernet/3com/vortex.rst
151 F:      drivers/net/ethernet/3com/3c59x.c
152
153 3CR990 NETWORK DRIVER
154 M:      David Dillow <dave@thedillows.org>
155 L:      netdev@vger.kernel.org
156 S:      Maintained
157 F:      drivers/net/ethernet/3com/typhoon*
158
159 3WARE SAS/SATA-RAID SCSI DRIVERS (3W-XXXX, 3W-9XXX, 3W-SAS)
160 M:      Adam Radford <aradford@gmail.com>
161 L:      linux-scsi@vger.kernel.org
162 S:      Supported
163 W:      http://www.lsi.com
164 F:      drivers/scsi/3w-*
165
166 53C700 AND 53C700-66 SCSI DRIVER
167 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
168 L:      linux-scsi@vger.kernel.org
169 S:      Maintained
170 F:      drivers/scsi/53c700*
171
172 6LOWPAN GENERIC (BTLE/IEEE 802.15.4)
173 M:      Alexander Aring <alex.aring@gmail.com>
174 L:      linux-bluetooth@vger.kernel.org
175 L:      linux-wpan@vger.kernel.org
176 S:      Maintained
177 F:      Documentation/networking/6lowpan.rst
178 F:      include/net/6lowpan.h
179 F:      net/6lowpan/
180
181 6PACK NETWORK DRIVER FOR AX.25
182 M:      Andreas Koensgen <ajk@comnets.uni-bremen.de>
183 L:      linux-hams@vger.kernel.org
184 S:      Maintained
185 F:      drivers/net/hamradio/6pack.c
186
187 802.11 (including CFG80211/NL80211)
188 M:      Johannes Berg <johannes@sipsolutions.net>
189 L:      linux-wireless@vger.kernel.org
190 S:      Maintained
191 W:      https://wireless.wiki.kernel.org/
192 Q:      https://patchwork.kernel.org/project/linux-wireless/list/
193 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless.git
194 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless-next.git
195 F:      Documentation/driver-api/80211/cfg80211.rst
196 F:      Documentation/networking/regulatory.rst
197 F:      include/linux/ieee80211.h
198 F:      include/net/cfg80211.h
199 F:      include/net/ieee80211_radiotap.h
200 F:      include/net/iw_handler.h
201 F:      include/net/wext.h
202 F:      include/uapi/linux/nl80211.h
203 F:      include/uapi/linux/wireless.h
204 F:      net/wireless/
205
206 8169 10/100/1000 GIGABIT ETHERNET DRIVER
207 M:      Heiner Kallweit <hkallweit1@gmail.com>
208 M:      nic_swsd@realtek.com
209 L:      netdev@vger.kernel.org
210 S:      Maintained
211 F:      drivers/net/ethernet/realtek/r8169*
212
213 8250/16?50 (AND CLONE UARTS) SERIAL DRIVER
214 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
215 L:      linux-serial@vger.kernel.org
216 S:      Maintained
217 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
218 F:      drivers/tty/serial/8250*
219 F:      include/linux/serial_8250.h
220
221 8390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.]
222 L:      netdev@vger.kernel.org
223 S:      Orphan / Obsolete
224 F:      drivers/net/ethernet/8390/
225
226 9P FILE SYSTEM
227 M:      Eric Van Hensbergen <ericvh@gmail.com>
228 M:      Latchesar Ionkov <lucho@ionkov.net>
229 M:      Dominique Martinet <asmadeus@codewreck.org>
230 R:      Christian Schoenebeck <linux_oss@crudebyte.com>
231 L:      v9fs-developer@lists.sourceforge.net
232 S:      Maintained
233 W:      http://swik.net/v9fs
234 Q:      http://patchwork.kernel.org/project/v9fs-devel/list/
235 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs.git
236 T:      git git://github.com/martinetd/linux.git
237 F:      Documentation/filesystems/9p.rst
238 F:      fs/9p/
239 F:      include/net/9p/
240 F:      include/trace/events/9p.h
241 F:      include/uapi/linux/virtio_9p.h
242 F:      net/9p/
243
244 A64FX DIAG DRIVER
245 M:      Hitomi Hasegawa <hasegawa-hitomi@fujitsu.com>
246 S:      Supported
247 F:      drivers/soc/fujitsu/a64fx-diag.c
248
249 A8293 MEDIA DRIVER
250 M:      Antti Palosaari <crope@iki.fi>
251 L:      linux-media@vger.kernel.org
252 S:      Maintained
253 W:      https://linuxtv.org
254 W:      http://palosaari.fi/linux/
255 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
256 T:      git git://linuxtv.org/anttip/media_tree.git
257 F:      drivers/media/dvb-frontends/a8293*
258
259 AACRAID SCSI RAID DRIVER
260 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
261 L:      linux-scsi@vger.kernel.org
262 S:      Supported
263 W:      http://www.adaptec.com/
264 F:      Documentation/scsi/aacraid.rst
265 F:      drivers/scsi/aacraid/
266
267 ABI/API
268 L:      linux-api@vger.kernel.org
269 F:      include/linux/syscalls.h
270 F:      kernel/sys_ni.c
271 X:      include/uapi/
272 X:      arch/*/include/uapi/
273
274 ABIT UGURU 1,2 HARDWARE MONITOR DRIVER
275 M:      Hans de Goede <hdegoede@redhat.com>
276 L:      linux-hwmon@vger.kernel.org
277 S:      Maintained
278 F:      drivers/hwmon/abituguru.c
279
280 ABIT UGURU 3 HARDWARE MONITOR DRIVER
281 M:      Alistair John Strachan <alistair@devzero.co.uk>
282 L:      linux-hwmon@vger.kernel.org
283 S:      Maintained
284 F:      drivers/hwmon/abituguru3.c
285
286 ACCES 104-DIO-48E GPIO DRIVER
287 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
288 L:      linux-gpio@vger.kernel.org
289 S:      Maintained
290 F:      drivers/gpio/gpio-104-dio-48e.c
291
292 ACCES 104-IDI-48 GPIO DRIVER
293 M:      "William Breathitt Gray" <vilhelm.gray@gmail.com>
294 L:      linux-gpio@vger.kernel.org
295 S:      Maintained
296 F:      drivers/gpio/gpio-104-idi-48.c
297
298 ACCES 104-IDIO-16 GPIO DRIVER
299 M:      "William Breathitt Gray" <vilhelm.gray@gmail.com>
300 L:      linux-gpio@vger.kernel.org
301 S:      Maintained
302 F:      drivers/gpio/gpio-104-idio-16.c
303
304 ACCES 104-QUAD-8 DRIVER
305 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
306 M:      Syed Nayyar Waris <syednwaris@gmail.com>
307 L:      linux-iio@vger.kernel.org
308 S:      Maintained
309 F:      drivers/counter/104-quad-8.c
310
311 ACCES PCI-IDIO-16 GPIO DRIVER
312 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
313 L:      linux-gpio@vger.kernel.org
314 S:      Maintained
315 F:      drivers/gpio/gpio-pci-idio-16.c
316
317 ACCES PCIe-IDIO-24 GPIO DRIVER
318 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
319 L:      linux-gpio@vger.kernel.org
320 S:      Maintained
321 F:      drivers/gpio/gpio-pcie-idio-24.c
322
323 ACENIC DRIVER
324 M:      Jes Sorensen <jes@trained-monkey.org>
325 L:      linux-acenic@sunsite.dk
326 S:      Maintained
327 F:      drivers/net/ethernet/alteon/acenic*
328
329 ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER
330 M:      Peter Kaestle <peter@piie.net>
331 L:      platform-driver-x86@vger.kernel.org
332 S:      Maintained
333 W:      http://piie.net/?section=acerhdf
334 F:      drivers/platform/x86/acerhdf.c
335
336 ACER WMI LAPTOP EXTRAS
337 M:      "Lee, Chun-Yi" <jlee@suse.com>
338 L:      platform-driver-x86@vger.kernel.org
339 S:      Maintained
340 F:      drivers/platform/x86/acer-wmi.c
341
342 ACPI
343 M:      "Rafael J. Wysocki" <rafael@kernel.org>
344 R:      Len Brown <lenb@kernel.org>
345 L:      linux-acpi@vger.kernel.org
346 S:      Supported
347 W:      https://01.org/linux-acpi
348 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
349 B:      https://bugzilla.kernel.org
350 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
351 F:      Documentation/ABI/testing/configfs-acpi
352 F:      Documentation/ABI/testing/sysfs-bus-acpi
353 F:      Documentation/firmware-guide/acpi/
354 F:      drivers/acpi/
355 F:      drivers/pci/*/*acpi*
356 F:      drivers/pci/*acpi*
357 F:      drivers/pnp/pnpacpi/
358 F:      include/acpi/
359 F:      include/linux/acpi.h
360 F:      include/linux/fwnode.h
361 F:      tools/power/acpi/
362
363 ACPI APEI
364 M:      "Rafael J. Wysocki" <rafael@kernel.org>
365 R:      Len Brown <lenb@kernel.org>
366 R:      James Morse <james.morse@arm.com>
367 R:      Tony Luck <tony.luck@intel.com>
368 R:      Borislav Petkov <bp@alien8.de>
369 L:      linux-acpi@vger.kernel.org
370 F:      drivers/acpi/apei/
371
372 ACPI COMPONENT ARCHITECTURE (ACPICA)
373 M:      Robert Moore <robert.moore@intel.com>
374 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
375 L:      linux-acpi@vger.kernel.org
376 L:      devel@acpica.org
377 S:      Supported
378 W:      https://acpica.org/
379 W:      https://github.com/acpica/acpica/
380 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
381 B:      https://bugzilla.kernel.org
382 B:      https://bugs.acpica.org
383 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
384 F:      drivers/acpi/acpica/
385 F:      include/acpi/
386 F:      tools/power/acpi/
387
388 ACPI FOR ARM64 (ACPI/arm64)
389 M:      Lorenzo Pieralisi <lpieralisi@kernel.org>
390 M:      Hanjun Guo <guohanjun@huawei.com>
391 M:      Sudeep Holla <sudeep.holla@arm.com>
392 L:      linux-acpi@vger.kernel.org
393 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
394 S:      Maintained
395 F:      drivers/acpi/arm64
396
397 ACPI SERIAL MULTI INSTANTIATE DRIVER
398 M:      Hans de Goede <hdegoede@redhat.com>
399 L:      platform-driver-x86@vger.kernel.org
400 S:      Maintained
401 F:      drivers/platform/x86/serial-multi-instantiate.c
402
403 ACPI PCC(Platform Communication Channel) MAILBOX DRIVER
404 M:      Sudeep Holla <sudeep.holla@arm.com>
405 L:      linux-acpi@vger.kernel.org
406 S:      Supported
407 F:      drivers/mailbox/pcc.c
408
409 ACPI PMIC DRIVERS
410 M:      "Rafael J. Wysocki" <rafael@kernel.org>
411 M:      Len Brown <lenb@kernel.org>
412 R:      Andy Shevchenko <andy@kernel.org>
413 R:      Mika Westerberg <mika.westerberg@linux.intel.com>
414 L:      linux-acpi@vger.kernel.org
415 S:      Supported
416 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
417 B:      https://bugzilla.kernel.org
418 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
419 F:      drivers/acpi/pmic/
420
421 ACPI THERMAL DRIVER
422 M:      Rafael J. Wysocki <rafael@kernel.org>
423 R:      Zhang Rui <rui.zhang@intel.com>
424 L:      linux-acpi@vger.kernel.org
425 S:      Supported
426 W:      https://01.org/linux-acpi
427 B:      https://bugzilla.kernel.org
428 F:      drivers/acpi/*thermal*
429
430 ACPI VIOT DRIVER
431 M:      Jean-Philippe Brucker <jean-philippe@linaro.org>
432 L:      linux-acpi@vger.kernel.org
433 L:      iommu@lists.linux.dev
434 S:      Maintained
435 F:      drivers/acpi/viot.c
436 F:      include/linux/acpi_viot.h
437
438 ACPI WMI DRIVER
439 L:      platform-driver-x86@vger.kernel.org
440 S:      Orphan
441 F:      drivers/platform/x86/wmi.c
442 F:      include/uapi/linux/wmi.h
443
444 ACRN HYPERVISOR SERVICE MODULE
445 M:      Fei Li <fei1.li@intel.com>
446 L:      acrn-dev@lists.projectacrn.org (subscribers-only)
447 S:      Supported
448 W:      https://projectacrn.org
449 F:      Documentation/virt/acrn/
450 F:      drivers/virt/acrn/
451 F:      include/uapi/linux/acrn.h
452
453 AD1889 ALSA SOUND DRIVER
454 L:      linux-parisc@vger.kernel.org
455 S:      Maintained
456 W:      https://parisc.wiki.kernel.org/index.php/AD1889
457 F:      sound/pci/ad1889.*
458
459 AD5110 ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
460 M:      Mugilraj Dhavachelvan <dmugil2000@gmail.com>
461 L:      linux-iio@vger.kernel.org
462 S:      Supported
463 F:      drivers/iio/potentiometer/ad5110.c
464
465 AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
466 M:      Michael Hennerich <michael.hennerich@analog.com>
467 S:      Supported
468 W:      http://wiki.analog.com/AD5254
469 W:      https://ez.analog.com/linux-software-drivers
470 F:      drivers/misc/ad525x_dpot.c
471
472 AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821)
473 M:      Michael Hennerich <michael.hennerich@analog.com>
474 S:      Supported
475 W:      http://wiki.analog.com/AD5398
476 W:      https://ez.analog.com/linux-software-drivers
477 F:      drivers/regulator/ad5398.c
478
479 AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A)
480 M:      Michael Hennerich <michael.hennerich@analog.com>
481 S:      Supported
482 W:      http://wiki.analog.com/AD7142
483 W:      https://ez.analog.com/linux-software-drivers
484 F:      drivers/input/misc/ad714x.c
485
486 AD7877 TOUCHSCREEN DRIVER
487 M:      Michael Hennerich <michael.hennerich@analog.com>
488 S:      Supported
489 W:      http://wiki.analog.com/AD7877
490 W:      https://ez.analog.com/linux-software-drivers
491 F:      drivers/input/touchscreen/ad7877.c
492
493 AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889)
494 M:      Michael Hennerich <michael.hennerich@analog.com>
495 S:      Supported
496 W:      http://wiki.analog.com/AD7879
497 W:      https://ez.analog.com/linux-software-drivers
498 F:      drivers/input/touchscreen/ad7879.c
499
500 ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR)
501 M:      Jiri Kosina <jikos@kernel.org>
502 S:      Maintained
503
504 ADF7242 IEEE 802.15.4 RADIO DRIVER
505 M:      Michael Hennerich <michael.hennerich@analog.com>
506 L:      linux-wpan@vger.kernel.org
507 S:      Supported
508 W:      https://wiki.analog.com/ADF7242
509 W:      https://ez.analog.com/linux-software-drivers
510 F:      Documentation/devicetree/bindings/net/ieee802154/adf7242.txt
511 F:      drivers/net/ieee802154/adf7242.c
512
513 ADM1025 HARDWARE MONITOR DRIVER
514 M:      Jean Delvare <jdelvare@suse.com>
515 L:      linux-hwmon@vger.kernel.org
516 S:      Maintained
517 F:      Documentation/hwmon/adm1025.rst
518 F:      drivers/hwmon/adm1025.c
519
520 ADM1029 HARDWARE MONITOR DRIVER
521 M:      Corentin Labbe <clabbe.montjoie@gmail.com>
522 L:      linux-hwmon@vger.kernel.org
523 S:      Maintained
524 F:      drivers/hwmon/adm1029.c
525
526 ADM8211 WIRELESS DRIVER
527 L:      linux-wireless@vger.kernel.org
528 S:      Orphan
529 W:      https://wireless.wiki.kernel.org/
530 F:      drivers/net/wireless/admtek/adm8211.*
531
532 ADP1653 FLASH CONTROLLER DRIVER
533 M:      Sakari Ailus <sakari.ailus@iki.fi>
534 L:      linux-media@vger.kernel.org
535 S:      Maintained
536 F:      drivers/media/i2c/adp1653.c
537 F:      include/media/i2c/adp1653.h
538
539 ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501)
540 M:      Michael Hennerich <michael.hennerich@analog.com>
541 S:      Supported
542 W:      http://wiki.analog.com/ADP5520
543 W:      https://ez.analog.com/linux-software-drivers
544 F:      drivers/gpio/gpio-adp5520.c
545 F:      drivers/input/keyboard/adp5520-keys.c
546 F:      drivers/leds/leds-adp5520.c
547 F:      drivers/mfd/adp5520.c
548 F:      drivers/video/backlight/adp5520_bl.c
549
550 ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587)
551 M:      Michael Hennerich <michael.hennerich@analog.com>
552 S:      Supported
553 W:      http://wiki.analog.com/ADP5588
554 W:      https://ez.analog.com/linux-software-drivers
555 F:      drivers/gpio/gpio-adp5588.c
556 F:      drivers/input/keyboard/adp5588-keys.c
557
558 ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863)
559 M:      Michael Hennerich <michael.hennerich@analog.com>
560 S:      Supported
561 W:      http://wiki.analog.com/ADP8860
562 W:      https://ez.analog.com/linux-software-drivers
563 F:      drivers/video/backlight/adp8860_bl.c
564
565 ADT746X FAN DRIVER
566 M:      Colin Leroy <colin@colino.net>
567 S:      Maintained
568 F:      drivers/macintosh/therm_adt746x.c
569
570 ADT7475 HARDWARE MONITOR DRIVER
571 M:      Jean Delvare <jdelvare@suse.com>
572 L:      linux-hwmon@vger.kernel.org
573 S:      Maintained
574 F:      Documentation/hwmon/adt7475.rst
575 F:      drivers/hwmon/adt7475.c
576
577 ADVANSYS SCSI DRIVER
578 M:      Matthew Wilcox <willy@infradead.org>
579 M:      Hannes Reinecke <hare@suse.com>
580 L:      linux-scsi@vger.kernel.org
581 S:      Maintained
582 F:      Documentation/scsi/advansys.rst
583 F:      drivers/scsi/advansys.c
584
585 ADVANTECH SWBTN DRIVER
586 M:      Andrea Ho <Andrea.Ho@advantech.com.tw>
587 L:      platform-driver-x86@vger.kernel.org
588 S:      Maintained
589 F:      drivers/platform/x86/adv_swbutton.c
590
591 ADXL313 THREE-AXIS DIGITAL ACCELEROMETER DRIVER
592 M:      Lucas Stankus <lucas.p.stankus@gmail.com>
593 S:      Supported
594 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl313.yaml
595 F:      drivers/iio/accel/adxl313*
596
597 ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346)
598 M:      Michael Hennerich <michael.hennerich@analog.com>
599 S:      Supported
600 W:      http://wiki.analog.com/ADXL345
601 W:      https://ez.analog.com/linux-software-drivers
602 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl345.yaml
603 F:      drivers/input/misc/adxl34x.c
604
605 ADXL355 THREE-AXIS DIGITAL ACCELEROMETER DRIVER
606 M:      Puranjay Mohan <puranjay12@gmail.com>
607 L:      linux-iio@vger.kernel.org
608 S:      Supported
609 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl355.yaml
610 F:      drivers/iio/accel/adxl355.h
611 F:      drivers/iio/accel/adxl355_core.c
612 F:      drivers/iio/accel/adxl355_i2c.c
613 F:      drivers/iio/accel/adxl355_spi.c
614
615 ADXL367 THREE-AXIS DIGITAL ACCELEROMETER DRIVER
616 M:      Cosmin Tanislav <cosmin.tanislav@analog.com>
617 L:      linux-iio@vger.kernel.org
618 S:      Supported
619 W:      http://ez.analog.com/community/linux-device-drivers
620 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl367.yaml
621 F:      drivers/iio/accel/adxl367*
622
623 ADXL372 THREE-AXIS DIGITAL ACCELEROMETER DRIVER
624 M:      Michael Hennerich <michael.hennerich@analog.com>
625 S:      Supported
626 W:      https://ez.analog.com/linux-software-drivers
627 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl372.yaml
628 F:      drivers/iio/accel/adxl372.c
629 F:      drivers/iio/accel/adxl372_i2c.c
630 F:      drivers/iio/accel/adxl372_spi.c
631
632 AF9013 MEDIA DRIVER
633 M:      Antti Palosaari <crope@iki.fi>
634 L:      linux-media@vger.kernel.org
635 S:      Maintained
636 W:      https://linuxtv.org
637 W:      http://palosaari.fi/linux/
638 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
639 T:      git git://linuxtv.org/anttip/media_tree.git
640 F:      drivers/media/dvb-frontends/af9013*
641
642 AF9033 MEDIA DRIVER
643 M:      Antti Palosaari <crope@iki.fi>
644 L:      linux-media@vger.kernel.org
645 S:      Maintained
646 W:      https://linuxtv.org
647 W:      http://palosaari.fi/linux/
648 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
649 T:      git git://linuxtv.org/anttip/media_tree.git
650 F:      drivers/media/dvb-frontends/af9033*
651
652 AFFS FILE SYSTEM
653 M:      David Sterba <dsterba@suse.com>
654 L:      linux-fsdevel@vger.kernel.org
655 S:      Odd Fixes
656 F:      Documentation/filesystems/affs.rst
657 F:      fs/affs/
658
659 AFS FILESYSTEM
660 M:      David Howells <dhowells@redhat.com>
661 M:      Marc Dionne <marc.dionne@auristor.com>
662 L:      linux-afs@lists.infradead.org
663 S:      Supported
664 W:      https://www.infradead.org/~dhowells/kafs/
665 F:      Documentation/filesystems/afs.rst
666 F:      fs/afs/
667 F:      include/trace/events/afs.h
668
669 AGPGART DRIVER
670 M:      David Airlie <airlied@linux.ie>
671 S:      Maintained
672 T:      git git://anongit.freedesktop.org/drm/drm
673 F:      drivers/char/agp/
674 F:      include/linux/agp*
675 F:      include/uapi/linux/agp*
676
677 AHA152X SCSI DRIVER
678 M:      "Juergen E. Fischer" <fischer@norbit.de>
679 L:      linux-scsi@vger.kernel.org
680 S:      Maintained
681 F:      drivers/scsi/aha152x*
682 F:      drivers/scsi/pcmcia/aha152x*
683
684 AIC7XXX / AIC79XX SCSI DRIVER
685 M:      Hannes Reinecke <hare@suse.com>
686 L:      linux-scsi@vger.kernel.org
687 S:      Maintained
688 F:      drivers/scsi/aic7xxx/
689
690 AIMSLAB FM RADIO RECEIVER DRIVER
691 M:      Hans Verkuil <hverkuil@xs4all.nl>
692 L:      linux-media@vger.kernel.org
693 S:      Maintained
694 W:      https://linuxtv.org
695 T:      git git://linuxtv.org/media_tree.git
696 F:      drivers/media/radio/radio-aimslab*
697
698 AIO
699 M:      Benjamin LaHaise <bcrl@kvack.org>
700 L:      linux-aio@kvack.org
701 S:      Supported
702 F:      fs/aio.c
703 F:      include/linux/*aio*.h
704
705 AIRSPY MEDIA DRIVER
706 M:      Antti Palosaari <crope@iki.fi>
707 L:      linux-media@vger.kernel.org
708 S:      Maintained
709 W:      https://linuxtv.org
710 W:      http://palosaari.fi/linux/
711 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
712 T:      git git://linuxtv.org/anttip/media_tree.git
713 F:      drivers/media/usb/airspy/
714
715 ALACRITECH GIGABIT ETHERNET DRIVER
716 M:      Lino Sanfilippo <LinoSanfilippo@gmx.de>
717 S:      Maintained
718 F:      drivers/net/ethernet/alacritech/*
719
720 ALCATEL SPEEDTOUCH USB DRIVER
721 M:      Duncan Sands <duncan.sands@free.fr>
722 L:      linux-usb@vger.kernel.org
723 S:      Maintained
724 W:      http://www.linux-usb.org/SpeedTouch/
725 F:      drivers/usb/atm/speedtch.c
726 F:      drivers/usb/atm/usbatm.c
727
728 ALCHEMY AU1XX0 MMC DRIVER
729 M:      Manuel Lauss <manuel.lauss@gmail.com>
730 S:      Maintained
731 F:      drivers/mmc/host/au1xmmc.c
732
733 ALI1563 I2C DRIVER
734 M:      Rudolf Marek <r.marek@assembler.cz>
735 L:      linux-i2c@vger.kernel.org
736 S:      Maintained
737 F:      Documentation/i2c/busses/i2c-ali1563.rst
738 F:      drivers/i2c/busses/i2c-ali1563.c
739
740 ALIENWARE WMI DRIVER
741 L:      Dell.Client.Kernel@dell.com
742 S:      Maintained
743 F:      drivers/platform/x86/dell/alienware-wmi.c
744
745 ALL SENSORS DLH SERIES PRESSURE SENSORS DRIVER
746 M:      Tomislav Denis <tomislav.denis@avl.com>
747 L:      linux-iio@vger.kernel.org
748 S:      Maintained
749 W:      http://www.allsensors.com/
750 F:      Documentation/devicetree/bindings/iio/pressure/asc,dlhl60d.yaml
751 F:      drivers/iio/pressure/dlhl60d.c
752
753 ALLEGRO DVT VIDEO IP CORE DRIVER
754 M:      Michael Tretter <m.tretter@pengutronix.de>
755 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
756 L:      linux-media@vger.kernel.org
757 S:      Maintained
758 F:      Documentation/devicetree/bindings/media/allegro,al5e.yaml
759 F:      drivers/media/platform/allegro-dvt/
760
761 ALLWINNER A10 CSI DRIVER
762 M:      Maxime Ripard <mripard@kernel.org>
763 L:      linux-media@vger.kernel.org
764 S:      Maintained
765 T:      git git://linuxtv.org/media_tree.git
766 F:      Documentation/devicetree/bindings/media/allwinner,sun4i-a10-csi.yaml
767 F:      drivers/media/platform/sunxi/sun4i-csi/
768
769 ALLWINNER A31 MIPI CSI-2 BRIDGE DRIVER
770 M:      Paul Kocialkowski <paul.kocialkowski@bootlin.com>
771 L:      linux-media@vger.kernel.org
772 S:      Maintained
773 T:      git git://linuxtv.org/media_tree.git
774 F:      Documentation/devicetree/bindings/media/allwinner,sun6i-a31-mipi-csi2.yaml
775 F:      drivers/media/platform/sunxi/sun6i-mipi-csi2/
776
777 ALLWINNER CPUFREQ DRIVER
778 M:      Yangtao Li <tiny.windzz@gmail.com>
779 L:      linux-pm@vger.kernel.org
780 S:      Maintained
781 F:      Documentation/devicetree/bindings/opp/allwinner,sun50i-h6-operating-points.yaml
782 F:      drivers/cpufreq/sun50i-cpufreq-nvmem.c
783
784 ALLWINNER CRYPTO DRIVERS
785 M:      Corentin Labbe <clabbe.montjoie@gmail.com>
786 L:      linux-crypto@vger.kernel.org
787 S:      Maintained
788 F:      drivers/crypto/allwinner/
789
790 ALLWINNER HARDWARE SPINLOCK SUPPORT
791 M:      Wilken Gottwalt <wilken.gottwalt@posteo.net>
792 S:      Maintained
793 F:      Documentation/devicetree/bindings/hwlock/allwinner,sun6i-a31-hwspinlock.yaml
794 F:      drivers/hwspinlock/sun6i_hwspinlock.c
795
796 ALLWINNER THERMAL DRIVER
797 M:      Vasily Khoruzhick <anarsoul@gmail.com>
798 M:      Yangtao Li <tiny.windzz@gmail.com>
799 L:      linux-pm@vger.kernel.org
800 S:      Maintained
801 F:      Documentation/devicetree/bindings/thermal/allwinner,sun8i-a83t-ths.yaml
802 F:      drivers/thermal/sun8i_thermal.c
803
804 ALLWINNER VPU DRIVER
805 M:      Maxime Ripard <mripard@kernel.org>
806 M:      Paul Kocialkowski <paul.kocialkowski@bootlin.com>
807 L:      linux-media@vger.kernel.org
808 S:      Maintained
809 F:      drivers/staging/media/sunxi/cedrus/
810
811 ALPHA PORT
812 M:      Richard Henderson <rth@twiddle.net>
813 M:      Ivan Kokshaysky <ink@jurassic.park.msu.ru>
814 M:      Matt Turner <mattst88@gmail.com>
815 L:      linux-alpha@vger.kernel.org
816 S:      Odd Fixes
817 F:      arch/alpha/
818
819 ALPS PS/2 TOUCHPAD DRIVER
820 R:      Pali Rohár <pali@kernel.org>
821 F:      drivers/input/mouse/alps.*
822
823 ALTERA I2C CONTROLLER DRIVER
824 M:      Thor Thayer <thor.thayer@linux.intel.com>
825 S:      Maintained
826 F:      Documentation/devicetree/bindings/i2c/i2c-altera.txt
827 F:      drivers/i2c/busses/i2c-altera.c
828
829 ALTERA MAILBOX DRIVER
830 M:      Mun Yew Tham <mun.yew.tham@intel.com>
831 S:      Maintained
832 F:      drivers/mailbox/mailbox-altera.c
833
834 ALTERA MSGDMA IP CORE DRIVER
835 M:      Olivier Dautricourt <olivierdautricourt@gmail.com>
836 R:      Stefan Roese <sr@denx.de>
837 L:      dmaengine@vger.kernel.org
838 S:      Odd Fixes
839 F:      Documentation/devicetree/bindings/dma/altr,msgdma.yaml
840 F:      drivers/dma/altera-msgdma.c
841
842 ALTERA PIO DRIVER
843 M:      Mun Yew Tham <mun.yew.tham@intel.com>
844 L:      linux-gpio@vger.kernel.org
845 S:      Maintained
846 F:      drivers/gpio/gpio-altera.c
847
848 ALTERA SYSTEM MANAGER DRIVER
849 M:      Thor Thayer <thor.thayer@linux.intel.com>
850 S:      Maintained
851 F:      drivers/mfd/altera-sysmgr.c
852 F:      include/linux/mfd/altera-sysmgr.h
853
854 ALTERA SYSTEM RESOURCE DRIVER FOR ARRIA10 DEVKIT
855 M:      Thor Thayer <thor.thayer@linux.intel.com>
856 S:      Maintained
857 F:      drivers/gpio/gpio-altera-a10sr.c
858 F:      drivers/mfd/altera-a10sr.c
859 F:      drivers/reset/reset-a10sr.c
860 F:      include/dt-bindings/reset/altr,rst-mgr-a10sr.h
861 F:      include/linux/mfd/altera-a10sr.h
862
863 ALTERA TRIPLE SPEED ETHERNET DRIVER
864 M:      Joyce Ooi <joyce.ooi@intel.com>
865 L:      netdev@vger.kernel.org
866 S:      Maintained
867 F:      drivers/net/ethernet/altera/
868
869 ALTERA UART/JTAG UART SERIAL DRIVERS
870 M:      Tobias Klauser <tklauser@distanz.ch>
871 L:      linux-serial@vger.kernel.org
872 S:      Maintained
873 F:      drivers/tty/serial/altera_jtaguart.c
874 F:      drivers/tty/serial/altera_uart.c
875 F:      include/linux/altera_jtaguart.h
876 F:      include/linux/altera_uart.h
877
878 AMAZON ANNAPURNA LABS FIC DRIVER
879 M:      Talel Shenhar <talel@amazon.com>
880 S:      Maintained
881 F:      Documentation/devicetree/bindings/interrupt-controller/amazon,al-fic.txt
882 F:      drivers/irqchip/irq-al-fic.c
883
884 AMAZON ANNAPURNA LABS MEMORY CONTROLLER EDAC
885 M:      Talel Shenhar <talel@amazon.com>
886 M:      Talel Shenhar <talelshenhar@gmail.com>
887 S:      Maintained
888 F:      Documentation/devicetree/bindings/edac/amazon,al-mc-edac.yaml
889 F:      drivers/edac/al_mc_edac.c
890
891 AMAZON ANNAPURNA LABS THERMAL MMIO DRIVER
892 M:      Talel Shenhar <talel@amazon.com>
893 S:      Maintained
894 F:      Documentation/devicetree/bindings/thermal/amazon,al-thermal.txt
895 F:      drivers/thermal/thermal_mmio.c
896
897 AMAZON ETHERNET DRIVERS
898 M:      Shay Agroskin <shayagr@amazon.com>
899 M:      Arthur Kiyanovski <akiyano@amazon.com>
900 R:      David Arinzon <darinzon@amazon.com>
901 R:      Noam Dagan <ndagan@amazon.com>
902 R:      Saeed Bishara <saeedb@amazon.com>
903 L:      netdev@vger.kernel.org
904 S:      Supported
905 F:      Documentation/networking/device_drivers/ethernet/amazon/ena.rst
906 F:      drivers/net/ethernet/amazon/
907
908 AMAZON RDMA EFA DRIVER
909 M:      Gal Pressman <galpress@amazon.com>
910 R:      Yossi Leybovich <sleybo@amazon.com>
911 L:      linux-rdma@vger.kernel.org
912 S:      Supported
913 Q:      https://patchwork.kernel.org/project/linux-rdma/list/
914 F:      drivers/infiniband/hw/efa/
915 F:      include/uapi/rdma/efa-abi.h
916
917 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER
918 M:      Tom Lendacky <thomas.lendacky@amd.com>
919 M:      John Allen <john.allen@amd.com>
920 L:      linux-crypto@vger.kernel.org
921 S:      Supported
922 F:      drivers/crypto/ccp/
923 F:      include/linux/ccp.h
924
925 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER - SEV SUPPORT
926 M:      Brijesh Singh <brijesh.singh@amd.com>
927 M:      Tom Lendacky <thomas.lendacky@amd.com>
928 L:      linux-crypto@vger.kernel.org
929 S:      Supported
930 F:      drivers/crypto/ccp/sev*
931 F:      include/uapi/linux/psp-sev.h
932
933 AMD DISPLAY CORE
934 M:      Harry Wentland <harry.wentland@amd.com>
935 M:      Leo Li <sunpeng.li@amd.com>
936 M:      Rodrigo Siqueira <Rodrigo.Siqueira@amd.com>
937 L:      amd-gfx@lists.freedesktop.org
938 S:      Supported
939 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
940 F:      drivers/gpu/drm/amd/display/
941
942 AMD FAM15H PROCESSOR POWER MONITORING DRIVER
943 M:      Huang Rui <ray.huang@amd.com>
944 L:      linux-hwmon@vger.kernel.org
945 S:      Supported
946 F:      Documentation/hwmon/fam15h_power.rst
947 F:      drivers/hwmon/fam15h_power.c
948
949 AMD FCH GPIO DRIVER
950 M:      Enrico Weigelt, metux IT consult <info@metux.net>
951 L:      linux-gpio@vger.kernel.org
952 S:      Maintained
953 F:      drivers/gpio/gpio-amd-fch.c
954 F:      include/linux/platform_data/gpio/gpio-amd-fch.h
955
956 AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
957 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
958 S:      Orphan
959 F:      drivers/usb/gadget/udc/amd5536udc.*
960
961 AMD GEODE PROCESSOR/CHIPSET SUPPORT
962 M:      Andres Salomon <dilinger@queued.net>
963 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
964 S:      Supported
965 W:      http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
966 F:      arch/x86/include/asm/geode.h
967 F:      drivers/char/hw_random/geode-rng.c
968 F:      drivers/crypto/geode*
969 F:      drivers/video/fbdev/geode/
970
971 AMD IOMMU (AMD-VI)
972 M:      Joerg Roedel <joro@8bytes.org>
973 R:      Suravee Suthikulpanit <suravee.suthikulpanit@amd.com>
974 L:      iommu@lists.linux.dev
975 S:      Maintained
976 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
977 F:      drivers/iommu/amd/
978 F:      include/linux/amd-iommu.h
979
980 AMD KFD
981 M:      Felix Kuehling <Felix.Kuehling@amd.com>
982 L:      amd-gfx@lists.freedesktop.org
983 S:      Supported
984 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
985 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd*.[ch]
986 F:      drivers/gpu/drm/amd/amdkfd/
987 F:      drivers/gpu/drm/amd/include/cik_structs.h
988 F:      drivers/gpu/drm/amd/include/kgd_kfd_interface.h
989 F:      drivers/gpu/drm/amd/include/v9_structs.h
990 F:      drivers/gpu/drm/amd/include/vi_structs.h
991 F:      include/uapi/linux/kfd_ioctl.h
992 F:      include/uapi/linux/kfd_sysfs.h
993
994 AMD SPI DRIVER
995 M:      Sanjay R Mehta <sanju.mehta@amd.com>
996 S:      Maintained
997 F:      drivers/spi/spi-amd.c
998
999 AMD MP2 I2C DRIVER
1000 M:      Elie Morisse <syniurge@gmail.com>
1001 M:      Nehal Shah <nehal-bakulchandra.shah@amd.com>
1002 M:      Shyam Sundar S K <shyam-sundar.s-k@amd.com>
1003 L:      linux-i2c@vger.kernel.org
1004 S:      Maintained
1005 F:      drivers/i2c/busses/i2c-amd-mp2*
1006
1007 AMD PMC DRIVER
1008 M:      Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
1009 L:      platform-driver-x86@vger.kernel.org
1010 S:      Maintained
1011 F:      drivers/platform/x86/amd-pmc.*
1012
1013 AMD HSMP DRIVER
1014 M:      Naveen Krishna Chatradhi <naveenkrishna.chatradhi@amd.com>
1015 R:      Carlos Bilbao <carlos.bilbao@amd.com>
1016 L:      platform-driver-x86@vger.kernel.org
1017 S:      Maintained
1018 F:      Documentation/x86/amd_hsmp.rst
1019 F:      arch/x86/include/asm/amd_hsmp.h
1020 F:      arch/x86/include/uapi/asm/amd_hsmp.h
1021 F:      drivers/platform/x86/amd_hsmp.c
1022
1023 AMD POWERPLAY AND SWSMU
1024 M:      Evan Quan <evan.quan@amd.com>
1025 L:      amd-gfx@lists.freedesktop.org
1026 S:      Supported
1027 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
1028 F:      drivers/gpu/drm/amd/pm/
1029
1030 AMD PSTATE DRIVER
1031 M:      Huang Rui <ray.huang@amd.com>
1032 L:      linux-pm@vger.kernel.org
1033 S:      Supported
1034 F:      Documentation/admin-guide/pm/amd-pstate.rst
1035 F:      drivers/cpufreq/amd-pstate*
1036 F:      tools/power/x86/amd_pstate_tracer/amd_pstate_trace.py
1037
1038 AMD PTDMA DRIVER
1039 M:      Sanjay R Mehta <sanju.mehta@amd.com>
1040 L:      dmaengine@vger.kernel.org
1041 S:      Maintained
1042 F:      drivers/dma/ptdma/
1043
1044 AMD SEATTLE DEVICE TREE SUPPORT
1045 M:      Brijesh Singh <brijeshkumar.singh@amd.com>
1046 M:      Suravee Suthikulpanit <suravee.suthikulpanit@amd.com>
1047 M:      Tom Lendacky <thomas.lendacky@amd.com>
1048 S:      Supported
1049 F:      arch/arm64/boot/dts/amd/
1050
1051 AMD XGBE DRIVER
1052 M:      Tom Lendacky <thomas.lendacky@amd.com>
1053 M:      "Shyam Sundar S K" <Shyam-sundar.S-k@amd.com>
1054 L:      netdev@vger.kernel.org
1055 S:      Supported
1056 F:      arch/arm64/boot/dts/amd/amd-seattle-xgbe*.dtsi
1057 F:      drivers/net/ethernet/amd/xgbe/
1058
1059 AMD SENSOR FUSION HUB DRIVER
1060 M:      Basavaraj Natikar <basavaraj.natikar@amd.com>
1061 L:      linux-input@vger.kernel.org
1062 S:      Maintained
1063 F:      Documentation/hid/amd-sfh*
1064 F:      drivers/hid/amd-sfh-hid/
1065
1066 AMPHION VPU CODEC V4L2 DRIVER
1067 M:      Ming Qian <ming.qian@nxp.com>
1068 M:      Shijie Qin <shijie.qin@nxp.com>
1069 M:      Zhou Peng <eagle.zhou@nxp.com>
1070 L:      linux-media@vger.kernel.org
1071 S:      Maintained
1072 F:      Documentation/devicetree/bindings/media/amphion,vpu.yaml
1073 F:      drivers/media/platform/amphion/
1074
1075 AMS AS73211 DRIVER
1076 M:      Christian Eggers <ceggers@arri.de>
1077 L:      linux-iio@vger.kernel.org
1078 S:      Maintained
1079 F:      Documentation/devicetree/bindings/iio/light/ams,as73211.yaml
1080 F:      drivers/iio/light/as73211.c
1081
1082 AMT (Automatic Multicast Tunneling)
1083 M:      Taehee Yoo <ap420073@gmail.com>
1084 L:      netdev@vger.kernel.org
1085 S:      Maintained
1086 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
1087 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
1088 F:      drivers/net/amt.c
1089
1090 ANALOG DEVICES INC AD7192 DRIVER
1091 M:      Alexandru Tachici <alexandru.tachici@analog.com>
1092 L:      linux-iio@vger.kernel.org
1093 S:      Supported
1094 W:      https://ez.analog.com/linux-software-drivers
1095 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7192.yaml
1096 F:      drivers/iio/adc/ad7192.c
1097
1098 ANALOG DEVICES INC AD7292 DRIVER
1099 M:      Marcelo Schmitt <marcelo.schmitt1@gmail.com>
1100 L:      linux-iio@vger.kernel.org
1101 S:      Supported
1102 W:      https://ez.analog.com/linux-software-drivers
1103 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7292.yaml
1104 F:      drivers/iio/adc/ad7292.c
1105
1106 ANALOG DEVICES INC AD3552R DRIVER
1107 M:      Nuno Sá <nuno.sa@analog.com>
1108 L:      linux-iio@vger.kernel.org
1109 S:      Supported
1110 W:      https://ez.analog.com/linux-software-drivers
1111 F:      Documentation/devicetree/bindings/iio/dac/adi,ad3552r.yaml
1112 F:      drivers/iio/dac/ad3552r.c
1113
1114 ANALOG DEVICES INC AD7293 DRIVER
1115 M:      Antoniu Miclaus <antoniu.miclaus@analog.com>
1116 L:      linux-iio@vger.kernel.org
1117 S:      Supported
1118 W:      https://ez.analog.com/linux-software-drivers
1119 F:      Documentation/devicetree/bindings/iio/dac/adi,ad7293.yaml
1120 F:      drivers/iio/dac/ad7293.c
1121
1122 ANALOG DEVICES INC AD7768-1 DRIVER
1123 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1124 L:      linux-iio@vger.kernel.org
1125 S:      Supported
1126 W:      https://ez.analog.com/linux-software-drivers
1127 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7768-1.yaml
1128 F:      drivers/iio/adc/ad7768-1.c
1129
1130 ANALOG DEVICES INC AD7780 DRIVER
1131 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1132 M:      Renato Lui Geh <renatogeh@gmail.com>
1133 L:      linux-iio@vger.kernel.org
1134 S:      Supported
1135 W:      https://ez.analog.com/linux-software-drivers
1136 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7780.yaml
1137 F:      drivers/iio/adc/ad7780.c
1138
1139 ANALOG DEVICES INC AD74413R DRIVER
1140 M:      Cosmin Tanislav <cosmin.tanislav@analog.com>
1141 L:      linux-iio@vger.kernel.org
1142 S:      Supported
1143 W:      http://ez.analog.com/community/linux-device-drivers
1144 F:      Documentation/devicetree/bindings/iio/addac/adi,ad74413r.yaml
1145 F:      drivers/iio/addac/ad74413r.c
1146 F:      include/dt-bindings/iio/addac/adi,ad74413r.h
1147
1148 ANALOG DEVICES INC AD9389B DRIVER
1149 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1150 L:      linux-media@vger.kernel.org
1151 S:      Maintained
1152 F:      drivers/media/i2c/ad9389b*
1153
1154 ANALOG DEVICES INC ADA4250 DRIVER
1155 M:      Antoniu Miclaus <antoniu.miclaus@analog.com>
1156 L:      linux-iio@vger.kernel.org
1157 S:      Supported
1158 W:      https://ez.analog.com/linux-software-drivers
1159 F:      Documentation/devicetree/bindings/iio/amplifiers/adi,ada4250.yaml
1160 F:      drivers/iio/amplifiers/ada4250.c
1161
1162 ANALOG DEVICES INC ADGS1408 DRIVER
1163 M:      Mircea Caprioru <mircea.caprioru@analog.com>
1164 S:      Supported
1165 F:      Documentation/devicetree/bindings/mux/adi,adgs1408.txt
1166 F:      drivers/mux/adgs1408.c
1167
1168 ANALOG DEVICES INC ADIN DRIVER
1169 M:      Michael Hennerich <michael.hennerich@analog.com>
1170 L:      netdev@vger.kernel.org
1171 S:      Supported
1172 W:      https://ez.analog.com/linux-software-drivers
1173 F:      Documentation/devicetree/bindings/net/adi,adin.yaml
1174 F:      drivers/net/phy/adin.c
1175
1176 ANALOG DEVICES INC ADIS DRIVER LIBRARY
1177 M:      Nuno Sa <nuno.sa@analog.com>
1178 L:      linux-iio@vger.kernel.org
1179 S:      Supported
1180 F:      drivers/iio/imu/adis.c
1181 F:      drivers/iio/imu/adis_buffer.c
1182 F:      drivers/iio/imu/adis_trigger.c
1183 F:      include/linux/iio/imu/adis.h
1184
1185 ANALOG DEVICES INC ADIS16460 DRIVER
1186 M:      Dragos Bogdan <dragos.bogdan@analog.com>
1187 L:      linux-iio@vger.kernel.org
1188 S:      Supported
1189 W:      https://ez.analog.com/linux-software-drivers
1190 F:      Documentation/devicetree/bindings/iio/imu/adi,adis16460.yaml
1191 F:      drivers/iio/imu/adis16460.c
1192
1193 ANALOG DEVICES INC ADIS16475 DRIVER
1194 M:      Nuno Sa <nuno.sa@analog.com>
1195 L:      linux-iio@vger.kernel.org
1196 W:      https://ez.analog.com/linux-software-drivers
1197 S:      Supported
1198 F:      drivers/iio/imu/adis16475.c
1199 F:      Documentation/devicetree/bindings/iio/imu/adi,adis16475.yaml
1200
1201 ANALOG DEVICES INC ADM1177 DRIVER
1202 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1203 L:      linux-hwmon@vger.kernel.org
1204 S:      Supported
1205 W:      https://ez.analog.com/linux-software-drivers
1206 F:      Documentation/devicetree/bindings/hwmon/adi,adm1177.yaml
1207 F:      drivers/hwmon/adm1177.c
1208
1209 ANALOG DEVICES INC ADMV1013 DRIVER
1210 M:      Antoniu Miclaus <antoniu.miclaus@analog.com>
1211 L:      linux-iio@vger.kernel.org
1212 S:      Supported
1213 W:      https://ez.analog.com/linux-software-drivers
1214 F:      Documentation/devicetree/bindings/iio/frequency/adi,admv1013.yaml
1215 F:      drivers/iio/frequency/admv1013.c
1216
1217 ANALOG DEVICES INC ADMV8818 DRIVER
1218 M:      Antoniu Miclaus <antoniu.miclaus@analog.com>
1219 L:      linux-iio@vger.kernel.org
1220 S:      Supported
1221 W:      https://ez.analog.com/linux-software-drivers
1222 F:      Documentation/devicetree/bindings/iio/filter/adi,admv8818.yaml
1223 F:      drivers/iio/filter/admv8818.c
1224
1225 ANALOG DEVICES INC ADMV1014 DRIVER
1226 M:      Antoniu Miclaus <antoniu.miclaus@analog.com>
1227 L:      linux-iio@vger.kernel.org
1228 S:      Supported
1229 W:      https://ez.analog.com/linux-software-drivers
1230 F:      Documentation/devicetree/bindings/iio/frequency/adi,admv1014.yaml
1231 F:      drivers/iio/frequency/admv1014.c
1232
1233 ANALOG DEVICES INC ADP5061 DRIVER
1234 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1235 L:      linux-pm@vger.kernel.org
1236 S:      Supported
1237 W:      https://ez.analog.com/linux-software-drivers
1238 F:      drivers/power/supply/adp5061.c
1239
1240 ANALOG DEVICES INC ADRF6780 DRIVER
1241 M:      Antoniu Miclaus <antoniu.miclaus@analog.com>
1242 L:      linux-iio@vger.kernel.org
1243 S:      Supported
1244 W:      https://ez.analog.com/linux-software-drivers
1245 F:      Documentation/devicetree/bindings/iio/frequency/adi,adrf6780.yaml
1246 F:      drivers/iio/frequency/adrf6780.c
1247
1248 ANALOG DEVICES INC ADV7180 DRIVER
1249 M:      Lars-Peter Clausen <lars@metafoo.de>
1250 L:      linux-media@vger.kernel.org
1251 S:      Supported
1252 W:      https://ez.analog.com/linux-software-drivers
1253 F:      drivers/media/i2c/adv7180.c
1254 F:      Documentation/devicetree/bindings/media/i2c/adv7180.yaml
1255
1256 ANALOG DEVICES INC ADV748X DRIVER
1257 M:      Kieran Bingham <kieran.bingham@ideasonboard.com>
1258 L:      linux-media@vger.kernel.org
1259 S:      Maintained
1260 F:      Documentation/devicetree/bindings/media/i2c/adv748x.yaml
1261 F:      drivers/media/i2c/adv748x/*
1262
1263 ANALOG DEVICES INC ADV7511 DRIVER
1264 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1265 L:      linux-media@vger.kernel.org
1266 S:      Maintained
1267 F:      drivers/media/i2c/adv7511*
1268
1269 ANALOG DEVICES INC ADV7604 DRIVER
1270 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1271 L:      linux-media@vger.kernel.org
1272 S:      Maintained
1273 F:      drivers/media/i2c/adv7604*
1274 F:      Documentation/devicetree/bindings/media/i2c/adv7604.yaml
1275
1276 ANALOG DEVICES INC ADV7842 DRIVER
1277 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1278 L:      linux-media@vger.kernel.org
1279 S:      Maintained
1280 F:      drivers/media/i2c/adv7842*
1281
1282 ANALOG DEVICES INC ADXRS290 DRIVER
1283 M:      Nishant Malpani <nish.malpani25@gmail.com>
1284 L:      linux-iio@vger.kernel.org
1285 S:      Supported
1286 F:      drivers/iio/gyro/adxrs290.c
1287 F:      Documentation/devicetree/bindings/iio/gyroscope/adi,adxrs290.yaml
1288
1289 ANALOG DEVICES INC ASOC CODEC DRIVERS
1290 M:      Lars-Peter Clausen <lars@metafoo.de>
1291 M:      Nuno Sá <nuno.sa@analog.com>
1292 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1293 S:      Supported
1294 W:      http://wiki.analog.com/
1295 W:      https://ez.analog.com/linux-software-drivers
1296 F:      sound/soc/codecs/ad1*
1297 F:      sound/soc/codecs/ad7*
1298 F:      sound/soc/codecs/adau*
1299 F:      sound/soc/codecs/adav*
1300 F:      sound/soc/codecs/sigmadsp.*
1301 F:      sound/soc/codecs/ssm*
1302
1303 ANALOG DEVICES INC DMA DRIVERS
1304 M:      Lars-Peter Clausen <lars@metafoo.de>
1305 S:      Supported
1306 W:      https://ez.analog.com/linux-software-drivers
1307 F:      drivers/dma/dma-axi-dmac.c
1308
1309 ANALOG DEVICES INC IIO DRIVERS
1310 M:      Lars-Peter Clausen <lars@metafoo.de>
1311 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1312 S:      Supported
1313 W:      http://wiki.analog.com/
1314 W:      https://ez.analog.com/linux-software-drivers
1315 F:      Documentation/ABI/testing/sysfs-bus-iio-frequency-ad9523
1316 F:      Documentation/ABI/testing/sysfs-bus-iio-frequency-adf4350
1317 F:      Documentation/devicetree/bindings/iio/*/adi,*
1318 F:      Documentation/devicetree/bindings/iio/dac/adi,ad5758.yaml
1319 F:      drivers/iio/*/ad*
1320 F:      drivers/iio/adc/ltc249*
1321 F:      drivers/iio/amplifiers/hmc425a.c
1322 F:      drivers/staging/iio/*/ad*
1323 X:      drivers/iio/*/adjd*
1324
1325 ANALOGBITS PLL LIBRARIES
1326 M:      Paul Walmsley <paul.walmsley@sifive.com>
1327 S:      Supported
1328 F:      drivers/clk/analogbits/*
1329 F:      include/linux/clk/analogbits*
1330
1331 ANDROID CONFIG FRAGMENTS
1332 M:      Rob Herring <robh@kernel.org>
1333 S:      Supported
1334 F:      kernel/configs/android*
1335
1336 ANDROID DRIVERS
1337 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
1338 M:      Arve Hjønnevåg <arve@android.com>
1339 M:      Todd Kjos <tkjos@android.com>
1340 M:      Martijn Coenen <maco@android.com>
1341 M:      Joel Fernandes <joel@joelfernandes.org>
1342 M:      Christian Brauner <christian@brauner.io>
1343 M:      Hridya Valsaraju <hridya@google.com>
1344 M:      Suren Baghdasaryan <surenb@google.com>
1345 L:      linux-kernel@vger.kernel.org
1346 S:      Supported
1347 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
1348 F:      drivers/android/
1349
1350 ANDROID GOLDFISH PIC DRIVER
1351 M:      Miodrag Dinic <miodrag.dinic@mips.com>
1352 S:      Supported
1353 F:      Documentation/devicetree/bindings/interrupt-controller/google,goldfish-pic.txt
1354 F:      drivers/irqchip/irq-goldfish-pic.c
1355
1356 ANDROID GOLDFISH RTC DRIVER
1357 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
1358 S:      Supported
1359 F:      Documentation/devicetree/bindings/rtc/google,goldfish-rtc.txt
1360 F:      drivers/rtc/rtc-goldfish.c
1361
1362 AOA (Apple Onboard Audio) ALSA DRIVER
1363 M:      Johannes Berg <johannes@sipsolutions.net>
1364 L:      linuxppc-dev@lists.ozlabs.org
1365 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1366 S:      Maintained
1367 F:      sound/aoa/
1368
1369 APEX EMBEDDED SYSTEMS STX104 IIO DRIVER
1370 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
1371 L:      linux-iio@vger.kernel.org
1372 S:      Maintained
1373 F:      drivers/iio/adc/stx104.c
1374
1375 APM DRIVER
1376 M:      Jiri Kosina <jikos@kernel.org>
1377 S:      Odd fixes
1378 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/apm.git
1379 F:      arch/x86/kernel/apm_32.c
1380 F:      drivers/char/apm-emulation.c
1381 F:      include/linux/apm_bios.h
1382 F:      include/uapi/linux/apm_bios.h
1383
1384 APPARMOR SECURITY MODULE
1385 M:      John Johansen <john.johansen@canonical.com>
1386 L:      apparmor@lists.ubuntu.com (subscribers-only, general discussion)
1387 S:      Supported
1388 W:      wiki.apparmor.net
1389 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jj/linux-apparmor
1390 F:      Documentation/admin-guide/LSM/apparmor.rst
1391 F:      security/apparmor/
1392
1393 APPLE BCM5974 MULTITOUCH DRIVER
1394 M:      Henrik Rydberg <rydberg@bitmath.org>
1395 L:      linux-input@vger.kernel.org
1396 S:      Odd fixes
1397 F:      drivers/input/mouse/bcm5974.c
1398
1399 APPLE PCIE CONTROLLER DRIVER
1400 M:      Alyssa Rosenzweig <alyssa@rosenzweig.io>
1401 M:      Marc Zyngier <maz@kernel.org>
1402 L:      linux-pci@vger.kernel.org
1403 S:      Maintained
1404 F:      drivers/pci/controller/pcie-apple.c
1405
1406 APPLE SMC DRIVER
1407 M:      Henrik Rydberg <rydberg@bitmath.org>
1408 L:      linux-hwmon@vger.kernel.org
1409 S:      Odd fixes
1410 F:      drivers/hwmon/applesmc.c
1411
1412 APPLETALK NETWORK LAYER
1413 L:      netdev@vger.kernel.org
1414 S:      Odd fixes
1415 F:      drivers/net/appletalk/
1416 F:      include/linux/atalk.h
1417 F:      include/uapi/linux/atalk.h
1418 F:      net/appletalk/
1419
1420 APPLIED MICRO (APM) X-GENE DEVICE TREE SUPPORT
1421 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1422 S:      Supported
1423 F:      arch/arm64/boot/dts/apm/
1424
1425 APPLIED MICRO (APM) X-GENE SOC EDAC
1426 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1427 S:      Supported
1428 F:      Documentation/devicetree/bindings/edac/apm-xgene-edac.txt
1429 F:      drivers/edac/xgene_edac.c
1430
1431 APPLIED MICRO (APM) X-GENE SOC ETHERNET (V2) DRIVER
1432 M:      Iyappan Subramanian <iyappan@os.amperecomputing.com>
1433 M:      Keyur Chudgar <keyur@os.amperecomputing.com>
1434 S:      Supported
1435 F:      drivers/net/ethernet/apm/xgene-v2/
1436
1437 APPLIED MICRO (APM) X-GENE SOC ETHERNET DRIVER
1438 M:      Iyappan Subramanian <iyappan@os.amperecomputing.com>
1439 M:      Keyur Chudgar <keyur@os.amperecomputing.com>
1440 M:      Quan Nguyen <quan@os.amperecomputing.com>
1441 S:      Supported
1442 F:      Documentation/devicetree/bindings/net/apm-xgene-enet.txt
1443 F:      Documentation/devicetree/bindings/net/apm-xgene-mdio.txt
1444 F:      drivers/net/ethernet/apm/xgene/
1445 F:      drivers/net/mdio/mdio-xgene.c
1446
1447 APPLIED MICRO (APM) X-GENE SOC PMU
1448 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1449 S:      Supported
1450 F:      Documentation/admin-guide/perf/xgene-pmu.rst
1451 F:      Documentation/devicetree/bindings/perf/apm-xgene-pmu.txt
1452 F:      drivers/perf/xgene_pmu.c
1453
1454 APTINA CAMERA SENSOR PLL
1455 M:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
1456 L:      linux-media@vger.kernel.org
1457 S:      Maintained
1458 F:      drivers/media/i2c/aptina-pll.*
1459
1460 AQUACOMPUTER D5 NEXT PUMP SENSOR DRIVER
1461 M:      Aleksa Savic <savicaleksa83@gmail.com>
1462 M:      Jack Doan <me@jackdoan.com>
1463 L:      linux-hwmon@vger.kernel.org
1464 S:      Maintained
1465 F:      Documentation/hwmon/aquacomputer_d5next.rst
1466 F:      drivers/hwmon/aquacomputer_d5next.c
1467
1468 AQUANTIA ETHERNET DRIVER (atlantic)
1469 M:      Igor Russkikh <irusskikh@marvell.com>
1470 L:      netdev@vger.kernel.org
1471 S:      Supported
1472 W:      https://www.marvell.com/
1473 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
1474 F:      Documentation/networking/device_drivers/ethernet/aquantia/atlantic.rst
1475 F:      drivers/net/ethernet/aquantia/atlantic/
1476
1477 AQUANTIA ETHERNET DRIVER PTP SUBSYSTEM
1478 M:      Egor Pomozov <epomozov@marvell.com>
1479 L:      netdev@vger.kernel.org
1480 S:      Supported
1481 W:      http://www.aquantia.com
1482 F:      drivers/net/ethernet/aquantia/atlantic/aq_ptp*
1483
1484 AR0521 ON SEMICONDUCTOR CAMERA SENSOR DRIVER
1485 M:      Krzysztof Hałasa <khalasa@piap.pl>
1486 L:      linux-media@vger.kernel.org
1487 S:      Maintained
1488 F:      Documentation/devicetree/bindings/media/i2c/onnn,ar0521.yaml
1489 F:      drivers/media/i2c/ar0521.c
1490
1491 ARASAN NAND CONTROLLER DRIVER
1492 M:      Miquel Raynal <miquel.raynal@bootlin.com>
1493 M:      Naga Sureshkumar Relli <nagasure@xilinx.com>
1494 L:      linux-mtd@lists.infradead.org
1495 S:      Maintained
1496 F:      Documentation/devicetree/bindings/mtd/arasan,nand-controller.yaml
1497 F:      drivers/mtd/nand/raw/arasan-nand-controller.c
1498
1499 ARC FRAMEBUFFER DRIVER
1500 M:      Jaya Kumar <jayalk@intworks.biz>
1501 S:      Maintained
1502 F:      drivers/video/fbdev/arcfb.c
1503 F:      drivers/video/fbdev/core/fb_defio.c
1504
1505 ARC PGU DRM DRIVER
1506 M:      Alexey Brodkin <abrodkin@synopsys.com>
1507 S:      Supported
1508 F:      Documentation/devicetree/bindings/display/snps,arcpgu.txt
1509 F:      drivers/gpu/drm/tiny/arcpgu.c
1510
1511 ARCNET NETWORK LAYER
1512 M:      Michael Grzeschik <m.grzeschik@pengutronix.de>
1513 L:      netdev@vger.kernel.org
1514 S:      Maintained
1515 F:      drivers/net/arcnet/
1516 F:      include/uapi/linux/if_arcnet.h
1517
1518 ARM ARCHITECTED TIMER DRIVER
1519 M:      Mark Rutland <mark.rutland@arm.com>
1520 M:      Marc Zyngier <maz@kernel.org>
1521 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1522 S:      Maintained
1523 F:      arch/arm/include/asm/arch_timer.h
1524 F:      arch/arm64/include/asm/arch_timer.h
1525 F:      drivers/clocksource/arm_arch_timer.c
1526
1527 ARM HDLCD DRM DRIVER
1528 M:      Liviu Dudau <liviu.dudau@arm.com>
1529 S:      Supported
1530 F:      Documentation/devicetree/bindings/display/arm,hdlcd.yaml
1531 F:      drivers/gpu/drm/arm/hdlcd_*
1532
1533 ARM INTEGRATOR, VERSATILE AND REALVIEW SUPPORT
1534 M:      Linus Walleij <linus.walleij@linaro.org>
1535 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1536 S:      Maintained
1537 F:      Documentation/devicetree/bindings/arm/arm,integrator.yaml
1538 F:      Documentation/devicetree/bindings/arm/arm,realview.yaml
1539 F:      Documentation/devicetree/bindings/arm/arm,versatile.yaml
1540 F:      Documentation/devicetree/bindings/arm/arm,vexpress-juno.yaml
1541 F:      Documentation/devicetree/bindings/auxdisplay/arm,versatile-lcd.yaml
1542 F:      Documentation/devicetree/bindings/clock/arm,syscon-icst.yaml
1543 F:      Documentation/devicetree/bindings/i2c/arm,i2c-versatile.yaml
1544 F:      Documentation/devicetree/bindings/interrupt-controller/arm,versatile-fpga-irq.txt
1545 F:      Documentation/devicetree/bindings/mtd/mtd-physmap.yaml
1546 F:      arch/arm/boot/dts/arm-realview-*
1547 F:      arch/arm/boot/dts/integrator*
1548 F:      arch/arm/boot/dts/versatile*
1549 F:      arch/arm/mach-versatile/
1550 F:      drivers/bus/arm-integrator-lm.c
1551 F:      drivers/clk/versatile/
1552 F:      drivers/i2c/busses/i2c-versatile.c
1553 F:      drivers/irqchip/irq-versatile-fpga.c
1554 F:      drivers/mtd/maps/physmap-versatile.*
1555 F:      drivers/power/reset/arm-versatile-reboot.c
1556 F:      drivers/soc/versatile/
1557
1558 ARM KOMEDA DRM-KMS DRIVER
1559 M:      James (Qian) Wang <james.qian.wang@arm.com>
1560 M:      Liviu Dudau <liviu.dudau@arm.com>
1561 M:      Mihail Atanassov <mihail.atanassov@arm.com>
1562 L:      Mali DP Maintainers <malidp@foss.arm.com>
1563 S:      Supported
1564 T:      git git://anongit.freedesktop.org/drm/drm-misc
1565 F:      Documentation/devicetree/bindings/display/arm,komeda.yaml
1566 F:      Documentation/gpu/komeda-kms.rst
1567 F:      drivers/gpu/drm/arm/display/include/
1568 F:      drivers/gpu/drm/arm/display/komeda/
1569
1570 ARM MALI PANFROST DRM DRIVER
1571 M:      Rob Herring <robh@kernel.org>
1572 M:      Tomeu Vizoso <tomeu.vizoso@collabora.com>
1573 R:      Steven Price <steven.price@arm.com>
1574 R:      Alyssa Rosenzweig <alyssa.rosenzweig@collabora.com>
1575 L:      dri-devel@lists.freedesktop.org
1576 S:      Supported
1577 T:      git git://anongit.freedesktop.org/drm/drm-misc
1578 F:      drivers/gpu/drm/panfrost/
1579 F:      include/uapi/drm/panfrost_drm.h
1580
1581 ARM MALI-DP DRM DRIVER
1582 M:      Liviu Dudau <liviu.dudau@arm.com>
1583 M:      Brian Starkey <brian.starkey@arm.com>
1584 L:      Mali DP Maintainers <malidp@foss.arm.com>
1585 S:      Supported
1586 T:      git git://anongit.freedesktop.org/drm/drm-misc
1587 F:      Documentation/devicetree/bindings/display/arm,malidp.yaml
1588 F:      Documentation/gpu/afbc.rst
1589 F:      drivers/gpu/drm/arm/
1590
1591 ARM MFM AND FLOPPY DRIVERS
1592 M:      Ian Molton <spyro@f2s.com>
1593 S:      Maintained
1594 F:      arch/arm/include/asm/floppy.h
1595 F:      arch/arm/mach-rpc/floppydma.S
1596
1597 ARM PMU PROFILING AND DEBUGGING
1598 M:      Will Deacon <will@kernel.org>
1599 M:      Mark Rutland <mark.rutland@arm.com>
1600 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1601 S:      Maintained
1602 F:      Documentation/devicetree/bindings/arm/pmu.yaml
1603 F:      Documentation/devicetree/bindings/perf/
1604 F:      arch/arm*/include/asm/hw_breakpoint.h
1605 F:      arch/arm*/include/asm/perf_event.h
1606 F:      arch/arm*/kernel/hw_breakpoint.c
1607 F:      arch/arm*/kernel/perf_*
1608 F:      drivers/perf/
1609 F:      include/linux/perf/arm_pmu.h
1610
1611 ARM PORT
1612 M:      Russell King <linux@armlinux.org.uk>
1613 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1614 S:      Odd Fixes
1615 W:      http://www.armlinux.org.uk/
1616 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git
1617 F:      arch/arm/
1618 X:      arch/arm/boot/dts/
1619
1620 ARM PRIMECELL AACI PL041 DRIVER
1621 M:      Russell King <linux@armlinux.org.uk>
1622 S:      Odd Fixes
1623 F:      sound/arm/aaci.*
1624
1625 ARM PRIMECELL BUS SUPPORT
1626 M:      Russell King <linux@armlinux.org.uk>
1627 S:      Odd Fixes
1628 F:      drivers/amba/
1629 F:      include/linux/amba/bus.h
1630
1631 ARM PRIMECELL PL35X NAND CONTROLLER DRIVER
1632 M:      Miquel Raynal <miquel.raynal@bootlin.com>
1633 M:      Naga Sureshkumar Relli <nagasure@xilinx.com>
1634 L:      linux-mtd@lists.infradead.org
1635 S:      Maintained
1636 F:      Documentation/devicetree/bindings/mtd/arm,pl353-nand-r2p1.yaml
1637 F:      drivers/mtd/nand/raw/pl35x-nand-controller.c
1638
1639 ARM PRIMECELL PL35X SMC DRIVER
1640 M:      Miquel Raynal <miquel.raynal@bootlin.com>
1641 M:      Naga Sureshkumar Relli <nagasure@xilinx.com>
1642 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1643 S:      Maintained
1644 F:      Documentation/devicetree/bindings/memory-controllers/arm,pl353-smc.yaml
1645 F:      drivers/memory/pl353-smc.c
1646
1647 ARM PRIMECELL CLCD PL110 DRIVER
1648 M:      Russell King <linux@armlinux.org.uk>
1649 S:      Odd Fixes
1650 F:      drivers/video/fbdev/amba-clcd.*
1651
1652 ARM PRIMECELL KMI PL050 DRIVER
1653 M:      Russell King <linux@armlinux.org.uk>
1654 S:      Odd Fixes
1655 F:      drivers/input/serio/ambakmi.*
1656 F:      include/linux/amba/kmi.h
1657
1658 ARM PRIMECELL MMCI PL180/1 DRIVER
1659 M:      Russell King <linux@armlinux.org.uk>
1660 S:      Odd Fixes
1661 F:      drivers/mmc/host/mmci.*
1662 F:      include/linux/amba/mmci.h
1663
1664 ARM PRIMECELL SSP PL022 SPI DRIVER
1665 M:      Linus Walleij <linus.walleij@linaro.org>
1666 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1667 S:      Maintained
1668 F:      Documentation/devicetree/bindings/spi/spi-pl022.yaml
1669 F:      drivers/spi/spi-pl022.c
1670
1671 ARM PRIMECELL UART PL010 AND PL011 DRIVERS
1672 M:      Russell King <linux@armlinux.org.uk>
1673 S:      Odd Fixes
1674 F:      drivers/tty/serial/amba-pl01*.c
1675 F:      include/linux/amba/serial.h
1676
1677 ARM PRIMECELL VIC PL190/PL192 DRIVER
1678 M:      Linus Walleij <linus.walleij@linaro.org>
1679 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1680 S:      Maintained
1681 F:      Documentation/devicetree/bindings/interrupt-controller/arm,vic.yaml
1682 F:      drivers/irqchip/irq-vic.c
1683
1684 ARM SMC WATCHDOG DRIVER
1685 M:      Julius Werner <jwerner@chromium.org>
1686 R:      Evan Benn <evanbenn@chromium.org>
1687 S:      Maintained
1688 F:      Documentation/devicetree/bindings/watchdog/arm-smc-wdt.yaml
1689 F:      drivers/watchdog/arm_smc_wdt.c
1690
1691 ARM SMMU DRIVERS
1692 M:      Will Deacon <will@kernel.org>
1693 R:      Robin Murphy <robin.murphy@arm.com>
1694 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1695 S:      Maintained
1696 F:      Documentation/devicetree/bindings/iommu/arm,smmu*
1697 F:      drivers/iommu/arm/
1698 F:      drivers/iommu/io-pgtable-arm*
1699
1700 ARM AND ARM64 SoC SUB-ARCHITECTURES (COMMON PARTS)
1701 M:      Arnd Bergmann <arnd@arndb.de>
1702 M:      Olof Johansson <olof@lixom.net>
1703 M:      soc@kernel.org
1704 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1705 S:      Maintained
1706 C:      irc://irc.libera.chat/armlinux
1707 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/soc/soc.git
1708 F:      arch/arm/boot/dts/Makefile
1709 F:      arch/arm64/boot/dts/Makefile
1710
1711 ARM SUB-ARCHITECTURES
1712 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1713 S:      Maintained
1714 C:      irc://irc.libera.chat/armlinux
1715 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/soc/soc.git
1716 F:      arch/arm/mach-*/
1717 F:      arch/arm/plat-*/
1718
1719 ARM/ACTIONS SEMI ARCHITECTURE
1720 M:      Andreas Färber <afaerber@suse.de>
1721 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
1722 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1723 L:      linux-actions@lists.infradead.org (moderated for non-subscribers)
1724 S:      Maintained
1725 F:      Documentation/devicetree/bindings/arm/actions.yaml
1726 F:      Documentation/devicetree/bindings/clock/actions,owl-cmu.txt
1727 F:      Documentation/devicetree/bindings/dma/owl-dma.yaml
1728 F:      Documentation/devicetree/bindings/i2c/i2c-owl.yaml
1729 F:      Documentation/devicetree/bindings/interrupt-controller/actions,owl-sirq.yaml
1730 F:      Documentation/devicetree/bindings/mmc/owl-mmc.yaml
1731 F:      Documentation/devicetree/bindings/net/actions,owl-emac.yaml
1732 F:      Documentation/devicetree/bindings/pinctrl/actions,*
1733 F:      Documentation/devicetree/bindings/power/actions,owl-sps.txt
1734 F:      Documentation/devicetree/bindings/timer/actions,owl-timer.txt
1735 F:      arch/arm/boot/dts/owl-*
1736 F:      arch/arm/mach-actions/
1737 F:      arch/arm64/boot/dts/actions/
1738 F:      drivers/clk/actions/
1739 F:      drivers/clocksource/timer-owl*
1740 F:      drivers/dma/owl-dma.c
1741 F:      drivers/i2c/busses/i2c-owl.c
1742 F:      drivers/irqchip/irq-owl-sirq.c
1743 F:      drivers/mmc/host/owl-mmc.c
1744 F:      drivers/net/ethernet/actions/
1745 F:      drivers/pinctrl/actions/*
1746 F:      drivers/soc/actions/
1747 F:      include/dt-bindings/power/owl-*
1748 F:      include/dt-bindings/reset/actions,*
1749 F:      include/linux/soc/actions/
1750 N:      owl
1751
1752 ARM/ADS SPHERE MACHINE SUPPORT
1753 M:      Lennert Buytenhek <kernel@wantstofly.org>
1754 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1755 S:      Maintained
1756
1757 ARM/AFEB9260 MACHINE SUPPORT
1758 M:      Sergey Lapin <slapin@ossfans.org>
1759 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1760 S:      Maintained
1761
1762 ARM/AJECO 1ARM MACHINE SUPPORT
1763 M:      Lennert Buytenhek <kernel@wantstofly.org>
1764 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1765 S:      Maintained
1766
1767 ARM/Allwinner SoC Clock Support
1768 M:      Emilio López <emilio@elopez.com.ar>
1769 S:      Maintained
1770 F:      drivers/clk/sunxi/
1771
1772 ARM/Allwinner sunXi SoC support
1773 M:      Chen-Yu Tsai <wens@csie.org>
1774 M:      Jernej Skrabec <jernej.skrabec@gmail.com>
1775 M:      Samuel Holland <samuel@sholland.org>
1776 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1777 S:      Maintained
1778 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sunxi/linux.git
1779 L:      linux-sunxi@lists.linux.dev
1780 F:      arch/arm/mach-sunxi/
1781 F:      arch/arm64/boot/dts/allwinner/
1782 F:      drivers/clk/sunxi-ng/
1783 F:      drivers/pinctrl/sunxi/
1784 F:      drivers/soc/sunxi/
1785 N:      allwinner
1786 N:      sun[x456789]i
1787 N:      sun50i
1788
1789 ARM/Amlogic Meson SoC CLOCK FRAMEWORK
1790 M:      Neil Armstrong <narmstrong@baylibre.com>
1791 M:      Jerome Brunet <jbrunet@baylibre.com>
1792 L:      linux-amlogic@lists.infradead.org
1793 S:      Maintained
1794 F:      Documentation/devicetree/bindings/clock/amlogic*
1795 F:      drivers/clk/meson/
1796 F:      include/dt-bindings/clock/gxbb*
1797 F:      include/dt-bindings/clock/meson*
1798
1799 ARM/Amlogic Meson SoC Crypto Drivers
1800 M:      Corentin Labbe <clabbe@baylibre.com>
1801 L:      linux-crypto@vger.kernel.org
1802 L:      linux-amlogic@lists.infradead.org
1803 S:      Maintained
1804 F:      Documentation/devicetree/bindings/crypto/amlogic*
1805 F:      drivers/crypto/amlogic/
1806
1807 ARM/Amlogic Meson SoC Sound Drivers
1808 M:      Jerome Brunet <jbrunet@baylibre.com>
1809 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1810 S:      Maintained
1811 F:      Documentation/devicetree/bindings/sound/amlogic*
1812 F:      sound/soc/meson/
1813
1814 ARM/Amlogic Meson SoC support
1815 M:      Neil Armstrong <narmstrong@baylibre.com>
1816 M:      Kevin Hilman <khilman@baylibre.com>
1817 R:      Jerome Brunet <jbrunet@baylibre.com>
1818 R:      Martin Blumenstingl <martin.blumenstingl@googlemail.com>
1819 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1820 L:      linux-amlogic@lists.infradead.org
1821 S:      Maintained
1822 W:      http://linux-meson.com/
1823 F:      arch/arm/boot/dts/meson*
1824 F:      arch/arm/mach-meson/
1825 F:      arch/arm64/boot/dts/amlogic/
1826 F:      drivers/mmc/host/meson*
1827 F:      drivers/pinctrl/meson/
1828 F:      drivers/rtc/rtc-meson*
1829 F:      drivers/soc/amlogic/
1830 N:      meson
1831
1832 ARM/Annapurna Labs ALPINE ARCHITECTURE
1833 M:      Tsahee Zidenberg <tsahee@annapurnalabs.com>
1834 M:      Antoine Tenart <atenart@kernel.org>
1835 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1836 S:      Maintained
1837 F:      arch/arm/boot/dts/alpine*
1838 F:      arch/arm/mach-alpine/
1839 F:      arch/arm64/boot/dts/amazon/
1840 F:      drivers/*/*alpine*
1841
1842 ARM/APPLE MACHINE SUPPORT
1843 M:      Hector Martin <marcan@marcan.st>
1844 M:      Sven Peter <sven@svenpeter.dev>
1845 R:      Alyssa Rosenzweig <alyssa@rosenzweig.io>
1846 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1847 S:      Maintained
1848 W:      https://asahilinux.org
1849 B:      https://github.com/AsahiLinux/linux/issues
1850 C:      irc://irc.oftc.net/asahi-dev
1851 T:      git https://github.com/AsahiLinux/linux.git
1852 F:      Documentation/devicetree/bindings/arm/apple.yaml
1853 F:      Documentation/devicetree/bindings/arm/apple/*
1854 F:      Documentation/devicetree/bindings/clock/apple,nco.yaml
1855 F:      Documentation/devicetree/bindings/i2c/apple,i2c.yaml
1856 F:      Documentation/devicetree/bindings/interrupt-controller/apple,*
1857 F:      Documentation/devicetree/bindings/iommu/apple,dart.yaml
1858 F:      Documentation/devicetree/bindings/iommu/apple,sart.yaml
1859 F:      Documentation/devicetree/bindings/mailbox/apple,mailbox.yaml
1860 F:      Documentation/devicetree/bindings/nvme/apple,nvme-ans.yaml
1861 F:      Documentation/devicetree/bindings/nvmem/apple,efuses.yaml
1862 F:      Documentation/devicetree/bindings/pci/apple,pcie.yaml
1863 F:      Documentation/devicetree/bindings/pinctrl/apple,pinctrl.yaml
1864 F:      Documentation/devicetree/bindings/power/apple*
1865 F:      Documentation/devicetree/bindings/watchdog/apple,wdt.yaml
1866 F:      arch/arm64/boot/dts/apple/
1867 F:      drivers/clk/clk-apple-nco.c
1868 F:      drivers/i2c/busses/i2c-pasemi-core.c
1869 F:      drivers/i2c/busses/i2c-pasemi-platform.c
1870 F:      drivers/iommu/apple-dart.c
1871 F:      drivers/irqchip/irq-apple-aic.c
1872 F:      drivers/mailbox/apple-mailbox.c
1873 F:      drivers/nvme/host/apple.c
1874 F:      drivers/nvmem/apple-efuses.c
1875 F:      drivers/pinctrl/pinctrl-apple-gpio.c
1876 F:      drivers/soc/apple/*
1877 F:      drivers/watchdog/apple_wdt.c
1878 F:      include/dt-bindings/interrupt-controller/apple-aic.h
1879 F:      include/dt-bindings/pinctrl/apple.h
1880 F:      include/linux/apple-mailbox.h
1881 F:      include/linux/soc/apple/*
1882
1883 ARM/ARTPEC MACHINE SUPPORT
1884 M:      Jesper Nilsson <jesper.nilsson@axis.com>
1885 M:      Lars Persson <lars.persson@axis.com>
1886 L:      linux-arm-kernel@axis.com
1887 S:      Maintained
1888 F:      Documentation/devicetree/bindings/pinctrl/axis,artpec6-pinctrl.txt
1889 F:      arch/arm/boot/dts/artpec6*
1890 F:      arch/arm/mach-artpec
1891 F:      drivers/clk/axis
1892 F:      drivers/crypto/axis
1893 F:      drivers/mmc/host/usdhi6rol0.c
1894 F:      drivers/pinctrl/pinctrl-artpec*
1895
1896 ARM/ASPEED I2C DRIVER
1897 M:      Brendan Higgins <brendanhiggins@google.com>
1898 R:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
1899 R:      Joel Stanley <joel@jms.id.au>
1900 L:      linux-i2c@vger.kernel.org
1901 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
1902 S:      Maintained
1903 F:      Documentation/devicetree/bindings/i2c/aspeed,i2c.yaml
1904 F:      Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2400-i2c-ic.txt
1905 F:      drivers/i2c/busses/i2c-aspeed.c
1906 F:      drivers/irqchip/irq-aspeed-i2c-ic.c
1907
1908 ARM/ASPEED MACHINE SUPPORT
1909 M:      Joel Stanley <joel@jms.id.au>
1910 R:      Andrew Jeffery <andrew@aj.id.au>
1911 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1912 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
1913 S:      Supported
1914 Q:      https://patchwork.ozlabs.org/project/linux-aspeed/list/
1915 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joel/aspeed.git
1916 F:      Documentation/devicetree/bindings/arm/aspeed/
1917 F:      arch/arm/boot/dts/aspeed-*
1918 F:      arch/arm/mach-aspeed/
1919 N:      aspeed
1920
1921 ARM/BITMAIN ARCHITECTURE
1922 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
1923 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1924 S:      Maintained
1925 F:      Documentation/devicetree/bindings/arm/bitmain.yaml
1926 F:      Documentation/devicetree/bindings/clock/bitmain,bm1880-clk.yaml
1927 F:      Documentation/devicetree/bindings/pinctrl/bitmain,bm1880-pinctrl.txt
1928 F:      arch/arm64/boot/dts/bitmain/
1929 F:      drivers/clk/clk-bm1880.c
1930 F:      drivers/pinctrl/pinctrl-bm1880.c
1931
1932 ARM/CALXEDA HIGHBANK ARCHITECTURE
1933 M:      Andre Przywara <andre.przywara@arm.com>
1934 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1935 S:      Maintained
1936 F:      arch/arm/boot/dts/ecx-*.dts*
1937 F:      arch/arm/boot/dts/highbank.dts
1938 F:      arch/arm/mach-highbank/
1939
1940 ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
1941 M:      Krzysztof Halasa <khalasa@piap.pl>
1942 S:      Maintained
1943 F:      arch/arm/mach-cns3xxx/
1944
1945 ARM/CAVIUM THUNDER NETWORK DRIVER
1946 M:      Sunil Goutham <sgoutham@marvell.com>
1947 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1948 S:      Supported
1949 F:      drivers/net/ethernet/cavium/thunder/
1950
1951 ARM/CIRRUS LOGIC BK3 MACHINE SUPPORT
1952 M:      Lukasz Majewski <lukma@denx.de>
1953 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1954 S:      Maintained
1955 F:      arch/arm/mach-ep93xx/ts72xx.c
1956
1957 ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
1958 M:      Alexander Shiyan <shc_work@mail.ru>
1959 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1960 S:      Odd Fixes
1961 N:      clps711x
1962
1963 ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
1964 M:      Lennert Buytenhek <kernel@wantstofly.org>
1965 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1966 S:      Maintained
1967
1968 ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
1969 M:      Hartley Sweeten <hsweeten@visionengravers.com>
1970 M:      Alexander Sverdlin <alexander.sverdlin@gmail.com>
1971 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1972 S:      Maintained
1973 F:      arch/arm/mach-ep93xx/
1974 F:      arch/arm/mach-ep93xx/include/mach/
1975
1976 ARM/CLKDEV SUPPORT
1977 M:      Russell King <linux@armlinux.org.uk>
1978 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1979 S:      Maintained
1980 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git clkdev
1981 F:      drivers/clk/clkdev.c
1982
1983 ARM/CONEXANT DIGICOLOR MACHINE SUPPORT
1984 M:      Baruch Siach <baruch@tkos.co.il>
1985 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1986 S:      Maintained
1987 F:      arch/arm/boot/dts/cx92755*
1988 N:      digicolor
1989
1990 ARM/CONTEC MICRO9 MACHINE SUPPORT
1991 M:      Hubert Feurstein <hubert.feurstein@contec.at>
1992 S:      Maintained
1993 F:      arch/arm/mach-ep93xx/micro9.c
1994
1995 ARM/CORESIGHT FRAMEWORK AND DRIVERS
1996 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
1997 M:      Suzuki K Poulose <suzuki.poulose@arm.com>
1998 R:      Mike Leach <mike.leach@linaro.org>
1999 R:      Leo Yan <leo.yan@linaro.org>
2000 L:      coresight@lists.linaro.org (moderated for non-subscribers)
2001 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2002 S:      Maintained
2003 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/coresight/linux.git
2004 F:      Documentation/ABI/testing/sysfs-bus-coresight-devices-*
2005 F:      Documentation/devicetree/bindings/arm/coresight-cpu-debug.txt
2006 F:      Documentation/devicetree/bindings/arm/coresight-cti.yaml
2007 F:      Documentation/devicetree/bindings/arm/coresight.txt
2008 F:      Documentation/devicetree/bindings/arm/ete.yaml
2009 F:      Documentation/devicetree/bindings/arm/trbe.yaml
2010 F:      Documentation/trace/coresight/*
2011 F:      drivers/hwtracing/coresight/*
2012 F:      include/dt-bindings/arm/coresight-cti-dt.h
2013 F:      include/linux/coresight*
2014 F:      samples/coresight/*
2015 F:      tools/perf/arch/arm/util/auxtrace.c
2016 F:      tools/perf/arch/arm/util/cs-etm.c
2017 F:      tools/perf/arch/arm/util/cs-etm.h
2018 F:      tools/perf/arch/arm/util/pmu.c
2019 F:      tools/perf/util/cs-etm-decoder/*
2020 F:      tools/perf/util/cs-etm.*
2021
2022 ARM/CORGI MACHINE SUPPORT
2023 M:      Richard Purdie <rpurdie@rpsys.net>
2024 S:      Maintained
2025
2026 ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
2027 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
2028 M:      Linus Walleij <linus.walleij@linaro.org>
2029 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2030 S:      Maintained
2031 T:      git git://github.com/ulli-kroll/linux.git
2032 F:      Documentation/devicetree/bindings/arm/gemini.yaml
2033 F:      Documentation/devicetree/bindings/net/cortina,gemini-ethernet.yaml
2034 F:      Documentation/devicetree/bindings/pinctrl/cortina,gemini-pinctrl.txt
2035 F:      Documentation/devicetree/bindings/rtc/faraday,ftrtc010.yaml
2036 F:      arch/arm/boot/dts/gemini*
2037 F:      arch/arm/mach-gemini/
2038 F:      drivers/crypto/gemini/
2039 F:      drivers/net/ethernet/cortina/
2040 F:      drivers/pinctrl/pinctrl-gemini.c
2041 F:      drivers/rtc/rtc-ftrtc010.c
2042
2043 ARM/CZ.NIC TURRIS SUPPORT
2044 M:      Marek Behún <kabel@kernel.org>
2045 S:      Maintained
2046 W:      https://www.turris.cz/
2047 F:      Documentation/ABI/testing/debugfs-moxtet
2048 F:      Documentation/ABI/testing/sysfs-bus-moxtet-devices
2049 F:      Documentation/ABI/testing/sysfs-firmware-turris-mox-rwtm
2050 F:      Documentation/devicetree/bindings/bus/moxtet.txt
2051 F:      Documentation/devicetree/bindings/firmware/cznic,turris-mox-rwtm.txt
2052 F:      Documentation/devicetree/bindings/gpio/gpio-moxtet.txt
2053 F:      Documentation/devicetree/bindings/leds/cznic,turris-omnia-leds.yaml
2054 F:      Documentation/devicetree/bindings/watchdog/armada-37xx-wdt.txt
2055 F:      drivers/bus/moxtet.c
2056 F:      drivers/firmware/turris-mox-rwtm.c
2057 F:      drivers/leds/leds-turris-omnia.c
2058 F:      drivers/mailbox/armada-37xx-rwtm-mailbox.c
2059 F:      drivers/gpio/gpio-moxtet.c
2060 F:      drivers/watchdog/armada_37xx_wdt.c
2061 F:      include/dt-bindings/bus/moxtet.h
2062 F:      include/linux/armada-37xx-rwtm-mailbox.h
2063 F:      include/linux/moxtet.h
2064
2065 ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
2066 M:      Robert Jarzmik <robert.jarzmik@free.fr>
2067 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2068 S:      Maintained
2069 F:      arch/arm/mach-pxa/ezx.c
2070
2071 ARM/FARADAY FA526 PORT
2072 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
2073 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2074 S:      Maintained
2075 T:      git git://git.berlios.de/gemini-board
2076 F:      arch/arm/mm/*-fa*
2077
2078 ARM/FOOTBRIDGE ARCHITECTURE
2079 M:      Russell King <linux@armlinux.org.uk>
2080 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2081 S:      Maintained
2082 W:      http://www.armlinux.org.uk/
2083 F:      arch/arm/include/asm/hardware/dec21285.h
2084 F:      arch/arm/mach-footbridge/
2085
2086 ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
2087 M:      Shawn Guo <shawnguo@kernel.org>
2088 M:      Sascha Hauer <s.hauer@pengutronix.de>
2089 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
2090 R:      Fabio Estevam <festevam@gmail.com>
2091 R:      NXP Linux Team <linux-imx@nxp.com>
2092 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2093 S:      Maintained
2094 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
2095 X:      drivers/media/i2c/
2096 N:      imx
2097 N:      mxs
2098
2099 ARM/FREESCALE LAYERSCAPE ARM ARCHITECTURE
2100 M:      Shawn Guo <shawnguo@kernel.org>
2101 M:      Li Yang <leoyang.li@nxp.com>
2102 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2103 S:      Maintained
2104 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
2105 F:      arch/arm/boot/dts/ls1021a*
2106 F:      arch/arm64/boot/dts/freescale/fsl-*
2107 F:      arch/arm64/boot/dts/freescale/qoriq-*
2108
2109 ARM/FREESCALE VYBRID ARM ARCHITECTURE
2110 M:      Shawn Guo <shawnguo@kernel.org>
2111 M:      Sascha Hauer <s.hauer@pengutronix.de>
2112 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
2113 R:      Stefan Agner <stefan@agner.ch>
2114 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2115 S:      Maintained
2116 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
2117 F:      arch/arm/boot/dts/vf*
2118 F:      arch/arm/mach-imx/*vf610*
2119
2120 ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
2121 M:      Lennert Buytenhek <kernel@wantstofly.org>
2122 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2123 S:      Maintained
2124
2125 ARM/GUMSTIX MACHINE SUPPORT
2126 M:      Steve Sakoman <sakoman@gmail.com>
2127 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2128 S:      Maintained
2129
2130 ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
2131 M:      Philipp Zabel <philipp.zabel@gmail.com>
2132 M:      Paul Parsons <lost.distance@yahoo.com>
2133 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2134 S:      Maintained
2135 F:      arch/arm/mach-pxa/hx4700.c
2136 F:      arch/arm/mach-pxa/include/mach/hx4700.h
2137 F:      sound/soc/pxa/hx4700.c
2138
2139 ARM/HISILICON SOC SUPPORT
2140 M:      Wei Xu <xuwei5@hisilicon.com>
2141 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2142 S:      Supported
2143 W:      http://www.hisilicon.com
2144 T:      git git://github.com/hisilicon/linux-hisi.git
2145 F:      arch/arm/boot/dts/hi3*
2146 F:      arch/arm/boot/dts/hip*
2147 F:      arch/arm/boot/dts/hisi*
2148 F:      arch/arm/mach-hisi/
2149 F:      arch/arm64/boot/dts/hisilicon/
2150
2151 ARM/HP JORNADA 7XX MACHINE SUPPORT
2152 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
2153 S:      Maintained
2154 W:      www.jlime.com
2155 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
2156 F:      arch/arm/mach-sa1100/include/mach/jornada720.h
2157 F:      arch/arm/mach-sa1100/jornada720.c
2158
2159 ARM/HPE GXP ARCHITECTURE
2160 M:      Jean-Marie Verdun <verdun@hpe.com>
2161 M:      Nick Hawkins <nick.hawkins@hpe.com>
2162 S:      Maintained
2163 F:      Documentation/devicetree/bindings/arm/hpe,gxp.yaml
2164 F:      Documentation/devicetree/bindings/spi/hpe,gxp-spi.yaml
2165 F:      Documentation/devicetree/bindings/timer/hpe,gxp-timer.yaml
2166 F:      arch/arm/boot/dts/hpe-bmc*
2167 F:      arch/arm/boot/dts/hpe-gxp*
2168 F:      arch/arm/mach-hpe/
2169 F:      drivers/clocksource/timer-gxp.c
2170 F:      drivers/spi/spi-gxp.c
2171 F:      drivers/watchdog/gxp-wdt.c
2172
2173 ARM/IGEP MACHINE SUPPORT
2174 M:      Enric Balletbo i Serra <eballetbo@gmail.com>
2175 M:      Javier Martinez Canillas <javier@dowhile0.org>
2176 L:      linux-omap@vger.kernel.org
2177 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2178 S:      Maintained
2179 F:      arch/arm/boot/dts/omap3-igep*
2180
2181 ARM/INCOME PXA270 SUPPORT
2182 M:      Marek Vasut <marek.vasut@gmail.com>
2183 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2184 S:      Maintained
2185 F:      arch/arm/mach-pxa/colibri-pxa270-income.c
2186
2187 ARM/INTEL IOP32X ARM ARCHITECTURE
2188 M:      Lennert Buytenhek <kernel@wantstofly.org>
2189 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2190 S:      Maintained
2191
2192 ARM/INTEL IQ81342EX MACHINE SUPPORT
2193 M:      Lennert Buytenhek <kernel@wantstofly.org>
2194 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2195 S:      Maintained
2196
2197 ARM/INTEL IXDP2850 MACHINE SUPPORT
2198 M:      Lennert Buytenhek <kernel@wantstofly.org>
2199 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2200 S:      Maintained
2201
2202 ARM/INTEL IXP4XX ARM ARCHITECTURE
2203 M:      Linus Walleij <linusw@kernel.org>
2204 M:      Imre Kaloz <kaloz@openwrt.org>
2205 M:      Krzysztof Halasa <khalasa@piap.pl>
2206 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2207 S:      Maintained
2208 F:      Documentation/devicetree/bindings/arm/intel-ixp4xx.yaml
2209 F:      Documentation/devicetree/bindings/bus/intel,ixp4xx-expansion-bus-controller.yaml
2210 F:      Documentation/devicetree/bindings/gpio/intel,ixp4xx-gpio.txt
2211 F:      Documentation/devicetree/bindings/interrupt-controller/intel,ixp4xx-interrupt.yaml
2212 F:      Documentation/devicetree/bindings/timer/intel,ixp4xx-timer.yaml
2213 F:      arch/arm/mach-ixp4xx/
2214 F:      drivers/bus/intel-ixp4xx-eb.c
2215 F:      drivers/clocksource/timer-ixp4xx.c
2216 F:      drivers/crypto/ixp4xx_crypto.c
2217 F:      drivers/gpio/gpio-ixp4xx.c
2218 F:      drivers/irqchip/irq-ixp4xx.c
2219 F:      include/linux/irqchip/irq-ixp4xx.h
2220 F:      include/linux/platform_data/timer-ixp4xx.h
2221
2222 ARM/INTEL KEEMBAY ARCHITECTURE
2223 M:      Paul J. Murphy <paul.j.murphy@intel.com>
2224 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
2225 S:      Maintained
2226 F:      Documentation/devicetree/bindings/arm/intel,keembay.yaml
2227 F:      arch/arm64/boot/dts/intel/keembay-evm.dts
2228 F:      arch/arm64/boot/dts/intel/keembay-soc.dtsi
2229
2230 ARM/INTEL XSC3 (MANZANO) ARM CORE
2231 M:      Lennert Buytenhek <kernel@wantstofly.org>
2232 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2233 S:      Maintained
2234
2235 ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
2236 M:      Lennert Buytenhek <kernel@wantstofly.org>
2237 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2238 S:      Maintained
2239
2240 ARM/LG1K ARCHITECTURE
2241 M:      Chanho Min <chanho.min@lge.com>
2242 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2243 S:      Maintained
2244 F:      arch/arm64/boot/dts/lg/
2245
2246 ARM/LOGICPD PXA270 MACHINE SUPPORT
2247 M:      Lennert Buytenhek <kernel@wantstofly.org>
2248 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2249 S:      Maintained
2250
2251 ARM/LPC18XX ARCHITECTURE
2252 M:      Vladimir Zapolskiy <vz@mleia.com>
2253 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2254 S:      Maintained
2255 F:      Documentation/devicetree/bindings/i2c/i2c-lpc2k.txt
2256 F:      arch/arm/boot/dts/lpc43*
2257 F:      drivers/i2c/busses/i2c-lpc2k.c
2258 F:      drivers/memory/pl172.c
2259 F:      drivers/mtd/spi-nor/controllers/nxp-spifi.c
2260 F:      drivers/rtc/rtc-lpc24xx.c
2261 N:      lpc18xx
2262
2263 ARM/LPC32XX SOC SUPPORT
2264 M:      Vladimir Zapolskiy <vz@mleia.com>
2265 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2266 S:      Maintained
2267 T:      git git://github.com/vzapolskiy/linux-lpc32xx.git
2268 F:      Documentation/devicetree/bindings/i2c/i2c-pnx.txt
2269 F:      arch/arm/boot/dts/lpc32*
2270 F:      arch/arm/mach-lpc32xx/
2271 F:      drivers/i2c/busses/i2c-pnx.c
2272 F:      drivers/net/ethernet/nxp/lpc_eth.c
2273 F:      drivers/usb/host/ohci-nxp.c
2274 F:      drivers/watchdog/pnx4008_wdt.c
2275 N:      lpc32xx
2276
2277 ARM/MAGICIAN MACHINE SUPPORT
2278 M:      Philipp Zabel <philipp.zabel@gmail.com>
2279 S:      Maintained
2280
2281 ARM/Marvell Dove/MV78xx0/Orion SOC support
2282 M:      Andrew Lunn <andrew@lunn.ch>
2283 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2284 M:      Gregory Clement <gregory.clement@bootlin.com>
2285 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2286 S:      Maintained
2287 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gclement/mvebu.git
2288 F:      Documentation/devicetree/bindings/soc/dove/
2289 F:      arch/arm/boot/dts/dove*
2290 F:      arch/arm/boot/dts/orion5x*
2291 F:      arch/arm/mach-dove/
2292 F:      arch/arm/mach-mv78xx0/
2293 F:      arch/arm/mach-orion5x/
2294 F:      arch/arm/plat-orion/
2295 F:      drivers/soc/dove/
2296
2297 ARM/Marvell Kirkwood and Armada 370, 375, 38x, 39x, XP, 3700, 7K/8K, CN9130 SOC support
2298 M:      Andrew Lunn <andrew@lunn.ch>
2299 M:      Gregory Clement <gregory.clement@bootlin.com>
2300 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2301 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2302 S:      Maintained
2303 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gclement/mvebu.git
2304 F:      arch/arm/boot/dts/armada*
2305 F:      arch/arm/boot/dts/kirkwood*
2306 F:      arch/arm/configs/mvebu_*_defconfig
2307 F:      arch/arm/mach-mvebu/
2308 F:      arch/arm64/boot/dts/marvell/armada*
2309 F:      arch/arm64/boot/dts/marvell/cn913*
2310 F:      drivers/cpufreq/armada-37xx-cpufreq.c
2311 F:      drivers/cpufreq/armada-8k-cpufreq.c
2312 F:      drivers/cpufreq/mvebu-cpufreq.c
2313 F:      drivers/irqchip/irq-armada-370-xp.c
2314 F:      drivers/irqchip/irq-mvebu-*
2315 F:      drivers/pinctrl/mvebu/
2316 F:      drivers/rtc/rtc-armada38x.c
2317
2318 ARM/Mediatek RTC DRIVER
2319 M:      Eddie Huang <eddie.huang@mediatek.com>
2320 M:      Sean Wang <sean.wang@mediatek.com>
2321 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2322 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2323 S:      Maintained
2324 F:      Documentation/devicetree/bindings/rtc/rtc-mt2712.txt
2325 F:      Documentation/devicetree/bindings/rtc/rtc-mt7622.txt
2326 F:      drivers/rtc/rtc-mt2712.c
2327 F:      drivers/rtc/rtc-mt6397.c
2328 F:      drivers/rtc/rtc-mt7622.c
2329
2330 ARM/Mediatek SoC support
2331 M:      Matthias Brugger <matthias.bgg@gmail.com>
2332 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2333 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2334 S:      Maintained
2335 W:      https://mtk.wiki.kernel.org/
2336 C:      irc://chat.freenode.net/linux-mediatek
2337 F:      arch/arm/boot/dts/mt6*
2338 F:      arch/arm/boot/dts/mt7*
2339 F:      arch/arm/boot/dts/mt8*
2340 F:      arch/arm/mach-mediatek/
2341 F:      arch/arm64/boot/dts/mediatek/
2342 F:      drivers/soc/mediatek/
2343 N:      mtk
2344 N:      mt[678]
2345 K:      mediatek
2346
2347 ARM/Mediatek USB3 PHY DRIVER
2348 M:      Chunfeng Yun <chunfeng.yun@mediatek.com>
2349 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2350 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2351 S:      Maintained
2352 F:      Documentation/devicetree/bindings/phy/mediatek,*
2353 F:      drivers/phy/mediatek/
2354
2355 ARM/Microchip (AT91) SoC support
2356 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
2357 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
2358 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
2359 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2360 S:      Supported
2361 W:      http://www.linux4sam.org
2362 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/at91/linux.git
2363 F:      arch/arm/boot/dts/at91*.dts
2364 F:      arch/arm/boot/dts/at91*.dtsi
2365 F:      arch/arm/boot/dts/sama*.dts
2366 F:      arch/arm/boot/dts/sama*.dtsi
2367 F:      arch/arm/include/debug/at91.S
2368 F:      arch/arm/mach-at91/
2369 F:      drivers/memory/atmel*
2370 F:      drivers/watchdog/sama5d4_wdt.c
2371 F:      include/soc/at91/
2372 X:      drivers/input/touchscreen/atmel_mxt_ts.c
2373 X:      drivers/net/wireless/atmel/
2374 N:      at91
2375 N:      atmel
2376
2377 ARM/Microchip Sparx5 SoC support
2378 M:      Lars Povlsen <lars.povlsen@microchip.com>
2379 M:      Steen Hegelund <Steen.Hegelund@microchip.com>
2380 M:      UNGLinuxDriver@microchip.com
2381 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2382 S:      Supported
2383 T:      git git://github.com/microchip-ung/linux-upstream.git
2384 F:      arch/arm64/boot/dts/microchip/
2385 F:      drivers/pinctrl/pinctrl-microchip-sgpio.c
2386 N:      sparx5
2387
2388 Microchip Timer Counter Block (TCB) Capture Driver
2389 M:      Kamel Bouhara <kamel.bouhara@bootlin.com>
2390 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2391 L:      linux-iio@vger.kernel.org
2392 S:      Maintained
2393 F:      drivers/counter/microchip-tcb-capture.c
2394
2395 ARM/MILBEAUT ARCHITECTURE
2396 M:      Taichi Sugaya <sugaya.taichi@socionext.com>
2397 M:      Takao Orito <orito.takao@socionext.com>
2398 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2399 S:      Maintained
2400 F:      arch/arm/boot/dts/milbeaut*
2401 F:      arch/arm/mach-milbeaut/
2402 N:      milbeaut
2403
2404 ARM/MIOA701 MACHINE SUPPORT
2405 M:      Robert Jarzmik <robert.jarzmik@free.fr>
2406 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2407 S:      Maintained
2408 F:      arch/arm/mach-pxa/mioa701.c
2409
2410 ARM/MStar/Sigmastar Armv7 SoC support
2411 M:      Daniel Palmer <daniel@thingy.jp>
2412 M:      Romain Perier <romain.perier@gmail.com>
2413 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2414 S:      Maintained
2415 W:      http://linux-chenxing.org/
2416 T:      git git://github.com/linux-chenxing/linux.git
2417 F:      Documentation/devicetree/bindings/arm/mstar/*
2418 F:      Documentation/devicetree/bindings/clock/mstar,msc313-mpll.yaml
2419 F:      Documentation/devicetree/bindings/gpio/mstar,msc313-gpio.yaml
2420 F:      arch/arm/boot/dts/mstar-*
2421 F:      arch/arm/mach-mstar/
2422 F:      drivers/clk/mstar/
2423 F:      drivers/clocksource/timer-msc313e.c
2424 F:      drivers/gpio/gpio-msc313.c
2425 F:      drivers/rtc/rtc-msc313.c
2426 F:      drivers/watchdog/msc313e_wdt.c
2427 F:      include/dt-bindings/clock/mstar-*
2428 F:      include/dt-bindings/gpio/msc313-gpio.h
2429
2430 ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
2431 M:      Michael Petchkovsky <mkpetch@internode.on.net>
2432 S:      Maintained
2433
2434 ARM/NOMADIK/Ux500 ARCHITECTURES
2435 M:      Linus Walleij <linus.walleij@linaro.org>
2436 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2437 S:      Maintained
2438 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
2439 F:      Documentation/devicetree/bindings/arm/ste-*
2440 F:      Documentation/devicetree/bindings/arm/ux500.yaml
2441 F:      Documentation/devicetree/bindings/arm/ux500/
2442 F:      Documentation/devicetree/bindings/i2c/st,nomadik-i2c.yaml
2443 F:      arch/arm/boot/dts/ste-*
2444 F:      arch/arm/mach-nomadik/
2445 F:      arch/arm/mach-ux500/
2446 F:      drivers/clk/clk-nomadik.c
2447 F:      drivers/clocksource/clksrc-dbx500-prcmu.c
2448 F:      drivers/dma/ste_dma40*
2449 F:      drivers/hwspinlock/u8500_hsem.c
2450 F:      drivers/i2c/busses/i2c-nomadik.c
2451 F:      drivers/iio/adc/ab8500-gpadc.c
2452 F:      drivers/mfd/ab8500*
2453 F:      drivers/mfd/abx500*
2454 F:      drivers/mfd/db8500*
2455 F:      drivers/pinctrl/nomadik/
2456 F:      drivers/rtc/rtc-ab8500.c
2457 F:      drivers/rtc/rtc-pl031.c
2458 F:      drivers/soc/ux500/
2459
2460 ARM/NUVOTON NPCM ARCHITECTURE
2461 M:      Avi Fishman <avifishman70@gmail.com>
2462 M:      Tomer Maimon <tmaimon77@gmail.com>
2463 M:      Tali Perry <tali.perry1@gmail.com>
2464 R:      Patrick Venture <venture@google.com>
2465 R:      Nancy Yuen <yuenn@google.com>
2466 R:      Benjamin Fair <benjaminfair@google.com>
2467 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2468 S:      Supported
2469 F:      Documentation/devicetree/bindings/*/*/*npcm*
2470 F:      Documentation/devicetree/bindings/*/*npcm*
2471 F:      Documentation/devicetree/bindings/arm/npcm/*
2472 F:      arch/arm/boot/dts/nuvoton-npcm*
2473 F:      arch/arm/mach-npcm/
2474 F:      arch/arm64/boot/dts/nuvoton/
2475 F:      drivers/*/*npcm*
2476 F:      drivers/*/*/*npcm*
2477 F:      include/dt-bindings/clock/nuvoton,npcm7xx-clock.h
2478 F:      include/dt-bindings/clock/nuvoton,npcm845-clk.h
2479
2480 ARM/NUVOTON WPCM450 ARCHITECTURE
2481 M:      Jonathan Neuschäfer <j.neuschaefer@gmx.net>
2482 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2483 S:      Maintained
2484 W:      https://github.com/neuschaefer/wpcm450/wiki
2485 F:      Documentation/devicetree/bindings/*/*wpcm*
2486 F:      arch/arm/boot/dts/nuvoton-wpcm450*
2487 F:      arch/arm/mach-npcm/wpcm450.c
2488 F:      drivers/*/*/*wpcm*
2489 F:      drivers/*/*wpcm*
2490
2491 ARM/NXP S32G ARCHITECTURE
2492 M:      Chester Lin <clin@suse.com>
2493 R:      Andreas Färber <afaerber@suse.de>
2494 R:      Matthias Brugger <mbrugger@suse.com>
2495 R:      NXP S32 Linux Team <s32@nxp.com>
2496 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2497 S:      Maintained
2498 F:      arch/arm64/boot/dts/freescale/s32g*.dts*
2499
2500 ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
2501 L:      openmoko-kernel@lists.openmoko.org (subscribers-only)
2502 S:      Orphan
2503 W:      http://wiki.openmoko.org/wiki/Neo_FreeRunner
2504 F:      arch/arm/mach-s3c/gta02.h
2505 F:      arch/arm/mach-s3c/mach-gta02.c
2506
2507 ARM/Orion SoC/Technologic Systems TS-78xx platform support
2508 M:      Alexander Clouter <alex@digriz.org.uk>
2509 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2510 S:      Maintained
2511 W:      http://www.digriz.org.uk/ts78xx/kernel
2512 F:      arch/arm/mach-orion5x/ts78xx-*
2513
2514 ARM/OXNAS platform support
2515 M:      Neil Armstrong <narmstrong@baylibre.com>
2516 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2517 L:      linux-oxnas@groups.io (moderated for non-subscribers)
2518 S:      Maintained
2519 F:      arch/arm/boot/dts/ox8*.dts*
2520 F:      arch/arm/mach-oxnas/
2521 F:      drivers/power/reset/oxnas-restart.c
2522 N:      oxnas
2523
2524 ARM/PALM TREO SUPPORT
2525 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2526 S:      Orphan
2527 F:      arch/arm/mach-pxa/palmtreo.*
2528
2529 ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
2530 M:      Marek Vasut <marek.vasut@gmail.com>
2531 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2532 S:      Maintained
2533 W:      http://hackndev.com
2534 F:      arch/arm/mach-pxa/include/mach/palmld.h
2535 F:      arch/arm/mach-pxa/include/mach/palmtc.h
2536 F:      arch/arm/mach-pxa/include/mach/palmtx.h
2537 F:      arch/arm/mach-pxa/palmld.c
2538 F:      arch/arm/mach-pxa/palmt5.*
2539 F:      arch/arm/mach-pxa/palmtc.c
2540 F:      arch/arm/mach-pxa/palmte2.*
2541 F:      arch/arm/mach-pxa/palmtx.c
2542
2543 ARM/PALMZ72 SUPPORT
2544 M:      Sergey Lapin <slapin@ossfans.org>
2545 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2546 S:      Maintained
2547 W:      http://hackndev.com
2548 F:      arch/arm/mach-pxa/palmz72.*
2549
2550 ARM/PLEB SUPPORT
2551 M:      Peter Chubb <pleb@gelato.unsw.edu.au>
2552 S:      Maintained
2553 W:      http://www.disy.cse.unsw.edu.au/Hardware/PLEB
2554
2555 ARM/PT DIGITAL BOARD PORT
2556 M:      Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
2557 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2558 S:      Maintained
2559 W:      http://www.armlinux.org.uk/
2560
2561 ARM/QUALCOMM SUPPORT
2562 M:      Andy Gross <agross@kernel.org>
2563 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
2564 R:      Konrad Dybcio <konrad.dybcio@somainline.org>
2565 L:      linux-arm-msm@vger.kernel.org
2566 S:      Maintained
2567 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/qcom/linux.git
2568 F:      Documentation/devicetree/bindings/*/qcom*
2569 F:      Documentation/devicetree/bindings/soc/qcom/
2570 F:      arch/arm/boot/dts/qcom-*.dts
2571 F:      arch/arm/boot/dts/qcom-*.dtsi
2572 F:      arch/arm/mach-qcom/
2573 F:      arch/arm64/boot/dts/qcom/
2574 F:      drivers/*/*/qcom*
2575 F:      drivers/*/*/qcom/
2576 F:      drivers/*/pm8???-*
2577 F:      drivers/*/qcom*
2578 F:      drivers/*/qcom/
2579 F:      drivers/bluetooth/btqcomsmd.c
2580 F:      drivers/clocksource/timer-qcom.c
2581 F:      drivers/cpuidle/cpuidle-qcom-spm.c
2582 F:      drivers/extcon/extcon-qcom*
2583 F:      drivers/i2c/busses/i2c-qcom-geni.c
2584 F:      drivers/i2c/busses/i2c-qup.c
2585 F:      drivers/iommu/msm*
2586 F:      drivers/mfd/ssbi.c
2587 F:      drivers/mmc/host/mmci_qcom*
2588 F:      drivers/mmc/host/sdhci-msm.c
2589 F:      drivers/pci/controller/dwc/pcie-qcom.c
2590 F:      drivers/phy/qualcomm/
2591 F:      drivers/power/*/msm*
2592 F:      drivers/reset/reset-qcom-*
2593 F:      drivers/ufs/host/ufs-qcom*
2594 F:      drivers/spi/spi-geni-qcom.c
2595 F:      drivers/spi/spi-qcom-qspi.c
2596 F:      drivers/spi/spi-qup.c
2597 F:      drivers/tty/serial/msm_serial.c
2598 F:      drivers/usb/dwc3/dwc3-qcom.c
2599 F:      include/dt-bindings/*/qcom*
2600 F:      include/linux/*/qcom*
2601 F:      include/linux/soc/qcom/
2602
2603 ARM/RADISYS ENP2611 MACHINE SUPPORT
2604 M:      Lennert Buytenhek <kernel@wantstofly.org>
2605 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2606 S:      Maintained
2607
2608 ARM/RDA MICRO ARCHITECTURE
2609 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
2610 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2611 L:      linux-unisoc@lists.infradead.org (moderated for non-subscribers)
2612 S:      Maintained
2613 F:      Documentation/devicetree/bindings/arm/rda.yaml
2614 F:      Documentation/devicetree/bindings/gpio/gpio-rda.yaml
2615 F:      Documentation/devicetree/bindings/interrupt-controller/rda,8810pl-intc.txt
2616 F:      Documentation/devicetree/bindings/serial/rda,8810pl-uart.yaml
2617 F:      Documentation/devicetree/bindings/timer/rda,8810pl-timer.yaml
2618 F:      arch/arm/boot/dts/rda8810pl-*
2619 F:      drivers/clocksource/timer-rda.c
2620 F:      drivers/gpio/gpio-rda.c
2621 F:      drivers/irqchip/irq-rda-intc.c
2622 F:      drivers/tty/serial/rda-uart.c
2623
2624 ARM/REALTEK ARCHITECTURE
2625 M:      Andreas Färber <afaerber@suse.de>
2626 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2627 L:      linux-realtek-soc@lists.infradead.org (moderated for non-subscribers)
2628 S:      Maintained
2629 F:      Documentation/devicetree/bindings/arm/realtek.yaml
2630 F:      arch/arm/boot/dts/rtd*
2631 F:      arch/arm/mach-realtek/
2632 F:      arch/arm64/boot/dts/realtek/
2633
2634 ARM/RENESAS ARM64 ARCHITECTURE
2635 M:      Geert Uytterhoeven <geert+renesas@glider.be>
2636 M:      Magnus Damm <magnus.damm@gmail.com>
2637 L:      linux-renesas-soc@vger.kernel.org
2638 S:      Supported
2639 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
2640 C:      irc://irc.libera.chat/renesas-soc
2641 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git next
2642 F:      Documentation/devicetree/bindings/arm/renesas.yaml
2643 F:      Documentation/devicetree/bindings/hwinfo/renesas,prr.yaml
2644 F:      Documentation/devicetree/bindings/soc/renesas/
2645 F:      arch/arm64/boot/dts/renesas/
2646 F:      drivers/soc/renesas/
2647 F:      include/linux/soc/renesas/
2648
2649 ARM/RISCPC ARCHITECTURE
2650 M:      Russell King <linux@armlinux.org.uk>
2651 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2652 S:      Maintained
2653 W:      http://www.armlinux.org.uk/
2654 F:      arch/arm/include/asm/hardware/entry-macro-iomd.S
2655 F:      arch/arm/include/asm/hardware/ioc.h
2656 F:      arch/arm/include/asm/hardware/iomd.h
2657 F:      arch/arm/include/asm/hardware/memc.h
2658 F:      arch/arm/mach-rpc/
2659 F:      drivers/net/ethernet/8390/etherh.c
2660 F:      drivers/net/ethernet/i825xx/ether1*
2661 F:      drivers/net/ethernet/seeq/ether3*
2662 F:      drivers/scsi/arm/
2663
2664 ARM/Rockchip SoC support
2665 M:      Heiko Stuebner <heiko@sntech.de>
2666 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2667 L:      linux-rockchip@lists.infradead.org
2668 S:      Maintained
2669 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmind/linux-rockchip.git
2670 F:      Documentation/devicetree/bindings/i2c/i2c-rk3x.yaml
2671 F:      Documentation/devicetree/bindings/mmc/rockchip-dw-mshc.yaml
2672 F:      Documentation/devicetree/bindings/spi/spi-rockchip.yaml
2673 F:      arch/arm/boot/dts/rk3*
2674 F:      arch/arm/boot/dts/rv1108*
2675 F:      arch/arm/mach-rockchip/
2676 F:      drivers/*/*/*rockchip*
2677 F:      drivers/*/*rockchip*
2678 F:      drivers/clk/rockchip/
2679 F:      drivers/i2c/busses/i2c-rk3x.c
2680 F:      sound/soc/rockchip/
2681 N:      rockchip
2682
2683 ARM/SAMSUNG S3C, S5P AND EXYNOS ARM ARCHITECTURES
2684 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
2685 R:      Alim Akhtar <alim.akhtar@samsung.com>
2686 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2687 L:      linux-samsung-soc@vger.kernel.org
2688 S:      Maintained
2689 C:      irc://irc.libera.chat/linux-exynos
2690 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
2691 B:      mailto:linux-samsung-soc@vger.kernel.org
2692 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/krzk/linux.git
2693 F:      Documentation/arm/samsung/
2694 F:      Documentation/devicetree/bindings/arm/samsung/
2695 F:      Documentation/devicetree/bindings/power/pd-samsung.yaml
2696 F:      Documentation/devicetree/bindings/soc/samsung/
2697 F:      arch/arm/boot/dts/exynos*
2698 F:      arch/arm/boot/dts/s3c*
2699 F:      arch/arm/boot/dts/s5p*
2700 F:      arch/arm/mach-exynos*/
2701 F:      arch/arm/mach-s3c/
2702 F:      arch/arm/mach-s5p*/
2703 F:      arch/arm64/boot/dts/exynos/
2704 F:      drivers/*/*/*s3c24*
2705 F:      drivers/*/*s3c24*
2706 F:      drivers/*/*s3c64xx*
2707 F:      drivers/*/*s5pv210*
2708 F:      drivers/clocksource/samsung_pwm_timer.c
2709 F:      drivers/memory/samsung/
2710 F:      drivers/pwm/pwm-samsung.c
2711 F:      drivers/soc/samsung/
2712 F:      drivers/tty/serial/samsung*
2713 F:      include/clocksource/samsung_pwm.h
2714 F:      include/linux/platform_data/*s3c*
2715 F:      include/linux/serial_s3c.h
2716 F:      include/linux/soc/samsung/
2717 N:      exynos
2718 N:      s3c2410
2719 N:      s3c64xx
2720 N:      s5pv210
2721
2722 ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT
2723 M:      Łukasz Stelmach <l.stelmach@samsung.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-g2d/
2728
2729 ARM/SAMSUNG S5P SERIES HDMI CEC SUBSYSTEM SUPPORT
2730 M:      Marek Szyprowski <m.szyprowski@samsung.com>
2731 L:      linux-samsung-soc@vger.kernel.org
2732 L:      linux-media@vger.kernel.org
2733 S:      Maintained
2734 F:      Documentation/devicetree/bindings/media/s5p-cec.txt
2735 F:      drivers/media/cec/platform/s5p/
2736
2737 ARM/SAMSUNG S5P SERIES JPEG CODEC SUPPORT
2738 M:      Andrzej Pietrasiewicz <andrzejtp2010@gmail.com>
2739 M:      Jacek Anaszewski <jacek.anaszewski@gmail.com>
2740 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
2741 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2742 L:      linux-media@vger.kernel.org
2743 S:      Maintained
2744 F:      Documentation/devicetree/bindings/media/samsung,s5pv210-jpeg.yaml
2745 F:      drivers/media/platform/samsung/s5p-jpeg/
2746
2747 ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
2748 M:      Marek Szyprowski <m.szyprowski@samsung.com>
2749 M:      Andrzej Hajda <andrzej.hajda@intel.com>
2750 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2751 L:      linux-media@vger.kernel.org
2752 S:      Maintained
2753 F:      drivers/media/platform/samsung/s5p-mfc/
2754
2755 ARM/SHMOBILE ARM ARCHITECTURE
2756 M:      Geert Uytterhoeven <geert+renesas@glider.be>
2757 M:      Magnus Damm <magnus.damm@gmail.com>
2758 L:      linux-renesas-soc@vger.kernel.org
2759 S:      Supported
2760 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
2761 C:      irc://irc.libera.chat/renesas-soc
2762 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git next
2763 F:      Documentation/devicetree/bindings/arm/renesas.yaml
2764 F:      Documentation/devicetree/bindings/soc/renesas/
2765 F:      arch/arm/boot/dts/emev2*
2766 F:      arch/arm/boot/dts/gr-peach*
2767 F:      arch/arm/boot/dts/iwg20d-q7*
2768 F:      arch/arm/boot/dts/r7s*
2769 F:      arch/arm/boot/dts/r8a*
2770 F:      arch/arm/boot/dts/r9a*
2771 F:      arch/arm/boot/dts/sh*
2772 F:      arch/arm/configs/shmobile_defconfig
2773 F:      arch/arm/include/debug/renesas-scif.S
2774 F:      arch/arm/mach-shmobile/
2775 F:      drivers/soc/renesas/
2776 F:      include/linux/soc/renesas/
2777
2778 ARM/SOCFPGA ARCHITECTURE
2779 M:      Dinh Nguyen <dinguyen@kernel.org>
2780 S:      Maintained
2781 W:      http://www.rocketboards.org
2782 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
2783 F:      arch/arm/boot/dts/socfpga*
2784 F:      arch/arm/configs/socfpga_defconfig
2785 F:      arch/arm/mach-socfpga/
2786 F:      arch/arm64/boot/dts/altera/
2787 F:      arch/arm64/boot/dts/intel/
2788
2789 ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
2790 M:      Dinh Nguyen <dinguyen@kernel.org>
2791 S:      Maintained
2792 F:      drivers/clk/socfpga/
2793
2794 ARM/SOCFPGA EDAC SUPPORT
2795 M:      Dinh Nguyen <dinguyen@kernel.org>
2796 S:      Maintained
2797 F:      drivers/edac/altera_edac.[ch]
2798
2799 ARM/SPREADTRUM SoC SUPPORT
2800 M:      Orson Zhai <orsonzhai@gmail.com>
2801 M:      Baolin Wang <baolin.wang7@gmail.com>
2802 M:      Chunyan Zhang <zhang.lyra@gmail.com>
2803 S:      Maintained
2804 F:      arch/arm64/boot/dts/sprd
2805 N:      sprd
2806 N:      sc27xx
2807 N:      sc2731
2808
2809 ARM/STI ARCHITECTURE
2810 M:      Patrice Chotard <patrice.chotard@foss.st.com>
2811 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2812 S:      Maintained
2813 W:      http://www.stlinux.com
2814 F:      Documentation/devicetree/bindings/i2c/i2c-st.txt
2815 F:      arch/arm/boot/dts/sti*
2816 F:      arch/arm/mach-sti/
2817 F:      drivers/ata/ahci_st.c
2818 F:      drivers/char/hw_random/st-rng.c
2819 F:      drivers/clocksource/arm_global_timer.c
2820 F:      drivers/clocksource/clksrc_st_lpc.c
2821 F:      drivers/cpufreq/sti-cpufreq.c
2822 F:      drivers/dma/st_fdma*
2823 F:      drivers/i2c/busses/i2c-st.c
2824 F:      drivers/media/platform/st/sti/c8sectpfe/
2825 F:      drivers/media/rc/st_rc.c
2826 F:      drivers/mmc/host/sdhci-st.c
2827 F:      drivers/phy/st/phy-miphy28lp.c
2828 F:      drivers/phy/st/phy-stih407-usb.c
2829 F:      drivers/pinctrl/pinctrl-st.c
2830 F:      drivers/remoteproc/st_remoteproc.c
2831 F:      drivers/remoteproc/st_slim_rproc.c
2832 F:      drivers/reset/sti/
2833 F:      drivers/rtc/rtc-st-lpc.c
2834 F:      drivers/tty/serial/st-asc.c
2835 F:      drivers/usb/dwc3/dwc3-st.c
2836 F:      drivers/usb/host/ehci-st.c
2837 F:      drivers/usb/host/ohci-st.c
2838 F:      drivers/watchdog/st_lpc_wdt.c
2839 F:      include/linux/remoteproc/st_slim_rproc.h
2840
2841 ARM/STM32 ARCHITECTURE
2842 M:      Maxime Coquelin <mcoquelin.stm32@gmail.com>
2843 M:      Alexandre Torgue <alexandre.torgue@foss.st.com>
2844 L:      linux-stm32@st-md-mailman.stormreply.com (moderated for non-subscribers)
2845 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2846 S:      Maintained
2847 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/atorgue/stm32.git stm32-next
2848 F:      arch/arm/boot/dts/stm32*
2849 F:      arch/arm/mach-stm32/
2850 F:      drivers/clocksource/armv7m_systick.c
2851 N:      stm32
2852 N:      stm
2853
2854 ARM/SUNPLUS SP7021 SOC SUPPORT
2855 M:      Qin Jian <qinjian@cqplus1.com>
2856 L:      linux-arm-kernel@lists.infradead.org (moderated for mon-subscribers)
2857 S:      Maintained
2858 W:      https://sunplus-tibbo.atlassian.net/wiki/spaces/doc/overview
2859 F:      Documentation/devicetree/bindings/arm/sunplus,sp7021.yaml
2860 F:      Documentation/devicetree/bindings/clock/sunplus,sp7021-clkc.yaml
2861 F:      Documentation/devicetree/bindings/interrupt-controller/sunplus,sp7021-intc.yaml
2862 F:      Documentation/devicetree/bindings/reset/sunplus,reset.yaml
2863 F:      arch/arm/boot/dts/sunplus-sp7021*.dts*
2864 F:      arch/arm/configs/sp7021_*defconfig
2865 F:      arch/arm/mach-sunplus/
2866 F:      drivers/irqchip/irq-sp7021-intc.c
2867 F:      drivers/reset/reset-sunplus.c
2868 F:      include/dt-bindings/clock/sunplus,sp7021-clkc.h
2869 F:      include/dt-bindings/reset/sunplus,sp7021-reset.h
2870
2871 ARM/Synaptics SoC support
2872 M:      Jisheng Zhang <jszhang@kernel.org>
2873 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2874 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2875 S:      Maintained
2876 F:      arch/arm/boot/dts/berlin*
2877 F:      arch/arm/mach-berlin/
2878 F:      arch/arm64/boot/dts/synaptics/
2879
2880 ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
2881 M:      Lennert Buytenhek <kernel@wantstofly.org>
2882 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2883 S:      Maintained
2884
2885 ARM/TEGRA HDMI CEC SUBSYSTEM SUPPORT
2886 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
2887 L:      linux-tegra@vger.kernel.org
2888 L:      linux-media@vger.kernel.org
2889 S:      Maintained
2890 F:      Documentation/devicetree/bindings/media/tegra-cec.txt
2891 F:      drivers/media/cec/platform/tegra/
2892
2893 ARM/TESLA FSD SoC SUPPORT
2894 M:      Alim Akhtar <alim.akhtar@samsung.com>
2895 M:      linux-fsd@tesla.com
2896 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2897 L:      linux-samsung-soc@vger.kernel.org
2898 S:      Maintained
2899 F:      arch/arm64/boot/dts/tesla*
2900
2901 ARM/TETON BGA MACHINE SUPPORT
2902 M:      "Mark F. Brown" <mark.brown314@gmail.com>
2903 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2904 S:      Maintained
2905
2906 ARM/TEXAS INSTRUMENT AEMIF/EMIF DRIVERS
2907 M:      Santosh Shilimkar <ssantosh@kernel.org>
2908 L:      linux-kernel@vger.kernel.org
2909 S:      Maintained
2910 F:      drivers/memory/*emif*
2911
2912 ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE
2913 M:      Nishanth Menon <nm@ti.com>
2914 M:      Santosh Shilimkar <ssantosh@kernel.org>
2915 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2916 S:      Maintained
2917 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ti/linux.git
2918 F:      arch/arm/boot/dts/keystone-*
2919 F:      arch/arm/mach-keystone/
2920
2921 ARM/TEXAS INSTRUMENT KEYSTONE CLOCK FRAMEWORK
2922 M:      Santosh Shilimkar <ssantosh@kernel.org>
2923 L:      linux-kernel@vger.kernel.org
2924 S:      Maintained
2925 F:      drivers/clk/keystone/
2926
2927 ARM/TEXAS INSTRUMENT KEYSTONE CLOCKSOURCE
2928 M:      Santosh Shilimkar <ssantosh@kernel.org>
2929 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2930 L:      linux-kernel@vger.kernel.org
2931 S:      Maintained
2932 F:      drivers/clocksource/timer-keystone.c
2933
2934 ARM/TEXAS INSTRUMENT KEYSTONE RESET DRIVER
2935 M:      Santosh Shilimkar <ssantosh@kernel.org>
2936 L:      linux-kernel@vger.kernel.org
2937 S:      Maintained
2938 F:      drivers/power/reset/keystone-reset.c
2939
2940 ARM/TEXAS INSTRUMENTS K3 ARCHITECTURE
2941 M:      Nishanth Menon <nm@ti.com>
2942 M:      Vignesh Raghavendra <vigneshr@ti.com>
2943 M:      Tero Kristo <kristo@kernel.org>
2944 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2945 S:      Supported
2946 F:      Documentation/devicetree/bindings/arm/ti/k3.yaml
2947 F:      arch/arm64/boot/dts/ti/Makefile
2948 F:      arch/arm64/boot/dts/ti/k3-*
2949 F:      include/dt-bindings/pinctrl/k3.h
2950
2951 ARM/THECUS N2100 MACHINE SUPPORT
2952 M:      Lennert Buytenhek <kernel@wantstofly.org>
2953 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2954 S:      Maintained
2955
2956 ARM/TOSA MACHINE SUPPORT
2957 M:      Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
2958 M:      Dirk Opfer <dirk@opfer-online.de>
2959 S:      Maintained
2960
2961 ARM/TOSHIBA VISCONTI ARCHITECTURE
2962 M:      Nobuhiro Iwamatsu <nobuhiro1.iwamatsu@toshiba.co.jp>
2963 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2964 S:      Supported
2965 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwamatsu/linux-visconti.git
2966 F:      Documentation/devicetree/bindings/arm/toshiba.yaml
2967 F:      Documentation/devicetree/bindings/clock/toshiba,tmpv770x-pipllct.yaml
2968 F:      Documentation/devicetree/bindings/clock/toshiba,tmpv770x-pismu.yaml
2969 F:      Documentation/devicetree/bindings/net/toshiba,visconti-dwmac.yaml
2970 F:      Documentation/devicetree/bindings/gpio/toshiba,gpio-visconti.yaml
2971 F:      Documentation/devicetree/bindings/pci/toshiba,visconti-pcie.yaml
2972 F:      Documentation/devicetree/bindings/pinctrl/toshiba,visconti-pinctrl.yaml
2973 F:      Documentation/devicetree/bindings/watchdog/toshiba,visconti-wdt.yaml
2974 F:      arch/arm64/boot/dts/toshiba/
2975 F:      drivers/clk/visconti/
2976 F:      drivers/net/ethernet/stmicro/stmmac/dwmac-visconti.c
2977 F:      drivers/gpio/gpio-visconti.c
2978 F:      drivers/pci/controller/dwc/pcie-visconti.c
2979 F:      drivers/pinctrl/visconti/
2980 F:      drivers/watchdog/visconti_wdt.c
2981 N:      visconti
2982
2983 ARM/UNIPHIER ARCHITECTURE
2984 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
2985 M:      Masami Hiramatsu <mhiramat@kernel.org>
2986 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2987 S:      Maintained
2988 F:      Documentation/devicetree/bindings/arm/socionext/uniphier.yaml
2989 F:      Documentation/devicetree/bindings/gpio/socionext,uniphier-gpio.yaml
2990 F:      Documentation/devicetree/bindings/pinctrl/socionext,uniphier-pinctrl.yaml
2991 F:      arch/arm/boot/dts/uniphier*
2992 F:      arch/arm/include/asm/hardware/cache-uniphier.h
2993 F:      arch/arm/mach-uniphier/
2994 F:      arch/arm/mm/cache-uniphier.c
2995 F:      arch/arm64/boot/dts/socionext/uniphier*
2996 F:      drivers/bus/uniphier-system-bus.c
2997 F:      drivers/clk/uniphier/
2998 F:      drivers/dma/uniphier-mdmac.c
2999 F:      drivers/gpio/gpio-uniphier.c
3000 F:      drivers/i2c/busses/i2c-uniphier*
3001 F:      drivers/irqchip/irq-uniphier-aidet.c
3002 F:      drivers/mmc/host/uniphier-sd.c
3003 F:      drivers/pinctrl/uniphier/
3004 F:      drivers/reset/reset-uniphier.c
3005 F:      drivers/tty/serial/8250/8250_uniphier.c
3006 N:      uniphier
3007
3008 ARM/VERSATILE EXPRESS PLATFORM
3009 M:      Liviu Dudau <liviu.dudau@arm.com>
3010 M:      Sudeep Holla <sudeep.holla@arm.com>
3011 M:      Lorenzo Pieralisi <lpieralisi@kernel.org>
3012 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3013 S:      Maintained
3014 F:      */*/*/vexpress*
3015 F:      */*/vexpress*
3016 F:      arch/arm/boot/dts/vexpress*
3017 F:      arch/arm/mach-vexpress/
3018 F:      arch/arm64/boot/dts/arm/
3019 F:      drivers/clk/versatile/clk-vexpress-osc.c
3020 F:      drivers/clocksource/timer-versatile.c
3021 N:      mps2
3022
3023 ARM/VFP SUPPORT
3024 M:      Russell King <linux@armlinux.org.uk>
3025 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3026 S:      Maintained
3027 W:      http://www.armlinux.org.uk/
3028 F:      arch/arm/vfp/
3029
3030 ARM/VOIPAC PXA270 SUPPORT
3031 M:      Marek Vasut <marek.vasut@gmail.com>
3032 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3033 S:      Maintained
3034 F:      arch/arm/mach-pxa/include/mach/vpac270.h
3035 F:      arch/arm/mach-pxa/vpac270.c
3036
3037 ARM/VT8500 ARM ARCHITECTURE
3038 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3039 S:      Orphan
3040 F:      Documentation/devicetree/bindings/i2c/i2c-wmt.txt
3041 F:      arch/arm/mach-vt8500/
3042 F:      drivers/clocksource/timer-vt8500.c
3043 F:      drivers/i2c/busses/i2c-wmt.c
3044 F:      drivers/mmc/host/wmt-sdmmc.c
3045 F:      drivers/pwm/pwm-vt8500.c
3046 F:      drivers/rtc/rtc-vt8500.c
3047 F:      drivers/tty/serial/vt8500_serial.c
3048 F:      drivers/usb/host/ehci-platform.c
3049 F:      drivers/usb/host/uhci-platform.c
3050 F:      drivers/video/fbdev/vt8500lcdfb.*
3051 F:      drivers/video/fbdev/wm8505fb*
3052 F:      drivers/video/fbdev/wmt_ge_rops.*
3053
3054 ARM/ZIPIT Z2 SUPPORT
3055 M:      Marek Vasut <marek.vasut@gmail.com>
3056 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3057 S:      Maintained
3058 F:      arch/arm/mach-pxa/include/mach/z2.h
3059 F:      arch/arm/mach-pxa/z2.c
3060
3061 ARM/ZYNQ ARCHITECTURE
3062 M:      Michal Simek <michal.simek@xilinx.com>
3063 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3064 S:      Supported
3065 W:      http://wiki.xilinx.com
3066 T:      git https://github.com/Xilinx/linux-xlnx.git
3067 F:      Documentation/devicetree/bindings/i2c/cdns,i2c-r1p10.yaml
3068 F:      Documentation/devicetree/bindings/i2c/xlnx,xps-iic-2.00.a.yaml
3069 F:      Documentation/devicetree/bindings/spi/xlnx,zynq-qspi.yaml
3070 F:      arch/arm/mach-zynq/
3071 F:      drivers/clocksource/timer-cadence-ttc.c
3072 F:      drivers/cpuidle/cpuidle-zynq.c
3073 F:      drivers/edac/synopsys_edac.c
3074 F:      drivers/i2c/busses/i2c-cadence.c
3075 F:      drivers/i2c/busses/i2c-xiic.c
3076 F:      drivers/mmc/host/sdhci-of-arasan.c
3077 N:      zynq
3078 N:      xilinx
3079
3080 ARM64 PORT (AARCH64 ARCHITECTURE)
3081 M:      Catalin Marinas <catalin.marinas@arm.com>
3082 M:      Will Deacon <will@kernel.org>
3083 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3084 S:      Maintained
3085 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux.git
3086 F:      Documentation/arm64/
3087 F:      arch/arm64/
3088 F:      tools/testing/selftests/arm64/
3089 X:      arch/arm64/boot/dts/
3090
3091 ARROW SPEEDCHIPS XRS7000 SERIES ETHERNET SWITCH DRIVER
3092 M:      George McCollister <george.mccollister@gmail.com>
3093 L:      netdev@vger.kernel.org
3094 S:      Maintained
3095 F:      Documentation/devicetree/bindings/net/dsa/arrow,xrs700x.yaml
3096 F:      drivers/net/dsa/xrs700x/*
3097 F:      net/dsa/tag_xrs700x.c
3098
3099 AS3645A LED FLASH CONTROLLER DRIVER
3100 M:      Sakari Ailus <sakari.ailus@iki.fi>
3101 L:      linux-leds@vger.kernel.org
3102 S:      Maintained
3103 F:      drivers/leds/flash/leds-as3645a.c
3104
3105 ASAHI KASEI AK7375 LENS VOICE COIL DRIVER
3106 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
3107 L:      linux-media@vger.kernel.org
3108 S:      Maintained
3109 T:      git git://linuxtv.org/media_tree.git
3110 F:      Documentation/devicetree/bindings/media/i2c/ak7375.txt
3111 F:      drivers/media/i2c/ak7375.c
3112
3113 ASAHI KASEI AK8974 DRIVER
3114 M:      Linus Walleij <linus.walleij@linaro.org>
3115 L:      linux-iio@vger.kernel.org
3116 S:      Supported
3117 W:      http://www.akm.com/
3118 F:      drivers/iio/magnetometer/ak8974.c
3119
3120 ASC7621 HARDWARE MONITOR DRIVER
3121 M:      George Joseph <george.joseph@fairview5.com>
3122 L:      linux-hwmon@vger.kernel.org
3123 S:      Maintained
3124 F:      Documentation/hwmon/asc7621.rst
3125 F:      drivers/hwmon/asc7621.c
3126
3127 ASIX AX88796C SPI ETHERNET ADAPTER
3128 M:      Łukasz Stelmach <l.stelmach@samsung.com>
3129 S:      Maintained
3130 F:      Documentation/devicetree/bindings/net/asix,ax88796c.yaml
3131 F:      drivers/net/ethernet/asix/ax88796c_*
3132
3133 ASPEED PECI CONTROLLER
3134 M:      Iwona Winiarska <iwona.winiarska@intel.com>
3135 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
3136 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
3137 S:      Supported
3138 F:      Documentation/devicetree/bindings/peci/peci-aspeed.yaml
3139 F:      drivers/peci/controller/peci-aspeed.c
3140
3141 ASPEED PINCTRL DRIVERS
3142 M:      Andrew Jeffery <andrew@aj.id.au>
3143 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
3144 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
3145 L:      linux-gpio@vger.kernel.org
3146 S:      Maintained
3147 F:      Documentation/devicetree/bindings/pinctrl/aspeed,*
3148 F:      drivers/pinctrl/aspeed/
3149
3150 ASPEED SCU INTERRUPT CONTROLLER DRIVER
3151 M:      Eddie James <eajames@linux.ibm.com>
3152 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
3153 S:      Maintained
3154 F:      Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2xxx-scu-ic.txt
3155 F:      drivers/irqchip/irq-aspeed-scu-ic.c
3156 F:      include/dt-bindings/interrupt-controller/aspeed-scu-ic.h
3157
3158 ASPEED SD/MMC DRIVER
3159 M:      Andrew Jeffery <andrew@aj.id.au>
3160 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
3161 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
3162 L:      linux-mmc@vger.kernel.org
3163 S:      Maintained
3164 F:      Documentation/devicetree/bindings/mmc/aspeed,sdhci.yaml
3165 F:      drivers/mmc/host/sdhci-of-aspeed*
3166
3167 ASPEED SMC SPI DRIVER
3168 M:      Chin-Ting Kuo <chin-ting_kuo@aspeedtech.com>
3169 M:      Cédric Le Goater <clg@kaod.org>
3170 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
3171 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
3172 L:      linux-spi@vger.kernel.org
3173 S:      Maintained
3174 F:      Documentation/devicetree/bindings/spi/aspeed,ast2600-fmc.yaml
3175 F:      drivers/spi/spi-aspeed-smc.c
3176
3177 ASPEED VIDEO ENGINE DRIVER
3178 M:      Eddie James <eajames@linux.ibm.com>
3179 L:      linux-media@vger.kernel.org
3180 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
3181 S:      Maintained
3182 F:      Documentation/devicetree/bindings/media/aspeed-video.txt
3183 F:      drivers/media/platform/aspeed/
3184
3185 ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
3186 M:      Corentin Chary <corentin.chary@gmail.com>
3187 L:      acpi4asus-user@lists.sourceforge.net
3188 L:      platform-driver-x86@vger.kernel.org
3189 S:      Maintained
3190 W:      http://acpi4asus.sf.net
3191 F:      drivers/platform/x86/asus*.c
3192 F:      drivers/platform/x86/eeepc*.c
3193
3194 ASUS TF103C DOCK DRIVER
3195 M:      Hans de Goede <hdegoede@redhat.com>
3196 L:      platform-driver-x86@vger.kernel.org
3197 S:      Maintained
3198 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
3199 F:      drivers/platform/x86/asus-tf103c-dock.c
3200
3201 ASUS WMI HARDWARE MONITOR DRIVER
3202 M:      Ed Brindley <kernel@maidavale.org>
3203 M:      Denis Pauk <pauk.denis@gmail.com>
3204 L:      linux-hwmon@vger.kernel.org
3205 S:      Maintained
3206 F:      drivers/hwmon/asus_wmi_sensors.c
3207
3208 ASUS WMI EC HARDWARE MONITOR DRIVER
3209 M:      Eugene Shalygin <eugene.shalygin@gmail.com>
3210 M:      Denis Pauk <pauk.denis@gmail.com>
3211 L:      linux-hwmon@vger.kernel.org
3212 S:      Maintained
3213 F:      drivers/hwmon/asus_wmi_ec_sensors.c
3214
3215 ASUS EC HARDWARE MONITOR DRIVER
3216 M:      Eugene Shalygin <eugene.shalygin@gmail.com>
3217 L:      linux-hwmon@vger.kernel.org
3218 S:      Maintained
3219 F:      drivers/hwmon/asus-ec-sensors.c
3220
3221 ASUS WIRELESS RADIO CONTROL DRIVER
3222 M:      João Paulo Rechi Vita <jprvita@gmail.com>
3223 L:      platform-driver-x86@vger.kernel.org
3224 S:      Maintained
3225 F:      drivers/platform/x86/asus-wireless.c
3226
3227 ASYMMETRIC KEYS
3228 M:      David Howells <dhowells@redhat.com>
3229 L:      keyrings@vger.kernel.org
3230 S:      Maintained
3231 F:      Documentation/crypto/asymmetric-keys.rst
3232 F:      crypto/asymmetric_keys/
3233 F:      include/crypto/pkcs7.h
3234 F:      include/crypto/public_key.h
3235 F:      include/linux/verification.h
3236
3237 ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
3238 R:      Dan Williams <dan.j.williams@intel.com>
3239 S:      Odd fixes
3240 W:      http://sourceforge.net/projects/xscaleiop
3241 F:      Documentation/crypto/async-tx-api.rst
3242 F:      crypto/async_tx/
3243 F:      include/linux/async_tx.h
3244
3245 AT24 EEPROM DRIVER
3246 M:      Bartosz Golaszewski <brgl@bgdev.pl>
3247 L:      linux-i2c@vger.kernel.org
3248 S:      Maintained
3249 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux.git
3250 F:      Documentation/devicetree/bindings/eeprom/at24.yaml
3251 F:      drivers/misc/eeprom/at24.c
3252
3253 ATA OVER ETHERNET (AOE) DRIVER
3254 M:      "Justin Sanders" <justin@coraid.com>
3255 S:      Supported
3256 W:      http://www.openaoe.org/
3257 F:      Documentation/admin-guide/aoe/
3258 F:      drivers/block/aoe/
3259
3260 ATC260X PMIC MFD DRIVER
3261 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
3262 M:      Cristian Ciocaltea <cristian.ciocaltea@gmail.com>
3263 L:      linux-actions@lists.infradead.org
3264 S:      Maintained
3265 F:      Documentation/devicetree/bindings/mfd/actions,atc260x.yaml
3266 F:      drivers/input/misc/atc260x-onkey.c
3267 F:      drivers/mfd/atc260*
3268 F:      drivers/power/reset/atc260x-poweroff.c
3269 F:      drivers/regulator/atc260x-regulator.c
3270 F:      include/linux/mfd/atc260x/*
3271
3272 ATHEROS 71XX/9XXX GPIO DRIVER
3273 M:      Alban Bedel <albeu@free.fr>
3274 S:      Maintained
3275 W:      https://github.com/AlbanBedel/linux
3276 T:      git git://github.com/AlbanBedel/linux
3277 F:      Documentation/devicetree/bindings/gpio/gpio-ath79.txt
3278 F:      drivers/gpio/gpio-ath79.c
3279
3280 ATHEROS 71XX/9XXX USB PHY DRIVER
3281 M:      Alban Bedel <albeu@free.fr>
3282 S:      Maintained
3283 W:      https://github.com/AlbanBedel/linux
3284 T:      git git://github.com/AlbanBedel/linux
3285 F:      Documentation/devicetree/bindings/phy/phy-ath79-usb.txt
3286 F:      drivers/phy/qualcomm/phy-ath79-usb.c
3287
3288 ATHEROS ATH GENERIC UTILITIES
3289 M:      Kalle Valo <kvalo@kernel.org>
3290 L:      linux-wireless@vger.kernel.org
3291 S:      Supported
3292 F:      drivers/net/wireless/ath/*
3293
3294 ATHEROS ATH5K WIRELESS DRIVER
3295 M:      Jiri Slaby <jirislaby@kernel.org>
3296 M:      Nick Kossifidis <mickflemm@gmail.com>
3297 M:      Luis Chamberlain <mcgrof@kernel.org>
3298 L:      linux-wireless@vger.kernel.org
3299 S:      Maintained
3300 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath5k
3301 F:      drivers/net/wireless/ath/ath5k/
3302
3303 ATHEROS ATH6KL WIRELESS DRIVER
3304 L:      linux-wireless@vger.kernel.org
3305 S:      Orphan
3306 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath6kl
3307 F:      drivers/net/wireless/ath/ath6kl/
3308
3309 ATI_REMOTE2 DRIVER
3310 M:      Ville Syrjala <syrjala@sci.fi>
3311 S:      Maintained
3312 F:      drivers/input/misc/ati_remote2.c
3313
3314 ATK0110 HWMON DRIVER
3315 M:      Luca Tettamanti <kronos.it@gmail.com>
3316 L:      linux-hwmon@vger.kernel.org
3317 S:      Maintained
3318 F:      drivers/hwmon/asus_atk0110.c
3319
3320 ATLX ETHERNET DRIVERS
3321 M:      Chris Snook <chris.snook@gmail.com>
3322 L:      netdev@vger.kernel.org
3323 S:      Maintained
3324 W:      http://sourceforge.net/projects/atl1
3325 W:      http://atl1.sourceforge.net
3326 F:      drivers/net/ethernet/atheros/
3327
3328 ATM
3329 M:      Chas Williams <3chas3@gmail.com>
3330 L:      linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
3331 L:      netdev@vger.kernel.org
3332 S:      Maintained
3333 W:      http://linux-atm.sourceforge.net
3334 F:      drivers/atm/
3335 F:      include/linux/atm*
3336 F:      include/uapi/linux/atm*
3337
3338 ATMEL MACB ETHERNET DRIVER
3339 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
3340 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
3341 S:      Supported
3342 F:      drivers/net/ethernet/cadence/
3343
3344 ATMEL MAXTOUCH DRIVER
3345 M:      Nick Dyer <nick@shmanahar.org>
3346 S:      Maintained
3347 T:      git git://github.com/ndyer/linux.git
3348 F:      Documentation/devicetree/bindings/input/atmel,maxtouch.yaml
3349 F:      drivers/input/touchscreen/atmel_mxt_ts.c
3350
3351 ATMEL WIRELESS DRIVER
3352 M:      Simon Kelley <simon@thekelleys.org.uk>
3353 L:      linux-wireless@vger.kernel.org
3354 S:      Maintained
3355 W:      http://www.thekelleys.org.uk/atmel
3356 W:      http://atmelwlandriver.sourceforge.net/
3357 F:      drivers/net/wireless/atmel/atmel*
3358
3359 ATOMIC INFRASTRUCTURE
3360 M:      Will Deacon <will@kernel.org>
3361 M:      Peter Zijlstra <peterz@infradead.org>
3362 R:      Boqun Feng <boqun.feng@gmail.com>
3363 R:      Mark Rutland <mark.rutland@arm.com>
3364 L:      linux-kernel@vger.kernel.org
3365 S:      Maintained
3366 F:      arch/*/include/asm/atomic*.h
3367 F:      include/*/atomic*.h
3368 F:      include/linux/refcount.h
3369 F:      Documentation/atomic_*.txt
3370 F:      scripts/atomic/
3371
3372 ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER
3373 M:      Bradley Grove <linuxdrivers@attotech.com>
3374 L:      linux-scsi@vger.kernel.org
3375 S:      Supported
3376 W:      http://www.attotech.com
3377 F:      drivers/scsi/esas2r
3378
3379 ATUSB IEEE 802.15.4 RADIO DRIVER
3380 M:      Stefan Schmidt <stefan@datenfreihafen.org>
3381 L:      linux-wpan@vger.kernel.org
3382 S:      Maintained
3383 F:      drivers/net/ieee802154/at86rf230.h
3384 F:      drivers/net/ieee802154/atusb.c
3385 F:      drivers/net/ieee802154/atusb.h
3386
3387 AUDIT SUBSYSTEM
3388 M:      Paul Moore <paul@paul-moore.com>
3389 M:      Eric Paris <eparis@redhat.com>
3390 L:      linux-audit@redhat.com (moderated for non-subscribers)
3391 S:      Supported
3392 W:      https://github.com/linux-audit
3393 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/audit.git
3394 F:      include/asm-generic/audit_*.h
3395 F:      include/linux/audit.h
3396 F:      include/linux/audit_arch.h
3397 F:      include/uapi/linux/audit.h
3398 F:      kernel/audit*
3399 F:      lib/*audit.c
3400
3401 AUXILIARY DISPLAY DRIVERS
3402 M:      Miguel Ojeda <ojeda@kernel.org>
3403 S:      Maintained
3404 F:      Documentation/devicetree/bindings/auxdisplay/
3405 F:      drivers/auxdisplay/
3406 F:      include/linux/cfag12864b.h
3407
3408 AVIA HX711 ANALOG DIGITAL CONVERTER IIO DRIVER
3409 M:      Andreas Klinger <ak@it-klinger.de>
3410 L:      linux-iio@vger.kernel.org
3411 S:      Maintained
3412 F:      Documentation/devicetree/bindings/iio/adc/avia-hx711.yaml
3413 F:      drivers/iio/adc/hx711.c
3414
3415 AX.25 NETWORK LAYER
3416 M:      Ralf Baechle <ralf@linux-mips.org>
3417 L:      linux-hams@vger.kernel.org
3418 S:      Maintained
3419 W:      http://www.linux-ax25.org/
3420 F:      include/net/ax25.h
3421 F:      include/uapi/linux/ax25.h
3422 F:      net/ax25/
3423
3424 AXENTIA ARM DEVICES
3425 M:      Peter Rosin <peda@axentia.se>
3426 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3427 S:      Maintained
3428 F:      arch/arm/boot/dts/at91-linea.dtsi
3429 F:      arch/arm/boot/dts/at91-natte.dtsi
3430 F:      arch/arm/boot/dts/at91-nattis-2-natte-2.dts
3431 F:      arch/arm/boot/dts/at91-tse850-3.dts
3432
3433 AXENTIA ASOC DRIVERS
3434 M:      Peter Rosin <peda@axentia.se>
3435 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3436 S:      Maintained
3437 F:      Documentation/devicetree/bindings/sound/axentia,*
3438 F:      sound/soc/atmel/tse850-pcm5142.c
3439
3440 AXI-FAN-CONTROL HARDWARE MONITOR DRIVER
3441 M:      Nuno Sá <nuno.sa@analog.com>
3442 L:      linux-hwmon@vger.kernel.org
3443 S:      Supported
3444 W:      https://ez.analog.com/linux-software-drivers
3445 F:      Documentation/devicetree/bindings/hwmon/adi,axi-fan-control.yaml
3446 F:      drivers/hwmon/axi-fan-control.c
3447
3448 AXXIA I2C CONTROLLER
3449 M:      Krzysztof Adamski <krzysztof.adamski@nokia.com>
3450 L:      linux-i2c@vger.kernel.org
3451 S:      Maintained
3452 F:      Documentation/devicetree/bindings/i2c/i2c-axxia.txt
3453 F:      drivers/i2c/busses/i2c-axxia.c
3454
3455 AZ6007 DVB DRIVER
3456 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
3457 L:      linux-media@vger.kernel.org
3458 S:      Maintained
3459 W:      https://linuxtv.org
3460 T:      git git://linuxtv.org/media_tree.git
3461 F:      drivers/media/usb/dvb-usb-v2/az6007.c
3462
3463 AZTECH FM RADIO RECEIVER DRIVER
3464 M:      Hans Verkuil <hverkuil@xs4all.nl>
3465 L:      linux-media@vger.kernel.org
3466 S:      Maintained
3467 W:      https://linuxtv.org
3468 T:      git git://linuxtv.org/media_tree.git
3469 F:      drivers/media/radio/radio-aztech*
3470
3471 B43 WIRELESS DRIVER
3472 L:      linux-wireless@vger.kernel.org
3473 L:      b43-dev@lists.infradead.org
3474 S:      Odd Fixes
3475 W:      https://wireless.wiki.kernel.org/en/users/Drivers/b43
3476 F:      drivers/net/wireless/broadcom/b43/
3477
3478 B43LEGACY WIRELESS DRIVER
3479 M:      Larry Finger <Larry.Finger@lwfinger.net>
3480 L:      linux-wireless@vger.kernel.org
3481 L:      b43-dev@lists.infradead.org
3482 S:      Maintained
3483 W:      https://wireless.wiki.kernel.org/en/users/Drivers/b43
3484 F:      drivers/net/wireless/broadcom/b43legacy/
3485
3486 BACKLIGHT CLASS/SUBSYSTEM
3487 M:      Lee Jones <lee.jones@linaro.org>
3488 M:      Daniel Thompson <daniel.thompson@linaro.org>
3489 M:      Jingoo Han <jingoohan1@gmail.com>
3490 L:      dri-devel@lists.freedesktop.org
3491 S:      Maintained
3492 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/backlight.git
3493 F:      Documentation/ABI/stable/sysfs-class-backlight
3494 F:      Documentation/ABI/testing/sysfs-class-backlight
3495 F:      Documentation/devicetree/bindings/leds/backlight
3496 F:      drivers/video/backlight/
3497 F:      include/linux/backlight.h
3498 F:      include/linux/pwm_backlight.h
3499
3500 BARCO P50 GPIO DRIVER
3501 M:      Santosh Kumar Yadav <santoshkumar.yadav@barco.com>
3502 M:      Peter Korsgaard <peter.korsgaard@barco.com>
3503 S:      Maintained
3504 F:      drivers/platform/x86/barco-p50-gpio.c
3505
3506 BATMAN ADVANCED
3507 M:      Marek Lindner <mareklindner@neomailbox.ch>
3508 M:      Simon Wunderlich <sw@simonwunderlich.de>
3509 M:      Antonio Quartulli <a@unstable.cc>
3510 M:      Sven Eckelmann <sven@narfation.org>
3511 L:      b.a.t.m.a.n@lists.open-mesh.org (moderated for non-subscribers)
3512 S:      Maintained
3513 W:      https://www.open-mesh.org/
3514 Q:      https://patchwork.open-mesh.org/project/batman/list/
3515 B:      https://www.open-mesh.org/projects/batman-adv/issues
3516 C:      ircs://irc.hackint.org/batadv
3517 T:      git https://git.open-mesh.org/linux-merge.git
3518 F:      Documentation/networking/batman-adv.rst
3519 F:      include/uapi/linux/batadv_packet.h
3520 F:      include/uapi/linux/batman_adv.h
3521 F:      net/batman-adv/
3522
3523 BAYCOM/HDLCDRV DRIVERS FOR AX.25
3524 M:      Thomas Sailer <t.sailer@alumni.ethz.ch>
3525 L:      linux-hams@vger.kernel.org
3526 S:      Maintained
3527 W:      http://www.baycom.org/~tom/ham/ham.html
3528 F:      drivers/net/hamradio/baycom*
3529
3530 BCACHE (BLOCK LAYER CACHE)
3531 M:      Coly Li <colyli@suse.de>
3532 M:      Kent Overstreet <kent.overstreet@gmail.com>
3533 L:      linux-bcache@vger.kernel.org
3534 S:      Maintained
3535 W:      http://bcache.evilpiepirate.org
3536 C:      irc://irc.oftc.net/bcache
3537 F:      drivers/md/bcache/
3538
3539 BDISP ST MEDIA DRIVER
3540 M:      Fabien Dessenne <fabien.dessenne@foss.st.com>
3541 L:      linux-media@vger.kernel.org
3542 S:      Supported
3543 W:      https://linuxtv.org
3544 T:      git git://linuxtv.org/media_tree.git
3545 F:      drivers/media/platform/st/sti/bdisp
3546
3547 BECKHOFF CX5020 ETHERCAT MASTER DRIVER
3548 M:      Dariusz Marcinkiewicz <reksio@newterm.pl>
3549 L:      netdev@vger.kernel.org
3550 S:      Maintained
3551 F:      drivers/net/ethernet/ec_bhf.c
3552
3553 BEFS FILE SYSTEM
3554 M:      Luis de Bethencourt <luisbg@kernel.org>
3555 M:      Salah Triki <salah.triki@gmail.com>
3556 S:      Maintained
3557 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luisbg/linux-befs.git
3558 F:      Documentation/filesystems/befs.rst
3559 F:      fs/befs/
3560
3561 BFQ I/O SCHEDULER
3562 M:      Paolo Valente <paolo.valente@linaro.org>
3563 M:      Jens Axboe <axboe@kernel.dk>
3564 L:      linux-block@vger.kernel.org
3565 S:      Maintained
3566 F:      Documentation/block/bfq-iosched.rst
3567 F:      block/bfq-*
3568
3569 BFS FILE SYSTEM
3570 M:      "Tigran A. Aivazian" <aivazian.tigran@gmail.com>
3571 S:      Maintained
3572 F:      Documentation/filesystems/bfs.rst
3573 F:      fs/bfs/
3574 F:      include/uapi/linux/bfs_fs.h
3575
3576 BITMAP API
3577 M:      Yury Norov <yury.norov@gmail.com>
3578 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
3579 R:      Rasmus Villemoes <linux@rasmusvillemoes.dk>
3580 S:      Maintained
3581 F:      include/linux/bitmap.h
3582 F:      include/linux/cpumask.h
3583 F:      include/linux/find.h
3584 F:      include/linux/nodemask.h
3585 F:      lib/bitmap.c
3586 F:      lib/cpumask.c
3587 F:      lib/find_bit.c
3588 F:      lib/find_bit_benchmark.c
3589 F:      lib/nodemask.c
3590 F:      lib/test_bitmap.c
3591 F:      tools/include/linux/bitmap.h
3592 F:      tools/include/linux/find.h
3593 F:      tools/lib/bitmap.c
3594 F:      tools/lib/find_bit.c
3595
3596 BLINKM RGB LED DRIVER
3597 M:      Jan-Simon Moeller <jansimon.moeller@gmx.de>
3598 S:      Maintained
3599 F:      drivers/leds/leds-blinkm.c
3600
3601 BLOCK LAYER
3602 M:      Jens Axboe <axboe@kernel.dk>
3603 L:      linux-block@vger.kernel.org
3604 S:      Maintained
3605 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
3606 F:      Documentation/ABI/stable/sysfs-block
3607 F:      Documentation/block/
3608 F:      block/
3609 F:      drivers/block/
3610 F:      include/linux/bio.h
3611 F:      include/linux/blk*
3612 F:      kernel/trace/blktrace.c
3613 F:      lib/sbitmap.c
3614
3615 BLOCK2MTD DRIVER
3616 M:      Joern Engel <joern@lazybastard.org>
3617 L:      linux-mtd@lists.infradead.org
3618 S:      Maintained
3619 F:      drivers/mtd/devices/block2mtd.c
3620
3621 BLUETOOTH DRIVERS
3622 M:      Marcel Holtmann <marcel@holtmann.org>
3623 M:      Johan Hedberg <johan.hedberg@gmail.com>
3624 M:      Luiz Augusto von Dentz <luiz.dentz@gmail.com>
3625 L:      linux-bluetooth@vger.kernel.org
3626 S:      Supported
3627 W:      http://www.bluez.org/
3628 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3629 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3630 F:      drivers/bluetooth/
3631
3632 BLUETOOTH SUBSYSTEM
3633 M:      Marcel Holtmann <marcel@holtmann.org>
3634 M:      Johan Hedberg <johan.hedberg@gmail.com>
3635 M:      Luiz Augusto von Dentz <luiz.dentz@gmail.com>
3636 L:      linux-bluetooth@vger.kernel.org
3637 S:      Supported
3638 W:      http://www.bluez.org/
3639 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3640 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3641 F:      include/net/bluetooth/
3642 F:      net/bluetooth/
3643
3644 BONDING DRIVER
3645 M:      Jay Vosburgh <j.vosburgh@gmail.com>
3646 M:      Veaceslav Falico <vfalico@gmail.com>
3647 M:      Andy Gospodarek <andy@greyhouse.net>
3648 L:      netdev@vger.kernel.org
3649 S:      Supported
3650 W:      http://sourceforge.net/projects/bonding/
3651 F:      Documentation/networking/bonding.rst
3652 F:      drivers/net/bonding/
3653 F:      include/net/bond*
3654 F:      include/uapi/linux/if_bonding.h
3655
3656 BOSCH SENSORTEC BMA400 ACCELEROMETER IIO DRIVER
3657 M:      Dan Robertson <dan@dlrobertson.com>
3658 L:      linux-iio@vger.kernel.org
3659 S:      Maintained
3660 F:      Documentation/devicetree/bindings/iio/accel/bosch,bma400.yaml
3661 F:      drivers/iio/accel/bma400*
3662
3663 BPF [GENERAL] (Safe Dynamic Programs and Tools)
3664 M:      Alexei Starovoitov <ast@kernel.org>
3665 M:      Daniel Borkmann <daniel@iogearbox.net>
3666 M:      Andrii Nakryiko <andrii@kernel.org>
3667 R:      Martin KaFai Lau <martin.lau@linux.dev>
3668 R:      Song Liu <song@kernel.org>
3669 R:      Yonghong Song <yhs@fb.com>
3670 R:      John Fastabend <john.fastabend@gmail.com>
3671 R:      KP Singh <kpsingh@kernel.org>
3672 R:      Stanislav Fomichev <sdf@google.com>
3673 R:      Hao Luo <haoluo@google.com>
3674 R:      Jiri Olsa <jolsa@kernel.org>
3675 L:      bpf@vger.kernel.org
3676 S:      Supported
3677 W:      https://bpf.io/
3678 Q:      https://patchwork.kernel.org/project/netdevbpf/list/?delegate=121173
3679 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf.git
3680 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-next.git
3681 F:      Documentation/bpf/
3682 F:      Documentation/networking/filter.rst
3683 F:      Documentation/userspace-api/ebpf/
3684 F:      arch/*/net/*
3685 F:      include/linux/bpf*
3686 F:      include/linux/btf*
3687 F:      include/linux/filter.h
3688 F:      include/trace/events/xdp.h
3689 F:      include/uapi/linux/bpf*
3690 F:      include/uapi/linux/btf*
3691 F:      include/uapi/linux/filter.h
3692 F:      kernel/bpf/
3693 F:      kernel/trace/bpf_trace.c
3694 F:      lib/test_bpf.c
3695 F:      net/bpf/
3696 F:      net/core/filter.c
3697 F:      net/sched/act_bpf.c
3698 F:      net/sched/cls_bpf.c
3699 F:      samples/bpf/
3700 F:      scripts/bpf_doc.py
3701 F:      scripts/pahole-flags.sh
3702 F:      scripts/pahole-version.sh
3703 F:      tools/bpf/
3704 F:      tools/lib/bpf/
3705 F:      tools/testing/selftests/bpf/
3706
3707 BPF JIT for ARM
3708 M:      Shubham Bansal <illusionist.neo@gmail.com>
3709 L:      bpf@vger.kernel.org
3710 S:      Odd Fixes
3711 F:      arch/arm/net/
3712
3713 BPF JIT for ARM64
3714 M:      Daniel Borkmann <daniel@iogearbox.net>
3715 M:      Alexei Starovoitov <ast@kernel.org>
3716 M:      Zi Shen Lim <zlim.lnx@gmail.com>
3717 L:      bpf@vger.kernel.org
3718 S:      Supported
3719 F:      arch/arm64/net/
3720
3721 BPF JIT for MIPS (32-BIT AND 64-BIT)
3722 M:      Johan Almbladh <johan.almbladh@anyfinetworks.com>
3723 M:      Paul Burton <paulburton@kernel.org>
3724 L:      bpf@vger.kernel.org
3725 S:      Maintained
3726 F:      arch/mips/net/
3727
3728 BPF JIT for NFP NICs
3729 M:      Jakub Kicinski <kuba@kernel.org>
3730 L:      bpf@vger.kernel.org
3731 S:      Odd Fixes
3732 F:      drivers/net/ethernet/netronome/nfp/bpf/
3733
3734 BPF JIT for POWERPC (32-BIT AND 64-BIT)
3735 M:      Naveen N. Rao <naveen.n.rao@linux.ibm.com>
3736 M:      Michael Ellerman <mpe@ellerman.id.au>
3737 L:      bpf@vger.kernel.org
3738 S:      Supported
3739 F:      arch/powerpc/net/
3740
3741 BPF JIT for RISC-V (32-bit)
3742 M:      Luke Nelson <luke.r.nels@gmail.com>
3743 M:      Xi Wang <xi.wang@gmail.com>
3744 L:      bpf@vger.kernel.org
3745 S:      Maintained
3746 F:      arch/riscv/net/
3747 X:      arch/riscv/net/bpf_jit_comp64.c
3748
3749 BPF JIT for RISC-V (64-bit)
3750 M:      Björn Töpel <bjorn@kernel.org>
3751 L:      bpf@vger.kernel.org
3752 S:      Maintained
3753 F:      arch/riscv/net/
3754 X:      arch/riscv/net/bpf_jit_comp32.c
3755
3756 BPF JIT for S390
3757 M:      Ilya Leoshkevich <iii@linux.ibm.com>
3758 M:      Heiko Carstens <hca@linux.ibm.com>
3759 M:      Vasily Gorbik <gor@linux.ibm.com>
3760 L:      bpf@vger.kernel.org
3761 S:      Supported
3762 F:      arch/s390/net/
3763 X:      arch/s390/net/pnet.c
3764
3765 BPF JIT for SPARC (32-BIT AND 64-BIT)
3766 M:      David S. Miller <davem@davemloft.net>
3767 L:      bpf@vger.kernel.org
3768 S:      Odd Fixes
3769 F:      arch/sparc/net/
3770
3771 BPF JIT for X86 32-BIT
3772 M:      Wang YanQing <udknight@gmail.com>
3773 L:      bpf@vger.kernel.org
3774 S:      Odd Fixes
3775 F:      arch/x86/net/bpf_jit_comp32.c
3776
3777 BPF JIT for X86 64-BIT
3778 M:      Alexei Starovoitov <ast@kernel.org>
3779 M:      Daniel Borkmann <daniel@iogearbox.net>
3780 L:      bpf@vger.kernel.org
3781 S:      Supported
3782 F:      arch/x86/net/
3783 X:      arch/x86/net/bpf_jit_comp32.c
3784
3785 BPF [CORE]
3786 M:      Alexei Starovoitov <ast@kernel.org>
3787 M:      Daniel Borkmann <daniel@iogearbox.net>
3788 R:      John Fastabend <john.fastabend@gmail.com>
3789 L:      bpf@vger.kernel.org
3790 S:      Maintained
3791 F:      kernel/bpf/verifier.c
3792 F:      kernel/bpf/tnum.c
3793 F:      kernel/bpf/core.c
3794 F:      kernel/bpf/syscall.c
3795 F:      kernel/bpf/dispatcher.c
3796 F:      kernel/bpf/trampoline.c
3797 F:      include/linux/bpf*
3798 F:      include/linux/filter.h
3799
3800 BPF [BTF]
3801 M:      Martin KaFai Lau <martin.lau@linux.dev>
3802 L:      bpf@vger.kernel.org
3803 S:      Maintained
3804 F:      kernel/bpf/btf.c
3805 F:      include/linux/btf*
3806
3807 BPF [TRACING]
3808 M:      Song Liu <song@kernel.org>
3809 R:      Jiri Olsa <jolsa@kernel.org>
3810 L:      bpf@vger.kernel.org
3811 S:      Maintained
3812 F:      kernel/trace/bpf_trace.c
3813 F:      kernel/bpf/stackmap.c
3814
3815 BPF [NETWORKING] (tc BPF, sock_addr)
3816 M:      Martin KaFai Lau <martin.lau@linux.dev>
3817 M:      Daniel Borkmann <daniel@iogearbox.net>
3818 R:      John Fastabend <john.fastabend@gmail.com>
3819 L:      bpf@vger.kernel.org
3820 L:      netdev@vger.kernel.org
3821 S:      Maintained
3822 F:      net/core/filter.c
3823 F:      net/sched/act_bpf.c
3824 F:      net/sched/cls_bpf.c
3825
3826 BPF [NETWORKING] (struct_ops, reuseport)
3827 M:      Martin KaFai Lau <martin.lau@linux.dev>
3828 L:      bpf@vger.kernel.org
3829 L:      netdev@vger.kernel.org
3830 S:      Maintained
3831 F:      kernel/bpf/bpf_struct*
3832
3833 BPF [SECURITY & LSM] (Security Audit and Enforcement using BPF)
3834 M:      KP Singh <kpsingh@kernel.org>
3835 R:      Florent Revest <revest@chromium.org>
3836 R:      Brendan Jackman <jackmanb@chromium.org>
3837 L:      bpf@vger.kernel.org
3838 S:      Maintained
3839 F:      Documentation/bpf/prog_lsm.rst
3840 F:      include/linux/bpf_lsm.h
3841 F:      kernel/bpf/bpf_lsm.c
3842 F:      security/bpf/
3843
3844 BPF [STORAGE & CGROUPS]
3845 M:      Martin KaFai Lau <martin.lau@linux.dev>
3846 L:      bpf@vger.kernel.org
3847 S:      Maintained
3848 F:      kernel/bpf/cgroup.c
3849 F:      kernel/bpf/*storage.c
3850 F:      kernel/bpf/bpf_lru*
3851
3852 BPF [RINGBUF]
3853 M:      Andrii Nakryiko <andrii@kernel.org>
3854 L:      bpf@vger.kernel.org
3855 S:      Maintained
3856 F:      kernel/bpf/ringbuf.c
3857
3858 BPF [ITERATOR]
3859 M:      Yonghong Song <yhs@fb.com>
3860 L:      bpf@vger.kernel.org
3861 S:      Maintained
3862 F:      kernel/bpf/*iter.c
3863
3864 BPF [L7 FRAMEWORK] (sockmap)
3865 M:      John Fastabend <john.fastabend@gmail.com>
3866 M:      Jakub Sitnicki <jakub@cloudflare.com>
3867 L:      netdev@vger.kernel.org
3868 L:      bpf@vger.kernel.org
3869 S:      Maintained
3870 F:      include/linux/skmsg.h
3871 F:      net/core/skmsg.c
3872 F:      net/core/sock_map.c
3873 F:      net/ipv4/tcp_bpf.c
3874 F:      net/ipv4/udp_bpf.c
3875 F:      net/unix/unix_bpf.c
3876
3877 BPF [LIBRARY] (libbpf)
3878 M:      Andrii Nakryiko <andrii@kernel.org>
3879 L:      bpf@vger.kernel.org
3880 S:      Maintained
3881 F:      tools/lib/bpf/
3882
3883 BPF [TOOLING] (bpftool)
3884 M:      Quentin Monnet <quentin@isovalent.com>
3885 L:      bpf@vger.kernel.org
3886 S:      Maintained
3887 F:      kernel/bpf/disasm.*
3888 F:      tools/bpf/bpftool/
3889
3890 BPF [SELFTESTS] (Test Runners & Infrastructure)
3891 M:      Andrii Nakryiko <andrii@kernel.org>
3892 R:      Mykola Lysenko <mykolal@fb.com>
3893 L:      bpf@vger.kernel.org
3894 S:      Maintained
3895 F:      tools/testing/selftests/bpf/
3896
3897 BPF [MISC]
3898 L:      bpf@vger.kernel.org
3899 S:      Odd Fixes
3900 K:      (?:\b|_)bpf(?:\b|_)
3901
3902 BROADCOM B44 10/100 ETHERNET DRIVER
3903 M:      Michael Chan <michael.chan@broadcom.com>
3904 L:      netdev@vger.kernel.org
3905 S:      Supported
3906 F:      drivers/net/ethernet/broadcom/b44.*
3907
3908 BROADCOM B53/SF2 ETHERNET SWITCH DRIVER
3909 M:      Florian Fainelli <f.fainelli@gmail.com>
3910 L:      netdev@vger.kernel.org
3911 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
3912 S:      Supported
3913 F:      Documentation/devicetree/bindings/net/dsa/brcm,b53.yaml
3914 F:      drivers/net/dsa/b53/*
3915 F:      drivers/net/dsa/bcm_sf2*
3916 F:      include/linux/dsa/brcm.h
3917 F:      include/linux/platform_data/b53.h
3918
3919 BROADCOM BCMBCA ARM ARCHITECTURE
3920 M:      William Zhang <william.zhang@broadcom.com>
3921 M:      Anand Gore <anand.gore@broadcom.com>
3922 M:      Kursad Oney <kursad.oney@broadcom.com>
3923 M:      Florian Fainelli <f.fainelli@gmail.com>
3924 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
3925 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3926 S:      Maintained
3927 T:      git git://github.com/broadcom/stblinux.git
3928 F:      Documentation/devicetree/bindings/arm/bcm/brcm,bcmbca.yaml
3929 F:      arch/arm64/boot/dts/broadcom/bcmbca/*
3930 N:      bcmbca
3931 N:      bcm[9]?47622
3932 N:      bcm[9]?4912
3933 N:      bcm[9]?63138
3934 N:      bcm[9]?63146
3935 N:      bcm[9]?63148
3936 N:      bcm[9]?63158
3937 N:      bcm[9]?63178
3938 N:      bcm[9]?6756
3939 N:      bcm[9]?6813
3940 N:      bcm[9]?6846
3941 N:      bcm[9]?6855
3942 N:      bcm[9]?6856
3943 N:      bcm[9]?6858
3944 N:      bcm[9]?6878
3945
3946 BROADCOM BCM2711/BCM2835 ARM ARCHITECTURE
3947 M:      Florian Fainelli <f.fainelli@gmail.com>
3948 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
3949 L:      linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
3950 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3951 S:      Maintained
3952 T:      git git://github.com/broadcom/stblinux.git
3953 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3954 F:      drivers/pci/controller/pcie-brcmstb.c
3955 F:      drivers/staging/vc04_services
3956 N:      bcm2711
3957 N:      bcm283*
3958 N:      raspberrypi
3959
3960 BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE
3961 M:      Florian Fainelli <f.fainelli@gmail.com>
3962 M:      Ray Jui <rjui@broadcom.com>
3963 M:      Scott Branden <sbranden@broadcom.com>
3964 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
3965 S:      Maintained
3966 T:      git git://github.com/broadcom/mach-bcm
3967 F:      arch/arm/mach-bcm/
3968 N:      bcm281*
3969 N:      bcm113*
3970 N:      bcm216*
3971 N:      kona
3972
3973 BROADCOM BCM47XX MIPS ARCHITECTURE
3974 M:      Hauke Mehrtens <hauke@hauke-m.de>
3975 M:      Rafał Miłecki <zajec5@gmail.com>
3976 L:      linux-mips@vger.kernel.org
3977 S:      Maintained
3978 F:      Documentation/devicetree/bindings/mips/brcm/
3979 F:      arch/mips/bcm47xx/*
3980 F:      arch/mips/include/asm/mach-bcm47xx/*
3981
3982 BROADCOM BCM4908 ETHERNET DRIVER
3983 M:      Rafał Miłecki <rafal@milecki.pl>
3984 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
3985 L:      netdev@vger.kernel.org
3986 S:      Maintained
3987 F:      Documentation/devicetree/bindings/net/brcm,bcm4908-enet.yaml
3988 F:      drivers/net/ethernet/broadcom/bcm4908_enet.*
3989 F:      drivers/net/ethernet/broadcom/unimac.h
3990
3991 BROADCOM BCM4908 PINMUX DRIVER
3992 M:      Rafał Miłecki <rafal@milecki.pl>
3993 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
3994 L:      linux-gpio@vger.kernel.org
3995 S:      Maintained
3996 F:      Documentation/devicetree/bindings/pinctrl/brcm,bcm4908-pinctrl.yaml
3997 F:      drivers/pinctrl/bcm/pinctrl-bcm4908.c
3998
3999 BROADCOM BCM5301X ARM ARCHITECTURE
4000 M:      Florian Fainelli <f.fainelli@gmail.com>
4001 M:      Hauke Mehrtens <hauke@hauke-m.de>
4002 M:      Rafał Miłecki <zajec5@gmail.com>
4003 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4004 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4005 S:      Maintained
4006 F:      arch/arm/boot/dts/bcm470*
4007 F:      arch/arm/boot/dts/bcm5301*
4008 F:      arch/arm/boot/dts/bcm953012*
4009 F:      arch/arm/mach-bcm/bcm_5301x.c
4010
4011 BROADCOM BCM53573 ARM ARCHITECTURE
4012 M:      Florian Fainelli <f.fainelli@gmail.com>
4013 M:      Rafał Miłecki <rafal@milecki.pl>
4014 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4015 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4016 S:      Maintained
4017 F:      arch/arm/boot/dts/bcm47189*
4018 F:      arch/arm/boot/dts/bcm53573*
4019
4020 BROADCOM BCM63XX/BCM33XX UDC DRIVER
4021 M:      Kevin Cernekee <cernekee@gmail.com>
4022 L:      linux-usb@vger.kernel.org
4023 S:      Maintained
4024 F:      drivers/usb/gadget/udc/bcm63xx_udc.*
4025
4026 BROADCOM BCM7XXX ARM ARCHITECTURE
4027 M:      Florian Fainelli <f.fainelli@gmail.com>
4028 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4029 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4030 S:      Maintained
4031 T:      git git://github.com/broadcom/stblinux.git
4032 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
4033 F:      arch/arm/boot/dts/bcm7*.dts*
4034 F:      arch/arm/include/asm/hardware/cache-b15-rac.h
4035 F:      arch/arm/mach-bcm/*brcmstb*
4036 F:      arch/arm/mm/cache-b15-rac.c
4037 F:      drivers/bus/brcmstb_gisb.c
4038 F:      drivers/pci/controller/pcie-brcmstb.c
4039 N:      brcmstb
4040 N:      bcm7038
4041 N:      bcm7120
4042
4043 BROADCOM BDC DRIVER
4044 M:      Al Cooper <alcooperx@gmail.com>
4045 L:      linux-usb@vger.kernel.org
4046 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4047 S:      Maintained
4048 F:      Documentation/devicetree/bindings/usb/brcm,bdc.yaml
4049 F:      drivers/usb/gadget/udc/bdc/
4050
4051 BROADCOM BMIPS CPUFREQ DRIVER
4052 M:      Markus Mayer <mmayer@broadcom.com>
4053 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4054 L:      linux-pm@vger.kernel.org
4055 S:      Maintained
4056 F:      drivers/cpufreq/bmips-cpufreq.c
4057
4058 BROADCOM BMIPS MIPS ARCHITECTURE
4059 M:      Florian Fainelli <f.fainelli@gmail.com>
4060 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4061 L:      linux-mips@vger.kernel.org
4062 S:      Maintained
4063 T:      git git://github.com/broadcom/stblinux.git
4064 F:      arch/mips/bmips/*
4065 F:      arch/mips/boot/dts/brcm/bcm*.dts*
4066 F:      arch/mips/include/asm/mach-bmips/*
4067 F:      arch/mips/kernel/*bmips*
4068 F:      drivers/soc/bcm/bcm63xx
4069 F:      drivers/irqchip/irq-bcm63*
4070 F:      drivers/irqchip/irq-bcm7*
4071 F:      drivers/irqchip/irq-brcmstb*
4072 F:      include/linux/bcm963xx_nvram.h
4073 F:      include/linux/bcm963xx_tag.h
4074
4075 BROADCOM BNX2 GIGABIT ETHERNET DRIVER
4076 M:      Rasesh Mody <rmody@marvell.com>
4077 M:      GR-Linux-NIC-Dev@marvell.com
4078 L:      netdev@vger.kernel.org
4079 S:      Supported
4080 F:      drivers/net/ethernet/broadcom/bnx2.*
4081 F:      drivers/net/ethernet/broadcom/bnx2_*
4082
4083 BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
4084 M:      Saurav Kashyap <skashyap@marvell.com>
4085 M:      Javed Hasan <jhasan@marvell.com>
4086 M:      GR-QLogic-Storage-Upstream@marvell.com
4087 L:      linux-scsi@vger.kernel.org
4088 S:      Supported
4089 F:      drivers/scsi/bnx2fc/
4090
4091 BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER
4092 M:      Nilesh Javali <njavali@marvell.com>
4093 M:      Manish Rangankar <mrangankar@marvell.com>
4094 M:      GR-QLogic-Storage-Upstream@marvell.com
4095 L:      linux-scsi@vger.kernel.org
4096 S:      Supported
4097 F:      drivers/scsi/bnx2i/
4098
4099 BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
4100 M:      Ariel Elior <aelior@marvell.com>
4101 M:      Sudarsana Kalluru <skalluru@marvell.com>
4102 M:      Manish Chopra <manishc@marvell.com>
4103 L:      netdev@vger.kernel.org
4104 S:      Supported
4105 F:      drivers/net/ethernet/broadcom/bnx2x/
4106
4107 BROADCOM BNXT_EN 50 GIGABIT ETHERNET DRIVER
4108 M:      Michael Chan <michael.chan@broadcom.com>
4109 L:      netdev@vger.kernel.org
4110 S:      Supported
4111 F:      drivers/firmware/broadcom/tee_bnxt_fw.c
4112 F:      drivers/net/ethernet/broadcom/bnxt/
4113 F:      include/linux/firmware/broadcom/tee_bnxt_fw.h
4114
4115 BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
4116 M:      Arend van Spriel <aspriel@gmail.com>
4117 M:      Franky Lin <franky.lin@broadcom.com>
4118 M:      Hante Meuleman <hante.meuleman@broadcom.com>
4119 L:      linux-wireless@vger.kernel.org
4120 L:      brcm80211-dev-list.pdl@broadcom.com
4121 L:      SHA-cyfmac-dev-list@infineon.com
4122 S:      Supported
4123 F:      drivers/net/wireless/broadcom/brcm80211/
4124
4125 BROADCOM BRCMSTB GPIO DRIVER
4126 M:      Doug Berger <opendmb@gmail.com>
4127 M:      Florian Fainelli <f.fainelli@gmail.com>
4128 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4129 S:      Supported
4130 F:      Documentation/devicetree/bindings/gpio/brcm,brcmstb-gpio.yaml
4131 F:      drivers/gpio/gpio-brcmstb.c
4132
4133 BROADCOM BRCMSTB I2C DRIVER
4134 M:      Kamal Dasu <kdasu.kdev@gmail.com>
4135 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4136 L:      linux-i2c@vger.kernel.org
4137 S:      Supported
4138 F:      Documentation/devicetree/bindings/i2c/brcm,brcmstb-i2c.yaml
4139 F:      drivers/i2c/busses/i2c-brcmstb.c
4140
4141 BROADCOM BRCMSTB UART DRIVER
4142 M:      Al Cooper <alcooperx@gmail.com>
4143 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4144 L:      linux-serial@vger.kernel.org
4145 S:      Maintained
4146 F:      Documentation/devicetree/bindings/serial/brcm,bcm7271-uart.yaml
4147 F:      drivers/tty/serial/8250/8250_bcm7271.c
4148
4149 BROADCOM BRCMSTB USB EHCI DRIVER
4150 M:      Al Cooper <alcooperx@gmail.com>
4151 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4152 L:      linux-usb@vger.kernel.org
4153 S:      Maintained
4154 F:      Documentation/devicetree/bindings/usb/brcm,bcm7445-ehci.yaml
4155 F:      drivers/usb/host/ehci-brcm.*
4156
4157 BROADCOM BRCMSTB USB PIN MAP DRIVER
4158 M:      Al Cooper <alcooperx@gmail.com>
4159 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4160 L:      linux-usb@vger.kernel.org
4161 S:      Maintained
4162 F:      Documentation/devicetree/bindings/usb/brcm,usb-pinmap.yaml
4163 F:      drivers/usb/misc/brcmstb-usb-pinmap.c
4164
4165 BROADCOM BRCMSTB USB2 and USB3 PHY DRIVER
4166 M:      Al Cooper <alcooperx@gmail.com>
4167 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4168 L:      linux-kernel@vger.kernel.org
4169 S:      Maintained
4170 F:      drivers/phy/broadcom/phy-brcm-usb*
4171
4172 BROADCOM ETHERNET PHY DRIVERS
4173 M:      Florian Fainelli <f.fainelli@gmail.com>
4174 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4175 L:      netdev@vger.kernel.org
4176 S:      Supported
4177 F:      Documentation/devicetree/bindings/net/broadcom-bcm87xx.txt
4178 F:      drivers/net/phy/bcm*.[ch]
4179 F:      drivers/net/phy/broadcom.c
4180 F:      include/linux/brcmphy.h
4181
4182 BROADCOM GENET ETHERNET DRIVER
4183 M:      Doug Berger <opendmb@gmail.com>
4184 M:      Florian Fainelli <f.fainelli@gmail.com>
4185 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4186 L:      netdev@vger.kernel.org
4187 S:      Supported
4188 F:      Documentation/devicetree/bindings/net/brcm,bcmgenet.yaml
4189 F:      Documentation/devicetree/bindings/net/brcm,unimac-mdio.yaml
4190 F:      drivers/net/ethernet/broadcom/genet/
4191 F:      drivers/net/ethernet/broadcom/unimac.h
4192 F:      drivers/net/mdio/mdio-bcm-unimac.c
4193 F:      include/linux/platform_data/bcmgenet.h
4194 F:      include/linux/platform_data/mdio-bcm-unimac.h
4195
4196 BROADCOM IPROC ARM ARCHITECTURE
4197 M:      Ray Jui <rjui@broadcom.com>
4198 M:      Scott Branden <sbranden@broadcom.com>
4199 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4200 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4201 S:      Maintained
4202 T:      git git://github.com/broadcom/stblinux.git
4203 F:      arch/arm64/boot/dts/broadcom/northstar2/*
4204 F:      arch/arm64/boot/dts/broadcom/stingray/*
4205 F:      drivers/clk/bcm/clk-ns*
4206 F:      drivers/clk/bcm/clk-sr*
4207 F:      drivers/pinctrl/bcm/pinctrl-ns*
4208 F:      include/dt-bindings/clock/bcm-sr*
4209 N:      iproc
4210 N:      cygnus
4211 N:      bcm[-_]nsp
4212 N:      bcm9113*
4213 N:      bcm9583*
4214 N:      bcm9585*
4215 N:      bcm9586*
4216 N:      bcm988312
4217 N:      bcm113*
4218 N:      bcm583*
4219 N:      bcm585*
4220 N:      bcm586*
4221 N:      bcm88312
4222 N:      hr2
4223 N:      stingray
4224
4225 BROADCOM IPROC GBIT ETHERNET DRIVER
4226 M:      Rafał Miłecki <rafal@milecki.pl>
4227 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4228 L:      netdev@vger.kernel.org
4229 S:      Maintained
4230 F:      Documentation/devicetree/bindings/net/brcm,amac.yaml
4231 F:      drivers/net/ethernet/broadcom/bgmac*
4232 F:      drivers/net/ethernet/broadcom/unimac.h
4233
4234 BROADCOM KONA GPIO DRIVER
4235 M:      Ray Jui <rjui@broadcom.com>
4236 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4237 S:      Supported
4238 F:      Documentation/devicetree/bindings/gpio/brcm,kona-gpio.txt
4239 F:      drivers/gpio/gpio-bcm-kona.c
4240
4241 BROADCOM MPI3 STORAGE CONTROLLER DRIVER
4242 M:      Sathya Prakash Veerichetty <sathya.prakash@broadcom.com>
4243 M:      Kashyap Desai <kashyap.desai@broadcom.com>
4244 M:      Sumit Saxena <sumit.saxena@broadcom.com>
4245 M:      Sreekanth Reddy <sreekanth.reddy@broadcom.com>
4246 L:      mpi3mr-linuxdrv.pdl@broadcom.com
4247 L:      linux-scsi@vger.kernel.org
4248 S:      Supported
4249 W:      https://www.broadcom.com/support/storage
4250 F:      drivers/scsi/mpi3mr/
4251
4252 BROADCOM NETXTREME-E ROCE DRIVER
4253 M:      Selvin Xavier <selvin.xavier@broadcom.com>
4254 L:      linux-rdma@vger.kernel.org
4255 S:      Supported
4256 W:      http://www.broadcom.com
4257 F:      drivers/infiniband/hw/bnxt_re/
4258 F:      include/uapi/rdma/bnxt_re-abi.h
4259
4260 BROADCOM NVRAM DRIVER
4261 M:      Rafał Miłecki <zajec5@gmail.com>
4262 L:      linux-mips@vger.kernel.org
4263 S:      Maintained
4264 F:      drivers/firmware/broadcom/*
4265
4266 BROADCOM PMB (POWER MANAGEMENT BUS) DRIVER
4267 M:      Rafał Miłecki <rafal@milecki.pl>
4268 M:      Florian Fainelli <f.fainelli@gmail.com>
4269 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4270 L:      linux-pm@vger.kernel.org
4271 S:      Maintained
4272 T:      git git://github.com/broadcom/stblinux.git
4273 F:      drivers/soc/bcm/bcm63xx/bcm-pmb.c
4274 F:      include/dt-bindings/soc/bcm-pmb.h
4275
4276 BROADCOM SPECIFIC AMBA DRIVER (BCMA)
4277 M:      Rafał Miłecki <zajec5@gmail.com>
4278 L:      linux-wireless@vger.kernel.org
4279 S:      Maintained
4280 F:      drivers/bcma/
4281 F:      include/linux/bcma/
4282
4283 BROADCOM SPI DRIVER
4284 M:      Kamal Dasu <kdasu.kdev@gmail.com>
4285 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4286 S:      Maintained
4287 F:      Documentation/devicetree/bindings/spi/brcm,spi-bcm-qspi.yaml
4288 F:      drivers/spi/spi-bcm-qspi.*
4289 F:      drivers/spi/spi-brcmstb-qspi.c
4290 F:      drivers/spi/spi-iproc-qspi.c
4291
4292 BROADCOM STB AVS CPUFREQ DRIVER
4293 M:      Markus Mayer <mmayer@broadcom.com>
4294 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4295 L:      linux-pm@vger.kernel.org
4296 S:      Maintained
4297 F:      Documentation/devicetree/bindings/cpufreq/brcm,stb-avs-cpu-freq.txt
4298 F:      drivers/cpufreq/brcmstb*
4299
4300 BROADCOM STB AVS TMON DRIVER
4301 M:      Markus Mayer <mmayer@broadcom.com>
4302 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4303 L:      linux-pm@vger.kernel.org
4304 S:      Maintained
4305 F:      Documentation/devicetree/bindings/thermal/brcm,avs-tmon.yaml
4306 F:      drivers/thermal/broadcom/brcmstb*
4307
4308 BROADCOM STB DPFE DRIVER
4309 M:      Markus Mayer <mmayer@broadcom.com>
4310 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4311 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4312 S:      Maintained
4313 F:      Documentation/devicetree/bindings/memory-controllers/brcm,dpfe-cpu.yaml
4314 F:      drivers/memory/brcmstb_dpfe.c
4315
4316 BROADCOM STB NAND FLASH DRIVER
4317 M:      Brian Norris <computersforpeace@gmail.com>
4318 M:      Kamal Dasu <kdasu.kdev@gmail.com>
4319 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4320 L:      linux-mtd@lists.infradead.org
4321 S:      Maintained
4322 F:      drivers/mtd/nand/raw/brcmnand/
4323 F:      include/linux/platform_data/brcmnand.h
4324
4325 BROADCOM STB PCIE DRIVER
4326 M:      Jim Quinlan <jim2101024@gmail.com>
4327 M:      Nicolas Saenz Julienne <nsaenz@kernel.org>
4328 M:      Florian Fainelli <f.fainelli@gmail.com>
4329 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4330 L:      linux-pci@vger.kernel.org
4331 S:      Maintained
4332 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
4333 F:      drivers/pci/controller/pcie-brcmstb.c
4334
4335 BROADCOM SYSTEMPORT ETHERNET DRIVER
4336 M:      Florian Fainelli <f.fainelli@gmail.com>
4337 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4338 L:      netdev@vger.kernel.org
4339 S:      Supported
4340 F:      drivers/net/ethernet/broadcom/bcmsysport.*
4341 F:      drivers/net/ethernet/broadcom/unimac.h
4342 F:      Documentation/devicetree/bindings/net/brcm,systemport.yaml
4343
4344 BROADCOM TG3 GIGABIT ETHERNET DRIVER
4345 M:      Siva Reddy Kallam <siva.kallam@broadcom.com>
4346 M:      Prashant Sreedharan <prashant@broadcom.com>
4347 M:      Michael Chan <mchan@broadcom.com>
4348 L:      netdev@vger.kernel.org
4349 S:      Supported
4350 F:      drivers/net/ethernet/broadcom/tg3.*
4351
4352 BROADCOM VK DRIVER
4353 M:      Scott Branden <scott.branden@broadcom.com>
4354 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4355 S:      Supported
4356 F:      drivers/misc/bcm-vk/
4357 F:      include/uapi/linux/misc/bcm_vk.h
4358
4359 BROCADE BFA FC SCSI DRIVER
4360 M:      Anil Gurumurthy <anil.gurumurthy@qlogic.com>
4361 M:      Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
4362 L:      linux-scsi@vger.kernel.org
4363 S:      Supported
4364 F:      drivers/scsi/bfa/
4365
4366 BROCADE BNA 10 GIGABIT ETHERNET DRIVER
4367 M:      Rasesh Mody <rmody@marvell.com>
4368 M:      Sudarsana Kalluru <skalluru@marvell.com>
4369 M:      GR-Linux-NIC-Dev@marvell.com
4370 L:      netdev@vger.kernel.org
4371 S:      Supported
4372 F:      drivers/net/ethernet/brocade/bna/
4373
4374 BSG (block layer generic sg v4 driver)
4375 M:      FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
4376 L:      linux-scsi@vger.kernel.org
4377 S:      Supported
4378 F:      block/bsg.c
4379 F:      include/linux/bsg.h
4380 F:      include/uapi/linux/bsg.h
4381
4382 BT87X AUDIO DRIVER
4383 M:      Clemens Ladisch <clemens@ladisch.de>
4384 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4385 S:      Maintained
4386 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
4387 F:      Documentation/sound/cards/bt87x.rst
4388 F:      sound/pci/bt87x.c
4389
4390 BT8XXGPIO DRIVER
4391 M:      Michael Buesch <m@bues.ch>
4392 S:      Maintained
4393 W:      http://bu3sch.de/btgpio.php
4394 F:      drivers/gpio/gpio-bt8xx.c
4395
4396 BTRFS FILE SYSTEM
4397 M:      Chris Mason <clm@fb.com>
4398 M:      Josef Bacik <josef@toxicpanda.com>
4399 M:      David Sterba <dsterba@suse.com>
4400 L:      linux-btrfs@vger.kernel.org
4401 S:      Maintained
4402 W:      http://btrfs.wiki.kernel.org/
4403 Q:      http://patchwork.kernel.org/project/linux-btrfs/list/
4404 C:      irc://irc.libera.chat/btrfs
4405 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kdave/linux.git
4406 F:      Documentation/filesystems/btrfs.rst
4407 F:      fs/btrfs/
4408 F:      include/linux/btrfs*
4409 F:      include/uapi/linux/btrfs*
4410
4411 BTTV VIDEO4LINUX DRIVER
4412 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
4413 L:      linux-media@vger.kernel.org
4414 S:      Odd fixes
4415 W:      https://linuxtv.org
4416 T:      git git://linuxtv.org/media_tree.git
4417 F:      Documentation/driver-api/media/drivers/bttv*
4418 F:      drivers/media/pci/bt8xx/bttv*
4419
4420 BUS FREQUENCY DRIVER FOR SAMSUNG EXYNOS
4421 M:      Chanwoo Choi <cw00.choi@samsung.com>
4422 L:      linux-pm@vger.kernel.org
4423 L:      linux-samsung-soc@vger.kernel.org
4424 S:      Maintained
4425 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
4426 F:      Documentation/devicetree/bindings/interconnect/samsung,exynos-bus.yaml
4427 F:      drivers/devfreq/exynos-bus.c
4428
4429 BUSLOGIC SCSI DRIVER
4430 M:      Khalid Aziz <khalid@gonehiking.org>
4431 L:      linux-scsi@vger.kernel.org
4432 S:      Maintained
4433 F:      drivers/scsi/BusLogic.*
4434 F:      drivers/scsi/FlashPoint.*
4435
4436 C-MEDIA CMI8788 DRIVER
4437 M:      Clemens Ladisch <clemens@ladisch.de>
4438 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4439 S:      Maintained
4440 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
4441 F:      sound/pci/oxygen/
4442
4443 C-SKY ARCHITECTURE
4444 M:      Guo Ren <guoren@kernel.org>
4445 L:      linux-csky@vger.kernel.org
4446 S:      Supported
4447 T:      git https://github.com/c-sky/csky-linux.git
4448 F:      Documentation/devicetree/bindings/csky/
4449 F:      Documentation/devicetree/bindings/interrupt-controller/csky,*
4450 F:      Documentation/devicetree/bindings/timer/csky,*
4451 F:      arch/csky/
4452 F:      drivers/clocksource/timer-gx6605s.c
4453 F:      drivers/clocksource/timer-mp-csky.c
4454 F:      drivers/irqchip/irq-csky-*
4455 N:      csky
4456 K:      csky
4457
4458 CA8210 IEEE-802.15.4 RADIO DRIVER
4459 L:      linux-wpan@vger.kernel.org
4460 S:      Orphan
4461 W:      https://github.com/Cascoda/ca8210-linux.git
4462 F:      Documentation/devicetree/bindings/net/ieee802154/ca8210.txt
4463 F:      drivers/net/ieee802154/ca8210.c
4464
4465 CANAAN/KENDRYTE K210 SOC FPIOA DRIVER
4466 M:      Damien Le Moal <damien.lemoal@wdc.com>
4467 L:      linux-riscv@lists.infradead.org
4468 L:      linux-gpio@vger.kernel.org (pinctrl driver)
4469 F:      Documentation/devicetree/bindings/pinctrl/canaan,k210-fpioa.yaml
4470 F:      drivers/pinctrl/pinctrl-k210.c
4471
4472 CANAAN/KENDRYTE K210 SOC RESET CONTROLLER DRIVER
4473 M:      Damien Le Moal <damien.lemoal@wdc.com>
4474 L:      linux-kernel@vger.kernel.org
4475 L:      linux-riscv@lists.infradead.org
4476 S:      Maintained
4477 F:      Documentation/devicetree/bindings/reset/canaan,k210-rst.yaml
4478 F:      drivers/reset/reset-k210.c
4479
4480 CANAAN/KENDRYTE K210 SOC SYSTEM CONTROLLER DRIVER
4481 M:      Damien Le Moal <damien.lemoal@wdc.com>
4482 L:      linux-riscv@lists.infradead.org
4483 S:      Maintained
4484 F:      Documentation/devicetree/bindings/mfd/canaan,k210-sysctl.yaml
4485 F:      drivers/soc/canaan/
4486 F:      include/soc/canaan/
4487
4488 CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
4489 M:      David Howells <dhowells@redhat.com>
4490 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
4491 S:      Supported
4492 F:      Documentation/filesystems/caching/cachefiles.rst
4493 F:      fs/cachefiles/
4494
4495 CADENCE MIPI-CSI2 BRIDGES
4496 M:      Maxime Ripard <mripard@kernel.org>
4497 L:      linux-media@vger.kernel.org
4498 S:      Maintained
4499 F:      Documentation/devicetree/bindings/media/cdns,*.txt
4500 F:      drivers/media/platform/cadence/cdns-csi2*
4501
4502 CADENCE NAND DRIVER
4503 L:      linux-mtd@lists.infradead.org
4504 S:      Orphan
4505 F:      Documentation/devicetree/bindings/mtd/cadence-nand-controller.txt
4506 F:      drivers/mtd/nand/raw/cadence-nand-controller.c
4507
4508 CADENCE USB3 DRD IP DRIVER
4509 M:      Peter Chen <peter.chen@kernel.org>
4510 M:      Pawel Laszczak <pawell@cadence.com>
4511 R:      Roger Quadros <rogerq@kernel.org>
4512 R:      Aswath Govindraju <a-govindraju@ti.com>
4513 L:      linux-usb@vger.kernel.org
4514 S:      Maintained
4515 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4516 F:      Documentation/devicetree/bindings/usb/cdns,usb3.yaml
4517 F:      drivers/usb/cdns3/
4518 X:      drivers/usb/cdns3/cdnsp*
4519
4520 CADENCE USBSSP DRD IP DRIVER
4521 M:      Pawel Laszczak <pawell@cadence.com>
4522 L:      linux-usb@vger.kernel.org
4523 S:      Maintained
4524 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4525 F:      drivers/usb/cdns3/
4526 X:      drivers/usb/cdns3/cdns3*
4527
4528 CADET FM/AM RADIO RECEIVER DRIVER
4529 M:      Hans Verkuil <hverkuil@xs4all.nl>
4530 L:      linux-media@vger.kernel.org
4531 S:      Maintained
4532 W:      https://linuxtv.org
4533 T:      git git://linuxtv.org/media_tree.git
4534 F:      drivers/media/radio/radio-cadet*
4535
4536 CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
4537 L:      linux-media@vger.kernel.org
4538 S:      Orphan
4539 T:      git git://linuxtv.org/media_tree.git
4540 F:      Documentation/admin-guide/media/cafe_ccic*
4541 F:      drivers/media/platform/marvell/
4542
4543 CAIF NETWORK LAYER
4544 L:      netdev@vger.kernel.org
4545 S:      Orphan
4546 F:      Documentation/networking/caif/
4547 F:      drivers/net/caif/
4548 F:      include/net/caif/
4549 F:      include/uapi/linux/caif/
4550 F:      net/caif/
4551
4552 CAKE QDISC
4553 M:      Toke Høiland-Jørgensen <toke@toke.dk>
4554 L:      cake@lists.bufferbloat.net (moderated for non-subscribers)
4555 S:      Maintained
4556 F:      net/sched/sch_cake.c
4557
4558 CAN NETWORK DRIVERS
4559 M:      Wolfgang Grandegger <wg@grandegger.com>
4560 M:      Marc Kleine-Budde <mkl@pengutronix.de>
4561 L:      linux-can@vger.kernel.org
4562 S:      Maintained
4563 W:      https://github.com/linux-can
4564 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
4565 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
4566 F:      Documentation/devicetree/bindings/net/can/
4567 F:      Documentation/devicetree/bindings/phy/ti,tcan104x-can.yaml
4568 F:      drivers/net/can/
4569 F:      drivers/phy/phy-can-transceiver.c
4570 F:      include/linux/can/bittiming.h
4571 F:      include/linux/can/dev.h
4572 F:      include/linux/can/length.h
4573 F:      include/linux/can/platform/
4574 F:      include/linux/can/rx-offload.h
4575 F:      include/uapi/linux/can/error.h
4576 F:      include/uapi/linux/can/netlink.h
4577 F:      include/uapi/linux/can/vxcan.h
4578
4579 CAN NETWORK LAYER
4580 M:      Oliver Hartkopp <socketcan@hartkopp.net>
4581 M:      Marc Kleine-Budde <mkl@pengutronix.de>
4582 L:      linux-can@vger.kernel.org
4583 S:      Maintained
4584 W:      https://github.com/linux-can
4585 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
4586 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
4587 F:      Documentation/networking/can.rst
4588 F:      include/linux/can/can-ml.h
4589 F:      include/linux/can/core.h
4590 F:      include/linux/can/skb.h
4591 F:      include/net/netns/can.h
4592 F:      include/uapi/linux/can.h
4593 F:      include/uapi/linux/can/bcm.h
4594 F:      include/uapi/linux/can/gw.h
4595 F:      include/uapi/linux/can/isotp.h
4596 F:      include/uapi/linux/can/raw.h
4597 F:      net/can/
4598
4599 CAN-J1939 NETWORK LAYER
4600 M:      Robin van der Gracht <robin@protonic.nl>
4601 M:      Oleksij Rempel <o.rempel@pengutronix.de>
4602 R:      kernel@pengutronix.de
4603 L:      linux-can@vger.kernel.org
4604 S:      Maintained
4605 F:      Documentation/networking/j1939.rst
4606 F:      include/uapi/linux/can/j1939.h
4607 F:      net/can/j1939/
4608
4609 CAPABILITIES
4610 M:      Serge Hallyn <serge@hallyn.com>
4611 L:      linux-security-module@vger.kernel.org
4612 S:      Supported
4613 F:      include/linux/capability.h
4614 F:      include/uapi/linux/capability.h
4615 F:      kernel/capability.c
4616 F:      security/commoncap.c
4617
4618 CAPELLA MICROSYSTEMS LIGHT SENSOR DRIVER
4619 M:      Kevin Tsai <ktsai@capellamicro.com>
4620 S:      Maintained
4621 F:      drivers/iio/light/cm*
4622
4623 CARL9170 LINUX COMMUNITY WIRELESS DRIVER
4624 M:      Christian Lamparter <chunkeey@googlemail.com>
4625 L:      linux-wireless@vger.kernel.org
4626 S:      Maintained
4627 W:      https://wireless.wiki.kernel.org/en/users/Drivers/carl9170
4628 F:      drivers/net/wireless/ath/carl9170/
4629
4630 CAVIUM I2C DRIVER
4631 M:      Robert Richter <rric@kernel.org>
4632 S:      Odd Fixes
4633 W:      http://www.marvell.com
4634 F:      drivers/i2c/busses/i2c-octeon*
4635 F:      drivers/i2c/busses/i2c-thunderx*
4636
4637 CAVIUM LIQUIDIO NETWORK DRIVER
4638 M:      Derek Chickles <dchickles@marvell.com>
4639 M:      Satanand Burla <sburla@marvell.com>
4640 M:      Felix Manlunas <fmanlunas@marvell.com>
4641 L:      netdev@vger.kernel.org
4642 S:      Supported
4643 W:      http://www.marvell.com
4644 F:      drivers/net/ethernet/cavium/liquidio/
4645
4646 CAVIUM MMC DRIVER
4647 M:      Robert Richter <rric@kernel.org>
4648 S:      Odd Fixes
4649 W:      http://www.marvell.com
4650 F:      drivers/mmc/host/cavium*
4651
4652 CAVIUM OCTEON-TX CRYPTO DRIVER
4653 M:      George Cherian <gcherian@marvell.com>
4654 L:      linux-crypto@vger.kernel.org
4655 S:      Supported
4656 W:      http://www.marvell.com
4657 F:      drivers/crypto/cavium/cpt/
4658
4659 CAVIUM THUNDERX2 ARM64 SOC
4660 M:      Robert Richter <rric@kernel.org>
4661 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4662 S:      Odd Fixes
4663 F:      Documentation/devicetree/bindings/arm/cavium-thunder2.txt
4664 F:      arch/arm64/boot/dts/cavium/thunder2-99xx*
4665
4666 CBS/ETF/TAPRIO QDISCS
4667 M:      Vinicius Costa Gomes <vinicius.gomes@intel.com>
4668 S:      Maintained
4669 L:      netdev@vger.kernel.org
4670 F:      net/sched/sch_cbs.c
4671 F:      net/sched/sch_etf.c
4672 F:      net/sched/sch_taprio.c
4673
4674 CC2520 IEEE-802.15.4 RADIO DRIVER
4675 M:      Varka Bhadram <varkabhadram@gmail.com>
4676 L:      linux-wpan@vger.kernel.org
4677 S:      Maintained
4678 F:      Documentation/devicetree/bindings/net/ieee802154/cc2520.txt
4679 F:      drivers/net/ieee802154/cc2520.c
4680 F:      include/linux/spi/cc2520.h
4681
4682 CCREE ARM TRUSTZONE CRYPTOCELL REE DRIVER
4683 M:      Gilad Ben-Yossef <gilad@benyossef.com>
4684 L:      linux-crypto@vger.kernel.org
4685 S:      Supported
4686 W:      https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
4687 F:      drivers/crypto/ccree/
4688
4689 CCTRNG ARM TRUSTZONE CRYPTOCELL TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
4690 M:      Hadar Gat <hadar.gat@arm.com>
4691 L:      linux-crypto@vger.kernel.org
4692 S:      Supported
4693 F:      drivers/char/hw_random/cctrng.c
4694 F:      drivers/char/hw_random/cctrng.h
4695 F:      Documentation/devicetree/bindings/rng/arm-cctrng.yaml
4696 W:      https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
4697
4698 CEC FRAMEWORK
4699 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
4700 L:      linux-media@vger.kernel.org
4701 S:      Supported
4702 W:      http://linuxtv.org
4703 T:      git git://linuxtv.org/media_tree.git
4704 F:      Documentation/ABI/testing/debugfs-cec-error-inj
4705 F:      Documentation/devicetree/bindings/media/cec.txt
4706 F:      Documentation/driver-api/media/cec-core.rst
4707 F:      Documentation/userspace-api/media/cec
4708 F:      drivers/media/cec/
4709 F:      drivers/media/rc/keymaps/rc-cec.c
4710 F:      include/media/cec-notifier.h
4711 F:      include/media/cec.h
4712 F:      include/uapi/linux/cec-funcs.h
4713 F:      include/uapi/linux/cec.h
4714
4715 CEC GPIO DRIVER
4716 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
4717 L:      linux-media@vger.kernel.org
4718 S:      Supported
4719 W:      http://linuxtv.org
4720 T:      git git://linuxtv.org/media_tree.git
4721 F:      Documentation/devicetree/bindings/media/cec-gpio.txt
4722 F:      drivers/media/cec/platform/cec-gpio/
4723
4724 CELL BROADBAND ENGINE ARCHITECTURE
4725 M:      Arnd Bergmann <arnd@arndb.de>
4726 L:      linuxppc-dev@lists.ozlabs.org
4727 S:      Supported
4728 W:      http://www.ibm.com/developerworks/power/cell/
4729 F:      arch/powerpc/include/asm/cell*.h
4730 F:      arch/powerpc/include/asm/spu*.h
4731 F:      arch/powerpc/include/uapi/asm/spu*.h
4732 F:      arch/powerpc/platforms/cell/
4733
4734 CELLWISE CW2015 BATTERY DRIVER
4735 M:      Tobias Schrammm <t.schramm@manjaro.org>
4736 S:      Maintained
4737 F:      Documentation/devicetree/bindings/power/supply/cw2015_battery.yaml
4738 F:      drivers/power/supply/cw2015_battery.c
4739
4740 CEPH COMMON CODE (LIBCEPH)
4741 M:      Ilya Dryomov <idryomov@gmail.com>
4742 M:      Xiubo Li <xiubli@redhat.com>
4743 R:      Jeff Layton <jlayton@kernel.org>
4744 L:      ceph-devel@vger.kernel.org
4745 S:      Supported
4746 W:      http://ceph.com/
4747 T:      git git://github.com/ceph/ceph-client.git
4748 F:      include/linux/ceph/
4749 F:      include/linux/crush/
4750 F:      net/ceph/
4751
4752 CEPH DISTRIBUTED FILE SYSTEM CLIENT (CEPH)
4753 M:      Xiubo Li <xiubli@redhat.com>
4754 M:      Ilya Dryomov <idryomov@gmail.com>
4755 R:      Jeff Layton <jlayton@kernel.org>
4756 L:      ceph-devel@vger.kernel.org
4757 S:      Supported
4758 W:      http://ceph.com/
4759 T:      git git://github.com/ceph/ceph-client.git
4760 F:      Documentation/filesystems/ceph.rst
4761 F:      fs/ceph/
4762
4763 CERTIFICATE HANDLING
4764 M:      David Howells <dhowells@redhat.com>
4765 M:      David Woodhouse <dwmw2@infradead.org>
4766 L:      keyrings@vger.kernel.org
4767 S:      Maintained
4768 F:      Documentation/admin-guide/module-signing.rst
4769 F:      certs/
4770 F:      scripts/check-blacklist-hashes.awk
4771 F:      scripts/sign-file.c
4772 F:      tools/certs/
4773
4774 CFAG12864B LCD DRIVER
4775 M:      Miguel Ojeda <ojeda@kernel.org>
4776 S:      Maintained
4777 F:      drivers/auxdisplay/cfag12864b.c
4778 F:      include/linux/cfag12864b.h
4779
4780 CFAG12864BFB LCD FRAMEBUFFER DRIVER
4781 M:      Miguel Ojeda <ojeda@kernel.org>
4782 S:      Maintained
4783 F:      drivers/auxdisplay/cfag12864bfb.c
4784 F:      include/linux/cfag12864b.h
4785
4786 CHAR and MISC DRIVERS
4787 M:      Arnd Bergmann <arnd@arndb.de>
4788 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4789 S:      Supported
4790 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
4791 F:      drivers/char/
4792 F:      drivers/misc/
4793 F:      include/linux/miscdevice.h
4794 X:      drivers/char/agp/
4795 X:      drivers/char/hw_random/
4796 X:      drivers/char/ipmi/
4797 X:      drivers/char/random.c
4798 X:      drivers/char/tpm/
4799
4800 CHECKPATCH
4801 M:      Andy Whitcroft <apw@canonical.com>
4802 M:      Joe Perches <joe@perches.com>
4803 R:      Dwaipayan Ray <dwaipayanray1@gmail.com>
4804 R:      Lukas Bulwahn <lukas.bulwahn@gmail.com>
4805 S:      Maintained
4806 F:      scripts/checkpatch.pl
4807
4808 CHECKPATCH DOCUMENTATION
4809 M:      Dwaipayan Ray <dwaipayanray1@gmail.com>
4810 M:      Lukas Bulwahn <lukas.bulwahn@gmail.com>
4811 R:      Joe Perches <joe@perches.com>
4812 S:      Maintained
4813 F:      Documentation/dev-tools/checkpatch.rst
4814
4815 CHINESE DOCUMENTATION
4816 M:      Alex Shi <alexs@kernel.org>
4817 M:      Yanteng Si <siyanteng@loongson.cn>
4818 S:      Maintained
4819 F:      Documentation/translations/zh_CN/
4820
4821 CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
4822 M:      Peter Chen <peter.chen@kernel.org>
4823 L:      linux-usb@vger.kernel.org
4824 S:      Maintained
4825 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4826 F:      drivers/usb/chipidea/
4827
4828 CHIPONE ICN8318 I2C TOUCHSCREEN DRIVER
4829 M:      Hans de Goede <hdegoede@redhat.com>
4830 L:      linux-input@vger.kernel.org
4831 S:      Maintained
4832 F:      Documentation/devicetree/bindings/input/touchscreen/chipone,icn8318.yaml
4833 F:      drivers/input/touchscreen/chipone_icn8318.c
4834
4835 CHIPONE ICN8505 I2C TOUCHSCREEN DRIVER
4836 M:      Hans de Goede <hdegoede@redhat.com>
4837 L:      linux-input@vger.kernel.org
4838 S:      Maintained
4839 F:      drivers/input/touchscreen/chipone_icn8505.c
4840
4841 CHROME HARDWARE PLATFORM SUPPORT
4842 M:      Benson Leung <bleung@chromium.org>
4843 L:      chrome-platform@lists.linux.dev
4844 S:      Maintained
4845 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chrome-platform/linux.git
4846 F:      drivers/platform/chrome/
4847
4848 CHROMEOS EC CODEC DRIVER
4849 M:      Cheng-Yi Chiang <cychiang@chromium.org>
4850 M:      Tzung-Bi Shih <tzungbi@google.com>
4851 R:      Guenter Roeck <groeck@chromium.org>
4852 L:      chrome-platform@lists.linux.dev
4853 S:      Maintained
4854 F:      Documentation/devicetree/bindings/sound/google,cros-ec-codec.yaml
4855 F:      sound/soc/codecs/cros_ec_codec.*
4856
4857 CHROMEOS EC SUBDRIVERS
4858 M:      Benson Leung <bleung@chromium.org>
4859 R:      Guenter Roeck <groeck@chromium.org>
4860 L:      chrome-platform@lists.linux.dev
4861 S:      Maintained
4862 F:      drivers/power/supply/cros_usbpd-charger.c
4863 N:      cros_ec
4864 N:      cros-ec
4865
4866 CHROMEOS EC USB TYPE-C DRIVER
4867 M:      Prashant Malani <pmalani@chromium.org>
4868 L:      chrome-platform@lists.linux.dev
4869 S:      Maintained
4870 F:      drivers/platform/chrome/cros_ec_typec.c
4871
4872 CHROMEOS EC USB PD NOTIFY DRIVER
4873 M:      Prashant Malani <pmalani@chromium.org>
4874 L:      chrome-platform@lists.linux.dev
4875 S:      Maintained
4876 F:      drivers/platform/chrome/cros_usbpd_notify.c
4877 F:      include/linux/platform_data/cros_usbpd_notify.h
4878
4879 CHRONTEL CH7322 CEC DRIVER
4880 M:      Joe Tessler <jrt@google.com>
4881 L:      linux-media@vger.kernel.org
4882 S:      Maintained
4883 T:      git git://linuxtv.org/media_tree.git
4884 F:      Documentation/devicetree/bindings/media/i2c/chrontel,ch7322.yaml
4885 F:      drivers/media/cec/i2c/ch7322.c
4886
4887 CIRRUS LOGIC AUDIO CODEC DRIVERS
4888 M:      James Schulman <james.schulman@cirrus.com>
4889 M:      David Rhodes <david.rhodes@cirrus.com>
4890 M:      Lucas Tanure <tanureal@opensource.cirrus.com>
4891 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4892 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4893 L:      patches@opensource.cirrus.com
4894 S:      Maintained
4895 F:      Documentation/devicetree/bindings/sound/cirrus,cs*
4896 F:      include/dt-bindings/sound/cs*
4897 F:      sound/pci/hda/cs*
4898 F:      sound/soc/codecs/cs*
4899
4900 CIRRUS LOGIC DSP FIRMWARE DRIVER
4901 M:      Simon Trimmer <simont@opensource.cirrus.com>
4902 M:      Charles Keepax <ckeepax@opensource.cirrus.com>
4903 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4904 L:      patches@opensource.cirrus.com
4905 S:      Supported
4906 W:      https://github.com/CirrusLogic/linux-drivers/wiki
4907 T:      git https://github.com/CirrusLogic/linux-drivers.git
4908 F:      drivers/firmware/cirrus/*
4909 F:      include/linux/firmware/cirrus/*
4910
4911 CIRRUS LOGIC EP93XX ETHERNET DRIVER
4912 M:      Hartley Sweeten <hsweeten@visionengravers.com>
4913 L:      netdev@vger.kernel.org
4914 S:      Maintained
4915 F:      drivers/net/ethernet/cirrus/ep93xx_eth.c
4916
4917 CIRRUS LOGIC LOCHNAGAR DRIVER
4918 M:      Charles Keepax <ckeepax@opensource.cirrus.com>
4919 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4920 L:      patches@opensource.cirrus.com
4921 S:      Supported
4922 F:      Documentation/devicetree/bindings/clock/cirrus,lochnagar.yaml
4923 F:      Documentation/devicetree/bindings/hwmon/cirrus,lochnagar.yaml
4924 F:      Documentation/devicetree/bindings/mfd/cirrus,lochnagar.yaml
4925 F:      Documentation/devicetree/bindings/pinctrl/cirrus,lochnagar.yaml
4926 F:      Documentation/devicetree/bindings/sound/cirrus,lochnagar.yaml
4927 F:      Documentation/hwmon/lochnagar.rst
4928 F:      drivers/clk/clk-lochnagar.c
4929 F:      drivers/hwmon/lochnagar-hwmon.c
4930 F:      drivers/mfd/lochnagar-i2c.c
4931 F:      drivers/pinctrl/cirrus/pinctrl-lochnagar.c
4932 F:      drivers/regulator/lochnagar-regulator.c
4933 F:      include/dt-bindings/clk/lochnagar.h
4934 F:      include/dt-bindings/pinctrl/lochnagar.h
4935 F:      include/linux/mfd/lochnagar*
4936 F:      sound/soc/codecs/lochnagar-sc.c
4937
4938 CIRRUS LOGIC MADERA CODEC DRIVERS
4939 M:      Charles Keepax <ckeepax@opensource.cirrus.com>
4940 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4941 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4942 L:      patches@opensource.cirrus.com
4943 S:      Supported
4944 W:      https://github.com/CirrusLogic/linux-drivers/wiki
4945 T:      git https://github.com/CirrusLogic/linux-drivers.git
4946 F:      Documentation/devicetree/bindings/mfd/cirrus,madera.yaml
4947 F:      Documentation/devicetree/bindings/pinctrl/cirrus,madera.yaml
4948 F:      Documentation/devicetree/bindings/sound/cirrus,madera.yaml
4949 F:      drivers/gpio/gpio-madera*
4950 F:      drivers/irqchip/irq-madera*
4951 F:      drivers/mfd/cs47l*
4952 F:      drivers/mfd/madera*
4953 F:      drivers/pinctrl/cirrus/*
4954 F:      include/dt-bindings/sound/madera*
4955 F:      include/linux/irqchip/irq-madera*
4956 F:      include/linux/mfd/madera/*
4957 F:      include/sound/madera*
4958 F:      sound/soc/codecs/cs47l*
4959 F:      sound/soc/codecs/madera*
4960
4961 CISCO FCOE HBA DRIVER
4962 M:      Satish Kharat <satishkh@cisco.com>
4963 M:      Sesidhar Baddela <sebaddel@cisco.com>
4964 M:      Karan Tilak Kumar <kartilak@cisco.com>
4965 L:      linux-scsi@vger.kernel.org
4966 S:      Supported
4967 F:      drivers/scsi/fnic/
4968
4969 CISCO SCSI HBA DRIVER
4970 M:      Karan Tilak Kumar <kartilak@cisco.com>
4971 M:      Sesidhar Baddela <sebaddel@cisco.com>
4972 L:      linux-scsi@vger.kernel.org
4973 S:      Supported
4974 F:      drivers/scsi/snic/
4975
4976 CISCO VIC ETHERNET NIC DRIVER
4977 M:      Christian Benvenuti <benve@cisco.com>
4978 M:      Govindarajulu Varadarajan <_govind@gmx.com>
4979 S:      Supported
4980 F:      drivers/net/ethernet/cisco/enic/
4981
4982 CISCO VIC LOW LATENCY NIC DRIVER
4983 M:      Christian Benvenuti <benve@cisco.com>
4984 M:      Nelson Escobar <neescoba@cisco.com>
4985 S:      Supported
4986 F:      drivers/infiniband/hw/usnic/
4987
4988 CLANG-FORMAT FILE
4989 M:      Miguel Ojeda <ojeda@kernel.org>
4990 S:      Maintained
4991 F:      .clang-format
4992
4993 CLANG/LLVM BUILD SUPPORT
4994 M:      Nathan Chancellor <nathan@kernel.org>
4995 M:      Nick Desaulniers <ndesaulniers@google.com>
4996 R:      Tom Rix <trix@redhat.com>
4997 L:      llvm@lists.linux.dev
4998 S:      Supported
4999 W:      https://clangbuiltlinux.github.io/
5000 B:      https://github.com/ClangBuiltLinux/linux/issues
5001 C:      irc://irc.libera.chat/clangbuiltlinux
5002 F:      Documentation/kbuild/llvm.rst
5003 F:      include/linux/compiler-clang.h
5004 F:      scripts/Makefile.clang
5005 F:      scripts/clang-tools/
5006 K:      \b(?i:clang|llvm)\b
5007
5008 CLANG CONTROL FLOW INTEGRITY SUPPORT
5009 M:      Sami Tolvanen <samitolvanen@google.com>
5010 M:      Kees Cook <keescook@chromium.org>
5011 R:      Nathan Chancellor <nathan@kernel.org>
5012 R:      Nick Desaulniers <ndesaulniers@google.com>
5013 L:      llvm@lists.linux.dev
5014 S:      Supported
5015 B:      https://github.com/ClangBuiltLinux/linux/issues
5016 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/hardening
5017 F:      include/linux/cfi.h
5018 F:      kernel/cfi.c
5019
5020 CLK API
5021 M:      Russell King <linux@armlinux.org.uk>
5022 L:      linux-clk@vger.kernel.org
5023 S:      Maintained
5024 F:      include/linux/clk.h
5025
5026 CLOCKSOURCE, CLOCKEVENT DRIVERS
5027 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
5028 M:      Thomas Gleixner <tglx@linutronix.de>
5029 L:      linux-kernel@vger.kernel.org
5030 S:      Supported
5031 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
5032 F:      Documentation/devicetree/bindings/timer/
5033 F:      drivers/clocksource/
5034
5035 CMPC ACPI DRIVER
5036 M:      Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
5037 M:      Daniel Oliveira Nascimento <don@syst.com.br>
5038 L:      platform-driver-x86@vger.kernel.org
5039 S:      Supported
5040 F:      drivers/platform/x86/classmate-laptop.c
5041
5042 COBALT MEDIA DRIVER
5043 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
5044 L:      linux-media@vger.kernel.org
5045 S:      Supported
5046 W:      https://linuxtv.org
5047 T:      git git://linuxtv.org/media_tree.git
5048 F:      drivers/media/pci/cobalt/
5049
5050 COCCINELLE/Semantic Patches (SmPL)
5051 M:      Julia Lawall <Julia.Lawall@inria.fr>
5052 M:      Nicolas Palix <nicolas.palix@imag.fr>
5053 L:      cocci@inria.fr (moderated for non-subscribers)
5054 S:      Supported
5055 W:      https://coccinelle.gitlabpages.inria.fr/website/
5056 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jlawall/linux.git
5057 F:      Documentation/dev-tools/coccinelle.rst
5058 F:      scripts/coccicheck
5059 F:      scripts/coccinelle/
5060
5061 CODA FILE SYSTEM
5062 M:      Jan Harkes <jaharkes@cs.cmu.edu>
5063 M:      coda@cs.cmu.edu
5064 L:      codalist@coda.cs.cmu.edu
5065 S:      Maintained
5066 W:      http://www.coda.cs.cmu.edu/
5067 F:      Documentation/filesystems/coda.rst
5068 F:      fs/coda/
5069 F:      include/linux/coda*.h
5070 F:      include/uapi/linux/coda*.h
5071
5072 CODA V4L2 MEM2MEM DRIVER
5073 M:      Philipp Zabel <p.zabel@pengutronix.de>
5074 L:      linux-media@vger.kernel.org
5075 S:      Maintained
5076 F:      Documentation/devicetree/bindings/media/coda.yaml
5077 F:      drivers/media/platform/chips-media/
5078
5079 CODE OF CONDUCT
5080 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
5081 S:      Supported
5082 F:      Documentation/process/code-of-conduct-interpretation.rst
5083 F:      Documentation/process/code-of-conduct.rst
5084
5085 COMEDI DRIVERS
5086 M:      Ian Abbott <abbotti@mev.co.uk>
5087 M:      H Hartley Sweeten <hsweeten@visionengravers.com>
5088 S:      Odd Fixes
5089 F:      drivers/comedi/
5090 F:      include/linux/comedi/
5091 F:      include/uapi/linux/comedi.h
5092
5093 COMMON CLK FRAMEWORK
5094 M:      Michael Turquette <mturquette@baylibre.com>
5095 M:      Stephen Boyd <sboyd@kernel.org>
5096 L:      linux-clk@vger.kernel.org
5097 S:      Maintained
5098 Q:      http://patchwork.kernel.org/project/linux-clk/list/
5099 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git
5100 F:      Documentation/devicetree/bindings/clock/
5101 F:      drivers/clk/
5102 F:      include/dt-bindings/clock/
5103 F:      include/linux/clk-pr*
5104 F:      include/linux/clk/
5105 F:      include/linux/of_clk.h
5106 X:      drivers/clk/clkdev.c
5107
5108 COMMON INTERNET FILE SYSTEM CLIENT (CIFS)
5109 M:      Steve French <sfrench@samba.org>
5110 L:      linux-cifs@vger.kernel.org
5111 L:      samba-technical@lists.samba.org (moderated for non-subscribers)
5112 S:      Supported
5113 W:      http://linux-cifs.samba.org/
5114 T:      git git://git.samba.org/sfrench/cifs-2.6.git
5115 F:      Documentation/admin-guide/cifs/
5116 F:      fs/cifs/
5117 F:      fs/smbfs_common/
5118
5119 COMPACTPCI HOTPLUG CORE
5120 M:      Scott Murray <scott@spiteful.org>
5121 L:      linux-pci@vger.kernel.org
5122 S:      Maintained
5123 F:      drivers/pci/hotplug/cpci_hotplug*
5124
5125 COMPACTPCI HOTPLUG GENERIC DRIVER
5126 M:      Scott Murray <scott@spiteful.org>
5127 L:      linux-pci@vger.kernel.org
5128 S:      Maintained
5129 F:      drivers/pci/hotplug/cpcihp_generic.c
5130
5131 COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
5132 M:      Scott Murray <scott@spiteful.org>
5133 L:      linux-pci@vger.kernel.org
5134 S:      Maintained
5135 F:      drivers/pci/hotplug/cpcihp_zt5550.*
5136
5137 COMPAL LAPTOP SUPPORT
5138 M:      Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
5139 L:      platform-driver-x86@vger.kernel.org
5140 S:      Maintained
5141 F:      drivers/platform/x86/compal-laptop.c
5142
5143 COMPILER ATTRIBUTES
5144 M:      Miguel Ojeda <ojeda@kernel.org>
5145 R:      Nick Desaulniers <ndesaulniers@google.com>
5146 S:      Maintained
5147 F:      include/linux/compiler_attributes.h
5148
5149 COMPUTE EXPRESS LINK (CXL)
5150 M:      Alison Schofield <alison.schofield@intel.com>
5151 M:      Vishal Verma <vishal.l.verma@intel.com>
5152 M:      Ira Weiny <ira.weiny@intel.com>
5153 M:      Ben Widawsky <bwidawsk@kernel.org>
5154 M:      Dan Williams <dan.j.williams@intel.com>
5155 L:      linux-cxl@vger.kernel.org
5156 S:      Maintained
5157 F:      drivers/cxl/
5158 F:      include/uapi/linux/cxl_mem.h
5159
5160 CONEXANT ACCESSRUNNER USB DRIVER
5161 L:      accessrunner-general@lists.sourceforge.net
5162 S:      Orphan
5163 W:      http://accessrunner.sourceforge.net/
5164 F:      drivers/usb/atm/cxacru.c
5165
5166 CONFIGFS
5167 M:      Joel Becker <jlbec@evilplan.org>
5168 M:      Christoph Hellwig <hch@lst.de>
5169 S:      Supported
5170 T:      git git://git.infradead.org/users/hch/configfs.git
5171 F:      fs/configfs/
5172 F:      include/linux/configfs.h
5173 F:      samples/configfs/
5174
5175 CONSOLE SUBSYSTEM
5176 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
5177 S:      Supported
5178 F:      drivers/video/console/
5179 F:      include/linux/console*
5180
5181 CONTEXT TRACKING
5182 M:      Frederic Weisbecker <frederic@kernel.org>
5183 M:      "Paul E. McKenney" <paulmck@kernel.org>
5184 S:      Maintained
5185 F:      kernel/context_tracking.c
5186 F:      include/linux/context_tracking*
5187
5188 CONTROL GROUP (CGROUP)
5189 M:      Tejun Heo <tj@kernel.org>
5190 M:      Zefan Li <lizefan.x@bytedance.com>
5191 M:      Johannes Weiner <hannes@cmpxchg.org>
5192 L:      cgroups@vger.kernel.org
5193 S:      Maintained
5194 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
5195 F:      Documentation/admin-guide/cgroup-v1/
5196 F:      Documentation/admin-guide/cgroup-v2.rst
5197 F:      include/linux/cgroup*
5198 F:      kernel/cgroup/
5199 F:      tools/testing/selftests/cgroup/
5200
5201 CONTROL GROUP - BLOCK IO CONTROLLER (BLKIO)
5202 M:      Tejun Heo <tj@kernel.org>
5203 M:      Jens Axboe <axboe@kernel.dk>
5204 L:      cgroups@vger.kernel.org
5205 L:      linux-block@vger.kernel.org
5206 T:      git git://git.kernel.dk/linux-block
5207 F:      Documentation/admin-guide/cgroup-v1/blkio-controller.rst
5208 F:      block/bfq-cgroup.c
5209 F:      block/blk-cgroup.c
5210 F:      block/blk-iolatency.c
5211 F:      block/blk-throttle.c
5212 F:      include/linux/blk-cgroup.h
5213
5214 CONTROL GROUP - CPUSET
5215 M:      Zefan Li <lizefan.x@bytedance.com>
5216 L:      cgroups@vger.kernel.org
5217 S:      Maintained
5218 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
5219 F:      Documentation/admin-guide/cgroup-v1/cpusets.rst
5220 F:      include/linux/cpuset.h
5221 F:      kernel/cgroup/cpuset.c
5222
5223 CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG)
5224 M:      Johannes Weiner <hannes@cmpxchg.org>
5225 M:      Michal Hocko <mhocko@kernel.org>
5226 M:      Roman Gushchin <roman.gushchin@linux.dev>
5227 M:      Shakeel Butt <shakeelb@google.com>
5228 R:      Muchun Song <songmuchun@bytedance.com>
5229 L:      cgroups@vger.kernel.org
5230 L:      linux-mm@kvack.org
5231 S:      Maintained
5232 F:      mm/memcontrol.c
5233 F:      mm/swap_cgroup.c
5234 F:      tools/testing/selftests/cgroup/memcg_protection.m
5235 F:      tools/testing/selftests/cgroup/test_kmem.c
5236 F:      tools/testing/selftests/cgroup/test_memcontrol.c
5237
5238 CORETEMP HARDWARE MONITORING DRIVER
5239 M:      Fenghua Yu <fenghua.yu@intel.com>
5240 L:      linux-hwmon@vger.kernel.org
5241 S:      Maintained
5242 F:      Documentation/hwmon/coretemp.rst
5243 F:      drivers/hwmon/coretemp.c
5244
5245 CORSAIR-CPRO HARDWARE MONITOR DRIVER
5246 M:      Marius Zachmann <mail@mariuszachmann.de>
5247 L:      linux-hwmon@vger.kernel.org
5248 S:      Maintained
5249 F:      drivers/hwmon/corsair-cpro.c
5250
5251 CORSAIR-PSU HARDWARE MONITOR DRIVER
5252 M:      Wilken Gottwalt <wilken.gottwalt@posteo.net>
5253 L:      linux-hwmon@vger.kernel.org
5254 S:      Maintained
5255 F:      Documentation/hwmon/corsair-psu.rst
5256 F:      drivers/hwmon/corsair-psu.c
5257
5258 COUNTER SUBSYSTEM
5259 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
5260 L:      linux-iio@vger.kernel.org
5261 S:      Maintained
5262 T:      git git@gitlab.com:vilhelmgray/counter.git
5263 F:      Documentation/ABI/testing/sysfs-bus-counter
5264 F:      Documentation/driver-api/generic-counter.rst
5265 F:      drivers/counter/
5266 F:      include/linux/counter.h
5267 F:      include/uapi/linux/counter.h
5268 F:      tools/counter/
5269
5270 CP2615 I2C DRIVER
5271 M:      Bence Csókás <bence98@sch.bme.hu>
5272 S:      Maintained
5273 F:      drivers/i2c/busses/i2c-cp2615.c
5274
5275 CPMAC ETHERNET DRIVER
5276 M:      Florian Fainelli <f.fainelli@gmail.com>
5277 L:      netdev@vger.kernel.org
5278 S:      Maintained
5279 F:      drivers/net/ethernet/ti/cpmac.c
5280
5281 CPU FREQUENCY DRIVERS - VEXPRESS SPC ARM BIG LITTLE
5282 M:      Viresh Kumar <viresh.kumar@linaro.org>
5283 M:      Sudeep Holla <sudeep.holla@arm.com>
5284 L:      linux-pm@vger.kernel.org
5285 S:      Maintained
5286 W:      http://www.arm.com/products/processors/technologies/biglittleprocessing.php
5287 F:      drivers/cpufreq/vexpress-spc-cpufreq.c
5288
5289 CPU FREQUENCY SCALING FRAMEWORK
5290 M:      "Rafael J. Wysocki" <rafael@kernel.org>
5291 M:      Viresh Kumar <viresh.kumar@linaro.org>
5292 L:      linux-pm@vger.kernel.org
5293 S:      Maintained
5294 B:      https://bugzilla.kernel.org
5295 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
5296 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git (For ARM Updates)
5297 F:      Documentation/admin-guide/pm/cpufreq.rst
5298 F:      Documentation/admin-guide/pm/intel_pstate.rst
5299 F:      Documentation/cpu-freq/
5300 F:      Documentation/devicetree/bindings/cpufreq/
5301 F:      drivers/cpufreq/
5302 F:      include/linux/cpufreq.h
5303 F:      include/linux/sched/cpufreq.h
5304 F:      kernel/sched/cpufreq*.c
5305 F:      tools/testing/selftests/cpufreq/
5306
5307 CPU IDLE TIME MANAGEMENT FRAMEWORK
5308 M:      "Rafael J. Wysocki" <rafael@kernel.org>
5309 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
5310 L:      linux-pm@vger.kernel.org
5311 S:      Maintained
5312 B:      https://bugzilla.kernel.org
5313 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
5314 F:      Documentation/admin-guide/pm/cpuidle.rst
5315 F:      Documentation/driver-api/pm/cpuidle.rst
5316 F:      drivers/cpuidle/
5317 F:      include/linux/cpuidle.h
5318
5319 CPU POWER MONITORING SUBSYSTEM
5320 M:      Thomas Renninger <trenn@suse.com>
5321 M:      Shuah Khan <shuah@kernel.org>
5322 M:      Shuah Khan <skhan@linuxfoundation.org>
5323 L:      linux-pm@vger.kernel.org
5324 S:      Maintained
5325 F:      tools/power/cpupower/
5326
5327 CPUID/MSR DRIVER
5328 M:      "H. Peter Anvin" <hpa@zytor.com>
5329 S:      Maintained
5330 F:      arch/x86/kernel/cpuid.c
5331 F:      arch/x86/kernel/msr.c
5332
5333 CPUIDLE DRIVER - ARM BIG LITTLE
5334 M:      Lorenzo Pieralisi <lpieralisi@kernel.org>
5335 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
5336 L:      linux-pm@vger.kernel.org
5337 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5338 S:      Maintained
5339 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
5340 F:      drivers/cpuidle/cpuidle-big_little.c
5341
5342 CPUIDLE DRIVER - ARM EXYNOS
5343 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
5344 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
5345 M:      Kukjin Kim <kgene@kernel.org>
5346 L:      linux-pm@vger.kernel.org
5347 L:      linux-samsung-soc@vger.kernel.org
5348 S:      Supported
5349 F:      arch/arm/mach-exynos/pm.c
5350 F:      drivers/cpuidle/cpuidle-exynos.c
5351 F:      include/linux/platform_data/cpuidle-exynos.h
5352
5353 CPUIDLE DRIVER - ARM PSCI
5354 M:      Lorenzo Pieralisi <lpieralisi@kernel.org>
5355 M:      Sudeep Holla <sudeep.holla@arm.com>
5356 L:      linux-pm@vger.kernel.org
5357 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5358 S:      Supported
5359 F:      drivers/cpuidle/cpuidle-psci.c
5360
5361 CPUIDLE DRIVER - ARM PSCI PM DOMAIN
5362 M:      Ulf Hansson <ulf.hansson@linaro.org>
5363 L:      linux-pm@vger.kernel.org
5364 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5365 S:      Supported
5366 F:      drivers/cpuidle/cpuidle-psci.h
5367 F:      drivers/cpuidle/cpuidle-psci-domain.c
5368
5369 CPUIDLE DRIVER - DT IDLE PM DOMAIN
5370 M:      Ulf Hansson <ulf.hansson@linaro.org>
5371 L:      linux-pm@vger.kernel.org
5372 S:      Supported
5373 F:      drivers/cpuidle/dt_idle_genpd.c
5374 F:      drivers/cpuidle/dt_idle_genpd.h
5375
5376 CPUIDLE DRIVER - RISC-V SBI
5377 M:      Anup Patel <anup@brainfault.org>
5378 L:      linux-pm@vger.kernel.org
5379 L:      linux-riscv@lists.infradead.org
5380 S:      Maintained
5381 F:      drivers/cpuidle/cpuidle-riscv-sbi.c
5382
5383 CRAMFS FILESYSTEM
5384 M:      Nicolas Pitre <nico@fluxnic.net>
5385 S:      Maintained
5386 F:      Documentation/filesystems/cramfs.rst
5387 F:      fs/cramfs/
5388
5389 CREATIVE SB0540
5390 M:      Bastien Nocera <hadess@hadess.net>
5391 L:      linux-input@vger.kernel.org
5392 S:      Maintained
5393 F:      drivers/hid/hid-creative-sb0540.c
5394
5395 CRYPTO API
5396 M:      Herbert Xu <herbert@gondor.apana.org.au>
5397 M:      "David S. Miller" <davem@davemloft.net>
5398 L:      linux-crypto@vger.kernel.org
5399 S:      Maintained
5400 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
5401 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
5402 F:      Documentation/crypto/
5403 F:      Documentation/devicetree/bindings/crypto/
5404 F:      arch/*/crypto/
5405 F:      crypto/
5406 F:      drivers/crypto/
5407 F:      include/crypto/
5408 F:      include/linux/crypto*
5409 F:      lib/crypto/
5410
5411 CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
5412 M:      Neil Horman <nhorman@tuxdriver.com>
5413 L:      linux-crypto@vger.kernel.org
5414 S:      Maintained
5415 F:      crypto/ansi_cprng.c
5416 F:      crypto/rng.c
5417
5418 CS3308 MEDIA DRIVER
5419 M:      Hans Verkuil <hverkuil@xs4all.nl>
5420 L:      linux-media@vger.kernel.org
5421 S:      Odd Fixes
5422 W:      http://linuxtv.org
5423 T:      git git://linuxtv.org/media_tree.git
5424 F:      drivers/media/i2c/cs3308.c
5425
5426 CS5535 Audio ALSA driver
5427 M:      Jaya Kumar <jayakumar.alsa@gmail.com>
5428 S:      Maintained
5429 F:      sound/pci/cs5535audio/
5430
5431 CSI DRIVERS FOR ALLWINNER V3s
5432 M:      Yong Deng <yong.deng@magewell.com>
5433 L:      linux-media@vger.kernel.org
5434 S:      Maintained
5435 T:      git git://linuxtv.org/media_tree.git
5436 F:      Documentation/devicetree/bindings/media/allwinner,sun6i-a31-csi.yaml
5437 F:      drivers/media/platform/sunxi/sun6i-csi/
5438
5439 CTU CAN FD DRIVER
5440 M:      Pavel Pisa <pisa@cmp.felk.cvut.cz>
5441 M:      Ondrej Ille <ondrej.ille@gmail.com>
5442 L:      linux-can@vger.kernel.org
5443 S:      Maintained
5444 F:      Documentation/devicetree/bindings/net/can/ctu,ctucanfd.yaml
5445 F:      drivers/net/can/ctucanfd/
5446
5447 CW1200 WLAN driver
5448 M:      Solomon Peachy <pizza@shaftnet.org>
5449 S:      Maintained
5450 F:      drivers/net/wireless/st/cw1200/
5451
5452 CX18 VIDEO4LINUX DRIVER
5453 M:      Andy Walls <awalls@md.metrocast.net>
5454 L:      linux-media@vger.kernel.org
5455 S:      Maintained
5456 W:      https://linuxtv.org
5457 T:      git git://linuxtv.org/media_tree.git
5458 F:      drivers/media/pci/cx18/
5459 F:      include/uapi/linux/ivtv*
5460
5461 CX2341X MPEG ENCODER HELPER MODULE
5462 M:      Hans Verkuil <hverkuil@xs4all.nl>
5463 L:      linux-media@vger.kernel.org
5464 S:      Maintained
5465 W:      https://linuxtv.org
5466 T:      git git://linuxtv.org/media_tree.git
5467 F:      drivers/media/common/cx2341x*
5468 F:      include/media/drv-intf/cx2341x.h
5469
5470 CX24120 MEDIA DRIVER
5471 M:      Jemma Denson <jdenson@gmail.com>
5472 M:      Patrick Boettcher <patrick.boettcher@posteo.de>
5473 L:      linux-media@vger.kernel.org
5474 S:      Maintained
5475 W:      https://linuxtv.org
5476 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5477 F:      drivers/media/dvb-frontends/cx24120*
5478
5479 CX88 VIDEO4LINUX DRIVER
5480 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
5481 L:      linux-media@vger.kernel.org
5482 S:      Odd fixes
5483 W:      https://linuxtv.org
5484 T:      git git://linuxtv.org/media_tree.git
5485 F:      Documentation/driver-api/media/drivers/cx88*
5486 F:      drivers/media/pci/cx88/
5487
5488 CXD2820R MEDIA DRIVER
5489 M:      Antti Palosaari <crope@iki.fi>
5490 L:      linux-media@vger.kernel.org
5491 S:      Maintained
5492 W:      https://linuxtv.org
5493 W:      http://palosaari.fi/linux/
5494 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5495 T:      git git://linuxtv.org/anttip/media_tree.git
5496 F:      drivers/media/dvb-frontends/cxd2820r*
5497
5498 CXGB3 ETHERNET DRIVER (CXGB3)
5499 M:      Raju Rangoju <rajur@chelsio.com>
5500 L:      netdev@vger.kernel.org
5501 S:      Supported
5502 W:      http://www.chelsio.com
5503 F:      drivers/net/ethernet/chelsio/cxgb3/
5504
5505 CXGB3 ISCSI DRIVER (CXGB3I)
5506 M:      Karen Xie <kxie@chelsio.com>
5507 L:      linux-scsi@vger.kernel.org
5508 S:      Supported
5509 W:      http://www.chelsio.com
5510 F:      drivers/scsi/cxgbi/cxgb3i
5511
5512 CXGB4 CRYPTO DRIVER (chcr)
5513 M:      Ayush Sawal <ayush.sawal@chelsio.com>
5514 M:      Vinay Kumar Yadav <vinay.yadav@chelsio.com>
5515 M:      Rohit Maheshwari <rohitm@chelsio.com>
5516 L:      linux-crypto@vger.kernel.org
5517 S:      Supported
5518 W:      http://www.chelsio.com
5519 F:      drivers/crypto/chelsio
5520
5521 CXGB4 INLINE CRYPTO DRIVER
5522 M:      Ayush Sawal <ayush.sawal@chelsio.com>
5523 M:      Vinay Kumar Yadav <vinay.yadav@chelsio.com>
5524 M:      Rohit Maheshwari <rohitm@chelsio.com>
5525 L:      netdev@vger.kernel.org
5526 S:      Supported
5527 W:      http://www.chelsio.com
5528 F:      drivers/net/ethernet/chelsio/inline_crypto/
5529
5530 CXGB4 ETHERNET DRIVER (CXGB4)
5531 M:      Raju Rangoju <rajur@chelsio.com>
5532 L:      netdev@vger.kernel.org
5533 S:      Supported
5534 W:      http://www.chelsio.com
5535 F:      drivers/net/ethernet/chelsio/cxgb4/
5536
5537 CXGB4 ISCSI DRIVER (CXGB4I)
5538 M:      Karen Xie <kxie@chelsio.com>
5539 L:      linux-scsi@vger.kernel.org
5540 S:      Supported
5541 W:      http://www.chelsio.com
5542 F:      drivers/scsi/cxgbi/cxgb4i
5543
5544 CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
5545 M:      Potnuri Bharat Teja <bharat@chelsio.com>
5546 L:      linux-rdma@vger.kernel.org
5547 S:      Supported
5548 W:      http://www.openfabrics.org
5549 F:      drivers/infiniband/hw/cxgb4/
5550 F:      include/uapi/rdma/cxgb4-abi.h
5551
5552 CXGB4VF ETHERNET DRIVER (CXGB4VF)
5553 M:      Raju Rangoju <rajur@chelsio.com>
5554 L:      netdev@vger.kernel.org
5555 S:      Supported
5556 W:      http://www.chelsio.com
5557 F:      drivers/net/ethernet/chelsio/cxgb4vf/
5558
5559 CXL (IBM Coherent Accelerator Processor Interface CAPI) DRIVER
5560 M:      Frederic Barrat <fbarrat@linux.ibm.com>
5561 M:      Andrew Donnellan <ajd@linux.ibm.com>
5562 L:      linuxppc-dev@lists.ozlabs.org
5563 S:      Supported
5564 F:      Documentation/ABI/testing/sysfs-class-cxl
5565 F:      Documentation/powerpc/cxl.rst
5566 F:      arch/powerpc/platforms/powernv/pci-cxl.c
5567 F:      drivers/misc/cxl/
5568 F:      include/misc/cxl*
5569 F:      include/uapi/misc/cxl.h
5570
5571 CXLFLASH (IBM Coherent Accelerator Processor Interface CAPI Flash) SCSI DRIVER
5572 M:      Manoj N. Kumar <manoj@linux.ibm.com>
5573 M:      Matthew R. Ochs <mrochs@linux.ibm.com>
5574 M:      Uma Krishnan <ukrishn@linux.ibm.com>
5575 L:      linux-scsi@vger.kernel.org
5576 S:      Supported
5577 F:      Documentation/powerpc/cxlflash.rst
5578 F:      drivers/scsi/cxlflash/
5579 F:      include/uapi/scsi/cxlflash_ioctl.h
5580
5581 CYBERPRO FB DRIVER
5582 M:      Russell King <linux@armlinux.org.uk>
5583 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5584 S:      Maintained
5585 W:      http://www.armlinux.org.uk/
5586 F:      drivers/video/fbdev/cyber2000fb.*
5587
5588 CYCLADES PC300 DRIVER
5589 S:      Orphan
5590 F:      drivers/net/wan/pc300*
5591
5592 CYPRESS_FIRMWARE MEDIA DRIVER
5593 M:      Antti Palosaari <crope@iki.fi>
5594 L:      linux-media@vger.kernel.org
5595 S:      Maintained
5596 W:      https://linuxtv.org
5597 W:      http://palosaari.fi/linux/
5598 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5599 T:      git git://linuxtv.org/anttip/media_tree.git
5600 F:      drivers/media/common/cypress_firmware*
5601
5602 CYPRESS CY8CTMA140 TOUCHSCREEN DRIVER
5603 M:      Linus Walleij <linus.walleij@linaro.org>
5604 L:      linux-input@vger.kernel.org
5605 S:      Maintained
5606 F:      drivers/input/touchscreen/cy8ctma140.c
5607
5608 CYPRESS STREETFIGHTER TOUCHKEYS DRIVER
5609 M:      Yassine Oudjana <y.oudjana@protonmail.com>
5610 L:      linux-input@vger.kernel.org
5611 S:      Maintained
5612 F:      Documentation/devicetree/bindings/input/cypress-sf.yaml
5613 F:      drivers/input/keyboard/cypress-sf.c
5614
5615 CYTTSP TOUCHSCREEN DRIVER
5616 M:      Linus Walleij <linus.walleij@linaro.org>
5617 L:      linux-input@vger.kernel.org
5618 S:      Maintained
5619 F:      drivers/input/touchscreen/cyttsp*
5620
5621 D-LINK DIR-685 TOUCHKEYS DRIVER
5622 M:      Linus Walleij <linus.walleij@linaro.org>
5623 L:      linux-input@vger.kernel.org
5624 S:      Supported
5625 F:      drivers/input/keyboard/dlink-dir685-touchkeys.c
5626
5627 DALLAS/MAXIM DS1685-FAMILY REAL TIME CLOCK
5628 M:      Joshua Kinard <kumba@gentoo.org>
5629 S:      Maintained
5630 F:      drivers/rtc/rtc-ds1685.c
5631 F:      include/linux/rtc/ds1685.h
5632
5633 DAMA SLAVE for AX.25
5634 M:      Joerg Reuter <jreuter@yaina.de>
5635 L:      linux-hams@vger.kernel.org
5636 S:      Maintained
5637 W:      http://yaina.de/jreuter/
5638 W:      http://www.qsl.net/dl1bke/
5639 F:      net/ax25/af_ax25.c
5640 F:      net/ax25/ax25_dev.c
5641 F:      net/ax25/ax25_ds_*
5642 F:      net/ax25/ax25_in.c
5643 F:      net/ax25/ax25_out.c
5644 F:      net/ax25/ax25_timer.c
5645 F:      net/ax25/sysctl_net_ax25.c
5646
5647 DATA ACCESS MONITOR
5648 M:      SeongJae Park <sj@kernel.org>
5649 L:      damon@lists.linux.dev
5650 L:      linux-mm@kvack.org
5651 S:      Maintained
5652 F:      Documentation/ABI/testing/sysfs-kernel-mm-damon
5653 F:      Documentation/admin-guide/mm/damon/
5654 F:      Documentation/vm/damon/
5655 F:      include/linux/damon.h
5656 F:      include/trace/events/damon.h
5657 F:      mm/damon/
5658 F:      tools/testing/selftests/damon/
5659
5660 DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
5661 L:      netdev@vger.kernel.org
5662 S:      Orphan
5663 F:      Documentation/networking/device_drivers/ethernet/dec/dmfe.rst
5664 F:      drivers/net/ethernet/dec/tulip/dmfe.c
5665
5666 DC390/AM53C974 SCSI driver
5667 M:      Hannes Reinecke <hare@suse.com>
5668 L:      linux-scsi@vger.kernel.org
5669 S:      Maintained
5670 F:      drivers/scsi/am53c974.c
5671
5672 DC395x SCSI driver
5673 M:      Oliver Neukum <oliver@neukum.org>
5674 M:      Ali Akcaagac <aliakc@web.de>
5675 M:      Jamie Lenehan <lenehan@twibble.org>
5676 L:      dc395x@twibble.org
5677 S:      Maintained
5678 W:      http://twibble.org/dist/dc395x/
5679 W:      http://lists.twibble.org/mailman/listinfo/dc395x/
5680 F:      Documentation/scsi/dc395x.rst
5681 F:      drivers/scsi/dc395x.*
5682
5683 DCCP PROTOCOL
5684 L:      dccp@vger.kernel.org
5685 S:      Orphan
5686 W:      http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
5687 F:      include/linux/dccp.h
5688 F:      include/linux/tfrc.h
5689 F:      include/uapi/linux/dccp.h
5690 F:      net/dccp/
5691
5692 DECnet NETWORK LAYER
5693 L:      linux-decnet-user@lists.sourceforge.net
5694 S:      Orphan
5695 W:      http://linux-decnet.sourceforge.net
5696 F:      Documentation/networking/decnet.rst
5697 F:      net/decnet/
5698
5699 DECSTATION PLATFORM SUPPORT
5700 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
5701 L:      linux-mips@vger.kernel.org
5702 S:      Maintained
5703 W:      http://www.linux-mips.org/wiki/DECstation
5704 F:      arch/mips/dec/
5705 F:      arch/mips/include/asm/dec/
5706 F:      arch/mips/include/asm/mach-dec/
5707
5708 DEFXX FDDI NETWORK DRIVER
5709 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
5710 S:      Maintained
5711 F:      drivers/net/fddi/defxx.*
5712
5713 DEFZA FDDI NETWORK DRIVER
5714 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
5715 S:      Maintained
5716 F:      drivers/net/fddi/defza.*
5717
5718 DEINTERLACE DRIVERS FOR ALLWINNER H3
5719 M:      Jernej Skrabec <jernej.skrabec@gmail.com>
5720 L:      linux-media@vger.kernel.org
5721 S:      Maintained
5722 T:      git git://linuxtv.org/media_tree.git
5723 F:      Documentation/devicetree/bindings/media/allwinner,sun8i-h3-deinterlace.yaml
5724 F:      drivers/media/platform/sunxi/sun8i-di/
5725
5726 DELL LAPTOP DRIVER
5727 M:      Matthew Garrett <mjg59@srcf.ucam.org>
5728 M:      Pali Rohár <pali@kernel.org>
5729 L:      platform-driver-x86@vger.kernel.org
5730 S:      Maintained
5731 F:      drivers/platform/x86/dell/dell-laptop.c
5732
5733 DELL LAPTOP FREEFALL DRIVER
5734 M:      Pali Rohár <pali@kernel.org>
5735 S:      Maintained
5736 F:      drivers/platform/x86/dell/dell-smo8800.c
5737
5738 DELL LAPTOP RBTN DRIVER
5739 M:      Pali Rohár <pali@kernel.org>
5740 S:      Maintained
5741 F:      drivers/platform/x86/dell/dell-rbtn.*
5742
5743 DELL LAPTOP SMM DRIVER
5744 M:      Pali Rohár <pali@kernel.org>
5745 S:      Maintained
5746 F:      Documentation/ABI/obsolete/procfs-i8k
5747 F:      drivers/hwmon/dell-smm-hwmon.c
5748 F:      include/uapi/linux/i8k.h
5749
5750 DELL REMOTE BIOS UPDATE DRIVER
5751 M:      Stuart Hayes <stuart.w.hayes@gmail.com>
5752 L:      platform-driver-x86@vger.kernel.org
5753 S:      Maintained
5754 F:      drivers/platform/x86/dell/dell_rbu.c
5755
5756 DELL SMBIOS DRIVER
5757 M:      Pali Rohár <pali@kernel.org>
5758 L:      Dell.Client.Kernel@dell.com
5759 L:      platform-driver-x86@vger.kernel.org
5760 S:      Maintained
5761 F:      drivers/platform/x86/dell/dell-smbios.*
5762
5763 DELL SMBIOS SMM DRIVER
5764 L:      Dell.Client.Kernel@dell.com
5765 L:      platform-driver-x86@vger.kernel.org
5766 S:      Maintained
5767 F:      drivers/platform/x86/dell/dell-smbios-smm.c
5768
5769 DELL SMBIOS WMI DRIVER
5770 L:      Dell.Client.Kernel@dell.com
5771 L:      platform-driver-x86@vger.kernel.org
5772 S:      Maintained
5773 F:      drivers/platform/x86/dell/dell-smbios-wmi.c
5774 F:      tools/wmi/dell-smbios-example.c
5775
5776 DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
5777 M:      Stuart Hayes <stuart.w.hayes@gmail.com>
5778 L:      platform-driver-x86@vger.kernel.org
5779 S:      Maintained
5780 F:      Documentation/driver-api/dcdbas.rst
5781 F:      drivers/platform/x86/dell/dcdbas.*
5782
5783 DELL WMI DESCRIPTOR DRIVER
5784 L:      Dell.Client.Kernel@dell.com
5785 S:      Maintained
5786 F:      drivers/platform/x86/dell/dell-wmi-descriptor.c
5787
5788 DELL WMI SYSMAN DRIVER
5789 M:      Divya Bharathi <divya.bharathi@dell.com>
5790 M:      Prasanth Ksr <prasanth.ksr@dell.com>
5791 L:      Dell.Client.Kernel@dell.com
5792 L:      platform-driver-x86@vger.kernel.org
5793 S:      Maintained
5794 F:      Documentation/ABI/testing/sysfs-class-firmware-attributes
5795 F:      drivers/platform/x86/dell/dell-wmi-sysman/
5796
5797 DELL WMI NOTIFICATIONS DRIVER
5798 M:      Matthew Garrett <mjg59@srcf.ucam.org>
5799 M:      Pali Rohár <pali@kernel.org>
5800 S:      Maintained
5801 F:      drivers/platform/x86/dell/dell-wmi-base.c
5802
5803 DELL WMI HARDWARE PRIVACY SUPPORT
5804 M:      Perry Yuan <Perry.Yuan@dell.com>
5805 L:      Dell.Client.Kernel@dell.com
5806 L:      platform-driver-x86@vger.kernel.org
5807 S:      Maintained
5808 F:      drivers/platform/x86/dell/dell-wmi-privacy.c
5809
5810 DELTA ST MEDIA DRIVER
5811 M:      Hugues Fruchet <hugues.fruchet@foss.st.com>
5812 L:      linux-media@vger.kernel.org
5813 S:      Supported
5814 W:      https://linuxtv.org
5815 T:      git git://linuxtv.org/media_tree.git
5816 F:      drivers/media/platform/st/sti/delta
5817
5818 DELTA AHE-50DC FAN CONTROL MODULE DRIVER
5819 M:      Zev Weiss <zev@bewilderbeest.net>
5820 L:      linux-hwmon@vger.kernel.org
5821 S:      Maintained
5822 F:      drivers/hwmon/pmbus/delta-ahe50dc-fan.c
5823
5824 DELTA DPS920AB PSU DRIVER
5825 M:      Robert Marko <robert.marko@sartura.hr>
5826 L:      linux-hwmon@vger.kernel.org
5827 S:      Maintained
5828 F:      Documentation/hwmon/dps920ab.rst
5829 F:      drivers/hwmon/pmbus/dps920ab.c
5830
5831 DELTA NETWORKS TN48M CPLD DRIVERS
5832 M:      Robert Marko <robert.marko@sartura.hr>
5833 S:      Maintained
5834 F:      Documentation/devicetree/bindings/gpio/delta,tn48m-gpio.yaml
5835 F:      Documentation/devicetree/bindings/mfd/delta,tn48m-cpld.yaml
5836 F:      Documentation/devicetree/bindings/reset/delta,tn48m-reset.yaml
5837 F:      drivers/gpio/gpio-tn48m.c
5838 F:      include/dt-bindings/reset/delta,tn48m-reset.h
5839
5840 DENALI NAND DRIVER
5841 L:      linux-mtd@lists.infradead.org
5842 S:      Orphan
5843 F:      drivers/mtd/nand/raw/denali*
5844
5845 DESIGNWARE EDMA CORE IP DRIVER
5846 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
5847 L:      dmaengine@vger.kernel.org
5848 S:      Maintained
5849 F:      drivers/dma/dw-edma/
5850 F:      include/linux/dma/edma.h
5851
5852 DESIGNWARE XDATA IP DRIVER
5853 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
5854 L:      linux-pci@vger.kernel.org
5855 S:      Maintained
5856 F:      Documentation/misc-devices/dw-xdata-pcie.rst
5857 F:      drivers/misc/dw-xdata-pcie.c
5858
5859 DESIGNWARE USB2 DRD IP DRIVER
5860 M:      Minas Harutyunyan <hminas@synopsys.com>
5861 L:      linux-usb@vger.kernel.org
5862 S:      Maintained
5863 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
5864 F:      drivers/usb/dwc2/
5865
5866 DESIGNWARE USB3 DRD IP DRIVER
5867 M:      Felipe Balbi <balbi@kernel.org>
5868 L:      linux-usb@vger.kernel.org
5869 S:      Maintained
5870 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
5871 F:      drivers/usb/dwc3/
5872
5873 DEVANTECH SRF ULTRASONIC RANGER IIO DRIVER
5874 M:      Andreas Klinger <ak@it-klinger.de>
5875 L:      linux-iio@vger.kernel.org
5876 S:      Maintained
5877 F:      Documentation/ABI/testing/sysfs-bus-iio-distance-srf08
5878 F:      drivers/iio/proximity/srf*.c
5879
5880 DEVICE COREDUMP (DEV_COREDUMP)
5881 M:      Johannes Berg <johannes@sipsolutions.net>
5882 L:      linux-kernel@vger.kernel.org
5883 S:      Maintained
5884 F:      drivers/base/devcoredump.c
5885 F:      include/linux/devcoredump.h
5886
5887 DEVICE DEPENDENCY HELPER SCRIPT
5888 M:      Saravana Kannan <saravanak@google.com>
5889 L:      linux-kernel@vger.kernel.org
5890 S:      Maintained
5891 F:      scripts/dev-needs.sh
5892
5893 DEVICE DIRECT ACCESS (DAX)
5894 M:      Dan Williams <dan.j.williams@intel.com>
5895 M:      Vishal Verma <vishal.l.verma@intel.com>
5896 M:      Dave Jiang <dave.jiang@intel.com>
5897 L:      nvdimm@lists.linux.dev
5898 S:      Supported
5899 F:      drivers/dax/
5900
5901 DEVICE FREQUENCY (DEVFREQ)
5902 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
5903 M:      Kyungmin Park <kyungmin.park@samsung.com>
5904 M:      Chanwoo Choi <cw00.choi@samsung.com>
5905 L:      linux-pm@vger.kernel.org
5906 S:      Maintained
5907 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
5908 F:      Documentation/devicetree/bindings/devfreq/
5909 F:      Documentation/devicetree/bindings/interconnect/mediatek,cci.yaml
5910 F:      drivers/devfreq/
5911 F:      include/linux/devfreq.h
5912 F:      include/trace/events/devfreq.h
5913
5914 DEVICE FREQUENCY EVENT (DEVFREQ-EVENT)
5915 M:      Chanwoo Choi <cw00.choi@samsung.com>
5916 L:      linux-pm@vger.kernel.org
5917 S:      Supported
5918 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
5919 F:      Documentation/devicetree/bindings/devfreq/event/
5920 F:      drivers/devfreq/devfreq-event.c
5921 F:      drivers/devfreq/event/
5922 F:      include/dt-bindings/pmu/exynos_ppmu.h
5923 F:      include/linux/devfreq-event.h
5924
5925 DEVICE NUMBER REGISTRY
5926 M:      Torben Mathiasen <device@lanana.org>
5927 S:      Maintained
5928 W:      http://lanana.org/docs/device-list/index.html
5929
5930 DEVICE RESOURCE MANAGEMENT HELPERS
5931 M:      Hans de Goede <hdegoede@redhat.com>
5932 R:      Matti Vaittinen <mazziesaccount@gmail.com>
5933 S:      Maintained
5934 F:      include/linux/devm-helpers.h
5935
5936 DEVICE-MAPPER  (LVM)
5937 M:      Alasdair Kergon <agk@redhat.com>
5938 M:      Mike Snitzer <snitzer@kernel.org>
5939 M:      dm-devel@redhat.com
5940 L:      dm-devel@redhat.com
5941 S:      Maintained
5942 W:      http://sources.redhat.com/dm
5943 Q:      http://patchwork.kernel.org/project/dm-devel/list/
5944 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git
5945 T:      quilt http://people.redhat.com/agk/patches/linux/editing/
5946 F:      Documentation/admin-guide/device-mapper/
5947 F:      drivers/md/Kconfig
5948 F:      drivers/md/Makefile
5949 F:      drivers/md/dm*
5950 F:      drivers/md/persistent-data/
5951 F:      include/linux/device-mapper.h
5952 F:      include/linux/dm-*.h
5953 F:      include/uapi/linux/dm-*.h
5954
5955 DEVLINK
5956 M:      Jiri Pirko <jiri@nvidia.com>
5957 L:      netdev@vger.kernel.org
5958 S:      Supported
5959 F:      Documentation/networking/devlink
5960 F:      include/net/devlink.h
5961 F:      include/uapi/linux/devlink.h
5962 F:      net/core/devlink.c
5963
5964 DH ELECTRONICS IMX6 DHCOM BOARD SUPPORT
5965 M:      Christoph Niedermaier <cniedermaier@dh-electronics.com>
5966 L:      kernel@dh-electronics.com
5967 S:      Maintained
5968 F:      arch/arm/boot/dts/imx6*-dhcom-*
5969
5970 DH ELECTRONICS STM32MP1 DHCOM/DHCOR BOARD SUPPORT
5971 M:      Marek Vasut <marex@denx.de>
5972 L:      kernel@dh-electronics.com
5973 S:      Maintained
5974 F:      arch/arm/boot/dts/stm32mp1*-dhcom-*
5975 F:      arch/arm/boot/dts/stm32mp1*-dhcor-*
5976
5977 DIALOG SEMICONDUCTOR DRIVERS
5978 M:      Support Opensource <support.opensource@diasemi.com>
5979 S:      Supported
5980 W:      http://www.dialog-semiconductor.com/products
5981 F:      Documentation/devicetree/bindings/input/da90??-onkey.txt
5982 F:      Documentation/devicetree/bindings/input/dlg,da72??.txt
5983 F:      Documentation/devicetree/bindings/mfd/da90*.txt
5984 F:      Documentation/devicetree/bindings/regulator/dlg,da9*.yaml
5985 F:      Documentation/devicetree/bindings/regulator/da92*.txt
5986 F:      Documentation/devicetree/bindings/regulator/slg51000.txt
5987 F:      Documentation/devicetree/bindings/sound/da[79]*.txt
5988 F:      Documentation/devicetree/bindings/thermal/da90??-thermal.txt
5989 F:      Documentation/devicetree/bindings/watchdog/da90??-wdt.txt
5990 F:      Documentation/hwmon/da90??.rst
5991 F:      drivers/gpio/gpio-da90??.c
5992 F:      drivers/hwmon/da90??-hwmon.c
5993 F:      drivers/iio/adc/da91??-*.c
5994 F:      drivers/input/misc/da72??.[ch]
5995 F:      drivers/input/misc/da90??_onkey.c
5996 F:      drivers/input/touchscreen/da9052_tsi.c
5997 F:      drivers/leds/leds-da90??.c
5998 F:      drivers/mfd/da903x.c
5999 F:      drivers/mfd/da90??-*.c
6000 F:      drivers/mfd/da91??-*.c
6001 F:      drivers/pinctrl/pinctrl-da90??.c
6002 F:      drivers/power/supply/da9052-battery.c
6003 F:      drivers/power/supply/da91??-*.c
6004 F:      drivers/regulator/da9???-regulator.[ch]
6005 F:      drivers/regulator/slg51000-regulator.[ch]
6006 F:      drivers/rtc/rtc-da90??.c
6007 F:      drivers/thermal/da90??-thermal.c
6008 F:      drivers/video/backlight/da90??_bl.c
6009 F:      drivers/watchdog/da90??_wdt.c
6010 F:      include/dt-bindings/regulator/dlg,da9*-regulator.h
6011 F:      include/linux/mfd/da903x.h
6012 F:      include/linux/mfd/da9052/
6013 F:      include/linux/mfd/da9055/
6014 F:      include/linux/mfd/da9062/
6015 F:      include/linux/mfd/da9063/
6016 F:      include/linux/mfd/da9150/
6017 F:      include/linux/regulator/da9211.h
6018 F:      include/sound/da[79]*.h
6019 F:      sound/soc/codecs/da[79]*.[ch]
6020
6021 DIAMOND SYSTEMS GPIO-MM GPIO DRIVER
6022 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
6023 L:      linux-gpio@vger.kernel.org
6024 S:      Maintained
6025 F:      drivers/gpio/gpio-gpio-mm.c
6026
6027 DIOLAN U2C-12 I2C DRIVER
6028 M:      Guenter Roeck <linux@roeck-us.net>
6029 L:      linux-i2c@vger.kernel.org
6030 S:      Maintained
6031 F:      drivers/i2c/busses/i2c-diolan-u2c.c
6032
6033 DIRECTORY NOTIFICATION (DNOTIFY)
6034 M:      Jan Kara <jack@suse.cz>
6035 R:      Amir Goldstein <amir73il@gmail.com>
6036 L:      linux-fsdevel@vger.kernel.org
6037 S:      Maintained
6038 F:      Documentation/filesystems/dnotify.rst
6039 F:      fs/notify/dnotify/
6040 F:      include/linux/dnotify.h
6041
6042 DISK GEOMETRY AND PARTITION HANDLING
6043 M:      Andries Brouwer <aeb@cwi.nl>
6044 S:      Maintained
6045 W:      http://www.win.tue.nl/~aeb/linux/Large-Disk.html
6046 W:      http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
6047 W:      http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
6048
6049 DISKQUOTA
6050 M:      Jan Kara <jack@suse.com>
6051 S:      Maintained
6052 F:      Documentation/filesystems/quota.rst
6053 F:      fs/quota/
6054 F:      include/linux/quota*.h
6055 F:      include/uapi/linux/quota*.h
6056
6057 DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
6058 M:      Bernie Thompson <bernie@plugable.com>
6059 L:      linux-fbdev@vger.kernel.org
6060 S:      Maintained
6061 W:      http://plugable.com/category/projects/udlfb/
6062 F:      Documentation/fb/udlfb.rst
6063 F:      drivers/video/fbdev/udlfb.c
6064 F:      include/video/udlfb.h
6065
6066 DISTRIBUTED LOCK MANAGER (DLM)
6067 M:      Christine Caulfield <ccaulfie@redhat.com>
6068 M:      David Teigland <teigland@redhat.com>
6069 L:      cluster-devel@redhat.com
6070 S:      Supported
6071 W:      http://sources.redhat.com/cluster/
6072 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/linux-dlm.git
6073 F:      fs/dlm/
6074
6075 DMA BUFFER SHARING FRAMEWORK
6076 M:      Sumit Semwal <sumit.semwal@linaro.org>
6077 M:      Christian König <christian.koenig@amd.com>
6078 L:      linux-media@vger.kernel.org
6079 L:      dri-devel@lists.freedesktop.org
6080 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
6081 S:      Maintained
6082 T:      git git://anongit.freedesktop.org/drm/drm-misc
6083 F:      Documentation/driver-api/dma-buf.rst
6084 F:      drivers/dma-buf/
6085 F:      include/linux/*fence.h
6086 F:      include/linux/dma-buf.h
6087 F:      include/linux/dma-resv.h
6088 K:      \bdma_(?:buf|fence|resv)\b
6089
6090 DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
6091 M:      Vinod Koul <vkoul@kernel.org>
6092 L:      dmaengine@vger.kernel.org
6093 S:      Maintained
6094 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
6095 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vkoul/dmaengine.git
6096 F:      Documentation/devicetree/bindings/dma/
6097 F:      Documentation/driver-api/dmaengine/
6098 F:      drivers/dma/
6099 F:      include/linux/dma/
6100 F:      include/linux/dmaengine.h
6101 F:      include/linux/of_dma.h
6102
6103 DMA MAPPING HELPERS
6104 M:      Christoph Hellwig <hch@lst.de>
6105 M:      Marek Szyprowski <m.szyprowski@samsung.com>
6106 R:      Robin Murphy <robin.murphy@arm.com>
6107 L:      iommu@lists.linux.dev
6108 S:      Supported
6109 W:      http://git.infradead.org/users/hch/dma-mapping.git
6110 T:      git git://git.infradead.org/users/hch/dma-mapping.git
6111 F:      include/asm-generic/dma-mapping.h
6112 F:      include/linux/dma-direct.h
6113 F:      include/linux/dma-mapping.h
6114 F:      include/linux/dma-map-ops.h
6115 F:      kernel/dma/
6116
6117 DMA MAPPING BENCHMARK
6118 M:      Xiang Chen <chenxiang66@hisilicon.com>
6119 L:      iommu@lists.linux.dev
6120 F:      kernel/dma/map_benchmark.c
6121 F:      tools/testing/selftests/dma/
6122
6123 DMA-BUF HEAPS FRAMEWORK
6124 M:      Sumit Semwal <sumit.semwal@linaro.org>
6125 R:      Benjamin Gaignard <benjamin.gaignard@collabora.com>
6126 R:      Liam Mark <lmark@codeaurora.org>
6127 R:      Laura Abbott <labbott@redhat.com>
6128 R:      Brian Starkey <Brian.Starkey@arm.com>
6129 R:      John Stultz <jstultz@google.com>
6130 L:      linux-media@vger.kernel.org
6131 L:      dri-devel@lists.freedesktop.org
6132 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
6133 S:      Maintained
6134 T:      git git://anongit.freedesktop.org/drm/drm-misc
6135 F:      drivers/dma-buf/dma-heap.c
6136 F:      drivers/dma-buf/heaps/*
6137 F:      include/linux/dma-heap.h
6138 F:      include/uapi/linux/dma-heap.h
6139
6140 DMC FREQUENCY DRIVER FOR SAMSUNG EXYNOS5422
6141 M:      Lukasz Luba <lukasz.luba@arm.com>
6142 L:      linux-pm@vger.kernel.org
6143 L:      linux-samsung-soc@vger.kernel.org
6144 S:      Maintained
6145 F:      Documentation/devicetree/bindings/memory-controllers/samsung,exynos5422-dmc.yaml
6146 F:      drivers/memory/samsung/exynos5422-dmc.c
6147
6148 DME1737 HARDWARE MONITOR DRIVER
6149 M:      Juerg Haefliger <juergh@gmail.com>
6150 L:      linux-hwmon@vger.kernel.org
6151 S:      Maintained
6152 F:      Documentation/hwmon/dme1737.rst
6153 F:      drivers/hwmon/dme1737.c
6154
6155 DMI/SMBIOS SUPPORT
6156 M:      Jean Delvare <jdelvare@suse.com>
6157 S:      Maintained
6158 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jdelvare/staging.git dmi-for-next
6159 F:      Documentation/ABI/testing/sysfs-firmware-dmi-tables
6160 F:      drivers/firmware/dmi-id.c
6161 F:      drivers/firmware/dmi_scan.c
6162 F:      include/linux/dmi.h
6163
6164 DOCUMENTATION
6165 M:      Jonathan Corbet <corbet@lwn.net>
6166 L:      linux-doc@vger.kernel.org
6167 S:      Maintained
6168 P:      Documentation/doc-guide/maintainer-profile.rst
6169 T:      git git://git.lwn.net/linux.git docs-next
6170 F:      Documentation/
6171 F:      scripts/documentation-file-ref-check
6172 F:      scripts/kernel-doc
6173 F:      scripts/sphinx-pre-install
6174 X:      Documentation/ABI/
6175 X:      Documentation/admin-guide/media/
6176 X:      Documentation/devicetree/
6177 X:      Documentation/driver-api/media/
6178 X:      Documentation/firmware-guide/acpi/
6179 X:      Documentation/i2c/
6180 X:      Documentation/power/
6181 X:      Documentation/spi/
6182 X:      Documentation/userspace-api/media/
6183
6184 DOCUMENTATION REPORTING ISSUES
6185 M:      Thorsten Leemhuis <linux@leemhuis.info>
6186 L:      linux-doc@vger.kernel.org
6187 S:      Maintained
6188 F:      Documentation/admin-guide/reporting-issues.rst
6189
6190 DOCUMENTATION SCRIPTS
6191 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6192 L:      linux-doc@vger.kernel.org
6193 S:      Maintained
6194 F:      Documentation/sphinx/parse-headers.pl
6195 F:      scripts/documentation-file-ref-check
6196 F:      scripts/sphinx-pre-install
6197
6198 DOCUMENTATION/ITALIAN
6199 M:      Federico Vaga <federico.vaga@vaga.pv.it>
6200 L:      linux-doc@vger.kernel.org
6201 S:      Maintained
6202 F:      Documentation/translations/it_IT
6203
6204 DOCUMENTATION/JAPANESE
6205 R:      Akira Yokosawa <akiyks@gmail.com>
6206 L:      linux-doc@vger.kernel.org
6207 S:      Maintained
6208 F:      Documentation/translations/ja_JP
6209
6210 DONGWOON DW9714 LENS VOICE COIL DRIVER
6211 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
6212 L:      linux-media@vger.kernel.org
6213 S:      Maintained
6214 T:      git git://linuxtv.org/media_tree.git
6215 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9714.txt
6216 F:      drivers/media/i2c/dw9714.c
6217
6218 DONGWOON DW9768 LENS VOICE COIL DRIVER
6219 M:      Dongchun Zhu <dongchun.zhu@mediatek.com>
6220 L:      linux-media@vger.kernel.org
6221 S:      Maintained
6222 T:      git git://linuxtv.org/media_tree.git
6223 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9768.yaml
6224 F:      drivers/media/i2c/dw9768.c
6225
6226 DONGWOON DW9807 LENS VOICE COIL DRIVER
6227 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
6228 L:      linux-media@vger.kernel.org
6229 S:      Maintained
6230 T:      git git://linuxtv.org/media_tree.git
6231 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9807-vcm.yaml
6232 F:      drivers/media/i2c/dw9807-vcm.c
6233
6234 DOUBLETALK DRIVER
6235 M:      "James R. Van Zandt" <jrv@vanzandt.mv.com>
6236 L:      blinux-list@redhat.com
6237 S:      Maintained
6238 F:      drivers/char/dtlk.c
6239 F:      include/linux/dtlk.h
6240
6241 DPAA2 DATAPATH I/O (DPIO) DRIVER
6242 M:      Roy Pledge <Roy.Pledge@nxp.com>
6243 L:      linux-kernel@vger.kernel.org
6244 S:      Maintained
6245 F:      drivers/soc/fsl/dpio
6246
6247 DPAA2 ETHERNET DRIVER
6248 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
6249 L:      netdev@vger.kernel.org
6250 S:      Maintained
6251 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/ethernet-driver.rst
6252 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/mac-phy-support.rst
6253 F:      drivers/net/ethernet/freescale/dpaa2/Kconfig
6254 F:      drivers/net/ethernet/freescale/dpaa2/Makefile
6255 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-eth*
6256 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-mac*
6257 F:      drivers/net/ethernet/freescale/dpaa2/dpkg.h
6258 F:      drivers/net/ethernet/freescale/dpaa2/dpmac*
6259 F:      drivers/net/ethernet/freescale/dpaa2/dpni*
6260
6261 DPAA2 ETHERNET SWITCH DRIVER
6262 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
6263 L:      netdev@vger.kernel.org
6264 S:      Maintained
6265 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/switch-driver.rst
6266 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-switch*
6267 F:      drivers/net/ethernet/freescale/dpaa2/dpsw*
6268
6269 DPT_I2O SCSI RAID DRIVER
6270 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
6271 L:      linux-scsi@vger.kernel.org
6272 S:      Maintained
6273 W:      http://www.adaptec.com/
6274 F:      drivers/scsi/dpt*
6275 F:      drivers/scsi/dpt/
6276
6277 DRBD DRIVER
6278 M:      Philipp Reisner <philipp.reisner@linbit.com>
6279 M:      Lars Ellenberg <lars.ellenberg@linbit.com>
6280 M:      Christoph Böhmwalder <christoph.boehmwalder@linbit.com>
6281 L:      drbd-dev@lists.linbit.com
6282 S:      Supported
6283 W:      http://www.drbd.org
6284 T:      git git://git.linbit.com/linux-drbd.git
6285 T:      git git://git.linbit.com/drbd-8.4.git
6286 F:      Documentation/admin-guide/blockdev/
6287 F:      drivers/block/drbd/
6288 F:      lib/lru_cache.c
6289
6290 DRIVER COMPONENT FRAMEWORK
6291 L:      dri-devel@lists.freedesktop.org
6292 F:      drivers/base/component.c
6293 F:      include/linux/component.h
6294
6295 DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS
6296 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
6297 R:      "Rafael J. Wysocki" <rafael@kernel.org>
6298 S:      Supported
6299 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
6300 F:      Documentation/core-api/kobject.rst
6301 F:      drivers/base/
6302 F:      fs/debugfs/
6303 F:      fs/sysfs/
6304 F:      include/linux/debugfs.h
6305 F:      include/linux/kobj*
6306 F:      lib/kobj*
6307
6308 DRIVERS FOR OMAP ADAPTIVE VOLTAGE SCALING (AVS)
6309 M:      Nishanth Menon <nm@ti.com>
6310 L:      linux-pm@vger.kernel.org
6311 S:      Maintained
6312 F:      drivers/soc/ti/smartreflex.c
6313 F:      include/linux/power/smartreflex.h
6314
6315 DRM DRIVER FOR ALLWINNER DE2 AND DE3 ENGINE
6316 M:      Maxime Ripard <mripard@kernel.org>
6317 M:      Chen-Yu Tsai <wens@csie.org>
6318 R:      Jernej Skrabec <jernej.skrabec@gmail.com>
6319 L:      dri-devel@lists.freedesktop.org
6320 S:      Supported
6321 T:      git git://anongit.freedesktop.org/drm/drm-misc
6322 F:      drivers/gpu/drm/sun4i/sun8i*
6323
6324 DRM DRIVER FOR ARM PL111 CLCD
6325 M:      Emma Anholt <emma@anholt.net>
6326 S:      Supported
6327 T:      git git://anongit.freedesktop.org/drm/drm-misc
6328 F:      drivers/gpu/drm/pl111/
6329
6330 DRM DRIVER FOR ARM VERSATILE TFT PANELS
6331 M:      Linus Walleij <linus.walleij@linaro.org>
6332 S:      Maintained
6333 T:      git git://anongit.freedesktop.org/drm/drm-misc
6334 F:      Documentation/devicetree/bindings/display/panel/arm,versatile-tft-panel.yaml
6335 F:      drivers/gpu/drm/panel/panel-arm-versatile.c
6336
6337 DRM DRIVER FOR ASPEED BMC GFX
6338 M:      Joel Stanley <joel@jms.id.au>
6339 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
6340 S:      Supported
6341 T:      git git://anongit.freedesktop.org/drm/drm-misc
6342 F:      Documentation/devicetree/bindings/gpu/aspeed-gfx.txt
6343 F:      drivers/gpu/drm/aspeed/
6344
6345 DRM DRIVER FOR AST SERVER GRAPHICS CHIPS
6346 M:      Dave Airlie <airlied@redhat.com>
6347 R:      Thomas Zimmermann <tzimmermann@suse.de>
6348 L:      dri-devel@lists.freedesktop.org
6349 S:      Supported
6350 T:      git git://anongit.freedesktop.org/drm/drm-misc
6351 F:      drivers/gpu/drm/ast/
6352
6353 DRM DRIVER FOR BOCHS VIRTUAL GPU
6354 M:      Gerd Hoffmann <kraxel@redhat.com>
6355 L:      virtualization@lists.linux-foundation.org
6356 S:      Maintained
6357 T:      git git://anongit.freedesktop.org/drm/drm-misc
6358 F:      drivers/gpu/drm/tiny/bochs.c
6359
6360 DRM DRIVER FOR BOE HIMAX8279D PANELS
6361 M:      Jerry Han <hanxu5@huaqin.corp-partner.google.com>
6362 S:      Maintained
6363 F:      Documentation/devicetree/bindings/display/panel/boe,himax8279d.yaml
6364 F:      drivers/gpu/drm/panel/panel-boe-himax8279d.c
6365
6366 DRM DRIVER FOR CHIPONE ICN6211 MIPI-DSI to RGB CONVERTER BRIDGE
6367 M:      Jagan Teki <jagan@amarulasolutions.com>
6368 S:      Maintained
6369 F:      Documentation/devicetree/bindings/display/bridge/chipone,icn6211.yaml
6370 F:      drivers/gpu/drm/bridge/chipone-icn6211.c
6371
6372 DRM DRIVER FOR FARADAY TVE200 TV ENCODER
6373 M:      Linus Walleij <linus.walleij@linaro.org>
6374 S:      Maintained
6375 T:      git git://anongit.freedesktop.org/drm/drm-misc
6376 F:      drivers/gpu/drm/tve200/
6377
6378 DRM DRIVER FOR FEIXIN K101 IM2BA02 MIPI-DSI LCD PANELS
6379 M:      Icenowy Zheng <icenowy@aosc.io>
6380 S:      Maintained
6381 F:      Documentation/devicetree/bindings/display/panel/feixin,k101-im2ba02.yaml
6382 F:      drivers/gpu/drm/panel/panel-feixin-k101-im2ba02.c
6383
6384 DRM DRIVER FOR FEIYANG FY07024DI26A30-D MIPI-DSI LCD PANELS
6385 M:      Jagan Teki <jagan@amarulasolutions.com>
6386 S:      Maintained
6387 F:      Documentation/devicetree/bindings/display/panel/feiyang,fy07024di26a30d.yaml
6388 F:      drivers/gpu/drm/panel/panel-feiyang-fy07024di26a30d.c
6389
6390 DRM DRIVER FOR GENERIC USB DISPLAY
6391 M:      Noralf Trønnes <noralf@tronnes.org>
6392 S:      Maintained
6393 W:      https://github.com/notro/gud/wiki
6394 T:      git git://anongit.freedesktop.org/drm/drm-misc
6395 F:      drivers/gpu/drm/gud/
6396 F:      include/drm/gud.h
6397
6398 DRM DRIVER FOR GRAIN MEDIA GM12U320 PROJECTORS
6399 M:      Hans de Goede <hdegoede@redhat.com>
6400 S:      Maintained
6401 T:      git git://anongit.freedesktop.org/drm/drm-misc
6402 F:      drivers/gpu/drm/tiny/gm12u320.c
6403
6404 DRM DRIVER FOR HX8357D PANELS
6405 M:      Emma Anholt <emma@anholt.net>
6406 S:      Maintained
6407 T:      git git://anongit.freedesktop.org/drm/drm-misc
6408 F:      Documentation/devicetree/bindings/display/himax,hx8357d.txt
6409 F:      drivers/gpu/drm/tiny/hx8357d.c
6410
6411 DRM DRIVER FOR ILITEK ILI9225 PANELS
6412 M:      David Lechner <david@lechnology.com>
6413 S:      Maintained
6414 T:      git git://anongit.freedesktop.org/drm/drm-misc
6415 F:      Documentation/devicetree/bindings/display/ilitek,ili9225.txt
6416 F:      drivers/gpu/drm/tiny/ili9225.c
6417
6418 DRM DRIVER FOR ILITEK ILI9486 PANELS
6419 M:      Kamlesh Gurudasani <kamlesh.gurudasani@gmail.com>
6420 S:      Maintained
6421 T:      git git://anongit.freedesktop.org/drm/drm-misc
6422 F:      Documentation/devicetree/bindings/display/ilitek,ili9486.yaml
6423 F:      drivers/gpu/drm/tiny/ili9486.c
6424
6425 DRM DRIVER FOR INTEL I810 VIDEO CARDS
6426 S:      Orphan / Obsolete
6427 F:      drivers/gpu/drm/i810/
6428 F:      include/uapi/drm/i810_drm.h
6429
6430 DRM DRIVER FOR LVDS PANELS
6431 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6432 L:      dri-devel@lists.freedesktop.org
6433 T:      git git://anongit.freedesktop.org/drm/drm-misc
6434 S:      Maintained
6435 F:      drivers/gpu/drm/panel/panel-lvds.c
6436 F:      Documentation/devicetree/bindings/display/lvds.yaml
6437 F:      Documentation/devicetree/bindings/display/panel/panel-lvds.yaml
6438
6439 DRM DRIVER FOR MANTIX MLAF057WE51 PANELS
6440 M:      Guido Günther <agx@sigxcpu.org>
6441 R:      Purism Kernel Team <kernel@puri.sm>
6442 S:      Maintained
6443 F:      Documentation/devicetree/bindings/display/panel/mantix,mlaf057we51-x.yaml
6444 F:      drivers/gpu/drm/panel/panel-mantix-mlaf057we51.c
6445
6446 DRM DRIVER FOR MATROX G200/G400 GRAPHICS CARDS
6447 S:      Orphan / Obsolete
6448 F:      drivers/gpu/drm/mga/
6449 F:      include/uapi/drm/mga_drm.h
6450
6451 DRM DRIVER FOR MGA G200 GRAPHICS CHIPS
6452 M:      Dave Airlie <airlied@redhat.com>
6453 R:      Thomas Zimmermann <tzimmermann@suse.de>
6454 L:      dri-devel@lists.freedesktop.org
6455 S:      Supported
6456 T:      git git://anongit.freedesktop.org/drm/drm-misc
6457 F:      drivers/gpu/drm/mgag200/
6458
6459 DRM DRIVER FOR MI0283QT
6460 M:      Noralf Trønnes <noralf@tronnes.org>
6461 S:      Maintained
6462 T:      git git://anongit.freedesktop.org/drm/drm-misc
6463 F:      Documentation/devicetree/bindings/display/multi-inno,mi0283qt.txt
6464 F:      drivers/gpu/drm/tiny/mi0283qt.c
6465
6466 DRM DRIVER FOR MIPI DBI compatible panels
6467 M:      Noralf Trønnes <noralf@tronnes.org>
6468 S:      Maintained
6469 W:      https://github.com/notro/panel-mipi-dbi/wiki
6470 T:      git git://anongit.freedesktop.org/drm/drm-misc
6471 F:      Documentation/devicetree/bindings/display/panel/panel-mipi-dbi-spi.yaml
6472 F:      drivers/gpu/drm/tiny/panel-mipi-dbi.c
6473
6474 DRM DRIVER FOR MSM ADRENO GPU
6475 M:      Rob Clark <robdclark@gmail.com>
6476 M:      Abhinav Kumar <quic_abhinavk@quicinc.com>
6477 M:      Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
6478 R:      Sean Paul <sean@poorly.run>
6479 L:      linux-arm-msm@vger.kernel.org
6480 L:      dri-devel@lists.freedesktop.org
6481 L:      freedreno@lists.freedesktop.org
6482 S:      Maintained
6483 T:      git https://gitlab.freedesktop.org/drm/msm.git
6484 F:      Documentation/devicetree/bindings/display/msm/
6485 F:      drivers/gpu/drm/msm/
6486 F:      include/uapi/drm/msm_drm.h
6487
6488 DRM DRIVER FOR NOVATEK NT35510 PANELS
6489 M:      Linus Walleij <linus.walleij@linaro.org>
6490 S:      Maintained
6491 T:      git git://anongit.freedesktop.org/drm/drm-misc
6492 F:      Documentation/devicetree/bindings/display/panel/novatek,nt35510.yaml
6493 F:      drivers/gpu/drm/panel/panel-novatek-nt35510.c
6494
6495 DRM DRIVER FOR NOVATEK NT35560 PANELS
6496 M:      Linus Walleij <linus.walleij@linaro.org>
6497 S:      Maintained
6498 T:      git git://anongit.freedesktop.org/drm/drm-misc
6499 F:      Documentation/devicetree/bindings/display/panel/sony,acx424akp.yaml
6500 F:      drivers/gpu/drm/panel/panel-novatek-nt35560.c
6501
6502 DRM DRIVER FOR NOVATEK NT36672A PANELS
6503 M:      Sumit Semwal <sumit.semwal@linaro.org>
6504 S:      Maintained
6505 T:      git git://anongit.freedesktop.org/drm/drm-misc
6506 F:      Documentation/devicetree/bindings/display/panel/novatek,nt36672a.yaml
6507 F:      drivers/gpu/drm/panel/panel-novatek-nt36672a.c
6508
6509 DRM DRIVER FOR NVIDIA GEFORCE/QUADRO GPUS
6510 M:      Ben Skeggs <bskeggs@redhat.com>
6511 M:      Karol Herbst <kherbst@redhat.com>
6512 M:      Lyude Paul <lyude@redhat.com>
6513 L:      dri-devel@lists.freedesktop.org
6514 L:      nouveau@lists.freedesktop.org
6515 S:      Supported
6516 W:      https://nouveau.freedesktop.org/
6517 Q:      https://patchwork.freedesktop.org/project/nouveau/
6518 Q:      https://gitlab.freedesktop.org/drm/nouveau/-/merge_requests
6519 B:      https://gitlab.freedesktop.org/drm/nouveau/-/issues
6520 C:      irc://irc.oftc.net/nouveau
6521 T:      git https://gitlab.freedesktop.org/drm/nouveau.git
6522 F:      drivers/gpu/drm/nouveau/
6523 F:      include/uapi/drm/nouveau_drm.h
6524
6525 DRM DRIVER FOR OLIMEX LCD-OLINUXINO PANELS
6526 M:      Stefan Mavrodiev <stefan@olimex.com>
6527 S:      Maintained
6528 F:      Documentation/devicetree/bindings/display/panel/olimex,lcd-olinuxino.yaml
6529 F:      drivers/gpu/drm/panel/panel-olimex-lcd-olinuxino.c
6530
6531 DRM DRIVER FOR PARADE PS8640 BRIDGE CHIP
6532 R:      Douglas Anderson <dianders@chromium.org>
6533 F:      Documentation/devicetree/bindings/display/bridge/ps8640.yaml
6534 F:      drivers/gpu/drm/bridge/parade-ps8640.c
6535
6536 DRM DRIVER FOR PERVASIVE DISPLAYS REPAPER PANELS
6537 M:      Noralf Trønnes <noralf@tronnes.org>
6538 S:      Maintained
6539 T:      git git://anongit.freedesktop.org/drm/drm-misc
6540 F:      Documentation/devicetree/bindings/display/repaper.txt
6541 F:      drivers/gpu/drm/tiny/repaper.c
6542
6543 DRM DRIVER FOR SOLOMON SSD130X OLED DISPLAYS
6544 M:      Javier Martinez Canillas <javierm@redhat.com>
6545 S:      Maintained
6546 T:      git git://anongit.freedesktop.org/drm/drm-misc
6547 F:      Documentation/devicetree/bindings/display/solomon,ssd1307fb.yaml
6548 F:      drivers/gpu/drm/solomon/ssd130x*
6549
6550 DRM DRIVER FOR QEMU'S CIRRUS DEVICE
6551 M:      Dave Airlie <airlied@redhat.com>
6552 M:      Gerd Hoffmann <kraxel@redhat.com>
6553 L:      virtualization@lists.linux-foundation.org
6554 S:      Obsolete
6555 W:      https://www.kraxel.org/blog/2014/10/qemu-using-cirrus-considered-harmful/
6556 T:      git git://anongit.freedesktop.org/drm/drm-misc
6557 F:      drivers/gpu/drm/tiny/cirrus.c
6558
6559 DRM DRIVER FOR QXL VIRTUAL GPU
6560 M:      Dave Airlie <airlied@redhat.com>
6561 M:      Gerd Hoffmann <kraxel@redhat.com>
6562 L:      virtualization@lists.linux-foundation.org
6563 L:      spice-devel@lists.freedesktop.org
6564 S:      Maintained
6565 T:      git git://anongit.freedesktop.org/drm/drm-misc
6566 F:      drivers/gpu/drm/qxl/
6567 F:      include/uapi/drm/qxl_drm.h
6568
6569 DRM DRIVER FOR RAGE 128 VIDEO CARDS
6570 S:      Orphan / Obsolete
6571 F:      drivers/gpu/drm/r128/
6572 F:      include/uapi/drm/r128_drm.h
6573
6574 DRM DRIVER FOR RAYDIUM RM67191 PANELS
6575 M:      Robert Chiras <robert.chiras@nxp.com>
6576 S:      Maintained
6577 F:      Documentation/devicetree/bindings/display/panel/raydium,rm67191.yaml
6578 F:      drivers/gpu/drm/panel/panel-raydium-rm67191.c
6579
6580 DRM DRIVER FOR SAMSUNG DB7430 PANELS
6581 M:      Linus Walleij <linus.walleij@linaro.org>
6582 S:      Maintained
6583 T:      git git://anongit.freedesktop.org/drm/drm-misc
6584 F:      Documentation/devicetree/bindings/display/panel/samsung,lms397kf04.yaml
6585 F:      drivers/gpu/drm/panel/panel-samsung-db7430.c
6586
6587 DRM DRIVER FOR SAMSUNG S6D27A1 PANELS
6588 M:      Markuss Broks <markuss.broks@gmail.com>
6589 S:      Maintained
6590 F:      Documentation/devicetree/bindings/display/panel/samsung,s6d27a1.yaml
6591 F:      drivers/gpu/drm/panel/panel-samsung-s6d27a1.c
6592
6593 DRM DRIVER FOR SITRONIX ST7703 PANELS
6594 M:      Guido Günther <agx@sigxcpu.org>
6595 R:      Purism Kernel Team <kernel@puri.sm>
6596 R:      Ondrej Jirman <megous@megous.com>
6597 S:      Maintained
6598 F:      Documentation/devicetree/bindings/display/panel/rocktech,jh057n00900.yaml
6599 F:      drivers/gpu/drm/panel/panel-sitronix-st7703.c
6600
6601 DRM DRIVER FOR SAVAGE VIDEO CARDS
6602 S:      Orphan / Obsolete
6603 F:      drivers/gpu/drm/savage/
6604 F:      include/uapi/drm/savage_drm.h
6605
6606 DRM DRIVER FOR SIMPLE FRAMEBUFFERS
6607 M:      Thomas Zimmermann <tzimmermann@suse.de>
6608 L:      dri-devel@lists.freedesktop.org
6609 S:      Maintained
6610 T:      git git://anongit.freedesktop.org/drm/drm-misc
6611 F:      drivers/gpu/drm/tiny/simpledrm.c
6612
6613 DRM DRIVER FOR SIS VIDEO CARDS
6614 S:      Orphan / Obsolete
6615 F:      drivers/gpu/drm/sis/
6616 F:      include/uapi/drm/sis_drm.h
6617
6618 DRM DRIVER FOR SITRONIX ST7586 PANELS
6619 M:      David Lechner <david@lechnology.com>
6620 S:      Maintained
6621 T:      git git://anongit.freedesktop.org/drm/drm-misc
6622 F:      Documentation/devicetree/bindings/display/sitronix,st7586.txt
6623 F:      drivers/gpu/drm/tiny/st7586.c
6624
6625 DRM DRIVER FOR SITRONIX ST7701 PANELS
6626 M:      Jagan Teki <jagan@amarulasolutions.com>
6627 S:      Maintained
6628 F:      Documentation/devicetree/bindings/display/panel/sitronix,st7701.yaml
6629 F:      drivers/gpu/drm/panel/panel-sitronix-st7701.c
6630
6631 DRM DRIVER FOR SITRONIX ST7735R PANELS
6632 M:      David Lechner <david@lechnology.com>
6633 S:      Maintained
6634 T:      git git://anongit.freedesktop.org/drm/drm-misc
6635 F:      Documentation/devicetree/bindings/display/sitronix,st7735r.yaml
6636 F:      drivers/gpu/drm/tiny/st7735r.c
6637
6638 DRM DRIVER FOR ST-ERICSSON MCDE
6639 M:      Linus Walleij <linus.walleij@linaro.org>
6640 S:      Maintained
6641 T:      git git://anongit.freedesktop.org/drm/drm-misc
6642 F:      Documentation/devicetree/bindings/display/ste,mcde.yaml
6643 F:      drivers/gpu/drm/mcde/
6644
6645 DRM DRIVER FOR TDFX VIDEO CARDS
6646 S:      Orphan / Obsolete
6647 F:      drivers/gpu/drm/tdfx/
6648
6649 DRM DRIVER FOR TI SN65DSI86 BRIDGE CHIP
6650 R:      Douglas Anderson <dianders@chromium.org>
6651 F:      Documentation/devicetree/bindings/display/bridge/ti,sn65dsi86.yaml
6652 F:      drivers/gpu/drm/bridge/ti-sn65dsi86.c
6653
6654 DRM DRIVER FOR TPO TPG110 PANELS
6655 M:      Linus Walleij <linus.walleij@linaro.org>
6656 S:      Maintained
6657 T:      git git://anongit.freedesktop.org/drm/drm-misc
6658 F:      Documentation/devicetree/bindings/display/panel/tpo,tpg110.yaml
6659 F:      drivers/gpu/drm/panel/panel-tpo-tpg110.c
6660
6661 DRM DRIVER FOR USB DISPLAYLINK VIDEO ADAPTERS
6662 M:      Dave Airlie <airlied@redhat.com>
6663 R:      Sean Paul <sean@poorly.run>
6664 R:      Thomas Zimmermann <tzimmermann@suse.de>
6665 L:      dri-devel@lists.freedesktop.org
6666 S:      Supported
6667 T:      git git://anongit.freedesktop.org/drm/drm-misc
6668 F:      drivers/gpu/drm/udl/
6669
6670 DRM DRIVER FOR VIRTUAL KERNEL MODESETTING (VKMS)
6671 M:      Rodrigo Siqueira <rodrigosiqueiramelo@gmail.com>
6672 M:      Melissa Wen <melissa.srw@gmail.com>
6673 R:      Haneen Mohammed <hamohammed.sa@gmail.com>
6674 R:      Daniel Vetter <daniel@ffwll.ch>
6675 L:      dri-devel@lists.freedesktop.org
6676 S:      Maintained
6677 T:      git git://anongit.freedesktop.org/drm/drm-misc
6678 F:      Documentation/gpu/vkms.rst
6679 F:      drivers/gpu/drm/vkms/
6680
6681 DRM DRIVER FOR VIRTUALBOX VIRTUAL GPU
6682 M:      Hans de Goede <hdegoede@redhat.com>
6683 L:      dri-devel@lists.freedesktop.org
6684 S:      Maintained
6685 T:      git git://anongit.freedesktop.org/drm/drm-misc
6686 F:      drivers/gpu/drm/vboxvideo/
6687
6688 DRM DRIVER FOR VMWARE VIRTUAL GPU
6689 M:      Zack Rusin <zackr@vmware.com>
6690 R:      VMware Graphics Reviewers <linux-graphics-maintainer@vmware.com>
6691 L:      dri-devel@lists.freedesktop.org
6692 S:      Supported
6693 T:      git git://anongit.freedesktop.org/drm/drm-misc
6694 F:      drivers/gpu/drm/vmwgfx/
6695 F:      include/uapi/drm/vmwgfx_drm.h
6696
6697 DRM DRIVER FOR WIDECHIPS WS2401 PANELS
6698 M:      Linus Walleij <linus.walleij@linaro.org>
6699 S:      Maintained
6700 T:      git git://anongit.freedesktop.org/drm/drm-misc
6701 F:      Documentation/devicetree/bindings/display/panel/samsung,lms380kf01.yaml
6702 F:      drivers/gpu/drm/panel/panel-widechips-ws2401.c
6703
6704 DRM DRIVERS
6705 M:      David Airlie <airlied@linux.ie>
6706 M:      Daniel Vetter <daniel@ffwll.ch>
6707 L:      dri-devel@lists.freedesktop.org
6708 S:      Maintained
6709 B:      https://gitlab.freedesktop.org/drm
6710 C:      irc://irc.oftc.net/dri-devel
6711 T:      git git://anongit.freedesktop.org/drm/drm
6712 F:      Documentation/devicetree/bindings/display/
6713 F:      Documentation/devicetree/bindings/gpu/
6714 F:      Documentation/gpu/
6715 F:      drivers/gpu/
6716 F:      include/drm/
6717 F:      include/linux/vga*
6718 F:      include/uapi/drm/
6719
6720 DRM DRIVERS AND MISC GPU PATCHES
6721 M:      Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
6722 M:      Maxime Ripard <mripard@kernel.org>
6723 M:      Thomas Zimmermann <tzimmermann@suse.de>
6724 S:      Maintained
6725 W:      https://01.org/linuxgraphics/gfx-docs/maintainer-tools/drm-misc.html
6726 T:      git git://anongit.freedesktop.org/drm/drm-misc
6727 F:      Documentation/gpu/
6728 F:      drivers/gpu/drm/*
6729 F:      drivers/gpu/vga/
6730 F:      include/drm/drm*
6731 F:      include/linux/vga*
6732 F:      include/uapi/drm/drm*
6733
6734 DRM DRIVERS FOR ALLWINNER A10
6735 M:      Maxime Ripard <mripard@kernel.org>
6736 M:      Chen-Yu Tsai <wens@csie.org>
6737 L:      dri-devel@lists.freedesktop.org
6738 S:      Supported
6739 T:      git git://anongit.freedesktop.org/drm/drm-misc
6740 F:      Documentation/devicetree/bindings/display/allwinner*
6741 F:      drivers/gpu/drm/sun4i/
6742
6743 DRM DRIVERS FOR AMLOGIC SOCS
6744 M:      Neil Armstrong <narmstrong@baylibre.com>
6745 L:      dri-devel@lists.freedesktop.org
6746 L:      linux-amlogic@lists.infradead.org
6747 S:      Supported
6748 W:      http://linux-meson.com/
6749 T:      git git://anongit.freedesktop.org/drm/drm-misc
6750 F:      Documentation/devicetree/bindings/display/amlogic,meson-dw-hdmi.yaml
6751 F:      Documentation/devicetree/bindings/display/amlogic,meson-vpu.yaml
6752 F:      Documentation/gpu/meson.rst
6753 F:      drivers/gpu/drm/meson/
6754
6755 DRM DRIVERS FOR ATMEL HLCDC
6756 M:      Sam Ravnborg <sam@ravnborg.org>
6757 M:      Boris Brezillon <bbrezillon@kernel.org>
6758 L:      dri-devel@lists.freedesktop.org
6759 S:      Supported
6760 T:      git git://anongit.freedesktop.org/drm/drm-misc
6761 F:      Documentation/devicetree/bindings/display/atmel/
6762 F:      drivers/gpu/drm/atmel-hlcdc/
6763
6764 DRM DRIVERS FOR BRIDGE CHIPS
6765 M:      Andrzej Hajda <andrzej.hajda@intel.com>
6766 M:      Neil Armstrong <narmstrong@baylibre.com>
6767 M:      Robert Foss <robert.foss@linaro.org>
6768 R:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
6769 R:      Jonas Karlman <jonas@kwiboo.se>
6770 R:      Jernej Skrabec <jernej.skrabec@gmail.com>
6771 S:      Maintained
6772 T:      git git://anongit.freedesktop.org/drm/drm-misc
6773 F:      Documentation/devicetree/bindings/display/bridge/
6774 F:      drivers/gpu/drm/bridge/
6775
6776 DRM DRIVERS FOR EXYNOS
6777 M:      Inki Dae <inki.dae@samsung.com>
6778 M:      Joonyoung Shim <jy0922.shim@samsung.com>
6779 M:      Seung-Woo Kim <sw0312.kim@samsung.com>
6780 M:      Kyungmin Park <kyungmin.park@samsung.com>
6781 L:      dri-devel@lists.freedesktop.org
6782 S:      Supported
6783 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
6784 F:      Documentation/devicetree/bindings/display/exynos/
6785 F:      Documentation/devicetree/bindings/display/samsung/
6786 F:      drivers/gpu/drm/exynos/
6787 F:      include/uapi/drm/exynos_drm.h
6788
6789 DRM DRIVERS FOR FREESCALE DCU
6790 M:      Stefan Agner <stefan@agner.ch>
6791 M:      Alison Wang <alison.wang@nxp.com>
6792 L:      dri-devel@lists.freedesktop.org
6793 S:      Supported
6794 T:      git git://anongit.freedesktop.org/drm/drm-misc
6795 F:      Documentation/devicetree/bindings/display/fsl,dcu.txt
6796 F:      Documentation/devicetree/bindings/display/fsl,tcon.txt
6797 F:      drivers/gpu/drm/fsl-dcu/
6798
6799 DRM DRIVERS FOR FREESCALE IMX
6800 M:      Philipp Zabel <p.zabel@pengutronix.de>
6801 L:      dri-devel@lists.freedesktop.org
6802 S:      Maintained
6803 F:      Documentation/devicetree/bindings/display/imx/
6804 F:      drivers/gpu/drm/imx/
6805 F:      drivers/gpu/ipu-v3/
6806
6807 DRM DRIVERS FOR GMA500 (Poulsbo, Moorestown and derivative chipsets)
6808 M:      Patrik Jakobsson <patrik.r.jakobsson@gmail.com>
6809 L:      dri-devel@lists.freedesktop.org
6810 S:      Maintained
6811 T:      git git://github.com/patjak/drm-gma500
6812 F:      drivers/gpu/drm/gma500/
6813
6814 DRM DRIVERS FOR HISILICON
6815 M:      Xinliang Liu <xinliang.liu@linaro.org>
6816 M:      Tian Tao  <tiantao6@hisilicon.com>
6817 R:      John Stultz <jstultz@google.com>
6818 R:      Xinwei Kong <kong.kongxinwei@hisilicon.com>
6819 R:      Chen Feng <puck.chen@hisilicon.com>
6820 L:      dri-devel@lists.freedesktop.org
6821 S:      Maintained
6822 T:      git git://anongit.freedesktop.org/drm/drm-misc
6823 F:      Documentation/devicetree/bindings/display/hisilicon/
6824 F:      drivers/gpu/drm/hisilicon/
6825
6826 DRM DRIVER FOR HYPERV SYNTHETIC VIDEO DEVICE
6827 M:      Deepak Rawat <drawat.floss@gmail.com>
6828 L:      linux-hyperv@vger.kernel.org
6829 L:      dri-devel@lists.freedesktop.org
6830 S:      Maintained
6831 T:      git git://anongit.freedesktop.org/drm/drm-misc
6832 F:      drivers/gpu/drm/hyperv
6833
6834 DRM DRIVERS FOR LIMA
6835 M:      Qiang Yu <yuq825@gmail.com>
6836 L:      dri-devel@lists.freedesktop.org
6837 L:      lima@lists.freedesktop.org (moderated for non-subscribers)
6838 S:      Maintained
6839 T:      git git://anongit.freedesktop.org/drm/drm-misc
6840 F:      drivers/gpu/drm/lima/
6841 F:      include/uapi/drm/lima_drm.h
6842
6843 DRM DRIVERS FOR MEDIATEK
6844 M:      Chun-Kuang Hu <chunkuang.hu@kernel.org>
6845 M:      Philipp Zabel <p.zabel@pengutronix.de>
6846 L:      dri-devel@lists.freedesktop.org
6847 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
6848 S:      Supported
6849 F:      Documentation/devicetree/bindings/display/mediatek/
6850 F:      drivers/gpu/drm/mediatek/
6851 F:      drivers/phy/mediatek/phy-mtk-hdmi*
6852 F:      drivers/phy/mediatek/phy-mtk-mipi*
6853
6854 DRM DRIVERS FOR NVIDIA TEGRA
6855 M:      Thierry Reding <thierry.reding@gmail.com>
6856 L:      dri-devel@lists.freedesktop.org
6857 L:      linux-tegra@vger.kernel.org
6858 S:      Supported
6859 T:      git git://anongit.freedesktop.org/tegra/linux.git
6860 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.yaml
6861 F:      Documentation/devicetree/bindings/gpu/host1x/
6862 F:      drivers/gpu/drm/tegra/
6863 F:      drivers/gpu/host1x/
6864 F:      include/linux/host1x.h
6865 F:      include/uapi/drm/tegra_drm.h
6866
6867 DRM DRIVERS FOR RENESAS
6868 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6869 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
6870 L:      dri-devel@lists.freedesktop.org
6871 L:      linux-renesas-soc@vger.kernel.org
6872 S:      Supported
6873 T:      git git://linuxtv.org/pinchartl/media drm/du/next
6874 F:      Documentation/devicetree/bindings/display/bridge/renesas,dsi-csi2-tx.yaml
6875 F:      Documentation/devicetree/bindings/display/bridge/renesas,dw-hdmi.yaml
6876 F:      Documentation/devicetree/bindings/display/bridge/renesas,lvds.yaml
6877 F:      Documentation/devicetree/bindings/display/renesas,du.yaml
6878 F:      drivers/gpu/drm/rcar-du/
6879 F:      drivers/gpu/drm/shmobile/
6880 F:      include/linux/platform_data/shmob_drm.h
6881
6882 DRM DRIVERS FOR ROCKCHIP
6883 M:      Sandy Huang <hjc@rock-chips.com>
6884 M:      Heiko Stübner <heiko@sntech.de>
6885 L:      dri-devel@lists.freedesktop.org
6886 S:      Maintained
6887 T:      git git://anongit.freedesktop.org/drm/drm-misc
6888 F:      Documentation/devicetree/bindings/display/rockchip/
6889 F:      drivers/gpu/drm/rockchip/
6890
6891 DRM DRIVERS FOR STI
6892 M:      Alain Volmat <alain.volmat@foss.st.com>
6893 L:      dri-devel@lists.freedesktop.org
6894 S:      Maintained
6895 T:      git git://anongit.freedesktop.org/drm/drm-misc
6896 F:      Documentation/devicetree/bindings/display/st,stih4xx.txt
6897 F:      drivers/gpu/drm/sti
6898
6899 DRM DRIVERS FOR STM
6900 M:      Yannick Fertre <yannick.fertre@foss.st.com>
6901 M:      Raphael Gallais-Pou <raphael.gallais-pou@foss.st.com>
6902 M:      Philippe Cornu <philippe.cornu@foss.st.com>
6903 L:      dri-devel@lists.freedesktop.org
6904 S:      Maintained
6905 T:      git git://anongit.freedesktop.org/drm/drm-misc
6906 F:      Documentation/devicetree/bindings/display/st,stm32-ltdc.yaml
6907 F:      drivers/gpu/drm/stm
6908
6909 DRM DRIVERS FOR TI KEYSTONE
6910 M:      Jyri Sarha <jyri.sarha@iki.fi>
6911 M:      Tomi Valkeinen <tomba@kernel.org>
6912 L:      dri-devel@lists.freedesktop.org
6913 S:      Maintained
6914 T:      git git://anongit.freedesktop.org/drm/drm-misc
6915 F:      Documentation/devicetree/bindings/display/ti/ti,am65x-dss.yaml
6916 F:      Documentation/devicetree/bindings/display/ti/ti,j721e-dss.yaml
6917 F:      Documentation/devicetree/bindings/display/ti/ti,k2g-dss.yaml
6918 F:      drivers/gpu/drm/tidss/
6919
6920 DRM DRIVERS FOR TI LCDC
6921 M:      Jyri Sarha <jyri.sarha@iki.fi>
6922 R:      Tomi Valkeinen <tomba@kernel.org>
6923 L:      dri-devel@lists.freedesktop.org
6924 S:      Maintained
6925 F:      Documentation/devicetree/bindings/display/tilcdc/
6926 F:      drivers/gpu/drm/tilcdc/
6927
6928 DRM DRIVERS FOR TI OMAP
6929 M:      Tomi Valkeinen <tomba@kernel.org>
6930 L:      dri-devel@lists.freedesktop.org
6931 S:      Maintained
6932 F:      Documentation/devicetree/bindings/display/ti/
6933 F:      drivers/gpu/drm/omapdrm/
6934
6935 DRM DRIVERS FOR V3D
6936 M:      Emma Anholt <emma@anholt.net>
6937 S:      Supported
6938 T:      git git://anongit.freedesktop.org/drm/drm-misc
6939 F:      Documentation/devicetree/bindings/gpu/brcm,bcm-v3d.yaml
6940 F:      drivers/gpu/drm/v3d/
6941 F:      include/uapi/drm/v3d_drm.h
6942
6943 DRM DRIVERS FOR VC4
6944 M:      Emma Anholt <emma@anholt.net>
6945 M:      Maxime Ripard <mripard@kernel.org>
6946 S:      Supported
6947 T:      git git://github.com/anholt/linux
6948 T:      git git://anongit.freedesktop.org/drm/drm-misc
6949 F:      Documentation/devicetree/bindings/display/brcm,bcm2835-*.yaml
6950 F:      drivers/gpu/drm/vc4/
6951 F:      include/uapi/drm/vc4_drm.h
6952
6953 DRM DRIVERS FOR VIVANTE GPU IP
6954 M:      Lucas Stach <l.stach@pengutronix.de>
6955 R:      Russell King <linux+etnaviv@armlinux.org.uk>
6956 R:      Christian Gmeiner <christian.gmeiner@gmail.com>
6957 L:      etnaviv@lists.freedesktop.org (moderated for non-subscribers)
6958 L:      dri-devel@lists.freedesktop.org
6959 S:      Maintained
6960 F:      Documentation/devicetree/bindings/gpu/vivante,gc.yaml
6961 F:      drivers/gpu/drm/etnaviv/
6962 F:      include/uapi/drm/etnaviv_drm.h
6963
6964 DRM DRIVERS FOR XEN
6965 M:      Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
6966 L:      dri-devel@lists.freedesktop.org
6967 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
6968 S:      Supported
6969 T:      git git://anongit.freedesktop.org/drm/drm-misc
6970 F:      Documentation/gpu/xen-front.rst
6971 F:      drivers/gpu/drm/xen/
6972
6973 DRM DRIVERS FOR XILINX
6974 M:      Hyun Kwon <hyun.kwon@xilinx.com>
6975 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6976 L:      dri-devel@lists.freedesktop.org
6977 S:      Maintained
6978 T:      git git://anongit.freedesktop.org/drm/drm-misc
6979 F:      Documentation/devicetree/bindings/display/xlnx/
6980 F:      drivers/gpu/drm/xlnx/
6981
6982 DRM PANEL DRIVERS
6983 M:      Thierry Reding <thierry.reding@gmail.com>
6984 R:      Sam Ravnborg <sam@ravnborg.org>
6985 L:      dri-devel@lists.freedesktop.org
6986 S:      Maintained
6987 T:      git git://anongit.freedesktop.org/drm/drm-misc
6988 F:      Documentation/devicetree/bindings/display/panel/
6989 F:      drivers/gpu/drm/drm_panel.c
6990 F:      drivers/gpu/drm/panel/
6991 F:      include/drm/drm_panel.h
6992
6993 DRM PRIVACY-SCREEN CLASS
6994 M:      Hans de Goede <hdegoede@redhat.com>
6995 L:      dri-devel@lists.freedesktop.org
6996 S:      Maintained
6997 T:      git git://anongit.freedesktop.org/drm/drm-misc
6998 F:      drivers/gpu/drm/drm_privacy_screen*
6999 F:      include/drm/drm_privacy_screen*
7000
7001 DRM TTM SUBSYSTEM
7002 M:      Christian Koenig <christian.koenig@amd.com>
7003 M:      Huang Rui <ray.huang@amd.com>
7004 L:      dri-devel@lists.freedesktop.org
7005 S:      Maintained
7006 T:      git git://anongit.freedesktop.org/drm/drm-misc
7007 F:      drivers/gpu/drm/ttm/
7008 F:      include/drm/ttm/
7009
7010 DRM GPU SCHEDULER
7011 M:      Andrey Grodzovsky <andrey.grodzovsky@amd.com>
7012 L:      dri-devel@lists.freedesktop.org
7013 S:      Maintained
7014 T:      git git://anongit.freedesktop.org/drm/drm-misc
7015 F:      drivers/gpu/drm/scheduler/
7016 F:      include/drm/gpu_scheduler.h
7017
7018 DSBR100 USB FM RADIO DRIVER
7019 M:      Alexey Klimov <klimov.linux@gmail.com>
7020 L:      linux-media@vger.kernel.org
7021 S:      Maintained
7022 T:      git git://linuxtv.org/media_tree.git
7023 F:      drivers/media/radio/dsbr100.c
7024
7025 DT3155 MEDIA DRIVER
7026 M:      Hans Verkuil <hverkuil@xs4all.nl>
7027 L:      linux-media@vger.kernel.org
7028 S:      Odd Fixes
7029 W:      https://linuxtv.org
7030 T:      git git://linuxtv.org/media_tree.git
7031 F:      drivers/media/pci/dt3155/
7032
7033 DVB_USB_AF9015 MEDIA DRIVER
7034 M:      Antti Palosaari <crope@iki.fi>
7035 L:      linux-media@vger.kernel.org
7036 S:      Maintained
7037 W:      https://linuxtv.org
7038 W:      http://palosaari.fi/linux/
7039 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7040 T:      git git://linuxtv.org/anttip/media_tree.git
7041 F:      drivers/media/usb/dvb-usb-v2/af9015*
7042
7043 DVB_USB_AF9035 MEDIA DRIVER
7044 M:      Antti Palosaari <crope@iki.fi>
7045 L:      linux-media@vger.kernel.org
7046 S:      Maintained
7047 W:      https://linuxtv.org
7048 W:      http://palosaari.fi/linux/
7049 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7050 T:      git git://linuxtv.org/anttip/media_tree.git
7051 F:      drivers/media/usb/dvb-usb-v2/af9035*
7052
7053 DVB_USB_ANYSEE MEDIA DRIVER
7054 M:      Antti Palosaari <crope@iki.fi>
7055 L:      linux-media@vger.kernel.org
7056 S:      Maintained
7057 W:      https://linuxtv.org
7058 W:      http://palosaari.fi/linux/
7059 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7060 T:      git git://linuxtv.org/anttip/media_tree.git
7061 F:      drivers/media/usb/dvb-usb-v2/anysee*
7062
7063 DVB_USB_AU6610 MEDIA DRIVER
7064 M:      Antti Palosaari <crope@iki.fi>
7065 L:      linux-media@vger.kernel.org
7066 S:      Maintained
7067 W:      https://linuxtv.org
7068 W:      http://palosaari.fi/linux/
7069 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7070 T:      git git://linuxtv.org/anttip/media_tree.git
7071 F:      drivers/media/usb/dvb-usb-v2/au6610*
7072
7073 DVB_USB_CE6230 MEDIA DRIVER
7074 M:      Antti Palosaari <crope@iki.fi>
7075 L:      linux-media@vger.kernel.org
7076 S:      Maintained
7077 W:      https://linuxtv.org
7078 W:      http://palosaari.fi/linux/
7079 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7080 T:      git git://linuxtv.org/anttip/media_tree.git
7081 F:      drivers/media/usb/dvb-usb-v2/ce6230*
7082
7083 DVB_USB_CXUSB MEDIA DRIVER
7084 M:      Michael Krufky <mkrufky@linuxtv.org>
7085 L:      linux-media@vger.kernel.org
7086 S:      Maintained
7087 W:      https://linuxtv.org
7088 W:      http://github.com/mkrufky
7089 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7090 T:      git git://linuxtv.org/media_tree.git
7091 F:      drivers/media/usb/dvb-usb/cxusb*
7092
7093 DVB_USB_EC168 MEDIA DRIVER
7094 M:      Antti Palosaari <crope@iki.fi>
7095 L:      linux-media@vger.kernel.org
7096 S:      Maintained
7097 W:      https://linuxtv.org
7098 W:      http://palosaari.fi/linux/
7099 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7100 T:      git git://linuxtv.org/anttip/media_tree.git
7101 F:      drivers/media/usb/dvb-usb-v2/ec168*
7102
7103 DVB_USB_GL861 MEDIA DRIVER
7104 M:      Antti Palosaari <crope@iki.fi>
7105 L:      linux-media@vger.kernel.org
7106 S:      Maintained
7107 W:      https://linuxtv.org
7108 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7109 T:      git git://linuxtv.org/anttip/media_tree.git
7110 F:      drivers/media/usb/dvb-usb-v2/gl861*
7111
7112 DVB_USB_MXL111SF MEDIA DRIVER
7113 M:      Michael Krufky <mkrufky@linuxtv.org>
7114 L:      linux-media@vger.kernel.org
7115 S:      Maintained
7116 W:      https://linuxtv.org
7117 W:      http://github.com/mkrufky
7118 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7119 T:      git git://linuxtv.org/mkrufky/mxl111sf.git
7120 F:      drivers/media/usb/dvb-usb-v2/mxl111sf*
7121
7122 DVB_USB_RTL28XXU MEDIA DRIVER
7123 M:      Antti Palosaari <crope@iki.fi>
7124 L:      linux-media@vger.kernel.org
7125 S:      Maintained
7126 W:      https://linuxtv.org
7127 W:      http://palosaari.fi/linux/
7128 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7129 T:      git git://linuxtv.org/anttip/media_tree.git
7130 F:      drivers/media/usb/dvb-usb-v2/rtl28xxu*
7131
7132 DVB_USB_V2 MEDIA DRIVER
7133 M:      Antti Palosaari <crope@iki.fi>
7134 L:      linux-media@vger.kernel.org
7135 S:      Maintained
7136 W:      https://linuxtv.org
7137 W:      http://palosaari.fi/linux/
7138 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7139 T:      git git://linuxtv.org/anttip/media_tree.git
7140 F:      drivers/media/usb/dvb-usb-v2/dvb_usb*
7141 F:      drivers/media/usb/dvb-usb-v2/usb_urb.c
7142
7143 DYNAMIC DEBUG
7144 M:      Jason Baron <jbaron@akamai.com>
7145 S:      Maintained
7146 F:      include/linux/dynamic_debug.h
7147 F:      lib/dynamic_debug.c
7148
7149 DYNAMIC INTERRUPT MODERATION
7150 M:      Tal Gilboa <talgi@nvidia.com>
7151 S:      Maintained
7152 F:      Documentation/networking/net_dim.rst
7153 F:      include/linux/dim.h
7154 F:      lib/dim/
7155
7156 DZ DECSTATION DZ11 SERIAL DRIVER
7157 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
7158 S:      Maintained
7159 F:      drivers/tty/serial/dz.*
7160
7161 E3X0 POWER BUTTON DRIVER
7162 M:      Moritz Fischer <moritz.fischer@ettus.com>
7163 L:      usrp-users@lists.ettus.com
7164 S:      Supported
7165 W:      http://www.ettus.com
7166 F:      Documentation/devicetree/bindings/input/e3x0-button.txt
7167 F:      drivers/input/misc/e3x0-button.c
7168
7169 E4000 MEDIA DRIVER
7170 M:      Antti Palosaari <crope@iki.fi>
7171 L:      linux-media@vger.kernel.org
7172 S:      Maintained
7173 W:      https://linuxtv.org
7174 W:      http://palosaari.fi/linux/
7175 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7176 T:      git git://linuxtv.org/anttip/media_tree.git
7177 F:      drivers/media/tuners/e4000*
7178
7179 EARTH_PT1 MEDIA DRIVER
7180 M:      Akihiro Tsukada <tskd08@gmail.com>
7181 L:      linux-media@vger.kernel.org
7182 S:      Odd Fixes
7183 F:      drivers/media/pci/pt1/
7184
7185 EARTH_PT3 MEDIA DRIVER
7186 M:      Akihiro Tsukada <tskd08@gmail.com>
7187 L:      linux-media@vger.kernel.org
7188 S:      Odd Fixes
7189 F:      drivers/media/pci/pt3/
7190
7191 EC100 MEDIA DRIVER
7192 M:      Antti Palosaari <crope@iki.fi>
7193 L:      linux-media@vger.kernel.org
7194 S:      Maintained
7195 W:      https://linuxtv.org
7196 W:      http://palosaari.fi/linux/
7197 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7198 T:      git git://linuxtv.org/anttip/media_tree.git
7199 F:      drivers/media/dvb-frontends/ec100*
7200
7201 ECRYPT FILE SYSTEM
7202 M:      Tyler Hicks <code@tyhicks.com>
7203 L:      ecryptfs@vger.kernel.org
7204 S:      Odd Fixes
7205 W:      http://ecryptfs.org
7206 W:      https://launchpad.net/ecryptfs
7207 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tyhicks/ecryptfs.git
7208 F:      Documentation/filesystems/ecryptfs.rst
7209 F:      fs/ecryptfs/
7210
7211 EDAC-AMD64
7212 M:      Yazen Ghannam <yazen.ghannam@amd.com>
7213 L:      linux-edac@vger.kernel.org
7214 S:      Supported
7215 F:      drivers/edac/amd64_edac*
7216 F:      drivers/edac/mce_amd*
7217
7218 EDAC-ARMADA
7219 M:      Jan Luebbe <jlu@pengutronix.de>
7220 L:      linux-edac@vger.kernel.org
7221 S:      Maintained
7222 F:      Documentation/devicetree/bindings/memory-controllers/marvell,mvebu-sdram-controller.yaml
7223 F:      drivers/edac/armada_xp_*
7224
7225 EDAC-AST2500
7226 M:      Stefan Schaeckeler <sschaeck@cisco.com>
7227 S:      Supported
7228 F:      Documentation/devicetree/bindings/edac/aspeed-sdram-edac.txt
7229 F:      drivers/edac/aspeed_edac.c
7230
7231 EDAC-BLUEFIELD
7232 M:      Shravan Kumar Ramani <shravankr@nvidia.com>
7233 S:      Supported
7234 F:      drivers/edac/bluefield_edac.c
7235
7236 EDAC-CALXEDA
7237 M:      Andre Przywara <andre.przywara@arm.com>
7238 L:      linux-edac@vger.kernel.org
7239 S:      Maintained
7240 F:      drivers/edac/highbank*
7241
7242 EDAC-CAVIUM OCTEON
7243 M:      Ralf Baechle <ralf@linux-mips.org>
7244 L:      linux-edac@vger.kernel.org
7245 L:      linux-mips@vger.kernel.org
7246 S:      Supported
7247 F:      drivers/edac/octeon_edac*
7248
7249 EDAC-CAVIUM THUNDERX
7250 M:      Robert Richter <rric@kernel.org>
7251 L:      linux-edac@vger.kernel.org
7252 S:      Odd Fixes
7253 F:      drivers/edac/thunderx_edac*
7254
7255 EDAC-CORE
7256 M:      Borislav Petkov <bp@alien8.de>
7257 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
7258 M:      Tony Luck <tony.luck@intel.com>
7259 R:      James Morse <james.morse@arm.com>
7260 R:      Robert Richter <rric@kernel.org>
7261 L:      linux-edac@vger.kernel.org
7262 S:      Supported
7263 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ras/ras.git edac-for-next
7264 F:      Documentation/admin-guide/ras.rst
7265 F:      Documentation/driver-api/edac.rst
7266 F:      drivers/edac/
7267 F:      include/linux/edac.h
7268
7269 EDAC-DMC520
7270 M:      Lei Wang <lewan@microsoft.com>
7271 L:      linux-edac@vger.kernel.org
7272 S:      Supported
7273 F:      drivers/edac/dmc520_edac.c
7274
7275 EDAC-E752X
7276 M:      Mark Gross <markgross@kernel.org>
7277 L:      linux-edac@vger.kernel.org
7278 S:      Maintained
7279 F:      drivers/edac/e752x_edac.c
7280
7281 EDAC-E7XXX
7282 L:      linux-edac@vger.kernel.org
7283 S:      Maintained
7284 F:      drivers/edac/e7xxx_edac.c
7285
7286 EDAC-FSL_DDR
7287 M:      York Sun <york.sun@nxp.com>
7288 L:      linux-edac@vger.kernel.org
7289 S:      Maintained
7290 F:      drivers/edac/fsl_ddr_edac.*
7291
7292 EDAC-GHES
7293 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
7294 L:      linux-edac@vger.kernel.org
7295 S:      Maintained
7296 F:      drivers/edac/ghes_edac.c
7297
7298 EDAC-I10NM
7299 M:      Tony Luck <tony.luck@intel.com>
7300 L:      linux-edac@vger.kernel.org
7301 S:      Maintained
7302 F:      drivers/edac/i10nm_base.c
7303
7304 EDAC-I3000
7305 L:      linux-edac@vger.kernel.org
7306 S:      Orphan
7307 F:      drivers/edac/i3000_edac.c
7308
7309 EDAC-I5000
7310 L:      linux-edac@vger.kernel.org
7311 S:      Maintained
7312 F:      drivers/edac/i5000_edac.c
7313
7314 EDAC-I5400
7315 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
7316 L:      linux-edac@vger.kernel.org
7317 S:      Maintained
7318 F:      drivers/edac/i5400_edac.c
7319
7320 EDAC-I7300
7321 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
7322 L:      linux-edac@vger.kernel.org
7323 S:      Maintained
7324 F:      drivers/edac/i7300_edac.c
7325
7326 EDAC-I7CORE
7327 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
7328 L:      linux-edac@vger.kernel.org
7329 S:      Maintained
7330 F:      drivers/edac/i7core_edac.c
7331
7332 EDAC-I82443BXGX
7333 M:      Tim Small <tim@buttersideup.com>
7334 L:      linux-edac@vger.kernel.org
7335 S:      Maintained
7336 F:      drivers/edac/i82443bxgx_edac.c
7337
7338 EDAC-I82975X
7339 M:      "Arvind R." <arvino55@gmail.com>
7340 L:      linux-edac@vger.kernel.org
7341 S:      Maintained
7342 F:      drivers/edac/i82975x_edac.c
7343
7344 EDAC-IE31200
7345 M:      Jason Baron <jbaron@akamai.com>
7346 L:      linux-edac@vger.kernel.org
7347 S:      Maintained
7348 F:      drivers/edac/ie31200_edac.c
7349
7350 EDAC-IGEN6
7351 M:      Tony Luck <tony.luck@intel.com>
7352 R:      Qiuxu Zhuo <qiuxu.zhuo@intel.com>
7353 L:      linux-edac@vger.kernel.org
7354 S:      Maintained
7355 F:      drivers/edac/igen6_edac.c
7356
7357 EDAC-MPC85XX
7358 M:      Johannes Thumshirn <morbidrsa@gmail.com>
7359 L:      linux-edac@vger.kernel.org
7360 S:      Maintained
7361 F:      drivers/edac/mpc85xx_edac.[ch]
7362
7363 EDAC-PASEMI
7364 M:      Egor Martovetsky <egor@pasemi.com>
7365 L:      linux-edac@vger.kernel.org
7366 S:      Maintained
7367 F:      drivers/edac/pasemi_edac.c
7368
7369 EDAC-PND2
7370 M:      Tony Luck <tony.luck@intel.com>
7371 L:      linux-edac@vger.kernel.org
7372 S:      Maintained
7373 F:      drivers/edac/pnd2_edac.[ch]
7374
7375 EDAC-QCOM
7376 M:      Channagoud Kadabi <ckadabi@codeaurora.org>
7377 M:      Venkata Narendra Kumar Gutta <vnkgutta@codeaurora.org>
7378 L:      linux-arm-msm@vger.kernel.org
7379 L:      linux-edac@vger.kernel.org
7380 S:      Maintained
7381 F:      drivers/edac/qcom_edac.c
7382
7383 EDAC-R82600
7384 M:      Tim Small <tim@buttersideup.com>
7385 L:      linux-edac@vger.kernel.org
7386 S:      Maintained
7387 F:      drivers/edac/r82600_edac.c
7388
7389 EDAC-SBRIDGE
7390 M:      Tony Luck <tony.luck@intel.com>
7391 R:      Qiuxu Zhuo <qiuxu.zhuo@intel.com>
7392 L:      linux-edac@vger.kernel.org
7393 S:      Maintained
7394 F:      drivers/edac/sb_edac.c
7395
7396 EDAC-SKYLAKE
7397 M:      Tony Luck <tony.luck@intel.com>
7398 L:      linux-edac@vger.kernel.org
7399 S:      Maintained
7400 F:      drivers/edac/skx_*.[ch]
7401
7402 EDAC-TI
7403 M:      Tero Kristo <kristo@kernel.org>
7404 L:      linux-edac@vger.kernel.org
7405 S:      Odd Fixes
7406 F:      drivers/edac/ti_edac.c
7407
7408 EDIROL UA-101/UA-1000 DRIVER
7409 M:      Clemens Ladisch <clemens@ladisch.de>
7410 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7411 S:      Maintained
7412 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
7413 F:      sound/usb/misc/ua101.c
7414
7415 EFI TEST DRIVER
7416 M:      Ivan Hu <ivan.hu@canonical.com>
7417 M:      Ard Biesheuvel <ardb@kernel.org>
7418 L:      linux-efi@vger.kernel.org
7419 S:      Maintained
7420 F:      drivers/firmware/efi/test/
7421
7422 EFI VARIABLE FILESYSTEM
7423 M:      Matthew Garrett <matthew.garrett@nebula.com>
7424 M:      Jeremy Kerr <jk@ozlabs.org>
7425 M:      Ard Biesheuvel <ardb@kernel.org>
7426 L:      linux-efi@vger.kernel.org
7427 S:      Maintained
7428 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
7429 F:      fs/efivarfs/
7430
7431 EFIFB FRAMEBUFFER DRIVER
7432 M:      Peter Jones <pjones@redhat.com>
7433 L:      linux-fbdev@vger.kernel.org
7434 S:      Maintained
7435 F:      drivers/video/fbdev/efifb.c
7436
7437 EFS FILESYSTEM
7438 S:      Orphan
7439 W:      http://aeschi.ch.eu.org/efs/
7440 F:      fs/efs/
7441
7442 EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
7443 M:      Douglas Miller <dougmill@linux.ibm.com>
7444 L:      netdev@vger.kernel.org
7445 S:      Maintained
7446 F:      drivers/net/ethernet/ibm/ehea/
7447
7448 ELM327 CAN NETWORK DRIVER
7449 M:      Max Staudt <max@enpas.org>
7450 L:      linux-can@vger.kernel.org
7451 S:      Maintained
7452 F:      Documentation/networking/device_drivers/can/can327.rst
7453 F:      drivers/net/can/can327.c
7454
7455 EM28XX VIDEO4LINUX DRIVER
7456 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
7457 L:      linux-media@vger.kernel.org
7458 S:      Maintained
7459 W:      https://linuxtv.org
7460 T:      git git://linuxtv.org/media_tree.git
7461 F:      Documentation/admin-guide/media/em28xx*
7462 F:      drivers/media/usb/em28xx/
7463
7464 EMBEDDED LINUX
7465 M:      Matt Mackall <mpm@selenic.com>
7466 M:      David Woodhouse <dwmw2@infradead.org>
7467 L:      linux-embedded@vger.kernel.org
7468 S:      Maintained
7469
7470 EMMC CMDQ HOST CONTROLLER INTERFACE (CQHCI) DRIVER
7471 M:      Adrian Hunter <adrian.hunter@intel.com>
7472 M:      Ritesh Harjani <riteshh@codeaurora.org>
7473 M:      Asutosh Das <asutoshd@codeaurora.org>
7474 L:      linux-mmc@vger.kernel.org
7475 S:      Maintained
7476 F:      drivers/mmc/host/cqhci*
7477
7478 EMULEX 10Gbps iSCSI - OneConnect DRIVER
7479 M:      Ketan Mukadam <ketan.mukadam@broadcom.com>
7480 L:      linux-scsi@vger.kernel.org
7481 S:      Supported
7482 W:      http://www.broadcom.com
7483 F:      drivers/scsi/be2iscsi/
7484
7485 EMULEX 10Gbps NIC BE2, BE3-R, Lancer, Skyhawk-R DRIVER (be2net)
7486 M:      Ajit Khaparde <ajit.khaparde@broadcom.com>
7487 M:      Sriharsha Basavapatna <sriharsha.basavapatna@broadcom.com>
7488 M:      Somnath Kotur <somnath.kotur@broadcom.com>
7489 L:      netdev@vger.kernel.org
7490 S:      Supported
7491 W:      http://www.emulex.com
7492 F:      drivers/net/ethernet/emulex/benet/
7493
7494 EMULEX ONECONNECT ROCE DRIVER
7495 M:      Selvin Xavier <selvin.xavier@broadcom.com>
7496 L:      linux-rdma@vger.kernel.org
7497 S:      Odd Fixes
7498 W:      http://www.broadcom.com
7499 F:      drivers/infiniband/hw/ocrdma/
7500 F:      include/uapi/rdma/ocrdma-abi.h
7501
7502 EMULEX/BROADCOM LPFC FC/FCOE SCSI DRIVER
7503 M:      James Smart <james.smart@broadcom.com>
7504 M:      Dick Kennedy <dick.kennedy@broadcom.com>
7505 L:      linux-scsi@vger.kernel.org
7506 S:      Supported
7507 W:      http://www.broadcom.com
7508 F:      drivers/scsi/lpfc/
7509
7510 EMULEX/BROADCOM EFCT FC/FCOE SCSI TARGET DRIVER
7511 M:      James Smart <james.smart@broadcom.com>
7512 M:      Ram Vegesna <ram.vegesna@broadcom.com>
7513 L:      linux-scsi@vger.kernel.org
7514 L:      target-devel@vger.kernel.org
7515 S:      Supported
7516 W:      http://www.broadcom.com
7517 F:      drivers/scsi/elx/
7518
7519 ENE CB710 FLASH CARD READER DRIVER
7520 M:      Michał Mirosław <mirq-linux@rere.qmqm.pl>
7521 S:      Maintained
7522 F:      drivers/misc/cb710/
7523 F:      drivers/mmc/host/cb710-mmc.*
7524 F:      include/linux/cb710.h
7525
7526 ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
7527 M:      Maxim Levitsky <maximlevitsky@gmail.com>
7528 S:      Maintained
7529 F:      drivers/media/rc/ene_ir.*
7530
7531 EPAPR HYPERVISOR BYTE CHANNEL DEVICE DRIVER
7532 M:      Laurentiu Tudor <laurentiu.tudor@nxp.com>
7533 L:      linuxppc-dev@lists.ozlabs.org
7534 S:      Maintained
7535 F:      drivers/tty/ehv_bytechan.c
7536
7537 EPSON S1D13XXX FRAMEBUFFER DRIVER
7538 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
7539 S:      Maintained
7540 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
7541 F:      drivers/video/fbdev/s1d13xxxfb.c
7542 F:      include/video/s1d13xxxfb.h
7543
7544 EROFS FILE SYSTEM
7545 M:      Gao Xiang <xiang@kernel.org>
7546 M:      Chao Yu <chao@kernel.org>
7547 R:      Yue Hu <huyue2@coolpad.com>
7548 R:      Jeffle Xu <jefflexu@linux.alibaba.com>
7549 L:      linux-erofs@lists.ozlabs.org
7550 S:      Maintained
7551 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs.git
7552 F:      Documentation/filesystems/erofs.rst
7553 F:      fs/erofs/
7554 F:      include/trace/events/erofs.h
7555
7556 ERRSEQ ERROR TRACKING INFRASTRUCTURE
7557 M:      Jeff Layton <jlayton@kernel.org>
7558 S:      Maintained
7559 F:      include/linux/errseq.h
7560 F:      lib/errseq.c
7561
7562 ESD CAN/USB DRIVERS
7563 M:      Frank Jungclaus <frank.jungclaus@esd.eu>
7564 R:      socketcan@esd.eu
7565 L:      linux-can@vger.kernel.org
7566 S:      Maintained
7567 F:      drivers/net/can/usb/esd_usb.c
7568
7569 ET131X NETWORK DRIVER
7570 M:      Mark Einon <mark.einon@gmail.com>
7571 S:      Odd Fixes
7572 F:      drivers/net/ethernet/agere/
7573
7574 ETAS ES58X CAN/USB DRIVER
7575 M:      Vincent Mailhol <mailhol.vincent@wanadoo.fr>
7576 L:      linux-can@vger.kernel.org
7577 S:      Maintained
7578 F:      drivers/net/can/usb/etas_es58x/
7579
7580 ETHERNET BRIDGE
7581 M:      Roopa Prabhu <roopa@nvidia.com>
7582 M:      Nikolay Aleksandrov <razor@blackwall.org>
7583 L:      bridge@lists.linux-foundation.org (moderated for non-subscribers)
7584 L:      netdev@vger.kernel.org
7585 S:      Maintained
7586 W:      http://www.linuxfoundation.org/en/Net:Bridge
7587 F:      include/linux/netfilter_bridge/
7588 F:      net/bridge/
7589
7590 ETHERNET PHY LIBRARY
7591 M:      Andrew Lunn <andrew@lunn.ch>
7592 M:      Heiner Kallweit <hkallweit1@gmail.com>
7593 R:      Russell King <linux@armlinux.org.uk>
7594 L:      netdev@vger.kernel.org
7595 S:      Maintained
7596 F:      Documentation/ABI/testing/sysfs-class-net-phydev
7597 F:      Documentation/devicetree/bindings/net/ethernet-phy.yaml
7598 F:      Documentation/devicetree/bindings/net/mdio*
7599 F:      Documentation/devicetree/bindings/net/qca,ar803x.yaml
7600 F:      Documentation/networking/phy.rst
7601 F:      drivers/net/mdio/
7602 F:      drivers/net/mdio/acpi_mdio.c
7603 F:      drivers/net/mdio/fwnode_mdio.c
7604 F:      drivers/net/mdio/of_mdio.c
7605 F:      drivers/net/pcs/
7606 F:      drivers/net/phy/
7607 F:      include/dt-bindings/net/qca-ar803x.h
7608 F:      include/linux/linkmode.h
7609 F:      include/linux/*mdio*.h
7610 F:      include/linux/mdio/*.h
7611 F:      include/linux/mii.h
7612 F:      include/linux/of_net.h
7613 F:      include/linux/phy.h
7614 F:      include/linux/phy_fixed.h
7615 F:      include/linux/platform_data/mdio-bcm-unimac.h
7616 F:      include/linux/platform_data/mdio-gpio.h
7617 F:      include/trace/events/mdio.h
7618 F:      include/uapi/linux/mdio.h
7619 F:      include/uapi/linux/mii.h
7620 F:      net/core/of_net.c
7621
7622 EXEC & BINFMT API
7623 R:      Eric Biederman <ebiederm@xmission.com>
7624 R:      Kees Cook <keescook@chromium.org>
7625 L:      linux-mm@kvack.org
7626 S:      Supported
7627 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/execve
7628 F:      arch/alpha/kernel/binfmt_loader.c
7629 F:      fs/*binfmt_*.c
7630 F:      fs/exec.c
7631 F:      include/linux/binfmts.h
7632 F:      include/linux/elf.h
7633 F:      include/uapi/linux/binfmts.h
7634 F:      include/uapi/linux/elf.h
7635 F:      tools/testing/selftests/exec/
7636 N:      asm/elf.h
7637 N:      binfmt
7638
7639 EXFAT FILE SYSTEM
7640 M:      Namjae Jeon <linkinjeon@kernel.org>
7641 M:      Sungjong Seo <sj1557.seo@samsung.com>
7642 L:      linux-fsdevel@vger.kernel.org
7643 S:      Maintained
7644 F:      fs/exfat/
7645
7646 EXT2 FILE SYSTEM
7647 M:      Jan Kara <jack@suse.com>
7648 L:      linux-ext4@vger.kernel.org
7649 S:      Maintained
7650 F:      Documentation/filesystems/ext2.rst
7651 F:      fs/ext2/
7652 F:      include/linux/ext2*
7653
7654 EXT4 FILE SYSTEM
7655 M:      "Theodore Ts'o" <tytso@mit.edu>
7656 M:      Andreas Dilger <adilger.kernel@dilger.ca>
7657 L:      linux-ext4@vger.kernel.org
7658 S:      Maintained
7659 W:      http://ext4.wiki.kernel.org
7660 Q:      http://patchwork.ozlabs.org/project/linux-ext4/list/
7661 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tytso/ext4.git
7662 F:      Documentation/filesystems/ext4/
7663 F:      fs/ext4/
7664 F:      include/trace/events/ext4.h
7665
7666 Extended Verification Module (EVM)
7667 M:      Mimi Zohar <zohar@linux.ibm.com>
7668 L:      linux-integrity@vger.kernel.org
7669 S:      Supported
7670 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/zohar/linux-integrity.git
7671 F:      security/integrity/evm/
7672 F:      security/integrity/
7673
7674 EXTENSIBLE FIRMWARE INTERFACE (EFI)
7675 M:      Ard Biesheuvel <ardb@kernel.org>
7676 L:      linux-efi@vger.kernel.org
7677 S:      Maintained
7678 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
7679 F:      Documentation/admin-guide/efi-stub.rst
7680 F:      arch/*/include/asm/efi.h
7681 F:      arch/*/kernel/efi.c
7682 F:      arch/arm/boot/compressed/efi-header.S
7683 F:      arch/arm64/kernel/efi-entry.S
7684 F:      arch/x86/platform/efi/
7685 F:      drivers/firmware/efi/
7686 F:      include/linux/efi*.h
7687
7688 EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
7689 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
7690 M:      Chanwoo Choi <cw00.choi@samsung.com>
7691 L:      linux-kernel@vger.kernel.org
7692 S:      Maintained
7693 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git
7694 F:      Documentation/devicetree/bindings/extcon/
7695 F:      Documentation/firmware-guide/acpi/extcon-intel-int3496.rst
7696 F:      drivers/extcon/
7697 F:      include/linux/extcon.h
7698 F:      include/linux/extcon/
7699
7700 EXTRA BOOT CONFIG
7701 M:      Masami Hiramatsu <mhiramat@kernel.org>
7702 S:      Maintained
7703 F:      Documentation/admin-guide/bootconfig.rst
7704 F:      fs/proc/bootconfig.c
7705 F:      include/linux/bootconfig.h
7706 F:      lib/bootconfig-data.S
7707 F:      lib/bootconfig.c
7708 F:      tools/bootconfig/*
7709 F:      tools/bootconfig/scripts/*
7710
7711 EXYNOS DP DRIVER
7712 M:      Jingoo Han <jingoohan1@gmail.com>
7713 L:      dri-devel@lists.freedesktop.org
7714 S:      Maintained
7715 F:      drivers/gpu/drm/exynos/exynos_dp*
7716
7717 EXYNOS SYSMMU (IOMMU) driver
7718 M:      Marek Szyprowski <m.szyprowski@samsung.com>
7719 L:      iommu@lists.linux.dev
7720 S:      Maintained
7721 F:      drivers/iommu/exynos-iommu.c
7722
7723 F2FS FILE SYSTEM
7724 M:      Jaegeuk Kim <jaegeuk@kernel.org>
7725 M:      Chao Yu <chao@kernel.org>
7726 L:      linux-f2fs-devel@lists.sourceforge.net
7727 S:      Maintained
7728 W:      https://f2fs.wiki.kernel.org/
7729 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
7730 F:      Documentation/ABI/testing/sysfs-fs-f2fs
7731 F:      Documentation/filesystems/f2fs.rst
7732 F:      fs/f2fs/
7733 F:      include/linux/f2fs_fs.h
7734 F:      include/trace/events/f2fs.h
7735 F:      include/uapi/linux/f2fs.h
7736
7737 F71805F HARDWARE MONITORING DRIVER
7738 M:      Jean Delvare <jdelvare@suse.com>
7739 L:      linux-hwmon@vger.kernel.org
7740 S:      Maintained
7741 F:      Documentation/hwmon/f71805f.rst
7742 F:      drivers/hwmon/f71805f.c
7743
7744 FADDR2LINE
7745 M:      Josh Poimboeuf <jpoimboe@kernel.org>
7746 S:      Maintained
7747 F:      scripts/faddr2line
7748
7749 FAILOVER MODULE
7750 M:      Sridhar Samudrala <sridhar.samudrala@intel.com>
7751 L:      netdev@vger.kernel.org
7752 S:      Supported
7753 F:      Documentation/networking/failover.rst
7754 F:      include/net/failover.h
7755 F:      net/core/failover.c
7756
7757 FANOTIFY
7758 M:      Jan Kara <jack@suse.cz>
7759 R:      Amir Goldstein <amir73il@gmail.com>
7760 R:      Matthew Bobrowski <repnop@google.com>
7761 L:      linux-fsdevel@vger.kernel.org
7762 S:      Maintained
7763 F:      fs/notify/fanotify/
7764 F:      include/linux/fanotify.h
7765 F:      include/uapi/linux/fanotify.h
7766
7767 FARSYNC SYNCHRONOUS DRIVER
7768 M:      Kevin Curtis <kevin.curtis@farsite.co.uk>
7769 S:      Supported
7770 W:      http://www.farsite.co.uk/
7771 F:      drivers/net/wan/farsync.*
7772
7773 FAULT INJECTION SUPPORT
7774 M:      Akinobu Mita <akinobu.mita@gmail.com>
7775 S:      Supported
7776 F:      Documentation/fault-injection/
7777 F:      lib/fault-inject.c
7778
7779 FBTFT Framebuffer drivers
7780 L:      dri-devel@lists.freedesktop.org
7781 L:      linux-fbdev@vger.kernel.org
7782 S:      Orphan
7783 F:      drivers/staging/fbtft/
7784
7785 FC0011 TUNER DRIVER
7786 M:      Michael Buesch <m@bues.ch>
7787 L:      linux-media@vger.kernel.org
7788 S:      Maintained
7789 F:      drivers/media/tuners/fc0011.c
7790 F:      drivers/media/tuners/fc0011.h
7791
7792 FC2580 MEDIA DRIVER
7793 M:      Antti Palosaari <crope@iki.fi>
7794 L:      linux-media@vger.kernel.org
7795 S:      Maintained
7796 W:      https://linuxtv.org
7797 W:      http://palosaari.fi/linux/
7798 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7799 T:      git git://linuxtv.org/anttip/media_tree.git
7800 F:      drivers/media/tuners/fc2580*
7801
7802 FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
7803 M:      Hannes Reinecke <hare@suse.de>
7804 L:      linux-scsi@vger.kernel.org
7805 S:      Supported
7806 W:      www.Open-FCoE.org
7807 F:      drivers/scsi/fcoe/
7808 F:      drivers/scsi/libfc/
7809 F:      include/scsi/fc/
7810 F:      include/scsi/libfc.h
7811 F:      include/scsi/libfcoe.h
7812 F:      include/uapi/scsi/fc/
7813
7814 FILE LOCKING (flock() and fcntl()/lockf())
7815 M:      Jeff Layton <jlayton@kernel.org>
7816 M:      Chuck Lever <chuck.lever@oracle.com>
7817 L:      linux-fsdevel@vger.kernel.org
7818 S:      Maintained
7819 F:      fs/fcntl.c
7820 F:      fs/locks.c
7821 F:      include/linux/fcntl.h
7822 F:      include/uapi/linux/fcntl.h
7823
7824 FILESYSTEM DIRECT ACCESS (DAX)
7825 M:      Dan Williams <dan.j.williams@intel.com>
7826 R:      Matthew Wilcox <willy@infradead.org>
7827 R:      Jan Kara <jack@suse.cz>
7828 L:      linux-fsdevel@vger.kernel.org
7829 L:      nvdimm@lists.linux.dev
7830 S:      Supported
7831 F:      fs/dax.c
7832 F:      include/linux/dax.h
7833 F:      include/trace/events/fs_dax.h
7834
7835 FILESYSTEMS (VFS and infrastructure)
7836 M:      Alexander Viro <viro@zeniv.linux.org.uk>
7837 L:      linux-fsdevel@vger.kernel.org
7838 S:      Maintained
7839 F:      fs/*
7840 F:      include/linux/fs.h
7841 F:      include/linux/fs_types.h
7842 F:      include/uapi/linux/fs.h
7843 F:      include/uapi/linux/openat2.h
7844
7845 FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
7846 M:      Riku Voipio <riku.voipio@iki.fi>
7847 L:      linux-hwmon@vger.kernel.org
7848 S:      Maintained
7849 F:      drivers/hwmon/f75375s.c
7850 F:      include/linux/f75375s.h
7851
7852 FIREWIRE AUDIO DRIVERS and IEC 61883-1/6 PACKET STREAMING ENGINE
7853 M:      Clemens Ladisch <clemens@ladisch.de>
7854 M:      Takashi Sakamoto <o-takashi@sakamocchi.jp>
7855 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7856 S:      Maintained
7857 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
7858 F:      include/uapi/sound/firewire.h
7859 F:      sound/firewire/
7860
7861 FIREWIRE MEDIA DRIVERS (firedtv)
7862 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
7863 L:      linux-media@vger.kernel.org
7864 L:      linux1394-devel@lists.sourceforge.net
7865 S:      Maintained
7866 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
7867 F:      drivers/media/firewire/
7868
7869 FIREWIRE SBP-2 TARGET
7870 M:      Chris Boot <bootc@bootc.net>
7871 L:      linux-scsi@vger.kernel.org
7872 L:      target-devel@vger.kernel.org
7873 L:      linux1394-devel@lists.sourceforge.net
7874 S:      Maintained
7875 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
7876 F:      drivers/target/sbp/
7877
7878 FIREWIRE SUBSYSTEM
7879 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
7880 L:      linux1394-devel@lists.sourceforge.net
7881 S:      Maintained
7882 W:      http://ieee1394.wiki.kernel.org/
7883 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
7884 F:      drivers/firewire/
7885 F:      include/linux/firewire.h
7886 F:      include/uapi/linux/firewire*.h
7887 F:      tools/firewire/
7888
7889 FIRMWARE FRAMEWORK FOR ARMV8-A
7890 M:      Sudeep Holla <sudeep.holla@arm.com>
7891 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7892 S:      Maintained
7893 F:      drivers/firmware/arm_ffa/
7894 F:      include/linux/arm_ffa.h
7895
7896 FIRMWARE LOADER (request_firmware)
7897 M:      Luis Chamberlain <mcgrof@kernel.org>
7898 M:      Russ Weight <russell.h.weight@intel.com>
7899 L:      linux-kernel@vger.kernel.org
7900 S:      Maintained
7901 F:      Documentation/firmware_class/
7902 F:      drivers/base/firmware_loader/
7903 F:      include/linux/firmware.h
7904
7905 FLEXTIMER FTM-QUADDEC DRIVER
7906 M:      Patrick Havelange <patrick.havelange@essensium.com>
7907 L:      linux-iio@vger.kernel.org
7908 S:      Maintained
7909 F:      Documentation/devicetree/bindings/counter/ftm-quaddec.txt
7910 F:      drivers/counter/ftm-quaddec.c
7911
7912 FLOPPY DRIVER
7913 M:      Denis Efremov <efremov@linux.com>
7914 L:      linux-block@vger.kernel.org
7915 S:      Odd Fixes
7916 F:      drivers/block/floppy.c
7917
7918 FLYSKY FSIA6B RC RECEIVER
7919 M:      Markus Koch <markus@notsyncing.net>
7920 L:      linux-input@vger.kernel.org
7921 S:      Maintained
7922 F:      drivers/input/joystick/fsia6b.c
7923
7924 FOCUSRITE SCARLETT GEN 2/3 MIXER DRIVER
7925 M:      Geoffrey D. Bennett <g@b4.vu>
7926 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7927 S:      Maintained
7928 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
7929 F:      sound/usb/mixer_scarlett_gen2.c
7930
7931 FORCEDETH GIGABIT ETHERNET DRIVER
7932 M:      Rain River <rain.1986.08.12@gmail.com>
7933 M:      Zhu Yanjun <zyjzyj2000@gmail.com>
7934 L:      netdev@vger.kernel.org
7935 S:      Maintained
7936 F:      drivers/net/ethernet/nvidia/*
7937
7938 FORTIFY_SOURCE
7939 M:      Kees Cook <keescook@chromium.org>
7940 L:      linux-hardening@vger.kernel.org
7941 S:      Supported
7942 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/hardening
7943 F:      include/linux/fortify-string.h
7944 F:      lib/test_fortify/*
7945 F:      scripts/test_fortify.sh
7946 K:      \b__NO_FORTIFY\b
7947
7948 FPGA DFL DRIVERS
7949 M:      Wu Hao <hao.wu@intel.com>
7950 R:      Tom Rix <trix@redhat.com>
7951 L:      linux-fpga@vger.kernel.org
7952 S:      Maintained
7953 F:      Documentation/ABI/testing/sysfs-bus-dfl*
7954 F:      Documentation/fpga/dfl.rst
7955 F:      drivers/fpga/dfl*
7956 F:      drivers/uio/uio_dfl.c
7957 F:      include/linux/dfl.h
7958 F:      include/uapi/linux/fpga-dfl.h
7959
7960 FPGA MANAGER FRAMEWORK
7961 M:      Moritz Fischer <mdf@kernel.org>
7962 M:      Wu Hao <hao.wu@intel.com>
7963 M:      Xu Yilun <yilun.xu@intel.com>
7964 R:      Tom Rix <trix@redhat.com>
7965 L:      linux-fpga@vger.kernel.org
7966 S:      Maintained
7967 Q:      http://patchwork.kernel.org/project/linux-fpga/list/
7968 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/fpga/linux-fpga.git
7969 F:      Documentation/devicetree/bindings/fpga/
7970 F:      Documentation/driver-api/fpga/
7971 F:      Documentation/fpga/
7972 F:      drivers/fpga/
7973 F:      include/linux/fpga/
7974
7975 FPU EMULATOR
7976 M:      Bill Metzenthen <billm@melbpc.org.au>
7977 S:      Maintained
7978 W:      http://floatingpoint.sourceforge.net/emulator/index.html
7979 F:      arch/x86/math-emu/
7980
7981 FRAMEBUFFER CORE
7982 M:      Daniel Vetter <daniel@ffwll.ch>
7983 F:      drivers/video/fbdev/core/
7984 S:      Odd Fixes
7985 T:      git git://anongit.freedesktop.org/drm/drm-misc
7986
7987 FRAMEBUFFER LAYER
7988 M:      Helge Deller <deller@gmx.de>
7989 L:      linux-fbdev@vger.kernel.org
7990 L:      dri-devel@lists.freedesktop.org
7991 S:      Maintained
7992 Q:      http://patchwork.kernel.org/project/linux-fbdev/list/
7993 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/deller/linux-fbdev.git
7994 F:      Documentation/fb/
7995 F:      drivers/video/
7996 F:      include/linux/fb.h
7997 F:      include/uapi/linux/fb.h
7998 F:      include/uapi/video/
7999 F:      include/video/
8000
8001 FREESCALE CAAM (Cryptographic Acceleration and Assurance Module) DRIVER
8002 M:      Horia Geantă <horia.geanta@nxp.com>
8003 M:      Pankaj Gupta <pankaj.gupta@nxp.com>
8004 M:      Gaurav Jain <gaurav.jain@nxp.com>
8005 L:      linux-crypto@vger.kernel.org
8006 S:      Maintained
8007 F:      Documentation/devicetree/bindings/crypto/fsl-sec4.txt
8008 F:      drivers/crypto/caam/
8009
8010 FREESCALE COLDFIRE M5441X MMC DRIVER
8011 M:      Angelo Dureghello <angelo.dureghello@timesys.com>
8012 L:      linux-mmc@vger.kernel.org
8013 S:      Maintained
8014 F:      drivers/mmc/host/sdhci-esdhc-mcf.c
8015 F:      include/linux/platform_data/mmc-esdhc-mcf.h
8016
8017 FREESCALE DIU FRAMEBUFFER DRIVER
8018 M:      Timur Tabi <timur@kernel.org>
8019 L:      linux-fbdev@vger.kernel.org
8020 S:      Maintained
8021 F:      drivers/video/fbdev/fsl-diu-fb.*
8022
8023 FREESCALE DMA DRIVER
8024 M:      Li Yang <leoyang.li@nxp.com>
8025 M:      Zhang Wei <zw@zh-kernel.org>
8026 L:      linuxppc-dev@lists.ozlabs.org
8027 S:      Maintained
8028 F:      drivers/dma/fsldma.*
8029
8030 FREESCALE DSPI DRIVER
8031 M:      Vladimir Oltean <olteanv@gmail.com>
8032 L:      linux-spi@vger.kernel.org
8033 S:      Maintained
8034 F:      Documentation/devicetree/bindings/spi/spi-fsl-dspi.txt
8035 F:      drivers/spi/spi-fsl-dspi.c
8036 F:      include/linux/spi/spi-fsl-dspi.h
8037
8038 FREESCALE ENETC ETHERNET DRIVERS
8039 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
8040 L:      netdev@vger.kernel.org
8041 S:      Maintained
8042 F:      drivers/net/ethernet/freescale/enetc/
8043
8044 FREESCALE eTSEC ETHERNET DRIVER (GIANFAR)
8045 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
8046 L:      netdev@vger.kernel.org
8047 S:      Maintained
8048 F:      Documentation/devicetree/bindings/net/fsl-tsec-phy.txt
8049 F:      drivers/net/ethernet/freescale/gianfar*
8050
8051 FREESCALE GPMI NAND DRIVER
8052 M:      Han Xu <han.xu@nxp.com>
8053 L:      linux-mtd@lists.infradead.org
8054 S:      Maintained
8055 F:      drivers/mtd/nand/raw/gpmi-nand/*
8056
8057 FREESCALE I2C CPM DRIVER
8058 M:      Jochen Friedrich <jochen@scram.de>
8059 L:      linuxppc-dev@lists.ozlabs.org
8060 L:      linux-i2c@vger.kernel.org
8061 S:      Maintained
8062 F:      drivers/i2c/busses/i2c-cpm.c
8063
8064 FREESCALE IMX / MXC FEC DRIVER
8065 M:      Joakim Zhang <qiangqing.zhang@nxp.com>
8066 L:      netdev@vger.kernel.org
8067 S:      Maintained
8068 F:      Documentation/devicetree/bindings/net/fsl,fec.yaml
8069 F:      drivers/net/ethernet/freescale/fec.h
8070 F:      drivers/net/ethernet/freescale/fec_main.c
8071 F:      drivers/net/ethernet/freescale/fec_ptp.c
8072
8073 FREESCALE IMX / MXC FRAMEBUFFER DRIVER
8074 M:      Sascha Hauer <s.hauer@pengutronix.de>
8075 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
8076 L:      linux-fbdev@vger.kernel.org
8077 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8078 S:      Maintained
8079 F:      drivers/video/fbdev/imxfb.c
8080 F:      include/linux/platform_data/video-imxfb.h
8081
8082 FREESCALE IMX DDR PMU DRIVER
8083 M:      Frank Li <Frank.li@nxp.com>
8084 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8085 S:      Maintained
8086 F:      Documentation/admin-guide/perf/imx-ddr.rst
8087 F:      Documentation/devicetree/bindings/perf/fsl-imx-ddr.yaml
8088 F:      drivers/perf/fsl_imx8_ddr_perf.c
8089
8090 FREESCALE IMX I2C DRIVER
8091 M:      Oleksij Rempel <o.rempel@pengutronix.de>
8092 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
8093 L:      linux-i2c@vger.kernel.org
8094 S:      Maintained
8095 F:      Documentation/devicetree/bindings/i2c/i2c-imx.yaml
8096 F:      drivers/i2c/busses/i2c-imx.c
8097
8098 FREESCALE IMX LPI2C DRIVER
8099 M:      Dong Aisheng <aisheng.dong@nxp.com>
8100 L:      linux-i2c@vger.kernel.org
8101 L:      linux-imx@nxp.com
8102 S:      Maintained
8103 F:      Documentation/devicetree/bindings/i2c/i2c-imx-lpi2c.yaml
8104 F:      drivers/i2c/busses/i2c-imx-lpi2c.c
8105
8106 FREESCALE MPC I2C DRIVER
8107 M:      Chris Packham <chris.packham@alliedtelesis.co.nz>
8108 L:      linux-i2c@vger.kernel.org
8109 S:      Maintained
8110 F:      Documentation/devicetree/bindings/i2c/i2c-mpc.yaml
8111 F:      drivers/i2c/busses/i2c-mpc.c
8112
8113 FREESCALE QORIQ DPAA ETHERNET DRIVER
8114 M:      Madalin Bucur <madalin.bucur@nxp.com>
8115 L:      netdev@vger.kernel.org
8116 S:      Maintained
8117 F:      drivers/net/ethernet/freescale/dpaa
8118
8119 FREESCALE QORIQ DPAA FMAN DRIVER
8120 M:      Madalin Bucur <madalin.bucur@nxp.com>
8121 L:      netdev@vger.kernel.org
8122 S:      Maintained
8123 F:      Documentation/devicetree/bindings/net/fsl-fman.txt
8124 F:      drivers/net/ethernet/freescale/fman
8125
8126 FREESCALE QORIQ PTP CLOCK DRIVER
8127 M:      Yangbo Lu <yangbo.lu@nxp.com>
8128 L:      netdev@vger.kernel.org
8129 S:      Maintained
8130 F:      Documentation/devicetree/bindings/ptp/ptp-qoriq.txt
8131 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-ptp*
8132 F:      drivers/net/ethernet/freescale/dpaa2/dprtc*
8133 F:      drivers/net/ethernet/freescale/enetc/enetc_ptp.c
8134 F:      drivers/ptp/ptp_qoriq.c
8135 F:      drivers/ptp/ptp_qoriq_debugfs.c
8136 F:      include/linux/fsl/ptp_qoriq.h
8137
8138 FREESCALE QUAD SPI DRIVER
8139 M:      Han Xu <han.xu@nxp.com>
8140 L:      linux-spi@vger.kernel.org
8141 S:      Maintained
8142 F:      Documentation/devicetree/bindings/spi/fsl,spi-fsl-qspi.yaml
8143 F:      drivers/spi/spi-fsl-qspi.c
8144
8145 FREESCALE QUICC ENGINE LIBRARY
8146 M:      Qiang Zhao <qiang.zhao@nxp.com>
8147 L:      linuxppc-dev@lists.ozlabs.org
8148 S:      Maintained
8149 F:      drivers/soc/fsl/qe/
8150 F:      include/soc/fsl/qe/
8151
8152 FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
8153 M:      Li Yang <leoyang.li@nxp.com>
8154 L:      netdev@vger.kernel.org
8155 L:      linuxppc-dev@lists.ozlabs.org
8156 S:      Maintained
8157 F:      drivers/net/ethernet/freescale/ucc_geth*
8158
8159 FREESCALE QUICC ENGINE UCC HDLC DRIVER
8160 M:      Zhao Qiang <qiang.zhao@nxp.com>
8161 L:      netdev@vger.kernel.org
8162 L:      linuxppc-dev@lists.ozlabs.org
8163 S:      Maintained
8164 F:      drivers/net/wan/fsl_ucc_hdlc*
8165
8166 FREESCALE QUICC ENGINE UCC UART DRIVER
8167 M:      Timur Tabi <timur@kernel.org>
8168 L:      linuxppc-dev@lists.ozlabs.org
8169 S:      Maintained
8170 F:      drivers/tty/serial/ucc_uart.c
8171
8172 FREESCALE SOC DRIVERS
8173 M:      Li Yang <leoyang.li@nxp.com>
8174 L:      linuxppc-dev@lists.ozlabs.org
8175 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8176 S:      Maintained
8177 F:      Documentation/devicetree/bindings/misc/fsl,dpaa2-console.yaml
8178 F:      Documentation/devicetree/bindings/soc/fsl/
8179 F:      drivers/soc/fsl/
8180 F:      include/linux/fsl/
8181 F:      include/soc/fsl/
8182
8183 FREESCALE SOC FS_ENET DRIVER
8184 M:      Pantelis Antoniou <pantelis.antoniou@gmail.com>
8185 L:      linuxppc-dev@lists.ozlabs.org
8186 L:      netdev@vger.kernel.org
8187 S:      Maintained
8188 F:      drivers/net/ethernet/freescale/fs_enet/
8189 F:      include/linux/fs_enet_pd.h
8190
8191 FREESCALE SOC SOUND DRIVERS
8192 M:      Shengjiu Wang <shengjiu.wang@gmail.com>
8193 M:      Xiubo Li <Xiubo.Lee@gmail.com>
8194 R:      Fabio Estevam <festevam@gmail.com>
8195 R:      Nicolin Chen <nicoleotsuka@gmail.com>
8196 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
8197 L:      linuxppc-dev@lists.ozlabs.org
8198 S:      Maintained
8199 F:      sound/soc/fsl/fsl*
8200 F:      sound/soc/fsl/imx*
8201 F:      sound/soc/fsl/mpc8610_hpcd.c
8202
8203 FREESCALE USB PERIPHERAL DRIVERS
8204 M:      Li Yang <leoyang.li@nxp.com>
8205 L:      linux-usb@vger.kernel.org
8206 L:      linuxppc-dev@lists.ozlabs.org
8207 S:      Maintained
8208 F:      drivers/usb/gadget/udc/fsl*
8209
8210 FREESCALE USB PHY DRIVER
8211 M:      Ran Wang <ran.wang_1@nxp.com>
8212 L:      linux-usb@vger.kernel.org
8213 L:      linuxppc-dev@lists.ozlabs.org
8214 S:      Maintained
8215 F:      drivers/usb/phy/phy-fsl-usb*
8216
8217 FREEVXFS FILESYSTEM
8218 M:      Christoph Hellwig <hch@infradead.org>
8219 S:      Maintained
8220 W:      ftp://ftp.openlinux.org/pub/people/hch/vxfs
8221 F:      fs/freevxfs/
8222
8223 FREEZER
8224 M:      "Rafael J. Wysocki" <rafael@kernel.org>
8225 M:      Pavel Machek <pavel@ucw.cz>
8226 L:      linux-pm@vger.kernel.org
8227 S:      Supported
8228 F:      Documentation/power/freezing-of-tasks.rst
8229 F:      include/linux/freezer.h
8230 F:      kernel/freezer.c
8231
8232 FRONTSWAP API
8233 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
8234 L:      linux-kernel@vger.kernel.org
8235 S:      Maintained
8236 F:      include/linux/frontswap.h
8237 F:      mm/frontswap.c
8238
8239 FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
8240 M:      David Howells <dhowells@redhat.com>
8241 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
8242 S:      Supported
8243 F:      Documentation/filesystems/caching/
8244 F:      fs/fscache/
8245 F:      include/linux/fscache*.h
8246
8247 FSCRYPT: FILE SYSTEM LEVEL ENCRYPTION SUPPORT
8248 M:      Theodore Y. Ts'o <tytso@mit.edu>
8249 M:      Jaegeuk Kim <jaegeuk@kernel.org>
8250 M:      Eric Biggers <ebiggers@kernel.org>
8251 L:      linux-fscrypt@vger.kernel.org
8252 S:      Supported
8253 Q:      https://patchwork.kernel.org/project/linux-fscrypt/list/
8254 T:      git git://git.kernel.org/pub/scm/fs/fscrypt/fscrypt.git
8255 F:      Documentation/filesystems/fscrypt.rst
8256 F:      fs/crypto/
8257 F:      include/linux/fscrypt*.h
8258 F:      include/uapi/linux/fscrypt.h
8259
8260 FSI SUBSYSTEM
8261 M:      Jeremy Kerr <jk@ozlabs.org>
8262 M:      Joel Stanley <joel@jms.id.au>
8263 R:      Alistar Popple <alistair@popple.id.au>
8264 R:      Eddie James <eajames@linux.ibm.com>
8265 L:      linux-fsi@lists.ozlabs.org
8266 S:      Supported
8267 Q:      http://patchwork.ozlabs.org/project/linux-fsi/list/
8268 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joel/fsi.git
8269 F:      drivers/fsi/
8270 F:      include/linux/fsi*.h
8271 F:      include/trace/events/fsi*.h
8272
8273 FSI-ATTACHED I2C DRIVER
8274 M:      Eddie James <eajames@linux.ibm.com>
8275 L:      linux-i2c@vger.kernel.org
8276 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
8277 S:      Maintained
8278 F:      Documentation/devicetree/bindings/i2c/i2c-fsi.txt
8279 F:      drivers/i2c/busses/i2c-fsi.c
8280
8281 FSI-ATTACHED SPI DRIVER
8282 M:      Eddie James <eajames@linux.ibm.com>
8283 L:      linux-spi@vger.kernel.org
8284 S:      Maintained
8285 F:      Documentation/devicetree/bindings/fsi/ibm,fsi2spi.yaml
8286 F:      drivers/spi/spi-fsi.c
8287
8288 FSNOTIFY: FILESYSTEM NOTIFICATION INFRASTRUCTURE
8289 M:      Jan Kara <jack@suse.cz>
8290 R:      Amir Goldstein <amir73il@gmail.com>
8291 L:      linux-fsdevel@vger.kernel.org
8292 S:      Maintained
8293 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jack/linux-fs.git fsnotify
8294 F:      fs/notify/
8295 F:      include/linux/fsnotify*.h
8296
8297 FSVERITY: READ-ONLY FILE-BASED AUTHENTICITY PROTECTION
8298 M:      Eric Biggers <ebiggers@kernel.org>
8299 M:      Theodore Y. Ts'o <tytso@mit.edu>
8300 L:      linux-fscrypt@vger.kernel.org
8301 S:      Supported
8302 Q:      https://patchwork.kernel.org/project/linux-fscrypt/list/
8303 T:      git git://git.kernel.org/pub/scm/fs/fscrypt/fscrypt.git fsverity
8304 F:      Documentation/filesystems/fsverity.rst
8305 F:      fs/verity/
8306 F:      include/linux/fsverity.h
8307 F:      include/uapi/linux/fsverity.h
8308
8309 FT260 FTDI USB-HID TO I2C BRIDGE DRIVER
8310 M:      Michael Zaidman <michael.zaidman@gmail.com>
8311 L:      linux-i2c@vger.kernel.org
8312 L:      linux-input@vger.kernel.org
8313 S:      Maintained
8314 F:      drivers/hid/hid-ft260.c
8315
8316 FUJITSU LAPTOP EXTRAS
8317 M:      Jonathan Woithe <jwoithe@just42.net>
8318 L:      platform-driver-x86@vger.kernel.org
8319 S:      Maintained
8320 F:      drivers/platform/x86/fujitsu-laptop.c
8321
8322 FUJITSU M-5MO LS CAMERA ISP DRIVER
8323 M:      Kyungmin Park <kyungmin.park@samsung.com>
8324 M:      Heungjun Kim <riverful.kim@samsung.com>
8325 L:      linux-media@vger.kernel.org
8326 S:      Maintained
8327 F:      drivers/media/i2c/m5mols/
8328 F:      include/media/i2c/m5mols.h
8329
8330 FUJITSU TABLET EXTRAS
8331 M:      Robert Gerlach <khnz@gmx.de>
8332 L:      platform-driver-x86@vger.kernel.org
8333 S:      Maintained
8334 F:      drivers/platform/x86/fujitsu-tablet.c
8335
8336 FUNGIBLE ETHERNET DRIVERS
8337 M:      Dimitris Michailidis <dmichail@fungible.com>
8338 L:      netdev@vger.kernel.org
8339 S:      Supported
8340 F:      drivers/net/ethernet/fungible/
8341
8342 FUSE: FILESYSTEM IN USERSPACE
8343 M:      Miklos Szeredi <miklos@szeredi.hu>
8344 L:      linux-fsdevel@vger.kernel.org
8345 S:      Maintained
8346 W:      https://github.com/libfuse/
8347 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse.git
8348 F:      Documentation/filesystems/fuse.rst
8349 F:      fs/fuse/
8350 F:      include/uapi/linux/fuse.h
8351
8352 FUTEX SUBSYSTEM
8353 M:      Thomas Gleixner <tglx@linutronix.de>
8354 M:      Ingo Molnar <mingo@redhat.com>
8355 R:      Peter Zijlstra <peterz@infradead.org>
8356 R:      Darren Hart <dvhart@infradead.org>
8357 R:      Davidlohr Bueso <dave@stgolabs.net>
8358 R:      André Almeida <andrealmeid@igalia.com>
8359 L:      linux-kernel@vger.kernel.org
8360 S:      Maintained
8361 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
8362 F:      Documentation/locking/*futex*
8363 F:      include/asm-generic/futex.h
8364 F:      include/linux/futex.h
8365 F:      include/uapi/linux/futex.h
8366 F:      kernel/futex/*
8367 F:      tools/perf/bench/futex*
8368 F:      tools/testing/selftests/futex/
8369
8370 GATEWORKS SYSTEM CONTROLLER (GSC) DRIVER
8371 M:      Tim Harvey <tharvey@gateworks.com>
8372 M:      Robert Jones <rjones@gateworks.com>
8373 S:      Maintained
8374 F:      Documentation/devicetree/bindings/mfd/gateworks-gsc.yaml
8375 F:      drivers/mfd/gateworks-gsc.c
8376 F:      include/linux/mfd/gsc.h
8377 F:      Documentation/hwmon/gsc-hwmon.rst
8378 F:      drivers/hwmon/gsc-hwmon.c
8379 F:      include/linux/platform_data/gsc_hwmon.h
8380
8381 GCC PLUGINS
8382 M:      Kees Cook <keescook@chromium.org>
8383 L:      linux-hardening@vger.kernel.org
8384 S:      Maintained
8385 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/hardening
8386 F:      Documentation/kbuild/gcc-plugins.rst
8387 F:      scripts/Makefile.gcc-plugins
8388 F:      scripts/gcc-plugins/
8389
8390 GCOV BASED KERNEL PROFILING
8391 M:      Peter Oberparleiter <oberpar@linux.ibm.com>
8392 S:      Maintained
8393 F:      Documentation/dev-tools/gcov.rst
8394 F:      kernel/gcov/
8395
8396 GDB KERNEL DEBUGGING HELPER SCRIPTS
8397 M:      Jan Kiszka <jan.kiszka@siemens.com>
8398 M:      Kieran Bingham <kbingham@kernel.org>
8399 S:      Supported
8400 F:      scripts/gdb/
8401
8402 GEMINI CRYPTO DRIVER
8403 M:      Corentin Labbe <clabbe@baylibre.com>
8404 L:      linux-crypto@vger.kernel.org
8405 S:      Maintained
8406 F:      drivers/crypto/gemini/
8407
8408 GEMTEK FM RADIO RECEIVER DRIVER
8409 M:      Hans Verkuil <hverkuil@xs4all.nl>
8410 L:      linux-media@vger.kernel.org
8411 S:      Maintained
8412 W:      https://linuxtv.org
8413 T:      git git://linuxtv.org/media_tree.git
8414 F:      drivers/media/radio/radio-gemtek*
8415
8416 GENERIC ARCHITECTURE TOPOLOGY
8417 M:      Sudeep Holla <sudeep.holla@arm.com>
8418 L:      linux-kernel@vger.kernel.org
8419 S:      Maintained
8420 F:      drivers/base/arch_topology.c
8421 F:      include/linux/arch_topology.h
8422
8423 GENERIC ENTRY CODE
8424 M:      Thomas Gleixner <tglx@linutronix.de>
8425 M:      Peter Zijlstra <peterz@infradead.org>
8426 M:      Andy Lutomirski <luto@kernel.org>
8427 L:      linux-kernel@vger.kernel.org
8428 S:      Maintained
8429 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/entry
8430 F:      include/linux/entry-common.h
8431 F:      include/linux/entry-kvm.h
8432 F:      kernel/entry/
8433
8434 GENERIC GPIO I2C DRIVER
8435 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
8436 S:      Supported
8437 F:      drivers/i2c/busses/i2c-gpio.c
8438 F:      include/linux/platform_data/i2c-gpio.h
8439
8440 GENERIC GPIO I2C MULTIPLEXER DRIVER
8441 M:      Peter Korsgaard <peter.korsgaard@barco.com>
8442 L:      linux-i2c@vger.kernel.org
8443 S:      Supported
8444 F:      Documentation/i2c/muxes/i2c-mux-gpio.rst
8445 F:      drivers/i2c/muxes/i2c-mux-gpio.c
8446 F:      include/linux/platform_data/i2c-mux-gpio.h
8447
8448 GENERIC HDLC (WAN) DRIVERS
8449 M:      Krzysztof Halasa <khc@pm.waw.pl>
8450 S:      Maintained
8451 W:      http://www.kernel.org/pub/linux/utils/net/hdlc/
8452 F:      drivers/net/wan/c101.c
8453 F:      drivers/net/wan/hd6457*
8454 F:      drivers/net/wan/hdlc*
8455 F:      drivers/net/wan/n2.c
8456 F:      drivers/net/wan/pc300too.c
8457 F:      drivers/net/wan/pci200syn.c
8458 F:      drivers/net/wan/wanxl*
8459
8460 GENERIC INCLUDE/ASM HEADER FILES
8461 M:      Arnd Bergmann <arnd@arndb.de>
8462 L:      linux-arch@vger.kernel.org
8463 S:      Maintained
8464 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
8465 F:      include/asm-generic/
8466 F:      include/uapi/asm-generic/
8467
8468 GENERIC PHY FRAMEWORK
8469 M:      Kishon Vijay Abraham I <kishon@ti.com>
8470 M:      Vinod Koul <vkoul@kernel.org>
8471 L:      linux-phy@lists.infradead.org
8472 S:      Supported
8473 Q:      https://patchwork.kernel.org/project/linux-phy/list/
8474 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/phy/linux-phy.git
8475 F:      Documentation/devicetree/bindings/phy/
8476 F:      drivers/phy/
8477 F:      include/linux/phy/
8478
8479 GENERIC PINCTRL I2C DEMULTIPLEXER DRIVER
8480 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
8481 S:      Supported
8482 F:      drivers/i2c/muxes/i2c-demux-pinctrl.c
8483
8484 GENERIC PM DOMAINS
8485 M:      "Rafael J. Wysocki" <rafael@kernel.org>
8486 M:      Kevin Hilman <khilman@kernel.org>
8487 M:      Ulf Hansson <ulf.hansson@linaro.org>
8488 L:      linux-pm@vger.kernel.org
8489 S:      Supported
8490 F:      Documentation/devicetree/bindings/power/power?domain*
8491 F:      drivers/base/power/domain*.c
8492 F:      include/linux/pm_domain.h
8493
8494 GENERIC RESISTIVE TOUCHSCREEN ADC DRIVER
8495 M:      Eugen Hristev <eugen.hristev@microchip.com>
8496 L:      linux-input@vger.kernel.org
8497 S:      Maintained
8498 F:      drivers/input/touchscreen/resistive-adc-touch.c
8499
8500 GENERIC STRING LIBRARY
8501 R:      Andy Shevchenko <andy@kernel.org>
8502 S:      Maintained
8503 F:      lib/string.c
8504 F:      lib/string_helpers.c
8505 F:      lib/test_string.c
8506 F:      lib/test-string_helpers.c
8507
8508 GENERIC UIO DRIVER FOR PCI DEVICES
8509 M:      "Michael S. Tsirkin" <mst@redhat.com>
8510 L:      kvm@vger.kernel.org
8511 S:      Supported
8512 F:      drivers/uio/uio_pci_generic.c
8513
8514 GENERIC VDSO LIBRARY
8515 M:      Andy Lutomirski <luto@kernel.org>
8516 M:      Thomas Gleixner <tglx@linutronix.de>
8517 M:      Vincenzo Frascino <vincenzo.frascino@arm.com>
8518 L:      linux-kernel@vger.kernel.org
8519 S:      Maintained
8520 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/vdso
8521 F:      include/asm-generic/vdso/vsyscall.h
8522 F:      include/vdso/
8523 F:      kernel/time/vsyscall.c
8524 F:      lib/vdso/
8525
8526 GENWQE (IBM Generic Workqueue Card)
8527 M:      Frank Haverkamp <haver@linux.ibm.com>
8528 S:      Supported
8529 F:      drivers/misc/genwqe/
8530
8531 GET_MAINTAINER SCRIPT
8532 M:      Joe Perches <joe@perches.com>
8533 S:      Maintained
8534 F:      scripts/get_maintainer.pl
8535
8536 GFS2 FILE SYSTEM
8537 M:      Bob Peterson <rpeterso@redhat.com>
8538 M:      Andreas Gruenbacher <agruenba@redhat.com>
8539 L:      cluster-devel@redhat.com
8540 S:      Supported
8541 B:      https://bugzilla.kernel.org/enter_bug.cgi?product=File%20System&component=gfs2
8542 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git
8543 F:      Documentation/filesystems/gfs2*
8544 F:      fs/gfs2/
8545 F:      include/uapi/linux/gfs2_ondisk.h
8546
8547 GIGABYTE WMI DRIVER
8548 M:      Thomas Weißschuh <thomas@weissschuh.net>
8549 L:      platform-driver-x86@vger.kernel.org
8550 S:      Maintained
8551 F:      drivers/platform/x86/gigabyte-wmi.c
8552
8553 GNSS SUBSYSTEM
8554 M:      Johan Hovold <johan@kernel.org>
8555 S:      Maintained
8556 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/gnss.git
8557 F:      Documentation/ABI/testing/sysfs-class-gnss
8558 F:      Documentation/devicetree/bindings/gnss/
8559 F:      drivers/gnss/
8560 F:      include/linux/gnss.h
8561
8562 GO7007 MPEG CODEC
8563 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
8564 L:      linux-media@vger.kernel.org
8565 S:      Maintained
8566 F:      drivers/media/usb/go7007/
8567
8568 GOODIX TOUCHSCREEN
8569 M:      Bastien Nocera <hadess@hadess.net>
8570 M:      Hans de Goede <hdegoede@redhat.com>
8571 L:      linux-input@vger.kernel.org
8572 S:      Maintained
8573 F:      drivers/input/touchscreen/goodix*
8574
8575 GOOGLE ETHERNET DRIVERS
8576 M:      Jeroen de Borst <jeroendb@google.com>
8577 R:      Catherine Sullivan <csully@google.com>
8578 R:      David Awogbemila <awogbemila@google.com>
8579 L:      netdev@vger.kernel.org
8580 S:      Supported
8581 F:      Documentation/networking/device_drivers/ethernet/google/gve.rst
8582 F:      drivers/net/ethernet/google
8583
8584 GPD POCKET FAN DRIVER
8585 M:      Hans de Goede <hdegoede@redhat.com>
8586 L:      platform-driver-x86@vger.kernel.org
8587 S:      Maintained
8588 F:      drivers/platform/x86/gpd-pocket-fan.c
8589
8590 GPIO ACPI SUPPORT
8591 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
8592 M:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
8593 L:      linux-gpio@vger.kernel.org
8594 L:      linux-acpi@vger.kernel.org
8595 S:      Supported
8596 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
8597 F:      Documentation/firmware-guide/acpi/gpio-properties.rst
8598 F:      drivers/gpio/gpiolib-acpi.c
8599 F:      drivers/gpio/gpiolib-acpi.h
8600
8601 GPIO AGGREGATOR
8602 M:      Geert Uytterhoeven <geert+renesas@glider.be>
8603 L:      linux-gpio@vger.kernel.org
8604 S:      Supported
8605 F:      Documentation/admin-guide/gpio/gpio-aggregator.rst
8606 F:      drivers/gpio/gpio-aggregator.c
8607
8608 GPIO IR Transmitter
8609 M:      Sean Young <sean@mess.org>
8610 L:      linux-media@vger.kernel.org
8611 S:      Maintained
8612 F:      drivers/media/rc/gpio-ir-tx.c
8613
8614 GPIO MOCKUP DRIVER
8615 M:      Bamvor Jian Zhang <bamv2005@gmail.com>
8616 L:      linux-gpio@vger.kernel.org
8617 S:      Maintained
8618 F:      drivers/gpio/gpio-mockup.c
8619 F:      tools/testing/selftests/gpio/
8620
8621 GPIO REGMAP
8622 R:      Michael Walle <michael@walle.cc>
8623 S:      Maintained
8624 F:      drivers/gpio/gpio-regmap.c
8625 F:      include/linux/gpio/regmap.h
8626
8627 GPIO SUBSYSTEM
8628 M:      Linus Walleij <linus.walleij@linaro.org>
8629 M:      Bartosz Golaszewski <brgl@bgdev.pl>
8630 L:      linux-gpio@vger.kernel.org
8631 S:      Maintained
8632 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux.git
8633 F:      Documentation/ABI/obsolete/sysfs-gpio
8634 F:      Documentation/ABI/testing/gpio-cdev
8635 F:      Documentation/admin-guide/gpio/
8636 F:      Documentation/devicetree/bindings/gpio/
8637 F:      Documentation/driver-api/gpio/
8638 F:      drivers/gpio/
8639 F:      include/asm-generic/gpio.h
8640 F:      include/dt-bindings/gpio/
8641 F:      include/linux/gpio.h
8642 F:      include/linux/gpio/
8643 F:      include/linux/of_gpio.h
8644 F:      include/uapi/linux/gpio.h
8645 F:      tools/gpio/
8646
8647 GRE DEMULTIPLEXER DRIVER
8648 M:      Dmitry Kozlov <xeb@mail.ru>
8649 L:      netdev@vger.kernel.org
8650 S:      Maintained
8651 F:      include/net/gre.h
8652 F:      net/ipv4/gre_demux.c
8653 F:      net/ipv4/gre_offload.c
8654
8655 GRETH 10/100/1G Ethernet MAC device driver
8656 M:      Andreas Larsson <andreas@gaisler.com>
8657 L:      netdev@vger.kernel.org
8658 S:      Maintained
8659 F:      drivers/net/ethernet/aeroflex/
8660
8661 GREYBUS AUDIO PROTOCOLS DRIVERS
8662 M:      Vaibhav Agarwal <vaibhav.sr@gmail.com>
8663 M:      Mark Greer <mgreer@animalcreek.com>
8664 S:      Maintained
8665 F:      drivers/staging/greybus/audio_apbridgea.c
8666 F:      drivers/staging/greybus/audio_apbridgea.h
8667 F:      drivers/staging/greybus/audio_codec.c
8668 F:      drivers/staging/greybus/audio_codec.h
8669 F:      drivers/staging/greybus/audio_gb.c
8670 F:      drivers/staging/greybus/audio_manager.c
8671 F:      drivers/staging/greybus/audio_manager.h
8672 F:      drivers/staging/greybus/audio_manager_module.c
8673 F:      drivers/staging/greybus/audio_manager_private.h
8674 F:      drivers/staging/greybus/audio_manager_sysfs.c
8675 F:      drivers/staging/greybus/audio_module.c
8676 F:      drivers/staging/greybus/audio_topology.c
8677
8678 GREYBUS FW/HID/SPI PROTOCOLS DRIVERS
8679 M:      Viresh Kumar <vireshk@kernel.org>
8680 S:      Maintained
8681 F:      drivers/staging/greybus/authentication.c
8682 F:      drivers/staging/greybus/bootrom.c
8683 F:      drivers/staging/greybus/firmware.h
8684 F:      drivers/staging/greybus/fw-core.c
8685 F:      drivers/staging/greybus/fw-download.c
8686 F:      drivers/staging/greybus/fw-management.c
8687 F:      drivers/staging/greybus/greybus_authentication.h
8688 F:      drivers/staging/greybus/greybus_firmware.h
8689 F:      drivers/staging/greybus/hid.c
8690 F:      drivers/staging/greybus/i2c.c
8691 F:      drivers/staging/greybus/spi.c
8692 F:      drivers/staging/greybus/spilib.c
8693 F:      drivers/staging/greybus/spilib.h
8694
8695 GREYBUS LOOPBACK DRIVER
8696 M:      Bryan O'Donoghue <pure.logic@nexus-software.ie>
8697 S:      Maintained
8698 F:      drivers/staging/greybus/loopback.c
8699
8700 GREYBUS PLATFORM DRIVERS
8701 M:      Vaibhav Hiremath <hvaibhav.linux@gmail.com>
8702 S:      Maintained
8703 F:      drivers/staging/greybus/arche-apb-ctrl.c
8704 F:      drivers/staging/greybus/arche-platform.c
8705 F:      drivers/staging/greybus/arche_platform.h
8706
8707 GREYBUS SDIO/GPIO/SPI PROTOCOLS DRIVERS
8708 M:      Rui Miguel Silva <rmfrfs@gmail.com>
8709 S:      Maintained
8710 F:      drivers/staging/greybus/gpio.c
8711 F:      drivers/staging/greybus/light.c
8712 F:      drivers/staging/greybus/power_supply.c
8713 F:      drivers/staging/greybus/sdio.c
8714 F:      drivers/staging/greybus/spi.c
8715 F:      drivers/staging/greybus/spilib.c
8716
8717 GREYBUS SUBSYSTEM
8718 M:      Johan Hovold <johan@kernel.org>
8719 M:      Alex Elder <elder@kernel.org>
8720 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
8721 L:      greybus-dev@lists.linaro.org (moderated for non-subscribers)
8722 S:      Maintained
8723 F:      drivers/greybus/
8724 F:      drivers/staging/greybus/
8725 F:      include/linux/greybus.h
8726 F:      include/linux/greybus/
8727
8728 GREYBUS UART PROTOCOLS DRIVERS
8729 M:      David Lin <dtwlin@gmail.com>
8730 S:      Maintained
8731 F:      drivers/staging/greybus/log.c
8732 F:      drivers/staging/greybus/uart.c
8733
8734 GS1662 VIDEO SERIALIZER
8735 M:      Charles-Antoine Couret <charles-antoine.couret@nexvision.fr>
8736 L:      linux-media@vger.kernel.org
8737 S:      Maintained
8738 T:      git git://linuxtv.org/media_tree.git
8739 F:      drivers/media/spi/gs1662.c
8740
8741 GSPCA FINEPIX SUBDRIVER
8742 M:      Frank Zago <frank@zago.net>
8743 L:      linux-media@vger.kernel.org
8744 S:      Maintained
8745 T:      git git://linuxtv.org/media_tree.git
8746 F:      drivers/media/usb/gspca/finepix.c
8747
8748 GSPCA GL860 SUBDRIVER
8749 M:      Olivier Lorin <o.lorin@laposte.net>
8750 L:      linux-media@vger.kernel.org
8751 S:      Maintained
8752 T:      git git://linuxtv.org/media_tree.git
8753 F:      drivers/media/usb/gspca/gl860/
8754
8755 GSPCA M5602 SUBDRIVER
8756 M:      Erik Andren <erik.andren@gmail.com>
8757 L:      linux-media@vger.kernel.org
8758 S:      Maintained
8759 T:      git git://linuxtv.org/media_tree.git
8760 F:      drivers/media/usb/gspca/m5602/
8761
8762 GSPCA PAC207 SONIXB SUBDRIVER
8763 M:      Hans Verkuil <hverkuil@xs4all.nl>
8764 L:      linux-media@vger.kernel.org
8765 S:      Odd Fixes
8766 T:      git git://linuxtv.org/media_tree.git
8767 F:      drivers/media/usb/gspca/pac207.c
8768
8769 GSPCA SN9C20X SUBDRIVER
8770 M:      Brian Johnson <brijohn@gmail.com>
8771 L:      linux-media@vger.kernel.org
8772 S:      Maintained
8773 T:      git git://linuxtv.org/media_tree.git
8774 F:      drivers/media/usb/gspca/sn9c20x.c
8775
8776 GSPCA T613 SUBDRIVER
8777 M:      Leandro Costantino <lcostantino@gmail.com>
8778 L:      linux-media@vger.kernel.org
8779 S:      Maintained
8780 T:      git git://linuxtv.org/media_tree.git
8781 F:      drivers/media/usb/gspca/t613.c
8782
8783 GSPCA USB WEBCAM DRIVER
8784 M:      Hans Verkuil <hverkuil@xs4all.nl>
8785 L:      linux-media@vger.kernel.org
8786 S:      Odd Fixes
8787 T:      git git://linuxtv.org/media_tree.git
8788 F:      drivers/media/usb/gspca/
8789
8790 GTP (GPRS Tunneling Protocol)
8791 M:      Pablo Neira Ayuso <pablo@netfilter.org>
8792 M:      Harald Welte <laforge@gnumonks.org>
8793 L:      osmocom-net-gprs@lists.osmocom.org
8794 S:      Maintained
8795 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/gtp.git
8796 F:      drivers/net/gtp.c
8797
8798 GUID PARTITION TABLE (GPT)
8799 M:      Davidlohr Bueso <dave@stgolabs.net>
8800 L:      linux-efi@vger.kernel.org
8801 S:      Maintained
8802 F:      block/partitions/efi.*
8803
8804 HABANALABS PCI DRIVER
8805 M:      Oded Gabbay <ogabbay@kernel.org>
8806 S:      Supported
8807 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/ogabbay/linux.git
8808 F:      Documentation/ABI/testing/debugfs-driver-habanalabs
8809 F:      Documentation/ABI/testing/sysfs-driver-habanalabs
8810 F:      drivers/misc/habanalabs/
8811 F:      include/uapi/misc/habanalabs.h
8812
8813 HACKRF MEDIA DRIVER
8814 M:      Antti Palosaari <crope@iki.fi>
8815 L:      linux-media@vger.kernel.org
8816 S:      Maintained
8817 W:      https://linuxtv.org
8818 W:      http://palosaari.fi/linux/
8819 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8820 T:      git git://linuxtv.org/anttip/media_tree.git
8821 F:      drivers/media/usb/hackrf/
8822
8823 HANTRO VPU CODEC DRIVER
8824 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
8825 M:      Philipp Zabel <p.zabel@pengutronix.de>
8826 L:      linux-media@vger.kernel.org
8827 L:      linux-rockchip@lists.infradead.org
8828 S:      Maintained
8829 F:      Documentation/devicetree/bindings/media/nxp,imx8mq-vpu.yaml
8830 F:      Documentation/devicetree/bindings/media/rockchip,rk3568-vepu.yaml
8831 F:      Documentation/devicetree/bindings/media/rockchip-vpu.yaml
8832 F:      drivers/staging/media/hantro/
8833
8834 HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
8835 M:      Frank Seidel <frank@f-seidel.de>
8836 L:      platform-driver-x86@vger.kernel.org
8837 S:      Maintained
8838 W:      http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
8839 F:      drivers/platform/x86/hdaps.c
8840
8841 HARDWARE MONITORING
8842 M:      Jean Delvare <jdelvare@suse.com>
8843 M:      Guenter Roeck <linux@roeck-us.net>
8844 L:      linux-hwmon@vger.kernel.org
8845 S:      Maintained
8846 W:      http://hwmon.wiki.kernel.org/
8847 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
8848 F:      Documentation/ABI/testing/sysfs-class-hwmon
8849 F:      Documentation/devicetree/bindings/hwmon/
8850 F:      Documentation/hwmon/
8851 F:      drivers/hwmon/
8852 F:      include/linux/hwmon*.h
8853 F:      include/trace/events/hwmon*.h
8854 K:      (devm_)?hwmon_device_(un)?register(|_with_groups|_with_info)
8855
8856 HARDWARE RANDOM NUMBER GENERATOR CORE
8857 M:      Matt Mackall <mpm@selenic.com>
8858 M:      Herbert Xu <herbert@gondor.apana.org.au>
8859 L:      linux-crypto@vger.kernel.org
8860 S:      Odd fixes
8861 F:      Documentation/admin-guide/hw_random.rst
8862 F:      Documentation/devicetree/bindings/rng/
8863 F:      drivers/char/hw_random/
8864 F:      include/linux/hw_random.h
8865
8866 HARDWARE SPINLOCK CORE
8867 M:      Ohad Ben-Cohen <ohad@wizery.com>
8868 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
8869 R:      Baolin Wang <baolin.wang7@gmail.com>
8870 L:      linux-remoteproc@vger.kernel.org
8871 S:      Maintained
8872 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git hwspinlock-next
8873 F:      Documentation/devicetree/bindings/hwlock/
8874 F:      Documentation/locking/hwspinlock.rst
8875 F:      drivers/hwspinlock/
8876 F:      include/linux/hwspinlock.h
8877
8878 HARDWARE TRACING FACILITIES
8879 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
8880 S:      Maintained
8881 F:      drivers/hwtracing/
8882
8883 HARMONY SOUND DRIVER
8884 L:      linux-parisc@vger.kernel.org
8885 S:      Maintained
8886 F:      sound/parisc/harmony.*
8887
8888 HDPVR USB VIDEO ENCODER DRIVER
8889 M:      Hans Verkuil <hverkuil@xs4all.nl>
8890 L:      linux-media@vger.kernel.org
8891 S:      Odd Fixes
8892 W:      https://linuxtv.org
8893 T:      git git://linuxtv.org/media_tree.git
8894 F:      drivers/media/usb/hdpvr/
8895
8896 HEWLETT PACKARD ENTERPRISE ILO CHIF DRIVER
8897 M:      Matt Hsiao <matt.hsiao@hpe.com>
8898 S:      Supported
8899 F:      drivers/misc/hpilo.[ch]
8900
8901 HEWLETT PACKARD ENTERPRISE ILO NMI WATCHDOG DRIVER
8902 M:      Jerry Hoemann <jerry.hoemann@hpe.com>
8903 S:      Supported
8904 F:      Documentation/watchdog/hpwdt.rst
8905 F:      drivers/watchdog/hpwdt.c
8906
8907 HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
8908 M:      Don Brace <don.brace@microchip.com>
8909 L:      storagedev@microchip.com
8910 L:      linux-scsi@vger.kernel.org
8911 S:      Supported
8912 F:      Documentation/scsi/hpsa.rst
8913 F:      drivers/scsi/hpsa*.[ch]
8914 F:      include/linux/cciss*.h
8915 F:      include/uapi/linux/cciss*.h
8916
8917 HFI1 DRIVER
8918 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
8919 L:      linux-rdma@vger.kernel.org
8920 S:      Supported
8921 F:      drivers/infiniband/hw/hfi1
8922
8923 HFS FILESYSTEM
8924 L:      linux-fsdevel@vger.kernel.org
8925 S:      Orphan
8926 F:      Documentation/filesystems/hfs.rst
8927 F:      fs/hfs/
8928
8929 HFSPLUS FILESYSTEM
8930 L:      linux-fsdevel@vger.kernel.org
8931 S:      Orphan
8932 F:      Documentation/filesystems/hfsplus.rst
8933 F:      fs/hfsplus/
8934
8935 HGA FRAMEBUFFER DRIVER
8936 M:      Ferenc Bakonyi <fero@drama.obuda.kando.hu>
8937 L:      linux-nvidia@lists.surfsouth.com
8938 S:      Maintained
8939 W:      http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
8940 F:      drivers/video/fbdev/hgafb.c
8941
8942 HIBERNATION (aka Software Suspend, aka swsusp)
8943 M:      "Rafael J. Wysocki" <rafael@kernel.org>
8944 M:      Pavel Machek <pavel@ucw.cz>
8945 L:      linux-pm@vger.kernel.org
8946 S:      Supported
8947 B:      https://bugzilla.kernel.org
8948 F:      arch/*/include/asm/suspend*.h
8949 F:      arch/x86/power/
8950 F:      drivers/base/power/
8951 F:      include/linux/freezer.h
8952 F:      include/linux/pm.h
8953 F:      include/linux/suspend.h
8954 F:      kernel/power/
8955
8956 HID CORE LAYER
8957 M:      Jiri Kosina <jikos@kernel.org>
8958 M:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
8959 L:      linux-input@vger.kernel.org
8960 S:      Maintained
8961 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
8962 F:      drivers/hid/
8963 F:      include/linux/hid*
8964 F:      include/uapi/linux/hid*
8965
8966 HID LOGITECH DRIVERS
8967 R:      Filipe Laíns <lains@riseup.net>
8968 L:      linux-input@vger.kernel.org
8969 S:      Maintained
8970 F:      drivers/hid/hid-logitech-*
8971
8972 HID PLAYSTATION DRIVER
8973 M:      Roderick Colenbrander <roderick.colenbrander@sony.com>
8974 L:      linux-input@vger.kernel.org
8975 S:      Supported
8976 F:      drivers/hid/hid-playstation.c
8977
8978 HID SENSOR HUB DRIVERS
8979 M:      Jiri Kosina <jikos@kernel.org>
8980 M:      Jonathan Cameron <jic23@kernel.org>
8981 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
8982 L:      linux-input@vger.kernel.org
8983 L:      linux-iio@vger.kernel.org
8984 S:      Maintained
8985 F:      Documentation/hid/hid-sensor*
8986 F:      drivers/hid/hid-sensor-*
8987 F:      drivers/iio/*/hid-*
8988 F:      include/linux/hid-sensor-*
8989
8990 HID WACOM DRIVER
8991 M:      Ping Cheng <ping.cheng@wacom.com>
8992 M:      Jason Gerecke  <jason.gerecke@wacom.com>
8993 L:      linux-input@vger.kernel.org
8994 S:      Maintained
8995 F:      drivers/hid/wacom.h
8996 F:      drivers/hid/wacom_*
8997
8998 HIGH-RESOLUTION TIMERS, CLOCKEVENTS
8999 M:      Thomas Gleixner <tglx@linutronix.de>
9000 L:      linux-kernel@vger.kernel.org
9001 S:      Maintained
9002 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
9003 F:      Documentation/timers/
9004 F:      include/linux/clockchips.h
9005 F:      include/linux/hrtimer.h
9006 F:      kernel/time/clockevents.c
9007 F:      kernel/time/hrtimer.c
9008 F:      kernel/time/timer_*.c
9009
9010 HIGH-SPEED SCC DRIVER FOR AX.25
9011 L:      linux-hams@vger.kernel.org
9012 S:      Orphan
9013 F:      drivers/net/hamradio/scc.c
9014
9015 HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
9016 M:      HighPoint Linux Team <linux@highpoint-tech.com>
9017 S:      Supported
9018 W:      http://www.highpoint-tech.com
9019 F:      Documentation/scsi/hptiop.rst
9020 F:      drivers/scsi/hptiop.c
9021
9022 HIPPI
9023 M:      Jes Sorensen <jes@trained-monkey.org>
9024 L:      linux-hippi@sunsite.dk
9025 S:      Maintained
9026 F:      drivers/net/hippi/
9027 F:      include/linux/hippidevice.h
9028 F:      include/uapi/linux/if_hippi.h
9029 F:      net/802/hippi.c
9030
9031 HIRSCHMANN HELLCREEK ETHERNET SWITCH DRIVER
9032 M:      Kurt Kanzenbach <kurt@linutronix.de>
9033 L:      netdev@vger.kernel.org
9034 S:      Maintained
9035 F:      Documentation/devicetree/bindings/net/dsa/hirschmann,hellcreek.yaml
9036 F:      drivers/net/dsa/hirschmann/*
9037 F:      include/linux/platform_data/hirschmann-hellcreek.h
9038 F:      net/dsa/tag_hellcreek.c
9039
9040 HISILICON DMA DRIVER
9041 M:      Zhou Wang <wangzhou1@hisilicon.com>
9042 L:      dmaengine@vger.kernel.org
9043 S:      Maintained
9044 F:      drivers/dma/hisi_dma.c
9045
9046 HISILICON GPIO DRIVER
9047 M:      Luo Jiaxing <luojiaxing@huawei.com>
9048 L:      linux-gpio@vger.kernel.org
9049 S:      Maintained
9050 F:      drivers/gpio/gpio-hisi.c
9051
9052 HISILICON HIGH PERFORMANCE RSA ENGINE DRIVER (HPRE)
9053 M:      Longfang Liu <liulongfang@huawei.com>
9054 L:      linux-crypto@vger.kernel.org
9055 S:      Maintained
9056 F:      Documentation/ABI/testing/debugfs-hisi-hpre
9057 F:      drivers/crypto/hisilicon/hpre/hpre.h
9058 F:      drivers/crypto/hisilicon/hpre/hpre_crypto.c
9059 F:      drivers/crypto/hisilicon/hpre/hpre_main.c
9060
9061 HISILICON I2C CONTROLLER DRIVER
9062 M:      Yicong Yang <yangyicong@hisilicon.com>
9063 L:      linux-i2c@vger.kernel.org
9064 S:      Maintained
9065 W:      https://www.hisilicon.com
9066 F:      drivers/i2c/busses/i2c-hisi.c
9067
9068 HISILICON LPC BUS DRIVER
9069 M:      john.garry@huawei.com
9070 S:      Maintained
9071 W:      http://www.hisilicon.com
9072 F:      Documentation/devicetree/bindings/arm/hisilicon/low-pin-count.yaml
9073 F:      drivers/bus/hisi_lpc.c
9074
9075 HISILICON NETWORK SUBSYSTEM 3 DRIVER (HNS3)
9076 M:      Yisen Zhuang <yisen.zhuang@huawei.com>
9077 M:      Salil Mehta <salil.mehta@huawei.com>
9078 L:      netdev@vger.kernel.org
9079 S:      Maintained
9080 W:      http://www.hisilicon.com
9081 F:      drivers/net/ethernet/hisilicon/hns3/
9082
9083 HISILICON NETWORK SUBSYSTEM DRIVER
9084 M:      Yisen Zhuang <yisen.zhuang@huawei.com>
9085 M:      Salil Mehta <salil.mehta@huawei.com>
9086 L:      netdev@vger.kernel.org
9087 S:      Maintained
9088 W:      http://www.hisilicon.com
9089 F:      Documentation/devicetree/bindings/net/hisilicon*.txt
9090 F:      drivers/net/ethernet/hisilicon/
9091
9092 HIKEY960 ONBOARD USB GPIO HUB DRIVER
9093 M:      John Stultz <jstultz@google.com>
9094 L:      linux-kernel@vger.kernel.org
9095 S:      Maintained
9096 F:      drivers/misc/hisi_hikey_usb.c
9097
9098 HISILICON PMU DRIVER
9099 M:      Shaokun Zhang <zhangshaokun@hisilicon.com>
9100 M:      Qi Liu <liuqi115@huawei.com>
9101 S:      Supported
9102 W:      http://www.hisilicon.com
9103 F:      Documentation/admin-guide/perf/hisi-pcie-pmu.rst
9104 F:      Documentation/admin-guide/perf/hisi-pmu.rst
9105 F:      drivers/perf/hisilicon
9106
9107 HISILICON HNS3 PMU DRIVER
9108 M:      Guangbin Huang <huangguangbin2@huawei.com>
9109 S:      Supported
9110 F:      Documentation/admin-guide/perf/hns3-pmu.rst
9111 F:      drivers/perf/hisilicon/hns3_pmu.c
9112
9113 HISILICON QM DRIVER
9114 M:      Weili Qian <qianweili@huawei.com>
9115 M:      Zhou Wang <wangzhou1@hisilicon.com>
9116 L:      linux-crypto@vger.kernel.org
9117 S:      Maintained
9118 F:      drivers/crypto/hisilicon/Kconfig
9119 F:      drivers/crypto/hisilicon/Makefile
9120 F:      drivers/crypto/hisilicon/qm.c
9121 F:      drivers/crypto/hisilicon/sgl.c
9122 F:      include/linux/hisi_acc_qm.h
9123
9124 HISILICON ZIP Controller DRIVER
9125 M:      Yang Shen <shenyang39@huawei.com>
9126 M:      Zhou Wang <wangzhou1@hisilicon.com>
9127 L:      linux-crypto@vger.kernel.org
9128 S:      Maintained
9129 F:      Documentation/ABI/testing/debugfs-hisi-zip
9130 F:      drivers/crypto/hisilicon/zip/
9131
9132 HISILICON ROCE DRIVER
9133 M:      Wenpeng Liang <liangwenpeng@huawei.com>
9134 M:      Weihang Li <liweihang@huawei.com>
9135 L:      linux-rdma@vger.kernel.org
9136 S:      Maintained
9137 F:      Documentation/devicetree/bindings/infiniband/hisilicon-hns-roce.txt
9138 F:      drivers/infiniband/hw/hns/
9139
9140 HISILICON SAS Controller
9141 M:      John Garry <john.garry@huawei.com>
9142 S:      Supported
9143 W:      http://www.hisilicon.com
9144 F:      Documentation/devicetree/bindings/scsi/hisilicon-sas.txt
9145 F:      drivers/scsi/hisi_sas/
9146
9147 HISILICON SECURITY ENGINE V2 DRIVER (SEC2)
9148 M:      Kai Ye <yekai13@huawei.com>
9149 M:      Longfang Liu <liulongfang@huawei.com>
9150 L:      linux-crypto@vger.kernel.org
9151 S:      Maintained
9152 F:      Documentation/ABI/testing/debugfs-hisi-sec
9153 F:      drivers/crypto/hisilicon/sec2/sec.h
9154 F:      drivers/crypto/hisilicon/sec2/sec_crypto.c
9155 F:      drivers/crypto/hisilicon/sec2/sec_crypto.h
9156 F:      drivers/crypto/hisilicon/sec2/sec_main.c
9157
9158 HISILICON SPI Controller DRIVER FOR KUNPENG SOCS
9159 M:      Jay Fang <f.fangjian@huawei.com>
9160 L:      linux-spi@vger.kernel.org
9161 S:      Maintained
9162 W:      http://www.hisilicon.com
9163 F:      drivers/spi/spi-hisi-kunpeng.c
9164
9165 HISILICON SPMI CONTROLLER DRIVER FOR HIKEY 970
9166 M:      Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
9167 L:      linux-kernel@vger.kernel.org
9168 S:      Maintained
9169 F:      Documentation/devicetree/bindings/spmi/hisilicon,hisi-spmi-controller.yaml
9170 F:      drivers/spmi/hisi-spmi-controller.c
9171
9172 HISILICON SPMI PMIC DRIVER FOR HIKEY 6421v600
9173 M:      Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
9174 L:      linux-kernel@vger.kernel.org
9175 S:      Maintained
9176 F:      Documentation/devicetree/bindings/mfd/hisilicon,hi6421-spmi-pmic.yaml
9177 F:      drivers/mfd/hi6421-spmi-pmic.c
9178
9179 HISILICON TRUE RANDOM NUMBER GENERATOR V2 SUPPORT
9180 M:      Weili Qian <qianweili@huawei.com>
9181 S:      Maintained
9182 F:      drivers/crypto/hisilicon/trng/trng.c
9183
9184 HISILICON V3XX SPI NOR FLASH Controller Driver
9185 M:      John Garry <john.garry@huawei.com>
9186 S:      Maintained
9187 W:      http://www.hisilicon.com
9188 F:      drivers/spi/spi-hisi-sfc-v3xx.c
9189
9190 HMM - Heterogeneous Memory Management
9191 M:      Jérôme Glisse <jglisse@redhat.com>
9192 L:      linux-mm@kvack.org
9193 S:      Maintained
9194 F:      Documentation/vm/hmm.rst
9195 F:      include/linux/hmm*
9196 F:      lib/test_hmm*
9197 F:      mm/hmm*
9198 F:      tools/testing/selftests/vm/*hmm*
9199
9200 HOST AP DRIVER
9201 M:      Jouni Malinen <j@w1.fi>
9202 L:      linux-wireless@vger.kernel.org
9203 S:      Obsolete
9204 W:      http://w1.fi/hostap-driver.html
9205 F:      drivers/net/wireless/intersil/hostap/
9206
9207 HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
9208 L:      platform-driver-x86@vger.kernel.org
9209 S:      Orphan
9210 F:      drivers/platform/x86/tc1100-wmi.c
9211
9212 HPET:   High Precision Event Timers driver
9213 M:      Clemens Ladisch <clemens@ladisch.de>
9214 S:      Maintained
9215 F:      Documentation/timers/hpet.rst
9216 F:      drivers/char/hpet.c
9217 F:      include/linux/hpet.h
9218 F:      include/uapi/linux/hpet.h
9219
9220 HPET:   x86
9221 S:      Orphan
9222 F:      arch/x86/include/asm/hpet.h
9223 F:      arch/x86/kernel/hpet.c
9224
9225 HPFS FILESYSTEM
9226 M:      Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
9227 S:      Maintained
9228 W:      http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
9229 F:      fs/hpfs/
9230
9231 HSI SUBSYSTEM
9232 M:      Sebastian Reichel <sre@kernel.org>
9233 S:      Maintained
9234 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git
9235 F:      Documentation/ABI/testing/sysfs-bus-hsi
9236 F:      Documentation/driver-api/hsi.rst
9237 F:      drivers/hsi/
9238 F:      include/linux/hsi/
9239 F:      include/uapi/linux/hsi/
9240
9241 HSO 3G MODEM DRIVER
9242 L:      linux-usb@vger.kernel.org
9243 S:      Orphan
9244 F:      drivers/net/usb/hso.c
9245
9246 HSR NETWORK PROTOCOL
9247 L:      netdev@vger.kernel.org
9248 S:      Orphan
9249 F:      net/hsr/
9250
9251 HT16K33 LED CONTROLLER DRIVER
9252 M:      Robin van der Gracht <robin@protonic.nl>
9253 S:      Maintained
9254 F:      Documentation/devicetree/bindings/auxdisplay/holtek,ht16k33.yaml
9255 F:      drivers/auxdisplay/ht16k33.c
9256
9257 HTCPEN TOUCHSCREEN DRIVER
9258 M:      Pau Oliva Fora <pof@eslack.org>
9259 L:      linux-input@vger.kernel.org
9260 S:      Maintained
9261 F:      drivers/input/touchscreen/htcpen.c
9262
9263 HTE SUBSYSTEM
9264 M:      Dipen Patel <dipenp@nvidia.com>
9265 S:      Maintained
9266 F:      Documentation/devicetree/bindings/timestamp/
9267 F:      Documentation/driver-api/hte/
9268 F:      drivers/hte/
9269 F:      include/linux/hte.h
9270
9271 HTS221 TEMPERATURE-HUMIDITY IIO DRIVER
9272 M:      Lorenzo Bianconi <lorenzo@kernel.org>
9273 L:      linux-iio@vger.kernel.org
9274 S:      Maintained
9275 W:      http://www.st.com/
9276 F:      Documentation/devicetree/bindings/iio/humidity/st,hts221.yaml
9277 F:      drivers/iio/humidity/hts221*
9278
9279 HUAWEI ETHERNET DRIVER
9280 L:      netdev@vger.kernel.org
9281 S:      Orphan
9282 F:      Documentation/networking/device_drivers/ethernet/huawei/hinic.rst
9283 F:      drivers/net/ethernet/huawei/hinic/
9284
9285 HUGETLB SUBSYSTEM
9286 M:      Mike Kravetz <mike.kravetz@oracle.com>
9287 M:      Muchun Song <songmuchun@bytedance.com>
9288 L:      linux-mm@kvack.org
9289 S:      Maintained
9290 F:      Documentation/ABI/testing/sysfs-kernel-mm-hugepages
9291 F:      Documentation/admin-guide/mm/hugetlbpage.rst
9292 F:      Documentation/vm/hugetlbfs_reserv.rst
9293 F:      Documentation/vm/vmemmap_dedup.rst
9294 F:      fs/hugetlbfs/
9295 F:      include/linux/hugetlb.h
9296 F:      mm/hugetlb.c
9297 F:      mm/hugetlb_vmemmap.c
9298 F:      mm/hugetlb_vmemmap.h
9299
9300 HVA ST MEDIA DRIVER
9301 M:      Jean-Christophe Trotin <jean-christophe.trotin@foss.st.com>
9302 L:      linux-media@vger.kernel.org
9303 S:      Supported
9304 W:      https://linuxtv.org
9305 T:      git git://linuxtv.org/media_tree.git
9306 F:      drivers/media/platform/st/sti/hva
9307
9308 HWPOISON MEMORY FAILURE HANDLING
9309 M:      Naoya Horiguchi <naoya.horiguchi@nec.com>
9310 R:      Miaohe Lin <linmiaohe@huawei.com>
9311 L:      linux-mm@kvack.org
9312 S:      Maintained
9313 F:      mm/hwpoison-inject.c
9314 F:      mm/memory-failure.c
9315
9316 HYCON HY46XX TOUCHSCREEN SUPPORT
9317 M:      Giulio Benetti <giulio.benetti@benettiengineering.com>
9318 L:      linux-input@vger.kernel.org
9319 S:      Maintained
9320 F:      Documentation/devicetree/bindings/input/touchscreen/hycon,hy46xx.yaml
9321 F:      drivers/input/touchscreen/hycon-hy46xx.c
9322
9323 HYGON PROCESSOR SUPPORT
9324 M:      Pu Wen <puwen@hygon.cn>
9325 L:      linux-kernel@vger.kernel.org
9326 S:      Maintained
9327 F:      arch/x86/kernel/cpu/hygon.c
9328
9329 HYNIX HI556 SENSOR DRIVER
9330 M:      Shawn Tu <shawnx.tu@intel.com>
9331 L:      linux-media@vger.kernel.org
9332 S:      Maintained
9333 T:      git git://linuxtv.org/media_tree.git
9334 F:      drivers/media/i2c/hi556.c
9335
9336 HYNIX HI846 SENSOR DRIVER
9337 M:      Martin Kepplinger <martin.kepplinger@puri.sm>
9338 L:      linux-media@vger.kernel.org
9339 S:      Maintained
9340 F:      drivers/media/i2c/hi846.c
9341
9342 HYNIX HI847 SENSOR DRIVER
9343 M:      Shawn Tu <shawnx.tu@intel.com>
9344 L:      linux-media@vger.kernel.org
9345 S:      Maintained
9346 F:      drivers/media/i2c/hi847.c
9347
9348 Hyper-V/Azure CORE AND DRIVERS
9349 M:      "K. Y. Srinivasan" <kys@microsoft.com>
9350 M:      Haiyang Zhang <haiyangz@microsoft.com>
9351 M:      Stephen Hemminger <sthemmin@microsoft.com>
9352 M:      Wei Liu <wei.liu@kernel.org>
9353 M:      Dexuan Cui <decui@microsoft.com>
9354 L:      linux-hyperv@vger.kernel.org
9355 S:      Supported
9356 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hyperv/linux.git
9357 F:      Documentation/ABI/stable/sysfs-bus-vmbus
9358 F:      Documentation/ABI/testing/debugfs-hyperv
9359 F:      Documentation/virt/hyperv
9360 F:      Documentation/networking/device_drivers/ethernet/microsoft/netvsc.rst
9361 F:      arch/arm64/hyperv
9362 F:      arch/arm64/include/asm/hyperv-tlfs.h
9363 F:      arch/arm64/include/asm/mshyperv.h
9364 F:      arch/x86/hyperv
9365 F:      arch/x86/include/asm/hyperv-tlfs.h
9366 F:      arch/x86/include/asm/mshyperv.h
9367 F:      arch/x86/include/asm/trace/hyperv.h
9368 F:      arch/x86/kernel/cpu/mshyperv.c
9369 F:      drivers/clocksource/hyperv_timer.c
9370 F:      drivers/hid/hid-hyperv.c
9371 F:      drivers/hv/
9372 F:      drivers/input/serio/hyperv-keyboard.c
9373 F:      drivers/iommu/hyperv-iommu.c
9374 F:      drivers/net/ethernet/microsoft/
9375 F:      drivers/net/hyperv/
9376 F:      drivers/pci/controller/pci-hyperv-intf.c
9377 F:      drivers/pci/controller/pci-hyperv.c
9378 F:      drivers/scsi/storvsc_drv.c
9379 F:      drivers/uio/uio_hv_generic.c
9380 F:      drivers/video/fbdev/hyperv_fb.c
9381 F:      include/asm-generic/hyperv-tlfs.h
9382 F:      include/asm-generic/mshyperv.h
9383 F:      include/clocksource/hyperv_timer.h
9384 F:      include/linux/hyperv.h
9385 F:      include/uapi/linux/hyperv.h
9386 F:      net/vmw_vsock/hyperv_transport.c
9387 F:      tools/hv/
9388
9389 HYPERBUS SUPPORT
9390 M:      Vignesh Raghavendra <vigneshr@ti.com>
9391 L:      linux-mtd@lists.infradead.org
9392 S:      Supported
9393 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
9394 C:      irc://irc.oftc.net/mtd
9395 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git cfi/next
9396 F:      Documentation/devicetree/bindings/mtd/ti,am654-hbmc.yaml
9397 F:      drivers/mtd/hyperbus/
9398 F:      include/linux/mtd/hyperbus.h
9399
9400 HYPERVISOR VIRTUAL CONSOLE DRIVER
9401 L:      linuxppc-dev@lists.ozlabs.org
9402 S:      Odd Fixes
9403 F:      drivers/tty/hvc/
9404
9405 I2C ACPI SUPPORT
9406 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
9407 L:      linux-i2c@vger.kernel.org
9408 L:      linux-acpi@vger.kernel.org
9409 S:      Maintained
9410 F:      drivers/i2c/i2c-core-acpi.c
9411
9412 I2C CONTROLLER DRIVER FOR NVIDIA GPU
9413 M:      Ajay Gupta <ajayg@nvidia.com>
9414 L:      linux-i2c@vger.kernel.org
9415 S:      Maintained
9416 F:      Documentation/i2c/busses/i2c-nvidia-gpu.rst
9417 F:      drivers/i2c/busses/i2c-nvidia-gpu.c
9418
9419 I2C MUXES
9420 M:      Peter Rosin <peda@axentia.se>
9421 L:      linux-i2c@vger.kernel.org
9422 S:      Maintained
9423 F:      Documentation/devicetree/bindings/i2c/i2c-arb*
9424 F:      Documentation/devicetree/bindings/i2c/i2c-gate*
9425 F:      Documentation/devicetree/bindings/i2c/i2c-mux*
9426 F:      Documentation/i2c/i2c-topology.rst
9427 F:      Documentation/i2c/muxes/
9428 F:      drivers/i2c/i2c-mux.c
9429 F:      drivers/i2c/muxes/
9430 F:      include/linux/i2c-mux.h
9431
9432 I2C MV64XXX MARVELL AND ALLWINNER DRIVER
9433 M:      Gregory CLEMENT <gregory.clement@bootlin.com>
9434 L:      linux-i2c@vger.kernel.org
9435 S:      Maintained
9436 F:      Documentation/devicetree/bindings/i2c/marvell,mv64xxx-i2c.yaml
9437 F:      drivers/i2c/busses/i2c-mv64xxx.c
9438
9439 I2C OVER PARALLEL PORT
9440 M:      Jean Delvare <jdelvare@suse.com>
9441 L:      linux-i2c@vger.kernel.org
9442 S:      Maintained
9443 F:      Documentation/i2c/busses/i2c-parport.rst
9444 F:      drivers/i2c/busses/i2c-parport.c
9445
9446 I2C SUBSYSTEM
9447 M:      Wolfram Sang <wsa@kernel.org>
9448 L:      linux-i2c@vger.kernel.org
9449 S:      Maintained
9450 W:      https://i2c.wiki.kernel.org/
9451 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
9452 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
9453 F:      Documentation/devicetree/bindings/i2c/i2c.txt
9454 F:      Documentation/i2c/
9455 F:      drivers/i2c/*
9456 F:      include/dt-bindings/i2c/i2c.h
9457 F:      include/linux/i2c-dev.h
9458 F:      include/linux/i2c-smbus.h
9459 F:      include/linux/i2c.h
9460 F:      include/uapi/linux/i2c-*.h
9461 F:      include/uapi/linux/i2c.h
9462
9463 I2C SUBSYSTEM HOST DRIVERS
9464 L:      linux-i2c@vger.kernel.org
9465 S:      Odd Fixes
9466 W:      https://i2c.wiki.kernel.org/
9467 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
9468 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
9469 F:      Documentation/devicetree/bindings/i2c/
9470 F:      drivers/i2c/algos/
9471 F:      drivers/i2c/busses/
9472 F:      include/dt-bindings/i2c/
9473
9474 I2C-TAOS-EVM DRIVER
9475 M:      Jean Delvare <jdelvare@suse.com>
9476 L:      linux-i2c@vger.kernel.org
9477 S:      Maintained
9478 F:      Documentation/i2c/busses/i2c-taos-evm.rst
9479 F:      drivers/i2c/busses/i2c-taos-evm.c
9480
9481 I2C-TINY-USB DRIVER
9482 M:      Till Harbaum <till@harbaum.org>
9483 L:      linux-i2c@vger.kernel.org
9484 S:      Maintained
9485 W:      http://www.harbaum.org/till/i2c_tiny_usb
9486 F:      drivers/i2c/busses/i2c-tiny-usb.c
9487
9488 I2C/SMBUS CONTROLLER DRIVERS FOR PC
9489 M:      Jean Delvare <jdelvare@suse.com>
9490 L:      linux-i2c@vger.kernel.org
9491 S:      Maintained
9492 F:      Documentation/i2c/busses/i2c-ali1535.rst
9493 F:      Documentation/i2c/busses/i2c-ali1563.rst
9494 F:      Documentation/i2c/busses/i2c-ali15x3.rst
9495 F:      Documentation/i2c/busses/i2c-amd756.rst
9496 F:      Documentation/i2c/busses/i2c-amd8111.rst
9497 F:      Documentation/i2c/busses/i2c-i801.rst
9498 F:      Documentation/i2c/busses/i2c-nforce2.rst
9499 F:      Documentation/i2c/busses/i2c-piix4.rst
9500 F:      Documentation/i2c/busses/i2c-sis5595.rst
9501 F:      Documentation/i2c/busses/i2c-sis630.rst
9502 F:      Documentation/i2c/busses/i2c-sis96x.rst
9503 F:      Documentation/i2c/busses/i2c-via.rst
9504 F:      Documentation/i2c/busses/i2c-viapro.rst
9505 F:      drivers/i2c/busses/i2c-ali1535.c
9506 F:      drivers/i2c/busses/i2c-ali1563.c
9507 F:      drivers/i2c/busses/i2c-ali15x3.c
9508 F:      drivers/i2c/busses/i2c-amd756-s4882.c
9509 F:      drivers/i2c/busses/i2c-amd756.c
9510 F:      drivers/i2c/busses/i2c-amd8111.c
9511 F:      drivers/i2c/busses/i2c-i801.c
9512 F:      drivers/i2c/busses/i2c-isch.c
9513 F:      drivers/i2c/busses/i2c-nforce2-s4985.c
9514 F:      drivers/i2c/busses/i2c-nforce2.c
9515 F:      drivers/i2c/busses/i2c-piix4.c
9516 F:      drivers/i2c/busses/i2c-sis5595.c
9517 F:      drivers/i2c/busses/i2c-sis630.c
9518 F:      drivers/i2c/busses/i2c-sis96x.c
9519 F:      drivers/i2c/busses/i2c-via.c
9520 F:      drivers/i2c/busses/i2c-viapro.c
9521
9522 I2C/SMBUS INTEL CHT WHISKEY COVE PMIC DRIVER
9523 M:      Hans de Goede <hdegoede@redhat.com>
9524 L:      linux-i2c@vger.kernel.org
9525 S:      Maintained
9526 F:      drivers/i2c/busses/i2c-cht-wc.c
9527
9528 I2C/SMBUS ISMT DRIVER
9529 M:      Seth Heasley <seth.heasley@intel.com>
9530 M:      Neil Horman <nhorman@tuxdriver.com>
9531 L:      linux-i2c@vger.kernel.org
9532 F:      Documentation/i2c/busses/i2c-ismt.rst
9533 F:      drivers/i2c/busses/i2c-ismt.c
9534
9535 I2C/SMBUS STUB DRIVER
9536 M:      Jean Delvare <jdelvare@suse.com>
9537 L:      linux-i2c@vger.kernel.org
9538 S:      Maintained
9539 F:      drivers/i2c/i2c-stub.c
9540
9541 I3C DRIVER FOR CADENCE I3C MASTER IP
9542 M:      Przemysław Gaj <pgaj@cadence.com>
9543 S:      Maintained
9544 F:      Documentation/devicetree/bindings/i3c/cdns,i3c-master.yaml
9545 F:      drivers/i3c/master/i3c-master-cdns.c
9546
9547 I3C DRIVER FOR SYNOPSYS DESIGNWARE
9548 M:      Vitor Soares <vitor.soares@synopsys.com>
9549 S:      Maintained
9550 F:      Documentation/devicetree/bindings/i3c/snps,dw-i3c-master.yaml
9551 F:      drivers/i3c/master/dw*
9552
9553 I3C SUBSYSTEM
9554 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
9555 L:      linux-i3c@lists.infradead.org (moderated for non-subscribers)
9556 S:      Maintained
9557 C:      irc://chat.freenode.net/linux-i3c
9558 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/i3c/linux.git
9559 F:      Documentation/ABI/testing/sysfs-bus-i3c
9560 F:      Documentation/devicetree/bindings/i3c/
9561 F:      Documentation/driver-api/i3c
9562 F:      drivers/i3c/
9563 F:      include/linux/i3c/
9564
9565 IA64 (Itanium) PLATFORM
9566 L:      linux-ia64@vger.kernel.org
9567 S:      Orphan
9568 F:      Documentation/ia64/
9569 F:      arch/ia64/
9570
9571 IBM Power 842 compression accelerator
9572 M:      Haren Myneni <haren@us.ibm.com>
9573 S:      Supported
9574 F:      crypto/842.c
9575 F:      drivers/crypto/nx/Kconfig
9576 F:      drivers/crypto/nx/Makefile
9577 F:      drivers/crypto/nx/nx-842*
9578 F:      include/linux/sw842.h
9579 F:      lib/842/
9580
9581 IBM Power in-Nest Crypto Acceleration
9582 M:      Breno Leitão <leitao@debian.org>
9583 M:      Nayna Jain <nayna@linux.ibm.com>
9584 M:      Paulo Flabiano Smorigo <pfsmorigo@gmail.com>
9585 L:      linux-crypto@vger.kernel.org
9586 S:      Supported
9587 F:      drivers/crypto/nx/Kconfig
9588 F:      drivers/crypto/nx/Makefile
9589 F:      drivers/crypto/nx/nx-aes*
9590 F:      drivers/crypto/nx/nx-sha*
9591 F:      drivers/crypto/nx/nx.*
9592 F:      drivers/crypto/nx/nx_csbcpb.h
9593 F:      drivers/crypto/nx/nx_debugfs.c
9594
9595 IBM Power IO DLPAR Driver for RPA-compliant PPC64 platform
9596 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
9597 L:      linux-pci@vger.kernel.org
9598 L:      linuxppc-dev@lists.ozlabs.org
9599 S:      Supported
9600 F:      drivers/pci/hotplug/rpadlpar*
9601
9602 IBM Power Linux RAID adapter
9603 M:      Brian King <brking@us.ibm.com>
9604 S:      Supported
9605 F:      drivers/scsi/ipr.*
9606
9607 IBM Power PCI Hotplug Driver for RPA-compliant PPC64 platform
9608 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
9609 L:      linux-pci@vger.kernel.org
9610 L:      linuxppc-dev@lists.ozlabs.org
9611 S:      Supported
9612 F:      drivers/pci/hotplug/rpaphp*
9613
9614 IBM Power SRIOV Virtual NIC Device Driver
9615 M:      Dany Madden <drt@linux.ibm.com>
9616 R:      Thomas Falcon <tlfalcon@linux.ibm.com>
9617 L:      netdev@vger.kernel.org
9618 S:      Supported
9619 F:      drivers/net/ethernet/ibm/ibmvnic.*
9620
9621 IBM Power Virtual Accelerator Switchboard
9622 L:      linuxppc-dev@lists.ozlabs.org
9623 S:      Supported
9624 F:      arch/powerpc/include/asm/vas.h
9625 F:      arch/powerpc/platforms/powernv/copy-paste.h
9626 F:      arch/powerpc/platforms/powernv/vas*
9627
9628 IBM Power Virtual Ethernet Device Driver
9629 M:      Cristobal Forno <cforno12@linux.ibm.com>
9630 L:      netdev@vger.kernel.org
9631 S:      Supported
9632 F:      drivers/net/ethernet/ibm/ibmveth.*
9633
9634 IBM Power Virtual FC Device Drivers
9635 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
9636 L:      linux-scsi@vger.kernel.org
9637 S:      Supported
9638 F:      drivers/scsi/ibmvscsi/ibmvfc*
9639
9640 IBM Power Virtual Management Channel Driver
9641 M:      Brad Warrum <bwarrum@linux.ibm.com>
9642 M:      Ritu Agarwal <rituagar@linux.ibm.com>
9643 S:      Supported
9644 F:      drivers/misc/ibmvmc.*
9645
9646 IBM Power Virtual SCSI Device Drivers
9647 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
9648 L:      linux-scsi@vger.kernel.org
9649 S:      Supported
9650 F:      drivers/scsi/ibmvscsi/ibmvscsi*
9651 F:      include/scsi/viosrp.h
9652
9653 IBM Power Virtual SCSI Device Target Driver
9654 M:      Michael Cyr <mikecyr@linux.ibm.com>
9655 L:      linux-scsi@vger.kernel.org
9656 L:      target-devel@vger.kernel.org
9657 S:      Supported
9658 F:      drivers/scsi/ibmvscsi_tgt/
9659
9660 IBM Power VMX Cryptographic instructions
9661 M:      Breno Leitão <leitao@debian.org>
9662 M:      Nayna Jain <nayna@linux.ibm.com>
9663 M:      Paulo Flabiano Smorigo <pfsmorigo@gmail.com>
9664 L:      linux-crypto@vger.kernel.org
9665 S:      Supported
9666 F:      drivers/crypto/vmx/Kconfig
9667 F:      drivers/crypto/vmx/Makefile
9668 F:      drivers/crypto/vmx/aes*
9669 F:      drivers/crypto/vmx/ghash*
9670 F:      drivers/crypto/vmx/ppc-xlate.pl
9671 F:      drivers/crypto/vmx/vmx.c
9672
9673 IBM ServeRAID RAID DRIVER
9674 S:      Orphan
9675 F:      drivers/scsi/ips.*
9676
9677 ICH LPC AND GPIO DRIVER
9678 M:      Peter Tyser <ptyser@xes-inc.com>
9679 S:      Maintained
9680 F:      drivers/gpio/gpio-ich.c
9681 F:      drivers/mfd/lpc_ich.c
9682
9683 ICY I2C DRIVER
9684 M:      Max Staudt <max@enpas.org>
9685 L:      linux-i2c@vger.kernel.org
9686 S:      Maintained
9687 F:      drivers/i2c/busses/i2c-icy.c
9688
9689 IDEAPAD LAPTOP EXTRAS DRIVER
9690 M:      Ike Panhc <ike.pan@canonical.com>
9691 L:      platform-driver-x86@vger.kernel.org
9692 S:      Maintained
9693 W:      http://launchpad.net/ideapad-laptop
9694 F:      drivers/platform/x86/ideapad-laptop.c
9695
9696 IDEAPAD LAPTOP SLIDEBAR DRIVER
9697 M:      Andrey Moiseev <o2g.org.ru@gmail.com>
9698 L:      linux-input@vger.kernel.org
9699 S:      Maintained
9700 W:      https://github.com/o2genum/ideapad-slidebar
9701 F:      drivers/input/misc/ideapad_slidebar.c
9702
9703 IDMAPPED MOUNTS
9704 M:      Christian Brauner <brauner@kernel.org>
9705 M:      Seth Forshee <sforshee@kernel.org>
9706 L:      linux-fsdevel@vger.kernel.org
9707 S:      Maintained
9708 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brauner/linux.git
9709 F:      Documentation/filesystems/idmappings.rst
9710 F:      tools/testing/selftests/mount_setattr/
9711 F:      include/linux/mnt_idmapping.h
9712
9713 IDT VersaClock 5 CLOCK DRIVER
9714 M:      Luca Ceresoli <luca@lucaceresoli.net>
9715 S:      Maintained
9716 F:      Documentation/devicetree/bindings/clock/idt,versaclock5.yaml
9717 F:      drivers/clk/clk-versaclock5.c
9718
9719 IEEE 802.15.4 SUBSYSTEM
9720 M:      Alexander Aring <alex.aring@gmail.com>
9721 M:      Stefan Schmidt <stefan@datenfreihafen.org>
9722 L:      linux-wpan@vger.kernel.org
9723 S:      Maintained
9724 W:      https://linux-wpan.org/
9725 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan.git
9726 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan-next.git
9727 F:      Documentation/networking/ieee802154.rst
9728 F:      drivers/net/ieee802154/
9729 F:      include/linux/ieee802154.h
9730 F:      include/linux/nl802154.h
9731 F:      include/net/af_ieee802154.h
9732 F:      include/net/cfg802154.h
9733 F:      include/net/ieee802154_netdev.h
9734 F:      include/net/mac802154.h
9735 F:      include/net/nl802154.h
9736 F:      net/ieee802154/
9737 F:      net/mac802154/
9738
9739 IFE PROTOCOL
9740 M:      Yotam Gigi <yotam.gi@gmail.com>
9741 M:      Jamal Hadi Salim <jhs@mojatatu.com>
9742 F:      include/net/ife.h
9743 F:      include/uapi/linux/ife.h
9744 F:      net/ife
9745
9746 IGORPLUG-USB IR RECEIVER
9747 M:      Sean Young <sean@mess.org>
9748 L:      linux-media@vger.kernel.org
9749 S:      Maintained
9750 F:      drivers/media/rc/igorplugusb.c
9751
9752 IGUANAWORKS USB IR TRANSCEIVER
9753 M:      Sean Young <sean@mess.org>
9754 L:      linux-media@vger.kernel.org
9755 S:      Maintained
9756 F:      drivers/media/rc/iguanair.c
9757
9758 IIO DIGITAL POTENTIOMETER DAC
9759 M:      Peter Rosin <peda@axentia.se>
9760 L:      linux-iio@vger.kernel.org
9761 S:      Maintained
9762 F:      Documentation/ABI/testing/sysfs-bus-iio-dac-dpot-dac
9763 F:      Documentation/devicetree/bindings/iio/dac/dpot-dac.yaml
9764 F:      drivers/iio/dac/dpot-dac.c
9765
9766 IIO ENVELOPE DETECTOR
9767 M:      Peter Rosin <peda@axentia.se>
9768 L:      linux-iio@vger.kernel.org
9769 S:      Maintained
9770 F:      Documentation/ABI/testing/sysfs-bus-iio-adc-envelope-detector
9771 F:      Documentation/devicetree/bindings/iio/adc/envelope-detector.yaml
9772 F:      drivers/iio/adc/envelope-detector.c
9773
9774 IIO MULTIPLEXER
9775 M:      Peter Rosin <peda@axentia.se>
9776 L:      linux-iio@vger.kernel.org
9777 S:      Maintained
9778 F:      Documentation/devicetree/bindings/iio/multiplexer/io-channel-mux.yaml
9779 F:      drivers/iio/multiplexer/iio-mux.c
9780
9781 IIO SCMI BASED DRIVER
9782 M:      Jyoti Bhayana <jbhayana@google.com>
9783 L:      linux-iio@vger.kernel.org
9784 S:      Maintained
9785 F:      drivers/iio/common/scmi_sensors/scmi_iio.c
9786
9787 IIO SUBSYSTEM AND DRIVERS
9788 M:      Jonathan Cameron <jic23@kernel.org>
9789 R:      Lars-Peter Clausen <lars@metafoo.de>
9790 L:      linux-iio@vger.kernel.org
9791 S:      Maintained
9792 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
9793 F:      Documentation/ABI/testing/configfs-iio*
9794 F:      Documentation/ABI/testing/sysfs-bus-iio*
9795 F:      Documentation/devicetree/bindings/iio/
9796 F:      drivers/iio/
9797 F:      drivers/staging/iio/
9798 F:      include/linux/iio/
9799 F:      tools/iio/
9800
9801 IIO UNIT CONVERTER
9802 M:      Peter Rosin <peda@axentia.se>
9803 L:      linux-iio@vger.kernel.org
9804 S:      Maintained
9805 F:      Documentation/devicetree/bindings/iio/afe/current-sense-amplifier.yaml
9806 F:      Documentation/devicetree/bindings/iio/afe/current-sense-shunt.yaml
9807 F:      Documentation/devicetree/bindings/iio/afe/voltage-divider.yaml
9808 F:      drivers/iio/afe/iio-rescale.c
9809
9810 IKANOS/ADI EAGLE ADSL USB DRIVER
9811 M:      Matthieu Castet <castet.matthieu@free.fr>
9812 M:      Stanislaw Gruszka <stf_xl@wp.pl>
9813 S:      Maintained
9814 F:      drivers/usb/atm/ueagle-atm.c
9815
9816 IMAGIS TOUCHSCREEN DRIVER
9817 M:      Markuss Broks <markuss.broks@gmail.com>
9818 S:      Maintained
9819 F:      Documentation/devicetree/bindings/input/touchscreen/imagis,ist3038c.yaml
9820 F:      drivers/input/touchscreen/imagis.c
9821
9822 IMGTEC ASCII LCD DRIVER
9823 M:      Paul Burton <paulburton@kernel.org>
9824 S:      Maintained
9825 F:      Documentation/devicetree/bindings/auxdisplay/img,ascii-lcd.yaml
9826 F:      drivers/auxdisplay/img-ascii-lcd.c
9827
9828 IMGTEC IR DECODER DRIVER
9829 S:      Orphan
9830 F:      drivers/media/rc/img-ir/
9831
9832 IMON SOUNDGRAPH USB IR RECEIVER
9833 M:      Sean Young <sean@mess.org>
9834 L:      linux-media@vger.kernel.org
9835 S:      Maintained
9836 F:      drivers/media/rc/imon.c
9837 F:      drivers/media/rc/imon_raw.c
9838
9839 IMS TWINTURBO FRAMEBUFFER DRIVER
9840 L:      linux-fbdev@vger.kernel.org
9841 S:      Orphan
9842 F:      drivers/video/fbdev/imsttfb.c
9843
9844 INA209 HARDWARE MONITOR DRIVER
9845 M:      Guenter Roeck <linux@roeck-us.net>
9846 L:      linux-hwmon@vger.kernel.org
9847 S:      Maintained
9848 F:      Documentation/devicetree/bindings/hwmon/ti,ina2xx.yaml
9849 F:      Documentation/hwmon/ina209.rst
9850 F:      drivers/hwmon/ina209.c
9851
9852 INA2XX HARDWARE MONITOR DRIVER
9853 M:      Guenter Roeck <linux@roeck-us.net>
9854 L:      linux-hwmon@vger.kernel.org
9855 S:      Maintained
9856 F:      Documentation/hwmon/ina2xx.rst
9857 F:      drivers/hwmon/ina2xx.c
9858 F:      include/linux/platform_data/ina2xx.h
9859
9860 INDUSTRY PACK SUBSYSTEM (IPACK)
9861 M:      Samuel Iglesias Gonsalvez <siglesias@igalia.com>
9862 M:      Jens Taprogge <jens.taprogge@taprogge.org>
9863 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
9864 L:      industrypack-devel@lists.sourceforge.net
9865 S:      Maintained
9866 W:      http://industrypack.sourceforge.net
9867 F:      drivers/ipack/
9868
9869 INFINEON DPS310 Driver
9870 M:      Eddie James <eajames@linux.ibm.com>
9871 L:      linux-iio@vger.kernel.org
9872 S:      Maintained
9873 F:      drivers/iio/pressure/dps310.c
9874
9875 INFINIBAND SUBSYSTEM
9876 M:      Jason Gunthorpe <jgg@nvidia.com>
9877 M:      Leon Romanovsky <leonro@nvidia.com>
9878 L:      linux-rdma@vger.kernel.org
9879 S:      Supported
9880 W:      https://github.com/linux-rdma/rdma-core
9881 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
9882 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rdma/rdma.git
9883 F:      Documentation/devicetree/bindings/infiniband/
9884 F:      Documentation/infiniband/
9885 F:      drivers/infiniband/
9886 F:      include/rdma/
9887 F:      include/trace/events/ib_mad.h
9888 F:      include/trace/events/ib_umad.h
9889 F:      include/uapi/linux/if_infiniband.h
9890 F:      include/uapi/rdma/
9891 F:      samples/bpf/ibumad_kern.c
9892 F:      samples/bpf/ibumad_user.c
9893
9894 INGENIC JZ4780 NAND DRIVER
9895 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
9896 L:      linux-mtd@lists.infradead.org
9897 L:      linux-mips@vger.kernel.org
9898 S:      Maintained
9899 F:      drivers/mtd/nand/raw/ingenic/
9900
9901 INGENIC JZ47xx SoCs
9902 M:      Paul Cercueil <paul@crapouillou.net>
9903 L:      linux-mips@vger.kernel.org
9904 S:      Maintained
9905 F:      arch/mips/boot/dts/ingenic/
9906 F:      arch/mips/generic/board-ingenic.c
9907 F:      arch/mips/include/asm/mach-ingenic/
9908 F:      arch/mips/ingenic/Kconfig
9909 F:      drivers/clk/ingenic/
9910 F:      drivers/dma/dma-jz4780.c
9911 F:      drivers/gpu/drm/ingenic/
9912 F:      drivers/i2c/busses/i2c-jz4780.c
9913 F:      drivers/iio/adc/ingenic-adc.c
9914 F:      drivers/irqchip/irq-ingenic.c
9915 F:      drivers/memory/jz4780-nemc.c
9916 F:      drivers/mmc/host/jz4740_mmc.c
9917 F:      drivers/mtd/nand/raw/ingenic/
9918 F:      drivers/pinctrl/pinctrl-ingenic.c
9919 F:      drivers/power/supply/ingenic-battery.c
9920 F:      drivers/pwm/pwm-jz4740.c
9921 F:      drivers/remoteproc/ingenic_rproc.c
9922 F:      drivers/rtc/rtc-jz4740.c
9923 F:      drivers/tty/serial/8250/8250_ingenic.c
9924 F:      drivers/usb/musb/jz4740.c
9925 F:      drivers/watchdog/jz4740_wdt.c
9926 F:      include/dt-bindings/iio/adc/ingenic,adc.h
9927 F:      include/linux/mfd/ingenic-tcu.h
9928 F:      sound/soc/codecs/jz47*
9929 F:      sound/soc/jz4740/
9930
9931 INJOINIC IP5xxx POWER BANK IC DRIVER
9932 M:      Samuel Holland <samuel@sholland.org>
9933 S:      Maintained
9934 F:      drivers/power/supply/ip5xxx_power.c
9935
9936 INOTIFY
9937 M:      Jan Kara <jack@suse.cz>
9938 R:      Amir Goldstein <amir73il@gmail.com>
9939 L:      linux-fsdevel@vger.kernel.org
9940 S:      Maintained
9941 F:      Documentation/filesystems/inotify.rst
9942 F:      fs/notify/inotify/
9943 F:      include/linux/inotify.h
9944 F:      include/uapi/linux/inotify.h
9945
9946 INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
9947 M:      Dmitry Torokhov <dmitry.torokhov@gmail.com>
9948 L:      linux-input@vger.kernel.org
9949 S:      Maintained
9950 Q:      http://patchwork.kernel.org/project/linux-input/list/
9951 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
9952 F:      Documentation/devicetree/bindings/input/
9953 F:      Documentation/devicetree/bindings/serio/
9954 F:      Documentation/input/
9955 F:      drivers/input/
9956 F:      include/linux/input.h
9957 F:      include/linux/input/
9958 F:      include/uapi/linux/input-event-codes.h
9959 F:      include/uapi/linux/input.h
9960
9961 INPUT MULTITOUCH (MT) PROTOCOL
9962 M:      Henrik Rydberg <rydberg@bitmath.org>
9963 L:      linux-input@vger.kernel.org
9964 S:      Odd fixes
9965 F:      Documentation/input/multi-touch-protocol.rst
9966 F:      drivers/input/input-mt.c
9967 K:      \b(ABS|SYN)_MT_
9968
9969 INSIDE SECURE CRYPTO DRIVER
9970 M:      Antoine Tenart <atenart@kernel.org>
9971 L:      linux-crypto@vger.kernel.org
9972 S:      Maintained
9973 F:      drivers/crypto/inside-secure/
9974
9975 INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
9976 M:      Mimi Zohar <zohar@linux.ibm.com>
9977 M:      Dmitry Kasatkin <dmitry.kasatkin@gmail.com>
9978 L:      linux-integrity@vger.kernel.org
9979 S:      Supported
9980 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/zohar/linux-integrity.git
9981 F:      security/integrity/ima/
9982 F:      security/integrity/
9983
9984 INTEL 810/815 FRAMEBUFFER DRIVER
9985 M:      Antonino Daplas <adaplas@gmail.com>
9986 L:      linux-fbdev@vger.kernel.org
9987 S:      Maintained
9988 F:      drivers/video/fbdev/i810/
9989
9990 INTEL ASoC DRIVERS
9991 M:      Cezary Rojewski <cezary.rojewski@intel.com>
9992 M:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
9993 M:      Liam Girdwood <liam.r.girdwood@linux.intel.com>
9994 M:      Peter Ujfalusi <peter.ujfalusi@linux.intel.com>
9995 M:      Bard Liao <yung-chuan.liao@linux.intel.com>
9996 M:      Ranjani Sridharan <ranjani.sridharan@linux.intel.com>
9997 M:      Kai Vehmanen <kai.vehmanen@linux.intel.com>
9998 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
9999 S:      Supported
10000 F:      sound/soc/intel/
10001
10002 INTEL ATOMISP2 DUMMY / POWER-MANAGEMENT DRIVER
10003 M:      Hans de Goede <hdegoede@redhat.com>
10004 L:      platform-driver-x86@vger.kernel.org
10005 S:      Maintained
10006 F:      drivers/platform/x86/intel/atomisp2/pm.c
10007
10008 INTEL ATOMISP2 LED DRIVER
10009 M:      Hans de Goede <hdegoede@redhat.com>
10010 L:      platform-driver-x86@vger.kernel.org
10011 S:      Maintained
10012 F:      drivers/platform/x86/intel/atomisp2/led.c
10013
10014 INTEL BIOS SAR INT1092 DRIVER
10015 M:      Shravan Sudhakar <s.shravan@intel.com>
10016 M:      Intel Corporation <linuxwwan@intel.com>
10017 L:      platform-driver-x86@vger.kernel.org
10018 S:      Maintained
10019 F:      drivers/platform/x86/intel/int1092/
10020
10021 INTEL BROXTON PMC DRIVER
10022 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
10023 M:      Zha Qipeng <qipeng.zha@intel.com>
10024 S:      Maintained
10025 F:      drivers/mfd/intel_pmc_bxt.c
10026 F:      include/linux/mfd/intel_pmc_bxt.h
10027
10028 INTEL C600 SERIES SAS CONTROLLER DRIVER
10029 M:      Artur Paszkiewicz <artur.paszkiewicz@intel.com>
10030 L:      linux-scsi@vger.kernel.org
10031 S:      Supported
10032 T:      git git://git.code.sf.net/p/intel-sas/isci
10033 F:      drivers/scsi/isci/
10034
10035 INTEL CPU family model numbers
10036 M:      Tony Luck <tony.luck@intel.com>
10037 M:      x86@kernel.org
10038 L:      linux-kernel@vger.kernel.org
10039 S:      Supported
10040 F:      arch/x86/include/asm/intel-family.h
10041
10042 INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
10043 M:      Jani Nikula <jani.nikula@linux.intel.com>
10044 M:      Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
10045 M:      Rodrigo Vivi <rodrigo.vivi@intel.com>
10046 M:      Tvrtko Ursulin <tvrtko.ursulin@linux.intel.com>
10047 L:      intel-gfx@lists.freedesktop.org
10048 S:      Supported
10049 W:      https://01.org/linuxgraphics/
10050 Q:      http://patchwork.freedesktop.org/project/intel-gfx/
10051 B:      https://gitlab.freedesktop.org/drm/intel/-/wikis/How-to-file-i915-bugs
10052 C:      irc://irc.oftc.net/intel-gfx
10053 T:      git git://anongit.freedesktop.org/drm-intel
10054 F:      Documentation/gpu/i915.rst
10055 F:      drivers/gpu/drm/i915/
10056 F:      include/drm/i915*
10057 F:      include/uapi/drm/i915_drm.h
10058
10059 INTEL ETHERNET DRIVERS
10060 M:      Jesse Brandeburg <jesse.brandeburg@intel.com>
10061 M:      Tony Nguyen <anthony.l.nguyen@intel.com>
10062 L:      intel-wired-lan@lists.osuosl.org (moderated for non-subscribers)
10063 S:      Supported
10064 W:      http://www.intel.com/support/feedback.htm
10065 W:      http://e1000.sourceforge.net/
10066 Q:      http://patchwork.ozlabs.org/project/intel-wired-lan/list/
10067 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tnguy/net-queue.git
10068 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tnguy/next-queue.git
10069 F:      Documentation/networking/device_drivers/ethernet/intel/
10070 F:      drivers/net/ethernet/intel/
10071 F:      drivers/net/ethernet/intel/*/
10072 F:      include/linux/avf/virtchnl.h
10073 F:      include/linux/net/intel/iidc.h
10074
10075 INTEL ETHERNET PROTOCOL DRIVER FOR RDMA
10076 M:      Mustafa Ismail <mustafa.ismail@intel.com>
10077 M:      Shiraz Saleem <shiraz.saleem@intel.com>
10078 L:      linux-rdma@vger.kernel.org
10079 S:      Supported
10080 F:      drivers/infiniband/hw/irdma/
10081 F:      include/uapi/rdma/irdma-abi.h
10082
10083 INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
10084 M:      Maik Broemme <mbroemme@libmpq.org>
10085 L:      linux-fbdev@vger.kernel.org
10086 S:      Maintained
10087 F:      Documentation/fb/intelfb.rst
10088 F:      drivers/video/fbdev/intelfb/
10089
10090 INTEL GPIO DRIVERS
10091 M:      Andy Shevchenko <andy@kernel.org>
10092 L:      linux-gpio@vger.kernel.org
10093 S:      Supported
10094 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
10095 F:      drivers/gpio/gpio-ich.c
10096 F:      drivers/gpio/gpio-merrifield.c
10097 F:      drivers/gpio/gpio-ml-ioh.c
10098 F:      drivers/gpio/gpio-pch.c
10099 F:      drivers/gpio/gpio-sch.c
10100 F:      drivers/gpio/gpio-sodaville.c
10101
10102 INTEL GVT-g DRIVERS (Intel GPU Virtualization)
10103 M:      Zhenyu Wang <zhenyuw@linux.intel.com>
10104 M:      Zhi Wang <zhi.a.wang@intel.com>
10105 L:      intel-gvt-dev@lists.freedesktop.org
10106 L:      intel-gfx@lists.freedesktop.org
10107 S:      Supported
10108 W:      https://01.org/igvt-g
10109 T:      git https://github.com/intel/gvt-linux.git
10110 F:      drivers/gpu/drm/i915/gvt/
10111
10112 INTEL HID EVENT DRIVER
10113 M:      Alex Hung <alex.hung@canonical.com>
10114 L:      platform-driver-x86@vger.kernel.org
10115 S:      Maintained
10116 F:      drivers/platform/x86/intel/hid.c
10117
10118 INTEL I/OAT DMA DRIVER
10119 M:      Dave Jiang <dave.jiang@intel.com>
10120 R:      Dan Williams <dan.j.williams@intel.com>
10121 L:      dmaengine@vger.kernel.org
10122 S:      Supported
10123 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
10124 F:      drivers/dma/ioat*
10125
10126 INTEL IADX DRIVER
10127 M:      Dave Jiang <dave.jiang@intel.com>
10128 L:      dmaengine@vger.kernel.org
10129 S:      Supported
10130 F:      drivers/dma/idxd/*
10131 F:      include/uapi/linux/idxd.h
10132
10133 INTEL IDLE DRIVER
10134 M:      Jacob Pan <jacob.jun.pan@linux.intel.com>
10135 M:      Len Brown <lenb@kernel.org>
10136 L:      linux-pm@vger.kernel.org
10137 S:      Supported
10138 B:      https://bugzilla.kernel.org
10139 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
10140 F:      drivers/idle/intel_idle.c
10141
10142 INTEL IN FIELD SCAN (IFS) DEVICE
10143 M:      Jithu Joseph <jithu.joseph@intel.com>
10144 R:      Ashok Raj <ashok.raj@intel.com>
10145 R:      Tony Luck <tony.luck@intel.com>
10146 S:      Maintained
10147 F:      drivers/platform/x86/intel/ifs
10148 F:      include/trace/events/intel_ifs.h
10149
10150 INTEL INTEGRATED SENSOR HUB DRIVER
10151 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
10152 M:      Jiri Kosina <jikos@kernel.org>
10153 L:      linux-input@vger.kernel.org
10154 S:      Maintained
10155 F:      drivers/hid/intel-ish-hid/
10156
10157 INTEL IOMMU (VT-d)
10158 M:      David Woodhouse <dwmw2@infradead.org>
10159 M:      Lu Baolu <baolu.lu@linux.intel.com>
10160 L:      iommu@lists.linux.dev
10161 S:      Supported
10162 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
10163 F:      drivers/iommu/intel/
10164 F:      include/linux/intel-iommu.h
10165 F:      include/linux/intel-svm.h
10166
10167 INTEL IOP-ADMA DMA DRIVER
10168 R:      Dan Williams <dan.j.williams@intel.com>
10169 S:      Odd fixes
10170 F:      drivers/dma/iop-adma.c
10171
10172 INTEL IPU3 CSI-2 CIO2 DRIVER
10173 M:      Yong Zhi <yong.zhi@intel.com>
10174 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
10175 M:      Bingbu Cao <bingbu.cao@intel.com>
10176 M:      Dan Scally <djrscally@gmail.com>
10177 R:      Tianshu Qiu <tian.shu.qiu@intel.com>
10178 L:      linux-media@vger.kernel.org
10179 S:      Maintained
10180 T:      git git://linuxtv.org/media_tree.git
10181 F:      Documentation/userspace-api/media/v4l/pixfmt-srggb10-ipu3.rst
10182 F:      drivers/media/pci/intel/ipu3/
10183
10184 INTEL IPU3 CSI-2 IMGU DRIVER
10185 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
10186 R:      Bingbu Cao <bingbu.cao@intel.com>
10187 R:      Tianshu Qiu <tian.shu.qiu@intel.com>
10188 L:      linux-media@vger.kernel.org
10189 S:      Maintained
10190 F:      Documentation/admin-guide/media/ipu3.rst
10191 F:      Documentation/admin-guide/media/ipu3_rcb.svg
10192 F:      Documentation/userspace-api/media/v4l/pixfmt-meta-intel-ipu3.rst
10193 F:      drivers/staging/media/ipu3/
10194
10195 INTEL IXP4XX CRYPTO SUPPORT
10196 M:      Corentin Labbe <clabbe@baylibre.com>
10197 L:      linux-crypto@vger.kernel.org
10198 S:      Maintained
10199 F:      drivers/crypto/ixp4xx_crypto.c
10200
10201 INTEL ISHTP ECLITE DRIVER
10202 M:      Sumesh K Naduvalath <sumesh.k.naduvalath@intel.com>
10203 L:      platform-driver-x86@vger.kernel.org
10204 S:      Supported
10205 F:      drivers/platform/x86/intel/ishtp_eclite.c
10206
10207 INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
10208 M:      Krzysztof Halasa <khalasa@piap.pl>
10209 S:      Maintained
10210 F:      drivers/net/ethernet/xscale/ixp4xx_eth.c
10211 F:      drivers/net/wan/ixp4xx_hss.c
10212 F:      drivers/soc/ixp4xx/ixp4xx-npe.c
10213 F:      drivers/soc/ixp4xx/ixp4xx-qmgr.c
10214 F:      include/linux/soc/ixp4xx/npe.h
10215 F:      include/linux/soc/ixp4xx/qmgr.h
10216
10217 INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
10218 M:      Deepak Saxena <dsaxena@plexity.net>
10219 S:      Maintained
10220 F:      Documentation/devicetree/bindings/rng/intel,ixp46x-rng.yaml
10221 F:      drivers/char/hw_random/ixp4xx-rng.c
10222
10223 INTEL KEEM BAY DRM DRIVER
10224 M:      Anitha Chrisanthus <anitha.chrisanthus@intel.com>
10225 M:      Edmund Dea <edmund.j.dea@intel.com>
10226 S:      Maintained
10227 F:      Documentation/devicetree/bindings/display/intel,keembay-display.yaml
10228 F:      drivers/gpu/drm/kmb/
10229
10230 INTEL KEEM BAY OCS AES/SM4 CRYPTO DRIVER
10231 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
10232 S:      Maintained
10233 F:      Documentation/devicetree/bindings/crypto/intel,keembay-ocs-aes.yaml
10234 F:      drivers/crypto/keembay/Kconfig
10235 F:      drivers/crypto/keembay/Makefile
10236 F:      drivers/crypto/keembay/keembay-ocs-aes-core.c
10237 F:      drivers/crypto/keembay/ocs-aes.c
10238 F:      drivers/crypto/keembay/ocs-aes.h
10239
10240 INTEL KEEM BAY OCS ECC CRYPTO DRIVER
10241 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
10242 M:      Prabhjot Khurana <prabhjot.khurana@intel.com>
10243 M:      Mark Gross <mgross@linux.intel.com>
10244 S:      Maintained
10245 F:      Documentation/devicetree/bindings/crypto/intel,keembay-ocs-ecc.yaml
10246 F:      drivers/crypto/keembay/Kconfig
10247 F:      drivers/crypto/keembay/Makefile
10248 F:      drivers/crypto/keembay/keembay-ocs-ecc.c
10249
10250 INTEL KEEM BAY OCS HCU CRYPTO DRIVER
10251 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
10252 M:      Declan Murphy <declan.murphy@intel.com>
10253 S:      Maintained
10254 F:      Documentation/devicetree/bindings/crypto/intel,keembay-ocs-hcu.yaml
10255 F:      drivers/crypto/keembay/Kconfig
10256 F:      drivers/crypto/keembay/Makefile
10257 F:      drivers/crypto/keembay/keembay-ocs-hcu-core.c
10258 F:      drivers/crypto/keembay/ocs-hcu.c
10259 F:      drivers/crypto/keembay/ocs-hcu.h
10260
10261 INTEL THUNDER BAY EMMC PHY DRIVER
10262 M:      Nandhini Srikandan <nandhini.srikandan@intel.com>
10263 M:      Rashmi A <rashmi.a@intel.com>
10264 S:      Maintained
10265 F:      Documentation/devicetree/bindings/phy/intel,phy-thunderbay-emmc.yaml
10266 F:      drivers/phy/intel/phy-intel-thunderbay-emmc.c
10267
10268 INTEL MANAGEMENT ENGINE (mei)
10269 M:      Tomas Winkler <tomas.winkler@intel.com>
10270 L:      linux-kernel@vger.kernel.org
10271 S:      Supported
10272 F:      Documentation/driver-api/mei/*
10273 F:      drivers/misc/mei/
10274 F:      drivers/watchdog/mei_wdt.c
10275 F:      include/linux/mei_aux.h
10276 F:      include/linux/mei_cl_bus.h
10277 F:      include/uapi/linux/mei.h
10278 F:      samples/mei/*
10279
10280 INTEL MAX 10 BMC MFD DRIVER
10281 M:      Xu Yilun <yilun.xu@intel.com>
10282 R:      Tom Rix <trix@redhat.com>
10283 S:      Maintained
10284 F:      Documentation/ABI/testing/sysfs-driver-intel-m10-bmc
10285 F:      Documentation/hwmon/intel-m10-bmc-hwmon.rst
10286 F:      drivers/hwmon/intel-m10-bmc-hwmon.c
10287 F:      drivers/mfd/intel-m10-bmc.c
10288 F:      include/linux/mfd/intel-m10-bmc.h
10289
10290 INTEL MENLOW THERMAL DRIVER
10291 M:      Sujith Thomas <sujith.thomas@intel.com>
10292 L:      linux-pm@vger.kernel.org
10293 S:      Supported
10294 W:      https://01.org/linux-acpi
10295 F:      drivers/thermal/intel/intel_menlow.c
10296
10297 INTEL P-Unit IPC DRIVER
10298 M:      Zha Qipeng <qipeng.zha@intel.com>
10299 L:      platform-driver-x86@vger.kernel.org
10300 S:      Maintained
10301 F:      arch/x86/include/asm/intel_punit_ipc.h
10302 F:      drivers/platform/x86/intel/punit_ipc.c
10303
10304 INTEL PMC CORE DRIVER
10305 M:      Rajneesh Bhardwaj <irenic.rajneesh@gmail.com>
10306 M:      David E Box <david.e.box@intel.com>
10307 L:      platform-driver-x86@vger.kernel.org
10308 S:      Maintained
10309 F:      Documentation/ABI/testing/sysfs-platform-intel-pmc
10310 F:      drivers/platform/x86/intel/pmc/
10311
10312 INTEL PMIC GPIO DRIVERS
10313 M:      Andy Shevchenko <andy@kernel.org>
10314 S:      Supported
10315 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
10316 F:      drivers/gpio/gpio-*cove.c
10317
10318 INTEL PMIC MULTIFUNCTION DEVICE DRIVERS
10319 M:      Andy Shevchenko <andy@kernel.org>
10320 S:      Maintained
10321 F:      drivers/mfd/intel_soc_pmic*
10322 F:      include/linux/mfd/intel_soc_pmic*
10323
10324 INTEL PMT DRIVERS
10325 M:      David E. Box <david.e.box@linux.intel.com>
10326 S:      Supported
10327 F:      drivers/platform/x86/intel/pmt/
10328
10329 INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
10330 M:      Stanislav Yakovlev <stas.yakovlev@gmail.com>
10331 L:      linux-wireless@vger.kernel.org
10332 S:      Maintained
10333 F:      Documentation/networking/device_drivers/wifi/intel/ipw2100.rst
10334 F:      Documentation/networking/device_drivers/wifi/intel/ipw2200.rst
10335 F:      drivers/net/wireless/intel/ipw2x00/
10336
10337 INTEL PSTATE DRIVER
10338 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
10339 M:      Len Brown <lenb@kernel.org>
10340 L:      linux-pm@vger.kernel.org
10341 S:      Supported
10342 F:      drivers/cpufreq/intel_pstate.c
10343
10344 INTEL QUADRATURE ENCODER PERIPHERAL DRIVER
10345 M:      Jarkko Nikula <jarkko.nikula@linux.intel.com>
10346 L:      linux-iio@vger.kernel.org
10347 F:      drivers/counter/intel-qep.c
10348
10349 INTEL SCU DRIVERS
10350 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
10351 S:      Maintained
10352 F:      arch/x86/include/asm/intel_scu_ipc.h
10353 F:      drivers/platform/x86/intel_scu_*
10354
10355 INTEL SDSI DRIVER
10356 M:      David E. Box <david.e.box@linux.intel.com>
10357 S:      Supported
10358 F:      drivers/platform/x86/intel/sdsi.c
10359 F:      tools/arch/x86/intel_sdsi/
10360 F:      tools/testing/selftests/drivers/sdsi/
10361
10362 INTEL SKYLAKE INT3472 ACPI DEVICE DRIVER
10363 M:      Daniel Scally <djrscally@gmail.com>
10364 S:      Maintained
10365 F:      drivers/platform/x86/intel/int3472/
10366
10367 INTEL SPEED SELECT TECHNOLOGY
10368 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
10369 L:      platform-driver-x86@vger.kernel.org
10370 S:      Maintained
10371 F:      drivers/platform/x86/intel/speed_select_if/
10372 F:      include/uapi/linux/isst_if.h
10373 F:      tools/power/x86/intel-speed-select/
10374
10375 INTEL STRATIX10 FIRMWARE DRIVERS
10376 M:      Dinh Nguyen <dinguyen@kernel.org>
10377 L:      linux-kernel@vger.kernel.org
10378 S:      Maintained
10379 F:      Documentation/ABI/testing/sysfs-devices-platform-stratix10-rsu
10380 F:      Documentation/devicetree/bindings/firmware/intel,stratix10-svc.txt
10381 F:      drivers/firmware/stratix10-rsu.c
10382 F:      drivers/firmware/stratix10-svc.c
10383 F:      include/linux/firmware/intel/stratix10-smc.h
10384 F:      include/linux/firmware/intel/stratix10-svc-client.h
10385 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
10386
10387 INTEL TELEMETRY DRIVER
10388 M:      Rajneesh Bhardwaj <irenic.rajneesh@gmail.com>
10389 M:      "David E. Box" <david.e.box@linux.intel.com>
10390 L:      platform-driver-x86@vger.kernel.org
10391 S:      Maintained
10392 F:      arch/x86/include/asm/intel_telemetry.h
10393 F:      drivers/platform/x86/intel/telemetry/
10394
10395 INTEL UNCORE FREQUENCY CONTROL
10396 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
10397 L:      platform-driver-x86@vger.kernel.org
10398 S:      Maintained
10399 F:      Documentation/admin-guide/pm/intel_uncore_frequency_scaling.rst
10400 F:      drivers/platform/x86/intel/uncore-frequency/
10401
10402 INTEL VENDOR SPECIFIC EXTENDED CAPABILITIES DRIVER
10403 M:      David E. Box <david.e.box@linux.intel.com>
10404 S:      Supported
10405 F:      drivers/platform/x86/intel/vsec.*
10406
10407 INTEL VIRTUAL BUTTON DRIVER
10408 M:      AceLan Kao <acelan.kao@canonical.com>
10409 L:      platform-driver-x86@vger.kernel.org
10410 S:      Maintained
10411 F:      drivers/platform/x86/intel/vbtn.c
10412
10413 INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
10414 M:      Stanislaw Gruszka <stf_xl@wp.pl>
10415 L:      linux-wireless@vger.kernel.org
10416 S:      Supported
10417 F:      drivers/net/wireless/intel/iwlegacy/
10418
10419 INTEL WIRELESS WIFI LINK (iwlwifi)
10420 M:      Gregory Greenman <gregory.greenman@intel.com>
10421 L:      linux-wireless@vger.kernel.org
10422 S:      Supported
10423 W:      https://wireless.wiki.kernel.org/en/users/drivers/iwlwifi
10424 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
10425 F:      drivers/net/wireless/intel/iwlwifi/
10426
10427 INTEL WMI SLIM BOOTLOADER (SBL) FIRMWARE UPDATE DRIVER
10428 M:      Jithu Joseph <jithu.joseph@intel.com>
10429 R:      Maurice Ma <maurice.ma@intel.com>
10430 S:      Maintained
10431 W:      https://slimbootloader.github.io/security/firmware-update.html
10432 F:      drivers/platform/x86/intel/wmi/sbl-fw-update.c
10433
10434 INTEL WMI THUNDERBOLT FORCE POWER DRIVER
10435 L:      Dell.Client.Kernel@dell.com
10436 S:      Maintained
10437 F:      drivers/platform/x86/intel/wmi/thunderbolt.c
10438
10439 INTEL WWAN IOSM DRIVER
10440 M:      M Chetan Kumar <m.chetan.kumar@intel.com>
10441 M:      Intel Corporation <linuxwwan@intel.com>
10442 L:      netdev@vger.kernel.org
10443 S:      Maintained
10444 F:      drivers/net/wwan/iosm/
10445
10446 INTEL(R) TRACE HUB
10447 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
10448 S:      Supported
10449 F:      Documentation/trace/intel_th.rst
10450 F:      drivers/hwtracing/intel_th/
10451 F:      include/linux/intel_th.h
10452
10453 INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
10454 M:      Ning Sun <ning.sun@intel.com>
10455 L:      tboot-devel@lists.sourceforge.net
10456 S:      Supported
10457 W:      http://tboot.sourceforge.net
10458 T:      hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
10459 F:      Documentation/x86/intel_txt.rst
10460 F:      arch/x86/kernel/tboot.c
10461 F:      include/linux/tboot.h
10462
10463 INTEL SGX
10464 M:      Jarkko Sakkinen <jarkko@kernel.org>
10465 R:      Dave Hansen <dave.hansen@linux.intel.com>
10466 L:      linux-sgx@vger.kernel.org
10467 S:      Supported
10468 Q:      https://patchwork.kernel.org/project/intel-sgx/list/
10469 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/sgx
10470 F:      Documentation/x86/sgx.rst
10471 F:      arch/x86/entry/vdso/vsgx.S
10472 F:      arch/x86/include/asm/sgx.h
10473 F:      arch/x86/include/uapi/asm/sgx.h
10474 F:      arch/x86/kernel/cpu/sgx/*
10475 F:      tools/testing/selftests/sgx/*
10476 K:      \bSGX_
10477
10478 INTERCONNECT API
10479 M:      Georgi Djakov <djakov@kernel.org>
10480 L:      linux-pm@vger.kernel.org
10481 S:      Maintained
10482 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/djakov/icc.git
10483 F:      Documentation/devicetree/bindings/interconnect/
10484 F:      Documentation/driver-api/interconnect.rst
10485 F:      drivers/interconnect/
10486 F:      include/dt-bindings/interconnect/
10487 F:      include/linux/interconnect-provider.h
10488 F:      include/linux/interconnect.h
10489
10490 INTERRUPT COUNTER DRIVER
10491 M:      Oleksij Rempel <o.rempel@pengutronix.de>
10492 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
10493 L:      linux-iio@vger.kernel.org
10494 F:      Documentation/devicetree/bindings/counter/interrupt-counter.yaml
10495 F:      drivers/counter/interrupt-cnt.c
10496
10497 INTERSIL ISL7998X VIDEO DECODER DRIVER
10498 M:      Michael Tretter <m.tretter@pengutronix.de>
10499 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
10500 L:      linux-media@vger.kernel.org
10501 S:      Maintained
10502 F:      Documentation/devicetree/bindings/media/i2c/isil,isl79987.yaml
10503 F:      drivers/media/i2c/isl7998x.c
10504
10505 INVENSENSE ICM-426xx IMU DRIVER
10506 M:      Jean-Baptiste Maneyrol <jmaneyrol@invensense.com>
10507 L:      linux-iio@vger.kernel.org
10508 S:      Maintained
10509 W:      https://invensense.tdk.com/
10510 F:      Documentation/devicetree/bindings/iio/imu/invensense,icm42600.yaml
10511 F:      drivers/iio/imu/inv_icm42600/
10512
10513 INVENSENSE MPU-3050 GYROSCOPE DRIVER
10514 M:      Linus Walleij <linus.walleij@linaro.org>
10515 L:      linux-iio@vger.kernel.org
10516 S:      Maintained
10517 F:      Documentation/devicetree/bindings/iio/gyroscope/invensense,mpu3050.yaml
10518 F:      drivers/iio/gyro/mpu3050*
10519
10520 IOC3 ETHERNET DRIVER
10521 M:      Ralf Baechle <ralf@linux-mips.org>
10522 L:      linux-mips@vger.kernel.org
10523 S:      Maintained
10524 F:      drivers/net/ethernet/sgi/ioc3-eth.c
10525
10526 IOMAP FILESYSTEM LIBRARY
10527 M:      Christoph Hellwig <hch@infradead.org>
10528 M:      Darrick J. Wong <djwong@kernel.org>
10529 L:      linux-xfs@vger.kernel.org
10530 L:      linux-fsdevel@vger.kernel.org
10531 S:      Supported
10532 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
10533 F:      fs/iomap/
10534 F:      include/linux/iomap.h
10535
10536 IOMMU DRIVERS
10537 M:      Joerg Roedel <joro@8bytes.org>
10538 M:      Will Deacon <will@kernel.org>
10539 L:      iommu@lists.linux.dev
10540 S:      Maintained
10541 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
10542 F:      Documentation/devicetree/bindings/iommu/
10543 F:      Documentation/userspace-api/iommu.rst
10544 F:      drivers/iommu/
10545 F:      include/linux/iommu.h
10546 F:      include/linux/iova.h
10547 F:      include/linux/of_iommu.h
10548 F:      include/uapi/linux/iommu.h
10549
10550 IOSYS-MAP HELPERS
10551 M:      Thomas Zimmermann <tzimmermann@suse.de>
10552 L:      dri-devel@lists.freedesktop.org
10553 S:      Maintained
10554 T:      git git://anongit.freedesktop.org/drm/drm-misc
10555 F:      include/linux/iosys-map.h
10556
10557 IO_URING
10558 M:      Jens Axboe <axboe@kernel.dk>
10559 R:      Pavel Begunkov <asml.silence@gmail.com>
10560 L:      io-uring@vger.kernel.org
10561 S:      Maintained
10562 T:      git git://git.kernel.dk/linux-block
10563 T:      git git://git.kernel.dk/liburing
10564 F:      io_uring/
10565 F:      include/linux/io_uring.h
10566 F:      include/uapi/linux/io_uring.h
10567 F:      tools/io_uring/
10568
10569 IPMI SUBSYSTEM
10570 M:      Corey Minyard <minyard@acm.org>
10571 L:      openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
10572 S:      Supported
10573 W:      http://openipmi.sourceforge.net/
10574 T:      git https://github.com/cminyard/linux-ipmi.git for-next
10575 F:      Documentation/driver-api/ipmi.rst
10576 F:      Documentation/devicetree/bindings/ipmi/
10577 F:      drivers/char/ipmi/
10578 F:      include/linux/ipmi*
10579 F:      include/uapi/linux/ipmi*
10580
10581 IPS SCSI RAID DRIVER
10582 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
10583 L:      linux-scsi@vger.kernel.org
10584 S:      Maintained
10585 W:      http://www.adaptec.com/
10586 F:      drivers/scsi/ips*
10587
10588 IPVS
10589 M:      Simon Horman <horms@verge.net.au>
10590 M:      Julian Anastasov <ja@ssi.bg>
10591 L:      netdev@vger.kernel.org
10592 L:      lvs-devel@vger.kernel.org
10593 S:      Maintained
10594 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs-next.git
10595 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs.git
10596 F:      Documentation/networking/ipvs-sysctl.rst
10597 F:      include/net/ip_vs.h
10598 F:      include/uapi/linux/ip_vs.h
10599 F:      net/netfilter/ipvs/
10600
10601 IPWIRELESS DRIVER
10602 M:      Jiri Kosina <jikos@kernel.org>
10603 M:      David Sterba <dsterba@suse.com>
10604 S:      Odd Fixes
10605 F:      drivers/tty/ipwireless/
10606
10607 IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
10608 M:      Marc Zyngier <maz@kernel.org>
10609 S:      Maintained
10610 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
10611 F:      Documentation/core-api/irq/irq-domain.rst
10612 F:      include/linux/irqdomain.h
10613 F:      kernel/irq/irqdomain.c
10614 F:      kernel/irq/msi.c
10615
10616 IRQ SUBSYSTEM
10617 M:      Thomas Gleixner <tglx@linutronix.de>
10618 L:      linux-kernel@vger.kernel.org
10619 S:      Maintained
10620 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
10621 F:      kernel/irq/
10622
10623 IRQCHIP DRIVERS
10624 M:      Thomas Gleixner <tglx@linutronix.de>
10625 M:      Marc Zyngier <maz@kernel.org>
10626 L:      linux-kernel@vger.kernel.org
10627 S:      Maintained
10628 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
10629 F:      Documentation/devicetree/bindings/interrupt-controller/
10630 F:      drivers/irqchip/
10631
10632 ISA
10633 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
10634 S:      Maintained
10635 F:      Documentation/driver-api/isa.rst
10636 F:      drivers/base/isa.c
10637 F:      include/linux/isa.h
10638
10639 ISA RADIO MODULE
10640 M:      Hans Verkuil <hverkuil@xs4all.nl>
10641 L:      linux-media@vger.kernel.org
10642 S:      Maintained
10643 W:      https://linuxtv.org
10644 T:      git git://linuxtv.org/media_tree.git
10645 F:      drivers/media/radio/radio-isa*
10646
10647 ISAPNP
10648 M:      Jaroslav Kysela <perex@perex.cz>
10649 S:      Maintained
10650 F:      Documentation/driver-api/isapnp.rst
10651 F:      drivers/pnp/isapnp/
10652 F:      include/linux/isapnp.h
10653
10654 ISCSI
10655 M:      Lee Duncan <lduncan@suse.com>
10656 M:      Chris Leech <cleech@redhat.com>
10657 M:      Mike Christie <michael.christie@oracle.com>
10658 L:      open-iscsi@googlegroups.com
10659 L:      linux-scsi@vger.kernel.org
10660 S:      Maintained
10661 W:      www.open-iscsi.com
10662 F:      drivers/scsi/*iscsi*
10663 F:      include/scsi/*iscsi*
10664
10665 iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
10666 M:      Peter Jones <pjones@redhat.com>
10667 M:      Konrad Rzeszutek Wilk <konrad@kernel.org>
10668 S:      Maintained
10669 F:      drivers/firmware/iscsi_ibft*
10670
10671 ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR
10672 M:      Sagi Grimberg <sagi@grimberg.me>
10673 M:      Max Gurtovoy <mgurtovoy@nvidia.com>
10674 L:      linux-rdma@vger.kernel.org
10675 S:      Supported
10676 W:      http://www.openfabrics.org
10677 W:      www.open-iscsi.org
10678 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
10679 F:      drivers/infiniband/ulp/iser/
10680
10681 ISCSI EXTENSIONS FOR RDMA (ISER) TARGET
10682 M:      Sagi Grimberg <sagi@grimberg.me>
10683 L:      linux-rdma@vger.kernel.org
10684 L:      target-devel@vger.kernel.org
10685 S:      Supported
10686 W:      http://www.linux-iscsi.org
10687 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
10688 F:      drivers/infiniband/ulp/isert
10689
10690 ISDN/CMTP OVER BLUETOOTH
10691 M:      Karsten Keil <isdn@linux-pingi.de>
10692 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
10693 L:      netdev@vger.kernel.org
10694 S:      Odd Fixes
10695 W:      http://www.isdn4linux.de
10696 F:      Documentation/isdn/
10697 F:      drivers/isdn/capi/
10698 F:      include/linux/isdn/
10699 F:      include/uapi/linux/isdn/
10700 F:      net/bluetooth/cmtp/
10701
10702 ISDN/mISDN SUBSYSTEM
10703 M:      Karsten Keil <isdn@linux-pingi.de>
10704 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
10705 L:      netdev@vger.kernel.org
10706 S:      Maintained
10707 W:      http://www.isdn4linux.de
10708 F:      drivers/isdn/Kconfig
10709 F:      drivers/isdn/Makefile
10710 F:      drivers/isdn/hardware/
10711 F:      drivers/isdn/mISDN/
10712
10713 IT87 HARDWARE MONITORING DRIVER
10714 M:      Jean Delvare <jdelvare@suse.com>
10715 L:      linux-hwmon@vger.kernel.org
10716 S:      Maintained
10717 F:      Documentation/hwmon/it87.rst
10718 F:      drivers/hwmon/it87.c
10719
10720 IT913X MEDIA DRIVER
10721 M:      Antti Palosaari <crope@iki.fi>
10722 L:      linux-media@vger.kernel.org
10723 S:      Maintained
10724 W:      https://linuxtv.org
10725 W:      http://palosaari.fi/linux/
10726 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10727 T:      git git://linuxtv.org/anttip/media_tree.git
10728 F:      drivers/media/tuners/it913x*
10729
10730 ITE IT66121 HDMI BRIDGE DRIVER
10731 M:      Phong LE <ple@baylibre.com>
10732 M:      Neil Armstrong <narmstrong@baylibre.com>
10733 S:      Maintained
10734 T:      git git://anongit.freedesktop.org/drm/drm-misc
10735 F:      Documentation/devicetree/bindings/display/bridge/ite,it66121.yaml
10736 F:      drivers/gpu/drm/bridge/ite-it66121.c
10737
10738 IVTV VIDEO4LINUX DRIVER
10739 M:      Andy Walls <awalls@md.metrocast.net>
10740 L:      linux-media@vger.kernel.org
10741 S:      Maintained
10742 W:      https://linuxtv.org
10743 T:      git git://linuxtv.org/media_tree.git
10744 F:      Documentation/admin-guide/media/ivtv*
10745 F:      drivers/media/pci/ivtv/
10746 F:      include/uapi/linux/ivtv*
10747
10748 IX2505V MEDIA DRIVER
10749 M:      Malcolm Priestley <tvboxspy@gmail.com>
10750 L:      linux-media@vger.kernel.org
10751 S:      Maintained
10752 W:      https://linuxtv.org
10753 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10754 F:      drivers/media/dvb-frontends/ix2505v*
10755
10756 JAILHOUSE HYPERVISOR INTERFACE
10757 M:      Jan Kiszka <jan.kiszka@siemens.com>
10758 L:      jailhouse-dev@googlegroups.com
10759 S:      Maintained
10760 F:      arch/x86/include/asm/jailhouse_para.h
10761 F:      arch/x86/kernel/jailhouse.c
10762
10763 JC42.4 TEMPERATURE SENSOR DRIVER
10764 M:      Guenter Roeck <linux@roeck-us.net>
10765 L:      linux-hwmon@vger.kernel.org
10766 S:      Maintained
10767 F:      Documentation/devicetree/bindings/hwmon/jedec,jc42.yaml
10768 F:      Documentation/hwmon/jc42.rst
10769 F:      drivers/hwmon/jc42.c
10770
10771 JFS FILESYSTEM
10772 M:      Dave Kleikamp <shaggy@kernel.org>
10773 L:      jfs-discussion@lists.sourceforge.net
10774 S:      Maintained
10775 W:      http://jfs.sourceforge.net/
10776 T:      git git://github.com/kleikamp/linux-shaggy.git
10777 F:      Documentation/admin-guide/jfs.rst
10778 F:      fs/jfs/
10779
10780 JME NETWORK DRIVER
10781 M:      Guo-Fu Tseng <cooldavid@cooldavid.org>
10782 L:      netdev@vger.kernel.org
10783 S:      Maintained
10784 F:      drivers/net/ethernet/jme.*
10785
10786 JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
10787 M:      David Woodhouse <dwmw2@infradead.org>
10788 M:      Richard Weinberger <richard@nod.at>
10789 L:      linux-mtd@lists.infradead.org
10790 S:      Odd Fixes
10791 W:      http://www.linux-mtd.infradead.org/doc/jffs2.html
10792 T:      git git://git.infradead.org/ubifs-2.6.git
10793 F:      fs/jffs2/
10794 F:      include/uapi/linux/jffs2.h
10795
10796 JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
10797 M:      "Theodore Ts'o" <tytso@mit.edu>
10798 M:      Jan Kara <jack@suse.com>
10799 L:      linux-ext4@vger.kernel.org
10800 S:      Maintained
10801 F:      fs/jbd2/
10802 F:      include/linux/jbd2.h
10803
10804 JPU V4L2 MEM2MEM DRIVER FOR RENESAS
10805 M:      Mikhail Ulyanov <mikhail.ulyanov@cogentembedded.com>
10806 L:      linux-media@vger.kernel.org
10807 L:      linux-renesas-soc@vger.kernel.org
10808 S:      Maintained
10809 F:      drivers/media/platform/renesas/rcar_jpu.c
10810
10811 JSM Neo PCI based serial card
10812 L:      linux-serial@vger.kernel.org
10813 S:      Orphan
10814 F:      drivers/tty/serial/jsm/
10815
10816 K10TEMP HARDWARE MONITORING DRIVER
10817 M:      Clemens Ladisch <clemens@ladisch.de>
10818 L:      linux-hwmon@vger.kernel.org
10819 S:      Maintained
10820 F:      Documentation/hwmon/k10temp.rst
10821 F:      drivers/hwmon/k10temp.c
10822
10823 K8TEMP HARDWARE MONITORING DRIVER
10824 M:      Rudolf Marek <r.marek@assembler.cz>
10825 L:      linux-hwmon@vger.kernel.org
10826 S:      Maintained
10827 F:      Documentation/hwmon/k8temp.rst
10828 F:      drivers/hwmon/k8temp.c
10829
10830 KASAN
10831 M:      Andrey Ryabinin <ryabinin.a.a@gmail.com>
10832 R:      Alexander Potapenko <glider@google.com>
10833 R:      Andrey Konovalov <andreyknvl@gmail.com>
10834 R:      Dmitry Vyukov <dvyukov@google.com>
10835 R:      Vincenzo Frascino <vincenzo.frascino@arm.com>
10836 L:      kasan-dev@googlegroups.com
10837 S:      Maintained
10838 F:      Documentation/dev-tools/kasan.rst
10839 F:      arch/*/include/asm/*kasan.h
10840 F:      arch/*/mm/kasan_init*
10841 F:      include/linux/kasan*.h
10842 F:      lib/Kconfig.kasan
10843 F:      lib/test_kasan*.c
10844 F:      mm/kasan/
10845 F:      scripts/Makefile.kasan
10846
10847 KCONFIG
10848 M:      Masahiro Yamada <masahiroy@kernel.org>
10849 L:      linux-kbuild@vger.kernel.org
10850 S:      Maintained
10851 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git kconfig
10852 F:      Documentation/kbuild/kconfig*
10853 F:      scripts/Kconfig.include
10854 F:      scripts/kconfig/
10855
10856 KCOV
10857 R:      Dmitry Vyukov <dvyukov@google.com>
10858 R:      Andrey Konovalov <andreyknvl@gmail.com>
10859 L:      kasan-dev@googlegroups.com
10860 S:      Maintained
10861 F:      Documentation/dev-tools/kcov.rst
10862 F:      include/linux/kcov.h
10863 F:      include/uapi/linux/kcov.h
10864 F:      kernel/kcov.c
10865 F:      scripts/Makefile.kcov
10866
10867 KCSAN
10868 M:      Marco Elver <elver@google.com>
10869 R:      Dmitry Vyukov <dvyukov@google.com>
10870 L:      kasan-dev@googlegroups.com
10871 S:      Maintained
10872 F:      Documentation/dev-tools/kcsan.rst
10873 F:      include/linux/kcsan*.h
10874 F:      kernel/kcsan/
10875 F:      lib/Kconfig.kcsan
10876 F:      scripts/Makefile.kcsan
10877
10878 KDUMP
10879 M:      Baoquan He <bhe@redhat.com>
10880 R:      Vivek Goyal <vgoyal@redhat.com>
10881 R:      Dave Young <dyoung@redhat.com>
10882 L:      kexec@lists.infradead.org
10883 S:      Maintained
10884 W:      http://lse.sourceforge.net/kdump/
10885 F:      Documentation/admin-guide/kdump/
10886 F:      fs/proc/vmcore.c
10887 F:      include/linux/crash_core.h
10888 F:      include/linux/crash_dump.h
10889 F:      include/uapi/linux/vmcore.h
10890 F:      kernel/crash_*.c
10891
10892 KEENE FM RADIO TRANSMITTER DRIVER
10893 M:      Hans Verkuil <hverkuil@xs4all.nl>
10894 L:      linux-media@vger.kernel.org
10895 S:      Maintained
10896 W:      https://linuxtv.org
10897 T:      git git://linuxtv.org/media_tree.git
10898 F:      drivers/media/radio/radio-keene*
10899
10900 KERNEL AUTOMOUNTER
10901 M:      Ian Kent <raven@themaw.net>
10902 L:      autofs@vger.kernel.org
10903 S:      Maintained
10904 F:      fs/autofs/
10905
10906 KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
10907 M:      Masahiro Yamada <masahiroy@kernel.org>
10908 M:      Michal Marek <michal.lkml@markovi.net>
10909 R:      Nick Desaulniers <ndesaulniers@google.com>
10910 L:      linux-kbuild@vger.kernel.org
10911 S:      Maintained
10912 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git
10913 F:      Documentation/kbuild/
10914 F:      Makefile
10915 F:      scripts/*vmlinux*
10916 F:      scripts/Kbuild*
10917 F:      scripts/Makefile*
10918 F:      scripts/basic/
10919 F:      scripts/dummy-tools/
10920 F:      scripts/mk*
10921 F:      scripts/mod/
10922 F:      scripts/package/
10923
10924 KERNEL HARDENING (not covered by other areas)
10925 M:      Kees Cook <keescook@chromium.org>
10926 L:      linux-hardening@vger.kernel.org
10927 S:      Supported
10928 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/hardening
10929 F:      include/linux/overflow.h
10930 F:      include/linux/randomize_kstack.h
10931 F:      mm/usercopy.c
10932 K:      \b(add|choose)_random_kstack_offset\b
10933 K:      \b__check_(object_size|heap_object)\b
10934
10935 KERNEL JANITORS
10936 L:      kernel-janitors@vger.kernel.org
10937 S:      Odd Fixes
10938 W:      http://kernelnewbies.org/KernelJanitors
10939
10940 KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
10941 M:      Chuck Lever <chuck.lever@oracle.com>
10942 M:      Jeff Layton <jlayton@kernel.org>
10943 L:      linux-nfs@vger.kernel.org
10944 S:      Supported
10945 W:      http://nfs.sourceforge.net/
10946 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/cel/linux.git
10947 F:      fs/lockd/
10948 F:      fs/nfs_common/
10949 F:      fs/nfsd/
10950 F:      include/linux/lockd/
10951 F:      include/linux/sunrpc/
10952 F:      include/uapi/linux/nfsd/
10953 F:      include/uapi/linux/sunrpc/
10954 F:      net/sunrpc/
10955 F:      Documentation/filesystems/nfs/
10956
10957 KERNEL REGRESSIONS
10958 M:      Thorsten Leemhuis <linux@leemhuis.info>
10959 L:      regressions@lists.linux.dev
10960 S:      Supported
10961 F:      Documentation/admin-guide/reporting-regressions.rst
10962 F:      Documentation/process/handling-regressions.rst
10963
10964 KERNEL SELFTEST FRAMEWORK
10965 M:      Shuah Khan <shuah@kernel.org>
10966 M:      Shuah Khan <skhan@linuxfoundation.org>
10967 L:      linux-kselftest@vger.kernel.org
10968 S:      Maintained
10969 Q:      https://patchwork.kernel.org/project/linux-kselftest/list/
10970 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest.git
10971 F:      Documentation/dev-tools/kselftest*
10972 F:      tools/testing/selftests/
10973
10974 KERNEL SMB3 SERVER (KSMBD)
10975 M:      Namjae Jeon <linkinjeon@kernel.org>
10976 M:      Steve French <sfrench@samba.org>
10977 M:      Hyunchul Lee <hyc.lee@gmail.com>
10978 R:      Sergey Senozhatsky <senozhatsky@chromium.org>
10979 L:      linux-cifs@vger.kernel.org
10980 S:      Maintained
10981 T:      git git://git.samba.org/ksmbd.git
10982 F:      fs/ksmbd/
10983 F:      fs/smbfs_common/
10984
10985 KERNEL UNIT TESTING FRAMEWORK (KUnit)
10986 M:      Brendan Higgins <brendanhiggins@google.com>
10987 L:      linux-kselftest@vger.kernel.org
10988 L:      kunit-dev@googlegroups.com
10989 S:      Maintained
10990 W:      https://google.github.io/kunit-docs/third_party/kernel/docs/
10991 F:      Documentation/dev-tools/kunit/
10992 F:      include/kunit/
10993 F:      lib/kunit/
10994 F:      tools/testing/kunit/
10995
10996 KERNEL USERMODE HELPER
10997 M:      Luis Chamberlain <mcgrof@kernel.org>
10998 L:      linux-kernel@vger.kernel.org
10999 S:      Maintained
11000 F:      include/linux/umh.h
11001 F:      kernel/umh.c
11002
11003 KERNEL VIRTUAL MACHINE (KVM)
11004 M:      Paolo Bonzini <pbonzini@redhat.com>
11005 L:      kvm@vger.kernel.org
11006 S:      Supported
11007 W:      http://www.linux-kvm.org
11008 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
11009 F:      Documentation/virt/kvm/
11010 F:      include/asm-generic/kvm*
11011 F:      include/kvm/iodev.h
11012 F:      include/linux/kvm*
11013 F:      include/trace/events/kvm.h
11014 F:      include/uapi/asm-generic/kvm*
11015 F:      include/uapi/linux/kvm*
11016 F:      tools/kvm/
11017 F:      tools/testing/selftests/kvm/
11018 F:      virt/kvm/*
11019
11020 KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64)
11021 M:      Marc Zyngier <maz@kernel.org>
11022 R:      James Morse <james.morse@arm.com>
11023 R:      Alexandru Elisei <alexandru.elisei@arm.com>
11024 R:      Suzuki K Poulose <suzuki.poulose@arm.com>
11025 R:      Oliver Upton <oliver.upton@linux.dev>
11026 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11027 L:      kvmarm@lists.cs.columbia.edu (moderated for non-subscribers)
11028 S:      Maintained
11029 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvmarm/kvmarm.git
11030 F:      arch/arm64/include/asm/kvm*
11031 F:      arch/arm64/include/uapi/asm/kvm*
11032 F:      arch/arm64/kvm/
11033 F:      include/kvm/arm_*
11034 F:      tools/testing/selftests/kvm/*/aarch64/
11035 F:      tools/testing/selftests/kvm/aarch64/
11036
11037 KERNEL VIRTUAL MACHINE FOR MIPS (KVM/mips)
11038 M:      Huacai Chen <chenhuacai@kernel.org>
11039 M:      Aleksandar Markovic <aleksandar.qemu.devel@gmail.com>
11040 L:      linux-mips@vger.kernel.org
11041 L:      kvm@vger.kernel.org
11042 S:      Maintained
11043 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
11044 F:      arch/mips/include/asm/kvm*
11045 F:      arch/mips/include/uapi/asm/kvm*
11046 F:      arch/mips/kvm/
11047
11048 KERNEL VIRTUAL MACHINE FOR POWERPC (KVM/powerpc)
11049 L:      linuxppc-dev@lists.ozlabs.org
11050 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git topic/ppc-kvm
11051 F:      arch/powerpc/include/asm/kvm*
11052 F:      arch/powerpc/include/uapi/asm/kvm*
11053 F:      arch/powerpc/kernel/kvm*
11054 F:      arch/powerpc/kvm/
11055
11056 KERNEL VIRTUAL MACHINE FOR RISC-V (KVM/riscv)
11057 M:      Anup Patel <anup@brainfault.org>
11058 R:      Atish Patra <atishp@atishpatra.org>
11059 L:      kvm@vger.kernel.org
11060 L:      kvm-riscv@lists.infradead.org
11061 L:      linux-riscv@lists.infradead.org
11062 S:      Maintained
11063 T:      git git://github.com/kvm-riscv/linux.git
11064 F:      arch/riscv/include/asm/kvm*
11065 F:      arch/riscv/include/uapi/asm/kvm*
11066 F:      arch/riscv/kvm/
11067 F:      tools/testing/selftests/kvm/*/riscv/
11068
11069 KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
11070 M:      Christian Borntraeger <borntraeger@linux.ibm.com>
11071 M:      Janosch Frank <frankja@linux.ibm.com>
11072 M:      Claudio Imbrenda <imbrenda@linux.ibm.com>
11073 R:      David Hildenbrand <david@redhat.com>
11074 L:      kvm@vger.kernel.org
11075 S:      Supported
11076 W:      http://www.ibm.com/developerworks/linux/linux390/
11077 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvms390/linux.git
11078 F:      Documentation/virt/kvm/s390*
11079 F:      arch/s390/include/asm/gmap.h
11080 F:      arch/s390/include/asm/kvm*
11081 F:      arch/s390/include/uapi/asm/kvm*
11082 F:      arch/s390/include/uapi/asm/uvdevice.h
11083 F:      arch/s390/kernel/uv.c
11084 F:      arch/s390/kvm/
11085 F:      arch/s390/mm/gmap.c
11086 F:      drivers/s390/char/uvdevice.c
11087 F:      tools/testing/selftests/drivers/s390x/uvdevice/
11088 F:      tools/testing/selftests/kvm/*/s390x/
11089 F:      tools/testing/selftests/kvm/s390x/
11090
11091 KERNEL VIRTUAL MACHINE FOR X86 (KVM/x86)
11092 M:      Sean Christopherson <seanjc@google.com>
11093 M:      Paolo Bonzini <pbonzini@redhat.com>
11094 L:      kvm@vger.kernel.org
11095 S:      Supported
11096 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
11097 F:      arch/x86/include/asm/kvm*
11098 F:      arch/x86/include/asm/svm.h
11099 F:      arch/x86/include/asm/vmx*.h
11100 F:      arch/x86/include/uapi/asm/kvm*
11101 F:      arch/x86/include/uapi/asm/svm.h
11102 F:      arch/x86/include/uapi/asm/vmx.h
11103 F:      arch/x86/kvm/
11104 F:      arch/x86/kvm/*/
11105
11106 KVM PARAVIRT (KVM/paravirt)
11107 M:      Paolo Bonzini <pbonzini@redhat.com>
11108 R:      Wanpeng Li <wanpengli@tencent.com>
11109 R:      Vitaly Kuznetsov <vkuznets@redhat.com>
11110 L:      kvm@vger.kernel.org
11111 S:      Supported
11112 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
11113 F:      arch/x86/kernel/kvm.c
11114 F:      arch/x86/kernel/kvmclock.c
11115 F:      arch/x86/include/asm/pvclock-abi.h
11116 F:      include/linux/kvm_para.h
11117 F:      include/uapi/linux/kvm_para.h
11118 F:      include/uapi/asm-generic/kvm_para.h
11119 F:      include/asm-generic/kvm_para.h
11120 F:      arch/um/include/asm/kvm_para.h
11121 F:      arch/x86/include/asm/kvm_para.h
11122 F:      arch/x86/include/uapi/asm/kvm_para.h
11123
11124 KVM X86 HYPER-V (KVM/hyper-v)
11125 M:      Vitaly Kuznetsov <vkuznets@redhat.com>
11126 M:      Sean Christopherson <seanjc@google.com>
11127 M:      Paolo Bonzini <pbonzini@redhat.com>
11128 L:      kvm@vger.kernel.org
11129 S:      Supported
11130 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
11131 F:      arch/x86/kvm/hyperv.*
11132 F:      arch/x86/kvm/kvm_onhyperv.*
11133 F:      arch/x86/kvm/svm/hyperv.*
11134 F:      arch/x86/kvm/svm/svm_onhyperv.*
11135 F:      arch/x86/kvm/vmx/evmcs.*
11136
11137 KERNFS
11138 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
11139 M:      Tejun Heo <tj@kernel.org>
11140 S:      Supported
11141 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
11142 F:      fs/kernfs/
11143 F:      include/linux/kernfs.h
11144
11145 KEXEC
11146 M:      Eric Biederman <ebiederm@xmission.com>
11147 L:      kexec@lists.infradead.org
11148 S:      Maintained
11149 W:      http://kernel.org/pub/linux/utils/kernel/kexec/
11150 F:      include/linux/kexec.h
11151 F:      include/uapi/linux/kexec.h
11152 F:      kernel/kexec*
11153
11154 KEYS-ENCRYPTED
11155 M:      Mimi Zohar <zohar@linux.ibm.com>
11156 L:      linux-integrity@vger.kernel.org
11157 L:      keyrings@vger.kernel.org
11158 S:      Supported
11159 F:      Documentation/security/keys/trusted-encrypted.rst
11160 F:      include/keys/encrypted-type.h
11161 F:      security/keys/encrypted-keys/
11162
11163 KEYS-TRUSTED
11164 M:      James Bottomley <jejb@linux.ibm.com>
11165 M:      Jarkko Sakkinen <jarkko@kernel.org>
11166 M:      Mimi Zohar <zohar@linux.ibm.com>
11167 L:      linux-integrity@vger.kernel.org
11168 L:      keyrings@vger.kernel.org
11169 S:      Supported
11170 F:      Documentation/security/keys/trusted-encrypted.rst
11171 F:      include/keys/trusted-type.h
11172 F:      include/keys/trusted_tpm.h
11173 F:      security/keys/trusted-keys/
11174
11175 KEYS-TRUSTED-TEE
11176 M:      Sumit Garg <sumit.garg@linaro.org>
11177 L:      linux-integrity@vger.kernel.org
11178 L:      keyrings@vger.kernel.org
11179 S:      Supported
11180 F:      include/keys/trusted_tee.h
11181 F:      security/keys/trusted-keys/trusted_tee.c
11182
11183 KEYS-TRUSTED-CAAM
11184 M:      Ahmad Fatoum <a.fatoum@pengutronix.de>
11185 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
11186 L:      linux-integrity@vger.kernel.org
11187 L:      keyrings@vger.kernel.org
11188 S:      Maintained
11189 F:      include/keys/trusted_caam.h
11190 F:      security/keys/trusted-keys/trusted_caam.c
11191
11192 KEYS/KEYRINGS
11193 M:      David Howells <dhowells@redhat.com>
11194 M:      Jarkko Sakkinen <jarkko@kernel.org>
11195 L:      keyrings@vger.kernel.org
11196 S:      Maintained
11197 F:      Documentation/security/keys/core.rst
11198 F:      include/keys/
11199 F:      include/linux/key-type.h
11200 F:      include/linux/key.h
11201 F:      include/linux/keyctl.h
11202 F:      include/uapi/linux/keyctl.h
11203 F:      security/keys/
11204
11205 KEYS/KEYRINGS_INTEGRITY
11206 M:      Jarkko Sakkinen <jarkko@kernel.org>
11207 M:      Mimi Zohar <zohar@linux.ibm.com>
11208 L:      linux-integrity@vger.kernel.org
11209 L:      keyrings@vger.kernel.org
11210 S:      Supported
11211 F:      security/integrity/platform_certs
11212
11213 KFENCE
11214 M:      Alexander Potapenko <glider@google.com>
11215 M:      Marco Elver <elver@google.com>
11216 R:      Dmitry Vyukov <dvyukov@google.com>
11217 L:      kasan-dev@googlegroups.com
11218 S:      Maintained
11219 F:      Documentation/dev-tools/kfence.rst
11220 F:      arch/*/include/asm/kfence.h
11221 F:      include/linux/kfence.h
11222 F:      lib/Kconfig.kfence
11223 F:      mm/kfence/
11224
11225 KFIFO
11226 M:      Stefani Seibold <stefani@seibold.net>
11227 S:      Maintained
11228 F:      include/linux/kfifo.h
11229 F:      lib/kfifo.c
11230 F:      samples/kfifo/
11231
11232 KGDB / KDB /debug_core
11233 M:      Jason Wessel <jason.wessel@windriver.com>
11234 M:      Daniel Thompson <daniel.thompson@linaro.org>
11235 R:      Douglas Anderson <dianders@chromium.org>
11236 L:      kgdb-bugreport@lists.sourceforge.net
11237 S:      Maintained
11238 W:      http://kgdb.wiki.kernel.org/
11239 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jwessel/kgdb.git
11240 F:      Documentation/dev-tools/kgdb.rst
11241 F:      drivers/misc/kgdbts.c
11242 F:      drivers/tty/serial/kgdboc.c
11243 F:      include/linux/kdb.h
11244 F:      include/linux/kgdb.h
11245 F:      kernel/debug/
11246 F:      kernel/module/kdb.c
11247
11248 KHADAS MCU MFD DRIVER
11249 M:      Neil Armstrong <narmstrong@baylibre.com>
11250 L:      linux-amlogic@lists.infradead.org
11251 S:      Maintained
11252 F:      Documentation/devicetree/bindings/mfd/khadas,mcu.yaml
11253 F:      drivers/mfd/khadas-mcu.c
11254 F:      include/linux/mfd/khadas-mcu.h
11255 F:      drivers/thermal/khadas_mcu_fan.c
11256
11257 KMEMLEAK
11258 M:      Catalin Marinas <catalin.marinas@arm.com>
11259 S:      Maintained
11260 F:      Documentation/dev-tools/kmemleak.rst
11261 F:      include/linux/kmemleak.h
11262 F:      mm/kmemleak.c
11263 F:      samples/kmemleak/kmemleak-test.c
11264
11265 KMOD KERNEL MODULE LOADER - USERMODE HELPER
11266 M:      Luis Chamberlain <mcgrof@kernel.org>
11267 L:      linux-kernel@vger.kernel.org
11268 L:      linux-modules@vger.kernel.org
11269 S:      Maintained
11270 F:      include/linux/kmod.h
11271 F:      kernel/kmod.c
11272 F:      lib/test_kmod.c
11273 F:      tools/testing/selftests/kmod/
11274
11275 KPROBES
11276 M:      Naveen N. Rao <naveen.n.rao@linux.ibm.com>
11277 M:      Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
11278 M:      "David S. Miller" <davem@davemloft.net>
11279 M:      Masami Hiramatsu <mhiramat@kernel.org>
11280 S:      Maintained
11281 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rostedt/linux-trace.git
11282 F:      Documentation/trace/kprobes.rst
11283 F:      include/asm-generic/kprobes.h
11284 F:      include/linux/kprobes.h
11285 F:      kernel/kprobes.c
11286 F:      lib/test_kprobes.c
11287 F:      samples/kprobes
11288
11289 KS0108 LCD CONTROLLER DRIVER
11290 M:      Miguel Ojeda <ojeda@kernel.org>
11291 S:      Maintained
11292 F:      Documentation/admin-guide/auxdisplay/ks0108.rst
11293 F:      drivers/auxdisplay/ks0108.c
11294 F:      include/linux/ks0108.h
11295
11296 KTD253 BACKLIGHT DRIVER
11297 M:      Linus Walleij <linus.walleij@linaro.org>
11298 S:      Maintained
11299 F:      Documentation/devicetree/bindings/leds/backlight/kinetic,ktd253.yaml
11300 F:      drivers/video/backlight/ktd253-backlight.c
11301
11302 KTEST
11303 M:      Steven Rostedt <rostedt@goodmis.org>
11304 M:      John Hawley <warthog9@eaglescrag.net>
11305 S:      Maintained
11306 F:      tools/testing/ktest
11307
11308 L3MDEV
11309 M:      David Ahern <dsahern@kernel.org>
11310 L:      netdev@vger.kernel.org
11311 S:      Maintained
11312 F:      include/net/l3mdev.h
11313 F:      net/l3mdev
11314
11315 LANDLOCK SECURITY MODULE
11316 M:      Mickaël Salaün <mic@digikod.net>
11317 L:      linux-security-module@vger.kernel.org
11318 S:      Supported
11319 W:      https://landlock.io
11320 T:      git https://github.com/landlock-lsm/linux.git
11321 F:      Documentation/security/landlock.rst
11322 F:      Documentation/userspace-api/landlock.rst
11323 F:      include/uapi/linux/landlock.h
11324 F:      samples/landlock/
11325 F:      security/landlock/
11326 F:      tools/testing/selftests/landlock/
11327 K:      landlock
11328 K:      LANDLOCK
11329
11330 LANTIQ / INTEL Ethernet drivers
11331 M:      Hauke Mehrtens <hauke@hauke-m.de>
11332 L:      netdev@vger.kernel.org
11333 S:      Maintained
11334 F:      drivers/net/dsa/lantiq_gswip.c
11335 F:      drivers/net/dsa/lantiq_pce.h
11336 F:      drivers/net/ethernet/lantiq_xrx200.c
11337 F:      net/dsa/tag_gswip.c
11338
11339 LANTIQ MIPS ARCHITECTURE
11340 M:      John Crispin <john@phrozen.org>
11341 L:      linux-mips@vger.kernel.org
11342 S:      Maintained
11343 F:      arch/mips/lantiq
11344 F:      drivers/soc/lantiq
11345
11346 LASI 53c700 driver for PARISC
11347 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
11348 L:      linux-scsi@vger.kernel.org
11349 S:      Maintained
11350 F:      Documentation/scsi/53c700.rst
11351 F:      drivers/scsi/53c700*
11352
11353 LEAKING_ADDRESSES
11354 M:      Tobin C. Harding <me@tobin.cc>
11355 M:      Tycho Andersen <tycho@tycho.pizza>
11356 L:      linux-hardening@vger.kernel.org
11357 S:      Maintained
11358 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tobin/leaks.git
11359 F:      scripts/leaking_addresses.pl
11360
11361 LED SUBSYSTEM
11362 M:      Pavel Machek <pavel@ucw.cz>
11363 L:      linux-leds@vger.kernel.org
11364 S:      Maintained
11365 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pavel/linux-leds.git
11366 F:      Documentation/devicetree/bindings/leds/
11367 F:      drivers/leds/
11368 F:      include/linux/leds.h
11369
11370 LEGACY EEPROM DRIVER
11371 M:      Jean Delvare <jdelvare@suse.com>
11372 S:      Maintained
11373 F:      Documentation/misc-devices/eeprom.rst
11374 F:      drivers/misc/eeprom/eeprom.c
11375
11376 LEGO MINDSTORMS EV3
11377 R:      David Lechner <david@lechnology.com>
11378 S:      Maintained
11379 F:      Documentation/devicetree/bindings/power/supply/lego,ev3-battery.yaml
11380 F:      arch/arm/boot/dts/da850-lego-ev3.dts
11381 F:      drivers/power/supply/lego_ev3_battery.c
11382
11383 LEGO USB Tower driver
11384 M:      Juergen Stuber <starblue@users.sourceforge.net>
11385 L:      legousb-devel@lists.sourceforge.net
11386 S:      Maintained
11387 W:      http://legousb.sourceforge.net/
11388 F:      drivers/usb/misc/legousbtower.c
11389
11390 LETSKETCH HID TABLET DRIVER
11391 M:      Hans de Goede <hdegoede@redhat.com>
11392 L:      linux-input@vger.kernel.org
11393 S:      Maintained
11394 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
11395 F:      drivers/hid/hid-letsketch.c
11396
11397 LG LAPTOP EXTRAS
11398 M:      Matan Ziv-Av <matan@svgalib.org>
11399 L:      platform-driver-x86@vger.kernel.org
11400 S:      Maintained
11401 F:      Documentation/ABI/testing/sysfs-platform-lg-laptop
11402 F:      Documentation/admin-guide/laptops/lg-laptop.rst
11403 F:      drivers/platform/x86/lg-laptop.c
11404
11405 LG2160 MEDIA DRIVER
11406 M:      Michael Krufky <mkrufky@linuxtv.org>
11407 L:      linux-media@vger.kernel.org
11408 S:      Maintained
11409 W:      https://linuxtv.org
11410 W:      http://github.com/mkrufky
11411 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11412 T:      git git://linuxtv.org/mkrufky/tuners.git
11413 F:      drivers/media/dvb-frontends/lg2160.*
11414
11415 LGDT3305 MEDIA DRIVER
11416 M:      Michael Krufky <mkrufky@linuxtv.org>
11417 L:      linux-media@vger.kernel.org
11418 S:      Maintained
11419 W:      https://linuxtv.org
11420 W:      http://github.com/mkrufky
11421 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11422 T:      git git://linuxtv.org/mkrufky/tuners.git
11423 F:      drivers/media/dvb-frontends/lgdt3305.*
11424
11425 LIBATA PATA ARASAN COMPACT FLASH CONTROLLER
11426 M:      Viresh Kumar <vireshk@kernel.org>
11427 L:      linux-ide@vger.kernel.org
11428 S:      Maintained
11429 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
11430 F:      drivers/ata/pata_arasan_cf.c
11431 F:      include/linux/pata_arasan_cf_data.h
11432
11433 LIBATA PATA DRIVERS
11434 R:      Sergey Shtylyov <s.shtylyov@omp.ru>
11435 L:      linux-ide@vger.kernel.org
11436 F:      drivers/ata/ata_*.c
11437 F:      drivers/ata/pata_*.c
11438
11439 LIBATA PATA FARADAY FTIDE010 AND GEMINI SATA BRIDGE DRIVERS
11440 M:      Linus Walleij <linus.walleij@linaro.org>
11441 L:      linux-ide@vger.kernel.org
11442 S:      Maintained
11443 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
11444 F:      drivers/ata/pata_ftide010.c
11445 F:      drivers/ata/sata_gemini.c
11446 F:      drivers/ata/sata_gemini.h
11447
11448 LIBATA SATA AHCI PLATFORM devices support
11449 M:      Hans de Goede <hdegoede@redhat.com>
11450 M:      Jens Axboe <axboe@kernel.dk>
11451 L:      linux-ide@vger.kernel.org
11452 S:      Maintained
11453 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
11454 F:      drivers/ata/ahci_platform.c
11455 F:      drivers/ata/libahci_platform.c
11456 F:      include/linux/ahci_platform.h
11457
11458 LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER
11459 M:      Mikael Pettersson <mikpelinux@gmail.com>
11460 L:      linux-ide@vger.kernel.org
11461 S:      Maintained
11462 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
11463 F:      drivers/ata/sata_promise.*
11464
11465 LIBATA SUBSYSTEM (Serial and Parallel ATA drivers)
11466 M:      Damien Le Moal <damien.lemoal@opensource.wdc.com>
11467 L:      linux-ide@vger.kernel.org
11468 S:      Maintained
11469 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dlemoal/libata.git
11470 F:      Documentation/ABI/testing/sysfs-ata
11471 F:      Documentation/devicetree/bindings/ata/
11472 F:      drivers/ata/
11473 F:      include/linux/ata.h
11474 F:      include/linux/libata.h
11475
11476 LIBNVDIMM BTT: BLOCK TRANSLATION TABLE
11477 M:      Vishal Verma <vishal.l.verma@intel.com>
11478 M:      Dan Williams <dan.j.williams@intel.com>
11479 M:      Dave Jiang <dave.jiang@intel.com>
11480 L:      nvdimm@lists.linux.dev
11481 S:      Supported
11482 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
11483 P:      Documentation/nvdimm/maintainer-entry-profile.rst
11484 F:      drivers/nvdimm/btt*
11485
11486 LIBNVDIMM PMEM: PERSISTENT MEMORY DRIVER
11487 M:      Dan Williams <dan.j.williams@intel.com>
11488 M:      Vishal Verma <vishal.l.verma@intel.com>
11489 M:      Dave Jiang <dave.jiang@intel.com>
11490 L:      nvdimm@lists.linux.dev
11491 S:      Supported
11492 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
11493 P:      Documentation/nvdimm/maintainer-entry-profile.rst
11494 F:      drivers/nvdimm/pmem*
11495
11496 LIBNVDIMM: DEVICETREE BINDINGS
11497 M:      Oliver O'Halloran <oohall@gmail.com>
11498 L:      nvdimm@lists.linux.dev
11499 S:      Supported
11500 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
11501 F:      Documentation/devicetree/bindings/pmem/pmem-region.txt
11502 F:      drivers/nvdimm/of_pmem.c
11503
11504 LIBNVDIMM: NON-VOLATILE MEMORY DEVICE SUBSYSTEM
11505 M:      Dan Williams <dan.j.williams@intel.com>
11506 M:      Vishal Verma <vishal.l.verma@intel.com>
11507 M:      Dave Jiang <dave.jiang@intel.com>
11508 M:      Ira Weiny <ira.weiny@intel.com>
11509 L:      nvdimm@lists.linux.dev
11510 S:      Supported
11511 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
11512 P:      Documentation/nvdimm/maintainer-entry-profile.rst
11513 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nvdimm/nvdimm.git
11514 F:      drivers/acpi/nfit/*
11515 F:      drivers/nvdimm/*
11516 F:      include/linux/libnvdimm.h
11517 F:      include/linux/nd.h
11518 F:      include/uapi/linux/ndctl.h
11519 F:      tools/testing/nvdimm/
11520
11521 LICENSES and SPDX stuff
11522 M:      Thomas Gleixner <tglx@linutronix.de>
11523 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
11524 L:      linux-spdx@vger.kernel.org
11525 S:      Maintained
11526 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/spdx.git
11527 F:      COPYING
11528 F:      Documentation/process/license-rules.rst
11529 F:      LICENSES/
11530 F:      scripts/spdxcheck-test.sh
11531 F:      scripts/spdxcheck.py
11532
11533 LINEAR RANGES HELPERS
11534 M:      Mark Brown <broonie@kernel.org>
11535 R:      Matti Vaittinen <mazziesaccount@gmail.com>
11536 F:      lib/linear_ranges.c
11537 F:      lib/test_linear_ranges.c
11538 F:      include/linux/linear_range.h
11539
11540 LINUX FOR POWER MACINTOSH
11541 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
11542 L:      linuxppc-dev@lists.ozlabs.org
11543 S:      Odd Fixes
11544 F:      arch/powerpc/platforms/powermac/
11545 F:      drivers/macintosh/
11546
11547 LINUX FOR POWERPC (32-BIT AND 64-BIT)
11548 M:      Michael Ellerman <mpe@ellerman.id.au>
11549 R:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
11550 R:      Paul Mackerras <paulus@samba.org>
11551 L:      linuxppc-dev@lists.ozlabs.org
11552 S:      Supported
11553 W:      https://github.com/linuxppc/wiki/wiki
11554 Q:      http://patchwork.ozlabs.org/project/linuxppc-dev/list/
11555 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git
11556 F:      Documentation/ABI/stable/sysfs-firmware-opal-*
11557 F:      Documentation/devicetree/bindings/i2c/i2c-opal.txt
11558 F:      Documentation/devicetree/bindings/powerpc/
11559 F:      Documentation/devicetree/bindings/rtc/rtc-opal.txt
11560 F:      Documentation/powerpc/
11561 F:      arch/powerpc/
11562 F:      drivers/*/*/*pasemi*
11563 F:      drivers/*/*pasemi*
11564 F:      drivers/char/tpm/tpm_ibmvtpm*
11565 F:      drivers/crypto/nx/
11566 F:      drivers/crypto/vmx/
11567 F:      drivers/i2c/busses/i2c-opal.c
11568 F:      drivers/net/ethernet/ibm/ibmveth.*
11569 F:      drivers/net/ethernet/ibm/ibmvnic.*
11570 F:      drivers/pci/hotplug/pnv_php.c
11571 F:      drivers/pci/hotplug/rpa*
11572 F:      drivers/rtc/rtc-opal.c
11573 F:      drivers/scsi/ibmvscsi/
11574 F:      drivers/tty/hvc/hvc_opal.c
11575 F:      drivers/watchdog/wdrtas.c
11576 F:      tools/testing/selftests/powerpc
11577 N:      /pmac
11578 N:      powermac
11579 N:      powernv
11580 N:      [^a-z0-9]ps3
11581 N:      pseries
11582
11583 LINUX FOR POWERPC EMBEDDED MPC5XXX
11584 M:      Anatolij Gustschin <agust@denx.de>
11585 L:      linuxppc-dev@lists.ozlabs.org
11586 S:      Odd Fixes
11587 F:      arch/powerpc/platforms/512x/
11588 F:      arch/powerpc/platforms/52xx/
11589
11590 LINUX FOR POWERPC EMBEDDED PPC4XX
11591 L:      linuxppc-dev@lists.ozlabs.org
11592 S:      Orphan
11593 F:      arch/powerpc/platforms/40x/
11594 F:      arch/powerpc/platforms/44x/
11595
11596 LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
11597 M:      Scott Wood <oss@buserror.net>
11598 L:      linuxppc-dev@lists.ozlabs.org
11599 S:      Odd fixes
11600 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git
11601 F:      Documentation/devicetree/bindings/powerpc/fsl/
11602 F:      arch/powerpc/platforms/83xx/
11603 F:      arch/powerpc/platforms/85xx/
11604
11605 LINUX FOR POWERPC EMBEDDED PPC8XX
11606 M:      Christophe Leroy <christophe.leroy@csgroup.eu>
11607 L:      linuxppc-dev@lists.ozlabs.org
11608 S:      Maintained
11609 F:      arch/powerpc/platforms/8xx/
11610
11611 LINUX KERNEL DUMP TEST MODULE (LKDTM)
11612 M:      Kees Cook <keescook@chromium.org>
11613 S:      Maintained
11614 F:      drivers/misc/lkdtm/*
11615 F:      tools/testing/selftests/lkdtm/*
11616
11617 LINUX KERNEL MEMORY CONSISTENCY MODEL (LKMM)
11618 M:      Alan Stern <stern@rowland.harvard.edu>
11619 M:      Andrea Parri <parri.andrea@gmail.com>
11620 M:      Will Deacon <will@kernel.org>
11621 M:      Peter Zijlstra <peterz@infradead.org>
11622 M:      Boqun Feng <boqun.feng@gmail.com>
11623 M:      Nicholas Piggin <npiggin@gmail.com>
11624 M:      David Howells <dhowells@redhat.com>
11625 M:      Jade Alglave <j.alglave@ucl.ac.uk>
11626 M:      Luc Maranget <luc.maranget@inria.fr>
11627 M:      "Paul E. McKenney" <paulmck@kernel.org>
11628 R:      Akira Yokosawa <akiyks@gmail.com>
11629 R:      Daniel Lustig <dlustig@nvidia.com>
11630 R:      Joel Fernandes <joel@joelfernandes.org>
11631 L:      linux-kernel@vger.kernel.org
11632 L:      linux-arch@vger.kernel.org
11633 S:      Supported
11634 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
11635 F:      Documentation/atomic_bitops.txt
11636 F:      Documentation/atomic_t.txt
11637 F:      Documentation/core-api/refcount-vs-atomic.rst
11638 F:      Documentation/litmus-tests/
11639 F:      Documentation/memory-barriers.txt
11640 F:      tools/memory-model/
11641
11642 LIS3LV02D ACCELEROMETER DRIVER
11643 M:      Eric Piel <eric.piel@tremplin-utc.net>
11644 S:      Maintained
11645 F:      Documentation/misc-devices/lis3lv02d.rst
11646 F:      drivers/misc/lis3lv02d/
11647 F:      drivers/platform/x86/hp_accel.c
11648
11649 LIST KUNIT TEST
11650 M:      David Gow <davidgow@google.com>
11651 L:      linux-kselftest@vger.kernel.org
11652 L:      kunit-dev@googlegroups.com
11653 S:      Maintained
11654 F:      lib/list-test.c
11655
11656 LITEX PLATFORM
11657 M:      Karol Gugala <kgugala@antmicro.com>
11658 M:      Mateusz Holenko <mholenko@antmicro.com>
11659 M:      Gabriel Somlo <gsomlo@gmail.com>
11660 M:      Joel Stanley <joel@jms.id.au>
11661 S:      Maintained
11662 F:      Documentation/devicetree/bindings/*/litex,*.yaml
11663 F:      arch/openrisc/boot/dts/or1klitex.dts
11664 F:      include/linux/litex.h
11665 F:      drivers/tty/serial/liteuart.c
11666 F:      drivers/soc/litex/*
11667 F:      drivers/net/ethernet/litex/*
11668 F:      drivers/mmc/host/litex_mmc.c
11669 N:      litex
11670
11671 LIVE PATCHING
11672 M:      Josh Poimboeuf <jpoimboe@kernel.org>
11673 M:      Jiri Kosina <jikos@kernel.org>
11674 M:      Miroslav Benes <mbenes@suse.cz>
11675 M:      Petr Mladek <pmladek@suse.com>
11676 R:      Joe Lawrence <joe.lawrence@redhat.com>
11677 L:      live-patching@vger.kernel.org
11678 S:      Maintained
11679 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/livepatching/livepatching.git
11680 F:      Documentation/ABI/testing/sysfs-kernel-livepatch
11681 F:      Documentation/livepatch/
11682 F:      arch/powerpc/include/asm/livepatch.h
11683 F:      include/linux/livepatch.h
11684 F:      kernel/livepatch/
11685 F:      kernel/module/livepatch.c
11686 F:      lib/livepatch/
11687 F:      samples/livepatch/
11688 F:      tools/testing/selftests/livepatch/
11689
11690 LLC (802.2)
11691 L:      netdev@vger.kernel.org
11692 S:      Odd fixes
11693 F:      include/linux/llc.h
11694 F:      include/net/llc*
11695 F:      include/uapi/linux/llc.h
11696 F:      net/llc/
11697
11698 LM73 HARDWARE MONITOR DRIVER
11699 M:      Guillaume Ligneul <guillaume.ligneul@gmail.com>
11700 L:      linux-hwmon@vger.kernel.org
11701 S:      Maintained
11702 F:      drivers/hwmon/lm73.c
11703
11704 LM78 HARDWARE MONITOR DRIVER
11705 M:      Jean Delvare <jdelvare@suse.com>
11706 L:      linux-hwmon@vger.kernel.org
11707 S:      Maintained
11708 F:      Documentation/hwmon/lm78.rst
11709 F:      drivers/hwmon/lm78.c
11710
11711 LM83 HARDWARE MONITOR DRIVER
11712 M:      Jean Delvare <jdelvare@suse.com>
11713 L:      linux-hwmon@vger.kernel.org
11714 S:      Maintained
11715 F:      Documentation/hwmon/lm83.rst
11716 F:      drivers/hwmon/lm83.c
11717
11718 LM90 HARDWARE MONITOR DRIVER
11719 M:      Jean Delvare <jdelvare@suse.com>
11720 L:      linux-hwmon@vger.kernel.org
11721 S:      Maintained
11722 F:      Documentation/devicetree/bindings/hwmon/national,lm90.yaml
11723 F:      Documentation/hwmon/lm90.rst
11724 F:      drivers/hwmon/lm90.c
11725 F:      include/dt-bindings/thermal/lm90.h
11726
11727 LM95234 HARDWARE MONITOR DRIVER
11728 M:      Guenter Roeck <linux@roeck-us.net>
11729 L:      linux-hwmon@vger.kernel.org
11730 S:      Maintained
11731 F:      Documentation/hwmon/lm95234.rst
11732 F:      drivers/hwmon/lm95234.c
11733
11734 LME2510 MEDIA DRIVER
11735 M:      Malcolm Priestley <tvboxspy@gmail.com>
11736 L:      linux-media@vger.kernel.org
11737 S:      Maintained
11738 W:      https://linuxtv.org
11739 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11740 F:      drivers/media/usb/dvb-usb-v2/lmedm04*
11741
11742 LOADPIN SECURITY MODULE
11743 M:      Kees Cook <keescook@chromium.org>
11744 S:      Supported
11745 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/hardening
11746 F:      Documentation/admin-guide/LSM/LoadPin.rst
11747 F:      security/loadpin/
11748
11749 LOCKING PRIMITIVES
11750 M:      Peter Zijlstra <peterz@infradead.org>
11751 M:      Ingo Molnar <mingo@redhat.com>
11752 M:      Will Deacon <will@kernel.org>
11753 R:      Waiman Long <longman@redhat.com>
11754 R:      Boqun Feng <boqun.feng@gmail.com> (LOCKDEP)
11755 L:      linux-kernel@vger.kernel.org
11756 S:      Maintained
11757 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
11758 F:      Documentation/locking/
11759 F:      arch/*/include/asm/spinlock*.h
11760 F:      include/linux/lockdep.h
11761 F:      include/linux/mutex*.h
11762 F:      include/linux/rwlock*.h
11763 F:      include/linux/rwsem*.h
11764 F:      include/linux/seqlock.h
11765 F:      include/linux/spinlock*.h
11766 F:      kernel/locking/
11767 F:      lib/locking*.[ch]
11768 X:      kernel/locking/locktorture.c
11769
11770 LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
11771 M:      "Richard Russon (FlatCap)" <ldm@flatcap.org>
11772 L:      linux-ntfs-dev@lists.sourceforge.net
11773 S:      Maintained
11774 W:      http://www.linux-ntfs.org/content/view/19/37/
11775 F:      Documentation/admin-guide/ldm.rst
11776 F:      block/partitions/ldm.*
11777
11778 LOGITECH HID GAMING KEYBOARDS
11779 M:      Hans de Goede <hdegoede@redhat.com>
11780 L:      linux-input@vger.kernel.org
11781 S:      Maintained
11782 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
11783 F:      drivers/hid/hid-lg-g15.c
11784
11785 LONTIUM LT8912B MIPI TO HDMI BRIDGE
11786 M:      Adrien Grassein <adrien.grassein@gmail.com>
11787 S:      Maintained
11788 F:      Documentation/devicetree/bindings/display/bridge/lontium,lt8912b.yaml
11789 F:      drivers/gpu/drm/bridge/lontium-lt8912b.c
11790
11791 LOONGARCH
11792 M:      Huacai Chen <chenhuacai@kernel.org>
11793 R:      WANG Xuerui <kernel@xen0n.name>
11794 L:      loongarch@lists.linux.dev
11795 S:      Maintained
11796 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chenhuacai/linux-loongson.git
11797 F:      arch/loongarch/
11798 F:      drivers/*/*loongarch*
11799 F:      Documentation/loongarch/
11800 F:      Documentation/translations/zh_CN/loongarch/
11801
11802 LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
11803 M:      Sathya Prakash <sathya.prakash@broadcom.com>
11804 M:      Sreekanth Reddy <sreekanth.reddy@broadcom.com>
11805 M:      Suganath Prabu Subramani <suganath-prabu.subramani@broadcom.com>
11806 L:      MPT-FusionLinux.pdl@broadcom.com
11807 L:      linux-scsi@vger.kernel.org
11808 S:      Supported
11809 W:      http://www.avagotech.com/support/
11810 F:      drivers/message/fusion/
11811 F:      drivers/scsi/mpt3sas/
11812
11813 LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
11814 M:      Matthew Wilcox <willy@infradead.org>
11815 L:      linux-scsi@vger.kernel.org
11816 S:      Maintained
11817 F:      drivers/scsi/sym53c8xx_2/
11818
11819 LTC1660 DAC DRIVER
11820 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
11821 L:      linux-iio@vger.kernel.org
11822 S:      Maintained
11823 F:      Documentation/devicetree/bindings/iio/dac/lltc,ltc1660.yaml
11824 F:      drivers/iio/dac/ltc1660.c
11825
11826 LTC2688 IIO DAC DRIVER
11827 M:      Nuno Sá <nuno.sa@analog.com>
11828 L:      linux-iio@vger.kernel.org
11829 S:      Supported
11830 W:      http://ez.analog.com/community/linux-device-drivers
11831 F:      Documentation/ABI/testing/sysfs-bus-iio-dac-ltc2688
11832 F:      Documentation/devicetree/bindings/iio/dac/adi,ltc2688.yaml
11833 F:      drivers/iio/dac/ltc2688.c
11834
11835 LTC2947 HARDWARE MONITOR DRIVER
11836 M:      Nuno Sá <nuno.sa@analog.com>
11837 L:      linux-hwmon@vger.kernel.org
11838 S:      Supported
11839 W:      https://ez.analog.com/linux-software-drivers
11840 F:      Documentation/devicetree/bindings/hwmon/adi,ltc2947.yaml
11841 F:      drivers/hwmon/ltc2947-core.c
11842 F:      drivers/hwmon/ltc2947-i2c.c
11843 F:      drivers/hwmon/ltc2947-spi.c
11844 F:      drivers/hwmon/ltc2947.h
11845
11846 LTC2983 IIO TEMPERATURE DRIVER
11847 M:      Nuno Sá <nuno.sa@analog.com>
11848 L:      linux-iio@vger.kernel.org
11849 S:      Supported
11850 W:      https://ez.analog.com/linux-software-drivers
11851 F:      Documentation/devicetree/bindings/iio/temperature/adi,ltc2983.yaml
11852 F:      drivers/iio/temperature/ltc2983.c
11853
11854 LTC4261 HARDWARE MONITOR DRIVER
11855 M:      Guenter Roeck <linux@roeck-us.net>
11856 L:      linux-hwmon@vger.kernel.org
11857 S:      Maintained
11858 F:      Documentation/hwmon/ltc4261.rst
11859 F:      drivers/hwmon/ltc4261.c
11860
11861 LTC4306 I2C MULTIPLEXER DRIVER
11862 M:      Michael Hennerich <michael.hennerich@analog.com>
11863 L:      linux-i2c@vger.kernel.org
11864 S:      Supported
11865 W:      https://ez.analog.com/linux-software-drivers
11866 F:      Documentation/devicetree/bindings/i2c/i2c-mux-ltc4306.txt
11867 F:      drivers/i2c/muxes/i2c-mux-ltc4306.c
11868
11869 LTP (Linux Test Project)
11870 M:      Mike Frysinger <vapier@gentoo.org>
11871 M:      Cyril Hrubis <chrubis@suse.cz>
11872 M:      Wanlong Gao <wanlong.gao@gmail.com>
11873 M:      Jan Stancek <jstancek@redhat.com>
11874 M:      Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com>
11875 M:      Alexey Kodanev <alexey.kodanev@oracle.com>
11876 L:      ltp@lists.linux.it (subscribers-only)
11877 S:      Maintained
11878 W:      http://linux-test-project.github.io/
11879 T:      git git://github.com/linux-test-project/ltp.git
11880
11881 LYNX 28G SERDES PHY DRIVER
11882 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
11883 L:      netdev@vger.kernel.org
11884 S:      Supported
11885 F:      Documentation/devicetree/bindings/phy/fsl,lynx-28g.yaml
11886 F:      drivers/phy/freescale/phy-fsl-lynx-28g.c
11887
11888 LYNX PCS MODULE
11889 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
11890 L:      netdev@vger.kernel.org
11891 S:      Supported
11892 F:      drivers/net/pcs/pcs-lynx.c
11893 F:      include/linux/pcs-lynx.h
11894
11895 M68K ARCHITECTURE
11896 M:      Geert Uytterhoeven <geert@linux-m68k.org>
11897 L:      linux-m68k@lists.linux-m68k.org
11898 S:      Maintained
11899 W:      http://www.linux-m68k.org/
11900 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
11901 F:      arch/m68k/
11902 F:      drivers/zorro/
11903
11904 M68K ON APPLE MACINTOSH
11905 M:      Joshua Thompson <funaho@jurai.org>
11906 L:      linux-m68k@lists.linux-m68k.org
11907 S:      Maintained
11908 W:      http://www.mac.linux-m68k.org/
11909 F:      arch/m68k/mac/
11910 F:      drivers/macintosh/adb-iop.c
11911 F:      drivers/macintosh/via-macii.c
11912
11913 M68K ON HP9000/300
11914 M:      Philip Blundell <philb@gnu.org>
11915 S:      Maintained
11916 W:      http://www.tazenda.demon.co.uk/phil/linux-hp
11917 F:      arch/m68k/hp300/
11918
11919 M88DS3103 MEDIA DRIVER
11920 M:      Antti Palosaari <crope@iki.fi>
11921 L:      linux-media@vger.kernel.org
11922 S:      Maintained
11923 W:      https://linuxtv.org
11924 W:      http://palosaari.fi/linux/
11925 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11926 T:      git git://linuxtv.org/anttip/media_tree.git
11927 F:      drivers/media/dvb-frontends/m88ds3103*
11928
11929 M88RS2000 MEDIA DRIVER
11930 M:      Malcolm Priestley <tvboxspy@gmail.com>
11931 L:      linux-media@vger.kernel.org
11932 S:      Maintained
11933 W:      https://linuxtv.org
11934 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11935 F:      drivers/media/dvb-frontends/m88rs2000*
11936
11937 MA901 MASTERKIT USB FM RADIO DRIVER
11938 M:      Alexey Klimov <klimov.linux@gmail.com>
11939 L:      linux-media@vger.kernel.org
11940 S:      Maintained
11941 T:      git git://linuxtv.org/media_tree.git
11942 F:      drivers/media/radio/radio-ma901.c
11943
11944 MAC80211
11945 M:      Johannes Berg <johannes@sipsolutions.net>
11946 L:      linux-wireless@vger.kernel.org
11947 S:      Maintained
11948 W:      https://wireless.wiki.kernel.org/
11949 Q:      https://patchwork.kernel.org/project/linux-wireless/list/
11950 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless.git
11951 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless-next.git
11952 F:      Documentation/networking/mac80211-injection.rst
11953 F:      Documentation/networking/mac80211_hwsim/mac80211_hwsim.rst
11954 F:      drivers/net/wireless/mac80211_hwsim.[ch]
11955 F:      include/net/mac80211.h
11956 F:      net/mac80211/
11957
11958 MAILBOX API
11959 M:      Jassi Brar <jassisinghbrar@gmail.com>
11960 L:      linux-kernel@vger.kernel.org
11961 S:      Maintained
11962 F:      drivers/mailbox/
11963 F:      include/linux/mailbox_client.h
11964 F:      include/linux/mailbox_controller.h
11965 F:      include/dt-bindings/mailbox/
11966 F:      Documentation/devicetree/bindings/mailbox/
11967
11968 MAILBOX ARM MHUv2
11969 M:      Viresh Kumar <viresh.kumar@linaro.org>
11970 M:      Tushar Khandelwal <Tushar.Khandelwal@arm.com>
11971 L:      linux-kernel@vger.kernel.org
11972 S:      Maintained
11973 F:      drivers/mailbox/arm_mhuv2.c
11974 F:      include/linux/mailbox/arm_mhuv2_message.h
11975 F:      Documentation/devicetree/bindings/mailbox/arm,mhuv2.yaml
11976
11977 MANAGEMENT COMPONENT TRANSPORT PROTOCOL (MCTP)
11978 M:      Jeremy Kerr <jk@codeconstruct.com.au>
11979 M:      Matt Johnston <matt@codeconstruct.com.au>
11980 L:      netdev@vger.kernel.org
11981 S:      Maintained
11982 F:      Documentation/networking/mctp.rst
11983 F:      drivers/net/mctp/
11984 F:      include/net/mctp.h
11985 F:      include/net/mctpdevice.h
11986 F:      include/net/netns/mctp.h
11987 F:      net/mctp/
11988
11989 MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
11990 M:      Michael Kerrisk <mtk.manpages@gmail.com>
11991 L:      linux-man@vger.kernel.org
11992 S:      Maintained
11993 W:      http://www.kernel.org/doc/man-pages
11994
11995 MARDUK (CREATOR CI40) DEVICE TREE SUPPORT
11996 M:      Rahul Bedarkar <rahulbedarkar89@gmail.com>
11997 L:      linux-mips@vger.kernel.org
11998 S:      Maintained
11999 F:      arch/mips/boot/dts/img/pistachio*
12000
12001 MARVELL 88E6XXX ETHERNET SWITCH FABRIC DRIVER
12002 M:      Andrew Lunn <andrew@lunn.ch>
12003 M:      Vivien Didelot <vivien.didelot@gmail.com>
12004 L:      netdev@vger.kernel.org
12005 S:      Maintained
12006 F:      Documentation/devicetree/bindings/net/dsa/marvell.txt
12007 F:      Documentation/networking/devlink/mv88e6xxx.rst
12008 F:      drivers/net/dsa/mv88e6xxx/
12009 F:      include/linux/dsa/mv88e6xxx.h
12010 F:      include/linux/platform_data/mv88e6xxx.h
12011
12012 MARVELL ARMADA 3700 PHY DRIVERS
12013 M:      Miquel Raynal <miquel.raynal@bootlin.com>
12014 S:      Maintained
12015 F:      Documentation/devicetree/bindings/phy/phy-mvebu-comphy.txt
12016 F:      Documentation/devicetree/bindings/phy/marvell,armada-3700-utmi-phy.yaml
12017 F:      drivers/phy/marvell/phy-mvebu-a3700-comphy.c
12018 F:      drivers/phy/marvell/phy-mvebu-a3700-utmi.c
12019
12020 MARVELL ARMADA 3700 SERIAL DRIVER
12021 M:      Pali Rohár <pali@kernel.org>
12022 S:      Maintained
12023 F:      Documentation/devicetree/bindings/clock/marvell,armada-3700-uart-clock.yaml
12024 F:      Documentation/devicetree/bindings/serial/mvebu-uart.txt
12025 F:      drivers/tty/serial/mvebu-uart.c
12026
12027 MARVELL ARMADA DRM SUPPORT
12028 M:      Russell King <linux@armlinux.org.uk>
12029 S:      Maintained
12030 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-devel
12031 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-fixes
12032 F:      Documentation/devicetree/bindings/display/armada/
12033 F:      drivers/gpu/drm/armada/
12034 F:      include/uapi/drm/armada_drm.h
12035
12036 MARVELL CRYPTO DRIVER
12037 M:      Boris Brezillon <bbrezillon@kernel.org>
12038 M:      Arnaud Ebalard <arno@natisbad.org>
12039 M:      Srujana Challa <schalla@marvell.com>
12040 L:      linux-crypto@vger.kernel.org
12041 S:      Maintained
12042 F:      drivers/crypto/marvell/
12043 F:      include/linux/soc/marvell/octeontx2/
12044
12045 MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
12046 M:      Mirko Lindner <mlindner@marvell.com>
12047 M:      Stephen Hemminger <stephen@networkplumber.org>
12048 L:      netdev@vger.kernel.org
12049 S:      Maintained
12050 F:      drivers/net/ethernet/marvell/sk*
12051
12052 MARVELL LIBERTAS WIRELESS DRIVER
12053 L:      libertas-dev@lists.infradead.org
12054 S:      Orphan
12055 F:      drivers/net/wireless/marvell/libertas/
12056
12057 MARVELL MACCHIATOBIN SUPPORT
12058 M:      Russell King <linux@armlinux.org.uk>
12059 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12060 S:      Maintained
12061 F:      arch/arm64/boot/dts/marvell/armada-8040-mcbin.dts
12062
12063 MARVELL MV643XX ETHERNET DRIVER
12064 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
12065 L:      netdev@vger.kernel.org
12066 S:      Maintained
12067 F:      drivers/net/ethernet/marvell/mv643xx_eth.*
12068 F:      include/linux/mv643xx.h
12069
12070 MARVELL MV88X3310 PHY DRIVER
12071 M:      Russell King <linux@armlinux.org.uk>
12072 M:      Marek Behún <kabel@kernel.org>
12073 L:      netdev@vger.kernel.org
12074 S:      Maintained
12075 F:      drivers/net/phy/marvell10g.c
12076
12077 MARVELL MVEBU THERMAL DRIVER
12078 M:      Miquel Raynal <miquel.raynal@bootlin.com>
12079 S:      Maintained
12080 F:      drivers/thermal/armada_thermal.c
12081
12082 MARVELL MVNETA ETHERNET DRIVER
12083 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
12084 L:      netdev@vger.kernel.org
12085 S:      Maintained
12086 F:      drivers/net/ethernet/marvell/mvneta.*
12087
12088 MARVELL MVPP2 ETHERNET DRIVER
12089 M:      Marcin Wojtas <mw@semihalf.com>
12090 M:      Russell King <linux@armlinux.org.uk>
12091 L:      netdev@vger.kernel.org
12092 S:      Maintained
12093 F:      Documentation/devicetree/bindings/net/marvell-pp2.txt
12094 F:      drivers/net/ethernet/marvell/mvpp2/
12095
12096 MARVELL MWIFIEX WIRELESS DRIVER
12097 M:      Amitkumar Karwar <amitkarwar@gmail.com>
12098 M:      Ganapathi Bhat <ganapathi017@gmail.com>
12099 M:      Sharvari Harisangam <sharvari.harisangam@nxp.com>
12100 M:      Xinming Hu <huxinming820@gmail.com>
12101 L:      linux-wireless@vger.kernel.org
12102 S:      Maintained
12103 F:      drivers/net/wireless/marvell/mwifiex/
12104
12105 MARVELL MWL8K WIRELESS DRIVER
12106 M:      Lennert Buytenhek <buytenh@wantstofly.org>
12107 L:      linux-wireless@vger.kernel.org
12108 S:      Odd Fixes
12109 F:      drivers/net/wireless/marvell/mwl8k.c
12110
12111 MARVELL NAND CONTROLLER DRIVER
12112 M:      Miquel Raynal <miquel.raynal@bootlin.com>
12113 L:      linux-mtd@lists.infradead.org
12114 S:      Maintained
12115 F:      Documentation/devicetree/bindings/mtd/marvell-nand.txt
12116 F:      drivers/mtd/nand/raw/marvell_nand.c
12117
12118 MARVELL OCTEONTX2 PHYSICAL FUNCTION DRIVER
12119 M:      Sunil Goutham <sgoutham@marvell.com>
12120 M:      Geetha sowjanya <gakula@marvell.com>
12121 M:      Subbaraya Sundeep <sbhatta@marvell.com>
12122 M:      hariprasad <hkelam@marvell.com>
12123 L:      netdev@vger.kernel.org
12124 S:      Supported
12125 F:      drivers/net/ethernet/marvell/octeontx2/nic/
12126 F:      include/linux/soc/marvell/octeontx2/
12127
12128 MARVELL OCTEONTX2 RVU ADMIN FUNCTION DRIVER
12129 M:      Sunil Goutham <sgoutham@marvell.com>
12130 M:      Linu Cherian <lcherian@marvell.com>
12131 M:      Geetha sowjanya <gakula@marvell.com>
12132 M:      Jerin Jacob <jerinj@marvell.com>
12133 M:      hariprasad <hkelam@marvell.com>
12134 M:      Subbaraya Sundeep <sbhatta@marvell.com>
12135 L:      netdev@vger.kernel.org
12136 S:      Supported
12137 F:      Documentation/networking/device_drivers/ethernet/marvell/octeontx2.rst
12138 F:      drivers/net/ethernet/marvell/octeontx2/af/
12139
12140 MARVELL PRESTERA ETHERNET SWITCH DRIVER
12141 M:      Taras Chornyi <tchornyi@marvell.com>
12142 S:      Supported
12143 W:      https://github.com/Marvell-switching/switchdev-prestera
12144 F:      drivers/net/ethernet/marvell/prestera/
12145
12146 MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
12147 M:      Nicolas Pitre <nico@fluxnic.net>
12148 S:      Odd Fixes
12149 F:      drivers/mmc/host/mvsdio.*
12150
12151 MARVELL USB MDIO CONTROLLER DRIVER
12152 M:      Tobias Waldekranz <tobias@waldekranz.com>
12153 L:      netdev@vger.kernel.org
12154 S:      Maintained
12155 F:      Documentation/devicetree/bindings/net/marvell,mvusb.yaml
12156 F:      drivers/net/mdio/mdio-mvusb.c
12157
12158 MARVELL XENON MMC/SD/SDIO HOST CONTROLLER DRIVER
12159 M:      Hu Ziji <huziji@marvell.com>
12160 L:      linux-mmc@vger.kernel.org
12161 S:      Supported
12162 F:      Documentation/devicetree/bindings/mmc/marvell,xenon-sdhci.yaml
12163 F:      drivers/mmc/host/sdhci-xenon*
12164
12165 MARVELL OCTEON ENDPOINT DRIVER
12166 M:      Veerasenareddy Burru <vburru@marvell.com>
12167 M:      Abhijit Ayarekar <aayarekar@marvell.com>
12168 L:      netdev@vger.kernel.org
12169 S:      Supported
12170 F:      drivers/net/ethernet/marvell/octeon_ep
12171
12172 MATROX FRAMEBUFFER DRIVER
12173 L:      linux-fbdev@vger.kernel.org
12174 S:      Orphan
12175 F:      drivers/video/fbdev/matrox/matroxfb_*
12176 F:      include/uapi/linux/matroxfb.h
12177
12178 MAX15301 DRIVER
12179 M:      Daniel Nilsson <daniel.nilsson@flex.com>
12180 L:      linux-hwmon@vger.kernel.org
12181 S:      Maintained
12182 F:      Documentation/hwmon/max15301.rst
12183 F:      drivers/hwmon/pmbus/max15301.c
12184
12185 MAX16065 HARDWARE MONITOR DRIVER
12186 M:      Guenter Roeck <linux@roeck-us.net>
12187 L:      linux-hwmon@vger.kernel.org
12188 S:      Maintained
12189 F:      Documentation/hwmon/max16065.rst
12190 F:      drivers/hwmon/max16065.c
12191
12192 MAX2175 SDR TUNER DRIVER
12193 M:      Ramesh Shanmugasundaram <rashanmu@gmail.com>
12194 L:      linux-media@vger.kernel.org
12195 S:      Maintained
12196 T:      git git://linuxtv.org/media_tree.git
12197 F:      Documentation/devicetree/bindings/media/i2c/max2175.txt
12198 F:      Documentation/userspace-api/media/drivers/max2175.rst
12199 F:      drivers/media/i2c/max2175*
12200 F:      include/uapi/linux/max2175.h
12201
12202 MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
12203 L:      linux-hwmon@vger.kernel.org
12204 S:      Orphan
12205 F:      Documentation/hwmon/max6650.rst
12206 F:      drivers/hwmon/max6650.c
12207
12208 MAX6697 HARDWARE MONITOR DRIVER
12209 M:      Guenter Roeck <linux@roeck-us.net>
12210 L:      linux-hwmon@vger.kernel.org
12211 S:      Maintained
12212 F:      Documentation/devicetree/bindings/hwmon/max6697.txt
12213 F:      Documentation/hwmon/max6697.rst
12214 F:      drivers/hwmon/max6697.c
12215 F:      include/linux/platform_data/max6697.h
12216
12217 MAX9286 QUAD GMSL DESERIALIZER DRIVER
12218 M:      Jacopo Mondi <jacopo+renesas@jmondi.org>
12219 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
12220 M:      Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
12221 M:      Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
12222 L:      linux-media@vger.kernel.org
12223 S:      Maintained
12224 F:      Documentation/devicetree/bindings/media/i2c/maxim,max9286.yaml
12225 F:      drivers/media/i2c/max9286.c
12226
12227 MAX96712 QUAD GMSL2 DESERIALIZER DRIVER
12228 M:      Niklas Söderlund <niklas.soderlund@ragnatech.se>
12229 L:      linux-media@vger.kernel.org
12230 S:      Maintained
12231 F:      drivers/staging/media/max96712/max96712.c
12232
12233 MAX9860 MONO AUDIO VOICE CODEC DRIVER
12234 M:      Peter Rosin <peda@axentia.se>
12235 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12236 S:      Maintained
12237 F:      Documentation/devicetree/bindings/sound/max9860.txt
12238 F:      sound/soc/codecs/max9860.*
12239
12240 MAXBOTIX ULTRASONIC RANGER IIO DRIVER
12241 M:      Andreas Klinger <ak@it-klinger.de>
12242 L:      linux-iio@vger.kernel.org
12243 S:      Maintained
12244 F:      Documentation/devicetree/bindings/iio/proximity/maxbotix,mb1232.yaml
12245 F:      drivers/iio/proximity/mb1232.c
12246
12247 MAXIM MAX17040 FAMILY FUEL GAUGE DRIVERS
12248 R:      Iskren Chernev <iskren.chernev@gmail.com>
12249 R:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
12250 R:      Marek Szyprowski <m.szyprowski@samsung.com>
12251 R:      Matheus Castello <matheus@castello.eng.br>
12252 L:      linux-pm@vger.kernel.org
12253 S:      Maintained
12254 F:      Documentation/devicetree/bindings/power/supply/maxim,max17040.yaml
12255 F:      drivers/power/supply/max17040_battery.c
12256
12257 MAXIM MAX17042 FAMILY FUEL GAUGE DRIVERS
12258 R:      Hans de Goede <hdegoede@redhat.com>
12259 R:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
12260 R:      Marek Szyprowski <m.szyprowski@samsung.com>
12261 R:      Sebastian Krzyszkowiak <sebastian.krzyszkowiak@puri.sm>
12262 R:      Purism Kernel Team <kernel@puri.sm>
12263 L:      linux-pm@vger.kernel.org
12264 S:      Maintained
12265 F:      Documentation/devicetree/bindings/power/supply/maxim,max17042.yaml
12266 F:      drivers/power/supply/max17042_battery.c
12267
12268 MAXIM MAX20086 CAMERA POWER PROTECTOR DRIVER
12269 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12270 L:      linux-kernel@vger.kernel.org
12271 S:      Maintained
12272 F:      Documentation/devicetree/bindings/regulator/maxim,max20086.yaml
12273 F:      drivers/regulator/max20086-regulator.c
12274
12275 MAXIM MAX77650 PMIC MFD DRIVER
12276 M:      Bartosz Golaszewski <brgl@bgdev.pl>
12277 L:      linux-kernel@vger.kernel.org
12278 S:      Maintained
12279 F:      Documentation/devicetree/bindings/*/*max77650.yaml
12280 F:      Documentation/devicetree/bindings/*/max77650*.yaml
12281 F:      drivers/gpio/gpio-max77650.c
12282 F:      drivers/input/misc/max77650-onkey.c
12283 F:      drivers/leds/leds-max77650.c
12284 F:      drivers/mfd/max77650.c
12285 F:      drivers/power/supply/max77650-charger.c
12286 F:      drivers/regulator/max77650-regulator.c
12287 F:      include/linux/mfd/max77650.h
12288
12289 MAXIM MAX77714 PMIC MFD DRIVER
12290 M:      Luca Ceresoli <luca@lucaceresoli.net>
12291 S:      Maintained
12292 F:      Documentation/devicetree/bindings/mfd/maxim,max77714.yaml
12293 F:      drivers/mfd/max77714.c
12294 F:      include/linux/mfd/max77714.h
12295
12296 MAXIM MAX77802 PMIC REGULATOR DEVICE DRIVER
12297 M:      Javier Martinez Canillas <javier@dowhile0.org>
12298 L:      linux-kernel@vger.kernel.org
12299 S:      Supported
12300 F:      Documentation/devicetree/bindings/*/*max77802.yaml
12301 F:      drivers/regulator/max77802-regulator.c
12302 F:      include/dt-bindings/*/*max77802.h
12303
12304 MAXIM MAX77976 BATTERY CHARGER
12305 M:      Luca Ceresoli <luca@lucaceresoli.net>
12306 S:      Supported
12307 F:      Documentation/devicetree/bindings/power/supply/maxim,max77976.yaml
12308 F:      drivers/power/supply/max77976_charger.c
12309
12310 MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS
12311 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
12312 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
12313 L:      linux-pm@vger.kernel.org
12314 S:      Supported
12315 B:      mailto:linux-samsung-soc@vger.kernel.org
12316 F:      Documentation/devicetree/bindings/power/supply/maxim,max14577.yaml
12317 F:      Documentation/devicetree/bindings/power/supply/maxim,max77693.yaml
12318 F:      drivers/power/supply/max14577_charger.c
12319 F:      drivers/power/supply/max77693_charger.c
12320
12321 MAXIM PMIC AND MUIC DRIVERS FOR EXYNOS BASED BOARDS
12322 M:      Chanwoo Choi <cw00.choi@samsung.com>
12323 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
12324 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
12325 L:      linux-kernel@vger.kernel.org
12326 S:      Supported
12327 B:      mailto:linux-samsung-soc@vger.kernel.org
12328 F:      Documentation/devicetree/bindings/*/maxim,max14577.yaml
12329 F:      Documentation/devicetree/bindings/*/maxim,max77686.yaml
12330 F:      Documentation/devicetree/bindings/*/maxim,max77693.yaml
12331 F:      Documentation/devicetree/bindings/*/maxim,max77843.yaml
12332 F:      Documentation/devicetree/bindings/clock/maxim,max77686.txt
12333 F:      Documentation/devicetree/bindings/mfd/max77693.txt
12334 F:      drivers/*/*max77843.c
12335 F:      drivers/*/max14577*.c
12336 F:      drivers/*/max77686*.c
12337 F:      drivers/*/max77693*.c
12338 F:      drivers/clk/clk-max77686.c
12339 F:      drivers/extcon/extcon-max14577.c
12340 F:      drivers/extcon/extcon-max77693.c
12341 F:      drivers/rtc/rtc-max77686.c
12342 F:      include/linux/mfd/max14577*.h
12343 F:      include/linux/mfd/max77686*.h
12344 F:      include/linux/mfd/max77693*.h
12345
12346 MAXIRADIO FM RADIO RECEIVER DRIVER
12347 M:      Hans Verkuil <hverkuil@xs4all.nl>
12348 L:      linux-media@vger.kernel.org
12349 S:      Maintained
12350 W:      https://linuxtv.org
12351 T:      git git://linuxtv.org/media_tree.git
12352 F:      drivers/media/radio/radio-maxiradio*
12353
12354 MAXLINEAR ETHERNET PHY DRIVER
12355 M:      Xu Liang <lxu@maxlinear.com>
12356 L:      netdev@vger.kernel.org
12357 S:      Supported
12358 F:      drivers/net/phy/mxl-gpy.c
12359
12360 MCBA MICROCHIP CAN BUS ANALYZER TOOL DRIVER
12361 R:      Yasushi SHOJI <yashi@spacecubics.com>
12362 L:      linux-can@vger.kernel.org
12363 S:      Maintained
12364 F:      drivers/net/can/usb/mcba_usb.c
12365
12366 MCAN MMIO DEVICE DRIVER
12367 M:      Chandrasekar Ramakrishnan <rcsekar@samsung.com>
12368 L:      linux-can@vger.kernel.org
12369 S:      Maintained
12370 F:      Documentation/devicetree/bindings/net/can/bosch,m_can.yaml
12371 F:      drivers/net/can/m_can/m_can.c
12372 F:      drivers/net/can/m_can/m_can.h
12373 F:      drivers/net/can/m_can/m_can_platform.c
12374
12375 MCP2221A MICROCHIP USB-HID TO I2C BRIDGE DRIVER
12376 M:      Rishi Gupta <gupt21@gmail.com>
12377 L:      linux-i2c@vger.kernel.org
12378 L:      linux-input@vger.kernel.org
12379 S:      Maintained
12380 F:      drivers/hid/hid-mcp2221.c
12381
12382 MCP251XFD SPI-CAN NETWORK DRIVER
12383 M:      Marc Kleine-Budde <mkl@pengutronix.de>
12384 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
12385 R:      Thomas Kopp <thomas.kopp@microchip.com>
12386 L:      linux-can@vger.kernel.org
12387 S:      Maintained
12388 F:      Documentation/devicetree/bindings/net/can/microchip,mcp251xfd.yaml
12389 F:      drivers/net/can/spi/mcp251xfd/
12390
12391 MCP4018 AND MCP4531 MICROCHIP DIGITAL POTENTIOMETER DRIVERS
12392 M:      Peter Rosin <peda@axentia.se>
12393 L:      linux-iio@vger.kernel.org
12394 S:      Maintained
12395 F:      Documentation/ABI/testing/sysfs-bus-iio-potentiometer-mcp4531
12396 F:      drivers/iio/potentiometer/mcp4018.c
12397 F:      drivers/iio/potentiometer/mcp4531.c
12398
12399 MCR20A IEEE-802.15.4 RADIO DRIVER
12400 M:      Xue Liu <liuxuenetmail@gmail.com>
12401 L:      linux-wpan@vger.kernel.org
12402 S:      Maintained
12403 W:      https://github.com/xueliu/mcr20a-linux
12404 F:      Documentation/devicetree/bindings/net/ieee802154/mcr20a.txt
12405 F:      drivers/net/ieee802154/mcr20a.c
12406 F:      drivers/net/ieee802154/mcr20a.h
12407
12408 MEASUREMENT COMPUTING CIO-DAC IIO DRIVER
12409 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
12410 L:      linux-iio@vger.kernel.org
12411 S:      Maintained
12412 F:      drivers/iio/dac/cio-dac.c
12413
12414 MEDIA CONTROLLER FRAMEWORK
12415 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
12416 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12417 L:      linux-media@vger.kernel.org
12418 S:      Supported
12419 W:      https://www.linuxtv.org
12420 T:      git git://linuxtv.org/media_tree.git
12421 F:      drivers/media/mc/
12422 F:      include/media/media-*.h
12423 F:      include/uapi/linux/media.h
12424
12425 MEDIA DRIVER FOR FREESCALE IMX PXP
12426 M:      Philipp Zabel <p.zabel@pengutronix.de>
12427 L:      linux-media@vger.kernel.org
12428 S:      Maintained
12429 T:      git git://linuxtv.org/media_tree.git
12430 F:      drivers/media/platform/nxp/imx-pxp.[ch]
12431
12432 MEDIA DRIVERS FOR ASCOT2E
12433 M:      Sergey Kozlov <serjk@netup.ru>
12434 M:      Abylay Ospan <aospan@netup.ru>
12435 L:      linux-media@vger.kernel.org
12436 S:      Supported
12437 W:      https://linuxtv.org
12438 W:      http://netup.tv/
12439 T:      git git://linuxtv.org/media_tree.git
12440 F:      drivers/media/dvb-frontends/ascot2e*
12441
12442 MEDIA DRIVERS FOR CXD2099AR CI CONTROLLERS
12443 M:      Jasmin Jessich <jasmin@anw.at>
12444 L:      linux-media@vger.kernel.org
12445 S:      Maintained
12446 W:      https://linuxtv.org
12447 T:      git git://linuxtv.org/media_tree.git
12448 F:      drivers/media/dvb-frontends/cxd2099*
12449
12450 MEDIA DRIVERS FOR CXD2841ER
12451 M:      Sergey Kozlov <serjk@netup.ru>
12452 M:      Abylay Ospan <aospan@netup.ru>
12453 L:      linux-media@vger.kernel.org
12454 S:      Supported
12455 W:      https://linuxtv.org
12456 W:      http://netup.tv/
12457 T:      git git://linuxtv.org/media_tree.git
12458 F:      drivers/media/dvb-frontends/cxd2841er*
12459
12460 MEDIA DRIVERS FOR CXD2880
12461 M:      Yasunari Takiguchi <Yasunari.Takiguchi@sony.com>
12462 L:      linux-media@vger.kernel.org
12463 S:      Supported
12464 W:      http://linuxtv.org/
12465 T:      git git://linuxtv.org/media_tree.git
12466 F:      drivers/media/dvb-frontends/cxd2880/*
12467 F:      drivers/media/spi/cxd2880*
12468
12469 MEDIA DRIVERS FOR DIGITAL DEVICES PCIE DEVICES
12470 L:      linux-media@vger.kernel.org
12471 S:      Orphan
12472 W:      https://linuxtv.org
12473 T:      git git://linuxtv.org/media_tree.git
12474 F:      drivers/media/pci/ddbridge/*
12475
12476 MEDIA DRIVERS FOR FREESCALE IMX
12477 M:      Steve Longerbeam <slongerbeam@gmail.com>
12478 M:      Philipp Zabel <p.zabel@pengutronix.de>
12479 L:      linux-media@vger.kernel.org
12480 S:      Maintained
12481 T:      git git://linuxtv.org/media_tree.git
12482 F:      Documentation/admin-guide/media/imx.rst
12483 F:      Documentation/devicetree/bindings/media/imx.txt
12484 F:      drivers/staging/media/imx/
12485 F:      include/linux/imx-media.h
12486 F:      include/media/imx.h
12487
12488 MEDIA DRIVERS FOR FREESCALE IMX7
12489 M:      Rui Miguel Silva <rmfrfs@gmail.com>
12490 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12491 L:      linux-media@vger.kernel.org
12492 S:      Maintained
12493 T:      git git://linuxtv.org/media_tree.git
12494 F:      Documentation/admin-guide/media/imx7.rst
12495 F:      Documentation/devicetree/bindings/media/nxp,imx-mipi-csi2.yaml
12496 F:      Documentation/devicetree/bindings/media/nxp,imx7-csi.yaml
12497 F:      drivers/media/platform/nxp/imx-mipi-csis.c
12498 F:      drivers/staging/media/imx/imx7-media-csi.c
12499
12500 MEDIA DRIVERS FOR HELENE
12501 M:      Abylay Ospan <aospan@netup.ru>
12502 L:      linux-media@vger.kernel.org
12503 S:      Supported
12504 W:      https://linuxtv.org
12505 W:      http://netup.tv/
12506 T:      git git://linuxtv.org/media_tree.git
12507 F:      drivers/media/dvb-frontends/helene*
12508
12509 MEDIA DRIVERS FOR HORUS3A
12510 M:      Sergey Kozlov <serjk@netup.ru>
12511 M:      Abylay Ospan <aospan@netup.ru>
12512 L:      linux-media@vger.kernel.org
12513 S:      Supported
12514 W:      https://linuxtv.org
12515 W:      http://netup.tv/
12516 T:      git git://linuxtv.org/media_tree.git
12517 F:      drivers/media/dvb-frontends/horus3a*
12518
12519 MEDIA DRIVERS FOR LNBH25
12520 M:      Sergey Kozlov <serjk@netup.ru>
12521 M:      Abylay Ospan <aospan@netup.ru>
12522 L:      linux-media@vger.kernel.org
12523 S:      Supported
12524 W:      https://linuxtv.org
12525 W:      http://netup.tv/
12526 T:      git git://linuxtv.org/media_tree.git
12527 F:      drivers/media/dvb-frontends/lnbh25*
12528
12529 MEDIA DRIVERS FOR MXL5XX TUNER DEMODULATORS
12530 L:      linux-media@vger.kernel.org
12531 S:      Orphan
12532 W:      https://linuxtv.org
12533 T:      git git://linuxtv.org/media_tree.git
12534 F:      drivers/media/dvb-frontends/mxl5xx*
12535
12536 MEDIA DRIVERS FOR NETUP PCI UNIVERSAL DVB devices
12537 M:      Sergey Kozlov <serjk@netup.ru>
12538 M:      Abylay Ospan <aospan@netup.ru>
12539 L:      linux-media@vger.kernel.org
12540 S:      Supported
12541 W:      https://linuxtv.org
12542 W:      http://netup.tv/
12543 T:      git git://linuxtv.org/media_tree.git
12544 F:      drivers/media/pci/netup_unidvb/*
12545
12546 MEDIA DRIVERS FOR NVIDIA TEGRA - VDE
12547 M:      Dmitry Osipenko <digetx@gmail.com>
12548 L:      linux-media@vger.kernel.org
12549 L:      linux-tegra@vger.kernel.org
12550 S:      Maintained
12551 T:      git git://linuxtv.org/media_tree.git
12552 F:      Documentation/devicetree/bindings/media/nvidia,tegra-vde.yaml
12553 F:      drivers/media/platform/nvidia/tegra-vde/
12554
12555 MEDIA DRIVERS FOR RENESAS - CEU
12556 M:      Jacopo Mondi <jacopo@jmondi.org>
12557 L:      linux-media@vger.kernel.org
12558 L:      linux-renesas-soc@vger.kernel.org
12559 S:      Supported
12560 T:      git git://linuxtv.org/media_tree.git
12561 F:      Documentation/devicetree/bindings/media/renesas,ceu.yaml
12562 F:      drivers/media/platform/renesas/renesas-ceu.c
12563 F:      include/media/drv-intf/renesas-ceu.h
12564
12565 MEDIA DRIVERS FOR RENESAS - DRIF
12566 M:      Fabrizio Castro <fabrizio.castro.jz@renesas.com>
12567 L:      linux-media@vger.kernel.org
12568 L:      linux-renesas-soc@vger.kernel.org
12569 S:      Supported
12570 T:      git git://linuxtv.org/media_tree.git
12571 F:      Documentation/devicetree/bindings/media/renesas,drif.yaml
12572 F:      drivers/media/platform/renesas/rcar_drif.c
12573
12574 MEDIA DRIVERS FOR RENESAS - FCP
12575 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12576 L:      linux-media@vger.kernel.org
12577 L:      linux-renesas-soc@vger.kernel.org
12578 S:      Supported
12579 T:      git git://linuxtv.org/media_tree.git
12580 F:      Documentation/devicetree/bindings/media/renesas,fcp.yaml
12581 F:      drivers/media/platform/renesas/rcar-fcp.c
12582 F:      include/media/rcar-fcp.h
12583
12584 MEDIA DRIVERS FOR RENESAS - FDP1
12585 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
12586 L:      linux-media@vger.kernel.org
12587 L:      linux-renesas-soc@vger.kernel.org
12588 S:      Supported
12589 T:      git git://linuxtv.org/media_tree.git
12590 F:      Documentation/devicetree/bindings/media/renesas,fdp1.yaml
12591 F:      drivers/media/platform/renesas/rcar_fdp1.c
12592
12593 MEDIA DRIVERS FOR RENESAS - VIN
12594 M:      Niklas Söderlund <niklas.soderlund@ragnatech.se>
12595 L:      linux-media@vger.kernel.org
12596 L:      linux-renesas-soc@vger.kernel.org
12597 S:      Supported
12598 T:      git git://linuxtv.org/media_tree.git
12599 F:      Documentation/devicetree/bindings/media/renesas,csi2.yaml
12600 F:      Documentation/devicetree/bindings/media/renesas,isp.yaml
12601 F:      Documentation/devicetree/bindings/media/renesas,vin.yaml
12602 F:      drivers/media/platform/renesas/rcar-isp.c
12603 F:      drivers/media/platform/renesas/rcar-vin/
12604
12605 MEDIA DRIVERS FOR RENESAS - VSP1
12606 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12607 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
12608 L:      linux-media@vger.kernel.org
12609 L:      linux-renesas-soc@vger.kernel.org
12610 S:      Supported
12611 T:      git git://linuxtv.org/media_tree.git
12612 F:      Documentation/devicetree/bindings/media/renesas,vsp1.yaml
12613 F:      drivers/media/platform/renesas/vsp1/
12614
12615 MEDIA DRIVERS FOR ST STV0910 DEMODULATOR ICs
12616 L:      linux-media@vger.kernel.org
12617 S:      Orphan
12618 W:      https://linuxtv.org
12619 T:      git git://linuxtv.org/media_tree.git
12620 F:      drivers/media/dvb-frontends/stv0910*
12621
12622 MEDIA DRIVERS FOR ST STV6111 TUNER ICs
12623 L:      linux-media@vger.kernel.org
12624 S:      Orphan
12625 W:      https://linuxtv.org
12626 T:      git git://linuxtv.org/media_tree.git
12627 F:      drivers/media/dvb-frontends/stv6111*
12628
12629 MEDIA DRIVERS FOR STM32 - DCMI
12630 M:      Hugues Fruchet <hugues.fruchet@foss.st.com>
12631 L:      linux-media@vger.kernel.org
12632 S:      Supported
12633 T:      git git://linuxtv.org/media_tree.git
12634 F:      Documentation/devicetree/bindings/media/st,stm32-dcmi.yaml
12635 F:      drivers/media/platform/st/stm32/stm32-dcmi.c
12636
12637 MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
12638 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
12639 L:      linux-media@vger.kernel.org
12640 S:      Maintained
12641 W:      https://linuxtv.org
12642 Q:      http://patchwork.kernel.org/project/linux-media/list/
12643 T:      git git://linuxtv.org/media_tree.git
12644 F:      Documentation/admin-guide/media/
12645 F:      Documentation/devicetree/bindings/media/
12646 F:      Documentation/driver-api/media/
12647 F:      Documentation/userspace-api/media/
12648 F:      drivers/media/
12649 F:      drivers/staging/media/
12650 F:      include/dt-bindings/media/
12651 F:      include/linux/platform_data/media/
12652 F:      include/media/
12653 F:      include/uapi/linux/dvb/
12654 F:      include/uapi/linux/ivtv*
12655 F:      include/uapi/linux/media.h
12656 F:      include/uapi/linux/meye.h
12657 F:      include/uapi/linux/uvcvideo.h
12658 F:      include/uapi/linux/v4l2-*
12659 F:      include/uapi/linux/videodev2.h
12660
12661 MEDIATEK BLUETOOTH DRIVER
12662 M:      Sean Wang <sean.wang@mediatek.com>
12663 L:      linux-bluetooth@vger.kernel.org
12664 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
12665 S:      Maintained
12666 F:      Documentation/devicetree/bindings/net/mediatek-bluetooth.txt
12667 F:      drivers/bluetooth/btmtkuart.c
12668
12669 MEDIATEK BOARD LEVEL SHUTDOWN DRIVERS
12670 M:      Sean Wang <sean.wang@mediatek.com>
12671 L:      linux-pm@vger.kernel.org
12672 S:      Maintained
12673 F:      Documentation/devicetree/bindings/power/reset/mt6323-poweroff.txt
12674 F:      drivers/power/reset/mt6323-poweroff.c
12675
12676 MEDIATEK CIR DRIVER
12677 M:      Sean Wang <sean.wang@mediatek.com>
12678 S:      Maintained
12679 F:      drivers/media/rc/mtk-cir.c
12680
12681 MEDIATEK DMA DRIVER
12682 M:      Sean Wang <sean.wang@mediatek.com>
12683 L:      dmaengine@vger.kernel.org
12684 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12685 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
12686 S:      Maintained
12687 F:      Documentation/devicetree/bindings/dma/mtk-*
12688 F:      drivers/dma/mediatek/
12689
12690 MEDIATEK ETHERNET DRIVER
12691 M:      Felix Fietkau <nbd@nbd.name>
12692 M:      John Crispin <john@phrozen.org>
12693 M:      Sean Wang <sean.wang@mediatek.com>
12694 M:      Mark Lee <Mark-MC.Lee@mediatek.com>
12695 L:      netdev@vger.kernel.org
12696 S:      Maintained
12697 F:      drivers/net/ethernet/mediatek/
12698
12699 MEDIATEK I2C CONTROLLER DRIVER
12700 M:      Qii Wang <qii.wang@mediatek.com>
12701 L:      linux-i2c@vger.kernel.org
12702 S:      Maintained
12703 F:      Documentation/devicetree/bindings/i2c/i2c-mt65xx.yaml
12704 F:      drivers/i2c/busses/i2c-mt65xx.c
12705
12706 MEDIATEK IOMMU DRIVER
12707 M:      Yong Wu <yong.wu@mediatek.com>
12708 L:      iommu@lists.linux.dev
12709 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
12710 S:      Supported
12711 F:      Documentation/devicetree/bindings/iommu/mediatek*
12712 F:      drivers/iommu/mtk_iommu*
12713 F:      include/dt-bindings/memory/mt*-port.h
12714
12715 MEDIATEK JPEG DRIVER
12716 M:      Bin Liu <bin.liu@mediatek.com>
12717 S:      Supported
12718 F:      Documentation/devicetree/bindings/media/mediatek-jpeg-*.yaml
12719 F:      drivers/media/platform/mediatek/jpeg/
12720
12721 MEDIATEK MDP DRIVER
12722 M:      Minghsiu Tsai <minghsiu.tsai@mediatek.com>
12723 M:      Houlong Wei <houlong.wei@mediatek.com>
12724 M:      Andrew-CT Chen <andrew-ct.chen@mediatek.com>
12725 S:      Supported
12726 F:      Documentation/devicetree/bindings/media/mediatek-mdp.txt
12727 F:      drivers/media/platform/mediatek/mdp/
12728 F:      drivers/media/platform/mediatek/vpu/
12729
12730 MEDIATEK MEDIA DRIVER
12731 M:      Tiffany Lin <tiffany.lin@mediatek.com>
12732 M:      Andrew-CT Chen <andrew-ct.chen@mediatek.com>
12733 M:      Yunfei Dong <yunfei.dong@mediatek.com>
12734 S:      Supported
12735 F:      Documentation/devicetree/bindings/media/mediatek,vcodec*.yaml
12736 F:      Documentation/devicetree/bindings/media/mediatek-vpu.txt
12737 F:      drivers/media/platform/mediatek/vcodec/
12738 F:      drivers/media/platform/mediatek/vpu/
12739
12740 MEDIATEK MMC/SD/SDIO DRIVER
12741 M:      Chaotian Jing <chaotian.jing@mediatek.com>
12742 S:      Maintained
12743 F:      Documentation/devicetree/bindings/mmc/mtk-sd.yaml
12744 F:      drivers/mmc/host/mtk-sd.c
12745
12746 MEDIATEK MT76 WIRELESS LAN DRIVER
12747 M:      Felix Fietkau <nbd@nbd.name>
12748 M:      Lorenzo Bianconi <lorenzo@kernel.org>
12749 M:      Ryder Lee <ryder.lee@mediatek.com>
12750 R:      Shayne Chen <shayne.chen@mediatek.com>
12751 R:      Sean Wang <sean.wang@mediatek.com>
12752 L:      linux-wireless@vger.kernel.org
12753 S:      Maintained
12754 F:      Documentation/devicetree/bindings/net/wireless/mediatek,mt76.yaml
12755 F:      drivers/net/wireless/mediatek/mt76/
12756
12757 MEDIATEK MT7601U WIRELESS LAN DRIVER
12758 M:      Jakub Kicinski <kubakici@wp.pl>
12759 L:      linux-wireless@vger.kernel.org
12760 S:      Maintained
12761 F:      drivers/net/wireless/mediatek/mt7601u/
12762
12763 MEDIATEK MT7621 CLOCK DRIVER
12764 M:      Sergio Paracuellos <sergio.paracuellos@gmail.com>
12765 S:      Maintained
12766 F:      Documentation/devicetree/bindings/clock/mediatek,mt7621-sysc.yaml
12767 F:      drivers/clk/ralink/clk-mt7621.c
12768
12769 MEDIATEK MT7621/28/88 I2C DRIVER
12770 M:      Stefan Roese <sr@denx.de>
12771 L:      linux-i2c@vger.kernel.org
12772 S:      Maintained
12773 F:      Documentation/devicetree/bindings/i2c/i2c-mt7621.txt
12774 F:      drivers/i2c/busses/i2c-mt7621.c
12775
12776 MEDIATEK MT7621 PCIE CONTROLLER DRIVER
12777 M:      Sergio Paracuellos <sergio.paracuellos@gmail.com>
12778 S:      Maintained
12779 F:      Documentation/devicetree/bindings/pci/mediatek,mt7621-pcie.yaml
12780 F:      drivers/pci/controller/pcie-mt7621.c
12781
12782 MEDIATEK MT7621 PHY PCI DRIVER
12783 M:      Sergio Paracuellos <sergio.paracuellos@gmail.com>
12784 S:      Maintained
12785 F:      Documentation/devicetree/bindings/phy/mediatek,mt7621-pci-phy.yaml
12786 F:      drivers/phy/ralink/phy-mt7621-pci.c
12787
12788 MEDIATEK NAND CONTROLLER DRIVER
12789 L:      linux-mtd@lists.infradead.org
12790 S:      Orphan
12791 F:      Documentation/devicetree/bindings/mtd/mtk-nand.txt
12792 F:      drivers/mtd/nand/raw/mtk_*
12793
12794 MEDIATEK PMIC LED DRIVER
12795 M:      Sean Wang <sean.wang@mediatek.com>
12796 S:      Maintained
12797 F:      Documentation/devicetree/bindings/leds/leds-mt6323.txt
12798 F:      drivers/leds/leds-mt6323.c
12799
12800 MEDIATEK RANDOM NUMBER GENERATOR SUPPORT
12801 M:      Sean Wang <sean.wang@mediatek.com>
12802 S:      Maintained
12803 F:      drivers/char/hw_random/mtk-rng.c
12804
12805 MEDIATEK SMI DRIVER
12806 M:      Yong Wu <yong.wu@mediatek.com>
12807 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
12808 S:      Supported
12809 F:      Documentation/devicetree/bindings/memory-controllers/mediatek,smi*
12810 F:      drivers/memory/mtk-smi.c
12811 F:      include/soc/mediatek/smi.h
12812
12813 MEDIATEK SWITCH DRIVER
12814 M:      Sean Wang <sean.wang@mediatek.com>
12815 M:      Landen Chao <Landen.Chao@mediatek.com>
12816 M:      DENG Qingfang <dqfext@gmail.com>
12817 L:      netdev@vger.kernel.org
12818 S:      Maintained
12819 F:      drivers/net/dsa/mt7530.*
12820 F:      net/dsa/tag_mtk.c
12821
12822 MEDIATEK T7XX 5G WWAN MODEM DRIVER
12823 M:      Chandrashekar Devegowda <chandrashekar.devegowda@intel.com>
12824 M:      Intel Corporation <linuxwwan@intel.com>
12825 R:      Chiranjeevi Rapolu <chiranjeevi.rapolu@linux.intel.com>
12826 R:      Liu Haijun <haijun.liu@mediatek.com>
12827 R:      M Chetan Kumar <m.chetan.kumar@linux.intel.com>
12828 R:      Ricardo Martinez <ricardo.martinez@linux.intel.com>
12829 L:      netdev@vger.kernel.org
12830 S:      Supported
12831 F:      drivers/net/wwan/t7xx/
12832
12833 MEDIATEK USB3 DRD IP DRIVER
12834 M:      Chunfeng Yun <chunfeng.yun@mediatek.com>
12835 L:      linux-usb@vger.kernel.org
12836 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12837 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
12838 S:      Maintained
12839 F:      Documentation/devicetree/bindings/usb/mediatek,*
12840 F:      drivers/usb/host/xhci-mtk*
12841 F:      drivers/usb/mtu3/
12842
12843 MEGACHIPS STDPXXXX-GE-B850V3-FW LVDS/DP++ BRIDGES
12844 M:      Peter Senna Tschudin <peter.senna@gmail.com>
12845 M:      Martin Donnelly <martin.donnelly@ge.com>
12846 M:      Martyn Welch <martyn.welch@collabora.co.uk>
12847 S:      Maintained
12848 F:      Documentation/devicetree/bindings/display/bridge/megachips-stdpxxxx-ge-b850v3-fw.txt
12849 F:      drivers/gpu/drm/bridge/megachips-stdpxxxx-ge-b850v3-fw.c
12850
12851 MEGARAID SCSI/SAS DRIVERS
12852 M:      Kashyap Desai <kashyap.desai@broadcom.com>
12853 M:      Sumit Saxena <sumit.saxena@broadcom.com>
12854 M:      Shivasharan S <shivasharan.srikanteshwara@broadcom.com>
12855 L:      megaraidlinux.pdl@broadcom.com
12856 L:      linux-scsi@vger.kernel.org
12857 S:      Maintained
12858 W:      http://www.avagotech.com/support/
12859 F:      Documentation/scsi/megaraid.rst
12860 F:      drivers/scsi/megaraid.*
12861 F:      drivers/scsi/megaraid/
12862
12863 MELEXIS MLX90614 DRIVER
12864 M:      Crt Mori <cmo@melexis.com>
12865 L:      linux-iio@vger.kernel.org
12866 S:      Supported
12867 W:      http://www.melexis.com
12868 F:      drivers/iio/temperature/mlx90614.c
12869
12870 MELEXIS MLX90632 DRIVER
12871 M:      Crt Mori <cmo@melexis.com>
12872 L:      linux-iio@vger.kernel.org
12873 S:      Supported
12874 W:      http://www.melexis.com
12875 F:      drivers/iio/temperature/mlx90632.c
12876
12877 MELFAS MIP4 TOUCHSCREEN DRIVER
12878 M:      Sangwon Jee <jeesw@melfas.com>
12879 S:      Supported
12880 W:      http://www.melfas.com
12881 F:      Documentation/devicetree/bindings/input/touchscreen/melfas_mip4.txt
12882 F:      drivers/input/touchscreen/melfas_mip4.c
12883
12884 MELLANOX BLUEFIELD I2C DRIVER
12885 M:      Khalil Blaiech <kblaiech@nvidia.com>
12886 L:      linux-i2c@vger.kernel.org
12887 S:      Supported
12888 F:      Documentation/devicetree/bindings/i2c/mellanox,i2c-mlxbf.yaml
12889 F:      drivers/i2c/busses/i2c-mlxbf.c
12890
12891 MELLANOX ETHERNET DRIVER (mlx4_en)
12892 M:      Tariq Toukan <tariqt@nvidia.com>
12893 L:      netdev@vger.kernel.org
12894 S:      Supported
12895 W:      http://www.mellanox.com
12896 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12897 F:      drivers/net/ethernet/mellanox/mlx4/en_*
12898
12899 MELLANOX ETHERNET DRIVER (mlx5e)
12900 M:      Saeed Mahameed <saeedm@nvidia.com>
12901 L:      netdev@vger.kernel.org
12902 S:      Supported
12903 W:      http://www.mellanox.com
12904 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12905 F:      drivers/net/ethernet/mellanox/mlx5/core/en_*
12906
12907 MELLANOX ETHERNET INNOVA DRIVERS
12908 R:      Boris Pismenny <borisp@nvidia.com>
12909 L:      netdev@vger.kernel.org
12910 S:      Supported
12911 W:      http://www.mellanox.com
12912 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12913 F:      drivers/net/ethernet/mellanox/mlx5/core/en_accel/*
12914 F:      drivers/net/ethernet/mellanox/mlx5/core/fpga/*
12915 F:      include/linux/mlx5/mlx5_ifc_fpga.h
12916
12917 MELLANOX ETHERNET SWITCH DRIVERS
12918 M:      Ido Schimmel <idosch@nvidia.com>
12919 M:      Petr Machata <petrm@nvidia.com>
12920 L:      netdev@vger.kernel.org
12921 S:      Supported
12922 W:      http://www.mellanox.com
12923 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12924 F:      drivers/net/ethernet/mellanox/mlxsw/
12925 F:      tools/testing/selftests/drivers/net/mlxsw/
12926
12927 MELLANOX FIRMWARE FLASH LIBRARY (mlxfw)
12928 M:      mlxsw@nvidia.com
12929 L:      netdev@vger.kernel.org
12930 S:      Supported
12931 W:      http://www.mellanox.com
12932 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12933 F:      drivers/net/ethernet/mellanox/mlxfw/
12934
12935 MELLANOX HARDWARE PLATFORM SUPPORT
12936 M:      Hans de Goede <hdegoede@redhat.com>
12937 M:      Mark Gross <markgross@kernel.org>
12938 M:      Vadim Pasternak <vadimp@nvidia.com>
12939 L:      platform-driver-x86@vger.kernel.org
12940 S:      Supported
12941 F:      Documentation/ABI/testing/sysfs-platform-mellanox-bootctl
12942 F:      drivers/platform/mellanox/
12943 F:      include/linux/platform_data/mlxreg.h
12944
12945 MELLANOX MLX4 core VPI driver
12946 M:      Tariq Toukan <tariqt@nvidia.com>
12947 L:      netdev@vger.kernel.org
12948 L:      linux-rdma@vger.kernel.org
12949 S:      Supported
12950 W:      http://www.mellanox.com
12951 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12952 F:      drivers/net/ethernet/mellanox/mlx4/
12953 F:      include/linux/mlx4/
12954
12955 MELLANOX MLX4 IB driver
12956 M:      Yishai Hadas <yishaih@nvidia.com>
12957 L:      linux-rdma@vger.kernel.org
12958 S:      Supported
12959 W:      http://www.mellanox.com
12960 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
12961 F:      drivers/infiniband/hw/mlx4/
12962 F:      include/linux/mlx4/
12963 F:      include/uapi/rdma/mlx4-abi.h
12964
12965 MELLANOX MLX5 core VPI driver
12966 M:      Saeed Mahameed <saeedm@nvidia.com>
12967 M:      Leon Romanovsky <leonro@nvidia.com>
12968 L:      netdev@vger.kernel.org
12969 L:      linux-rdma@vger.kernel.org
12970 S:      Supported
12971 W:      http://www.mellanox.com
12972 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12973 F:      Documentation/networking/device_drivers/ethernet/mellanox/
12974 F:      drivers/net/ethernet/mellanox/mlx5/core/
12975 F:      include/linux/mlx5/
12976
12977 MELLANOX MLX5 IB driver
12978 M:      Leon Romanovsky <leonro@nvidia.com>
12979 L:      linux-rdma@vger.kernel.org
12980 S:      Supported
12981 W:      http://www.mellanox.com
12982 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
12983 F:      drivers/infiniband/hw/mlx5/
12984 F:      include/linux/mlx5/
12985 F:      include/uapi/rdma/mlx5-abi.h
12986
12987 MELLANOX MLXCPLD I2C AND MUX DRIVER
12988 M:      Vadim Pasternak <vadimp@nvidia.com>
12989 M:      Michael Shych <michaelsh@nvidia.com>
12990 L:      linux-i2c@vger.kernel.org
12991 S:      Supported
12992 F:      Documentation/i2c/busses/i2c-mlxcpld.rst
12993 F:      drivers/i2c/busses/i2c-mlxcpld.c
12994 F:      drivers/i2c/muxes/i2c-mux-mlxcpld.c
12995
12996 MELLANOX MLXCPLD LED DRIVER
12997 M:      Vadim Pasternak <vadimp@nvidia.com>
12998 L:      linux-leds@vger.kernel.org
12999 S:      Supported
13000 F:      Documentation/leds/leds-mlxcpld.rst
13001 F:      drivers/leds/leds-mlxcpld.c
13002 F:      drivers/leds/leds-mlxreg.c
13003
13004 MELLANOX PLATFORM DRIVER
13005 M:      Vadim Pasternak <vadimp@nvidia.com>
13006 L:      platform-driver-x86@vger.kernel.org
13007 S:      Supported
13008 F:      drivers/platform/x86/mlx-platform.c
13009
13010 MEMBARRIER SUPPORT
13011 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
13012 M:      "Paul E. McKenney" <paulmck@kernel.org>
13013 L:      linux-kernel@vger.kernel.org
13014 S:      Supported
13015 F:      arch/powerpc/include/asm/membarrier.h
13016 F:      include/uapi/linux/membarrier.h
13017 F:      kernel/sched/membarrier.c
13018
13019 MEMBLOCK
13020 M:      Mike Rapoport <rppt@kernel.org>
13021 L:      linux-mm@kvack.org
13022 S:      Maintained
13023 F:      Documentation/core-api/boot-time-mm.rst
13024 F:      include/linux/memblock.h
13025 F:      mm/memblock.c
13026 F:      tools/testing/memblock/
13027
13028 MEMORY CONTROLLER DRIVERS
13029 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
13030 L:      linux-kernel@vger.kernel.org
13031 S:      Maintained
13032 B:      mailto:krzysztof.kozlowski@linaro.org
13033 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/krzk/linux-mem-ctrl.git
13034 F:      Documentation/devicetree/bindings/memory-controllers/
13035 F:      drivers/memory/
13036 F:      include/dt-bindings/memory/
13037 F:      include/memory/
13038
13039 MEMORY FREQUENCY SCALING DRIVERS FOR NVIDIA TEGRA
13040 M:      Dmitry Osipenko <digetx@gmail.com>
13041 L:      linux-pm@vger.kernel.org
13042 L:      linux-tegra@vger.kernel.org
13043 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
13044 S:      Maintained
13045 F:      drivers/devfreq/tegra30-devfreq.c
13046
13047 MEMORY MANAGEMENT
13048 M:      Andrew Morton <akpm@linux-foundation.org>
13049 L:      linux-mm@kvack.org
13050 S:      Maintained
13051 W:      http://www.linux-mm.org
13052 T:      git://git.kernel.org/pub/scm/linux/kernel/git/akpm/mm
13053 T:      quilt git://git.kernel.org/pub/scm/linux/kernel/git/akpm/25-new
13054 F:      include/linux/gfp.h
13055 F:      include/linux/memory_hotplug.h
13056 F:      include/linux/mm.h
13057 F:      include/linux/mmzone.h
13058 F:      include/linux/pagewalk.h
13059 F:      include/linux/vmalloc.h
13060 F:      mm/
13061 F:      tools/testing/selftests/vm/
13062
13063 MEMORY HOT(UN)PLUG
13064 M:      David Hildenbrand <david@redhat.com>
13065 M:      Oscar Salvador <osalvador@suse.de>
13066 L:      linux-mm@kvack.org
13067 S:      Maintained
13068 F:      Documentation/admin-guide/mm/memory-hotplug.rst
13069 F:      Documentation/core-api/memory-hotplug.rst
13070 F:      drivers/base/memory.c
13071 F:      include/linux/memory_hotplug.h
13072 F:      mm/memory_hotplug.c
13073 F:      tools/testing/selftests/memory-hotplug/
13074
13075 MEMORY TECHNOLOGY DEVICES (MTD)
13076 M:      Miquel Raynal <miquel.raynal@bootlin.com>
13077 M:      Richard Weinberger <richard@nod.at>
13078 M:      Vignesh Raghavendra <vigneshr@ti.com>
13079 L:      linux-mtd@lists.infradead.org
13080 S:      Maintained
13081 W:      http://www.linux-mtd.infradead.org/
13082 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
13083 C:      irc://irc.oftc.net/mtd
13084 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/fixes
13085 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/next
13086 F:      Documentation/devicetree/bindings/mtd/
13087 F:      drivers/mtd/
13088 F:      include/linux/mtd/
13089 F:      include/uapi/mtd/
13090
13091 MEN A21 WATCHDOG DRIVER
13092 M:      Johannes Thumshirn <morbidrsa@gmail.com>
13093 L:      linux-watchdog@vger.kernel.org
13094 S:      Maintained
13095 F:      drivers/watchdog/mena21_wdt.c
13096
13097 MEN CHAMELEON BUS (mcb)
13098 M:      Johannes Thumshirn <morbidrsa@gmail.com>
13099 S:      Maintained
13100 F:      Documentation/driver-api/men-chameleon-bus.rst
13101 F:      drivers/mcb/
13102 F:      include/linux/mcb.h
13103
13104 MEN F21BMC (Board Management Controller)
13105 M:      Andreas Werner <andreas.werner@men.de>
13106 S:      Supported
13107 F:      Documentation/hwmon/menf21bmc.rst
13108 F:      drivers/hwmon/menf21bmc_hwmon.c
13109 F:      drivers/leds/leds-menf21bmc.c
13110 F:      drivers/mfd/menf21bmc.c
13111 F:      drivers/watchdog/menf21bmc_wdt.c
13112
13113 MEN Z069 WATCHDOG DRIVER
13114 M:      Johannes Thumshirn <jth@kernel.org>
13115 L:      linux-watchdog@vger.kernel.org
13116 S:      Maintained
13117 F:      drivers/watchdog/menz69_wdt.c
13118
13119 MESON AO CEC DRIVER FOR AMLOGIC SOCS
13120 M:      Neil Armstrong <narmstrong@baylibre.com>
13121 L:      linux-media@vger.kernel.org
13122 L:      linux-amlogic@lists.infradead.org
13123 S:      Supported
13124 W:      http://linux-meson.com/
13125 T:      git git://linuxtv.org/media_tree.git
13126 F:      Documentation/devicetree/bindings/media/amlogic,meson-gx-ao-cec.yaml
13127 F:      drivers/media/cec/platform/meson/ao-cec-g12a.c
13128 F:      drivers/media/cec/platform/meson/ao-cec.c
13129
13130 MESON GE2D DRIVER FOR AMLOGIC SOCS
13131 M:      Neil Armstrong <narmstrong@baylibre.com>
13132 L:      linux-media@vger.kernel.org
13133 L:      linux-amlogic@lists.infradead.org
13134 S:      Supported
13135 T:      git git://linuxtv.org/media_tree.git
13136 F:      Documentation/devicetree/bindings/media/amlogic,axg-ge2d.yaml
13137 F:      drivers/media/platform/amlogic/meson-ge2d/
13138
13139 MESON NAND CONTROLLER DRIVER FOR AMLOGIC SOCS
13140 M:      Liang Yang <liang.yang@amlogic.com>
13141 L:      linux-mtd@lists.infradead.org
13142 S:      Maintained
13143 F:      Documentation/devicetree/bindings/mtd/amlogic,meson-nand.txt
13144 F:      drivers/mtd/nand/raw/meson_*
13145
13146 MESON VIDEO DECODER DRIVER FOR AMLOGIC SOCS
13147 M:      Neil Armstrong <narmstrong@baylibre.com>
13148 L:      linux-media@vger.kernel.org
13149 L:      linux-amlogic@lists.infradead.org
13150 S:      Supported
13151 T:      git git://linuxtv.org/media_tree.git
13152 F:      Documentation/devicetree/bindings/media/amlogic,gx-vdec.yaml
13153 F:      drivers/staging/media/meson/vdec/
13154
13155 METHODE UDPU SUPPORT
13156 M:      Vladimir Vid <vladimir.vid@sartura.hr>
13157 S:      Maintained
13158 F:      arch/arm64/boot/dts/marvell/armada-3720-uDPU.dts
13159
13160 MHI BUS
13161 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
13162 R:      Hemant Kumar <quic_hemantk@quicinc.com>
13163 L:      mhi@lists.linux.dev
13164 L:      linux-arm-msm@vger.kernel.org
13165 S:      Maintained
13166 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mani/mhi.git
13167 F:      Documentation/ABI/stable/sysfs-bus-mhi
13168 F:      Documentation/mhi/
13169 F:      drivers/bus/mhi/
13170 F:      include/linux/mhi.h
13171
13172 MICROBLAZE ARCHITECTURE
13173 M:      Michal Simek <monstr@monstr.eu>
13174 S:      Supported
13175 W:      http://www.monstr.eu/fdt/
13176 T:      git git://git.monstr.eu/linux-2.6-microblaze.git
13177 F:      arch/microblaze/
13178
13179 MICROCHIP AT91 DMA DRIVERS
13180 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
13181 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
13182 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13183 L:      dmaengine@vger.kernel.org
13184 S:      Supported
13185 F:      Documentation/devicetree/bindings/dma/atmel-dma.txt
13186 F:      drivers/dma/at_hdmac.c
13187 F:      drivers/dma/at_hdmac_regs.h
13188 F:      drivers/dma/at_xdmac.c
13189 F:      include/dt-bindings/dma/at91.h
13190
13191 MICROCHIP AT91 SERIAL DRIVER
13192 M:      Richard Genoud <richard.genoud@gmail.com>
13193 S:      Maintained
13194 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
13195 F:      drivers/tty/serial/atmel_serial.c
13196 F:      drivers/tty/serial/atmel_serial.h
13197
13198 MICROCHIP AT91 USART MFD DRIVER
13199 M:      Radu Pirea <radu_nicolae.pirea@upb.ro>
13200 L:      linux-kernel@vger.kernel.org
13201 S:      Supported
13202 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
13203 F:      drivers/mfd/at91-usart.c
13204 F:      include/dt-bindings/mfd/at91-usart.h
13205
13206 MICROCHIP AT91 USART SPI DRIVER
13207 M:      Radu Pirea <radu_nicolae.pirea@upb.ro>
13208 L:      linux-spi@vger.kernel.org
13209 S:      Supported
13210 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
13211 F:      drivers/spi/spi-at91-usart.c
13212
13213 MICROCHIP AUDIO ASOC DRIVERS
13214 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
13215 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
13216 S:      Supported
13217 F:      sound/soc/atmel
13218
13219 MICROCHIP CSI2DC DRIVER
13220 M:      Eugen Hristev <eugen.hristev@microchip.com>
13221 L:      linux-media@vger.kernel.org
13222 S:      Supported
13223 F:      Documentation/devicetree/bindings/media/microchip,csi2dc.yaml
13224 F:      drivers/media/platform/atmel/microchip-csi2dc.c
13225
13226 MICROCHIP ECC DRIVER
13227 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
13228 L:      linux-crypto@vger.kernel.org
13229 S:      Maintained
13230 F:      drivers/crypto/atmel-ecc.*
13231
13232 MICROCHIP EIC DRIVER
13233 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
13234 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13235 S:      Supported
13236 F:      drivers/irqchip/irq-mchp-eic.c
13237
13238 MICROCHIP I2C DRIVER
13239 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
13240 L:      linux-i2c@vger.kernel.org
13241 S:      Supported
13242 F:      drivers/i2c/busses/i2c-at91-*.c
13243 F:      drivers/i2c/busses/i2c-at91.h
13244
13245 MICROCHIP ISC DRIVER
13246 M:      Eugen Hristev <eugen.hristev@microchip.com>
13247 L:      linux-media@vger.kernel.org
13248 S:      Supported
13249 F:      Documentation/devicetree/bindings/media/atmel,isc.yaml
13250 F:      Documentation/devicetree/bindings/media/microchip,xisc.yaml
13251 F:      drivers/media/platform/atmel/atmel-isc*
13252 F:      drivers/media/platform/atmel/atmel-sama*-isc*
13253 F:      include/linux/atmel-isc-media.h
13254
13255 MICROCHIP ISI DRIVER
13256 M:      Eugen Hristev <eugen.hristev@microchip.com>
13257 L:      linux-media@vger.kernel.org
13258 S:      Supported
13259 F:      drivers/media/platform/atmel/atmel-isi.c
13260 F:      drivers/media/platform/atmel/atmel-isi.h
13261
13262 MICROCHIP KSZ SERIES ETHERNET SWITCH DRIVER
13263 M:      Woojung Huh <woojung.huh@microchip.com>
13264 M:      UNGLinuxDriver@microchip.com
13265 L:      netdev@vger.kernel.org
13266 S:      Maintained
13267 F:      Documentation/devicetree/bindings/net/dsa/microchip,ksz.yaml
13268 F:      Documentation/devicetree/bindings/net/dsa/microchip,lan937x.yaml
13269 F:      drivers/net/dsa/microchip/*
13270 F:      include/linux/platform_data/microchip-ksz.h
13271 F:      net/dsa/tag_ksz.c
13272
13273 MICROCHIP LAN87xx/LAN937x T1 PHY DRIVER
13274 M:      Arun Ramadoss <arun.ramadoss@microchip.com>
13275 R:      UNGLinuxDriver@microchip.com
13276 L:      netdev@vger.kernel.org
13277 S:      Maintained
13278 F:      drivers/net/phy/microchip_t1.c
13279
13280 MICROCHIP LAN743X ETHERNET DRIVER
13281 M:      Bryan Whitehead <bryan.whitehead@microchip.com>
13282 M:      UNGLinuxDriver@microchip.com
13283 L:      netdev@vger.kernel.org
13284 S:      Maintained
13285 F:      drivers/net/ethernet/microchip/lan743x_*
13286
13287 MICROCHIP LAN966X ETHERNET DRIVER
13288 M:      Horatiu Vultur <horatiu.vultur@microchip.com>
13289 M:      UNGLinuxDriver@microchip.com
13290 L:      netdev@vger.kernel.org
13291 S:      Maintained
13292 F:      drivers/net/ethernet/microchip/lan966x/*
13293
13294 MICROCHIP LCDFB DRIVER
13295 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
13296 L:      linux-fbdev@vger.kernel.org
13297 S:      Maintained
13298 F:      drivers/video/fbdev/atmel_lcdfb.c
13299 F:      include/video/atmel_lcdc.h
13300
13301 MICROCHIP MCP16502 PMIC DRIVER
13302 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
13303 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13304 S:      Supported
13305 F:      Documentation/devicetree/bindings/regulator/mcp16502-regulator.txt
13306 F:      drivers/regulator/mcp16502.c
13307
13308 MICROCHIP MCP3911 ADC DRIVER
13309 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
13310 M:      Kent Gustavsson <kent@minoris.se>
13311 L:      linux-iio@vger.kernel.org
13312 S:      Supported
13313 F:      Documentation/devicetree/bindings/iio/adc/microchip,mcp3911.yaml
13314 F:      drivers/iio/adc/mcp3911.c
13315
13316 MICROCHIP MMC/SD/SDIO MCI DRIVER
13317 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
13318 S:      Maintained
13319 F:      drivers/mmc/host/atmel-mci.c
13320
13321 MICROCHIP NAND DRIVER
13322 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
13323 L:      linux-mtd@lists.infradead.org
13324 S:      Supported
13325 F:      Documentation/devicetree/bindings/mtd/atmel-nand.txt
13326 F:      drivers/mtd/nand/raw/atmel/*
13327
13328 MICROCHIP PWM DRIVER
13329 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
13330 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13331 L:      linux-pwm@vger.kernel.org
13332 S:      Supported
13333 F:      Documentation/devicetree/bindings/pwm/atmel,at91sam-pwm.yaml
13334 F:      drivers/pwm/pwm-atmel.c
13335
13336 MICROCHIP SAMA5D2-COMPATIBLE ADC DRIVER
13337 M:      Eugen Hristev <eugen.hristev@microchip.com>
13338 L:      linux-iio@vger.kernel.org
13339 S:      Supported
13340 F:      Documentation/devicetree/bindings/iio/adc/atmel,sama5d2-adc.yaml
13341 F:      drivers/iio/adc/at91-sama5d2_adc.c
13342 F:      include/dt-bindings/iio/adc/at91-sama5d2_adc.h
13343
13344 MICROCHIP SAMA5D2-COMPATIBLE SHUTDOWN CONTROLLER
13345 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
13346 S:      Supported
13347 F:      drivers/power/reset/at91-sama5d2_shdwc.c
13348
13349 MICROCHIP SPI DRIVER
13350 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
13351 S:      Supported
13352 F:      drivers/spi/spi-atmel.*
13353
13354 MICROCHIP SSC DRIVER
13355 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
13356 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13357 S:      Supported
13358 F:      drivers/misc/atmel-ssc.c
13359 F:      include/linux/atmel-ssc.h
13360
13361 MICROCHIP USB251XB DRIVER
13362 M:      Richard Leitner <richard.leitner@skidata.com>
13363 L:      linux-usb@vger.kernel.org
13364 S:      Maintained
13365 F:      Documentation/devicetree/bindings/usb/usb251xb.txt
13366 F:      drivers/usb/misc/usb251xb.c
13367
13368 MICROCHIP USBA UDC DRIVER
13369 M:      Cristian Birsan <cristian.birsan@microchip.com>
13370 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13371 S:      Supported
13372 F:      drivers/usb/gadget/udc/atmel_usba_udc.*
13373
13374 MICROCHIP WILC1000 WIFI DRIVER
13375 M:      Ajay Singh <ajay.kathat@microchip.com>
13376 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
13377 L:      linux-wireless@vger.kernel.org
13378 S:      Supported
13379 F:      drivers/net/wireless/microchip/wilc1000/
13380
13381 MICROSEMI MIPS SOCS
13382 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
13383 M:      UNGLinuxDriver@microchip.com
13384 L:      linux-mips@vger.kernel.org
13385 S:      Supported
13386 F:      Documentation/devicetree/bindings/mips/mscc.txt
13387 F:      Documentation/devicetree/bindings/power/reset/ocelot-reset.txt
13388 F:      arch/mips/boot/dts/mscc/
13389 F:      arch/mips/configs/generic/board-ocelot.config
13390 F:      arch/mips/generic/board-ocelot.c
13391
13392 MICROSEMI SMART ARRAY SMARTPQI DRIVER (smartpqi)
13393 M:      Don Brace <don.brace@microchip.com>
13394 L:      storagedev@microchip.com
13395 L:      linux-scsi@vger.kernel.org
13396 S:      Supported
13397 F:      Documentation/scsi/smartpqi.rst
13398 F:      drivers/scsi/smartpqi/Kconfig
13399 F:      drivers/scsi/smartpqi/Makefile
13400 F:      drivers/scsi/smartpqi/smartpqi*.[ch]
13401 F:      include/linux/cciss*.h
13402 F:      include/uapi/linux/cciss*.h
13403
13404 MICROSOFT SURFACE BATTERY AND AC DRIVERS
13405 M:      Maximilian Luz <luzmaximilian@gmail.com>
13406 L:      linux-pm@vger.kernel.org
13407 L:      platform-driver-x86@vger.kernel.org
13408 S:      Maintained
13409 F:      drivers/power/supply/surface_battery.c
13410 F:      drivers/power/supply/surface_charger.c
13411
13412 MICROSOFT SURFACE DTX DRIVER
13413 M:      Maximilian Luz <luzmaximilian@gmail.com>
13414 L:      platform-driver-x86@vger.kernel.org
13415 S:      Maintained
13416 F:      Documentation/driver-api/surface_aggregator/clients/dtx.rst
13417 F:      drivers/platform/surface/surface_dtx.c
13418 F:      include/uapi/linux/surface_aggregator/dtx.h
13419
13420 MICROSOFT SURFACE GPE LID SUPPORT DRIVER
13421 M:      Maximilian Luz <luzmaximilian@gmail.com>
13422 L:      platform-driver-x86@vger.kernel.org
13423 S:      Maintained
13424 F:      drivers/platform/surface/surface_gpe.c
13425
13426 MICROSOFT SURFACE HARDWARE PLATFORM SUPPORT
13427 M:      Hans de Goede <hdegoede@redhat.com>
13428 M:      Mark Gross <markgross@kernel.org>
13429 M:      Maximilian Luz <luzmaximilian@gmail.com>
13430 L:      platform-driver-x86@vger.kernel.org
13431 S:      Maintained
13432 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
13433 F:      drivers/platform/surface/
13434
13435 MICROSOFT SURFACE HID TRANSPORT DRIVER
13436 M:      Maximilian Luz <luzmaximilian@gmail.com>
13437 L:      linux-input@vger.kernel.org
13438 L:      platform-driver-x86@vger.kernel.org
13439 S:      Maintained
13440 F:      drivers/hid/surface-hid/
13441
13442 MICROSOFT SURFACE HOT-PLUG DRIVER
13443 M:      Maximilian Luz <luzmaximilian@gmail.com>
13444 L:      platform-driver-x86@vger.kernel.org
13445 S:      Maintained
13446 F:      drivers/platform/surface/surface_hotplug.c
13447
13448 MICROSOFT SURFACE PLATFORM PROFILE DRIVER
13449 M:      Maximilian Luz <luzmaximilian@gmail.com>
13450 L:      platform-driver-x86@vger.kernel.org
13451 S:      Maintained
13452 F:      drivers/platform/surface/surface_platform_profile.c
13453
13454 MICROSOFT SURFACE PRO 3 BUTTON DRIVER
13455 M:      Chen Yu <yu.c.chen@intel.com>
13456 L:      platform-driver-x86@vger.kernel.org
13457 S:      Supported
13458 F:      drivers/platform/surface/surfacepro3_button.c
13459
13460 MICROSOFT SURFACE SYSTEM AGGREGATOR SUBSYSTEM
13461 M:      Maximilian Luz <luzmaximilian@gmail.com>
13462 L:      platform-driver-x86@vger.kernel.org
13463 S:      Maintained
13464 W:      https://github.com/linux-surface/surface-aggregator-module
13465 C:      irc://irc.libera.chat/linux-surface
13466 F:      Documentation/driver-api/surface_aggregator/
13467 F:      drivers/platform/surface/aggregator/
13468 F:      drivers/platform/surface/surface_acpi_notify.c
13469 F:      drivers/platform/surface/surface_aggregator_cdev.c
13470 F:      drivers/platform/surface/surface_aggregator_registry.c
13471 F:      include/linux/surface_acpi_notify.h
13472 F:      include/linux/surface_aggregator/
13473 F:      include/uapi/linux/surface_aggregator/
13474
13475 MICROTEK X6 SCANNER
13476 M:      Oliver Neukum <oliver@neukum.org>
13477 S:      Maintained
13478 F:      drivers/usb/image/microtek.*
13479
13480 MIKROTIK CRS3XX 98DX3236 BOARD SUPPORT
13481 M:      Luka Kovacic <luka.kovacic@sartura.hr>
13482 M:      Luka Perkov <luka.perkov@sartura.hr>
13483 S:      Maintained
13484 F:      arch/arm/boot/dts/armada-xp-crs305-1g-4s-bit.dts
13485 F:      arch/arm/boot/dts/armada-xp-crs305-1g-4s.dts
13486 F:      arch/arm/boot/dts/armada-xp-crs326-24g-2s-bit.dts
13487 F:      arch/arm/boot/dts/armada-xp-crs326-24g-2s.dts
13488 F:      arch/arm/boot/dts/armada-xp-crs328-4c-20s-4s-bit.dts
13489 F:      arch/arm/boot/dts/armada-xp-crs328-4c-20s-4s.dts
13490
13491 MIPI CCS, SMIA AND SMIA++ IMAGE SENSOR DRIVER
13492 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
13493 L:      linux-media@vger.kernel.org
13494 S:      Maintained
13495 F:      Documentation/devicetree/bindings/media/i2c/mipi-ccs.yaml
13496 F:      Documentation/driver-api/media/drivers/ccs/
13497 F:      Documentation/userspace-api/media/drivers/ccs.rst
13498 F:      drivers/media/i2c/ccs-pll.c
13499 F:      drivers/media/i2c/ccs-pll.h
13500 F:      drivers/media/i2c/ccs/
13501 F:      include/uapi/linux/ccs.h
13502 F:      include/uapi/linux/smiapp.h
13503
13504 MIPS
13505 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
13506 L:      linux-mips@vger.kernel.org
13507 S:      Maintained
13508 W:      http://www.linux-mips.org/
13509 Q:      https://patchwork.kernel.org/project/linux-mips/list/
13510 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mips/linux.git
13511 F:      Documentation/devicetree/bindings/mips/
13512 F:      Documentation/mips/
13513 F:      arch/mips/
13514 F:      drivers/platform/mips/
13515
13516 MIPS BOSTON DEVELOPMENT BOARD
13517 M:      Paul Burton <paulburton@kernel.org>
13518 L:      linux-mips@vger.kernel.org
13519 S:      Maintained
13520 F:      Documentation/devicetree/bindings/clock/img,boston-clock.txt
13521 F:      arch/mips/boot/dts/img/boston.dts
13522 F:      arch/mips/configs/generic/board-boston.config
13523 F:      drivers/clk/imgtec/clk-boston.c
13524 F:      include/dt-bindings/clock/boston-clock.h
13525
13526 MIPS CORE DRIVERS
13527 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
13528 M:      Serge Semin <fancer.lancer@gmail.com>
13529 L:      linux-mips@vger.kernel.org
13530 S:      Supported
13531 F:      drivers/bus/mips_cdmm.c
13532 F:      drivers/clocksource/mips-gic-timer.c
13533 F:      drivers/cpuidle/cpuidle-cps.c
13534 F:      drivers/irqchip/irq-mips-cpu.c
13535 F:      drivers/irqchip/irq-mips-gic.c
13536
13537 MIPS GENERIC PLATFORM
13538 M:      Paul Burton <paulburton@kernel.org>
13539 L:      linux-mips@vger.kernel.org
13540 S:      Supported
13541 F:      Documentation/devicetree/bindings/power/mti,mips-cpc.yaml
13542 F:      arch/mips/generic/
13543 F:      arch/mips/tools/generic-board-config.sh
13544
13545 MIPS RINT INSTRUCTION EMULATION
13546 M:      Aleksandar Markovic <aleksandar.markovic@mips.com>
13547 L:      linux-mips@vger.kernel.org
13548 S:      Supported
13549 F:      arch/mips/math-emu/dp_rint.c
13550 F:      arch/mips/math-emu/sp_rint.c
13551
13552 MIPS/LOONGSON1 ARCHITECTURE
13553 M:      Keguang Zhang <keguang.zhang@gmail.com>
13554 L:      linux-mips@vger.kernel.org
13555 S:      Maintained
13556 F:      arch/mips/include/asm/mach-loongson32/
13557 F:      arch/mips/loongson32/
13558 F:      drivers/*/*/*loongson1*
13559 F:      drivers/*/*loongson1*
13560
13561 MIPS/LOONGSON2EF ARCHITECTURE
13562 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
13563 L:      linux-mips@vger.kernel.org
13564 S:      Maintained
13565 F:      arch/mips/include/asm/mach-loongson2ef/
13566 F:      arch/mips/loongson2ef/
13567 F:      drivers/cpufreq/loongson2_cpufreq.c
13568
13569 MIPS/LOONGSON64 ARCHITECTURE
13570 M:      Huacai Chen <chenhuacai@kernel.org>
13571 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
13572 L:      linux-mips@vger.kernel.org
13573 S:      Maintained
13574 F:      arch/mips/include/asm/mach-loongson64/
13575 F:      arch/mips/loongson64/
13576 F:      drivers/irqchip/irq-loongson*
13577 F:      drivers/platform/mips/cpu_hwmon.c
13578
13579 MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
13580 M:      Hans Verkuil <hverkuil@xs4all.nl>
13581 L:      linux-media@vger.kernel.org
13582 S:      Odd Fixes
13583 W:      https://linuxtv.org
13584 T:      git git://linuxtv.org/media_tree.git
13585 F:      drivers/media/radio/radio-miropcm20*
13586
13587 MMP SUPPORT
13588 R:      Lubomir Rintel <lkundrak@v3.sk>
13589 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13590 S:      Odd Fixes
13591 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lkundrak/linux-mmp.git
13592 F:      arch/arm/boot/dts/mmp*
13593 F:      arch/arm/mach-mmp/
13594 F:      include/linux/soc/mmp/
13595
13596 MMP USB PHY DRIVERS
13597 R:      Lubomir Rintel <lkundrak@v3.sk>
13598 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13599 S:      Maintained
13600 F:      drivers/phy/marvell/phy-mmp3-usb.c
13601 F:      drivers/phy/marvell/phy-pxa-usb.c
13602
13603 MMU GATHER AND TLB INVALIDATION
13604 M:      Will Deacon <will@kernel.org>
13605 M:      "Aneesh Kumar K.V" <aneesh.kumar@linux.ibm.com>
13606 M:      Andrew Morton <akpm@linux-foundation.org>
13607 M:      Nick Piggin <npiggin@gmail.com>
13608 M:      Peter Zijlstra <peterz@infradead.org>
13609 L:      linux-arch@vger.kernel.org
13610 L:      linux-mm@kvack.org
13611 S:      Maintained
13612 F:      arch/*/include/asm/tlb.h
13613 F:      include/asm-generic/tlb.h
13614 F:      mm/mmu_gather.c
13615
13616 MN88472 MEDIA DRIVER
13617 M:      Antti Palosaari <crope@iki.fi>
13618 L:      linux-media@vger.kernel.org
13619 S:      Maintained
13620 W:      https://linuxtv.org
13621 W:      http://palosaari.fi/linux/
13622 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13623 F:      drivers/media/dvb-frontends/mn88472*
13624
13625 MN88473 MEDIA DRIVER
13626 M:      Antti Palosaari <crope@iki.fi>
13627 L:      linux-media@vger.kernel.org
13628 S:      Maintained
13629 W:      https://linuxtv.org
13630 W:      http://palosaari.fi/linux/
13631 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13632 F:      drivers/media/dvb-frontends/mn88473*
13633
13634 MODULE SUPPORT
13635 M:      Luis Chamberlain <mcgrof@kernel.org>
13636 L:      linux-modules@vger.kernel.org
13637 L:      linux-kernel@vger.kernel.org
13638 S:      Maintained
13639 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mcgrof/linux.git modules-next
13640 F:      include/linux/module.h
13641 F:      kernel/module/
13642
13643 MONOLITHIC POWER SYSTEM PMIC DRIVER
13644 M:      Saravanan Sekar <sravanhome@gmail.com>
13645 S:      Maintained
13646 F:      Documentation/devicetree/bindings/mfd/mps,mp2629.yaml
13647 F:      Documentation/devicetree/bindings/regulator/mps,mp*.yaml
13648 F:      drivers/iio/adc/mp2629_adc.c
13649 F:      drivers/mfd/mp2629.c
13650 F:      drivers/power/supply/mp2629_charger.c
13651 F:      drivers/regulator/mp5416.c
13652 F:      drivers/regulator/mpq7920.c
13653 F:      drivers/regulator/mpq7920.h
13654 F:      include/linux/mfd/mp2629.h
13655
13656 MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
13657 S:      Orphan
13658 W:      http://popies.net/meye/
13659 F:      Documentation/userspace-api/media/drivers/meye*
13660 F:      drivers/media/pci/meye/
13661 F:      include/uapi/linux/meye.h
13662
13663 MOTORCOMM PHY DRIVER
13664 M:      Peter Geis <pgwipeout@gmail.com>
13665 L:      netdev@vger.kernel.org
13666 S:      Maintained
13667 F:      drivers/net/phy/motorcomm.c
13668
13669 MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
13670 M:      Jiri Slaby <jirislaby@kernel.org>
13671 S:      Maintained
13672 F:      Documentation/driver-api/tty/moxa-smartio.rst
13673 F:      drivers/tty/mxser.*
13674
13675 MR800 AVERMEDIA USB FM RADIO DRIVER
13676 M:      Alexey Klimov <klimov.linux@gmail.com>
13677 L:      linux-media@vger.kernel.org
13678 S:      Maintained
13679 T:      git git://linuxtv.org/media_tree.git
13680 F:      drivers/media/radio/radio-mr800.c
13681
13682 MRF24J40 IEEE 802.15.4 RADIO DRIVER
13683 M:      Alan Ott <alan@signal11.us>
13684 L:      linux-wpan@vger.kernel.org
13685 S:      Maintained
13686 F:      Documentation/devicetree/bindings/net/ieee802154/mrf24j40.txt
13687 F:      drivers/net/ieee802154/mrf24j40.c
13688
13689 MSI LAPTOP SUPPORT
13690 M:      "Lee, Chun-Yi" <jlee@suse.com>
13691 L:      platform-driver-x86@vger.kernel.org
13692 S:      Maintained
13693 F:      drivers/platform/x86/msi-laptop.c
13694
13695 MSI WMI SUPPORT
13696 L:      platform-driver-x86@vger.kernel.org
13697 S:      Orphan
13698 F:      drivers/platform/x86/msi-wmi.c
13699
13700 MSI001 MEDIA DRIVER
13701 M:      Antti Palosaari <crope@iki.fi>
13702 L:      linux-media@vger.kernel.org
13703 S:      Maintained
13704 W:      https://linuxtv.org
13705 W:      http://palosaari.fi/linux/
13706 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13707 T:      git git://linuxtv.org/anttip/media_tree.git
13708 F:      drivers/media/tuners/msi001*
13709
13710 MSI2500 MEDIA DRIVER
13711 M:      Antti Palosaari <crope@iki.fi>
13712 L:      linux-media@vger.kernel.org
13713 S:      Maintained
13714 W:      https://linuxtv.org
13715 W:      http://palosaari.fi/linux/
13716 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13717 T:      git git://linuxtv.org/anttip/media_tree.git
13718 F:      drivers/media/usb/msi2500/
13719
13720 MSTAR INTERRUPT CONTROLLER DRIVER
13721 M:      Mark-PK Tsai <mark-pk.tsai@mediatek.com>
13722 M:      Daniel Palmer <daniel@thingy.jp>
13723 S:      Maintained
13724 F:      Documentation/devicetree/bindings/interrupt-controller/mstar,mst-intc.yaml
13725 F:      drivers/irqchip/irq-mst-intc.c
13726
13727 MSYSTEMS DISKONCHIP G3 MTD DRIVER
13728 M:      Robert Jarzmik <robert.jarzmik@free.fr>
13729 L:      linux-mtd@lists.infradead.org
13730 S:      Maintained
13731 F:      drivers/mtd/devices/docg3*
13732
13733 MT9M032 APTINA SENSOR DRIVER
13734 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
13735 L:      linux-media@vger.kernel.org
13736 S:      Maintained
13737 T:      git git://linuxtv.org/media_tree.git
13738 F:      drivers/media/i2c/mt9m032.c
13739 F:      include/media/i2c/mt9m032.h
13740
13741 MT9P031 APTINA CAMERA SENSOR
13742 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
13743 L:      linux-media@vger.kernel.org
13744 S:      Maintained
13745 T:      git git://linuxtv.org/media_tree.git
13746 F:      Documentation/devicetree/bindings/media/i2c/aptina,mt9p031.yaml
13747 F:      drivers/media/i2c/mt9p031.c
13748 F:      include/media/i2c/mt9p031.h
13749
13750 MT9T001 APTINA CAMERA SENSOR
13751 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
13752 L:      linux-media@vger.kernel.org
13753 S:      Maintained
13754 T:      git git://linuxtv.org/media_tree.git
13755 F:      drivers/media/i2c/mt9t001.c
13756 F:      include/media/i2c/mt9t001.h
13757
13758 MT9T112 APTINA CAMERA SENSOR
13759 M:      Jacopo Mondi <jacopo@jmondi.org>
13760 L:      linux-media@vger.kernel.org
13761 S:      Odd Fixes
13762 T:      git git://linuxtv.org/media_tree.git
13763 F:      drivers/media/i2c/mt9t112.c
13764 F:      include/media/i2c/mt9t112.h
13765
13766 MT9V032 APTINA CAMERA SENSOR
13767 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
13768 L:      linux-media@vger.kernel.org
13769 S:      Maintained
13770 T:      git git://linuxtv.org/media_tree.git
13771 F:      Documentation/devicetree/bindings/media/i2c/mt9v032.txt
13772 F:      drivers/media/i2c/mt9v032.c
13773 F:      include/media/i2c/mt9v032.h
13774
13775 MT9V111 APTINA CAMERA SENSOR
13776 M:      Jacopo Mondi <jacopo@jmondi.org>
13777 L:      linux-media@vger.kernel.org
13778 S:      Maintained
13779 T:      git git://linuxtv.org/media_tree.git
13780 F:      Documentation/devicetree/bindings/media/i2c/aptina,mt9v111.yaml
13781 F:      drivers/media/i2c/mt9v111.c
13782
13783 MULTIFUNCTION DEVICES (MFD)
13784 M:      Lee Jones <lee.jones@linaro.org>
13785 S:      Supported
13786 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
13787 F:      Documentation/devicetree/bindings/mfd/
13788 F:      drivers/mfd/
13789 F:      include/dt-bindings/mfd/
13790 F:      include/linux/mfd/
13791
13792 MULTIMEDIA CARD (MMC) ETC. OVER SPI
13793 S:      Orphan
13794 F:      drivers/mmc/host/mmc_spi.c
13795 F:      include/linux/spi/mmc_spi.h
13796
13797 MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
13798 M:      Ulf Hansson <ulf.hansson@linaro.org>
13799 L:      linux-mmc@vger.kernel.org
13800 S:      Maintained
13801 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
13802 F:      Documentation/devicetree/bindings/mmc/
13803 F:      drivers/mmc/
13804 F:      include/linux/mmc/
13805 F:      include/uapi/linux/mmc/
13806
13807 MULTIPLEXER SUBSYSTEM
13808 M:      Peter Rosin <peda@axentia.se>
13809 S:      Maintained
13810 F:      Documentation/ABI/testing/sysfs-class-mux*
13811 F:      Documentation/devicetree/bindings/mux/
13812 F:      drivers/mux/
13813 F:      include/dt-bindings/mux/
13814 F:      include/linux/mux/
13815
13816 MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
13817 M:      Bin Liu <b-liu@ti.com>
13818 L:      linux-usb@vger.kernel.org
13819 S:      Maintained
13820 F:      drivers/usb/musb/
13821
13822 MXL301RF MEDIA DRIVER
13823 M:      Akihiro Tsukada <tskd08@gmail.com>
13824 L:      linux-media@vger.kernel.org
13825 S:      Odd Fixes
13826 F:      drivers/media/tuners/mxl301rf*
13827
13828 MXL5007T MEDIA DRIVER
13829 M:      Michael Krufky <mkrufky@linuxtv.org>
13830 L:      linux-media@vger.kernel.org
13831 S:      Maintained
13832 W:      https://linuxtv.org
13833 W:      http://github.com/mkrufky
13834 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13835 T:      git git://linuxtv.org/mkrufky/tuners.git
13836 F:      drivers/media/tuners/mxl5007t.*
13837
13838 MXSFB DRM DRIVER
13839 M:      Marek Vasut <marex@denx.de>
13840 M:      Stefan Agner <stefan@agner.ch>
13841 L:      dri-devel@lists.freedesktop.org
13842 S:      Supported
13843 T:      git git://anongit.freedesktop.org/drm/drm-misc
13844 F:      Documentation/devicetree/bindings/display/fsl,lcdif.yaml
13845 F:      drivers/gpu/drm/mxsfb/
13846
13847 MYLEX DAC960 PCI RAID Controller
13848 M:      Hannes Reinecke <hare@kernel.org>
13849 L:      linux-scsi@vger.kernel.org
13850 S:      Supported
13851 F:      drivers/scsi/myrb.*
13852 F:      drivers/scsi/myrs.*
13853
13854 MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
13855 M:      Chris Lee <christopher.lee@cspi.com>
13856 L:      netdev@vger.kernel.org
13857 S:      Supported
13858 W:      https://www.cspi.com/ethernet-products/support/downloads/
13859 F:      drivers/net/ethernet/myricom/myri10ge/
13860
13861 NAND FLASH SUBSYSTEM
13862 M:      Miquel Raynal <miquel.raynal@bootlin.com>
13863 R:      Richard Weinberger <richard@nod.at>
13864 L:      linux-mtd@lists.infradead.org
13865 S:      Maintained
13866 W:      http://www.linux-mtd.infradead.org/
13867 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
13868 C:      irc://irc.oftc.net/mtd
13869 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git nand/next
13870 F:      drivers/mtd/nand/
13871 F:      include/linux/mtd/*nand*.h
13872
13873 NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
13874 M:      Daniel Mack <zonque@gmail.com>
13875 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
13876 S:      Maintained
13877 W:      http://www.native-instruments.com
13878 F:      sound/usb/caiaq/
13879
13880 NATSEMI ETHERNET DRIVER (DP8381x)
13881 S:      Orphan
13882 F:      drivers/net/ethernet/natsemi/natsemi.c
13883
13884 NCR 5380 SCSI DRIVERS
13885 M:      Finn Thain <fthain@linux-m68k.org>
13886 M:      Michael Schmitz <schmitzmic@gmail.com>
13887 L:      linux-scsi@vger.kernel.org
13888 S:      Maintained
13889 F:      Documentation/scsi/g_NCR5380.rst
13890 F:      drivers/scsi/NCR5380.*
13891 F:      drivers/scsi/arm/cumana_1.c
13892 F:      drivers/scsi/arm/oak.c
13893 F:      drivers/scsi/atari_scsi.*
13894 F:      drivers/scsi/dmx3191d.c
13895 F:      drivers/scsi/g_NCR5380.*
13896 F:      drivers/scsi/mac_scsi.*
13897 F:      drivers/scsi/sun3_scsi.*
13898 F:      drivers/scsi/sun3_scsi_vme.c
13899
13900 NCSI LIBRARY
13901 M:      Samuel Mendoza-Jonas <sam@mendozajonas.com>
13902 S:      Maintained
13903 F:      net/ncsi/
13904
13905 NCT6775 HARDWARE MONITOR DRIVER - CORE & PLATFORM DRIVER
13906 M:      Guenter Roeck <linux@roeck-us.net>
13907 L:      linux-hwmon@vger.kernel.org
13908 S:      Maintained
13909 F:      Documentation/hwmon/nct6775.rst
13910 F:      drivers/hwmon/nct6775-core.c
13911 F:      drivers/hwmon/nct6775-platform.c
13912 F:      drivers/hwmon/nct6775.h
13913
13914 NCT6775 HARDWARE MONITOR DRIVER - I2C DRIVER
13915 M:      Zev Weiss <zev@bewilderbeest.net>
13916 L:      linux-hwmon@vger.kernel.org
13917 S:      Maintained
13918 F:      Documentation/devicetree/bindings/hwmon/nuvoton,nct6775.yaml
13919 F:      drivers/hwmon/nct6775-i2c.c
13920
13921 NETDEVSIM
13922 M:      Jakub Kicinski <kuba@kernel.org>
13923 S:      Maintained
13924 F:      drivers/net/netdevsim/*
13925
13926 NETEM NETWORK EMULATOR
13927 M:      Stephen Hemminger <stephen@networkplumber.org>
13928 L:      netdev@vger.kernel.org
13929 S:      Maintained
13930 F:      net/sched/sch_netem.c
13931
13932 NETERION 10GbE DRIVERS (s2io)
13933 M:      Jon Mason <jdmason@kudzu.us>
13934 L:      netdev@vger.kernel.org
13935 S:      Supported
13936 F:      Documentation/networking/device_drivers/ethernet/neterion/s2io.rst
13937 F:      drivers/net/ethernet/neterion/
13938
13939 NETFILTER
13940 M:      Pablo Neira Ayuso <pablo@netfilter.org>
13941 M:      Jozsef Kadlecsik <kadlec@netfilter.org>
13942 M:      Florian Westphal <fw@strlen.de>
13943 L:      netfilter-devel@vger.kernel.org
13944 L:      coreteam@netfilter.org
13945 S:      Maintained
13946 W:      http://www.netfilter.org/
13947 W:      http://www.iptables.org/
13948 W:      http://www.nftables.org/
13949 Q:      http://patchwork.ozlabs.org/project/netfilter-devel/list/
13950 C:      irc://irc.libera.chat/netfilter
13951 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netfilter/nf.git
13952 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netfilter/nf-next.git
13953 F:      include/linux/netfilter*
13954 F:      include/linux/netfilter/
13955 F:      include/net/netfilter/
13956 F:      include/uapi/linux/netfilter*
13957 F:      include/uapi/linux/netfilter/
13958 F:      net/*/netfilter.c
13959 F:      net/*/netfilter/
13960 F:      net/bridge/br_netfilter*.c
13961 F:      net/netfilter/
13962
13963 NETROM NETWORK LAYER
13964 M:      Ralf Baechle <ralf@linux-mips.org>
13965 L:      linux-hams@vger.kernel.org
13966 S:      Maintained
13967 W:      http://www.linux-ax25.org/
13968 F:      include/net/netrom.h
13969 F:      include/uapi/linux/netrom.h
13970 F:      net/netrom/
13971
13972 NETRONIX EMBEDDED CONTROLLER
13973 M:      Jonathan Neuschäfer <j.neuschaefer@gmx.net>
13974 S:      Maintained
13975 F:      Documentation/devicetree/bindings/mfd/netronix,ntxec.yaml
13976 F:      drivers/mfd/ntxec.c
13977 F:      drivers/pwm/pwm-ntxec.c
13978 F:      drivers/rtc/rtc-ntxec.c
13979 F:      include/linux/mfd/ntxec.h
13980
13981 NETRONOME ETHERNET DRIVERS
13982 M:      Simon Horman <simon.horman@corigine.com>
13983 R:      Jakub Kicinski <kuba@kernel.org>
13984 L:      oss-drivers@corigine.com
13985 S:      Maintained
13986 F:      drivers/net/ethernet/netronome/
13987
13988 NETWORK BLOCK DEVICE (NBD)
13989 M:      Josef Bacik <josef@toxicpanda.com>
13990 L:      linux-block@vger.kernel.org
13991 L:      nbd@other.debian.org
13992 S:      Maintained
13993 F:      Documentation/admin-guide/blockdev/nbd.rst
13994 F:      drivers/block/nbd.c
13995 F:      include/trace/events/nbd.h
13996 F:      include/uapi/linux/nbd.h
13997
13998 NETWORK DROP MONITOR
13999 M:      Neil Horman <nhorman@tuxdriver.com>
14000 L:      netdev@vger.kernel.org
14001 S:      Maintained
14002 W:      https://fedorahosted.org/dropwatch/
14003 F:      include/uapi/linux/net_dropmon.h
14004 F:      net/core/drop_monitor.c
14005
14006 NETWORKING DRIVERS
14007 M:      "David S. Miller" <davem@davemloft.net>
14008 M:      Eric Dumazet <edumazet@google.com>
14009 M:      Jakub Kicinski <kuba@kernel.org>
14010 M:      Paolo Abeni <pabeni@redhat.com>
14011 L:      netdev@vger.kernel.org
14012 S:      Maintained
14013 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
14014 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
14015 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
14016 F:      Documentation/devicetree/bindings/net/
14017 F:      drivers/connector/
14018 F:      drivers/net/
14019 F:      include/dt-bindings/net/
14020 F:      include/linux/etherdevice.h
14021 F:      include/linux/fcdevice.h
14022 F:      include/linux/fddidevice.h
14023 F:      include/linux/hippidevice.h
14024 F:      include/linux/if_*
14025 F:      include/linux/inetdevice.h
14026 F:      include/linux/netdevice.h
14027 F:      include/uapi/linux/if_*
14028 F:      include/uapi/linux/netdevice.h
14029
14030 NETWORKING DRIVERS (WIRELESS)
14031 M:      Kalle Valo <kvalo@kernel.org>
14032 L:      linux-wireless@vger.kernel.org
14033 S:      Maintained
14034 W:      https://wireless.wiki.kernel.org/
14035 Q:      https://patchwork.kernel.org/project/linux-wireless/list/
14036 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless.git
14037 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless-next.git
14038 F:      Documentation/devicetree/bindings/net/wireless/
14039 F:      drivers/net/wireless/
14040
14041 NETWORKING [DSA]
14042 M:      Andrew Lunn <andrew@lunn.ch>
14043 M:      Vivien Didelot <vivien.didelot@gmail.com>
14044 M:      Florian Fainelli <f.fainelli@gmail.com>
14045 M:      Vladimir Oltean <olteanv@gmail.com>
14046 S:      Maintained
14047 F:      Documentation/devicetree/bindings/net/dsa/
14048 F:      drivers/net/dsa/
14049 F:      include/linux/dsa/
14050 F:      include/linux/platform_data/dsa.h
14051 F:      include/net/dsa.h
14052 F:      net/dsa/
14053 F:      tools/testing/selftests/drivers/net/dsa/
14054
14055 NETWORKING [GENERAL]
14056 M:      "David S. Miller" <davem@davemloft.net>
14057 M:      Eric Dumazet <edumazet@google.com>
14058 M:      Jakub Kicinski <kuba@kernel.org>
14059 M:      Paolo Abeni <pabeni@redhat.com>
14060 L:      netdev@vger.kernel.org
14061 S:      Maintained
14062 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
14063 B:      mailto:netdev@vger.kernel.org
14064 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
14065 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
14066 F:      Documentation/networking/
14067 F:      Documentation/process/maintainer-netdev.rst
14068 F:      include/linux/in.h
14069 F:      include/linux/net.h
14070 F:      include/linux/netdevice.h
14071 F:      include/net/
14072 F:      include/uapi/linux/in.h
14073 F:      include/uapi/linux/net.h
14074 F:      include/uapi/linux/net_namespace.h
14075 F:      include/uapi/linux/netdevice.h
14076 F:      lib/net_utils.c
14077 F:      lib/random32.c
14078 F:      net/
14079 F:      tools/testing/selftests/net/
14080
14081 NETWORKING [IPSEC]
14082 M:      Steffen Klassert <steffen.klassert@secunet.com>
14083 M:      Herbert Xu <herbert@gondor.apana.org.au>
14084 M:      "David S. Miller" <davem@davemloft.net>
14085 L:      netdev@vger.kernel.org
14086 S:      Maintained
14087 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git
14088 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git
14089 F:      include/net/xfrm.h
14090 F:      include/uapi/linux/xfrm.h
14091 F:      net/ipv4/ah4.c
14092 F:      net/ipv4/esp4*
14093 F:      net/ipv4/ip_vti.c
14094 F:      net/ipv4/ipcomp.c
14095 F:      net/ipv4/xfrm*
14096 F:      net/ipv6/ah6.c
14097 F:      net/ipv6/esp6*
14098 F:      net/ipv6/ip6_vti.c
14099 F:      net/ipv6/ipcomp6.c
14100 F:      net/ipv6/xfrm*
14101 F:      net/key/
14102 F:      net/xfrm/
14103 F:      tools/testing/selftests/net/ipsec.c
14104
14105 NETWORKING [IPv4/IPv6]
14106 M:      "David S. Miller" <davem@davemloft.net>
14107 M:      Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
14108 M:      David Ahern <dsahern@kernel.org>
14109 L:      netdev@vger.kernel.org
14110 S:      Maintained
14111 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
14112 F:      arch/x86/net/*
14113 F:      include/linux/ip.h
14114 F:      include/linux/ipv6*
14115 F:      include/net/fib*
14116 F:      include/net/ip*
14117 F:      include/net/route.h
14118 F:      net/ipv4/
14119 F:      net/ipv6/
14120
14121 NETWORKING [LABELED] (NetLabel, Labeled IPsec, SECMARK)
14122 M:      Paul Moore <paul@paul-moore.com>
14123 L:      netdev@vger.kernel.org
14124 L:      linux-security-module@vger.kernel.org
14125 S:      Maintained
14126 W:      https://github.com/netlabel
14127 F:      Documentation/netlabel/
14128 F:      include/net/calipso.h
14129 F:      include/net/cipso_ipv4.h
14130 F:      include/net/netlabel.h
14131 F:      include/uapi/linux/netfilter/xt_CONNSECMARK.h
14132 F:      include/uapi/linux/netfilter/xt_SECMARK.h
14133 F:      net/ipv4/cipso_ipv4.c
14134 F:      net/ipv6/calipso.c
14135 F:      net/netfilter/xt_CONNSECMARK.c
14136 F:      net/netfilter/xt_SECMARK.c
14137 F:      net/netlabel/
14138
14139 NETWORKING [MPTCP]
14140 M:      Mat Martineau <mathew.j.martineau@linux.intel.com>
14141 M:      Matthieu Baerts <matthieu.baerts@tessares.net>
14142 L:      netdev@vger.kernel.org
14143 L:      mptcp@lists.linux.dev
14144 S:      Maintained
14145 W:      https://github.com/multipath-tcp/mptcp_net-next/wiki
14146 B:      https://github.com/multipath-tcp/mptcp_net-next/issues
14147 F:      Documentation/networking/mptcp-sysctl.rst
14148 F:      include/net/mptcp.h
14149 F:      include/trace/events/mptcp.h
14150 F:      include/uapi/linux/mptcp.h
14151 F:      net/mptcp/
14152 F:      tools/testing/selftests/bpf/*/*mptcp*.c
14153 F:      tools/testing/selftests/net/mptcp/
14154
14155 NETWORKING [TCP]
14156 M:      Eric Dumazet <edumazet@google.com>
14157 L:      netdev@vger.kernel.org
14158 S:      Maintained
14159 F:      include/linux/tcp.h
14160 F:      include/net/tcp.h
14161 F:      include/trace/events/tcp.h
14162 F:      include/uapi/linux/tcp.h
14163 F:      net/ipv4/syncookies.c
14164 F:      net/ipv4/tcp*.c
14165 F:      net/ipv6/syncookies.c
14166 F:      net/ipv6/tcp*.c
14167
14168 NETWORKING [TLS]
14169 M:      Boris Pismenny <borisp@nvidia.com>
14170 M:      John Fastabend <john.fastabend@gmail.com>
14171 M:      Jakub Kicinski <kuba@kernel.org>
14172 L:      netdev@vger.kernel.org
14173 S:      Maintained
14174 F:      include/net/tls.h
14175 F:      include/uapi/linux/tls.h
14176 F:      net/tls/*
14177
14178 NETXEN (1/10) GbE SUPPORT
14179 M:      Manish Chopra <manishc@marvell.com>
14180 M:      Rahul Verma <rahulv@marvell.com>
14181 M:      GR-Linux-NIC-Dev@marvell.com
14182 L:      netdev@vger.kernel.org
14183 S:      Supported
14184 F:      drivers/net/ethernet/qlogic/netxen/
14185
14186 NET_FAILOVER MODULE
14187 M:      Sridhar Samudrala <sridhar.samudrala@intel.com>
14188 L:      netdev@vger.kernel.org
14189 S:      Supported
14190 F:      Documentation/networking/net_failover.rst
14191 F:      drivers/net/net_failover.c
14192 F:      include/net/net_failover.h
14193
14194 NEXTHOP
14195 M:      David Ahern <dsahern@kernel.org>
14196 L:      netdev@vger.kernel.org
14197 S:      Maintained
14198 F:      include/net/netns/nexthop.h
14199 F:      include/net/nexthop.h
14200 F:      include/uapi/linux/nexthop.h
14201 F:      net/ipv4/nexthop.c
14202
14203 NFC SUBSYSTEM
14204 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
14205 L:      linux-nfc@lists.01.org (subscribers-only)
14206 L:      netdev@vger.kernel.org
14207 S:      Maintained
14208 B:      mailto:linux-nfc@lists.01.org
14209 F:      Documentation/devicetree/bindings/net/nfc/
14210 F:      drivers/nfc/
14211 F:      include/linux/platform_data/nfcmrvl.h
14212 F:      include/net/nfc/
14213 F:      include/uapi/linux/nfc.h
14214 F:      net/nfc/
14215
14216 NFC VIRTUAL NCI DEVICE DRIVER
14217 M:      Bongsu Jeon <bongsu.jeon@samsung.com>
14218 L:      netdev@vger.kernel.org
14219 L:      linux-nfc@lists.01.org (subscribers-only)
14220 S:      Supported
14221 F:      drivers/nfc/virtual_ncidev.c
14222 F:      tools/testing/selftests/nci/
14223
14224 NFS, SUNRPC, AND LOCKD CLIENTS
14225 M:      Trond Myklebust <trond.myklebust@hammerspace.com>
14226 M:      Anna Schumaker <anna@kernel.org>
14227 L:      linux-nfs@vger.kernel.org
14228 S:      Maintained
14229 W:      http://client.linux-nfs.org
14230 T:      git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git
14231 F:      fs/lockd/
14232 F:      fs/nfs/
14233 F:      fs/nfs_common/
14234 F:      include/linux/lockd/
14235 F:      include/linux/nfs*
14236 F:      include/linux/sunrpc/
14237 F:      include/uapi/linux/nfs*
14238 F:      include/uapi/linux/sunrpc/
14239 F:      net/sunrpc/
14240 F:      Documentation/filesystems/nfs/
14241
14242 NILFS2 FILESYSTEM
14243 M:      Ryusuke Konishi <konishi.ryusuke@gmail.com>
14244 L:      linux-nilfs@vger.kernel.org
14245 S:      Supported
14246 W:      https://nilfs.sourceforge.io/
14247 W:      https://nilfs.osdn.jp/
14248 T:      git git://github.com/konis/nilfs2.git
14249 F:      Documentation/filesystems/nilfs2.rst
14250 F:      fs/nilfs2/
14251 F:      include/trace/events/nilfs2.h
14252 F:      include/uapi/linux/nilfs2_api.h
14253 F:      include/uapi/linux/nilfs2_ondisk.h
14254
14255 NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
14256 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
14257 S:      Maintained
14258 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
14259 F:      Documentation/scsi/NinjaSCSI.rst
14260 F:      drivers/scsi/pcmcia/nsp_*
14261
14262 NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
14263 M:      GOTO Masanori <gotom@debian.or.jp>
14264 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
14265 S:      Maintained
14266 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
14267 F:      Documentation/scsi/NinjaSCSI.rst
14268 F:      drivers/scsi/nsp32*
14269
14270 NINTENDO HID DRIVER
14271 M:      Daniel J. Ogorchock <djogorchock@gmail.com>
14272 L:      linux-input@vger.kernel.org
14273 S:      Maintained
14274 F:      drivers/hid/hid-nintendo*
14275
14276 NIOS2 ARCHITECTURE
14277 M:      Dinh Nguyen <dinguyen@kernel.org>
14278 S:      Maintained
14279 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
14280 F:      arch/nios2/
14281
14282 NITRO ENCLAVES (NE)
14283 M:      Andra Paraschiv <andraprs@amazon.com>
14284 M:      Alexandru Vasile <lexnv@amazon.com>
14285 M:      Alexandru Ciobotaru <alcioa@amazon.com>
14286 L:      linux-kernel@vger.kernel.org
14287 S:      Supported
14288 W:      https://aws.amazon.com/ec2/nitro/nitro-enclaves/
14289 F:      Documentation/virt/ne_overview.rst
14290 F:      drivers/virt/nitro_enclaves/
14291 F:      include/linux/nitro_enclaves.h
14292 F:      include/uapi/linux/nitro_enclaves.h
14293 F:      samples/nitro_enclaves/
14294
14295 NOHZ, DYNTICKS SUPPORT
14296 M:      Frederic Weisbecker <fweisbec@gmail.com>
14297 M:      Thomas Gleixner <tglx@linutronix.de>
14298 M:      Ingo Molnar <mingo@kernel.org>
14299 L:      linux-kernel@vger.kernel.org
14300 S:      Maintained
14301 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/nohz
14302 F:      include/linux/sched/nohz.h
14303 F:      include/linux/tick.h
14304 F:      kernel/time/tick*.*
14305
14306 NOKIA N900 CAMERA SUPPORT (ET8EK8 SENSOR, AD5820 FOCUS)
14307 M:      Pavel Machek <pavel@ucw.cz>
14308 M:      Sakari Ailus <sakari.ailus@iki.fi>
14309 L:      linux-media@vger.kernel.org
14310 S:      Maintained
14311 F:      drivers/media/i2c/ad5820.c
14312 F:      drivers/media/i2c/et8ek8
14313
14314 NOKIA N900 POWER SUPPLY DRIVERS
14315 R:      Pali Rohár <pali@kernel.org>
14316 F:      drivers/power/supply/bq2415x_charger.c
14317 F:      drivers/power/supply/bq27xxx_battery.c
14318 F:      drivers/power/supply/bq27xxx_battery_i2c.c
14319 F:      drivers/power/supply/isp1704_charger.c
14320 F:      drivers/power/supply/rx51_battery.c
14321 F:      include/linux/power/bq2415x_charger.h
14322 F:      include/linux/power/bq27xxx_battery.h
14323
14324 NOLIBC HEADER FILE
14325 M:      Willy Tarreau <w@1wt.eu>
14326 S:      Maintained
14327 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wtarreau/nolibc.git
14328 F:      tools/include/nolibc/
14329
14330 NSDEPS
14331 M:      Matthias Maennich <maennich@google.com>
14332 S:      Maintained
14333 F:      Documentation/core-api/symbol-namespaces.rst
14334 F:      scripts/nsdeps
14335
14336 NTB AMD DRIVER
14337 M:      Sanjay R Mehta <sanju.mehta@amd.com>
14338 M:      Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
14339 L:      ntb@lists.linux.dev
14340 S:      Supported
14341 F:      drivers/ntb/hw/amd/
14342
14343 NTB DRIVER CORE
14344 M:      Jon Mason <jdmason@kudzu.us>
14345 M:      Dave Jiang <dave.jiang@intel.com>
14346 M:      Allen Hubbe <allenbh@gmail.com>
14347 L:      ntb@lists.linux.dev
14348 S:      Supported
14349 W:      https://github.com/jonmason/ntb/wiki
14350 T:      git git://github.com/jonmason/ntb.git
14351 F:      drivers/net/ntb_netdev.c
14352 F:      drivers/ntb/
14353 F:      include/linux/ntb.h
14354 F:      include/linux/ntb_transport.h
14355 F:      tools/testing/selftests/ntb/
14356
14357 NTB IDT DRIVER
14358 M:      Serge Semin <fancer.lancer@gmail.com>
14359 L:      ntb@lists.linux.dev
14360 S:      Supported
14361 F:      drivers/ntb/hw/idt/
14362
14363 NTB INTEL DRIVER
14364 M:      Dave Jiang <dave.jiang@intel.com>
14365 L:      ntb@lists.linux.dev
14366 S:      Supported
14367 W:      https://github.com/davejiang/linux/wiki
14368 T:      git https://github.com/davejiang/linux.git
14369 F:      drivers/ntb/hw/intel/
14370
14371 NTFS FILESYSTEM
14372 M:      Anton Altaparmakov <anton@tuxera.com>
14373 L:      linux-ntfs-dev@lists.sourceforge.net
14374 S:      Supported
14375 W:      http://www.tuxera.com/
14376 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
14377 F:      Documentation/filesystems/ntfs.rst
14378 F:      fs/ntfs/
14379
14380 NTFS3 FILESYSTEM
14381 M:      Konstantin Komarov <almaz.alexandrovich@paragon-software.com>
14382 L:      ntfs3@lists.linux.dev
14383 S:      Supported
14384 W:      http://www.paragon-software.com/
14385 T:      git https://github.com/Paragon-Software-Group/linux-ntfs3.git
14386 F:      Documentation/filesystems/ntfs3.rst
14387 F:      fs/ntfs3/
14388
14389 NUBUS SUBSYSTEM
14390 M:      Finn Thain <fthain@linux-m68k.org>
14391 L:      linux-m68k@lists.linux-m68k.org
14392 S:      Maintained
14393 F:      arch/*/include/asm/nubus.h
14394 F:      drivers/nubus/
14395 F:      include/linux/nubus.h
14396 F:      include/uapi/linux/nubus.h
14397
14398 NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
14399 M:      Antonino Daplas <adaplas@gmail.com>
14400 L:      linux-fbdev@vger.kernel.org
14401 S:      Maintained
14402 F:      drivers/video/fbdev/nvidia/
14403 F:      drivers/video/fbdev/riva/
14404
14405 NVIDIA WMI EC BACKLIGHT DRIVER
14406 M:      Daniel Dadap <ddadap@nvidia.com>
14407 L:      platform-driver-x86@vger.kernel.org
14408 S:      Supported
14409 F:      drivers/platform/x86/nvidia-wmi-ec-backlight.c
14410
14411 NVM EXPRESS DRIVER
14412 M:      Keith Busch <kbusch@kernel.org>
14413 M:      Jens Axboe <axboe@fb.com>
14414 M:      Christoph Hellwig <hch@lst.de>
14415 M:      Sagi Grimberg <sagi@grimberg.me>
14416 L:      linux-nvme@lists.infradead.org
14417 S:      Supported
14418 W:      http://git.infradead.org/nvme.git
14419 T:      git://git.infradead.org/nvme.git
14420 F:      drivers/nvme/host/
14421 F:      include/linux/nvme.h
14422 F:      include/uapi/linux/nvme_ioctl.h
14423
14424 NVM EXPRESS FC TRANSPORT DRIVERS
14425 M:      James Smart <james.smart@broadcom.com>
14426 L:      linux-nvme@lists.infradead.org
14427 S:      Supported
14428 F:      drivers/nvme/host/fc.c
14429 F:      drivers/nvme/target/fc.c
14430 F:      drivers/nvme/target/fcloop.c
14431 F:      include/linux/nvme-fc-driver.h
14432 F:      include/linux/nvme-fc.h
14433
14434 NVM EXPRESS TARGET DRIVER
14435 M:      Christoph Hellwig <hch@lst.de>
14436 M:      Sagi Grimberg <sagi@grimberg.me>
14437 M:      Chaitanya Kulkarni <kch@nvidia.com>
14438 L:      linux-nvme@lists.infradead.org
14439 S:      Supported
14440 W:      http://git.infradead.org/nvme.git
14441 T:      git://git.infradead.org/nvme.git
14442 F:      drivers/nvme/target/
14443
14444 NVMEM FRAMEWORK
14445 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
14446 S:      Maintained
14447 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/srini/nvmem.git
14448 F:      Documentation/ABI/stable/sysfs-bus-nvmem
14449 F:      Documentation/devicetree/bindings/nvmem/
14450 F:      drivers/nvmem/
14451 F:      include/linux/nvmem-consumer.h
14452 F:      include/linux/nvmem-provider.h
14453
14454 NXP C45 TJA11XX PHY DRIVER
14455 M:      Radu Pirea <radu-nicolae.pirea@oss.nxp.com>
14456 L:      netdev@vger.kernel.org
14457 S:      Maintained
14458 F:      drivers/net/phy/nxp-c45-tja11xx.c
14459
14460 NXP FSPI DRIVER
14461 M:      Han Xu <han.xu@nxp.com>
14462 M:      Haibo Chen <haibo.chen@nxp.com>
14463 R:      Yogesh Gaur <yogeshgaur.83@gmail.com>
14464 L:      linux-spi@vger.kernel.org
14465 S:      Maintained
14466 F:      Documentation/devicetree/bindings/spi/spi-nxp-fspi.yaml
14467 F:      drivers/spi/spi-nxp-fspi.c
14468
14469 NXP FXAS21002C DRIVER
14470 M:      Rui Miguel Silva <rmfrfs@gmail.com>
14471 L:      linux-iio@vger.kernel.org
14472 S:      Maintained
14473 F:      Documentation/devicetree/bindings/iio/gyroscope/nxp,fxas21002c.yaml
14474 F:      drivers/iio/gyro/fxas21002c.h
14475 F:      drivers/iio/gyro/fxas21002c_core.c
14476 F:      drivers/iio/gyro/fxas21002c_i2c.c
14477 F:      drivers/iio/gyro/fxas21002c_spi.c
14478
14479 NXP i.MX CLOCK DRIVERS
14480 M:      Abel Vesa <abelvesa@kernel.org>
14481 L:      linux-clk@vger.kernel.org
14482 L:      linux-imx@nxp.com
14483 S:      Maintained
14484 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/abelvesa/linux.git clk/imx
14485 F:      Documentation/devicetree/bindings/clock/imx*
14486 F:      drivers/clk/imx/
14487 F:      include/dt-bindings/clock/imx*
14488
14489 NXP i.MX 8MQ DCSS DRIVER
14490 M:      Laurentiu Palcu <laurentiu.palcu@oss.nxp.com>
14491 R:      Lucas Stach <l.stach@pengutronix.de>
14492 L:      dri-devel@lists.freedesktop.org
14493 S:      Maintained
14494 F:      Documentation/devicetree/bindings/display/imx/nxp,imx8mq-dcss.yaml
14495 F:      drivers/gpu/drm/imx/dcss/
14496
14497 NXP i.MX 8QXP ADC DRIVER
14498 M:      Cai Huoqing <cai.huoqing@linux.dev>
14499 M:      Haibo Chen <haibo.chen@nxp.com>
14500 L:      linux-imx@nxp.com
14501 L:      linux-iio@vger.kernel.org
14502 S:      Maintained
14503 F:      Documentation/devicetree/bindings/iio/adc/nxp,imx8qxp-adc.yaml
14504 F:      drivers/iio/adc/imx8qxp-adc.c
14505
14506 NXP i.MX 7D/6SX/6UL AND VF610 ADC DRIVER
14507 M:      Haibo Chen <haibo.chen@nxp.com>
14508 L:      linux-iio@vger.kernel.org
14509 L:      linux-imx@nxp.com
14510 S:      Maintained
14511 F:      Documentation/devicetree/bindings/iio/adc/fsl,imx7d-adc.yaml
14512 F:      Documentation/devicetree/bindings/iio/adc/fsl,vf610-adc.yaml
14513 F:      drivers/iio/adc/imx7d_adc.c
14514 F:      drivers/iio/adc/vf610_adc.c
14515
14516 NXP PF8100/PF8121A/PF8200 PMIC REGULATOR DEVICE DRIVER
14517 M:      Jagan Teki <jagan@amarulasolutions.com>
14518 S:      Maintained
14519 F:      Documentation/devicetree/bindings/regulator/nxp,pf8x00-regulator.yaml
14520 F:      drivers/regulator/pf8x00-regulator.c
14521
14522 NXP PTN5150A CC LOGIC AND EXTCON DRIVER
14523 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
14524 L:      linux-kernel@vger.kernel.org
14525 S:      Maintained
14526 F:      Documentation/devicetree/bindings/extcon/extcon-ptn5150.yaml
14527 F:      drivers/extcon/extcon-ptn5150.c
14528
14529 NXP SGTL5000 DRIVER
14530 M:      Fabio Estevam <festevam@gmail.com>
14531 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
14532 S:      Maintained
14533 F:      Documentation/devicetree/bindings/sound/sgtl5000.yaml
14534 F:      sound/soc/codecs/sgtl5000*
14535
14536 NXP SJA1105 ETHERNET SWITCH DRIVER
14537 M:      Vladimir Oltean <olteanv@gmail.com>
14538 L:      linux-kernel@vger.kernel.org
14539 S:      Maintained
14540 F:      drivers/net/dsa/sja1105
14541 F:      drivers/net/pcs/pcs-xpcs-nxp.c
14542
14543 NXP TDA998X DRM DRIVER
14544 M:      Russell King <linux@armlinux.org.uk>
14545 S:      Maintained
14546 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-devel
14547 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-fixes
14548 F:      drivers/gpu/drm/i2c/tda998x_drv.c
14549 F:      include/drm/i2c/tda998x.h
14550 F:      include/dt-bindings/display/tda998x.h
14551 K:      "nxp,tda998x"
14552
14553 NXP TFA9879 DRIVER
14554 M:      Peter Rosin <peda@axentia.se>
14555 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
14556 S:      Maintained
14557 F:      Documentation/devicetree/bindings/sound/tfa9879.txt
14558 F:      sound/soc/codecs/tfa9879*
14559
14560 NXP/Goodix TFA989X (TFA1) DRIVER
14561 M:      Stephan Gerhold <stephan@gerhold.net>
14562 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
14563 S:      Maintained
14564 F:      Documentation/devicetree/bindings/sound/nxp,tfa989x.yaml
14565 F:      sound/soc/codecs/tfa989x.c
14566
14567 NXP-NCI NFC DRIVER
14568 L:      linux-nfc@lists.01.org (subscribers-only)
14569 S:      Orphan
14570 F:      Documentation/devicetree/bindings/net/nfc/nxp,nci.yaml
14571 F:      drivers/nfc/nxp-nci
14572
14573 NXP i.MX 8QXP/8QM JPEG V4L2 DRIVER
14574 M:      Mirela Rabulea <mirela.rabulea@nxp.com>
14575 R:      NXP Linux Team <linux-imx@nxp.com>
14576 L:      linux-media@vger.kernel.org
14577 S:      Maintained
14578 F:      Documentation/devicetree/bindings/media/nxp,imx8-jpeg.yaml
14579 F:      drivers/media/platform/nxp/imx-jpeg
14580
14581 NZXT-KRAKEN2 HARDWARE MONITORING DRIVER
14582 M:      Jonas Malaco <jonas@protocubo.io>
14583 L:      linux-hwmon@vger.kernel.org
14584 S:      Maintained
14585 F:      Documentation/hwmon/nzxt-kraken2.rst
14586 F:      drivers/hwmon/nzxt-kraken2.c
14587
14588 NZXT-SMART2 HARDWARE MONITORING DRIVER
14589 M:      Aleksandr Mezin <mezin.alexander@gmail.com>
14590 L:      linux-hwmon@vger.kernel.org
14591 S:      Maintained
14592 F:      Documentation/hwmon/nzxt-smart2.rst
14593 F:      drivers/hwmon/nzxt-smart2.c
14594
14595 OBJAGG
14596 M:      Jiri Pirko <jiri@nvidia.com>
14597 L:      netdev@vger.kernel.org
14598 S:      Supported
14599 F:      include/linux/objagg.h
14600 F:      lib/objagg.c
14601 F:      lib/test_objagg.c
14602
14603 OBJTOOL
14604 M:      Josh Poimboeuf <jpoimboe@kernel.org>
14605 M:      Peter Zijlstra <peterz@infradead.org>
14606 S:      Supported
14607 F:      tools/objtool/
14608 F:      include/linux/objtool.h
14609
14610 OCELOT ETHERNET SWITCH DRIVER
14611 M:      Vladimir Oltean <vladimir.oltean@nxp.com>
14612 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
14613 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
14614 M:      UNGLinuxDriver@microchip.com
14615 L:      netdev@vger.kernel.org
14616 S:      Supported
14617 F:      drivers/net/dsa/ocelot/*
14618 F:      drivers/net/ethernet/mscc/
14619 F:      include/soc/mscc/ocelot*
14620 F:      net/dsa/tag_ocelot.c
14621 F:      net/dsa/tag_ocelot_8021q.c
14622 F:      tools/testing/selftests/drivers/net/ocelot/*
14623
14624 OCXL (Open Coherent Accelerator Processor Interface OpenCAPI) DRIVER
14625 M:      Frederic Barrat <fbarrat@linux.ibm.com>
14626 M:      Andrew Donnellan <ajd@linux.ibm.com>
14627 L:      linuxppc-dev@lists.ozlabs.org
14628 S:      Supported
14629 F:      Documentation/userspace-api/accelerators/ocxl.rst
14630 F:      arch/powerpc/include/asm/pnv-ocxl.h
14631 F:      arch/powerpc/platforms/powernv/ocxl.c
14632 F:      drivers/misc/ocxl/
14633 F:      include/misc/ocxl*
14634 F:      include/uapi/misc/ocxl.h
14635
14636 OMAP AUDIO SUPPORT
14637 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
14638 M:      Jarkko Nikula <jarkko.nikula@bitmer.com>
14639 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
14640 L:      linux-omap@vger.kernel.org
14641 S:      Maintained
14642 F:      sound/soc/ti/n810.c
14643 F:      sound/soc/ti/omap*
14644 F:      sound/soc/ti/rx51.c
14645 F:      sound/soc/ti/sdma-pcm.*
14646
14647 OMAP CLOCK FRAMEWORK SUPPORT
14648 M:      Paul Walmsley <paul@pwsan.com>
14649 L:      linux-omap@vger.kernel.org
14650 S:      Maintained
14651 F:      arch/arm/*omap*/*clock*
14652
14653 OMAP DEVICE TREE SUPPORT
14654 M:      Benoît Cousson <bcousson@baylibre.com>
14655 M:      Tony Lindgren <tony@atomide.com>
14656 L:      linux-omap@vger.kernel.org
14657 L:      devicetree@vger.kernel.org
14658 S:      Maintained
14659 F:      arch/arm/boot/dts/*am3*
14660 F:      arch/arm/boot/dts/*am4*
14661 F:      arch/arm/boot/dts/*am5*
14662 F:      arch/arm/boot/dts/*dra7*
14663 F:      arch/arm/boot/dts/*omap*
14664 F:      arch/arm/boot/dts/logicpd-som-lv*
14665 F:      arch/arm/boot/dts/logicpd-torpedo*
14666
14667 OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
14668 L:      linux-omap@vger.kernel.org
14669 L:      linux-fbdev@vger.kernel.org
14670 S:      Orphan
14671 F:      Documentation/arm/omap/dss.rst
14672 F:      drivers/video/fbdev/omap2/
14673
14674 OMAP FRAMEBUFFER SUPPORT
14675 L:      linux-fbdev@vger.kernel.org
14676 L:      linux-omap@vger.kernel.org
14677 S:      Orphan
14678 F:      drivers/video/fbdev/omap/
14679
14680 OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT
14681 M:      Roger Quadros <rogerq@kernel.org>
14682 M:      Tony Lindgren <tony@atomide.com>
14683 L:      linux-omap@vger.kernel.org
14684 S:      Maintained
14685 F:      arch/arm/mach-omap2/*gpmc*
14686 F:      drivers/memory/omap-gpmc.c
14687
14688 OMAP GPIO DRIVER
14689 M:      Grygorii Strashko <grygorii.strashko@ti.com>
14690 M:      Santosh Shilimkar <ssantosh@kernel.org>
14691 M:      Kevin Hilman <khilman@kernel.org>
14692 L:      linux-omap@vger.kernel.org
14693 S:      Maintained
14694 F:      Documentation/devicetree/bindings/gpio/ti,omap-gpio.yaml
14695 F:      drivers/gpio/gpio-omap.c
14696
14697 OMAP HARDWARE SPINLOCK SUPPORT
14698 M:      Ohad Ben-Cohen <ohad@wizery.com>
14699 L:      linux-omap@vger.kernel.org
14700 S:      Maintained
14701 F:      drivers/hwspinlock/omap_hwspinlock.c
14702
14703 OMAP HS MMC SUPPORT
14704 L:      linux-mmc@vger.kernel.org
14705 L:      linux-omap@vger.kernel.org
14706 S:      Orphan
14707 F:      drivers/mmc/host/omap_hsmmc.c
14708
14709 OMAP HWMOD DATA
14710 M:      Paul Walmsley <paul@pwsan.com>
14711 L:      linux-omap@vger.kernel.org
14712 S:      Maintained
14713 F:      arch/arm/mach-omap2/omap_hwmod*data*
14714
14715 OMAP HWMOD SUPPORT
14716 M:      Benoît Cousson <bcousson@baylibre.com>
14717 M:      Paul Walmsley <paul@pwsan.com>
14718 L:      linux-omap@vger.kernel.org
14719 S:      Maintained
14720 F:      arch/arm/mach-omap2/omap_hwmod.*
14721
14722 OMAP I2C DRIVER
14723 M:      Vignesh R <vigneshr@ti.com>
14724 L:      linux-omap@vger.kernel.org
14725 L:      linux-i2c@vger.kernel.org
14726 S:      Maintained
14727 F:      Documentation/devicetree/bindings/i2c/ti,omap4-i2c.yaml
14728 F:      drivers/i2c/busses/i2c-omap.c
14729
14730 OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS)
14731 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
14732 L:      linux-media@vger.kernel.org
14733 S:      Maintained
14734 F:      Documentation/devicetree/bindings/media/ti,omap3isp.txt
14735 F:      drivers/media/platform/ti/omap3isp/
14736 F:      drivers/staging/media/omap4iss/
14737
14738 OMAP MMC SUPPORT
14739 M:      Aaro Koskinen <aaro.koskinen@iki.fi>
14740 L:      linux-omap@vger.kernel.org
14741 S:      Odd Fixes
14742 F:      drivers/mmc/host/omap.c
14743
14744 OMAP POWER MANAGEMENT SUPPORT
14745 M:      Kevin Hilman <khilman@kernel.org>
14746 L:      linux-omap@vger.kernel.org
14747 S:      Maintained
14748 F:      arch/arm/*omap*/*pm*
14749 F:      drivers/cpufreq/omap-cpufreq.c
14750
14751 OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT
14752 M:      Paul Walmsley <paul@pwsan.com>
14753 L:      linux-omap@vger.kernel.org
14754 S:      Maintained
14755 F:      arch/arm/mach-omap2/prm*
14756
14757 OMAP RANDOM NUMBER GENERATOR SUPPORT
14758 M:      Deepak Saxena <dsaxena@plexity.net>
14759 S:      Maintained
14760 F:      drivers/char/hw_random/omap-rng.c
14761
14762 OMAP USB SUPPORT
14763 L:      linux-usb@vger.kernel.org
14764 L:      linux-omap@vger.kernel.org
14765 S:      Orphan
14766 F:      arch/arm/*omap*/usb*
14767 F:      drivers/usb/*/*omap*
14768
14769 OMAP/NEWFLOW NANOBONE MACHINE SUPPORT
14770 M:      Mark Jackson <mpfj@newflow.co.uk>
14771 L:      linux-omap@vger.kernel.org
14772 S:      Maintained
14773 F:      arch/arm/boot/dts/am335x-nano.dts
14774
14775 OMAP1 SUPPORT
14776 M:      Aaro Koskinen <aaro.koskinen@iki.fi>
14777 M:      Janusz Krzysztofik <jmkrzyszt@gmail.com>
14778 M:      Tony Lindgren <tony@atomide.com>
14779 L:      linux-omap@vger.kernel.org
14780 S:      Maintained
14781 Q:      http://patchwork.kernel.org/project/linux-omap/list/
14782 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
14783 F:      arch/arm/configs/omap1_defconfig
14784 F:      arch/arm/mach-omap1/
14785 F:      arch/arm/plat-omap/
14786 F:      drivers/i2c/busses/i2c-omap.c
14787 F:      include/linux/platform_data/ams-delta-fiq.h
14788 F:      include/linux/platform_data/i2c-omap.h
14789
14790 OMAP2+ SUPPORT
14791 M:      Tony Lindgren <tony@atomide.com>
14792 L:      linux-omap@vger.kernel.org
14793 S:      Maintained
14794 W:      http://www.muru.com/linux/omap/
14795 W:      http://linux.omap.com/
14796 Q:      http://patchwork.kernel.org/project/linux-omap/list/
14797 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
14798 F:      arch/arm/configs/omap2plus_defconfig
14799 F:      arch/arm/mach-omap2/
14800 F:      arch/arm/plat-omap/
14801 F:      drivers/bus/ti-sysc.c
14802 F:      drivers/i2c/busses/i2c-omap.c
14803 F:      drivers/irqchip/irq-omap-intc.c
14804 F:      drivers/mfd/*omap*.c
14805 F:      drivers/mfd/menelaus.c
14806 F:      drivers/mfd/palmas.c
14807 F:      drivers/mfd/tps65217.c
14808 F:      drivers/mfd/tps65218.c
14809 F:      drivers/mfd/tps65910.c
14810 F:      drivers/mfd/twl-core.[ch]
14811 F:      drivers/mfd/twl4030*.c
14812 F:      drivers/mfd/twl6030*.c
14813 F:      drivers/mfd/twl6040*.c
14814 F:      drivers/regulator/palmas-regulator*.c
14815 F:      drivers/regulator/pbias-regulator.c
14816 F:      drivers/regulator/tps65217-regulator.c
14817 F:      drivers/regulator/tps65218-regulator.c
14818 F:      drivers/regulator/tps65910-regulator.c
14819 F:      drivers/regulator/twl-regulator.c
14820 F:      drivers/regulator/twl6030-regulator.c
14821 F:      include/linux/platform_data/i2c-omap.h
14822 F:      include/linux/platform_data/ti-sysc.h
14823
14824 OMFS FILESYSTEM
14825 M:      Bob Copeland <me@bobcopeland.com>
14826 L:      linux-karma-devel@lists.sourceforge.net
14827 S:      Maintained
14828 F:      Documentation/filesystems/omfs.rst
14829 F:      fs/omfs/
14830
14831 OMNIKEY CARDMAN 4000 DRIVER
14832 M:      Harald Welte <laforge@gnumonks.org>
14833 S:      Maintained
14834 F:      drivers/char/pcmcia/cm4000_cs.c
14835 F:      include/linux/cm4000_cs.h
14836 F:      include/uapi/linux/cm4000_cs.h
14837
14838 OMNIKEY CARDMAN 4040 DRIVER
14839 M:      Harald Welte <laforge@gnumonks.org>
14840 S:      Maintained
14841 F:      drivers/char/pcmcia/cm4040_cs.*
14842
14843 OMNIVISION OG01A1B SENSOR DRIVER
14844 M:      Shawn Tu <shawnx.tu@intel.com>
14845 L:      linux-media@vger.kernel.org
14846 S:      Maintained
14847 F:      drivers/media/i2c/og01a1b.c
14848
14849 OMNIVISION OV02A10 SENSOR DRIVER
14850 M:      Dongchun Zhu <dongchun.zhu@mediatek.com>
14851 L:      linux-media@vger.kernel.org
14852 S:      Maintained
14853 T:      git git://linuxtv.org/media_tree.git
14854 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov02a10.yaml
14855 F:      drivers/media/i2c/ov02a10.c
14856
14857 OMNIVISION OV08D10 SENSOR DRIVER
14858 M:      Jimmy Su <jimmy.su@intel.com>
14859 L:      linux-media@vger.kernel.org
14860 S:      Maintained
14861 T:      git git://linuxtv.org/media_tree.git
14862 F:      drivers/media/i2c/ov08d10.c
14863
14864 OMNIVISION OV13858 SENSOR DRIVER
14865 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
14866 L:      linux-media@vger.kernel.org
14867 S:      Maintained
14868 T:      git git://linuxtv.org/media_tree.git
14869 F:      drivers/media/i2c/ov13858.c
14870
14871 OMNIVISION OV13B10 SENSOR DRIVER
14872 M:      Arec Kao <arec.kao@intel.com>
14873 L:      linux-media@vger.kernel.org
14874 S:      Maintained
14875 T:      git git://linuxtv.org/media_tree.git
14876 F:      drivers/media/i2c/ov13b10.c
14877
14878 OMNIVISION OV2680 SENSOR DRIVER
14879 M:      Rui Miguel Silva <rmfrfs@gmail.com>
14880 L:      linux-media@vger.kernel.org
14881 S:      Maintained
14882 T:      git git://linuxtv.org/media_tree.git
14883 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov2680.yaml
14884 F:      drivers/media/i2c/ov2680.c
14885
14886 OMNIVISION OV2685 SENSOR DRIVER
14887 M:      Shunqian Zheng <zhengsq@rock-chips.com>
14888 L:      linux-media@vger.kernel.org
14889 S:      Maintained
14890 T:      git git://linuxtv.org/media_tree.git
14891 F:      drivers/media/i2c/ov2685.c
14892
14893 OMNIVISION OV2740 SENSOR DRIVER
14894 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
14895 R:      Shawn Tu <shawnx.tu@intel.com>
14896 R:      Bingbu Cao <bingbu.cao@intel.com>
14897 L:      linux-media@vger.kernel.org
14898 S:      Maintained
14899 T:      git git://linuxtv.org/media_tree.git
14900 F:      drivers/media/i2c/ov2740.c
14901
14902 OMNIVISION OV5640 SENSOR DRIVER
14903 M:      Steve Longerbeam <slongerbeam@gmail.com>
14904 L:      linux-media@vger.kernel.org
14905 S:      Maintained
14906 T:      git git://linuxtv.org/media_tree.git
14907 F:      drivers/media/i2c/ov5640.c
14908
14909 OMNIVISION OV5647 SENSOR DRIVER
14910 M:      Dave Stevenson <dave.stevenson@raspberrypi.com>
14911 M:      Jacopo Mondi <jacopo@jmondi.org>
14912 L:      linux-media@vger.kernel.org
14913 S:      Maintained
14914 T:      git git://linuxtv.org/media_tree.git
14915 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov5647.yaml
14916 F:      drivers/media/i2c/ov5647.c
14917
14918 OMNIVISION OV5670 SENSOR DRIVER
14919 M:      Chiranjeevi Rapolu <chiranjeevi.rapolu@intel.com>
14920 L:      linux-media@vger.kernel.org
14921 S:      Maintained
14922 T:      git git://linuxtv.org/media_tree.git
14923 F:      drivers/media/i2c/ov5670.c
14924
14925 OMNIVISION OV5675 SENSOR DRIVER
14926 M:      Shawn Tu <shawnx.tu@intel.com>
14927 L:      linux-media@vger.kernel.org
14928 S:      Maintained
14929 T:      git git://linuxtv.org/media_tree.git
14930 F:      drivers/media/i2c/ov5675.c
14931
14932 OMNIVISION OV5693 SENSOR DRIVER
14933 M:      Daniel Scally <djrscally@gmail.com>
14934 L:      linux-media@vger.kernel.org
14935 S:      Maintained
14936 T:      git git://linuxtv.org/media_tree.git
14937 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov5693.yaml
14938 F:      drivers/media/i2c/ov5693.c
14939
14940 OMNIVISION OV5695 SENSOR DRIVER
14941 M:      Shunqian Zheng <zhengsq@rock-chips.com>
14942 L:      linux-media@vger.kernel.org
14943 S:      Maintained
14944 T:      git git://linuxtv.org/media_tree.git
14945 F:      drivers/media/i2c/ov5695.c
14946
14947 OMNIVISION OV7670 SENSOR DRIVER
14948 L:      linux-media@vger.kernel.org
14949 S:      Orphan
14950 T:      git git://linuxtv.org/media_tree.git
14951 F:      Documentation/devicetree/bindings/media/i2c/ov7670.txt
14952 F:      drivers/media/i2c/ov7670.c
14953
14954 OMNIVISION OV772x SENSOR DRIVER
14955 M:      Jacopo Mondi <jacopo@jmondi.org>
14956 L:      linux-media@vger.kernel.org
14957 S:      Odd fixes
14958 T:      git git://linuxtv.org/media_tree.git
14959 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov772x.yaml
14960 F:      drivers/media/i2c/ov772x.c
14961 F:      include/media/i2c/ov772x.h
14962
14963 OMNIVISION OV7740 SENSOR DRIVER
14964 M:      Wenyou Yang <wenyou.yang@microchip.com>
14965 L:      linux-media@vger.kernel.org
14966 S:      Maintained
14967 T:      git git://linuxtv.org/media_tree.git
14968 F:      Documentation/devicetree/bindings/media/i2c/ov7740.txt
14969 F:      drivers/media/i2c/ov7740.c
14970
14971 OMNIVISION OV8856 SENSOR DRIVER
14972 M:      Dongchun Zhu <dongchun.zhu@mediatek.com>
14973 L:      linux-media@vger.kernel.org
14974 S:      Maintained
14975 T:      git git://linuxtv.org/media_tree.git
14976 F:      Documentation/devicetree/bindings/media/i2c/ov8856.yaml
14977 F:      drivers/media/i2c/ov8856.c
14978
14979 OMNIVISION OV9282 SENSOR DRIVER
14980 M:      Paul J. Murphy <paul.j.murphy@intel.com>
14981 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
14982 L:      linux-media@vger.kernel.org
14983 S:      Maintained
14984 T:      git git://linuxtv.org/media_tree.git
14985 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov9282.yaml
14986 F:      drivers/media/i2c/ov9282.c
14987
14988 OMNIVISION OV9640 SENSOR DRIVER
14989 M:      Petr Cvek <petrcvekcz@gmail.com>
14990 L:      linux-media@vger.kernel.org
14991 S:      Maintained
14992 F:      drivers/media/i2c/ov9640.*
14993
14994 OMNIVISION OV9650 SENSOR DRIVER
14995 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
14996 R:      Akinobu Mita <akinobu.mita@gmail.com>
14997 R:      Sylwester Nawrocki <s.nawrocki@samsung.com>
14998 L:      linux-media@vger.kernel.org
14999 S:      Maintained
15000 T:      git git://linuxtv.org/media_tree.git
15001 F:      Documentation/devicetree/bindings/media/i2c/ov9650.txt
15002 F:      drivers/media/i2c/ov9650.c
15003
15004 OMNIVISION OV9734 SENSOR DRIVER
15005 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
15006 R:      Bingbu Cao <bingbu.cao@intel.com>
15007 L:      linux-media@vger.kernel.org
15008 S:      Maintained
15009 T:      git git://linuxtv.org/media_tree.git
15010 F:      drivers/media/i2c/ov9734.c
15011
15012 ONENAND FLASH DRIVER
15013 M:      Kyungmin Park <kyungmin.park@samsung.com>
15014 L:      linux-mtd@lists.infradead.org
15015 S:      Maintained
15016 F:      drivers/mtd/nand/onenand/
15017 F:      include/linux/mtd/onenand*.h
15018
15019 ONION OMEGA2+ BOARD
15020 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
15021 L:      linux-mips@vger.kernel.org
15022 S:      Maintained
15023 F:      arch/mips/boot/dts/ralink/omega2p.dts
15024
15025 OP-TEE DRIVER
15026 M:      Jens Wiklander <jens.wiklander@linaro.org>
15027 L:      op-tee@lists.trustedfirmware.org
15028 S:      Maintained
15029 F:      Documentation/ABI/testing/sysfs-bus-optee-devices
15030 F:      drivers/tee/optee/
15031
15032 OP-TEE RANDOM NUMBER GENERATOR (RNG) DRIVER
15033 M:      Sumit Garg <sumit.garg@linaro.org>
15034 L:      op-tee@lists.trustedfirmware.org
15035 S:      Maintained
15036 F:      drivers/char/hw_random/optee-rng.c
15037
15038 OP-TEE RTC DRIVER
15039 M:      Clément Léger <clement.leger@bootlin.com>
15040 L:      linux-rtc@vger.kernel.org
15041 S:      Maintained
15042 F:      drivers/rtc/rtc-optee.c
15043
15044 OPA-VNIC DRIVER
15045 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
15046 L:      linux-rdma@vger.kernel.org
15047 S:      Supported
15048 F:      drivers/infiniband/ulp/opa_vnic
15049
15050 OPEN FIRMWARE AND DEVICE TREE OVERLAYS
15051 M:      Pantelis Antoniou <pantelis.antoniou@konsulko.com>
15052 M:      Frank Rowand <frowand.list@gmail.com>
15053 L:      devicetree@vger.kernel.org
15054 S:      Maintained
15055 F:      Documentation/devicetree/dynamic-resolution-notes.rst
15056 F:      Documentation/devicetree/overlay-notes.rst
15057 F:      drivers/of/overlay.c
15058 F:      drivers/of/resolver.c
15059 K:      of_overlay_notifier_
15060
15061 OPEN FIRMWARE AND FLATTENED DEVICE TREE
15062 M:      Rob Herring <robh+dt@kernel.org>
15063 M:      Frank Rowand <frowand.list@gmail.com>
15064 L:      devicetree@vger.kernel.org
15065 S:      Maintained
15066 C:      irc://irc.libera.chat/devicetree
15067 W:      http://www.devicetree.org/
15068 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
15069 F:      Documentation/ABI/testing/sysfs-firmware-ofw
15070 F:      drivers/of/
15071 F:      include/linux/of*.h
15072 F:      scripts/dtc/
15073
15074 OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
15075 M:      Rob Herring <robh+dt@kernel.org>
15076 M:      Krzysztof Kozlowski <krzysztof.kozlowski+dt@linaro.org>
15077 L:      devicetree@vger.kernel.org
15078 S:      Maintained
15079 C:      irc://irc.libera.chat/devicetree
15080 Q:      http://patchwork.ozlabs.org/project/devicetree-bindings/list/
15081 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
15082 F:      Documentation/devicetree/
15083 F:      arch/*/boot/dts/
15084 F:      include/dt-bindings/
15085
15086 OPENCOMPUTE PTP CLOCK DRIVER
15087 M:      Jonathan Lemon <jonathan.lemon@gmail.com>
15088 M:      Vadim Fedorenko <vadfed@fb.com>
15089 L:      netdev@vger.kernel.org
15090 S:      Maintained
15091 F:      drivers/ptp/ptp_ocp.c
15092
15093 OPENCORES I2C BUS DRIVER
15094 M:      Peter Korsgaard <peter@korsgaard.com>
15095 M:      Andrew Lunn <andrew@lunn.ch>
15096 L:      linux-i2c@vger.kernel.org
15097 S:      Maintained
15098 F:      Documentation/devicetree/bindings/i2c/opencores,i2c-ocores.yaml
15099 F:      Documentation/i2c/busses/i2c-ocores.rst
15100 F:      drivers/i2c/busses/i2c-ocores.c
15101 F:      include/linux/platform_data/i2c-ocores.h
15102
15103 OPENRISC ARCHITECTURE
15104 M:      Jonas Bonn <jonas@southpole.se>
15105 M:      Stefan Kristiansson <stefan.kristiansson@saunalahti.fi>
15106 M:      Stafford Horne <shorne@gmail.com>
15107 L:      openrisc@lists.librecores.org
15108 S:      Maintained
15109 W:      http://openrisc.io
15110 T:      git git://github.com/openrisc/linux.git
15111 F:      Documentation/devicetree/bindings/openrisc/
15112 F:      Documentation/openrisc/
15113 F:      arch/openrisc/
15114 F:      drivers/irqchip/irq-ompic.c
15115 F:      drivers/irqchip/irq-or1k-*
15116
15117 OPENVSWITCH
15118 M:      Pravin B Shelar <pshelar@ovn.org>
15119 L:      netdev@vger.kernel.org
15120 L:      dev@openvswitch.org
15121 S:      Maintained
15122 W:      http://openvswitch.org
15123 F:      include/uapi/linux/openvswitch.h
15124 F:      net/openvswitch/
15125
15126 OPERATING PERFORMANCE POINTS (OPP)
15127 M:      Viresh Kumar <vireshk@kernel.org>
15128 M:      Nishanth Menon <nm@ti.com>
15129 M:      Stephen Boyd <sboyd@kernel.org>
15130 L:      linux-pm@vger.kernel.org
15131 S:      Maintained
15132 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git
15133 F:      Documentation/devicetree/bindings/opp/
15134 F:      Documentation/power/opp.rst
15135 F:      drivers/opp/
15136 F:      include/linux/pm_opp.h
15137
15138 OPL4 DRIVER
15139 M:      Clemens Ladisch <clemens@ladisch.de>
15140 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15141 S:      Maintained
15142 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
15143 F:      sound/drivers/opl4/
15144
15145 ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
15146 M:      Mark Fasheh <mark@fasheh.com>
15147 M:      Joel Becker <jlbec@evilplan.org>
15148 M:      Joseph Qi <joseph.qi@linux.alibaba.com>
15149 L:      ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
15150 S:      Supported
15151 W:      http://ocfs2.wiki.kernel.org
15152 F:      Documentation/filesystems/dlmfs.rst
15153 F:      Documentation/filesystems/ocfs2.rst
15154 F:      fs/ocfs2/
15155
15156 ORANGEFS FILESYSTEM
15157 M:      Mike Marshall <hubcap@omnibond.com>
15158 R:      Martin Brandenburg <martin@omnibond.com>
15159 L:      devel@lists.orangefs.org
15160 S:      Supported
15161 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hubcap/linux.git
15162 F:      Documentation/filesystems/orangefs.rst
15163 F:      fs/orangefs/
15164
15165 ORINOCO DRIVER
15166 L:      linux-wireless@vger.kernel.org
15167 S:      Orphan
15168 W:      https://wireless.wiki.kernel.org/en/users/Drivers/orinoco
15169 W:      http://www.nongnu.org/orinoco/
15170 F:      drivers/net/wireless/intersil/orinoco/
15171
15172 OV2659 OMNIVISION SENSOR DRIVER
15173 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
15174 L:      linux-media@vger.kernel.org
15175 S:      Maintained
15176 W:      https://linuxtv.org
15177 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15178 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
15179 F:      drivers/media/i2c/ov2659.c
15180 F:      include/media/i2c/ov2659.h
15181
15182 OVERLAY FILESYSTEM
15183 M:      Miklos Szeredi <miklos@szeredi.hu>
15184 L:      linux-unionfs@vger.kernel.org
15185 S:      Supported
15186 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git
15187 F:      Documentation/filesystems/overlayfs.rst
15188 F:      fs/overlayfs/
15189
15190 P54 WIRELESS DRIVER
15191 M:      Christian Lamparter <chunkeey@googlemail.com>
15192 L:      linux-wireless@vger.kernel.org
15193 S:      Maintained
15194 W:      https://wireless.wiki.kernel.org/en/users/Drivers/p54
15195 F:      drivers/net/wireless/intersil/p54/
15196
15197 PACKING
15198 M:      Vladimir Oltean <olteanv@gmail.com>
15199 L:      netdev@vger.kernel.org
15200 S:      Supported
15201 F:      Documentation/core-api/packing.rst
15202 F:      include/linux/packing.h
15203 F:      lib/packing.c
15204
15205 PADATA PARALLEL EXECUTION MECHANISM
15206 M:      Steffen Klassert <steffen.klassert@secunet.com>
15207 M:      Daniel Jordan <daniel.m.jordan@oracle.com>
15208 L:      linux-crypto@vger.kernel.org
15209 L:      linux-kernel@vger.kernel.org
15210 S:      Maintained
15211 F:      Documentation/core-api/padata.rst
15212 F:      include/linux/padata.h
15213 F:      kernel/padata.c
15214
15215 PAGE CACHE
15216 M:      Matthew Wilcox (Oracle) <willy@infradead.org>
15217 L:      linux-fsdevel@vger.kernel.org
15218 S:      Supported
15219 T:      git git://git.infradead.org/users/willy/pagecache.git
15220 F:      Documentation/filesystems/locking.rst
15221 F:      Documentation/filesystems/vfs.rst
15222 F:      include/linux/pagemap.h
15223 F:      mm/filemap.c
15224 F:      mm/page-writeback.c
15225 F:      mm/readahead.c
15226 F:      mm/truncate.c
15227
15228 PAGE POOL
15229 M:      Jesper Dangaard Brouer <hawk@kernel.org>
15230 M:      Ilias Apalodimas <ilias.apalodimas@linaro.org>
15231 L:      netdev@vger.kernel.org
15232 S:      Supported
15233 F:      Documentation/networking/page_pool.rst
15234 F:      include/net/page_pool.h
15235 F:      include/trace/events/page_pool.h
15236 F:      net/core/page_pool.c
15237
15238 PAGE TABLE CHECK
15239 M:      Pasha Tatashin <pasha.tatashin@soleen.com>
15240 M:      Andrew Morton <akpm@linux-foundation.org>
15241 L:      linux-mm@kvack.org
15242 S:      Maintained
15243 F:      Documentation/vm/page_table_check.rst
15244 F:      include/linux/page_table_check.h
15245 F:      mm/page_table_check.c
15246
15247 PANASONIC LAPTOP ACPI EXTRAS DRIVER
15248 M:      Kenneth Chan <kenneth.t.chan@gmail.com>
15249 L:      platform-driver-x86@vger.kernel.org
15250 S:      Maintained
15251 F:      drivers/platform/x86/panasonic-laptop.c
15252
15253 PARALLAX PING IIO SENSOR DRIVER
15254 M:      Andreas Klinger <ak@it-klinger.de>
15255 L:      linux-iio@vger.kernel.org
15256 S:      Maintained
15257 F:      Documentation/devicetree/bindings/iio/proximity/parallax-ping.yaml
15258 F:      drivers/iio/proximity/ping.c
15259
15260 PARALLEL LCD/KEYPAD PANEL DRIVER
15261 M:      Willy Tarreau <willy@haproxy.com>
15262 M:      Ksenija Stanojevic <ksenija.stanojevic@gmail.com>
15263 S:      Odd Fixes
15264 F:      Documentation/admin-guide/lcd-panel-cgram.rst
15265 F:      drivers/auxdisplay/panel.c
15266
15267 PARALLEL PORT SUBSYSTEM
15268 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
15269 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
15270 L:      linux-parport@lists.infradead.org (subscribers-only)
15271 S:      Maintained
15272 F:      Documentation/driver-api/parport*.rst
15273 F:      drivers/char/ppdev.c
15274 F:      drivers/parport/
15275 F:      include/linux/parport*.h
15276 F:      include/uapi/linux/ppdev.h
15277
15278 PARAVIRT_OPS INTERFACE
15279 M:      Juergen Gross <jgross@suse.com>
15280 M:      Srivatsa S. Bhat (VMware) <srivatsa@csail.mit.edu>
15281 R:      Alexey Makhalov <amakhalov@vmware.com>
15282 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
15283 L:      virtualization@lists.linux-foundation.org
15284 L:      x86@kernel.org
15285 S:      Supported
15286 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
15287 F:      Documentation/virt/paravirt_ops.rst
15288 F:      arch/*/include/asm/paravirt*.h
15289 F:      arch/*/kernel/paravirt*
15290 F:      include/linux/hypervisor.h
15291
15292 PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
15293 M:      Tim Waugh <tim@cyberelk.net>
15294 L:      linux-parport@lists.infradead.org (subscribers-only)
15295 S:      Maintained
15296 F:      Documentation/admin-guide/blockdev/paride.rst
15297 F:      drivers/block/paride/
15298
15299 PARISC ARCHITECTURE
15300 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
15301 M:      Helge Deller <deller@gmx.de>
15302 L:      linux-parisc@vger.kernel.org
15303 S:      Maintained
15304 W:      https://parisc.wiki.kernel.org
15305 Q:      http://patchwork.kernel.org/project/linux-parisc/list/
15306 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
15307 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git
15308 F:      Documentation/parisc/
15309 F:      arch/parisc/
15310 F:      drivers/char/agp/parisc-agp.c
15311 F:      drivers/input/misc/hp_sdc_rtc.c
15312 F:      drivers/input/serio/gscps2.c
15313 F:      drivers/input/serio/hp_sdc*
15314 F:      drivers/parisc/
15315 F:      drivers/parport/parport_gsc.*
15316 F:      drivers/tty/serial/8250/8250_gsc.c
15317 F:      drivers/video/console/sti*
15318 F:      drivers/video/fbdev/sti*
15319 F:      drivers/video/logo/logo_parisc*
15320 F:      include/linux/hp_sdc.h
15321
15322 PARMAN
15323 M:      Jiri Pirko <jiri@nvidia.com>
15324 L:      netdev@vger.kernel.org
15325 S:      Supported
15326 F:      include/linux/parman.h
15327 F:      lib/parman.c
15328 F:      lib/test_parman.c
15329
15330 PC ENGINES APU BOARD DRIVER
15331 M:      Enrico Weigelt, metux IT consult <info@metux.net>
15332 S:      Maintained
15333 F:      drivers/platform/x86/pcengines-apuv2.c
15334
15335 PC87360 HARDWARE MONITORING DRIVER
15336 M:      Jim Cromie <jim.cromie@gmail.com>
15337 L:      linux-hwmon@vger.kernel.org
15338 S:      Maintained
15339 F:      Documentation/hwmon/pc87360.rst
15340 F:      drivers/hwmon/pc87360.c
15341
15342 PC8736x GPIO DRIVER
15343 M:      Jim Cromie <jim.cromie@gmail.com>
15344 S:      Maintained
15345 F:      drivers/char/pc8736x_gpio.c
15346
15347 PC87427 HARDWARE MONITORING DRIVER
15348 M:      Jean Delvare <jdelvare@suse.com>
15349 L:      linux-hwmon@vger.kernel.org
15350 S:      Maintained
15351 F:      Documentation/hwmon/pc87427.rst
15352 F:      drivers/hwmon/pc87427.c
15353
15354 PCA9532 LED DRIVER
15355 M:      Riku Voipio <riku.voipio@iki.fi>
15356 S:      Maintained
15357 F:      drivers/leds/leds-pca9532.c
15358 F:      include/linux/leds-pca9532.h
15359
15360 PCA9541 I2C BUS MASTER SELECTOR DRIVER
15361 M:      Guenter Roeck <linux@roeck-us.net>
15362 L:      linux-i2c@vger.kernel.org
15363 S:      Maintained
15364 F:      drivers/i2c/muxes/i2c-mux-pca9541.c
15365
15366 PCDP - PRIMARY CONSOLE AND DEBUG PORT
15367 M:      Khalid Aziz <khalid@gonehiking.org>
15368 S:      Maintained
15369 F:      drivers/firmware/pcdp.*
15370
15371 PCI DRIVER FOR AARDVARK (Marvell Armada 3700)
15372 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
15373 M:      Pali Rohár <pali@kernel.org>
15374 L:      linux-pci@vger.kernel.org
15375 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15376 S:      Maintained
15377 F:      Documentation/devicetree/bindings/pci/aardvark-pci.txt
15378 F:      drivers/pci/controller/pci-aardvark.c
15379
15380 PCI DRIVER FOR ALTERA PCIE IP
15381 M:      Joyce Ooi <joyce.ooi@intel.com>
15382 L:      linux-pci@vger.kernel.org
15383 S:      Supported
15384 F:      Documentation/devicetree/bindings/pci/altera-pcie.txt
15385 F:      drivers/pci/controller/pcie-altera.c
15386
15387 PCI DRIVER FOR APPLIEDMICRO XGENE
15388 M:      Toan Le <toan@os.amperecomputing.com>
15389 L:      linux-pci@vger.kernel.org
15390 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15391 S:      Maintained
15392 F:      Documentation/devicetree/bindings/pci/xgene-pci.txt
15393 F:      drivers/pci/controller/pci-xgene.c
15394
15395 PCI DRIVER FOR ARM VERSATILE PLATFORM
15396 M:      Rob Herring <robh@kernel.org>
15397 L:      linux-pci@vger.kernel.org
15398 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15399 S:      Maintained
15400 F:      Documentation/devicetree/bindings/pci/versatile.yaml
15401 F:      drivers/pci/controller/pci-versatile.c
15402
15403 PCI DRIVER FOR ARMADA 8K
15404 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
15405 L:      linux-pci@vger.kernel.org
15406 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15407 S:      Maintained
15408 F:      Documentation/devicetree/bindings/pci/pci-armada8k.txt
15409 F:      drivers/pci/controller/dwc/pcie-armada8k.c
15410
15411 PCI DRIVER FOR CADENCE PCIE IP
15412 M:      Tom Joseph <tjoseph@cadence.com>
15413 L:      linux-pci@vger.kernel.org
15414 S:      Maintained
15415 F:      Documentation/devicetree/bindings/pci/cdns,*
15416 F:      drivers/pci/controller/cadence/
15417
15418 PCI DRIVER FOR FREESCALE LAYERSCAPE
15419 M:      Minghuan Lian <minghuan.Lian@nxp.com>
15420 M:      Mingkai Hu <mingkai.hu@nxp.com>
15421 M:      Roy Zang <roy.zang@nxp.com>
15422 L:      linuxppc-dev@lists.ozlabs.org
15423 L:      linux-pci@vger.kernel.org
15424 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15425 S:      Maintained
15426 F:      drivers/pci/controller/dwc/*layerscape*
15427
15428 PCI DRIVER FOR GENERIC OF HOSTS
15429 M:      Will Deacon <will@kernel.org>
15430 L:      linux-pci@vger.kernel.org
15431 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15432 S:      Maintained
15433 F:      Documentation/devicetree/bindings/pci/host-generic-pci.yaml
15434 F:      drivers/pci/controller/pci-host-common.c
15435 F:      drivers/pci/controller/pci-host-generic.c
15436
15437 PCI DRIVER FOR IMX6
15438 M:      Richard Zhu <hongxing.zhu@nxp.com>
15439 M:      Lucas Stach <l.stach@pengutronix.de>
15440 L:      linux-pci@vger.kernel.org
15441 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15442 S:      Maintained
15443 F:      Documentation/devicetree/bindings/pci/fsl,imx6q-pcie.yaml
15444 F:      drivers/pci/controller/dwc/*imx6*
15445
15446 PCI DRIVER FOR FU740
15447 M:      Paul Walmsley <paul.walmsley@sifive.com>
15448 M:      Greentime Hu <greentime.hu@sifive.com>
15449 L:      linux-pci@vger.kernel.org
15450 S:      Maintained
15451 F:      Documentation/devicetree/bindings/pci/sifive,fu740-pcie.yaml
15452 F:      drivers/pci/controller/dwc/pcie-fu740.c
15453
15454 PCI DRIVER FOR INTEL IXP4XX
15455 M:      Linus Walleij <linus.walleij@linaro.org>
15456 S:      Maintained
15457 F:      Documentation/devicetree/bindings/pci/intel,ixp4xx-pci.yaml
15458 F:      drivers/pci/controller/pci-ixp4xx.c
15459
15460 PCI DRIVER FOR INTEL VOLUME MANAGEMENT DEVICE (VMD)
15461 M:      Nirmal Patel <nirmal.patel@linux.intel.com>
15462 R:      Jonathan Derrick <jonathan.derrick@linux.dev>
15463 L:      linux-pci@vger.kernel.org
15464 S:      Supported
15465 F:      drivers/pci/controller/vmd.c
15466
15467 PCI DRIVER FOR MICROSEMI SWITCHTEC
15468 M:      Kurt Schwemmer <kurt.schwemmer@microsemi.com>
15469 M:      Logan Gunthorpe <logang@deltatee.com>
15470 L:      linux-pci@vger.kernel.org
15471 S:      Maintained
15472 F:      Documentation/ABI/testing/sysfs-class-switchtec
15473 F:      Documentation/driver-api/switchtec.rst
15474 F:      drivers/ntb/hw/mscc/
15475 F:      drivers/pci/switch/switchtec*
15476 F:      include/linux/switchtec.h
15477 F:      include/uapi/linux/switchtec_ioctl.h
15478
15479 PCI DRIVER FOR MOBIVEIL PCIE IP
15480 M:      Karthikeyan Mitran <m.karthikeyan@mobiveil.co.in>
15481 M:      Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
15482 L:      linux-pci@vger.kernel.org
15483 S:      Supported
15484 F:      Documentation/devicetree/bindings/pci/mobiveil-pcie.txt
15485 F:      drivers/pci/controller/mobiveil/pcie-mobiveil*
15486
15487 PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support)
15488 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
15489 M:      Pali Rohár <pali@kernel.org>
15490 L:      linux-pci@vger.kernel.org
15491 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15492 S:      Maintained
15493 F:      drivers/pci/controller/*mvebu*
15494
15495 PCI DRIVER FOR NVIDIA TEGRA
15496 M:      Thierry Reding <thierry.reding@gmail.com>
15497 L:      linux-tegra@vger.kernel.org
15498 L:      linux-pci@vger.kernel.org
15499 S:      Supported
15500 F:      Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt
15501 F:      drivers/pci/controller/pci-tegra.c
15502
15503 PCI DRIVER FOR NXP LAYERSCAPE GEN4 CONTROLLER
15504 M:      Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
15505 L:      linux-pci@vger.kernel.org
15506 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15507 S:      Maintained
15508 F:      Documentation/devicetree/bindings/pci/layerscape-pcie-gen4.txt
15509 F:      drivers/pci/controller/mobiveil/pcie-layerscape-gen4.c
15510
15511 PCI DRIVER FOR RENESAS R-CAR
15512 M:      Marek Vasut <marek.vasut+renesas@gmail.com>
15513 M:      Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
15514 L:      linux-pci@vger.kernel.org
15515 L:      linux-renesas-soc@vger.kernel.org
15516 S:      Maintained
15517 F:      Documentation/devicetree/bindings/pci/*rcar*
15518 F:      drivers/pci/controller/*rcar*
15519
15520 PCI DRIVER FOR SAMSUNG EXYNOS
15521 M:      Jingoo Han <jingoohan1@gmail.com>
15522 L:      linux-pci@vger.kernel.org
15523 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15524 L:      linux-samsung-soc@vger.kernel.org
15525 S:      Maintained
15526 F:      drivers/pci/controller/dwc/pci-exynos.c
15527
15528 PCI DRIVER FOR SYNOPSYS DESIGNWARE
15529 M:      Jingoo Han <jingoohan1@gmail.com>
15530 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
15531 L:      linux-pci@vger.kernel.org
15532 S:      Maintained
15533 F:      Documentation/devicetree/bindings/pci/snps,dw-pcie.yaml
15534 F:      Documentation/devicetree/bindings/pci/snps,dw-pcie-ep.yaml
15535 F:      drivers/pci/controller/dwc/*designware*
15536
15537 PCI DRIVER FOR TI DRA7XX/J721E
15538 M:      Kishon Vijay Abraham I <kishon@ti.com>
15539 L:      linux-omap@vger.kernel.org
15540 L:      linux-pci@vger.kernel.org
15541 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15542 S:      Supported
15543 F:      Documentation/devicetree/bindings/pci/ti-pci.txt
15544 F:      drivers/pci/controller/cadence/pci-j721e.c
15545 F:      drivers/pci/controller/dwc/pci-dra7xx.c
15546
15547 PCI DRIVER FOR V3 SEMICONDUCTOR V360EPC
15548 M:      Linus Walleij <linus.walleij@linaro.org>
15549 L:      linux-pci@vger.kernel.org
15550 S:      Maintained
15551 F:      Documentation/devicetree/bindings/pci/v3-v360epc-pci.txt
15552 F:      drivers/pci/controller/pci-v3-semi.c
15553
15554 PCI ENDPOINT SUBSYSTEM
15555 M:      Kishon Vijay Abraham I <kishon@ti.com>
15556 M:      Lorenzo Pieralisi <lpieralisi@kernel.org>
15557 R:      Krzysztof Wilczyński <kw@linux.com>
15558 L:      linux-pci@vger.kernel.org
15559 S:      Supported
15560 Q:      https://patchwork.kernel.org/project/linux-pci/list/
15561 B:      https://bugzilla.kernel.org
15562 C:      irc://irc.oftc.net/linux-pci
15563 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lpieralisi/pci.git
15564 F:      Documentation/PCI/endpoint/*
15565 F:      Documentation/misc-devices/pci-endpoint-test.rst
15566 F:      drivers/misc/pci_endpoint_test.c
15567 F:      drivers/pci/endpoint/
15568 F:      tools/pci/
15569
15570 PCI ENHANCED ERROR HANDLING (EEH) FOR POWERPC
15571 M:      Russell Currey <ruscur@russell.cc>
15572 M:      Oliver O'Halloran <oohall@gmail.com>
15573 L:      linuxppc-dev@lists.ozlabs.org
15574 S:      Supported
15575 F:      Documentation/PCI/pci-error-recovery.rst
15576 F:      Documentation/powerpc/eeh-pci-error-recovery.rst
15577 F:      arch/powerpc/include/*/eeh*.h
15578 F:      arch/powerpc/kernel/eeh*.c
15579 F:      arch/powerpc/platforms/*/eeh*.c
15580 F:      drivers/pci/pcie/aer.c
15581 F:      drivers/pci/pcie/dpc.c
15582 F:      drivers/pci/pcie/err.c
15583
15584 PCI ERROR RECOVERY
15585 M:      Linas Vepstas <linasvepstas@gmail.com>
15586 L:      linux-pci@vger.kernel.org
15587 S:      Supported
15588 F:      Documentation/PCI/pci-error-recovery.rst
15589
15590 PCI PEER-TO-PEER DMA (P2PDMA)
15591 M:      Bjorn Helgaas <bhelgaas@google.com>
15592 M:      Logan Gunthorpe <logang@deltatee.com>
15593 L:      linux-pci@vger.kernel.org
15594 S:      Supported
15595 Q:      https://patchwork.kernel.org/project/linux-pci/list/
15596 B:      https://bugzilla.kernel.org
15597 C:      irc://irc.oftc.net/linux-pci
15598 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
15599 F:      Documentation/driver-api/pci/p2pdma.rst
15600 F:      drivers/pci/p2pdma.c
15601 F:      include/linux/pci-p2pdma.h
15602
15603 PCI MSI DRIVER FOR ALTERA MSI IP
15604 M:      Joyce Ooi <joyce.ooi@intel.com>
15605 L:      linux-pci@vger.kernel.org
15606 S:      Supported
15607 F:      Documentation/devicetree/bindings/pci/altera-pcie-msi.txt
15608 F:      drivers/pci/controller/pcie-altera-msi.c
15609
15610 PCI MSI DRIVER FOR APPLIEDMICRO XGENE
15611 M:      Toan Le <toan@os.amperecomputing.com>
15612 L:      linux-pci@vger.kernel.org
15613 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15614 S:      Maintained
15615 F:      Documentation/devicetree/bindings/pci/xgene-pci-msi.txt
15616 F:      drivers/pci/controller/pci-xgene-msi.c
15617
15618 PCI NATIVE HOST BRIDGE AND ENDPOINT DRIVERS
15619 M:      Lorenzo Pieralisi <lpieralisi@kernel.org>
15620 R:      Rob Herring <robh@kernel.org>
15621 R:      Krzysztof Wilczyński <kw@linux.com>
15622 L:      linux-pci@vger.kernel.org
15623 S:      Supported
15624 Q:      https://patchwork.kernel.org/project/linux-pci/list/
15625 B:      https://bugzilla.kernel.org
15626 C:      irc://irc.oftc.net/linux-pci
15627 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lpieralisi/pci.git
15628 F:      drivers/pci/controller/
15629 F:      drivers/pci/pci-bridge-emul.c
15630 F:      drivers/pci/pci-bridge-emul.h
15631
15632 PCI SUBSYSTEM
15633 M:      Bjorn Helgaas <bhelgaas@google.com>
15634 L:      linux-pci@vger.kernel.org
15635 S:      Supported
15636 Q:      https://patchwork.kernel.org/project/linux-pci/list/
15637 B:      https://bugzilla.kernel.org
15638 C:      irc://irc.oftc.net/linux-pci
15639 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
15640 F:      Documentation/PCI/
15641 F:      Documentation/devicetree/bindings/pci/
15642 F:      arch/x86/kernel/early-quirks.c
15643 F:      arch/x86/kernel/quirks.c
15644 F:      arch/x86/pci/
15645 F:      drivers/acpi/pci*
15646 F:      drivers/pci/
15647 F:      include/asm-generic/pci*
15648 F:      include/linux/of_pci.h
15649 F:      include/linux/pci*
15650 F:      include/uapi/linux/pci*
15651 F:      lib/pci*
15652
15653 PCIE DRIVER FOR AMAZON ANNAPURNA LABS
15654 M:      Jonathan Chocron <jonnyc@amazon.com>
15655 L:      linux-pci@vger.kernel.org
15656 S:      Maintained
15657 F:      Documentation/devicetree/bindings/pci/pcie-al.txt
15658 F:      drivers/pci/controller/dwc/pcie-al.c
15659
15660 PCIE DRIVER FOR AMLOGIC MESON
15661 M:      Yue Wang <yue.wang@Amlogic.com>
15662 L:      linux-pci@vger.kernel.org
15663 L:      linux-amlogic@lists.infradead.org
15664 S:      Maintained
15665 F:      drivers/pci/controller/dwc/pci-meson.c
15666
15667 PCIE DRIVER FOR AXIS ARTPEC
15668 M:      Jesper Nilsson <jesper.nilsson@axis.com>
15669 L:      linux-arm-kernel@axis.com
15670 L:      linux-pci@vger.kernel.org
15671 S:      Maintained
15672 F:      Documentation/devicetree/bindings/pci/axis,artpec*
15673 F:      drivers/pci/controller/dwc/*artpec*
15674
15675 PCIE DRIVER FOR CAVIUM THUNDERX
15676 M:      Robert Richter <rric@kernel.org>
15677 L:      linux-pci@vger.kernel.org
15678 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15679 S:      Odd Fixes
15680 F:      drivers/pci/controller/pci-thunder-*
15681
15682 PCIE DRIVER FOR HISILICON
15683 M:      Zhou Wang <wangzhou1@hisilicon.com>
15684 L:      linux-pci@vger.kernel.org
15685 S:      Maintained
15686 F:      drivers/pci/controller/dwc/pcie-hisi.c
15687
15688 PCIE DRIVER FOR HISILICON KIRIN
15689 M:      Xiaowei Song <songxiaowei@hisilicon.com>
15690 M:      Binghui Wang <wangbinghui@hisilicon.com>
15691 L:      linux-pci@vger.kernel.org
15692 S:      Maintained
15693 F:      Documentation/devicetree/bindings/pci/hisilicon,kirin-pcie.yaml
15694 F:      drivers/pci/controller/dwc/pcie-kirin.c
15695
15696 PCIE DRIVER FOR HISILICON STB
15697 M:      Shawn Guo <shawn.guo@linaro.org>
15698 L:      linux-pci@vger.kernel.org
15699 S:      Maintained
15700 F:      Documentation/devicetree/bindings/pci/hisilicon-histb-pcie.txt
15701 F:      drivers/pci/controller/dwc/pcie-histb.c
15702
15703 PCIE DRIVER FOR INTEL KEEM BAY
15704 M:      Srikanth Thokala <srikanth.thokala@intel.com>
15705 L:      linux-pci@vger.kernel.org
15706 S:      Supported
15707 F:      Documentation/devicetree/bindings/pci/intel,keembay-pcie*
15708 F:      drivers/pci/controller/dwc/pcie-keembay.c
15709
15710 PCIE DRIVER FOR INTEL LGM GW SOC
15711 M:      Rahul Tanwar <rtanwar@maxlinear.com>
15712 L:      linux-pci@vger.kernel.org
15713 S:      Maintained
15714 F:      Documentation/devicetree/bindings/pci/intel-gw-pcie.yaml
15715 F:      drivers/pci/controller/dwc/pcie-intel-gw.c
15716
15717 PCIE DRIVER FOR MEDIATEK
15718 M:      Ryder Lee <ryder.lee@mediatek.com>
15719 M:      Jianjun Wang <jianjun.wang@mediatek.com>
15720 L:      linux-pci@vger.kernel.org
15721 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
15722 S:      Supported
15723 F:      Documentation/devicetree/bindings/pci/mediatek*
15724 F:      drivers/pci/controller/*mediatek*
15725
15726 PCIE DRIVER FOR MICROCHIP
15727 M:      Daire McNamara <daire.mcnamara@microchip.com>
15728 L:      linux-pci@vger.kernel.org
15729 S:      Supported
15730 F:      Documentation/devicetree/bindings/pci/microchip*
15731 F:      drivers/pci/controller/*microchip*
15732
15733 PCIE DRIVER FOR QUALCOMM MSM
15734 M:      Stanimir Varbanov <svarbanov@mm-sol.com>
15735 L:      linux-pci@vger.kernel.org
15736 L:      linux-arm-msm@vger.kernel.org
15737 S:      Maintained
15738 F:      drivers/pci/controller/dwc/pcie-qcom.c
15739
15740 PCIE ENDPOINT DRIVER FOR QUALCOMM
15741 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
15742 L:      linux-pci@vger.kernel.org
15743 L:      linux-arm-msm@vger.kernel.org
15744 S:      Maintained
15745 F:      Documentation/devicetree/bindings/pci/qcom,pcie-ep.yaml
15746 F:      drivers/pci/controller/dwc/pcie-qcom-ep.c
15747
15748 PCIE DRIVER FOR ROCKCHIP
15749 M:      Shawn Lin <shawn.lin@rock-chips.com>
15750 L:      linux-pci@vger.kernel.org
15751 L:      linux-rockchip@lists.infradead.org
15752 S:      Maintained
15753 F:      Documentation/devicetree/bindings/pci/rockchip-pcie*
15754 F:      drivers/pci/controller/pcie-rockchip*
15755
15756 PCIE DRIVER FOR SOCIONEXT UNIPHIER
15757 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
15758 L:      linux-pci@vger.kernel.org
15759 S:      Maintained
15760 F:      Documentation/devicetree/bindings/pci/socionext,uniphier-pcie*
15761 F:      drivers/pci/controller/dwc/pcie-uniphier*
15762
15763 PCIE DRIVER FOR ST SPEAR13XX
15764 M:      Pratyush Anand <pratyush.anand@gmail.com>
15765 L:      linux-pci@vger.kernel.org
15766 S:      Maintained
15767 F:      drivers/pci/controller/dwc/*spear*
15768
15769 PCMCIA SUBSYSTEM
15770 M:      Dominik Brodowski <linux@dominikbrodowski.net>
15771 S:      Odd Fixes
15772 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/linux.git
15773 F:      Documentation/pcmcia/
15774 F:      drivers/pcmcia/
15775 F:      include/pcmcia/
15776 F:      tools/pcmcia/
15777
15778 PCNET32 NETWORK DRIVER
15779 M:      Don Fry <pcnet32@frontier.com>
15780 L:      netdev@vger.kernel.org
15781 S:      Maintained
15782 F:      drivers/net/ethernet/amd/pcnet32.c
15783
15784 PCRYPT PARALLEL CRYPTO ENGINE
15785 M:      Steffen Klassert <steffen.klassert@secunet.com>
15786 L:      linux-crypto@vger.kernel.org
15787 S:      Maintained
15788 F:      crypto/pcrypt.c
15789 F:      include/crypto/pcrypt.h
15790
15791 PEAQ WMI HOTKEYS DRIVER
15792 M:      Hans de Goede <hdegoede@redhat.com>
15793 L:      platform-driver-x86@vger.kernel.org
15794 S:      Maintained
15795 F:      drivers/platform/x86/peaq-wmi.c
15796
15797 PECI HARDWARE MONITORING DRIVERS
15798 M:      Iwona Winiarska <iwona.winiarska@intel.com>
15799 L:      linux-hwmon@vger.kernel.org
15800 S:      Supported
15801 F:      Documentation/hwmon/peci-cputemp.rst
15802 F:      Documentation/hwmon/peci-dimmtemp.rst
15803 F:      drivers/hwmon/peci/
15804
15805 PECI SUBSYSTEM
15806 M:      Iwona Winiarska <iwona.winiarska@intel.com>
15807 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
15808 S:      Supported
15809 F:      Documentation/devicetree/bindings/peci/
15810 F:      Documentation/peci/
15811 F:      drivers/peci/
15812 F:      include/linux/peci-cpu.h
15813 F:      include/linux/peci.h
15814
15815 PENSANDO ETHERNET DRIVERS
15816 M:      Shannon Nelson <snelson@pensando.io>
15817 M:      drivers@pensando.io
15818 L:      netdev@vger.kernel.org
15819 S:      Supported
15820 F:      Documentation/networking/device_drivers/ethernet/pensando/ionic.rst
15821 F:      drivers/net/ethernet/pensando/
15822
15823 PER-CPU MEMORY ALLOCATOR
15824 M:      Dennis Zhou <dennis@kernel.org>
15825 M:      Tejun Heo <tj@kernel.org>
15826 M:      Christoph Lameter <cl@linux.com>
15827 L:      linux-mm@kvack.org
15828 S:      Maintained
15829 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dennis/percpu.git
15830 F:      arch/*/include/asm/percpu.h
15831 F:      include/linux/percpu*.h
15832 F:      lib/percpu*.c
15833 F:      mm/percpu*.c
15834
15835 PER-TASK DELAY ACCOUNTING
15836 M:      Balbir Singh <bsingharora@gmail.com>
15837 S:      Maintained
15838 F:      include/linux/delayacct.h
15839 F:      kernel/delayacct.c
15840
15841 PERFORMANCE EVENTS SUBSYSTEM
15842 M:      Peter Zijlstra <peterz@infradead.org>
15843 M:      Ingo Molnar <mingo@redhat.com>
15844 M:      Arnaldo Carvalho de Melo <acme@kernel.org>
15845 R:      Mark Rutland <mark.rutland@arm.com>
15846 R:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
15847 R:      Jiri Olsa <jolsa@kernel.org>
15848 R:      Namhyung Kim <namhyung@kernel.org>
15849 L:      linux-perf-users@vger.kernel.org
15850 L:      linux-kernel@vger.kernel.org
15851 S:      Supported
15852 W:      https://perf.wiki.kernel.org/
15853 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
15854 F:      arch/*/events/*
15855 F:      arch/*/events/*/*
15856 F:      arch/*/include/asm/perf_event.h
15857 F:      arch/*/kernel/*/*/perf_event*.c
15858 F:      arch/*/kernel/*/perf_event*.c
15859 F:      arch/*/kernel/perf_callchain.c
15860 F:      arch/*/kernel/perf_event*.c
15861 F:      include/linux/perf_event.h
15862 F:      include/uapi/linux/perf_event.h
15863 F:      kernel/events/*
15864 F:      tools/lib/perf/
15865 F:      tools/perf/
15866
15867 PERFORMANCE EVENTS TOOLING ARM64
15868 R:      John Garry <john.garry@huawei.com>
15869 R:      Will Deacon <will@kernel.org>
15870 R:      James Clark <james.clark@arm.com>
15871 R:      Mike Leach <mike.leach@linaro.org>
15872 R:      Leo Yan <leo.yan@linaro.org>
15873 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15874 S:      Supported
15875 F:      tools/build/feature/test-libopencsd.c
15876 F:      tools/perf/arch/arm*/
15877 F:      tools/perf/pmu-events/arch/arm64/
15878 F:      tools/perf/util/arm-spe*
15879 F:      tools/perf/util/cs-etm*
15880
15881 PERSONALITY HANDLING
15882 M:      Christoph Hellwig <hch@infradead.org>
15883 L:      linux-abi-devel@lists.sourceforge.net
15884 S:      Maintained
15885 F:      include/linux/personality.h
15886 F:      include/uapi/linux/personality.h
15887
15888 PHOENIX RC FLIGHT CONTROLLER ADAPTER
15889 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
15890 L:      linux-input@vger.kernel.org
15891 S:      Maintained
15892 F:      Documentation/input/devices/pxrc.rst
15893 F:      drivers/input/joystick/pxrc.c
15894
15895 PHONET PROTOCOL
15896 M:      Remi Denis-Courmont <courmisch@gmail.com>
15897 S:      Supported
15898 F:      Documentation/networking/phonet.rst
15899 F:      include/linux/phonet.h
15900 F:      include/net/phonet/
15901 F:      include/uapi/linux/phonet.h
15902 F:      net/phonet/
15903
15904 PHRAM MTD DRIVER
15905 M:      Joern Engel <joern@lazybastard.org>
15906 L:      linux-mtd@lists.infradead.org
15907 S:      Maintained
15908 F:      drivers/mtd/devices/phram.c
15909
15910 PICOLCD HID DRIVER
15911 M:      Bruno Prémont <bonbons@linux-vserver.org>
15912 L:      linux-input@vger.kernel.org
15913 S:      Maintained
15914 F:      drivers/hid/hid-picolcd*
15915
15916 PIDFD API
15917 M:      Christian Brauner <christian@brauner.io>
15918 L:      linux-kernel@vger.kernel.org
15919 S:      Maintained
15920 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brauner/linux.git
15921 F:      samples/pidfd/
15922 F:      tools/testing/selftests/clone3/
15923 F:      tools/testing/selftests/pid_namespace/
15924 F:      tools/testing/selftests/pidfd/
15925 K:      (?i)pidfd
15926 K:      (?i)clone3
15927 K:      \b(clone_args|kernel_clone_args)\b
15928
15929 PIN CONTROL SUBSYSTEM
15930 M:      Linus Walleij <linus.walleij@linaro.org>
15931 L:      linux-gpio@vger.kernel.org
15932 S:      Maintained
15933 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git
15934 F:      Documentation/devicetree/bindings/pinctrl/
15935 F:      Documentation/driver-api/pin-control.rst
15936 F:      drivers/pinctrl/
15937 F:      include/linux/pinctrl/
15938
15939 PIN CONTROLLER - AMD
15940 M:      Basavaraj Natikar <Basavaraj.Natikar@amd.com>
15941 M:      Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
15942 S:      Maintained
15943 F:      drivers/pinctrl/pinctrl-amd.c
15944
15945 PIN CONTROLLER - FREESCALE
15946 M:      Dong Aisheng <aisheng.dong@nxp.com>
15947 M:      Fabio Estevam <festevam@gmail.com>
15948 M:      Shawn Guo <shawnguo@kernel.org>
15949 M:      Jacky Bai <ping.bai@nxp.com>
15950 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
15951 L:      linux-gpio@vger.kernel.org
15952 S:      Maintained
15953 F:      Documentation/devicetree/bindings/pinctrl/fsl,*
15954 F:      drivers/pinctrl/freescale/
15955
15956 PIN CONTROLLER - INTEL
15957 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
15958 M:      Andy Shevchenko <andy@kernel.org>
15959 S:      Supported
15960 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/intel.git
15961 F:      drivers/pinctrl/intel/
15962
15963 PIN CONTROLLER - KEEMBAY
15964 M:      Lakshmi Sowjanya D <lakshmi.sowjanya.d@intel.com>
15965 S:      Supported
15966 F:      drivers/pinctrl/pinctrl-keembay*
15967
15968 PIN CONTROLLER - MEDIATEK
15969 M:      Sean Wang <sean.wang@kernel.org>
15970 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
15971 S:      Maintained
15972 F:      Documentation/devicetree/bindings/pinctrl/mediatek,mt65xx-pinctrl.yaml
15973 F:      Documentation/devicetree/bindings/pinctrl/mediatek,mt6797-pinctrl.yaml
15974 F:      Documentation/devicetree/bindings/pinctrl/mediatek,mt7622-pinctrl.yaml
15975 F:      Documentation/devicetree/bindings/pinctrl/mediatek,mt8183-pinctrl.yaml
15976 F:      drivers/pinctrl/mediatek/
15977
15978 PIN CONTROLLER - MICROCHIP AT91
15979 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
15980 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15981 L:      linux-gpio@vger.kernel.org
15982 S:      Supported
15983 F:      drivers/gpio/gpio-sama5d2-piobu.c
15984 F:      drivers/pinctrl/pinctrl-at91*
15985
15986 PIN CONTROLLER - QUALCOMM
15987 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
15988 L:      linux-arm-msm@vger.kernel.org
15989 S:      Maintained
15990 F:      Documentation/devicetree/bindings/pinctrl/qcom,*.txt
15991 F:      drivers/pinctrl/qcom/
15992
15993 PIN CONTROLLER - RENESAS
15994 M:      Geert Uytterhoeven <geert+renesas@glider.be>
15995 L:      linux-renesas-soc@vger.kernel.org
15996 S:      Supported
15997 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git renesas-pinctrl
15998 F:      Documentation/devicetree/bindings/pinctrl/renesas,*
15999 F:      drivers/pinctrl/renesas/
16000
16001 PIN CONTROLLER - SAMSUNG
16002 M:      Tomasz Figa <tomasz.figa@gmail.com>
16003 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
16004 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
16005 R:      Alim Akhtar <alim.akhtar@samsung.com>
16006 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16007 L:      linux-samsung-soc@vger.kernel.org
16008 S:      Maintained
16009 C:      irc://irc.libera.chat/linux-exynos
16010 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
16011 B:      mailto:linux-samsung-soc@vger.kernel.org
16012 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/samsung.git
16013 F:      Documentation/devicetree/bindings/pinctrl/samsung,pinctrl*yaml
16014 F:      drivers/pinctrl/samsung/
16015 F:      include/dt-bindings/pinctrl/samsung.h
16016
16017 PIN CONTROLLER - SINGLE
16018 M:      Tony Lindgren <tony@atomide.com>
16019 M:      Haojian Zhuang <haojian.zhuang@linaro.org>
16020 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16021 L:      linux-omap@vger.kernel.org
16022 S:      Maintained
16023 F:      drivers/pinctrl/pinctrl-single.c
16024
16025 PIN CONTROLLER - THUNDERBAY
16026 M:      Lakshmi Sowjanya D <lakshmi.sowjanya.d@intel.com>
16027 S:      Supported
16028 F:      drivers/pinctrl/pinctrl-thunderbay.c
16029
16030 PIN CONTROLLER - SUNPLUS / TIBBO
16031 M:      Dvorkin Dmitry <dvorkin@tibbo.com>
16032 M:      Wells Lu <wellslutw@gmail.com>
16033 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16034 S:      Maintained
16035 W:      https://sunplus.atlassian.net/wiki/spaces/doc/overview
16036 F:      Documentation/devicetree/bindings/pinctrl/sunplus,*
16037 F:      drivers/pinctrl/sunplus/
16038 F:      include/dt-bindings/pinctrl/sppctl*.h
16039
16040 PKTCDVD DRIVER
16041 M:      linux-block@vger.kernel.org
16042 S:      Orphan
16043 F:      drivers/block/pktcdvd.c
16044 F:      include/linux/pktcdvd.h
16045 F:      include/uapi/linux/pktcdvd.h
16046
16047 PLANTOWER PMS7003 AIR POLLUTION SENSOR DRIVER
16048 M:      Tomasz Duszynski <tduszyns@gmail.com>
16049 S:      Maintained
16050 F:      Documentation/devicetree/bindings/iio/chemical/plantower,pms7003.yaml
16051 F:      drivers/iio/chemical/pms7003.c
16052
16053 PLATFORM FEATURE INFRASTRUCTURE
16054 M:      Juergen Gross <jgross@suse.com>
16055 S:      Maintained
16056 F:      arch/*/include/asm/platform-feature.h
16057 F:      include/asm-generic/platform-feature.h
16058 F:      include/linux/platform-feature.h
16059 F:      kernel/platform-feature.c
16060
16061 PLDMFW LIBRARY
16062 M:      Jacob Keller <jacob.e.keller@intel.com>
16063 S:      Maintained
16064 F:      Documentation/driver-api/pldmfw/
16065 F:      include/linux/pldmfw.h
16066 F:      lib/pldmfw/
16067
16068 PLX DMA DRIVER
16069 M:      Logan Gunthorpe <logang@deltatee.com>
16070 S:      Maintained
16071 F:      drivers/dma/plx_dma.c
16072
16073 PM6764TR DRIVER
16074 M:      Charles Hsu     <hsu.yungteng@gmail.com>
16075 L:      linux-hwmon@vger.kernel.org
16076 S:      Maintained
16077 F:      Documentation/hwmon/pm6764tr.rst
16078 F:      drivers/hwmon/pmbus/pm6764tr.c
16079
16080 PM-GRAPH UTILITY
16081 M:      "Todd E Brandt" <todd.e.brandt@linux.intel.com>
16082 L:      linux-pm@vger.kernel.org
16083 S:      Supported
16084 W:      https://01.org/pm-graph
16085 B:      https://bugzilla.kernel.org/buglist.cgi?component=pm-graph&product=Tools
16086 T:      git git://github.com/intel/pm-graph
16087 F:      tools/power/pm-graph
16088
16089 PMBUS HARDWARE MONITORING DRIVERS
16090 M:      Guenter Roeck <linux@roeck-us.net>
16091 L:      linux-hwmon@vger.kernel.org
16092 S:      Maintained
16093 W:      http://hwmon.wiki.kernel.org/
16094 W:      http://www.roeck-us.net/linux/drivers/
16095 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
16096 F:      Documentation/devicetree/bindings/hwmon/ltc2978.txt
16097 F:      Documentation/devicetree/bindings/hwmon/max31785.txt
16098 F:      Documentation/hwmon/adm1275.rst
16099 F:      Documentation/hwmon/ibm-cffps.rst
16100 F:      Documentation/hwmon/ir35221.rst
16101 F:      Documentation/hwmon/lm25066.rst
16102 F:      Documentation/hwmon/ltc2978.rst
16103 F:      Documentation/hwmon/ltc3815.rst
16104 F:      Documentation/hwmon/max16064.rst
16105 F:      Documentation/hwmon/max20751.rst
16106 F:      Documentation/hwmon/max31785.rst
16107 F:      Documentation/hwmon/max34440.rst
16108 F:      Documentation/hwmon/max8688.rst
16109 F:      Documentation/hwmon/pmbus-core.rst
16110 F:      Documentation/hwmon/pmbus.rst
16111 F:      Documentation/hwmon/tps40422.rst
16112 F:      Documentation/hwmon/ucd9000.rst
16113 F:      Documentation/hwmon/ucd9200.rst
16114 F:      Documentation/hwmon/zl6100.rst
16115 F:      drivers/hwmon/pmbus/
16116 F:      include/linux/pmbus.h
16117
16118 PMC SIERRA MaxRAID DRIVER
16119 L:      linux-scsi@vger.kernel.org
16120 S:      Orphan
16121 W:      http://www.pmc-sierra.com/
16122 F:      drivers/scsi/pmcraid.*
16123
16124 PMC SIERRA PM8001 DRIVER
16125 M:      Jack Wang <jinpu.wang@cloud.ionos.com>
16126 L:      linux-scsi@vger.kernel.org
16127 S:      Supported
16128 F:      drivers/scsi/pm8001/
16129
16130 PNI RM3100 IIO DRIVER
16131 M:      Song Qiang <songqiang1304521@gmail.com>
16132 L:      linux-iio@vger.kernel.org
16133 S:      Maintained
16134 F:      Documentation/devicetree/bindings/iio/magnetometer/pni,rm3100.yaml
16135 F:      drivers/iio/magnetometer/rm3100*
16136
16137 PNP SUPPORT
16138 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
16139 L:      linux-acpi@vger.kernel.org
16140 S:      Maintained
16141 F:      drivers/pnp/
16142 F:      include/linux/pnp.h
16143
16144 POSIX CLOCKS and TIMERS
16145 M:      Thomas Gleixner <tglx@linutronix.de>
16146 L:      linux-kernel@vger.kernel.org
16147 S:      Maintained
16148 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
16149 F:      fs/timerfd.c
16150 F:      include/linux/time_namespace.h
16151 F:      include/linux/timer*
16152 F:      kernel/time/*timer*
16153 F:      kernel/time/namespace.c
16154
16155 POWER MANAGEMENT CORE
16156 M:      "Rafael J. Wysocki" <rafael@kernel.org>
16157 L:      linux-pm@vger.kernel.org
16158 S:      Supported
16159 B:      https://bugzilla.kernel.org
16160 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
16161 F:      drivers/base/power/
16162 F:      drivers/powercap/
16163 F:      include/linux/intel_rapl.h
16164 F:      include/linux/pm.h
16165 F:      include/linux/pm_*
16166 F:      include/linux/powercap.h
16167 F:      kernel/configs/nopm.config
16168
16169 DYNAMIC THERMAL POWER MANAGEMENT (DTPM)
16170 M:      Daniel Lezcano <daniel.lezcano@kernel.org>
16171 L:      linux-pm@vger.kernel.org
16172 S:      Supported
16173 B:      https://bugzilla.kernel.org
16174 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
16175 F:      drivers/powercap/dtpm*
16176 F:      include/linux/dtpm.h
16177
16178 POWER STATE COORDINATION INTERFACE (PSCI)
16179 M:      Mark Rutland <mark.rutland@arm.com>
16180 M:      Lorenzo Pieralisi <lpieralisi@kernel.org>
16181 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16182 S:      Maintained
16183 F:      drivers/firmware/psci/
16184 F:      include/linux/psci.h
16185 F:      include/uapi/linux/psci.h
16186
16187 POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
16188 M:      Sebastian Reichel <sre@kernel.org>
16189 L:      linux-pm@vger.kernel.org
16190 S:      Maintained
16191 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
16192 F:      Documentation/ABI/testing/sysfs-class-power
16193 F:      Documentation/devicetree/bindings/power/supply/
16194 F:      drivers/power/supply/
16195 F:      include/linux/power/
16196 F:      include/linux/power_supply.h
16197
16198 POWERNV OPERATOR PANEL LCD DISPLAY DRIVER
16199 M:      Suraj Jitindar Singh <sjitindarsingh@gmail.com>
16200 L:      linuxppc-dev@lists.ozlabs.org
16201 S:      Maintained
16202 F:      drivers/char/powernv-op-panel.c
16203
16204 PPP OVER ATM (RFC 2364)
16205 M:      Mitchell Blank Jr <mitch@sfgoth.com>
16206 S:      Maintained
16207 F:      include/uapi/linux/atmppp.h
16208 F:      net/atm/pppoatm.c
16209
16210 PPP OVER ETHERNET
16211 M:      Michal Ostrowski <mostrows@earthlink.net>
16212 S:      Maintained
16213 F:      drivers/net/ppp/pppoe.c
16214 F:      drivers/net/ppp/pppox.c
16215
16216 PPP OVER L2TP
16217 M:      James Chapman <jchapman@katalix.com>
16218 S:      Maintained
16219 F:      include/linux/if_pppol2tp.h
16220 F:      include/uapi/linux/if_pppol2tp.h
16221 F:      net/l2tp/l2tp_ppp.c
16222
16223 PPP PROTOCOL DRIVERS AND COMPRESSORS
16224 M:      Paul Mackerras <paulus@samba.org>
16225 L:      linux-ppp@vger.kernel.org
16226 S:      Maintained
16227 F:      drivers/net/ppp/ppp_*
16228
16229 PPS SUPPORT
16230 M:      Rodolfo Giometti <giometti@enneenne.com>
16231 L:      linuxpps@ml.enneenne.com (subscribers-only)
16232 S:      Maintained
16233 W:      http://wiki.enneenne.com/index.php/LinuxPPS_support
16234 F:      Documentation/ABI/testing/sysfs-pps
16235 F:      Documentation/devicetree/bindings/pps/pps-gpio.txt
16236 F:      Documentation/driver-api/pps.rst
16237 F:      drivers/pps/
16238 F:      include/linux/pps*.h
16239 F:      include/uapi/linux/pps.h
16240
16241 PPTP DRIVER
16242 M:      Dmitry Kozlov <xeb@mail.ru>
16243 L:      netdev@vger.kernel.org
16244 S:      Maintained
16245 W:      http://sourceforge.net/projects/accel-pptp
16246 F:      drivers/net/ppp/pptp.c
16247
16248 PRESSURE STALL INFORMATION (PSI)
16249 M:      Johannes Weiner <hannes@cmpxchg.org>
16250 M:      Suren Baghdasaryan <surenb@google.com>
16251 S:      Maintained
16252 F:      include/linux/psi*
16253 F:      kernel/sched/psi.c
16254
16255 PRINTK
16256 M:      Petr Mladek <pmladek@suse.com>
16257 M:      Sergey Senozhatsky <senozhatsky@chromium.org>
16258 R:      Steven Rostedt <rostedt@goodmis.org>
16259 R:      John Ogness <john.ogness@linutronix.de>
16260 S:      Maintained
16261 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/printk/linux.git
16262 F:      include/linux/printk.h
16263 F:      kernel/printk/
16264
16265 PRINTK INDEXING
16266 R:      Chris Down <chris@chrisdown.name>
16267 S:      Maintained
16268 F:      Documentation/core-api/printk-index.rst
16269 F:      kernel/printk/index.c
16270 K:      printk_index
16271
16272 PROC FILESYSTEM
16273 L:      linux-kernel@vger.kernel.org
16274 L:      linux-fsdevel@vger.kernel.org
16275 S:      Maintained
16276 F:      Documentation/filesystems/proc.rst
16277 F:      fs/proc/
16278 F:      include/linux/proc_fs.h
16279 F:      tools/testing/selftests/proc/
16280
16281 PROC SYSCTL
16282 M:      Luis Chamberlain <mcgrof@kernel.org>
16283 M:      Kees Cook <keescook@chromium.org>
16284 M:      Iurii Zaikin <yzaikin@google.com>
16285 L:      linux-kernel@vger.kernel.org
16286 L:      linux-fsdevel@vger.kernel.org
16287 S:      Maintained
16288 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mcgrof/linux.git sysctl-next
16289 F:      fs/proc/proc_sysctl.c
16290 F:      include/linux/sysctl.h
16291 F:      kernel/sysctl-test.c
16292 F:      kernel/sysctl.c
16293 F:      tools/testing/selftests/sysctl/
16294
16295 PS3 NETWORK SUPPORT
16296 M:      Geoff Levand <geoff@infradead.org>
16297 L:      netdev@vger.kernel.org
16298 L:      linuxppc-dev@lists.ozlabs.org
16299 S:      Maintained
16300 F:      drivers/net/ethernet/toshiba/ps3_gelic_net.*
16301
16302 PS3 PLATFORM SUPPORT
16303 M:      Geoff Levand <geoff@infradead.org>
16304 L:      linuxppc-dev@lists.ozlabs.org
16305 S:      Maintained
16306 F:      arch/powerpc/boot/ps3*
16307 F:      arch/powerpc/include/asm/lv1call.h
16308 F:      arch/powerpc/include/asm/ps3*.h
16309 F:      arch/powerpc/platforms/ps3/
16310 F:      drivers/*/ps3*
16311 F:      drivers/ps3/
16312 F:      drivers/rtc/rtc-ps3.c
16313 F:      drivers/usb/host/*ps3.c
16314 F:      sound/ppc/snd_ps3*
16315
16316 PS3VRAM DRIVER
16317 M:      Jim Paris <jim@jtan.com>
16318 M:      Geoff Levand <geoff@infradead.org>
16319 L:      linuxppc-dev@lists.ozlabs.org
16320 S:      Maintained
16321 F:      drivers/block/ps3vram.c
16322
16323 PSAMPLE PACKET SAMPLING SUPPORT
16324 M:      Yotam Gigi <yotam.gi@gmail.com>
16325 S:      Maintained
16326 F:      include/net/psample.h
16327 F:      include/uapi/linux/psample.h
16328 F:      net/psample
16329
16330 PSTORE FILESYSTEM
16331 M:      Kees Cook <keescook@chromium.org>
16332 M:      Anton Vorontsov <anton@enomsg.org>
16333 M:      Colin Cross <ccross@android.com>
16334 M:      Tony Luck <tony.luck@intel.com>
16335 S:      Maintained
16336 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/pstore
16337 F:      Documentation/admin-guide/ramoops.rst
16338 F:      Documentation/admin-guide/pstore-blk.rst
16339 F:      Documentation/devicetree/bindings/reserved-memory/ramoops.yaml
16340 F:      drivers/acpi/apei/erst.c
16341 F:      drivers/firmware/efi/efi-pstore.c
16342 F:      fs/pstore/
16343 F:      include/linux/pstore*
16344 K:      \b(pstore|ramoops)
16345
16346 PTP HARDWARE CLOCK SUPPORT
16347 M:      Richard Cochran <richardcochran@gmail.com>
16348 L:      netdev@vger.kernel.org
16349 S:      Maintained
16350 W:      http://linuxptp.sourceforge.net/
16351 F:      Documentation/ABI/testing/sysfs-ptp
16352 F:      Documentation/driver-api/ptp.rst
16353 F:      drivers/net/phy/dp83640*
16354 F:      drivers/ptp/*
16355 F:      include/linux/ptp_cl*
16356
16357 PTP VIRTUAL CLOCK SUPPORT
16358 M:      Yangbo Lu <yangbo.lu@nxp.com>
16359 L:      netdev@vger.kernel.org
16360 S:      Maintained
16361 F:      drivers/ptp/ptp_vclock.c
16362 F:      net/ethtool/phc_vclocks.c
16363
16364 PTRACE SUPPORT
16365 M:      Oleg Nesterov <oleg@redhat.com>
16366 S:      Maintained
16367 F:      arch/*/*/ptrace*.c
16368 F:      arch/*/include/asm/ptrace*.h
16369 F:      arch/*/ptrace*.c
16370 F:      include/asm-generic/syscall.h
16371 F:      include/linux/ptrace.h
16372 F:      include/linux/regset.h
16373 F:      include/uapi/linux/ptrace.h
16374 F:      kernel/ptrace.c
16375
16376 PULSE8-CEC DRIVER
16377 M:      Hans Verkuil <hverkuil@xs4all.nl>
16378 L:      linux-media@vger.kernel.org
16379 S:      Maintained
16380 T:      git git://linuxtv.org/media_tree.git
16381 F:      Documentation/admin-guide/media/pulse8-cec.rst
16382 F:      drivers/media/cec/usb/pulse8/
16383
16384 PURELIFI PLFXLC DRIVER
16385 M:      Srinivasan Raju <srini.raju@purelifi.com>
16386 L:      linux-wireless@vger.kernel.org
16387 S:      Supported
16388 F:      drivers/net/wireless/purelifi/plfxlc/
16389
16390 PVRUSB2 VIDEO4LINUX DRIVER
16391 M:      Mike Isely <isely@pobox.com>
16392 L:      pvrusb2@isely.net       (subscribers-only)
16393 L:      linux-media@vger.kernel.org
16394 S:      Maintained
16395 W:      http://www.isely.net/pvrusb2/
16396 T:      git git://linuxtv.org/media_tree.git
16397 F:      Documentation/driver-api/media/drivers/pvrusb2*
16398 F:      drivers/media/usb/pvrusb2/
16399
16400 PWC WEBCAM DRIVER
16401 M:      Hans Verkuil <hverkuil@xs4all.nl>
16402 L:      linux-media@vger.kernel.org
16403 S:      Odd Fixes
16404 T:      git git://linuxtv.org/media_tree.git
16405 F:      drivers/media/usb/pwc/*
16406 F:      include/trace/events/pwc.h
16407
16408 PWM FAN DRIVER
16409 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
16410 L:      linux-hwmon@vger.kernel.org
16411 S:      Supported
16412 F:      Documentation/devicetree/bindings/hwmon/pwm-fan.txt
16413 F:      Documentation/hwmon/pwm-fan.rst
16414 F:      drivers/hwmon/pwm-fan.c
16415
16416 PWM IR Transmitter
16417 M:      Sean Young <sean@mess.org>
16418 L:      linux-media@vger.kernel.org
16419 S:      Maintained
16420 F:      drivers/media/rc/pwm-ir-tx.c
16421
16422 PWM SUBSYSTEM
16423 M:      Thierry Reding <thierry.reding@gmail.com>
16424 R:      Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
16425 L:      linux-pwm@vger.kernel.org
16426 S:      Maintained
16427 Q:      https://patchwork.ozlabs.org/project/linux-pwm/list/
16428 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git
16429 F:      Documentation/devicetree/bindings/gpio/gpio-mvebu.txt
16430 F:      Documentation/devicetree/bindings/pwm/
16431 F:      Documentation/driver-api/pwm.rst
16432 F:      drivers/gpio/gpio-mvebu.c
16433 F:      drivers/pwm/
16434 F:      drivers/video/backlight/pwm_bl.c
16435 F:      include/dt-bindings/pwm/
16436 F:      include/linux/pwm.h
16437 F:      include/linux/pwm_backlight.h
16438 K:      pwm_(config|apply_state|ops)
16439
16440 PXA GPIO DRIVER
16441 M:      Robert Jarzmik <robert.jarzmik@free.fr>
16442 L:      linux-gpio@vger.kernel.org
16443 S:      Maintained
16444 F:      drivers/gpio/gpio-pxa.c
16445
16446 PXA MMCI DRIVER
16447 S:      Orphan
16448
16449 PXA RTC DRIVER
16450 M:      Robert Jarzmik <robert.jarzmik@free.fr>
16451 L:      linux-rtc@vger.kernel.org
16452 S:      Maintained
16453
16454 PXA2xx/PXA3xx SUPPORT
16455 M:      Daniel Mack <daniel@zonque.org>
16456 M:      Haojian Zhuang <haojian.zhuang@gmail.com>
16457 M:      Robert Jarzmik <robert.jarzmik@free.fr>
16458 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16459 S:      Maintained
16460 T:      git git://github.com/hzhuang1/linux.git
16461 T:      git git://github.com/rjarzmik/linux.git
16462 F:      arch/arm/boot/dts/pxa*
16463 F:      arch/arm/mach-pxa/
16464 F:      drivers/dma/pxa*
16465 F:      drivers/pcmcia/pxa2xx*
16466 F:      drivers/pinctrl/pxa/
16467 F:      drivers/spi/spi-pxa2xx*
16468 F:      drivers/usb/gadget/udc/pxa2*
16469 F:      include/sound/pxa2xx-lib.h
16470 F:      sound/arm/pxa*
16471 F:      sound/soc/pxa/
16472
16473 QAT DRIVER
16474 M:      Giovanni Cabiddu <giovanni.cabiddu@intel.com>
16475 L:      qat-linux@intel.com
16476 S:      Supported
16477 F:      drivers/crypto/qat/
16478
16479 QCOM AUDIO (ASoC) DRIVERS
16480 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
16481 M:      Banajit Goswami <bgoswami@quicinc.com>
16482 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16483 S:      Supported
16484 F:      sound/soc/codecs/lpass-va-macro.c
16485 F:      sound/soc/codecs/lpass-wsa-macro.*
16486 F:      sound/soc/codecs/msm8916-wcd-analog.c
16487 F:      sound/soc/codecs/msm8916-wcd-digital.c
16488 F:      sound/soc/codecs/wcd9335.*
16489 F:      sound/soc/codecs/wcd934x.c
16490 F:      sound/soc/codecs/wcd-clsh-v2.*
16491 F:      sound/soc/codecs/wsa881x.c
16492 F:      sound/soc/qcom/
16493
16494 QCOM EMBEDDED USB DEBUGGER (EUD)
16495 M:      Souradeep Chowdhury <quic_schowdhu@quicinc.com>
16496 L:      linux-arm-msm@vger.kernel.org
16497 S:      Maintained
16498 F:      Documentation/ABI/testing/sysfs-driver-eud
16499 F:      Documentation/devicetree/bindings/soc/qcom/qcom,eud.yaml
16500 F:      drivers/usb/misc/qcom_eud.c
16501
16502 QCOM IPA DRIVER
16503 M:      Alex Elder <elder@kernel.org>
16504 L:      netdev@vger.kernel.org
16505 S:      Supported
16506 F:      drivers/net/ipa/
16507
16508 QEMU MACHINE EMULATOR AND VIRTUALIZER SUPPORT
16509 M:      Gabriel Somlo <somlo@cmu.edu>
16510 M:      "Michael S. Tsirkin" <mst@redhat.com>
16511 L:      qemu-devel@nongnu.org
16512 S:      Maintained
16513 F:      drivers/firmware/qemu_fw_cfg.c
16514 F:      include/uapi/linux/qemu_fw_cfg.h
16515
16516 QIB DRIVER
16517 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
16518 L:      linux-rdma@vger.kernel.org
16519 S:      Supported
16520 F:      drivers/infiniband/hw/qib/
16521
16522 QLOGIC QL41xxx FCOE DRIVER
16523 M:      Saurav Kashyap <skashyap@marvell.com>
16524 M:      Javed Hasan <jhasan@marvell.com>
16525 M:      GR-QLogic-Storage-Upstream@marvell.com
16526 L:      linux-scsi@vger.kernel.org
16527 S:      Supported
16528 F:      drivers/scsi/qedf/
16529
16530 QLOGIC QL41xxx ISCSI DRIVER
16531 M:      Nilesh Javali <njavali@marvell.com>
16532 M:      Manish Rangankar <mrangankar@marvell.com>
16533 M:      GR-QLogic-Storage-Upstream@marvell.com
16534 L:      linux-scsi@vger.kernel.org
16535 S:      Supported
16536 F:      drivers/scsi/qedi/
16537
16538 QLOGIC QL4xxx ETHERNET DRIVER
16539 M:      Ariel Elior <aelior@marvell.com>
16540 M:      Manish Chopra <manishc@marvell.com>
16541 L:      netdev@vger.kernel.org
16542 S:      Supported
16543 F:      drivers/net/ethernet/qlogic/qed/
16544 F:      drivers/net/ethernet/qlogic/qede/
16545 F:      include/linux/qed/
16546
16547 QLOGIC QL4xxx RDMA DRIVER
16548 M:      Michal Kalderon <mkalderon@marvell.com>
16549 M:      Ariel Elior <aelior@marvell.com>
16550 L:      linux-rdma@vger.kernel.org
16551 S:      Supported
16552 F:      drivers/infiniband/hw/qedr/
16553 F:      include/uapi/rdma/qedr-abi.h
16554
16555 QLOGIC QLA1280 SCSI DRIVER
16556 M:      Michael Reed <mdr@sgi.com>
16557 L:      linux-scsi@vger.kernel.org
16558 S:      Maintained
16559 F:      drivers/scsi/qla1280.[ch]
16560
16561 QLOGIC QLA2XXX FC-SCSI DRIVER
16562 M:      Nilesh Javali <njavali@marvell.com>
16563 M:      GR-QLogic-Storage-Upstream@marvell.com
16564 L:      linux-scsi@vger.kernel.org
16565 S:      Supported
16566 F:      drivers/scsi/qla2xxx/
16567
16568 QLOGIC QLA3XXX NETWORK DRIVER
16569 M:      GR-Linux-NIC-Dev@marvell.com
16570 L:      netdev@vger.kernel.org
16571 S:      Supported
16572 F:      drivers/net/ethernet/qlogic/qla3xxx.*
16573
16574 QLOGIC QLA4XXX iSCSI DRIVER
16575 M:      Nilesh Javali <njavali@marvell.com>
16576 M:      Manish Rangankar <mrangankar@marvell.com>
16577 M:      GR-QLogic-Storage-Upstream@marvell.com
16578 L:      linux-scsi@vger.kernel.org
16579 S:      Supported
16580 F:      drivers/scsi/qla4xxx/
16581
16582 QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
16583 M:      Shahed Shaikh <shshaikh@marvell.com>
16584 M:      Manish Chopra <manishc@marvell.com>
16585 M:      GR-Linux-NIC-Dev@marvell.com
16586 L:      netdev@vger.kernel.org
16587 S:      Supported
16588 F:      drivers/net/ethernet/qlogic/qlcnic/
16589
16590 QLOGIC QLGE 10Gb ETHERNET DRIVER
16591 M:      Manish Chopra <manishc@marvell.com>
16592 M:      GR-Linux-NIC-Dev@marvell.com
16593 M:      Coiby Xu <coiby.xu@gmail.com>
16594 L:      netdev@vger.kernel.org
16595 S:      Supported
16596 F:      Documentation/networking/device_drivers/qlogic/qlge.rst
16597 F:      drivers/staging/qlge/
16598
16599 QM1D1B0004 MEDIA DRIVER
16600 M:      Akihiro Tsukada <tskd08@gmail.com>
16601 L:      linux-media@vger.kernel.org
16602 S:      Odd Fixes
16603 F:      drivers/media/tuners/qm1d1b0004*
16604
16605 QM1D1C0042 MEDIA DRIVER
16606 M:      Akihiro Tsukada <tskd08@gmail.com>
16607 L:      linux-media@vger.kernel.org
16608 S:      Odd Fixes
16609 F:      drivers/media/tuners/qm1d1c0042*
16610
16611 QNX4 FILESYSTEM
16612 M:      Anders Larsen <al@alarsen.net>
16613 S:      Maintained
16614 W:      http://www.alarsen.net/linux/qnx4fs/
16615 F:      fs/qnx4/
16616 F:      include/uapi/linux/qnx4_fs.h
16617 F:      include/uapi/linux/qnxtypes.h
16618
16619 QORIQ DPAA2 FSL-MC BUS DRIVER
16620 M:      Stuart Yoder <stuyoder@gmail.com>
16621 M:      Laurentiu Tudor <laurentiu.tudor@nxp.com>
16622 L:      linux-kernel@vger.kernel.org
16623 S:      Maintained
16624 F:      Documentation/ABI/stable/sysfs-bus-fsl-mc
16625 F:      Documentation/devicetree/bindings/misc/fsl,qoriq-mc.txt
16626 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/overview.rst
16627 F:      drivers/bus/fsl-mc/
16628 F:      include/uapi/linux/fsl_mc.h
16629
16630 QT1010 MEDIA DRIVER
16631 M:      Antti Palosaari <crope@iki.fi>
16632 L:      linux-media@vger.kernel.org
16633 S:      Maintained
16634 W:      https://linuxtv.org
16635 W:      http://palosaari.fi/linux/
16636 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16637 T:      git git://linuxtv.org/anttip/media_tree.git
16638 F:      drivers/media/tuners/qt1010*
16639
16640 QUALCOMM ATHEROS ATH10K WIRELESS DRIVER
16641 M:      Kalle Valo <kvalo@kernel.org>
16642 L:      ath10k@lists.infradead.org
16643 S:      Supported
16644 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath10k
16645 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
16646 F:      drivers/net/wireless/ath/ath10k/
16647 F:      Documentation/devicetree/bindings/net/wireless/qcom,ath10k.txt
16648
16649 QUALCOMM ATHEROS ATH11K WIRELESS DRIVER
16650 M:      Kalle Valo <kvalo@kernel.org>
16651 L:      ath11k@lists.infradead.org
16652 S:      Supported
16653 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
16654 F:      Documentation/devicetree/bindings/net/wireless/qcom,ath11k.yaml
16655 F:      drivers/net/wireless/ath/ath11k/
16656
16657 QUALCOMM ATHEROS ATH9K WIRELESS DRIVER
16658 M:      Toke Høiland-Jørgensen <toke@toke.dk>
16659 L:      linux-wireless@vger.kernel.org
16660 S:      Maintained
16661 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath9k
16662 F:      Documentation/devicetree/bindings/net/wireless/qca,ath9k.yaml
16663 F:      drivers/net/wireless/ath/ath9k/
16664
16665 QUALCOMM BAM-DMUX WWAN NETWORK DRIVER
16666 M:      Stephan Gerhold <stephan@gerhold.net>
16667 L:      netdev@vger.kernel.org
16668 L:      linux-arm-msm@vger.kernel.org
16669 S:      Maintained
16670 F:      Documentation/devicetree/bindings/net/qcom,bam-dmux.yaml
16671 F:      drivers/net/wwan/qcom_bam_dmux.c
16672
16673 QUALCOMM CAMERA SUBSYSTEM DRIVER
16674 M:      Robert Foss <robert.foss@linaro.org>
16675 M:      Todor Tomov <todor.too@gmail.com>
16676 L:      linux-media@vger.kernel.org
16677 S:      Maintained
16678 F:      Documentation/admin-guide/media/qcom_camss.rst
16679 F:      Documentation/devicetree/bindings/media/*camss*
16680 F:      drivers/media/platform/qcom/camss/
16681
16682 QUALCOMM CLOCK DRIVERS
16683 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
16684 L:      linux-arm-msm@vger.kernel.org
16685 S:      Supported
16686 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/qcom/linux.git
16687 F:      Documentation/devicetree/bindings/clock/qcom,*
16688 F:      drivers/clk/qcom/
16689 F:      include/dt-bindings/clock/qcom,*
16690
16691 QUALCOMM CORE POWER REDUCTION (CPR) AVS DRIVER
16692 M:      Niklas Cassel <nks@flawful.org>
16693 L:      linux-pm@vger.kernel.org
16694 L:      linux-arm-msm@vger.kernel.org
16695 S:      Maintained
16696 F:      Documentation/devicetree/bindings/power/avs/qcom,cpr.yaml
16697 F:      drivers/soc/qcom/cpr.c
16698
16699 QUALCOMM CPUFREQ DRIVER MSM8996/APQ8096
16700 M:      Ilia Lin <ilia.lin@kernel.org>
16701 L:      linux-pm@vger.kernel.org
16702 S:      Maintained
16703 F:      Documentation/devicetree/bindings/cpufreq/qcom-cpufreq-nvmem.yaml
16704 F:      Documentation/devicetree/bindings/opp/opp-v2-kryo-cpu.yaml
16705 F:      drivers/cpufreq/qcom-cpufreq-nvmem.c
16706
16707 QUALCOMM CRYPTO DRIVERS
16708 M:      Thara Gopinath <thara.gopinath@gmail.com>
16709 L:      linux-crypto@vger.kernel.org
16710 L:      linux-arm-msm@vger.kernel.org
16711 S:      Maintained
16712 F:      drivers/crypto/qce/
16713
16714 QUALCOMM EMAC GIGABIT ETHERNET DRIVER
16715 M:      Timur Tabi <timur@kernel.org>
16716 L:      netdev@vger.kernel.org
16717 S:      Maintained
16718 F:      drivers/net/ethernet/qualcomm/emac/
16719
16720 QUALCOMM ETHQOS ETHERNET DRIVER
16721 M:      Vinod Koul <vkoul@kernel.org>
16722 L:      netdev@vger.kernel.org
16723 S:      Maintained
16724 F:      Documentation/devicetree/bindings/net/qcom,ethqos.txt
16725 F:      drivers/net/ethernet/stmicro/stmmac/dwmac-qcom-ethqos.c
16726
16727 QUALCOMM FASTRPC DRIVER
16728 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
16729 M:      Amol Maheshwari <amahesh@qti.qualcomm.com>
16730 L:      linux-arm-msm@vger.kernel.org
16731 S:      Maintained
16732 F:      Documentation/devicetree/bindings/misc/qcom,fastrpc.txt
16733 F:      drivers/misc/fastrpc.c
16734 F:      include/uapi/misc/fastrpc.h
16735
16736 QUALCOMM HEXAGON ARCHITECTURE
16737 M:      Brian Cain <bcain@quicinc.com>
16738 L:      linux-hexagon@vger.kernel.org
16739 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bcain/linux.git
16740 S:      Supported
16741 F:      arch/hexagon/
16742
16743 QUALCOMM HIDMA DRIVER
16744 M:      Sinan Kaya <okaya@kernel.org>
16745 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16746 L:      linux-arm-msm@vger.kernel.org
16747 L:      dmaengine@vger.kernel.org
16748 S:      Supported
16749 F:      drivers/dma/qcom/hidma*
16750
16751 QUALCOMM I2C CCI DRIVER
16752 M:      Loic Poulain <loic.poulain@linaro.org>
16753 M:      Robert Foss <robert.foss@linaro.org>
16754 L:      linux-i2c@vger.kernel.org
16755 L:      linux-arm-msm@vger.kernel.org
16756 S:      Maintained
16757 F:      Documentation/devicetree/bindings/i2c/i2c-qcom-cci.txt
16758 F:      drivers/i2c/busses/i2c-qcom-cci.c
16759
16760 QUALCOMM INTERCONNECT BWMON DRIVER
16761 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
16762 L:      linux-arm-msm@vger.kernel.org
16763 S:      Maintained
16764 F:      Documentation/devicetree/bindings/interconnect/qcom,msm8998-bwmon.yaml
16765 F:      drivers/soc/qcom/icc-bwmon.c
16766
16767 QUALCOMM IOMMU
16768 M:      Rob Clark <robdclark@gmail.com>
16769 L:      iommu@lists.linux.dev
16770 L:      linux-arm-msm@vger.kernel.org
16771 S:      Maintained
16772 F:      drivers/iommu/arm/arm-smmu/qcom_iommu.c
16773
16774 QUALCOMM IPC ROUTER (QRTR) DRIVER
16775 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
16776 L:      linux-arm-msm@vger.kernel.org
16777 S:      Maintained
16778 F:      include/trace/events/qrtr.h
16779 F:      include/uapi/linux/qrtr.h
16780 F:      net/qrtr/
16781
16782 QUALCOMM IPCC MAILBOX DRIVER
16783 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
16784 L:      linux-arm-msm@vger.kernel.org
16785 S:      Supported
16786 F:      Documentation/devicetree/bindings/mailbox/qcom-ipcc.yaml
16787 F:      drivers/mailbox/qcom-ipcc.c
16788 F:      include/dt-bindings/mailbox/qcom-ipcc.h
16789
16790 QUALCOMM IPQ4019 USB PHY DRIVER
16791 M:      Robert Marko <robert.marko@sartura.hr>
16792 M:      Luka Perkov <luka.perkov@sartura.hr>
16793 L:      linux-arm-msm@vger.kernel.org
16794 S:      Maintained
16795 F:      Documentation/devicetree/bindings/phy/qcom-usb-ipq4019-phy.yaml
16796 F:      drivers/phy/qualcomm/phy-qcom-ipq4019-usb.c
16797
16798 QUALCOMM IPQ4019 VQMMC REGULATOR DRIVER
16799 M:      Robert Marko <robert.marko@sartura.hr>
16800 M:      Luka Perkov <luka.perkov@sartura.hr>
16801 L:      linux-arm-msm@vger.kernel.org
16802 S:      Maintained
16803 F:      Documentation/devicetree/bindings/regulator/vqmmc-ipq4019-regulator.yaml
16804 F:      drivers/regulator/vqmmc-ipq4019-regulator.c
16805
16806 QUALCOMM NAND CONTROLLER DRIVER
16807 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
16808 L:      linux-mtd@lists.infradead.org
16809 L:      linux-arm-msm@vger.kernel.org
16810 S:      Maintained
16811 F:      Documentation/devicetree/bindings/mtd/qcom,nandc.yaml
16812 F:      drivers/mtd/nand/raw/qcom_nandc.c
16813
16814 QUALCOMM RMNET DRIVER
16815 M:      Subash Abhinov Kasiviswanathan <quic_subashab@quicinc.com>
16816 M:      Sean Tranchetti <quic_stranche@quicinc.com>
16817 L:      netdev@vger.kernel.org
16818 S:      Maintained
16819 F:      Documentation/networking/device_drivers/cellular/qualcomm/rmnet.rst
16820 F:      drivers/net/ethernet/qualcomm/rmnet/
16821 F:      include/linux/if_rmnet.h
16822
16823 QUALCOMM TSENS THERMAL DRIVER
16824 M:      Amit Kucheria <amitk@kernel.org>
16825 M:      Thara Gopinath <thara.gopinath@gmail.com>
16826 L:      linux-pm@vger.kernel.org
16827 L:      linux-arm-msm@vger.kernel.org
16828 S:      Maintained
16829 F:      Documentation/devicetree/bindings/thermal/qcom-tsens.yaml
16830 F:      drivers/thermal/qcom/
16831
16832 QUALCOMM VENUS VIDEO ACCELERATOR DRIVER
16833 M:      Stanimir Varbanov <stanimir.varbanov@linaro.org>
16834 L:      linux-media@vger.kernel.org
16835 L:      linux-arm-msm@vger.kernel.org
16836 S:      Maintained
16837 T:      git git://linuxtv.org/media_tree.git
16838 F:      Documentation/devicetree/bindings/media/*venus*
16839 F:      drivers/media/platform/qcom/venus/
16840
16841 QUALCOMM WCN36XX WIRELESS DRIVER
16842 M:      Loic Poulain <loic.poulain@linaro.org>
16843 L:      wcn36xx@lists.infradead.org
16844 S:      Supported
16845 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wcn36xx
16846 F:      drivers/net/wireless/ath/wcn36xx/
16847
16848 QUANTENNA QTNFMAC WIRELESS DRIVER
16849 M:      Igor Mitsyanko <imitsyanko@quantenna.com>
16850 R:      Sergey Matyukevich <geomatsi@gmail.com>
16851 L:      linux-wireless@vger.kernel.org
16852 S:      Maintained
16853 F:      drivers/net/wireless/quantenna
16854
16855 RADEON and AMDGPU DRM DRIVERS
16856 M:      Alex Deucher <alexander.deucher@amd.com>
16857 M:      Christian König <christian.koenig@amd.com>
16858 M:      Pan, Xinhui <Xinhui.Pan@amd.com>
16859 L:      amd-gfx@lists.freedesktop.org
16860 S:      Supported
16861 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
16862 B:      https://gitlab.freedesktop.org/drm/amd/-/issues
16863 C:      irc://irc.oftc.net/radeon
16864 F:      Documentation/gpu/amdgpu/
16865 F:      drivers/gpu/drm/amd/
16866 F:      drivers/gpu/drm/radeon/
16867 F:      include/uapi/drm/amdgpu_drm.h
16868 F:      include/uapi/drm/radeon_drm.h
16869
16870 RADEON FRAMEBUFFER DISPLAY DRIVER
16871 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
16872 L:      linux-fbdev@vger.kernel.org
16873 S:      Maintained
16874 F:      drivers/video/fbdev/aty/radeon*
16875 F:      include/uapi/linux/radeonfb.h
16876
16877 RADIOSHARK RADIO DRIVER
16878 M:      Hans Verkuil <hverkuil@xs4all.nl>
16879 L:      linux-media@vger.kernel.org
16880 S:      Maintained
16881 T:      git git://linuxtv.org/media_tree.git
16882 F:      drivers/media/radio/radio-shark.c
16883
16884 RADIOSHARK2 RADIO DRIVER
16885 M:      Hans Verkuil <hverkuil@xs4all.nl>
16886 L:      linux-media@vger.kernel.org
16887 S:      Maintained
16888 T:      git git://linuxtv.org/media_tree.git
16889 F:      drivers/media/radio/radio-shark2.c
16890 F:      drivers/media/radio/radio-tea5777.c
16891
16892 RADOS BLOCK DEVICE (RBD)
16893 M:      Ilya Dryomov <idryomov@gmail.com>
16894 R:      Dongsheng Yang <dongsheng.yang@easystack.cn>
16895 L:      ceph-devel@vger.kernel.org
16896 S:      Supported
16897 W:      http://ceph.com/
16898 T:      git git://github.com/ceph/ceph-client.git
16899 F:      Documentation/ABI/testing/sysfs-bus-rbd
16900 F:      drivers/block/rbd.c
16901 F:      drivers/block/rbd_types.h
16902
16903 RAGE128 FRAMEBUFFER DISPLAY DRIVER
16904 M:      Paul Mackerras <paulus@samba.org>
16905 L:      linux-fbdev@vger.kernel.org
16906 S:      Maintained
16907 F:      drivers/video/fbdev/aty/aty128fb.c
16908
16909 RAINSHADOW-CEC DRIVER
16910 M:      Hans Verkuil <hverkuil@xs4all.nl>
16911 L:      linux-media@vger.kernel.org
16912 S:      Maintained
16913 T:      git git://linuxtv.org/media_tree.git
16914 F:      drivers/media/cec/usb/rainshadow/
16915
16916 RALINK MIPS ARCHITECTURE
16917 M:      John Crispin <john@phrozen.org>
16918 L:      linux-mips@vger.kernel.org
16919 S:      Maintained
16920 F:      arch/mips/ralink
16921
16922 RALINK MT7621 MIPS ARCHITECTURE
16923 M:      Arınç ÜNAL <arinc.unal@arinc9.com>
16924 M:      Sergio Paracuellos <sergio.paracuellos@gmail.com>
16925 L:      linux-mips@vger.kernel.org
16926 S:      Maintained
16927 F:      arch/mips/boot/dts/ralink/mt7621*
16928
16929 RALINK PINCTRL DRIVER
16930 M:      Arınç ÜNAL <arinc.unal@arinc9.com>
16931 M:      Sergio Paracuellos <sergio.paracuellos@gmail.com>
16932 L:      linux-mips@vger.kernel.org
16933 S:      Maintained
16934 F:      drivers/pinctrl/ralink/
16935
16936 RALINK RT2X00 WIRELESS LAN DRIVER
16937 M:      Stanislaw Gruszka <stf_xl@wp.pl>
16938 M:      Helmut Schaa <helmut.schaa@googlemail.com>
16939 L:      linux-wireless@vger.kernel.org
16940 S:      Maintained
16941 F:      drivers/net/wireless/ralink/rt2x00/
16942
16943 RAMDISK RAM BLOCK DEVICE DRIVER
16944 M:      Jens Axboe <axboe@kernel.dk>
16945 S:      Maintained
16946 F:      Documentation/admin-guide/blockdev/ramdisk.rst
16947 F:      drivers/block/brd.c
16948
16949 RANCHU VIRTUAL BOARD FOR MIPS
16950 M:      Miodrag Dinic <miodrag.dinic@mips.com>
16951 L:      linux-mips@vger.kernel.org
16952 S:      Supported
16953 F:      arch/mips/configs/generic/board-ranchu.config
16954 F:      arch/mips/generic/board-ranchu.c
16955
16956 RANDOM NUMBER DRIVER
16957 M:      "Theodore Ts'o" <tytso@mit.edu>
16958 M:      Jason A. Donenfeld <Jason@zx2c4.com>
16959 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/crng/random.git
16960 S:      Maintained
16961 F:      drivers/char/random.c
16962 F:      drivers/virt/vmgenid.c
16963
16964 RAPIDIO SUBSYSTEM
16965 M:      Matt Porter <mporter@kernel.crashing.org>
16966 M:      Alexandre Bounine <alex.bou9@gmail.com>
16967 S:      Maintained
16968 F:      drivers/rapidio/
16969
16970 RAS INFRASTRUCTURE
16971 M:      Tony Luck <tony.luck@intel.com>
16972 M:      Borislav Petkov <bp@alien8.de>
16973 L:      linux-edac@vger.kernel.org
16974 S:      Maintained
16975 F:      Documentation/admin-guide/ras.rst
16976 F:      drivers/ras/
16977 F:      include/linux/ras.h
16978 F:      include/ras/ras_event.h
16979
16980 RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
16981 L:      linux-wireless@vger.kernel.org
16982 S:      Orphan
16983 F:      drivers/net/wireless/ray*
16984
16985 RC-CORE / LIRC FRAMEWORK
16986 M:      Sean Young <sean@mess.org>
16987 L:      linux-media@vger.kernel.org
16988 S:      Maintained
16989 W:      http://linuxtv.org
16990 T:      git git://linuxtv.org/media_tree.git
16991 F:      Documentation/driver-api/media/rc-core.rst
16992 F:      Documentation/userspace-api/media/rc/
16993 F:      drivers/media/rc/
16994 F:      include/media/rc-map.h
16995 F:      include/media/rc-core.h
16996 F:      include/uapi/linux/lirc.h
16997
16998 RCMM REMOTE CONTROLS DECODER
16999 M:      Patrick Lerda <patrick9876@free.fr>
17000 S:      Maintained
17001 F:      drivers/media/rc/ir-rcmm-decoder.c
17002
17003 RCUTORTURE TEST FRAMEWORK
17004 M:      "Paul E. McKenney" <paulmck@kernel.org>
17005 M:      Josh Triplett <josh@joshtriplett.org>
17006 R:      Steven Rostedt <rostedt@goodmis.org>
17007 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
17008 R:      Lai Jiangshan <jiangshanlai@gmail.com>
17009 L:      rcu@vger.kernel.org
17010 S:      Supported
17011 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
17012 F:      tools/testing/selftests/rcutorture
17013
17014 RDACM20 Camera Sensor
17015 M:      Jacopo Mondi <jacopo+renesas@jmondi.org>
17016 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
17017 M:      Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
17018 M:      Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
17019 L:      linux-media@vger.kernel.org
17020 S:      Maintained
17021 F:      Documentation/devicetree/bindings/media/i2c/imi,rdacm2x-gmsl.yaml
17022 F:      drivers/media/i2c/max9271.c
17023 F:      drivers/media/i2c/max9271.h
17024 F:      drivers/media/i2c/rdacm20.c
17025
17026 RDACM21 Camera Sensor
17027 M:      Jacopo Mondi <jacopo+renesas@jmondi.org>
17028 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
17029 M:      Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
17030 M:      Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
17031 L:      linux-media@vger.kernel.org
17032 S:      Maintained
17033 F:      Documentation/devicetree/bindings/media/i2c/imi,rdacm2x-gmsl.yaml
17034 F:      drivers/media/i2c/max9271.c
17035 F:      drivers/media/i2c/max9271.h
17036 F:      drivers/media/i2c/rdacm21.c
17037
17038 RDC R-321X SoC
17039 M:      Florian Fainelli <florian@openwrt.org>
17040 S:      Maintained
17041
17042 RDC R6040 FAST ETHERNET DRIVER
17043 M:      Florian Fainelli <f.fainelli@gmail.com>
17044 L:      netdev@vger.kernel.org
17045 S:      Maintained
17046 F:      drivers/net/ethernet/rdc/r6040.c
17047
17048 RDMAVT - RDMA verbs software
17049 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
17050 L:      linux-rdma@vger.kernel.org
17051 S:      Supported
17052 F:      drivers/infiniband/sw/rdmavt
17053
17054 RDS - RELIABLE DATAGRAM SOCKETS
17055 M:      Santosh Shilimkar <santosh.shilimkar@oracle.com>
17056 L:      netdev@vger.kernel.org
17057 L:      linux-rdma@vger.kernel.org
17058 L:      rds-devel@oss.oracle.com (moderated for non-subscribers)
17059 S:      Supported
17060 W:      https://oss.oracle.com/projects/rds/
17061 F:      Documentation/networking/rds.rst
17062 F:      net/rds/
17063
17064 RDT - RESOURCE ALLOCATION
17065 M:      Fenghua Yu <fenghua.yu@intel.com>
17066 M:      Reinette Chatre <reinette.chatre@intel.com>
17067 L:      linux-kernel@vger.kernel.org
17068 S:      Supported
17069 F:      Documentation/x86/resctrl*
17070 F:      arch/x86/include/asm/resctrl.h
17071 F:      arch/x86/kernel/cpu/resctrl/
17072 F:      tools/testing/selftests/resctrl/
17073
17074 READ-COPY UPDATE (RCU)
17075 M:      "Paul E. McKenney" <paulmck@kernel.org>
17076 M:      Frederic Weisbecker <frederic@kernel.org> (kernel/rcu/tree_nocb.h)
17077 M:      Neeraj Upadhyay <quic_neeraju@quicinc.com> (kernel/rcu/tasks.h)
17078 M:      Josh Triplett <josh@joshtriplett.org>
17079 R:      Steven Rostedt <rostedt@goodmis.org>
17080 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
17081 R:      Lai Jiangshan <jiangshanlai@gmail.com>
17082 R:      Joel Fernandes <joel@joelfernandes.org>
17083 L:      rcu@vger.kernel.org
17084 S:      Supported
17085 W:      http://www.rdrop.com/users/paulmck/RCU/
17086 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
17087 F:      Documentation/RCU/
17088 F:      include/linux/rcu*
17089 F:      kernel/rcu/
17090 X:      Documentation/RCU/torture.rst
17091 X:      include/linux/srcu*.h
17092 X:      kernel/rcu/srcu*.c
17093
17094 REAL TIME CLOCK (RTC) SUBSYSTEM
17095 M:      Alessandro Zummo <a.zummo@towertech.it>
17096 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
17097 L:      linux-rtc@vger.kernel.org
17098 S:      Maintained
17099 Q:      http://patchwork.ozlabs.org/project/rtc-linux/list/
17100 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git
17101 F:      Documentation/admin-guide/rtc.rst
17102 F:      Documentation/devicetree/bindings/rtc/
17103 F:      drivers/rtc/
17104 F:      include/linux/platform_data/rtc-*
17105 F:      include/linux/rtc.h
17106 F:      include/linux/rtc/
17107 F:      include/uapi/linux/rtc.h
17108 F:      tools/testing/selftests/rtc/
17109
17110 REALTEK AUDIO CODECS
17111 M:      Oder Chiou <oder_chiou@realtek.com>
17112 S:      Maintained
17113 F:      include/sound/rt*.h
17114 F:      sound/soc/codecs/rt*
17115
17116 REALTEK OTTO WATCHDOG
17117 M:      Sander Vanheule <sander@svanheule.net>
17118 L:      linux-watchdog@vger.kernel.org
17119 S:      Maintained
17120 F:      Documentation/devicetree/bindings/watchdog/realtek,otto-wdt.yaml
17121 F:      drivers/watchdog/realtek_otto_wdt.c
17122
17123 REALTEK RTL83xx SMI DSA ROUTER CHIPS
17124 M:      Linus Walleij <linus.walleij@linaro.org>
17125 M:      Alvin Šipraga <alsi@bang-olufsen.dk>
17126 S:      Maintained
17127 F:      Documentation/devicetree/bindings/net/dsa/realtek.yaml
17128 F:      drivers/net/dsa/realtek/*
17129
17130 REALTEK WIRELESS DRIVER (rtlwifi family)
17131 M:      Ping-Ke Shih <pkshih@realtek.com>
17132 L:      linux-wireless@vger.kernel.org
17133 S:      Maintained
17134 W:      https://wireless.wiki.kernel.org/
17135 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
17136 F:      drivers/net/wireless/realtek/rtlwifi/
17137
17138 REALTEK WIRELESS DRIVER (rtw88)
17139 M:      Yan-Hsuan Chuang <tony0620emma@gmail.com>
17140 L:      linux-wireless@vger.kernel.org
17141 S:      Maintained
17142 F:      drivers/net/wireless/realtek/rtw88/
17143
17144 REALTEK WIRELESS DRIVER (rtw89)
17145 M:      Ping-Ke Shih <pkshih@realtek.com>
17146 L:      linux-wireless@vger.kernel.org
17147 S:      Maintained
17148 F:      drivers/net/wireless/realtek/rtw89/
17149
17150 REDPINE WIRELESS DRIVER
17151 M:      Amitkumar Karwar <amitkarwar@gmail.com>
17152 M:      Siva Rebbagondla <siva8118@gmail.com>
17153 L:      linux-wireless@vger.kernel.org
17154 S:      Maintained
17155 F:      drivers/net/wireless/rsi/
17156
17157 REGISTER MAP ABSTRACTION
17158 M:      Mark Brown <broonie@kernel.org>
17159 L:      linux-kernel@vger.kernel.org
17160 S:      Supported
17161 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
17162 F:      Documentation/devicetree/bindings/regmap/
17163 F:      drivers/base/regmap/
17164 F:      include/linux/regmap.h
17165
17166 REISERFS FILE SYSTEM
17167 L:      reiserfs-devel@vger.kernel.org
17168 S:      Supported
17169 F:      fs/reiserfs/
17170
17171 REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
17172 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
17173 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
17174 L:      linux-remoteproc@vger.kernel.org
17175 S:      Maintained
17176 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/remoteproc/linux.git rproc-next
17177 F:      Documentation/ABI/testing/sysfs-class-remoteproc
17178 F:      Documentation/devicetree/bindings/remoteproc/
17179 F:      Documentation/staging/remoteproc.rst
17180 F:      drivers/remoteproc/
17181 F:      include/linux/remoteproc.h
17182 F:      include/linux/remoteproc/
17183
17184 REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM
17185 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
17186 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
17187 L:      linux-remoteproc@vger.kernel.org
17188 S:      Maintained
17189 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/remoteproc/linux.git rpmsg-next
17190 F:      Documentation/ABI/testing/sysfs-bus-rpmsg
17191 F:      Documentation/staging/rpmsg.rst
17192 F:      drivers/rpmsg/
17193 F:      include/linux/rpmsg.h
17194 F:      include/linux/rpmsg/
17195 F:      include/uapi/linux/rpmsg.h
17196 F:      samples/rpmsg/
17197
17198 REMOTE PROCESSOR MESSAGING (RPMSG) WWAN CONTROL DRIVER
17199 M:      Stephan Gerhold <stephan@gerhold.net>
17200 L:      netdev@vger.kernel.org
17201 L:      linux-remoteproc@vger.kernel.org
17202 S:      Maintained
17203 F:      drivers/net/wwan/rpmsg_wwan_ctrl.c
17204
17205 RENESAS CLOCK DRIVERS
17206 M:      Geert Uytterhoeven <geert+renesas@glider.be>
17207 L:      linux-renesas-soc@vger.kernel.org
17208 S:      Supported
17209 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git renesas-clk
17210 F:      Documentation/devicetree/bindings/clock/renesas,*
17211 F:      drivers/clk/renesas/
17212
17213 RENESAS EMEV2 I2C DRIVER
17214 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
17215 L:      linux-renesas-soc@vger.kernel.org
17216 S:      Supported
17217 F:      Documentation/devicetree/bindings/i2c/renesas,iic-emev2.yaml
17218 F:      drivers/i2c/busses/i2c-emev2.c
17219
17220 RENESAS ETHERNET DRIVERS
17221 R:      Sergey Shtylyov <s.shtylyov@omp.ru>
17222 L:      netdev@vger.kernel.org
17223 L:      linux-renesas-soc@vger.kernel.org
17224 F:      Documentation/devicetree/bindings/net/renesas,*.yaml
17225 F:      drivers/net/ethernet/renesas/
17226 F:      include/linux/sh_eth.h
17227
17228 RENESAS R-CAR GYROADC DRIVER
17229 M:      Marek Vasut <marek.vasut@gmail.com>
17230 L:      linux-iio@vger.kernel.org
17231 S:      Supported
17232 F:      Documentation/devicetree/bindings/iio/adc/renesas,rcar-gyroadc.yaml
17233 F:      drivers/iio/adc/rcar-gyroadc.c
17234
17235 RENESAS R-CAR I2C DRIVERS
17236 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
17237 L:      linux-renesas-soc@vger.kernel.org
17238 S:      Supported
17239 F:      Documentation/devicetree/bindings/i2c/renesas,rcar-i2c.yaml
17240 F:      Documentation/devicetree/bindings/i2c/renesas,rmobile-iic.yaml
17241 F:      drivers/i2c/busses/i2c-rcar.c
17242 F:      drivers/i2c/busses/i2c-sh_mobile.c
17243
17244 RENESAS R-CAR SATA DRIVER
17245 R:      Sergey Shtylyov <s.shtylyov@omp.ru>
17246 S:      Supported
17247 L:      linux-ide@vger.kernel.org
17248 L:      linux-renesas-soc@vger.kernel.org
17249 F:      Documentation/devicetree/bindings/ata/renesas,rcar-sata.yaml
17250 F:      drivers/ata/sata_rcar.c
17251
17252 RENESAS R-CAR THERMAL DRIVERS
17253 M:      Niklas Söderlund <niklas.soderlund@ragnatech.se>
17254 L:      linux-renesas-soc@vger.kernel.org
17255 S:      Supported
17256 F:      Documentation/devicetree/bindings/thermal/rcar-gen3-thermal.yaml
17257 F:      Documentation/devicetree/bindings/thermal/rcar-thermal.yaml
17258 F:      drivers/thermal/rcar_gen3_thermal.c
17259 F:      drivers/thermal/rcar_thermal.c
17260
17261 RENESAS RIIC DRIVER
17262 M:      Chris Brandt <chris.brandt@renesas.com>
17263 L:      linux-renesas-soc@vger.kernel.org
17264 S:      Supported
17265 F:      Documentation/devicetree/bindings/i2c/renesas,riic.yaml
17266 F:      drivers/i2c/busses/i2c-riic.c
17267
17268 RENESAS USB PHY DRIVER
17269 M:      Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
17270 L:      linux-renesas-soc@vger.kernel.org
17271 S:      Maintained
17272 F:      drivers/phy/renesas/phy-rcar-gen3-usb*.c
17273
17274 RENESAS RZ/G2L A/D DRIVER
17275 M:      Lad Prabhakar <prabhakar.mahadev-lad.rj@bp.renesas.com>
17276 L:      linux-iio@vger.kernel.org
17277 L:      linux-renesas-soc@vger.kernel.org
17278 S:      Supported
17279 F:      Documentation/devicetree/bindings/iio/adc/renesas,rzg2l-adc.yaml
17280 F:      drivers/iio/adc/rzg2l_adc.c
17281
17282 RENESAS RZ/N1 A5PSW SWITCH DRIVER
17283 M:      Clément Léger <clement.leger@bootlin.com>
17284 L:      linux-renesas-soc@vger.kernel.org
17285 L:      netdev@vger.kernel.org
17286 S:      Maintained
17287 F:      Documentation/devicetree/bindings/net/dsa/renesas,rzn1-a5psw.yaml
17288 F:      Documentation/devicetree/bindings/net/pcs/renesas,rzn1-miic.yaml
17289 F:      drivers/net/dsa/rzn1_a5psw*
17290 F:      drivers/net/pcs/pcs-rzn1-miic.c
17291 F:      include/dt-bindings/net/pcs-rzn1-miic.h
17292 F:      include/linux/pcs-rzn1-miic.h
17293 F:      net/dsa/tag_rzn1_a5psw.c
17294
17295 RENESAS RZ/N1 RTC CONTROLLER DRIVER
17296 M:      Miquel Raynal <miquel.raynal@bootlin.com>
17297 L:      linux-rtc@vger.kernel.org
17298 L:      linux-renesas-soc@vger.kernel.org
17299 S:      Maintained
17300 F:      Documentation/devicetree/bindings/rtc/renesas,rzn1-rtc.yaml
17301 F:      drivers/rtc/rtc-rzn1.c
17302
17303 RENESAS R-CAR GEN3 & RZ/N1 NAND CONTROLLER DRIVER
17304 M:      Miquel Raynal <miquel.raynal@bootlin.com>
17305 L:      linux-mtd@lists.infradead.org
17306 L:      linux-renesas-soc@vger.kernel.org
17307 S:      Maintained
17308 F:      Documentation/devicetree/bindings/mtd/renesas-nandc.yaml
17309 F:      drivers/mtd/nand/raw/renesas-nand-controller.c
17310
17311 RESET CONTROLLER FRAMEWORK
17312 M:      Philipp Zabel <p.zabel@pengutronix.de>
17313 S:      Maintained
17314 T:      git git://git.pengutronix.de/git/pza/linux
17315 F:      Documentation/devicetree/bindings/reset/
17316 F:      Documentation/driver-api/reset.rst
17317 F:      drivers/reset/
17318 F:      include/dt-bindings/reset/
17319 F:      include/linux/reset-controller.h
17320 F:      include/linux/reset.h
17321 F:      include/linux/reset/
17322 K:      \b(?:devm_|of_)?reset_control(?:ler_[a-z]+|_[a-z_]+)?\b
17323
17324 RESTARTABLE SEQUENCES SUPPORT
17325 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
17326 M:      Peter Zijlstra <peterz@infradead.org>
17327 M:      "Paul E. McKenney" <paulmck@kernel.org>
17328 M:      Boqun Feng <boqun.feng@gmail.com>
17329 L:      linux-kernel@vger.kernel.org
17330 S:      Supported
17331 F:      include/trace/events/rseq.h
17332 F:      include/uapi/linux/rseq.h
17333 F:      kernel/rseq.c
17334 F:      tools/testing/selftests/rseq/
17335
17336 RFKILL
17337 M:      Johannes Berg <johannes@sipsolutions.net>
17338 L:      linux-wireless@vger.kernel.org
17339 S:      Maintained
17340 W:      https://wireless.wiki.kernel.org/
17341 Q:      https://patchwork.kernel.org/project/linux-wireless/list/
17342 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless.git
17343 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless-next.git
17344 F:      Documentation/ABI/stable/sysfs-class-rfkill
17345 F:      Documentation/driver-api/rfkill.rst
17346 F:      include/linux/rfkill.h
17347 F:      include/uapi/linux/rfkill.h
17348 F:      net/rfkill/
17349
17350 RHASHTABLE
17351 M:      Thomas Graf <tgraf@suug.ch>
17352 M:      Herbert Xu <herbert@gondor.apana.org.au>
17353 L:      netdev@vger.kernel.org
17354 S:      Maintained
17355 F:      include/linux/rhashtable-types.h
17356 F:      include/linux/rhashtable.h
17357 F:      lib/rhashtable.c
17358 F:      lib/test_rhashtable.c
17359
17360 RICOH R5C592 MEMORYSTICK DRIVER
17361 M:      Maxim Levitsky <maximlevitsky@gmail.com>
17362 S:      Maintained
17363 F:      drivers/memstick/host/r592.*
17364
17365 RICOH SMARTMEDIA/XD DRIVER
17366 M:      Maxim Levitsky <maximlevitsky@gmail.com>
17367 S:      Maintained
17368 F:      drivers/mtd/nand/raw/r852.c
17369 F:      drivers/mtd/nand/raw/r852.h
17370
17371 RISC-V PMU DRIVERS
17372 M:      Atish Patra <atishp@atishpatra.org>
17373 R:      Anup Patel <anup@brainfault.org>
17374 L:      linux-riscv@lists.infradead.org
17375 S:      Supported
17376 F:      drivers/perf/riscv_pmu.c
17377 F:      drivers/perf/riscv_pmu_legacy.c
17378 F:      drivers/perf/riscv_pmu_sbi.c
17379
17380 RISC-V ARCHITECTURE
17381 M:      Paul Walmsley <paul.walmsley@sifive.com>
17382 M:      Palmer Dabbelt <palmer@dabbelt.com>
17383 M:      Albert Ou <aou@eecs.berkeley.edu>
17384 L:      linux-riscv@lists.infradead.org
17385 S:      Supported
17386 P:      Documentation/riscv/patch-acceptance.rst
17387 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/riscv/linux.git
17388 F:      arch/riscv/
17389 N:      riscv
17390 K:      riscv
17391
17392 RISC-V/MICROCHIP POLARFIRE SOC SUPPORT
17393 M:      Conor Dooley <conor.dooley@microchip.com>
17394 M:      Daire McNamara <daire.mcnamara@microchip.com>
17395 L:      linux-riscv@lists.infradead.org
17396 S:      Supported
17397 F:      arch/riscv/boot/dts/microchip/
17398 F:      drivers/char/hw_random/mpfs-rng.c
17399 F:      drivers/clk/microchip/clk-mpfs.c
17400 F:      drivers/mailbox/mailbox-mpfs.c
17401 F:      drivers/pci/controller/pcie-microchip-host.c
17402 F:      drivers/soc/microchip/
17403 F:      drivers/spi/spi-microchip-core.c
17404 F:      include/soc/microchip/mpfs.h
17405
17406 RNBD BLOCK DRIVERS
17407 M:      Md. Haris Iqbal <haris.iqbal@ionos.com>
17408 M:      Jack Wang <jinpu.wang@ionos.com>
17409 L:      linux-block@vger.kernel.org
17410 S:      Maintained
17411 F:      drivers/block/rnbd/
17412
17413 ROCCAT DRIVERS
17414 M:      Stefan Achatz <erazor_de@users.sourceforge.net>
17415 S:      Maintained
17416 W:      http://sourceforge.net/projects/roccat/
17417 F:      Documentation/ABI/*/sysfs-driver-hid-roccat*
17418 F:      drivers/hid/hid-roccat*
17419 F:      include/linux/hid-roccat*
17420
17421 ROCKCHIP I2S TDM DRIVER
17422 M:      Nicolas Frattaroli <frattaroli.nicolas@gmail.com>
17423 L:      linux-rockchip@lists.infradead.org
17424 S:      Maintained
17425 F:      Documentation/devicetree/bindings/sound/rockchip,i2s-tdm.yaml
17426 F:      sound/soc/rockchip/rockchip_i2s_tdm.*
17427
17428 ROCKCHIP ISP V1 DRIVER
17429 M:      Dafna Hirschfeld <dafna@fastmail.com>
17430 L:      linux-media@vger.kernel.org
17431 L:      linux-rockchip@lists.infradead.org
17432 S:      Maintained
17433 F:      Documentation/admin-guide/media/rkisp1.rst
17434 F:      Documentation/devicetree/bindings/media/rockchip-isp1.yaml
17435 F:      Documentation/userspace-api/media/v4l/pixfmt-meta-rkisp1.rst
17436 F:      drivers/media/platform/rockchip/rkisp1
17437 F:      include/uapi/linux/rkisp1-config.h
17438
17439 ROCKCHIP RASTER 2D GRAPHIC ACCELERATION UNIT DRIVER
17440 M:      Jacob Chen <jacob-chen@iotwrt.com>
17441 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
17442 L:      linux-media@vger.kernel.org
17443 L:      linux-rockchip@lists.infradead.org
17444 S:      Maintained
17445 F:      Documentation/devicetree/bindings/media/rockchip-rga.yaml
17446 F:      drivers/media/platform/rockchip/rga/
17447
17448 ROCKCHIP VIDEO DECODER DRIVER
17449 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
17450 L:      linux-media@vger.kernel.org
17451 L:      linux-rockchip@lists.infradead.org
17452 S:      Maintained
17453 F:      Documentation/devicetree/bindings/media/rockchip,vdec.yaml
17454 F:      drivers/staging/media/rkvdec/
17455
17456 ROCKER DRIVER
17457 M:      Jiri Pirko <jiri@resnulli.us>
17458 L:      netdev@vger.kernel.org
17459 S:      Supported
17460 F:      drivers/net/ethernet/rocker/
17461
17462 ROCKETPORT EXPRESS/INFINITY DRIVER
17463 M:      Kevin Cernekee <cernekee@gmail.com>
17464 L:      linux-serial@vger.kernel.org
17465 S:      Odd Fixes
17466 F:      drivers/tty/serial/rp2.*
17467
17468 ROHM BD99954 CHARGER IC
17469 R:      Matti Vaittinen <mazziesaccount@gmail.com>
17470 S:      Supported
17471 F:      drivers/power/supply/bd99954-charger.c
17472 F:      drivers/power/supply/bd99954-charger.h
17473
17474 ROHM BH1750 AMBIENT LIGHT SENSOR DRIVER
17475 M:      Tomasz Duszynski <tduszyns@gmail.com>
17476 S:      Maintained
17477 F:      Documentation/devicetree/bindings/iio/light/bh1750.yaml
17478 F:      drivers/iio/light/bh1750.c
17479
17480 ROHM MULTIFUNCTION BD9571MWV-M PMIC DEVICE DRIVERS
17481 M:      Marek Vasut <marek.vasut+renesas@gmail.com>
17482 L:      linux-kernel@vger.kernel.org
17483 L:      linux-renesas-soc@vger.kernel.org
17484 S:      Supported
17485 F:      Documentation/devicetree/bindings/mfd/rohm,bd9571mwv.yaml
17486 F:      drivers/gpio/gpio-bd9571mwv.c
17487 F:      drivers/mfd/bd9571mwv.c
17488 F:      drivers/regulator/bd9571mwv-regulator.c
17489 F:      include/linux/mfd/bd9571mwv.h
17490
17491 ROHM POWER MANAGEMENT IC DEVICE DRIVERS
17492 R:      Matti Vaittinen <mazziesaccount@gmail.com>
17493 S:      Supported
17494 F:      drivers/clk/clk-bd718x7.c
17495 F:      drivers/gpio/gpio-bd71815.c
17496 F:      drivers/gpio/gpio-bd71828.c
17497 F:      drivers/mfd/rohm-bd71828.c
17498 F:      drivers/mfd/rohm-bd718x7.c
17499 F:      drivers/mfd/rohm-bd9576.c
17500 F:      drivers/regulator/bd71815-regulator.c
17501 F:      drivers/regulator/bd71828-regulator.c
17502 F:      drivers/regulator/bd718x7-regulator.c
17503 F:      drivers/regulator/bd9576-regulator.c
17504 F:      drivers/regulator/rohm-regulator.c
17505 F:      drivers/rtc/rtc-bd70528.c
17506 F:      drivers/watchdog/bd9576_wdt.c
17507 F:      include/linux/mfd/rohm-bd71815.h
17508 F:      include/linux/mfd/rohm-bd71828.h
17509 F:      include/linux/mfd/rohm-bd718x7.h
17510 F:      include/linux/mfd/rohm-bd957x.h
17511 F:      include/linux/mfd/rohm-generic.h
17512 F:      include/linux/mfd/rohm-shared.h
17513
17514 ROSE NETWORK LAYER
17515 M:      Ralf Baechle <ralf@linux-mips.org>
17516 L:      linux-hams@vger.kernel.org
17517 S:      Maintained
17518 W:      http://www.linux-ax25.org/
17519 F:      include/net/rose.h
17520 F:      include/uapi/linux/rose.h
17521 F:      net/rose/
17522
17523 ROTATION DRIVER FOR ALLWINNER A83T
17524 M:      Jernej Skrabec <jernej.skrabec@gmail.com>
17525 L:      linux-media@vger.kernel.org
17526 S:      Maintained
17527 T:      git git://linuxtv.org/media_tree.git
17528 F:      Documentation/devicetree/bindings/media/allwinner,sun8i-a83t-de2-rotate.yaml
17529 F:      drivers/media/platform/sunxi/sun8i-rotate/
17530
17531 RPMSG TTY DRIVER
17532 M:      Arnaud Pouliquen <arnaud.pouliquen@foss.st.com>
17533 L:      linux-remoteproc@vger.kernel.org
17534 S:      Maintained
17535 F:      drivers/tty/rpmsg_tty.c
17536
17537 RTL2830 MEDIA DRIVER
17538 M:      Antti Palosaari <crope@iki.fi>
17539 L:      linux-media@vger.kernel.org
17540 S:      Maintained
17541 W:      https://linuxtv.org
17542 W:      http://palosaari.fi/linux/
17543 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17544 T:      git git://linuxtv.org/anttip/media_tree.git
17545 F:      drivers/media/dvb-frontends/rtl2830*
17546
17547 RTL2832 MEDIA DRIVER
17548 M:      Antti Palosaari <crope@iki.fi>
17549 L:      linux-media@vger.kernel.org
17550 S:      Maintained
17551 W:      https://linuxtv.org
17552 W:      http://palosaari.fi/linux/
17553 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17554 T:      git git://linuxtv.org/anttip/media_tree.git
17555 F:      drivers/media/dvb-frontends/rtl2832*
17556
17557 RTL2832_SDR MEDIA DRIVER
17558 M:      Antti Palosaari <crope@iki.fi>
17559 L:      linux-media@vger.kernel.org
17560 S:      Maintained
17561 W:      https://linuxtv.org
17562 W:      http://palosaari.fi/linux/
17563 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17564 T:      git git://linuxtv.org/anttip/media_tree.git
17565 F:      drivers/media/dvb-frontends/rtl2832_sdr*
17566
17567 RTL8180 WIRELESS DRIVER
17568 L:      linux-wireless@vger.kernel.org
17569 S:      Orphan
17570 W:      https://wireless.wiki.kernel.org/
17571 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
17572 F:      drivers/net/wireless/realtek/rtl818x/rtl8180/
17573
17574 RTL8187 WIRELESS DRIVER
17575 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
17576 M:      Hin-Tak Leung <htl10@users.sourceforge.net>
17577 M:      Larry Finger <Larry.Finger@lwfinger.net>
17578 L:      linux-wireless@vger.kernel.org
17579 S:      Maintained
17580 W:      https://wireless.wiki.kernel.org/
17581 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
17582 F:      drivers/net/wireless/realtek/rtl818x/rtl8187/
17583
17584 RTL8XXXU WIRELESS DRIVER (rtl8xxxu)
17585 M:      Jes Sorensen <Jes.Sorensen@gmail.com>
17586 L:      linux-wireless@vger.kernel.org
17587 S:      Maintained
17588 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jes/linux.git rtl8xxxu-devel
17589 F:      drivers/net/wireless/realtek/rtl8xxxu/
17590
17591 RTRS TRANSPORT DRIVERS
17592 M:      Md. Haris Iqbal <haris.iqbal@ionos.com>
17593 M:      Jack Wang <jinpu.wang@ionos.com>
17594 L:      linux-rdma@vger.kernel.org
17595 S:      Maintained
17596 F:      drivers/infiniband/ulp/rtrs/
17597
17598 RXRPC SOCKETS (AF_RXRPC)
17599 M:      David Howells <dhowells@redhat.com>
17600 M:      Marc Dionne <marc.dionne@auristor.com>
17601 L:      linux-afs@lists.infradead.org
17602 S:      Supported
17603 W:      https://www.infradead.org/~dhowells/kafs/
17604 F:      Documentation/networking/rxrpc.rst
17605 F:      include/keys/rxrpc-type.h
17606 F:      include/net/af_rxrpc.h
17607 F:      include/trace/events/rxrpc.h
17608 F:      include/uapi/linux/rxrpc.h
17609 F:      net/rxrpc/
17610
17611 S3 SAVAGE FRAMEBUFFER DRIVER
17612 M:      Antonino Daplas <adaplas@gmail.com>
17613 L:      linux-fbdev@vger.kernel.org
17614 S:      Maintained
17615 F:      drivers/video/fbdev/savage/
17616
17617 S390
17618 M:      Heiko Carstens <hca@linux.ibm.com>
17619 M:      Vasily Gorbik <gor@linux.ibm.com>
17620 M:      Alexander Gordeev <agordeev@linux.ibm.com>
17621 R:      Christian Borntraeger <borntraeger@linux.ibm.com>
17622 R:      Sven Schnelle <svens@linux.ibm.com>
17623 L:      linux-s390@vger.kernel.org
17624 S:      Supported
17625 W:      http://www.ibm.com/developerworks/linux/linux390/
17626 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux.git
17627 F:      Documentation/driver-api/s390-drivers.rst
17628 F:      Documentation/s390/
17629 F:      arch/s390/
17630 F:      drivers/s390/
17631
17632 S390 COMMON I/O LAYER
17633 M:      Vineeth Vijayan <vneethv@linux.ibm.com>
17634 M:      Peter Oberparleiter <oberpar@linux.ibm.com>
17635 L:      linux-s390@vger.kernel.org
17636 S:      Supported
17637 W:      http://www.ibm.com/developerworks/linux/linux390/
17638 F:      drivers/s390/cio/
17639
17640 S390 DASD DRIVER
17641 M:      Stefan Haberland <sth@linux.ibm.com>
17642 M:      Jan Hoeppner <hoeppner@linux.ibm.com>
17643 L:      linux-s390@vger.kernel.org
17644 S:      Supported
17645 W:      http://www.ibm.com/developerworks/linux/linux390/
17646 F:      block/partitions/ibm.c
17647 F:      drivers/s390/block/dasd*
17648 F:      include/linux/dasd_mod.h
17649
17650 S390 IOMMU (PCI)
17651 M:      Matthew Rosato <mjrosato@linux.ibm.com>
17652 M:      Gerald Schaefer <gerald.schaefer@linux.ibm.com>
17653 L:      linux-s390@vger.kernel.org
17654 S:      Supported
17655 W:      http://www.ibm.com/developerworks/linux/linux390/
17656 F:      drivers/iommu/s390-iommu.c
17657
17658 S390 IUCV NETWORK LAYER
17659 M:      Alexandra Winter <wintera@linux.ibm.com>
17660 M:      Wenjia Zhang <wenjia@linux.ibm.com>
17661 L:      linux-s390@vger.kernel.org
17662 L:      netdev@vger.kernel.org
17663 S:      Supported
17664 W:      http://www.ibm.com/developerworks/linux/linux390/
17665 F:      drivers/s390/net/*iucv*
17666 F:      include/net/iucv/
17667 F:      net/iucv/
17668
17669 S390 NETWORK DRIVERS
17670 M:      Alexandra Winter <wintera@linux.ibm.com>
17671 M:      Wenjia Zhang <wenjia@linux.ibm.com>
17672 L:      linux-s390@vger.kernel.org
17673 L:      netdev@vger.kernel.org
17674 S:      Supported
17675 W:      http://www.ibm.com/developerworks/linux/linux390/
17676 F:      drivers/s390/net/
17677
17678 S390 PCI SUBSYSTEM
17679 M:      Niklas Schnelle <schnelle@linux.ibm.com>
17680 M:      Gerald Schaefer <gerald.schaefer@linux.ibm.com>
17681 L:      linux-s390@vger.kernel.org
17682 S:      Supported
17683 W:      http://www.ibm.com/developerworks/linux/linux390/
17684 F:      arch/s390/pci/
17685 F:      drivers/pci/hotplug/s390_pci_hpc.c
17686 F:      Documentation/s390/pci.rst
17687
17688 S390 VFIO AP DRIVER
17689 M:      Tony Krowiak <akrowiak@linux.ibm.com>
17690 M:      Halil Pasic <pasic@linux.ibm.com>
17691 M:      Jason Herne <jjherne@linux.ibm.com>
17692 L:      linux-s390@vger.kernel.org
17693 S:      Supported
17694 W:      http://www.ibm.com/developerworks/linux/linux390/
17695 F:      Documentation/s390/vfio-ap.rst
17696 F:      drivers/s390/crypto/vfio_ap*
17697
17698 S390 VFIO-CCW DRIVER
17699 M:      Eric Farman <farman@linux.ibm.com>
17700 M:      Matthew Rosato <mjrosato@linux.ibm.com>
17701 R:      Halil Pasic <pasic@linux.ibm.com>
17702 L:      linux-s390@vger.kernel.org
17703 L:      kvm@vger.kernel.org
17704 S:      Supported
17705 F:      Documentation/s390/vfio-ccw.rst
17706 F:      drivers/s390/cio/vfio_ccw*
17707 F:      include/uapi/linux/vfio_ccw.h
17708
17709 S390 VFIO-PCI DRIVER
17710 M:      Matthew Rosato <mjrosato@linux.ibm.com>
17711 M:      Eric Farman <farman@linux.ibm.com>
17712 L:      linux-s390@vger.kernel.org
17713 L:      kvm@vger.kernel.org
17714 S:      Supported
17715 F:      drivers/vfio/pci/vfio_pci_zdev.c
17716 F:      include/uapi/linux/vfio_zdev.h
17717
17718 S390 ZCRYPT DRIVER
17719 M:      Harald Freudenberger <freude@linux.ibm.com>
17720 L:      linux-s390@vger.kernel.org
17721 S:      Supported
17722 W:      http://www.ibm.com/developerworks/linux/linux390/
17723 F:      drivers/s390/crypto/
17724
17725 S390 ZFCP DRIVER
17726 M:      Steffen Maier <maier@linux.ibm.com>
17727 M:      Benjamin Block <bblock@linux.ibm.com>
17728 L:      linux-s390@vger.kernel.org
17729 S:      Supported
17730 W:      http://www.ibm.com/developerworks/linux/linux390/
17731 F:      drivers/s390/scsi/zfcp_*
17732
17733 S3C ADC BATTERY DRIVER
17734 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
17735 L:      linux-samsung-soc@vger.kernel.org
17736 S:      Odd Fixes
17737 F:      drivers/power/supply/s3c_adc_battery.c
17738 F:      include/linux/s3c_adc_battery.h
17739
17740 S3C24XX SD/MMC Driver
17741 M:      Ben Dooks <ben-linux@fluff.org>
17742 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
17743 S:      Supported
17744 F:      drivers/mmc/host/s3cmci.*
17745
17746 SAA6588 RDS RECEIVER DRIVER
17747 M:      Hans Verkuil <hverkuil@xs4all.nl>
17748 L:      linux-media@vger.kernel.org
17749 S:      Odd Fixes
17750 W:      https://linuxtv.org
17751 T:      git git://linuxtv.org/media_tree.git
17752 F:      drivers/media/i2c/saa6588*
17753
17754 SAA7134 VIDEO4LINUX DRIVER
17755 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
17756 L:      linux-media@vger.kernel.org
17757 S:      Odd fixes
17758 W:      https://linuxtv.org
17759 T:      git git://linuxtv.org/media_tree.git
17760 F:      Documentation/driver-api/media/drivers/saa7134*
17761 F:      drivers/media/pci/saa7134/
17762
17763 SAA7146 VIDEO4LINUX-2 DRIVER
17764 M:      Hans Verkuil <hverkuil@xs4all.nl>
17765 L:      linux-media@vger.kernel.org
17766 S:      Maintained
17767 T:      git git://linuxtv.org/media_tree.git
17768 F:      drivers/media/common/saa7146/
17769 F:      drivers/media/pci/saa7146/
17770 F:      include/media/drv-intf/saa7146*
17771
17772 SAFESETID SECURITY MODULE
17773 M:      Micah Morton <mortonm@chromium.org>
17774 S:      Supported
17775 F:      Documentation/admin-guide/LSM/SafeSetID.rst
17776 F:      security/safesetid/
17777
17778 SAMSUNG AUDIO (ASoC) DRIVERS
17779 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
17780 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
17781 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17782 S:      Supported
17783 B:      mailto:linux-samsung-soc@vger.kernel.org
17784 F:      Documentation/devicetree/bindings/sound/samsung*
17785 F:      sound/soc/samsung/
17786
17787 SAMSUNG EXYNOS PSEUDO RANDOM NUMBER GENERATOR (RNG) DRIVER
17788 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
17789 L:      linux-crypto@vger.kernel.org
17790 L:      linux-samsung-soc@vger.kernel.org
17791 S:      Maintained
17792 F:      Documentation/devicetree/bindings/rng/samsung,exynos4-rng.yaml
17793 F:      drivers/crypto/exynos-rng.c
17794
17795 SAMSUNG EXYNOS TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
17796 M:      Łukasz Stelmach <l.stelmach@samsung.com>
17797 L:      linux-samsung-soc@vger.kernel.org
17798 S:      Maintained
17799 F:      Documentation/devicetree/bindings/rng/samsung,exynos5250-trng.yaml
17800 F:      drivers/char/hw_random/exynos-trng.c
17801
17802 SAMSUNG FRAMEBUFFER DRIVER
17803 M:      Jingoo Han <jingoohan1@gmail.com>
17804 L:      linux-fbdev@vger.kernel.org
17805 S:      Maintained
17806 F:      drivers/video/fbdev/s3c-fb.c
17807
17808 SAMSUNG INTERCONNECT DRIVERS
17809 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
17810 M:      Artur Świgoń <a.swigon@samsung.com>
17811 L:      linux-pm@vger.kernel.org
17812 L:      linux-samsung-soc@vger.kernel.org
17813 S:      Supported
17814 F:      drivers/interconnect/samsung/
17815
17816 SAMSUNG LAPTOP DRIVER
17817 M:      Corentin Chary <corentin.chary@gmail.com>
17818 L:      platform-driver-x86@vger.kernel.org
17819 S:      Maintained
17820 F:      drivers/platform/x86/samsung-laptop.c
17821
17822 SAMSUNG MULTIFUNCTION PMIC DEVICE DRIVERS
17823 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
17824 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
17825 L:      linux-kernel@vger.kernel.org
17826 L:      linux-samsung-soc@vger.kernel.org
17827 S:      Supported
17828 B:      mailto:linux-samsung-soc@vger.kernel.org
17829 F:      Documentation/devicetree/bindings/clock/samsung,s2mps11.yaml
17830 F:      Documentation/devicetree/bindings/mfd/samsung,s2m*.yaml
17831 F:      Documentation/devicetree/bindings/mfd/samsung,s5m*.yaml
17832 F:      Documentation/devicetree/bindings/regulator/samsung,s2m*.yaml
17833 F:      Documentation/devicetree/bindings/regulator/samsung,s5m*.yaml
17834 F:      drivers/clk/clk-s2mps11.c
17835 F:      drivers/mfd/sec*.c
17836 F:      drivers/regulator/s2m*.c
17837 F:      drivers/regulator/s5m*.c
17838 F:      drivers/rtc/rtc-s5m.c
17839 F:      include/linux/mfd/samsung/
17840
17841 SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
17842 M:      Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
17843 L:      linux-media@vger.kernel.org
17844 L:      linux-samsung-soc@vger.kernel.org
17845 S:      Maintained
17846 F:      drivers/media/platform/samsung/s3c-camif/
17847 F:      include/media/drv-intf/s3c_camif.h
17848
17849 SAMSUNG S3FWRN5 NFC DRIVER
17850 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
17851 M:      Krzysztof Opasiak <k.opasiak@samsung.com>
17852 L:      linux-nfc@lists.01.org (subscribers-only)
17853 S:      Maintained
17854 F:      Documentation/devicetree/bindings/net/nfc/samsung,s3fwrn5.yaml
17855 F:      drivers/nfc/s3fwrn5
17856
17857 SAMSUNG S5C73M3 CAMERA DRIVER
17858 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
17859 M:      Andrzej Hajda <andrzej.hajda@intel.com>
17860 L:      linux-media@vger.kernel.org
17861 S:      Supported
17862 F:      drivers/media/i2c/s5c73m3/*
17863
17864 SAMSUNG S5K5BAF CAMERA DRIVER
17865 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
17866 M:      Andrzej Hajda <andrzej.hajda@intel.com>
17867 L:      linux-media@vger.kernel.org
17868 S:      Supported
17869 F:      drivers/media/i2c/s5k5baf.c
17870
17871 SAMSUNG S5P Security SubSystem (SSS) DRIVER
17872 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
17873 M:      Vladimir Zapolskiy <vz@mleia.com>
17874 L:      linux-crypto@vger.kernel.org
17875 L:      linux-samsung-soc@vger.kernel.org
17876 S:      Maintained
17877 F:      Documentation/devicetree/bindings/crypto/samsung-slimsss.yaml
17878 F:      Documentation/devicetree/bindings/crypto/samsung-sss.yaml
17879 F:      drivers/crypto/s5p-sss.c
17880
17881 SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS
17882 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
17883 L:      linux-media@vger.kernel.org
17884 S:      Supported
17885 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
17886 F:      drivers/media/platform/samsung/exynos4-is/
17887
17888 SAMSUNG SOC CLOCK DRIVERS
17889 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
17890 M:      Tomasz Figa <tomasz.figa@gmail.com>
17891 M:      Chanwoo Choi <cw00.choi@samsung.com>
17892 R:      Alim Akhtar <alim.akhtar@samsung.com>
17893 L:      linux-samsung-soc@vger.kernel.org
17894 S:      Supported
17895 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/snawrocki/clk.git
17896 F:      Documentation/devicetree/bindings/clock/samsung,*.yaml
17897 F:      Documentation/devicetree/bindings/clock/samsung,s3c*
17898 F:      drivers/clk/samsung/
17899 F:      include/dt-bindings/clock/exynos*.h
17900 F:      include/dt-bindings/clock/s3c*.h
17901 F:      include/dt-bindings/clock/s5p*.h
17902 F:      include/dt-bindings/clock/samsung,*.h
17903 F:      include/linux/clk/samsung.h
17904 F:      include/linux/platform_data/clk-s3c2410.h
17905
17906 SAMSUNG SPI DRIVERS
17907 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
17908 M:      Andi Shyti <andi@etezian.org>
17909 L:      linux-spi@vger.kernel.org
17910 L:      linux-samsung-soc@vger.kernel.org
17911 S:      Maintained
17912 F:      Documentation/devicetree/bindings/spi/samsung,spi*.yaml
17913 F:      drivers/spi/spi-s3c*
17914 F:      include/linux/platform_data/spi-s3c64xx.h
17915 F:      include/linux/spi/s3c24xx-fiq.h
17916
17917 SAMSUNG SXGBE DRIVERS
17918 M:      Byungho An <bh74.an@samsung.com>
17919 L:      netdev@vger.kernel.org
17920 S:      Supported
17921 F:      drivers/net/ethernet/samsung/sxgbe/
17922
17923 SAMSUNG THERMAL DRIVER
17924 M:      Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
17925 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
17926 L:      linux-pm@vger.kernel.org
17927 L:      linux-samsung-soc@vger.kernel.org
17928 S:      Maintained
17929 F:      Documentation/devicetree/bindings/thermal/samsung,exynos-thermal.yaml
17930 F:      drivers/thermal/samsung/
17931
17932 SAMSUNG USB2 PHY DRIVER
17933 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
17934 L:      linux-kernel@vger.kernel.org
17935 S:      Supported
17936 F:      Documentation/devicetree/bindings/phy/samsung,usb2-phy.yaml
17937 F:      Documentation/driver-api/phy/samsung-usb2.rst
17938 F:      drivers/phy/samsung/phy-exynos4210-usb2.c
17939 F:      drivers/phy/samsung/phy-exynos4x12-usb2.c
17940 F:      drivers/phy/samsung/phy-exynos5250-usb2.c
17941 F:      drivers/phy/samsung/phy-s5pv210-usb2.c
17942 F:      drivers/phy/samsung/phy-samsung-usb2.c
17943 F:      drivers/phy/samsung/phy-samsung-usb2.h
17944
17945 SANCLOUD BEAGLEBONE ENHANCED DEVICE TREE
17946 M:      Paul Barker <paul.barker@sancloud.com>
17947 R:      Marc Murphy <marc.murphy@sancloud.com>
17948 S:      Supported
17949 F:      arch/arm/boot/dts/am335x-sancloud*
17950
17951 SC1200 WDT DRIVER
17952 M:      Zwane Mwaikambo <zwanem@gmail.com>
17953 S:      Maintained
17954 F:      drivers/watchdog/sc1200wdt.c
17955
17956 SCHEDULER
17957 M:      Ingo Molnar <mingo@redhat.com>
17958 M:      Peter Zijlstra <peterz@infradead.org>
17959 M:      Juri Lelli <juri.lelli@redhat.com> (SCHED_DEADLINE)
17960 M:      Vincent Guittot <vincent.guittot@linaro.org> (SCHED_NORMAL)
17961 R:      Dietmar Eggemann <dietmar.eggemann@arm.com> (SCHED_NORMAL)
17962 R:      Steven Rostedt <rostedt@goodmis.org> (SCHED_FIFO/SCHED_RR)
17963 R:      Ben Segall <bsegall@google.com> (CONFIG_CFS_BANDWIDTH)
17964 R:      Mel Gorman <mgorman@suse.de> (CONFIG_NUMA_BALANCING)
17965 R:      Daniel Bristot de Oliveira <bristot@redhat.com> (SCHED_DEADLINE)
17966 R:      Valentin Schneider <vschneid@redhat.com> (TOPOLOGY)
17967 L:      linux-kernel@vger.kernel.org
17968 S:      Maintained
17969 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
17970 F:      include/linux/preempt.h
17971 F:      include/linux/sched.h
17972 F:      include/linux/wait.h
17973 F:      include/uapi/linux/sched.h
17974 F:      kernel/sched/
17975
17976 SCR24X CHIP CARD INTERFACE DRIVER
17977 M:      Lubomir Rintel <lkundrak@v3.sk>
17978 S:      Supported
17979 F:      drivers/char/pcmcia/scr24x_cs.c
17980
17981 SCSI RDMA PROTOCOL (SRP) INITIATOR
17982 M:      Bart Van Assche <bvanassche@acm.org>
17983 L:      linux-rdma@vger.kernel.org
17984 S:      Supported
17985 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
17986 F:      drivers/infiniband/ulp/srp/
17987 F:      include/scsi/srp.h
17988
17989 SCSI RDMA PROTOCOL (SRP) TARGET
17990 M:      Bart Van Assche <bvanassche@acm.org>
17991 L:      linux-rdma@vger.kernel.org
17992 L:      target-devel@vger.kernel.org
17993 S:      Supported
17994 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
17995 F:      drivers/infiniband/ulp/srpt/
17996
17997 SCSI SG DRIVER
17998 M:      Doug Gilbert <dgilbert@interlog.com>
17999 L:      linux-scsi@vger.kernel.org
18000 S:      Maintained
18001 W:      http://sg.danny.cz/sg
18002 F:      Documentation/scsi/scsi-generic.rst
18003 F:      drivers/scsi/sg.c
18004 F:      include/scsi/sg.h
18005
18006 SCSI SUBSYSTEM
18007 M:      "James E.J. Bottomley" <jejb@linux.ibm.com>
18008 M:      "Martin K. Petersen" <martin.petersen@oracle.com>
18009 L:      linux-scsi@vger.kernel.org
18010 S:      Maintained
18011 Q:      https://patchwork.kernel.org/project/linux-scsi/list/
18012 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git
18013 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
18014 F:      Documentation/devicetree/bindings/scsi/
18015 F:      drivers/scsi/
18016 F:      drivers/ufs/
18017 F:      include/scsi/
18018
18019 SCSI TAPE DRIVER
18020 M:      Kai Mäkisara <Kai.Makisara@kolumbus.fi>
18021 L:      linux-scsi@vger.kernel.org
18022 S:      Maintained
18023 F:      Documentation/scsi/st.rst
18024 F:      drivers/scsi/st.*
18025 F:      drivers/scsi/st_*.h
18026
18027 SCSI TARGET CORE USER DRIVER
18028 M:      Bodo Stroesser <bostroesser@gmail.com>
18029 L:      linux-scsi@vger.kernel.org
18030 L:      target-devel@vger.kernel.org
18031 S:      Supported
18032 F:      Documentation/target/tcmu-design.rst
18033 F:      drivers/target/target_core_user.c
18034 F:      include/uapi/linux/target_core_user.h
18035
18036 SCSI TARGET SUBSYSTEM
18037 M:      "Martin K. Petersen" <martin.petersen@oracle.com>
18038 L:      linux-scsi@vger.kernel.org
18039 L:      target-devel@vger.kernel.org
18040 S:      Supported
18041 W:      http://www.linux-iscsi.org
18042 Q:      https://patchwork.kernel.org/project/target-devel/list/
18043 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
18044 F:      Documentation/target/
18045 F:      drivers/target/
18046 F:      include/target/
18047
18048 SCTP PROTOCOL
18049 M:      Vlad Yasevich <vyasevich@gmail.com>
18050 M:      Neil Horman <nhorman@tuxdriver.com>
18051 M:      Marcelo Ricardo Leitner <marcelo.leitner@gmail.com>
18052 L:      linux-sctp@vger.kernel.org
18053 S:      Maintained
18054 W:      http://lksctp.sourceforge.net
18055 F:      Documentation/networking/sctp.rst
18056 F:      include/linux/sctp.h
18057 F:      include/net/sctp/
18058 F:      include/uapi/linux/sctp.h
18059 F:      net/sctp/
18060
18061 SCx200 CPU SUPPORT
18062 M:      Jim Cromie <jim.cromie@gmail.com>
18063 S:      Odd Fixes
18064 F:      Documentation/i2c/busses/scx200_acb.rst
18065 F:      arch/x86/platform/scx200/
18066 F:      drivers/i2c/busses/scx200*
18067 F:      drivers/mtd/maps/scx200_docflash.c
18068 F:      drivers/watchdog/scx200_wdt.c
18069 F:      include/linux/scx200.h
18070
18071 SCx200 GPIO DRIVER
18072 M:      Jim Cromie <jim.cromie@gmail.com>
18073 S:      Maintained
18074 F:      drivers/char/scx200_gpio.c
18075 F:      include/linux/scx200_gpio.h
18076
18077 SCx200 HRT CLOCKSOURCE DRIVER
18078 M:      Jim Cromie <jim.cromie@gmail.com>
18079 S:      Maintained
18080 F:      drivers/clocksource/scx200_hrt.c
18081
18082 SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
18083 M:      Sascha Sommer <saschasommer@freenet.de>
18084 L:      sdricohcs-devel@lists.sourceforge.net (subscribers-only)
18085 S:      Maintained
18086 F:      drivers/mmc/host/sdricoh_cs.c
18087
18088 SECO BOARDS CEC DRIVER
18089 M:      Ettore Chimenti <ek5.chimenti@gmail.com>
18090 S:      Maintained
18091 F:      drivers/media/cec/platform/seco/seco-cec.c
18092 F:      drivers/media/cec/platform/seco/seco-cec.h
18093
18094 SECURE COMPUTING
18095 M:      Kees Cook <keescook@chromium.org>
18096 R:      Andy Lutomirski <luto@amacapital.net>
18097 R:      Will Drewry <wad@chromium.org>
18098 S:      Supported
18099 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/seccomp
18100 F:      Documentation/userspace-api/seccomp_filter.rst
18101 F:      include/linux/seccomp.h
18102 F:      include/uapi/linux/seccomp.h
18103 F:      kernel/seccomp.c
18104 F:      tools/testing/selftests/kselftest_harness.h
18105 F:      tools/testing/selftests/seccomp/*
18106 K:      \bsecure_computing
18107 K:      \bTIF_SECCOMP\b
18108
18109 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) Broadcom BRCMSTB DRIVER
18110 M:      Al Cooper <alcooperx@gmail.com>
18111 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
18112 L:      linux-mmc@vger.kernel.org
18113 S:      Maintained
18114 F:      drivers/mmc/host/sdhci-brcmstb*
18115
18116 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
18117 M:      Adrian Hunter <adrian.hunter@intel.com>
18118 L:      linux-mmc@vger.kernel.org
18119 S:      Maintained
18120 F:      drivers/mmc/host/sdhci*
18121
18122 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) MICROCHIP DRIVER
18123 M:      Eugen Hristev <eugen.hristev@microchip.com>
18124 L:      linux-mmc@vger.kernel.org
18125 S:      Supported
18126 F:      drivers/mmc/host/sdhci-of-at91.c
18127
18128 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
18129 M:      Ben Dooks <ben-linux@fluff.org>
18130 M:      Jaehoon Chung <jh80.chung@samsung.com>
18131 L:      linux-mmc@vger.kernel.org
18132 S:      Maintained
18133 F:      drivers/mmc/host/sdhci-s3c*
18134
18135 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
18136 M:      Viresh Kumar <vireshk@kernel.org>
18137 L:      linux-mmc@vger.kernel.org
18138 S:      Maintained
18139 F:      drivers/mmc/host/sdhci-spear.c
18140
18141 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) TI OMAP DRIVER
18142 M:      Kishon Vijay Abraham I <kishon@ti.com>
18143 L:      linux-mmc@vger.kernel.org
18144 S:      Maintained
18145 F:      drivers/mmc/host/sdhci-omap.c
18146
18147 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) NXP i.MX DRIVER
18148 M:      Haibo Chen <haibo.chen@nxp.com>
18149 L:      linux-imx@nxp.com
18150 L:      linux-mmc@vger.kernel.org
18151 S:      Maintained
18152 F:      drivers/mmc/host/sdhci-esdhc-imx.c
18153
18154 SECURE ENCRYPTING DEVICE (SED) OPAL DRIVER
18155 M:      Jonathan Derrick <jonathan.derrick@intel.com>
18156 M:      Revanth Rajashekar <revanth.rajashekar@intel.com>
18157 L:      linux-block@vger.kernel.org
18158 S:      Supported
18159 F:      block/opal_proto.h
18160 F:      block/sed*
18161 F:      include/linux/sed*
18162 F:      include/uapi/linux/sed*
18163
18164 SECURITY CONTACT
18165 M:      Security Officers <security@kernel.org>
18166 S:      Supported
18167 F:      Documentation/admin-guide/security-bugs.rst
18168
18169 SECURITY SUBSYSTEM
18170 M:      Paul Moore <paul@paul-moore.com>
18171 M:      James Morris <jmorris@namei.org>
18172 M:      "Serge E. Hallyn" <serge@hallyn.com>
18173 L:      linux-security-module@vger.kernel.org (suggested Cc:)
18174 S:      Supported
18175 W:      http://kernsec.org/
18176 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/lsm.git
18177 F:      security/
18178 X:      security/selinux/
18179
18180 SELINUX SECURITY MODULE
18181 M:      Paul Moore <paul@paul-moore.com>
18182 M:      Stephen Smalley <stephen.smalley.work@gmail.com>
18183 M:      Eric Paris <eparis@parisplace.org>
18184 L:      selinux@vger.kernel.org
18185 S:      Supported
18186 W:      https://selinuxproject.org
18187 W:      https://github.com/SELinuxProject
18188 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/selinux.git
18189 F:      Documentation/ABI/obsolete/sysfs-selinux-checkreqprot
18190 F:      Documentation/ABI/obsolete/sysfs-selinux-disable
18191 F:      Documentation/admin-guide/LSM/SELinux.rst
18192 F:      include/trace/events/avc.h
18193 F:      include/uapi/linux/selinux_netlink.h
18194 F:      scripts/selinux/
18195 F:      security/selinux/
18196
18197 SENSABLE PHANTOM
18198 M:      Jiri Slaby <jirislaby@kernel.org>
18199 S:      Maintained
18200 F:      drivers/misc/phantom.c
18201 F:      include/uapi/linux/phantom.h
18202
18203 SENSEAIR SUNRISE 006-0-0007
18204 M:      Jacopo Mondi <jacopo@jmondi.org>
18205 S:      Maintained
18206 F:      Documentation/ABI/testing/sysfs-bus-iio-chemical-sunrise-co2
18207 F:      Documentation/devicetree/bindings/iio/chemical/senseair,sunrise.yaml
18208 F:      drivers/iio/chemical/sunrise_co2.c
18209
18210 SENSIRION SCD30 CARBON DIOXIDE SENSOR DRIVER
18211 M:      Tomasz Duszynski <tomasz.duszynski@octakon.com>
18212 S:      Maintained
18213 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,scd30.yaml
18214 F:      drivers/iio/chemical/scd30.h
18215 F:      drivers/iio/chemical/scd30_core.c
18216 F:      drivers/iio/chemical/scd30_i2c.c
18217 F:      drivers/iio/chemical/scd30_serial.c
18218
18219 SENSIRION SCD4X CARBON DIOXIDE SENSOR DRIVER
18220 M:      Roan van Dijk <roan@protonic.nl>
18221 S:      Maintained
18222 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,scd4x.yaml
18223 F:      drivers/iio/chemical/scd4x.c
18224
18225 SENSIRION SGP40 GAS SENSOR DRIVER
18226 M:      Andreas Klinger <ak@it-klinger.de>
18227 S:      Maintained
18228 F:      Documentation/ABI/testing/sysfs-bus-iio-chemical-sgp40
18229 F:      drivers/iio/chemical/sgp40.c
18230
18231 SENSIRION SPS30 AIR POLLUTION SENSOR DRIVER
18232 M:      Tomasz Duszynski <tduszyns@gmail.com>
18233 S:      Maintained
18234 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,sps30.yaml
18235 F:      drivers/iio/chemical/sps30.c
18236 F:      drivers/iio/chemical/sps30_i2c.c
18237 F:      drivers/iio/chemical/sps30_serial.c
18238
18239 SERIAL DEVICE BUS
18240 M:      Rob Herring <robh@kernel.org>
18241 L:      linux-serial@vger.kernel.org
18242 S:      Maintained
18243 F:      Documentation/devicetree/bindings/serial/serial.yaml
18244 F:      drivers/tty/serdev/
18245 F:      include/linux/serdev.h
18246
18247 SERIAL DRIVERS
18248 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
18249 L:      linux-serial@vger.kernel.org
18250 S:      Maintained
18251 F:      Documentation/devicetree/bindings/serial/
18252 F:      drivers/tty/serial/
18253
18254 SERIAL IR RECEIVER
18255 M:      Sean Young <sean@mess.org>
18256 L:      linux-media@vger.kernel.org
18257 S:      Maintained
18258 F:      drivers/media/rc/serial_ir.c
18259
18260 SERIAL LOW-POWER INTER-CHIP MEDIA BUS (SLIMbus)
18261 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
18262 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18263 S:      Maintained
18264 F:      Documentation/devicetree/bindings/slimbus/
18265 F:      drivers/slimbus/
18266 F:      include/linux/slimbus.h
18267
18268 SFC NETWORK DRIVER
18269 M:      Edward Cree <ecree.xilinx@gmail.com>
18270 M:      Martin Habets <habetsm.xilinx@gmail.com>
18271 L:      netdev@vger.kernel.org
18272 S:      Supported
18273 F:      drivers/net/ethernet/sfc/
18274
18275 SFF/SFP/SFP+ MODULE SUPPORT
18276 M:      Russell King <linux@armlinux.org.uk>
18277 L:      netdev@vger.kernel.org
18278 S:      Maintained
18279 F:      Documentation/devicetree/bindings/net/sff,sfp.yaml
18280 F:      drivers/net/phy/phylink.c
18281 F:      drivers/net/phy/sfp*
18282 F:      include/linux/mdio/mdio-i2c.h
18283 F:      include/linux/phylink.h
18284 F:      include/linux/sfp.h
18285 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)
18286
18287 SGI GRU DRIVER
18288 M:      Dimitri Sivanich <dimitri.sivanich@hpe.com>
18289 S:      Maintained
18290 F:      drivers/misc/sgi-gru/
18291
18292 SGI XP/XPC/XPNET DRIVER
18293 M:      Robin Holt <robinmholt@gmail.com>
18294 M:      Steve Wahl <steve.wahl@hpe.com>
18295 R:      Mike Travis <mike.travis@hpe.com>
18296 S:      Maintained
18297 F:      drivers/misc/sgi-xp/
18298
18299 SHARED MEMORY COMMUNICATIONS (SMC) SOCKETS
18300 M:      Karsten Graul <kgraul@linux.ibm.com>
18301 M:      Wenjia Zhang <wenjia@linux.ibm.com>
18302 L:      linux-s390@vger.kernel.org
18303 S:      Supported
18304 W:      http://www.ibm.com/developerworks/linux/linux390/
18305 F:      net/smc/
18306
18307 SHARP GP2AP002A00F/GP2AP002S00F SENSOR DRIVER
18308 M:      Linus Walleij <linus.walleij@linaro.org>
18309 L:      linux-iio@vger.kernel.org
18310 S:      Maintained
18311 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
18312 F:      Documentation/devicetree/bindings/iio/light/sharp,gp2ap002.yaml
18313 F:      drivers/iio/light/gp2ap002.c
18314
18315 SHARP RJ54N1CB0C SENSOR DRIVER
18316 M:      Jacopo Mondi <jacopo@jmondi.org>
18317 L:      linux-media@vger.kernel.org
18318 S:      Odd fixes
18319 T:      git git://linuxtv.org/media_tree.git
18320 F:      drivers/media/i2c/rj54n1cb0c.c
18321 F:      include/media/i2c/rj54n1cb0c.h
18322
18323 SH_VOU V4L2 OUTPUT DRIVER
18324 L:      linux-media@vger.kernel.org
18325 S:      Orphan
18326 F:      drivers/media/platform/renesas/sh_vou.c
18327 F:      include/media/drv-intf/sh_vou.h
18328
18329 SI2157 MEDIA DRIVER
18330 M:      Antti Palosaari <crope@iki.fi>
18331 L:      linux-media@vger.kernel.org
18332 S:      Maintained
18333 W:      https://linuxtv.org
18334 W:      http://palosaari.fi/linux/
18335 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18336 T:      git git://linuxtv.org/anttip/media_tree.git
18337 F:      drivers/media/tuners/si2157*
18338
18339 SI2165 MEDIA DRIVER
18340 M:      Matthias Schwarzott <zzam@gentoo.org>
18341 L:      linux-media@vger.kernel.org
18342 S:      Maintained
18343 W:      https://linuxtv.org
18344 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18345 F:      drivers/media/dvb-frontends/si2165*
18346
18347 SI2168 MEDIA DRIVER
18348 M:      Antti Palosaari <crope@iki.fi>
18349 L:      linux-media@vger.kernel.org
18350 S:      Maintained
18351 W:      https://linuxtv.org
18352 W:      http://palosaari.fi/linux/
18353 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18354 T:      git git://linuxtv.org/anttip/media_tree.git
18355 F:      drivers/media/dvb-frontends/si2168*
18356
18357 SI470X FM RADIO RECEIVER I2C DRIVER
18358 M:      Hans Verkuil <hverkuil@xs4all.nl>
18359 L:      linux-media@vger.kernel.org
18360 S:      Odd Fixes
18361 W:      https://linuxtv.org
18362 T:      git git://linuxtv.org/media_tree.git
18363 F:      drivers/media/radio/si470x/radio-si470x-i2c.c
18364
18365 SI470X FM RADIO RECEIVER USB DRIVER
18366 M:      Hans Verkuil <hverkuil@xs4all.nl>
18367 L:      linux-media@vger.kernel.org
18368 S:      Maintained
18369 W:      https://linuxtv.org
18370 T:      git git://linuxtv.org/media_tree.git
18371 F:      drivers/media/radio/si470x/radio-si470x-common.c
18372 F:      drivers/media/radio/si470x/radio-si470x-usb.c
18373 F:      drivers/media/radio/si470x/radio-si470x.h
18374
18375 SI4713 FM RADIO TRANSMITTER I2C DRIVER
18376 M:      Eduardo Valentin <edubezval@gmail.com>
18377 L:      linux-media@vger.kernel.org
18378 S:      Odd Fixes
18379 W:      https://linuxtv.org
18380 T:      git git://linuxtv.org/media_tree.git
18381 F:      drivers/media/radio/si4713/si4713.?
18382
18383 SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
18384 M:      Eduardo Valentin <edubezval@gmail.com>
18385 L:      linux-media@vger.kernel.org
18386 S:      Odd Fixes
18387 W:      https://linuxtv.org
18388 T:      git git://linuxtv.org/media_tree.git
18389 F:      drivers/media/radio/si4713/radio-platform-si4713.c
18390
18391 SI4713 FM RADIO TRANSMITTER USB DRIVER
18392 M:      Hans Verkuil <hverkuil@xs4all.nl>
18393 L:      linux-media@vger.kernel.org
18394 S:      Maintained
18395 W:      https://linuxtv.org
18396 T:      git git://linuxtv.org/media_tree.git
18397 F:      drivers/media/radio/si4713/radio-usb-si4713.c
18398
18399 SIANO DVB DRIVER
18400 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
18401 L:      linux-media@vger.kernel.org
18402 S:      Odd fixes
18403 W:      https://linuxtv.org
18404 T:      git git://linuxtv.org/media_tree.git
18405 F:      drivers/media/common/siano/
18406 F:      drivers/media/mmc/siano/
18407 F:      drivers/media/usb/siano/
18408 F:      drivers/media/usb/siano/
18409
18410 SIFIVE DRIVERS
18411 M:      Palmer Dabbelt <palmer@dabbelt.com>
18412 M:      Paul Walmsley <paul.walmsley@sifive.com>
18413 L:      linux-riscv@lists.infradead.org
18414 S:      Supported
18415 T:      git git://github.com/sifive/riscv-linux.git
18416 N:      sifive
18417 K:      [^@]sifive
18418
18419 SIFIVE FU540 SYSTEM-ON-CHIP
18420 M:      Paul Walmsley <paul.walmsley@sifive.com>
18421 M:      Palmer Dabbelt <palmer@dabbelt.com>
18422 L:      linux-riscv@lists.infradead.org
18423 S:      Supported
18424 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pjw/sifive.git
18425 N:      fu540
18426 K:      fu540
18427
18428 SIFIVE PDMA DRIVER
18429 M:      Green Wan <green.wan@sifive.com>
18430 S:      Maintained
18431 F:      Documentation/devicetree/bindings/dma/sifive,fu540-c000-pdma.yaml
18432 F:      drivers/dma/sf-pdma/
18433
18434 SILEAD TOUCHSCREEN DRIVER
18435 M:      Hans de Goede <hdegoede@redhat.com>
18436 L:      linux-input@vger.kernel.org
18437 L:      platform-driver-x86@vger.kernel.org
18438 S:      Maintained
18439 F:      drivers/input/touchscreen/silead.c
18440 F:      drivers/platform/x86/touchscreen_dmi.c
18441
18442 SILICON LABS WIRELESS DRIVERS (for WFxxx series)
18443 M:      Jérôme Pouiller <jerome.pouiller@silabs.com>
18444 S:      Supported
18445 F:      Documentation/devicetree/bindings/net/wireless/silabs,wfx.yaml
18446 F:      drivers/net/wireless/silabs/wfx/
18447
18448 SILICON MOTION SM712 FRAME BUFFER DRIVER
18449 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
18450 M:      Teddy Wang <teddy.wang@siliconmotion.com>
18451 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
18452 L:      linux-fbdev@vger.kernel.org
18453 S:      Maintained
18454 F:      Documentation/fb/sm712fb.rst
18455 F:      drivers/video/fbdev/sm712*
18456
18457 SILVACO I3C DUAL-ROLE MASTER
18458 M:      Miquel Raynal <miquel.raynal@bootlin.com>
18459 M:      Conor Culhane <conor.culhane@silvaco.com>
18460 L:      linux-i3c@lists.infradead.org (moderated for non-subscribers)
18461 S:      Maintained
18462 F:      Documentation/devicetree/bindings/i3c/silvaco,i3c-master.yaml
18463 F:      drivers/i3c/master/svc-i3c-master.c
18464
18465 SIMPLEFB FB DRIVER
18466 M:      Hans de Goede <hdegoede@redhat.com>
18467 L:      linux-fbdev@vger.kernel.org
18468 S:      Maintained
18469 F:      Documentation/devicetree/bindings/display/simple-framebuffer.yaml
18470 F:      drivers/video/fbdev/simplefb.c
18471 F:      include/linux/platform_data/simplefb.h
18472
18473 SIMTEC EB110ATX (Chalice CATS)
18474 M:      Simtec Linux Team <linux@simtec.co.uk>
18475 S:      Supported
18476 W:      http://www.simtec.co.uk/products/EB110ATX/
18477
18478 SIMTEC EB2410ITX (BAST)
18479 M:      Simtec Linux Team <linux@simtec.co.uk>
18480 S:      Supported
18481 W:      http://www.simtec.co.uk/products/EB2410ITX/
18482 F:      arch/arm/mach-s3c/bast-ide.c
18483 F:      arch/arm/mach-s3c/bast-irq.c
18484 F:      arch/arm/mach-s3c/mach-bast.c
18485
18486 SIOX
18487 M:      Thorsten Scherer <t.scherer@eckelmann.de>
18488 M:      Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
18489 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
18490 S:      Supported
18491 F:      drivers/gpio/gpio-siox.c
18492 F:      drivers/siox/*
18493 F:      include/trace/events/siox.h
18494
18495 SIPHASH PRF ROUTINES
18496 M:      Jason A. Donenfeld <Jason@zx2c4.com>
18497 S:      Maintained
18498 F:      include/linux/siphash.h
18499 F:      lib/siphash.c
18500 F:      lib/test_siphash.c
18501
18502 SIS 190 ETHERNET DRIVER
18503 M:      Francois Romieu <romieu@fr.zoreil.com>
18504 L:      netdev@vger.kernel.org
18505 S:      Maintained
18506 F:      drivers/net/ethernet/sis/sis190.c
18507
18508 SIS 900/7016 FAST ETHERNET DRIVER
18509 M:      Daniele Venzano <venza@brownhat.org>
18510 L:      netdev@vger.kernel.org
18511 S:      Maintained
18512 W:      http://www.brownhat.org/sis900.html
18513 F:      drivers/net/ethernet/sis/sis900.*
18514
18515 SIS FRAMEBUFFER DRIVER
18516 M:      Thomas Winischhofer <thomas@winischhofer.net>
18517 S:      Maintained
18518 W:      http://www.winischhofer.net/linuxsisvga.shtml
18519 F:      Documentation/fb/sisfb.rst
18520 F:      drivers/video/fbdev/sis/
18521 F:      include/video/sisfb.h
18522
18523 SIS I2C TOUCHSCREEN DRIVER
18524 M:      Mika Penttilä <mika.penttila@nextfour.com>
18525 L:      linux-input@vger.kernel.org
18526 S:      Maintained
18527 F:      Documentation/devicetree/bindings/input/touchscreen/sis_i2c.txt
18528 F:      drivers/input/touchscreen/sis_i2c.c
18529
18530 SIS USB2VGA DRIVER
18531 M:      Thomas Winischhofer <thomas@winischhofer.net>
18532 S:      Maintained
18533 W:      http://www.winischhofer.at/linuxsisusbvga.shtml
18534 F:      drivers/usb/misc/sisusbvga/
18535
18536 SL28 CPLD MFD DRIVER
18537 M:      Michael Walle <michael@walle.cc>
18538 S:      Maintained
18539 F:      Documentation/devicetree/bindings/gpio/kontron,sl28cpld-gpio.yaml
18540 F:      Documentation/devicetree/bindings/hwmon/kontron,sl28cpld-hwmon.yaml
18541 F:      Documentation/devicetree/bindings/interrupt-controller/kontron,sl28cpld-intc.yaml
18542 F:      Documentation/devicetree/bindings/mfd/kontron,sl28cpld.yaml
18543 F:      Documentation/devicetree/bindings/pwm/kontron,sl28cpld-pwm.yaml
18544 F:      Documentation/devicetree/bindings/watchdog/kontron,sl28cpld-wdt.yaml
18545 F:      drivers/gpio/gpio-sl28cpld.c
18546 F:      drivers/hwmon/sl28cpld-hwmon.c
18547 F:      drivers/irqchip/irq-sl28cpld.c
18548 F:      drivers/pwm/pwm-sl28cpld.c
18549 F:      drivers/watchdog/sl28cpld_wdt.c
18550
18551 SLAB ALLOCATOR
18552 M:      Christoph Lameter <cl@linux.com>
18553 M:      Pekka Enberg <penberg@kernel.org>
18554 M:      David Rientjes <rientjes@google.com>
18555 M:      Joonsoo Kim <iamjoonsoo.kim@lge.com>
18556 M:      Andrew Morton <akpm@linux-foundation.org>
18557 M:      Vlastimil Babka <vbabka@suse.cz>
18558 R:      Roman Gushchin <roman.gushchin@linux.dev>
18559 R:      Hyeonggon Yoo <42.hyeyoo@gmail.com>
18560 L:      linux-mm@kvack.org
18561 S:      Maintained
18562 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vbabka/slab.git
18563 F:      include/linux/sl?b*.h
18564 F:      mm/sl?b*
18565
18566 SLCAN CAN NETWORK DRIVER
18567 M:      Dario Binacchi <dario.binacchi@amarulasolutions.com>
18568 L:      linux-can@vger.kernel.org
18569 S:      Maintained
18570 F:      drivers/net/can/slcan/
18571
18572 SLEEPABLE READ-COPY UPDATE (SRCU)
18573 M:      Lai Jiangshan <jiangshanlai@gmail.com>
18574 M:      "Paul E. McKenney" <paulmck@kernel.org>
18575 M:      Josh Triplett <josh@joshtriplett.org>
18576 R:      Steven Rostedt <rostedt@goodmis.org>
18577 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
18578 L:      rcu@vger.kernel.org
18579 S:      Supported
18580 W:      http://www.rdrop.com/users/paulmck/RCU/
18581 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
18582 F:      include/linux/srcu*.h
18583 F:      kernel/rcu/srcu*.c
18584
18585 SMACK SECURITY MODULE
18586 M:      Casey Schaufler <casey@schaufler-ca.com>
18587 L:      linux-security-module@vger.kernel.org
18588 S:      Maintained
18589 W:      http://schaufler-ca.com
18590 T:      git git://github.com/cschaufler/smack-next
18591 F:      Documentation/admin-guide/LSM/Smack.rst
18592 F:      security/smack/
18593
18594 SMC91x ETHERNET DRIVER
18595 M:      Nicolas Pitre <nico@fluxnic.net>
18596 S:      Odd Fixes
18597 F:      drivers/net/ethernet/smsc/smc91x.*
18598
18599 SECURE MONITOR CALL(SMC) CALLING CONVENTION (SMCCC)
18600 M:      Mark Rutland <mark.rutland@arm.com>
18601 M:      Lorenzo Pieralisi <lpieralisi@kernel.org>
18602 M:      Sudeep Holla <sudeep.holla@arm.com>
18603 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
18604 S:      Maintained
18605 F:      drivers/firmware/smccc/
18606 F:      include/linux/arm-smccc.h
18607
18608 SMM665 HARDWARE MONITOR DRIVER
18609 M:      Guenter Roeck <linux@roeck-us.net>
18610 L:      linux-hwmon@vger.kernel.org
18611 S:      Maintained
18612 F:      Documentation/hwmon/smm665.rst
18613 F:      drivers/hwmon/smm665.c
18614
18615 SMSC EMC2103 HARDWARE MONITOR DRIVER
18616 M:      Steve Glendinning <steve.glendinning@shawell.net>
18617 L:      linux-hwmon@vger.kernel.org
18618 S:      Maintained
18619 F:      Documentation/hwmon/emc2103.rst
18620 F:      drivers/hwmon/emc2103.c
18621
18622 SMSC SCH5627 HARDWARE MONITOR DRIVER
18623 M:      Hans de Goede <hdegoede@redhat.com>
18624 L:      linux-hwmon@vger.kernel.org
18625 S:      Supported
18626 F:      Documentation/hwmon/sch5627.rst
18627 F:      drivers/hwmon/sch5627.c
18628
18629 SMSC UFX6000 and UFX7000 USB to VGA DRIVER
18630 M:      Steve Glendinning <steve.glendinning@shawell.net>
18631 L:      linux-fbdev@vger.kernel.org
18632 S:      Maintained
18633 F:      drivers/video/fbdev/smscufx.c
18634
18635 SMSC47B397 HARDWARE MONITOR DRIVER
18636 M:      Jean Delvare <jdelvare@suse.com>
18637 L:      linux-hwmon@vger.kernel.org
18638 S:      Maintained
18639 F:      Documentation/hwmon/smsc47b397.rst
18640 F:      drivers/hwmon/smsc47b397.c
18641
18642 SMSC911x ETHERNET DRIVER
18643 M:      Steve Glendinning <steve.glendinning@shawell.net>
18644 L:      netdev@vger.kernel.org
18645 S:      Maintained
18646 F:      drivers/net/ethernet/smsc/smsc911x.*
18647 F:      include/linux/smsc911x.h
18648
18649 SMSC9420 PCI ETHERNET DRIVER
18650 M:      Steve Glendinning <steve.glendinning@shawell.net>
18651 L:      netdev@vger.kernel.org
18652 S:      Maintained
18653 F:      drivers/net/ethernet/smsc/smsc9420.*
18654
18655 SOCIONEXT (SNI) AVE NETWORK DRIVER
18656 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
18657 L:      netdev@vger.kernel.org
18658 S:      Maintained
18659 F:      Documentation/devicetree/bindings/net/socionext,uniphier-ave4.yaml
18660 F:      drivers/net/ethernet/socionext/sni_ave.c
18661
18662 SOCIONEXT (SNI) NETSEC NETWORK DRIVER
18663 M:      Jassi Brar <jaswinder.singh@linaro.org>
18664 M:      Ilias Apalodimas <ilias.apalodimas@linaro.org>
18665 L:      netdev@vger.kernel.org
18666 S:      Maintained
18667 F:      Documentation/devicetree/bindings/net/socionext-netsec.txt
18668 F:      drivers/net/ethernet/socionext/netsec.c
18669
18670 SOCIONEXT (SNI) Synquacer SPI DRIVER
18671 M:      Masahisa Kojima <masahisa.kojima@linaro.org>
18672 M:      Jassi Brar <jaswinder.singh@linaro.org>
18673 L:      linux-spi@vger.kernel.org
18674 S:      Maintained
18675 F:      Documentation/devicetree/bindings/spi/spi-synquacer.txt
18676 F:      drivers/spi/spi-synquacer.c
18677
18678 SOCIONEXT SYNQUACER I2C DRIVER
18679 M:      Ard Biesheuvel <ardb@kernel.org>
18680 L:      linux-i2c@vger.kernel.org
18681 S:      Maintained
18682 F:      Documentation/devicetree/bindings/i2c/i2c-synquacer.txt
18683 F:      drivers/i2c/busses/i2c-synquacer.c
18684
18685 SOCIONEXT UNIPHIER SOUND DRIVER
18686 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18687 S:      Orphan
18688 F:      sound/soc/uniphier/
18689
18690 SOEKRIS NET48XX LED SUPPORT
18691 M:      Chris Boot <bootc@bootc.net>
18692 S:      Maintained
18693 F:      drivers/leds/leds-net48xx.c
18694
18695 SOFT-IWARP DRIVER (siw)
18696 M:      Bernard Metzler <bmt@zurich.ibm.com>
18697 L:      linux-rdma@vger.kernel.org
18698 S:      Supported
18699 F:      drivers/infiniband/sw/siw/
18700 F:      include/uapi/rdma/siw-abi.h
18701
18702 SOFT-ROCE DRIVER (rxe)
18703 M:      Zhu Yanjun <zyjzyj2000@gmail.com>
18704 L:      linux-rdma@vger.kernel.org
18705 S:      Supported
18706 F:      drivers/infiniband/sw/rxe/
18707 F:      include/uapi/rdma/rdma_user_rxe.h
18708
18709 SOFTLOGIC 6x10 MPEG CODEC
18710 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
18711 M:      Anton Sviridenko <anton@corp.bluecherry.net>
18712 M:      Andrey Utkin <andrey_utkin@fastmail.com>
18713 M:      Ismael Luceno <ismael@iodev.co.uk>
18714 L:      linux-media@vger.kernel.org
18715 S:      Supported
18716 F:      drivers/media/pci/solo6x10/
18717
18718 SOFTWARE DELEGATED EXCEPTION INTERFACE (SDEI)
18719 M:      James Morse <james.morse@arm.com>
18720 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
18721 S:      Maintained
18722 F:      Documentation/devicetree/bindings/arm/firmware/sdei.txt
18723 F:      drivers/firmware/arm_sdei.c
18724 F:      include/linux/arm_sdei.h
18725 F:      include/uapi/linux/arm_sdei.h
18726
18727 SOFTWARE NODES AND DEVICE PROPERTIES
18728 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
18729 R:      Daniel Scally <djrscally@gmail.com>
18730 R:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
18731 R:      Sakari Ailus <sakari.ailus@linux.intel.com>
18732 L:      linux-acpi@vger.kernel.org
18733 S:      Maintained
18734 F:      drivers/base/property.c
18735 F:      drivers/base/swnode.c
18736 F:      include/linux/fwnode.h
18737 F:      include/linux/property.h
18738
18739 SOFTWARE RAID (Multiple Disks) SUPPORT
18740 M:      Song Liu <song@kernel.org>
18741 L:      linux-raid@vger.kernel.org
18742 S:      Supported
18743 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/song/md.git
18744 F:      drivers/md/Kconfig
18745 F:      drivers/md/Makefile
18746 F:      drivers/md/md*
18747 F:      drivers/md/raid*
18748 F:      include/linux/raid/
18749 F:      include/uapi/linux/raid/
18750
18751 SOLIDRUN CLEARFOG SUPPORT
18752 M:      Russell King <linux@armlinux.org.uk>
18753 S:      Maintained
18754 F:      arch/arm/boot/dts/armada-388-clearfog*
18755 F:      arch/arm/boot/dts/armada-38x-solidrun-*
18756
18757 SOLIDRUN CUBOX-I/HUMMINGBOARD SUPPORT
18758 M:      Russell King <linux@armlinux.org.uk>
18759 S:      Maintained
18760 F:      arch/arm/boot/dts/imx6*-cubox-i*
18761 F:      arch/arm/boot/dts/imx6*-hummingboard*
18762 F:      arch/arm/boot/dts/imx6*-sr-*
18763
18764 SONIC NETWORK DRIVER
18765 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
18766 L:      netdev@vger.kernel.org
18767 S:      Maintained
18768 F:      drivers/net/ethernet/natsemi/sonic.*
18769
18770 SONICS SILICON BACKPLANE DRIVER (SSB)
18771 M:      Michael Buesch <m@bues.ch>
18772 L:      linux-wireless@vger.kernel.org
18773 S:      Maintained
18774 F:      drivers/ssb/
18775 F:      include/linux/ssb/
18776
18777 SONY IMX208 SENSOR DRIVER
18778 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
18779 L:      linux-media@vger.kernel.org
18780 S:      Maintained
18781 T:      git git://linuxtv.org/media_tree.git
18782 F:      drivers/media/i2c/imx208.c
18783
18784 SONY IMX214 SENSOR DRIVER
18785 M:      Ricardo Ribalda <ribalda@kernel.org>
18786 L:      linux-media@vger.kernel.org
18787 S:      Maintained
18788 T:      git git://linuxtv.org/media_tree.git
18789 F:      Documentation/devicetree/bindings/media/i2c/sony,imx214.yaml
18790 F:      drivers/media/i2c/imx214.c
18791
18792 SONY IMX219 SENSOR DRIVER
18793 M:      Dave Stevenson <dave.stevenson@raspberrypi.com>
18794 L:      linux-media@vger.kernel.org
18795 S:      Maintained
18796 T:      git git://linuxtv.org/media_tree.git
18797 F:      Documentation/devicetree/bindings/media/i2c/imx219.yaml
18798 F:      drivers/media/i2c/imx219.c
18799
18800 SONY IMX258 SENSOR DRIVER
18801 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
18802 L:      linux-media@vger.kernel.org
18803 S:      Maintained
18804 T:      git git://linuxtv.org/media_tree.git
18805 F:      Documentation/devicetree/bindings/media/i2c/imx258.yaml
18806 F:      drivers/media/i2c/imx258.c
18807
18808 SONY IMX274 SENSOR DRIVER
18809 M:      Leon Luo <leonl@leopardimaging.com>
18810 L:      linux-media@vger.kernel.org
18811 S:      Maintained
18812 T:      git git://linuxtv.org/media_tree.git
18813 F:      Documentation/devicetree/bindings/media/i2c/sony,imx274.yaml
18814 F:      drivers/media/i2c/imx274.c
18815
18816 SONY IMX290 SENSOR DRIVER
18817 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
18818 L:      linux-media@vger.kernel.org
18819 S:      Maintained
18820 T:      git git://linuxtv.org/media_tree.git
18821 F:      Documentation/devicetree/bindings/media/i2c/imx290.txt
18822 F:      drivers/media/i2c/imx290.c
18823
18824 SONY IMX319 SENSOR DRIVER
18825 M:      Bingbu Cao <bingbu.cao@intel.com>
18826 L:      linux-media@vger.kernel.org
18827 S:      Maintained
18828 T:      git git://linuxtv.org/media_tree.git
18829 F:      drivers/media/i2c/imx319.c
18830
18831 SONY IMX334 SENSOR DRIVER
18832 M:      Paul J. Murphy <paul.j.murphy@intel.com>
18833 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
18834 L:      linux-media@vger.kernel.org
18835 S:      Maintained
18836 T:      git git://linuxtv.org/media_tree.git
18837 F:      Documentation/devicetree/bindings/media/i2c/sony,imx334.yaml
18838 F:      drivers/media/i2c/imx334.c
18839
18840 SONY IMX335 SENSOR DRIVER
18841 M:      Paul J. Murphy <paul.j.murphy@intel.com>
18842 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
18843 L:      linux-media@vger.kernel.org
18844 S:      Maintained
18845 T:      git git://linuxtv.org/media_tree.git
18846 F:      Documentation/devicetree/bindings/media/i2c/sony,imx335.yaml
18847 F:      drivers/media/i2c/imx335.c
18848
18849 SONY IMX355 SENSOR DRIVER
18850 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
18851 L:      linux-media@vger.kernel.org
18852 S:      Maintained
18853 T:      git git://linuxtv.org/media_tree.git
18854 F:      drivers/media/i2c/imx355.c
18855
18856 SONY IMX412 SENSOR DRIVER
18857 M:      Paul J. Murphy <paul.j.murphy@intel.com>
18858 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
18859 L:      linux-media@vger.kernel.org
18860 S:      Maintained
18861 T:      git git://linuxtv.org/media_tree.git
18862 F:      Documentation/devicetree/bindings/media/i2c/sony,imx412.yaml
18863 F:      drivers/media/i2c/imx412.c
18864
18865 SONY MEMORYSTICK SUBSYSTEM
18866 M:      Maxim Levitsky <maximlevitsky@gmail.com>
18867 M:      Alex Dubov <oakad@yahoo.com>
18868 M:      Ulf Hansson <ulf.hansson@linaro.org>
18869 L:      linux-mmc@vger.kernel.org
18870 S:      Maintained
18871 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
18872 F:      drivers/memstick/
18873 F:      include/linux/memstick.h
18874
18875 SONY VAIO CONTROL DEVICE DRIVER
18876 M:      Mattia Dongili <malattia@linux.it>
18877 L:      platform-driver-x86@vger.kernel.org
18878 S:      Maintained
18879 W:      http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
18880 F:      Documentation/admin-guide/laptops/sony-laptop.rst
18881 F:      drivers/char/sonypi.c
18882 F:      drivers/platform/x86/sony-laptop.c
18883 F:      include/linux/sony-laptop.h
18884
18885 SOUND
18886 M:      Jaroslav Kysela <perex@perex.cz>
18887 M:      Takashi Iwai <tiwai@suse.com>
18888 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18889 S:      Maintained
18890 W:      http://www.alsa-project.org/
18891 Q:      http://patchwork.kernel.org/project/alsa-devel/list/
18892 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
18893 F:      Documentation/sound/
18894 F:      include/sound/
18895 F:      include/uapi/sound/
18896 F:      sound/
18897 F:      tools/testing/selftests/alsa
18898
18899 SOUND - COMPRESSED AUDIO
18900 M:      Vinod Koul <vkoul@kernel.org>
18901 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18902 S:      Supported
18903 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
18904 F:      Documentation/sound/designs/compress-offload.rst
18905 F:      include/sound/compress_driver.h
18906 F:      include/uapi/sound/compress_*
18907 F:      sound/core/compress_offload.c
18908 F:      sound/soc/soc-compress.c
18909
18910 SOUND - DMAENGINE HELPERS
18911 M:      Lars-Peter Clausen <lars@metafoo.de>
18912 S:      Supported
18913 F:      include/sound/dmaengine_pcm.h
18914 F:      sound/core/pcm_dmaengine.c
18915 F:      sound/soc/soc-generic-dmaengine-pcm.c
18916
18917 SOUND - ALSA SELFTESTS
18918 M:      Mark Brown <broonie@kernel.org>
18919 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18920 L:      linux-kselftest@vger.kernel.org
18921 S:      Supported
18922 F:      tools/testing/selftests/alsa
18923
18924 SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
18925 M:      Liam Girdwood <lgirdwood@gmail.com>
18926 M:      Mark Brown <broonie@kernel.org>
18927 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18928 S:      Supported
18929 W:      http://alsa-project.org/main/index.php/ASoC
18930 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
18931 F:      Documentation/devicetree/bindings/sound/
18932 F:      Documentation/sound/soc/
18933 F:      include/dt-bindings/sound/
18934 F:      include/sound/soc*
18935 F:      sound/soc/
18936
18937 SOUND - SOUND OPEN FIRMWARE (SOF) DRIVERS
18938 M:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
18939 M:      Liam Girdwood <lgirdwood@gmail.com>
18940 M:      Peter Ujfalusi <peter.ujfalusi@linux.intel.com>
18941 M:      Bard Liao <yung-chuan.liao@linux.intel.com>
18942 M:      Ranjani Sridharan <ranjani.sridharan@linux.intel.com>
18943 R:      Kai Vehmanen <kai.vehmanen@linux.intel.com>
18944 M:      Daniel Baluta <daniel.baluta@nxp.com>
18945 L:      sound-open-firmware@alsa-project.org (moderated for non-subscribers)
18946 S:      Supported
18947 W:      https://github.com/thesofproject/linux/
18948 F:      sound/soc/sof/
18949
18950 SOUNDWIRE SUBSYSTEM
18951 M:      Vinod Koul <vkoul@kernel.org>
18952 M:      Bard Liao <yung-chuan.liao@linux.intel.com>
18953 R:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
18954 R:      Sanyog Kale <sanyog.r.kale@intel.com>
18955 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18956 S:      Supported
18957 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vkoul/soundwire.git
18958 F:      Documentation/driver-api/soundwire/
18959 F:      drivers/soundwire/
18960 F:      include/linux/soundwire/
18961
18962 SP2 MEDIA DRIVER
18963 M:      Olli Salonen <olli.salonen@iki.fi>
18964 L:      linux-media@vger.kernel.org
18965 S:      Maintained
18966 W:      https://linuxtv.org
18967 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18968 F:      drivers/media/dvb-frontends/sp2*
18969
18970 SPARC + UltraSPARC (sparc/sparc64)
18971 M:      "David S. Miller" <davem@davemloft.net>
18972 L:      sparclinux@vger.kernel.org
18973 S:      Maintained
18974 Q:      http://patchwork.ozlabs.org/project/sparclinux/list/
18975 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
18976 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
18977 F:      arch/sparc/
18978 F:      drivers/sbus/
18979
18980 SPARC SERIAL DRIVERS
18981 M:      "David S. Miller" <davem@davemloft.net>
18982 L:      sparclinux@vger.kernel.org
18983 S:      Maintained
18984 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
18985 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
18986 F:      drivers/tty/serial/suncore.c
18987 F:      drivers/tty/serial/sunhv.c
18988 F:      drivers/tty/serial/sunsab.c
18989 F:      drivers/tty/serial/sunsab.h
18990 F:      drivers/tty/serial/sunsu.c
18991 F:      drivers/tty/serial/sunzilog.c
18992 F:      drivers/tty/serial/sunzilog.h
18993 F:      drivers/tty/vcc.c
18994 F:      include/linux/sunserialcore.h
18995
18996 SPARSE CHECKER
18997 M:      "Luc Van Oostenryck" <luc.vanoostenryck@gmail.com>
18998 L:      linux-sparse@vger.kernel.org
18999 S:      Maintained
19000 W:      https://sparse.docs.kernel.org/
19001 T:      git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
19002 Q:      https://patchwork.kernel.org/project/linux-sparse/list/
19003 B:      https://bugzilla.kernel.org/enter_bug.cgi?component=Sparse&product=Tools
19004 F:      include/linux/compiler.h
19005
19006 SPEAKUP CONSOLE SPEECH DRIVER
19007 M:      William Hubbs <w.d.hubbs@gmail.com>
19008 M:      Chris Brannon <chris@the-brannons.com>
19009 M:      Kirk Reiser <kirk@reisers.ca>
19010 M:      Samuel Thibault <samuel.thibault@ens-lyon.org>
19011 L:      speakup@linux-speakup.org
19012 S:      Odd Fixes
19013 W:      http://www.linux-speakup.org/
19014 W:      https://github.com/linux-speakup/speakup
19015 B:      https://github.com/linux-speakup/speakup/issues
19016 F:      drivers/accessibility/speakup/
19017
19018 SPEAR PLATFORM/CLOCK/PINCTRL SUPPORT
19019 M:      Viresh Kumar <vireshk@kernel.org>
19020 M:      Shiraz Hashim <shiraz.linux.kernel@gmail.com>
19021 M:      soc@kernel.org
19022 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
19023 S:      Maintained
19024 W:      http://www.st.com/spear
19025 F:      arch/arm/boot/dts/spear*
19026 F:      arch/arm/mach-spear/
19027 F:      drivers/clk/spear/
19028 F:      drivers/pinctrl/spear/
19029
19030 SPI NOR SUBSYSTEM
19031 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
19032 M:      Pratyush Yadav <p.yadav@ti.com>
19033 R:      Michael Walle <michael@walle.cc>
19034 L:      linux-mtd@lists.infradead.org
19035 S:      Maintained
19036 W:      http://www.linux-mtd.infradead.org/
19037 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
19038 C:      irc://irc.oftc.net/mtd
19039 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git spi-nor/next
19040 F:      Documentation/devicetree/bindings/mtd/jedec,spi-nor.yaml
19041 F:      drivers/mtd/spi-nor/
19042 F:      include/linux/mtd/spi-nor.h
19043
19044 SPI SUBSYSTEM
19045 M:      Mark Brown <broonie@kernel.org>
19046 L:      linux-spi@vger.kernel.org
19047 S:      Maintained
19048 Q:      http://patchwork.kernel.org/project/spi-devel-general/list/
19049 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
19050 F:      Documentation/devicetree/bindings/spi/
19051 F:      Documentation/spi/
19052 F:      drivers/spi/
19053 F:      include/linux/spi/
19054 F:      include/uapi/linux/spi/
19055 F:      tools/spi/
19056
19057 SPIDERNET NETWORK DRIVER for CELL
19058 M:      Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
19059 M:      Geoff Levand <geoff@infradead.org>
19060 L:      netdev@vger.kernel.org
19061 L:      linuxppc-dev@lists.ozlabs.org
19062 S:      Maintained
19063 F:      Documentation/networking/device_drivers/ethernet/toshiba/spider_net.rst
19064 F:      drivers/net/ethernet/toshiba/spider_net*
19065
19066 SPMI SUBSYSTEM
19067 M:      Stephen Boyd <sboyd@kernel.org>
19068 L:      linux-kernel@vger.kernel.org
19069 S:      Maintained
19070 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sboyd/spmi.git
19071 F:      Documentation/devicetree/bindings/spmi/
19072 F:      drivers/spmi/
19073 F:      include/dt-bindings/spmi/spmi.h
19074 F:      include/linux/spmi.h
19075 F:      include/trace/events/spmi.h
19076
19077 SPU FILE SYSTEM
19078 M:      Jeremy Kerr <jk@ozlabs.org>
19079 L:      linuxppc-dev@lists.ozlabs.org
19080 S:      Supported
19081 W:      http://www.ibm.com/developerworks/power/cell/
19082 F:      Documentation/filesystems/spufs/spufs.rst
19083 F:      arch/powerpc/platforms/cell/spufs/
19084
19085 SQUASHFS FILE SYSTEM
19086 M:      Phillip Lougher <phillip@squashfs.org.uk>
19087 L:      squashfs-devel@lists.sourceforge.net (subscribers-only)
19088 S:      Maintained
19089 W:      http://squashfs.org.uk
19090 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pkl/squashfs-next.git
19091 F:      Documentation/filesystems/squashfs.rst
19092 F:      fs/squashfs/
19093
19094 SRM (Alpha) environment access
19095 M:      Jan-Benedict Glaw <jbglaw@lug-owl.de>
19096 S:      Maintained
19097 F:      arch/alpha/kernel/srm_env.c
19098
19099 ST LSM6DSx IMU IIO DRIVER
19100 M:      Lorenzo Bianconi <lorenzo@kernel.org>
19101 L:      linux-iio@vger.kernel.org
19102 S:      Maintained
19103 W:      http://www.st.com/
19104 F:      Documentation/devicetree/bindings/iio/imu/st,lsm6dsx.yaml
19105 F:      drivers/iio/imu/st_lsm6dsx/
19106
19107 ST MIPID02 CSI-2 TO PARALLEL BRIDGE DRIVER
19108 M:      Benjamin Mugnier <benjamin.mugnier@foss.st.com>
19109 M:      Sylvain Petinot <sylvain.petinot@foss.st.com>
19110 L:      linux-media@vger.kernel.org
19111 S:      Maintained
19112 T:      git git://linuxtv.org/media_tree.git
19113 F:      Documentation/devicetree/bindings/media/i2c/st,st-mipid02.txt
19114 F:      drivers/media/i2c/st-mipid02.c
19115
19116 ST STM32 I2C/SMBUS DRIVER
19117 M:      Pierre-Yves MORDRET <pierre-yves.mordret@foss.st.com>
19118 M:      Alain Volmat <alain.volmat@foss.st.com>
19119 L:      linux-i2c@vger.kernel.org
19120 S:      Maintained
19121 F:      drivers/i2c/busses/i2c-stm32*
19122
19123 ST STM32 SPI DRIVER
19124 M:      Alain Volmat <alain.volmat@foss.st.com>
19125 L:      linux-spi@vger.kernel.org
19126 S:      Maintained
19127 F:      drivers/spi/spi-stm32.c
19128
19129 ST STPDDC60 DRIVER
19130 M:      Daniel Nilsson <daniel.nilsson@flex.com>
19131 L:      linux-hwmon@vger.kernel.org
19132 S:      Maintained
19133 F:      Documentation/hwmon/stpddc60.rst
19134 F:      drivers/hwmon/pmbus/stpddc60.c
19135
19136 ST VL53L0X ToF RANGER(I2C) IIO DRIVER
19137 M:      Song Qiang <songqiang1304521@gmail.com>
19138 L:      linux-iio@vger.kernel.org
19139 S:      Maintained
19140 F:      Documentation/devicetree/bindings/iio/proximity/st,vl53l0x.yaml
19141 F:      drivers/iio/proximity/vl53l0x-i2c.c
19142
19143 STABLE BRANCH
19144 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
19145 M:      Sasha Levin <sashal@kernel.org>
19146 L:      stable@vger.kernel.org
19147 S:      Supported
19148 F:      Documentation/process/stable-kernel-rules.rst
19149
19150 STAGING - ATOMISP DRIVER
19151 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
19152 R:      Sakari Ailus <sakari.ailus@linux.intel.com>
19153 L:      linux-media@vger.kernel.org
19154 S:      Maintained
19155 F:      drivers/staging/media/atomisp/
19156
19157 STAGING - FIELDBUS SUBSYSTEM
19158 M:      Sven Van Asbroeck <TheSven73@gmail.com>
19159 S:      Maintained
19160 F:      drivers/staging/fieldbus/*
19161 F:      drivers/staging/fieldbus/Documentation/
19162
19163 STAGING - HMS ANYBUS-S BUS
19164 M:      Sven Van Asbroeck <TheSven73@gmail.com>
19165 S:      Maintained
19166 F:      drivers/staging/fieldbus/anybuss/
19167
19168 STAGING - INDUSTRIAL IO
19169 M:      Jonathan Cameron <jic23@kernel.org>
19170 L:      linux-iio@vger.kernel.org
19171 S:      Odd Fixes
19172 F:      Documentation/devicetree/bindings/staging/iio/
19173 F:      drivers/staging/iio/
19174
19175 STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
19176 M:      Marc Dietrich <marvin24@gmx.de>
19177 L:      ac100@lists.launchpad.net (moderated for non-subscribers)
19178 L:      linux-tegra@vger.kernel.org
19179 S:      Maintained
19180 F:      drivers/staging/nvec/
19181
19182 STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
19183 M:      Jens Frederich <jfrederich@gmail.com>
19184 M:      Jon Nettleton <jon.nettleton@gmail.com>
19185 S:      Maintained
19186 W:      http://wiki.laptop.org/go/DCON
19187 F:      drivers/staging/olpc_dcon/
19188
19189 STAGING - REALTEK RTL8188EU DRIVERS
19190 M:      Larry Finger <Larry.Finger@lwfinger.net>
19191 M:      Phillip Potter <phil@philpotter.co.uk>
19192 S:      Supported
19193 F:      drivers/staging/r8188eu/
19194
19195 STAGING - REALTEK RTL8712U DRIVERS
19196 M:      Larry Finger <Larry.Finger@lwfinger.net>
19197 M:      Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
19198 S:      Odd Fixes
19199 F:      drivers/staging/rtl8712/
19200
19201 STAGING - SEPS525 LCD CONTROLLER DRIVERS
19202 M:      Michael Hennerich <michael.hennerich@analog.com>
19203 L:      linux-fbdev@vger.kernel.org
19204 S:      Supported
19205 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7606.yaml
19206 F:      drivers/staging/fbtft/fb_seps525.c
19207
19208 STAGING - SILICON MOTION SM750 FRAME BUFFER DRIVER
19209 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
19210 M:      Teddy Wang <teddy.wang@siliconmotion.com>
19211 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
19212 L:      linux-fbdev@vger.kernel.org
19213 S:      Maintained
19214 F:      drivers/staging/sm750fb/
19215
19216 STAGING - VIA VT665X DRIVERS
19217 M:      Forest Bond <forest@alittletooquiet.net>
19218 S:      Odd Fixes
19219 F:      drivers/staging/vt665?/
19220
19221 STAGING SUBSYSTEM
19222 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
19223 L:      linux-staging@lists.linux.dev
19224 S:      Supported
19225 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
19226 F:      drivers/staging/
19227
19228 STARFIRE/DURALAN NETWORK DRIVER
19229 M:      Ion Badulescu <ionut@badula.org>
19230 S:      Odd Fixes
19231 F:      drivers/net/ethernet/adaptec/starfire*
19232
19233 STARFIVE JH7100 CLOCK DRIVERS
19234 M:      Emil Renner Berthing <kernel@esmil.dk>
19235 S:      Maintained
19236 F:      Documentation/devicetree/bindings/clock/starfive,jh7100-*.yaml
19237 F:      drivers/clk/starfive/clk-starfive-jh7100*
19238 F:      include/dt-bindings/clock/starfive-jh7100*.h
19239
19240 STARFIVE JH7100 PINCTRL DRIVER
19241 M:      Emil Renner Berthing <kernel@esmil.dk>
19242 L:      linux-gpio@vger.kernel.org
19243 S:      Maintained
19244 F:      Documentation/devicetree/bindings/pinctrl/starfive,jh7100-pinctrl.yaml
19245 F:      drivers/pinctrl/pinctrl-starfive.c
19246 F:      include/dt-bindings/pinctrl/pinctrl-starfive.h
19247
19248 STARFIVE JH7100 RESET CONTROLLER DRIVER
19249 M:      Emil Renner Berthing <kernel@esmil.dk>
19250 S:      Maintained
19251 F:      Documentation/devicetree/bindings/reset/starfive,jh7100-reset.yaml
19252 F:      drivers/reset/reset-starfive-jh7100.c
19253 F:      include/dt-bindings/reset/starfive-jh7100.h
19254
19255 STATIC BRANCH/CALL
19256 M:      Peter Zijlstra <peterz@infradead.org>
19257 M:      Josh Poimboeuf <jpoimboe@kernel.org>
19258 M:      Jason Baron <jbaron@akamai.com>
19259 R:      Steven Rostedt <rostedt@goodmis.org>
19260 R:      Ard Biesheuvel <ardb@kernel.org>
19261 S:      Supported
19262 F:      arch/*/include/asm/jump_label*.h
19263 F:      arch/*/include/asm/static_call*.h
19264 F:      arch/*/kernel/jump_label.c
19265 F:      arch/*/kernel/static_call.c
19266 F:      include/linux/jump_label*.h
19267 F:      include/linux/static_call*.h
19268 F:      kernel/jump_label.c
19269 F:      kernel/static_call.c
19270
19271 STI AUDIO (ASoC) DRIVERS
19272 M:      Arnaud Pouliquen <arnaud.pouliquen@foss.st.com>
19273 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19274 S:      Maintained
19275 F:      Documentation/devicetree/bindings/sound/st,sti-asoc-card.txt
19276 F:      sound/soc/sti/
19277
19278 STI CEC DRIVER
19279 M:      Alain Volmat <alain.volmat@foss.st.com>
19280 S:      Maintained
19281 F:      Documentation/devicetree/bindings/media/stih-cec.txt
19282 F:      drivers/media/cec/platform/sti/
19283
19284 STK1160 USB VIDEO CAPTURE DRIVER
19285 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
19286 L:      linux-media@vger.kernel.org
19287 S:      Maintained
19288 T:      git git://linuxtv.org/media_tree.git
19289 F:      drivers/media/usb/stk1160/
19290
19291 STM32 AUDIO (ASoC) DRIVERS
19292 M:      Olivier Moysan <olivier.moysan@foss.st.com>
19293 M:      Arnaud Pouliquen <arnaud.pouliquen@foss.st.com>
19294 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19295 S:      Maintained
19296 F:      Documentation/devicetree/bindings/iio/adc/st,stm32-dfsdm-adc.yaml
19297 F:      Documentation/devicetree/bindings/sound/st,stm32-*.yaml
19298 F:      sound/soc/stm/
19299
19300 STM32 TIMER/LPTIMER DRIVERS
19301 M:      Fabrice Gasnier <fabrice.gasnier@foss.st.com>
19302 S:      Maintained
19303 F:      Documentation/ABI/testing/*timer-stm32
19304 F:      Documentation/devicetree/bindings/*/*stm32-*timer*
19305 F:      drivers/*/stm32-*timer*
19306 F:      drivers/pwm/pwm-stm32*
19307 F:      include/linux/*/stm32-*tim*
19308
19309 STMMAC ETHERNET DRIVER
19310 M:      Giuseppe Cavallaro <peppe.cavallaro@st.com>
19311 M:      Alexandre Torgue <alexandre.torgue@foss.st.com>
19312 M:      Jose Abreu <joabreu@synopsys.com>
19313 L:      netdev@vger.kernel.org
19314 S:      Supported
19315 W:      http://www.stlinux.com
19316 F:      Documentation/networking/device_drivers/ethernet/stmicro/
19317 F:      drivers/net/ethernet/stmicro/stmmac/
19318
19319 SUN3/3X
19320 M:      Sam Creasey <sammy@sammy.net>
19321 S:      Maintained
19322 W:      http://sammy.net/sun3/
19323 F:      arch/m68k/include/asm/sun3*
19324 F:      arch/m68k/kernel/*sun3*
19325 F:      arch/m68k/sun3*/
19326 F:      drivers/net/ethernet/i825xx/sun3*
19327
19328 SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER
19329 M:      Hans de Goede <hdegoede@redhat.com>
19330 L:      linux-input@vger.kernel.org
19331 S:      Maintained
19332 F:      Documentation/devicetree/bindings/input/allwinner,sun4i-a10-lradc-keys.yaml
19333 F:      drivers/input/keyboard/sun4i-lradc-keys.c
19334
19335 SUNDANCE NETWORK DRIVER
19336 M:      Denis Kirjanov <kda@linux-powerpc.org>
19337 L:      netdev@vger.kernel.org
19338 S:      Maintained
19339 F:      drivers/net/ethernet/dlink/sundance.c
19340
19341 SUNPLUS ETHERNET DRIVER
19342 M:      Wells Lu <wellslutw@gmail.com>
19343 L:      netdev@vger.kernel.org
19344 S:      Maintained
19345 W:      https://sunplus.atlassian.net/wiki/spaces/doc/overview
19346 F:      Documentation/devicetree/bindings/net/sunplus,sp7021-emac.yaml
19347 F:      drivers/net/ethernet/sunplus/
19348
19349 SUNPLUS OCOTP DRIVER
19350 M:      Vincent Shih <vincent.sunplus@gmail.com>
19351 S:      Maintained
19352 F:      Documentation/devicetree/bindings/nvmem/sunplus,sp7021-ocotp.yaml
19353 F:      drivers/nvmem/sunplus-ocotp.c
19354
19355 SUNPLUS PWM DRIVER
19356 M:      Hammer Hsieh <hammerh0314@gmail.com>
19357 S:      Maintained
19358 F:      Documentation/devicetree/bindings/pwm/sunplus,sp7021-pwm.yaml
19359 F:      drivers/pwm/pwm-sunplus.c
19360
19361 SUNPLUS RTC DRIVER
19362 M:      Vincent Shih <vincent.sunplus@gmail.com>
19363 L:      linux-rtc@vger.kernel.org
19364 S:      Maintained
19365 F:      Documentation/devicetree/bindings/rtc/sunplus,sp7021-rtc.yaml
19366 F:      drivers/rtc/rtc-sunplus.c
19367
19368 SUNPLUS SPI CONTROLLER INTERFACE DRIVER
19369 M:      Li-hao Kuo <lhjeff911@gmail.com>
19370 L:      linux-spi@vger.kernel.org
19371 S:      Maintained
19372 F:      Documentation/devicetree/bindings/spi/spi-sunplus-sp7021.yaml
19373 F:      drivers/spi/spi-sunplus-sp7021.c
19374
19375 SUNPLUS UART DRIVER
19376 M:      Hammer Hsieh <hammerh0314@gmail.com>
19377 S:      Maintained
19378 F:      Documentation/devicetree/bindings/serial/sunplus,sp7021-uart.yaml
19379 F:      drivers/tty/serial/sunplus-uart.c
19380
19381 SUNPLUS WATCHDOG DRIVER
19382 M:      Xiantao Hu <xt.hu@cqplus1.com>
19383 L:      linux-watchdog@vger.kernel.org
19384 S:      Maintained
19385 F:      Documentation/devicetree/bindings/watchdog/sunplus,sp7021-wdt.yaml
19386 F:      drivers/watchdog/sunplus_wdt.c
19387
19388 SUPERH
19389 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
19390 M:      Rich Felker <dalias@libc.org>
19391 L:      linux-sh@vger.kernel.org
19392 S:      Maintained
19393 Q:      http://patchwork.kernel.org/project/linux-sh/list/
19394 F:      Documentation/sh/
19395 F:      arch/sh/
19396 F:      drivers/sh/
19397
19398 SUSPEND TO RAM
19399 M:      "Rafael J. Wysocki" <rafael@kernel.org>
19400 M:      Len Brown <len.brown@intel.com>
19401 M:      Pavel Machek <pavel@ucw.cz>
19402 L:      linux-pm@vger.kernel.org
19403 S:      Supported
19404 B:      https://bugzilla.kernel.org
19405 F:      Documentation/power/
19406 F:      arch/x86/kernel/acpi/
19407 F:      drivers/base/power/
19408 F:      include/linux/freezer.h
19409 F:      include/linux/pm.h
19410 F:      include/linux/suspend.h
19411 F:      kernel/power/
19412
19413 SVGA HANDLING
19414 M:      Martin Mares <mj@ucw.cz>
19415 L:      linux-video@atrey.karlin.mff.cuni.cz
19416 S:      Maintained
19417 F:      Documentation/admin-guide/svga.rst
19418 F:      arch/x86/boot/video*
19419
19420 SWIOTLB SUBSYSTEM
19421 M:      Christoph Hellwig <hch@infradead.org>
19422 L:      iommu@lists.linux.dev
19423 S:      Supported
19424 W:      http://git.infradead.org/users/hch/dma-mapping.git
19425 T:      git git://git.infradead.org/users/hch/dma-mapping.git
19426 F:      arch/*/kernel/pci-swiotlb.c
19427 F:      include/linux/swiotlb.h
19428 F:      kernel/dma/swiotlb.c
19429
19430 SWITCHDEV
19431 M:      Jiri Pirko <jiri@resnulli.us>
19432 M:      Ivan Vecera <ivecera@redhat.com>
19433 L:      netdev@vger.kernel.org
19434 S:      Supported
19435 F:      include/net/switchdev.h
19436 F:      net/switchdev/
19437
19438 SY8106A REGULATOR DRIVER
19439 M:      Icenowy Zheng <icenowy@aosc.io>
19440 S:      Maintained
19441 F:      Documentation/devicetree/bindings/regulator/silergy,sy8106a.yaml
19442 F:      drivers/regulator/sy8106a-regulator.c
19443
19444 SYNC FILE FRAMEWORK
19445 M:      Sumit Semwal <sumit.semwal@linaro.org>
19446 R:      Gustavo Padovan <gustavo@padovan.org>
19447 L:      linux-media@vger.kernel.org
19448 L:      dri-devel@lists.freedesktop.org
19449 S:      Maintained
19450 T:      git git://anongit.freedesktop.org/drm/drm-misc
19451 F:      Documentation/driver-api/sync_file.rst
19452 F:      drivers/dma-buf/dma-fence*
19453 F:      drivers/dma-buf/sw_sync.c
19454 F:      drivers/dma-buf/sync_*
19455 F:      include/linux/sync_file.h
19456 F:      include/uapi/linux/sync_file.h
19457
19458 SYNOPSYS ARC ARCHITECTURE
19459 M:      Vineet Gupta <vgupta@kernel.org>
19460 L:      linux-snps-arc@lists.infradead.org
19461 S:      Supported
19462 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc.git
19463 F:      Documentation/arc/
19464 F:      Documentation/devicetree/bindings/arc/*
19465 F:      Documentation/devicetree/bindings/interrupt-controller/snps,arc*
19466 F:      arch/arc/
19467 F:      drivers/clocksource/arc_timer.c
19468 F:      drivers/tty/serial/arc_uart.c
19469
19470 SYNOPSYS ARC HSDK SDP pll clock driver
19471 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
19472 S:      Supported
19473 F:      Documentation/devicetree/bindings/clock/snps,hsdk-pll-clock.txt
19474 F:      drivers/clk/clk-hsdk-pll.c
19475
19476 SYNOPSYS ARC SDP clock driver
19477 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
19478 S:      Supported
19479 F:      Documentation/devicetree/bindings/clock/snps,pll-clock.txt
19480 F:      drivers/clk/axs10x/*
19481
19482 SYNOPSYS ARC SDP platform support
19483 M:      Alexey Brodkin <abrodkin@synopsys.com>
19484 S:      Supported
19485 F:      Documentation/devicetree/bindings/arc/axs10*
19486 F:      arch/arc/boot/dts/ax*
19487 F:      arch/arc/plat-axs10x
19488
19489 SYNOPSYS AXS10x RESET CONTROLLER DRIVER
19490 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
19491 S:      Supported
19492 F:      Documentation/devicetree/bindings/reset/snps,axs10x-reset.yaml
19493 F:      drivers/reset/reset-axs10x.c
19494
19495 SYNOPSYS CREG GPIO DRIVER
19496 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
19497 S:      Maintained
19498 F:      Documentation/devicetree/bindings/gpio/snps,creg-gpio.txt
19499 F:      drivers/gpio/gpio-creg-snps.c
19500
19501 SYNOPSYS DESIGNWARE 8250 UART DRIVER
19502 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
19503 S:      Maintained
19504 F:      drivers/tty/serial/8250/8250_dw.c
19505 F:      drivers/tty/serial/8250/8250_dwlib.*
19506 F:      drivers/tty/serial/8250/8250_lpss.c
19507
19508 SYNOPSYS DESIGNWARE APB GPIO DRIVER
19509 M:      Hoan Tran <hoan@os.amperecomputing.com>
19510 M:      Serge Semin <fancer.lancer@gmail.com>
19511 L:      linux-gpio@vger.kernel.org
19512 S:      Maintained
19513 F:      Documentation/devicetree/bindings/gpio/snps,dw-apb-gpio.yaml
19514 F:      drivers/gpio/gpio-dwapb.c
19515
19516 SYNOPSYS DESIGNWARE APB SSI DRIVER
19517 M:      Serge Semin <fancer.lancer@gmail.com>
19518 L:      linux-spi@vger.kernel.org
19519 S:      Supported
19520 F:      Documentation/devicetree/bindings/spi/snps,dw-apb-ssi.yaml
19521 F:      drivers/spi/spi-dw*
19522
19523 SYNOPSYS DESIGNWARE AXI DMAC DRIVER
19524 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
19525 S:      Maintained
19526 F:      Documentation/devicetree/bindings/dma/snps,dw-axi-dmac.yaml
19527 F:      drivers/dma/dw-axi-dmac/
19528
19529 SYNOPSYS DESIGNWARE DMAC DRIVER
19530 M:      Viresh Kumar <vireshk@kernel.org>
19531 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
19532 S:      Maintained
19533 F:      Documentation/devicetree/bindings/dma/renesas,rzn1-dmamux.yaml
19534 F:      Documentation/devicetree/bindings/dma/snps,dma-spear1340.yaml
19535 F:      drivers/dma/dw/
19536 F:      include/dt-bindings/dma/dw-dmac.h
19537 F:      include/linux/dma/dw.h
19538 F:      include/linux/platform_data/dma-dw.h
19539
19540 SYNOPSYS DESIGNWARE ENTERPRISE ETHERNET DRIVER
19541 M:      Jose Abreu <Jose.Abreu@synopsys.com>
19542 L:      netdev@vger.kernel.org
19543 S:      Supported
19544 F:      drivers/net/ethernet/synopsys/
19545
19546 SYNOPSYS DESIGNWARE ETHERNET XPCS DRIVER
19547 M:      Jose Abreu <Jose.Abreu@synopsys.com>
19548 L:      netdev@vger.kernel.org
19549 S:      Supported
19550 F:      drivers/net/pcs/pcs-xpcs.c
19551 F:      drivers/net/pcs/pcs-xpcs.h
19552 F:      include/linux/pcs/pcs-xpcs.h
19553
19554 SYNOPSYS DESIGNWARE I2C DRIVER
19555 M:      Jarkko Nikula <jarkko.nikula@linux.intel.com>
19556 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
19557 R:      Mika Westerberg <mika.westerberg@linux.intel.com>
19558 R:      Jan Dabros <jsd@semihalf.com>
19559 L:      linux-i2c@vger.kernel.org
19560 S:      Supported
19561 F:      drivers/i2c/busses/i2c-designware-*
19562
19563 SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
19564 M:      Jaehoon Chung <jh80.chung@samsung.com>
19565 L:      linux-mmc@vger.kernel.org
19566 S:      Maintained
19567 F:      drivers/mmc/host/dw_mmc*
19568
19569 SYNOPSYS HSDK RESET CONTROLLER DRIVER
19570 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
19571 S:      Supported
19572 F:      Documentation/devicetree/bindings/reset/snps,hsdk-reset.txt
19573 F:      drivers/reset/reset-hsdk.c
19574 F:      include/dt-bindings/reset/snps,hsdk-reset.h
19575
19576 SYNOPSYS SDHCI COMPLIANT DWC MSHC DRIVER
19577 M:      Prabu Thangamuthu <prabu.t@synopsys.com>
19578 M:      Manjunath M B <manjumb@synopsys.com>
19579 L:      linux-mmc@vger.kernel.org
19580 S:      Maintained
19581 F:      drivers/mmc/host/sdhci-pci-dwc-mshc.c
19582
19583 SYSTEM CONFIGURATION (SYSCON)
19584 M:      Lee Jones <lee.jones@linaro.org>
19585 M:      Arnd Bergmann <arnd@arndb.de>
19586 S:      Supported
19587 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
19588 F:      drivers/mfd/syscon.c
19589
19590 SYSTEM CONTROL & POWER/MANAGEMENT INTERFACE (SCPI/SCMI) Message Protocol drivers
19591 M:      Sudeep Holla <sudeep.holla@arm.com>
19592 R:      Cristian Marussi <cristian.marussi@arm.com>
19593 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
19594 S:      Maintained
19595 F:      Documentation/devicetree/bindings/firmware/arm,sc[mp]i.yaml
19596 F:      drivers/clk/clk-sc[mp]i.c
19597 F:      drivers/cpufreq/sc[mp]i-cpufreq.c
19598 F:      drivers/firmware/arm_scmi/
19599 F:      drivers/firmware/arm_scpi.c
19600 F:      drivers/regulator/scmi-regulator.c
19601 F:      drivers/reset/reset-scmi.c
19602 F:      include/linux/sc[mp]i_protocol.h
19603 F:      include/trace/events/scmi.h
19604 F:      include/uapi/linux/virtio_scmi.h
19605
19606 SYSTEM RESET/SHUTDOWN DRIVERS
19607 M:      Sebastian Reichel <sre@kernel.org>
19608 L:      linux-pm@vger.kernel.org
19609 S:      Maintained
19610 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
19611 F:      Documentation/devicetree/bindings/power/reset/
19612 F:      drivers/power/reset/
19613
19614 SYSTEM TRACE MODULE CLASS
19615 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
19616 S:      Maintained
19617 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ash/stm.git
19618 F:      Documentation/trace/stm.rst
19619 F:      drivers/hwtracing/stm/
19620 F:      include/linux/stm.h
19621 F:      include/uapi/linux/stm.h
19622
19623 SYSTEM76 ACPI DRIVER
19624 M:      Jeremy Soller <jeremy@system76.com>
19625 M:      System76 Product Development <productdev@system76.com>
19626 L:      platform-driver-x86@vger.kernel.org
19627 S:      Maintained
19628 F:      drivers/platform/x86/system76_acpi.c
19629
19630 SYSV FILESYSTEM
19631 M:      Christoph Hellwig <hch@infradead.org>
19632 S:      Maintained
19633 F:      Documentation/filesystems/sysv-fs.rst
19634 F:      fs/sysv/
19635 F:      include/linux/sysv_fs.h
19636
19637 TASKSTATS STATISTICS INTERFACE
19638 M:      Balbir Singh <bsingharora@gmail.com>
19639 S:      Maintained
19640 F:      Documentation/accounting/taskstats*
19641 F:      include/linux/taskstats*
19642 F:      kernel/taskstats.c
19643
19644 TC subsystem
19645 M:      Jamal Hadi Salim <jhs@mojatatu.com>
19646 M:      Cong Wang <xiyou.wangcong@gmail.com>
19647 M:      Jiri Pirko <jiri@resnulli.us>
19648 L:      netdev@vger.kernel.org
19649 S:      Maintained
19650 F:      include/net/pkt_cls.h
19651 F:      include/net/pkt_sched.h
19652 F:      include/net/tc_act/
19653 F:      include/uapi/linux/pkt_cls.h
19654 F:      include/uapi/linux/pkt_sched.h
19655 F:      include/uapi/linux/tc_act/
19656 F:      include/uapi/linux/tc_ematch/
19657 F:      net/sched/
19658 F:      tools/testing/selftests/tc-testing
19659
19660 TC90522 MEDIA DRIVER
19661 M:      Akihiro Tsukada <tskd08@gmail.com>
19662 L:      linux-media@vger.kernel.org
19663 S:      Odd Fixes
19664 F:      drivers/media/dvb-frontends/tc90522*
19665
19666 TCP LOW PRIORITY MODULE
19667 M:      "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
19668 M:      "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
19669 S:      Maintained
19670 W:      http://tcp-lp-mod.sourceforge.net/
19671 F:      net/ipv4/tcp_lp.c
19672
19673 TDA10071 MEDIA DRIVER
19674 M:      Antti Palosaari <crope@iki.fi>
19675 L:      linux-media@vger.kernel.org
19676 S:      Maintained
19677 W:      https://linuxtv.org
19678 W:      http://palosaari.fi/linux/
19679 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19680 T:      git git://linuxtv.org/anttip/media_tree.git
19681 F:      drivers/media/dvb-frontends/tda10071*
19682
19683 TDA18212 MEDIA DRIVER
19684 M:      Antti Palosaari <crope@iki.fi>
19685 L:      linux-media@vger.kernel.org
19686 S:      Maintained
19687 W:      https://linuxtv.org
19688 W:      http://palosaari.fi/linux/
19689 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19690 T:      git git://linuxtv.org/anttip/media_tree.git
19691 F:      drivers/media/tuners/tda18212*
19692
19693 TDA18218 MEDIA DRIVER
19694 M:      Antti Palosaari <crope@iki.fi>
19695 L:      linux-media@vger.kernel.org
19696 S:      Maintained
19697 W:      https://linuxtv.org
19698 W:      http://palosaari.fi/linux/
19699 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19700 T:      git git://linuxtv.org/anttip/media_tree.git
19701 F:      drivers/media/tuners/tda18218*
19702
19703 TDA18250 MEDIA DRIVER
19704 M:      Olli Salonen <olli.salonen@iki.fi>
19705 L:      linux-media@vger.kernel.org
19706 S:      Maintained
19707 W:      https://linuxtv.org
19708 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19709 T:      git git://linuxtv.org/media_tree.git
19710 F:      drivers/media/tuners/tda18250*
19711
19712 TDA18271 MEDIA DRIVER
19713 M:      Michael Krufky <mkrufky@linuxtv.org>
19714 L:      linux-media@vger.kernel.org
19715 S:      Maintained
19716 W:      https://linuxtv.org
19717 W:      http://github.com/mkrufky
19718 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19719 T:      git git://linuxtv.org/mkrufky/tuners.git
19720 F:      drivers/media/tuners/tda18271*
19721
19722 TDA1997x MEDIA DRIVER
19723 M:      Tim Harvey <tharvey@gateworks.com>
19724 L:      linux-media@vger.kernel.org
19725 S:      Maintained
19726 W:      https://linuxtv.org
19727 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19728 F:      drivers/media/i2c/tda1997x.*
19729
19730 TDA827x MEDIA DRIVER
19731 M:      Michael Krufky <mkrufky@linuxtv.org>
19732 L:      linux-media@vger.kernel.org
19733 S:      Maintained
19734 W:      https://linuxtv.org
19735 W:      http://github.com/mkrufky
19736 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19737 T:      git git://linuxtv.org/mkrufky/tuners.git
19738 F:      drivers/media/tuners/tda8290.*
19739
19740 TDA8290 MEDIA DRIVER
19741 M:      Michael Krufky <mkrufky@linuxtv.org>
19742 L:      linux-media@vger.kernel.org
19743 S:      Maintained
19744 W:      https://linuxtv.org
19745 W:      http://github.com/mkrufky
19746 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19747 T:      git git://linuxtv.org/mkrufky/tuners.git
19748 F:      drivers/media/tuners/tda8290.*
19749
19750 TDA9840 MEDIA DRIVER
19751 M:      Hans Verkuil <hverkuil@xs4all.nl>
19752 L:      linux-media@vger.kernel.org
19753 S:      Maintained
19754 W:      https://linuxtv.org
19755 T:      git git://linuxtv.org/media_tree.git
19756 F:      drivers/media/i2c/tda9840*
19757
19758 TEA5761 TUNER DRIVER
19759 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
19760 L:      linux-media@vger.kernel.org
19761 S:      Odd fixes
19762 W:      https://linuxtv.org
19763 T:      git git://linuxtv.org/media_tree.git
19764 F:      drivers/media/tuners/tea5761.*
19765
19766 TEA5767 TUNER DRIVER
19767 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
19768 L:      linux-media@vger.kernel.org
19769 S:      Maintained
19770 W:      https://linuxtv.org
19771 T:      git git://linuxtv.org/media_tree.git
19772 F:      drivers/media/tuners/tea5767.*
19773
19774 TEA6415C MEDIA DRIVER
19775 M:      Hans Verkuil <hverkuil@xs4all.nl>
19776 L:      linux-media@vger.kernel.org
19777 S:      Maintained
19778 W:      https://linuxtv.org
19779 T:      git git://linuxtv.org/media_tree.git
19780 F:      drivers/media/i2c/tea6415c*
19781
19782 TEA6420 MEDIA DRIVER
19783 M:      Hans Verkuil <hverkuil@xs4all.nl>
19784 L:      linux-media@vger.kernel.org
19785 S:      Maintained
19786 W:      https://linuxtv.org
19787 T:      git git://linuxtv.org/media_tree.git
19788 F:      drivers/media/i2c/tea6420*
19789
19790 TEAM DRIVER
19791 M:      Jiri Pirko <jiri@resnulli.us>
19792 L:      netdev@vger.kernel.org
19793 S:      Supported
19794 F:      drivers/net/team/
19795 F:      include/linux/if_team.h
19796 F:      include/uapi/linux/if_team.h
19797
19798 TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
19799 M:      "Savoir-faire Linux Inc." <kernel@savoirfairelinux.com>
19800 S:      Maintained
19801 F:      arch/x86/platform/ts5500/
19802
19803 TECHNOTREND USB IR RECEIVER
19804 M:      Sean Young <sean@mess.org>
19805 L:      linux-media@vger.kernel.org
19806 S:      Maintained
19807 F:      drivers/media/rc/ttusbir.c
19808
19809 TECHWELL TW9910 VIDEO DECODER
19810 L:      linux-media@vger.kernel.org
19811 S:      Orphan
19812 F:      drivers/media/i2c/tw9910.c
19813 F:      include/media/i2c/tw9910.h
19814
19815 TEE SUBSYSTEM
19816 M:      Jens Wiklander <jens.wiklander@linaro.org>
19817 R:      Sumit Garg <sumit.garg@linaro.org>
19818 L:      op-tee@lists.trustedfirmware.org
19819 S:      Maintained
19820 F:      Documentation/staging/tee.rst
19821 F:      drivers/tee/
19822 F:      include/linux/tee_drv.h
19823 F:      include/uapi/linux/tee.h
19824
19825 TEGRA ARCHITECTURE SUPPORT
19826 M:      Thierry Reding <thierry.reding@gmail.com>
19827 M:      Jonathan Hunter <jonathanh@nvidia.com>
19828 L:      linux-tegra@vger.kernel.org
19829 S:      Supported
19830 Q:      http://patchwork.ozlabs.org/project/linux-tegra/list/
19831 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git
19832 N:      [^a-z]tegra
19833
19834 TEGRA CLOCK DRIVER
19835 M:      Peter De Schrijver <pdeschrijver@nvidia.com>
19836 M:      Prashant Gaikwad <pgaikwad@nvidia.com>
19837 S:      Supported
19838 F:      drivers/clk/tegra/
19839
19840 TEGRA DMA DRIVERS
19841 M:      Laxman Dewangan <ldewangan@nvidia.com>
19842 M:      Jon Hunter <jonathanh@nvidia.com>
19843 S:      Supported
19844 F:      drivers/dma/tegra*
19845
19846 TEGRA I2C DRIVER
19847 M:      Laxman Dewangan <ldewangan@nvidia.com>
19848 R:      Dmitry Osipenko <digetx@gmail.com>
19849 S:      Supported
19850 F:      drivers/i2c/busses/i2c-tegra.c
19851
19852 TEGRA IOMMU DRIVERS
19853 M:      Thierry Reding <thierry.reding@gmail.com>
19854 R:      Krishna Reddy <vdumpa@nvidia.com>
19855 L:      linux-tegra@vger.kernel.org
19856 S:      Supported
19857 F:      drivers/iommu/arm/arm-smmu/arm-smmu-nvidia.c
19858 F:      drivers/iommu/tegra*
19859
19860 TEGRA KBC DRIVER
19861 M:      Laxman Dewangan <ldewangan@nvidia.com>
19862 S:      Supported
19863 F:      drivers/input/keyboard/tegra-kbc.c
19864
19865 TEGRA NAND DRIVER
19866 M:      Stefan Agner <stefan@agner.ch>
19867 M:      Lucas Stach <dev@lynxeye.de>
19868 S:      Maintained
19869 F:      Documentation/devicetree/bindings/mtd/nvidia-tegra20-nand.txt
19870 F:      drivers/mtd/nand/raw/tegra_nand.c
19871
19872 TEGRA PWM DRIVER
19873 M:      Thierry Reding <thierry.reding@gmail.com>
19874 S:      Supported
19875 F:      drivers/pwm/pwm-tegra.c
19876
19877 TEGRA SERIAL DRIVER
19878 M:      Laxman Dewangan <ldewangan@nvidia.com>
19879 S:      Supported
19880 F:      drivers/tty/serial/serial-tegra.c
19881
19882 TEGRA SPI DRIVER
19883 M:      Laxman Dewangan <ldewangan@nvidia.com>
19884 S:      Supported
19885 F:      drivers/spi/spi-tegra*
19886
19887 TEGRA QUAD SPI DRIVER
19888 M:      Thierry Reding <thierry.reding@gmail.com>
19889 M:      Jonathan Hunter <jonathanh@nvidia.com>
19890 M:      Sowjanya Komatineni <skomatineni@nvidia.com>
19891 L:      linux-tegra@vger.kernel.org
19892 S:      Maintained
19893 F:      drivers/spi/spi-tegra210-quad.c
19894
19895 TEGRA VIDEO DRIVER
19896 M:      Thierry Reding <thierry.reding@gmail.com>
19897 M:      Jonathan Hunter <jonathanh@nvidia.com>
19898 M:      Sowjanya Komatineni <skomatineni@nvidia.com>
19899 L:      linux-media@vger.kernel.org
19900 L:      linux-tegra@vger.kernel.org
19901 S:      Maintained
19902 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.yaml
19903 F:      drivers/staging/media/tegra-video/
19904
19905 TEGRA XUSB PADCTL DRIVER
19906 M:      JC Kuo <jckuo@nvidia.com>
19907 S:      Supported
19908 F:      drivers/phy/tegra/xusb*
19909
19910 TEHUTI ETHERNET DRIVER
19911 M:      Andy Gospodarek <andy@greyhouse.net>
19912 L:      netdev@vger.kernel.org
19913 S:      Supported
19914 F:      drivers/net/ethernet/tehuti/*
19915
19916 TELECOM CLOCK DRIVER FOR MCPL0010
19917 M:      Mark Gross <markgross@kernel.org>
19918 S:      Supported
19919 F:      drivers/char/tlclk.c
19920
19921 TEMPO SEMICONDUCTOR DRIVERS
19922 M:      Steven Eckhoff <steven.eckhoff.opensource@gmail.com>
19923 S:      Maintained
19924 F:      Documentation/devicetree/bindings/sound/tscs*.txt
19925 F:      sound/soc/codecs/tscs*.c
19926 F:      sound/soc/codecs/tscs*.h
19927
19928 TENSILICA XTENSA PORT (xtensa)
19929 M:      Chris Zankel <chris@zankel.net>
19930 M:      Max Filippov <jcmvbkbc@gmail.com>
19931 L:      linux-xtensa@linux-xtensa.org
19932 S:      Maintained
19933 T:      git git://github.com/czankel/xtensa-linux.git
19934 F:      arch/xtensa/
19935 F:      drivers/irqchip/irq-xtensa-*
19936
19937 TEXAS INSTRUMENTS ASoC DRIVERS
19938 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
19939 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19940 S:      Maintained
19941 F:      Documentation/devicetree/bindings/sound/davinci-mcasp-audio.yaml
19942 F:      sound/soc/ti/
19943
19944 TEXAS INSTRUMENTS' DAC7612 DAC DRIVER
19945 M:      Ricardo Ribalda <ribalda@kernel.org>
19946 L:      linux-iio@vger.kernel.org
19947 S:      Supported
19948 F:      Documentation/devicetree/bindings/iio/dac/ti,dac7612.yaml
19949 F:      drivers/iio/dac/ti-dac7612.c
19950
19951 TEXAS INSTRUMENTS DMA DRIVERS
19952 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
19953 L:      dmaengine@vger.kernel.org
19954 S:      Maintained
19955 F:      Documentation/devicetree/bindings/dma/ti-dma-crossbar.txt
19956 F:      Documentation/devicetree/bindings/dma/ti-edma.txt
19957 F:      Documentation/devicetree/bindings/dma/ti/
19958 F:      drivers/dma/ti/
19959 X:      drivers/dma/ti/cppi41.c
19960 F:      include/linux/dma/k3-udma-glue.h
19961 F:      include/linux/dma/ti-cppi5.h
19962 F:      include/linux/dma/k3-psil.h
19963
19964 TEXAS INSTRUMENTS' SYSTEM CONTROL INTERFACE (TISCI) PROTOCOL DRIVER
19965 M:      Nishanth Menon <nm@ti.com>
19966 M:      Tero Kristo <kristo@kernel.org>
19967 M:      Santosh Shilimkar <ssantosh@kernel.org>
19968 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
19969 S:      Maintained
19970 F:      Documentation/devicetree/bindings/arm/keystone/ti,k3-sci-common.yaml
19971 F:      Documentation/devicetree/bindings/arm/keystone/ti,sci.yaml
19972 F:      Documentation/devicetree/bindings/clock/ti,sci-clk.yaml
19973 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-inta.yaml
19974 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-intr.yaml
19975 F:      Documentation/devicetree/bindings/reset/ti,sci-reset.yaml
19976 F:      Documentation/devicetree/bindings/soc/ti/sci-pm-domain.yaml
19977 F:      drivers/clk/keystone/sci-clk.c
19978 F:      drivers/firmware/ti_sci*
19979 F:      drivers/irqchip/irq-ti-sci-inta.c
19980 F:      drivers/irqchip/irq-ti-sci-intr.c
19981 F:      drivers/reset/reset-ti-sci.c
19982 F:      drivers/soc/ti/ti_sci_inta_msi.c
19983 F:      drivers/soc/ti/ti_sci_pm_domains.c
19984 F:      include/dt-bindings/soc/ti,sci_pm_domain.h
19985 F:      include/linux/soc/ti/ti_sci_inta_msi.h
19986 F:      include/linux/soc/ti/ti_sci_protocol.h
19987
19988 TEXAS INSTRUMENTS TPS23861 PoE PSE DRIVER
19989 M:      Robert Marko <robert.marko@sartura.hr>
19990 M:      Luka Perkov <luka.perkov@sartura.hr>
19991 L:      linux-hwmon@vger.kernel.org
19992 S:      Maintained
19993 F:      Documentation/devicetree/bindings/hwmon/ti,tps23861.yaml
19994 F:      Documentation/hwmon/tps23861.rst
19995 F:      drivers/hwmon/tps23861.c
19996
19997 TEXAS INSTRUMENTS' TMP117 TEMPERATURE SENSOR DRIVER
19998 M:      Puranjay Mohan <puranjay12@gmail.com>
19999 L:      linux-iio@vger.kernel.org
20000 S:      Supported
20001 F:      Documentation/devicetree/bindings/iio/temperature/ti,tmp117.yaml
20002 F:      drivers/iio/temperature/tmp117.c
20003
20004 THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER
20005 M:      Hans Verkuil <hverkuil@xs4all.nl>
20006 L:      linux-media@vger.kernel.org
20007 S:      Maintained
20008 W:      https://linuxtv.org
20009 T:      git git://linuxtv.org/media_tree.git
20010 F:      drivers/media/radio/radio-raremono.c
20011
20012 THERMAL
20013 M:      Rafael J. Wysocki <rafael@kernel.org>
20014 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
20015 R:      Amit Kucheria <amitk@kernel.org>
20016 R:      Zhang Rui <rui.zhang@intel.com>
20017 L:      linux-pm@vger.kernel.org
20018 S:      Supported
20019 Q:      https://patchwork.kernel.org/project/linux-pm/list/
20020 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git thermal
20021 F:      Documentation/ABI/testing/sysfs-class-thermal
20022 F:      Documentation/devicetree/bindings/thermal/
20023 F:      Documentation/driver-api/thermal/
20024 F:      drivers/thermal/
20025 F:      include/dt-bindings/thermal/
20026 F:      include/linux/cpu_cooling.h
20027 F:      include/linux/thermal.h
20028 F:      include/uapi/linux/thermal.h
20029 F:      tools/lib/thermal/
20030 F:      tools/thermal/
20031
20032 THERMAL DRIVER FOR AMLOGIC SOCS
20033 M:      Guillaume La Roque <glaroque@baylibre.com>
20034 L:      linux-pm@vger.kernel.org
20035 L:      linux-amlogic@lists.infradead.org
20036 S:      Supported
20037 W:      http://linux-meson.com/
20038 F:      Documentation/devicetree/bindings/thermal/amlogic,thermal.yaml
20039 F:      drivers/thermal/amlogic_thermal.c
20040
20041 THERMAL/CPU_COOLING
20042 M:      Amit Daniel Kachhap <amit.kachhap@gmail.com>
20043 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
20044 M:      Viresh Kumar <viresh.kumar@linaro.org>
20045 R:      Lukasz Luba <lukasz.luba@arm.com>
20046 L:      linux-pm@vger.kernel.org
20047 S:      Supported
20048 F:      Documentation/driver-api/thermal/cpu-cooling-api.rst
20049 F:      Documentation/driver-api/thermal/cpu-idle-cooling.rst
20050 F:      drivers/thermal/cpufreq_cooling.c
20051 F:      drivers/thermal/cpuidle_cooling.c
20052 F:      include/linux/cpu_cooling.h
20053
20054 THERMAL/POWER_ALLOCATOR
20055 M:      Lukasz Luba <lukasz.luba@arm.com>
20056 L:      linux-pm@vger.kernel.org
20057 S:      Maintained
20058 F:      Documentation/driver-api/thermal/power_allocator.rst
20059 F:      drivers/thermal/gov_power_allocator.c
20060 F:      include/trace/events/thermal_power_allocator.h
20061
20062 THINKPAD ACPI EXTRAS DRIVER
20063 M:      Henrique de Moraes Holschuh <hmh@hmh.eng.br>
20064 L:      ibm-acpi-devel@lists.sourceforge.net
20065 L:      platform-driver-x86@vger.kernel.org
20066 S:      Maintained
20067 W:      http://ibm-acpi.sourceforge.net
20068 W:      http://thinkwiki.org/wiki/Ibm-acpi
20069 T:      git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
20070 F:      drivers/platform/x86/thinkpad_acpi.c
20071
20072 THINKPAD LMI DRIVER
20073 M:      Mark Pearson <markpearson@lenovo.com>
20074 L:      platform-driver-x86@vger.kernel.org
20075 S:      Maintained
20076 F:      Documentation/ABI/testing/sysfs-class-firmware-attributes
20077 F:      drivers/platform/x86/think-lmi.?
20078
20079 THUNDERBOLT DMA TRAFFIC TEST DRIVER
20080 M:      Isaac Hazan <isaac.hazan@intel.com>
20081 L:      linux-usb@vger.kernel.org
20082 S:      Maintained
20083 F:      drivers/thunderbolt/dma_test.c
20084
20085 THUNDERBOLT DRIVER
20086 M:      Andreas Noever <andreas.noever@gmail.com>
20087 M:      Michael Jamet <michael.jamet@intel.com>
20088 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
20089 M:      Yehezkel Bernat <YehezkelShB@gmail.com>
20090 L:      linux-usb@vger.kernel.org
20091 S:      Maintained
20092 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/westeri/thunderbolt.git
20093 F:      Documentation/admin-guide/thunderbolt.rst
20094 F:      drivers/thunderbolt/
20095 F:      include/linux/thunderbolt.h
20096
20097 THUNDERBOLT NETWORK DRIVER
20098 M:      Michael Jamet <michael.jamet@intel.com>
20099 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
20100 M:      Yehezkel Bernat <YehezkelShB@gmail.com>
20101 L:      netdev@vger.kernel.org
20102 S:      Maintained
20103 F:      drivers/net/thunderbolt.c
20104
20105 THUNDERX GPIO DRIVER
20106 M:      Robert Richter <rric@kernel.org>
20107 S:      Odd Fixes
20108 F:      drivers/gpio/gpio-thunderx.c
20109
20110 TI ADS131E0X ADC SERIES DRIVER
20111 M:      Tomislav Denis <tomislav.denis@avl.com>
20112 L:      linux-iio@vger.kernel.org
20113 S:      Maintained
20114 F:      Documentation/devicetree/bindings/iio/adc/ti,ads131e08.yaml
20115 F:      drivers/iio/adc/ti-ads131e08.c
20116
20117 TI AM437X VPFE DRIVER
20118 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
20119 L:      linux-media@vger.kernel.org
20120 S:      Maintained
20121 W:      https://linuxtv.org
20122 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
20123 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
20124 F:      drivers/media/platform/ti/am437x/
20125
20126 TI BANDGAP AND THERMAL DRIVER
20127 M:      Eduardo Valentin <edubezval@gmail.com>
20128 M:      Keerthy <j-keerthy@ti.com>
20129 L:      linux-pm@vger.kernel.org
20130 L:      linux-omap@vger.kernel.org
20131 S:      Maintained
20132 F:      drivers/thermal/ti-soc-thermal/
20133
20134 TI BQ27XXX POWER SUPPLY DRIVER
20135 F:      drivers/power/supply/bq27xxx_battery.c
20136 F:      drivers/power/supply/bq27xxx_battery_i2c.c
20137 F:      include/linux/power/bq27xxx_battery.h
20138
20139 TI CDCE706 CLOCK DRIVER
20140 M:      Max Filippov <jcmvbkbc@gmail.com>
20141 S:      Maintained
20142 F:      drivers/clk/clk-cdce706.c
20143
20144 TI CLOCK DRIVER
20145 M:      Tero Kristo <kristo@kernel.org>
20146 L:      linux-omap@vger.kernel.org
20147 S:      Odd Fixes
20148 F:      drivers/clk/ti/
20149 F:      include/linux/clk/ti.h
20150
20151 TI DAVINCI MACHINE SUPPORT
20152 M:      Sekhar Nori <nsekhar@ti.com>
20153 R:      Bartosz Golaszewski <brgl@bgdev.pl>
20154 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
20155 S:      Supported
20156 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nsekhar/linux-davinci.git
20157 F:      Documentation/devicetree/bindings/i2c/i2c-davinci.txt
20158 F:      arch/arm/boot/dts/da850*
20159 F:      arch/arm/mach-davinci/
20160 F:      drivers/i2c/busses/i2c-davinci.c
20161
20162 TI DAVINCI SERIES CLOCK DRIVER
20163 M:      David Lechner <david@lechnology.com>
20164 R:      Sekhar Nori <nsekhar@ti.com>
20165 S:      Maintained
20166 F:      Documentation/devicetree/bindings/clock/ti/davinci/
20167 F:      drivers/clk/davinci/
20168
20169 TI DAVINCI SERIES GPIO DRIVER
20170 M:      Keerthy <j-keerthy@ti.com>
20171 L:      linux-gpio@vger.kernel.org
20172 S:      Maintained
20173 F:      Documentation/devicetree/bindings/gpio/gpio-davinci.yaml
20174 F:      drivers/gpio/gpio-davinci.c
20175
20176 TI DAVINCI SERIES MEDIA DRIVER
20177 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
20178 L:      linux-media@vger.kernel.org
20179 S:      Maintained
20180 W:      https://linuxtv.org
20181 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
20182 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
20183 F:      drivers/media/platform/ti/davinci/
20184 F:      include/media/davinci/
20185
20186 TI ENHANCED QUADRATURE ENCODER PULSE (eQEP) DRIVER
20187 R:      David Lechner <david@lechnology.com>
20188 L:      linux-iio@vger.kernel.org
20189 F:      Documentation/devicetree/bindings/counter/ti-eqep.yaml
20190 F:      drivers/counter/ti-eqep.c
20191
20192 TI ETHERNET SWITCH DRIVER (CPSW)
20193 R:      Grygorii Strashko <grygorii.strashko@ti.com>
20194 L:      linux-omap@vger.kernel.org
20195 L:      netdev@vger.kernel.org
20196 S:      Maintained
20197 F:      drivers/net/ethernet/ti/cpsw*
20198 F:      drivers/net/ethernet/ti/davinci*
20199
20200 TI FLASH MEDIA MEMORYSTICK/MMC DRIVERS
20201 M:      Alex Dubov <oakad@yahoo.com>
20202 S:      Maintained
20203 W:      http://tifmxx.berlios.de/
20204 F:      drivers/memstick/host/tifm_ms.c
20205 F:      drivers/misc/tifm*
20206 F:      drivers/mmc/host/tifm_sd.c
20207 F:      include/linux/tifm.h
20208
20209 TI KEYSTONE MULTICORE NAVIGATOR DRIVERS
20210 M:      Nishanth Menon <nm@ti.com>
20211 M:      Santosh Shilimkar <ssantosh@kernel.org>
20212 L:      linux-kernel@vger.kernel.org
20213 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
20214 S:      Maintained
20215 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ti/linux.git
20216 F:      drivers/soc/ti/*
20217
20218 TI LM49xxx FAMILY ASoC CODEC DRIVERS
20219 M:      M R Swami Reddy <mr.swami.reddy@ti.com>
20220 M:      Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
20221 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
20222 S:      Maintained
20223 F:      sound/soc/codecs/isabelle*
20224 F:      sound/soc/codecs/lm49453*
20225
20226 TI PCM3060 ASoC CODEC DRIVER
20227 M:      Kirill Marinushkin <kmarinushkin@birdec.com>
20228 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
20229 S:      Maintained
20230 F:      Documentation/devicetree/bindings/sound/pcm3060.txt
20231 F:      sound/soc/codecs/pcm3060*
20232
20233 TI TAS571X FAMILY ASoC CODEC DRIVER
20234 M:      Kevin Cernekee <cernekee@chromium.org>
20235 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
20236 S:      Odd Fixes
20237 F:      sound/soc/codecs/tas571x*
20238
20239 TI TRF7970A NFC DRIVER
20240 M:      Mark Greer <mgreer@animalcreek.com>
20241 L:      linux-wireless@vger.kernel.org
20242 L:      linux-nfc@lists.01.org (subscribers-only)
20243 S:      Supported
20244 F:      Documentation/devicetree/bindings/net/nfc/ti,trf7970a.yaml
20245 F:      drivers/nfc/trf7970a.c
20246
20247 TI TSC2046 ADC DRIVER
20248 M:      Oleksij Rempel <o.rempel@pengutronix.de>
20249 R:      kernel@pengutronix.de
20250 L:      linux-iio@vger.kernel.org
20251 S:      Maintained
20252 F:      Documentation/devicetree/bindings/iio/adc/ti,tsc2046.yaml
20253 F:      drivers/iio/adc/ti-tsc2046.c
20254
20255 TI TWL4030 SERIES SOC CODEC DRIVER
20256 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
20257 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
20258 S:      Maintained
20259 F:      sound/soc/codecs/twl4030*
20260
20261 TI VPE/CAL DRIVERS
20262 M:      Benoit Parrot <bparrot@ti.com>
20263 L:      linux-media@vger.kernel.org
20264 S:      Maintained
20265 W:      http://linuxtv.org/
20266 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
20267 F:      Documentation/devicetree/bindings/media/ti,cal.yaml
20268 F:      Documentation/devicetree/bindings/media/ti,vpe.yaml
20269 F:      drivers/media/platform/ti/cal/
20270 F:      drivers/media/platform/ti/vpe/
20271
20272 TI WILINK WIRELESS DRIVERS
20273 L:      linux-wireless@vger.kernel.org
20274 S:      Orphan
20275 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wl12xx
20276 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wl1251
20277 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
20278 F:      drivers/net/wireless/ti/
20279 F:      include/linux/wl12xx.h
20280
20281 TIMEKEEPING, CLOCKSOURCE CORE, NTP, ALARMTIMER
20282 M:      John Stultz <jstultz@google.com>
20283 M:      Thomas Gleixner <tglx@linutronix.de>
20284 R:      Stephen Boyd <sboyd@kernel.org>
20285 L:      linux-kernel@vger.kernel.org
20286 S:      Supported
20287 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
20288 F:      include/linux/clocksource.h
20289 F:      include/linux/time.h
20290 F:      include/linux/timex.h
20291 F:      include/uapi/linux/time.h
20292 F:      include/uapi/linux/timex.h
20293 F:      kernel/time/alarmtimer.c
20294 F:      kernel/time/clocksource.c
20295 F:      kernel/time/ntp.c
20296 F:      kernel/time/time*.c
20297 F:      tools/testing/selftests/timers/
20298
20299 TIPC NETWORK LAYER
20300 M:      Jon Maloy <jmaloy@redhat.com>
20301 M:      Ying Xue <ying.xue@windriver.com>
20302 L:      netdev@vger.kernel.org (core kernel code)
20303 L:      tipc-discussion@lists.sourceforge.net (user apps, general discussion)
20304 S:      Maintained
20305 W:      http://tipc.sourceforge.net/
20306 F:      include/uapi/linux/tipc*.h
20307 F:      net/tipc/
20308
20309 TLAN NETWORK DRIVER
20310 M:      Samuel Chessman <chessman@tux.org>
20311 L:      tlan-devel@lists.sourceforge.net (subscribers-only)
20312 S:      Maintained
20313 W:      http://sourceforge.net/projects/tlan/
20314 F:      Documentation/networking/device_drivers/ethernet/ti/tlan.rst
20315 F:      drivers/net/ethernet/ti/tlan.*
20316
20317 TM6000 VIDEO4LINUX DRIVER
20318 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
20319 L:      linux-media@vger.kernel.org
20320 S:      Odd fixes
20321 W:      https://linuxtv.org
20322 T:      git git://linuxtv.org/media_tree.git
20323 F:      Documentation/admin-guide/media/tm6000*
20324 F:      drivers/media/usb/tm6000/
20325
20326 TMIO/SDHI MMC DRIVER
20327 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
20328 L:      linux-mmc@vger.kernel.org
20329 L:      linux-renesas-soc@vger.kernel.org
20330 S:      Supported
20331 F:      drivers/mmc/host/renesas_sdhi*
20332 F:      drivers/mmc/host/tmio_mmc*
20333 F:      include/linux/mfd/tmio.h
20334
20335 TMP401 HARDWARE MONITOR DRIVER
20336 M:      Guenter Roeck <linux@roeck-us.net>
20337 L:      linux-hwmon@vger.kernel.org
20338 S:      Maintained
20339 F:      Documentation/devicetree/bindings/hwmon/ti,tmp401.yaml
20340 F:      Documentation/hwmon/tmp401.rst
20341 F:      drivers/hwmon/tmp401.c
20342
20343 TMP464 HARDWARE MONITOR DRIVER
20344 M:      Agathe Porte <agathe.porte@nokia.com>
20345 M:      Guenter Roeck <linux@roeck-us.net>
20346 L:      linux-hwmon@vger.kernel.org
20347 S:      Maintained
20348 F:      Documentation/devicetree/bindings/hwmon/ti,tmp464.yaml
20349 F:      Documentation/hwmon/tmp464.rst
20350 F:      drivers/hwmon/tmp464.c
20351
20352 TMP513 HARDWARE MONITOR DRIVER
20353 M:      Eric Tremblay <etremblay@distech-controls.com>
20354 L:      linux-hwmon@vger.kernel.org
20355 S:      Maintained
20356 F:      Documentation/hwmon/tmp513.rst
20357 F:      drivers/hwmon/tmp513.c
20358
20359 TMPFS (SHMEM FILESYSTEM)
20360 M:      Hugh Dickins <hughd@google.com>
20361 L:      linux-mm@kvack.org
20362 S:      Maintained
20363 F:      include/linux/shmem_fs.h
20364 F:      mm/shmem.c
20365
20366 TOMOYO SECURITY MODULE
20367 M:      Kentaro Takeda <takedakn@nttdata.co.jp>
20368 M:      Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
20369 L:      tomoyo-dev-en@lists.osdn.me (subscribers-only, for developers in English)
20370 L:      tomoyo-users-en@lists.osdn.me (subscribers-only, for users in English)
20371 L:      tomoyo-dev@lists.osdn.me (subscribers-only, for developers in Japanese)
20372 L:      tomoyo-users@lists.osdn.me (subscribers-only, for users in Japanese)
20373 S:      Maintained
20374 W:      https://tomoyo.osdn.jp/
20375 F:      security/tomoyo/
20376
20377 TOPSTAR LAPTOP EXTRAS DRIVER
20378 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
20379 L:      platform-driver-x86@vger.kernel.org
20380 S:      Maintained
20381 F:      drivers/platform/x86/topstar-laptop.c
20382
20383 TORTURE-TEST MODULES
20384 M:      Davidlohr Bueso <dave@stgolabs.net>
20385 M:      "Paul E. McKenney" <paulmck@kernel.org>
20386 M:      Josh Triplett <josh@joshtriplett.org>
20387 L:      linux-kernel@vger.kernel.org
20388 S:      Supported
20389 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
20390 F:      Documentation/RCU/torture.rst
20391 F:      kernel/locking/locktorture.c
20392 F:      kernel/rcu/rcuscale.c
20393 F:      kernel/rcu/rcutorture.c
20394 F:      kernel/rcu/refscale.c
20395 F:      kernel/torture.c
20396
20397 TOSHIBA ACPI EXTRAS DRIVER
20398 M:      Azael Avalos <coproscefalo@gmail.com>
20399 L:      platform-driver-x86@vger.kernel.org
20400 S:      Maintained
20401 F:      drivers/platform/x86/toshiba_acpi.c
20402
20403 TOSHIBA BLUETOOTH DRIVER
20404 M:      Azael Avalos <coproscefalo@gmail.com>
20405 L:      platform-driver-x86@vger.kernel.org
20406 S:      Maintained
20407 F:      drivers/platform/x86/toshiba_bluetooth.c
20408
20409 TOSHIBA HDD ACTIVE PROTECTION SENSOR DRIVER
20410 M:      Azael Avalos <coproscefalo@gmail.com>
20411 L:      platform-driver-x86@vger.kernel.org
20412 S:      Maintained
20413 F:      drivers/platform/x86/toshiba_haps.c
20414
20415 TOSHIBA SMM DRIVER
20416 M:      Jonathan Buzzard <jonathan@buzzard.org.uk>
20417 S:      Maintained
20418 W:      http://www.buzzard.org.uk/toshiba/
20419 F:      drivers/char/toshiba.c
20420 F:      include/linux/toshiba.h
20421 F:      include/uapi/linux/toshiba.h
20422
20423 TOSHIBA TC358743 DRIVER
20424 M:      Mats Randgaard <matrandg@cisco.com>
20425 L:      linux-media@vger.kernel.org
20426 S:      Maintained
20427 F:      drivers/media/i2c/tc358743*
20428 F:      include/media/i2c/tc358743.h
20429
20430 TOSHIBA WMI HOTKEYS DRIVER
20431 M:      Azael Avalos <coproscefalo@gmail.com>
20432 L:      platform-driver-x86@vger.kernel.org
20433 S:      Maintained
20434 F:      drivers/platform/x86/toshiba-wmi.c
20435
20436 TPM DEVICE DRIVER
20437 M:      Peter Huewe <peterhuewe@gmx.de>
20438 M:      Jarkko Sakkinen <jarkko@kernel.org>
20439 R:      Jason Gunthorpe <jgg@ziepe.ca>
20440 L:      linux-integrity@vger.kernel.org
20441 S:      Maintained
20442 W:      https://kernsec.org/wiki/index.php/Linux_Kernel_Integrity
20443 Q:      https://patchwork.kernel.org/project/linux-integrity/list/
20444 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jarkko/linux-tpmdd.git
20445 F:      drivers/char/tpm/
20446
20447 TRACING
20448 M:      Steven Rostedt <rostedt@goodmis.org>
20449 M:      Ingo Molnar <mingo@redhat.com>
20450 S:      Maintained
20451 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rostedt/linux-trace.git
20452 F:      Documentation/trace/ftrace.rst
20453 F:      arch/*/*/*/*ftrace*
20454 F:      arch/*/*/*ftrace*
20455 F:      fs/tracefs/
20456 F:      include/*/ftrace.h
20457 F:      include/linux/trace*.h
20458 F:      include/trace/
20459 F:      kernel/trace/
20460 F:      tools/testing/selftests/ftrace/
20461
20462 TRACING MMIO ACCESSES (MMIOTRACE)
20463 M:      Steven Rostedt <rostedt@goodmis.org>
20464 M:      Ingo Molnar <mingo@kernel.org>
20465 R:      Karol Herbst <karolherbst@gmail.com>
20466 R:      Pekka Paalanen <ppaalanen@gmail.com>
20467 L:      linux-kernel@vger.kernel.org
20468 L:      nouveau@lists.freedesktop.org
20469 S:      Maintained
20470 F:      arch/x86/mm/kmmio.c
20471 F:      arch/x86/mm/mmio-mod.c
20472 F:      arch/x86/mm/testmmiotrace.c
20473 F:      include/linux/mmiotrace.h
20474 F:      kernel/trace/trace_mmiotrace.c
20475
20476 TRACING OS NOISE / LATENCY TRACERS
20477 M:      Steven Rostedt <rostedt@goodmis.org>
20478 M:      Daniel Bristot de Oliveira <bristot@kernel.org>
20479 S:      Maintained
20480 F:      kernel/trace/trace_osnoise.c
20481 F:      include/trace/events/osnoise.h
20482 F:      kernel/trace/trace_hwlat.c
20483 F:      kernel/trace/trace_irqsoff.c
20484 F:      kernel/trace/trace_sched_wakeup.c
20485 F:      Documentation/trace/osnoise-tracer.rst
20486 F:      Documentation/trace/timerlat-tracer.rst
20487 F:      Documentation/trace/hwlat_detector.rst
20488 F:      arch/*/kernel/trace.c
20489
20490 Real-time Linux Analysis (RTLA) tools
20491 M:      Daniel Bristot de Oliveira <bristot@kernel.org>
20492 M:      Steven Rostedt <rostedt@goodmis.org>
20493 L:      linux-trace-devel@vger.kernel.org
20494 S:      Maintained
20495 F:      Documentation/tools/rtla/
20496 F:      tools/tracing/rtla/
20497
20498 TRADITIONAL CHINESE DOCUMENTATION
20499 M:      Hu Haowen <src.res@email.cn>
20500 L:      linux-doc-tw-discuss@lists.sourceforge.net (moderated for non-subscribers)
20501 S:      Maintained
20502 W:      https://github.com/srcres258/linux-doc
20503 T:      git git://github.com/srcres258/linux-doc.git doc-zh-tw
20504 F:      Documentation/translations/zh_TW/
20505
20506 TTY LAYER
20507 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
20508 M:      Jiri Slaby <jirislaby@kernel.org>
20509 S:      Supported
20510 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
20511 F:      Documentation/driver-api/serial/
20512 F:      drivers/tty/
20513 F:      drivers/tty/serial/serial_core.c
20514 F:      include/linux/selection.h
20515 F:      include/linux/serial.h
20516 F:      include/linux/serial_core.h
20517 F:      include/linux/sysrq.h
20518 F:      include/linux/tty*.h
20519 F:      include/linux/vt.h
20520 F:      include/linux/vt_*.h
20521 F:      include/uapi/linux/serial.h
20522 F:      include/uapi/linux/serial_core.h
20523 F:      include/uapi/linux/tty.h
20524
20525 TUA9001 MEDIA DRIVER
20526 M:      Antti Palosaari <crope@iki.fi>
20527 L:      linux-media@vger.kernel.org
20528 S:      Maintained
20529 W:      https://linuxtv.org
20530 W:      http://palosaari.fi/linux/
20531 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
20532 T:      git git://linuxtv.org/anttip/media_tree.git
20533 F:      drivers/media/tuners/tua9001*
20534
20535 TULIP NETWORK DRIVERS
20536 L:      netdev@vger.kernel.org
20537 L:      linux-parisc@vger.kernel.org
20538 S:      Orphan
20539 F:      drivers/net/ethernet/dec/tulip/
20540
20541 TUN/TAP driver
20542 M:      Maxim Krasnyansky <maxk@qti.qualcomm.com>
20543 S:      Maintained
20544 W:      http://vtun.sourceforge.net/tun
20545 F:      Documentation/networking/tuntap.rst
20546 F:      arch/um/os-Linux/drivers/
20547
20548 TURBOCHANNEL SUBSYSTEM
20549 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
20550 M:      Ralf Baechle <ralf@linux-mips.org>
20551 L:      linux-mips@vger.kernel.org
20552 S:      Maintained
20553 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
20554 F:      drivers/tc/
20555 F:      include/linux/tc.h
20556
20557 TURBOSTAT UTILITY
20558 M:      "Len Brown" <lenb@kernel.org>
20559 L:      linux-pm@vger.kernel.org
20560 S:      Supported
20561 Q:      https://patchwork.kernel.org/project/linux-pm/list/
20562 B:      https://bugzilla.kernel.org
20563 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git turbostat
20564 F:      tools/power/x86/turbostat/
20565
20566 TW5864 VIDEO4LINUX DRIVER
20567 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
20568 M:      Anton Sviridenko <anton@corp.bluecherry.net>
20569 M:      Andrey Utkin <andrey.utkin@corp.bluecherry.net>
20570 M:      Andrey Utkin <andrey_utkin@fastmail.com>
20571 L:      linux-media@vger.kernel.org
20572 S:      Supported
20573 F:      drivers/media/pci/tw5864/
20574
20575 TW68 VIDEO4LINUX DRIVER
20576 M:      Hans Verkuil <hverkuil@xs4all.nl>
20577 L:      linux-media@vger.kernel.org
20578 S:      Odd Fixes
20579 W:      https://linuxtv.org
20580 T:      git git://linuxtv.org/media_tree.git
20581 F:      drivers/media/pci/tw68/
20582
20583 TW686X VIDEO4LINUX DRIVER
20584 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
20585 L:      linux-media@vger.kernel.org
20586 S:      Maintained
20587 W:      http://linuxtv.org
20588 T:      git git://linuxtv.org/media_tree.git
20589 F:      drivers/media/pci/tw686x/
20590
20591 U-BOOT ENVIRONMENT VARIABLES
20592 M:      Rafał Miłecki <rafal@milecki.pl>
20593 S:      Maintained
20594 F:      Documentation/devicetree/bindings/nvmem/u-boot,env.yaml
20595
20596 UACCE ACCELERATOR FRAMEWORK
20597 M:      Zhangfei Gao <zhangfei.gao@linaro.org>
20598 M:      Zhou Wang <wangzhou1@hisilicon.com>
20599 L:      linux-accelerators@lists.ozlabs.org
20600 L:      linux-kernel@vger.kernel.org
20601 S:      Maintained
20602 F:      Documentation/ABI/testing/sysfs-driver-uacce
20603 F:      Documentation/misc-devices/uacce.rst
20604 F:      drivers/misc/uacce/
20605 F:      include/linux/uacce.h
20606 F:      include/uapi/misc/uacce/
20607
20608 UBI FILE SYSTEM (UBIFS)
20609 M:      Richard Weinberger <richard@nod.at>
20610 L:      linux-mtd@lists.infradead.org
20611 S:      Supported
20612 W:      http://www.linux-mtd.infradead.org/doc/ubifs.html
20613 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
20614 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
20615 F:      Documentation/ABI/testing/sysfs-fs-ubifs
20616 F:      Documentation/filesystems/ubifs-authentication.rst
20617 F:      Documentation/filesystems/ubifs.rst
20618 F:      fs/ubifs/
20619
20620 UBLK USERSPACE BLOCK DRIVER
20621 M:      Ming Lei <ming.lei@redhat.com>
20622 L:      linux-block@vger.kernel.org
20623 S:      Maintained
20624 F:      drivers/block/ublk_drv.c
20625 F:      include/uapi/linux/ublk_cmd.h
20626
20627 UCLINUX (M68KNOMMU AND COLDFIRE)
20628 M:      Greg Ungerer <gerg@linux-m68k.org>
20629 L:      linux-m68k@lists.linux-m68k.org
20630 L:      uclinux-dev@uclinux.org  (subscribers-only)
20631 S:      Maintained
20632 W:      http://www.linux-m68k.org/
20633 W:      http://www.uclinux.org/
20634 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git
20635 F:      arch/m68k/*/*_no.*
20636 F:      arch/m68k/68*/
20637 F:      arch/m68k/coldfire/
20638 F:      arch/m68k/include/asm/*_no.*
20639
20640 UDF FILESYSTEM
20641 M:      Jan Kara <jack@suse.com>
20642 S:      Maintained
20643 F:      Documentation/filesystems/udf.rst
20644 F:      fs/udf/
20645
20646 UDRAW TABLET
20647 M:      Bastien Nocera <hadess@hadess.net>
20648 L:      linux-input@vger.kernel.org
20649 S:      Maintained
20650 F:      drivers/hid/hid-udraw-ps3.c
20651
20652 UFS FILESYSTEM
20653 M:      Evgeniy Dushistov <dushistov@mail.ru>
20654 S:      Maintained
20655 F:      Documentation/admin-guide/ufs.rst
20656 F:      fs/ufs/
20657
20658 UHID USERSPACE HID IO DRIVER
20659 M:      David Rheinsberg <david.rheinsberg@gmail.com>
20660 L:      linux-input@vger.kernel.org
20661 S:      Maintained
20662 F:      drivers/hid/uhid.c
20663 F:      include/uapi/linux/uhid.h
20664
20665 ULPI BUS
20666 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
20667 L:      linux-usb@vger.kernel.org
20668 S:      Maintained
20669 F:      drivers/usb/common/ulpi.c
20670 F:      include/linux/ulpi/
20671
20672 UNICODE SUBSYSTEM
20673 M:      Gabriel Krisman Bertazi <krisman@collabora.com>
20674 L:      linux-fsdevel@vger.kernel.org
20675 S:      Supported
20676 F:      fs/unicode/
20677
20678 UNIFDEF
20679 M:      Tony Finch <dot@dotat.at>
20680 S:      Maintained
20681 W:      http://dotat.at/prog/unifdef
20682 F:      scripts/unifdef.c
20683
20684 UNIFORM CDROM DRIVER
20685 M:      Phillip Potter <phil@philpotter.co.uk>
20686 S:      Maintained
20687 F:      Documentation/cdrom/
20688 F:      drivers/cdrom/cdrom.c
20689 F:      include/linux/cdrom.h
20690 F:      include/uapi/linux/cdrom.h
20691
20692 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
20693 R:      Alim Akhtar <alim.akhtar@samsung.com>
20694 R:      Avri Altman <avri.altman@wdc.com>
20695 R:      Bart Van Assche <bvanassche@acm.org>
20696 L:      linux-scsi@vger.kernel.org
20697 S:      Supported
20698 F:      Documentation/devicetree/bindings/ufs/
20699 F:      Documentation/scsi/ufs.rst
20700 F:      drivers/ufs/core/
20701
20702 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER DWC HOOKS
20703 M:      Pedro Sousa <pedrom.sousa@synopsys.com>
20704 L:      linux-scsi@vger.kernel.org
20705 S:      Supported
20706 F:      drivers/ufs/host/*dwc*
20707
20708 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER MEDIATEK HOOKS
20709 M:      Stanley Chu <stanley.chu@mediatek.com>
20710 L:      linux-scsi@vger.kernel.org
20711 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
20712 S:      Maintained
20713 F:      drivers/ufs/host/ufs-mediatek*
20714
20715 UNSORTED BLOCK IMAGES (UBI)
20716 M:      Richard Weinberger <richard@nod.at>
20717 L:      linux-mtd@lists.infradead.org
20718 S:      Supported
20719 W:      http://www.linux-mtd.infradead.org/
20720 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
20721 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
20722 F:      drivers/mtd/ubi/
20723 F:      include/linux/mtd/ubi.h
20724 F:      include/uapi/mtd/ubi-user.h
20725
20726 USB "USBNET" DRIVER FRAMEWORK
20727 M:      Oliver Neukum <oneukum@suse.com>
20728 L:      netdev@vger.kernel.org
20729 S:      Maintained
20730 W:      http://www.linux-usb.org/usbnet
20731 F:      drivers/net/usb/usbnet.c
20732 F:      include/linux/usb/usbnet.h
20733
20734 USB ACM DRIVER
20735 M:      Oliver Neukum <oneukum@suse.com>
20736 L:      linux-usb@vger.kernel.org
20737 S:      Maintained
20738 F:      Documentation/usb/acm.rst
20739 F:      drivers/usb/class/cdc-acm.*
20740
20741 USB APPLE MFI FASTCHARGE DRIVER
20742 M:      Bastien Nocera <hadess@hadess.net>
20743 L:      linux-usb@vger.kernel.org
20744 S:      Maintained
20745 F:      drivers/usb/misc/apple-mfi-fastcharge.c
20746
20747 USB AR5523 WIRELESS DRIVER
20748 M:      Pontus Fuchs <pontus.fuchs@gmail.com>
20749 L:      linux-wireless@vger.kernel.org
20750 S:      Maintained
20751 F:      drivers/net/wireless/ath/ar5523/
20752
20753 USB ATTACHED SCSI
20754 M:      Oliver Neukum <oneukum@suse.com>
20755 L:      linux-usb@vger.kernel.org
20756 L:      linux-scsi@vger.kernel.org
20757 S:      Maintained
20758 F:      drivers/usb/storage/uas.c
20759
20760 USB CDC ETHERNET DRIVER
20761 M:      Oliver Neukum <oliver@neukum.org>
20762 L:      linux-usb@vger.kernel.org
20763 S:      Maintained
20764 F:      drivers/net/usb/cdc_*.c
20765 F:      include/uapi/linux/usb/cdc.h
20766
20767 USB CHAOSKEY DRIVER
20768 M:      Keith Packard <keithp@keithp.com>
20769 L:      linux-usb@vger.kernel.org
20770 S:      Maintained
20771 F:      drivers/usb/misc/chaoskey.c
20772
20773 USB CYPRESS C67X00 DRIVER
20774 L:      linux-usb@vger.kernel.org
20775 S:      Orphan
20776 F:      drivers/usb/c67x00/
20777
20778 USB DAVICOM DM9601 DRIVER
20779 M:      Peter Korsgaard <peter@korsgaard.com>
20780 L:      netdev@vger.kernel.org
20781 S:      Maintained
20782 W:      http://www.linux-usb.org/usbnet
20783 F:      drivers/net/usb/dm9601.c
20784
20785 USB EHCI DRIVER
20786 M:      Alan Stern <stern@rowland.harvard.edu>
20787 L:      linux-usb@vger.kernel.org
20788 S:      Maintained
20789 F:      Documentation/usb/ehci.rst
20790 F:      drivers/usb/host/ehci*
20791
20792 USB GADGET/PERIPHERAL SUBSYSTEM
20793 M:      Felipe Balbi <balbi@kernel.org>
20794 L:      linux-usb@vger.kernel.org
20795 S:      Maintained
20796 W:      http://www.linux-usb.org/gadget
20797 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
20798 F:      drivers/usb/gadget/
20799 F:      include/linux/usb/gadget*
20800
20801 USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
20802 M:      Jiri Kosina <jikos@kernel.org>
20803 M:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
20804 L:      linux-usb@vger.kernel.org
20805 S:      Maintained
20806 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
20807 F:      Documentation/hid/hiddev.rst
20808 F:      drivers/hid/usbhid/
20809
20810 USB INTEL XHCI ROLE MUX DRIVER
20811 M:      Hans de Goede <hdegoede@redhat.com>
20812 L:      linux-usb@vger.kernel.org
20813 S:      Maintained
20814 F:      drivers/usb/roles/intel-xhci-usb-role-switch.c
20815
20816 USB IP DRIVER FOR HISILICON KIRIN 960
20817 M:      Yu Chen <chenyu56@huawei.com>
20818 M:      Binghui Wang <wangbinghui@hisilicon.com>
20819 L:      linux-usb@vger.kernel.org
20820 S:      Maintained
20821 F:      Documentation/devicetree/bindings/phy/hisilicon,hi3660-usb3.yaml
20822 F:      drivers/phy/hisilicon/phy-hi3660-usb3.c
20823
20824 USB IP DRIVER FOR HISILICON KIRIN 970
20825 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
20826 L:      linux-usb@vger.kernel.org
20827 S:      Maintained
20828 F:      Documentation/devicetree/bindings/phy/hisilicon,hi3670-usb3.yaml
20829 F:      drivers/phy/hisilicon/phy-hi3670-usb3.c
20830
20831 USB ISP116X DRIVER
20832 M:      Olav Kongas <ok@artecdesign.ee>
20833 L:      linux-usb@vger.kernel.org
20834 S:      Maintained
20835 F:      drivers/usb/host/isp116x*
20836 F:      include/linux/usb/isp116x.h
20837
20838 USB ISP1760 DRIVER
20839 M:      Rui Miguel Silva <rui.silva@linaro.org>
20840 L:      linux-usb@vger.kernel.org
20841 S:      Maintained
20842 F:      drivers/usb/isp1760/*
20843 F:      Documentation/devicetree/bindings/usb/nxp,isp1760.yaml
20844
20845 USB LAN78XX ETHERNET DRIVER
20846 M:      Woojung Huh <woojung.huh@microchip.com>
20847 M:      UNGLinuxDriver@microchip.com
20848 L:      netdev@vger.kernel.org
20849 S:      Maintained
20850 F:      Documentation/devicetree/bindings/net/microchip,lan78xx.txt
20851 F:      drivers/net/usb/lan78xx.*
20852 F:      include/dt-bindings/net/microchip-lan78xx.h
20853
20854 USB MASS STORAGE DRIVER
20855 M:      Alan Stern <stern@rowland.harvard.edu>
20856 L:      linux-usb@vger.kernel.org
20857 L:      usb-storage@lists.one-eyed-alien.net
20858 S:      Maintained
20859 F:      drivers/usb/storage/
20860
20861 USB MIDI DRIVER
20862 M:      Clemens Ladisch <clemens@ladisch.de>
20863 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
20864 S:      Maintained
20865 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
20866 F:      sound/usb/midi.*
20867
20868 USB NETWORKING DRIVERS
20869 L:      linux-usb@vger.kernel.org
20870 S:      Odd Fixes
20871 F:      drivers/net/usb/
20872
20873 USB OHCI DRIVER
20874 M:      Alan Stern <stern@rowland.harvard.edu>
20875 L:      linux-usb@vger.kernel.org
20876 S:      Maintained
20877 F:      Documentation/usb/ohci.rst
20878 F:      drivers/usb/host/ohci*
20879
20880 USB OTG FSM (Finite State Machine)
20881 M:      Peter Chen <peter.chen@kernel.org>
20882 L:      linux-usb@vger.kernel.org
20883 S:      Maintained
20884 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
20885 F:      drivers/usb/common/usb-otg-fsm.c
20886
20887 USB OVER IP DRIVER
20888 M:      Valentina Manea <valentina.manea.m@gmail.com>
20889 M:      Shuah Khan <shuah@kernel.org>
20890 M:      Shuah Khan <skhan@linuxfoundation.org>
20891 L:      linux-usb@vger.kernel.org
20892 S:      Maintained
20893 F:      Documentation/usb/usbip_protocol.rst
20894 F:      drivers/usb/usbip/
20895 F:      tools/testing/selftests/drivers/usb/usbip/
20896 F:      tools/usb/usbip/
20897
20898 USB PEGASUS DRIVER
20899 M:      Petko Manolov <petkan@nucleusys.com>
20900 L:      linux-usb@vger.kernel.org
20901 L:      netdev@vger.kernel.org
20902 S:      Maintained
20903 W:      https://github.com/petkan/pegasus
20904 T:      git git://github.com/petkan/pegasus.git
20905 F:      drivers/net/usb/pegasus.*
20906
20907 USB PHY LAYER
20908 M:      Felipe Balbi <balbi@kernel.org>
20909 L:      linux-usb@vger.kernel.org
20910 S:      Maintained
20911 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
20912 F:      drivers/usb/phy/
20913
20914 USB PRINTER DRIVER (usblp)
20915 M:      Pete Zaitcev <zaitcev@redhat.com>
20916 L:      linux-usb@vger.kernel.org
20917 S:      Supported
20918 F:      drivers/usb/class/usblp.c
20919
20920 USB RAW GADGET DRIVER
20921 R:      Andrey Konovalov <andreyknvl@gmail.com>
20922 L:      linux-usb@vger.kernel.org
20923 S:      Maintained
20924 F:      Documentation/usb/raw-gadget.rst
20925 F:      drivers/usb/gadget/legacy/raw_gadget.c
20926 F:      include/uapi/linux/usb/raw_gadget.h
20927
20928 USB QMI WWAN NETWORK DRIVER
20929 M:      Bjørn Mork <bjorn@mork.no>
20930 L:      netdev@vger.kernel.org
20931 S:      Maintained
20932 F:      Documentation/ABI/testing/sysfs-class-net-qmi
20933 F:      drivers/net/usb/qmi_wwan.c
20934
20935 USB RTL8150 DRIVER
20936 M:      Petko Manolov <petkan@nucleusys.com>
20937 L:      linux-usb@vger.kernel.org
20938 L:      netdev@vger.kernel.org
20939 S:      Maintained
20940 W:      https://github.com/petkan/rtl8150
20941 T:      git git://github.com/petkan/rtl8150.git
20942 F:      drivers/net/usb/rtl8150.c
20943
20944 USB SERIAL SUBSYSTEM
20945 M:      Johan Hovold <johan@kernel.org>
20946 L:      linux-usb@vger.kernel.org
20947 S:      Maintained
20948 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/usb-serial.git
20949 F:      Documentation/usb/usb-serial.rst
20950 F:      drivers/usb/serial/
20951 F:      include/linux/usb/serial.h
20952
20953 USB SMSC75XX ETHERNET DRIVER
20954 M:      Steve Glendinning <steve.glendinning@shawell.net>
20955 L:      netdev@vger.kernel.org
20956 S:      Maintained
20957 F:      drivers/net/usb/smsc75xx.*
20958
20959 USB SMSC95XX ETHERNET DRIVER
20960 M:      Steve Glendinning <steve.glendinning@shawell.net>
20961 M:      UNGLinuxDriver@microchip.com
20962 L:      netdev@vger.kernel.org
20963 S:      Maintained
20964 F:      drivers/net/usb/smsc95xx.*
20965
20966 USB SUBSYSTEM
20967 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
20968 L:      linux-usb@vger.kernel.org
20969 S:      Supported
20970 W:      http://www.linux-usb.org
20971 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
20972 F:      Documentation/devicetree/bindings/usb/
20973 F:      Documentation/usb/
20974 F:      drivers/usb/
20975 F:      include/dt-bindings/usb/
20976 F:      include/linux/usb.h
20977 F:      include/linux/usb/
20978
20979 USB TYPEC BUS FOR ALTERNATE MODES
20980 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
20981 L:      linux-usb@vger.kernel.org
20982 S:      Maintained
20983 F:      Documentation/ABI/testing/sysfs-bus-typec
20984 F:      Documentation/driver-api/usb/typec_bus.rst
20985 F:      drivers/usb/typec/altmodes/
20986 F:      include/linux/usb/typec_altmode.h
20987
20988 USB TYPEC CLASS
20989 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
20990 L:      linux-usb@vger.kernel.org
20991 S:      Maintained
20992 F:      Documentation/ABI/testing/sysfs-class-typec
20993 F:      Documentation/driver-api/usb/typec.rst
20994 F:      drivers/usb/typec/
20995 F:      include/linux/usb/typec.h
20996
20997 USB TYPEC INTEL PMC MUX DRIVER
20998 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
20999 L:      linux-usb@vger.kernel.org
21000 S:      Maintained
21001 F:      Documentation/firmware-guide/acpi/intel-pmc-mux.rst
21002 F:      drivers/usb/typec/mux/intel_pmc_mux.c
21003
21004 USB TYPEC PI3USB30532 MUX DRIVER
21005 M:      Hans de Goede <hdegoede@redhat.com>
21006 L:      linux-usb@vger.kernel.org
21007 S:      Maintained
21008 F:      drivers/usb/typec/mux/pi3usb30532.c
21009
21010 USB TYPEC PORT CONTROLLER DRIVERS
21011 M:      Guenter Roeck <linux@roeck-us.net>
21012 L:      linux-usb@vger.kernel.org
21013 S:      Maintained
21014 F:      drivers/usb/typec/tcpm/
21015
21016 USB UHCI DRIVER
21017 M:      Alan Stern <stern@rowland.harvard.edu>
21018 L:      linux-usb@vger.kernel.org
21019 S:      Maintained
21020 F:      drivers/usb/host/uhci*
21021
21022 USB VIDEO CLASS
21023 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
21024 L:      linux-media@vger.kernel.org
21025 S:      Maintained
21026 W:      http://www.ideasonboard.org/uvc/
21027 T:      git git://linuxtv.org/media_tree.git
21028 F:      drivers/media/usb/uvc/
21029 F:      include/uapi/linux/uvcvideo.h
21030
21031 USB WEBCAM GADGET
21032 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
21033 L:      linux-usb@vger.kernel.org
21034 S:      Maintained
21035 F:      drivers/usb/gadget/function/*uvc*
21036 F:      drivers/usb/gadget/legacy/webcam.c
21037 F:      include/uapi/linux/usb/g_uvc.h
21038
21039 USB WIRELESS RNDIS DRIVER (rndis_wlan)
21040 M:      Jussi Kivilinna <jussi.kivilinna@iki.fi>
21041 L:      linux-wireless@vger.kernel.org
21042 S:      Maintained
21043 F:      drivers/net/wireless/rndis_wlan.c
21044
21045 USB XHCI DRIVER
21046 M:      Mathias Nyman <mathias.nyman@intel.com>
21047 L:      linux-usb@vger.kernel.org
21048 S:      Supported
21049 F:      drivers/usb/host/pci-quirks*
21050 F:      drivers/usb/host/xhci*
21051
21052 USB ZD1201 DRIVER
21053 L:      linux-wireless@vger.kernel.org
21054 S:      Orphan
21055 W:      http://linux-lc100020.sourceforge.net
21056 F:      drivers/net/wireless/zydas/zd1201.*
21057
21058 USB ZR364XX DRIVER
21059 M:      Antoine Jacquet <royale@zerezo.com>
21060 L:      linux-usb@vger.kernel.org
21061 L:      linux-media@vger.kernel.org
21062 S:      Maintained
21063 W:      http://royale.zerezo.com/zr364xx/
21064 T:      git git://linuxtv.org/media_tree.git
21065 F:      Documentation/admin-guide/media/zr364xx*
21066 F:      drivers/media/usb/zr364xx/
21067
21068 USER-MODE LINUX (UML)
21069 M:      Richard Weinberger <richard@nod.at>
21070 M:      Anton Ivanov <anton.ivanov@cambridgegreys.com>
21071 M:      Johannes Berg <johannes@sipsolutions.net>
21072 L:      linux-um@lists.infradead.org
21073 S:      Maintained
21074 W:      http://user-mode-linux.sourceforge.net
21075 Q:      https://patchwork.ozlabs.org/project/linux-um/list/
21076 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/uml/linux.git next
21077 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/uml/linux.git fixes
21078 F:      Documentation/virt/uml/
21079 F:      arch/um/
21080 F:      arch/x86/um/
21081 F:      fs/hostfs/
21082
21083 USERSPACE COPYIN/COPYOUT (UIOVEC)
21084 M:      Alexander Viro <viro@zeniv.linux.org.uk>
21085 S:      Maintained
21086 F:      include/linux/uio.h
21087 F:      lib/iov_iter.c
21088
21089 USERSPACE DMA BUFFER DRIVER
21090 M:      Gerd Hoffmann <kraxel@redhat.com>
21091 L:      dri-devel@lists.freedesktop.org
21092 S:      Maintained
21093 T:      git git://anongit.freedesktop.org/drm/drm-misc
21094 F:      drivers/dma-buf/udmabuf.c
21095 F:      include/uapi/linux/udmabuf.h
21096
21097 USERSPACE I/O (UIO)
21098 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
21099 S:      Maintained
21100 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
21101 F:      Documentation/driver-api/uio-howto.rst
21102 F:      drivers/uio/
21103 F:      include/linux/uio_driver.h
21104
21105 UTIL-LINUX PACKAGE
21106 M:      Karel Zak <kzak@redhat.com>
21107 L:      util-linux@vger.kernel.org
21108 S:      Maintained
21109 W:      http://en.wikipedia.org/wiki/Util-linux
21110 T:      git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
21111
21112 UUID HELPERS
21113 M:      Christoph Hellwig <hch@lst.de>
21114 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
21115 L:      linux-kernel@vger.kernel.org
21116 S:      Maintained
21117 T:      git git://git.infradead.org/users/hch/uuid.git
21118 F:      include/linux/uuid.h
21119 F:      include/uapi/linux/uuid.h
21120 F:      lib/test_uuid.c
21121 F:      lib/uuid.c
21122
21123 UV SYSFS DRIVER
21124 M:      Justin Ernst <justin.ernst@hpe.com>
21125 L:      platform-driver-x86@vger.kernel.org
21126 S:      Maintained
21127 F:      drivers/platform/x86/uv_sysfs.c
21128
21129 UVESAFB DRIVER
21130 M:      Michal Januszewski <spock@gentoo.org>
21131 L:      linux-fbdev@vger.kernel.org
21132 S:      Maintained
21133 W:      https://github.com/mjanusz/v86d
21134 F:      Documentation/fb/uvesafb.rst
21135 F:      drivers/video/fbdev/uvesafb.*
21136
21137 Ux500 CLOCK DRIVERS
21138 M:      Ulf Hansson <ulf.hansson@linaro.org>
21139 L:      linux-clk@vger.kernel.org
21140 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
21141 S:      Maintained
21142 F:      drivers/clk/ux500/
21143
21144 VF610 NAND DRIVER
21145 M:      Stefan Agner <stefan@agner.ch>
21146 L:      linux-mtd@lists.infradead.org
21147 S:      Supported
21148 F:      drivers/mtd/nand/raw/vf610_nfc.c
21149
21150 VFAT/FAT/MSDOS FILESYSTEM
21151 M:      OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
21152 S:      Maintained
21153 F:      Documentation/filesystems/vfat.rst
21154 F:      fs/fat/
21155
21156 VFIO DRIVER
21157 M:      Alex Williamson <alex.williamson@redhat.com>
21158 R:      Cornelia Huck <cohuck@redhat.com>
21159 L:      kvm@vger.kernel.org
21160 S:      Maintained
21161 T:      git git://github.com/awilliam/linux-vfio.git
21162 F:      Documentation/driver-api/vfio.rst
21163 F:      drivers/vfio/
21164 F:      include/linux/vfio.h
21165 F:      include/linux/vfio_pci_core.h
21166 F:      include/uapi/linux/vfio.h
21167
21168 VFIO FSL-MC DRIVER
21169 M:      Diana Craciun <diana.craciun@oss.nxp.com>
21170 L:      kvm@vger.kernel.org
21171 S:      Maintained
21172 F:      drivers/vfio/fsl-mc/
21173
21174 VFIO HISILICON PCI DRIVER
21175 M:      Longfang Liu <liulongfang@huawei.com>
21176 M:      Shameer Kolothum <shameerali.kolothum.thodi@huawei.com>
21177 L:      kvm@vger.kernel.org
21178 S:      Maintained
21179 F:      drivers/vfio/pci/hisilicon/
21180
21181 VFIO MEDIATED DEVICE DRIVERS
21182 M:      Kirti Wankhede <kwankhede@nvidia.com>
21183 L:      kvm@vger.kernel.org
21184 S:      Maintained
21185 F:      Documentation/driver-api/vfio-mediated-device.rst
21186 F:      drivers/vfio/mdev/
21187 F:      include/linux/mdev.h
21188 F:      samples/vfio-mdev/
21189
21190 VFIO PCI DEVICE SPECIFIC DRIVERS
21191 R:      Jason Gunthorpe <jgg@nvidia.com>
21192 R:      Yishai Hadas <yishaih@nvidia.com>
21193 R:      Shameer Kolothum <shameerali.kolothum.thodi@huawei.com>
21194 R:      Kevin Tian <kevin.tian@intel.com>
21195 L:      kvm@vger.kernel.org
21196 S:      Maintained
21197 P:      Documentation/driver-api/vfio-pci-device-specific-driver-acceptance.rst
21198 F:      drivers/vfio/pci/*/
21199
21200 VFIO PLATFORM DRIVER
21201 M:      Eric Auger <eric.auger@redhat.com>
21202 L:      kvm@vger.kernel.org
21203 S:      Maintained
21204 F:      drivers/vfio/platform/
21205
21206 VFIO MLX5 PCI DRIVER
21207 M:      Yishai Hadas <yishaih@nvidia.com>
21208 L:      kvm@vger.kernel.org
21209 S:      Maintained
21210 F:      drivers/vfio/pci/mlx5/
21211
21212 VGA_SWITCHEROO
21213 R:      Lukas Wunner <lukas@wunner.de>
21214 S:      Maintained
21215 T:      git git://anongit.freedesktop.org/drm/drm-misc
21216 F:      Documentation/gpu/vga-switcheroo.rst
21217 F:      drivers/gpu/vga/vga_switcheroo.c
21218 F:      include/linux/vga_switcheroo.h
21219
21220 VIA RHINE NETWORK DRIVER
21221 S:      Maintained
21222 M:      Kevin Brace <kevinbrace@bracecomputerlab.com>
21223 F:      drivers/net/ethernet/via/via-rhine.c
21224
21225 VIA SD/MMC CARD CONTROLLER DRIVER
21226 M:      Bruce Chang <brucechang@via.com.tw>
21227 M:      Harald Welte <HaraldWelte@viatech.com>
21228 S:      Maintained
21229 F:      drivers/mmc/host/via-sdmmc.c
21230
21231 VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
21232 M:      Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
21233 L:      linux-fbdev@vger.kernel.org
21234 S:      Maintained
21235 F:      drivers/video/fbdev/via/
21236 F:      include/linux/via-core.h
21237 F:      include/linux/via-gpio.h
21238 F:      include/linux/via_i2c.h
21239
21240 VIA VELOCITY NETWORK DRIVER
21241 M:      Francois Romieu <romieu@fr.zoreil.com>
21242 L:      netdev@vger.kernel.org
21243 S:      Maintained
21244 F:      drivers/net/ethernet/via/via-velocity.*
21245
21246 VICODEC VIRTUAL CODEC DRIVER
21247 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
21248 L:      linux-media@vger.kernel.org
21249 S:      Maintained
21250 W:      https://linuxtv.org
21251 T:      git git://linuxtv.org/media_tree.git
21252 F:      drivers/media/test-drivers/vicodec/*
21253
21254 VIDEO I2C POLLING DRIVER
21255 M:      Matt Ranostay <matt.ranostay@konsulko.com>
21256 L:      linux-media@vger.kernel.org
21257 S:      Maintained
21258 F:      drivers/media/i2c/video-i2c.c
21259
21260 VIDEO MULTIPLEXER DRIVER
21261 M:      Philipp Zabel <p.zabel@pengutronix.de>
21262 L:      linux-media@vger.kernel.org
21263 S:      Maintained
21264 F:      drivers/media/platform/video-mux.c
21265
21266 VIDEOBUF2 FRAMEWORK
21267 M:      Tomasz Figa <tfiga@chromium.org>
21268 M:      Marek Szyprowski <m.szyprowski@samsung.com>
21269 L:      linux-media@vger.kernel.org
21270 S:      Maintained
21271 F:      drivers/media/common/videobuf2/*
21272 F:      include/media/videobuf2-*
21273
21274 VIMC VIRTUAL MEDIA CONTROLLER DRIVER
21275 M:      Shuah Khan <skhan@linuxfoundation.org>
21276 R:      Kieran Bingham <kieran.bingham@ideasonboard.com>
21277 L:      linux-media@vger.kernel.org
21278 S:      Maintained
21279 W:      https://linuxtv.org
21280 T:      git git://linuxtv.org/media_tree.git
21281 F:      drivers/media/test-drivers/vimc/*
21282
21283 VIRT LIB
21284 M:      Alex Williamson <alex.williamson@redhat.com>
21285 M:      Paolo Bonzini <pbonzini@redhat.com>
21286 L:      kvm@vger.kernel.org
21287 S:      Supported
21288 F:      virt/lib/
21289
21290 VIRTIO AND VHOST VSOCK DRIVER
21291 M:      Stefan Hajnoczi <stefanha@redhat.com>
21292 M:      Stefano Garzarella <sgarzare@redhat.com>
21293 L:      kvm@vger.kernel.org
21294 L:      virtualization@lists.linux-foundation.org
21295 L:      netdev@vger.kernel.org
21296 S:      Maintained
21297 F:      drivers/vhost/vsock.c
21298 F:      include/linux/virtio_vsock.h
21299 F:      include/uapi/linux/virtio_vsock.h
21300 F:      net/vmw_vsock/virtio_transport.c
21301 F:      net/vmw_vsock/virtio_transport_common.c
21302
21303 VIRTIO BLOCK AND SCSI DRIVERS
21304 M:      "Michael S. Tsirkin" <mst@redhat.com>
21305 M:      Jason Wang <jasowang@redhat.com>
21306 R:      Paolo Bonzini <pbonzini@redhat.com>
21307 R:      Stefan Hajnoczi <stefanha@redhat.com>
21308 L:      virtualization@lists.linux-foundation.org
21309 S:      Maintained
21310 F:      drivers/block/virtio_blk.c
21311 F:      drivers/scsi/virtio_scsi.c
21312 F:      drivers/vhost/scsi.c
21313 F:      include/uapi/linux/virtio_blk.h
21314 F:      include/uapi/linux/virtio_scsi.h
21315
21316 VIRTIO CONSOLE DRIVER
21317 M:      Amit Shah <amit@kernel.org>
21318 L:      virtualization@lists.linux-foundation.org
21319 S:      Maintained
21320 F:      drivers/char/virtio_console.c
21321 F:      include/linux/virtio_console.h
21322 F:      include/uapi/linux/virtio_console.h
21323
21324 VIRTIO CORE AND NET DRIVERS
21325 M:      "Michael S. Tsirkin" <mst@redhat.com>
21326 M:      Jason Wang <jasowang@redhat.com>
21327 L:      virtualization@lists.linux-foundation.org
21328 S:      Maintained
21329 F:      Documentation/ABI/testing/sysfs-bus-vdpa
21330 F:      Documentation/devicetree/bindings/virtio/
21331 F:      drivers/block/virtio_blk.c
21332 F:      drivers/crypto/virtio/
21333 F:      drivers/net/virtio_net.c
21334 F:      drivers/vdpa/
21335 F:      drivers/virtio/
21336 F:      include/linux/vdpa.h
21337 F:      include/linux/virtio*.h
21338 F:      include/uapi/linux/virtio_*.h
21339 F:      tools/virtio/
21340
21341 VIRTIO BALLOON
21342 M:      "Michael S. Tsirkin" <mst@redhat.com>
21343 M:      David Hildenbrand <david@redhat.com>
21344 L:      virtualization@lists.linux-foundation.org
21345 S:      Maintained
21346 F:      drivers/virtio/virtio_balloon.c
21347 F:      include/uapi/linux/virtio_balloon.h
21348 F:      include/linux/balloon_compaction.h
21349 F:      mm/balloon_compaction.c
21350
21351 VIRTIO CRYPTO DRIVER
21352 M:      Gonglei <arei.gonglei@huawei.com>
21353 L:      virtualization@lists.linux-foundation.org
21354 L:      linux-crypto@vger.kernel.org
21355 S:      Maintained
21356 F:      drivers/crypto/virtio/
21357 F:      include/uapi/linux/virtio_crypto.h
21358
21359 VIRTIO DRIVERS FOR S390
21360 M:      Cornelia Huck <cohuck@redhat.com>
21361 M:      Halil Pasic <pasic@linux.ibm.com>
21362 M:      Eric Farman <farman@linux.ibm.com>
21363 L:      linux-s390@vger.kernel.org
21364 L:      virtualization@lists.linux-foundation.org
21365 L:      kvm@vger.kernel.org
21366 S:      Supported
21367 F:      arch/s390/include/uapi/asm/virtio-ccw.h
21368 F:      drivers/s390/virtio/
21369
21370 VIRTIO FILE SYSTEM
21371 M:      Vivek Goyal <vgoyal@redhat.com>
21372 M:      Stefan Hajnoczi <stefanha@redhat.com>
21373 M:      Miklos Szeredi <miklos@szeredi.hu>
21374 L:      virtualization@lists.linux-foundation.org
21375 L:      linux-fsdevel@vger.kernel.org
21376 S:      Supported
21377 W:      https://virtio-fs.gitlab.io/
21378 F:      Documentation/filesystems/virtiofs.rst
21379 F:      fs/fuse/virtio_fs.c
21380 F:      include/uapi/linux/virtio_fs.h
21381
21382 VIRTIO GPIO DRIVER
21383 M:      Enrico Weigelt, metux IT consult <info@metux.net>
21384 M:      Viresh Kumar <vireshk@kernel.org>
21385 L:      linux-gpio@vger.kernel.org
21386 L:      virtualization@lists.linux-foundation.org
21387 S:      Maintained
21388 F:      drivers/gpio/gpio-virtio.c
21389 F:      include/uapi/linux/virtio_gpio.h
21390
21391 VIRTIO GPU DRIVER
21392 M:      David Airlie <airlied@linux.ie>
21393 M:      Gerd Hoffmann <kraxel@redhat.com>
21394 R:      Gurchetan Singh <gurchetansingh@chromium.org>
21395 R:      Chia-I Wu <olvaffe@gmail.com>
21396 L:      dri-devel@lists.freedesktop.org
21397 L:      virtualization@lists.linux-foundation.org
21398 S:      Maintained
21399 T:      git git://anongit.freedesktop.org/drm/drm-misc
21400 F:      drivers/gpu/drm/virtio/
21401 F:      include/uapi/linux/virtio_gpu.h
21402
21403 VIRTIO HOST (VHOST)
21404 M:      "Michael S. Tsirkin" <mst@redhat.com>
21405 M:      Jason Wang <jasowang@redhat.com>
21406 L:      kvm@vger.kernel.org
21407 L:      virtualization@lists.linux-foundation.org
21408 L:      netdev@vger.kernel.org
21409 S:      Maintained
21410 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost.git
21411 F:      drivers/vhost/
21412 F:      include/linux/vhost_iotlb.h
21413 F:      include/uapi/linux/vhost.h
21414
21415 VIRTIO INPUT DRIVER
21416 M:      Gerd Hoffmann <kraxel@redhat.com>
21417 S:      Maintained
21418 F:      drivers/virtio/virtio_input.c
21419 F:      include/uapi/linux/virtio_input.h
21420
21421 VIRTIO IOMMU DRIVER
21422 M:      Jean-Philippe Brucker <jean-philippe@linaro.org>
21423 L:      virtualization@lists.linux-foundation.org
21424 S:      Maintained
21425 F:      drivers/iommu/virtio-iommu.c
21426 F:      include/uapi/linux/virtio_iommu.h
21427
21428 VIRTIO MEM DRIVER
21429 M:      David Hildenbrand <david@redhat.com>
21430 L:      virtualization@lists.linux-foundation.org
21431 S:      Maintained
21432 W:      https://virtio-mem.gitlab.io/
21433 F:      drivers/virtio/virtio_mem.c
21434 F:      include/uapi/linux/virtio_mem.h
21435
21436 VIRTIO SOUND DRIVER
21437 M:      Anton Yakovlev <anton.yakovlev@opensynergy.com>
21438 M:      "Michael S. Tsirkin" <mst@redhat.com>
21439 L:      virtualization@lists.linux-foundation.org
21440 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
21441 S:      Maintained
21442 F:      include/uapi/linux/virtio_snd.h
21443 F:      sound/virtio/*
21444
21445 VIRTIO I2C DRIVER
21446 M:      Conghui Chen <conghui.chen@intel.com>
21447 M:      Viresh Kumar <viresh.kumar@linaro.org>
21448 L:      linux-i2c@vger.kernel.org
21449 L:      virtualization@lists.linux-foundation.org
21450 S:      Maintained
21451 F:      drivers/i2c/busses/i2c-virtio.c
21452 F:      include/uapi/linux/virtio_i2c.h
21453
21454 VIRTIO PMEM DRIVER
21455 M:      Pankaj Gupta <pankaj.gupta.linux@gmail.com>
21456 L:      virtualization@lists.linux-foundation.org
21457 S:      Maintained
21458 F:      drivers/nvdimm/virtio_pmem.c
21459 F:      drivers/nvdimm/nd_virtio.c
21460
21461 VIRTUAL BOX GUEST DEVICE DRIVER
21462 M:      Hans de Goede <hdegoede@redhat.com>
21463 M:      Arnd Bergmann <arnd@arndb.de>
21464 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
21465 S:      Maintained
21466 F:      drivers/virt/vboxguest/
21467 F:      include/linux/vbox_utils.h
21468 F:      include/uapi/linux/vbox*.h
21469
21470 VIRTUAL BOX SHARED FOLDER VFS DRIVER
21471 M:      Hans de Goede <hdegoede@redhat.com>
21472 L:      linux-fsdevel@vger.kernel.org
21473 S:      Maintained
21474 F:      fs/vboxsf/*
21475
21476 VIRTUAL SERIO DEVICE DRIVER
21477 M:      Stephen Chandler Paul <thatslyude@gmail.com>
21478 S:      Maintained
21479 F:      drivers/input/serio/userio.c
21480 F:      include/uapi/linux/userio.h
21481
21482 VIVID VIRTUAL VIDEO DRIVER
21483 M:      Hans Verkuil <hverkuil@xs4all.nl>
21484 L:      linux-media@vger.kernel.org
21485 S:      Maintained
21486 W:      https://linuxtv.org
21487 T:      git git://linuxtv.org/media_tree.git
21488 F:      drivers/media/test-drivers/vivid/*
21489
21490 VIDTV VIRTUAL DIGITAL TV DRIVER
21491 M:      Daniel W. S. Almeida <dwlsalmeida@gmail.com>
21492 L:      linux-media@vger.kernel.org
21493 S:      Maintained
21494 W:      https://linuxtv.org
21495 T:      git git://linuxtv.org/media_tree.git
21496 F:      drivers/media/test-drivers/vidtv/*
21497
21498 VLYNQ BUS
21499 M:      Florian Fainelli <f.fainelli@gmail.com>
21500 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
21501 S:      Maintained
21502 F:      drivers/vlynq/vlynq.c
21503 F:      include/linux/vlynq.h
21504
21505 VME SUBSYSTEM
21506 M:      Martyn Welch <martyn@welchs.me.uk>
21507 M:      Manohar Vanga <manohar.vanga@gmail.com>
21508 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
21509 L:      linux-kernel@vger.kernel.org
21510 S:      Maintained
21511 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
21512 F:      Documentation/driver-api/vme.rst
21513 F:      drivers/staging/vme_user/
21514 F:      drivers/vme/
21515 F:      include/linux/vme*
21516
21517 VM SOCKETS (AF_VSOCK)
21518 M:      Stefano Garzarella <sgarzare@redhat.com>
21519 L:      virtualization@lists.linux-foundation.org
21520 L:      netdev@vger.kernel.org
21521 S:      Maintained
21522 F:      drivers/net/vsockmon.c
21523 F:      include/net/af_vsock.h
21524 F:      include/uapi/linux/vm_sockets.h
21525 F:      include/uapi/linux/vm_sockets_diag.h
21526 F:      include/uapi/linux/vsockmon.h
21527 F:      net/vmw_vsock/
21528 F:      tools/testing/vsock/
21529
21530 VMWARE BALLOON DRIVER
21531 M:      Nadav Amit <namit@vmware.com>
21532 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
21533 L:      linux-kernel@vger.kernel.org
21534 S:      Maintained
21535 F:      drivers/misc/vmw_balloon.c
21536
21537 VMWARE HYPERVISOR INTERFACE
21538 M:      Srivatsa S. Bhat (VMware) <srivatsa@csail.mit.edu>
21539 M:      Alexey Makhalov <amakhalov@vmware.com>
21540 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
21541 L:      virtualization@lists.linux-foundation.org
21542 L:      x86@kernel.org
21543 S:      Supported
21544 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vmware
21545 F:      arch/x86/include/asm/vmware.h
21546 F:      arch/x86/kernel/cpu/vmware.c
21547
21548 VMWARE PVRDMA DRIVER
21549 M:      Bryan Tan <bryantan@vmware.com>
21550 M:      Vishnu Dasa <vdasa@vmware.com>
21551 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
21552 L:      linux-rdma@vger.kernel.org
21553 S:      Maintained
21554 F:      drivers/infiniband/hw/vmw_pvrdma/
21555
21556 VMware PVSCSI driver
21557 M:      Vishal Bhakta <vbhakta@vmware.com>
21558 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
21559 L:      linux-scsi@vger.kernel.org
21560 S:      Maintained
21561 F:      drivers/scsi/vmw_pvscsi.c
21562 F:      drivers/scsi/vmw_pvscsi.h
21563
21564 VMWARE VIRTUAL PTP CLOCK DRIVER
21565 M:      Vivek Thampi <vithampi@vmware.com>
21566 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
21567 L:      netdev@vger.kernel.org
21568 S:      Supported
21569 F:      drivers/ptp/ptp_vmw.c
21570
21571 VMWARE VMCI DRIVER
21572 M:      Bryan Tan <bryantan@vmware.com>
21573 M:      Rajesh Jalisatgi <rjalisatgi@vmware.com>
21574 M:      Vishnu Dasa <vdasa@vmware.com>
21575 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
21576 L:      linux-kernel@vger.kernel.org
21577 S:      Maintained
21578 F:      drivers/misc/vmw_vmci/
21579
21580 VMWARE VMMOUSE SUBDRIVER
21581 M:      Zack Rusin <zackr@vmware.com>
21582 R:      VMware Graphics Reviewers <linux-graphics-maintainer@vmware.com>
21583 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
21584 L:      linux-input@vger.kernel.org
21585 S:      Maintained
21586 F:      drivers/input/mouse/vmmouse.c
21587 F:      drivers/input/mouse/vmmouse.h
21588
21589 VMWARE VMXNET3 ETHERNET DRIVER
21590 M:      Ronak Doshi <doshir@vmware.com>
21591 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
21592 L:      netdev@vger.kernel.org
21593 S:      Maintained
21594 F:      drivers/net/vmxnet3/
21595
21596 VOCORE VOCORE2 BOARD
21597 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
21598 L:      linux-mips@vger.kernel.org
21599 S:      Maintained
21600 F:      arch/mips/boot/dts/ralink/vocore2.dts
21601
21602 VOLTAGE AND CURRENT REGULATOR FRAMEWORK
21603 M:      Liam Girdwood <lgirdwood@gmail.com>
21604 M:      Mark Brown <broonie@kernel.org>
21605 L:      linux-kernel@vger.kernel.org
21606 S:      Supported
21607 W:      http://www.slimlogic.co.uk/?p=48
21608 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git
21609 F:      Documentation/devicetree/bindings/regulator/
21610 F:      Documentation/power/regulator/
21611 F:      drivers/regulator/
21612 F:      include/dt-bindings/regulator/
21613 F:      include/linux/regulator/
21614 K:      regulator_get_optional
21615
21616 VOLTAGE AND CURRENT REGULATOR IRQ HELPERS
21617 R:      Matti Vaittinen <mazziesaccount@gmail.com>
21618 F:      drivers/regulator/irq_helpers.c
21619
21620 VRF
21621 M:      David Ahern <dsahern@kernel.org>
21622 L:      netdev@vger.kernel.org
21623 S:      Maintained
21624 F:      Documentation/networking/vrf.rst
21625 F:      drivers/net/vrf.c
21626
21627 VSPRINTF
21628 M:      Petr Mladek <pmladek@suse.com>
21629 M:      Steven Rostedt <rostedt@goodmis.org>
21630 M:      Sergey Senozhatsky <senozhatsky@chromium.org>
21631 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
21632 R:      Rasmus Villemoes <linux@rasmusvillemoes.dk>
21633 S:      Maintained
21634 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/printk/linux.git
21635 F:      Documentation/core-api/printk-formats.rst
21636 F:      lib/test_printf.c
21637 F:      lib/test_scanf.c
21638 F:      lib/vsprintf.c
21639
21640 VT1211 HARDWARE MONITOR DRIVER
21641 M:      Juerg Haefliger <juergh@gmail.com>
21642 L:      linux-hwmon@vger.kernel.org
21643 S:      Maintained
21644 F:      Documentation/hwmon/vt1211.rst
21645 F:      drivers/hwmon/vt1211.c
21646
21647 VT8231 HARDWARE MONITOR DRIVER
21648 M:      Roger Lucas <vt8231@hiddenengine.co.uk>
21649 L:      linux-hwmon@vger.kernel.org
21650 S:      Maintained
21651 F:      drivers/hwmon/vt8231.c
21652
21653 VUB300 USB to SDIO/SD/MMC bridge chip
21654 L:      linux-mmc@vger.kernel.org
21655 S:      Orphan
21656 F:      drivers/mmc/host/vub300.c
21657
21658 W1 DALLAS'S 1-WIRE BUS
21659 M:      Evgeniy Polyakov <zbr@ioremap.net>
21660 S:      Maintained
21661 F:      Documentation/devicetree/bindings/w1/
21662 F:      Documentation/w1/
21663 F:      drivers/w1/
21664 F:      include/linux/w1.h
21665
21666 W83791D HARDWARE MONITORING DRIVER
21667 M:      Marc Hulsman <m.hulsman@tudelft.nl>
21668 L:      linux-hwmon@vger.kernel.org
21669 S:      Maintained
21670 F:      Documentation/hwmon/w83791d.rst
21671 F:      drivers/hwmon/w83791d.c
21672
21673 W83793 HARDWARE MONITORING DRIVER
21674 M:      Rudolf Marek <r.marek@assembler.cz>
21675 L:      linux-hwmon@vger.kernel.org
21676 S:      Maintained
21677 F:      Documentation/hwmon/w83793.rst
21678 F:      drivers/hwmon/w83793.c
21679
21680 W83795 HARDWARE MONITORING DRIVER
21681 M:      Jean Delvare <jdelvare@suse.com>
21682 L:      linux-hwmon@vger.kernel.org
21683 S:      Maintained
21684 F:      drivers/hwmon/w83795.c
21685
21686 W83L51xD SD/MMC CARD INTERFACE DRIVER
21687 M:      Pierre Ossman <pierre@ossman.eu>
21688 S:      Maintained
21689 F:      drivers/mmc/host/wbsd.*
21690
21691 WACOM PROTOCOL 4 SERIAL TABLETS
21692 M:      Julian Squires <julian@cipht.net>
21693 M:      Hans de Goede <hdegoede@redhat.com>
21694 L:      linux-input@vger.kernel.org
21695 S:      Maintained
21696 F:      drivers/input/tablet/wacom_serial4.c
21697
21698 WANGXUN ETHERNET DRIVER
21699 M:      Jiawen Wu <jiawenwu@trustnetic.com>
21700 L:      netdev@vger.kernel.org
21701 S:      Maintained
21702 F:      Documentation/networking/device_drivers/ethernet/wangxun/txgbe.rst
21703 F:      drivers/net/ethernet/wangxun/
21704
21705 WATCHDOG DEVICE DRIVERS
21706 M:      Wim Van Sebroeck <wim@linux-watchdog.org>
21707 M:      Guenter Roeck <linux@roeck-us.net>
21708 L:      linux-watchdog@vger.kernel.org
21709 S:      Maintained
21710 W:      http://www.linux-watchdog.org/
21711 T:      git git://www.linux-watchdog.org/linux-watchdog.git
21712 F:      Documentation/devicetree/bindings/watchdog/
21713 F:      Documentation/watchdog/
21714 F:      drivers/watchdog/
21715 F:      include/linux/watchdog.h
21716 F:      include/uapi/linux/watchdog.h
21717
21718 WHISKEYCOVE PMIC GPIO DRIVER
21719 M:      Kuppuswamy Sathyanarayanan <sathyanarayanan.kuppuswamy@linux.intel.com>
21720 L:      linux-gpio@vger.kernel.org
21721 S:      Maintained
21722 F:      drivers/gpio/gpio-wcove.c
21723
21724 WHWAVE RTC DRIVER
21725 M:      Dianlong Li <long17.cool@163.com>
21726 L:      linux-rtc@vger.kernel.org
21727 S:      Maintained
21728 F:      drivers/rtc/rtc-sd3078.c
21729
21730 WIIMOTE HID DRIVER
21731 M:      David Rheinsberg <david.rheinsberg@gmail.com>
21732 L:      linux-input@vger.kernel.org
21733 S:      Maintained
21734 F:      drivers/hid/hid-wiimote*
21735
21736 WILOCITY WIL6210 WIRELESS DRIVER
21737 L:      linux-wireless@vger.kernel.org
21738 S:      Orphan
21739 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wil6210
21740 F:      drivers/net/wireless/ath/wil6210/
21741
21742 WINBOND CIR DRIVER
21743 M:      David Härdeman <david@hardeman.nu>
21744 S:      Maintained
21745 F:      drivers/media/rc/winbond-cir.c
21746
21747 WINSYSTEMS EBC-C384 WATCHDOG DRIVER
21748 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
21749 L:      linux-watchdog@vger.kernel.org
21750 S:      Maintained
21751 F:      drivers/watchdog/ebc-c384_wdt.c
21752
21753 WINSYSTEMS WS16C48 GPIO DRIVER
21754 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
21755 L:      linux-gpio@vger.kernel.org
21756 S:      Maintained
21757 F:      drivers/gpio/gpio-ws16c48.c
21758
21759 WIREGUARD SECURE NETWORK TUNNEL
21760 M:      Jason A. Donenfeld <Jason@zx2c4.com>
21761 L:      wireguard@lists.zx2c4.com
21762 L:      netdev@vger.kernel.org
21763 S:      Maintained
21764 F:      drivers/net/wireguard/
21765 F:      tools/testing/selftests/wireguard/
21766
21767 WISTRON LAPTOP BUTTON DRIVER
21768 M:      Miloslav Trmac <mitr@volny.cz>
21769 S:      Maintained
21770 F:      drivers/input/misc/wistron_btns.c
21771
21772 WL3501 WIRELESS PCMCIA CARD DRIVER
21773 L:      linux-wireless@vger.kernel.org
21774 S:      Odd fixes
21775 F:      drivers/net/wireless/wl3501*
21776
21777 WOLFSON MICROELECTRONICS DRIVERS
21778 L:      patches@opensource.cirrus.com
21779 S:      Supported
21780 W:      https://github.com/CirrusLogic/linux-drivers/wiki
21781 T:      git https://github.com/CirrusLogic/linux-drivers.git
21782 F:      Documentation/devicetree/bindings/extcon/wlf,arizona.yaml
21783 F:      Documentation/devicetree/bindings/mfd/wlf,arizona.yaml
21784 F:      Documentation/devicetree/bindings/mfd/wm831x.txt
21785 F:      Documentation/devicetree/bindings/regulator/wlf,arizona.yaml
21786 F:      Documentation/devicetree/bindings/sound/wlf,*.yaml
21787 F:      Documentation/devicetree/bindings/sound/wm*
21788 F:      Documentation/hwmon/wm83??.rst
21789 F:      arch/arm/mach-s3c/mach-crag6410*
21790 F:      drivers/clk/clk-wm83*.c
21791 F:      drivers/gpio/gpio-*wm*.c
21792 F:      drivers/gpio/gpio-arizona.c
21793 F:      drivers/hwmon/wm83??-hwmon.c
21794 F:      drivers/input/misc/wm831x-on.c
21795 F:      drivers/input/touchscreen/wm831x-ts.c
21796 F:      drivers/input/touchscreen/wm97*.c
21797 F:      drivers/leds/leds-wm83*.c
21798 F:      drivers/mfd/arizona*
21799 F:      drivers/mfd/cs47l24*
21800 F:      drivers/mfd/wm*.c
21801 F:      drivers/power/supply/wm83*.c
21802 F:      drivers/regulator/arizona*
21803 F:      drivers/regulator/wm8*.c
21804 F:      drivers/rtc/rtc-wm83*.c
21805 F:      drivers/video/backlight/wm83*_bl.c
21806 F:      drivers/watchdog/wm83*_wdt.c
21807 F:      include/linux/mfd/arizona/
21808 F:      include/linux/mfd/wm831x/
21809 F:      include/linux/mfd/wm8350/
21810 F:      include/linux/mfd/wm8400*
21811 F:      include/linux/regulator/arizona*
21812 F:      include/linux/wm97xx.h
21813 F:      include/sound/wm????.h
21814 F:      sound/soc/codecs/arizona*
21815 F:      sound/soc/codecs/cs47l24*
21816 F:      sound/soc/codecs/wm*
21817
21818 WORKQUEUE
21819 M:      Tejun Heo <tj@kernel.org>
21820 R:      Lai Jiangshan <jiangshanlai@gmail.com>
21821 S:      Maintained
21822 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
21823 F:      Documentation/core-api/workqueue.rst
21824 F:      include/linux/workqueue.h
21825 F:      kernel/workqueue.c
21826
21827 WWAN DRIVERS
21828 M:      Loic Poulain <loic.poulain@linaro.org>
21829 M:      Sergey Ryazanov <ryazanov.s.a@gmail.com>
21830 R:      Johannes Berg <johannes@sipsolutions.net>
21831 L:      netdev@vger.kernel.org
21832 S:      Maintained
21833 F:      drivers/net/wwan/
21834 F:      include/linux/wwan.h
21835 F:      include/uapi/linux/wwan.h
21836
21837 X-POWERS AXP288 PMIC DRIVERS
21838 M:      Hans de Goede <hdegoede@redhat.com>
21839 S:      Maintained
21840 F:      drivers/acpi/pmic/intel_pmic_xpower.c
21841 N:      axp288
21842
21843 X-POWERS MULTIFUNCTION PMIC DEVICE DRIVERS
21844 M:      Chen-Yu Tsai <wens@csie.org>
21845 L:      linux-kernel@vger.kernel.org
21846 S:      Maintained
21847 N:      axp[128]
21848
21849 X.25 STACK
21850 M:      Martin Schiller <ms@dev.tdt.de>
21851 L:      linux-x25@vger.kernel.org
21852 S:      Maintained
21853 F:      Documentation/networking/lapb-module.rst
21854 F:      Documentation/networking/x25*
21855 F:      drivers/net/wan/hdlc_x25.c
21856 F:      drivers/net/wan/lapbether.c
21857 F:      include/*/lapb.h
21858 F:      include/net/x25*
21859 F:      include/uapi/linux/x25.h
21860 F:      net/lapb/
21861 F:      net/x25/
21862
21863 X86 ARCHITECTURE (32-BIT AND 64-BIT)
21864 M:      Thomas Gleixner <tglx@linutronix.de>
21865 M:      Ingo Molnar <mingo@redhat.com>
21866 M:      Borislav Petkov <bp@alien8.de>
21867 M:      Dave Hansen <dave.hansen@linux.intel.com>
21868 M:      x86@kernel.org
21869 R:      "H. Peter Anvin" <hpa@zytor.com>
21870 L:      linux-kernel@vger.kernel.org
21871 S:      Maintained
21872 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
21873 F:      Documentation/devicetree/bindings/x86/
21874 F:      Documentation/x86/
21875 F:      arch/x86/
21876
21877 X86 ENTRY CODE
21878 M:      Andy Lutomirski <luto@kernel.org>
21879 L:      linux-kernel@vger.kernel.org
21880 S:      Maintained
21881 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/asm
21882 F:      arch/x86/entry/
21883
21884 X86 MCE INFRASTRUCTURE
21885 M:      Tony Luck <tony.luck@intel.com>
21886 M:      Borislav Petkov <bp@alien8.de>
21887 L:      linux-edac@vger.kernel.org
21888 S:      Maintained
21889 F:      Documentation/ABI/testing/sysfs-mce
21890 F:      Documentation/x86/x86_64/machinecheck.rst
21891 F:      arch/x86/kernel/cpu/mce/*
21892
21893 X86 MICROCODE UPDATE SUPPORT
21894 M:      Borislav Petkov <bp@alien8.de>
21895 S:      Maintained
21896 F:      arch/x86/kernel/cpu/microcode/*
21897
21898 X86 MM
21899 M:      Dave Hansen <dave.hansen@linux.intel.com>
21900 M:      Andy Lutomirski <luto@kernel.org>
21901 M:      Peter Zijlstra <peterz@infradead.org>
21902 L:      linux-kernel@vger.kernel.org
21903 S:      Maintained
21904 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/mm
21905 F:      arch/x86/mm/
21906
21907 X86 PLATFORM ANDROID TABLETS DSDT FIXUP DRIVER
21908 M:      Hans de Goede <hdegoede@redhat.com>
21909 L:      platform-driver-x86@vger.kernel.org
21910 S:      Maintained
21911 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
21912 F:      drivers/platform/x86/x86-android-tablets.c
21913
21914 X86 PLATFORM DRIVERS
21915 M:      Hans de Goede <hdegoede@redhat.com>
21916 M:      Mark Gross <markgross@kernel.org>
21917 L:      platform-driver-x86@vger.kernel.org
21918 S:      Maintained
21919 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
21920 F:      drivers/platform/olpc/
21921 F:      drivers/platform/x86/
21922
21923 X86 PLATFORM DRIVERS - ARCH
21924 R:      Darren Hart <dvhart@infradead.org>
21925 R:      Andy Shevchenko <andy@infradead.org>
21926 L:      platform-driver-x86@vger.kernel.org
21927 L:      x86@kernel.org
21928 S:      Maintained
21929 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
21930 F:      arch/x86/platform
21931
21932 X86 PLATFORM UV HPE SUPERDOME FLEX
21933 M:      Steve Wahl <steve.wahl@hpe.com>
21934 R:      Mike Travis <mike.travis@hpe.com>
21935 R:      Dimitri Sivanich <dimitri.sivanich@hpe.com>
21936 R:      Russ Anderson <russ.anderson@hpe.com>
21937 S:      Supported
21938 F:      arch/x86/include/asm/uv/
21939 F:      arch/x86/kernel/apic/x2apic_uv_x.c
21940 F:      arch/x86/platform/uv/
21941
21942 X86 STACK UNWINDING
21943 M:      Josh Poimboeuf <jpoimboe@kernel.org>
21944 M:      Peter Zijlstra <peterz@infradead.org>
21945 S:      Supported
21946 F:      arch/x86/include/asm/unwind*.h
21947 F:      arch/x86/kernel/dumpstack.c
21948 F:      arch/x86/kernel/stacktrace.c
21949 F:      arch/x86/kernel/unwind_*.c
21950
21951 X86 VDSO
21952 M:      Andy Lutomirski <luto@kernel.org>
21953 L:      linux-kernel@vger.kernel.org
21954 S:      Maintained
21955 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso
21956 F:      arch/x86/entry/vdso/
21957
21958 XARRAY
21959 M:      Matthew Wilcox <willy@infradead.org>
21960 L:      linux-fsdevel@vger.kernel.org
21961 S:      Supported
21962 F:      Documentation/core-api/xarray.rst
21963 F:      include/linux/idr.h
21964 F:      include/linux/xarray.h
21965 F:      lib/idr.c
21966 F:      lib/xarray.c
21967 F:      tools/testing/radix-tree
21968
21969 XBOX DVD IR REMOTE
21970 M:      Benjamin Valentin <benpicco@googlemail.com>
21971 S:      Maintained
21972 F:      drivers/media/rc/keymaps/rc-xbox-dvd.c
21973 F:      drivers/media/rc/xbox_remote.c
21974
21975 XC2028/3028 TUNER DRIVER
21976 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
21977 L:      linux-media@vger.kernel.org
21978 S:      Maintained
21979 W:      https://linuxtv.org
21980 T:      git git://linuxtv.org/media_tree.git
21981 F:      drivers/media/tuners/xc2028.*
21982
21983 XDP (eXpress Data Path)
21984 M:      Alexei Starovoitov <ast@kernel.org>
21985 M:      Daniel Borkmann <daniel@iogearbox.net>
21986 M:      David S. Miller <davem@davemloft.net>
21987 M:      Jakub Kicinski <kuba@kernel.org>
21988 M:      Jesper Dangaard Brouer <hawk@kernel.org>
21989 M:      John Fastabend <john.fastabend@gmail.com>
21990 L:      netdev@vger.kernel.org
21991 L:      bpf@vger.kernel.org
21992 S:      Supported
21993 F:      include/net/xdp.h
21994 F:      include/net/xdp_priv.h
21995 F:      include/trace/events/xdp.h
21996 F:      kernel/bpf/cpumap.c
21997 F:      kernel/bpf/devmap.c
21998 F:      net/core/xdp.c
21999 F:      samples/bpf/xdp*
22000 F:      tools/testing/selftests/bpf/*xdp*
22001 F:      tools/testing/selftests/bpf/*/*xdp*
22002 F:      drivers/net/ethernet/*/*/*/*/*xdp*
22003 F:      drivers/net/ethernet/*/*/*xdp*
22004 K:      (?:\b|_)xdp(?:\b|_)
22005
22006 XDP SOCKETS (AF_XDP)
22007 M:      Björn Töpel <bjorn@kernel.org>
22008 M:      Magnus Karlsson <magnus.karlsson@intel.com>
22009 M:      Maciej Fijalkowski <maciej.fijalkowski@intel.com>
22010 R:      Jonathan Lemon <jonathan.lemon@gmail.com>
22011 L:      netdev@vger.kernel.org
22012 L:      bpf@vger.kernel.org
22013 S:      Maintained
22014 F:      Documentation/networking/af_xdp.rst
22015 F:      include/net/xdp_sock*
22016 F:      include/net/xsk_buff_pool.h
22017 F:      include/uapi/linux/if_xdp.h
22018 F:      include/uapi/linux/xdp_diag.h
22019 F:      include/net/netns/xdp.h
22020 F:      net/xdp/
22021 F:      tools/testing/selftests/bpf/*xsk*
22022
22023 XEN BLOCK SUBSYSTEM
22024 M:      Roger Pau Monné <roger.pau@citrix.com>
22025 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
22026 S:      Supported
22027 F:      drivers/block/xen*
22028 F:      drivers/block/xen-blkback/*
22029
22030 XEN HYPERVISOR ARM
22031 M:      Stefano Stabellini <sstabellini@kernel.org>
22032 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
22033 S:      Maintained
22034 F:      arch/arm/include/asm/xen/
22035 F:      arch/arm/xen/
22036
22037 XEN HYPERVISOR ARM64
22038 M:      Stefano Stabellini <sstabellini@kernel.org>
22039 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
22040 S:      Maintained
22041 F:      arch/arm64/include/asm/xen/
22042 F:      arch/arm64/xen/
22043
22044 XEN HYPERVISOR INTERFACE
22045 M:      Juergen Gross <jgross@suse.com>
22046 M:      Stefano Stabellini <sstabellini@kernel.org>
22047 R:      Oleksandr Tyshchenko <oleksandr_tyshchenko@epam.com>
22048 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
22049 S:      Supported
22050 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git
22051 F:      Documentation/ABI/stable/sysfs-hypervisor-xen
22052 F:      Documentation/ABI/testing/sysfs-hypervisor-xen
22053 F:      drivers/*/xen-*front.c
22054 F:      drivers/xen/
22055 F:      include/uapi/xen/
22056 F:      include/xen/
22057
22058 XEN HYPERVISOR X86
22059 M:      Juergen Gross <jgross@suse.com>
22060 R:      Boris Ostrovsky <boris.ostrovsky@oracle.com>
22061 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
22062 S:      Supported
22063 F:      arch/x86/include/asm/pvclock-abi.h
22064 F:      arch/x86/include/asm/xen/
22065 F:      arch/x86/platform/pvh/
22066 F:      arch/x86/xen/
22067
22068 XEN NETWORK BACKEND DRIVER
22069 M:      Wei Liu <wei.liu@kernel.org>
22070 M:      Paul Durrant <paul@xen.org>
22071 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
22072 L:      netdev@vger.kernel.org
22073 S:      Supported
22074 F:      drivers/net/xen-netback/*
22075
22076 XEN PCI SUBSYSTEM
22077 M:      Juergen Gross <jgross@suse.com>
22078 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
22079 S:      Supported
22080 F:      arch/x86/pci/*xen*
22081 F:      drivers/pci/*xen*
22082
22083 XEN PVSCSI DRIVERS
22084 M:      Juergen Gross <jgross@suse.com>
22085 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
22086 L:      linux-scsi@vger.kernel.org
22087 S:      Supported
22088 F:      drivers/scsi/xen-scsifront.c
22089 F:      drivers/xen/xen-scsiback.c
22090 F:      include/xen/interface/io/vscsiif.h
22091
22092 XEN PVUSB DRIVER
22093 M:      Juergen Gross <jgross@suse.com>
22094 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
22095 L:      linux-usb@vger.kernel.org
22096 S:      Supported
22097 F:      drivers/usb/host/xen*
22098 F:      include/xen/interface/io/usbif.h
22099
22100 XEN SOUND FRONTEND DRIVER
22101 M:      Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
22102 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
22103 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
22104 S:      Supported
22105 F:      sound/xen/*
22106
22107 XEN SWIOTLB SUBSYSTEM
22108 M:      Juergen Gross <jgross@suse.com>
22109 M:      Stefano Stabellini <sstabellini@kernel.org>
22110 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
22111 L:      iommu@lists.linux.dev
22112 S:      Supported
22113 F:      arch/x86/xen/*swiotlb*
22114 F:      drivers/xen/*swiotlb*
22115
22116 XFS FILESYSTEM
22117 C:      irc://irc.oftc.net/xfs
22118 M:      Darrick J. Wong <djwong@kernel.org>
22119 L:      linux-xfs@vger.kernel.org
22120 S:      Supported
22121 W:      http://xfs.org/
22122 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
22123 F:      Documentation/ABI/testing/sysfs-fs-xfs
22124 F:      Documentation/admin-guide/xfs.rst
22125 F:      Documentation/filesystems/xfs-delayed-logging-design.rst
22126 F:      Documentation/filesystems/xfs-self-describing-metadata.rst
22127 F:      fs/xfs/
22128 F:      include/uapi/linux/dqblk_xfs.h
22129 F:      include/uapi/linux/fsmap.h
22130
22131 XILINX AMS DRIVER
22132 M:      Anand Ashok Dumbre <anand.ashok.dumbre@xilinx.com>
22133 L:      linux-iio@vger.kernel.org
22134 S:      Maintained
22135 F:      Documentation/devicetree/bindings/iio/adc/xlnx,zynqmp-ams.yaml
22136 F:      drivers/iio/adc/xilinx-ams.c
22137
22138 XILINX AXI ETHERNET DRIVER
22139 M:      Radhey Shyam Pandey <radhey.shyam.pandey@xilinx.com>
22140 S:      Maintained
22141 F:      drivers/net/ethernet/xilinx/xilinx_axienet*
22142
22143 XILINX CAN DRIVER
22144 M:      Appana Durga Kedareswara rao <appana.durga.rao@xilinx.com>
22145 R:      Naga Sureshkumar Relli <naga.sureshkumar.relli@xilinx.com>
22146 L:      linux-can@vger.kernel.org
22147 S:      Maintained
22148 F:      Documentation/devicetree/bindings/net/can/xilinx,can.yaml
22149 F:      drivers/net/can/xilinx_can.c
22150
22151 XILINX GPIO DRIVER
22152 M:      Shubhrajyoti Datta <shubhrajyoti.datta@xilinx.com>
22153 R:      Srinivas Neeli <srinivas.neeli@xilinx.com>
22154 R:      Michal Simek <michal.simek@xilinx.com>
22155 S:      Maintained
22156 F:      Documentation/devicetree/bindings/gpio/gpio-xilinx.txt
22157 F:      Documentation/devicetree/bindings/gpio/gpio-zynq.yaml
22158 F:      drivers/gpio/gpio-xilinx.c
22159 F:      drivers/gpio/gpio-zynq.c
22160
22161 XILINX SD-FEC IP CORES
22162 M:      Derek Kiernan <derek.kiernan@xilinx.com>
22163 M:      Dragan Cvetic <dragan.cvetic@xilinx.com>
22164 S:      Maintained
22165 F:      Documentation/devicetree/bindings/misc/xlnx,sd-fec.txt
22166 F:      Documentation/misc-devices/xilinx_sdfec.rst
22167 F:      drivers/misc/Kconfig
22168 F:      drivers/misc/Makefile
22169 F:      drivers/misc/xilinx_sdfec.c
22170 F:      include/uapi/misc/xilinx_sdfec.h
22171
22172 XILINX PWM DRIVER
22173 M:      Sean Anderson <sean.anderson@seco.com>
22174 S:      Maintained
22175 F:      drivers/pwm/pwm-xilinx.c
22176 F:      include/clocksource/timer-xilinx.h
22177
22178 XILINX UARTLITE SERIAL DRIVER
22179 M:      Peter Korsgaard <jacmet@sunsite.dk>
22180 L:      linux-serial@vger.kernel.org
22181 S:      Maintained
22182 F:      drivers/tty/serial/uartlite.c
22183
22184 XILINX VIDEO IP CORES
22185 M:      Hyun Kwon <hyun.kwon@xilinx.com>
22186 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
22187 L:      linux-media@vger.kernel.org
22188 S:      Supported
22189 T:      git git://linuxtv.org/media_tree.git
22190 F:      Documentation/devicetree/bindings/media/xilinx/
22191 F:      drivers/media/platform/xilinx/
22192 F:      include/uapi/linux/xilinx-v4l2-controls.h
22193
22194 XILINX ZYNQMP DPDMA DRIVER
22195 M:      Hyun Kwon <hyun.kwon@xilinx.com>
22196 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
22197 L:      dmaengine@vger.kernel.org
22198 S:      Supported
22199 F:      Documentation/devicetree/bindings/dma/xilinx/xlnx,zynqmp-dpdma.yaml
22200 F:      drivers/dma/xilinx/xilinx_dpdma.c
22201 F:      include/dt-bindings/dma/xlnx-zynqmp-dpdma.h
22202
22203 XILINX ZYNQMP PSGTR PHY DRIVER
22204 M:      Anurag Kumar Vulisha <anurag.kumar.vulisha@xilinx.com>
22205 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
22206 L:      linux-kernel@vger.kernel.org
22207 S:      Supported
22208 T:      git https://github.com/Xilinx/linux-xlnx.git
22209 F:      Documentation/devicetree/bindings/phy/xlnx,zynqmp-psgtr.yaml
22210 F:      drivers/phy/xilinx/phy-zynqmp.c
22211
22212 XILINX ZYNQMP SHA3 DRIVER
22213 M:      Harsha <harsha.harsha@xilinx.com>
22214 S:      Maintained
22215 F:      drivers/crypto/xilinx/zynqmp-sha.c
22216
22217 XILINX EVENT MANAGEMENT DRIVER
22218 M:      Abhyuday Godhasara <abhyuday.godhasara@xilinx.com>
22219 S:      Maintained
22220 F:      drivers/soc/xilinx/xlnx_event_manager.c
22221 F:      include/linux/firmware/xlnx-event-manager.h
22222
22223 XILLYBUS DRIVER
22224 M:      Eli Billauer <eli.billauer@gmail.com>
22225 L:      linux-kernel@vger.kernel.org
22226 S:      Supported
22227 F:      drivers/char/xillybus/
22228
22229 XLP9XX I2C DRIVER
22230 M:      George Cherian <gcherian@marvell.com>
22231 L:      linux-i2c@vger.kernel.org
22232 S:      Supported
22233 W:      http://www.marvell.com
22234 F:      drivers/i2c/busses/i2c-xlp9xx.c
22235
22236 XRA1403 GPIO EXPANDER
22237 M:      Nandor Han <nandor.han@ge.com>
22238 M:      Semi Malinen <semi.malinen@ge.com>
22239 L:      linux-gpio@vger.kernel.org
22240 S:      Maintained
22241 F:      Documentation/devicetree/bindings/gpio/gpio-xra1403.txt
22242 F:      drivers/gpio/gpio-xra1403.c
22243
22244 XTENSA XTFPGA PLATFORM SUPPORT
22245 M:      Max Filippov <jcmvbkbc@gmail.com>
22246 L:      linux-xtensa@linux-xtensa.org
22247 S:      Maintained
22248 F:      drivers/spi/spi-xtensa-xtfpga.c
22249 F:      sound/soc/xtensa/xtfpga-i2s.c
22250
22251 YAM DRIVER FOR AX.25
22252 M:      Jean-Paul Roubelat <jpr@f6fbb.org>
22253 L:      linux-hams@vger.kernel.org
22254 S:      Maintained
22255 F:      drivers/net/hamradio/yam*
22256 F:      include/linux/yam.h
22257
22258 YAMA SECURITY MODULE
22259 M:      Kees Cook <keescook@chromium.org>
22260 S:      Supported
22261 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/hardening
22262 F:      Documentation/admin-guide/LSM/Yama.rst
22263 F:      security/yama/
22264
22265 YEALINK PHONE DRIVER
22266 M:      Henk Vergonet <Henk.Vergonet@gmail.com>
22267 L:      usbb2k-api-dev@nongnu.org
22268 S:      Maintained
22269 F:      Documentation/input/devices/yealink.rst
22270 F:      drivers/input/misc/yealink.*
22271
22272 Z8530 DRIVER FOR AX.25
22273 M:      Joerg Reuter <jreuter@yaina.de>
22274 L:      linux-hams@vger.kernel.org
22275 S:      Maintained
22276 W:      http://yaina.de/jreuter/
22277 W:      http://www.qsl.net/dl1bke/
22278 F:      Documentation/networking/device_drivers/hamradio/z8530drv.rst
22279 F:      drivers/net/hamradio/*scc.c
22280 F:      drivers/net/hamradio/z8530.h
22281
22282 ZBUD COMPRESSED PAGE ALLOCATOR
22283 M:      Seth Jennings <sjenning@redhat.com>
22284 M:      Dan Streetman <ddstreet@ieee.org>
22285 L:      linux-mm@kvack.org
22286 S:      Maintained
22287 F:      mm/zbud.c
22288
22289 Z3FOLD COMPRESSED PAGE ALLOCATOR
22290 M:      Vitaly Wool <vitaly.wool@konsulko.com>
22291 R:      Miaohe Lin <linmiaohe@huawei.com>
22292 L:      linux-mm@kvack.org
22293 S:      Maintained
22294 F:      mm/z3fold.c
22295
22296 ZD1211RW WIRELESS DRIVER
22297 M:      Ulrich Kunitz <kune@deine-taler.de>
22298 L:      linux-wireless@vger.kernel.org
22299 L:      zd1211-devs@lists.sourceforge.net (subscribers-only)
22300 S:      Maintained
22301 W:      http://zd1211.ath.cx/wiki/DriverRewrite
22302 F:      drivers/net/wireless/zydas/zd1211rw/
22303
22304 ZD1301 MEDIA DRIVER
22305 M:      Antti Palosaari <crope@iki.fi>
22306 L:      linux-media@vger.kernel.org
22307 S:      Maintained
22308 W:      https://linuxtv.org/
22309 W:      http://palosaari.fi/linux/
22310 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
22311 F:      drivers/media/usb/dvb-usb-v2/zd1301*
22312
22313 ZD1301_DEMOD MEDIA DRIVER
22314 M:      Antti Palosaari <crope@iki.fi>
22315 L:      linux-media@vger.kernel.org
22316 S:      Maintained
22317 W:      https://linuxtv.org/
22318 W:      http://palosaari.fi/linux/
22319 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
22320 F:      drivers/media/dvb-frontends/zd1301_demod*
22321
22322 ZHAOXIN PROCESSOR SUPPORT
22323 M:      Tony W Wang-oc <TonyWWang-oc@zhaoxin.com>
22324 L:      linux-kernel@vger.kernel.org
22325 S:      Maintained
22326 F:      arch/x86/kernel/cpu/zhaoxin.c
22327
22328 ZONEFS FILESYSTEM
22329 M:      Damien Le Moal <damien.lemoal@opensource.wdc.com>
22330 M:      Naohiro Aota <naohiro.aota@wdc.com>
22331 R:      Johannes Thumshirn <jth@kernel.org>
22332 L:      linux-fsdevel@vger.kernel.org
22333 S:      Maintained
22334 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dlemoal/zonefs.git
22335 F:      Documentation/filesystems/zonefs.rst
22336 F:      fs/zonefs/
22337
22338 ZPOOL COMPRESSED PAGE STORAGE API
22339 M:      Dan Streetman <ddstreet@ieee.org>
22340 L:      linux-mm@kvack.org
22341 S:      Maintained
22342 F:      include/linux/zpool.h
22343 F:      mm/zpool.c
22344
22345 ZR36067 VIDEO FOR LINUX DRIVER
22346 M:      Corentin Labbe <clabbe@baylibre.com>
22347 L:      mjpeg-users@lists.sourceforge.net
22348 L:      linux-media@vger.kernel.org
22349 S:      Maintained
22350 W:      http://mjpeg.sourceforge.net/driver-zoran/
22351 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
22352 F:      Documentation/driver-api/media/drivers/zoran.rst
22353 F:      drivers/staging/media/zoran/
22354
22355 ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER
22356 M:      Minchan Kim <minchan@kernel.org>
22357 M:      Nitin Gupta <ngupta@vflare.org>
22358 R:      Sergey Senozhatsky <senozhatsky@chromium.org>
22359 L:      linux-kernel@vger.kernel.org
22360 S:      Maintained
22361 F:      Documentation/admin-guide/blockdev/zram.rst
22362 F:      drivers/block/zram/
22363
22364 ZS DECSTATION Z85C30 SERIAL DRIVER
22365 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
22366 S:      Maintained
22367 F:      drivers/tty/serial/zs.*
22368
22369 ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR
22370 M:      Minchan Kim <minchan@kernel.org>
22371 M:      Nitin Gupta <ngupta@vflare.org>
22372 R:      Sergey Senozhatsky <senozhatsky@chromium.org>
22373 L:      linux-mm@kvack.org
22374 S:      Maintained
22375 F:      Documentation/vm/zsmalloc.rst
22376 F:      include/linux/zsmalloc.h
22377 F:      mm/zsmalloc.c
22378
22379 ZSTD
22380 M:      Nick Terrell <terrelln@fb.com>
22381 S:      Maintained
22382 B:      https://github.com/facebook/zstd/issues
22383 T:      git git://github.com/terrelln/linux.git
22384 F:      include/linux/zstd*
22385 F:      lib/zstd/
22386 F:      lib/decompress_unzstd.c
22387 F:      crypto/zstd.c
22388 N:      zstd
22389 K:      zstd
22390
22391 ZSWAP COMPRESSED SWAP CACHING
22392 M:      Seth Jennings <sjenning@redhat.com>
22393 M:      Dan Streetman <ddstreet@ieee.org>
22394 M:      Vitaly Wool <vitaly.wool@konsulko.com>
22395 L:      linux-mm@kvack.org
22396 S:      Maintained
22397 F:      mm/zswap.c
22398
22399 THE REST
22400 M:      Linus Torvalds <torvalds@linux-foundation.org>
22401 L:      linux-kernel@vger.kernel.org
22402 S:      Buried alive in reporters
22403 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
22404 F:      *
22405 F:      */