media: ov5640: Provide timings accessor
[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 M:      Jukka Rissanen <jukka.rissanen@linux.intel.com>
175 L:      linux-bluetooth@vger.kernel.org
176 L:      linux-wpan@vger.kernel.org
177 S:      Maintained
178 F:      Documentation/networking/6lowpan.rst
179 F:      include/net/6lowpan.h
180 F:      net/6lowpan/
181
182 6PACK NETWORK DRIVER FOR AX.25
183 M:      Andreas Koensgen <ajk@comnets.uni-bremen.de>
184 L:      linux-hams@vger.kernel.org
185 S:      Maintained
186 F:      drivers/net/hamradio/6pack.c
187
188 802.11 (including CFG80211/NL80211)
189 M:      Johannes Berg <johannes@sipsolutions.net>
190 L:      linux-wireless@vger.kernel.org
191 S:      Maintained
192 W:      https://wireless.wiki.kernel.org/
193 Q:      https://patchwork.kernel.org/project/linux-wireless/list/
194 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless.git
195 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless-next.git
196 F:      Documentation/driver-api/80211/cfg80211.rst
197 F:      Documentation/networking/regulatory.rst
198 F:      include/linux/ieee80211.h
199 F:      include/net/cfg80211.h
200 F:      include/net/ieee80211_radiotap.h
201 F:      include/net/iw_handler.h
202 F:      include/net/wext.h
203 F:      include/uapi/linux/nl80211.h
204 F:      include/uapi/linux/wireless.h
205 F:      net/wireless/
206
207 8169 10/100/1000 GIGABIT ETHERNET DRIVER
208 M:      Heiner Kallweit <hkallweit1@gmail.com>
209 M:      nic_swsd@realtek.com
210 L:      netdev@vger.kernel.org
211 S:      Maintained
212 F:      drivers/net/ethernet/realtek/r8169*
213
214 8250/16?50 (AND CLONE UARTS) SERIAL DRIVER
215 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
216 L:      linux-serial@vger.kernel.org
217 S:      Maintained
218 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
219 F:      drivers/tty/serial/8250*
220 F:      include/linux/serial_8250.h
221
222 8390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.]
223 L:      netdev@vger.kernel.org
224 S:      Orphan / Obsolete
225 F:      drivers/net/ethernet/8390/
226
227 9P FILE SYSTEM
228 M:      Eric Van Hensbergen <ericvh@gmail.com>
229 M:      Latchesar Ionkov <lucho@ionkov.net>
230 M:      Dominique Martinet <asmadeus@codewreck.org>
231 R:      Christian Schoenebeck <linux_oss@crudebyte.com>
232 L:      v9fs-developer@lists.sourceforge.net
233 S:      Maintained
234 W:      http://swik.net/v9fs
235 Q:      http://patchwork.kernel.org/project/v9fs-devel/list/
236 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs.git
237 T:      git git://github.com/martinetd/linux.git
238 F:      Documentation/filesystems/9p.rst
239 F:      fs/9p/
240 F:      include/net/9p/
241 F:      include/trace/events/9p.h
242 F:      include/uapi/linux/virtio_9p.h
243 F:      net/9p/
244
245 A8293 MEDIA DRIVER
246 M:      Antti Palosaari <crope@iki.fi>
247 L:      linux-media@vger.kernel.org
248 S:      Maintained
249 W:      https://linuxtv.org
250 W:      http://palosaari.fi/linux/
251 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
252 T:      git git://linuxtv.org/anttip/media_tree.git
253 F:      drivers/media/dvb-frontends/a8293*
254
255 AACRAID SCSI RAID DRIVER
256 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
257 L:      linux-scsi@vger.kernel.org
258 S:      Supported
259 W:      http://www.adaptec.com/
260 F:      Documentation/scsi/aacraid.rst
261 F:      drivers/scsi/aacraid/
262
263 ABI/API
264 L:      linux-api@vger.kernel.org
265 F:      include/linux/syscalls.h
266 F:      kernel/sys_ni.c
267 X:      include/uapi/
268 X:      arch/*/include/uapi/
269
270 ABIT UGURU 1,2 HARDWARE MONITOR DRIVER
271 M:      Hans de Goede <hdegoede@redhat.com>
272 L:      linux-hwmon@vger.kernel.org
273 S:      Maintained
274 F:      drivers/hwmon/abituguru.c
275
276 ABIT UGURU 3 HARDWARE MONITOR DRIVER
277 M:      Alistair John Strachan <alistair@devzero.co.uk>
278 L:      linux-hwmon@vger.kernel.org
279 S:      Maintained
280 F:      drivers/hwmon/abituguru3.c
281
282 ACCES 104-DIO-48E GPIO DRIVER
283 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
284 L:      linux-gpio@vger.kernel.org
285 S:      Maintained
286 F:      drivers/gpio/gpio-104-dio-48e.c
287
288 ACCES 104-IDI-48 GPIO DRIVER
289 M:      "William Breathitt Gray" <vilhelm.gray@gmail.com>
290 L:      linux-gpio@vger.kernel.org
291 S:      Maintained
292 F:      drivers/gpio/gpio-104-idi-48.c
293
294 ACCES 104-IDIO-16 GPIO DRIVER
295 M:      "William Breathitt Gray" <vilhelm.gray@gmail.com>
296 L:      linux-gpio@vger.kernel.org
297 S:      Maintained
298 F:      drivers/gpio/gpio-104-idio-16.c
299
300 ACCES 104-QUAD-8 DRIVER
301 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
302 M:      Syed Nayyar Waris <syednwaris@gmail.com>
303 L:      linux-iio@vger.kernel.org
304 S:      Maintained
305 F:      drivers/counter/104-quad-8.c
306
307 ACCES PCI-IDIO-16 GPIO DRIVER
308 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
309 L:      linux-gpio@vger.kernel.org
310 S:      Maintained
311 F:      drivers/gpio/gpio-pci-idio-16.c
312
313 ACCES PCIe-IDIO-24 GPIO DRIVER
314 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
315 L:      linux-gpio@vger.kernel.org
316 S:      Maintained
317 F:      drivers/gpio/gpio-pcie-idio-24.c
318
319 ACENIC DRIVER
320 M:      Jes Sorensen <jes@trained-monkey.org>
321 L:      linux-acenic@sunsite.dk
322 S:      Maintained
323 F:      drivers/net/ethernet/alteon/acenic*
324
325 ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER
326 M:      Peter Kaestle <peter@piie.net>
327 L:      platform-driver-x86@vger.kernel.org
328 S:      Maintained
329 W:      http://piie.net/?section=acerhdf
330 F:      drivers/platform/x86/acerhdf.c
331
332 ACER WMI LAPTOP EXTRAS
333 M:      "Lee, Chun-Yi" <jlee@suse.com>
334 L:      platform-driver-x86@vger.kernel.org
335 S:      Maintained
336 F:      drivers/platform/x86/acer-wmi.c
337
338 ACPI
339 M:      "Rafael J. Wysocki" <rafael@kernel.org>
340 R:      Len Brown <lenb@kernel.org>
341 L:      linux-acpi@vger.kernel.org
342 S:      Supported
343 W:      https://01.org/linux-acpi
344 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
345 B:      https://bugzilla.kernel.org
346 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
347 F:      Documentation/ABI/testing/configfs-acpi
348 F:      Documentation/ABI/testing/sysfs-bus-acpi
349 F:      Documentation/firmware-guide/acpi/
350 F:      drivers/acpi/
351 F:      drivers/pci/*/*acpi*
352 F:      drivers/pci/*acpi*
353 F:      drivers/pnp/pnpacpi/
354 F:      include/acpi/
355 F:      include/linux/acpi.h
356 F:      include/linux/fwnode.h
357 F:      tools/power/acpi/
358
359 ACPI APEI
360 M:      "Rafael J. Wysocki" <rafael@kernel.org>
361 R:      Len Brown <lenb@kernel.org>
362 R:      James Morse <james.morse@arm.com>
363 R:      Tony Luck <tony.luck@intel.com>
364 R:      Borislav Petkov <bp@alien8.de>
365 L:      linux-acpi@vger.kernel.org
366 F:      drivers/acpi/apei/
367
368 ACPI COMPONENT ARCHITECTURE (ACPICA)
369 M:      Robert Moore <robert.moore@intel.com>
370 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
371 L:      linux-acpi@vger.kernel.org
372 L:      devel@acpica.org
373 S:      Supported
374 W:      https://acpica.org/
375 W:      https://github.com/acpica/acpica/
376 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
377 B:      https://bugzilla.kernel.org
378 B:      https://bugs.acpica.org
379 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
380 F:      drivers/acpi/acpica/
381 F:      include/acpi/
382 F:      tools/power/acpi/
383
384 ACPI FOR ARM64 (ACPI/arm64)
385 M:      Lorenzo Pieralisi <lpieralisi@kernel.org>
386 M:      Hanjun Guo <guohanjun@huawei.com>
387 M:      Sudeep Holla <sudeep.holla@arm.com>
388 L:      linux-acpi@vger.kernel.org
389 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
390 S:      Maintained
391 F:      drivers/acpi/arm64
392
393 ACPI SERIAL MULTI INSTANTIATE DRIVER
394 M:      Hans de Goede <hdegoede@redhat.com>
395 L:      platform-driver-x86@vger.kernel.org
396 S:      Maintained
397 F:      drivers/platform/x86/serial-multi-instantiate.c
398
399 ACPI PCC(Platform Communication Channel) MAILBOX DRIVER
400 M:      Sudeep Holla <sudeep.holla@arm.com>
401 L:      linux-acpi@vger.kernel.org
402 S:      Supported
403 F:      drivers/mailbox/pcc.c
404
405 ACPI PMIC DRIVERS
406 M:      "Rafael J. Wysocki" <rafael@kernel.org>
407 M:      Len Brown <lenb@kernel.org>
408 R:      Andy Shevchenko <andy@kernel.org>
409 R:      Mika Westerberg <mika.westerberg@linux.intel.com>
410 L:      linux-acpi@vger.kernel.org
411 S:      Supported
412 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
413 B:      https://bugzilla.kernel.org
414 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
415 F:      drivers/acpi/pmic/
416
417 ACPI THERMAL DRIVER
418 M:      Rafael J. Wysocki <rafael@kernel.org>
419 R:      Zhang Rui <rui.zhang@intel.com>
420 L:      linux-acpi@vger.kernel.org
421 S:      Supported
422 W:      https://01.org/linux-acpi
423 B:      https://bugzilla.kernel.org
424 F:      drivers/acpi/*thermal*
425
426 ACPI VIOT DRIVER
427 M:      Jean-Philippe Brucker <jean-philippe@linaro.org>
428 L:      linux-acpi@vger.kernel.org
429 L:      iommu@lists.linux-foundation.org
430 S:      Maintained
431 F:      drivers/acpi/viot.c
432 F:      include/linux/acpi_viot.h
433
434 ACPI WMI DRIVER
435 L:      platform-driver-x86@vger.kernel.org
436 S:      Orphan
437 F:      drivers/platform/x86/wmi.c
438 F:      include/uapi/linux/wmi.h
439
440 ACRN HYPERVISOR SERVICE MODULE
441 M:      Fei Li <fei1.li@intel.com>
442 L:      acrn-dev@lists.projectacrn.org (subscribers-only)
443 S:      Supported
444 W:      https://projectacrn.org
445 F:      Documentation/virt/acrn/
446 F:      drivers/virt/acrn/
447 F:      include/uapi/linux/acrn.h
448
449 AD1889 ALSA SOUND DRIVER
450 L:      linux-parisc@vger.kernel.org
451 S:      Maintained
452 W:      https://parisc.wiki.kernel.org/index.php/AD1889
453 F:      sound/pci/ad1889.*
454
455 AD5110 ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
456 M:      Mugilraj Dhavachelvan <dmugil2000@gmail.com>
457 L:      linux-iio@vger.kernel.org
458 S:      Supported
459 F:      drivers/iio/potentiometer/ad5110.c
460
461 AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
462 M:      Michael Hennerich <michael.hennerich@analog.com>
463 S:      Supported
464 W:      http://wiki.analog.com/AD5254
465 W:      https://ez.analog.com/linux-software-drivers
466 F:      drivers/misc/ad525x_dpot.c
467
468 AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821)
469 M:      Michael Hennerich <michael.hennerich@analog.com>
470 S:      Supported
471 W:      http://wiki.analog.com/AD5398
472 W:      https://ez.analog.com/linux-software-drivers
473 F:      drivers/regulator/ad5398.c
474
475 AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A)
476 M:      Michael Hennerich <michael.hennerich@analog.com>
477 S:      Supported
478 W:      http://wiki.analog.com/AD7142
479 W:      https://ez.analog.com/linux-software-drivers
480 F:      drivers/input/misc/ad714x.c
481
482 AD7877 TOUCHSCREEN DRIVER
483 M:      Michael Hennerich <michael.hennerich@analog.com>
484 S:      Supported
485 W:      http://wiki.analog.com/AD7877
486 W:      https://ez.analog.com/linux-software-drivers
487 F:      drivers/input/touchscreen/ad7877.c
488
489 AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889)
490 M:      Michael Hennerich <michael.hennerich@analog.com>
491 S:      Supported
492 W:      http://wiki.analog.com/AD7879
493 W:      https://ez.analog.com/linux-software-drivers
494 F:      drivers/input/touchscreen/ad7879.c
495
496 ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR)
497 M:      Jiri Kosina <jikos@kernel.org>
498 S:      Maintained
499
500 ADF7242 IEEE 802.15.4 RADIO DRIVER
501 M:      Michael Hennerich <michael.hennerich@analog.com>
502 L:      linux-wpan@vger.kernel.org
503 S:      Supported
504 W:      https://wiki.analog.com/ADF7242
505 W:      https://ez.analog.com/linux-software-drivers
506 F:      Documentation/devicetree/bindings/net/ieee802154/adf7242.txt
507 F:      drivers/net/ieee802154/adf7242.c
508
509 ADM1025 HARDWARE MONITOR DRIVER
510 M:      Jean Delvare <jdelvare@suse.com>
511 L:      linux-hwmon@vger.kernel.org
512 S:      Maintained
513 F:      Documentation/hwmon/adm1025.rst
514 F:      drivers/hwmon/adm1025.c
515
516 ADM1029 HARDWARE MONITOR DRIVER
517 M:      Corentin Labbe <clabbe.montjoie@gmail.com>
518 L:      linux-hwmon@vger.kernel.org
519 S:      Maintained
520 F:      drivers/hwmon/adm1029.c
521
522 ADM8211 WIRELESS DRIVER
523 L:      linux-wireless@vger.kernel.org
524 S:      Orphan
525 W:      https://wireless.wiki.kernel.org/
526 F:      drivers/net/wireless/admtek/adm8211.*
527
528 ADP1653 FLASH CONTROLLER DRIVER
529 M:      Sakari Ailus <sakari.ailus@iki.fi>
530 L:      linux-media@vger.kernel.org
531 S:      Maintained
532 F:      drivers/media/i2c/adp1653.c
533 F:      include/media/i2c/adp1653.h
534
535 ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501)
536 M:      Michael Hennerich <michael.hennerich@analog.com>
537 S:      Supported
538 W:      http://wiki.analog.com/ADP5520
539 W:      https://ez.analog.com/linux-software-drivers
540 F:      drivers/gpio/gpio-adp5520.c
541 F:      drivers/input/keyboard/adp5520-keys.c
542 F:      drivers/leds/leds-adp5520.c
543 F:      drivers/mfd/adp5520.c
544 F:      drivers/video/backlight/adp5520_bl.c
545
546 ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587)
547 M:      Michael Hennerich <michael.hennerich@analog.com>
548 S:      Supported
549 W:      http://wiki.analog.com/ADP5588
550 W:      https://ez.analog.com/linux-software-drivers
551 F:      drivers/gpio/gpio-adp5588.c
552 F:      drivers/input/keyboard/adp5588-keys.c
553
554 ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863)
555 M:      Michael Hennerich <michael.hennerich@analog.com>
556 S:      Supported
557 W:      http://wiki.analog.com/ADP8860
558 W:      https://ez.analog.com/linux-software-drivers
559 F:      drivers/video/backlight/adp8860_bl.c
560
561 ADT746X FAN DRIVER
562 M:      Colin Leroy <colin@colino.net>
563 S:      Maintained
564 F:      drivers/macintosh/therm_adt746x.c
565
566 ADT7475 HARDWARE MONITOR DRIVER
567 M:      Jean Delvare <jdelvare@suse.com>
568 L:      linux-hwmon@vger.kernel.org
569 S:      Maintained
570 F:      Documentation/hwmon/adt7475.rst
571 F:      drivers/hwmon/adt7475.c
572
573 ADVANSYS SCSI DRIVER
574 M:      Matthew Wilcox <willy@infradead.org>
575 M:      Hannes Reinecke <hare@suse.com>
576 L:      linux-scsi@vger.kernel.org
577 S:      Maintained
578 F:      Documentation/scsi/advansys.rst
579 F:      drivers/scsi/advansys.c
580
581 ADVANTECH SWBTN DRIVER
582 M:      Andrea Ho <Andrea.Ho@advantech.com.tw>
583 L:      platform-driver-x86@vger.kernel.org
584 S:      Maintained
585 F:      drivers/platform/x86/adv_swbutton.c
586
587 ADXL313 THREE-AXIS DIGITAL ACCELEROMETER DRIVER
588 M:      Lucas Stankus <lucas.p.stankus@gmail.com>
589 S:      Supported
590 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl313.yaml
591 F:      drivers/iio/accel/adxl313*
592
593 ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346)
594 M:      Michael Hennerich <michael.hennerich@analog.com>
595 S:      Supported
596 W:      http://wiki.analog.com/ADXL345
597 W:      https://ez.analog.com/linux-software-drivers
598 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl345.yaml
599 F:      drivers/input/misc/adxl34x.c
600
601 ADXL355 THREE-AXIS DIGITAL ACCELEROMETER DRIVER
602 M:      Puranjay Mohan <puranjay12@gmail.com>
603 L:      linux-iio@vger.kernel.org
604 S:      Supported
605 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl355.yaml
606 F:      drivers/iio/accel/adxl355.h
607 F:      drivers/iio/accel/adxl355_core.c
608 F:      drivers/iio/accel/adxl355_i2c.c
609 F:      drivers/iio/accel/adxl355_spi.c
610
611 ADXL367 THREE-AXIS DIGITAL ACCELEROMETER DRIVER
612 M:      Cosmin Tanislav <cosmin.tanislav@analog.com>
613 L:      linux-iio@vger.kernel.org
614 S:      Supported
615 W:      http://ez.analog.com/community/linux-device-drivers
616 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl367.yaml
617 F:      drivers/iio/accel/adxl367*
618
619 ADXL372 THREE-AXIS DIGITAL ACCELEROMETER DRIVER
620 M:      Michael Hennerich <michael.hennerich@analog.com>
621 S:      Supported
622 W:      https://ez.analog.com/linux-software-drivers
623 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl372.yaml
624 F:      drivers/iio/accel/adxl372.c
625 F:      drivers/iio/accel/adxl372_i2c.c
626 F:      drivers/iio/accel/adxl372_spi.c
627
628 AF9013 MEDIA DRIVER
629 M:      Antti Palosaari <crope@iki.fi>
630 L:      linux-media@vger.kernel.org
631 S:      Maintained
632 W:      https://linuxtv.org
633 W:      http://palosaari.fi/linux/
634 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
635 T:      git git://linuxtv.org/anttip/media_tree.git
636 F:      drivers/media/dvb-frontends/af9013*
637
638 AF9033 MEDIA DRIVER
639 M:      Antti Palosaari <crope@iki.fi>
640 L:      linux-media@vger.kernel.org
641 S:      Maintained
642 W:      https://linuxtv.org
643 W:      http://palosaari.fi/linux/
644 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
645 T:      git git://linuxtv.org/anttip/media_tree.git
646 F:      drivers/media/dvb-frontends/af9033*
647
648 AFFS FILE SYSTEM
649 M:      David Sterba <dsterba@suse.com>
650 L:      linux-fsdevel@vger.kernel.org
651 S:      Odd Fixes
652 F:      Documentation/filesystems/affs.rst
653 F:      fs/affs/
654
655 AFS FILESYSTEM
656 M:      David Howells <dhowells@redhat.com>
657 M:      Marc Dionne <marc.dionne@auristor.com>
658 L:      linux-afs@lists.infradead.org
659 S:      Supported
660 W:      https://www.infradead.org/~dhowells/kafs/
661 F:      Documentation/filesystems/afs.rst
662 F:      fs/afs/
663 F:      include/trace/events/afs.h
664
665 AGPGART DRIVER
666 M:      David Airlie <airlied@linux.ie>
667 S:      Maintained
668 T:      git git://anongit.freedesktop.org/drm/drm
669 F:      drivers/char/agp/
670 F:      include/linux/agp*
671 F:      include/uapi/linux/agp*
672
673 AHA152X SCSI DRIVER
674 M:      "Juergen E. Fischer" <fischer@norbit.de>
675 L:      linux-scsi@vger.kernel.org
676 S:      Maintained
677 F:      drivers/scsi/aha152x*
678 F:      drivers/scsi/pcmcia/aha152x*
679
680 AIC7XXX / AIC79XX SCSI DRIVER
681 M:      Hannes Reinecke <hare@suse.com>
682 L:      linux-scsi@vger.kernel.org
683 S:      Maintained
684 F:      drivers/scsi/aic7xxx/
685
686 AIMSLAB FM RADIO RECEIVER DRIVER
687 M:      Hans Verkuil <hverkuil@xs4all.nl>
688 L:      linux-media@vger.kernel.org
689 S:      Maintained
690 W:      https://linuxtv.org
691 T:      git git://linuxtv.org/media_tree.git
692 F:      drivers/media/radio/radio-aimslab*
693
694 AIO
695 M:      Benjamin LaHaise <bcrl@kvack.org>
696 L:      linux-aio@kvack.org
697 S:      Supported
698 F:      fs/aio.c
699 F:      include/linux/*aio*.h
700
701 AIRSPY MEDIA DRIVER
702 M:      Antti Palosaari <crope@iki.fi>
703 L:      linux-media@vger.kernel.org
704 S:      Maintained
705 W:      https://linuxtv.org
706 W:      http://palosaari.fi/linux/
707 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
708 T:      git git://linuxtv.org/anttip/media_tree.git
709 F:      drivers/media/usb/airspy/
710
711 ALACRITECH GIGABIT ETHERNET DRIVER
712 M:      Lino Sanfilippo <LinoSanfilippo@gmx.de>
713 S:      Maintained
714 F:      drivers/net/ethernet/alacritech/*
715
716 ALCATEL SPEEDTOUCH USB DRIVER
717 M:      Duncan Sands <duncan.sands@free.fr>
718 L:      linux-usb@vger.kernel.org
719 S:      Maintained
720 W:      http://www.linux-usb.org/SpeedTouch/
721 F:      drivers/usb/atm/speedtch.c
722 F:      drivers/usb/atm/usbatm.c
723
724 ALCHEMY AU1XX0 MMC DRIVER
725 M:      Manuel Lauss <manuel.lauss@gmail.com>
726 S:      Maintained
727 F:      drivers/mmc/host/au1xmmc.c
728
729 ALI1563 I2C DRIVER
730 M:      Rudolf Marek <r.marek@assembler.cz>
731 L:      linux-i2c@vger.kernel.org
732 S:      Maintained
733 F:      Documentation/i2c/busses/i2c-ali1563.rst
734 F:      drivers/i2c/busses/i2c-ali1563.c
735
736 ALIENWARE WMI DRIVER
737 L:      Dell.Client.Kernel@dell.com
738 S:      Maintained
739 F:      drivers/platform/x86/dell/alienware-wmi.c
740
741 ALL SENSORS DLH SERIES PRESSURE SENSORS DRIVER
742 M:      Tomislav Denis <tomislav.denis@avl.com>
743 L:      linux-iio@vger.kernel.org
744 S:      Maintained
745 W:      http://www.allsensors.com/
746 F:      Documentation/devicetree/bindings/iio/pressure/asc,dlhl60d.yaml
747 F:      drivers/iio/pressure/dlhl60d.c
748
749 ALLEGRO DVT VIDEO IP CORE DRIVER
750 M:      Michael Tretter <m.tretter@pengutronix.de>
751 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
752 L:      linux-media@vger.kernel.org
753 S:      Maintained
754 F:      Documentation/devicetree/bindings/media/allegro,al5e.yaml
755 F:      drivers/media/platform/allegro-dvt/
756
757 ALLWINNER A10 CSI DRIVER
758 M:      Maxime Ripard <mripard@kernel.org>
759 L:      linux-media@vger.kernel.org
760 S:      Maintained
761 T:      git git://linuxtv.org/media_tree.git
762 F:      Documentation/devicetree/bindings/media/allwinner,sun4i-a10-csi.yaml
763 F:      drivers/media/platform/sunxi/sun4i-csi/
764
765 ALLWINNER A31 MIPI CSI-2 BRIDGE DRIVER
766 M:      Paul Kocialkowski <paul.kocialkowski@bootlin.com>
767 L:      linux-media@vger.kernel.org
768 S:      Maintained
769 T:      git git://linuxtv.org/media_tree.git
770 F:      Documentation/devicetree/bindings/media/allwinner,sun6i-a31-mipi-csi2.yaml
771 F:      drivers/media/platform/sunxi/sun6i-mipi-csi2/
772
773 ALLWINNER CPUFREQ DRIVER
774 M:      Yangtao Li <tiny.windzz@gmail.com>
775 L:      linux-pm@vger.kernel.org
776 S:      Maintained
777 F:      Documentation/devicetree/bindings/opp/allwinner,sun50i-h6-operating-points.yaml
778 F:      drivers/cpufreq/sun50i-cpufreq-nvmem.c
779
780 ALLWINNER CRYPTO DRIVERS
781 M:      Corentin Labbe <clabbe.montjoie@gmail.com>
782 L:      linux-crypto@vger.kernel.org
783 S:      Maintained
784 F:      drivers/crypto/allwinner/
785
786 ALLWINNER HARDWARE SPINLOCK SUPPORT
787 M:      Wilken Gottwalt <wilken.gottwalt@posteo.net>
788 S:      Maintained
789 F:      Documentation/devicetree/bindings/hwlock/allwinner,sun6i-a31-hwspinlock.yaml
790 F:      drivers/hwspinlock/sun6i_hwspinlock.c
791
792 ALLWINNER THERMAL DRIVER
793 M:      Vasily Khoruzhick <anarsoul@gmail.com>
794 M:      Yangtao Li <tiny.windzz@gmail.com>
795 L:      linux-pm@vger.kernel.org
796 S:      Maintained
797 F:      Documentation/devicetree/bindings/thermal/allwinner,sun8i-a83t-ths.yaml
798 F:      drivers/thermal/sun8i_thermal.c
799
800 ALLWINNER VPU DRIVER
801 M:      Maxime Ripard <mripard@kernel.org>
802 M:      Paul Kocialkowski <paul.kocialkowski@bootlin.com>
803 L:      linux-media@vger.kernel.org
804 S:      Maintained
805 F:      drivers/staging/media/sunxi/cedrus/
806
807 ALPHA PORT
808 M:      Richard Henderson <rth@twiddle.net>
809 M:      Ivan Kokshaysky <ink@jurassic.park.msu.ru>
810 M:      Matt Turner <mattst88@gmail.com>
811 L:      linux-alpha@vger.kernel.org
812 S:      Odd Fixes
813 F:      arch/alpha/
814
815 ALPS PS/2 TOUCHPAD DRIVER
816 R:      Pali Rohár <pali@kernel.org>
817 F:      drivers/input/mouse/alps.*
818
819 ALTERA I2C CONTROLLER DRIVER
820 M:      Thor Thayer <thor.thayer@linux.intel.com>
821 S:      Maintained
822 F:      Documentation/devicetree/bindings/i2c/i2c-altera.txt
823 F:      drivers/i2c/busses/i2c-altera.c
824
825 ALTERA MAILBOX DRIVER
826 M:      Mun Yew Tham <mun.yew.tham@intel.com>
827 S:      Maintained
828 F:      drivers/mailbox/mailbox-altera.c
829
830 ALTERA MSGDMA IP CORE DRIVER
831 M:      Olivier Dautricourt <olivierdautricourt@gmail.com>
832 R:      Stefan Roese <sr@denx.de>
833 L:      dmaengine@vger.kernel.org
834 S:      Odd Fixes
835 F:      Documentation/devicetree/bindings/dma/altr,msgdma.yaml
836 F:      drivers/dma/altera-msgdma.c
837
838 ALTERA PIO DRIVER
839 M:      Mun Yew Tham <mun.yew.tham@intel.com>
840 L:      linux-gpio@vger.kernel.org
841 S:      Maintained
842 F:      drivers/gpio/gpio-altera.c
843
844 ALTERA SYSTEM MANAGER DRIVER
845 M:      Thor Thayer <thor.thayer@linux.intel.com>
846 S:      Maintained
847 F:      drivers/mfd/altera-sysmgr.c
848 F:      include/linux/mfd/altera-sysmgr.h
849
850 ALTERA SYSTEM RESOURCE DRIVER FOR ARRIA10 DEVKIT
851 M:      Thor Thayer <thor.thayer@linux.intel.com>
852 S:      Maintained
853 F:      drivers/gpio/gpio-altera-a10sr.c
854 F:      drivers/mfd/altera-a10sr.c
855 F:      drivers/reset/reset-a10sr.c
856 F:      include/dt-bindings/reset/altr,rst-mgr-a10sr.h
857 F:      include/linux/mfd/altera-a10sr.h
858
859 ALTERA TRIPLE SPEED ETHERNET DRIVER
860 M:      Joyce Ooi <joyce.ooi@intel.com>
861 L:      netdev@vger.kernel.org
862 S:      Maintained
863 F:      drivers/net/ethernet/altera/
864
865 ALTERA UART/JTAG UART SERIAL DRIVERS
866 M:      Tobias Klauser <tklauser@distanz.ch>
867 L:      linux-serial@vger.kernel.org
868 S:      Maintained
869 F:      drivers/tty/serial/altera_jtaguart.c
870 F:      drivers/tty/serial/altera_uart.c
871 F:      include/linux/altera_jtaguart.h
872 F:      include/linux/altera_uart.h
873
874 AMAZON ANNAPURNA LABS FIC DRIVER
875 M:      Talel Shenhar <talel@amazon.com>
876 S:      Maintained
877 F:      Documentation/devicetree/bindings/interrupt-controller/amazon,al-fic.txt
878 F:      drivers/irqchip/irq-al-fic.c
879
880 AMAZON ANNAPURNA LABS MEMORY CONTROLLER EDAC
881 M:      Talel Shenhar <talel@amazon.com>
882 M:      Talel Shenhar <talelshenhar@gmail.com>
883 S:      Maintained
884 F:      Documentation/devicetree/bindings/edac/amazon,al-mc-edac.yaml
885 F:      drivers/edac/al_mc_edac.c
886
887 AMAZON ANNAPURNA LABS THERMAL MMIO DRIVER
888 M:      Talel Shenhar <talel@amazon.com>
889 S:      Maintained
890 F:      Documentation/devicetree/bindings/thermal/amazon,al-thermal.txt
891 F:      drivers/thermal/thermal_mmio.c
892
893 AMAZON ETHERNET DRIVERS
894 M:      Shay Agroskin <shayagr@amazon.com>
895 M:      Arthur Kiyanovski <akiyano@amazon.com>
896 R:      David Arinzon <darinzon@amazon.com>
897 R:      Noam Dagan <ndagan@amazon.com>
898 R:      Saeed Bishara <saeedb@amazon.com>
899 L:      netdev@vger.kernel.org
900 S:      Supported
901 F:      Documentation/networking/device_drivers/ethernet/amazon/ena.rst
902 F:      drivers/net/ethernet/amazon/
903
904 AMAZON RDMA EFA DRIVER
905 M:      Gal Pressman <galpress@amazon.com>
906 R:      Yossi Leybovich <sleybo@amazon.com>
907 L:      linux-rdma@vger.kernel.org
908 S:      Supported
909 Q:      https://patchwork.kernel.org/project/linux-rdma/list/
910 F:      drivers/infiniband/hw/efa/
911 F:      include/uapi/rdma/efa-abi.h
912
913 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER
914 M:      Tom Lendacky <thomas.lendacky@amd.com>
915 M:      John Allen <john.allen@amd.com>
916 L:      linux-crypto@vger.kernel.org
917 S:      Supported
918 F:      drivers/crypto/ccp/
919 F:      include/linux/ccp.h
920
921 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER - SEV SUPPORT
922 M:      Brijesh Singh <brijesh.singh@amd.com>
923 M:      Tom Lendacky <thomas.lendacky@amd.com>
924 L:      linux-crypto@vger.kernel.org
925 S:      Supported
926 F:      drivers/crypto/ccp/sev*
927 F:      include/uapi/linux/psp-sev.h
928
929 AMD DISPLAY CORE
930 M:      Harry Wentland <harry.wentland@amd.com>
931 M:      Leo Li <sunpeng.li@amd.com>
932 M:      Rodrigo Siqueira <Rodrigo.Siqueira@amd.com>
933 L:      amd-gfx@lists.freedesktop.org
934 S:      Supported
935 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
936 F:      drivers/gpu/drm/amd/display/
937
938 AMD FAM15H PROCESSOR POWER MONITORING DRIVER
939 M:      Huang Rui <ray.huang@amd.com>
940 L:      linux-hwmon@vger.kernel.org
941 S:      Supported
942 F:      Documentation/hwmon/fam15h_power.rst
943 F:      drivers/hwmon/fam15h_power.c
944
945 AMD FCH GPIO DRIVER
946 M:      Enrico Weigelt, metux IT consult <info@metux.net>
947 L:      linux-gpio@vger.kernel.org
948 S:      Maintained
949 F:      drivers/gpio/gpio-amd-fch.c
950 F:      include/linux/platform_data/gpio/gpio-amd-fch.h
951
952 AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
953 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
954 S:      Orphan
955 F:      drivers/usb/gadget/udc/amd5536udc.*
956
957 AMD GEODE PROCESSOR/CHIPSET SUPPORT
958 M:      Andres Salomon <dilinger@queued.net>
959 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
960 S:      Supported
961 W:      http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
962 F:      arch/x86/include/asm/geode.h
963 F:      drivers/char/hw_random/geode-rng.c
964 F:      drivers/crypto/geode*
965 F:      drivers/video/fbdev/geode/
966
967 AMD IOMMU (AMD-VI)
968 M:      Joerg Roedel <joro@8bytes.org>
969 R:      Suravee Suthikulpanit <suravee.suthikulpanit@amd.com>
970 L:      iommu@lists.linux-foundation.org
971 S:      Maintained
972 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
973 F:      drivers/iommu/amd/
974 F:      include/linux/amd-iommu.h
975
976 AMD KFD
977 M:      Felix Kuehling <Felix.Kuehling@amd.com>
978 L:      amd-gfx@lists.freedesktop.org
979 S:      Supported
980 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
981 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd*.[ch]
982 F:      drivers/gpu/drm/amd/amdkfd/
983 F:      drivers/gpu/drm/amd/include/cik_structs.h
984 F:      drivers/gpu/drm/amd/include/kgd_kfd_interface.h
985 F:      drivers/gpu/drm/amd/include/v9_structs.h
986 F:      drivers/gpu/drm/amd/include/vi_structs.h
987 F:      include/uapi/linux/kfd_ioctl.h
988 F:      include/uapi/linux/kfd_sysfs.h
989
990 AMD SPI DRIVER
991 M:      Sanjay R Mehta <sanju.mehta@amd.com>
992 S:      Maintained
993 F:      drivers/spi/spi-amd.c
994
995 AMD MP2 I2C DRIVER
996 M:      Elie Morisse <syniurge@gmail.com>
997 M:      Nehal Shah <nehal-bakulchandra.shah@amd.com>
998 M:      Shyam Sundar S K <shyam-sundar.s-k@amd.com>
999 L:      linux-i2c@vger.kernel.org
1000 S:      Maintained
1001 F:      drivers/i2c/busses/i2c-amd-mp2*
1002
1003 AMD PMC DRIVER
1004 M:      Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
1005 L:      platform-driver-x86@vger.kernel.org
1006 S:      Maintained
1007 F:      drivers/platform/x86/amd-pmc.*
1008
1009 AMD HSMP DRIVER
1010 M:      Naveen Krishna Chatradhi <naveenkrishna.chatradhi@amd.com>
1011 R:      Carlos Bilbao <carlos.bilbao@amd.com>
1012 L:      platform-driver-x86@vger.kernel.org
1013 S:      Maintained
1014 F:      Documentation/x86/amd_hsmp.rst
1015 F:      arch/x86/include/asm/amd_hsmp.h
1016 F:      arch/x86/include/uapi/asm/amd_hsmp.h
1017 F:      drivers/platform/x86/amd_hsmp.c
1018
1019 AMD POWERPLAY AND SWSMU
1020 M:      Evan Quan <evan.quan@amd.com>
1021 L:      amd-gfx@lists.freedesktop.org
1022 S:      Supported
1023 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
1024 F:      drivers/gpu/drm/amd/pm/
1025
1026 AMD PSTATE DRIVER
1027 M:      Huang Rui <ray.huang@amd.com>
1028 L:      linux-pm@vger.kernel.org
1029 S:      Supported
1030 F:      Documentation/admin-guide/pm/amd-pstate.rst
1031 F:      drivers/cpufreq/amd-pstate*
1032 F:      tools/power/x86/amd_pstate_tracer/amd_pstate_trace.py
1033
1034 AMD PTDMA DRIVER
1035 M:      Sanjay R Mehta <sanju.mehta@amd.com>
1036 L:      dmaengine@vger.kernel.org
1037 S:      Maintained
1038 F:      drivers/dma/ptdma/
1039
1040 AMD SEATTLE DEVICE TREE SUPPORT
1041 M:      Brijesh Singh <brijeshkumar.singh@amd.com>
1042 M:      Suravee Suthikulpanit <suravee.suthikulpanit@amd.com>
1043 M:      Tom Lendacky <thomas.lendacky@amd.com>
1044 S:      Supported
1045 F:      arch/arm64/boot/dts/amd/
1046
1047 AMD XGBE DRIVER
1048 M:      Tom Lendacky <thomas.lendacky@amd.com>
1049 L:      netdev@vger.kernel.org
1050 S:      Supported
1051 F:      arch/arm64/boot/dts/amd/amd-seattle-xgbe*.dtsi
1052 F:      drivers/net/ethernet/amd/xgbe/
1053
1054 AMD SENSOR FUSION HUB DRIVER
1055 M:      Basavaraj Natikar <basavaraj.natikar@amd.com>
1056 L:      linux-input@vger.kernel.org
1057 S:      Maintained
1058 F:      Documentation/hid/amd-sfh*
1059 F:      drivers/hid/amd-sfh-hid/
1060
1061 AMPHION VPU CODEC V4L2 DRIVER
1062 M:      Ming Qian <ming.qian@nxp.com>
1063 M:      Shijie Qin <shijie.qin@nxp.com>
1064 M:      Zhou Peng <eagle.zhou@nxp.com>
1065 L:      linux-media@vger.kernel.org
1066 S:      Maintained
1067 F:      Documentation/devicetree/bindings/media/amphion,vpu.yaml
1068 F:      drivers/media/platform/amphion/
1069
1070 AMS AS73211 DRIVER
1071 M:      Christian Eggers <ceggers@arri.de>
1072 L:      linux-iio@vger.kernel.org
1073 S:      Maintained
1074 F:      Documentation/devicetree/bindings/iio/light/ams,as73211.yaml
1075 F:      drivers/iio/light/as73211.c
1076
1077 AMT (Automatic Multicast Tunneling)
1078 M:      Taehee Yoo <ap420073@gmail.com>
1079 L:      netdev@vger.kernel.org
1080 S:      Maintained
1081 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
1082 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
1083 F:      drivers/net/amt.c
1084
1085 ANALOG DEVICES INC AD7192 DRIVER
1086 M:      Alexandru Tachici <alexandru.tachici@analog.com>
1087 L:      linux-iio@vger.kernel.org
1088 S:      Supported
1089 W:      https://ez.analog.com/linux-software-drivers
1090 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7192.yaml
1091 F:      drivers/iio/adc/ad7192.c
1092
1093 ANALOG DEVICES INC AD7292 DRIVER
1094 M:      Marcelo Schmitt <marcelo.schmitt1@gmail.com>
1095 L:      linux-iio@vger.kernel.org
1096 S:      Supported
1097 W:      https://ez.analog.com/linux-software-drivers
1098 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7292.yaml
1099 F:      drivers/iio/adc/ad7292.c
1100
1101 ANALOG DEVICES INC AD3552R DRIVER
1102 M:      Nuno Sá <nuno.sa@analog.com>
1103 L:      linux-iio@vger.kernel.org
1104 S:      Supported
1105 W:      https://ez.analog.com/linux-software-drivers
1106 F:      Documentation/devicetree/bindings/iio/dac/adi,ad3552r.yaml
1107 F:      drivers/iio/dac/ad3552r.c
1108
1109 ANALOG DEVICES INC AD7293 DRIVER
1110 M:      Antoniu Miclaus <antoniu.miclaus@analog.com>
1111 L:      linux-iio@vger.kernel.org
1112 S:      Supported
1113 W:      https://ez.analog.com/linux-software-drivers
1114 F:      Documentation/devicetree/bindings/iio/dac/adi,ad7293.yaml
1115 F:      drivers/iio/dac/ad7293.c
1116
1117 ANALOG DEVICES INC AD7768-1 DRIVER
1118 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1119 L:      linux-iio@vger.kernel.org
1120 S:      Supported
1121 W:      https://ez.analog.com/linux-software-drivers
1122 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7768-1.yaml
1123 F:      drivers/iio/adc/ad7768-1.c
1124
1125 ANALOG DEVICES INC AD7780 DRIVER
1126 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1127 M:      Renato Lui Geh <renatogeh@gmail.com>
1128 L:      linux-iio@vger.kernel.org
1129 S:      Supported
1130 W:      https://ez.analog.com/linux-software-drivers
1131 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7780.yaml
1132 F:      drivers/iio/adc/ad7780.c
1133
1134 ANALOG DEVICES INC AD74413R DRIVER
1135 M:      Cosmin Tanislav <cosmin.tanislav@analog.com>
1136 L:      linux-iio@vger.kernel.org
1137 S:      Supported
1138 W:      http://ez.analog.com/community/linux-device-drivers
1139 F:      Documentation/devicetree/bindings/iio/addac/adi,ad74413r.yaml
1140 F:      drivers/iio/addac/ad74413r.c
1141 F:      include/dt-bindings/iio/addac/adi,ad74413r.h
1142
1143 ANALOG DEVICES INC AD9389B DRIVER
1144 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1145 L:      linux-media@vger.kernel.org
1146 S:      Maintained
1147 F:      drivers/media/i2c/ad9389b*
1148
1149 ANALOG DEVICES INC ADA4250 DRIVER
1150 M:      Antoniu Miclaus <antoniu.miclaus@analog.com>
1151 L:      linux-iio@vger.kernel.org
1152 S:      Supported
1153 W:      https://ez.analog.com/linux-software-drivers
1154 F:      Documentation/devicetree/bindings/iio/amplifiers/adi,ada4250.yaml
1155 F:      drivers/iio/amplifiers/ada4250.c
1156
1157 ANALOG DEVICES INC ADGS1408 DRIVER
1158 M:      Mircea Caprioru <mircea.caprioru@analog.com>
1159 S:      Supported
1160 F:      Documentation/devicetree/bindings/mux/adi,adgs1408.txt
1161 F:      drivers/mux/adgs1408.c
1162
1163 ANALOG DEVICES INC ADIN DRIVER
1164 M:      Michael Hennerich <michael.hennerich@analog.com>
1165 L:      netdev@vger.kernel.org
1166 S:      Supported
1167 W:      https://ez.analog.com/linux-software-drivers
1168 F:      Documentation/devicetree/bindings/net/adi,adin.yaml
1169 F:      drivers/net/phy/adin.c
1170
1171 ANALOG DEVICES INC ADIS DRIVER LIBRARY
1172 M:      Nuno Sa <nuno.sa@analog.com>
1173 L:      linux-iio@vger.kernel.org
1174 S:      Supported
1175 F:      drivers/iio/imu/adis.c
1176 F:      drivers/iio/imu/adis_buffer.c
1177 F:      drivers/iio/imu/adis_trigger.c
1178 F:      include/linux/iio/imu/adis.h
1179
1180 ANALOG DEVICES INC ADIS16460 DRIVER
1181 M:      Dragos Bogdan <dragos.bogdan@analog.com>
1182 L:      linux-iio@vger.kernel.org
1183 S:      Supported
1184 W:      https://ez.analog.com/linux-software-drivers
1185 F:      Documentation/devicetree/bindings/iio/imu/adi,adis16460.yaml
1186 F:      drivers/iio/imu/adis16460.c
1187
1188 ANALOG DEVICES INC ADIS16475 DRIVER
1189 M:      Nuno Sa <nuno.sa@analog.com>
1190 L:      linux-iio@vger.kernel.org
1191 W:      https://ez.analog.com/linux-software-drivers
1192 S:      Supported
1193 F:      drivers/iio/imu/adis16475.c
1194 F:      Documentation/devicetree/bindings/iio/imu/adi,adis16475.yaml
1195
1196 ANALOG DEVICES INC ADM1177 DRIVER
1197 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1198 L:      linux-hwmon@vger.kernel.org
1199 S:      Supported
1200 W:      https://ez.analog.com/linux-software-drivers
1201 F:      Documentation/devicetree/bindings/hwmon/adi,adm1177.yaml
1202 F:      drivers/hwmon/adm1177.c
1203
1204 ANALOG DEVICES INC ADMV1013 DRIVER
1205 M:      Antoniu Miclaus <antoniu.miclaus@analog.com>
1206 L:      linux-iio@vger.kernel.org
1207 S:      Supported
1208 W:      https://ez.analog.com/linux-software-drivers
1209 F:      Documentation/devicetree/bindings/iio/frequency/adi,admv1013.yaml
1210 F:      drivers/iio/frequency/admv1013.c
1211
1212 ANALOG DEVICES INC ADMV8818 DRIVER
1213 M:      Antoniu Miclaus <antoniu.miclaus@analog.com>
1214 L:      linux-iio@vger.kernel.org
1215 S:      Supported
1216 W:      https://ez.analog.com/linux-software-drivers
1217 F:      Documentation/devicetree/bindings/iio/filter/adi,admv8818.yaml
1218 F:      drivers/iio/filter/admv8818.c
1219
1220 ANALOG DEVICES INC ADMV1014 DRIVER
1221 M:      Antoniu Miclaus <antoniu.miclaus@analog.com>
1222 L:      linux-iio@vger.kernel.org
1223 S:      Supported
1224 W:      https://ez.analog.com/linux-software-drivers
1225 F:      Documentation/devicetree/bindings/iio/frequency/adi,admv1014.yaml
1226 F:      drivers/iio/frequency/admv1014.c
1227
1228 ANALOG DEVICES INC ADP5061 DRIVER
1229 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1230 L:      linux-pm@vger.kernel.org
1231 S:      Supported
1232 W:      https://ez.analog.com/linux-software-drivers
1233 F:      drivers/power/supply/adp5061.c
1234
1235 ANALOG DEVICES INC ADRF6780 DRIVER
1236 M:      Antoniu Miclaus <antoniu.miclaus@analog.com>
1237 L:      linux-iio@vger.kernel.org
1238 S:      Supported
1239 W:      https://ez.analog.com/linux-software-drivers
1240 F:      Documentation/devicetree/bindings/iio/frequency/adi,adrf6780.yaml
1241 F:      drivers/iio/frequency/adrf6780.c
1242
1243 ANALOG DEVICES INC ADV7180 DRIVER
1244 M:      Lars-Peter Clausen <lars@metafoo.de>
1245 L:      linux-media@vger.kernel.org
1246 S:      Supported
1247 W:      https://ez.analog.com/linux-software-drivers
1248 F:      drivers/media/i2c/adv7180.c
1249 F:      Documentation/devicetree/bindings/media/i2c/adv7180.yaml
1250
1251 ANALOG DEVICES INC ADV748X DRIVER
1252 M:      Kieran Bingham <kieran.bingham@ideasonboard.com>
1253 L:      linux-media@vger.kernel.org
1254 S:      Maintained
1255 F:      Documentation/devicetree/bindings/media/i2c/adv748x.yaml
1256 F:      drivers/media/i2c/adv748x/*
1257
1258 ANALOG DEVICES INC ADV7511 DRIVER
1259 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1260 L:      linux-media@vger.kernel.org
1261 S:      Maintained
1262 F:      drivers/media/i2c/adv7511*
1263
1264 ANALOG DEVICES INC ADV7604 DRIVER
1265 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1266 L:      linux-media@vger.kernel.org
1267 S:      Maintained
1268 F:      drivers/media/i2c/adv7604*
1269 F:      Documentation/devicetree/bindings/media/i2c/adv7604.yaml
1270
1271 ANALOG DEVICES INC ADV7842 DRIVER
1272 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1273 L:      linux-media@vger.kernel.org
1274 S:      Maintained
1275 F:      drivers/media/i2c/adv7842*
1276
1277 ANALOG DEVICES INC ADXRS290 DRIVER
1278 M:      Nishant Malpani <nish.malpani25@gmail.com>
1279 L:      linux-iio@vger.kernel.org
1280 S:      Supported
1281 F:      drivers/iio/gyro/adxrs290.c
1282 F:      Documentation/devicetree/bindings/iio/gyroscope/adi,adxrs290.yaml
1283
1284 ANALOG DEVICES INC ASOC CODEC DRIVERS
1285 M:      Lars-Peter Clausen <lars@metafoo.de>
1286 M:      Nuno Sá <nuno.sa@analog.com>
1287 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1288 S:      Supported
1289 W:      http://wiki.analog.com/
1290 W:      https://ez.analog.com/linux-software-drivers
1291 F:      sound/soc/codecs/ad1*
1292 F:      sound/soc/codecs/ad7*
1293 F:      sound/soc/codecs/adau*
1294 F:      sound/soc/codecs/adav*
1295 F:      sound/soc/codecs/sigmadsp.*
1296 F:      sound/soc/codecs/ssm*
1297
1298 ANALOG DEVICES INC DMA DRIVERS
1299 M:      Lars-Peter Clausen <lars@metafoo.de>
1300 S:      Supported
1301 W:      https://ez.analog.com/linux-software-drivers
1302 F:      drivers/dma/dma-axi-dmac.c
1303
1304 ANALOG DEVICES INC IIO DRIVERS
1305 M:      Lars-Peter Clausen <lars@metafoo.de>
1306 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1307 S:      Supported
1308 W:      http://wiki.analog.com/
1309 W:      https://ez.analog.com/linux-software-drivers
1310 F:      Documentation/ABI/testing/sysfs-bus-iio-frequency-ad9523
1311 F:      Documentation/ABI/testing/sysfs-bus-iio-frequency-adf4350
1312 F:      Documentation/devicetree/bindings/iio/*/adi,*
1313 F:      Documentation/devicetree/bindings/iio/dac/adi,ad5758.yaml
1314 F:      drivers/iio/*/ad*
1315 F:      drivers/iio/adc/ltc249*
1316 F:      drivers/iio/amplifiers/hmc425a.c
1317 F:      drivers/staging/iio/*/ad*
1318 X:      drivers/iio/*/adjd*
1319
1320 ANALOGBITS PLL LIBRARIES
1321 M:      Paul Walmsley <paul.walmsley@sifive.com>
1322 S:      Supported
1323 F:      drivers/clk/analogbits/*
1324 F:      include/linux/clk/analogbits*
1325
1326 ANDROID CONFIG FRAGMENTS
1327 M:      Rob Herring <robh@kernel.org>
1328 S:      Supported
1329 F:      kernel/configs/android*
1330
1331 ANDROID DRIVERS
1332 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
1333 M:      Arve Hjønnevåg <arve@android.com>
1334 M:      Todd Kjos <tkjos@android.com>
1335 M:      Martijn Coenen <maco@android.com>
1336 M:      Joel Fernandes <joel@joelfernandes.org>
1337 M:      Christian Brauner <christian@brauner.io>
1338 M:      Hridya Valsaraju <hridya@google.com>
1339 M:      Suren Baghdasaryan <surenb@google.com>
1340 L:      linux-kernel@vger.kernel.org
1341 S:      Supported
1342 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
1343 F:      drivers/android/
1344
1345 ANDROID GOLDFISH PIC DRIVER
1346 M:      Miodrag Dinic <miodrag.dinic@mips.com>
1347 S:      Supported
1348 F:      Documentation/devicetree/bindings/interrupt-controller/google,goldfish-pic.txt
1349 F:      drivers/irqchip/irq-goldfish-pic.c
1350
1351 ANDROID GOLDFISH RTC DRIVER
1352 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
1353 S:      Supported
1354 F:      Documentation/devicetree/bindings/rtc/google,goldfish-rtc.txt
1355 F:      drivers/rtc/rtc-goldfish.c
1356
1357 AOA (Apple Onboard Audio) ALSA DRIVER
1358 M:      Johannes Berg <johannes@sipsolutions.net>
1359 L:      linuxppc-dev@lists.ozlabs.org
1360 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1361 S:      Maintained
1362 F:      sound/aoa/
1363
1364 APEX EMBEDDED SYSTEMS STX104 IIO DRIVER
1365 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
1366 L:      linux-iio@vger.kernel.org
1367 S:      Maintained
1368 F:      drivers/iio/adc/stx104.c
1369
1370 APM DRIVER
1371 M:      Jiri Kosina <jikos@kernel.org>
1372 S:      Odd fixes
1373 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/apm.git
1374 F:      arch/x86/kernel/apm_32.c
1375 F:      drivers/char/apm-emulation.c
1376 F:      include/linux/apm_bios.h
1377 F:      include/uapi/linux/apm_bios.h
1378
1379 APPARMOR SECURITY MODULE
1380 M:      John Johansen <john.johansen@canonical.com>
1381 L:      apparmor@lists.ubuntu.com (subscribers-only, general discussion)
1382 S:      Supported
1383 W:      wiki.apparmor.net
1384 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jj/linux-apparmor
1385 F:      Documentation/admin-guide/LSM/apparmor.rst
1386 F:      security/apparmor/
1387
1388 APPLE BCM5974 MULTITOUCH DRIVER
1389 M:      Henrik Rydberg <rydberg@bitmath.org>
1390 L:      linux-input@vger.kernel.org
1391 S:      Odd fixes
1392 F:      drivers/input/mouse/bcm5974.c
1393
1394 APPLE PCIE CONTROLLER DRIVER
1395 M:      Alyssa Rosenzweig <alyssa@rosenzweig.io>
1396 M:      Marc Zyngier <maz@kernel.org>
1397 L:      linux-pci@vger.kernel.org
1398 S:      Maintained
1399 F:      drivers/pci/controller/pcie-apple.c
1400
1401 APPLE SMC DRIVER
1402 M:      Henrik Rydberg <rydberg@bitmath.org>
1403 L:      linux-hwmon@vger.kernel.org
1404 S:      Odd fixes
1405 F:      drivers/hwmon/applesmc.c
1406
1407 APPLETALK NETWORK LAYER
1408 L:      netdev@vger.kernel.org
1409 S:      Odd fixes
1410 F:      drivers/net/appletalk/
1411 F:      include/linux/atalk.h
1412 F:      include/uapi/linux/atalk.h
1413 F:      net/appletalk/
1414
1415 APPLIED MICRO (APM) X-GENE DEVICE TREE SUPPORT
1416 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1417 S:      Supported
1418 F:      arch/arm64/boot/dts/apm/
1419
1420 APPLIED MICRO (APM) X-GENE SOC EDAC
1421 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1422 S:      Supported
1423 F:      Documentation/devicetree/bindings/edac/apm-xgene-edac.txt
1424 F:      drivers/edac/xgene_edac.c
1425
1426 APPLIED MICRO (APM) X-GENE SOC ETHERNET (V2) DRIVER
1427 M:      Iyappan Subramanian <iyappan@os.amperecomputing.com>
1428 M:      Keyur Chudgar <keyur@os.amperecomputing.com>
1429 S:      Supported
1430 F:      drivers/net/ethernet/apm/xgene-v2/
1431
1432 APPLIED MICRO (APM) X-GENE SOC ETHERNET DRIVER
1433 M:      Iyappan Subramanian <iyappan@os.amperecomputing.com>
1434 M:      Keyur Chudgar <keyur@os.amperecomputing.com>
1435 M:      Quan Nguyen <quan@os.amperecomputing.com>
1436 S:      Supported
1437 F:      Documentation/devicetree/bindings/net/apm-xgene-enet.txt
1438 F:      Documentation/devicetree/bindings/net/apm-xgene-mdio.txt
1439 F:      drivers/net/ethernet/apm/xgene/
1440 F:      drivers/net/mdio/mdio-xgene.c
1441
1442 APPLIED MICRO (APM) X-GENE SOC PMU
1443 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1444 S:      Supported
1445 F:      Documentation/admin-guide/perf/xgene-pmu.rst
1446 F:      Documentation/devicetree/bindings/perf/apm-xgene-pmu.txt
1447 F:      drivers/perf/xgene_pmu.c
1448
1449 APTINA CAMERA SENSOR PLL
1450 M:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
1451 L:      linux-media@vger.kernel.org
1452 S:      Maintained
1453 F:      drivers/media/i2c/aptina-pll.*
1454
1455 AQUACOMPUTER D5 NEXT PUMP SENSOR DRIVER
1456 M:      Aleksa Savic <savicaleksa83@gmail.com>
1457 M:      Jack Doan <me@jackdoan.com>
1458 L:      linux-hwmon@vger.kernel.org
1459 S:      Maintained
1460 F:      Documentation/hwmon/aquacomputer_d5next.rst
1461 F:      drivers/hwmon/aquacomputer_d5next.c
1462
1463 AQUANTIA ETHERNET DRIVER (atlantic)
1464 M:      Igor Russkikh <irusskikh@marvell.com>
1465 L:      netdev@vger.kernel.org
1466 S:      Supported
1467 W:      https://www.marvell.com/
1468 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
1469 F:      Documentation/networking/device_drivers/ethernet/aquantia/atlantic.rst
1470 F:      drivers/net/ethernet/aquantia/atlantic/
1471
1472 AQUANTIA ETHERNET DRIVER PTP SUBSYSTEM
1473 M:      Egor Pomozov <epomozov@marvell.com>
1474 L:      netdev@vger.kernel.org
1475 S:      Supported
1476 W:      http://www.aquantia.com
1477 F:      drivers/net/ethernet/aquantia/atlantic/aq_ptp*
1478
1479 ARASAN NAND CONTROLLER DRIVER
1480 M:      Miquel Raynal <miquel.raynal@bootlin.com>
1481 M:      Naga Sureshkumar Relli <nagasure@xilinx.com>
1482 L:      linux-mtd@lists.infradead.org
1483 S:      Maintained
1484 F:      Documentation/devicetree/bindings/mtd/arasan,nand-controller.yaml
1485 F:      drivers/mtd/nand/raw/arasan-nand-controller.c
1486
1487 ARC FRAMEBUFFER DRIVER
1488 M:      Jaya Kumar <jayalk@intworks.biz>
1489 S:      Maintained
1490 F:      drivers/video/fbdev/arcfb.c
1491 F:      drivers/video/fbdev/core/fb_defio.c
1492
1493 ARC PGU DRM DRIVER
1494 M:      Alexey Brodkin <abrodkin@synopsys.com>
1495 S:      Supported
1496 F:      Documentation/devicetree/bindings/display/snps,arcpgu.txt
1497 F:      drivers/gpu/drm/tiny/arcpgu.c
1498
1499 ARCNET NETWORK LAYER
1500 M:      Michael Grzeschik <m.grzeschik@pengutronix.de>
1501 L:      netdev@vger.kernel.org
1502 S:      Maintained
1503 F:      drivers/net/arcnet/
1504 F:      include/uapi/linux/if_arcnet.h
1505
1506 ARM ARCHITECTED TIMER DRIVER
1507 M:      Mark Rutland <mark.rutland@arm.com>
1508 M:      Marc Zyngier <maz@kernel.org>
1509 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1510 S:      Maintained
1511 F:      arch/arm/include/asm/arch_timer.h
1512 F:      arch/arm64/include/asm/arch_timer.h
1513 F:      drivers/clocksource/arm_arch_timer.c
1514
1515 ARM HDLCD DRM DRIVER
1516 M:      Liviu Dudau <liviu.dudau@arm.com>
1517 S:      Supported
1518 F:      Documentation/devicetree/bindings/display/arm,hdlcd.yaml
1519 F:      drivers/gpu/drm/arm/hdlcd_*
1520
1521 ARM INTEGRATOR, VERSATILE AND REALVIEW SUPPORT
1522 M:      Linus Walleij <linus.walleij@linaro.org>
1523 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1524 S:      Maintained
1525 F:      Documentation/devicetree/bindings/arm/arm,integrator.yaml
1526 F:      Documentation/devicetree/bindings/arm/arm,realview.yaml
1527 F:      Documentation/devicetree/bindings/arm/arm,versatile.yaml
1528 F:      Documentation/devicetree/bindings/arm/arm,vexpress-juno.yaml
1529 F:      Documentation/devicetree/bindings/auxdisplay/arm,versatile-lcd.yaml
1530 F:      Documentation/devicetree/bindings/clock/arm,syscon-icst.yaml
1531 F:      Documentation/devicetree/bindings/i2c/i2c-versatile.txt
1532 F:      Documentation/devicetree/bindings/interrupt-controller/arm,versatile-fpga-irq.txt
1533 F:      Documentation/devicetree/bindings/mtd/mtd-physmap.yaml
1534 F:      arch/arm/boot/dts/arm-realview-*
1535 F:      arch/arm/boot/dts/integrator*
1536 F:      arch/arm/boot/dts/versatile*
1537 F:      arch/arm/mach-versatile/
1538 F:      drivers/bus/arm-integrator-lm.c
1539 F:      drivers/clk/versatile/
1540 F:      drivers/i2c/busses/i2c-versatile.c
1541 F:      drivers/irqchip/irq-versatile-fpga.c
1542 F:      drivers/mtd/maps/physmap-versatile.*
1543 F:      drivers/power/reset/arm-versatile-reboot.c
1544 F:      drivers/soc/versatile/
1545
1546 ARM KOMEDA DRM-KMS DRIVER
1547 M:      James (Qian) Wang <james.qian.wang@arm.com>
1548 M:      Liviu Dudau <liviu.dudau@arm.com>
1549 M:      Mihail Atanassov <mihail.atanassov@arm.com>
1550 L:      Mali DP Maintainers <malidp@foss.arm.com>
1551 S:      Supported
1552 T:      git git://anongit.freedesktop.org/drm/drm-misc
1553 F:      Documentation/devicetree/bindings/display/arm,komeda.yaml
1554 F:      Documentation/gpu/komeda-kms.rst
1555 F:      drivers/gpu/drm/arm/display/include/
1556 F:      drivers/gpu/drm/arm/display/komeda/
1557
1558 ARM MALI PANFROST DRM DRIVER
1559 M:      Rob Herring <robh@kernel.org>
1560 M:      Tomeu Vizoso <tomeu.vizoso@collabora.com>
1561 R:      Steven Price <steven.price@arm.com>
1562 R:      Alyssa Rosenzweig <alyssa.rosenzweig@collabora.com>
1563 L:      dri-devel@lists.freedesktop.org
1564 S:      Supported
1565 T:      git git://anongit.freedesktop.org/drm/drm-misc
1566 F:      drivers/gpu/drm/panfrost/
1567 F:      include/uapi/drm/panfrost_drm.h
1568
1569 ARM MALI-DP DRM DRIVER
1570 M:      Liviu Dudau <liviu.dudau@arm.com>
1571 M:      Brian Starkey <brian.starkey@arm.com>
1572 L:      Mali DP Maintainers <malidp@foss.arm.com>
1573 S:      Supported
1574 T:      git git://anongit.freedesktop.org/drm/drm-misc
1575 F:      Documentation/devicetree/bindings/display/arm,malidp.yaml
1576 F:      Documentation/gpu/afbc.rst
1577 F:      drivers/gpu/drm/arm/
1578
1579 ARM MFM AND FLOPPY DRIVERS
1580 M:      Ian Molton <spyro@f2s.com>
1581 S:      Maintained
1582 F:      arch/arm/include/asm/floppy.h
1583 F:      arch/arm/mach-rpc/floppydma.S
1584
1585 ARM PMU PROFILING AND DEBUGGING
1586 M:      Will Deacon <will@kernel.org>
1587 M:      Mark Rutland <mark.rutland@arm.com>
1588 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1589 S:      Maintained
1590 F:      Documentation/devicetree/bindings/arm/pmu.yaml
1591 F:      Documentation/devicetree/bindings/perf/
1592 F:      arch/arm*/include/asm/hw_breakpoint.h
1593 F:      arch/arm*/include/asm/perf_event.h
1594 F:      arch/arm*/kernel/hw_breakpoint.c
1595 F:      arch/arm*/kernel/perf_*
1596 F:      drivers/perf/
1597 F:      include/linux/perf/arm_pmu.h
1598
1599 ARM PORT
1600 M:      Russell King <linux@armlinux.org.uk>
1601 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1602 S:      Odd Fixes
1603 W:      http://www.armlinux.org.uk/
1604 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git
1605 F:      arch/arm/
1606 X:      arch/arm/boot/dts/
1607
1608 ARM PRIMECELL AACI PL041 DRIVER
1609 M:      Russell King <linux@armlinux.org.uk>
1610 S:      Odd Fixes
1611 F:      sound/arm/aaci.*
1612
1613 ARM PRIMECELL BUS SUPPORT
1614 M:      Russell King <linux@armlinux.org.uk>
1615 S:      Odd Fixes
1616 F:      drivers/amba/
1617 F:      include/linux/amba/bus.h
1618
1619 ARM PRIMECELL PL35X NAND CONTROLLER DRIVER
1620 M:      Miquel Raynal <miquel.raynal@bootlin.com>
1621 M:      Naga Sureshkumar Relli <nagasure@xilinx.com>
1622 L:      linux-mtd@lists.infradead.org
1623 S:      Maintained
1624 F:      Documentation/devicetree/bindings/mtd/arm,pl353-nand-r2p1.yaml
1625 F:      drivers/mtd/nand/raw/pl35x-nand-controller.c
1626
1627 ARM PRIMECELL PL35X SMC DRIVER
1628 M:      Miquel Raynal <miquel.raynal@bootlin.com>
1629 M:      Naga Sureshkumar Relli <nagasure@xilinx.com>
1630 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1631 S:      Maintained
1632 F:      Documentation/devicetree/bindings/memory-controllers/arm,pl353-smc.yaml
1633 F:      drivers/memory/pl353-smc.c
1634
1635 ARM PRIMECELL CLCD PL110 DRIVER
1636 M:      Russell King <linux@armlinux.org.uk>
1637 S:      Odd Fixes
1638 F:      drivers/video/fbdev/amba-clcd.*
1639
1640 ARM PRIMECELL KMI PL050 DRIVER
1641 M:      Russell King <linux@armlinux.org.uk>
1642 S:      Odd Fixes
1643 F:      drivers/input/serio/ambakmi.*
1644 F:      include/linux/amba/kmi.h
1645
1646 ARM PRIMECELL MMCI PL180/1 DRIVER
1647 M:      Russell King <linux@armlinux.org.uk>
1648 S:      Odd Fixes
1649 F:      drivers/mmc/host/mmci.*
1650 F:      include/linux/amba/mmci.h
1651
1652 ARM PRIMECELL SSP PL022 SPI DRIVER
1653 M:      Linus Walleij <linus.walleij@linaro.org>
1654 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1655 S:      Maintained
1656 F:      Documentation/devicetree/bindings/spi/spi-pl022.yaml
1657 F:      drivers/spi/spi-pl022.c
1658
1659 ARM PRIMECELL UART PL010 AND PL011 DRIVERS
1660 M:      Russell King <linux@armlinux.org.uk>
1661 S:      Odd Fixes
1662 F:      drivers/tty/serial/amba-pl01*.c
1663 F:      include/linux/amba/serial.h
1664
1665 ARM PRIMECELL VIC PL190/PL192 DRIVER
1666 M:      Linus Walleij <linus.walleij@linaro.org>
1667 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1668 S:      Maintained
1669 F:      Documentation/devicetree/bindings/interrupt-controller/arm,vic.yaml
1670 F:      drivers/irqchip/irq-vic.c
1671
1672 ARM SMC WATCHDOG DRIVER
1673 M:      Julius Werner <jwerner@chromium.org>
1674 R:      Evan Benn <evanbenn@chromium.org>
1675 S:      Maintained
1676 F:      Documentation/devicetree/bindings/watchdog/arm-smc-wdt.yaml
1677 F:      drivers/watchdog/arm_smc_wdt.c
1678
1679 ARM SMMU DRIVERS
1680 M:      Will Deacon <will@kernel.org>
1681 R:      Robin Murphy <robin.murphy@arm.com>
1682 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1683 S:      Maintained
1684 F:      Documentation/devicetree/bindings/iommu/arm,smmu*
1685 F:      drivers/iommu/arm/
1686 F:      drivers/iommu/io-pgtable-arm*
1687
1688 ARM AND ARM64 SoC SUB-ARCHITECTURES (COMMON PARTS)
1689 M:      Arnd Bergmann <arnd@arndb.de>
1690 M:      Olof Johansson <olof@lixom.net>
1691 M:      soc@kernel.org
1692 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1693 S:      Maintained
1694 C:      irc://irc.libera.chat/armlinux
1695 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/soc/soc.git
1696 F:      arch/arm/boot/dts/Makefile
1697 F:      arch/arm64/boot/dts/Makefile
1698
1699 ARM SUB-ARCHITECTURES
1700 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1701 S:      Maintained
1702 C:      irc://irc.libera.chat/armlinux
1703 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/soc/soc.git
1704 F:      arch/arm/mach-*/
1705 F:      arch/arm/plat-*/
1706
1707 ARM/ACTIONS SEMI ARCHITECTURE
1708 M:      Andreas Färber <afaerber@suse.de>
1709 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
1710 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1711 L:      linux-actions@lists.infradead.org (moderated for non-subscribers)
1712 S:      Maintained
1713 F:      Documentation/devicetree/bindings/arm/actions.yaml
1714 F:      Documentation/devicetree/bindings/clock/actions,owl-cmu.txt
1715 F:      Documentation/devicetree/bindings/dma/owl-dma.yaml
1716 F:      Documentation/devicetree/bindings/i2c/i2c-owl.yaml
1717 F:      Documentation/devicetree/bindings/interrupt-controller/actions,owl-sirq.yaml
1718 F:      Documentation/devicetree/bindings/mmc/owl-mmc.yaml
1719 F:      Documentation/devicetree/bindings/net/actions,owl-emac.yaml
1720 F:      Documentation/devicetree/bindings/pinctrl/actions,*
1721 F:      Documentation/devicetree/bindings/power/actions,owl-sps.txt
1722 F:      Documentation/devicetree/bindings/timer/actions,owl-timer.txt
1723 F:      arch/arm/boot/dts/owl-*
1724 F:      arch/arm/mach-actions/
1725 F:      arch/arm64/boot/dts/actions/
1726 F:      drivers/clk/actions/
1727 F:      drivers/clocksource/timer-owl*
1728 F:      drivers/dma/owl-dma.c
1729 F:      drivers/i2c/busses/i2c-owl.c
1730 F:      drivers/irqchip/irq-owl-sirq.c
1731 F:      drivers/mmc/host/owl-mmc.c
1732 F:      drivers/net/ethernet/actions/
1733 F:      drivers/pinctrl/actions/*
1734 F:      drivers/soc/actions/
1735 F:      include/dt-bindings/power/owl-*
1736 F:      include/dt-bindings/reset/actions,*
1737 F:      include/linux/soc/actions/
1738 N:      owl
1739
1740 ARM/ADS SPHERE MACHINE SUPPORT
1741 M:      Lennert Buytenhek <kernel@wantstofly.org>
1742 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1743 S:      Maintained
1744
1745 ARM/AFEB9260 MACHINE SUPPORT
1746 M:      Sergey Lapin <slapin@ossfans.org>
1747 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1748 S:      Maintained
1749
1750 ARM/AJECO 1ARM MACHINE SUPPORT
1751 M:      Lennert Buytenhek <kernel@wantstofly.org>
1752 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1753 S:      Maintained
1754
1755 ARM/Allwinner SoC Clock Support
1756 M:      Emilio López <emilio@elopez.com.ar>
1757 S:      Maintained
1758 F:      drivers/clk/sunxi/
1759
1760 ARM/Allwinner sunXi SoC support
1761 M:      Chen-Yu Tsai <wens@csie.org>
1762 M:      Jernej Skrabec <jernej.skrabec@gmail.com>
1763 M:      Samuel Holland <samuel@sholland.org>
1764 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1765 S:      Maintained
1766 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sunxi/linux.git
1767 L:      linux-sunxi@lists.linux.dev
1768 F:      arch/arm/mach-sunxi/
1769 F:      arch/arm64/boot/dts/allwinner/
1770 F:      drivers/clk/sunxi-ng/
1771 F:      drivers/pinctrl/sunxi/
1772 F:      drivers/soc/sunxi/
1773 N:      allwinner
1774 N:      sun[x456789]i
1775 N:      sun50i
1776
1777 ARM/Amlogic Meson SoC CLOCK FRAMEWORK
1778 M:      Neil Armstrong <narmstrong@baylibre.com>
1779 M:      Jerome Brunet <jbrunet@baylibre.com>
1780 L:      linux-amlogic@lists.infradead.org
1781 S:      Maintained
1782 F:      Documentation/devicetree/bindings/clock/amlogic*
1783 F:      drivers/clk/meson/
1784 F:      include/dt-bindings/clock/gxbb*
1785 F:      include/dt-bindings/clock/meson*
1786
1787 ARM/Amlogic Meson SoC Crypto Drivers
1788 M:      Corentin Labbe <clabbe@baylibre.com>
1789 L:      linux-crypto@vger.kernel.org
1790 L:      linux-amlogic@lists.infradead.org
1791 S:      Maintained
1792 F:      Documentation/devicetree/bindings/crypto/amlogic*
1793 F:      drivers/crypto/amlogic/
1794
1795 ARM/Amlogic Meson SoC Sound Drivers
1796 M:      Jerome Brunet <jbrunet@baylibre.com>
1797 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1798 S:      Maintained
1799 F:      Documentation/devicetree/bindings/sound/amlogic*
1800 F:      sound/soc/meson/
1801
1802 ARM/Amlogic Meson SoC support
1803 M:      Neil Armstrong <narmstrong@baylibre.com>
1804 M:      Kevin Hilman <khilman@baylibre.com>
1805 R:      Jerome Brunet <jbrunet@baylibre.com>
1806 R:      Martin Blumenstingl <martin.blumenstingl@googlemail.com>
1807 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1808 L:      linux-amlogic@lists.infradead.org
1809 S:      Maintained
1810 W:      http://linux-meson.com/
1811 F:      arch/arm/boot/dts/meson*
1812 F:      arch/arm/mach-meson/
1813 F:      arch/arm64/boot/dts/amlogic/
1814 F:      drivers/mmc/host/meson*
1815 F:      drivers/pinctrl/meson/
1816 F:      drivers/rtc/rtc-meson*
1817 F:      drivers/soc/amlogic/
1818 N:      meson
1819
1820 ARM/Annapurna Labs ALPINE ARCHITECTURE
1821 M:      Tsahee Zidenberg <tsahee@annapurnalabs.com>
1822 M:      Antoine Tenart <atenart@kernel.org>
1823 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1824 S:      Maintained
1825 F:      arch/arm/boot/dts/alpine*
1826 F:      arch/arm/mach-alpine/
1827 F:      arch/arm64/boot/dts/amazon/
1828 F:      drivers/*/*alpine*
1829
1830 ARM/APPLE MACHINE SUPPORT
1831 M:      Hector Martin <marcan@marcan.st>
1832 M:      Sven Peter <sven@svenpeter.dev>
1833 R:      Alyssa Rosenzweig <alyssa@rosenzweig.io>
1834 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1835 S:      Maintained
1836 W:      https://asahilinux.org
1837 B:      https://github.com/AsahiLinux/linux/issues
1838 C:      irc://irc.oftc.net/asahi-dev
1839 T:      git https://github.com/AsahiLinux/linux.git
1840 F:      Documentation/devicetree/bindings/arm/apple.yaml
1841 F:      Documentation/devicetree/bindings/arm/apple/*
1842 F:      Documentation/devicetree/bindings/clock/apple,nco.yaml
1843 F:      Documentation/devicetree/bindings/i2c/apple,i2c.yaml
1844 F:      Documentation/devicetree/bindings/interrupt-controller/apple,*
1845 F:      Documentation/devicetree/bindings/iommu/apple,dart.yaml
1846 F:      Documentation/devicetree/bindings/iommu/apple,sart.yaml
1847 F:      Documentation/devicetree/bindings/mailbox/apple,mailbox.yaml
1848 F:      Documentation/devicetree/bindings/nvme/apple,nvme-ans.yaml
1849 F:      Documentation/devicetree/bindings/nvmem/apple,efuses.yaml
1850 F:      Documentation/devicetree/bindings/pci/apple,pcie.yaml
1851 F:      Documentation/devicetree/bindings/pinctrl/apple,pinctrl.yaml
1852 F:      Documentation/devicetree/bindings/power/apple*
1853 F:      Documentation/devicetree/bindings/watchdog/apple,wdt.yaml
1854 F:      arch/arm64/boot/dts/apple/
1855 F:      drivers/clk/clk-apple-nco.c
1856 F:      drivers/i2c/busses/i2c-pasemi-core.c
1857 F:      drivers/i2c/busses/i2c-pasemi-platform.c
1858 F:      drivers/iommu/apple-dart.c
1859 F:      drivers/irqchip/irq-apple-aic.c
1860 F:      drivers/mailbox/apple-mailbox.c
1861 F:      drivers/nvme/host/apple.c
1862 F:      drivers/nvmem/apple-efuses.c
1863 F:      drivers/pinctrl/pinctrl-apple-gpio.c
1864 F:      drivers/soc/apple/*
1865 F:      drivers/watchdog/apple_wdt.c
1866 F:      include/dt-bindings/interrupt-controller/apple-aic.h
1867 F:      include/dt-bindings/pinctrl/apple.h
1868 F:      include/linux/apple-mailbox.h
1869 F:      include/linux/soc/apple/*
1870
1871 ARM/ARTPEC MACHINE SUPPORT
1872 M:      Jesper Nilsson <jesper.nilsson@axis.com>
1873 M:      Lars Persson <lars.persson@axis.com>
1874 L:      linux-arm-kernel@axis.com
1875 S:      Maintained
1876 F:      Documentation/devicetree/bindings/pinctrl/axis,artpec6-pinctrl.txt
1877 F:      arch/arm/boot/dts/artpec6*
1878 F:      arch/arm/mach-artpec
1879 F:      drivers/clk/axis
1880 F:      drivers/crypto/axis
1881 F:      drivers/mmc/host/usdhi6rol0.c
1882 F:      drivers/pinctrl/pinctrl-artpec*
1883
1884 ARM/ASPEED I2C DRIVER
1885 M:      Brendan Higgins <brendanhiggins@google.com>
1886 R:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
1887 R:      Joel Stanley <joel@jms.id.au>
1888 L:      linux-i2c@vger.kernel.org
1889 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
1890 S:      Maintained
1891 F:      Documentation/devicetree/bindings/i2c/aspeed,i2c.yaml
1892 F:      Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2400-i2c-ic.txt
1893 F:      drivers/i2c/busses/i2c-aspeed.c
1894 F:      drivers/irqchip/irq-aspeed-i2c-ic.c
1895
1896 ARM/ASPEED MACHINE SUPPORT
1897 M:      Joel Stanley <joel@jms.id.au>
1898 R:      Andrew Jeffery <andrew@aj.id.au>
1899 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1900 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
1901 S:      Supported
1902 Q:      https://patchwork.ozlabs.org/project/linux-aspeed/list/
1903 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joel/aspeed.git
1904 F:      arch/arm/boot/dts/aspeed-*
1905 F:      arch/arm/mach-aspeed/
1906 N:      aspeed
1907
1908 ARM/BITMAIN ARCHITECTURE
1909 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
1910 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1911 S:      Maintained
1912 F:      Documentation/devicetree/bindings/arm/bitmain.yaml
1913 F:      Documentation/devicetree/bindings/clock/bitmain,bm1880-clk.yaml
1914 F:      Documentation/devicetree/bindings/pinctrl/bitmain,bm1880-pinctrl.txt
1915 F:      arch/arm64/boot/dts/bitmain/
1916 F:      drivers/clk/clk-bm1880.c
1917 F:      drivers/pinctrl/pinctrl-bm1880.c
1918
1919 ARM/CALXEDA HIGHBANK ARCHITECTURE
1920 M:      Andre Przywara <andre.przywara@arm.com>
1921 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1922 S:      Maintained
1923 F:      arch/arm/boot/dts/ecx-*.dts*
1924 F:      arch/arm/boot/dts/highbank.dts
1925 F:      arch/arm/mach-highbank/
1926
1927 ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
1928 M:      Krzysztof Halasa <khalasa@piap.pl>
1929 S:      Maintained
1930 F:      arch/arm/mach-cns3xxx/
1931
1932 ARM/CAVIUM THUNDER NETWORK DRIVER
1933 M:      Sunil Goutham <sgoutham@marvell.com>
1934 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1935 S:      Supported
1936 F:      drivers/net/ethernet/cavium/thunder/
1937
1938 ARM/CIRRUS LOGIC BK3 MACHINE SUPPORT
1939 M:      Lukasz Majewski <lukma@denx.de>
1940 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1941 S:      Maintained
1942 F:      arch/arm/mach-ep93xx/ts72xx.c
1943
1944 ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
1945 M:      Alexander Shiyan <shc_work@mail.ru>
1946 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1947 S:      Odd Fixes
1948 N:      clps711x
1949
1950 ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
1951 M:      Lennert Buytenhek <kernel@wantstofly.org>
1952 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1953 S:      Maintained
1954
1955 ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
1956 M:      Hartley Sweeten <hsweeten@visionengravers.com>
1957 M:      Alexander Sverdlin <alexander.sverdlin@gmail.com>
1958 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1959 S:      Maintained
1960 F:      arch/arm/mach-ep93xx/
1961 F:      arch/arm/mach-ep93xx/include/mach/
1962
1963 ARM/CLKDEV SUPPORT
1964 M:      Russell King <linux@armlinux.org.uk>
1965 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1966 S:      Maintained
1967 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git clkdev
1968 F:      drivers/clk/clkdev.c
1969
1970 ARM/CONEXANT DIGICOLOR MACHINE SUPPORT
1971 M:      Baruch Siach <baruch@tkos.co.il>
1972 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1973 S:      Maintained
1974 F:      arch/arm/boot/dts/cx92755*
1975 N:      digicolor
1976
1977 ARM/CONTEC MICRO9 MACHINE SUPPORT
1978 M:      Hubert Feurstein <hubert.feurstein@contec.at>
1979 S:      Maintained
1980 F:      arch/arm/mach-ep93xx/micro9.c
1981
1982 ARM/CORESIGHT FRAMEWORK AND DRIVERS
1983 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
1984 M:      Suzuki K Poulose <suzuki.poulose@arm.com>
1985 R:      Mike Leach <mike.leach@linaro.org>
1986 R:      Leo Yan <leo.yan@linaro.org>
1987 L:      coresight@lists.linaro.org (moderated for non-subscribers)
1988 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1989 S:      Maintained
1990 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/coresight/linux.git
1991 F:      Documentation/ABI/testing/sysfs-bus-coresight-devices-*
1992 F:      Documentation/devicetree/bindings/arm/coresight-cpu-debug.txt
1993 F:      Documentation/devicetree/bindings/arm/coresight-cti.yaml
1994 F:      Documentation/devicetree/bindings/arm/coresight.txt
1995 F:      Documentation/devicetree/bindings/arm/ete.yaml
1996 F:      Documentation/devicetree/bindings/arm/trbe.yaml
1997 F:      Documentation/trace/coresight/*
1998 F:      drivers/hwtracing/coresight/*
1999 F:      include/dt-bindings/arm/coresight-cti-dt.h
2000 F:      include/linux/coresight*
2001 F:      samples/coresight/*
2002 F:      tools/perf/arch/arm/util/auxtrace.c
2003 F:      tools/perf/arch/arm/util/cs-etm.c
2004 F:      tools/perf/arch/arm/util/cs-etm.h
2005 F:      tools/perf/arch/arm/util/pmu.c
2006 F:      tools/perf/util/cs-etm-decoder/*
2007 F:      tools/perf/util/cs-etm.*
2008
2009 ARM/CORGI MACHINE SUPPORT
2010 M:      Richard Purdie <rpurdie@rpsys.net>
2011 S:      Maintained
2012
2013 ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
2014 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
2015 M:      Linus Walleij <linus.walleij@linaro.org>
2016 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2017 S:      Maintained
2018 T:      git git://github.com/ulli-kroll/linux.git
2019 F:      Documentation/devicetree/bindings/arm/gemini.yaml
2020 F:      Documentation/devicetree/bindings/net/cortina,gemini-ethernet.yaml
2021 F:      Documentation/devicetree/bindings/pinctrl/cortina,gemini-pinctrl.txt
2022 F:      Documentation/devicetree/bindings/rtc/faraday,ftrtc010.yaml
2023 F:      arch/arm/boot/dts/gemini*
2024 F:      arch/arm/mach-gemini/
2025 F:      drivers/crypto/gemini/
2026 F:      drivers/net/ethernet/cortina/
2027 F:      drivers/pinctrl/pinctrl-gemini.c
2028 F:      drivers/rtc/rtc-ftrtc010.c
2029
2030 ARM/CZ.NIC TURRIS SUPPORT
2031 M:      Marek Behún <kabel@kernel.org>
2032 S:      Maintained
2033 W:      https://www.turris.cz/
2034 F:      Documentation/ABI/testing/debugfs-moxtet
2035 F:      Documentation/ABI/testing/sysfs-bus-moxtet-devices
2036 F:      Documentation/ABI/testing/sysfs-firmware-turris-mox-rwtm
2037 F:      Documentation/devicetree/bindings/bus/moxtet.txt
2038 F:      Documentation/devicetree/bindings/firmware/cznic,turris-mox-rwtm.txt
2039 F:      Documentation/devicetree/bindings/gpio/gpio-moxtet.txt
2040 F:      Documentation/devicetree/bindings/leds/cznic,turris-omnia-leds.yaml
2041 F:      Documentation/devicetree/bindings/watchdog/armada-37xx-wdt.txt
2042 F:      drivers/bus/moxtet.c
2043 F:      drivers/firmware/turris-mox-rwtm.c
2044 F:      drivers/leds/leds-turris-omnia.c
2045 F:      drivers/mailbox/armada-37xx-rwtm-mailbox.c
2046 F:      drivers/gpio/gpio-moxtet.c
2047 F:      drivers/watchdog/armada_37xx_wdt.c
2048 F:      include/dt-bindings/bus/moxtet.h
2049 F:      include/linux/armada-37xx-rwtm-mailbox.h
2050 F:      include/linux/moxtet.h
2051
2052 ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
2053 M:      Robert Jarzmik <robert.jarzmik@free.fr>
2054 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2055 S:      Maintained
2056 F:      arch/arm/mach-pxa/ezx.c
2057
2058 ARM/FARADAY FA526 PORT
2059 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
2060 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2061 S:      Maintained
2062 T:      git git://git.berlios.de/gemini-board
2063 F:      arch/arm/mm/*-fa*
2064
2065 ARM/FOOTBRIDGE ARCHITECTURE
2066 M:      Russell King <linux@armlinux.org.uk>
2067 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2068 S:      Maintained
2069 W:      http://www.armlinux.org.uk/
2070 F:      arch/arm/include/asm/hardware/dec21285.h
2071 F:      arch/arm/mach-footbridge/
2072
2073 ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
2074 M:      Shawn Guo <shawnguo@kernel.org>
2075 M:      Sascha Hauer <s.hauer@pengutronix.de>
2076 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
2077 R:      Fabio Estevam <festevam@gmail.com>
2078 R:      NXP Linux Team <linux-imx@nxp.com>
2079 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2080 S:      Maintained
2081 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
2082 X:      drivers/media/i2c/
2083 N:      imx
2084 N:      mxs
2085
2086 ARM/FREESCALE LAYERSCAPE ARM ARCHITECTURE
2087 M:      Shawn Guo <shawnguo@kernel.org>
2088 M:      Li Yang <leoyang.li@nxp.com>
2089 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2090 S:      Maintained
2091 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
2092 F:      arch/arm/boot/dts/ls1021a*
2093 F:      arch/arm64/boot/dts/freescale/fsl-*
2094 F:      arch/arm64/boot/dts/freescale/qoriq-*
2095
2096 ARM/FREESCALE VYBRID ARM ARCHITECTURE
2097 M:      Shawn Guo <shawnguo@kernel.org>
2098 M:      Sascha Hauer <s.hauer@pengutronix.de>
2099 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
2100 R:      Stefan Agner <stefan@agner.ch>
2101 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2102 S:      Maintained
2103 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
2104 F:      arch/arm/boot/dts/vf*
2105 F:      arch/arm/mach-imx/*vf610*
2106
2107 ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
2108 M:      Lennert Buytenhek <kernel@wantstofly.org>
2109 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2110 S:      Maintained
2111
2112 ARM/GUMSTIX MACHINE SUPPORT
2113 M:      Steve Sakoman <sakoman@gmail.com>
2114 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2115 S:      Maintained
2116
2117 ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
2118 M:      Philipp Zabel <philipp.zabel@gmail.com>
2119 M:      Paul Parsons <lost.distance@yahoo.com>
2120 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2121 S:      Maintained
2122 F:      arch/arm/mach-pxa/hx4700.c
2123 F:      arch/arm/mach-pxa/include/mach/hx4700.h
2124 F:      sound/soc/pxa/hx4700.c
2125
2126 ARM/HISILICON SOC SUPPORT
2127 M:      Wei Xu <xuwei5@hisilicon.com>
2128 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2129 S:      Supported
2130 W:      http://www.hisilicon.com
2131 T:      git git://github.com/hisilicon/linux-hisi.git
2132 F:      arch/arm/boot/dts/hi3*
2133 F:      arch/arm/boot/dts/hip*
2134 F:      arch/arm/boot/dts/hisi*
2135 F:      arch/arm/mach-hisi/
2136 F:      arch/arm64/boot/dts/hisilicon/
2137
2138 ARM/HP JORNADA 7XX MACHINE SUPPORT
2139 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
2140 S:      Maintained
2141 W:      www.jlime.com
2142 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
2143 F:      arch/arm/mach-sa1100/include/mach/jornada720.h
2144 F:      arch/arm/mach-sa1100/jornada720.c
2145
2146 ARM/HPE GXP ARCHITECTURE
2147 M:      Jean-Marie Verdun <verdun@hpe.com>
2148 M:      Nick Hawkins <nick.hawkins@hpe.com>
2149 S:      Maintained
2150 F:      Documentation/devicetree/bindings/arm/hpe,gxp.yaml
2151 F:      Documentation/devicetree/bindings/timer/hpe,gxp-timer.yaml
2152 F:      arch/arm/boot/dts/hpe-bmc*
2153 F:      arch/arm/boot/dts/hpe-gxp*
2154 F:      arch/arm/mach-hpe/
2155 F:      drivers/clocksource/timer-gxp.c
2156 F:      drivers/watchdog/gxp-wdt.c
2157
2158 ARM/IGEP MACHINE SUPPORT
2159 M:      Enric Balletbo i Serra <eballetbo@gmail.com>
2160 M:      Javier Martinez Canillas <javier@dowhile0.org>
2161 L:      linux-omap@vger.kernel.org
2162 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2163 S:      Maintained
2164 F:      arch/arm/boot/dts/omap3-igep*
2165
2166 ARM/INCOME PXA270 SUPPORT
2167 M:      Marek Vasut <marek.vasut@gmail.com>
2168 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2169 S:      Maintained
2170 F:      arch/arm/mach-pxa/colibri-pxa270-income.c
2171
2172 ARM/INTEL IOP32X ARM ARCHITECTURE
2173 M:      Lennert Buytenhek <kernel@wantstofly.org>
2174 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2175 S:      Maintained
2176
2177 ARM/INTEL IQ81342EX MACHINE SUPPORT
2178 M:      Lennert Buytenhek <kernel@wantstofly.org>
2179 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2180 S:      Maintained
2181
2182 ARM/INTEL IXDP2850 MACHINE SUPPORT
2183 M:      Lennert Buytenhek <kernel@wantstofly.org>
2184 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2185 S:      Maintained
2186
2187 ARM/INTEL IXP4XX ARM ARCHITECTURE
2188 M:      Linus Walleij <linusw@kernel.org>
2189 M:      Imre Kaloz <kaloz@openwrt.org>
2190 M:      Krzysztof Halasa <khalasa@piap.pl>
2191 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2192 S:      Maintained
2193 F:      Documentation/devicetree/bindings/arm/intel-ixp4xx.yaml
2194 F:      Documentation/devicetree/bindings/bus/intel,ixp4xx-expansion-bus-controller.yaml
2195 F:      Documentation/devicetree/bindings/gpio/intel,ixp4xx-gpio.txt
2196 F:      Documentation/devicetree/bindings/interrupt-controller/intel,ixp4xx-interrupt.yaml
2197 F:      Documentation/devicetree/bindings/timer/intel,ixp4xx-timer.yaml
2198 F:      arch/arm/mach-ixp4xx/
2199 F:      drivers/bus/intel-ixp4xx-eb.c
2200 F:      drivers/clocksource/timer-ixp4xx.c
2201 F:      drivers/crypto/ixp4xx_crypto.c
2202 F:      drivers/gpio/gpio-ixp4xx.c
2203 F:      drivers/irqchip/irq-ixp4xx.c
2204 F:      include/linux/irqchip/irq-ixp4xx.h
2205 F:      include/linux/platform_data/timer-ixp4xx.h
2206
2207 ARM/INTEL KEEMBAY ARCHITECTURE
2208 M:      Paul J. Murphy <paul.j.murphy@intel.com>
2209 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
2210 S:      Maintained
2211 F:      Documentation/devicetree/bindings/arm/intel,keembay.yaml
2212 F:      arch/arm64/boot/dts/intel/keembay-evm.dts
2213 F:      arch/arm64/boot/dts/intel/keembay-soc.dtsi
2214
2215 ARM/INTEL XSC3 (MANZANO) ARM CORE
2216 M:      Lennert Buytenhek <kernel@wantstofly.org>
2217 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2218 S:      Maintained
2219
2220 ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
2221 M:      Lennert Buytenhek <kernel@wantstofly.org>
2222 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2223 S:      Maintained
2224
2225 ARM/LG1K ARCHITECTURE
2226 M:      Chanho Min <chanho.min@lge.com>
2227 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2228 S:      Maintained
2229 F:      arch/arm64/boot/dts/lg/
2230
2231 ARM/LOGICPD PXA270 MACHINE SUPPORT
2232 M:      Lennert Buytenhek <kernel@wantstofly.org>
2233 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2234 S:      Maintained
2235
2236 ARM/LPC18XX ARCHITECTURE
2237 M:      Vladimir Zapolskiy <vz@mleia.com>
2238 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2239 S:      Maintained
2240 F:      Documentation/devicetree/bindings/i2c/i2c-lpc2k.txt
2241 F:      arch/arm/boot/dts/lpc43*
2242 F:      drivers/i2c/busses/i2c-lpc2k.c
2243 F:      drivers/memory/pl172.c
2244 F:      drivers/mtd/spi-nor/controllers/nxp-spifi.c
2245 F:      drivers/rtc/rtc-lpc24xx.c
2246 N:      lpc18xx
2247
2248 ARM/LPC32XX SOC SUPPORT
2249 M:      Vladimir Zapolskiy <vz@mleia.com>
2250 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2251 S:      Maintained
2252 T:      git git://github.com/vzapolskiy/linux-lpc32xx.git
2253 F:      Documentation/devicetree/bindings/i2c/i2c-pnx.txt
2254 F:      arch/arm/boot/dts/lpc32*
2255 F:      arch/arm/mach-lpc32xx/
2256 F:      drivers/i2c/busses/i2c-pnx.c
2257 F:      drivers/net/ethernet/nxp/lpc_eth.c
2258 F:      drivers/usb/host/ohci-nxp.c
2259 F:      drivers/watchdog/pnx4008_wdt.c
2260 N:      lpc32xx
2261
2262 ARM/MAGICIAN MACHINE SUPPORT
2263 M:      Philipp Zabel <philipp.zabel@gmail.com>
2264 S:      Maintained
2265
2266 ARM/Marvell Dove/MV78xx0/Orion SOC support
2267 M:      Andrew Lunn <andrew@lunn.ch>
2268 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2269 M:      Gregory Clement <gregory.clement@bootlin.com>
2270 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2271 S:      Maintained
2272 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gclement/mvebu.git
2273 F:      Documentation/devicetree/bindings/soc/dove/
2274 F:      arch/arm/boot/dts/dove*
2275 F:      arch/arm/boot/dts/orion5x*
2276 F:      arch/arm/mach-dove/
2277 F:      arch/arm/mach-mv78xx0/
2278 F:      arch/arm/mach-orion5x/
2279 F:      arch/arm/plat-orion/
2280 F:      drivers/soc/dove/
2281
2282 ARM/Marvell Kirkwood and Armada 370, 375, 38x, 39x, XP, 3700, 7K/8K, CN9130 SOC support
2283 M:      Andrew Lunn <andrew@lunn.ch>
2284 M:      Gregory Clement <gregory.clement@bootlin.com>
2285 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2286 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2287 S:      Maintained
2288 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gclement/mvebu.git
2289 F:      arch/arm/boot/dts/armada*
2290 F:      arch/arm/boot/dts/kirkwood*
2291 F:      arch/arm/configs/mvebu_*_defconfig
2292 F:      arch/arm/mach-mvebu/
2293 F:      arch/arm64/boot/dts/marvell/armada*
2294 F:      arch/arm64/boot/dts/marvell/cn913*
2295 F:      drivers/cpufreq/armada-37xx-cpufreq.c
2296 F:      drivers/cpufreq/armada-8k-cpufreq.c
2297 F:      drivers/cpufreq/mvebu-cpufreq.c
2298 F:      drivers/irqchip/irq-armada-370-xp.c
2299 F:      drivers/irqchip/irq-mvebu-*
2300 F:      drivers/pinctrl/mvebu/
2301 F:      drivers/rtc/rtc-armada38x.c
2302
2303 ARM/Mediatek RTC DRIVER
2304 M:      Eddie Huang <eddie.huang@mediatek.com>
2305 M:      Sean Wang <sean.wang@mediatek.com>
2306 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2307 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2308 S:      Maintained
2309 F:      Documentation/devicetree/bindings/rtc/rtc-mt2712.txt
2310 F:      Documentation/devicetree/bindings/rtc/rtc-mt7622.txt
2311 F:      drivers/rtc/rtc-mt2712.c
2312 F:      drivers/rtc/rtc-mt6397.c
2313 F:      drivers/rtc/rtc-mt7622.c
2314
2315 ARM/Mediatek SoC support
2316 M:      Matthias Brugger <matthias.bgg@gmail.com>
2317 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2318 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2319 S:      Maintained
2320 W:      https://mtk.wiki.kernel.org/
2321 C:      irc://chat.freenode.net/linux-mediatek
2322 F:      arch/arm/boot/dts/mt6*
2323 F:      arch/arm/boot/dts/mt7*
2324 F:      arch/arm/boot/dts/mt8*
2325 F:      arch/arm/mach-mediatek/
2326 F:      arch/arm64/boot/dts/mediatek/
2327 F:      drivers/soc/mediatek/
2328 N:      mtk
2329 N:      mt[678]
2330 K:      mediatek
2331
2332 ARM/Mediatek USB3 PHY DRIVER
2333 M:      Chunfeng Yun <chunfeng.yun@mediatek.com>
2334 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2335 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2336 S:      Maintained
2337 F:      Documentation/devicetree/bindings/phy/mediatek,*
2338 F:      drivers/phy/mediatek/
2339
2340 ARM/Microchip (AT91) SoC support
2341 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
2342 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
2343 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
2344 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2345 S:      Supported
2346 W:      http://www.linux4sam.org
2347 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/at91/linux.git
2348 F:      arch/arm/boot/dts/at91*.dts
2349 F:      arch/arm/boot/dts/at91*.dtsi
2350 F:      arch/arm/boot/dts/sama*.dts
2351 F:      arch/arm/boot/dts/sama*.dtsi
2352 F:      arch/arm/include/debug/at91.S
2353 F:      arch/arm/mach-at91/
2354 F:      drivers/memory/atmel*
2355 F:      drivers/watchdog/sama5d4_wdt.c
2356 F:      include/soc/at91/
2357 X:      drivers/input/touchscreen/atmel_mxt_ts.c
2358 X:      drivers/net/wireless/atmel/
2359 N:      at91
2360 N:      atmel
2361
2362 ARM/Microchip Sparx5 SoC support
2363 M:      Lars Povlsen <lars.povlsen@microchip.com>
2364 M:      Steen Hegelund <Steen.Hegelund@microchip.com>
2365 M:      UNGLinuxDriver@microchip.com
2366 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2367 S:      Supported
2368 T:      git git://github.com/microchip-ung/linux-upstream.git
2369 F:      arch/arm64/boot/dts/microchip/
2370 F:      drivers/pinctrl/pinctrl-microchip-sgpio.c
2371 N:      sparx5
2372
2373 Microchip Timer Counter Block (TCB) Capture Driver
2374 M:      Kamel Bouhara <kamel.bouhara@bootlin.com>
2375 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2376 L:      linux-iio@vger.kernel.org
2377 S:      Maintained
2378 F:      drivers/counter/microchip-tcb-capture.c
2379
2380 ARM/MILBEAUT ARCHITECTURE
2381 M:      Taichi Sugaya <sugaya.taichi@socionext.com>
2382 M:      Takao Orito <orito.takao@socionext.com>
2383 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2384 S:      Maintained
2385 F:      arch/arm/boot/dts/milbeaut*
2386 F:      arch/arm/mach-milbeaut/
2387 N:      milbeaut
2388
2389 ARM/MIOA701 MACHINE SUPPORT
2390 M:      Robert Jarzmik <robert.jarzmik@free.fr>
2391 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2392 S:      Maintained
2393 F:      arch/arm/mach-pxa/mioa701.c
2394
2395 ARM/MStar/Sigmastar Armv7 SoC support
2396 M:      Daniel Palmer <daniel@thingy.jp>
2397 M:      Romain Perier <romain.perier@gmail.com>
2398 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2399 S:      Maintained
2400 W:      http://linux-chenxing.org/
2401 T:      git git://github.com/linux-chenxing/linux.git
2402 F:      Documentation/devicetree/bindings/arm/mstar/*
2403 F:      Documentation/devicetree/bindings/clock/mstar,msc313-mpll.yaml
2404 F:      Documentation/devicetree/bindings/gpio/mstar,msc313-gpio.yaml
2405 F:      arch/arm/boot/dts/mstar-*
2406 F:      arch/arm/mach-mstar/
2407 F:      drivers/clk/mstar/
2408 F:      drivers/clocksource/timer-msc313e.c
2409 F:      drivers/gpio/gpio-msc313.c
2410 F:      drivers/rtc/rtc-msc313.c
2411 F:      drivers/watchdog/msc313e_wdt.c
2412 F:      include/dt-bindings/clock/mstar-*
2413 F:      include/dt-bindings/gpio/msc313-gpio.h
2414
2415 ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
2416 M:      Michael Petchkovsky <mkpetch@internode.on.net>
2417 S:      Maintained
2418
2419 ARM/NOMADIK/Ux500 ARCHITECTURES
2420 M:      Linus Walleij <linus.walleij@linaro.org>
2421 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2422 S:      Maintained
2423 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
2424 F:      Documentation/devicetree/bindings/arm/ste-*
2425 F:      Documentation/devicetree/bindings/arm/ux500.yaml
2426 F:      Documentation/devicetree/bindings/arm/ux500/
2427 F:      Documentation/devicetree/bindings/i2c/i2c-nomadik.txt
2428 F:      arch/arm/boot/dts/ste-*
2429 F:      arch/arm/mach-nomadik/
2430 F:      arch/arm/mach-ux500/
2431 F:      drivers/clk/clk-nomadik.c
2432 F:      drivers/clocksource/clksrc-dbx500-prcmu.c
2433 F:      drivers/dma/ste_dma40*
2434 F:      drivers/hwspinlock/u8500_hsem.c
2435 F:      drivers/i2c/busses/i2c-nomadik.c
2436 F:      drivers/iio/adc/ab8500-gpadc.c
2437 F:      drivers/mfd/ab8500*
2438 F:      drivers/mfd/abx500*
2439 F:      drivers/mfd/db8500*
2440 F:      drivers/pinctrl/nomadik/
2441 F:      drivers/rtc/rtc-ab8500.c
2442 F:      drivers/rtc/rtc-pl031.c
2443 F:      drivers/soc/ux500/
2444
2445 ARM/NUVOTON NPCM ARCHITECTURE
2446 M:      Avi Fishman <avifishman70@gmail.com>
2447 M:      Tomer Maimon <tmaimon77@gmail.com>
2448 M:      Tali Perry <tali.perry1@gmail.com>
2449 R:      Patrick Venture <venture@google.com>
2450 R:      Nancy Yuen <yuenn@google.com>
2451 R:      Benjamin Fair <benjaminfair@google.com>
2452 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2453 S:      Supported
2454 F:      Documentation/devicetree/bindings/*/*/*npcm*
2455 F:      Documentation/devicetree/bindings/*/*npcm*
2456 F:      Documentation/devicetree/bindings/arm/npcm/*
2457 F:      arch/arm/boot/dts/nuvoton-npcm*
2458 F:      arch/arm/mach-npcm/
2459 F:      drivers/*/*npcm*
2460 F:      drivers/*/*/*npcm*
2461 F:      include/dt-bindings/clock/nuvoton,npcm7xx-clock.h
2462
2463 ARM/NUVOTON WPCM450 ARCHITECTURE
2464 M:      Jonathan Neuschäfer <j.neuschaefer@gmx.net>
2465 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2466 S:      Maintained
2467 W:      https://github.com/neuschaefer/wpcm450/wiki
2468 F:      Documentation/devicetree/bindings/*/*wpcm*
2469 F:      arch/arm/boot/dts/nuvoton-wpcm450*
2470 F:      arch/arm/mach-npcm/wpcm450.c
2471 F:      drivers/*/*/*wpcm*
2472 F:      drivers/*/*wpcm*
2473
2474 ARM/NXP S32G ARCHITECTURE
2475 M:      Chester Lin <clin@suse.com>
2476 R:      Andreas Färber <afaerber@suse.de>
2477 R:      Matthias Brugger <mbrugger@suse.com>
2478 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2479 S:      Maintained
2480 F:      arch/arm64/boot/dts/freescale/s32g*.dts*
2481
2482 ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
2483 L:      openmoko-kernel@lists.openmoko.org (subscribers-only)
2484 S:      Orphan
2485 W:      http://wiki.openmoko.org/wiki/Neo_FreeRunner
2486 F:      arch/arm/mach-s3c/gta02.h
2487 F:      arch/arm/mach-s3c/mach-gta02.c
2488
2489 ARM/Orion SoC/Technologic Systems TS-78xx platform support
2490 M:      Alexander Clouter <alex@digriz.org.uk>
2491 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2492 S:      Maintained
2493 W:      http://www.digriz.org.uk/ts78xx/kernel
2494 F:      arch/arm/mach-orion5x/ts78xx-*
2495
2496 ARM/OXNAS platform support
2497 M:      Neil Armstrong <narmstrong@baylibre.com>
2498 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2499 L:      linux-oxnas@groups.io (moderated for non-subscribers)
2500 S:      Maintained
2501 F:      arch/arm/boot/dts/ox8*.dts*
2502 F:      arch/arm/mach-oxnas/
2503 F:      drivers/power/reset/oxnas-restart.c
2504 N:      oxnas
2505
2506 ARM/PALM TREO SUPPORT
2507 M:      Tomas Cech <sleep_walker@suse.com>
2508 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2509 S:      Maintained
2510 W:      http://hackndev.com
2511 F:      arch/arm/mach-pxa/palmtreo.*
2512
2513 ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
2514 M:      Marek Vasut <marek.vasut@gmail.com>
2515 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2516 S:      Maintained
2517 W:      http://hackndev.com
2518 F:      arch/arm/mach-pxa/include/mach/palmld.h
2519 F:      arch/arm/mach-pxa/include/mach/palmtc.h
2520 F:      arch/arm/mach-pxa/include/mach/palmtx.h
2521 F:      arch/arm/mach-pxa/palmld.c
2522 F:      arch/arm/mach-pxa/palmt5.*
2523 F:      arch/arm/mach-pxa/palmtc.c
2524 F:      arch/arm/mach-pxa/palmte2.*
2525 F:      arch/arm/mach-pxa/palmtx.c
2526
2527 ARM/PALMZ72 SUPPORT
2528 M:      Sergey Lapin <slapin@ossfans.org>
2529 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2530 S:      Maintained
2531 W:      http://hackndev.com
2532 F:      arch/arm/mach-pxa/palmz72.*
2533
2534 ARM/PLEB SUPPORT
2535 M:      Peter Chubb <pleb@gelato.unsw.edu.au>
2536 S:      Maintained
2537 W:      http://www.disy.cse.unsw.edu.au/Hardware/PLEB
2538
2539 ARM/PT DIGITAL BOARD PORT
2540 M:      Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
2541 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2542 S:      Maintained
2543 W:      http://www.armlinux.org.uk/
2544
2545 ARM/QUALCOMM SUPPORT
2546 M:      Andy Gross <agross@kernel.org>
2547 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
2548 L:      linux-arm-msm@vger.kernel.org
2549 S:      Maintained
2550 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/qcom/linux.git
2551 F:      Documentation/devicetree/bindings/*/qcom*
2552 F:      Documentation/devicetree/bindings/soc/qcom/
2553 F:      arch/arm/boot/dts/qcom-*.dts
2554 F:      arch/arm/boot/dts/qcom-*.dtsi
2555 F:      arch/arm/mach-qcom/
2556 F:      arch/arm64/boot/dts/qcom/
2557 F:      drivers/*/*/qcom*
2558 F:      drivers/*/*/qcom/
2559 F:      drivers/*/pm8???-*
2560 F:      drivers/*/qcom*
2561 F:      drivers/*/qcom/
2562 F:      drivers/bluetooth/btqcomsmd.c
2563 F:      drivers/clocksource/timer-qcom.c
2564 F:      drivers/cpuidle/cpuidle-qcom-spm.c
2565 F:      drivers/extcon/extcon-qcom*
2566 F:      drivers/i2c/busses/i2c-qcom-geni.c
2567 F:      drivers/i2c/busses/i2c-qup.c
2568 F:      drivers/iommu/msm*
2569 F:      drivers/mfd/ssbi.c
2570 F:      drivers/mmc/host/mmci_qcom*
2571 F:      drivers/mmc/host/sdhci-msm.c
2572 F:      drivers/pci/controller/dwc/pcie-qcom.c
2573 F:      drivers/phy/qualcomm/
2574 F:      drivers/power/*/msm*
2575 F:      drivers/reset/reset-qcom-*
2576 F:      drivers/ufs/host/ufs-qcom*
2577 F:      drivers/spi/spi-geni-qcom.c
2578 F:      drivers/spi/spi-qcom-qspi.c
2579 F:      drivers/spi/spi-qup.c
2580 F:      drivers/tty/serial/msm_serial.c
2581 F:      drivers/usb/dwc3/dwc3-qcom.c
2582 F:      include/dt-bindings/*/qcom*
2583 F:      include/linux/*/qcom*
2584 F:      include/linux/soc/qcom/
2585
2586 ARM/RADISYS ENP2611 MACHINE SUPPORT
2587 M:      Lennert Buytenhek <kernel@wantstofly.org>
2588 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2589 S:      Maintained
2590
2591 ARM/RDA MICRO ARCHITECTURE
2592 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
2593 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2594 L:      linux-unisoc@lists.infradead.org (moderated for non-subscribers)
2595 S:      Maintained
2596 F:      Documentation/devicetree/bindings/arm/rda.yaml
2597 F:      Documentation/devicetree/bindings/gpio/gpio-rda.yaml
2598 F:      Documentation/devicetree/bindings/interrupt-controller/rda,8810pl-intc.txt
2599 F:      Documentation/devicetree/bindings/serial/rda,8810pl-uart.yaml
2600 F:      Documentation/devicetree/bindings/timer/rda,8810pl-timer.yaml
2601 F:      arch/arm/boot/dts/rda8810pl-*
2602 F:      drivers/clocksource/timer-rda.c
2603 F:      drivers/gpio/gpio-rda.c
2604 F:      drivers/irqchip/irq-rda-intc.c
2605 F:      drivers/tty/serial/rda-uart.c
2606
2607 ARM/REALTEK ARCHITECTURE
2608 M:      Andreas Färber <afaerber@suse.de>
2609 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2610 L:      linux-realtek-soc@lists.infradead.org (moderated for non-subscribers)
2611 S:      Maintained
2612 F:      Documentation/devicetree/bindings/arm/realtek.yaml
2613 F:      arch/arm/boot/dts/rtd*
2614 F:      arch/arm/mach-realtek/
2615 F:      arch/arm64/boot/dts/realtek/
2616
2617 ARM/RENESAS ARM64 ARCHITECTURE
2618 M:      Geert Uytterhoeven <geert+renesas@glider.be>
2619 M:      Magnus Damm <magnus.damm@gmail.com>
2620 L:      linux-renesas-soc@vger.kernel.org
2621 S:      Supported
2622 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
2623 C:      irc://irc.libera.chat/renesas-soc
2624 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git next
2625 F:      Documentation/devicetree/bindings/arm/renesas.yaml
2626 F:      arch/arm64/boot/dts/renesas/
2627 F:      drivers/soc/renesas/
2628 F:      include/linux/soc/renesas/
2629
2630 ARM/RISCPC ARCHITECTURE
2631 M:      Russell King <linux@armlinux.org.uk>
2632 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2633 S:      Maintained
2634 W:      http://www.armlinux.org.uk/
2635 F:      arch/arm/include/asm/hardware/entry-macro-iomd.S
2636 F:      arch/arm/include/asm/hardware/ioc.h
2637 F:      arch/arm/include/asm/hardware/iomd.h
2638 F:      arch/arm/include/asm/hardware/memc.h
2639 F:      arch/arm/mach-rpc/
2640 F:      drivers/net/ethernet/8390/etherh.c
2641 F:      drivers/net/ethernet/i825xx/ether1*
2642 F:      drivers/net/ethernet/seeq/ether3*
2643 F:      drivers/scsi/arm/
2644
2645 ARM/Rockchip SoC support
2646 M:      Heiko Stuebner <heiko@sntech.de>
2647 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2648 L:      linux-rockchip@lists.infradead.org
2649 S:      Maintained
2650 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmind/linux-rockchip.git
2651 F:      Documentation/devicetree/bindings/i2c/i2c-rk3x.yaml
2652 F:      Documentation/devicetree/bindings/mmc/rockchip-dw-mshc.yaml
2653 F:      Documentation/devicetree/bindings/spi/spi-rockchip.yaml
2654 F:      arch/arm/boot/dts/rk3*
2655 F:      arch/arm/boot/dts/rv1108*
2656 F:      arch/arm/mach-rockchip/
2657 F:      drivers/*/*/*rockchip*
2658 F:      drivers/*/*rockchip*
2659 F:      drivers/clk/rockchip/
2660 F:      drivers/i2c/busses/i2c-rk3x.c
2661 F:      sound/soc/rockchip/
2662 N:      rockchip
2663
2664 ARM/SAMSUNG S3C, S5P AND EXYNOS ARM ARCHITECTURES
2665 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
2666 R:      Alim Akhtar <alim.akhtar@samsung.com>
2667 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2668 L:      linux-samsung-soc@vger.kernel.org
2669 S:      Maintained
2670 C:      irc://irc.libera.chat/linux-exynos
2671 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
2672 B:      mailto:linux-samsung-soc@vger.kernel.org
2673 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/krzk/linux.git
2674 F:      Documentation/arm/samsung/
2675 F:      Documentation/devicetree/bindings/arm/samsung/
2676 F:      Documentation/devicetree/bindings/power/pd-samsung.yaml
2677 F:      Documentation/devicetree/bindings/soc/samsung/
2678 F:      arch/arm/boot/dts/exynos*
2679 F:      arch/arm/boot/dts/s3c*
2680 F:      arch/arm/boot/dts/s5p*
2681 F:      arch/arm/mach-exynos*/
2682 F:      arch/arm/mach-s3c/
2683 F:      arch/arm/mach-s5p*/
2684 F:      arch/arm64/boot/dts/exynos/
2685 F:      drivers/*/*/*s3c24*
2686 F:      drivers/*/*s3c24*
2687 F:      drivers/*/*s3c64xx*
2688 F:      drivers/*/*s5pv210*
2689 F:      drivers/clocksource/samsung_pwm_timer.c
2690 F:      drivers/memory/samsung/
2691 F:      drivers/pwm/pwm-samsung.c
2692 F:      drivers/soc/samsung/
2693 F:      drivers/tty/serial/samsung*
2694 F:      include/clocksource/samsung_pwm.h
2695 F:      include/linux/platform_data/*s3c*
2696 F:      include/linux/serial_s3c.h
2697 F:      include/linux/soc/samsung/
2698 N:      exynos
2699 N:      s3c2410
2700 N:      s3c64xx
2701 N:      s5pv210
2702
2703 ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT
2704 M:      Łukasz Stelmach <l.stelmach@samsung.com>
2705 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2706 L:      linux-media@vger.kernel.org
2707 S:      Maintained
2708 F:      drivers/media/platform/samsung/s5p-g2d/
2709
2710 ARM/SAMSUNG S5P SERIES HDMI CEC SUBSYSTEM SUPPORT
2711 M:      Marek Szyprowski <m.szyprowski@samsung.com>
2712 L:      linux-samsung-soc@vger.kernel.org
2713 L:      linux-media@vger.kernel.org
2714 S:      Maintained
2715 F:      Documentation/devicetree/bindings/media/s5p-cec.txt
2716 F:      drivers/media/cec/platform/s5p/
2717
2718 ARM/SAMSUNG S5P SERIES JPEG CODEC SUPPORT
2719 M:      Andrzej Pietrasiewicz <andrzejtp2010@gmail.com>
2720 M:      Jacek Anaszewski <jacek.anaszewski@gmail.com>
2721 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
2722 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2723 L:      linux-media@vger.kernel.org
2724 S:      Maintained
2725 F:      drivers/media/platform/samsung/s5p-jpeg/
2726
2727 ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
2728 M:      Marek Szyprowski <m.szyprowski@samsung.com>
2729 M:      Andrzej Hajda <andrzej.hajda@intel.com>
2730 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2731 L:      linux-media@vger.kernel.org
2732 S:      Maintained
2733 F:      drivers/media/platform/samsung/s5p-mfc/
2734
2735 ARM/SHMOBILE ARM ARCHITECTURE
2736 M:      Geert Uytterhoeven <geert+renesas@glider.be>
2737 M:      Magnus Damm <magnus.damm@gmail.com>
2738 L:      linux-renesas-soc@vger.kernel.org
2739 S:      Supported
2740 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
2741 C:      irc://irc.libera.chat/renesas-soc
2742 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git next
2743 F:      Documentation/devicetree/bindings/arm/renesas.yaml
2744 F:      arch/arm/boot/dts/emev2*
2745 F:      arch/arm/boot/dts/gr-peach*
2746 F:      arch/arm/boot/dts/iwg20d-q7*
2747 F:      arch/arm/boot/dts/r7s*
2748 F:      arch/arm/boot/dts/r8a*
2749 F:      arch/arm/boot/dts/r9a*
2750 F:      arch/arm/boot/dts/sh*
2751 F:      arch/arm/configs/shmobile_defconfig
2752 F:      arch/arm/include/debug/renesas-scif.S
2753 F:      arch/arm/mach-shmobile/
2754 F:      drivers/soc/renesas/
2755 F:      include/linux/soc/renesas/
2756
2757 ARM/SOCFPGA ARCHITECTURE
2758 M:      Dinh Nguyen <dinguyen@kernel.org>
2759 S:      Maintained
2760 W:      http://www.rocketboards.org
2761 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
2762 F:      arch/arm/boot/dts/socfpga*
2763 F:      arch/arm/configs/socfpga_defconfig
2764 F:      arch/arm/mach-socfpga/
2765 F:      arch/arm64/boot/dts/altera/
2766 F:      arch/arm64/boot/dts/intel/
2767
2768 ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
2769 M:      Dinh Nguyen <dinguyen@kernel.org>
2770 S:      Maintained
2771 F:      drivers/clk/socfpga/
2772
2773 ARM/SOCFPGA EDAC SUPPORT
2774 M:      Dinh Nguyen <dinguyen@kernel.org>
2775 S:      Maintained
2776 F:      drivers/edac/altera_edac.[ch]
2777
2778 ARM/SPREADTRUM SoC SUPPORT
2779 M:      Orson Zhai <orsonzhai@gmail.com>
2780 M:      Baolin Wang <baolin.wang7@gmail.com>
2781 M:      Chunyan Zhang <zhang.lyra@gmail.com>
2782 S:      Maintained
2783 F:      arch/arm64/boot/dts/sprd
2784 N:      sprd
2785 N:      sc27xx
2786 N:      sc2731
2787
2788 ARM/STI ARCHITECTURE
2789 M:      Patrice Chotard <patrice.chotard@foss.st.com>
2790 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2791 S:      Maintained
2792 W:      http://www.stlinux.com
2793 F:      Documentation/devicetree/bindings/i2c/i2c-st.txt
2794 F:      arch/arm/boot/dts/sti*
2795 F:      arch/arm/mach-sti/
2796 F:      drivers/ata/ahci_st.c
2797 F:      drivers/char/hw_random/st-rng.c
2798 F:      drivers/clocksource/arm_global_timer.c
2799 F:      drivers/clocksource/clksrc_st_lpc.c
2800 F:      drivers/cpufreq/sti-cpufreq.c
2801 F:      drivers/dma/st_fdma*
2802 F:      drivers/i2c/busses/i2c-st.c
2803 F:      drivers/media/platform/st/sti/c8sectpfe/
2804 F:      drivers/media/rc/st_rc.c
2805 F:      drivers/mmc/host/sdhci-st.c
2806 F:      drivers/phy/st/phy-miphy28lp.c
2807 F:      drivers/phy/st/phy-stih407-usb.c
2808 F:      drivers/pinctrl/pinctrl-st.c
2809 F:      drivers/remoteproc/st_remoteproc.c
2810 F:      drivers/remoteproc/st_slim_rproc.c
2811 F:      drivers/reset/sti/
2812 F:      drivers/rtc/rtc-st-lpc.c
2813 F:      drivers/tty/serial/st-asc.c
2814 F:      drivers/usb/dwc3/dwc3-st.c
2815 F:      drivers/usb/host/ehci-st.c
2816 F:      drivers/usb/host/ohci-st.c
2817 F:      drivers/watchdog/st_lpc_wdt.c
2818 F:      include/linux/remoteproc/st_slim_rproc.h
2819
2820 ARM/STM32 ARCHITECTURE
2821 M:      Maxime Coquelin <mcoquelin.stm32@gmail.com>
2822 M:      Alexandre Torgue <alexandre.torgue@foss.st.com>
2823 L:      linux-stm32@st-md-mailman.stormreply.com (moderated for non-subscribers)
2824 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2825 S:      Maintained
2826 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/atorgue/stm32.git stm32-next
2827 F:      arch/arm/boot/dts/stm32*
2828 F:      arch/arm/mach-stm32/
2829 F:      drivers/clocksource/armv7m_systick.c
2830 N:      stm32
2831 N:      stm
2832
2833 ARM/Synaptics SoC support
2834 M:      Jisheng Zhang <jszhang@kernel.org>
2835 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2836 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2837 S:      Maintained
2838 F:      arch/arm/boot/dts/berlin*
2839 F:      arch/arm/mach-berlin/
2840 F:      arch/arm64/boot/dts/synaptics/
2841
2842 ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
2843 M:      Lennert Buytenhek <kernel@wantstofly.org>
2844 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2845 S:      Maintained
2846
2847 ARM/TEGRA HDMI CEC SUBSYSTEM SUPPORT
2848 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
2849 L:      linux-tegra@vger.kernel.org
2850 L:      linux-media@vger.kernel.org
2851 S:      Maintained
2852 F:      Documentation/devicetree/bindings/media/tegra-cec.txt
2853 F:      drivers/media/cec/platform/tegra/
2854
2855 ARM/TESLA FSD SoC SUPPORT
2856 M:      Alim Akhtar <alim.akhtar@samsung.com>
2857 M:      linux-fsd@tesla.com
2858 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2859 L:      linux-samsung-soc@vger.kernel.org
2860 S:      Maintained
2861 F:      arch/arm64/boot/dts/tesla*
2862
2863 ARM/TETON BGA MACHINE SUPPORT
2864 M:      "Mark F. Brown" <mark.brown314@gmail.com>
2865 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2866 S:      Maintained
2867
2868 ARM/TEXAS INSTRUMENT AEMIF/EMIF DRIVERS
2869 M:      Santosh Shilimkar <ssantosh@kernel.org>
2870 L:      linux-kernel@vger.kernel.org
2871 S:      Maintained
2872 F:      drivers/memory/*emif*
2873
2874 ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE
2875 M:      Nishanth Menon <nm@ti.com>
2876 M:      Santosh Shilimkar <ssantosh@kernel.org>
2877 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2878 S:      Maintained
2879 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ti/linux.git
2880 F:      arch/arm/boot/dts/keystone-*
2881 F:      arch/arm/mach-keystone/
2882
2883 ARM/TEXAS INSTRUMENT KEYSTONE CLOCK FRAMEWORK
2884 M:      Santosh Shilimkar <ssantosh@kernel.org>
2885 L:      linux-kernel@vger.kernel.org
2886 S:      Maintained
2887 F:      drivers/clk/keystone/
2888
2889 ARM/TEXAS INSTRUMENT KEYSTONE CLOCKSOURCE
2890 M:      Santosh Shilimkar <ssantosh@kernel.org>
2891 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2892 L:      linux-kernel@vger.kernel.org
2893 S:      Maintained
2894 F:      drivers/clocksource/timer-keystone.c
2895
2896 ARM/TEXAS INSTRUMENT KEYSTONE RESET DRIVER
2897 M:      Santosh Shilimkar <ssantosh@kernel.org>
2898 L:      linux-kernel@vger.kernel.org
2899 S:      Maintained
2900 F:      drivers/power/reset/keystone-reset.c
2901
2902 ARM/TEXAS INSTRUMENTS K3 ARCHITECTURE
2903 M:      Nishanth Menon <nm@ti.com>
2904 M:      Vignesh Raghavendra <vigneshr@ti.com>
2905 M:      Tero Kristo <kristo@kernel.org>
2906 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2907 S:      Supported
2908 F:      Documentation/devicetree/bindings/arm/ti/k3.yaml
2909 F:      arch/arm64/boot/dts/ti/Makefile
2910 F:      arch/arm64/boot/dts/ti/k3-*
2911 F:      include/dt-bindings/pinctrl/k3.h
2912
2913 ARM/THECUS N2100 MACHINE SUPPORT
2914 M:      Lennert Buytenhek <kernel@wantstofly.org>
2915 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2916 S:      Maintained
2917
2918 ARM/TOSA MACHINE SUPPORT
2919 M:      Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
2920 M:      Dirk Opfer <dirk@opfer-online.de>
2921 S:      Maintained
2922
2923 ARM/TOSHIBA VISCONTI ARCHITECTURE
2924 M:      Nobuhiro Iwamatsu <nobuhiro1.iwamatsu@toshiba.co.jp>
2925 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2926 S:      Supported
2927 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwamatsu/linux-visconti.git
2928 F:      Documentation/devicetree/bindings/arm/toshiba.yaml
2929 F:      Documentation/devicetree/bindings/clock/toshiba,tmpv770x-pipllct.yaml
2930 F:      Documentation/devicetree/bindings/clock/toshiba,tmpv770x-pismu.yaml
2931 F:      Documentation/devicetree/bindings/net/toshiba,visconti-dwmac.yaml
2932 F:      Documentation/devicetree/bindings/gpio/toshiba,gpio-visconti.yaml
2933 F:      Documentation/devicetree/bindings/pci/toshiba,visconti-pcie.yaml
2934 F:      Documentation/devicetree/bindings/pinctrl/toshiba,visconti-pinctrl.yaml
2935 F:      Documentation/devicetree/bindings/watchdog/toshiba,visconti-wdt.yaml
2936 F:      arch/arm64/boot/dts/toshiba/
2937 F:      drivers/clk/visconti/
2938 F:      drivers/net/ethernet/stmicro/stmmac/dwmac-visconti.c
2939 F:      drivers/gpio/gpio-visconti.c
2940 F:      drivers/pci/controller/dwc/pcie-visconti.c
2941 F:      drivers/pinctrl/visconti/
2942 F:      drivers/watchdog/visconti_wdt.c
2943 N:      visconti
2944
2945 ARM/UNIPHIER ARCHITECTURE
2946 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
2947 M:      Masami Hiramatsu <mhiramat@kernel.org>
2948 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2949 S:      Maintained
2950 F:      Documentation/devicetree/bindings/arm/socionext/uniphier.yaml
2951 F:      Documentation/devicetree/bindings/gpio/socionext,uniphier-gpio.yaml
2952 F:      Documentation/devicetree/bindings/pinctrl/socionext,uniphier-pinctrl.yaml
2953 F:      arch/arm/boot/dts/uniphier*
2954 F:      arch/arm/include/asm/hardware/cache-uniphier.h
2955 F:      arch/arm/mach-uniphier/
2956 F:      arch/arm/mm/cache-uniphier.c
2957 F:      arch/arm64/boot/dts/socionext/uniphier*
2958 F:      drivers/bus/uniphier-system-bus.c
2959 F:      drivers/clk/uniphier/
2960 F:      drivers/dma/uniphier-mdmac.c
2961 F:      drivers/gpio/gpio-uniphier.c
2962 F:      drivers/i2c/busses/i2c-uniphier*
2963 F:      drivers/irqchip/irq-uniphier-aidet.c
2964 F:      drivers/mmc/host/uniphier-sd.c
2965 F:      drivers/pinctrl/uniphier/
2966 F:      drivers/reset/reset-uniphier.c
2967 F:      drivers/tty/serial/8250/8250_uniphier.c
2968 N:      uniphier
2969
2970 ARM/VERSATILE EXPRESS PLATFORM
2971 M:      Liviu Dudau <liviu.dudau@arm.com>
2972 M:      Sudeep Holla <sudeep.holla@arm.com>
2973 M:      Lorenzo Pieralisi <lpieralisi@kernel.org>
2974 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2975 S:      Maintained
2976 F:      */*/*/vexpress*
2977 F:      */*/vexpress*
2978 F:      arch/arm/boot/dts/vexpress*
2979 F:      arch/arm/mach-vexpress/
2980 F:      arch/arm64/boot/dts/arm/
2981 F:      drivers/clk/versatile/clk-vexpress-osc.c
2982 F:      drivers/clocksource/timer-versatile.c
2983 N:      mps2
2984
2985 ARM/VFP SUPPORT
2986 M:      Russell King <linux@armlinux.org.uk>
2987 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2988 S:      Maintained
2989 W:      http://www.armlinux.org.uk/
2990 F:      arch/arm/vfp/
2991
2992 ARM/VOIPAC PXA270 SUPPORT
2993 M:      Marek Vasut <marek.vasut@gmail.com>
2994 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2995 S:      Maintained
2996 F:      arch/arm/mach-pxa/include/mach/vpac270.h
2997 F:      arch/arm/mach-pxa/vpac270.c
2998
2999 ARM/VT8500 ARM ARCHITECTURE
3000 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3001 S:      Orphan
3002 F:      Documentation/devicetree/bindings/i2c/i2c-wmt.txt
3003 F:      arch/arm/mach-vt8500/
3004 F:      drivers/clocksource/timer-vt8500.c
3005 F:      drivers/i2c/busses/i2c-wmt.c
3006 F:      drivers/mmc/host/wmt-sdmmc.c
3007 F:      drivers/pwm/pwm-vt8500.c
3008 F:      drivers/rtc/rtc-vt8500.c
3009 F:      drivers/tty/serial/vt8500_serial.c
3010 F:      drivers/usb/host/ehci-platform.c
3011 F:      drivers/usb/host/uhci-platform.c
3012 F:      drivers/video/fbdev/vt8500lcdfb.*
3013 F:      drivers/video/fbdev/wm8505fb*
3014 F:      drivers/video/fbdev/wmt_ge_rops.*
3015
3016 ARM/ZIPIT Z2 SUPPORT
3017 M:      Marek Vasut <marek.vasut@gmail.com>
3018 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3019 S:      Maintained
3020 F:      arch/arm/mach-pxa/include/mach/z2.h
3021 F:      arch/arm/mach-pxa/z2.c
3022
3023 ARM/ZYNQ ARCHITECTURE
3024 M:      Michal Simek <michal.simek@xilinx.com>
3025 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3026 S:      Supported
3027 W:      http://wiki.xilinx.com
3028 T:      git https://github.com/Xilinx/linux-xlnx.git
3029 F:      Documentation/devicetree/bindings/i2c/cdns,i2c-r1p10.yaml
3030 F:      Documentation/devicetree/bindings/i2c/xlnx,xps-iic-2.00.a.yaml
3031 F:      Documentation/devicetree/bindings/spi/xlnx,zynq-qspi.yaml
3032 F:      arch/arm/mach-zynq/
3033 F:      drivers/clocksource/timer-cadence-ttc.c
3034 F:      drivers/cpuidle/cpuidle-zynq.c
3035 F:      drivers/edac/synopsys_edac.c
3036 F:      drivers/i2c/busses/i2c-cadence.c
3037 F:      drivers/i2c/busses/i2c-xiic.c
3038 F:      drivers/mmc/host/sdhci-of-arasan.c
3039 N:      zynq
3040 N:      xilinx
3041
3042 ARM64 PORT (AARCH64 ARCHITECTURE)
3043 M:      Catalin Marinas <catalin.marinas@arm.com>
3044 M:      Will Deacon <will@kernel.org>
3045 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3046 S:      Maintained
3047 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux.git
3048 F:      Documentation/arm64/
3049 F:      arch/arm64/
3050 F:      tools/testing/selftests/arm64/
3051 X:      arch/arm64/boot/dts/
3052
3053 ARROW SPEEDCHIPS XRS7000 SERIES ETHERNET SWITCH DRIVER
3054 M:      George McCollister <george.mccollister@gmail.com>
3055 L:      netdev@vger.kernel.org
3056 S:      Maintained
3057 F:      Documentation/devicetree/bindings/net/dsa/arrow,xrs700x.yaml
3058 F:      drivers/net/dsa/xrs700x/*
3059 F:      net/dsa/tag_xrs700x.c
3060
3061 AS3645A LED FLASH CONTROLLER DRIVER
3062 M:      Sakari Ailus <sakari.ailus@iki.fi>
3063 L:      linux-leds@vger.kernel.org
3064 S:      Maintained
3065 F:      drivers/leds/flash/leds-as3645a.c
3066
3067 ASAHI KASEI AK7375 LENS VOICE COIL DRIVER
3068 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
3069 L:      linux-media@vger.kernel.org
3070 S:      Maintained
3071 T:      git git://linuxtv.org/media_tree.git
3072 F:      Documentation/devicetree/bindings/media/i2c/ak7375.txt
3073 F:      drivers/media/i2c/ak7375.c
3074
3075 ASAHI KASEI AK8974 DRIVER
3076 M:      Linus Walleij <linus.walleij@linaro.org>
3077 L:      linux-iio@vger.kernel.org
3078 S:      Supported
3079 W:      http://www.akm.com/
3080 F:      drivers/iio/magnetometer/ak8974.c
3081
3082 ASC7621 HARDWARE MONITOR DRIVER
3083 M:      George Joseph <george.joseph@fairview5.com>
3084 L:      linux-hwmon@vger.kernel.org
3085 S:      Maintained
3086 F:      Documentation/hwmon/asc7621.rst
3087 F:      drivers/hwmon/asc7621.c
3088
3089 ASIX AX88796C SPI ETHERNET ADAPTER
3090 M:      Łukasz Stelmach <l.stelmach@samsung.com>
3091 S:      Maintained
3092 F:      Documentation/devicetree/bindings/net/asix,ax88796c.yaml
3093 F:      drivers/net/ethernet/asix/ax88796c_*
3094
3095 ASPEED PECI CONTROLLER
3096 M:      Iwona Winiarska <iwona.winiarska@intel.com>
3097 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
3098 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
3099 S:      Supported
3100 F:      Documentation/devicetree/bindings/peci/peci-aspeed.yaml
3101 F:      drivers/peci/controller/peci-aspeed.c
3102
3103 ASPEED PINCTRL DRIVERS
3104 M:      Andrew Jeffery <andrew@aj.id.au>
3105 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
3106 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
3107 L:      linux-gpio@vger.kernel.org
3108 S:      Maintained
3109 F:      Documentation/devicetree/bindings/pinctrl/aspeed,*
3110 F:      drivers/pinctrl/aspeed/
3111
3112 ASPEED SCU INTERRUPT CONTROLLER DRIVER
3113 M:      Eddie James <eajames@linux.ibm.com>
3114 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
3115 S:      Maintained
3116 F:      Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2xxx-scu-ic.txt
3117 F:      drivers/irqchip/irq-aspeed-scu-ic.c
3118 F:      include/dt-bindings/interrupt-controller/aspeed-scu-ic.h
3119
3120 ASPEED SD/MMC DRIVER
3121 M:      Andrew Jeffery <andrew@aj.id.au>
3122 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
3123 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
3124 L:      linux-mmc@vger.kernel.org
3125 S:      Maintained
3126 F:      Documentation/devicetree/bindings/mmc/aspeed,sdhci.yaml
3127 F:      drivers/mmc/host/sdhci-of-aspeed*
3128
3129 ASPEED SMC SPI DRIVER
3130 M:      Chin-Ting Kuo <chin-ting_kuo@aspeedtech.com>
3131 M:      Cédric Le Goater <clg@kaod.org>
3132 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
3133 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
3134 L:      linux-spi@vger.kernel.org
3135 S:      Maintained
3136 F:      Documentation/devicetree/bindings/spi/aspeed,ast2600-fmc.yaml
3137 F:      drivers/spi/spi-aspeed-smc.c
3138
3139 ASPEED VIDEO ENGINE DRIVER
3140 M:      Eddie James <eajames@linux.ibm.com>
3141 L:      linux-media@vger.kernel.org
3142 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
3143 S:      Maintained
3144 F:      Documentation/devicetree/bindings/media/aspeed-video.txt
3145 F:      drivers/media/platform/aspeed/
3146
3147 ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
3148 M:      Corentin Chary <corentin.chary@gmail.com>
3149 L:      acpi4asus-user@lists.sourceforge.net
3150 L:      platform-driver-x86@vger.kernel.org
3151 S:      Maintained
3152 W:      http://acpi4asus.sf.net
3153 F:      drivers/platform/x86/asus*.c
3154 F:      drivers/platform/x86/eeepc*.c
3155
3156 ASUS TF103C DOCK DRIVER
3157 M:      Hans de Goede <hdegoede@redhat.com>
3158 L:      platform-driver-x86@vger.kernel.org
3159 S:      Maintained
3160 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
3161 F:      drivers/platform/x86/asus-tf103c-dock.c
3162
3163 ASUS WMI HARDWARE MONITOR DRIVER
3164 M:      Ed Brindley <kernel@maidavale.org>
3165 M:      Denis Pauk <pauk.denis@gmail.com>
3166 L:      linux-hwmon@vger.kernel.org
3167 S:      Maintained
3168 F:      drivers/hwmon/asus_wmi_sensors.c
3169
3170 ASUS WMI EC HARDWARE MONITOR DRIVER
3171 M:      Eugene Shalygin <eugene.shalygin@gmail.com>
3172 M:      Denis Pauk <pauk.denis@gmail.com>
3173 L:      linux-hwmon@vger.kernel.org
3174 S:      Maintained
3175 F:      drivers/hwmon/asus_wmi_ec_sensors.c
3176
3177 ASUS EC HARDWARE MONITOR DRIVER
3178 M:      Eugene Shalygin <eugene.shalygin@gmail.com>
3179 L:      linux-hwmon@vger.kernel.org
3180 S:      Maintained
3181 F:      drivers/hwmon/asus-ec-sensors.c
3182
3183 ASUS WIRELESS RADIO CONTROL DRIVER
3184 M:      João Paulo Rechi Vita <jprvita@gmail.com>
3185 L:      platform-driver-x86@vger.kernel.org
3186 S:      Maintained
3187 F:      drivers/platform/x86/asus-wireless.c
3188
3189 ASYMMETRIC KEYS
3190 M:      David Howells <dhowells@redhat.com>
3191 L:      keyrings@vger.kernel.org
3192 S:      Maintained
3193 F:      Documentation/crypto/asymmetric-keys.rst
3194 F:      crypto/asymmetric_keys/
3195 F:      include/crypto/pkcs7.h
3196 F:      include/crypto/public_key.h
3197 F:      include/linux/verification.h
3198
3199 ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
3200 R:      Dan Williams <dan.j.williams@intel.com>
3201 S:      Odd fixes
3202 W:      http://sourceforge.net/projects/xscaleiop
3203 F:      Documentation/crypto/async-tx-api.rst
3204 F:      crypto/async_tx/
3205 F:      include/linux/async_tx.h
3206
3207 AT24 EEPROM DRIVER
3208 M:      Bartosz Golaszewski <brgl@bgdev.pl>
3209 L:      linux-i2c@vger.kernel.org
3210 S:      Maintained
3211 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux.git
3212 F:      Documentation/devicetree/bindings/eeprom/at24.yaml
3213 F:      drivers/misc/eeprom/at24.c
3214
3215 ATA OVER ETHERNET (AOE) DRIVER
3216 M:      "Justin Sanders" <justin@coraid.com>
3217 S:      Supported
3218 W:      http://www.openaoe.org/
3219 F:      Documentation/admin-guide/aoe/
3220 F:      drivers/block/aoe/
3221
3222 ATC260X PMIC MFD DRIVER
3223 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
3224 M:      Cristian Ciocaltea <cristian.ciocaltea@gmail.com>
3225 L:      linux-actions@lists.infradead.org
3226 S:      Maintained
3227 F:      Documentation/devicetree/bindings/mfd/actions,atc260x.yaml
3228 F:      drivers/input/misc/atc260x-onkey.c
3229 F:      drivers/mfd/atc260*
3230 F:      drivers/power/reset/atc260x-poweroff.c
3231 F:      drivers/regulator/atc260x-regulator.c
3232 F:      include/linux/mfd/atc260x/*
3233
3234 ATHEROS 71XX/9XXX GPIO DRIVER
3235 M:      Alban Bedel <albeu@free.fr>
3236 S:      Maintained
3237 W:      https://github.com/AlbanBedel/linux
3238 T:      git git://github.com/AlbanBedel/linux
3239 F:      Documentation/devicetree/bindings/gpio/gpio-ath79.txt
3240 F:      drivers/gpio/gpio-ath79.c
3241
3242 ATHEROS 71XX/9XXX USB PHY DRIVER
3243 M:      Alban Bedel <albeu@free.fr>
3244 S:      Maintained
3245 W:      https://github.com/AlbanBedel/linux
3246 T:      git git://github.com/AlbanBedel/linux
3247 F:      Documentation/devicetree/bindings/phy/phy-ath79-usb.txt
3248 F:      drivers/phy/qualcomm/phy-ath79-usb.c
3249
3250 ATHEROS ATH GENERIC UTILITIES
3251 M:      Kalle Valo <kvalo@kernel.org>
3252 L:      linux-wireless@vger.kernel.org
3253 S:      Supported
3254 F:      drivers/net/wireless/ath/*
3255
3256 ATHEROS ATH5K WIRELESS DRIVER
3257 M:      Jiri Slaby <jirislaby@kernel.org>
3258 M:      Nick Kossifidis <mickflemm@gmail.com>
3259 M:      Luis Chamberlain <mcgrof@kernel.org>
3260 L:      linux-wireless@vger.kernel.org
3261 S:      Maintained
3262 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath5k
3263 F:      drivers/net/wireless/ath/ath5k/
3264
3265 ATHEROS ATH6KL WIRELESS DRIVER
3266 L:      linux-wireless@vger.kernel.org
3267 S:      Orphan
3268 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath6kl
3269 F:      drivers/net/wireless/ath/ath6kl/
3270
3271 ATI_REMOTE2 DRIVER
3272 M:      Ville Syrjala <syrjala@sci.fi>
3273 S:      Maintained
3274 F:      drivers/input/misc/ati_remote2.c
3275
3276 ATK0110 HWMON DRIVER
3277 M:      Luca Tettamanti <kronos.it@gmail.com>
3278 L:      linux-hwmon@vger.kernel.org
3279 S:      Maintained
3280 F:      drivers/hwmon/asus_atk0110.c
3281
3282 ATLX ETHERNET DRIVERS
3283 M:      Chris Snook <chris.snook@gmail.com>
3284 L:      netdev@vger.kernel.org
3285 S:      Maintained
3286 W:      http://sourceforge.net/projects/atl1
3287 W:      http://atl1.sourceforge.net
3288 F:      drivers/net/ethernet/atheros/
3289
3290 ATM
3291 M:      Chas Williams <3chas3@gmail.com>
3292 L:      linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
3293 L:      netdev@vger.kernel.org
3294 S:      Maintained
3295 W:      http://linux-atm.sourceforge.net
3296 F:      drivers/atm/
3297 F:      include/linux/atm*
3298 F:      include/uapi/linux/atm*
3299
3300 ATMEL MACB ETHERNET DRIVER
3301 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
3302 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
3303 S:      Supported
3304 F:      drivers/net/ethernet/cadence/
3305
3306 ATMEL MAXTOUCH DRIVER
3307 M:      Nick Dyer <nick@shmanahar.org>
3308 S:      Maintained
3309 T:      git git://github.com/ndyer/linux.git
3310 F:      Documentation/devicetree/bindings/input/atmel,maxtouch.yaml
3311 F:      drivers/input/touchscreen/atmel_mxt_ts.c
3312
3313 ATMEL WIRELESS DRIVER
3314 M:      Simon Kelley <simon@thekelleys.org.uk>
3315 L:      linux-wireless@vger.kernel.org
3316 S:      Maintained
3317 W:      http://www.thekelleys.org.uk/atmel
3318 W:      http://atmelwlandriver.sourceforge.net/
3319 F:      drivers/net/wireless/atmel/atmel*
3320
3321 ATOMIC INFRASTRUCTURE
3322 M:      Will Deacon <will@kernel.org>
3323 M:      Peter Zijlstra <peterz@infradead.org>
3324 R:      Boqun Feng <boqun.feng@gmail.com>
3325 R:      Mark Rutland <mark.rutland@arm.com>
3326 L:      linux-kernel@vger.kernel.org
3327 S:      Maintained
3328 F:      arch/*/include/asm/atomic*.h
3329 F:      include/*/atomic*.h
3330 F:      include/linux/refcount.h
3331 F:      Documentation/atomic_*.txt
3332 F:      scripts/atomic/
3333
3334 ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER
3335 M:      Bradley Grove <linuxdrivers@attotech.com>
3336 L:      linux-scsi@vger.kernel.org
3337 S:      Supported
3338 W:      http://www.attotech.com
3339 F:      drivers/scsi/esas2r
3340
3341 ATUSB IEEE 802.15.4 RADIO DRIVER
3342 M:      Stefan Schmidt <stefan@datenfreihafen.org>
3343 L:      linux-wpan@vger.kernel.org
3344 S:      Maintained
3345 F:      drivers/net/ieee802154/at86rf230.h
3346 F:      drivers/net/ieee802154/atusb.c
3347 F:      drivers/net/ieee802154/atusb.h
3348
3349 AUDIT SUBSYSTEM
3350 M:      Paul Moore <paul@paul-moore.com>
3351 M:      Eric Paris <eparis@redhat.com>
3352 L:      linux-audit@redhat.com (moderated for non-subscribers)
3353 S:      Supported
3354 W:      https://github.com/linux-audit
3355 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/audit.git
3356 F:      include/asm-generic/audit_*.h
3357 F:      include/linux/audit.h
3358 F:      include/linux/audit_arch.h
3359 F:      include/uapi/linux/audit.h
3360 F:      kernel/audit*
3361 F:      lib/*audit.c
3362
3363 AUXILIARY DISPLAY DRIVERS
3364 M:      Miguel Ojeda <ojeda@kernel.org>
3365 S:      Maintained
3366 F:      Documentation/devicetree/bindings/auxdisplay/
3367 F:      drivers/auxdisplay/
3368 F:      include/linux/cfag12864b.h
3369
3370 AVIA HX711 ANALOG DIGITAL CONVERTER IIO DRIVER
3371 M:      Andreas Klinger <ak@it-klinger.de>
3372 L:      linux-iio@vger.kernel.org
3373 S:      Maintained
3374 F:      Documentation/devicetree/bindings/iio/adc/avia-hx711.yaml
3375 F:      drivers/iio/adc/hx711.c
3376
3377 AX.25 NETWORK LAYER
3378 M:      Ralf Baechle <ralf@linux-mips.org>
3379 L:      linux-hams@vger.kernel.org
3380 S:      Maintained
3381 W:      http://www.linux-ax25.org/
3382 F:      include/net/ax25.h
3383 F:      include/uapi/linux/ax25.h
3384 F:      net/ax25/
3385
3386 AXENTIA ARM DEVICES
3387 M:      Peter Rosin <peda@axentia.se>
3388 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3389 S:      Maintained
3390 F:      arch/arm/boot/dts/at91-linea.dtsi
3391 F:      arch/arm/boot/dts/at91-natte.dtsi
3392 F:      arch/arm/boot/dts/at91-nattis-2-natte-2.dts
3393 F:      arch/arm/boot/dts/at91-tse850-3.dts
3394
3395 AXENTIA ASOC DRIVERS
3396 M:      Peter Rosin <peda@axentia.se>
3397 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3398 S:      Maintained
3399 F:      Documentation/devicetree/bindings/sound/axentia,*
3400 F:      sound/soc/atmel/tse850-pcm5142.c
3401
3402 AXI-FAN-CONTROL HARDWARE MONITOR DRIVER
3403 M:      Nuno Sá <nuno.sa@analog.com>
3404 L:      linux-hwmon@vger.kernel.org
3405 S:      Supported
3406 W:      https://ez.analog.com/linux-software-drivers
3407 F:      Documentation/devicetree/bindings/hwmon/adi,axi-fan-control.yaml
3408 F:      drivers/hwmon/axi-fan-control.c
3409
3410 AXXIA I2C CONTROLLER
3411 M:      Krzysztof Adamski <krzysztof.adamski@nokia.com>
3412 L:      linux-i2c@vger.kernel.org
3413 S:      Maintained
3414 F:      Documentation/devicetree/bindings/i2c/i2c-axxia.txt
3415 F:      drivers/i2c/busses/i2c-axxia.c
3416
3417 AZ6007 DVB DRIVER
3418 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
3419 L:      linux-media@vger.kernel.org
3420 S:      Maintained
3421 W:      https://linuxtv.org
3422 T:      git git://linuxtv.org/media_tree.git
3423 F:      drivers/media/usb/dvb-usb-v2/az6007.c
3424
3425 AZTECH FM RADIO RECEIVER DRIVER
3426 M:      Hans Verkuil <hverkuil@xs4all.nl>
3427 L:      linux-media@vger.kernel.org
3428 S:      Maintained
3429 W:      https://linuxtv.org
3430 T:      git git://linuxtv.org/media_tree.git
3431 F:      drivers/media/radio/radio-aztech*
3432
3433 B43 WIRELESS DRIVER
3434 L:      linux-wireless@vger.kernel.org
3435 L:      b43-dev@lists.infradead.org
3436 S:      Odd Fixes
3437 W:      https://wireless.wiki.kernel.org/en/users/Drivers/b43
3438 F:      drivers/net/wireless/broadcom/b43/
3439
3440 B43LEGACY WIRELESS DRIVER
3441 M:      Larry Finger <Larry.Finger@lwfinger.net>
3442 L:      linux-wireless@vger.kernel.org
3443 L:      b43-dev@lists.infradead.org
3444 S:      Maintained
3445 W:      https://wireless.wiki.kernel.org/en/users/Drivers/b43
3446 F:      drivers/net/wireless/broadcom/b43legacy/
3447
3448 BACKLIGHT CLASS/SUBSYSTEM
3449 M:      Lee Jones <lee.jones@linaro.org>
3450 M:      Daniel Thompson <daniel.thompson@linaro.org>
3451 M:      Jingoo Han <jingoohan1@gmail.com>
3452 L:      dri-devel@lists.freedesktop.org
3453 S:      Maintained
3454 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/backlight.git
3455 F:      Documentation/ABI/stable/sysfs-class-backlight
3456 F:      Documentation/ABI/testing/sysfs-class-backlight
3457 F:      Documentation/devicetree/bindings/leds/backlight
3458 F:      drivers/video/backlight/
3459 F:      include/linux/backlight.h
3460 F:      include/linux/pwm_backlight.h
3461
3462 BARCO P50 GPIO DRIVER
3463 M:      Santosh Kumar Yadav <santoshkumar.yadav@barco.com>
3464 M:      Peter Korsgaard <peter.korsgaard@barco.com>
3465 S:      Maintained
3466 F:      drivers/platform/x86/barco-p50-gpio.c
3467
3468 BATMAN ADVANCED
3469 M:      Marek Lindner <mareklindner@neomailbox.ch>
3470 M:      Simon Wunderlich <sw@simonwunderlich.de>
3471 M:      Antonio Quartulli <a@unstable.cc>
3472 M:      Sven Eckelmann <sven@narfation.org>
3473 L:      b.a.t.m.a.n@lists.open-mesh.org (moderated for non-subscribers)
3474 S:      Maintained
3475 W:      https://www.open-mesh.org/
3476 Q:      https://patchwork.open-mesh.org/project/batman/list/
3477 B:      https://www.open-mesh.org/projects/batman-adv/issues
3478 C:      ircs://irc.hackint.org/batadv
3479 T:      git https://git.open-mesh.org/linux-merge.git
3480 F:      Documentation/networking/batman-adv.rst
3481 F:      include/uapi/linux/batadv_packet.h
3482 F:      include/uapi/linux/batman_adv.h
3483 F:      net/batman-adv/
3484
3485 BAYCOM/HDLCDRV DRIVERS FOR AX.25
3486 M:      Thomas Sailer <t.sailer@alumni.ethz.ch>
3487 L:      linux-hams@vger.kernel.org
3488 S:      Maintained
3489 W:      http://www.baycom.org/~tom/ham/ham.html
3490 F:      drivers/net/hamradio/baycom*
3491
3492 BCACHE (BLOCK LAYER CACHE)
3493 M:      Coly Li <colyli@suse.de>
3494 M:      Kent Overstreet <kent.overstreet@gmail.com>
3495 L:      linux-bcache@vger.kernel.org
3496 S:      Maintained
3497 W:      http://bcache.evilpiepirate.org
3498 C:      irc://irc.oftc.net/bcache
3499 F:      drivers/md/bcache/
3500
3501 BDISP ST MEDIA DRIVER
3502 M:      Fabien Dessenne <fabien.dessenne@foss.st.com>
3503 L:      linux-media@vger.kernel.org
3504 S:      Supported
3505 W:      https://linuxtv.org
3506 T:      git git://linuxtv.org/media_tree.git
3507 F:      drivers/media/platform/st/sti/bdisp
3508
3509 BECKHOFF CX5020 ETHERCAT MASTER DRIVER
3510 M:      Dariusz Marcinkiewicz <reksio@newterm.pl>
3511 L:      netdev@vger.kernel.org
3512 S:      Maintained
3513 F:      drivers/net/ethernet/ec_bhf.c
3514
3515 BEFS FILE SYSTEM
3516 M:      Luis de Bethencourt <luisbg@kernel.org>
3517 M:      Salah Triki <salah.triki@gmail.com>
3518 S:      Maintained
3519 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luisbg/linux-befs.git
3520 F:      Documentation/filesystems/befs.rst
3521 F:      fs/befs/
3522
3523 BFQ I/O SCHEDULER
3524 M:      Paolo Valente <paolo.valente@linaro.org>
3525 M:      Jens Axboe <axboe@kernel.dk>
3526 L:      linux-block@vger.kernel.org
3527 S:      Maintained
3528 F:      Documentation/block/bfq-iosched.rst
3529 F:      block/bfq-*
3530
3531 BFS FILE SYSTEM
3532 M:      "Tigran A. Aivazian" <aivazian.tigran@gmail.com>
3533 S:      Maintained
3534 F:      Documentation/filesystems/bfs.rst
3535 F:      fs/bfs/
3536 F:      include/uapi/linux/bfs_fs.h
3537
3538 BITMAP API
3539 M:      Yury Norov <yury.norov@gmail.com>
3540 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
3541 R:      Rasmus Villemoes <linux@rasmusvillemoes.dk>
3542 S:      Maintained
3543 F:      include/linux/bitmap.h
3544 F:      include/linux/cpumask.h
3545 F:      include/linux/find.h
3546 F:      include/linux/nodemask.h
3547 F:      lib/bitmap.c
3548 F:      lib/cpumask.c
3549 F:      lib/find_bit.c
3550 F:      lib/find_bit_benchmark.c
3551 F:      lib/nodemask.c
3552 F:      lib/test_bitmap.c
3553 F:      tools/include/linux/bitmap.h
3554 F:      tools/include/linux/find.h
3555 F:      tools/lib/bitmap.c
3556 F:      tools/lib/find_bit.c
3557
3558 BLINKM RGB LED DRIVER
3559 M:      Jan-Simon Moeller <jansimon.moeller@gmx.de>
3560 S:      Maintained
3561 F:      drivers/leds/leds-blinkm.c
3562
3563 BLOCK LAYER
3564 M:      Jens Axboe <axboe@kernel.dk>
3565 L:      linux-block@vger.kernel.org
3566 S:      Maintained
3567 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
3568 F:      Documentation/ABI/stable/sysfs-block
3569 F:      Documentation/block/
3570 F:      block/
3571 F:      drivers/block/
3572 F:      include/linux/bio.h
3573 F:      include/linux/blk*
3574 F:      kernel/trace/blktrace.c
3575 F:      lib/sbitmap.c
3576
3577 BLOCK2MTD DRIVER
3578 M:      Joern Engel <joern@lazybastard.org>
3579 L:      linux-mtd@lists.infradead.org
3580 S:      Maintained
3581 F:      drivers/mtd/devices/block2mtd.c
3582
3583 BLUETOOTH DRIVERS
3584 M:      Marcel Holtmann <marcel@holtmann.org>
3585 M:      Johan Hedberg <johan.hedberg@gmail.com>
3586 M:      Luiz Augusto von Dentz <luiz.dentz@gmail.com>
3587 L:      linux-bluetooth@vger.kernel.org
3588 S:      Supported
3589 W:      http://www.bluez.org/
3590 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3591 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3592 F:      drivers/bluetooth/
3593
3594 BLUETOOTH SUBSYSTEM
3595 M:      Marcel Holtmann <marcel@holtmann.org>
3596 M:      Johan Hedberg <johan.hedberg@gmail.com>
3597 M:      Luiz Augusto von Dentz <luiz.dentz@gmail.com>
3598 L:      linux-bluetooth@vger.kernel.org
3599 S:      Supported
3600 W:      http://www.bluez.org/
3601 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3602 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3603 F:      include/net/bluetooth/
3604 F:      net/bluetooth/
3605
3606 BONDING DRIVER
3607 M:      Jay Vosburgh <j.vosburgh@gmail.com>
3608 M:      Veaceslav Falico <vfalico@gmail.com>
3609 M:      Andy Gospodarek <andy@greyhouse.net>
3610 L:      netdev@vger.kernel.org
3611 S:      Supported
3612 W:      http://sourceforge.net/projects/bonding/
3613 F:      Documentation/networking/bonding.rst
3614 F:      drivers/net/bonding/
3615 F:      include/net/bond*
3616 F:      include/uapi/linux/if_bonding.h
3617
3618 BOSCH SENSORTEC BMA400 ACCELEROMETER IIO DRIVER
3619 M:      Dan Robertson <dan@dlrobertson.com>
3620 L:      linux-iio@vger.kernel.org
3621 S:      Maintained
3622 F:      Documentation/devicetree/bindings/iio/accel/bosch,bma400.yaml
3623 F:      drivers/iio/accel/bma400*
3624
3625 BPF (Safe dynamic programs and tools)
3626 M:      Alexei Starovoitov <ast@kernel.org>
3627 M:      Daniel Borkmann <daniel@iogearbox.net>
3628 M:      Andrii Nakryiko <andrii@kernel.org>
3629 R:      Martin KaFai Lau <kafai@fb.com>
3630 R:      Song Liu <songliubraving@fb.com>
3631 R:      Yonghong Song <yhs@fb.com>
3632 R:      John Fastabend <john.fastabend@gmail.com>
3633 R:      KP Singh <kpsingh@kernel.org>
3634 L:      netdev@vger.kernel.org
3635 L:      bpf@vger.kernel.org
3636 S:      Supported
3637 W:      https://bpf.io/
3638 Q:      https://patchwork.kernel.org/project/netdevbpf/list/?delegate=121173
3639 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf.git
3640 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-next.git
3641 F:      Documentation/bpf/
3642 F:      Documentation/networking/filter.rst
3643 F:      Documentation/userspace-api/ebpf/
3644 F:      arch/*/net/*
3645 F:      include/linux/bpf*
3646 F:      include/linux/btf*
3647 F:      include/linux/filter.h
3648 F:      include/trace/events/xdp.h
3649 F:      include/uapi/linux/bpf*
3650 F:      include/uapi/linux/btf*
3651 F:      include/uapi/linux/filter.h
3652 F:      kernel/bpf/
3653 F:      kernel/trace/bpf_trace.c
3654 F:      lib/test_bpf.c
3655 F:      net/bpf/
3656 F:      net/core/filter.c
3657 F:      net/sched/act_bpf.c
3658 F:      net/sched/cls_bpf.c
3659 F:      samples/bpf/
3660 F:      scripts/bpf_doc.py
3661 F:      scripts/pahole-flags.sh
3662 F:      scripts/pahole-version.sh
3663 F:      tools/bpf/
3664 F:      tools/lib/bpf/
3665 F:      tools/testing/selftests/bpf/
3666 N:      bpf
3667 K:      bpf
3668
3669 BPF JIT for ARM
3670 M:      Shubham Bansal <illusionist.neo@gmail.com>
3671 L:      netdev@vger.kernel.org
3672 L:      bpf@vger.kernel.org
3673 S:      Maintained
3674 F:      arch/arm/net/
3675
3676 BPF JIT for ARM64
3677 M:      Daniel Borkmann <daniel@iogearbox.net>
3678 M:      Alexei Starovoitov <ast@kernel.org>
3679 M:      Zi Shen Lim <zlim.lnx@gmail.com>
3680 L:      netdev@vger.kernel.org
3681 L:      bpf@vger.kernel.org
3682 S:      Supported
3683 F:      arch/arm64/net/
3684
3685 BPF JIT for MIPS (32-BIT AND 64-BIT)
3686 M:      Johan Almbladh <johan.almbladh@anyfinetworks.com>
3687 M:      Paul Burton <paulburton@kernel.org>
3688 L:      netdev@vger.kernel.org
3689 L:      bpf@vger.kernel.org
3690 S:      Maintained
3691 F:      arch/mips/net/
3692
3693 BPF JIT for NFP NICs
3694 M:      Jakub Kicinski <kuba@kernel.org>
3695 L:      netdev@vger.kernel.org
3696 L:      bpf@vger.kernel.org
3697 S:      Supported
3698 F:      drivers/net/ethernet/netronome/nfp/bpf/
3699
3700 BPF JIT for POWERPC (32-BIT AND 64-BIT)
3701 M:      Naveen N. Rao <naveen.n.rao@linux.ibm.com>
3702 L:      netdev@vger.kernel.org
3703 L:      bpf@vger.kernel.org
3704 S:      Maintained
3705 F:      arch/powerpc/net/
3706
3707 BPF JIT for RISC-V (32-bit)
3708 M:      Luke Nelson <luke.r.nels@gmail.com>
3709 M:      Xi Wang <xi.wang@gmail.com>
3710 L:      netdev@vger.kernel.org
3711 L:      bpf@vger.kernel.org
3712 S:      Maintained
3713 F:      arch/riscv/net/
3714 X:      arch/riscv/net/bpf_jit_comp64.c
3715
3716 BPF JIT for RISC-V (64-bit)
3717 M:      Björn Töpel <bjorn@kernel.org>
3718 L:      netdev@vger.kernel.org
3719 L:      bpf@vger.kernel.org
3720 S:      Maintained
3721 F:      arch/riscv/net/
3722 X:      arch/riscv/net/bpf_jit_comp32.c
3723
3724 BPF JIT for S390
3725 M:      Ilya Leoshkevich <iii@linux.ibm.com>
3726 M:      Heiko Carstens <hca@linux.ibm.com>
3727 M:      Vasily Gorbik <gor@linux.ibm.com>
3728 L:      netdev@vger.kernel.org
3729 L:      bpf@vger.kernel.org
3730 S:      Maintained
3731 F:      arch/s390/net/
3732 X:      arch/s390/net/pnet.c
3733
3734 BPF JIT for SPARC (32-BIT AND 64-BIT)
3735 M:      David S. Miller <davem@davemloft.net>
3736 L:      netdev@vger.kernel.org
3737 L:      bpf@vger.kernel.org
3738 S:      Maintained
3739 F:      arch/sparc/net/
3740
3741 BPF JIT for X86 32-BIT
3742 M:      Wang YanQing <udknight@gmail.com>
3743 L:      netdev@vger.kernel.org
3744 L:      bpf@vger.kernel.org
3745 S:      Maintained
3746 F:      arch/x86/net/bpf_jit_comp32.c
3747
3748 BPF JIT for X86 64-BIT
3749 M:      Alexei Starovoitov <ast@kernel.org>
3750 M:      Daniel Borkmann <daniel@iogearbox.net>
3751 L:      netdev@vger.kernel.org
3752 L:      bpf@vger.kernel.org
3753 S:      Supported
3754 F:      arch/x86/net/
3755 X:      arch/x86/net/bpf_jit_comp32.c
3756
3757 BPF LSM (Security Audit and Enforcement using BPF)
3758 M:      KP Singh <kpsingh@kernel.org>
3759 R:      Florent Revest <revest@chromium.org>
3760 R:      Brendan Jackman <jackmanb@chromium.org>
3761 L:      bpf@vger.kernel.org
3762 S:      Maintained
3763 F:      Documentation/bpf/prog_lsm.rst
3764 F:      include/linux/bpf_lsm.h
3765 F:      kernel/bpf/bpf_lsm.c
3766 F:      security/bpf/
3767
3768 BPFTOOL
3769 M:      Quentin Monnet <quentin@isovalent.com>
3770 L:      bpf@vger.kernel.org
3771 S:      Maintained
3772 F:      kernel/bpf/disasm.*
3773 F:      tools/bpf/bpftool/
3774
3775 BROADCOM B44 10/100 ETHERNET DRIVER
3776 M:      Michael Chan <michael.chan@broadcom.com>
3777 L:      netdev@vger.kernel.org
3778 S:      Supported
3779 F:      drivers/net/ethernet/broadcom/b44.*
3780
3781 BROADCOM B53/SF2 ETHERNET SWITCH DRIVER
3782 M:      Florian Fainelli <f.fainelli@gmail.com>
3783 L:      netdev@vger.kernel.org
3784 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
3785 S:      Supported
3786 F:      Documentation/devicetree/bindings/net/dsa/brcm,b53.yaml
3787 F:      drivers/net/dsa/b53/*
3788 F:      drivers/net/dsa/bcm_sf2*
3789 F:      include/linux/dsa/brcm.h
3790 F:      include/linux/platform_data/b53.h
3791
3792 BROADCOM BCMBCA ARM ARCHITECTURE
3793 M:      William Zhang <william.zhang@broadcom.com>
3794 M:      Anand Gore <anand.gore@broadcom.com>
3795 M:      Kursad Oney <kursad.oney@broadcom.com>
3796 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
3797 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3798 S:      Maintained
3799 T:      git git://github.com/broadcom/stblinux.git
3800 F:      Documentation/devicetree/bindings/arm/bcm/brcm,bcmbca.yaml
3801 F:      arch/arm/boot/dts/bcm47622.dtsi
3802 F:      arch/arm/boot/dts/bcm947622.dts
3803 N:      bcmbca
3804 N:      bcm[9]?47622
3805
3806 BROADCOM BCM2711/BCM2835 ARM ARCHITECTURE
3807 M:      Nicolas Saenz Julienne <nsaenz@kernel.org>
3808 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
3809 L:      linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
3810 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3811 S:      Maintained
3812 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nsaenz/linux-rpi.git
3813 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3814 F:      drivers/pci/controller/pcie-brcmstb.c
3815 F:      drivers/staging/vc04_services
3816 N:      bcm2711
3817 N:      bcm283*
3818 N:      raspberrypi
3819
3820 BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE
3821 M:      Florian Fainelli <f.fainelli@gmail.com>
3822 M:      Ray Jui <rjui@broadcom.com>
3823 M:      Scott Branden <sbranden@broadcom.com>
3824 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
3825 S:      Maintained
3826 T:      git git://github.com/broadcom/mach-bcm
3827 F:      arch/arm/mach-bcm/
3828 N:      bcm281*
3829 N:      bcm113*
3830 N:      bcm216*
3831 N:      kona
3832
3833 BROADCOM BCM47XX MIPS ARCHITECTURE
3834 M:      Hauke Mehrtens <hauke@hauke-m.de>
3835 M:      Rafał Miłecki <zajec5@gmail.com>
3836 L:      linux-mips@vger.kernel.org
3837 S:      Maintained
3838 F:      Documentation/devicetree/bindings/mips/brcm/
3839 F:      arch/mips/bcm47xx/*
3840 F:      arch/mips/include/asm/mach-bcm47xx/*
3841
3842 BROADCOM BCM4908 ETHERNET DRIVER
3843 M:      Rafał Miłecki <rafal@milecki.pl>
3844 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
3845 L:      netdev@vger.kernel.org
3846 S:      Maintained
3847 F:      Documentation/devicetree/bindings/net/brcm,bcm4908-enet.yaml
3848 F:      drivers/net/ethernet/broadcom/bcm4908_enet.*
3849 F:      drivers/net/ethernet/broadcom/unimac.h
3850
3851 BROADCOM BCM4908 PINMUX DRIVER
3852 M:      Rafał Miłecki <rafal@milecki.pl>
3853 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
3854 L:      linux-gpio@vger.kernel.org
3855 S:      Maintained
3856 F:      Documentation/devicetree/bindings/pinctrl/brcm,bcm4908-pinctrl.yaml
3857 F:      drivers/pinctrl/bcm/pinctrl-bcm4908.c
3858
3859 BROADCOM BCM5301X ARM ARCHITECTURE
3860 M:      Florian Fainelli <f.fainelli@gmail.com>
3861 M:      Hauke Mehrtens <hauke@hauke-m.de>
3862 M:      Rafał Miłecki <zajec5@gmail.com>
3863 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
3864 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3865 S:      Maintained
3866 F:      arch/arm/boot/dts/bcm470*
3867 F:      arch/arm/boot/dts/bcm5301*
3868 F:      arch/arm/boot/dts/bcm953012*
3869 F:      arch/arm/mach-bcm/bcm_5301x.c
3870
3871 BROADCOM BCM53573 ARM ARCHITECTURE
3872 M:      Florian Fainelli <f.fainelli@gmail.com>
3873 M:      Rafał Miłecki <rafal@milecki.pl>
3874 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
3875 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3876 S:      Maintained
3877 F:      arch/arm/boot/dts/bcm47189*
3878 F:      arch/arm/boot/dts/bcm53573*
3879
3880 BROADCOM BCM63XX ARM ARCHITECTURE
3881 M:      Florian Fainelli <f.fainelli@gmail.com>
3882 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
3883 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3884 S:      Maintained
3885 T:      git git://github.com/broadcom/stblinux.git
3886 N:      bcm63xx
3887
3888 BROADCOM BCM63XX/BCM33XX UDC DRIVER
3889 M:      Kevin Cernekee <cernekee@gmail.com>
3890 L:      linux-usb@vger.kernel.org
3891 S:      Maintained
3892 F:      drivers/usb/gadget/udc/bcm63xx_udc.*
3893
3894 BROADCOM BCM7XXX ARM ARCHITECTURE
3895 M:      Florian Fainelli <f.fainelli@gmail.com>
3896 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
3897 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3898 S:      Maintained
3899 T:      git git://github.com/broadcom/stblinux.git
3900 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3901 F:      arch/arm/boot/dts/bcm7*.dts*
3902 F:      arch/arm/include/asm/hardware/cache-b15-rac.h
3903 F:      arch/arm/mach-bcm/*brcmstb*
3904 F:      arch/arm/mm/cache-b15-rac.c
3905 F:      drivers/bus/brcmstb_gisb.c
3906 F:      drivers/pci/controller/pcie-brcmstb.c
3907 N:      brcmstb
3908 N:      bcm7038
3909 N:      bcm7120
3910
3911 BROADCOM BDC DRIVER
3912 M:      Al Cooper <alcooperx@gmail.com>
3913 L:      linux-usb@vger.kernel.org
3914 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
3915 S:      Maintained
3916 F:      Documentation/devicetree/bindings/usb/brcm,bdc.yaml
3917 F:      drivers/usb/gadget/udc/bdc/
3918
3919 BROADCOM BMIPS CPUFREQ DRIVER
3920 M:      Markus Mayer <mmayer@broadcom.com>
3921 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
3922 L:      linux-pm@vger.kernel.org
3923 S:      Maintained
3924 F:      drivers/cpufreq/bmips-cpufreq.c
3925
3926 BROADCOM BMIPS MIPS ARCHITECTURE
3927 M:      Florian Fainelli <f.fainelli@gmail.com>
3928 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
3929 L:      linux-mips@vger.kernel.org
3930 S:      Maintained
3931 T:      git git://github.com/broadcom/stblinux.git
3932 F:      arch/mips/bmips/*
3933 F:      arch/mips/boot/dts/brcm/bcm*.dts*
3934 F:      arch/mips/include/asm/mach-bmips/*
3935 F:      arch/mips/kernel/*bmips*
3936 F:      drivers/soc/bcm/bcm63xx
3937 F:      drivers/irqchip/irq-bcm63*
3938 F:      drivers/irqchip/irq-bcm7*
3939 F:      drivers/irqchip/irq-brcmstb*
3940 F:      include/linux/bcm963xx_nvram.h
3941 F:      include/linux/bcm963xx_tag.h
3942
3943 BROADCOM BNX2 GIGABIT ETHERNET DRIVER
3944 M:      Rasesh Mody <rmody@marvell.com>
3945 M:      GR-Linux-NIC-Dev@marvell.com
3946 L:      netdev@vger.kernel.org
3947 S:      Supported
3948 F:      drivers/net/ethernet/broadcom/bnx2.*
3949 F:      drivers/net/ethernet/broadcom/bnx2_*
3950
3951 BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
3952 M:      Saurav Kashyap <skashyap@marvell.com>
3953 M:      Javed Hasan <jhasan@marvell.com>
3954 M:      GR-QLogic-Storage-Upstream@marvell.com
3955 L:      linux-scsi@vger.kernel.org
3956 S:      Supported
3957 F:      drivers/scsi/bnx2fc/
3958
3959 BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER
3960 M:      Nilesh Javali <njavali@marvell.com>
3961 M:      Manish Rangankar <mrangankar@marvell.com>
3962 M:      GR-QLogic-Storage-Upstream@marvell.com
3963 L:      linux-scsi@vger.kernel.org
3964 S:      Supported
3965 F:      drivers/scsi/bnx2i/
3966
3967 BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
3968 M:      Ariel Elior <aelior@marvell.com>
3969 M:      Sudarsana Kalluru <skalluru@marvell.com>
3970 M:      Manish Chopra <manishc@marvell.com>
3971 L:      netdev@vger.kernel.org
3972 S:      Supported
3973 F:      drivers/net/ethernet/broadcom/bnx2x/
3974
3975 BROADCOM BNXT_EN 50 GIGABIT ETHERNET DRIVER
3976 M:      Michael Chan <michael.chan@broadcom.com>
3977 L:      netdev@vger.kernel.org
3978 S:      Supported
3979 F:      drivers/firmware/broadcom/tee_bnxt_fw.c
3980 F:      drivers/net/ethernet/broadcom/bnxt/
3981 F:      include/linux/firmware/broadcom/tee_bnxt_fw.h
3982
3983 BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
3984 M:      Arend van Spriel <aspriel@gmail.com>
3985 M:      Franky Lin <franky.lin@broadcom.com>
3986 M:      Hante Meuleman <hante.meuleman@broadcom.com>
3987 L:      linux-wireless@vger.kernel.org
3988 L:      brcm80211-dev-list.pdl@broadcom.com
3989 L:      SHA-cyfmac-dev-list@infineon.com
3990 S:      Supported
3991 F:      drivers/net/wireless/broadcom/brcm80211/
3992
3993 BROADCOM BRCMSTB GPIO DRIVER
3994 M:      Doug Berger <opendmb@gmail.com>
3995 M:      Florian Fainelli <f.fainelli@gmail.com>
3996 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
3997 S:      Supported
3998 F:      Documentation/devicetree/bindings/gpio/brcm,brcmstb-gpio.yaml
3999 F:      drivers/gpio/gpio-brcmstb.c
4000
4001 BROADCOM BRCMSTB I2C DRIVER
4002 M:      Kamal Dasu <kdasu.kdev@gmail.com>
4003 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4004 L:      linux-i2c@vger.kernel.org
4005 S:      Supported
4006 F:      Documentation/devicetree/bindings/i2c/brcm,brcmstb-i2c.yaml
4007 F:      drivers/i2c/busses/i2c-brcmstb.c
4008
4009 BROADCOM BRCMSTB UART DRIVER
4010 M:      Al Cooper <alcooperx@gmail.com>
4011 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4012 L:      linux-serial@vger.kernel.org
4013 S:      Maintained
4014 F:      Documentation/devicetree/bindings/serial/brcm,bcm7271-uart.yaml
4015 F:      drivers/tty/serial/8250/8250_bcm7271.c
4016
4017 BROADCOM BRCMSTB USB EHCI DRIVER
4018 M:      Al Cooper <alcooperx@gmail.com>
4019 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4020 L:      linux-usb@vger.kernel.org
4021 S:      Maintained
4022 F:      Documentation/devicetree/bindings/usb/brcm,bcm7445-ehci.yaml
4023 F:      drivers/usb/host/ehci-brcm.*
4024
4025 BROADCOM BRCMSTB USB PIN MAP DRIVER
4026 M:      Al Cooper <alcooperx@gmail.com>
4027 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4028 L:      linux-usb@vger.kernel.org
4029 S:      Maintained
4030 F:      Documentation/devicetree/bindings/usb/brcm,usb-pinmap.yaml
4031 F:      drivers/usb/misc/brcmstb-usb-pinmap.c
4032
4033 BROADCOM BRCMSTB USB2 and USB3 PHY DRIVER
4034 M:      Al Cooper <alcooperx@gmail.com>
4035 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4036 L:      linux-kernel@vger.kernel.org
4037 S:      Maintained
4038 F:      drivers/phy/broadcom/phy-brcm-usb*
4039
4040 BROADCOM ETHERNET PHY DRIVERS
4041 M:      Florian Fainelli <f.fainelli@gmail.com>
4042 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4043 L:      netdev@vger.kernel.org
4044 S:      Supported
4045 F:      Documentation/devicetree/bindings/net/broadcom-bcm87xx.txt
4046 F:      drivers/net/phy/bcm*.[ch]
4047 F:      drivers/net/phy/broadcom.c
4048 F:      include/linux/brcmphy.h
4049
4050 BROADCOM GENET ETHERNET DRIVER
4051 M:      Doug Berger <opendmb@gmail.com>
4052 M:      Florian Fainelli <f.fainelli@gmail.com>
4053 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4054 L:      netdev@vger.kernel.org
4055 S:      Supported
4056 F:      Documentation/devicetree/bindings/net/brcm,bcmgenet.yaml
4057 F:      Documentation/devicetree/bindings/net/brcm,unimac-mdio.yaml
4058 F:      drivers/net/ethernet/broadcom/genet/
4059 F:      drivers/net/ethernet/broadcom/unimac.h
4060 F:      drivers/net/mdio/mdio-bcm-unimac.c
4061 F:      include/linux/platform_data/bcmgenet.h
4062 F:      include/linux/platform_data/mdio-bcm-unimac.h
4063
4064 BROADCOM IPROC ARM ARCHITECTURE
4065 M:      Ray Jui <rjui@broadcom.com>
4066 M:      Scott Branden <sbranden@broadcom.com>
4067 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4068 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4069 S:      Maintained
4070 T:      git git://github.com/broadcom/stblinux.git
4071 F:      arch/arm64/boot/dts/broadcom/northstar2/*
4072 F:      arch/arm64/boot/dts/broadcom/stingray/*
4073 F:      drivers/clk/bcm/clk-ns*
4074 F:      drivers/clk/bcm/clk-sr*
4075 F:      drivers/pinctrl/bcm/pinctrl-ns*
4076 F:      include/dt-bindings/clock/bcm-sr*
4077 N:      iproc
4078 N:      cygnus
4079 N:      bcm[-_]nsp
4080 N:      bcm9113*
4081 N:      bcm9583*
4082 N:      bcm9585*
4083 N:      bcm9586*
4084 N:      bcm988312
4085 N:      bcm113*
4086 N:      bcm583*
4087 N:      bcm585*
4088 N:      bcm586*
4089 N:      bcm88312
4090 N:      hr2
4091 N:      stingray
4092
4093 BROADCOM IPROC GBIT ETHERNET DRIVER
4094 M:      Rafał Miłecki <rafal@milecki.pl>
4095 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4096 L:      netdev@vger.kernel.org
4097 S:      Maintained
4098 F:      Documentation/devicetree/bindings/net/brcm,amac.yaml
4099 F:      drivers/net/ethernet/broadcom/bgmac*
4100 F:      drivers/net/ethernet/broadcom/unimac.h
4101
4102 BROADCOM KONA GPIO DRIVER
4103 M:      Ray Jui <rjui@broadcom.com>
4104 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4105 S:      Supported
4106 F:      Documentation/devicetree/bindings/gpio/brcm,kona-gpio.txt
4107 F:      drivers/gpio/gpio-bcm-kona.c
4108
4109 BROADCOM MPI3 STORAGE CONTROLLER DRIVER
4110 M:      Sathya Prakash Veerichetty <sathya.prakash@broadcom.com>
4111 M:      Kashyap Desai <kashyap.desai@broadcom.com>
4112 M:      Sumit Saxena <sumit.saxena@broadcom.com>
4113 M:      Sreekanth Reddy <sreekanth.reddy@broadcom.com>
4114 L:      mpi3mr-linuxdrv.pdl@broadcom.com
4115 L:      linux-scsi@vger.kernel.org
4116 S:      Supported
4117 W:      https://www.broadcom.com/support/storage
4118 F:      drivers/scsi/mpi3mr/
4119
4120 BROADCOM NETXTREME-E ROCE DRIVER
4121 M:      Selvin Xavier <selvin.xavier@broadcom.com>
4122 L:      linux-rdma@vger.kernel.org
4123 S:      Supported
4124 W:      http://www.broadcom.com
4125 F:      drivers/infiniband/hw/bnxt_re/
4126 F:      include/uapi/rdma/bnxt_re-abi.h
4127
4128 BROADCOM NVRAM DRIVER
4129 M:      Rafał Miłecki <zajec5@gmail.com>
4130 L:      linux-mips@vger.kernel.org
4131 S:      Maintained
4132 F:      drivers/firmware/broadcom/*
4133
4134 BROADCOM PMB (POWER MANAGEMENT BUS) DRIVER
4135 M:      Rafał Miłecki <rafal@milecki.pl>
4136 M:      Florian Fainelli <f.fainelli@gmail.com>
4137 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4138 L:      linux-pm@vger.kernel.org
4139 S:      Maintained
4140 T:      git git://github.com/broadcom/stblinux.git
4141 F:      drivers/soc/bcm/bcm63xx/bcm-pmb.c
4142 F:      include/dt-bindings/soc/bcm-pmb.h
4143
4144 BROADCOM SPECIFIC AMBA DRIVER (BCMA)
4145 M:      Rafał Miłecki <zajec5@gmail.com>
4146 L:      linux-wireless@vger.kernel.org
4147 S:      Maintained
4148 F:      drivers/bcma/
4149 F:      include/linux/bcma/
4150
4151 BROADCOM SPI DRIVER
4152 M:      Kamal Dasu <kdasu.kdev@gmail.com>
4153 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4154 S:      Maintained
4155 F:      Documentation/devicetree/bindings/spi/brcm,spi-bcm-qspi.yaml
4156 F:      drivers/spi/spi-bcm-qspi.*
4157 F:      drivers/spi/spi-brcmstb-qspi.c
4158 F:      drivers/spi/spi-iproc-qspi.c
4159
4160 BROADCOM STB AVS CPUFREQ DRIVER
4161 M:      Markus Mayer <mmayer@broadcom.com>
4162 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4163 L:      linux-pm@vger.kernel.org
4164 S:      Maintained
4165 F:      Documentation/devicetree/bindings/cpufreq/brcm,stb-avs-cpu-freq.txt
4166 F:      drivers/cpufreq/brcmstb*
4167
4168 BROADCOM STB AVS TMON DRIVER
4169 M:      Markus Mayer <mmayer@broadcom.com>
4170 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4171 L:      linux-pm@vger.kernel.org
4172 S:      Maintained
4173 F:      Documentation/devicetree/bindings/thermal/brcm,avs-tmon.yaml
4174 F:      drivers/thermal/broadcom/brcmstb*
4175
4176 BROADCOM STB DPFE DRIVER
4177 M:      Markus Mayer <mmayer@broadcom.com>
4178 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4179 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4180 S:      Maintained
4181 F:      Documentation/devicetree/bindings/memory-controllers/brcm,dpfe-cpu.yaml
4182 F:      drivers/memory/brcmstb_dpfe.c
4183
4184 BROADCOM STB NAND FLASH DRIVER
4185 M:      Brian Norris <computersforpeace@gmail.com>
4186 M:      Kamal Dasu <kdasu.kdev@gmail.com>
4187 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4188 L:      linux-mtd@lists.infradead.org
4189 S:      Maintained
4190 F:      drivers/mtd/nand/raw/brcmnand/
4191 F:      include/linux/platform_data/brcmnand.h
4192
4193 BROADCOM STB PCIE DRIVER
4194 M:      Jim Quinlan <jim2101024@gmail.com>
4195 M:      Nicolas Saenz Julienne <nsaenz@kernel.org>
4196 M:      Florian Fainelli <f.fainelli@gmail.com>
4197 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4198 L:      linux-pci@vger.kernel.org
4199 S:      Maintained
4200 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
4201 F:      drivers/pci/controller/pcie-brcmstb.c
4202
4203 BROADCOM SYSTEMPORT ETHERNET DRIVER
4204 M:      Florian Fainelli <f.fainelli@gmail.com>
4205 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4206 L:      netdev@vger.kernel.org
4207 S:      Supported
4208 F:      drivers/net/ethernet/broadcom/bcmsysport.*
4209 F:      drivers/net/ethernet/broadcom/unimac.h
4210 F:      Documentation/devicetree/bindings/net/brcm,systemport.yaml
4211
4212 BROADCOM TG3 GIGABIT ETHERNET DRIVER
4213 M:      Siva Reddy Kallam <siva.kallam@broadcom.com>
4214 M:      Prashant Sreedharan <prashant@broadcom.com>
4215 M:      Michael Chan <mchan@broadcom.com>
4216 L:      netdev@vger.kernel.org
4217 S:      Supported
4218 F:      drivers/net/ethernet/broadcom/tg3.*
4219
4220 BROADCOM VK DRIVER
4221 M:      Scott Branden <scott.branden@broadcom.com>
4222 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
4223 S:      Supported
4224 F:      drivers/misc/bcm-vk/
4225 F:      include/uapi/linux/misc/bcm_vk.h
4226
4227 BROCADE BFA FC SCSI DRIVER
4228 M:      Anil Gurumurthy <anil.gurumurthy@qlogic.com>
4229 M:      Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
4230 L:      linux-scsi@vger.kernel.org
4231 S:      Supported
4232 F:      drivers/scsi/bfa/
4233
4234 BROCADE BNA 10 GIGABIT ETHERNET DRIVER
4235 M:      Rasesh Mody <rmody@marvell.com>
4236 M:      Sudarsana Kalluru <skalluru@marvell.com>
4237 M:      GR-Linux-NIC-Dev@marvell.com
4238 L:      netdev@vger.kernel.org
4239 S:      Supported
4240 F:      drivers/net/ethernet/brocade/bna/
4241
4242 BSG (block layer generic sg v4 driver)
4243 M:      FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
4244 L:      linux-scsi@vger.kernel.org
4245 S:      Supported
4246 F:      block/bsg.c
4247 F:      include/linux/bsg.h
4248 F:      include/uapi/linux/bsg.h
4249
4250 BT87X AUDIO DRIVER
4251 M:      Clemens Ladisch <clemens@ladisch.de>
4252 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4253 S:      Maintained
4254 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
4255 F:      Documentation/sound/cards/bt87x.rst
4256 F:      sound/pci/bt87x.c
4257
4258 BT8XXGPIO DRIVER
4259 M:      Michael Buesch <m@bues.ch>
4260 S:      Maintained
4261 W:      http://bu3sch.de/btgpio.php
4262 F:      drivers/gpio/gpio-bt8xx.c
4263
4264 BTRFS FILE SYSTEM
4265 M:      Chris Mason <clm@fb.com>
4266 M:      Josef Bacik <josef@toxicpanda.com>
4267 M:      David Sterba <dsterba@suse.com>
4268 L:      linux-btrfs@vger.kernel.org
4269 S:      Maintained
4270 W:      http://btrfs.wiki.kernel.org/
4271 Q:      http://patchwork.kernel.org/project/linux-btrfs/list/
4272 C:      irc://irc.libera.chat/btrfs
4273 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kdave/linux.git
4274 F:      Documentation/filesystems/btrfs.rst
4275 F:      fs/btrfs/
4276 F:      include/linux/btrfs*
4277 F:      include/uapi/linux/btrfs*
4278
4279 BTTV VIDEO4LINUX DRIVER
4280 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
4281 L:      linux-media@vger.kernel.org
4282 S:      Odd fixes
4283 W:      https://linuxtv.org
4284 T:      git git://linuxtv.org/media_tree.git
4285 F:      Documentation/driver-api/media/drivers/bttv*
4286 F:      drivers/media/pci/bt8xx/bttv*
4287
4288 BUS FREQUENCY DRIVER FOR SAMSUNG EXYNOS
4289 M:      Chanwoo Choi <cw00.choi@samsung.com>
4290 L:      linux-pm@vger.kernel.org
4291 L:      linux-samsung-soc@vger.kernel.org
4292 S:      Maintained
4293 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
4294 F:      Documentation/devicetree/bindings/devfreq/exynos-bus.txt
4295 F:      drivers/devfreq/exynos-bus.c
4296
4297 BUSLOGIC SCSI DRIVER
4298 M:      Khalid Aziz <khalid@gonehiking.org>
4299 L:      linux-scsi@vger.kernel.org
4300 S:      Maintained
4301 F:      drivers/scsi/BusLogic.*
4302 F:      drivers/scsi/FlashPoint.*
4303
4304 C-MEDIA CMI8788 DRIVER
4305 M:      Clemens Ladisch <clemens@ladisch.de>
4306 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4307 S:      Maintained
4308 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
4309 F:      sound/pci/oxygen/
4310
4311 C-SKY ARCHITECTURE
4312 M:      Guo Ren <guoren@kernel.org>
4313 L:      linux-csky@vger.kernel.org
4314 S:      Supported
4315 T:      git https://github.com/c-sky/csky-linux.git
4316 F:      Documentation/devicetree/bindings/csky/
4317 F:      Documentation/devicetree/bindings/interrupt-controller/csky,*
4318 F:      Documentation/devicetree/bindings/timer/csky,*
4319 F:      arch/csky/
4320 F:      drivers/clocksource/timer-gx6605s.c
4321 F:      drivers/clocksource/timer-mp-csky.c
4322 F:      drivers/irqchip/irq-csky-*
4323 N:      csky
4324 K:      csky
4325
4326 CA8210 IEEE-802.15.4 RADIO DRIVER
4327 L:      linux-wpan@vger.kernel.org
4328 S:      Orphan
4329 W:      https://github.com/Cascoda/ca8210-linux.git
4330 F:      Documentation/devicetree/bindings/net/ieee802154/ca8210.txt
4331 F:      drivers/net/ieee802154/ca8210.c
4332
4333 CANAAN/KENDRYTE K210 SOC FPIOA DRIVER
4334 M:      Damien Le Moal <damien.lemoal@wdc.com>
4335 L:      linux-riscv@lists.infradead.org
4336 L:      linux-gpio@vger.kernel.org (pinctrl driver)
4337 F:      Documentation/devicetree/bindings/pinctrl/canaan,k210-fpioa.yaml
4338 F:      drivers/pinctrl/pinctrl-k210.c
4339
4340 CANAAN/KENDRYTE K210 SOC RESET CONTROLLER DRIVER
4341 M:      Damien Le Moal <damien.lemoal@wdc.com>
4342 L:      linux-kernel@vger.kernel.org
4343 L:      linux-riscv@lists.infradead.org
4344 S:      Maintained
4345 F:      Documentation/devicetree/bindings/reset/canaan,k210-rst.yaml
4346 F:      drivers/reset/reset-k210.c
4347
4348 CANAAN/KENDRYTE K210 SOC SYSTEM CONTROLLER DRIVER
4349 M:      Damien Le Moal <damien.lemoal@wdc.com>
4350 L:      linux-riscv@lists.infradead.org
4351 S:      Maintained
4352 F:      Documentation/devicetree/bindings/mfd/canaan,k210-sysctl.yaml
4353 F:      drivers/soc/canaan/
4354 F:      include/soc/canaan/
4355
4356 CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
4357 M:      David Howells <dhowells@redhat.com>
4358 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
4359 S:      Supported
4360 F:      Documentation/filesystems/caching/cachefiles.rst
4361 F:      fs/cachefiles/
4362
4363 CADENCE MIPI-CSI2 BRIDGES
4364 M:      Maxime Ripard <mripard@kernel.org>
4365 L:      linux-media@vger.kernel.org
4366 S:      Maintained
4367 F:      Documentation/devicetree/bindings/media/cdns,*.txt
4368 F:      drivers/media/platform/cadence/cdns-csi2*
4369
4370 CADENCE NAND DRIVER
4371 L:      linux-mtd@lists.infradead.org
4372 S:      Orphan
4373 F:      Documentation/devicetree/bindings/mtd/cadence-nand-controller.txt
4374 F:      drivers/mtd/nand/raw/cadence-nand-controller.c
4375
4376 CADENCE USB3 DRD IP DRIVER
4377 M:      Peter Chen <peter.chen@kernel.org>
4378 M:      Pawel Laszczak <pawell@cadence.com>
4379 R:      Roger Quadros <rogerq@kernel.org>
4380 R:      Aswath Govindraju <a-govindraju@ti.com>
4381 L:      linux-usb@vger.kernel.org
4382 S:      Maintained
4383 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4384 F:      Documentation/devicetree/bindings/usb/cdns,usb3.yaml
4385 F:      drivers/usb/cdns3/
4386 X:      drivers/usb/cdns3/cdnsp*
4387
4388 CADENCE USBSSP DRD IP DRIVER
4389 M:      Pawel Laszczak <pawell@cadence.com>
4390 L:      linux-usb@vger.kernel.org
4391 S:      Maintained
4392 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4393 F:      drivers/usb/cdns3/
4394 X:      drivers/usb/cdns3/cdns3*
4395
4396 CADET FM/AM RADIO RECEIVER DRIVER
4397 M:      Hans Verkuil <hverkuil@xs4all.nl>
4398 L:      linux-media@vger.kernel.org
4399 S:      Maintained
4400 W:      https://linuxtv.org
4401 T:      git git://linuxtv.org/media_tree.git
4402 F:      drivers/media/radio/radio-cadet*
4403
4404 CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
4405 L:      linux-media@vger.kernel.org
4406 S:      Orphan
4407 T:      git git://linuxtv.org/media_tree.git
4408 F:      Documentation/admin-guide/media/cafe_ccic*
4409 F:      drivers/media/platform/marvell/
4410
4411 CAIF NETWORK LAYER
4412 L:      netdev@vger.kernel.org
4413 S:      Orphan
4414 F:      Documentation/networking/caif/
4415 F:      drivers/net/caif/
4416 F:      include/net/caif/
4417 F:      include/uapi/linux/caif/
4418 F:      net/caif/
4419
4420 CAKE QDISC
4421 M:      Toke Høiland-Jørgensen <toke@toke.dk>
4422 L:      cake@lists.bufferbloat.net (moderated for non-subscribers)
4423 S:      Maintained
4424 F:      net/sched/sch_cake.c
4425
4426 CAN NETWORK DRIVERS
4427 M:      Wolfgang Grandegger <wg@grandegger.com>
4428 M:      Marc Kleine-Budde <mkl@pengutronix.de>
4429 L:      linux-can@vger.kernel.org
4430 S:      Maintained
4431 W:      https://github.com/linux-can
4432 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
4433 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
4434 F:      Documentation/devicetree/bindings/net/can/
4435 F:      Documentation/devicetree/bindings/phy/ti,tcan104x-can.yaml
4436 F:      drivers/net/can/
4437 F:      drivers/phy/phy-can-transceiver.c
4438 F:      include/linux/can/bittiming.h
4439 F:      include/linux/can/dev.h
4440 F:      include/linux/can/length.h
4441 F:      include/linux/can/platform/
4442 F:      include/linux/can/rx-offload.h
4443 F:      include/uapi/linux/can/error.h
4444 F:      include/uapi/linux/can/netlink.h
4445 F:      include/uapi/linux/can/vxcan.h
4446
4447 CAN NETWORK LAYER
4448 M:      Oliver Hartkopp <socketcan@hartkopp.net>
4449 M:      Marc Kleine-Budde <mkl@pengutronix.de>
4450 L:      linux-can@vger.kernel.org
4451 S:      Maintained
4452 W:      https://github.com/linux-can
4453 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
4454 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
4455 F:      Documentation/networking/can.rst
4456 F:      include/linux/can/can-ml.h
4457 F:      include/linux/can/core.h
4458 F:      include/linux/can/skb.h
4459 F:      include/net/netns/can.h
4460 F:      include/uapi/linux/can.h
4461 F:      include/uapi/linux/can/bcm.h
4462 F:      include/uapi/linux/can/gw.h
4463 F:      include/uapi/linux/can/isotp.h
4464 F:      include/uapi/linux/can/raw.h
4465 F:      net/can/
4466
4467 CAN-J1939 NETWORK LAYER
4468 M:      Robin van der Gracht <robin@protonic.nl>
4469 M:      Oleksij Rempel <o.rempel@pengutronix.de>
4470 R:      kernel@pengutronix.de
4471 L:      linux-can@vger.kernel.org
4472 S:      Maintained
4473 F:      Documentation/networking/j1939.rst
4474 F:      include/uapi/linux/can/j1939.h
4475 F:      net/can/j1939/
4476
4477 CAPABILITIES
4478 M:      Serge Hallyn <serge@hallyn.com>
4479 L:      linux-security-module@vger.kernel.org
4480 S:      Supported
4481 F:      include/linux/capability.h
4482 F:      include/uapi/linux/capability.h
4483 F:      kernel/capability.c
4484 F:      security/commoncap.c
4485
4486 CAPELLA MICROSYSTEMS LIGHT SENSOR DRIVER
4487 M:      Kevin Tsai <ktsai@capellamicro.com>
4488 S:      Maintained
4489 F:      drivers/iio/light/cm*
4490
4491 CARL9170 LINUX COMMUNITY WIRELESS DRIVER
4492 M:      Christian Lamparter <chunkeey@googlemail.com>
4493 L:      linux-wireless@vger.kernel.org
4494 S:      Maintained
4495 W:      https://wireless.wiki.kernel.org/en/users/Drivers/carl9170
4496 F:      drivers/net/wireless/ath/carl9170/
4497
4498 CAVIUM I2C DRIVER
4499 M:      Robert Richter <rric@kernel.org>
4500 S:      Odd Fixes
4501 W:      http://www.marvell.com
4502 F:      drivers/i2c/busses/i2c-octeon*
4503 F:      drivers/i2c/busses/i2c-thunderx*
4504
4505 CAVIUM LIQUIDIO NETWORK DRIVER
4506 M:      Derek Chickles <dchickles@marvell.com>
4507 M:      Satanand Burla <sburla@marvell.com>
4508 M:      Felix Manlunas <fmanlunas@marvell.com>
4509 L:      netdev@vger.kernel.org
4510 S:      Supported
4511 W:      http://www.marvell.com
4512 F:      drivers/net/ethernet/cavium/liquidio/
4513
4514 CAVIUM MMC DRIVER
4515 M:      Robert Richter <rric@kernel.org>
4516 S:      Odd Fixes
4517 W:      http://www.marvell.com
4518 F:      drivers/mmc/host/cavium*
4519
4520 CAVIUM OCTEON-TX CRYPTO DRIVER
4521 M:      George Cherian <gcherian@marvell.com>
4522 L:      linux-crypto@vger.kernel.org
4523 S:      Supported
4524 W:      http://www.marvell.com
4525 F:      drivers/crypto/cavium/cpt/
4526
4527 CAVIUM THUNDERX2 ARM64 SOC
4528 M:      Robert Richter <rric@kernel.org>
4529 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4530 S:      Odd Fixes
4531 F:      Documentation/devicetree/bindings/arm/cavium-thunder2.txt
4532 F:      arch/arm64/boot/dts/cavium/thunder2-99xx*
4533
4534 CBS/ETF/TAPRIO QDISCS
4535 M:      Vinicius Costa Gomes <vinicius.gomes@intel.com>
4536 S:      Maintained
4537 L:      netdev@vger.kernel.org
4538 F:      net/sched/sch_cbs.c
4539 F:      net/sched/sch_etf.c
4540 F:      net/sched/sch_taprio.c
4541
4542 CC2520 IEEE-802.15.4 RADIO DRIVER
4543 M:      Varka Bhadram <varkabhadram@gmail.com>
4544 L:      linux-wpan@vger.kernel.org
4545 S:      Maintained
4546 F:      Documentation/devicetree/bindings/net/ieee802154/cc2520.txt
4547 F:      drivers/net/ieee802154/cc2520.c
4548 F:      include/linux/spi/cc2520.h
4549
4550 CCREE ARM TRUSTZONE CRYPTOCELL REE DRIVER
4551 M:      Gilad Ben-Yossef <gilad@benyossef.com>
4552 L:      linux-crypto@vger.kernel.org
4553 S:      Supported
4554 W:      https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
4555 F:      drivers/crypto/ccree/
4556
4557 CCTRNG ARM TRUSTZONE CRYPTOCELL TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
4558 M:      Hadar Gat <hadar.gat@arm.com>
4559 L:      linux-crypto@vger.kernel.org
4560 S:      Supported
4561 F:      drivers/char/hw_random/cctrng.c
4562 F:      drivers/char/hw_random/cctrng.h
4563 F:      Documentation/devicetree/bindings/rng/arm-cctrng.yaml
4564 W:      https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
4565
4566 CEC FRAMEWORK
4567 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
4568 L:      linux-media@vger.kernel.org
4569 S:      Supported
4570 W:      http://linuxtv.org
4571 T:      git git://linuxtv.org/media_tree.git
4572 F:      Documentation/ABI/testing/debugfs-cec-error-inj
4573 F:      Documentation/devicetree/bindings/media/cec.txt
4574 F:      Documentation/driver-api/media/cec-core.rst
4575 F:      Documentation/userspace-api/media/cec
4576 F:      drivers/media/cec/
4577 F:      drivers/media/rc/keymaps/rc-cec.c
4578 F:      include/media/cec-notifier.h
4579 F:      include/media/cec.h
4580 F:      include/uapi/linux/cec-funcs.h
4581 F:      include/uapi/linux/cec.h
4582
4583 CEC GPIO DRIVER
4584 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
4585 L:      linux-media@vger.kernel.org
4586 S:      Supported
4587 W:      http://linuxtv.org
4588 T:      git git://linuxtv.org/media_tree.git
4589 F:      Documentation/devicetree/bindings/media/cec-gpio.txt
4590 F:      drivers/media/cec/platform/cec-gpio/
4591
4592 CELL BROADBAND ENGINE ARCHITECTURE
4593 M:      Arnd Bergmann <arnd@arndb.de>
4594 L:      linuxppc-dev@lists.ozlabs.org
4595 S:      Supported
4596 W:      http://www.ibm.com/developerworks/power/cell/
4597 F:      arch/powerpc/include/asm/cell*.h
4598 F:      arch/powerpc/include/asm/spu*.h
4599 F:      arch/powerpc/include/uapi/asm/spu*.h
4600 F:      arch/powerpc/platforms/cell/
4601
4602 CELLWISE CW2015 BATTERY DRIVER
4603 M:      Tobias Schrammm <t.schramm@manjaro.org>
4604 S:      Maintained
4605 F:      Documentation/devicetree/bindings/power/supply/cw2015_battery.yaml
4606 F:      drivers/power/supply/cw2015_battery.c
4607
4608 CEPH COMMON CODE (LIBCEPH)
4609 M:      Ilya Dryomov <idryomov@gmail.com>
4610 M:      Xiubo Li <xiubli@redhat.com>
4611 R:      Jeff Layton <jlayton@kernel.org>
4612 L:      ceph-devel@vger.kernel.org
4613 S:      Supported
4614 W:      http://ceph.com/
4615 T:      git git://github.com/ceph/ceph-client.git
4616 F:      include/linux/ceph/
4617 F:      include/linux/crush/
4618 F:      net/ceph/
4619
4620 CEPH DISTRIBUTED FILE SYSTEM CLIENT (CEPH)
4621 M:      Xiubo Li <xiubli@redhat.com>
4622 M:      Ilya Dryomov <idryomov@gmail.com>
4623 R:      Jeff Layton <jlayton@kernel.org>
4624 L:      ceph-devel@vger.kernel.org
4625 S:      Supported
4626 W:      http://ceph.com/
4627 T:      git git://github.com/ceph/ceph-client.git
4628 F:      Documentation/filesystems/ceph.rst
4629 F:      fs/ceph/
4630
4631 CERTIFICATE HANDLING
4632 M:      David Howells <dhowells@redhat.com>
4633 M:      David Woodhouse <dwmw2@infradead.org>
4634 L:      keyrings@vger.kernel.org
4635 S:      Maintained
4636 F:      Documentation/admin-guide/module-signing.rst
4637 F:      certs/
4638 F:      scripts/check-blacklist-hashes.awk
4639 F:      scripts/sign-file.c
4640 F:      tools/certs/
4641
4642 CFAG12864B LCD DRIVER
4643 M:      Miguel Ojeda <ojeda@kernel.org>
4644 S:      Maintained
4645 F:      drivers/auxdisplay/cfag12864b.c
4646 F:      include/linux/cfag12864b.h
4647
4648 CFAG12864BFB LCD FRAMEBUFFER DRIVER
4649 M:      Miguel Ojeda <ojeda@kernel.org>
4650 S:      Maintained
4651 F:      drivers/auxdisplay/cfag12864bfb.c
4652 F:      include/linux/cfag12864b.h
4653
4654 CHAR and MISC DRIVERS
4655 M:      Arnd Bergmann <arnd@arndb.de>
4656 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4657 S:      Supported
4658 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
4659 F:      drivers/char/
4660 F:      drivers/misc/
4661 F:      include/linux/miscdevice.h
4662 X:      drivers/char/agp/
4663 X:      drivers/char/hw_random/
4664 X:      drivers/char/ipmi/
4665 X:      drivers/char/random.c
4666 X:      drivers/char/tpm/
4667
4668 CHECKPATCH
4669 M:      Andy Whitcroft <apw@canonical.com>
4670 M:      Joe Perches <joe@perches.com>
4671 R:      Dwaipayan Ray <dwaipayanray1@gmail.com>
4672 R:      Lukas Bulwahn <lukas.bulwahn@gmail.com>
4673 S:      Maintained
4674 F:      scripts/checkpatch.pl
4675
4676 CHECKPATCH DOCUMENTATION
4677 M:      Dwaipayan Ray <dwaipayanray1@gmail.com>
4678 M:      Lukas Bulwahn <lukas.bulwahn@gmail.com>
4679 R:      Joe Perches <joe@perches.com>
4680 S:      Maintained
4681 F:      Documentation/dev-tools/checkpatch.rst
4682
4683 CHINESE DOCUMENTATION
4684 M:      Alex Shi <alexs@kernel.org>
4685 M:      Yanteng Si <siyanteng@loongson.cn>
4686 S:      Maintained
4687 F:      Documentation/translations/zh_CN/
4688
4689 CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
4690 M:      Peter Chen <peter.chen@kernel.org>
4691 L:      linux-usb@vger.kernel.org
4692 S:      Maintained
4693 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4694 F:      drivers/usb/chipidea/
4695
4696 CHIPONE ICN8318 I2C TOUCHSCREEN DRIVER
4697 M:      Hans de Goede <hdegoede@redhat.com>
4698 L:      linux-input@vger.kernel.org
4699 S:      Maintained
4700 F:      Documentation/devicetree/bindings/input/touchscreen/chipone,icn8318.yaml
4701 F:      drivers/input/touchscreen/chipone_icn8318.c
4702
4703 CHIPONE ICN8505 I2C TOUCHSCREEN DRIVER
4704 M:      Hans de Goede <hdegoede@redhat.com>
4705 L:      linux-input@vger.kernel.org
4706 S:      Maintained
4707 F:      drivers/input/touchscreen/chipone_icn8505.c
4708
4709 CHROME HARDWARE PLATFORM SUPPORT
4710 M:      Benson Leung <bleung@chromium.org>
4711 L:      chrome-platform@lists.linux.dev
4712 S:      Maintained
4713 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chrome-platform/linux.git
4714 F:      drivers/platform/chrome/
4715
4716 CHROMEOS EC CODEC DRIVER
4717 M:      Cheng-Yi Chiang <cychiang@chromium.org>
4718 M:      Tzung-Bi Shih <tzungbi@google.com>
4719 R:      Guenter Roeck <groeck@chromium.org>
4720 L:      chrome-platform@lists.linux.dev
4721 S:      Maintained
4722 F:      Documentation/devicetree/bindings/sound/google,cros-ec-codec.yaml
4723 F:      sound/soc/codecs/cros_ec_codec.*
4724
4725 CHROMEOS EC SUBDRIVERS
4726 M:      Benson Leung <bleung@chromium.org>
4727 R:      Guenter Roeck <groeck@chromium.org>
4728 L:      chrome-platform@lists.linux.dev
4729 S:      Maintained
4730 F:      drivers/power/supply/cros_usbpd-charger.c
4731 N:      cros_ec
4732 N:      cros-ec
4733
4734 CHROMEOS EC USB TYPE-C DRIVER
4735 M:      Prashant Malani <pmalani@chromium.org>
4736 L:      chrome-platform@lists.linux.dev
4737 S:      Maintained
4738 F:      drivers/platform/chrome/cros_ec_typec.c
4739
4740 CHROMEOS EC USB PD NOTIFY DRIVER
4741 M:      Prashant Malani <pmalani@chromium.org>
4742 L:      chrome-platform@lists.linux.dev
4743 S:      Maintained
4744 F:      drivers/platform/chrome/cros_usbpd_notify.c
4745 F:      include/linux/platform_data/cros_usbpd_notify.h
4746
4747 CHRONTEL CH7322 CEC DRIVER
4748 M:      Joe Tessler <jrt@google.com>
4749 L:      linux-media@vger.kernel.org
4750 S:      Maintained
4751 T:      git git://linuxtv.org/media_tree.git
4752 F:      Documentation/devicetree/bindings/media/i2c/chrontel,ch7322.yaml
4753 F:      drivers/media/cec/i2c/ch7322.c
4754
4755 CIRRUS LOGIC AUDIO CODEC DRIVERS
4756 M:      James Schulman <james.schulman@cirrus.com>
4757 M:      David Rhodes <david.rhodes@cirrus.com>
4758 M:      Lucas Tanure <tanureal@opensource.cirrus.com>
4759 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4760 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4761 L:      patches@opensource.cirrus.com
4762 S:      Maintained
4763 F:      Documentation/devicetree/bindings/sound/cirrus,cs*
4764 F:      include/dt-bindings/sound/cs*
4765 F:      sound/pci/hda/cs*
4766 F:      sound/soc/codecs/cs*
4767
4768 CIRRUS LOGIC DSP FIRMWARE DRIVER
4769 M:      Simon Trimmer <simont@opensource.cirrus.com>
4770 M:      Charles Keepax <ckeepax@opensource.cirrus.com>
4771 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4772 L:      patches@opensource.cirrus.com
4773 S:      Supported
4774 W:      https://github.com/CirrusLogic/linux-drivers/wiki
4775 T:      git https://github.com/CirrusLogic/linux-drivers.git
4776 F:      drivers/firmware/cirrus/*
4777 F:      include/linux/firmware/cirrus/*
4778
4779 CIRRUS LOGIC EP93XX ETHERNET DRIVER
4780 M:      Hartley Sweeten <hsweeten@visionengravers.com>
4781 L:      netdev@vger.kernel.org
4782 S:      Maintained
4783 F:      drivers/net/ethernet/cirrus/ep93xx_eth.c
4784
4785 CIRRUS LOGIC LOCHNAGAR DRIVER
4786 M:      Charles Keepax <ckeepax@opensource.cirrus.com>
4787 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4788 L:      patches@opensource.cirrus.com
4789 S:      Supported
4790 F:      Documentation/devicetree/bindings/clock/cirrus,lochnagar.yaml
4791 F:      Documentation/devicetree/bindings/hwmon/cirrus,lochnagar.yaml
4792 F:      Documentation/devicetree/bindings/mfd/cirrus,lochnagar.yaml
4793 F:      Documentation/devicetree/bindings/pinctrl/cirrus,lochnagar.yaml
4794 F:      Documentation/devicetree/bindings/sound/cirrus,lochnagar.yaml
4795 F:      Documentation/hwmon/lochnagar.rst
4796 F:      drivers/clk/clk-lochnagar.c
4797 F:      drivers/hwmon/lochnagar-hwmon.c
4798 F:      drivers/mfd/lochnagar-i2c.c
4799 F:      drivers/pinctrl/cirrus/pinctrl-lochnagar.c
4800 F:      drivers/regulator/lochnagar-regulator.c
4801 F:      include/dt-bindings/clk/lochnagar.h
4802 F:      include/dt-bindings/pinctrl/lochnagar.h
4803 F:      include/linux/mfd/lochnagar*
4804 F:      sound/soc/codecs/lochnagar-sc.c
4805
4806 CIRRUS LOGIC MADERA CODEC DRIVERS
4807 M:      Charles Keepax <ckeepax@opensource.cirrus.com>
4808 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4809 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4810 L:      patches@opensource.cirrus.com
4811 S:      Supported
4812 W:      https://github.com/CirrusLogic/linux-drivers/wiki
4813 T:      git https://github.com/CirrusLogic/linux-drivers.git
4814 F:      Documentation/devicetree/bindings/mfd/cirrus,madera.yaml
4815 F:      Documentation/devicetree/bindings/pinctrl/cirrus,madera.yaml
4816 F:      Documentation/devicetree/bindings/sound/cirrus,madera.yaml
4817 F:      drivers/gpio/gpio-madera*
4818 F:      drivers/irqchip/irq-madera*
4819 F:      drivers/mfd/cs47l*
4820 F:      drivers/mfd/madera*
4821 F:      drivers/pinctrl/cirrus/*
4822 F:      include/dt-bindings/sound/madera*
4823 F:      include/linux/irqchip/irq-madera*
4824 F:      include/linux/mfd/madera/*
4825 F:      include/sound/madera*
4826 F:      sound/soc/codecs/cs47l*
4827 F:      sound/soc/codecs/madera*
4828
4829 CISCO FCOE HBA DRIVER
4830 M:      Satish Kharat <satishkh@cisco.com>
4831 M:      Sesidhar Baddela <sebaddel@cisco.com>
4832 M:      Karan Tilak Kumar <kartilak@cisco.com>
4833 L:      linux-scsi@vger.kernel.org
4834 S:      Supported
4835 F:      drivers/scsi/fnic/
4836
4837 CISCO SCSI HBA DRIVER
4838 M:      Karan Tilak Kumar <kartilak@cisco.com>
4839 M:      Sesidhar Baddela <sebaddel@cisco.com>
4840 L:      linux-scsi@vger.kernel.org
4841 S:      Supported
4842 F:      drivers/scsi/snic/
4843
4844 CISCO VIC ETHERNET NIC DRIVER
4845 M:      Christian Benvenuti <benve@cisco.com>
4846 M:      Govindarajulu Varadarajan <_govind@gmx.com>
4847 S:      Supported
4848 F:      drivers/net/ethernet/cisco/enic/
4849
4850 CISCO VIC LOW LATENCY NIC DRIVER
4851 M:      Christian Benvenuti <benve@cisco.com>
4852 M:      Nelson Escobar <neescoba@cisco.com>
4853 S:      Supported
4854 F:      drivers/infiniband/hw/usnic/
4855
4856 CLANG-FORMAT FILE
4857 M:      Miguel Ojeda <ojeda@kernel.org>
4858 S:      Maintained
4859 F:      .clang-format
4860
4861 CLANG/LLVM BUILD SUPPORT
4862 M:      Nathan Chancellor <nathan@kernel.org>
4863 M:      Nick Desaulniers <ndesaulniers@google.com>
4864 R:      Tom Rix <trix@redhat.com>
4865 L:      llvm@lists.linux.dev
4866 S:      Supported
4867 W:      https://clangbuiltlinux.github.io/
4868 B:      https://github.com/ClangBuiltLinux/linux/issues
4869 C:      irc://irc.libera.chat/clangbuiltlinux
4870 F:      Documentation/kbuild/llvm.rst
4871 F:      include/linux/compiler-clang.h
4872 F:      scripts/Makefile.clang
4873 F:      scripts/clang-tools/
4874 K:      \b(?i:clang|llvm)\b
4875
4876 CLANG CONTROL FLOW INTEGRITY SUPPORT
4877 M:      Sami Tolvanen <samitolvanen@google.com>
4878 M:      Kees Cook <keescook@chromium.org>
4879 R:      Nathan Chancellor <nathan@kernel.org>
4880 R:      Nick Desaulniers <ndesaulniers@google.com>
4881 L:      llvm@lists.linux.dev
4882 S:      Supported
4883 B:      https://github.com/ClangBuiltLinux/linux/issues
4884 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/clang/features
4885 F:      include/linux/cfi.h
4886 F:      kernel/cfi.c
4887
4888 CLK API
4889 M:      Russell King <linux@armlinux.org.uk>
4890 L:      linux-clk@vger.kernel.org
4891 S:      Maintained
4892 F:      include/linux/clk.h
4893
4894 CLOCKSOURCE, CLOCKEVENT DRIVERS
4895 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4896 M:      Thomas Gleixner <tglx@linutronix.de>
4897 L:      linux-kernel@vger.kernel.org
4898 S:      Supported
4899 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
4900 F:      Documentation/devicetree/bindings/timer/
4901 F:      drivers/clocksource/
4902
4903 CMPC ACPI DRIVER
4904 M:      Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
4905 M:      Daniel Oliveira Nascimento <don@syst.com.br>
4906 L:      platform-driver-x86@vger.kernel.org
4907 S:      Supported
4908 F:      drivers/platform/x86/classmate-laptop.c
4909
4910 COBALT MEDIA DRIVER
4911 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
4912 L:      linux-media@vger.kernel.org
4913 S:      Supported
4914 W:      https://linuxtv.org
4915 T:      git git://linuxtv.org/media_tree.git
4916 F:      drivers/media/pci/cobalt/
4917
4918 COCCINELLE/Semantic Patches (SmPL)
4919 M:      Julia Lawall <Julia.Lawall@inria.fr>
4920 M:      Nicolas Palix <nicolas.palix@imag.fr>
4921 L:      cocci@inria.fr (moderated for non-subscribers)
4922 S:      Supported
4923 W:      https://coccinelle.gitlabpages.inria.fr/website/
4924 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jlawall/linux.git
4925 F:      Documentation/dev-tools/coccinelle.rst
4926 F:      scripts/coccicheck
4927 F:      scripts/coccinelle/
4928
4929 CODA FILE SYSTEM
4930 M:      Jan Harkes <jaharkes@cs.cmu.edu>
4931 M:      coda@cs.cmu.edu
4932 L:      codalist@coda.cs.cmu.edu
4933 S:      Maintained
4934 W:      http://www.coda.cs.cmu.edu/
4935 F:      Documentation/filesystems/coda.rst
4936 F:      fs/coda/
4937 F:      include/linux/coda*.h
4938 F:      include/uapi/linux/coda*.h
4939
4940 CODA V4L2 MEM2MEM DRIVER
4941 M:      Philipp Zabel <p.zabel@pengutronix.de>
4942 L:      linux-media@vger.kernel.org
4943 S:      Maintained
4944 F:      Documentation/devicetree/bindings/media/coda.yaml
4945 F:      drivers/media/platform/chips-media/
4946
4947 CODE OF CONDUCT
4948 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4949 S:      Supported
4950 F:      Documentation/process/code-of-conduct-interpretation.rst
4951 F:      Documentation/process/code-of-conduct.rst
4952
4953 COMEDI DRIVERS
4954 M:      Ian Abbott <abbotti@mev.co.uk>
4955 M:      H Hartley Sweeten <hsweeten@visionengravers.com>
4956 S:      Odd Fixes
4957 F:      drivers/comedi/
4958 F:      include/linux/comedi/
4959 F:      include/uapi/linux/comedi.h
4960
4961 COMMON CLK FRAMEWORK
4962 M:      Michael Turquette <mturquette@baylibre.com>
4963 M:      Stephen Boyd <sboyd@kernel.org>
4964 L:      linux-clk@vger.kernel.org
4965 S:      Maintained
4966 Q:      http://patchwork.kernel.org/project/linux-clk/list/
4967 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git
4968 F:      Documentation/devicetree/bindings/clock/
4969 F:      drivers/clk/
4970 F:      include/linux/clk-pr*
4971 F:      include/linux/clk/
4972 F:      include/linux/of_clk.h
4973 X:      drivers/clk/clkdev.c
4974
4975 COMMON INTERNET FILE SYSTEM CLIENT (CIFS)
4976 M:      Steve French <sfrench@samba.org>
4977 L:      linux-cifs@vger.kernel.org
4978 L:      samba-technical@lists.samba.org (moderated for non-subscribers)
4979 S:      Supported
4980 W:      http://linux-cifs.samba.org/
4981 T:      git git://git.samba.org/sfrench/cifs-2.6.git
4982 F:      Documentation/admin-guide/cifs/
4983 F:      fs/cifs/
4984 F:      fs/smbfs_common/
4985
4986 COMPACTPCI HOTPLUG CORE
4987 M:      Scott Murray <scott@spiteful.org>
4988 L:      linux-pci@vger.kernel.org
4989 S:      Maintained
4990 F:      drivers/pci/hotplug/cpci_hotplug*
4991
4992 COMPACTPCI HOTPLUG GENERIC DRIVER
4993 M:      Scott Murray <scott@spiteful.org>
4994 L:      linux-pci@vger.kernel.org
4995 S:      Maintained
4996 F:      drivers/pci/hotplug/cpcihp_generic.c
4997
4998 COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
4999 M:      Scott Murray <scott@spiteful.org>
5000 L:      linux-pci@vger.kernel.org
5001 S:      Maintained
5002 F:      drivers/pci/hotplug/cpcihp_zt5550.*
5003
5004 COMPAL LAPTOP SUPPORT
5005 M:      Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
5006 L:      platform-driver-x86@vger.kernel.org
5007 S:      Maintained
5008 F:      drivers/platform/x86/compal-laptop.c
5009
5010 COMPILER ATTRIBUTES
5011 M:      Miguel Ojeda <ojeda@kernel.org>
5012 R:      Nick Desaulniers <ndesaulniers@google.com>
5013 S:      Maintained
5014 F:      include/linux/compiler_attributes.h
5015
5016 COMPUTE EXPRESS LINK (CXL)
5017 M:      Alison Schofield <alison.schofield@intel.com>
5018 M:      Vishal Verma <vishal.l.verma@intel.com>
5019 M:      Ira Weiny <ira.weiny@intel.com>
5020 M:      Ben Widawsky <ben.widawsky@intel.com>
5021 M:      Dan Williams <dan.j.williams@intel.com>
5022 L:      linux-cxl@vger.kernel.org
5023 S:      Maintained
5024 F:      drivers/cxl/
5025 F:      include/uapi/linux/cxl_mem.h
5026
5027 CONEXANT ACCESSRUNNER USB DRIVER
5028 L:      accessrunner-general@lists.sourceforge.net
5029 S:      Orphan
5030 W:      http://accessrunner.sourceforge.net/
5031 F:      drivers/usb/atm/cxacru.c
5032
5033 CONFIGFS
5034 M:      Joel Becker <jlbec@evilplan.org>
5035 M:      Christoph Hellwig <hch@lst.de>
5036 S:      Supported
5037 T:      git git://git.infradead.org/users/hch/configfs.git
5038 F:      fs/configfs/
5039 F:      include/linux/configfs.h
5040 F:      samples/configfs/
5041
5042 CONSOLE SUBSYSTEM
5043 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
5044 S:      Supported
5045 F:      drivers/video/console/
5046 F:      include/linux/console*
5047
5048 CONTEXT TRACKING
5049 M:      Frederic Weisbecker <frederic@kernel.org>
5050 S:      Maintained
5051 F:      kernel/context_tracking.c
5052 F:      include/linux/context_tracking*
5053
5054 CONTROL GROUP (CGROUP)
5055 M:      Tejun Heo <tj@kernel.org>
5056 M:      Zefan Li <lizefan.x@bytedance.com>
5057 M:      Johannes Weiner <hannes@cmpxchg.org>
5058 L:      cgroups@vger.kernel.org
5059 S:      Maintained
5060 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
5061 F:      Documentation/admin-guide/cgroup-v1/
5062 F:      Documentation/admin-guide/cgroup-v2.rst
5063 F:      include/linux/cgroup*
5064 F:      kernel/cgroup/
5065 F:      tools/testing/selftests/cgroup/
5066
5067 CONTROL GROUP - BLOCK IO CONTROLLER (BLKIO)
5068 M:      Tejun Heo <tj@kernel.org>
5069 M:      Jens Axboe <axboe@kernel.dk>
5070 L:      cgroups@vger.kernel.org
5071 L:      linux-block@vger.kernel.org
5072 T:      git git://git.kernel.dk/linux-block
5073 F:      Documentation/admin-guide/cgroup-v1/blkio-controller.rst
5074 F:      block/bfq-cgroup.c
5075 F:      block/blk-cgroup.c
5076 F:      block/blk-iolatency.c
5077 F:      block/blk-throttle.c
5078 F:      include/linux/blk-cgroup.h
5079
5080 CONTROL GROUP - CPUSET
5081 M:      Zefan Li <lizefan.x@bytedance.com>
5082 L:      cgroups@vger.kernel.org
5083 S:      Maintained
5084 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
5085 F:      Documentation/admin-guide/cgroup-v1/cpusets.rst
5086 F:      include/linux/cpuset.h
5087 F:      kernel/cgroup/cpuset.c
5088
5089 CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG)
5090 M:      Johannes Weiner <hannes@cmpxchg.org>
5091 M:      Michal Hocko <mhocko@kernel.org>
5092 M:      Roman Gushchin <roman.gushchin@linux.dev>
5093 M:      Shakeel Butt <shakeelb@google.com>
5094 R:      Muchun Song <songmuchun@bytedance.com>
5095 L:      cgroups@vger.kernel.org
5096 L:      linux-mm@kvack.org
5097 S:      Maintained
5098 F:      mm/memcontrol.c
5099 F:      mm/swap_cgroup.c
5100 F:      tools/testing/selftests/cgroup/memcg_protection.m
5101 F:      tools/testing/selftests/cgroup/test_kmem.c
5102 F:      tools/testing/selftests/cgroup/test_memcontrol.c
5103
5104 CORETEMP HARDWARE MONITORING DRIVER
5105 M:      Fenghua Yu <fenghua.yu@intel.com>
5106 L:      linux-hwmon@vger.kernel.org
5107 S:      Maintained
5108 F:      Documentation/hwmon/coretemp.rst
5109 F:      drivers/hwmon/coretemp.c
5110
5111 CORSAIR-CPRO HARDWARE MONITOR DRIVER
5112 M:      Marius Zachmann <mail@mariuszachmann.de>
5113 L:      linux-hwmon@vger.kernel.org
5114 S:      Maintained
5115 F:      drivers/hwmon/corsair-cpro.c
5116
5117 CORSAIR-PSU HARDWARE MONITOR DRIVER
5118 M:      Wilken Gottwalt <wilken.gottwalt@posteo.net>
5119 L:      linux-hwmon@vger.kernel.org
5120 S:      Maintained
5121 F:      Documentation/hwmon/corsair-psu.rst
5122 F:      drivers/hwmon/corsair-psu.c
5123
5124 COUNTER SUBSYSTEM
5125 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
5126 L:      linux-iio@vger.kernel.org
5127 S:      Maintained
5128 T:      git git@gitlab.com:vilhelmgray/counter.git
5129 F:      Documentation/ABI/testing/sysfs-bus-counter
5130 F:      Documentation/driver-api/generic-counter.rst
5131 F:      drivers/counter/
5132 F:      include/linux/counter.h
5133 F:      include/uapi/linux/counter.h
5134 F:      tools/counter/
5135
5136 CP2615 I2C DRIVER
5137 M:      Bence Csókás <bence98@sch.bme.hu>
5138 S:      Maintained
5139 F:      drivers/i2c/busses/i2c-cp2615.c
5140
5141 CPMAC ETHERNET DRIVER
5142 M:      Florian Fainelli <f.fainelli@gmail.com>
5143 L:      netdev@vger.kernel.org
5144 S:      Maintained
5145 F:      drivers/net/ethernet/ti/cpmac.c
5146
5147 CPU FREQUENCY DRIVERS - VEXPRESS SPC ARM BIG LITTLE
5148 M:      Viresh Kumar <viresh.kumar@linaro.org>
5149 M:      Sudeep Holla <sudeep.holla@arm.com>
5150 L:      linux-pm@vger.kernel.org
5151 S:      Maintained
5152 W:      http://www.arm.com/products/processors/technologies/biglittleprocessing.php
5153 F:      drivers/cpufreq/vexpress-spc-cpufreq.c
5154
5155 CPU FREQUENCY SCALING FRAMEWORK
5156 M:      "Rafael J. Wysocki" <rafael@kernel.org>
5157 M:      Viresh Kumar <viresh.kumar@linaro.org>
5158 L:      linux-pm@vger.kernel.org
5159 S:      Maintained
5160 B:      https://bugzilla.kernel.org
5161 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
5162 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git (For ARM Updates)
5163 F:      Documentation/admin-guide/pm/cpufreq.rst
5164 F:      Documentation/admin-guide/pm/intel_pstate.rst
5165 F:      Documentation/cpu-freq/
5166 F:      Documentation/devicetree/bindings/cpufreq/
5167 F:      drivers/cpufreq/
5168 F:      include/linux/cpufreq.h
5169 F:      include/linux/sched/cpufreq.h
5170 F:      kernel/sched/cpufreq*.c
5171 F:      tools/testing/selftests/cpufreq/
5172
5173 CPU IDLE TIME MANAGEMENT FRAMEWORK
5174 M:      "Rafael J. Wysocki" <rafael@kernel.org>
5175 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
5176 L:      linux-pm@vger.kernel.org
5177 S:      Maintained
5178 B:      https://bugzilla.kernel.org
5179 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
5180 F:      Documentation/admin-guide/pm/cpuidle.rst
5181 F:      Documentation/driver-api/pm/cpuidle.rst
5182 F:      drivers/cpuidle/
5183 F:      include/linux/cpuidle.h
5184
5185 CPU POWER MONITORING SUBSYSTEM
5186 M:      Thomas Renninger <trenn@suse.com>
5187 M:      Shuah Khan <shuah@kernel.org>
5188 M:      Shuah Khan <skhan@linuxfoundation.org>
5189 L:      linux-pm@vger.kernel.org
5190 S:      Maintained
5191 F:      tools/power/cpupower/
5192
5193 CPUID/MSR DRIVER
5194 M:      "H. Peter Anvin" <hpa@zytor.com>
5195 S:      Maintained
5196 F:      arch/x86/kernel/cpuid.c
5197 F:      arch/x86/kernel/msr.c
5198
5199 CPUIDLE DRIVER - ARM BIG LITTLE
5200 M:      Lorenzo Pieralisi <lpieralisi@kernel.org>
5201 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
5202 L:      linux-pm@vger.kernel.org
5203 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5204 S:      Maintained
5205 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
5206 F:      drivers/cpuidle/cpuidle-big_little.c
5207
5208 CPUIDLE DRIVER - ARM EXYNOS
5209 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
5210 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
5211 M:      Kukjin Kim <kgene@kernel.org>
5212 L:      linux-pm@vger.kernel.org
5213 L:      linux-samsung-soc@vger.kernel.org
5214 S:      Supported
5215 F:      arch/arm/mach-exynos/pm.c
5216 F:      drivers/cpuidle/cpuidle-exynos.c
5217 F:      include/linux/platform_data/cpuidle-exynos.h
5218
5219 CPUIDLE DRIVER - ARM PSCI
5220 M:      Lorenzo Pieralisi <lpieralisi@kernel.org>
5221 M:      Sudeep Holla <sudeep.holla@arm.com>
5222 L:      linux-pm@vger.kernel.org
5223 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5224 S:      Supported
5225 F:      drivers/cpuidle/cpuidle-psci.c
5226
5227 CPUIDLE DRIVER - ARM PSCI PM DOMAIN
5228 M:      Ulf Hansson <ulf.hansson@linaro.org>
5229 L:      linux-pm@vger.kernel.org
5230 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5231 S:      Supported
5232 F:      drivers/cpuidle/cpuidle-psci.h
5233 F:      drivers/cpuidle/cpuidle-psci-domain.c
5234
5235 CPUIDLE DRIVER - DT IDLE PM DOMAIN
5236 M:      Ulf Hansson <ulf.hansson@linaro.org>
5237 L:      linux-pm@vger.kernel.org
5238 S:      Supported
5239 F:      drivers/cpuidle/dt_idle_genpd.c
5240 F:      drivers/cpuidle/dt_idle_genpd.h
5241
5242 CPUIDLE DRIVER - RISC-V SBI
5243 M:      Anup Patel <anup@brainfault.org>
5244 L:      linux-pm@vger.kernel.org
5245 L:      linux-riscv@lists.infradead.org
5246 S:      Maintained
5247 F:      drivers/cpuidle/cpuidle-riscv-sbi.c
5248
5249 CRAMFS FILESYSTEM
5250 M:      Nicolas Pitre <nico@fluxnic.net>
5251 S:      Maintained
5252 F:      Documentation/filesystems/cramfs.rst
5253 F:      fs/cramfs/
5254
5255 CREATIVE SB0540
5256 M:      Bastien Nocera <hadess@hadess.net>
5257 L:      linux-input@vger.kernel.org
5258 S:      Maintained
5259 F:      drivers/hid/hid-creative-sb0540.c
5260
5261 CRYPTO API
5262 M:      Herbert Xu <herbert@gondor.apana.org.au>
5263 M:      "David S. Miller" <davem@davemloft.net>
5264 L:      linux-crypto@vger.kernel.org
5265 S:      Maintained
5266 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
5267 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
5268 F:      Documentation/crypto/
5269 F:      Documentation/devicetree/bindings/crypto/
5270 F:      arch/*/crypto/
5271 F:      crypto/
5272 F:      drivers/crypto/
5273 F:      include/crypto/
5274 F:      include/linux/crypto*
5275 F:      lib/crypto/
5276
5277 CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
5278 M:      Neil Horman <nhorman@tuxdriver.com>
5279 L:      linux-crypto@vger.kernel.org
5280 S:      Maintained
5281 F:      crypto/ansi_cprng.c
5282 F:      crypto/rng.c
5283
5284 CS3308 MEDIA DRIVER
5285 M:      Hans Verkuil <hverkuil@xs4all.nl>
5286 L:      linux-media@vger.kernel.org
5287 S:      Odd Fixes
5288 W:      http://linuxtv.org
5289 T:      git git://linuxtv.org/media_tree.git
5290 F:      drivers/media/i2c/cs3308.c
5291
5292 CS5535 Audio ALSA driver
5293 M:      Jaya Kumar <jayakumar.alsa@gmail.com>
5294 S:      Maintained
5295 F:      sound/pci/cs5535audio/
5296
5297 CSI DRIVERS FOR ALLWINNER V3s
5298 M:      Yong Deng <yong.deng@magewell.com>
5299 L:      linux-media@vger.kernel.org
5300 S:      Maintained
5301 T:      git git://linuxtv.org/media_tree.git
5302 F:      Documentation/devicetree/bindings/media/allwinner,sun6i-a31-csi.yaml
5303 F:      drivers/media/platform/sunxi/sun6i-csi/
5304
5305 CTU CAN FD DRIVER
5306 M:      Pavel Pisa <pisa@cmp.felk.cvut.cz>
5307 M:      Ondrej Ille <ondrej.ille@gmail.com>
5308 L:      linux-can@vger.kernel.org
5309 S:      Maintained
5310 F:      Documentation/devicetree/bindings/net/can/ctu,ctucanfd.yaml
5311 F:      drivers/net/can/ctucanfd/
5312
5313 CW1200 WLAN driver
5314 M:      Solomon Peachy <pizza@shaftnet.org>
5315 S:      Maintained
5316 F:      drivers/net/wireless/st/cw1200/
5317
5318 CX18 VIDEO4LINUX DRIVER
5319 M:      Andy Walls <awalls@md.metrocast.net>
5320 L:      linux-media@vger.kernel.org
5321 S:      Maintained
5322 W:      https://linuxtv.org
5323 T:      git git://linuxtv.org/media_tree.git
5324 F:      drivers/media/pci/cx18/
5325 F:      include/uapi/linux/ivtv*
5326
5327 CX2341X MPEG ENCODER HELPER MODULE
5328 M:      Hans Verkuil <hverkuil@xs4all.nl>
5329 L:      linux-media@vger.kernel.org
5330 S:      Maintained
5331 W:      https://linuxtv.org
5332 T:      git git://linuxtv.org/media_tree.git
5333 F:      drivers/media/common/cx2341x*
5334 F:      include/media/drv-intf/cx2341x.h
5335
5336 CX24120 MEDIA DRIVER
5337 M:      Jemma Denson <jdenson@gmail.com>
5338 M:      Patrick Boettcher <patrick.boettcher@posteo.de>
5339 L:      linux-media@vger.kernel.org
5340 S:      Maintained
5341 W:      https://linuxtv.org
5342 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5343 F:      drivers/media/dvb-frontends/cx24120*
5344
5345 CX88 VIDEO4LINUX DRIVER
5346 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
5347 L:      linux-media@vger.kernel.org
5348 S:      Odd fixes
5349 W:      https://linuxtv.org
5350 T:      git git://linuxtv.org/media_tree.git
5351 F:      Documentation/driver-api/media/drivers/cx88*
5352 F:      drivers/media/pci/cx88/
5353
5354 CXD2820R MEDIA DRIVER
5355 M:      Antti Palosaari <crope@iki.fi>
5356 L:      linux-media@vger.kernel.org
5357 S:      Maintained
5358 W:      https://linuxtv.org
5359 W:      http://palosaari.fi/linux/
5360 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5361 T:      git git://linuxtv.org/anttip/media_tree.git
5362 F:      drivers/media/dvb-frontends/cxd2820r*
5363
5364 CXGB3 ETHERNET DRIVER (CXGB3)
5365 M:      Raju Rangoju <rajur@chelsio.com>
5366 L:      netdev@vger.kernel.org
5367 S:      Supported
5368 W:      http://www.chelsio.com
5369 F:      drivers/net/ethernet/chelsio/cxgb3/
5370
5371 CXGB3 ISCSI DRIVER (CXGB3I)
5372 M:      Karen Xie <kxie@chelsio.com>
5373 L:      linux-scsi@vger.kernel.org
5374 S:      Supported
5375 W:      http://www.chelsio.com
5376 F:      drivers/scsi/cxgbi/cxgb3i
5377
5378 CXGB4 CRYPTO DRIVER (chcr)
5379 M:      Ayush Sawal <ayush.sawal@chelsio.com>
5380 M:      Vinay Kumar Yadav <vinay.yadav@chelsio.com>
5381 M:      Rohit Maheshwari <rohitm@chelsio.com>
5382 L:      linux-crypto@vger.kernel.org
5383 S:      Supported
5384 W:      http://www.chelsio.com
5385 F:      drivers/crypto/chelsio
5386
5387 CXGB4 INLINE CRYPTO DRIVER
5388 M:      Ayush Sawal <ayush.sawal@chelsio.com>
5389 M:      Vinay Kumar Yadav <vinay.yadav@chelsio.com>
5390 M:      Rohit Maheshwari <rohitm@chelsio.com>
5391 L:      netdev@vger.kernel.org
5392 S:      Supported
5393 W:      http://www.chelsio.com
5394 F:      drivers/net/ethernet/chelsio/inline_crypto/
5395
5396 CXGB4 ETHERNET DRIVER (CXGB4)
5397 M:      Raju Rangoju <rajur@chelsio.com>
5398 L:      netdev@vger.kernel.org
5399 S:      Supported
5400 W:      http://www.chelsio.com
5401 F:      drivers/net/ethernet/chelsio/cxgb4/
5402
5403 CXGB4 ISCSI DRIVER (CXGB4I)
5404 M:      Karen Xie <kxie@chelsio.com>
5405 L:      linux-scsi@vger.kernel.org
5406 S:      Supported
5407 W:      http://www.chelsio.com
5408 F:      drivers/scsi/cxgbi/cxgb4i
5409
5410 CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
5411 M:      Potnuri Bharat Teja <bharat@chelsio.com>
5412 L:      linux-rdma@vger.kernel.org
5413 S:      Supported
5414 W:      http://www.openfabrics.org
5415 F:      drivers/infiniband/hw/cxgb4/
5416 F:      include/uapi/rdma/cxgb4-abi.h
5417
5418 CXGB4VF ETHERNET DRIVER (CXGB4VF)
5419 M:      Raju Rangoju <rajur@chelsio.com>
5420 L:      netdev@vger.kernel.org
5421 S:      Supported
5422 W:      http://www.chelsio.com
5423 F:      drivers/net/ethernet/chelsio/cxgb4vf/
5424
5425 CXL (IBM Coherent Accelerator Processor Interface CAPI) DRIVER
5426 M:      Frederic Barrat <fbarrat@linux.ibm.com>
5427 M:      Andrew Donnellan <ajd@linux.ibm.com>
5428 L:      linuxppc-dev@lists.ozlabs.org
5429 S:      Supported
5430 F:      Documentation/ABI/testing/sysfs-class-cxl
5431 F:      Documentation/powerpc/cxl.rst
5432 F:      arch/powerpc/platforms/powernv/pci-cxl.c
5433 F:      drivers/misc/cxl/
5434 F:      include/misc/cxl*
5435 F:      include/uapi/misc/cxl.h
5436
5437 CXLFLASH (IBM Coherent Accelerator Processor Interface CAPI Flash) SCSI DRIVER
5438 M:      Manoj N. Kumar <manoj@linux.ibm.com>
5439 M:      Matthew R. Ochs <mrochs@linux.ibm.com>
5440 M:      Uma Krishnan <ukrishn@linux.ibm.com>
5441 L:      linux-scsi@vger.kernel.org
5442 S:      Supported
5443 F:      Documentation/powerpc/cxlflash.rst
5444 F:      drivers/scsi/cxlflash/
5445 F:      include/uapi/scsi/cxlflash_ioctl.h
5446
5447 CYBERPRO FB DRIVER
5448 M:      Russell King <linux@armlinux.org.uk>
5449 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5450 S:      Maintained
5451 W:      http://www.armlinux.org.uk/
5452 F:      drivers/video/fbdev/cyber2000fb.*
5453
5454 CYCLADES PC300 DRIVER
5455 S:      Orphan
5456 F:      drivers/net/wan/pc300*
5457
5458 CYPRESS_FIRMWARE MEDIA DRIVER
5459 M:      Antti Palosaari <crope@iki.fi>
5460 L:      linux-media@vger.kernel.org
5461 S:      Maintained
5462 W:      https://linuxtv.org
5463 W:      http://palosaari.fi/linux/
5464 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5465 T:      git git://linuxtv.org/anttip/media_tree.git
5466 F:      drivers/media/common/cypress_firmware*
5467
5468 CYPRESS CY8CTMA140 TOUCHSCREEN DRIVER
5469 M:      Linus Walleij <linus.walleij@linaro.org>
5470 L:      linux-input@vger.kernel.org
5471 S:      Maintained
5472 F:      drivers/input/touchscreen/cy8ctma140.c
5473
5474 CYPRESS STREETFIGHTER TOUCHKEYS DRIVER
5475 M:      Yassine Oudjana <y.oudjana@protonmail.com>
5476 L:      linux-input@vger.kernel.org
5477 S:      Maintained
5478 F:      Documentation/devicetree/bindings/input/cypress-sf.yaml
5479 F:      drivers/input/keyboard/cypress-sf.c
5480
5481 CYTTSP TOUCHSCREEN DRIVER
5482 M:      Linus Walleij <linus.walleij@linaro.org>
5483 L:      linux-input@vger.kernel.org
5484 S:      Maintained
5485 F:      drivers/input/touchscreen/cyttsp*
5486
5487 D-LINK DIR-685 TOUCHKEYS DRIVER
5488 M:      Linus Walleij <linus.walleij@linaro.org>
5489 L:      linux-input@vger.kernel.org
5490 S:      Supported
5491 F:      drivers/input/keyboard/dlink-dir685-touchkeys.c
5492
5493 DALLAS/MAXIM DS1685-FAMILY REAL TIME CLOCK
5494 M:      Joshua Kinard <kumba@gentoo.org>
5495 S:      Maintained
5496 F:      drivers/rtc/rtc-ds1685.c
5497 F:      include/linux/rtc/ds1685.h
5498
5499 DAMA SLAVE for AX.25
5500 M:      Joerg Reuter <jreuter@yaina.de>
5501 L:      linux-hams@vger.kernel.org
5502 S:      Maintained
5503 W:      http://yaina.de/jreuter/
5504 W:      http://www.qsl.net/dl1bke/
5505 F:      net/ax25/af_ax25.c
5506 F:      net/ax25/ax25_dev.c
5507 F:      net/ax25/ax25_ds_*
5508 F:      net/ax25/ax25_in.c
5509 F:      net/ax25/ax25_out.c
5510 F:      net/ax25/ax25_timer.c
5511 F:      net/ax25/sysctl_net_ax25.c
5512
5513 DATA ACCESS MONITOR
5514 M:      SeongJae Park <sj@kernel.org>
5515 L:      damon@lists.linux.dev
5516 L:      linux-mm@kvack.org
5517 S:      Maintained
5518 F:      Documentation/ABI/testing/sysfs-kernel-mm-damon
5519 F:      Documentation/admin-guide/mm/damon/
5520 F:      Documentation/vm/damon/
5521 F:      include/linux/damon.h
5522 F:      include/trace/events/damon.h
5523 F:      mm/damon/
5524 F:      tools/testing/selftests/damon/
5525
5526 DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
5527 L:      netdev@vger.kernel.org
5528 S:      Orphan
5529 F:      Documentation/networking/device_drivers/ethernet/dec/dmfe.rst
5530 F:      drivers/net/ethernet/dec/tulip/dmfe.c
5531
5532 DC390/AM53C974 SCSI driver
5533 M:      Hannes Reinecke <hare@suse.com>
5534 L:      linux-scsi@vger.kernel.org
5535 S:      Maintained
5536 F:      drivers/scsi/am53c974.c
5537
5538 DC395x SCSI driver
5539 M:      Oliver Neukum <oliver@neukum.org>
5540 M:      Ali Akcaagac <aliakc@web.de>
5541 M:      Jamie Lenehan <lenehan@twibble.org>
5542 L:      dc395x@twibble.org
5543 S:      Maintained
5544 W:      http://twibble.org/dist/dc395x/
5545 W:      http://lists.twibble.org/mailman/listinfo/dc395x/
5546 F:      Documentation/scsi/dc395x.rst
5547 F:      drivers/scsi/dc395x.*
5548
5549 DCCP PROTOCOL
5550 L:      dccp@vger.kernel.org
5551 S:      Orphan
5552 W:      http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
5553 F:      include/linux/dccp.h
5554 F:      include/linux/tfrc.h
5555 F:      include/uapi/linux/dccp.h
5556 F:      net/dccp/
5557
5558 DECnet NETWORK LAYER
5559 L:      linux-decnet-user@lists.sourceforge.net
5560 S:      Orphan
5561 W:      http://linux-decnet.sourceforge.net
5562 F:      Documentation/networking/decnet.rst
5563 F:      net/decnet/
5564
5565 DECSTATION PLATFORM SUPPORT
5566 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
5567 L:      linux-mips@vger.kernel.org
5568 S:      Maintained
5569 W:      http://www.linux-mips.org/wiki/DECstation
5570 F:      arch/mips/dec/
5571 F:      arch/mips/include/asm/dec/
5572 F:      arch/mips/include/asm/mach-dec/
5573
5574 DEFXX FDDI NETWORK DRIVER
5575 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
5576 S:      Maintained
5577 F:      drivers/net/fddi/defxx.*
5578
5579 DEFZA FDDI NETWORK DRIVER
5580 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
5581 S:      Maintained
5582 F:      drivers/net/fddi/defza.*
5583
5584 DEINTERLACE DRIVERS FOR ALLWINNER H3
5585 M:      Jernej Skrabec <jernej.skrabec@gmail.com>
5586 L:      linux-media@vger.kernel.org
5587 S:      Maintained
5588 T:      git git://linuxtv.org/media_tree.git
5589 F:      Documentation/devicetree/bindings/media/allwinner,sun8i-h3-deinterlace.yaml
5590 F:      drivers/media/platform/sunxi/sun8i-di/
5591
5592 DELL LAPTOP DRIVER
5593 M:      Matthew Garrett <mjg59@srcf.ucam.org>
5594 M:      Pali Rohár <pali@kernel.org>
5595 L:      platform-driver-x86@vger.kernel.org
5596 S:      Maintained
5597 F:      drivers/platform/x86/dell/dell-laptop.c
5598
5599 DELL LAPTOP FREEFALL DRIVER
5600 M:      Pali Rohár <pali@kernel.org>
5601 S:      Maintained
5602 F:      drivers/platform/x86/dell/dell-smo8800.c
5603
5604 DELL LAPTOP RBTN DRIVER
5605 M:      Pali Rohár <pali@kernel.org>
5606 S:      Maintained
5607 F:      drivers/platform/x86/dell/dell-rbtn.*
5608
5609 DELL LAPTOP SMM DRIVER
5610 M:      Pali Rohár <pali@kernel.org>
5611 S:      Maintained
5612 F:      Documentation/ABI/obsolete/procfs-i8k
5613 F:      drivers/hwmon/dell-smm-hwmon.c
5614 F:      include/uapi/linux/i8k.h
5615
5616 DELL REMOTE BIOS UPDATE DRIVER
5617 M:      Stuart Hayes <stuart.w.hayes@gmail.com>
5618 L:      platform-driver-x86@vger.kernel.org
5619 S:      Maintained
5620 F:      drivers/platform/x86/dell/dell_rbu.c
5621
5622 DELL SMBIOS DRIVER
5623 M:      Pali Rohár <pali@kernel.org>
5624 L:      Dell.Client.Kernel@dell.com
5625 L:      platform-driver-x86@vger.kernel.org
5626 S:      Maintained
5627 F:      drivers/platform/x86/dell/dell-smbios.*
5628
5629 DELL SMBIOS SMM DRIVER
5630 L:      Dell.Client.Kernel@dell.com
5631 L:      platform-driver-x86@vger.kernel.org
5632 S:      Maintained
5633 F:      drivers/platform/x86/dell/dell-smbios-smm.c
5634
5635 DELL SMBIOS WMI DRIVER
5636 L:      Dell.Client.Kernel@dell.com
5637 L:      platform-driver-x86@vger.kernel.org
5638 S:      Maintained
5639 F:      drivers/platform/x86/dell/dell-smbios-wmi.c
5640 F:      tools/wmi/dell-smbios-example.c
5641
5642 DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
5643 M:      Stuart Hayes <stuart.w.hayes@gmail.com>
5644 L:      platform-driver-x86@vger.kernel.org
5645 S:      Maintained
5646 F:      Documentation/driver-api/dcdbas.rst
5647 F:      drivers/platform/x86/dell/dcdbas.*
5648
5649 DELL WMI DESCRIPTOR DRIVER
5650 L:      Dell.Client.Kernel@dell.com
5651 S:      Maintained
5652 F:      drivers/platform/x86/dell/dell-wmi-descriptor.c
5653
5654 DELL WMI SYSMAN DRIVER
5655 M:      Divya Bharathi <divya.bharathi@dell.com>
5656 M:      Prasanth Ksr <prasanth.ksr@dell.com>
5657 L:      Dell.Client.Kernel@dell.com
5658 L:      platform-driver-x86@vger.kernel.org
5659 S:      Maintained
5660 F:      Documentation/ABI/testing/sysfs-class-firmware-attributes
5661 F:      drivers/platform/x86/dell/dell-wmi-sysman/
5662
5663 DELL WMI NOTIFICATIONS DRIVER
5664 M:      Matthew Garrett <mjg59@srcf.ucam.org>
5665 M:      Pali Rohár <pali@kernel.org>
5666 S:      Maintained
5667 F:      drivers/platform/x86/dell/dell-wmi-base.c
5668
5669 DELL WMI HARDWARE PRIVACY SUPPORT
5670 M:      Perry Yuan <Perry.Yuan@dell.com>
5671 L:      Dell.Client.Kernel@dell.com
5672 L:      platform-driver-x86@vger.kernel.org
5673 S:      Maintained
5674 F:      drivers/platform/x86/dell/dell-wmi-privacy.c
5675
5676 DELTA ST MEDIA DRIVER
5677 M:      Hugues Fruchet <hugues.fruchet@foss.st.com>
5678 L:      linux-media@vger.kernel.org
5679 S:      Supported
5680 W:      https://linuxtv.org
5681 T:      git git://linuxtv.org/media_tree.git
5682 F:      drivers/media/platform/st/sti/delta
5683
5684 DELTA AHE-50DC FAN CONTROL MODULE DRIVER
5685 M:      Zev Weiss <zev@bewilderbeest.net>
5686 L:      linux-hwmon@vger.kernel.org
5687 S:      Maintained
5688 F:      drivers/hwmon/pmbus/delta-ahe50dc-fan.c
5689
5690 DELTA DPS920AB PSU DRIVER
5691 M:      Robert Marko <robert.marko@sartura.hr>
5692 L:      linux-hwmon@vger.kernel.org
5693 S:      Maintained
5694 F:      Documentation/hwmon/dps920ab.rst
5695 F:      drivers/hwmon/pmbus/dps920ab.c
5696
5697 DELTA NETWORKS TN48M CPLD DRIVERS
5698 M:      Robert Marko <robert.marko@sartura.hr>
5699 S:      Maintained
5700 F:      Documentation/devicetree/bindings/gpio/delta,tn48m-gpio.yaml
5701 F:      Documentation/devicetree/bindings/mfd/delta,tn48m-cpld.yaml
5702 F:      Documentation/devicetree/bindings/reset/delta,tn48m-reset.yaml
5703 F:      drivers/gpio/gpio-tn48m.c
5704 F:      include/dt-bindings/reset/delta,tn48m-reset.h
5705
5706 DENALI NAND DRIVER
5707 L:      linux-mtd@lists.infradead.org
5708 S:      Orphan
5709 F:      drivers/mtd/nand/raw/denali*
5710
5711 DESIGNWARE EDMA CORE IP DRIVER
5712 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
5713 L:      dmaengine@vger.kernel.org
5714 S:      Maintained
5715 F:      drivers/dma/dw-edma/
5716 F:      include/linux/dma/edma.h
5717
5718 DESIGNWARE XDATA IP DRIVER
5719 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
5720 L:      linux-pci@vger.kernel.org
5721 S:      Maintained
5722 F:      Documentation/misc-devices/dw-xdata-pcie.rst
5723 F:      drivers/misc/dw-xdata-pcie.c
5724
5725 DESIGNWARE USB2 DRD IP DRIVER
5726 M:      Minas Harutyunyan <hminas@synopsys.com>
5727 L:      linux-usb@vger.kernel.org
5728 S:      Maintained
5729 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
5730 F:      drivers/usb/dwc2/
5731
5732 DESIGNWARE USB3 DRD IP DRIVER
5733 M:      Felipe Balbi <balbi@kernel.org>
5734 L:      linux-usb@vger.kernel.org
5735 S:      Maintained
5736 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
5737 F:      drivers/usb/dwc3/
5738
5739 DEVANTECH SRF ULTRASONIC RANGER IIO DRIVER
5740 M:      Andreas Klinger <ak@it-klinger.de>
5741 L:      linux-iio@vger.kernel.org
5742 S:      Maintained
5743 F:      Documentation/ABI/testing/sysfs-bus-iio-distance-srf08
5744 F:      drivers/iio/proximity/srf*.c
5745
5746 DEVICE COREDUMP (DEV_COREDUMP)
5747 M:      Johannes Berg <johannes@sipsolutions.net>
5748 L:      linux-kernel@vger.kernel.org
5749 S:      Maintained
5750 F:      drivers/base/devcoredump.c
5751 F:      include/linux/devcoredump.h
5752
5753 DEVICE DEPENDENCY HELPER SCRIPT
5754 M:      Saravana Kannan <saravanak@google.com>
5755 L:      linux-kernel@vger.kernel.org
5756 S:      Maintained
5757 F:      scripts/dev-needs.sh
5758
5759 DEVICE DIRECT ACCESS (DAX)
5760 M:      Dan Williams <dan.j.williams@intel.com>
5761 M:      Vishal Verma <vishal.l.verma@intel.com>
5762 M:      Dave Jiang <dave.jiang@intel.com>
5763 L:      nvdimm@lists.linux.dev
5764 S:      Supported
5765 F:      drivers/dax/
5766
5767 DEVICE FREQUENCY (DEVFREQ)
5768 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
5769 M:      Kyungmin Park <kyungmin.park@samsung.com>
5770 M:      Chanwoo Choi <cw00.choi@samsung.com>
5771 L:      linux-pm@vger.kernel.org
5772 S:      Maintained
5773 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
5774 F:      Documentation/devicetree/bindings/devfreq/
5775 F:      drivers/devfreq/
5776 F:      include/linux/devfreq.h
5777 F:      include/trace/events/devfreq.h
5778
5779 DEVICE FREQUENCY EVENT (DEVFREQ-EVENT)
5780 M:      Chanwoo Choi <cw00.choi@samsung.com>
5781 L:      linux-pm@vger.kernel.org
5782 S:      Supported
5783 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
5784 F:      Documentation/devicetree/bindings/devfreq/event/
5785 F:      drivers/devfreq/devfreq-event.c
5786 F:      drivers/devfreq/event/
5787 F:      include/dt-bindings/pmu/exynos_ppmu.h
5788 F:      include/linux/devfreq-event.h
5789
5790 DEVICE NUMBER REGISTRY
5791 M:      Torben Mathiasen <device@lanana.org>
5792 S:      Maintained
5793 W:      http://lanana.org/docs/device-list/index.html
5794
5795 DEVICE RESOURCE MANAGEMENT HELPERS
5796 M:      Hans de Goede <hdegoede@redhat.com>
5797 R:      Matti Vaittinen <mazziesaccount@gmail.com>
5798 S:      Maintained
5799 F:      include/linux/devm-helpers.h
5800
5801 DEVICE-MAPPER  (LVM)
5802 M:      Alasdair Kergon <agk@redhat.com>
5803 M:      Mike Snitzer <snitzer@kernel.org>
5804 M:      dm-devel@redhat.com
5805 L:      dm-devel@redhat.com
5806 S:      Maintained
5807 W:      http://sources.redhat.com/dm
5808 Q:      http://patchwork.kernel.org/project/dm-devel/list/
5809 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git
5810 T:      quilt http://people.redhat.com/agk/patches/linux/editing/
5811 F:      Documentation/admin-guide/device-mapper/
5812 F:      drivers/md/Kconfig
5813 F:      drivers/md/Makefile
5814 F:      drivers/md/dm*
5815 F:      drivers/md/persistent-data/
5816 F:      include/linux/device-mapper.h
5817 F:      include/linux/dm-*.h
5818 F:      include/uapi/linux/dm-*.h
5819
5820 DEVLINK
5821 M:      Jiri Pirko <jiri@nvidia.com>
5822 L:      netdev@vger.kernel.org
5823 S:      Supported
5824 F:      Documentation/networking/devlink
5825 F:      include/net/devlink.h
5826 F:      include/uapi/linux/devlink.h
5827 F:      net/core/devlink.c
5828
5829 DH ELECTRONICS IMX6 DHCOM BOARD SUPPORT
5830 M:      Christoph Niedermaier <cniedermaier@dh-electronics.com>
5831 L:      kernel@dh-electronics.com
5832 S:      Maintained
5833 F:      arch/arm/boot/dts/imx6*-dhcom-*
5834
5835 DH ELECTRONICS STM32MP1 DHCOM/DHCOR BOARD SUPPORT
5836 M:      Marek Vasut <marex@denx.de>
5837 L:      kernel@dh-electronics.com
5838 S:      Maintained
5839 F:      arch/arm/boot/dts/stm32mp1*-dhcom-*
5840 F:      arch/arm/boot/dts/stm32mp1*-dhcor-*
5841
5842 DIALOG SEMICONDUCTOR DRIVERS
5843 M:      Support Opensource <support.opensource@diasemi.com>
5844 S:      Supported
5845 W:      http://www.dialog-semiconductor.com/products
5846 F:      Documentation/devicetree/bindings/input/da90??-onkey.txt
5847 F:      Documentation/devicetree/bindings/input/dlg,da72??.txt
5848 F:      Documentation/devicetree/bindings/mfd/da90*.txt
5849 F:      Documentation/devicetree/bindings/regulator/dlg,da9*.yaml
5850 F:      Documentation/devicetree/bindings/regulator/da92*.txt
5851 F:      Documentation/devicetree/bindings/regulator/slg51000.txt
5852 F:      Documentation/devicetree/bindings/sound/da[79]*.txt
5853 F:      Documentation/devicetree/bindings/thermal/da90??-thermal.txt
5854 F:      Documentation/devicetree/bindings/watchdog/da90??-wdt.txt
5855 F:      Documentation/hwmon/da90??.rst
5856 F:      drivers/gpio/gpio-da90??.c
5857 F:      drivers/hwmon/da90??-hwmon.c
5858 F:      drivers/iio/adc/da91??-*.c
5859 F:      drivers/input/misc/da72??.[ch]
5860 F:      drivers/input/misc/da90??_onkey.c
5861 F:      drivers/input/touchscreen/da9052_tsi.c
5862 F:      drivers/leds/leds-da90??.c
5863 F:      drivers/mfd/da903x.c
5864 F:      drivers/mfd/da90??-*.c
5865 F:      drivers/mfd/da91??-*.c
5866 F:      drivers/pinctrl/pinctrl-da90??.c
5867 F:      drivers/power/supply/da9052-battery.c
5868 F:      drivers/power/supply/da91??-*.c
5869 F:      drivers/regulator/da9???-regulator.[ch]
5870 F:      drivers/regulator/slg51000-regulator.[ch]
5871 F:      drivers/rtc/rtc-da90??.c
5872 F:      drivers/thermal/da90??-thermal.c
5873 F:      drivers/video/backlight/da90??_bl.c
5874 F:      drivers/watchdog/da90??_wdt.c
5875 F:      include/dt-bindings/regulator/dlg,da9*-regulator.h
5876 F:      include/linux/mfd/da903x.h
5877 F:      include/linux/mfd/da9052/
5878 F:      include/linux/mfd/da9055/
5879 F:      include/linux/mfd/da9062/
5880 F:      include/linux/mfd/da9063/
5881 F:      include/linux/mfd/da9150/
5882 F:      include/linux/regulator/da9211.h
5883 F:      include/sound/da[79]*.h
5884 F:      sound/soc/codecs/da[79]*.[ch]
5885
5886 DIAMOND SYSTEMS GPIO-MM GPIO DRIVER
5887 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
5888 L:      linux-gpio@vger.kernel.org
5889 S:      Maintained
5890 F:      drivers/gpio/gpio-gpio-mm.c
5891
5892 DIOLAN U2C-12 I2C DRIVER
5893 M:      Guenter Roeck <linux@roeck-us.net>
5894 L:      linux-i2c@vger.kernel.org
5895 S:      Maintained
5896 F:      drivers/i2c/busses/i2c-diolan-u2c.c
5897
5898 DIRECTORY NOTIFICATION (DNOTIFY)
5899 M:      Jan Kara <jack@suse.cz>
5900 R:      Amir Goldstein <amir73il@gmail.com>
5901 L:      linux-fsdevel@vger.kernel.org
5902 S:      Maintained
5903 F:      Documentation/filesystems/dnotify.rst
5904 F:      fs/notify/dnotify/
5905 F:      include/linux/dnotify.h
5906
5907 DISK GEOMETRY AND PARTITION HANDLING
5908 M:      Andries Brouwer <aeb@cwi.nl>
5909 S:      Maintained
5910 W:      http://www.win.tue.nl/~aeb/linux/Large-Disk.html
5911 W:      http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
5912 W:      http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
5913
5914 DISKQUOTA
5915 M:      Jan Kara <jack@suse.com>
5916 S:      Maintained
5917 F:      Documentation/filesystems/quota.rst
5918 F:      fs/quota/
5919 F:      include/linux/quota*.h
5920 F:      include/uapi/linux/quota*.h
5921
5922 DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
5923 M:      Bernie Thompson <bernie@plugable.com>
5924 L:      linux-fbdev@vger.kernel.org
5925 S:      Maintained
5926 W:      http://plugable.com/category/projects/udlfb/
5927 F:      Documentation/fb/udlfb.rst
5928 F:      drivers/video/fbdev/udlfb.c
5929 F:      include/video/udlfb.h
5930
5931 DISTRIBUTED LOCK MANAGER (DLM)
5932 M:      Christine Caulfield <ccaulfie@redhat.com>
5933 M:      David Teigland <teigland@redhat.com>
5934 L:      cluster-devel@redhat.com
5935 S:      Supported
5936 W:      http://sources.redhat.com/cluster/
5937 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/linux-dlm.git
5938 F:      fs/dlm/
5939
5940 DMA BUFFER SHARING FRAMEWORK
5941 M:      Sumit Semwal <sumit.semwal@linaro.org>
5942 M:      Christian König <christian.koenig@amd.com>
5943 L:      linux-media@vger.kernel.org
5944 L:      dri-devel@lists.freedesktop.org
5945 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
5946 S:      Maintained
5947 T:      git git://anongit.freedesktop.org/drm/drm-misc
5948 F:      Documentation/driver-api/dma-buf.rst
5949 F:      drivers/dma-buf/
5950 F:      include/linux/*fence.h
5951 F:      include/linux/dma-buf.h
5952 F:      include/linux/dma-resv.h
5953 K:      \bdma_(?:buf|fence|resv)\b
5954
5955 DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
5956 M:      Vinod Koul <vkoul@kernel.org>
5957 L:      dmaengine@vger.kernel.org
5958 S:      Maintained
5959 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
5960 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vkoul/dmaengine.git
5961 F:      Documentation/devicetree/bindings/dma/
5962 F:      Documentation/driver-api/dmaengine/
5963 F:      drivers/dma/
5964 F:      include/linux/dma/
5965 F:      include/linux/dmaengine.h
5966 F:      include/linux/of_dma.h
5967
5968 DMA MAPPING HELPERS
5969 M:      Christoph Hellwig <hch@lst.de>
5970 M:      Marek Szyprowski <m.szyprowski@samsung.com>
5971 R:      Robin Murphy <robin.murphy@arm.com>
5972 L:      iommu@lists.linux-foundation.org
5973 S:      Supported
5974 W:      http://git.infradead.org/users/hch/dma-mapping.git
5975 T:      git git://git.infradead.org/users/hch/dma-mapping.git
5976 F:      include/asm-generic/dma-mapping.h
5977 F:      include/linux/dma-direct.h
5978 F:      include/linux/dma-mapping.h
5979 F:      include/linux/dma-map-ops.h
5980 F:      kernel/dma/
5981
5982 DMA MAPPING BENCHMARK
5983 M:      Xiang Chen <chenxiang66@hisilicon.com>
5984 L:      iommu@lists.linux-foundation.org
5985 F:      kernel/dma/map_benchmark.c
5986 F:      tools/testing/selftests/dma/
5987
5988 DMA-BUF HEAPS FRAMEWORK
5989 M:      Sumit Semwal <sumit.semwal@linaro.org>
5990 R:      Benjamin Gaignard <benjamin.gaignard@collabora.com>
5991 R:      Liam Mark <lmark@codeaurora.org>
5992 R:      Laura Abbott <labbott@redhat.com>
5993 R:      Brian Starkey <Brian.Starkey@arm.com>
5994 R:      John Stultz <jstultz@google.com>
5995 L:      linux-media@vger.kernel.org
5996 L:      dri-devel@lists.freedesktop.org
5997 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
5998 S:      Maintained
5999 T:      git git://anongit.freedesktop.org/drm/drm-misc
6000 F:      drivers/dma-buf/dma-heap.c
6001 F:      drivers/dma-buf/heaps/*
6002 F:      include/linux/dma-heap.h
6003 F:      include/uapi/linux/dma-heap.h
6004
6005 DMC FREQUENCY DRIVER FOR SAMSUNG EXYNOS5422
6006 M:      Lukasz Luba <lukasz.luba@arm.com>
6007 L:      linux-pm@vger.kernel.org
6008 L:      linux-samsung-soc@vger.kernel.org
6009 S:      Maintained
6010 F:      Documentation/devicetree/bindings/memory-controllers/samsung,exynos5422-dmc.yaml
6011 F:      drivers/memory/samsung/exynos5422-dmc.c
6012
6013 DME1737 HARDWARE MONITOR DRIVER
6014 M:      Juerg Haefliger <juergh@gmail.com>
6015 L:      linux-hwmon@vger.kernel.org
6016 S:      Maintained
6017 F:      Documentation/hwmon/dme1737.rst
6018 F:      drivers/hwmon/dme1737.c
6019
6020 DMI/SMBIOS SUPPORT
6021 M:      Jean Delvare <jdelvare@suse.com>
6022 S:      Maintained
6023 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jdelvare/staging.git dmi-for-next
6024 F:      Documentation/ABI/testing/sysfs-firmware-dmi-tables
6025 F:      drivers/firmware/dmi-id.c
6026 F:      drivers/firmware/dmi_scan.c
6027 F:      include/linux/dmi.h
6028
6029 DOCUMENTATION
6030 M:      Jonathan Corbet <corbet@lwn.net>
6031 L:      linux-doc@vger.kernel.org
6032 S:      Maintained
6033 P:      Documentation/doc-guide/maintainer-profile.rst
6034 T:      git git://git.lwn.net/linux.git docs-next
6035 F:      Documentation/
6036 F:      scripts/documentation-file-ref-check
6037 F:      scripts/kernel-doc
6038 F:      scripts/sphinx-pre-install
6039 X:      Documentation/ABI/
6040 X:      Documentation/admin-guide/media/
6041 X:      Documentation/devicetree/
6042 X:      Documentation/driver-api/media/
6043 X:      Documentation/firmware-guide/acpi/
6044 X:      Documentation/i2c/
6045 X:      Documentation/power/
6046 X:      Documentation/spi/
6047 X:      Documentation/userspace-api/media/
6048
6049 DOCUMENTATION REPORTING ISSUES
6050 M:      Thorsten Leemhuis <linux@leemhuis.info>
6051 L:      linux-doc@vger.kernel.org
6052 S:      Maintained
6053 F:      Documentation/admin-guide/reporting-issues.rst
6054
6055 DOCUMENTATION SCRIPTS
6056 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6057 L:      linux-doc@vger.kernel.org
6058 S:      Maintained
6059 F:      Documentation/sphinx/parse-headers.pl
6060 F:      scripts/documentation-file-ref-check
6061 F:      scripts/sphinx-pre-install
6062
6063 DOCUMENTATION/ITALIAN
6064 M:      Federico Vaga <federico.vaga@vaga.pv.it>
6065 L:      linux-doc@vger.kernel.org
6066 S:      Maintained
6067 F:      Documentation/translations/it_IT
6068
6069 DOCUMENTATION/JAPANESE
6070 R:      Akira Yokosawa <akiyks@gmail.com>
6071 L:      linux-doc@vger.kernel.org
6072 S:      Maintained
6073 F:      Documentation/translations/ja_JP
6074
6075 DONGWOON DW9714 LENS VOICE COIL DRIVER
6076 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
6077 L:      linux-media@vger.kernel.org
6078 S:      Maintained
6079 T:      git git://linuxtv.org/media_tree.git
6080 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9714.txt
6081 F:      drivers/media/i2c/dw9714.c
6082
6083 DONGWOON DW9768 LENS VOICE COIL DRIVER
6084 M:      Dongchun Zhu <dongchun.zhu@mediatek.com>
6085 L:      linux-media@vger.kernel.org
6086 S:      Maintained
6087 T:      git git://linuxtv.org/media_tree.git
6088 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9768.yaml
6089 F:      drivers/media/i2c/dw9768.c
6090
6091 DONGWOON DW9807 LENS VOICE COIL DRIVER
6092 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
6093 L:      linux-media@vger.kernel.org
6094 S:      Maintained
6095 T:      git git://linuxtv.org/media_tree.git
6096 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9807-vcm.yaml
6097 F:      drivers/media/i2c/dw9807-vcm.c
6098
6099 DOUBLETALK DRIVER
6100 M:      "James R. Van Zandt" <jrv@vanzandt.mv.com>
6101 L:      blinux-list@redhat.com
6102 S:      Maintained
6103 F:      drivers/char/dtlk.c
6104 F:      include/linux/dtlk.h
6105
6106 DPAA2 DATAPATH I/O (DPIO) DRIVER
6107 M:      Roy Pledge <Roy.Pledge@nxp.com>
6108 L:      linux-kernel@vger.kernel.org
6109 S:      Maintained
6110 F:      drivers/soc/fsl/dpio
6111
6112 DPAA2 ETHERNET DRIVER
6113 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
6114 L:      netdev@vger.kernel.org
6115 S:      Maintained
6116 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/ethernet-driver.rst
6117 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/mac-phy-support.rst
6118 F:      drivers/net/ethernet/freescale/dpaa2/Kconfig
6119 F:      drivers/net/ethernet/freescale/dpaa2/Makefile
6120 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-eth*
6121 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-mac*
6122 F:      drivers/net/ethernet/freescale/dpaa2/dpkg.h
6123 F:      drivers/net/ethernet/freescale/dpaa2/dpmac*
6124 F:      drivers/net/ethernet/freescale/dpaa2/dpni*
6125
6126 DPAA2 ETHERNET SWITCH DRIVER
6127 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
6128 L:      netdev@vger.kernel.org
6129 S:      Maintained
6130 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/switch-driver.rst
6131 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-switch*
6132 F:      drivers/net/ethernet/freescale/dpaa2/dpsw*
6133
6134 DPT_I2O SCSI RAID DRIVER
6135 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
6136 L:      linux-scsi@vger.kernel.org
6137 S:      Maintained
6138 W:      http://www.adaptec.com/
6139 F:      drivers/scsi/dpt*
6140 F:      drivers/scsi/dpt/
6141
6142 DRBD DRIVER
6143 M:      Philipp Reisner <philipp.reisner@linbit.com>
6144 M:      Lars Ellenberg <lars.ellenberg@linbit.com>
6145 M:      Christoph Böhmwalder <christoph.boehmwalder@linbit.com>
6146 L:      drbd-dev@lists.linbit.com
6147 S:      Supported
6148 W:      http://www.drbd.org
6149 T:      git git://git.linbit.com/linux-drbd.git
6150 T:      git git://git.linbit.com/drbd-8.4.git
6151 F:      Documentation/admin-guide/blockdev/
6152 F:      drivers/block/drbd/
6153 F:      lib/lru_cache.c
6154
6155 DRIVER COMPONENT FRAMEWORK
6156 L:      dri-devel@lists.freedesktop.org
6157 F:      drivers/base/component.c
6158 F:      include/linux/component.h
6159
6160 DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS
6161 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
6162 R:      "Rafael J. Wysocki" <rafael@kernel.org>
6163 S:      Supported
6164 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
6165 F:      Documentation/core-api/kobject.rst
6166 F:      drivers/base/
6167 F:      fs/debugfs/
6168 F:      fs/sysfs/
6169 F:      include/linux/debugfs.h
6170 F:      include/linux/kobj*
6171 F:      lib/kobj*
6172
6173 DRIVERS FOR OMAP ADAPTIVE VOLTAGE SCALING (AVS)
6174 M:      Nishanth Menon <nm@ti.com>
6175 L:      linux-pm@vger.kernel.org
6176 S:      Maintained
6177 F:      drivers/soc/ti/smartreflex.c
6178 F:      include/linux/power/smartreflex.h
6179
6180 DRM DRIVER FOR ALLWINNER DE2 AND DE3 ENGINE
6181 M:      Maxime Ripard <mripard@kernel.org>
6182 M:      Chen-Yu Tsai <wens@csie.org>
6183 R:      Jernej Skrabec <jernej.skrabec@gmail.com>
6184 L:      dri-devel@lists.freedesktop.org
6185 S:      Supported
6186 T:      git git://anongit.freedesktop.org/drm/drm-misc
6187 F:      drivers/gpu/drm/sun4i/sun8i*
6188
6189 DRM DRIVER FOR ARM PL111 CLCD
6190 M:      Emma Anholt <emma@anholt.net>
6191 S:      Supported
6192 T:      git git://anongit.freedesktop.org/drm/drm-misc
6193 F:      drivers/gpu/drm/pl111/
6194
6195 DRM DRIVER FOR ARM VERSATILE TFT PANELS
6196 M:      Linus Walleij <linus.walleij@linaro.org>
6197 S:      Maintained
6198 T:      git git://anongit.freedesktop.org/drm/drm-misc
6199 F:      Documentation/devicetree/bindings/display/panel/arm,versatile-tft-panel.yaml
6200 F:      drivers/gpu/drm/panel/panel-arm-versatile.c
6201
6202 DRM DRIVER FOR ASPEED BMC GFX
6203 M:      Joel Stanley <joel@jms.id.au>
6204 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
6205 S:      Supported
6206 T:      git git://anongit.freedesktop.org/drm/drm-misc
6207 F:      Documentation/devicetree/bindings/gpu/aspeed-gfx.txt
6208 F:      drivers/gpu/drm/aspeed/
6209
6210 DRM DRIVER FOR AST SERVER GRAPHICS CHIPS
6211 M:      Dave Airlie <airlied@redhat.com>
6212 R:      Thomas Zimmermann <tzimmermann@suse.de>
6213 L:      dri-devel@lists.freedesktop.org
6214 S:      Supported
6215 T:      git git://anongit.freedesktop.org/drm/drm-misc
6216 F:      drivers/gpu/drm/ast/
6217
6218 DRM DRIVER FOR BOCHS VIRTUAL GPU
6219 M:      Gerd Hoffmann <kraxel@redhat.com>
6220 L:      virtualization@lists.linux-foundation.org
6221 S:      Maintained
6222 T:      git git://anongit.freedesktop.org/drm/drm-misc
6223 F:      drivers/gpu/drm/tiny/bochs.c
6224
6225 DRM DRIVER FOR BOE HIMAX8279D PANELS
6226 M:      Jerry Han <hanxu5@huaqin.corp-partner.google.com>
6227 S:      Maintained
6228 F:      Documentation/devicetree/bindings/display/panel/boe,himax8279d.yaml
6229 F:      drivers/gpu/drm/panel/panel-boe-himax8279d.c
6230
6231 DRM DRIVER FOR CHIPONE ICN6211 MIPI-DSI to RGB CONVERTER BRIDGE
6232 M:      Jagan Teki <jagan@amarulasolutions.com>
6233 S:      Maintained
6234 F:      Documentation/devicetree/bindings/display/bridge/chipone,icn6211.yaml
6235 F:      drivers/gpu/drm/bridge/chipone-icn6211.c
6236
6237 DRM DRIVER FOR FARADAY TVE200 TV ENCODER
6238 M:      Linus Walleij <linus.walleij@linaro.org>
6239 S:      Maintained
6240 T:      git git://anongit.freedesktop.org/drm/drm-misc
6241 F:      drivers/gpu/drm/tve200/
6242
6243 DRM DRIVER FOR FEIXIN K101 IM2BA02 MIPI-DSI LCD PANELS
6244 M:      Icenowy Zheng <icenowy@aosc.io>
6245 S:      Maintained
6246 F:      Documentation/devicetree/bindings/display/panel/feixin,k101-im2ba02.yaml
6247 F:      drivers/gpu/drm/panel/panel-feixin-k101-im2ba02.c
6248
6249 DRM DRIVER FOR FEIYANG FY07024DI26A30-D MIPI-DSI LCD PANELS
6250 M:      Jagan Teki <jagan@amarulasolutions.com>
6251 S:      Maintained
6252 F:      Documentation/devicetree/bindings/display/panel/feiyang,fy07024di26a30d.yaml
6253 F:      drivers/gpu/drm/panel/panel-feiyang-fy07024di26a30d.c
6254
6255 DRM DRIVER FOR GENERIC USB DISPLAY
6256 M:      Noralf Trønnes <noralf@tronnes.org>
6257 S:      Maintained
6258 W:      https://github.com/notro/gud/wiki
6259 T:      git git://anongit.freedesktop.org/drm/drm-misc
6260 F:      drivers/gpu/drm/gud/
6261 F:      include/drm/gud.h
6262
6263 DRM DRIVER FOR GRAIN MEDIA GM12U320 PROJECTORS
6264 M:      Hans de Goede <hdegoede@redhat.com>
6265 S:      Maintained
6266 T:      git git://anongit.freedesktop.org/drm/drm-misc
6267 F:      drivers/gpu/drm/tiny/gm12u320.c
6268
6269 DRM DRIVER FOR HX8357D PANELS
6270 M:      Emma Anholt <emma@anholt.net>
6271 S:      Maintained
6272 T:      git git://anongit.freedesktop.org/drm/drm-misc
6273 F:      Documentation/devicetree/bindings/display/himax,hx8357d.txt
6274 F:      drivers/gpu/drm/tiny/hx8357d.c
6275
6276 DRM DRIVER FOR ILITEK ILI9225 PANELS
6277 M:      David Lechner <david@lechnology.com>
6278 S:      Maintained
6279 T:      git git://anongit.freedesktop.org/drm/drm-misc
6280 F:      Documentation/devicetree/bindings/display/ilitek,ili9225.txt
6281 F:      drivers/gpu/drm/tiny/ili9225.c
6282
6283 DRM DRIVER FOR ILITEK ILI9486 PANELS
6284 M:      Kamlesh Gurudasani <kamlesh.gurudasani@gmail.com>
6285 S:      Maintained
6286 T:      git git://anongit.freedesktop.org/drm/drm-misc
6287 F:      Documentation/devicetree/bindings/display/ilitek,ili9486.yaml
6288 F:      drivers/gpu/drm/tiny/ili9486.c
6289
6290 DRM DRIVER FOR INTEL I810 VIDEO CARDS
6291 S:      Orphan / Obsolete
6292 F:      drivers/gpu/drm/i810/
6293 F:      include/uapi/drm/i810_drm.h
6294
6295 DRM DRIVER FOR LVDS PANELS
6296 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6297 L:      dri-devel@lists.freedesktop.org
6298 T:      git git://anongit.freedesktop.org/drm/drm-misc
6299 S:      Maintained
6300 F:      drivers/gpu/drm/panel/panel-lvds.c
6301 F:      Documentation/devicetree/bindings/display/lvds.yaml
6302 F:      Documentation/devicetree/bindings/display/panel/panel-lvds.yaml
6303
6304 DRM DRIVER FOR MANTIX MLAF057WE51 PANELS
6305 M:      Guido Günther <agx@sigxcpu.org>
6306 R:      Purism Kernel Team <kernel@puri.sm>
6307 S:      Maintained
6308 F:      Documentation/devicetree/bindings/display/panel/mantix,mlaf057we51-x.yaml
6309 F:      drivers/gpu/drm/panel/panel-mantix-mlaf057we51.c
6310
6311 DRM DRIVER FOR MATROX G200/G400 GRAPHICS CARDS
6312 S:      Orphan / Obsolete
6313 F:      drivers/gpu/drm/mga/
6314 F:      include/uapi/drm/mga_drm.h
6315
6316 DRM DRIVER FOR MGA G200 GRAPHICS CHIPS
6317 M:      Dave Airlie <airlied@redhat.com>
6318 R:      Thomas Zimmermann <tzimmermann@suse.de>
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/mgag200/
6323
6324 DRM DRIVER FOR MI0283QT
6325 M:      Noralf Trønnes <noralf@tronnes.org>
6326 S:      Maintained
6327 T:      git git://anongit.freedesktop.org/drm/drm-misc
6328 F:      Documentation/devicetree/bindings/display/multi-inno,mi0283qt.txt
6329 F:      drivers/gpu/drm/tiny/mi0283qt.c
6330
6331 DRM DRIVER FOR MIPI DBI compatible panels
6332 M:      Noralf Trønnes <noralf@tronnes.org>
6333 S:      Maintained
6334 W:      https://github.com/notro/panel-mipi-dbi/wiki
6335 T:      git git://anongit.freedesktop.org/drm/drm-misc
6336 F:      Documentation/devicetree/bindings/display/panel/panel-mipi-dbi-spi.yaml
6337 F:      drivers/gpu/drm/tiny/panel-mipi-dbi.c
6338
6339 DRM DRIVER FOR MSM ADRENO GPU
6340 M:      Rob Clark <robdclark@gmail.com>
6341 M:      Abhinav Kumar <quic_abhinavk@quicinc.com>
6342 M:      Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
6343 R:      Sean Paul <sean@poorly.run>
6344 L:      linux-arm-msm@vger.kernel.org
6345 L:      dri-devel@lists.freedesktop.org
6346 L:      freedreno@lists.freedesktop.org
6347 S:      Maintained
6348 T:      git https://gitlab.freedesktop.org/drm/msm.git
6349 F:      Documentation/devicetree/bindings/display/msm/
6350 F:      drivers/gpu/drm/msm/
6351 F:      include/uapi/drm/msm_drm.h
6352
6353 DRM DRIVER FOR NOVATEK NT35510 PANELS
6354 M:      Linus Walleij <linus.walleij@linaro.org>
6355 S:      Maintained
6356 T:      git git://anongit.freedesktop.org/drm/drm-misc
6357 F:      Documentation/devicetree/bindings/display/panel/novatek,nt35510.yaml
6358 F:      drivers/gpu/drm/panel/panel-novatek-nt35510.c
6359
6360 DRM DRIVER FOR NOVATEK NT35560 PANELS
6361 M:      Linus Walleij <linus.walleij@linaro.org>
6362 S:      Maintained
6363 T:      git git://anongit.freedesktop.org/drm/drm-misc
6364 F:      Documentation/devicetree/bindings/display/panel/sony,acx424akp.yaml
6365 F:      drivers/gpu/drm/panel/panel-novatek-nt35560.c
6366
6367 DRM DRIVER FOR NOVATEK NT36672A PANELS
6368 M:      Sumit Semwal <sumit.semwal@linaro.org>
6369 S:      Maintained
6370 T:      git git://anongit.freedesktop.org/drm/drm-misc
6371 F:      Documentation/devicetree/bindings/display/panel/novatek,nt36672a.yaml
6372 F:      drivers/gpu/drm/panel/panel-novatek-nt36672a.c
6373
6374 DRM DRIVER FOR NVIDIA GEFORCE/QUADRO GPUS
6375 M:      Ben Skeggs <bskeggs@redhat.com>
6376 M:      Karol Herbst <kherbst@redhat.com>
6377 M:      Lyude Paul <lyude@redhat.com>
6378 L:      dri-devel@lists.freedesktop.org
6379 L:      nouveau@lists.freedesktop.org
6380 S:      Supported
6381 W:      https://nouveau.freedesktop.org/
6382 Q:      https://patchwork.freedesktop.org/project/nouveau/
6383 Q:      https://gitlab.freedesktop.org/drm/nouveau/-/merge_requests
6384 B:      https://gitlab.freedesktop.org/drm/nouveau/-/issues
6385 C:      irc://irc.oftc.net/nouveau
6386 T:      git https://gitlab.freedesktop.org/drm/nouveau.git
6387 F:      drivers/gpu/drm/nouveau/
6388 F:      include/uapi/drm/nouveau_drm.h
6389
6390 DRM DRIVER FOR OLIMEX LCD-OLINUXINO PANELS
6391 M:      Stefan Mavrodiev <stefan@olimex.com>
6392 S:      Maintained
6393 F:      Documentation/devicetree/bindings/display/panel/olimex,lcd-olinuxino.yaml
6394 F:      drivers/gpu/drm/panel/panel-olimex-lcd-olinuxino.c
6395
6396 DRM DRIVER FOR PARADE PS8640 BRIDGE CHIP
6397 R:      Douglas Anderson <dianders@chromium.org>
6398 F:      Documentation/devicetree/bindings/display/bridge/ps8640.yaml
6399 F:      drivers/gpu/drm/bridge/parade-ps8640.c
6400
6401 DRM DRIVER FOR PERVASIVE DISPLAYS REPAPER PANELS
6402 M:      Noralf Trønnes <noralf@tronnes.org>
6403 S:      Maintained
6404 T:      git git://anongit.freedesktop.org/drm/drm-misc
6405 F:      Documentation/devicetree/bindings/display/repaper.txt
6406 F:      drivers/gpu/drm/tiny/repaper.c
6407
6408 DRM DRIVER FOR SOLOMON SSD130X OLED DISPLAYS
6409 M:      Javier Martinez Canillas <javierm@redhat.com>
6410 S:      Maintained
6411 T:      git git://anongit.freedesktop.org/drm/drm-misc
6412 F:      Documentation/devicetree/bindings/display/solomon,ssd1307fb.yaml
6413 F:      drivers/gpu/drm/solomon/ssd130x*
6414
6415 DRM DRIVER FOR QEMU'S CIRRUS DEVICE
6416 M:      Dave Airlie <airlied@redhat.com>
6417 M:      Gerd Hoffmann <kraxel@redhat.com>
6418 L:      virtualization@lists.linux-foundation.org
6419 S:      Obsolete
6420 W:      https://www.kraxel.org/blog/2014/10/qemu-using-cirrus-considered-harmful/
6421 T:      git git://anongit.freedesktop.org/drm/drm-misc
6422 F:      drivers/gpu/drm/tiny/cirrus.c
6423
6424 DRM DRIVER FOR QXL VIRTUAL GPU
6425 M:      Dave Airlie <airlied@redhat.com>
6426 M:      Gerd Hoffmann <kraxel@redhat.com>
6427 L:      virtualization@lists.linux-foundation.org
6428 L:      spice-devel@lists.freedesktop.org
6429 S:      Maintained
6430 T:      git git://anongit.freedesktop.org/drm/drm-misc
6431 F:      drivers/gpu/drm/qxl/
6432 F:      include/uapi/drm/qxl_drm.h
6433
6434 DRM DRIVER FOR RAGE 128 VIDEO CARDS
6435 S:      Orphan / Obsolete
6436 F:      drivers/gpu/drm/r128/
6437 F:      include/uapi/drm/r128_drm.h
6438
6439 DRM DRIVER FOR RAYDIUM RM67191 PANELS
6440 M:      Robert Chiras <robert.chiras@nxp.com>
6441 S:      Maintained
6442 F:      Documentation/devicetree/bindings/display/panel/raydium,rm67191.yaml
6443 F:      drivers/gpu/drm/panel/panel-raydium-rm67191.c
6444
6445 DRM DRIVER FOR SAMSUNG DB7430 PANELS
6446 M:      Linus Walleij <linus.walleij@linaro.org>
6447 S:      Maintained
6448 T:      git git://anongit.freedesktop.org/drm/drm-misc
6449 F:      Documentation/devicetree/bindings/display/panel/samsung,lms397kf04.yaml
6450 F:      drivers/gpu/drm/panel/panel-samsung-db7430.c
6451
6452 DRM DRIVER FOR SAMSUNG S6D27A1 PANELS
6453 M:      Markuss Broks <markuss.broks@gmail.com>
6454 S:      Maintained
6455 F:      Documentation/devicetree/bindings/display/panel/samsung,s6d27a1.yaml
6456 F:      drivers/gpu/drm/panel/panel-samsung-s6d27a1.c
6457
6458 DRM DRIVER FOR SITRONIX ST7703 PANELS
6459 M:      Guido Günther <agx@sigxcpu.org>
6460 R:      Purism Kernel Team <kernel@puri.sm>
6461 R:      Ondrej Jirman <megous@megous.com>
6462 S:      Maintained
6463 F:      Documentation/devicetree/bindings/display/panel/rocktech,jh057n00900.yaml
6464 F:      drivers/gpu/drm/panel/panel-sitronix-st7703.c
6465
6466 DRM DRIVER FOR SAVAGE VIDEO CARDS
6467 S:      Orphan / Obsolete
6468 F:      drivers/gpu/drm/savage/
6469 F:      include/uapi/drm/savage_drm.h
6470
6471 DRM DRIVER FOR SIMPLE FRAMEBUFFERS
6472 M:      Thomas Zimmermann <tzimmermann@suse.de>
6473 L:      dri-devel@lists.freedesktop.org
6474 S:      Maintained
6475 T:      git git://anongit.freedesktop.org/drm/drm-misc
6476 F:      drivers/gpu/drm/tiny/simpledrm.c
6477
6478 DRM DRIVER FOR SIS VIDEO CARDS
6479 S:      Orphan / Obsolete
6480 F:      drivers/gpu/drm/sis/
6481 F:      include/uapi/drm/sis_drm.h
6482
6483 DRM DRIVER FOR SITRONIX ST7586 PANELS
6484 M:      David Lechner <david@lechnology.com>
6485 S:      Maintained
6486 T:      git git://anongit.freedesktop.org/drm/drm-misc
6487 F:      Documentation/devicetree/bindings/display/sitronix,st7586.txt
6488 F:      drivers/gpu/drm/tiny/st7586.c
6489
6490 DRM DRIVER FOR SITRONIX ST7701 PANELS
6491 M:      Jagan Teki <jagan@amarulasolutions.com>
6492 S:      Maintained
6493 F:      Documentation/devicetree/bindings/display/panel/sitronix,st7701.yaml
6494 F:      drivers/gpu/drm/panel/panel-sitronix-st7701.c
6495
6496 DRM DRIVER FOR SITRONIX ST7735R PANELS
6497 M:      David Lechner <david@lechnology.com>
6498 S:      Maintained
6499 T:      git git://anongit.freedesktop.org/drm/drm-misc
6500 F:      Documentation/devicetree/bindings/display/sitronix,st7735r.yaml
6501 F:      drivers/gpu/drm/tiny/st7735r.c
6502
6503 DRM DRIVER FOR ST-ERICSSON MCDE
6504 M:      Linus Walleij <linus.walleij@linaro.org>
6505 S:      Maintained
6506 T:      git git://anongit.freedesktop.org/drm/drm-misc
6507 F:      Documentation/devicetree/bindings/display/ste,mcde.yaml
6508 F:      drivers/gpu/drm/mcde/
6509
6510 DRM DRIVER FOR TDFX VIDEO CARDS
6511 S:      Orphan / Obsolete
6512 F:      drivers/gpu/drm/tdfx/
6513
6514 DRM DRIVER FOR TI SN65DSI86 BRIDGE CHIP
6515 R:      Douglas Anderson <dianders@chromium.org>
6516 F:      Documentation/devicetree/bindings/display/bridge/ti,sn65dsi86.yaml
6517 F:      drivers/gpu/drm/bridge/ti-sn65dsi86.c
6518
6519 DRM DRIVER FOR TPO TPG110 PANELS
6520 M:      Linus Walleij <linus.walleij@linaro.org>
6521 S:      Maintained
6522 T:      git git://anongit.freedesktop.org/drm/drm-misc
6523 F:      Documentation/devicetree/bindings/display/panel/tpo,tpg110.yaml
6524 F:      drivers/gpu/drm/panel/panel-tpo-tpg110.c
6525
6526 DRM DRIVER FOR USB DISPLAYLINK VIDEO ADAPTERS
6527 M:      Dave Airlie <airlied@redhat.com>
6528 R:      Sean Paul <sean@poorly.run>
6529 R:      Thomas Zimmermann <tzimmermann@suse.de>
6530 L:      dri-devel@lists.freedesktop.org
6531 S:      Supported
6532 T:      git git://anongit.freedesktop.org/drm/drm-misc
6533 F:      drivers/gpu/drm/udl/
6534
6535 DRM DRIVER FOR VIRTUAL KERNEL MODESETTING (VKMS)
6536 M:      Rodrigo Siqueira <rodrigosiqueiramelo@gmail.com>
6537 M:      Melissa Wen <melissa.srw@gmail.com>
6538 R:      Haneen Mohammed <hamohammed.sa@gmail.com>
6539 R:      Daniel Vetter <daniel@ffwll.ch>
6540 L:      dri-devel@lists.freedesktop.org
6541 S:      Maintained
6542 T:      git git://anongit.freedesktop.org/drm/drm-misc
6543 F:      Documentation/gpu/vkms.rst
6544 F:      drivers/gpu/drm/vkms/
6545
6546 DRM DRIVER FOR VIRTUALBOX VIRTUAL GPU
6547 M:      Hans de Goede <hdegoede@redhat.com>
6548 L:      dri-devel@lists.freedesktop.org
6549 S:      Maintained
6550 T:      git git://anongit.freedesktop.org/drm/drm-misc
6551 F:      drivers/gpu/drm/vboxvideo/
6552
6553 DRM DRIVER FOR VMWARE VIRTUAL GPU
6554 M:      Zack Rusin <zackr@vmware.com>
6555 R:      VMware Graphics Reviewers <linux-graphics-maintainer@vmware.com>
6556 L:      dri-devel@lists.freedesktop.org
6557 S:      Supported
6558 T:      git git://anongit.freedesktop.org/drm/drm-misc
6559 F:      drivers/gpu/drm/vmwgfx/
6560 F:      include/uapi/drm/vmwgfx_drm.h
6561
6562 DRM DRIVER FOR WIDECHIPS WS2401 PANELS
6563 M:      Linus Walleij <linus.walleij@linaro.org>
6564 S:      Maintained
6565 T:      git git://anongit.freedesktop.org/drm/drm-misc
6566 F:      Documentation/devicetree/bindings/display/panel/samsung,lms380kf01.yaml
6567 F:      drivers/gpu/drm/panel/panel-widechips-ws2401.c
6568
6569 DRM DRIVERS
6570 M:      David Airlie <airlied@linux.ie>
6571 M:      Daniel Vetter <daniel@ffwll.ch>
6572 L:      dri-devel@lists.freedesktop.org
6573 S:      Maintained
6574 B:      https://gitlab.freedesktop.org/drm
6575 C:      irc://irc.oftc.net/dri-devel
6576 T:      git git://anongit.freedesktop.org/drm/drm
6577 F:      Documentation/devicetree/bindings/display/
6578 F:      Documentation/devicetree/bindings/gpu/
6579 F:      Documentation/gpu/
6580 F:      drivers/gpu/
6581 F:      include/drm/
6582 F:      include/linux/vga*
6583 F:      include/uapi/drm/
6584
6585 DRM DRIVERS AND MISC GPU PATCHES
6586 M:      Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
6587 M:      Maxime Ripard <mripard@kernel.org>
6588 M:      Thomas Zimmermann <tzimmermann@suse.de>
6589 S:      Maintained
6590 W:      https://01.org/linuxgraphics/gfx-docs/maintainer-tools/drm-misc.html
6591 T:      git git://anongit.freedesktop.org/drm/drm-misc
6592 F:      Documentation/gpu/
6593 F:      drivers/gpu/drm/*
6594 F:      drivers/gpu/vga/
6595 F:      include/drm/drm*
6596 F:      include/linux/vga*
6597 F:      include/uapi/drm/drm*
6598
6599 DRM DRIVERS FOR ALLWINNER A10
6600 M:      Maxime Ripard <mripard@kernel.org>
6601 M:      Chen-Yu Tsai <wens@csie.org>
6602 L:      dri-devel@lists.freedesktop.org
6603 S:      Supported
6604 T:      git git://anongit.freedesktop.org/drm/drm-misc
6605 F:      Documentation/devicetree/bindings/display/allwinner*
6606 F:      drivers/gpu/drm/sun4i/
6607
6608 DRM DRIVERS FOR AMLOGIC SOCS
6609 M:      Neil Armstrong <narmstrong@baylibre.com>
6610 L:      dri-devel@lists.freedesktop.org
6611 L:      linux-amlogic@lists.infradead.org
6612 S:      Supported
6613 W:      http://linux-meson.com/
6614 T:      git git://anongit.freedesktop.org/drm/drm-misc
6615 F:      Documentation/devicetree/bindings/display/amlogic,meson-dw-hdmi.yaml
6616 F:      Documentation/devicetree/bindings/display/amlogic,meson-vpu.yaml
6617 F:      Documentation/gpu/meson.rst
6618 F:      drivers/gpu/drm/meson/
6619
6620 DRM DRIVERS FOR ATMEL HLCDC
6621 M:      Sam Ravnborg <sam@ravnborg.org>
6622 M:      Boris Brezillon <bbrezillon@kernel.org>
6623 L:      dri-devel@lists.freedesktop.org
6624 S:      Supported
6625 T:      git git://anongit.freedesktop.org/drm/drm-misc
6626 F:      Documentation/devicetree/bindings/display/atmel/
6627 F:      drivers/gpu/drm/atmel-hlcdc/
6628
6629 DRM DRIVERS FOR BRIDGE CHIPS
6630 M:      Andrzej Hajda <andrzej.hajda@intel.com>
6631 M:      Neil Armstrong <narmstrong@baylibre.com>
6632 M:      Robert Foss <robert.foss@linaro.org>
6633 R:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
6634 R:      Jonas Karlman <jonas@kwiboo.se>
6635 R:      Jernej Skrabec <jernej.skrabec@gmail.com>
6636 S:      Maintained
6637 T:      git git://anongit.freedesktop.org/drm/drm-misc
6638 F:      Documentation/devicetree/bindings/display/bridge/
6639 F:      drivers/gpu/drm/bridge/
6640
6641 DRM DRIVERS FOR EXYNOS
6642 M:      Inki Dae <inki.dae@samsung.com>
6643 M:      Joonyoung Shim <jy0922.shim@samsung.com>
6644 M:      Seung-Woo Kim <sw0312.kim@samsung.com>
6645 M:      Kyungmin Park <kyungmin.park@samsung.com>
6646 L:      dri-devel@lists.freedesktop.org
6647 S:      Supported
6648 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
6649 F:      Documentation/devicetree/bindings/display/exynos/
6650 F:      Documentation/devicetree/bindings/display/samsung/
6651 F:      drivers/gpu/drm/exynos/
6652 F:      include/uapi/drm/exynos_drm.h
6653
6654 DRM DRIVERS FOR FREESCALE DCU
6655 M:      Stefan Agner <stefan@agner.ch>
6656 M:      Alison Wang <alison.wang@nxp.com>
6657 L:      dri-devel@lists.freedesktop.org
6658 S:      Supported
6659 T:      git git://anongit.freedesktop.org/drm/drm-misc
6660 F:      Documentation/devicetree/bindings/display/fsl,dcu.txt
6661 F:      Documentation/devicetree/bindings/display/fsl,tcon.txt
6662 F:      drivers/gpu/drm/fsl-dcu/
6663
6664 DRM DRIVERS FOR FREESCALE IMX
6665 M:      Philipp Zabel <p.zabel@pengutronix.de>
6666 L:      dri-devel@lists.freedesktop.org
6667 S:      Maintained
6668 F:      Documentation/devicetree/bindings/display/imx/
6669 F:      drivers/gpu/drm/imx/
6670 F:      drivers/gpu/ipu-v3/
6671
6672 DRM DRIVERS FOR GMA500 (Poulsbo, Moorestown and derivative chipsets)
6673 M:      Patrik Jakobsson <patrik.r.jakobsson@gmail.com>
6674 L:      dri-devel@lists.freedesktop.org
6675 S:      Maintained
6676 T:      git git://github.com/patjak/drm-gma500
6677 F:      drivers/gpu/drm/gma500/
6678
6679 DRM DRIVERS FOR HISILICON
6680 M:      Xinliang Liu <xinliang.liu@linaro.org>
6681 M:      Tian Tao  <tiantao6@hisilicon.com>
6682 R:      John Stultz <jstultz@google.com>
6683 R:      Xinwei Kong <kong.kongxinwei@hisilicon.com>
6684 R:      Chen Feng <puck.chen@hisilicon.com>
6685 L:      dri-devel@lists.freedesktop.org
6686 S:      Maintained
6687 T:      git git://anongit.freedesktop.org/drm/drm-misc
6688 F:      Documentation/devicetree/bindings/display/hisilicon/
6689 F:      drivers/gpu/drm/hisilicon/
6690
6691 DRM DRIVER FOR HYPERV SYNTHETIC VIDEO DEVICE
6692 M:      Deepak Rawat <drawat.floss@gmail.com>
6693 L:      linux-hyperv@vger.kernel.org
6694 L:      dri-devel@lists.freedesktop.org
6695 S:      Maintained
6696 T:      git git://anongit.freedesktop.org/drm/drm-misc
6697 F:      drivers/gpu/drm/hyperv
6698
6699 DRM DRIVERS FOR LIMA
6700 M:      Qiang Yu <yuq825@gmail.com>
6701 L:      dri-devel@lists.freedesktop.org
6702 L:      lima@lists.freedesktop.org (moderated for non-subscribers)
6703 S:      Maintained
6704 T:      git git://anongit.freedesktop.org/drm/drm-misc
6705 F:      drivers/gpu/drm/lima/
6706 F:      include/uapi/drm/lima_drm.h
6707
6708 DRM DRIVERS FOR MEDIATEK
6709 M:      Chun-Kuang Hu <chunkuang.hu@kernel.org>
6710 M:      Philipp Zabel <p.zabel@pengutronix.de>
6711 L:      dri-devel@lists.freedesktop.org
6712 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
6713 S:      Supported
6714 F:      Documentation/devicetree/bindings/display/mediatek/
6715 F:      drivers/gpu/drm/mediatek/
6716 F:      drivers/phy/mediatek/phy-mtk-hdmi*
6717 F:      drivers/phy/mediatek/phy-mtk-mipi*
6718
6719 DRM DRIVERS FOR NVIDIA TEGRA
6720 M:      Thierry Reding <thierry.reding@gmail.com>
6721 L:      dri-devel@lists.freedesktop.org
6722 L:      linux-tegra@vger.kernel.org
6723 S:      Supported
6724 T:      git git://anongit.freedesktop.org/tegra/linux.git
6725 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
6726 F:      Documentation/devicetree/bindings/gpu/host1x/
6727 F:      drivers/gpu/drm/tegra/
6728 F:      drivers/gpu/host1x/
6729 F:      include/linux/host1x.h
6730 F:      include/uapi/drm/tegra_drm.h
6731
6732 DRM DRIVERS FOR RENESAS
6733 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6734 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
6735 L:      dri-devel@lists.freedesktop.org
6736 L:      linux-renesas-soc@vger.kernel.org
6737 S:      Supported
6738 T:      git git://linuxtv.org/pinchartl/media drm/du/next
6739 F:      Documentation/devicetree/bindings/display/bridge/renesas,dsi-csi2-tx.yaml
6740 F:      Documentation/devicetree/bindings/display/bridge/renesas,dw-hdmi.yaml
6741 F:      Documentation/devicetree/bindings/display/bridge/renesas,lvds.yaml
6742 F:      Documentation/devicetree/bindings/display/renesas,du.yaml
6743 F:      drivers/gpu/drm/rcar-du/
6744 F:      drivers/gpu/drm/shmobile/
6745 F:      include/linux/platform_data/shmob_drm.h
6746
6747 DRM DRIVERS FOR ROCKCHIP
6748 M:      Sandy Huang <hjc@rock-chips.com>
6749 M:      Heiko Stübner <heiko@sntech.de>
6750 L:      dri-devel@lists.freedesktop.org
6751 S:      Maintained
6752 T:      git git://anongit.freedesktop.org/drm/drm-misc
6753 F:      Documentation/devicetree/bindings/display/rockchip/
6754 F:      drivers/gpu/drm/rockchip/
6755
6756 DRM DRIVERS FOR STI
6757 M:      Alain Volmat <alain.volmat@foss.st.com>
6758 L:      dri-devel@lists.freedesktop.org
6759 S:      Maintained
6760 T:      git git://anongit.freedesktop.org/drm/drm-misc
6761 F:      Documentation/devicetree/bindings/display/st,stih4xx.txt
6762 F:      drivers/gpu/drm/sti
6763
6764 DRM DRIVERS FOR STM
6765 M:      Yannick Fertre <yannick.fertre@foss.st.com>
6766 M:      Raphael Gallais-Pou <raphael.gallais-pou@foss.st.com>
6767 M:      Philippe Cornu <philippe.cornu@foss.st.com>
6768 L:      dri-devel@lists.freedesktop.org
6769 S:      Maintained
6770 T:      git git://anongit.freedesktop.org/drm/drm-misc
6771 F:      Documentation/devicetree/bindings/display/st,stm32-ltdc.yaml
6772 F:      drivers/gpu/drm/stm
6773
6774 DRM DRIVERS FOR TI KEYSTONE
6775 M:      Jyri Sarha <jyri.sarha@iki.fi>
6776 M:      Tomi Valkeinen <tomba@kernel.org>
6777 L:      dri-devel@lists.freedesktop.org
6778 S:      Maintained
6779 T:      git git://anongit.freedesktop.org/drm/drm-misc
6780 F:      Documentation/devicetree/bindings/display/ti/ti,am65x-dss.yaml
6781 F:      Documentation/devicetree/bindings/display/ti/ti,j721e-dss.yaml
6782 F:      Documentation/devicetree/bindings/display/ti/ti,k2g-dss.yaml
6783 F:      drivers/gpu/drm/tidss/
6784
6785 DRM DRIVERS FOR TI LCDC
6786 M:      Jyri Sarha <jyri.sarha@iki.fi>
6787 R:      Tomi Valkeinen <tomba@kernel.org>
6788 L:      dri-devel@lists.freedesktop.org
6789 S:      Maintained
6790 F:      Documentation/devicetree/bindings/display/tilcdc/
6791 F:      drivers/gpu/drm/tilcdc/
6792
6793 DRM DRIVERS FOR TI OMAP
6794 M:      Tomi Valkeinen <tomba@kernel.org>
6795 L:      dri-devel@lists.freedesktop.org
6796 S:      Maintained
6797 F:      Documentation/devicetree/bindings/display/ti/
6798 F:      drivers/gpu/drm/omapdrm/
6799
6800 DRM DRIVERS FOR V3D
6801 M:      Emma Anholt <emma@anholt.net>
6802 S:      Supported
6803 T:      git git://anongit.freedesktop.org/drm/drm-misc
6804 F:      Documentation/devicetree/bindings/gpu/brcm,bcm-v3d.yaml
6805 F:      drivers/gpu/drm/v3d/
6806 F:      include/uapi/drm/v3d_drm.h
6807
6808 DRM DRIVERS FOR VC4
6809 M:      Emma Anholt <emma@anholt.net>
6810 M:      Maxime Ripard <mripard@kernel.org>
6811 S:      Supported
6812 T:      git git://github.com/anholt/linux
6813 T:      git git://anongit.freedesktop.org/drm/drm-misc
6814 F:      Documentation/devicetree/bindings/display/brcm,bcm2835-*.yaml
6815 F:      drivers/gpu/drm/vc4/
6816 F:      include/uapi/drm/vc4_drm.h
6817
6818 DRM DRIVERS FOR VIVANTE GPU IP
6819 M:      Lucas Stach <l.stach@pengutronix.de>
6820 R:      Russell King <linux+etnaviv@armlinux.org.uk>
6821 R:      Christian Gmeiner <christian.gmeiner@gmail.com>
6822 L:      etnaviv@lists.freedesktop.org (moderated for non-subscribers)
6823 L:      dri-devel@lists.freedesktop.org
6824 S:      Maintained
6825 F:      Documentation/devicetree/bindings/gpu/vivante,gc.yaml
6826 F:      drivers/gpu/drm/etnaviv/
6827 F:      include/uapi/drm/etnaviv_drm.h
6828
6829 DRM DRIVERS FOR XEN
6830 M:      Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
6831 L:      dri-devel@lists.freedesktop.org
6832 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
6833 S:      Supported
6834 T:      git git://anongit.freedesktop.org/drm/drm-misc
6835 F:      Documentation/gpu/xen-front.rst
6836 F:      drivers/gpu/drm/xen/
6837
6838 DRM DRIVERS FOR XILINX
6839 M:      Hyun Kwon <hyun.kwon@xilinx.com>
6840 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6841 L:      dri-devel@lists.freedesktop.org
6842 S:      Maintained
6843 T:      git git://anongit.freedesktop.org/drm/drm-misc
6844 F:      Documentation/devicetree/bindings/display/xlnx/
6845 F:      drivers/gpu/drm/xlnx/
6846
6847 DRM PANEL DRIVERS
6848 M:      Thierry Reding <thierry.reding@gmail.com>
6849 R:      Sam Ravnborg <sam@ravnborg.org>
6850 L:      dri-devel@lists.freedesktop.org
6851 S:      Maintained
6852 T:      git git://anongit.freedesktop.org/drm/drm-misc
6853 F:      Documentation/devicetree/bindings/display/panel/
6854 F:      drivers/gpu/drm/drm_panel.c
6855 F:      drivers/gpu/drm/panel/
6856 F:      include/drm/drm_panel.h
6857
6858 DRM PRIVACY-SCREEN CLASS
6859 M:      Hans de Goede <hdegoede@redhat.com>
6860 L:      dri-devel@lists.freedesktop.org
6861 S:      Maintained
6862 T:      git git://anongit.freedesktop.org/drm/drm-misc
6863 F:      drivers/gpu/drm/drm_privacy_screen*
6864 F:      include/drm/drm_privacy_screen*
6865
6866 DRM TTM SUBSYSTEM
6867 M:      Christian Koenig <christian.koenig@amd.com>
6868 M:      Huang Rui <ray.huang@amd.com>
6869 L:      dri-devel@lists.freedesktop.org
6870 S:      Maintained
6871 T:      git git://anongit.freedesktop.org/drm/drm-misc
6872 F:      drivers/gpu/drm/ttm/
6873 F:      include/drm/ttm/
6874
6875 DRM GPU SCHEDULER
6876 M:      Andrey Grodzovsky <andrey.grodzovsky@amd.com>
6877 L:      dri-devel@lists.freedesktop.org
6878 S:      Maintained
6879 T:      git git://anongit.freedesktop.org/drm/drm-misc
6880 F:      drivers/gpu/drm/scheduler/
6881 F:      include/drm/gpu_scheduler.h
6882
6883 DSBR100 USB FM RADIO DRIVER
6884 M:      Alexey Klimov <klimov.linux@gmail.com>
6885 L:      linux-media@vger.kernel.org
6886 S:      Maintained
6887 T:      git git://linuxtv.org/media_tree.git
6888 F:      drivers/media/radio/dsbr100.c
6889
6890 DT3155 MEDIA DRIVER
6891 M:      Hans Verkuil <hverkuil@xs4all.nl>
6892 L:      linux-media@vger.kernel.org
6893 S:      Odd Fixes
6894 W:      https://linuxtv.org
6895 T:      git git://linuxtv.org/media_tree.git
6896 F:      drivers/media/pci/dt3155/
6897
6898 DVB_USB_AF9015 MEDIA DRIVER
6899 M:      Antti Palosaari <crope@iki.fi>
6900 L:      linux-media@vger.kernel.org
6901 S:      Maintained
6902 W:      https://linuxtv.org
6903 W:      http://palosaari.fi/linux/
6904 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6905 T:      git git://linuxtv.org/anttip/media_tree.git
6906 F:      drivers/media/usb/dvb-usb-v2/af9015*
6907
6908 DVB_USB_AF9035 MEDIA DRIVER
6909 M:      Antti Palosaari <crope@iki.fi>
6910 L:      linux-media@vger.kernel.org
6911 S:      Maintained
6912 W:      https://linuxtv.org
6913 W:      http://palosaari.fi/linux/
6914 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6915 T:      git git://linuxtv.org/anttip/media_tree.git
6916 F:      drivers/media/usb/dvb-usb-v2/af9035*
6917
6918 DVB_USB_ANYSEE MEDIA DRIVER
6919 M:      Antti Palosaari <crope@iki.fi>
6920 L:      linux-media@vger.kernel.org
6921 S:      Maintained
6922 W:      https://linuxtv.org
6923 W:      http://palosaari.fi/linux/
6924 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6925 T:      git git://linuxtv.org/anttip/media_tree.git
6926 F:      drivers/media/usb/dvb-usb-v2/anysee*
6927
6928 DVB_USB_AU6610 MEDIA DRIVER
6929 M:      Antti Palosaari <crope@iki.fi>
6930 L:      linux-media@vger.kernel.org
6931 S:      Maintained
6932 W:      https://linuxtv.org
6933 W:      http://palosaari.fi/linux/
6934 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6935 T:      git git://linuxtv.org/anttip/media_tree.git
6936 F:      drivers/media/usb/dvb-usb-v2/au6610*
6937
6938 DVB_USB_CE6230 MEDIA DRIVER
6939 M:      Antti Palosaari <crope@iki.fi>
6940 L:      linux-media@vger.kernel.org
6941 S:      Maintained
6942 W:      https://linuxtv.org
6943 W:      http://palosaari.fi/linux/
6944 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6945 T:      git git://linuxtv.org/anttip/media_tree.git
6946 F:      drivers/media/usb/dvb-usb-v2/ce6230*
6947
6948 DVB_USB_CXUSB MEDIA DRIVER
6949 M:      Michael Krufky <mkrufky@linuxtv.org>
6950 L:      linux-media@vger.kernel.org
6951 S:      Maintained
6952 W:      https://linuxtv.org
6953 W:      http://github.com/mkrufky
6954 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6955 T:      git git://linuxtv.org/media_tree.git
6956 F:      drivers/media/usb/dvb-usb/cxusb*
6957
6958 DVB_USB_EC168 MEDIA DRIVER
6959 M:      Antti Palosaari <crope@iki.fi>
6960 L:      linux-media@vger.kernel.org
6961 S:      Maintained
6962 W:      https://linuxtv.org
6963 W:      http://palosaari.fi/linux/
6964 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6965 T:      git git://linuxtv.org/anttip/media_tree.git
6966 F:      drivers/media/usb/dvb-usb-v2/ec168*
6967
6968 DVB_USB_GL861 MEDIA DRIVER
6969 M:      Antti Palosaari <crope@iki.fi>
6970 L:      linux-media@vger.kernel.org
6971 S:      Maintained
6972 W:      https://linuxtv.org
6973 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6974 T:      git git://linuxtv.org/anttip/media_tree.git
6975 F:      drivers/media/usb/dvb-usb-v2/gl861*
6976
6977 DVB_USB_MXL111SF MEDIA DRIVER
6978 M:      Michael Krufky <mkrufky@linuxtv.org>
6979 L:      linux-media@vger.kernel.org
6980 S:      Maintained
6981 W:      https://linuxtv.org
6982 W:      http://github.com/mkrufky
6983 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6984 T:      git git://linuxtv.org/mkrufky/mxl111sf.git
6985 F:      drivers/media/usb/dvb-usb-v2/mxl111sf*
6986
6987 DVB_USB_RTL28XXU MEDIA DRIVER
6988 M:      Antti Palosaari <crope@iki.fi>
6989 L:      linux-media@vger.kernel.org
6990 S:      Maintained
6991 W:      https://linuxtv.org
6992 W:      http://palosaari.fi/linux/
6993 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6994 T:      git git://linuxtv.org/anttip/media_tree.git
6995 F:      drivers/media/usb/dvb-usb-v2/rtl28xxu*
6996
6997 DVB_USB_V2 MEDIA DRIVER
6998 M:      Antti Palosaari <crope@iki.fi>
6999 L:      linux-media@vger.kernel.org
7000 S:      Maintained
7001 W:      https://linuxtv.org
7002 W:      http://palosaari.fi/linux/
7003 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7004 T:      git git://linuxtv.org/anttip/media_tree.git
7005 F:      drivers/media/usb/dvb-usb-v2/dvb_usb*
7006 F:      drivers/media/usb/dvb-usb-v2/usb_urb.c
7007
7008 DYNAMIC DEBUG
7009 M:      Jason Baron <jbaron@akamai.com>
7010 S:      Maintained
7011 F:      include/linux/dynamic_debug.h
7012 F:      lib/dynamic_debug.c
7013
7014 DYNAMIC INTERRUPT MODERATION
7015 M:      Tal Gilboa <talgi@nvidia.com>
7016 S:      Maintained
7017 F:      Documentation/networking/net_dim.rst
7018 F:      include/linux/dim.h
7019 F:      lib/dim/
7020
7021 DZ DECSTATION DZ11 SERIAL DRIVER
7022 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
7023 S:      Maintained
7024 F:      drivers/tty/serial/dz.*
7025
7026 E3X0 POWER BUTTON DRIVER
7027 M:      Moritz Fischer <moritz.fischer@ettus.com>
7028 L:      usrp-users@lists.ettus.com
7029 S:      Supported
7030 W:      http://www.ettus.com
7031 F:      Documentation/devicetree/bindings/input/e3x0-button.txt
7032 F:      drivers/input/misc/e3x0-button.c
7033
7034 E4000 MEDIA DRIVER
7035 M:      Antti Palosaari <crope@iki.fi>
7036 L:      linux-media@vger.kernel.org
7037 S:      Maintained
7038 W:      https://linuxtv.org
7039 W:      http://palosaari.fi/linux/
7040 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7041 T:      git git://linuxtv.org/anttip/media_tree.git
7042 F:      drivers/media/tuners/e4000*
7043
7044 EARTH_PT1 MEDIA DRIVER
7045 M:      Akihiro Tsukada <tskd08@gmail.com>
7046 L:      linux-media@vger.kernel.org
7047 S:      Odd Fixes
7048 F:      drivers/media/pci/pt1/
7049
7050 EARTH_PT3 MEDIA DRIVER
7051 M:      Akihiro Tsukada <tskd08@gmail.com>
7052 L:      linux-media@vger.kernel.org
7053 S:      Odd Fixes
7054 F:      drivers/media/pci/pt3/
7055
7056 EC100 MEDIA DRIVER
7057 M:      Antti Palosaari <crope@iki.fi>
7058 L:      linux-media@vger.kernel.org
7059 S:      Maintained
7060 W:      https://linuxtv.org
7061 W:      http://palosaari.fi/linux/
7062 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7063 T:      git git://linuxtv.org/anttip/media_tree.git
7064 F:      drivers/media/dvb-frontends/ec100*
7065
7066 ECRYPT FILE SYSTEM
7067 M:      Tyler Hicks <code@tyhicks.com>
7068 L:      ecryptfs@vger.kernel.org
7069 S:      Odd Fixes
7070 W:      http://ecryptfs.org
7071 W:      https://launchpad.net/ecryptfs
7072 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tyhicks/ecryptfs.git
7073 F:      Documentation/filesystems/ecryptfs.rst
7074 F:      fs/ecryptfs/
7075
7076 EDAC-AMD64
7077 M:      Yazen Ghannam <yazen.ghannam@amd.com>
7078 L:      linux-edac@vger.kernel.org
7079 S:      Supported
7080 F:      drivers/edac/amd64_edac*
7081 F:      drivers/edac/mce_amd*
7082
7083 EDAC-ARMADA
7084 M:      Jan Luebbe <jlu@pengutronix.de>
7085 L:      linux-edac@vger.kernel.org
7086 S:      Maintained
7087 F:      Documentation/devicetree/bindings/memory-controllers/marvell,mvebu-sdram-controller.yaml
7088 F:      drivers/edac/armada_xp_*
7089
7090 EDAC-AST2500
7091 M:      Stefan Schaeckeler <sschaeck@cisco.com>
7092 S:      Supported
7093 F:      Documentation/devicetree/bindings/edac/aspeed-sdram-edac.txt
7094 F:      drivers/edac/aspeed_edac.c
7095
7096 EDAC-BLUEFIELD
7097 M:      Shravan Kumar Ramani <shravankr@nvidia.com>
7098 S:      Supported
7099 F:      drivers/edac/bluefield_edac.c
7100
7101 EDAC-CALXEDA
7102 M:      Andre Przywara <andre.przywara@arm.com>
7103 L:      linux-edac@vger.kernel.org
7104 S:      Maintained
7105 F:      drivers/edac/highbank*
7106
7107 EDAC-CAVIUM OCTEON
7108 M:      Ralf Baechle <ralf@linux-mips.org>
7109 L:      linux-edac@vger.kernel.org
7110 L:      linux-mips@vger.kernel.org
7111 S:      Supported
7112 F:      drivers/edac/octeon_edac*
7113
7114 EDAC-CAVIUM THUNDERX
7115 M:      Robert Richter <rric@kernel.org>
7116 L:      linux-edac@vger.kernel.org
7117 S:      Odd Fixes
7118 F:      drivers/edac/thunderx_edac*
7119
7120 EDAC-CORE
7121 M:      Borislav Petkov <bp@alien8.de>
7122 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
7123 M:      Tony Luck <tony.luck@intel.com>
7124 R:      James Morse <james.morse@arm.com>
7125 R:      Robert Richter <rric@kernel.org>
7126 L:      linux-edac@vger.kernel.org
7127 S:      Supported
7128 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ras/ras.git edac-for-next
7129 F:      Documentation/admin-guide/ras.rst
7130 F:      Documentation/driver-api/edac.rst
7131 F:      drivers/edac/
7132 F:      include/linux/edac.h
7133
7134 EDAC-DMC520
7135 M:      Lei Wang <lewan@microsoft.com>
7136 L:      linux-edac@vger.kernel.org
7137 S:      Supported
7138 F:      drivers/edac/dmc520_edac.c
7139
7140 EDAC-E752X
7141 M:      Mark Gross <markgross@kernel.org>
7142 L:      linux-edac@vger.kernel.org
7143 S:      Maintained
7144 F:      drivers/edac/e752x_edac.c
7145
7146 EDAC-E7XXX
7147 L:      linux-edac@vger.kernel.org
7148 S:      Maintained
7149 F:      drivers/edac/e7xxx_edac.c
7150
7151 EDAC-FSL_DDR
7152 M:      York Sun <york.sun@nxp.com>
7153 L:      linux-edac@vger.kernel.org
7154 S:      Maintained
7155 F:      drivers/edac/fsl_ddr_edac.*
7156
7157 EDAC-GHES
7158 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
7159 L:      linux-edac@vger.kernel.org
7160 S:      Maintained
7161 F:      drivers/edac/ghes_edac.c
7162
7163 EDAC-I10NM
7164 M:      Tony Luck <tony.luck@intel.com>
7165 L:      linux-edac@vger.kernel.org
7166 S:      Maintained
7167 F:      drivers/edac/i10nm_base.c
7168
7169 EDAC-I3000
7170 L:      linux-edac@vger.kernel.org
7171 S:      Orphan
7172 F:      drivers/edac/i3000_edac.c
7173
7174 EDAC-I5000
7175 L:      linux-edac@vger.kernel.org
7176 S:      Maintained
7177 F:      drivers/edac/i5000_edac.c
7178
7179 EDAC-I5400
7180 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
7181 L:      linux-edac@vger.kernel.org
7182 S:      Maintained
7183 F:      drivers/edac/i5400_edac.c
7184
7185 EDAC-I7300
7186 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
7187 L:      linux-edac@vger.kernel.org
7188 S:      Maintained
7189 F:      drivers/edac/i7300_edac.c
7190
7191 EDAC-I7CORE
7192 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
7193 L:      linux-edac@vger.kernel.org
7194 S:      Maintained
7195 F:      drivers/edac/i7core_edac.c
7196
7197 EDAC-I82443BXGX
7198 M:      Tim Small <tim@buttersideup.com>
7199 L:      linux-edac@vger.kernel.org
7200 S:      Maintained
7201 F:      drivers/edac/i82443bxgx_edac.c
7202
7203 EDAC-I82975X
7204 M:      "Arvind R." <arvino55@gmail.com>
7205 L:      linux-edac@vger.kernel.org
7206 S:      Maintained
7207 F:      drivers/edac/i82975x_edac.c
7208
7209 EDAC-IE31200
7210 M:      Jason Baron <jbaron@akamai.com>
7211 L:      linux-edac@vger.kernel.org
7212 S:      Maintained
7213 F:      drivers/edac/ie31200_edac.c
7214
7215 EDAC-IGEN6
7216 M:      Tony Luck <tony.luck@intel.com>
7217 R:      Qiuxu Zhuo <qiuxu.zhuo@intel.com>
7218 L:      linux-edac@vger.kernel.org
7219 S:      Maintained
7220 F:      drivers/edac/igen6_edac.c
7221
7222 EDAC-MPC85XX
7223 M:      Johannes Thumshirn <morbidrsa@gmail.com>
7224 L:      linux-edac@vger.kernel.org
7225 S:      Maintained
7226 F:      drivers/edac/mpc85xx_edac.[ch]
7227
7228 EDAC-PASEMI
7229 M:      Egor Martovetsky <egor@pasemi.com>
7230 L:      linux-edac@vger.kernel.org
7231 S:      Maintained
7232 F:      drivers/edac/pasemi_edac.c
7233
7234 EDAC-PND2
7235 M:      Tony Luck <tony.luck@intel.com>
7236 L:      linux-edac@vger.kernel.org
7237 S:      Maintained
7238 F:      drivers/edac/pnd2_edac.[ch]
7239
7240 EDAC-QCOM
7241 M:      Channagoud Kadabi <ckadabi@codeaurora.org>
7242 M:      Venkata Narendra Kumar Gutta <vnkgutta@codeaurora.org>
7243 L:      linux-arm-msm@vger.kernel.org
7244 L:      linux-edac@vger.kernel.org
7245 S:      Maintained
7246 F:      drivers/edac/qcom_edac.c
7247
7248 EDAC-R82600
7249 M:      Tim Small <tim@buttersideup.com>
7250 L:      linux-edac@vger.kernel.org
7251 S:      Maintained
7252 F:      drivers/edac/r82600_edac.c
7253
7254 EDAC-SBRIDGE
7255 M:      Tony Luck <tony.luck@intel.com>
7256 R:      Qiuxu Zhuo <qiuxu.zhuo@intel.com>
7257 L:      linux-edac@vger.kernel.org
7258 S:      Maintained
7259 F:      drivers/edac/sb_edac.c
7260
7261 EDAC-SKYLAKE
7262 M:      Tony Luck <tony.luck@intel.com>
7263 L:      linux-edac@vger.kernel.org
7264 S:      Maintained
7265 F:      drivers/edac/skx_*.[ch]
7266
7267 EDAC-TI
7268 M:      Tero Kristo <kristo@kernel.org>
7269 L:      linux-edac@vger.kernel.org
7270 S:      Odd Fixes
7271 F:      drivers/edac/ti_edac.c
7272
7273 EDIROL UA-101/UA-1000 DRIVER
7274 M:      Clemens Ladisch <clemens@ladisch.de>
7275 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7276 S:      Maintained
7277 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
7278 F:      sound/usb/misc/ua101.c
7279
7280 EFI TEST DRIVER
7281 M:      Ivan Hu <ivan.hu@canonical.com>
7282 M:      Ard Biesheuvel <ardb@kernel.org>
7283 L:      linux-efi@vger.kernel.org
7284 S:      Maintained
7285 F:      drivers/firmware/efi/test/
7286
7287 EFI VARIABLE FILESYSTEM
7288 M:      Matthew Garrett <matthew.garrett@nebula.com>
7289 M:      Jeremy Kerr <jk@ozlabs.org>
7290 M:      Ard Biesheuvel <ardb@kernel.org>
7291 L:      linux-efi@vger.kernel.org
7292 S:      Maintained
7293 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
7294 F:      fs/efivarfs/
7295
7296 EFIFB FRAMEBUFFER DRIVER
7297 M:      Peter Jones <pjones@redhat.com>
7298 L:      linux-fbdev@vger.kernel.org
7299 S:      Maintained
7300 F:      drivers/video/fbdev/efifb.c
7301
7302 EFS FILESYSTEM
7303 S:      Orphan
7304 W:      http://aeschi.ch.eu.org/efs/
7305 F:      fs/efs/
7306
7307 EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
7308 M:      Douglas Miller <dougmill@linux.ibm.com>
7309 L:      netdev@vger.kernel.org
7310 S:      Maintained
7311 F:      drivers/net/ethernet/ibm/ehea/
7312
7313 EM28XX VIDEO4LINUX DRIVER
7314 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
7315 L:      linux-media@vger.kernel.org
7316 S:      Maintained
7317 W:      https://linuxtv.org
7318 T:      git git://linuxtv.org/media_tree.git
7319 F:      Documentation/admin-guide/media/em28xx*
7320 F:      drivers/media/usb/em28xx/
7321
7322 EMBEDDED LINUX
7323 M:      Matt Mackall <mpm@selenic.com>
7324 M:      David Woodhouse <dwmw2@infradead.org>
7325 L:      linux-embedded@vger.kernel.org
7326 S:      Maintained
7327
7328 EMMC CMDQ HOST CONTROLLER INTERFACE (CQHCI) DRIVER
7329 M:      Adrian Hunter <adrian.hunter@intel.com>
7330 M:      Ritesh Harjani <riteshh@codeaurora.org>
7331 M:      Asutosh Das <asutoshd@codeaurora.org>
7332 L:      linux-mmc@vger.kernel.org
7333 S:      Maintained
7334 F:      drivers/mmc/host/cqhci*
7335
7336 EMULEX 10Gbps iSCSI - OneConnect DRIVER
7337 M:      Ketan Mukadam <ketan.mukadam@broadcom.com>
7338 L:      linux-scsi@vger.kernel.org
7339 S:      Supported
7340 W:      http://www.broadcom.com
7341 F:      drivers/scsi/be2iscsi/
7342
7343 EMULEX 10Gbps NIC BE2, BE3-R, Lancer, Skyhawk-R DRIVER (be2net)
7344 M:      Ajit Khaparde <ajit.khaparde@broadcom.com>
7345 M:      Sriharsha Basavapatna <sriharsha.basavapatna@broadcom.com>
7346 M:      Somnath Kotur <somnath.kotur@broadcom.com>
7347 L:      netdev@vger.kernel.org
7348 S:      Supported
7349 W:      http://www.emulex.com
7350 F:      drivers/net/ethernet/emulex/benet/
7351
7352 EMULEX ONECONNECT ROCE DRIVER
7353 M:      Selvin Xavier <selvin.xavier@broadcom.com>
7354 L:      linux-rdma@vger.kernel.org
7355 S:      Odd Fixes
7356 W:      http://www.broadcom.com
7357 F:      drivers/infiniband/hw/ocrdma/
7358 F:      include/uapi/rdma/ocrdma-abi.h
7359
7360 EMULEX/BROADCOM LPFC FC/FCOE SCSI DRIVER
7361 M:      James Smart <james.smart@broadcom.com>
7362 M:      Dick Kennedy <dick.kennedy@broadcom.com>
7363 L:      linux-scsi@vger.kernel.org
7364 S:      Supported
7365 W:      http://www.broadcom.com
7366 F:      drivers/scsi/lpfc/
7367
7368 EMULEX/BROADCOM EFCT FC/FCOE SCSI TARGET DRIVER
7369 M:      James Smart <james.smart@broadcom.com>
7370 M:      Ram Vegesna <ram.vegesna@broadcom.com>
7371 L:      linux-scsi@vger.kernel.org
7372 L:      target-devel@vger.kernel.org
7373 S:      Supported
7374 W:      http://www.broadcom.com
7375 F:      drivers/scsi/elx/
7376
7377 ENE CB710 FLASH CARD READER DRIVER
7378 M:      Michał Mirosław <mirq-linux@rere.qmqm.pl>
7379 S:      Maintained
7380 F:      drivers/misc/cb710/
7381 F:      drivers/mmc/host/cb710-mmc.*
7382 F:      include/linux/cb710.h
7383
7384 ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
7385 M:      Maxim Levitsky <maximlevitsky@gmail.com>
7386 S:      Maintained
7387 F:      drivers/media/rc/ene_ir.*
7388
7389 EPAPR HYPERVISOR BYTE CHANNEL DEVICE DRIVER
7390 M:      Laurentiu Tudor <laurentiu.tudor@nxp.com>
7391 L:      linuxppc-dev@lists.ozlabs.org
7392 S:      Maintained
7393 F:      drivers/tty/ehv_bytechan.c
7394
7395 EPSON S1D13XXX FRAMEBUFFER DRIVER
7396 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
7397 S:      Maintained
7398 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
7399 F:      drivers/video/fbdev/s1d13xxxfb.c
7400 F:      include/video/s1d13xxxfb.h
7401
7402 EROFS FILE SYSTEM
7403 M:      Gao Xiang <xiang@kernel.org>
7404 M:      Chao Yu <chao@kernel.org>
7405 L:      linux-erofs@lists.ozlabs.org
7406 S:      Maintained
7407 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs.git
7408 F:      Documentation/filesystems/erofs.rst
7409 F:      fs/erofs/
7410 F:      include/trace/events/erofs.h
7411
7412 ERRSEQ ERROR TRACKING INFRASTRUCTURE
7413 M:      Jeff Layton <jlayton@kernel.org>
7414 S:      Maintained
7415 F:      include/linux/errseq.h
7416 F:      lib/errseq.c
7417
7418 ET131X NETWORK DRIVER
7419 M:      Mark Einon <mark.einon@gmail.com>
7420 S:      Odd Fixes
7421 F:      drivers/net/ethernet/agere/
7422
7423 ETAS ES58X CAN/USB DRIVER
7424 M:      Vincent Mailhol <mailhol.vincent@wanadoo.fr>
7425 L:      linux-can@vger.kernel.org
7426 S:      Maintained
7427 F:      drivers/net/can/usb/etas_es58x/
7428
7429 ETHERNET BRIDGE
7430 M:      Roopa Prabhu <roopa@nvidia.com>
7431 M:      Nikolay Aleksandrov <razor@blackwall.org>
7432 L:      bridge@lists.linux-foundation.org (moderated for non-subscribers)
7433 L:      netdev@vger.kernel.org
7434 S:      Maintained
7435 W:      http://www.linuxfoundation.org/en/Net:Bridge
7436 F:      include/linux/netfilter_bridge/
7437 F:      net/bridge/
7438
7439 ETHERNET PHY LIBRARY
7440 M:      Andrew Lunn <andrew@lunn.ch>
7441 M:      Heiner Kallweit <hkallweit1@gmail.com>
7442 R:      Russell King <linux@armlinux.org.uk>
7443 L:      netdev@vger.kernel.org
7444 S:      Maintained
7445 F:      Documentation/ABI/testing/sysfs-class-net-phydev
7446 F:      Documentation/devicetree/bindings/net/ethernet-phy.yaml
7447 F:      Documentation/devicetree/bindings/net/mdio*
7448 F:      Documentation/devicetree/bindings/net/qca,ar803x.yaml
7449 F:      Documentation/networking/phy.rst
7450 F:      drivers/net/mdio/
7451 F:      drivers/net/mdio/acpi_mdio.c
7452 F:      drivers/net/mdio/fwnode_mdio.c
7453 F:      drivers/net/mdio/of_mdio.c
7454 F:      drivers/net/pcs/
7455 F:      drivers/net/phy/
7456 F:      include/dt-bindings/net/qca-ar803x.h
7457 F:      include/linux/linkmode.h
7458 F:      include/linux/*mdio*.h
7459 F:      include/linux/mdio/*.h
7460 F:      include/linux/mii.h
7461 F:      include/linux/of_net.h
7462 F:      include/linux/phy.h
7463 F:      include/linux/phy_fixed.h
7464 F:      include/linux/platform_data/mdio-bcm-unimac.h
7465 F:      include/linux/platform_data/mdio-gpio.h
7466 F:      include/trace/events/mdio.h
7467 F:      include/uapi/linux/mdio.h
7468 F:      include/uapi/linux/mii.h
7469 F:      net/core/of_net.c
7470
7471 EXEC & BINFMT API
7472 R:      Eric Biederman <ebiederm@xmission.com>
7473 R:      Kees Cook <keescook@chromium.org>
7474 L:      linux-mm@kvack.org
7475 S:      Supported
7476 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/execve
7477 F:      arch/alpha/kernel/binfmt_loader.c
7478 F:      fs/*binfmt_*.c
7479 F:      fs/exec.c
7480 F:      include/linux/binfmts.h
7481 F:      include/linux/elf.h
7482 F:      include/uapi/linux/binfmts.h
7483 F:      include/uapi/linux/elf.h
7484 F:      tools/testing/selftests/exec/
7485 N:      asm/elf.h
7486 N:      binfmt
7487
7488 EXFAT FILE SYSTEM
7489 M:      Namjae Jeon <linkinjeon@kernel.org>
7490 M:      Sungjong Seo <sj1557.seo@samsung.com>
7491 L:      linux-fsdevel@vger.kernel.org
7492 S:      Maintained
7493 F:      fs/exfat/
7494
7495 EXT2 FILE SYSTEM
7496 M:      Jan Kara <jack@suse.com>
7497 L:      linux-ext4@vger.kernel.org
7498 S:      Maintained
7499 F:      Documentation/filesystems/ext2.rst
7500 F:      fs/ext2/
7501 F:      include/linux/ext2*
7502
7503 EXT4 FILE SYSTEM
7504 M:      "Theodore Ts'o" <tytso@mit.edu>
7505 M:      Andreas Dilger <adilger.kernel@dilger.ca>
7506 L:      linux-ext4@vger.kernel.org
7507 S:      Maintained
7508 W:      http://ext4.wiki.kernel.org
7509 Q:      http://patchwork.ozlabs.org/project/linux-ext4/list/
7510 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tytso/ext4.git
7511 F:      Documentation/filesystems/ext4/
7512 F:      fs/ext4/
7513 F:      include/trace/events/ext4.h
7514
7515 Extended Verification Module (EVM)
7516 M:      Mimi Zohar <zohar@linux.ibm.com>
7517 L:      linux-integrity@vger.kernel.org
7518 S:      Supported
7519 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/zohar/linux-integrity.git
7520 F:      security/integrity/evm/
7521 F:      security/integrity/
7522
7523 EXTENSIBLE FIRMWARE INTERFACE (EFI)
7524 M:      Ard Biesheuvel <ardb@kernel.org>
7525 L:      linux-efi@vger.kernel.org
7526 S:      Maintained
7527 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
7528 F:      Documentation/admin-guide/efi-stub.rst
7529 F:      arch/*/include/asm/efi.h
7530 F:      arch/*/kernel/efi.c
7531 F:      arch/arm/boot/compressed/efi-header.S
7532 F:      arch/arm64/kernel/efi-entry.S
7533 F:      arch/x86/platform/efi/
7534 F:      drivers/firmware/efi/
7535 F:      include/linux/efi*.h
7536
7537 EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
7538 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
7539 M:      Chanwoo Choi <cw00.choi@samsung.com>
7540 L:      linux-kernel@vger.kernel.org
7541 S:      Maintained
7542 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git
7543 F:      Documentation/devicetree/bindings/extcon/
7544 F:      Documentation/firmware-guide/acpi/extcon-intel-int3496.rst
7545 F:      drivers/extcon/
7546 F:      include/linux/extcon.h
7547 F:      include/linux/extcon/
7548
7549 EXTRA BOOT CONFIG
7550 M:      Masami Hiramatsu <mhiramat@kernel.org>
7551 S:      Maintained
7552 F:      Documentation/admin-guide/bootconfig.rst
7553 F:      fs/proc/bootconfig.c
7554 F:      include/linux/bootconfig.h
7555 F:      lib/bootconfig-data.S
7556 F:      lib/bootconfig.c
7557 F:      tools/bootconfig/*
7558 F:      tools/bootconfig/scripts/*
7559
7560 EXYNOS DP DRIVER
7561 M:      Jingoo Han <jingoohan1@gmail.com>
7562 L:      dri-devel@lists.freedesktop.org
7563 S:      Maintained
7564 F:      drivers/gpu/drm/exynos/exynos_dp*
7565
7566 EXYNOS SYSMMU (IOMMU) driver
7567 M:      Marek Szyprowski <m.szyprowski@samsung.com>
7568 L:      iommu@lists.linux-foundation.org
7569 S:      Maintained
7570 F:      drivers/iommu/exynos-iommu.c
7571
7572 F2FS FILE SYSTEM
7573 M:      Jaegeuk Kim <jaegeuk@kernel.org>
7574 M:      Chao Yu <chao@kernel.org>
7575 L:      linux-f2fs-devel@lists.sourceforge.net
7576 S:      Maintained
7577 W:      https://f2fs.wiki.kernel.org/
7578 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
7579 F:      Documentation/ABI/testing/sysfs-fs-f2fs
7580 F:      Documentation/filesystems/f2fs.rst
7581 F:      fs/f2fs/
7582 F:      include/linux/f2fs_fs.h
7583 F:      include/trace/events/f2fs.h
7584 F:      include/uapi/linux/f2fs.h
7585
7586 F71805F HARDWARE MONITORING DRIVER
7587 M:      Jean Delvare <jdelvare@suse.com>
7588 L:      linux-hwmon@vger.kernel.org
7589 S:      Maintained
7590 F:      Documentation/hwmon/f71805f.rst
7591 F:      drivers/hwmon/f71805f.c
7592
7593 FADDR2LINE
7594 M:      Josh Poimboeuf <jpoimboe@kernel.org>
7595 S:      Maintained
7596 F:      scripts/faddr2line
7597
7598 FAILOVER MODULE
7599 M:      Sridhar Samudrala <sridhar.samudrala@intel.com>
7600 L:      netdev@vger.kernel.org
7601 S:      Supported
7602 F:      Documentation/networking/failover.rst
7603 F:      include/net/failover.h
7604 F:      net/core/failover.c
7605
7606 FANOTIFY
7607 M:      Jan Kara <jack@suse.cz>
7608 R:      Amir Goldstein <amir73il@gmail.com>
7609 R:      Matthew Bobrowski <repnop@google.com>
7610 L:      linux-fsdevel@vger.kernel.org
7611 S:      Maintained
7612 F:      fs/notify/fanotify/
7613 F:      include/linux/fanotify.h
7614 F:      include/uapi/linux/fanotify.h
7615
7616 FARSYNC SYNCHRONOUS DRIVER
7617 M:      Kevin Curtis <kevin.curtis@farsite.co.uk>
7618 S:      Supported
7619 W:      http://www.farsite.co.uk/
7620 F:      drivers/net/wan/farsync.*
7621
7622 FAULT INJECTION SUPPORT
7623 M:      Akinobu Mita <akinobu.mita@gmail.com>
7624 S:      Supported
7625 F:      Documentation/fault-injection/
7626 F:      lib/fault-inject.c
7627
7628 FBTFT Framebuffer drivers
7629 L:      dri-devel@lists.freedesktop.org
7630 L:      linux-fbdev@vger.kernel.org
7631 S:      Orphan
7632 F:      drivers/staging/fbtft/
7633
7634 FC0011 TUNER DRIVER
7635 M:      Michael Buesch <m@bues.ch>
7636 L:      linux-media@vger.kernel.org
7637 S:      Maintained
7638 F:      drivers/media/tuners/fc0011.c
7639 F:      drivers/media/tuners/fc0011.h
7640
7641 FC2580 MEDIA DRIVER
7642 M:      Antti Palosaari <crope@iki.fi>
7643 L:      linux-media@vger.kernel.org
7644 S:      Maintained
7645 W:      https://linuxtv.org
7646 W:      http://palosaari.fi/linux/
7647 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7648 T:      git git://linuxtv.org/anttip/media_tree.git
7649 F:      drivers/media/tuners/fc2580*
7650
7651 FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
7652 M:      Hannes Reinecke <hare@suse.de>
7653 L:      linux-scsi@vger.kernel.org
7654 S:      Supported
7655 W:      www.Open-FCoE.org
7656 F:      drivers/scsi/fcoe/
7657 F:      drivers/scsi/libfc/
7658 F:      include/scsi/fc/
7659 F:      include/scsi/libfc.h
7660 F:      include/scsi/libfcoe.h
7661 F:      include/uapi/scsi/fc/
7662
7663 FILE LOCKING (flock() and fcntl()/lockf())
7664 M:      Jeff Layton <jlayton@kernel.org>
7665 M:      Chuck Lever <chuck.lever@oracle.com>
7666 L:      linux-fsdevel@vger.kernel.org
7667 S:      Maintained
7668 F:      fs/fcntl.c
7669 F:      fs/locks.c
7670 F:      include/linux/fcntl.h
7671 F:      include/uapi/linux/fcntl.h
7672
7673 FILESYSTEM DIRECT ACCESS (DAX)
7674 M:      Dan Williams <dan.j.williams@intel.com>
7675 R:      Matthew Wilcox <willy@infradead.org>
7676 R:      Jan Kara <jack@suse.cz>
7677 L:      linux-fsdevel@vger.kernel.org
7678 L:      nvdimm@lists.linux.dev
7679 S:      Supported
7680 F:      fs/dax.c
7681 F:      include/linux/dax.h
7682 F:      include/trace/events/fs_dax.h
7683
7684 FILESYSTEMS (VFS and infrastructure)
7685 M:      Alexander Viro <viro@zeniv.linux.org.uk>
7686 L:      linux-fsdevel@vger.kernel.org
7687 S:      Maintained
7688 F:      fs/*
7689 F:      include/linux/fs.h
7690 F:      include/linux/fs_types.h
7691 F:      include/uapi/linux/fs.h
7692 F:      include/uapi/linux/openat2.h
7693 X:      fs/io-wq.c
7694 X:      fs/io-wq.h
7695 X:      fs/io_uring.c
7696
7697 FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
7698 M:      Riku Voipio <riku.voipio@iki.fi>
7699 L:      linux-hwmon@vger.kernel.org
7700 S:      Maintained
7701 F:      drivers/hwmon/f75375s.c
7702 F:      include/linux/f75375s.h
7703
7704 FIREWIRE AUDIO DRIVERS and IEC 61883-1/6 PACKET STREAMING ENGINE
7705 M:      Clemens Ladisch <clemens@ladisch.de>
7706 M:      Takashi Sakamoto <o-takashi@sakamocchi.jp>
7707 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7708 S:      Maintained
7709 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
7710 F:      include/uapi/sound/firewire.h
7711 F:      sound/firewire/
7712
7713 FIREWIRE MEDIA DRIVERS (firedtv)
7714 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
7715 L:      linux-media@vger.kernel.org
7716 L:      linux1394-devel@lists.sourceforge.net
7717 S:      Maintained
7718 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
7719 F:      drivers/media/firewire/
7720
7721 FIREWIRE SBP-2 TARGET
7722 M:      Chris Boot <bootc@bootc.net>
7723 L:      linux-scsi@vger.kernel.org
7724 L:      target-devel@vger.kernel.org
7725 L:      linux1394-devel@lists.sourceforge.net
7726 S:      Maintained
7727 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
7728 F:      drivers/target/sbp/
7729
7730 FIREWIRE SUBSYSTEM
7731 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
7732 L:      linux1394-devel@lists.sourceforge.net
7733 S:      Maintained
7734 W:      http://ieee1394.wiki.kernel.org/
7735 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
7736 F:      drivers/firewire/
7737 F:      include/linux/firewire.h
7738 F:      include/uapi/linux/firewire*.h
7739 F:      tools/firewire/
7740
7741 FIRMWARE FRAMEWORK FOR ARMV8-A
7742 M:      Sudeep Holla <sudeep.holla@arm.com>
7743 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7744 S:      Maintained
7745 F:      drivers/firmware/arm_ffa/
7746 F:      include/linux/arm_ffa.h
7747
7748 FIRMWARE LOADER (request_firmware)
7749 M:      Luis Chamberlain <mcgrof@kernel.org>
7750 M:      Russ Weight <russell.h.weight@intel.com>
7751 L:      linux-kernel@vger.kernel.org
7752 S:      Maintained
7753 F:      Documentation/firmware_class/
7754 F:      drivers/base/firmware_loader/
7755 F:      include/linux/firmware.h
7756
7757 FLEXTIMER FTM-QUADDEC DRIVER
7758 M:      Patrick Havelange <patrick.havelange@essensium.com>
7759 L:      linux-iio@vger.kernel.org
7760 S:      Maintained
7761 F:      Documentation/devicetree/bindings/counter/ftm-quaddec.txt
7762 F:      drivers/counter/ftm-quaddec.c
7763
7764 FLOPPY DRIVER
7765 M:      Denis Efremov <efremov@linux.com>
7766 L:      linux-block@vger.kernel.org
7767 S:      Odd Fixes
7768 F:      drivers/block/floppy.c
7769
7770 FLYSKY FSIA6B RC RECEIVER
7771 M:      Markus Koch <markus@notsyncing.net>
7772 L:      linux-input@vger.kernel.org
7773 S:      Maintained
7774 F:      drivers/input/joystick/fsia6b.c
7775
7776 FOCUSRITE SCARLETT GEN 2/3 MIXER DRIVER
7777 M:      Geoffrey D. Bennett <g@b4.vu>
7778 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7779 S:      Maintained
7780 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
7781 F:      sound/usb/mixer_scarlett_gen2.c
7782
7783 FORCEDETH GIGABIT ETHERNET DRIVER
7784 M:      Rain River <rain.1986.08.12@gmail.com>
7785 M:      Zhu Yanjun <zyjzyj2000@gmail.com>
7786 L:      netdev@vger.kernel.org
7787 S:      Maintained
7788 F:      drivers/net/ethernet/nvidia/*
7789
7790 FORTIFY_SOURCE
7791 M:      Kees Cook <keescook@chromium.org>
7792 L:      linux-hardening@vger.kernel.org
7793 S:      Supported
7794 F:      include/linux/fortify-string.h
7795 F:      lib/test_fortify/*
7796 F:      scripts/test_fortify.sh
7797 K:      \b__NO_FORTIFY\b
7798
7799 FPGA DFL DRIVERS
7800 M:      Wu Hao <hao.wu@intel.com>
7801 R:      Tom Rix <trix@redhat.com>
7802 L:      linux-fpga@vger.kernel.org
7803 S:      Maintained
7804 F:      Documentation/ABI/testing/sysfs-bus-dfl*
7805 F:      Documentation/fpga/dfl.rst
7806 F:      drivers/fpga/dfl*
7807 F:      drivers/uio/uio_dfl.c
7808 F:      include/linux/dfl.h
7809 F:      include/uapi/linux/fpga-dfl.h
7810
7811 FPGA MANAGER FRAMEWORK
7812 M:      Moritz Fischer <mdf@kernel.org>
7813 M:      Wu Hao <hao.wu@intel.com>
7814 M:      Xu Yilun <yilun.xu@intel.com>
7815 R:      Tom Rix <trix@redhat.com>
7816 L:      linux-fpga@vger.kernel.org
7817 S:      Maintained
7818 Q:      http://patchwork.kernel.org/project/linux-fpga/list/
7819 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/fpga/linux-fpga.git
7820 F:      Documentation/devicetree/bindings/fpga/
7821 F:      Documentation/driver-api/fpga/
7822 F:      Documentation/fpga/
7823 F:      drivers/fpga/
7824 F:      include/linux/fpga/
7825
7826 FPU EMULATOR
7827 M:      Bill Metzenthen <billm@melbpc.org.au>
7828 S:      Maintained
7829 W:      http://floatingpoint.sourceforge.net/emulator/index.html
7830 F:      arch/x86/math-emu/
7831
7832 FRAMEBUFFER CORE
7833 M:      Daniel Vetter <daniel@ffwll.ch>
7834 F:      drivers/video/fbdev/core/
7835 S:      Odd Fixes
7836 T:      git git://anongit.freedesktop.org/drm/drm-misc
7837
7838 FRAMEBUFFER LAYER
7839 M:      Helge Deller <deller@gmx.de>
7840 L:      linux-fbdev@vger.kernel.org
7841 L:      dri-devel@lists.freedesktop.org
7842 S:      Maintained
7843 Q:      http://patchwork.kernel.org/project/linux-fbdev/list/
7844 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/deller/linux-fbdev.git
7845 F:      Documentation/fb/
7846 F:      drivers/video/
7847 F:      include/linux/fb.h
7848 F:      include/uapi/linux/fb.h
7849 F:      include/uapi/video/
7850 F:      include/video/
7851
7852 FREESCALE CAAM (Cryptographic Acceleration and Assurance Module) DRIVER
7853 M:      Horia Geantă <horia.geanta@nxp.com>
7854 M:      Pankaj Gupta <pankaj.gupta@nxp.com>
7855 M:      Gaurav Jain <gaurav.jain@nxp.com>
7856 L:      linux-crypto@vger.kernel.org
7857 S:      Maintained
7858 F:      Documentation/devicetree/bindings/crypto/fsl-sec4.txt
7859 F:      drivers/crypto/caam/
7860
7861 FREESCALE COLDFIRE M5441X MMC DRIVER
7862 M:      Angelo Dureghello <angelo.dureghello@timesys.com>
7863 L:      linux-mmc@vger.kernel.org
7864 S:      Maintained
7865 F:      drivers/mmc/host/sdhci-esdhc-mcf.c
7866 F:      include/linux/platform_data/mmc-esdhc-mcf.h
7867
7868 FREESCALE DIU FRAMEBUFFER DRIVER
7869 M:      Timur Tabi <timur@kernel.org>
7870 L:      linux-fbdev@vger.kernel.org
7871 S:      Maintained
7872 F:      drivers/video/fbdev/fsl-diu-fb.*
7873
7874 FREESCALE DMA DRIVER
7875 M:      Li Yang <leoyang.li@nxp.com>
7876 M:      Zhang Wei <zw@zh-kernel.org>
7877 L:      linuxppc-dev@lists.ozlabs.org
7878 S:      Maintained
7879 F:      drivers/dma/fsldma.*
7880
7881 FREESCALE DSPI DRIVER
7882 M:      Vladimir Oltean <olteanv@gmail.com>
7883 L:      linux-spi@vger.kernel.org
7884 S:      Maintained
7885 F:      Documentation/devicetree/bindings/spi/spi-fsl-dspi.txt
7886 F:      drivers/spi/spi-fsl-dspi.c
7887 F:      include/linux/spi/spi-fsl-dspi.h
7888
7889 FREESCALE ENETC ETHERNET DRIVERS
7890 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
7891 L:      netdev@vger.kernel.org
7892 S:      Maintained
7893 F:      drivers/net/ethernet/freescale/enetc/
7894
7895 FREESCALE eTSEC ETHERNET DRIVER (GIANFAR)
7896 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
7897 L:      netdev@vger.kernel.org
7898 S:      Maintained
7899 F:      Documentation/devicetree/bindings/net/fsl-tsec-phy.txt
7900 F:      drivers/net/ethernet/freescale/gianfar*
7901
7902 FREESCALE GPMI NAND DRIVER
7903 M:      Han Xu <han.xu@nxp.com>
7904 L:      linux-mtd@lists.infradead.org
7905 S:      Maintained
7906 F:      drivers/mtd/nand/raw/gpmi-nand/*
7907
7908 FREESCALE I2C CPM DRIVER
7909 M:      Jochen Friedrich <jochen@scram.de>
7910 L:      linuxppc-dev@lists.ozlabs.org
7911 L:      linux-i2c@vger.kernel.org
7912 S:      Maintained
7913 F:      drivers/i2c/busses/i2c-cpm.c
7914
7915 FREESCALE IMX / MXC FEC DRIVER
7916 M:      Joakim Zhang <qiangqing.zhang@nxp.com>
7917 L:      netdev@vger.kernel.org
7918 S:      Maintained
7919 F:      Documentation/devicetree/bindings/net/fsl,fec.yaml
7920 F:      drivers/net/ethernet/freescale/fec.h
7921 F:      drivers/net/ethernet/freescale/fec_main.c
7922 F:      drivers/net/ethernet/freescale/fec_ptp.c
7923
7924 FREESCALE IMX / MXC FRAMEBUFFER DRIVER
7925 M:      Sascha Hauer <s.hauer@pengutronix.de>
7926 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
7927 L:      linux-fbdev@vger.kernel.org
7928 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7929 S:      Maintained
7930 F:      drivers/video/fbdev/imxfb.c
7931 F:      include/linux/platform_data/video-imxfb.h
7932
7933 FREESCALE IMX DDR PMU DRIVER
7934 M:      Frank Li <Frank.li@nxp.com>
7935 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7936 S:      Maintained
7937 F:      Documentation/admin-guide/perf/imx-ddr.rst
7938 F:      Documentation/devicetree/bindings/perf/fsl-imx-ddr.yaml
7939 F:      drivers/perf/fsl_imx8_ddr_perf.c
7940
7941 FREESCALE IMX I2C DRIVER
7942 M:      Oleksij Rempel <o.rempel@pengutronix.de>
7943 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
7944 L:      linux-i2c@vger.kernel.org
7945 S:      Maintained
7946 F:      Documentation/devicetree/bindings/i2c/i2c-imx.yaml
7947 F:      drivers/i2c/busses/i2c-imx.c
7948
7949 FREESCALE IMX LPI2C DRIVER
7950 M:      Dong Aisheng <aisheng.dong@nxp.com>
7951 L:      linux-i2c@vger.kernel.org
7952 L:      linux-imx@nxp.com
7953 S:      Maintained
7954 F:      Documentation/devicetree/bindings/i2c/i2c-imx-lpi2c.yaml
7955 F:      drivers/i2c/busses/i2c-imx-lpi2c.c
7956
7957 FREESCALE MPC I2C DRIVER
7958 M:      Chris Packham <chris.packham@alliedtelesis.co.nz>
7959 L:      linux-i2c@vger.kernel.org
7960 S:      Maintained
7961 F:      Documentation/devicetree/bindings/i2c/i2c-mpc.yaml
7962 F:      drivers/i2c/busses/i2c-mpc.c
7963
7964 FREESCALE QORIQ DPAA ETHERNET DRIVER
7965 M:      Madalin Bucur <madalin.bucur@nxp.com>
7966 L:      netdev@vger.kernel.org
7967 S:      Maintained
7968 F:      drivers/net/ethernet/freescale/dpaa
7969
7970 FREESCALE QORIQ DPAA FMAN DRIVER
7971 M:      Madalin Bucur <madalin.bucur@nxp.com>
7972 L:      netdev@vger.kernel.org
7973 S:      Maintained
7974 F:      Documentation/devicetree/bindings/net/fsl-fman.txt
7975 F:      drivers/net/ethernet/freescale/fman
7976
7977 FREESCALE QORIQ PTP CLOCK DRIVER
7978 M:      Yangbo Lu <yangbo.lu@nxp.com>
7979 L:      netdev@vger.kernel.org
7980 S:      Maintained
7981 F:      Documentation/devicetree/bindings/ptp/ptp-qoriq.txt
7982 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-ptp*
7983 F:      drivers/net/ethernet/freescale/dpaa2/dprtc*
7984 F:      drivers/net/ethernet/freescale/enetc/enetc_ptp.c
7985 F:      drivers/ptp/ptp_qoriq.c
7986 F:      drivers/ptp/ptp_qoriq_debugfs.c
7987 F:      include/linux/fsl/ptp_qoriq.h
7988
7989 FREESCALE QUAD SPI DRIVER
7990 M:      Han Xu <han.xu@nxp.com>
7991 L:      linux-spi@vger.kernel.org
7992 S:      Maintained
7993 F:      Documentation/devicetree/bindings/spi/fsl,spi-fsl-qspi.yaml
7994 F:      drivers/spi/spi-fsl-qspi.c
7995
7996 FREESCALE QUICC ENGINE LIBRARY
7997 M:      Qiang Zhao <qiang.zhao@nxp.com>
7998 L:      linuxppc-dev@lists.ozlabs.org
7999 S:      Maintained
8000 F:      drivers/soc/fsl/qe/
8001 F:      include/soc/fsl/qe/
8002
8003 FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
8004 M:      Li Yang <leoyang.li@nxp.com>
8005 L:      netdev@vger.kernel.org
8006 L:      linuxppc-dev@lists.ozlabs.org
8007 S:      Maintained
8008 F:      drivers/net/ethernet/freescale/ucc_geth*
8009
8010 FREESCALE QUICC ENGINE UCC HDLC DRIVER
8011 M:      Zhao Qiang <qiang.zhao@nxp.com>
8012 L:      netdev@vger.kernel.org
8013 L:      linuxppc-dev@lists.ozlabs.org
8014 S:      Maintained
8015 F:      drivers/net/wan/fsl_ucc_hdlc*
8016
8017 FREESCALE QUICC ENGINE UCC UART DRIVER
8018 M:      Timur Tabi <timur@kernel.org>
8019 L:      linuxppc-dev@lists.ozlabs.org
8020 S:      Maintained
8021 F:      drivers/tty/serial/ucc_uart.c
8022
8023 FREESCALE SOC DRIVERS
8024 M:      Li Yang <leoyang.li@nxp.com>
8025 L:      linuxppc-dev@lists.ozlabs.org
8026 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
8027 S:      Maintained
8028 F:      Documentation/devicetree/bindings/misc/fsl,dpaa2-console.yaml
8029 F:      Documentation/devicetree/bindings/soc/fsl/
8030 F:      drivers/soc/fsl/
8031 F:      include/linux/fsl/
8032 F:      include/soc/fsl/
8033
8034 FREESCALE SOC FS_ENET DRIVER
8035 M:      Pantelis Antoniou <pantelis.antoniou@gmail.com>
8036 L:      linuxppc-dev@lists.ozlabs.org
8037 L:      netdev@vger.kernel.org
8038 S:      Maintained
8039 F:      drivers/net/ethernet/freescale/fs_enet/
8040 F:      include/linux/fs_enet_pd.h
8041
8042 FREESCALE SOC SOUND DRIVERS
8043 M:      Shengjiu Wang <shengjiu.wang@gmail.com>
8044 M:      Xiubo Li <Xiubo.Lee@gmail.com>
8045 R:      Fabio Estevam <festevam@gmail.com>
8046 R:      Nicolin Chen <nicoleotsuka@gmail.com>
8047 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
8048 L:      linuxppc-dev@lists.ozlabs.org
8049 S:      Maintained
8050 F:      sound/soc/fsl/fsl*
8051 F:      sound/soc/fsl/imx*
8052 F:      sound/soc/fsl/mpc8610_hpcd.c
8053
8054 FREESCALE USB PERIPHERAL DRIVERS
8055 M:      Li Yang <leoyang.li@nxp.com>
8056 L:      linux-usb@vger.kernel.org
8057 L:      linuxppc-dev@lists.ozlabs.org
8058 S:      Maintained
8059 F:      drivers/usb/gadget/udc/fsl*
8060
8061 FREESCALE USB PHY DRIVER
8062 M:      Ran Wang <ran.wang_1@nxp.com>
8063 L:      linux-usb@vger.kernel.org
8064 L:      linuxppc-dev@lists.ozlabs.org
8065 S:      Maintained
8066 F:      drivers/usb/phy/phy-fsl-usb*
8067
8068 FREEVXFS FILESYSTEM
8069 M:      Christoph Hellwig <hch@infradead.org>
8070 S:      Maintained
8071 W:      ftp://ftp.openlinux.org/pub/people/hch/vxfs
8072 F:      fs/freevxfs/
8073
8074 FREEZER
8075 M:      "Rafael J. Wysocki" <rafael@kernel.org>
8076 M:      Pavel Machek <pavel@ucw.cz>
8077 L:      linux-pm@vger.kernel.org
8078 S:      Supported
8079 F:      Documentation/power/freezing-of-tasks.rst
8080 F:      include/linux/freezer.h
8081 F:      kernel/freezer.c
8082
8083 FRONTSWAP API
8084 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
8085 L:      linux-kernel@vger.kernel.org
8086 S:      Maintained
8087 F:      include/linux/frontswap.h
8088 F:      mm/frontswap.c
8089
8090 FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
8091 M:      David Howells <dhowells@redhat.com>
8092 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
8093 S:      Supported
8094 F:      Documentation/filesystems/caching/
8095 F:      fs/fscache/
8096 F:      include/linux/fscache*.h
8097
8098 FSCRYPT: FILE SYSTEM LEVEL ENCRYPTION SUPPORT
8099 M:      Theodore Y. Ts'o <tytso@mit.edu>
8100 M:      Jaegeuk Kim <jaegeuk@kernel.org>
8101 M:      Eric Biggers <ebiggers@kernel.org>
8102 L:      linux-fscrypt@vger.kernel.org
8103 S:      Supported
8104 Q:      https://patchwork.kernel.org/project/linux-fscrypt/list/
8105 T:      git git://git.kernel.org/pub/scm/fs/fscrypt/fscrypt.git
8106 F:      Documentation/filesystems/fscrypt.rst
8107 F:      fs/crypto/
8108 F:      include/linux/fscrypt*.h
8109 F:      include/uapi/linux/fscrypt.h
8110
8111 FSI SUBSYSTEM
8112 M:      Jeremy Kerr <jk@ozlabs.org>
8113 M:      Joel Stanley <joel@jms.id.au>
8114 R:      Alistar Popple <alistair@popple.id.au>
8115 R:      Eddie James <eajames@linux.ibm.com>
8116 L:      linux-fsi@lists.ozlabs.org
8117 S:      Supported
8118 Q:      http://patchwork.ozlabs.org/project/linux-fsi/list/
8119 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joel/fsi.git
8120 F:      drivers/fsi/
8121 F:      include/linux/fsi*.h
8122 F:      include/trace/events/fsi*.h
8123
8124 FSI-ATTACHED I2C DRIVER
8125 M:      Eddie James <eajames@linux.ibm.com>
8126 L:      linux-i2c@vger.kernel.org
8127 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
8128 S:      Maintained
8129 F:      Documentation/devicetree/bindings/i2c/i2c-fsi.txt
8130 F:      drivers/i2c/busses/i2c-fsi.c
8131
8132 FSI-ATTACHED SPI DRIVER
8133 M:      Eddie James <eajames@linux.ibm.com>
8134 L:      linux-spi@vger.kernel.org
8135 S:      Maintained
8136 F:      Documentation/devicetree/bindings/fsi/ibm,fsi2spi.yaml
8137 F:      drivers/spi/spi-fsi.c
8138
8139 FSNOTIFY: FILESYSTEM NOTIFICATION INFRASTRUCTURE
8140 M:      Jan Kara <jack@suse.cz>
8141 R:      Amir Goldstein <amir73il@gmail.com>
8142 L:      linux-fsdevel@vger.kernel.org
8143 S:      Maintained
8144 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jack/linux-fs.git fsnotify
8145 F:      fs/notify/
8146 F:      include/linux/fsnotify*.h
8147
8148 FSVERITY: READ-ONLY FILE-BASED AUTHENTICITY PROTECTION
8149 M:      Eric Biggers <ebiggers@kernel.org>
8150 M:      Theodore Y. Ts'o <tytso@mit.edu>
8151 L:      linux-fscrypt@vger.kernel.org
8152 S:      Supported
8153 Q:      https://patchwork.kernel.org/project/linux-fscrypt/list/
8154 T:      git git://git.kernel.org/pub/scm/fs/fscrypt/fscrypt.git fsverity
8155 F:      Documentation/filesystems/fsverity.rst
8156 F:      fs/verity/
8157 F:      include/linux/fsverity.h
8158 F:      include/uapi/linux/fsverity.h
8159
8160 FT260 FTDI USB-HID TO I2C BRIDGE DRIVER
8161 M:      Michael Zaidman <michael.zaidman@gmail.com>
8162 L:      linux-i2c@vger.kernel.org
8163 L:      linux-input@vger.kernel.org
8164 S:      Maintained
8165 F:      drivers/hid/hid-ft260.c
8166
8167 FUJITSU LAPTOP EXTRAS
8168 M:      Jonathan Woithe <jwoithe@just42.net>
8169 L:      platform-driver-x86@vger.kernel.org
8170 S:      Maintained
8171 F:      drivers/platform/x86/fujitsu-laptop.c
8172
8173 FUJITSU M-5MO LS CAMERA ISP DRIVER
8174 M:      Kyungmin Park <kyungmin.park@samsung.com>
8175 M:      Heungjun Kim <riverful.kim@samsung.com>
8176 L:      linux-media@vger.kernel.org
8177 S:      Maintained
8178 F:      drivers/media/i2c/m5mols/
8179 F:      include/media/i2c/m5mols.h
8180
8181 FUJITSU TABLET EXTRAS
8182 M:      Robert Gerlach <khnz@gmx.de>
8183 L:      platform-driver-x86@vger.kernel.org
8184 S:      Maintained
8185 F:      drivers/platform/x86/fujitsu-tablet.c
8186
8187 FUNGIBLE ETHERNET DRIVERS
8188 M:      Dimitris Michailidis <dmichail@fungible.com>
8189 L:      netdev@vger.kernel.org
8190 S:      Supported
8191 F:      drivers/net/ethernet/fungible/
8192
8193 FUSE: FILESYSTEM IN USERSPACE
8194 M:      Miklos Szeredi <miklos@szeredi.hu>
8195 L:      linux-fsdevel@vger.kernel.org
8196 S:      Maintained
8197 W:      https://github.com/libfuse/
8198 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse.git
8199 F:      Documentation/filesystems/fuse.rst
8200 F:      fs/fuse/
8201 F:      include/uapi/linux/fuse.h
8202
8203 FUTEX SUBSYSTEM
8204 M:      Thomas Gleixner <tglx@linutronix.de>
8205 M:      Ingo Molnar <mingo@redhat.com>
8206 R:      Peter Zijlstra <peterz@infradead.org>
8207 R:      Darren Hart <dvhart@infradead.org>
8208 R:      Davidlohr Bueso <dave@stgolabs.net>
8209 R:      André Almeida <andrealmeid@igalia.com>
8210 L:      linux-kernel@vger.kernel.org
8211 S:      Maintained
8212 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
8213 F:      Documentation/locking/*futex*
8214 F:      include/asm-generic/futex.h
8215 F:      include/linux/futex.h
8216 F:      include/uapi/linux/futex.h
8217 F:      kernel/futex/*
8218 F:      tools/perf/bench/futex*
8219 F:      tools/testing/selftests/futex/
8220
8221 GATEWORKS SYSTEM CONTROLLER (GSC) DRIVER
8222 M:      Tim Harvey <tharvey@gateworks.com>
8223 M:      Robert Jones <rjones@gateworks.com>
8224 S:      Maintained
8225 F:      Documentation/devicetree/bindings/mfd/gateworks-gsc.yaml
8226 F:      drivers/mfd/gateworks-gsc.c
8227 F:      include/linux/mfd/gsc.h
8228 F:      Documentation/hwmon/gsc-hwmon.rst
8229 F:      drivers/hwmon/gsc-hwmon.c
8230 F:      include/linux/platform_data/gsc_hwmon.h
8231
8232 GCC PLUGINS
8233 M:      Kees Cook <keescook@chromium.org>
8234 L:      linux-hardening@vger.kernel.org
8235 S:      Maintained
8236 F:      Documentation/kbuild/gcc-plugins.rst
8237 F:      scripts/Makefile.gcc-plugins
8238 F:      scripts/gcc-plugins/
8239
8240 GCOV BASED KERNEL PROFILING
8241 M:      Peter Oberparleiter <oberpar@linux.ibm.com>
8242 S:      Maintained
8243 F:      Documentation/dev-tools/gcov.rst
8244 F:      kernel/gcov/
8245
8246 GDB KERNEL DEBUGGING HELPER SCRIPTS
8247 M:      Jan Kiszka <jan.kiszka@siemens.com>
8248 M:      Kieran Bingham <kbingham@kernel.org>
8249 S:      Supported
8250 F:      scripts/gdb/
8251
8252 GEMINI CRYPTO DRIVER
8253 M:      Corentin Labbe <clabbe@baylibre.com>
8254 L:      linux-crypto@vger.kernel.org
8255 S:      Maintained
8256 F:      drivers/crypto/gemini/
8257
8258 GEMTEK FM RADIO RECEIVER DRIVER
8259 M:      Hans Verkuil <hverkuil@xs4all.nl>
8260 L:      linux-media@vger.kernel.org
8261 S:      Maintained
8262 W:      https://linuxtv.org
8263 T:      git git://linuxtv.org/media_tree.git
8264 F:      drivers/media/radio/radio-gemtek*
8265
8266 GENERIC ARCHITECTURE TOPOLOGY
8267 M:      Sudeep Holla <sudeep.holla@arm.com>
8268 L:      linux-kernel@vger.kernel.org
8269 S:      Maintained
8270 F:      drivers/base/arch_topology.c
8271 F:      include/linux/arch_topology.h
8272
8273 GENERIC ENTRY CODE
8274 M:      Thomas Gleixner <tglx@linutronix.de>
8275 M:      Peter Zijlstra <peterz@infradead.org>
8276 M:      Andy Lutomirski <luto@kernel.org>
8277 L:      linux-kernel@vger.kernel.org
8278 S:      Maintained
8279 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/entry
8280 F:      include/linux/entry-common.h
8281 F:      include/linux/entry-kvm.h
8282 F:      kernel/entry/
8283
8284 GENERIC GPIO I2C DRIVER
8285 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
8286 S:      Supported
8287 F:      drivers/i2c/busses/i2c-gpio.c
8288 F:      include/linux/platform_data/i2c-gpio.h
8289
8290 GENERIC GPIO I2C MULTIPLEXER DRIVER
8291 M:      Peter Korsgaard <peter.korsgaard@barco.com>
8292 L:      linux-i2c@vger.kernel.org
8293 S:      Supported
8294 F:      Documentation/i2c/muxes/i2c-mux-gpio.rst
8295 F:      drivers/i2c/muxes/i2c-mux-gpio.c
8296 F:      include/linux/platform_data/i2c-mux-gpio.h
8297
8298 GENERIC HDLC (WAN) DRIVERS
8299 M:      Krzysztof Halasa <khc@pm.waw.pl>
8300 S:      Maintained
8301 W:      http://www.kernel.org/pub/linux/utils/net/hdlc/
8302 F:      drivers/net/wan/c101.c
8303 F:      drivers/net/wan/hd6457*
8304 F:      drivers/net/wan/hdlc*
8305 F:      drivers/net/wan/n2.c
8306 F:      drivers/net/wan/pc300too.c
8307 F:      drivers/net/wan/pci200syn.c
8308 F:      drivers/net/wan/wanxl*
8309
8310 GENERIC INCLUDE/ASM HEADER FILES
8311 M:      Arnd Bergmann <arnd@arndb.de>
8312 L:      linux-arch@vger.kernel.org
8313 S:      Maintained
8314 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
8315 F:      include/asm-generic/
8316 F:      include/uapi/asm-generic/
8317
8318 GENERIC PHY FRAMEWORK
8319 M:      Kishon Vijay Abraham I <kishon@ti.com>
8320 M:      Vinod Koul <vkoul@kernel.org>
8321 L:      linux-phy@lists.infradead.org
8322 S:      Supported
8323 Q:      https://patchwork.kernel.org/project/linux-phy/list/
8324 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/phy/linux-phy.git
8325 F:      Documentation/devicetree/bindings/phy/
8326 F:      drivers/phy/
8327 F:      include/linux/phy/
8328
8329 GENERIC PINCTRL I2C DEMULTIPLEXER DRIVER
8330 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
8331 S:      Supported
8332 F:      drivers/i2c/muxes/i2c-demux-pinctrl.c
8333
8334 GENERIC PM DOMAINS
8335 M:      "Rafael J. Wysocki" <rafael@kernel.org>
8336 M:      Kevin Hilman <khilman@kernel.org>
8337 M:      Ulf Hansson <ulf.hansson@linaro.org>
8338 L:      linux-pm@vger.kernel.org
8339 S:      Supported
8340 F:      Documentation/devicetree/bindings/power/power?domain*
8341 F:      drivers/base/power/domain*.c
8342 F:      include/linux/pm_domain.h
8343
8344 GENERIC RESISTIVE TOUCHSCREEN ADC DRIVER
8345 M:      Eugen Hristev <eugen.hristev@microchip.com>
8346 L:      linux-input@vger.kernel.org
8347 S:      Maintained
8348 F:      drivers/input/touchscreen/resistive-adc-touch.c
8349
8350 GENERIC STRING LIBRARY
8351 R:      Andy Shevchenko <andy@kernel.org>
8352 S:      Maintained
8353 F:      lib/string.c
8354 F:      lib/string_helpers.c
8355 F:      lib/test_string.c
8356 F:      lib/test-string_helpers.c
8357
8358 GENERIC UIO DRIVER FOR PCI DEVICES
8359 M:      "Michael S. Tsirkin" <mst@redhat.com>
8360 L:      kvm@vger.kernel.org
8361 S:      Supported
8362 F:      drivers/uio/uio_pci_generic.c
8363
8364 GENERIC VDSO LIBRARY
8365 M:      Andy Lutomirski <luto@kernel.org>
8366 M:      Thomas Gleixner <tglx@linutronix.de>
8367 M:      Vincenzo Frascino <vincenzo.frascino@arm.com>
8368 L:      linux-kernel@vger.kernel.org
8369 S:      Maintained
8370 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/vdso
8371 F:      include/asm-generic/vdso/vsyscall.h
8372 F:      include/vdso/
8373 F:      kernel/time/vsyscall.c
8374 F:      lib/vdso/
8375
8376 GENWQE (IBM Generic Workqueue Card)
8377 M:      Frank Haverkamp <haver@linux.ibm.com>
8378 S:      Supported
8379 F:      drivers/misc/genwqe/
8380
8381 GET_MAINTAINER SCRIPT
8382 M:      Joe Perches <joe@perches.com>
8383 S:      Maintained
8384 F:      scripts/get_maintainer.pl
8385
8386 GFS2 FILE SYSTEM
8387 M:      Bob Peterson <rpeterso@redhat.com>
8388 M:      Andreas Gruenbacher <agruenba@redhat.com>
8389 L:      cluster-devel@redhat.com
8390 S:      Supported
8391 B:      https://bugzilla.kernel.org/enter_bug.cgi?product=File%20System&component=gfs2
8392 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git
8393 F:      Documentation/filesystems/gfs2*
8394 F:      fs/gfs2/
8395 F:      include/uapi/linux/gfs2_ondisk.h
8396
8397 GIGABYTE WMI DRIVER
8398 M:      Thomas Weißschuh <thomas@weissschuh.net>
8399 L:      platform-driver-x86@vger.kernel.org
8400 S:      Maintained
8401 F:      drivers/platform/x86/gigabyte-wmi.c
8402
8403 GNSS SUBSYSTEM
8404 M:      Johan Hovold <johan@kernel.org>
8405 S:      Maintained
8406 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/gnss.git
8407 F:      Documentation/ABI/testing/sysfs-class-gnss
8408 F:      Documentation/devicetree/bindings/gnss/
8409 F:      drivers/gnss/
8410 F:      include/linux/gnss.h
8411
8412 GO7007 MPEG CODEC
8413 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
8414 L:      linux-media@vger.kernel.org
8415 S:      Maintained
8416 F:      drivers/media/usb/go7007/
8417
8418 GOODIX TOUCHSCREEN
8419 M:      Bastien Nocera <hadess@hadess.net>
8420 M:      Hans de Goede <hdegoede@redhat.com>
8421 L:      linux-input@vger.kernel.org
8422 S:      Maintained
8423 F:      drivers/input/touchscreen/goodix*
8424
8425 GOOGLE ETHERNET DRIVERS
8426 M:      Jeroen de Borst <jeroendb@google.com>
8427 R:      Catherine Sullivan <csully@google.com>
8428 R:      David Awogbemila <awogbemila@google.com>
8429 L:      netdev@vger.kernel.org
8430 S:      Supported
8431 F:      Documentation/networking/device_drivers/ethernet/google/gve.rst
8432 F:      drivers/net/ethernet/google
8433
8434 GPD POCKET FAN DRIVER
8435 M:      Hans de Goede <hdegoede@redhat.com>
8436 L:      platform-driver-x86@vger.kernel.org
8437 S:      Maintained
8438 F:      drivers/platform/x86/gpd-pocket-fan.c
8439
8440 GPIO ACPI SUPPORT
8441 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
8442 M:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
8443 L:      linux-gpio@vger.kernel.org
8444 L:      linux-acpi@vger.kernel.org
8445 S:      Supported
8446 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
8447 F:      Documentation/firmware-guide/acpi/gpio-properties.rst
8448 F:      drivers/gpio/gpiolib-acpi.c
8449 F:      drivers/gpio/gpiolib-acpi.h
8450
8451 GPIO AGGREGATOR
8452 M:      Geert Uytterhoeven <geert+renesas@glider.be>
8453 L:      linux-gpio@vger.kernel.org
8454 S:      Supported
8455 F:      Documentation/admin-guide/gpio/gpio-aggregator.rst
8456 F:      drivers/gpio/gpio-aggregator.c
8457
8458 GPIO IR Transmitter
8459 M:      Sean Young <sean@mess.org>
8460 L:      linux-media@vger.kernel.org
8461 S:      Maintained
8462 F:      drivers/media/rc/gpio-ir-tx.c
8463
8464 GPIO MOCKUP DRIVER
8465 M:      Bamvor Jian Zhang <bamv2005@gmail.com>
8466 L:      linux-gpio@vger.kernel.org
8467 S:      Maintained
8468 F:      drivers/gpio/gpio-mockup.c
8469 F:      tools/testing/selftests/gpio/
8470
8471 GPIO REGMAP
8472 R:      Michael Walle <michael@walle.cc>
8473 S:      Maintained
8474 F:      drivers/gpio/gpio-regmap.c
8475 F:      include/linux/gpio/regmap.h
8476
8477 GPIO SUBSYSTEM
8478 M:      Linus Walleij <linus.walleij@linaro.org>
8479 M:      Bartosz Golaszewski <brgl@bgdev.pl>
8480 L:      linux-gpio@vger.kernel.org
8481 S:      Maintained
8482 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux.git
8483 F:      Documentation/ABI/obsolete/sysfs-gpio
8484 F:      Documentation/ABI/testing/gpio-cdev
8485 F:      Documentation/admin-guide/gpio/
8486 F:      Documentation/devicetree/bindings/gpio/
8487 F:      Documentation/driver-api/gpio/
8488 F:      drivers/gpio/
8489 F:      include/asm-generic/gpio.h
8490 F:      include/linux/gpio.h
8491 F:      include/linux/gpio/
8492 F:      include/linux/of_gpio.h
8493 F:      include/uapi/linux/gpio.h
8494 F:      tools/gpio/
8495
8496 GRE DEMULTIPLEXER DRIVER
8497 M:      Dmitry Kozlov <xeb@mail.ru>
8498 L:      netdev@vger.kernel.org
8499 S:      Maintained
8500 F:      include/net/gre.h
8501 F:      net/ipv4/gre_demux.c
8502 F:      net/ipv4/gre_offload.c
8503
8504 GRETH 10/100/1G Ethernet MAC device driver
8505 M:      Andreas Larsson <andreas@gaisler.com>
8506 L:      netdev@vger.kernel.org
8507 S:      Maintained
8508 F:      drivers/net/ethernet/aeroflex/
8509
8510 GREYBUS AUDIO PROTOCOLS DRIVERS
8511 M:      Vaibhav Agarwal <vaibhav.sr@gmail.com>
8512 M:      Mark Greer <mgreer@animalcreek.com>
8513 S:      Maintained
8514 F:      drivers/staging/greybus/audio_apbridgea.c
8515 F:      drivers/staging/greybus/audio_apbridgea.h
8516 F:      drivers/staging/greybus/audio_codec.c
8517 F:      drivers/staging/greybus/audio_codec.h
8518 F:      drivers/staging/greybus/audio_gb.c
8519 F:      drivers/staging/greybus/audio_manager.c
8520 F:      drivers/staging/greybus/audio_manager.h
8521 F:      drivers/staging/greybus/audio_manager_module.c
8522 F:      drivers/staging/greybus/audio_manager_private.h
8523 F:      drivers/staging/greybus/audio_manager_sysfs.c
8524 F:      drivers/staging/greybus/audio_module.c
8525 F:      drivers/staging/greybus/audio_topology.c
8526
8527 GREYBUS FW/HID/SPI PROTOCOLS DRIVERS
8528 M:      Viresh Kumar <vireshk@kernel.org>
8529 S:      Maintained
8530 F:      drivers/staging/greybus/authentication.c
8531 F:      drivers/staging/greybus/bootrom.c
8532 F:      drivers/staging/greybus/firmware.h
8533 F:      drivers/staging/greybus/fw-core.c
8534 F:      drivers/staging/greybus/fw-download.c
8535 F:      drivers/staging/greybus/fw-management.c
8536 F:      drivers/staging/greybus/greybus_authentication.h
8537 F:      drivers/staging/greybus/greybus_firmware.h
8538 F:      drivers/staging/greybus/hid.c
8539 F:      drivers/staging/greybus/i2c.c
8540 F:      drivers/staging/greybus/spi.c
8541 F:      drivers/staging/greybus/spilib.c
8542 F:      drivers/staging/greybus/spilib.h
8543
8544 GREYBUS LOOPBACK DRIVER
8545 M:      Bryan O'Donoghue <pure.logic@nexus-software.ie>
8546 S:      Maintained
8547 F:      drivers/staging/greybus/loopback.c
8548
8549 GREYBUS PLATFORM DRIVERS
8550 M:      Vaibhav Hiremath <hvaibhav.linux@gmail.com>
8551 S:      Maintained
8552 F:      drivers/staging/greybus/arche-apb-ctrl.c
8553 F:      drivers/staging/greybus/arche-platform.c
8554 F:      drivers/staging/greybus/arche_platform.h
8555
8556 GREYBUS SDIO/GPIO/SPI PROTOCOLS DRIVERS
8557 M:      Rui Miguel Silva <rmfrfs@gmail.com>
8558 S:      Maintained
8559 F:      drivers/staging/greybus/gpio.c
8560 F:      drivers/staging/greybus/light.c
8561 F:      drivers/staging/greybus/power_supply.c
8562 F:      drivers/staging/greybus/sdio.c
8563 F:      drivers/staging/greybus/spi.c
8564 F:      drivers/staging/greybus/spilib.c
8565
8566 GREYBUS SUBSYSTEM
8567 M:      Johan Hovold <johan@kernel.org>
8568 M:      Alex Elder <elder@kernel.org>
8569 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
8570 L:      greybus-dev@lists.linaro.org (moderated for non-subscribers)
8571 S:      Maintained
8572 F:      drivers/greybus/
8573 F:      drivers/staging/greybus/
8574 F:      include/linux/greybus.h
8575 F:      include/linux/greybus/
8576
8577 GREYBUS UART PROTOCOLS DRIVERS
8578 M:      David Lin <dtwlin@gmail.com>
8579 S:      Maintained
8580 F:      drivers/staging/greybus/log.c
8581 F:      drivers/staging/greybus/uart.c
8582
8583 GS1662 VIDEO SERIALIZER
8584 M:      Charles-Antoine Couret <charles-antoine.couret@nexvision.fr>
8585 L:      linux-media@vger.kernel.org
8586 S:      Maintained
8587 T:      git git://linuxtv.org/media_tree.git
8588 F:      drivers/media/spi/gs1662.c
8589
8590 GSPCA FINEPIX SUBDRIVER
8591 M:      Frank Zago <frank@zago.net>
8592 L:      linux-media@vger.kernel.org
8593 S:      Maintained
8594 T:      git git://linuxtv.org/media_tree.git
8595 F:      drivers/media/usb/gspca/finepix.c
8596
8597 GSPCA GL860 SUBDRIVER
8598 M:      Olivier Lorin <o.lorin@laposte.net>
8599 L:      linux-media@vger.kernel.org
8600 S:      Maintained
8601 T:      git git://linuxtv.org/media_tree.git
8602 F:      drivers/media/usb/gspca/gl860/
8603
8604 GSPCA M5602 SUBDRIVER
8605 M:      Erik Andren <erik.andren@gmail.com>
8606 L:      linux-media@vger.kernel.org
8607 S:      Maintained
8608 T:      git git://linuxtv.org/media_tree.git
8609 F:      drivers/media/usb/gspca/m5602/
8610
8611 GSPCA PAC207 SONIXB SUBDRIVER
8612 M:      Hans Verkuil <hverkuil@xs4all.nl>
8613 L:      linux-media@vger.kernel.org
8614 S:      Odd Fixes
8615 T:      git git://linuxtv.org/media_tree.git
8616 F:      drivers/media/usb/gspca/pac207.c
8617
8618 GSPCA SN9C20X SUBDRIVER
8619 M:      Brian Johnson <brijohn@gmail.com>
8620 L:      linux-media@vger.kernel.org
8621 S:      Maintained
8622 T:      git git://linuxtv.org/media_tree.git
8623 F:      drivers/media/usb/gspca/sn9c20x.c
8624
8625 GSPCA T613 SUBDRIVER
8626 M:      Leandro Costantino <lcostantino@gmail.com>
8627 L:      linux-media@vger.kernel.org
8628 S:      Maintained
8629 T:      git git://linuxtv.org/media_tree.git
8630 F:      drivers/media/usb/gspca/t613.c
8631
8632 GSPCA USB WEBCAM DRIVER
8633 M:      Hans Verkuil <hverkuil@xs4all.nl>
8634 L:      linux-media@vger.kernel.org
8635 S:      Odd Fixes
8636 T:      git git://linuxtv.org/media_tree.git
8637 F:      drivers/media/usb/gspca/
8638
8639 GTP (GPRS Tunneling Protocol)
8640 M:      Pablo Neira Ayuso <pablo@netfilter.org>
8641 M:      Harald Welte <laforge@gnumonks.org>
8642 L:      osmocom-net-gprs@lists.osmocom.org
8643 S:      Maintained
8644 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/gtp.git
8645 F:      drivers/net/gtp.c
8646
8647 GUID PARTITION TABLE (GPT)
8648 M:      Davidlohr Bueso <dave@stgolabs.net>
8649 L:      linux-efi@vger.kernel.org
8650 S:      Maintained
8651 F:      block/partitions/efi.*
8652
8653 HABANALABS PCI DRIVER
8654 M:      Oded Gabbay <ogabbay@kernel.org>
8655 S:      Supported
8656 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/ogabbay/linux.git
8657 F:      Documentation/ABI/testing/debugfs-driver-habanalabs
8658 F:      Documentation/ABI/testing/sysfs-driver-habanalabs
8659 F:      drivers/misc/habanalabs/
8660 F:      include/uapi/misc/habanalabs.h
8661
8662 HACKRF MEDIA DRIVER
8663 M:      Antti Palosaari <crope@iki.fi>
8664 L:      linux-media@vger.kernel.org
8665 S:      Maintained
8666 W:      https://linuxtv.org
8667 W:      http://palosaari.fi/linux/
8668 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8669 T:      git git://linuxtv.org/anttip/media_tree.git
8670 F:      drivers/media/usb/hackrf/
8671
8672 HANTRO VPU CODEC DRIVER
8673 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
8674 M:      Philipp Zabel <p.zabel@pengutronix.de>
8675 L:      linux-media@vger.kernel.org
8676 L:      linux-rockchip@lists.infradead.org
8677 S:      Maintained
8678 F:      Documentation/devicetree/bindings/media/nxp,imx8mq-vpu.yaml
8679 F:      Documentation/devicetree/bindings/media/rockchip,rk3568-vepu.yaml
8680 F:      Documentation/devicetree/bindings/media/rockchip-vpu.yaml
8681 F:      drivers/staging/media/hantro/
8682
8683 HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
8684 M:      Frank Seidel <frank@f-seidel.de>
8685 L:      platform-driver-x86@vger.kernel.org
8686 S:      Maintained
8687 W:      http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
8688 F:      drivers/platform/x86/hdaps.c
8689
8690 HARDWARE MONITORING
8691 M:      Jean Delvare <jdelvare@suse.com>
8692 M:      Guenter Roeck <linux@roeck-us.net>
8693 L:      linux-hwmon@vger.kernel.org
8694 S:      Maintained
8695 W:      http://hwmon.wiki.kernel.org/
8696 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
8697 F:      Documentation/ABI/testing/sysfs-class-hwmon
8698 F:      Documentation/devicetree/bindings/hwmon/
8699 F:      Documentation/hwmon/
8700 F:      drivers/hwmon/
8701 F:      include/linux/hwmon*.h
8702 F:      include/trace/events/hwmon*.h
8703 K:      (devm_)?hwmon_device_(un)?register(|_with_groups|_with_info)
8704
8705 HARDWARE RANDOM NUMBER GENERATOR CORE
8706 M:      Matt Mackall <mpm@selenic.com>
8707 M:      Herbert Xu <herbert@gondor.apana.org.au>
8708 L:      linux-crypto@vger.kernel.org
8709 S:      Odd fixes
8710 F:      Documentation/admin-guide/hw_random.rst
8711 F:      Documentation/devicetree/bindings/rng/
8712 F:      drivers/char/hw_random/
8713 F:      include/linux/hw_random.h
8714
8715 HARDWARE SPINLOCK CORE
8716 M:      Ohad Ben-Cohen <ohad@wizery.com>
8717 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
8718 R:      Baolin Wang <baolin.wang7@gmail.com>
8719 L:      linux-remoteproc@vger.kernel.org
8720 S:      Maintained
8721 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git hwspinlock-next
8722 F:      Documentation/devicetree/bindings/hwlock/
8723 F:      Documentation/locking/hwspinlock.rst
8724 F:      drivers/hwspinlock/
8725 F:      include/linux/hwspinlock.h
8726
8727 HARDWARE TRACING FACILITIES
8728 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
8729 S:      Maintained
8730 F:      drivers/hwtracing/
8731
8732 HARMONY SOUND DRIVER
8733 L:      linux-parisc@vger.kernel.org
8734 S:      Maintained
8735 F:      sound/parisc/harmony.*
8736
8737 HDPVR USB VIDEO ENCODER DRIVER
8738 M:      Hans Verkuil <hverkuil@xs4all.nl>
8739 L:      linux-media@vger.kernel.org
8740 S:      Odd Fixes
8741 W:      https://linuxtv.org
8742 T:      git git://linuxtv.org/media_tree.git
8743 F:      drivers/media/usb/hdpvr/
8744
8745 HEWLETT PACKARD ENTERPRISE ILO CHIF DRIVER
8746 M:      Matt Hsiao <matt.hsiao@hpe.com>
8747 S:      Supported
8748 F:      drivers/misc/hpilo.[ch]
8749
8750 HEWLETT PACKARD ENTERPRISE ILO NMI WATCHDOG DRIVER
8751 M:      Jerry Hoemann <jerry.hoemann@hpe.com>
8752 S:      Supported
8753 F:      Documentation/watchdog/hpwdt.rst
8754 F:      drivers/watchdog/hpwdt.c
8755
8756 HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
8757 M:      Don Brace <don.brace@microchip.com>
8758 L:      storagedev@microchip.com
8759 L:      linux-scsi@vger.kernel.org
8760 S:      Supported
8761 F:      Documentation/scsi/hpsa.rst
8762 F:      drivers/scsi/hpsa*.[ch]
8763 F:      include/linux/cciss*.h
8764 F:      include/uapi/linux/cciss*.h
8765
8766 HFI1 DRIVER
8767 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
8768 L:      linux-rdma@vger.kernel.org
8769 S:      Supported
8770 F:      drivers/infiniband/hw/hfi1
8771
8772 HFS FILESYSTEM
8773 L:      linux-fsdevel@vger.kernel.org
8774 S:      Orphan
8775 F:      Documentation/filesystems/hfs.rst
8776 F:      fs/hfs/
8777
8778 HFSPLUS FILESYSTEM
8779 L:      linux-fsdevel@vger.kernel.org
8780 S:      Orphan
8781 F:      Documentation/filesystems/hfsplus.rst
8782 F:      fs/hfsplus/
8783
8784 HGA FRAMEBUFFER DRIVER
8785 M:      Ferenc Bakonyi <fero@drama.obuda.kando.hu>
8786 L:      linux-nvidia@lists.surfsouth.com
8787 S:      Maintained
8788 W:      http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
8789 F:      drivers/video/fbdev/hgafb.c
8790
8791 HIBERNATION (aka Software Suspend, aka swsusp)
8792 M:      "Rafael J. Wysocki" <rafael@kernel.org>
8793 M:      Pavel Machek <pavel@ucw.cz>
8794 L:      linux-pm@vger.kernel.org
8795 S:      Supported
8796 B:      https://bugzilla.kernel.org
8797 F:      arch/*/include/asm/suspend*.h
8798 F:      arch/x86/power/
8799 F:      drivers/base/power/
8800 F:      include/linux/freezer.h
8801 F:      include/linux/pm.h
8802 F:      include/linux/suspend.h
8803 F:      kernel/power/
8804
8805 HID CORE LAYER
8806 M:      Jiri Kosina <jikos@kernel.org>
8807 M:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
8808 L:      linux-input@vger.kernel.org
8809 S:      Maintained
8810 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
8811 F:      drivers/hid/
8812 F:      include/linux/hid*
8813 F:      include/uapi/linux/hid*
8814
8815 HID LOGITECH DRIVERS
8816 R:      Filipe Laíns <lains@riseup.net>
8817 L:      linux-input@vger.kernel.org
8818 S:      Maintained
8819 F:      drivers/hid/hid-logitech-*
8820
8821 HID PLAYSTATION DRIVER
8822 M:      Roderick Colenbrander <roderick.colenbrander@sony.com>
8823 L:      linux-input@vger.kernel.org
8824 S:      Supported
8825 F:      drivers/hid/hid-playstation.c
8826
8827 HID SENSOR HUB DRIVERS
8828 M:      Jiri Kosina <jikos@kernel.org>
8829 M:      Jonathan Cameron <jic23@kernel.org>
8830 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
8831 L:      linux-input@vger.kernel.org
8832 L:      linux-iio@vger.kernel.org
8833 S:      Maintained
8834 F:      Documentation/hid/hid-sensor*
8835 F:      drivers/hid/hid-sensor-*
8836 F:      drivers/iio/*/hid-*
8837 F:      include/linux/hid-sensor-*
8838
8839 HID WACOM DRIVER
8840 M:      Ping Cheng <ping.cheng@wacom.com>
8841 M:      Jason Gerecke  <jason.gerecke@wacom.com>
8842 L:      linux-input@vger.kernel.org
8843 S:      Maintained
8844 F:      drivers/hid/wacom.h
8845 F:      drivers/hid/wacom_*
8846
8847 HIGH-RESOLUTION TIMERS, CLOCKEVENTS
8848 M:      Thomas Gleixner <tglx@linutronix.de>
8849 L:      linux-kernel@vger.kernel.org
8850 S:      Maintained
8851 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
8852 F:      Documentation/timers/
8853 F:      include/linux/clockchips.h
8854 F:      include/linux/hrtimer.h
8855 F:      kernel/time/clockevents.c
8856 F:      kernel/time/hrtimer.c
8857 F:      kernel/time/timer_*.c
8858
8859 HIGH-SPEED SCC DRIVER FOR AX.25
8860 L:      linux-hams@vger.kernel.org
8861 S:      Orphan
8862 F:      drivers/net/hamradio/scc.c
8863
8864 HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
8865 M:      HighPoint Linux Team <linux@highpoint-tech.com>
8866 S:      Supported
8867 W:      http://www.highpoint-tech.com
8868 F:      Documentation/scsi/hptiop.rst
8869 F:      drivers/scsi/hptiop.c
8870
8871 HIPPI
8872 M:      Jes Sorensen <jes@trained-monkey.org>
8873 L:      linux-hippi@sunsite.dk
8874 S:      Maintained
8875 F:      drivers/net/hippi/
8876 F:      include/linux/hippidevice.h
8877 F:      include/uapi/linux/if_hippi.h
8878 F:      net/802/hippi.c
8879
8880 HIRSCHMANN HELLCREEK ETHERNET SWITCH DRIVER
8881 M:      Kurt Kanzenbach <kurt@linutronix.de>
8882 L:      netdev@vger.kernel.org
8883 S:      Maintained
8884 F:      Documentation/devicetree/bindings/net/dsa/hirschmann,hellcreek.yaml
8885 F:      drivers/net/dsa/hirschmann/*
8886 F:      include/linux/platform_data/hirschmann-hellcreek.h
8887 F:      net/dsa/tag_hellcreek.c
8888
8889 HISILICON DMA DRIVER
8890 M:      Zhou Wang <wangzhou1@hisilicon.com>
8891 L:      dmaengine@vger.kernel.org
8892 S:      Maintained
8893 F:      drivers/dma/hisi_dma.c
8894
8895 HISILICON GPIO DRIVER
8896 M:      Luo Jiaxing <luojiaxing@huawei.com>
8897 L:      linux-gpio@vger.kernel.org
8898 S:      Maintained
8899 F:      drivers/gpio/gpio-hisi.c
8900
8901 HISILICON HIGH PERFORMANCE RSA ENGINE DRIVER (HPRE)
8902 M:      Longfang Liu <liulongfang@huawei.com>
8903 L:      linux-crypto@vger.kernel.org
8904 S:      Maintained
8905 F:      Documentation/ABI/testing/debugfs-hisi-hpre
8906 F:      drivers/crypto/hisilicon/hpre/hpre.h
8907 F:      drivers/crypto/hisilicon/hpre/hpre_crypto.c
8908 F:      drivers/crypto/hisilicon/hpre/hpre_main.c
8909
8910 HISILICON I2C CONTROLLER DRIVER
8911 M:      Yicong Yang <yangyicong@hisilicon.com>
8912 L:      linux-i2c@vger.kernel.org
8913 S:      Maintained
8914 W:      https://www.hisilicon.com
8915 F:      drivers/i2c/busses/i2c-hisi.c
8916
8917 HISILICON LPC BUS DRIVER
8918 M:      john.garry@huawei.com
8919 S:      Maintained
8920 W:      http://www.hisilicon.com
8921 F:      Documentation/devicetree/bindings/arm/hisilicon/low-pin-count.yaml
8922 F:      drivers/bus/hisi_lpc.c
8923
8924 HISILICON NETWORK SUBSYSTEM 3 DRIVER (HNS3)
8925 M:      Yisen Zhuang <yisen.zhuang@huawei.com>
8926 M:      Salil Mehta <salil.mehta@huawei.com>
8927 L:      netdev@vger.kernel.org
8928 S:      Maintained
8929 W:      http://www.hisilicon.com
8930 F:      drivers/net/ethernet/hisilicon/hns3/
8931
8932 HISILICON NETWORK SUBSYSTEM DRIVER
8933 M:      Yisen Zhuang <yisen.zhuang@huawei.com>
8934 M:      Salil Mehta <salil.mehta@huawei.com>
8935 L:      netdev@vger.kernel.org
8936 S:      Maintained
8937 W:      http://www.hisilicon.com
8938 F:      Documentation/devicetree/bindings/net/hisilicon*.txt
8939 F:      drivers/net/ethernet/hisilicon/
8940
8941 HIKEY960 ONBOARD USB GPIO HUB DRIVER
8942 M:      John Stultz <jstultz@google.com>
8943 L:      linux-kernel@vger.kernel.org
8944 S:      Maintained
8945 F:      drivers/misc/hisi_hikey_usb.c
8946
8947 HISILICON PMU DRIVER
8948 M:      Shaokun Zhang <zhangshaokun@hisilicon.com>
8949 M:      Qi Liu <liuqi115@huawei.com>
8950 S:      Supported
8951 W:      http://www.hisilicon.com
8952 F:      Documentation/admin-guide/perf/hisi-pcie-pmu.rst
8953 F:      Documentation/admin-guide/perf/hisi-pmu.rst
8954 F:      drivers/perf/hisilicon
8955
8956 HISILICON QM AND ZIP Controller DRIVER
8957 M:      Zhou Wang <wangzhou1@hisilicon.com>
8958 L:      linux-crypto@vger.kernel.org
8959 S:      Maintained
8960 F:      Documentation/ABI/testing/debugfs-hisi-zip
8961 F:      drivers/crypto/hisilicon/qm.c
8962 F:      drivers/crypto/hisilicon/sgl.c
8963 F:      drivers/crypto/hisilicon/zip/
8964 F:      include/linux/hisi_acc_qm.h
8965
8966 HISILICON ROCE DRIVER
8967 M:      Wenpeng Liang <liangwenpeng@huawei.com>
8968 M:      Weihang Li <liweihang@huawei.com>
8969 L:      linux-rdma@vger.kernel.org
8970 S:      Maintained
8971 F:      Documentation/devicetree/bindings/infiniband/hisilicon-hns-roce.txt
8972 F:      drivers/infiniband/hw/hns/
8973
8974 HISILICON SAS Controller
8975 M:      John Garry <john.garry@huawei.com>
8976 S:      Supported
8977 W:      http://www.hisilicon.com
8978 F:      Documentation/devicetree/bindings/scsi/hisilicon-sas.txt
8979 F:      drivers/scsi/hisi_sas/
8980
8981 HISILICON SECURITY ENGINE V2 DRIVER (SEC2)
8982 M:      Kai Ye <yekai13@huawei.com>
8983 M:      Longfang Liu <liulongfang@huawei.com>
8984 L:      linux-crypto@vger.kernel.org
8985 S:      Maintained
8986 F:      Documentation/ABI/testing/debugfs-hisi-sec
8987 F:      drivers/crypto/hisilicon/sec2/sec.h
8988 F:      drivers/crypto/hisilicon/sec2/sec_crypto.c
8989 F:      drivers/crypto/hisilicon/sec2/sec_crypto.h
8990 F:      drivers/crypto/hisilicon/sec2/sec_main.c
8991
8992 HISILICON SPI Controller DRIVER FOR KUNPENG SOCS
8993 M:      Jay Fang <f.fangjian@huawei.com>
8994 L:      linux-spi@vger.kernel.org
8995 S:      Maintained
8996 W:      http://www.hisilicon.com
8997 F:      drivers/spi/spi-hisi-kunpeng.c
8998
8999 HISILICON SPMI CONTROLLER DRIVER FOR HIKEY 970
9000 M:      Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
9001 L:      linux-kernel@vger.kernel.org
9002 S:      Maintained
9003 F:      Documentation/devicetree/bindings/spmi/hisilicon,hisi-spmi-controller.yaml
9004 F:      drivers/spmi/hisi-spmi-controller.c
9005
9006 HISILICON SPMI PMIC DRIVER FOR HIKEY 6421v600
9007 M:      Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
9008 L:      linux-kernel@vger.kernel.org
9009 S:      Maintained
9010 F:      Documentation/devicetree/bindings/mfd/hisilicon,hi6421-spmi-pmic.yaml
9011 F:      drivers/mfd/hi6421-spmi-pmic.c
9012
9013 HISILICON TRUE RANDOM NUMBER GENERATOR V2 SUPPORT
9014 M:      Weili Qian <qianweili@huawei.com>
9015 S:      Maintained
9016 F:      drivers/crypto/hisilicon/trng/trng.c
9017
9018 HISILICON V3XX SPI NOR FLASH Controller Driver
9019 M:      John Garry <john.garry@huawei.com>
9020 S:      Maintained
9021 W:      http://www.hisilicon.com
9022 F:      drivers/spi/spi-hisi-sfc-v3xx.c
9023
9024 HMM - Heterogeneous Memory Management
9025 M:      Jérôme Glisse <jglisse@redhat.com>
9026 L:      linux-mm@kvack.org
9027 S:      Maintained
9028 F:      Documentation/vm/hmm.rst
9029 F:      include/linux/hmm*
9030 F:      lib/test_hmm*
9031 F:      mm/hmm*
9032 F:      tools/testing/selftests/vm/*hmm*
9033
9034 HOST AP DRIVER
9035 M:      Jouni Malinen <j@w1.fi>
9036 L:      linux-wireless@vger.kernel.org
9037 S:      Obsolete
9038 W:      http://w1.fi/hostap-driver.html
9039 F:      drivers/net/wireless/intersil/hostap/
9040
9041 HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
9042 L:      platform-driver-x86@vger.kernel.org
9043 S:      Orphan
9044 F:      drivers/platform/x86/tc1100-wmi.c
9045
9046 HPET:   High Precision Event Timers driver
9047 M:      Clemens Ladisch <clemens@ladisch.de>
9048 S:      Maintained
9049 F:      Documentation/timers/hpet.rst
9050 F:      drivers/char/hpet.c
9051 F:      include/linux/hpet.h
9052 F:      include/uapi/linux/hpet.h
9053
9054 HPET:   x86
9055 S:      Orphan
9056 F:      arch/x86/include/asm/hpet.h
9057 F:      arch/x86/kernel/hpet.c
9058
9059 HPFS FILESYSTEM
9060 M:      Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
9061 S:      Maintained
9062 W:      http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
9063 F:      fs/hpfs/
9064
9065 HSI SUBSYSTEM
9066 M:      Sebastian Reichel <sre@kernel.org>
9067 S:      Maintained
9068 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git
9069 F:      Documentation/ABI/testing/sysfs-bus-hsi
9070 F:      Documentation/driver-api/hsi.rst
9071 F:      drivers/hsi/
9072 F:      include/linux/hsi/
9073 F:      include/uapi/linux/hsi/
9074
9075 HSO 3G MODEM DRIVER
9076 L:      linux-usb@vger.kernel.org
9077 S:      Orphan
9078 F:      drivers/net/usb/hso.c
9079
9080 HSR NETWORK PROTOCOL
9081 L:      netdev@vger.kernel.org
9082 S:      Orphan
9083 F:      net/hsr/
9084
9085 HT16K33 LED CONTROLLER DRIVER
9086 M:      Robin van der Gracht <robin@protonic.nl>
9087 S:      Maintained
9088 F:      Documentation/devicetree/bindings/auxdisplay/holtek,ht16k33.yaml
9089 F:      drivers/auxdisplay/ht16k33.c
9090
9091 HTCPEN TOUCHSCREEN DRIVER
9092 M:      Pau Oliva Fora <pof@eslack.org>
9093 L:      linux-input@vger.kernel.org
9094 S:      Maintained
9095 F:      drivers/input/touchscreen/htcpen.c
9096
9097 HTE SUBSYSTEM
9098 M:      Dipen Patel <dipenp@nvidia.com>
9099 S:      Maintained
9100 F:      Documentation/devicetree/bindings/timestamp/
9101 F:      Documentation/driver-api/hte/
9102 F:      drivers/hte/
9103 F:      include/linux/hte.h
9104
9105 HTS221 TEMPERATURE-HUMIDITY IIO DRIVER
9106 M:      Lorenzo Bianconi <lorenzo@kernel.org>
9107 L:      linux-iio@vger.kernel.org
9108 S:      Maintained
9109 W:      http://www.st.com/
9110 F:      Documentation/devicetree/bindings/iio/humidity/st,hts221.yaml
9111 F:      drivers/iio/humidity/hts221*
9112
9113 HUAWEI ETHERNET DRIVER
9114 L:      netdev@vger.kernel.org
9115 S:      Orphan
9116 F:      Documentation/networking/device_drivers/ethernet/huawei/hinic.rst
9117 F:      drivers/net/ethernet/huawei/hinic/
9118
9119 HUGETLB SUBSYSTEM
9120 M:      Mike Kravetz <mike.kravetz@oracle.com>
9121 M:      Muchun Song <songmuchun@bytedance.com>
9122 L:      linux-mm@kvack.org
9123 S:      Maintained
9124 F:      Documentation/ABI/testing/sysfs-kernel-mm-hugepages
9125 F:      Documentation/admin-guide/mm/hugetlbpage.rst
9126 F:      Documentation/vm/hugetlbfs_reserv.rst
9127 F:      Documentation/vm/vmemmap_dedup.rst
9128 F:      fs/hugetlbfs/
9129 F:      include/linux/hugetlb.h
9130 F:      mm/hugetlb.c
9131 F:      mm/hugetlb_vmemmap.c
9132 F:      mm/hugetlb_vmemmap.h
9133
9134 HVA ST MEDIA DRIVER
9135 M:      Jean-Christophe Trotin <jean-christophe.trotin@foss.st.com>
9136 L:      linux-media@vger.kernel.org
9137 S:      Supported
9138 W:      https://linuxtv.org
9139 T:      git git://linuxtv.org/media_tree.git
9140 F:      drivers/media/platform/st/sti/hva
9141
9142 HWPOISON MEMORY FAILURE HANDLING
9143 M:      Naoya Horiguchi <naoya.horiguchi@nec.com>
9144 L:      linux-mm@kvack.org
9145 S:      Maintained
9146 F:      mm/hwpoison-inject.c
9147 F:      mm/memory-failure.c
9148
9149 HYCON HY46XX TOUCHSCREEN SUPPORT
9150 M:      Giulio Benetti <giulio.benetti@benettiengineering.com>
9151 L:      linux-input@vger.kernel.org
9152 S:      Maintained
9153 F:      Documentation/devicetree/bindings/input/touchscreen/hycon,hy46xx.yaml
9154 F:      drivers/input/touchscreen/hycon-hy46xx.c
9155
9156 HYGON PROCESSOR SUPPORT
9157 M:      Pu Wen <puwen@hygon.cn>
9158 L:      linux-kernel@vger.kernel.org
9159 S:      Maintained
9160 F:      arch/x86/kernel/cpu/hygon.c
9161
9162 HYNIX HI556 SENSOR DRIVER
9163 M:      Shawn Tu <shawnx.tu@intel.com>
9164 L:      linux-media@vger.kernel.org
9165 S:      Maintained
9166 T:      git git://linuxtv.org/media_tree.git
9167 F:      drivers/media/i2c/hi556.c
9168
9169 HYNIX HI846 SENSOR DRIVER
9170 M:      Martin Kepplinger <martin.kepplinger@puri.sm>
9171 L:      linux-media@vger.kernel.org
9172 S:      Maintained
9173 F:      drivers/media/i2c/hi846.c
9174
9175 HYNIX HI847 SENSOR DRIVER
9176 M:      Shawn Tu <shawnx.tu@intel.com>
9177 L:      linux-media@vger.kernel.org
9178 S:      Maintained
9179 F:      drivers/media/i2c/hi847.c
9180
9181 Hyper-V/Azure CORE AND DRIVERS
9182 M:      "K. Y. Srinivasan" <kys@microsoft.com>
9183 M:      Haiyang Zhang <haiyangz@microsoft.com>
9184 M:      Stephen Hemminger <sthemmin@microsoft.com>
9185 M:      Wei Liu <wei.liu@kernel.org>
9186 M:      Dexuan Cui <decui@microsoft.com>
9187 L:      linux-hyperv@vger.kernel.org
9188 S:      Supported
9189 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hyperv/linux.git
9190 F:      Documentation/ABI/stable/sysfs-bus-vmbus
9191 F:      Documentation/ABI/testing/debugfs-hyperv
9192 F:      Documentation/networking/device_drivers/ethernet/microsoft/netvsc.rst
9193 F:      arch/arm64/hyperv
9194 F:      arch/arm64/include/asm/hyperv-tlfs.h
9195 F:      arch/arm64/include/asm/mshyperv.h
9196 F:      arch/x86/hyperv
9197 F:      arch/x86/include/asm/hyperv-tlfs.h
9198 F:      arch/x86/include/asm/mshyperv.h
9199 F:      arch/x86/include/asm/trace/hyperv.h
9200 F:      arch/x86/kernel/cpu/mshyperv.c
9201 F:      drivers/clocksource/hyperv_timer.c
9202 F:      drivers/hid/hid-hyperv.c
9203 F:      drivers/hv/
9204 F:      drivers/input/serio/hyperv-keyboard.c
9205 F:      drivers/iommu/hyperv-iommu.c
9206 F:      drivers/net/ethernet/microsoft/
9207 F:      drivers/net/hyperv/
9208 F:      drivers/pci/controller/pci-hyperv-intf.c
9209 F:      drivers/pci/controller/pci-hyperv.c
9210 F:      drivers/scsi/storvsc_drv.c
9211 F:      drivers/uio/uio_hv_generic.c
9212 F:      drivers/video/fbdev/hyperv_fb.c
9213 F:      include/asm-generic/hyperv-tlfs.h
9214 F:      include/asm-generic/mshyperv.h
9215 F:      include/clocksource/hyperv_timer.h
9216 F:      include/linux/hyperv.h
9217 F:      include/uapi/linux/hyperv.h
9218 F:      net/vmw_vsock/hyperv_transport.c
9219 F:      tools/hv/
9220
9221 HYPERBUS SUPPORT
9222 M:      Vignesh Raghavendra <vigneshr@ti.com>
9223 L:      linux-mtd@lists.infradead.org
9224 S:      Supported
9225 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
9226 C:      irc://irc.oftc.net/mtd
9227 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git cfi/next
9228 F:      Documentation/devicetree/bindings/mtd/ti,am654-hbmc.yaml
9229 F:      drivers/mtd/hyperbus/
9230 F:      include/linux/mtd/hyperbus.h
9231
9232 HYPERVISOR VIRTUAL CONSOLE DRIVER
9233 L:      linuxppc-dev@lists.ozlabs.org
9234 S:      Odd Fixes
9235 F:      drivers/tty/hvc/
9236
9237 I2C ACPI SUPPORT
9238 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
9239 L:      linux-i2c@vger.kernel.org
9240 L:      linux-acpi@vger.kernel.org
9241 S:      Maintained
9242 F:      drivers/i2c/i2c-core-acpi.c
9243
9244 I2C CONTROLLER DRIVER FOR NVIDIA GPU
9245 M:      Ajay Gupta <ajayg@nvidia.com>
9246 L:      linux-i2c@vger.kernel.org
9247 S:      Maintained
9248 F:      Documentation/i2c/busses/i2c-nvidia-gpu.rst
9249 F:      drivers/i2c/busses/i2c-nvidia-gpu.c
9250
9251 I2C MUXES
9252 M:      Peter Rosin <peda@axentia.se>
9253 L:      linux-i2c@vger.kernel.org
9254 S:      Maintained
9255 F:      Documentation/devicetree/bindings/i2c/i2c-arb*
9256 F:      Documentation/devicetree/bindings/i2c/i2c-gate*
9257 F:      Documentation/devicetree/bindings/i2c/i2c-mux*
9258 F:      Documentation/i2c/i2c-topology.rst
9259 F:      Documentation/i2c/muxes/
9260 F:      drivers/i2c/i2c-mux.c
9261 F:      drivers/i2c/muxes/
9262 F:      include/linux/i2c-mux.h
9263
9264 I2C MV64XXX MARVELL AND ALLWINNER DRIVER
9265 M:      Gregory CLEMENT <gregory.clement@bootlin.com>
9266 L:      linux-i2c@vger.kernel.org
9267 S:      Maintained
9268 F:      Documentation/devicetree/bindings/i2c/marvell,mv64xxx-i2c.yaml
9269 F:      drivers/i2c/busses/i2c-mv64xxx.c
9270
9271 I2C OVER PARALLEL PORT
9272 M:      Jean Delvare <jdelvare@suse.com>
9273 L:      linux-i2c@vger.kernel.org
9274 S:      Maintained
9275 F:      Documentation/i2c/busses/i2c-parport.rst
9276 F:      drivers/i2c/busses/i2c-parport.c
9277
9278 I2C SUBSYSTEM
9279 M:      Wolfram Sang <wsa@kernel.org>
9280 L:      linux-i2c@vger.kernel.org
9281 S:      Maintained
9282 W:      https://i2c.wiki.kernel.org/
9283 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
9284 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
9285 F:      Documentation/devicetree/bindings/i2c/i2c.txt
9286 F:      Documentation/i2c/
9287 F:      drivers/i2c/*
9288 F:      include/dt-bindings/i2c/i2c.h
9289 F:      include/linux/i2c-dev.h
9290 F:      include/linux/i2c-smbus.h
9291 F:      include/linux/i2c.h
9292 F:      include/uapi/linux/i2c-*.h
9293 F:      include/uapi/linux/i2c.h
9294
9295 I2C SUBSYSTEM HOST DRIVERS
9296 L:      linux-i2c@vger.kernel.org
9297 S:      Odd Fixes
9298 W:      https://i2c.wiki.kernel.org/
9299 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
9300 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
9301 F:      Documentation/devicetree/bindings/i2c/
9302 F:      drivers/i2c/algos/
9303 F:      drivers/i2c/busses/
9304 F:      include/dt-bindings/i2c/
9305
9306 I2C-TAOS-EVM DRIVER
9307 M:      Jean Delvare <jdelvare@suse.com>
9308 L:      linux-i2c@vger.kernel.org
9309 S:      Maintained
9310 F:      Documentation/i2c/busses/i2c-taos-evm.rst
9311 F:      drivers/i2c/busses/i2c-taos-evm.c
9312
9313 I2C-TINY-USB DRIVER
9314 M:      Till Harbaum <till@harbaum.org>
9315 L:      linux-i2c@vger.kernel.org
9316 S:      Maintained
9317 W:      http://www.harbaum.org/till/i2c_tiny_usb
9318 F:      drivers/i2c/busses/i2c-tiny-usb.c
9319
9320 I2C/SMBUS CONTROLLER DRIVERS FOR PC
9321 M:      Jean Delvare <jdelvare@suse.com>
9322 L:      linux-i2c@vger.kernel.org
9323 S:      Maintained
9324 F:      Documentation/i2c/busses/i2c-ali1535.rst
9325 F:      Documentation/i2c/busses/i2c-ali1563.rst
9326 F:      Documentation/i2c/busses/i2c-ali15x3.rst
9327 F:      Documentation/i2c/busses/i2c-amd756.rst
9328 F:      Documentation/i2c/busses/i2c-amd8111.rst
9329 F:      Documentation/i2c/busses/i2c-i801.rst
9330 F:      Documentation/i2c/busses/i2c-nforce2.rst
9331 F:      Documentation/i2c/busses/i2c-piix4.rst
9332 F:      Documentation/i2c/busses/i2c-sis5595.rst
9333 F:      Documentation/i2c/busses/i2c-sis630.rst
9334 F:      Documentation/i2c/busses/i2c-sis96x.rst
9335 F:      Documentation/i2c/busses/i2c-via.rst
9336 F:      Documentation/i2c/busses/i2c-viapro.rst
9337 F:      drivers/i2c/busses/i2c-ali1535.c
9338 F:      drivers/i2c/busses/i2c-ali1563.c
9339 F:      drivers/i2c/busses/i2c-ali15x3.c
9340 F:      drivers/i2c/busses/i2c-amd756-s4882.c
9341 F:      drivers/i2c/busses/i2c-amd756.c
9342 F:      drivers/i2c/busses/i2c-amd8111.c
9343 F:      drivers/i2c/busses/i2c-i801.c
9344 F:      drivers/i2c/busses/i2c-isch.c
9345 F:      drivers/i2c/busses/i2c-nforce2-s4985.c
9346 F:      drivers/i2c/busses/i2c-nforce2.c
9347 F:      drivers/i2c/busses/i2c-piix4.c
9348 F:      drivers/i2c/busses/i2c-sis5595.c
9349 F:      drivers/i2c/busses/i2c-sis630.c
9350 F:      drivers/i2c/busses/i2c-sis96x.c
9351 F:      drivers/i2c/busses/i2c-via.c
9352 F:      drivers/i2c/busses/i2c-viapro.c
9353
9354 I2C/SMBUS INTEL CHT WHISKEY COVE PMIC DRIVER
9355 M:      Hans de Goede <hdegoede@redhat.com>
9356 L:      linux-i2c@vger.kernel.org
9357 S:      Maintained
9358 F:      drivers/i2c/busses/i2c-cht-wc.c
9359
9360 I2C/SMBUS ISMT DRIVER
9361 M:      Seth Heasley <seth.heasley@intel.com>
9362 M:      Neil Horman <nhorman@tuxdriver.com>
9363 L:      linux-i2c@vger.kernel.org
9364 F:      Documentation/i2c/busses/i2c-ismt.rst
9365 F:      drivers/i2c/busses/i2c-ismt.c
9366
9367 I2C/SMBUS STUB DRIVER
9368 M:      Jean Delvare <jdelvare@suse.com>
9369 L:      linux-i2c@vger.kernel.org
9370 S:      Maintained
9371 F:      drivers/i2c/i2c-stub.c
9372
9373 I3C DRIVER FOR CADENCE I3C MASTER IP
9374 M:      Przemysław Gaj <pgaj@cadence.com>
9375 S:      Maintained
9376 F:      Documentation/devicetree/bindings/i3c/cdns,i3c-master.yaml
9377 F:      drivers/i3c/master/i3c-master-cdns.c
9378
9379 I3C DRIVER FOR SYNOPSYS DESIGNWARE
9380 M:      Vitor Soares <vitor.soares@synopsys.com>
9381 S:      Maintained
9382 F:      Documentation/devicetree/bindings/i3c/snps,dw-i3c-master.yaml
9383 F:      drivers/i3c/master/dw*
9384
9385 I3C SUBSYSTEM
9386 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
9387 L:      linux-i3c@lists.infradead.org (moderated for non-subscribers)
9388 S:      Maintained
9389 C:      irc://chat.freenode.net/linux-i3c
9390 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/i3c/linux.git
9391 F:      Documentation/ABI/testing/sysfs-bus-i3c
9392 F:      Documentation/devicetree/bindings/i3c/
9393 F:      Documentation/driver-api/i3c
9394 F:      drivers/i3c/
9395 F:      include/linux/i3c/
9396
9397 IA64 (Itanium) PLATFORM
9398 L:      linux-ia64@vger.kernel.org
9399 S:      Orphan
9400 F:      Documentation/ia64/
9401 F:      arch/ia64/
9402
9403 IBM Power 842 compression accelerator
9404 M:      Haren Myneni <haren@us.ibm.com>
9405 S:      Supported
9406 F:      crypto/842.c
9407 F:      drivers/crypto/nx/Kconfig
9408 F:      drivers/crypto/nx/Makefile
9409 F:      drivers/crypto/nx/nx-842*
9410 F:      include/linux/sw842.h
9411 F:      lib/842/
9412
9413 IBM Power in-Nest Crypto Acceleration
9414 M:      Breno Leitão <leitao@debian.org>
9415 M:      Nayna Jain <nayna@linux.ibm.com>
9416 M:      Paulo Flabiano Smorigo <pfsmorigo@gmail.com>
9417 L:      linux-crypto@vger.kernel.org
9418 S:      Supported
9419 F:      drivers/crypto/nx/Kconfig
9420 F:      drivers/crypto/nx/Makefile
9421 F:      drivers/crypto/nx/nx-aes*
9422 F:      drivers/crypto/nx/nx-sha*
9423 F:      drivers/crypto/nx/nx.*
9424 F:      drivers/crypto/nx/nx_csbcpb.h
9425 F:      drivers/crypto/nx/nx_debugfs.c
9426
9427 IBM Power IO DLPAR Driver for RPA-compliant PPC64 platform
9428 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
9429 L:      linux-pci@vger.kernel.org
9430 L:      linuxppc-dev@lists.ozlabs.org
9431 S:      Supported
9432 F:      drivers/pci/hotplug/rpadlpar*
9433
9434 IBM Power Linux RAID adapter
9435 M:      Brian King <brking@us.ibm.com>
9436 S:      Supported
9437 F:      drivers/scsi/ipr.*
9438
9439 IBM Power PCI Hotplug Driver for RPA-compliant PPC64 platform
9440 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
9441 L:      linux-pci@vger.kernel.org
9442 L:      linuxppc-dev@lists.ozlabs.org
9443 S:      Supported
9444 F:      drivers/pci/hotplug/rpaphp*
9445
9446 IBM Power SRIOV Virtual NIC Device Driver
9447 M:      Dany Madden <drt@linux.ibm.com>
9448 R:      Thomas Falcon <tlfalcon@linux.ibm.com>
9449 L:      netdev@vger.kernel.org
9450 S:      Supported
9451 F:      drivers/net/ethernet/ibm/ibmvnic.*
9452
9453 IBM Power Virtual Accelerator Switchboard
9454 L:      linuxppc-dev@lists.ozlabs.org
9455 S:      Supported
9456 F:      arch/powerpc/include/asm/vas.h
9457 F:      arch/powerpc/platforms/powernv/copy-paste.h
9458 F:      arch/powerpc/platforms/powernv/vas*
9459
9460 IBM Power Virtual Ethernet Device Driver
9461 M:      Cristobal Forno <cforno12@linux.ibm.com>
9462 L:      netdev@vger.kernel.org
9463 S:      Supported
9464 F:      drivers/net/ethernet/ibm/ibmveth.*
9465
9466 IBM Power Virtual FC Device Drivers
9467 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
9468 L:      linux-scsi@vger.kernel.org
9469 S:      Supported
9470 F:      drivers/scsi/ibmvscsi/ibmvfc*
9471
9472 IBM Power Virtual Management Channel Driver
9473 M:      Brad Warrum <bwarrum@linux.ibm.com>
9474 M:      Ritu Agarwal <rituagar@linux.ibm.com>
9475 S:      Supported
9476 F:      drivers/misc/ibmvmc.*
9477
9478 IBM Power Virtual SCSI Device Drivers
9479 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
9480 L:      linux-scsi@vger.kernel.org
9481 S:      Supported
9482 F:      drivers/scsi/ibmvscsi/ibmvscsi*
9483 F:      include/scsi/viosrp.h
9484
9485 IBM Power Virtual SCSI Device Target Driver
9486 M:      Michael Cyr <mikecyr@linux.ibm.com>
9487 L:      linux-scsi@vger.kernel.org
9488 L:      target-devel@vger.kernel.org
9489 S:      Supported
9490 F:      drivers/scsi/ibmvscsi_tgt/
9491
9492 IBM Power VMX Cryptographic instructions
9493 M:      Breno Leitão <leitao@debian.org>
9494 M:      Nayna Jain <nayna@linux.ibm.com>
9495 M:      Paulo Flabiano Smorigo <pfsmorigo@gmail.com>
9496 L:      linux-crypto@vger.kernel.org
9497 S:      Supported
9498 F:      drivers/crypto/vmx/Kconfig
9499 F:      drivers/crypto/vmx/Makefile
9500 F:      drivers/crypto/vmx/aes*
9501 F:      drivers/crypto/vmx/ghash*
9502 F:      drivers/crypto/vmx/ppc-xlate.pl
9503 F:      drivers/crypto/vmx/vmx.c
9504
9505 IBM ServeRAID RAID DRIVER
9506 S:      Orphan
9507 F:      drivers/scsi/ips.*
9508
9509 ICH LPC AND GPIO DRIVER
9510 M:      Peter Tyser <ptyser@xes-inc.com>
9511 S:      Maintained
9512 F:      drivers/gpio/gpio-ich.c
9513 F:      drivers/mfd/lpc_ich.c
9514
9515 ICY I2C DRIVER
9516 M:      Max Staudt <max@enpas.org>
9517 L:      linux-i2c@vger.kernel.org
9518 S:      Maintained
9519 F:      drivers/i2c/busses/i2c-icy.c
9520
9521 IDEAPAD LAPTOP EXTRAS DRIVER
9522 M:      Ike Panhc <ike.pan@canonical.com>
9523 L:      platform-driver-x86@vger.kernel.org
9524 S:      Maintained
9525 W:      http://launchpad.net/ideapad-laptop
9526 F:      drivers/platform/x86/ideapad-laptop.c
9527
9528 IDEAPAD LAPTOP SLIDEBAR DRIVER
9529 M:      Andrey Moiseev <o2g.org.ru@gmail.com>
9530 L:      linux-input@vger.kernel.org
9531 S:      Maintained
9532 W:      https://github.com/o2genum/ideapad-slidebar
9533 F:      drivers/input/misc/ideapad_slidebar.c
9534
9535 IDMAPPED MOUNTS
9536 M:      Christian Brauner <brauner@kernel.org>
9537 L:      linux-fsdevel@vger.kernel.org
9538 S:      Maintained
9539 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brauner/linux.git
9540 F:      Documentation/filesystems/idmappings.rst
9541 F:      tools/testing/selftests/mount_setattr/
9542 F:      include/linux/mnt_idmapping.h
9543
9544 IDT VersaClock 5 CLOCK DRIVER
9545 M:      Luca Ceresoli <luca@lucaceresoli.net>
9546 S:      Maintained
9547 F:      Documentation/devicetree/bindings/clock/idt,versaclock5.yaml
9548 F:      drivers/clk/clk-versaclock5.c
9549
9550 IEEE 802.15.4 SUBSYSTEM
9551 M:      Alexander Aring <alex.aring@gmail.com>
9552 M:      Stefan Schmidt <stefan@datenfreihafen.org>
9553 L:      linux-wpan@vger.kernel.org
9554 S:      Maintained
9555 W:      https://linux-wpan.org/
9556 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan.git
9557 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan-next.git
9558 F:      Documentation/networking/ieee802154.rst
9559 F:      drivers/net/ieee802154/
9560 F:      include/linux/ieee802154.h
9561 F:      include/linux/nl802154.h
9562 F:      include/net/af_ieee802154.h
9563 F:      include/net/cfg802154.h
9564 F:      include/net/ieee802154_netdev.h
9565 F:      include/net/mac802154.h
9566 F:      include/net/nl802154.h
9567 F:      net/ieee802154/
9568 F:      net/mac802154/
9569
9570 IFE PROTOCOL
9571 M:      Yotam Gigi <yotam.gi@gmail.com>
9572 M:      Jamal Hadi Salim <jhs@mojatatu.com>
9573 F:      include/net/ife.h
9574 F:      include/uapi/linux/ife.h
9575 F:      net/ife
9576
9577 IGORPLUG-USB IR RECEIVER
9578 M:      Sean Young <sean@mess.org>
9579 L:      linux-media@vger.kernel.org
9580 S:      Maintained
9581 F:      drivers/media/rc/igorplugusb.c
9582
9583 IGUANAWORKS USB IR TRANSCEIVER
9584 M:      Sean Young <sean@mess.org>
9585 L:      linux-media@vger.kernel.org
9586 S:      Maintained
9587 F:      drivers/media/rc/iguanair.c
9588
9589 IIO DIGITAL POTENTIOMETER DAC
9590 M:      Peter Rosin <peda@axentia.se>
9591 L:      linux-iio@vger.kernel.org
9592 S:      Maintained
9593 F:      Documentation/ABI/testing/sysfs-bus-iio-dac-dpot-dac
9594 F:      Documentation/devicetree/bindings/iio/dac/dpot-dac.yaml
9595 F:      drivers/iio/dac/dpot-dac.c
9596
9597 IIO ENVELOPE DETECTOR
9598 M:      Peter Rosin <peda@axentia.se>
9599 L:      linux-iio@vger.kernel.org
9600 S:      Maintained
9601 F:      Documentation/ABI/testing/sysfs-bus-iio-adc-envelope-detector
9602 F:      Documentation/devicetree/bindings/iio/adc/envelope-detector.yaml
9603 F:      drivers/iio/adc/envelope-detector.c
9604
9605 IIO MULTIPLEXER
9606 M:      Peter Rosin <peda@axentia.se>
9607 L:      linux-iio@vger.kernel.org
9608 S:      Maintained
9609 F:      Documentation/devicetree/bindings/iio/multiplexer/io-channel-mux.yaml
9610 F:      drivers/iio/multiplexer/iio-mux.c
9611
9612 IIO SCMI BASED DRIVER
9613 M:      Jyoti Bhayana <jbhayana@google.com>
9614 L:      linux-iio@vger.kernel.org
9615 S:      Maintained
9616 F:      drivers/iio/common/scmi_sensors/scmi_iio.c
9617
9618 IIO SUBSYSTEM AND DRIVERS
9619 M:      Jonathan Cameron <jic23@kernel.org>
9620 R:      Lars-Peter Clausen <lars@metafoo.de>
9621 L:      linux-iio@vger.kernel.org
9622 S:      Maintained
9623 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
9624 F:      Documentation/ABI/testing/configfs-iio*
9625 F:      Documentation/ABI/testing/sysfs-bus-iio*
9626 F:      Documentation/devicetree/bindings/iio/
9627 F:      drivers/iio/
9628 F:      drivers/staging/iio/
9629 F:      include/linux/iio/
9630 F:      tools/iio/
9631
9632 IIO UNIT CONVERTER
9633 M:      Peter Rosin <peda@axentia.se>
9634 L:      linux-iio@vger.kernel.org
9635 S:      Maintained
9636 F:      Documentation/devicetree/bindings/iio/afe/current-sense-amplifier.yaml
9637 F:      Documentation/devicetree/bindings/iio/afe/current-sense-shunt.yaml
9638 F:      Documentation/devicetree/bindings/iio/afe/voltage-divider.yaml
9639 F:      drivers/iio/afe/iio-rescale.c
9640
9641 IKANOS/ADI EAGLE ADSL USB DRIVER
9642 M:      Matthieu Castet <castet.matthieu@free.fr>
9643 M:      Stanislaw Gruszka <stf_xl@wp.pl>
9644 S:      Maintained
9645 F:      drivers/usb/atm/ueagle-atm.c
9646
9647 IMAGIS TOUCHSCREEN DRIVER
9648 M:      Markuss Broks <markuss.broks@gmail.com>
9649 S:      Maintained
9650 F:      Documentation/devicetree/bindings/input/touchscreen/imagis,ist3038c.yaml
9651 F:      drivers/input/touchscreen/imagis.c
9652
9653 IMGTEC ASCII LCD DRIVER
9654 M:      Paul Burton <paulburton@kernel.org>
9655 S:      Maintained
9656 F:      Documentation/devicetree/bindings/auxdisplay/img,ascii-lcd.yaml
9657 F:      drivers/auxdisplay/img-ascii-lcd.c
9658
9659 IMGTEC IR DECODER DRIVER
9660 S:      Orphan
9661 F:      drivers/media/rc/img-ir/
9662
9663 IMON SOUNDGRAPH USB IR RECEIVER
9664 M:      Sean Young <sean@mess.org>
9665 L:      linux-media@vger.kernel.org
9666 S:      Maintained
9667 F:      drivers/media/rc/imon.c
9668 F:      drivers/media/rc/imon_raw.c
9669
9670 IMS TWINTURBO FRAMEBUFFER DRIVER
9671 L:      linux-fbdev@vger.kernel.org
9672 S:      Orphan
9673 F:      drivers/video/fbdev/imsttfb.c
9674
9675 INA209 HARDWARE MONITOR DRIVER
9676 M:      Guenter Roeck <linux@roeck-us.net>
9677 L:      linux-hwmon@vger.kernel.org
9678 S:      Maintained
9679 F:      Documentation/devicetree/bindings/hwmon/ti,ina2xx.yaml
9680 F:      Documentation/hwmon/ina209.rst
9681 F:      drivers/hwmon/ina209.c
9682
9683 INA2XX HARDWARE MONITOR DRIVER
9684 M:      Guenter Roeck <linux@roeck-us.net>
9685 L:      linux-hwmon@vger.kernel.org
9686 S:      Maintained
9687 F:      Documentation/hwmon/ina2xx.rst
9688 F:      drivers/hwmon/ina2xx.c
9689 F:      include/linux/platform_data/ina2xx.h
9690
9691 INDUSTRY PACK SUBSYSTEM (IPACK)
9692 M:      Samuel Iglesias Gonsalvez <siglesias@igalia.com>
9693 M:      Jens Taprogge <jens.taprogge@taprogge.org>
9694 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
9695 L:      industrypack-devel@lists.sourceforge.net
9696 S:      Maintained
9697 W:      http://industrypack.sourceforge.net
9698 F:      drivers/ipack/
9699
9700 INFINEON DPS310 Driver
9701 M:      Eddie James <eajames@linux.ibm.com>
9702 L:      linux-iio@vger.kernel.org
9703 S:      Maintained
9704 F:      drivers/iio/pressure/dps310.c
9705
9706 INFINIBAND SUBSYSTEM
9707 M:      Jason Gunthorpe <jgg@nvidia.com>
9708 M:      Leon Romanovsky <leonro@nvidia.com>
9709 L:      linux-rdma@vger.kernel.org
9710 S:      Supported
9711 W:      https://github.com/linux-rdma/rdma-core
9712 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
9713 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rdma/rdma.git
9714 F:      Documentation/devicetree/bindings/infiniband/
9715 F:      Documentation/infiniband/
9716 F:      drivers/infiniband/
9717 F:      include/rdma/
9718 F:      include/trace/events/ib_mad.h
9719 F:      include/trace/events/ib_umad.h
9720 F:      include/uapi/linux/if_infiniband.h
9721 F:      include/uapi/rdma/
9722 F:      samples/bpf/ibumad_kern.c
9723 F:      samples/bpf/ibumad_user.c
9724
9725 INGENIC JZ4780 NAND DRIVER
9726 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
9727 L:      linux-mtd@lists.infradead.org
9728 L:      linux-mips@vger.kernel.org
9729 S:      Maintained
9730 F:      drivers/mtd/nand/raw/ingenic/
9731
9732 INGENIC JZ47xx SoCs
9733 M:      Paul Cercueil <paul@crapouillou.net>
9734 L:      linux-mips@vger.kernel.org
9735 S:      Maintained
9736 F:      arch/mips/boot/dts/ingenic/
9737 F:      arch/mips/generic/board-ingenic.c
9738 F:      arch/mips/include/asm/mach-ingenic/
9739 F:      arch/mips/ingenic/Kconfig
9740 F:      drivers/clk/ingenic/
9741 F:      drivers/dma/dma-jz4780.c
9742 F:      drivers/gpu/drm/ingenic/
9743 F:      drivers/i2c/busses/i2c-jz4780.c
9744 F:      drivers/iio/adc/ingenic-adc.c
9745 F:      drivers/irqchip/irq-ingenic.c
9746 F:      drivers/memory/jz4780-nemc.c
9747 F:      drivers/mmc/host/jz4740_mmc.c
9748 F:      drivers/mtd/nand/raw/ingenic/
9749 F:      drivers/pinctrl/pinctrl-ingenic.c
9750 F:      drivers/power/supply/ingenic-battery.c
9751 F:      drivers/pwm/pwm-jz4740.c
9752 F:      drivers/remoteproc/ingenic_rproc.c
9753 F:      drivers/rtc/rtc-jz4740.c
9754 F:      drivers/tty/serial/8250/8250_ingenic.c
9755 F:      drivers/usb/musb/jz4740.c
9756 F:      drivers/watchdog/jz4740_wdt.c
9757 F:      include/dt-bindings/iio/adc/ingenic,adc.h
9758 F:      include/linux/mfd/ingenic-tcu.h
9759 F:      sound/soc/codecs/jz47*
9760 F:      sound/soc/jz4740/
9761
9762 INJOINIC IP5xxx POWER BANK IC DRIVER
9763 M:      Samuel Holland <samuel@sholland.org>
9764 S:      Maintained
9765 F:      drivers/power/supply/ip5xxx_power.c
9766
9767 INOTIFY
9768 M:      Jan Kara <jack@suse.cz>
9769 R:      Amir Goldstein <amir73il@gmail.com>
9770 L:      linux-fsdevel@vger.kernel.org
9771 S:      Maintained
9772 F:      Documentation/filesystems/inotify.rst
9773 F:      fs/notify/inotify/
9774 F:      include/linux/inotify.h
9775 F:      include/uapi/linux/inotify.h
9776
9777 INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
9778 M:      Dmitry Torokhov <dmitry.torokhov@gmail.com>
9779 L:      linux-input@vger.kernel.org
9780 S:      Maintained
9781 Q:      http://patchwork.kernel.org/project/linux-input/list/
9782 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
9783 F:      Documentation/devicetree/bindings/input/
9784 F:      Documentation/devicetree/bindings/serio/
9785 F:      Documentation/input/
9786 F:      drivers/input/
9787 F:      include/linux/input.h
9788 F:      include/linux/input/
9789 F:      include/uapi/linux/input-event-codes.h
9790 F:      include/uapi/linux/input.h
9791
9792 INPUT MULTITOUCH (MT) PROTOCOL
9793 M:      Henrik Rydberg <rydberg@bitmath.org>
9794 L:      linux-input@vger.kernel.org
9795 S:      Odd fixes
9796 F:      Documentation/input/multi-touch-protocol.rst
9797 F:      drivers/input/input-mt.c
9798 K:      \b(ABS|SYN)_MT_
9799
9800 INSIDE SECURE CRYPTO DRIVER
9801 M:      Antoine Tenart <atenart@kernel.org>
9802 L:      linux-crypto@vger.kernel.org
9803 S:      Maintained
9804 F:      drivers/crypto/inside-secure/
9805
9806 INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
9807 M:      Mimi Zohar <zohar@linux.ibm.com>
9808 M:      Dmitry Kasatkin <dmitry.kasatkin@gmail.com>
9809 L:      linux-integrity@vger.kernel.org
9810 S:      Supported
9811 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/zohar/linux-integrity.git
9812 F:      security/integrity/ima/
9813 F:      security/integrity/
9814
9815 INTEL 810/815 FRAMEBUFFER DRIVER
9816 M:      Antonino Daplas <adaplas@gmail.com>
9817 L:      linux-fbdev@vger.kernel.org
9818 S:      Maintained
9819 F:      drivers/video/fbdev/i810/
9820
9821 INTEL ASoC DRIVERS
9822 M:      Cezary Rojewski <cezary.rojewski@intel.com>
9823 M:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
9824 M:      Liam Girdwood <liam.r.girdwood@linux.intel.com>
9825 M:      Jie Yang <yang.jie@linux.intel.com>
9826 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
9827 S:      Supported
9828 F:      sound/soc/intel/
9829
9830 INTEL ATOMISP2 DUMMY / POWER-MANAGEMENT DRIVER
9831 M:      Hans de Goede <hdegoede@redhat.com>
9832 L:      platform-driver-x86@vger.kernel.org
9833 S:      Maintained
9834 F:      drivers/platform/x86/intel/atomisp2/pm.c
9835
9836 INTEL ATOMISP2 LED DRIVER
9837 M:      Hans de Goede <hdegoede@redhat.com>
9838 L:      platform-driver-x86@vger.kernel.org
9839 S:      Maintained
9840 F:      drivers/platform/x86/intel/atomisp2/led.c
9841
9842 INTEL BIOS SAR INT1092 DRIVER
9843 M:      Shravan Sudhakar <s.shravan@intel.com>
9844 M:      Intel Corporation <linuxwwan@intel.com>
9845 L:      platform-driver-x86@vger.kernel.org
9846 S:      Maintained
9847 F:      drivers/platform/x86/intel/int1092/
9848
9849 INTEL BROXTON PMC DRIVER
9850 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
9851 M:      Zha Qipeng <qipeng.zha@intel.com>
9852 S:      Maintained
9853 F:      drivers/mfd/intel_pmc_bxt.c
9854 F:      include/linux/mfd/intel_pmc_bxt.h
9855
9856 INTEL C600 SERIES SAS CONTROLLER DRIVER
9857 M:      Artur Paszkiewicz <artur.paszkiewicz@intel.com>
9858 L:      linux-scsi@vger.kernel.org
9859 S:      Supported
9860 T:      git git://git.code.sf.net/p/intel-sas/isci
9861 F:      drivers/scsi/isci/
9862
9863 INTEL CPU family model numbers
9864 M:      Tony Luck <tony.luck@intel.com>
9865 M:      x86@kernel.org
9866 L:      linux-kernel@vger.kernel.org
9867 S:      Supported
9868 F:      arch/x86/include/asm/intel-family.h
9869
9870 INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
9871 M:      Jani Nikula <jani.nikula@linux.intel.com>
9872 M:      Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
9873 M:      Rodrigo Vivi <rodrigo.vivi@intel.com>
9874 M:      Tvrtko Ursulin <tvrtko.ursulin@linux.intel.com>
9875 L:      intel-gfx@lists.freedesktop.org
9876 S:      Supported
9877 W:      https://01.org/linuxgraphics/
9878 Q:      http://patchwork.freedesktop.org/project/intel-gfx/
9879 B:      https://gitlab.freedesktop.org/drm/intel/-/wikis/How-to-file-i915-bugs
9880 C:      irc://irc.oftc.net/intel-gfx
9881 T:      git git://anongit.freedesktop.org/drm-intel
9882 F:      Documentation/gpu/i915.rst
9883 F:      drivers/gpu/drm/i915/
9884 F:      include/drm/i915*
9885 F:      include/uapi/drm/i915_drm.h
9886
9887 INTEL ETHERNET DRIVERS
9888 M:      Jesse Brandeburg <jesse.brandeburg@intel.com>
9889 M:      Tony Nguyen <anthony.l.nguyen@intel.com>
9890 L:      intel-wired-lan@lists.osuosl.org (moderated for non-subscribers)
9891 S:      Supported
9892 W:      http://www.intel.com/support/feedback.htm
9893 W:      http://e1000.sourceforge.net/
9894 Q:      http://patchwork.ozlabs.org/project/intel-wired-lan/list/
9895 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tnguy/net-queue.git
9896 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tnguy/next-queue.git
9897 F:      Documentation/networking/device_drivers/ethernet/intel/
9898 F:      drivers/net/ethernet/intel/
9899 F:      drivers/net/ethernet/intel/*/
9900 F:      include/linux/avf/virtchnl.h
9901 F:      include/linux/net/intel/iidc.h
9902
9903 INTEL ETHERNET PROTOCOL DRIVER FOR RDMA
9904 M:      Mustafa Ismail <mustafa.ismail@intel.com>
9905 M:      Shiraz Saleem <shiraz.saleem@intel.com>
9906 L:      linux-rdma@vger.kernel.org
9907 S:      Supported
9908 F:      drivers/infiniband/hw/irdma/
9909 F:      include/uapi/rdma/irdma-abi.h
9910
9911 INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
9912 M:      Maik Broemme <mbroemme@libmpq.org>
9913 L:      linux-fbdev@vger.kernel.org
9914 S:      Maintained
9915 F:      Documentation/fb/intelfb.rst
9916 F:      drivers/video/fbdev/intelfb/
9917
9918 INTEL GPIO DRIVERS
9919 M:      Andy Shevchenko <andy@kernel.org>
9920 L:      linux-gpio@vger.kernel.org
9921 S:      Supported
9922 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
9923 F:      drivers/gpio/gpio-ich.c
9924 F:      drivers/gpio/gpio-merrifield.c
9925 F:      drivers/gpio/gpio-ml-ioh.c
9926 F:      drivers/gpio/gpio-pch.c
9927 F:      drivers/gpio/gpio-sch.c
9928 F:      drivers/gpio/gpio-sodaville.c
9929
9930 INTEL GVT-g DRIVERS (Intel GPU Virtualization)
9931 M:      Zhenyu Wang <zhenyuw@linux.intel.com>
9932 M:      Zhi Wang <zhi.a.wang@intel.com>
9933 L:      intel-gvt-dev@lists.freedesktop.org
9934 L:      intel-gfx@lists.freedesktop.org
9935 S:      Supported
9936 W:      https://01.org/igvt-g
9937 T:      git https://github.com/intel/gvt-linux.git
9938 F:      drivers/gpu/drm/i915/gvt/
9939
9940 INTEL HID EVENT DRIVER
9941 M:      Alex Hung <alex.hung@canonical.com>
9942 L:      platform-driver-x86@vger.kernel.org
9943 S:      Maintained
9944 F:      drivers/platform/x86/intel/hid.c
9945
9946 INTEL I/OAT DMA DRIVER
9947 M:      Dave Jiang <dave.jiang@intel.com>
9948 R:      Dan Williams <dan.j.williams@intel.com>
9949 L:      dmaengine@vger.kernel.org
9950 S:      Supported
9951 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
9952 F:      drivers/dma/ioat*
9953
9954 INTEL IADX DRIVER
9955 M:      Dave Jiang <dave.jiang@intel.com>
9956 L:      dmaengine@vger.kernel.org
9957 S:      Supported
9958 F:      drivers/dma/idxd/*
9959 F:      include/uapi/linux/idxd.h
9960
9961 INTEL IDLE DRIVER
9962 M:      Jacob Pan <jacob.jun.pan@linux.intel.com>
9963 M:      Len Brown <lenb@kernel.org>
9964 L:      linux-pm@vger.kernel.org
9965 S:      Supported
9966 B:      https://bugzilla.kernel.org
9967 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
9968 F:      drivers/idle/intel_idle.c
9969
9970 INTEL IN FIELD SCAN (IFS) DEVICE
9971 M:      Jithu Joseph <jithu.joseph@intel.com>
9972 R:      Ashok Raj <ashok.raj@intel.com>
9973 R:      Tony Luck <tony.luck@intel.com>
9974 S:      Maintained
9975 F:      drivers/platform/x86/intel/ifs
9976 F:      include/trace/events/intel_ifs.h
9977
9978 INTEL INTEGRATED SENSOR HUB DRIVER
9979 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
9980 M:      Jiri Kosina <jikos@kernel.org>
9981 L:      linux-input@vger.kernel.org
9982 S:      Maintained
9983 F:      drivers/hid/intel-ish-hid/
9984
9985 INTEL IOMMU (VT-d)
9986 M:      David Woodhouse <dwmw2@infradead.org>
9987 M:      Lu Baolu <baolu.lu@linux.intel.com>
9988 L:      iommu@lists.linux-foundation.org
9989 S:      Supported
9990 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
9991 F:      drivers/iommu/intel/
9992 F:      include/linux/intel-iommu.h
9993 F:      include/linux/intel-svm.h
9994
9995 INTEL IOP-ADMA DMA DRIVER
9996 R:      Dan Williams <dan.j.williams@intel.com>
9997 S:      Odd fixes
9998 F:      drivers/dma/iop-adma.c
9999
10000 INTEL IPU3 CSI-2 CIO2 DRIVER
10001 M:      Yong Zhi <yong.zhi@intel.com>
10002 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
10003 M:      Bingbu Cao <bingbu.cao@intel.com>
10004 M:      Dan Scally <djrscally@gmail.com>
10005 R:      Tianshu Qiu <tian.shu.qiu@intel.com>
10006 L:      linux-media@vger.kernel.org
10007 S:      Maintained
10008 T:      git git://linuxtv.org/media_tree.git
10009 F:      Documentation/userspace-api/media/v4l/pixfmt-srggb10-ipu3.rst
10010 F:      drivers/media/pci/intel/ipu3/
10011
10012 INTEL IPU3 CSI-2 IMGU DRIVER
10013 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
10014 R:      Bingbu Cao <bingbu.cao@intel.com>
10015 R:      Tianshu Qiu <tian.shu.qiu@intel.com>
10016 L:      linux-media@vger.kernel.org
10017 S:      Maintained
10018 F:      Documentation/admin-guide/media/ipu3.rst
10019 F:      Documentation/admin-guide/media/ipu3_rcb.svg
10020 F:      Documentation/userspace-api/media/v4l/pixfmt-meta-intel-ipu3.rst
10021 F:      drivers/staging/media/ipu3/
10022
10023 INTEL IXP4XX CRYPTO SUPPORT
10024 M:      Corentin Labbe <clabbe@baylibre.com>
10025 L:      linux-crypto@vger.kernel.org
10026 S:      Maintained
10027 F:      drivers/crypto/ixp4xx_crypto.c
10028
10029 INTEL ISHTP ECLITE DRIVER
10030 M:      Sumesh K Naduvalath <sumesh.k.naduvalath@intel.com>
10031 L:      platform-driver-x86@vger.kernel.org
10032 S:      Supported
10033 F:      drivers/platform/x86/intel/ishtp_eclite.c
10034
10035 INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
10036 M:      Krzysztof Halasa <khalasa@piap.pl>
10037 S:      Maintained
10038 F:      drivers/net/ethernet/xscale/ixp4xx_eth.c
10039 F:      drivers/net/wan/ixp4xx_hss.c
10040 F:      drivers/soc/ixp4xx/ixp4xx-npe.c
10041 F:      drivers/soc/ixp4xx/ixp4xx-qmgr.c
10042 F:      include/linux/soc/ixp4xx/npe.h
10043 F:      include/linux/soc/ixp4xx/qmgr.h
10044
10045 INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
10046 M:      Deepak Saxena <dsaxena@plexity.net>
10047 S:      Maintained
10048 F:      Documentation/devicetree/bindings/rng/intel,ixp46x-rng.yaml
10049 F:      drivers/char/hw_random/ixp4xx-rng.c
10050
10051 INTEL KEEM BAY DRM DRIVER
10052 M:      Anitha Chrisanthus <anitha.chrisanthus@intel.com>
10053 M:      Edmund Dea <edmund.j.dea@intel.com>
10054 S:      Maintained
10055 F:      Documentation/devicetree/bindings/display/intel,keembay-display.yaml
10056 F:      drivers/gpu/drm/kmb/
10057
10058 INTEL KEEM BAY OCS AES/SM4 CRYPTO DRIVER
10059 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
10060 S:      Maintained
10061 F:      Documentation/devicetree/bindings/crypto/intel,keembay-ocs-aes.yaml
10062 F:      drivers/crypto/keembay/Kconfig
10063 F:      drivers/crypto/keembay/Makefile
10064 F:      drivers/crypto/keembay/keembay-ocs-aes-core.c
10065 F:      drivers/crypto/keembay/ocs-aes.c
10066 F:      drivers/crypto/keembay/ocs-aes.h
10067
10068 INTEL KEEM BAY OCS ECC CRYPTO DRIVER
10069 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
10070 M:      Prabhjot Khurana <prabhjot.khurana@intel.com>
10071 M:      Mark Gross <mgross@linux.intel.com>
10072 S:      Maintained
10073 F:      Documentation/devicetree/bindings/crypto/intel,keembay-ocs-ecc.yaml
10074 F:      drivers/crypto/keembay/Kconfig
10075 F:      drivers/crypto/keembay/Makefile
10076 F:      drivers/crypto/keembay/keembay-ocs-ecc.c
10077
10078 INTEL KEEM BAY OCS HCU CRYPTO DRIVER
10079 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
10080 M:      Declan Murphy <declan.murphy@intel.com>
10081 S:      Maintained
10082 F:      Documentation/devicetree/bindings/crypto/intel,keembay-ocs-hcu.yaml
10083 F:      drivers/crypto/keembay/Kconfig
10084 F:      drivers/crypto/keembay/Makefile
10085 F:      drivers/crypto/keembay/keembay-ocs-hcu-core.c
10086 F:      drivers/crypto/keembay/ocs-hcu.c
10087 F:      drivers/crypto/keembay/ocs-hcu.h
10088
10089 INTEL THUNDER BAY EMMC PHY DRIVER
10090 M:      Nandhini Srikandan <nandhini.srikandan@intel.com>
10091 M:      Rashmi A <rashmi.a@intel.com>
10092 S:      Maintained
10093 F:      Documentation/devicetree/bindings/phy/intel,phy-thunderbay-emmc.yaml
10094 F:      drivers/phy/intel/phy-intel-thunderbay-emmc.c
10095
10096 INTEL MANAGEMENT ENGINE (mei)
10097 M:      Tomas Winkler <tomas.winkler@intel.com>
10098 L:      linux-kernel@vger.kernel.org
10099 S:      Supported
10100 F:      Documentation/driver-api/mei/*
10101 F:      drivers/misc/mei/
10102 F:      drivers/watchdog/mei_wdt.c
10103 F:      include/linux/mei_aux.h
10104 F:      include/linux/mei_cl_bus.h
10105 F:      include/uapi/linux/mei.h
10106 F:      samples/mei/*
10107
10108 INTEL MAX 10 BMC MFD DRIVER
10109 M:      Xu Yilun <yilun.xu@intel.com>
10110 R:      Tom Rix <trix@redhat.com>
10111 S:      Maintained
10112 F:      Documentation/ABI/testing/sysfs-driver-intel-m10-bmc
10113 F:      Documentation/hwmon/intel-m10-bmc-hwmon.rst
10114 F:      drivers/hwmon/intel-m10-bmc-hwmon.c
10115 F:      drivers/mfd/intel-m10-bmc.c
10116 F:      include/linux/mfd/intel-m10-bmc.h
10117
10118 INTEL MENLOW THERMAL DRIVER
10119 M:      Sujith Thomas <sujith.thomas@intel.com>
10120 L:      linux-pm@vger.kernel.org
10121 S:      Supported
10122 W:      https://01.org/linux-acpi
10123 F:      drivers/thermal/intel/intel_menlow.c
10124
10125 INTEL P-Unit IPC DRIVER
10126 M:      Zha Qipeng <qipeng.zha@intel.com>
10127 L:      platform-driver-x86@vger.kernel.org
10128 S:      Maintained
10129 F:      arch/x86/include/asm/intel_punit_ipc.h
10130 F:      drivers/platform/x86/intel/punit_ipc.c
10131
10132 INTEL PMC CORE DRIVER
10133 M:      Rajneesh Bhardwaj <irenic.rajneesh@gmail.com>
10134 M:      David E Box <david.e.box@intel.com>
10135 L:      platform-driver-x86@vger.kernel.org
10136 S:      Maintained
10137 F:      Documentation/ABI/testing/sysfs-platform-intel-pmc
10138 F:      drivers/platform/x86/intel/pmc/
10139
10140 INTEL PMIC GPIO DRIVERS
10141 M:      Andy Shevchenko <andy@kernel.org>
10142 S:      Supported
10143 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
10144 F:      drivers/gpio/gpio-*cove.c
10145
10146 INTEL PMIC MULTIFUNCTION DEVICE DRIVERS
10147 M:      Andy Shevchenko <andy@kernel.org>
10148 S:      Maintained
10149 F:      drivers/mfd/intel_soc_pmic*
10150 F:      include/linux/mfd/intel_soc_pmic*
10151
10152 INTEL PMT DRIVERS
10153 M:      David E. Box <david.e.box@linux.intel.com>
10154 S:      Supported
10155 F:      drivers/platform/x86/intel/pmt/
10156
10157 INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
10158 M:      Stanislav Yakovlev <stas.yakovlev@gmail.com>
10159 L:      linux-wireless@vger.kernel.org
10160 S:      Maintained
10161 F:      Documentation/networking/device_drivers/wifi/intel/ipw2100.rst
10162 F:      Documentation/networking/device_drivers/wifi/intel/ipw2200.rst
10163 F:      drivers/net/wireless/intel/ipw2x00/
10164
10165 INTEL PSTATE DRIVER
10166 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
10167 M:      Len Brown <lenb@kernel.org>
10168 L:      linux-pm@vger.kernel.org
10169 S:      Supported
10170 F:      drivers/cpufreq/intel_pstate.c
10171
10172 INTEL QUADRATURE ENCODER PERIPHERAL DRIVER
10173 M:      Jarkko Nikula <jarkko.nikula@linux.intel.com>
10174 L:      linux-iio@vger.kernel.org
10175 F:      drivers/counter/intel-qep.c
10176
10177 INTEL SCU DRIVERS
10178 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
10179 S:      Maintained
10180 F:      arch/x86/include/asm/intel_scu_ipc.h
10181 F:      drivers/platform/x86/intel_scu_*
10182
10183 INTEL SDSI DRIVER
10184 M:      David E. Box <david.e.box@linux.intel.com>
10185 S:      Supported
10186 F:      drivers/platform/x86/intel/sdsi.c
10187 F:      tools/arch/x86/intel_sdsi/
10188 F:      tools/testing/selftests/drivers/sdsi/
10189
10190 INTEL SKYLAKE INT3472 ACPI DEVICE DRIVER
10191 M:      Daniel Scally <djrscally@gmail.com>
10192 S:      Maintained
10193 F:      drivers/platform/x86/intel/int3472/
10194
10195 INTEL SPEED SELECT TECHNOLOGY
10196 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
10197 L:      platform-driver-x86@vger.kernel.org
10198 S:      Maintained
10199 F:      drivers/platform/x86/intel/speed_select_if/
10200 F:      include/uapi/linux/isst_if.h
10201 F:      tools/power/x86/intel-speed-select/
10202
10203 INTEL STRATIX10 FIRMWARE DRIVERS
10204 M:      Dinh Nguyen <dinguyen@kernel.org>
10205 L:      linux-kernel@vger.kernel.org
10206 S:      Maintained
10207 F:      Documentation/ABI/testing/sysfs-devices-platform-stratix10-rsu
10208 F:      Documentation/devicetree/bindings/firmware/intel,stratix10-svc.txt
10209 F:      drivers/firmware/stratix10-rsu.c
10210 F:      drivers/firmware/stratix10-svc.c
10211 F:      include/linux/firmware/intel/stratix10-smc.h
10212 F:      include/linux/firmware/intel/stratix10-svc-client.h
10213 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
10214
10215 INTEL TELEMETRY DRIVER
10216 M:      Rajneesh Bhardwaj <irenic.rajneesh@gmail.com>
10217 M:      "David E. Box" <david.e.box@linux.intel.com>
10218 L:      platform-driver-x86@vger.kernel.org
10219 S:      Maintained
10220 F:      arch/x86/include/asm/intel_telemetry.h
10221 F:      drivers/platform/x86/intel/telemetry/
10222
10223 INTEL UNCORE FREQUENCY CONTROL
10224 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
10225 L:      platform-driver-x86@vger.kernel.org
10226 S:      Maintained
10227 F:      Documentation/admin-guide/pm/intel_uncore_frequency_scaling.rst
10228 F:      drivers/platform/x86/intel/uncore-frequency/
10229
10230 INTEL VENDOR SPECIFIC EXTENDED CAPABILITIES DRIVER
10231 M:      David E. Box <david.e.box@linux.intel.com>
10232 S:      Supported
10233 F:      drivers/platform/x86/intel/vsec.*
10234
10235 INTEL VIRTUAL BUTTON DRIVER
10236 M:      AceLan Kao <acelan.kao@canonical.com>
10237 L:      platform-driver-x86@vger.kernel.org
10238 S:      Maintained
10239 F:      drivers/platform/x86/intel/vbtn.c
10240
10241 INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
10242 M:      Stanislaw Gruszka <stf_xl@wp.pl>
10243 L:      linux-wireless@vger.kernel.org
10244 S:      Supported
10245 F:      drivers/net/wireless/intel/iwlegacy/
10246
10247 INTEL WIRELESS WIFI LINK (iwlwifi)
10248 M:      Gregory Greenman <gregory.greenman@intel.com>
10249 L:      linux-wireless@vger.kernel.org
10250 S:      Supported
10251 W:      https://wireless.wiki.kernel.org/en/users/drivers/iwlwifi
10252 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
10253 F:      drivers/net/wireless/intel/iwlwifi/
10254
10255 INTEL WMI SLIM BOOTLOADER (SBL) FIRMWARE UPDATE DRIVER
10256 M:      Jithu Joseph <jithu.joseph@intel.com>
10257 R:      Maurice Ma <maurice.ma@intel.com>
10258 S:      Maintained
10259 W:      https://slimbootloader.github.io/security/firmware-update.html
10260 F:      drivers/platform/x86/intel/wmi/sbl-fw-update.c
10261
10262 INTEL WMI THUNDERBOLT FORCE POWER DRIVER
10263 L:      Dell.Client.Kernel@dell.com
10264 S:      Maintained
10265 F:      drivers/platform/x86/intel/wmi/thunderbolt.c
10266
10267 INTEL WWAN IOSM DRIVER
10268 M:      M Chetan Kumar <m.chetan.kumar@intel.com>
10269 M:      Intel Corporation <linuxwwan@intel.com>
10270 L:      netdev@vger.kernel.org
10271 S:      Maintained
10272 F:      drivers/net/wwan/iosm/
10273
10274 INTEL(R) TRACE HUB
10275 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
10276 S:      Supported
10277 F:      Documentation/trace/intel_th.rst
10278 F:      drivers/hwtracing/intel_th/
10279 F:      include/linux/intel_th.h
10280
10281 INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
10282 M:      Ning Sun <ning.sun@intel.com>
10283 L:      tboot-devel@lists.sourceforge.net
10284 S:      Supported
10285 W:      http://tboot.sourceforge.net
10286 T:      hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
10287 F:      Documentation/x86/intel_txt.rst
10288 F:      arch/x86/kernel/tboot.c
10289 F:      include/linux/tboot.h
10290
10291 INTEL SGX
10292 M:      Jarkko Sakkinen <jarkko@kernel.org>
10293 R:      Dave Hansen <dave.hansen@linux.intel.com>
10294 L:      linux-sgx@vger.kernel.org
10295 S:      Supported
10296 Q:      https://patchwork.kernel.org/project/intel-sgx/list/
10297 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/sgx
10298 F:      Documentation/x86/sgx.rst
10299 F:      arch/x86/entry/vdso/vsgx.S
10300 F:      arch/x86/include/asm/sgx.h
10301 F:      arch/x86/include/uapi/asm/sgx.h
10302 F:      arch/x86/kernel/cpu/sgx/*
10303 F:      tools/testing/selftests/sgx/*
10304 K:      \bSGX_
10305
10306 INTERCONNECT API
10307 M:      Georgi Djakov <djakov@kernel.org>
10308 L:      linux-pm@vger.kernel.org
10309 S:      Maintained
10310 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/djakov/icc.git
10311 F:      Documentation/devicetree/bindings/interconnect/
10312 F:      Documentation/driver-api/interconnect.rst
10313 F:      drivers/interconnect/
10314 F:      include/dt-bindings/interconnect/
10315 F:      include/linux/interconnect-provider.h
10316 F:      include/linux/interconnect.h
10317
10318 INTERRUPT COUNTER DRIVER
10319 M:      Oleksij Rempel <o.rempel@pengutronix.de>
10320 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
10321 L:      linux-iio@vger.kernel.org
10322 F:      Documentation/devicetree/bindings/counter/interrupt-counter.yaml
10323 F:      drivers/counter/interrupt-cnt.c
10324
10325 INTERSIL ISL7998X VIDEO DECODER DRIVER
10326 M:      Michael Tretter <m.tretter@pengutronix.de>
10327 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
10328 L:      linux-media@vger.kernel.org
10329 S:      Maintained
10330 F:      Documentation/devicetree/bindings/media/i2c/isil,isl79987.yaml
10331 F:      drivers/media/i2c/isl7998x.c
10332
10333 INVENSENSE ICM-426xx IMU DRIVER
10334 M:      Jean-Baptiste Maneyrol <jmaneyrol@invensense.com>
10335 L:      linux-iio@vger.kernel.org
10336 S:      Maintained
10337 W:      https://invensense.tdk.com/
10338 F:      Documentation/devicetree/bindings/iio/imu/invensense,icm42600.yaml
10339 F:      drivers/iio/imu/inv_icm42600/
10340
10341 INVENSENSE MPU-3050 GYROSCOPE DRIVER
10342 M:      Linus Walleij <linus.walleij@linaro.org>
10343 L:      linux-iio@vger.kernel.org
10344 S:      Maintained
10345 F:      Documentation/devicetree/bindings/iio/gyroscope/invensense,mpu3050.yaml
10346 F:      drivers/iio/gyro/mpu3050*
10347
10348 IOC3 ETHERNET DRIVER
10349 M:      Ralf Baechle <ralf@linux-mips.org>
10350 L:      linux-mips@vger.kernel.org
10351 S:      Maintained
10352 F:      drivers/net/ethernet/sgi/ioc3-eth.c
10353
10354 IOMAP FILESYSTEM LIBRARY
10355 M:      Christoph Hellwig <hch@infradead.org>
10356 M:      Darrick J. Wong <djwong@kernel.org>
10357 L:      linux-xfs@vger.kernel.org
10358 L:      linux-fsdevel@vger.kernel.org
10359 S:      Supported
10360 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
10361 F:      fs/iomap/
10362 F:      include/linux/iomap.h
10363
10364 IOMMU DRIVERS
10365 M:      Joerg Roedel <joro@8bytes.org>
10366 M:      Will Deacon <will@kernel.org>
10367 L:      iommu@lists.linux-foundation.org
10368 S:      Maintained
10369 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
10370 F:      Documentation/devicetree/bindings/iommu/
10371 F:      Documentation/userspace-api/iommu.rst
10372 F:      drivers/iommu/
10373 F:      include/linux/iommu.h
10374 F:      include/linux/iova.h
10375 F:      include/linux/of_iommu.h
10376 F:      include/uapi/linux/iommu.h
10377
10378 IOSYS-MAP HELPERS
10379 M:      Thomas Zimmermann <tzimmermann@suse.de>
10380 L:      dri-devel@lists.freedesktop.org
10381 S:      Maintained
10382 T:      git git://anongit.freedesktop.org/drm/drm-misc
10383 F:      include/linux/iosys-map.h
10384
10385 IO_URING
10386 M:      Jens Axboe <axboe@kernel.dk>
10387 R:      Pavel Begunkov <asml.silence@gmail.com>
10388 L:      io-uring@vger.kernel.org
10389 S:      Maintained
10390 T:      git git://git.kernel.dk/linux-block
10391 T:      git git://git.kernel.dk/liburing
10392 F:      fs/io-wq.c
10393 F:      fs/io-wq.h
10394 F:      fs/io_uring.c
10395 F:      include/linux/io_uring.h
10396 F:      include/uapi/linux/io_uring.h
10397 F:      tools/io_uring/
10398
10399 IPMI SUBSYSTEM
10400 M:      Corey Minyard <minyard@acm.org>
10401 L:      openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
10402 S:      Supported
10403 W:      http://openipmi.sourceforge.net/
10404 T:      git https://github.com/cminyard/linux-ipmi.git for-next
10405 F:      Documentation/driver-api/ipmi.rst
10406 F:      Documentation/devicetree/bindings/ipmi/
10407 F:      drivers/char/ipmi/
10408 F:      include/linux/ipmi*
10409 F:      include/uapi/linux/ipmi*
10410
10411 IPS SCSI RAID DRIVER
10412 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
10413 L:      linux-scsi@vger.kernel.org
10414 S:      Maintained
10415 W:      http://www.adaptec.com/
10416 F:      drivers/scsi/ips*
10417
10418 IPVS
10419 M:      Simon Horman <horms@verge.net.au>
10420 M:      Julian Anastasov <ja@ssi.bg>
10421 L:      netdev@vger.kernel.org
10422 L:      lvs-devel@vger.kernel.org
10423 S:      Maintained
10424 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs-next.git
10425 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs.git
10426 F:      Documentation/networking/ipvs-sysctl.rst
10427 F:      include/net/ip_vs.h
10428 F:      include/uapi/linux/ip_vs.h
10429 F:      net/netfilter/ipvs/
10430
10431 IPWIRELESS DRIVER
10432 M:      Jiri Kosina <jikos@kernel.org>
10433 M:      David Sterba <dsterba@suse.com>
10434 S:      Odd Fixes
10435 F:      drivers/tty/ipwireless/
10436
10437 IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
10438 M:      Marc Zyngier <maz@kernel.org>
10439 S:      Maintained
10440 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
10441 F:      Documentation/core-api/irq/irq-domain.rst
10442 F:      include/linux/irqdomain.h
10443 F:      kernel/irq/irqdomain.c
10444 F:      kernel/irq/msi.c
10445
10446 IRQ SUBSYSTEM
10447 M:      Thomas Gleixner <tglx@linutronix.de>
10448 L:      linux-kernel@vger.kernel.org
10449 S:      Maintained
10450 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
10451 F:      kernel/irq/
10452
10453 IRQCHIP DRIVERS
10454 M:      Thomas Gleixner <tglx@linutronix.de>
10455 M:      Marc Zyngier <maz@kernel.org>
10456 L:      linux-kernel@vger.kernel.org
10457 S:      Maintained
10458 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
10459 F:      Documentation/devicetree/bindings/interrupt-controller/
10460 F:      drivers/irqchip/
10461
10462 ISA
10463 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
10464 S:      Maintained
10465 F:      Documentation/driver-api/isa.rst
10466 F:      drivers/base/isa.c
10467 F:      include/linux/isa.h
10468
10469 ISA RADIO MODULE
10470 M:      Hans Verkuil <hverkuil@xs4all.nl>
10471 L:      linux-media@vger.kernel.org
10472 S:      Maintained
10473 W:      https://linuxtv.org
10474 T:      git git://linuxtv.org/media_tree.git
10475 F:      drivers/media/radio/radio-isa*
10476
10477 ISAPNP
10478 M:      Jaroslav Kysela <perex@perex.cz>
10479 S:      Maintained
10480 F:      Documentation/driver-api/isapnp.rst
10481 F:      drivers/pnp/isapnp/
10482 F:      include/linux/isapnp.h
10483
10484 ISCSI
10485 M:      Lee Duncan <lduncan@suse.com>
10486 M:      Chris Leech <cleech@redhat.com>
10487 M:      Mike Christie <michael.christie@oracle.com>
10488 L:      open-iscsi@googlegroups.com
10489 L:      linux-scsi@vger.kernel.org
10490 S:      Maintained
10491 W:      www.open-iscsi.com
10492 F:      drivers/scsi/*iscsi*
10493 F:      include/scsi/*iscsi*
10494
10495 iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
10496 M:      Peter Jones <pjones@redhat.com>
10497 M:      Konrad Rzeszutek Wilk <konrad@kernel.org>
10498 S:      Maintained
10499 F:      drivers/firmware/iscsi_ibft*
10500
10501 ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR
10502 M:      Sagi Grimberg <sagi@grimberg.me>
10503 M:      Max Gurtovoy <mgurtovoy@nvidia.com>
10504 L:      linux-rdma@vger.kernel.org
10505 S:      Supported
10506 W:      http://www.openfabrics.org
10507 W:      www.open-iscsi.org
10508 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
10509 F:      drivers/infiniband/ulp/iser/
10510
10511 ISCSI EXTENSIONS FOR RDMA (ISER) TARGET
10512 M:      Sagi Grimberg <sagi@grimberg.me>
10513 L:      linux-rdma@vger.kernel.org
10514 L:      target-devel@vger.kernel.org
10515 S:      Supported
10516 W:      http://www.linux-iscsi.org
10517 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
10518 F:      drivers/infiniband/ulp/isert
10519
10520 ISDN/CMTP OVER BLUETOOTH
10521 M:      Karsten Keil <isdn@linux-pingi.de>
10522 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
10523 L:      netdev@vger.kernel.org
10524 S:      Odd Fixes
10525 W:      http://www.isdn4linux.de
10526 F:      Documentation/isdn/
10527 F:      drivers/isdn/capi/
10528 F:      include/linux/isdn/
10529 F:      include/uapi/linux/isdn/
10530 F:      net/bluetooth/cmtp/
10531
10532 ISDN/mISDN SUBSYSTEM
10533 M:      Karsten Keil <isdn@linux-pingi.de>
10534 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
10535 L:      netdev@vger.kernel.org
10536 S:      Maintained
10537 W:      http://www.isdn4linux.de
10538 F:      drivers/isdn/Kconfig
10539 F:      drivers/isdn/Makefile
10540 F:      drivers/isdn/hardware/
10541 F:      drivers/isdn/mISDN/
10542
10543 IT87 HARDWARE MONITORING DRIVER
10544 M:      Jean Delvare <jdelvare@suse.com>
10545 L:      linux-hwmon@vger.kernel.org
10546 S:      Maintained
10547 F:      Documentation/hwmon/it87.rst
10548 F:      drivers/hwmon/it87.c
10549
10550 IT913X MEDIA DRIVER
10551 M:      Antti Palosaari <crope@iki.fi>
10552 L:      linux-media@vger.kernel.org
10553 S:      Maintained
10554 W:      https://linuxtv.org
10555 W:      http://palosaari.fi/linux/
10556 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10557 T:      git git://linuxtv.org/anttip/media_tree.git
10558 F:      drivers/media/tuners/it913x*
10559
10560 ITE IT66121 HDMI BRIDGE DRIVER
10561 M:      Phong LE <ple@baylibre.com>
10562 M:      Neil Armstrong <narmstrong@baylibre.com>
10563 S:      Maintained
10564 T:      git git://anongit.freedesktop.org/drm/drm-misc
10565 F:      Documentation/devicetree/bindings/display/bridge/ite,it66121.yaml
10566 F:      drivers/gpu/drm/bridge/ite-it66121.c
10567
10568 IVTV VIDEO4LINUX DRIVER
10569 M:      Andy Walls <awalls@md.metrocast.net>
10570 L:      linux-media@vger.kernel.org
10571 S:      Maintained
10572 W:      https://linuxtv.org
10573 T:      git git://linuxtv.org/media_tree.git
10574 F:      Documentation/admin-guide/media/ivtv*
10575 F:      drivers/media/pci/ivtv/
10576 F:      include/uapi/linux/ivtv*
10577
10578 IX2505V MEDIA DRIVER
10579 M:      Malcolm Priestley <tvboxspy@gmail.com>
10580 L:      linux-media@vger.kernel.org
10581 S:      Maintained
10582 W:      https://linuxtv.org
10583 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10584 F:      drivers/media/dvb-frontends/ix2505v*
10585
10586 JAILHOUSE HYPERVISOR INTERFACE
10587 M:      Jan Kiszka <jan.kiszka@siemens.com>
10588 L:      jailhouse-dev@googlegroups.com
10589 S:      Maintained
10590 F:      arch/x86/include/asm/jailhouse_para.h
10591 F:      arch/x86/kernel/jailhouse.c
10592
10593 JC42.4 TEMPERATURE SENSOR DRIVER
10594 M:      Guenter Roeck <linux@roeck-us.net>
10595 L:      linux-hwmon@vger.kernel.org
10596 S:      Maintained
10597 F:      Documentation/devicetree/bindings/hwmon/jedec,jc42.yaml
10598 F:      Documentation/hwmon/jc42.rst
10599 F:      drivers/hwmon/jc42.c
10600
10601 JFS FILESYSTEM
10602 M:      Dave Kleikamp <shaggy@kernel.org>
10603 L:      jfs-discussion@lists.sourceforge.net
10604 S:      Maintained
10605 W:      http://jfs.sourceforge.net/
10606 T:      git git://github.com/kleikamp/linux-shaggy.git
10607 F:      Documentation/admin-guide/jfs.rst
10608 F:      fs/jfs/
10609
10610 JME NETWORK DRIVER
10611 M:      Guo-Fu Tseng <cooldavid@cooldavid.org>
10612 L:      netdev@vger.kernel.org
10613 S:      Maintained
10614 F:      drivers/net/ethernet/jme.*
10615
10616 JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
10617 M:      David Woodhouse <dwmw2@infradead.org>
10618 M:      Richard Weinberger <richard@nod.at>
10619 L:      linux-mtd@lists.infradead.org
10620 S:      Odd Fixes
10621 W:      http://www.linux-mtd.infradead.org/doc/jffs2.html
10622 T:      git git://git.infradead.org/ubifs-2.6.git
10623 F:      fs/jffs2/
10624 F:      include/uapi/linux/jffs2.h
10625
10626 JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
10627 M:      "Theodore Ts'o" <tytso@mit.edu>
10628 M:      Jan Kara <jack@suse.com>
10629 L:      linux-ext4@vger.kernel.org
10630 S:      Maintained
10631 F:      fs/jbd2/
10632 F:      include/linux/jbd2.h
10633
10634 JPU V4L2 MEM2MEM DRIVER FOR RENESAS
10635 M:      Mikhail Ulyanov <mikhail.ulyanov@cogentembedded.com>
10636 L:      linux-media@vger.kernel.org
10637 L:      linux-renesas-soc@vger.kernel.org
10638 S:      Maintained
10639 F:      drivers/media/platform/renesas/rcar_jpu.c
10640
10641 JSM Neo PCI based serial card
10642 L:      linux-serial@vger.kernel.org
10643 S:      Orphan
10644 F:      drivers/tty/serial/jsm/
10645
10646 K10TEMP HARDWARE MONITORING DRIVER
10647 M:      Clemens Ladisch <clemens@ladisch.de>
10648 L:      linux-hwmon@vger.kernel.org
10649 S:      Maintained
10650 F:      Documentation/hwmon/k10temp.rst
10651 F:      drivers/hwmon/k10temp.c
10652
10653 K8TEMP HARDWARE MONITORING DRIVER
10654 M:      Rudolf Marek <r.marek@assembler.cz>
10655 L:      linux-hwmon@vger.kernel.org
10656 S:      Maintained
10657 F:      Documentation/hwmon/k8temp.rst
10658 F:      drivers/hwmon/k8temp.c
10659
10660 KASAN
10661 M:      Andrey Ryabinin <ryabinin.a.a@gmail.com>
10662 R:      Alexander Potapenko <glider@google.com>
10663 R:      Andrey Konovalov <andreyknvl@gmail.com>
10664 R:      Dmitry Vyukov <dvyukov@google.com>
10665 R:      Vincenzo Frascino <vincenzo.frascino@arm.com>
10666 L:      kasan-dev@googlegroups.com
10667 S:      Maintained
10668 F:      Documentation/dev-tools/kasan.rst
10669 F:      arch/*/include/asm/*kasan.h
10670 F:      arch/*/mm/kasan_init*
10671 F:      include/linux/kasan*.h
10672 F:      lib/Kconfig.kasan
10673 F:      lib/test_kasan*.c
10674 F:      mm/kasan/
10675 F:      scripts/Makefile.kasan
10676
10677 KCONFIG
10678 M:      Masahiro Yamada <masahiroy@kernel.org>
10679 L:      linux-kbuild@vger.kernel.org
10680 S:      Maintained
10681 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git kconfig
10682 F:      Documentation/kbuild/kconfig*
10683 F:      scripts/Kconfig.include
10684 F:      scripts/kconfig/
10685
10686 KCOV
10687 R:      Dmitry Vyukov <dvyukov@google.com>
10688 R:      Andrey Konovalov <andreyknvl@gmail.com>
10689 L:      kasan-dev@googlegroups.com
10690 S:      Maintained
10691 F:      Documentation/dev-tools/kcov.rst
10692 F:      include/linux/kcov.h
10693 F:      include/uapi/linux/kcov.h
10694 F:      kernel/kcov.c
10695 F:      scripts/Makefile.kcov
10696
10697 KCSAN
10698 M:      Marco Elver <elver@google.com>
10699 R:      Dmitry Vyukov <dvyukov@google.com>
10700 L:      kasan-dev@googlegroups.com
10701 S:      Maintained
10702 F:      Documentation/dev-tools/kcsan.rst
10703 F:      include/linux/kcsan*.h
10704 F:      kernel/kcsan/
10705 F:      lib/Kconfig.kcsan
10706 F:      scripts/Makefile.kcsan
10707
10708 KDUMP
10709 M:      Baoquan He <bhe@redhat.com>
10710 R:      Vivek Goyal <vgoyal@redhat.com>
10711 R:      Dave Young <dyoung@redhat.com>
10712 L:      kexec@lists.infradead.org
10713 S:      Maintained
10714 W:      http://lse.sourceforge.net/kdump/
10715 F:      Documentation/admin-guide/kdump/
10716 F:      fs/proc/vmcore.c
10717 F:      include/linux/crash_core.h
10718 F:      include/linux/crash_dump.h
10719 F:      include/uapi/linux/vmcore.h
10720 F:      kernel/crash_*.c
10721
10722 KEENE FM RADIO TRANSMITTER DRIVER
10723 M:      Hans Verkuil <hverkuil@xs4all.nl>
10724 L:      linux-media@vger.kernel.org
10725 S:      Maintained
10726 W:      https://linuxtv.org
10727 T:      git git://linuxtv.org/media_tree.git
10728 F:      drivers/media/radio/radio-keene*
10729
10730 KERNEL AUTOMOUNTER
10731 M:      Ian Kent <raven@themaw.net>
10732 L:      autofs@vger.kernel.org
10733 S:      Maintained
10734 F:      fs/autofs/
10735
10736 KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
10737 M:      Masahiro Yamada <masahiroy@kernel.org>
10738 M:      Michal Marek <michal.lkml@markovi.net>
10739 R:      Nick Desaulniers <ndesaulniers@google.com>
10740 L:      linux-kbuild@vger.kernel.org
10741 S:      Maintained
10742 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git
10743 F:      Documentation/kbuild/
10744 F:      Makefile
10745 F:      scripts/*vmlinux*
10746 F:      scripts/Kbuild*
10747 F:      scripts/Makefile*
10748 F:      scripts/basic/
10749 F:      scripts/dummy-tools/
10750 F:      scripts/mk*
10751 F:      scripts/mod/
10752 F:      scripts/package/
10753
10754 KERNEL JANITORS
10755 L:      kernel-janitors@vger.kernel.org
10756 S:      Odd Fixes
10757 W:      http://kernelnewbies.org/KernelJanitors
10758
10759 KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
10760 M:      Chuck Lever <chuck.lever@oracle.com>
10761 M:      Jeff Layton <jlayton@kernel.org>
10762 L:      linux-nfs@vger.kernel.org
10763 S:      Supported
10764 W:      http://nfs.sourceforge.net/
10765 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/cel/linux.git
10766 F:      fs/lockd/
10767 F:      fs/nfs_common/
10768 F:      fs/nfsd/
10769 F:      include/linux/lockd/
10770 F:      include/linux/sunrpc/
10771 F:      include/uapi/linux/nfsd/
10772 F:      include/uapi/linux/sunrpc/
10773 F:      net/sunrpc/
10774 F:      Documentation/filesystems/nfs/
10775
10776 KERNEL REGRESSIONS
10777 M:      Thorsten Leemhuis <linux@leemhuis.info>
10778 L:      regressions@lists.linux.dev
10779 S:      Supported
10780 F:      Documentation/admin-guide/reporting-regressions.rst
10781 F:      Documentation/process/handling-regressions.rst
10782
10783 KERNEL SELFTEST FRAMEWORK
10784 M:      Shuah Khan <shuah@kernel.org>
10785 M:      Shuah Khan <skhan@linuxfoundation.org>
10786 L:      linux-kselftest@vger.kernel.org
10787 S:      Maintained
10788 Q:      https://patchwork.kernel.org/project/linux-kselftest/list/
10789 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest.git
10790 F:      Documentation/dev-tools/kselftest*
10791 F:      tools/testing/selftests/
10792
10793 KERNEL SMB3 SERVER (KSMBD)
10794 M:      Namjae Jeon <linkinjeon@kernel.org>
10795 M:      Steve French <sfrench@samba.org>
10796 M:      Hyunchul Lee <hyc.lee@gmail.com>
10797 R:      Sergey Senozhatsky <senozhatsky@chromium.org>
10798 L:      linux-cifs@vger.kernel.org
10799 S:      Maintained
10800 T:      git git://git.samba.org/ksmbd.git
10801 F:      fs/ksmbd/
10802 F:      fs/smbfs_common/
10803
10804 KERNEL UNIT TESTING FRAMEWORK (KUnit)
10805 M:      Brendan Higgins <brendanhiggins@google.com>
10806 L:      linux-kselftest@vger.kernel.org
10807 L:      kunit-dev@googlegroups.com
10808 S:      Maintained
10809 W:      https://google.github.io/kunit-docs/third_party/kernel/docs/
10810 F:      Documentation/dev-tools/kunit/
10811 F:      include/kunit/
10812 F:      lib/kunit/
10813 F:      tools/testing/kunit/
10814
10815 KERNEL USERMODE HELPER
10816 M:      Luis Chamberlain <mcgrof@kernel.org>
10817 L:      linux-kernel@vger.kernel.org
10818 S:      Maintained
10819 F:      include/linux/umh.h
10820 F:      kernel/umh.c
10821
10822 KERNEL VIRTUAL MACHINE (KVM)
10823 M:      Paolo Bonzini <pbonzini@redhat.com>
10824 L:      kvm@vger.kernel.org
10825 S:      Supported
10826 W:      http://www.linux-kvm.org
10827 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
10828 F:      Documentation/virt/kvm/
10829 F:      include/asm-generic/kvm*
10830 F:      include/kvm/iodev.h
10831 F:      include/linux/kvm*
10832 F:      include/trace/events/kvm.h
10833 F:      include/uapi/asm-generic/kvm*
10834 F:      include/uapi/linux/kvm*
10835 F:      tools/kvm/
10836 F:      tools/testing/selftests/kvm/
10837 F:      virt/kvm/*
10838
10839 KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64)
10840 M:      Marc Zyngier <maz@kernel.org>
10841 R:      James Morse <james.morse@arm.com>
10842 R:      Alexandru Elisei <alexandru.elisei@arm.com>
10843 R:      Suzuki K Poulose <suzuki.poulose@arm.com>
10844 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10845 L:      kvmarm@lists.cs.columbia.edu (moderated for non-subscribers)
10846 S:      Maintained
10847 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvmarm/kvmarm.git
10848 F:      arch/arm64/include/asm/kvm*
10849 F:      arch/arm64/include/uapi/asm/kvm*
10850 F:      arch/arm64/kvm/
10851 F:      include/kvm/arm_*
10852 F:      tools/testing/selftests/kvm/*/aarch64/
10853 F:      tools/testing/selftests/kvm/aarch64/
10854
10855 KERNEL VIRTUAL MACHINE FOR MIPS (KVM/mips)
10856 M:      Huacai Chen <chenhuacai@kernel.org>
10857 M:      Aleksandar Markovic <aleksandar.qemu.devel@gmail.com>
10858 L:      linux-mips@vger.kernel.org
10859 L:      kvm@vger.kernel.org
10860 S:      Maintained
10861 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
10862 F:      arch/mips/include/asm/kvm*
10863 F:      arch/mips/include/uapi/asm/kvm*
10864 F:      arch/mips/kvm/
10865
10866 KERNEL VIRTUAL MACHINE FOR POWERPC (KVM/powerpc)
10867 L:      linuxppc-dev@lists.ozlabs.org
10868 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git topic/ppc-kvm
10869 F:      arch/powerpc/include/asm/kvm*
10870 F:      arch/powerpc/include/uapi/asm/kvm*
10871 F:      arch/powerpc/kernel/kvm*
10872 F:      arch/powerpc/kvm/
10873
10874 KERNEL VIRTUAL MACHINE FOR RISC-V (KVM/riscv)
10875 M:      Anup Patel <anup@brainfault.org>
10876 R:      Atish Patra <atishp@atishpatra.org>
10877 L:      kvm@vger.kernel.org
10878 L:      kvm-riscv@lists.infradead.org
10879 L:      linux-riscv@lists.infradead.org
10880 S:      Maintained
10881 T:      git git://github.com/kvm-riscv/linux.git
10882 F:      arch/riscv/include/asm/kvm*
10883 F:      arch/riscv/include/uapi/asm/kvm*
10884 F:      arch/riscv/kvm/
10885 F:      tools/testing/selftests/kvm/*/riscv/
10886
10887 KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
10888 M:      Christian Borntraeger <borntraeger@linux.ibm.com>
10889 M:      Janosch Frank <frankja@linux.ibm.com>
10890 M:      Claudio Imbrenda <imbrenda@linux.ibm.com>
10891 R:      David Hildenbrand <david@redhat.com>
10892 L:      kvm@vger.kernel.org
10893 S:      Supported
10894 W:      http://www.ibm.com/developerworks/linux/linux390/
10895 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvms390/linux.git
10896 F:      Documentation/virt/kvm/s390*
10897 F:      arch/s390/include/asm/gmap.h
10898 F:      arch/s390/include/asm/kvm*
10899 F:      arch/s390/include/uapi/asm/kvm*
10900 F:      arch/s390/include/uapi/asm/uvdevice.h
10901 F:      arch/s390/kernel/uv.c
10902 F:      arch/s390/kvm/
10903 F:      arch/s390/mm/gmap.c
10904 F:      drivers/s390/char/uvdevice.c
10905 F:      tools/testing/selftests/drivers/s390x/uvdevice/
10906 F:      tools/testing/selftests/kvm/*/s390x/
10907 F:      tools/testing/selftests/kvm/s390x/
10908
10909 KERNEL VIRTUAL MACHINE FOR X86 (KVM/x86)
10910 M:      Paolo Bonzini <pbonzini@redhat.com>
10911 R:      Sean Christopherson <seanjc@google.com>
10912 R:      Vitaly Kuznetsov <vkuznets@redhat.com>
10913 R:      Wanpeng Li <wanpengli@tencent.com>
10914 R:      Jim Mattson <jmattson@google.com>
10915 R:      Joerg Roedel <joro@8bytes.org>
10916 L:      kvm@vger.kernel.org
10917 S:      Supported
10918 W:      http://www.linux-kvm.org
10919 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
10920 F:      arch/x86/include/asm/kvm*
10921 F:      arch/x86/include/asm/pvclock-abi.h
10922 F:      arch/x86/include/asm/svm.h
10923 F:      arch/x86/include/asm/vmx*.h
10924 F:      arch/x86/include/uapi/asm/kvm*
10925 F:      arch/x86/include/uapi/asm/svm.h
10926 F:      arch/x86/include/uapi/asm/vmx.h
10927 F:      arch/x86/kernel/kvm.c
10928 F:      arch/x86/kernel/kvmclock.c
10929 F:      arch/x86/kvm/
10930 F:      arch/x86/kvm/*/
10931
10932 KERNFS
10933 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10934 M:      Tejun Heo <tj@kernel.org>
10935 S:      Supported
10936 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
10937 F:      fs/kernfs/
10938 F:      include/linux/kernfs.h
10939
10940 KEXEC
10941 M:      Eric Biederman <ebiederm@xmission.com>
10942 L:      kexec@lists.infradead.org
10943 S:      Maintained
10944 W:      http://kernel.org/pub/linux/utils/kernel/kexec/
10945 F:      include/linux/kexec.h
10946 F:      include/uapi/linux/kexec.h
10947 F:      kernel/kexec*
10948
10949 KEYS-ENCRYPTED
10950 M:      Mimi Zohar <zohar@linux.ibm.com>
10951 L:      linux-integrity@vger.kernel.org
10952 L:      keyrings@vger.kernel.org
10953 S:      Supported
10954 F:      Documentation/security/keys/trusted-encrypted.rst
10955 F:      include/keys/encrypted-type.h
10956 F:      security/keys/encrypted-keys/
10957
10958 KEYS-TRUSTED
10959 M:      James Bottomley <jejb@linux.ibm.com>
10960 M:      Jarkko Sakkinen <jarkko@kernel.org>
10961 M:      Mimi Zohar <zohar@linux.ibm.com>
10962 L:      linux-integrity@vger.kernel.org
10963 L:      keyrings@vger.kernel.org
10964 S:      Supported
10965 F:      Documentation/security/keys/trusted-encrypted.rst
10966 F:      include/keys/trusted-type.h
10967 F:      include/keys/trusted_tpm.h
10968 F:      security/keys/trusted-keys/
10969
10970 KEYS-TRUSTED-TEE
10971 M:      Sumit Garg <sumit.garg@linaro.org>
10972 L:      linux-integrity@vger.kernel.org
10973 L:      keyrings@vger.kernel.org
10974 S:      Supported
10975 F:      include/keys/trusted_tee.h
10976 F:      security/keys/trusted-keys/trusted_tee.c
10977
10978 KEYS-TRUSTED-CAAM
10979 M:      Ahmad Fatoum <a.fatoum@pengutronix.de>
10980 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
10981 L:      linux-integrity@vger.kernel.org
10982 L:      keyrings@vger.kernel.org
10983 S:      Maintained
10984 F:      include/keys/trusted_caam.h
10985 F:      security/keys/trusted-keys/trusted_caam.c
10986
10987 KEYS/KEYRINGS
10988 M:      David Howells <dhowells@redhat.com>
10989 M:      Jarkko Sakkinen <jarkko@kernel.org>
10990 L:      keyrings@vger.kernel.org
10991 S:      Maintained
10992 F:      Documentation/security/keys/core.rst
10993 F:      include/keys/
10994 F:      include/linux/key-type.h
10995 F:      include/linux/key.h
10996 F:      include/linux/keyctl.h
10997 F:      include/uapi/linux/keyctl.h
10998 F:      security/keys/
10999
11000 KEYS/KEYRINGS_INTEGRITY
11001 M:      Jarkko Sakkinen <jarkko@kernel.org>
11002 M:      Mimi Zohar <zohar@linux.ibm.com>
11003 L:      linux-integrity@vger.kernel.org
11004 L:      keyrings@vger.kernel.org
11005 S:      Supported
11006 F:      security/integrity/platform_certs
11007
11008 KFENCE
11009 M:      Alexander Potapenko <glider@google.com>
11010 M:      Marco Elver <elver@google.com>
11011 R:      Dmitry Vyukov <dvyukov@google.com>
11012 L:      kasan-dev@googlegroups.com
11013 S:      Maintained
11014 F:      Documentation/dev-tools/kfence.rst
11015 F:      arch/*/include/asm/kfence.h
11016 F:      include/linux/kfence.h
11017 F:      lib/Kconfig.kfence
11018 F:      mm/kfence/
11019
11020 KFIFO
11021 M:      Stefani Seibold <stefani@seibold.net>
11022 S:      Maintained
11023 F:      include/linux/kfifo.h
11024 F:      lib/kfifo.c
11025 F:      samples/kfifo/
11026
11027 KGDB / KDB /debug_core
11028 M:      Jason Wessel <jason.wessel@windriver.com>
11029 M:      Daniel Thompson <daniel.thompson@linaro.org>
11030 R:      Douglas Anderson <dianders@chromium.org>
11031 L:      kgdb-bugreport@lists.sourceforge.net
11032 S:      Maintained
11033 W:      http://kgdb.wiki.kernel.org/
11034 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jwessel/kgdb.git
11035 F:      Documentation/dev-tools/kgdb.rst
11036 F:      drivers/misc/kgdbts.c
11037 F:      drivers/tty/serial/kgdboc.c
11038 F:      include/linux/kdb.h
11039 F:      include/linux/kgdb.h
11040 F:      kernel/debug/
11041 F:      kernel/module/kdb.c
11042
11043 KHADAS MCU MFD DRIVER
11044 M:      Neil Armstrong <narmstrong@baylibre.com>
11045 L:      linux-amlogic@lists.infradead.org
11046 S:      Maintained
11047 F:      Documentation/devicetree/bindings/mfd/khadas,mcu.yaml
11048 F:      drivers/mfd/khadas-mcu.c
11049 F:      include/linux/mfd/khadas-mcu.h
11050 F:      drivers/thermal/khadas_mcu_fan.c
11051
11052 KMEMLEAK
11053 M:      Catalin Marinas <catalin.marinas@arm.com>
11054 S:      Maintained
11055 F:      Documentation/dev-tools/kmemleak.rst
11056 F:      include/linux/kmemleak.h
11057 F:      mm/kmemleak.c
11058 F:      samples/kmemleak/kmemleak-test.c
11059
11060 KMOD KERNEL MODULE LOADER - USERMODE HELPER
11061 M:      Luis Chamberlain <mcgrof@kernel.org>
11062 L:      linux-kernel@vger.kernel.org
11063 L:      linux-modules@vger.kernel.org
11064 S:      Maintained
11065 F:      include/linux/kmod.h
11066 F:      kernel/kmod.c
11067 F:      lib/test_kmod.c
11068 F:      tools/testing/selftests/kmod/
11069
11070 KPROBES
11071 M:      Naveen N. Rao <naveen.n.rao@linux.ibm.com>
11072 M:      Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
11073 M:      "David S. Miller" <davem@davemloft.net>
11074 M:      Masami Hiramatsu <mhiramat@kernel.org>
11075 S:      Maintained
11076 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rostedt/linux-trace.git
11077 F:      Documentation/trace/kprobes.rst
11078 F:      include/asm-generic/kprobes.h
11079 F:      include/linux/kprobes.h
11080 F:      kernel/kprobes.c
11081 F:      lib/test_kprobes.c
11082 F:      samples/kprobes
11083
11084 KS0108 LCD CONTROLLER DRIVER
11085 M:      Miguel Ojeda <ojeda@kernel.org>
11086 S:      Maintained
11087 F:      Documentation/admin-guide/auxdisplay/ks0108.rst
11088 F:      drivers/auxdisplay/ks0108.c
11089 F:      include/linux/ks0108.h
11090
11091 KTD253 BACKLIGHT DRIVER
11092 M:      Linus Walleij <linus.walleij@linaro.org>
11093 S:      Maintained
11094 F:      Documentation/devicetree/bindings/leds/backlight/kinetic,ktd253.yaml
11095 F:      drivers/video/backlight/ktd253-backlight.c
11096
11097 KTEST
11098 M:      Steven Rostedt <rostedt@goodmis.org>
11099 M:      John Hawley <warthog9@eaglescrag.net>
11100 S:      Maintained
11101 F:      tools/testing/ktest
11102
11103 L3MDEV
11104 M:      David Ahern <dsahern@kernel.org>
11105 L:      netdev@vger.kernel.org
11106 S:      Maintained
11107 F:      include/net/l3mdev.h
11108 F:      net/l3mdev
11109
11110 L7 BPF FRAMEWORK
11111 M:      John Fastabend <john.fastabend@gmail.com>
11112 M:      Daniel Borkmann <daniel@iogearbox.net>
11113 M:      Jakub Sitnicki <jakub@cloudflare.com>
11114 L:      netdev@vger.kernel.org
11115 L:      bpf@vger.kernel.org
11116 S:      Maintained
11117 F:      include/linux/skmsg.h
11118 F:      net/core/skmsg.c
11119 F:      net/core/sock_map.c
11120 F:      net/ipv4/tcp_bpf.c
11121 F:      net/ipv4/udp_bpf.c
11122 F:      net/unix/unix_bpf.c
11123
11124 LANDLOCK SECURITY MODULE
11125 M:      Mickaël Salaün <mic@digikod.net>
11126 L:      linux-security-module@vger.kernel.org
11127 S:      Supported
11128 W:      https://landlock.io
11129 T:      git https://github.com/landlock-lsm/linux.git
11130 F:      Documentation/security/landlock.rst
11131 F:      Documentation/userspace-api/landlock.rst
11132 F:      include/uapi/linux/landlock.h
11133 F:      samples/landlock/
11134 F:      security/landlock/
11135 F:      tools/testing/selftests/landlock/
11136 K:      landlock
11137 K:      LANDLOCK
11138
11139 LANTIQ / INTEL Ethernet drivers
11140 M:      Hauke Mehrtens <hauke@hauke-m.de>
11141 L:      netdev@vger.kernel.org
11142 S:      Maintained
11143 F:      drivers/net/dsa/lantiq_gswip.c
11144 F:      drivers/net/dsa/lantiq_pce.h
11145 F:      drivers/net/ethernet/lantiq_xrx200.c
11146 F:      net/dsa/tag_gswip.c
11147
11148 LANTIQ MIPS ARCHITECTURE
11149 M:      John Crispin <john@phrozen.org>
11150 L:      linux-mips@vger.kernel.org
11151 S:      Maintained
11152 F:      arch/mips/lantiq
11153 F:      drivers/soc/lantiq
11154
11155 LASI 53c700 driver for PARISC
11156 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
11157 L:      linux-scsi@vger.kernel.org
11158 S:      Maintained
11159 F:      Documentation/scsi/53c700.rst
11160 F:      drivers/scsi/53c700*
11161
11162 LEAKING_ADDRESSES
11163 M:      Tobin C. Harding <me@tobin.cc>
11164 M:      Tycho Andersen <tycho@tycho.pizza>
11165 L:      linux-hardening@vger.kernel.org
11166 S:      Maintained
11167 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tobin/leaks.git
11168 F:      scripts/leaking_addresses.pl
11169
11170 LED SUBSYSTEM
11171 M:      Pavel Machek <pavel@ucw.cz>
11172 L:      linux-leds@vger.kernel.org
11173 S:      Maintained
11174 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pavel/linux-leds.git
11175 F:      Documentation/devicetree/bindings/leds/
11176 F:      drivers/leds/
11177 F:      include/linux/leds.h
11178
11179 LEGACY EEPROM DRIVER
11180 M:      Jean Delvare <jdelvare@suse.com>
11181 S:      Maintained
11182 F:      Documentation/misc-devices/eeprom.rst
11183 F:      drivers/misc/eeprom/eeprom.c
11184
11185 LEGO MINDSTORMS EV3
11186 R:      David Lechner <david@lechnology.com>
11187 S:      Maintained
11188 F:      Documentation/devicetree/bindings/power/supply/lego,ev3-battery.yaml
11189 F:      arch/arm/boot/dts/da850-lego-ev3.dts
11190 F:      drivers/power/supply/lego_ev3_battery.c
11191
11192 LEGO USB Tower driver
11193 M:      Juergen Stuber <starblue@users.sourceforge.net>
11194 L:      legousb-devel@lists.sourceforge.net
11195 S:      Maintained
11196 W:      http://legousb.sourceforge.net/
11197 F:      drivers/usb/misc/legousbtower.c
11198
11199 LETSKETCH HID TABLET DRIVER
11200 M:      Hans de Goede <hdegoede@redhat.com>
11201 L:      linux-input@vger.kernel.org
11202 S:      Maintained
11203 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
11204 F:      drivers/hid/hid-letsketch.c
11205
11206 LG LAPTOP EXTRAS
11207 M:      Matan Ziv-Av <matan@svgalib.org>
11208 L:      platform-driver-x86@vger.kernel.org
11209 S:      Maintained
11210 F:      Documentation/ABI/testing/sysfs-platform-lg-laptop
11211 F:      Documentation/admin-guide/laptops/lg-laptop.rst
11212 F:      drivers/platform/x86/lg-laptop.c
11213
11214 LG2160 MEDIA DRIVER
11215 M:      Michael Krufky <mkrufky@linuxtv.org>
11216 L:      linux-media@vger.kernel.org
11217 S:      Maintained
11218 W:      https://linuxtv.org
11219 W:      http://github.com/mkrufky
11220 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11221 T:      git git://linuxtv.org/mkrufky/tuners.git
11222 F:      drivers/media/dvb-frontends/lg2160.*
11223
11224 LGDT3305 MEDIA DRIVER
11225 M:      Michael Krufky <mkrufky@linuxtv.org>
11226 L:      linux-media@vger.kernel.org
11227 S:      Maintained
11228 W:      https://linuxtv.org
11229 W:      http://github.com/mkrufky
11230 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11231 T:      git git://linuxtv.org/mkrufky/tuners.git
11232 F:      drivers/media/dvb-frontends/lgdt3305.*
11233
11234 LIBATA PATA ARASAN COMPACT FLASH CONTROLLER
11235 M:      Viresh Kumar <vireshk@kernel.org>
11236 L:      linux-ide@vger.kernel.org
11237 S:      Maintained
11238 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
11239 F:      drivers/ata/pata_arasan_cf.c
11240 F:      include/linux/pata_arasan_cf_data.h
11241
11242 LIBATA PATA DRIVERS
11243 R:      Sergey Shtylyov <s.shtylyov@omp.ru>
11244 L:      linux-ide@vger.kernel.org
11245 F:      drivers/ata/ata_*.c
11246 F:      drivers/ata/pata_*.c
11247
11248 LIBATA PATA FARADAY FTIDE010 AND GEMINI SATA BRIDGE DRIVERS
11249 M:      Linus Walleij <linus.walleij@linaro.org>
11250 L:      linux-ide@vger.kernel.org
11251 S:      Maintained
11252 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
11253 F:      drivers/ata/pata_ftide010.c
11254 F:      drivers/ata/sata_gemini.c
11255 F:      drivers/ata/sata_gemini.h
11256
11257 LIBATA SATA AHCI PLATFORM devices support
11258 M:      Hans de Goede <hdegoede@redhat.com>
11259 M:      Jens Axboe <axboe@kernel.dk>
11260 L:      linux-ide@vger.kernel.org
11261 S:      Maintained
11262 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
11263 F:      drivers/ata/ahci_platform.c
11264 F:      drivers/ata/libahci_platform.c
11265 F:      include/linux/ahci_platform.h
11266
11267 LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER
11268 M:      Mikael Pettersson <mikpelinux@gmail.com>
11269 L:      linux-ide@vger.kernel.org
11270 S:      Maintained
11271 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
11272 F:      drivers/ata/sata_promise.*
11273
11274 LIBATA SUBSYSTEM (Serial and Parallel ATA drivers)
11275 M:      Damien Le Moal <damien.lemoal@opensource.wdc.com>
11276 L:      linux-ide@vger.kernel.org
11277 S:      Maintained
11278 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dlemoal/libata.git
11279 F:      Documentation/ABI/testing/sysfs-ata
11280 F:      Documentation/devicetree/bindings/ata/
11281 F:      drivers/ata/
11282 F:      include/linux/ata.h
11283 F:      include/linux/libata.h
11284
11285 LIBNVDIMM BTT: BLOCK TRANSLATION TABLE
11286 M:      Vishal Verma <vishal.l.verma@intel.com>
11287 M:      Dan Williams <dan.j.williams@intel.com>
11288 M:      Dave Jiang <dave.jiang@intel.com>
11289 L:      nvdimm@lists.linux.dev
11290 S:      Supported
11291 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
11292 P:      Documentation/nvdimm/maintainer-entry-profile.rst
11293 F:      drivers/nvdimm/btt*
11294
11295 LIBNVDIMM PMEM: PERSISTENT MEMORY DRIVER
11296 M:      Dan Williams <dan.j.williams@intel.com>
11297 M:      Vishal Verma <vishal.l.verma@intel.com>
11298 M:      Dave Jiang <dave.jiang@intel.com>
11299 L:      nvdimm@lists.linux.dev
11300 S:      Supported
11301 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
11302 P:      Documentation/nvdimm/maintainer-entry-profile.rst
11303 F:      drivers/nvdimm/pmem*
11304
11305 LIBNVDIMM: DEVICETREE BINDINGS
11306 M:      Oliver O'Halloran <oohall@gmail.com>
11307 L:      nvdimm@lists.linux.dev
11308 S:      Supported
11309 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
11310 F:      Documentation/devicetree/bindings/pmem/pmem-region.txt
11311 F:      drivers/nvdimm/of_pmem.c
11312
11313 LIBNVDIMM: NON-VOLATILE MEMORY DEVICE SUBSYSTEM
11314 M:      Dan Williams <dan.j.williams@intel.com>
11315 M:      Vishal Verma <vishal.l.verma@intel.com>
11316 M:      Dave Jiang <dave.jiang@intel.com>
11317 M:      Ira Weiny <ira.weiny@intel.com>
11318 L:      nvdimm@lists.linux.dev
11319 S:      Supported
11320 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
11321 P:      Documentation/nvdimm/maintainer-entry-profile.rst
11322 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nvdimm/nvdimm.git
11323 F:      drivers/acpi/nfit/*
11324 F:      drivers/nvdimm/*
11325 F:      include/linux/libnvdimm.h
11326 F:      include/linux/nd.h
11327 F:      include/uapi/linux/ndctl.h
11328 F:      tools/testing/nvdimm/
11329
11330 LICENSES and SPDX stuff
11331 M:      Thomas Gleixner <tglx@linutronix.de>
11332 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
11333 L:      linux-spdx@vger.kernel.org
11334 S:      Maintained
11335 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/spdx.git
11336 F:      COPYING
11337 F:      Documentation/process/license-rules.rst
11338 F:      LICENSES/
11339 F:      scripts/spdxcheck-test.sh
11340 F:      scripts/spdxcheck.py
11341
11342 LINEAR RANGES HELPERS
11343 M:      Mark Brown <broonie@kernel.org>
11344 R:      Matti Vaittinen <mazziesaccount@gmail.com>
11345 F:      lib/linear_ranges.c
11346 F:      lib/test_linear_ranges.c
11347 F:      include/linux/linear_range.h
11348
11349 LINUX FOR POWER MACINTOSH
11350 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
11351 L:      linuxppc-dev@lists.ozlabs.org
11352 S:      Odd Fixes
11353 F:      arch/powerpc/platforms/powermac/
11354 F:      drivers/macintosh/
11355
11356 LINUX FOR POWERPC (32-BIT AND 64-BIT)
11357 M:      Michael Ellerman <mpe@ellerman.id.au>
11358 R:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
11359 R:      Paul Mackerras <paulus@samba.org>
11360 L:      linuxppc-dev@lists.ozlabs.org
11361 S:      Supported
11362 W:      https://github.com/linuxppc/wiki/wiki
11363 Q:      http://patchwork.ozlabs.org/project/linuxppc-dev/list/
11364 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git
11365 F:      Documentation/ABI/stable/sysfs-firmware-opal-*
11366 F:      Documentation/devicetree/bindings/i2c/i2c-opal.txt
11367 F:      Documentation/devicetree/bindings/powerpc/
11368 F:      Documentation/devicetree/bindings/rtc/rtc-opal.txt
11369 F:      Documentation/powerpc/
11370 F:      arch/powerpc/
11371 F:      drivers/*/*/*pasemi*
11372 F:      drivers/*/*pasemi*
11373 F:      drivers/char/tpm/tpm_ibmvtpm*
11374 F:      drivers/crypto/nx/
11375 F:      drivers/crypto/vmx/
11376 F:      drivers/i2c/busses/i2c-opal.c
11377 F:      drivers/net/ethernet/ibm/ibmveth.*
11378 F:      drivers/net/ethernet/ibm/ibmvnic.*
11379 F:      drivers/pci/hotplug/pnv_php.c
11380 F:      drivers/pci/hotplug/rpa*
11381 F:      drivers/rtc/rtc-opal.c
11382 F:      drivers/scsi/ibmvscsi/
11383 F:      drivers/tty/hvc/hvc_opal.c
11384 F:      drivers/watchdog/wdrtas.c
11385 F:      tools/testing/selftests/powerpc
11386 N:      /pmac
11387 N:      powermac
11388 N:      powernv
11389 N:      [^a-z0-9]ps3
11390 N:      pseries
11391
11392 LINUX FOR POWERPC EMBEDDED MPC5XXX
11393 M:      Anatolij Gustschin <agust@denx.de>
11394 L:      linuxppc-dev@lists.ozlabs.org
11395 S:      Odd Fixes
11396 F:      arch/powerpc/platforms/512x/
11397 F:      arch/powerpc/platforms/52xx/
11398
11399 LINUX FOR POWERPC EMBEDDED PPC4XX
11400 L:      linuxppc-dev@lists.ozlabs.org
11401 S:      Orphan
11402 F:      arch/powerpc/platforms/40x/
11403 F:      arch/powerpc/platforms/44x/
11404
11405 LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
11406 M:      Scott Wood <oss@buserror.net>
11407 L:      linuxppc-dev@lists.ozlabs.org
11408 S:      Odd fixes
11409 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git
11410 F:      Documentation/devicetree/bindings/powerpc/fsl/
11411 F:      arch/powerpc/platforms/83xx/
11412 F:      arch/powerpc/platforms/85xx/
11413
11414 LINUX FOR POWERPC EMBEDDED PPC8XX
11415 M:      Christophe Leroy <christophe.leroy@csgroup.eu>
11416 L:      linuxppc-dev@lists.ozlabs.org
11417 S:      Maintained
11418 F:      arch/powerpc/platforms/8xx/
11419
11420 LINUX KERNEL DUMP TEST MODULE (LKDTM)
11421 M:      Kees Cook <keescook@chromium.org>
11422 S:      Maintained
11423 F:      drivers/misc/lkdtm/*
11424 F:      tools/testing/selftests/lkdtm/*
11425
11426 LINUX KERNEL MEMORY CONSISTENCY MODEL (LKMM)
11427 M:      Alan Stern <stern@rowland.harvard.edu>
11428 M:      Andrea Parri <parri.andrea@gmail.com>
11429 M:      Will Deacon <will@kernel.org>
11430 M:      Peter Zijlstra <peterz@infradead.org>
11431 M:      Boqun Feng <boqun.feng@gmail.com>
11432 M:      Nicholas Piggin <npiggin@gmail.com>
11433 M:      David Howells <dhowells@redhat.com>
11434 M:      Jade Alglave <j.alglave@ucl.ac.uk>
11435 M:      Luc Maranget <luc.maranget@inria.fr>
11436 M:      "Paul E. McKenney" <paulmck@kernel.org>
11437 R:      Akira Yokosawa <akiyks@gmail.com>
11438 R:      Daniel Lustig <dlustig@nvidia.com>
11439 R:      Joel Fernandes <joel@joelfernandes.org>
11440 L:      linux-kernel@vger.kernel.org
11441 L:      linux-arch@vger.kernel.org
11442 S:      Supported
11443 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
11444 F:      Documentation/atomic_bitops.txt
11445 F:      Documentation/atomic_t.txt
11446 F:      Documentation/core-api/refcount-vs-atomic.rst
11447 F:      Documentation/litmus-tests/
11448 F:      Documentation/memory-barriers.txt
11449 F:      tools/memory-model/
11450
11451 LIS3LV02D ACCELEROMETER DRIVER
11452 M:      Eric Piel <eric.piel@tremplin-utc.net>
11453 S:      Maintained
11454 F:      Documentation/misc-devices/lis3lv02d.rst
11455 F:      drivers/misc/lis3lv02d/
11456 F:      drivers/platform/x86/hp_accel.c
11457
11458 LIST KUNIT TEST
11459 M:      David Gow <davidgow@google.com>
11460 L:      linux-kselftest@vger.kernel.org
11461 L:      kunit-dev@googlegroups.com
11462 S:      Maintained
11463 F:      lib/list-test.c
11464
11465 LITEX PLATFORM
11466 M:      Karol Gugala <kgugala@antmicro.com>
11467 M:      Mateusz Holenko <mholenko@antmicro.com>
11468 M:      Gabriel Somlo <gsomlo@gmail.com>
11469 M:      Joel Stanley <joel@jms.id.au>
11470 S:      Maintained
11471 F:      Documentation/devicetree/bindings/*/litex,*.yaml
11472 F:      arch/openrisc/boot/dts/or1klitex.dts
11473 F:      include/linux/litex.h
11474 F:      drivers/tty/serial/liteuart.c
11475 F:      drivers/soc/litex/*
11476 F:      drivers/net/ethernet/litex/*
11477 F:      drivers/mmc/host/litex_mmc.c
11478 N:      litex
11479
11480 LIVE PATCHING
11481 M:      Josh Poimboeuf <jpoimboe@kernel.org>
11482 M:      Jiri Kosina <jikos@kernel.org>
11483 M:      Miroslav Benes <mbenes@suse.cz>
11484 M:      Petr Mladek <pmladek@suse.com>
11485 R:      Joe Lawrence <joe.lawrence@redhat.com>
11486 L:      live-patching@vger.kernel.org
11487 S:      Maintained
11488 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/livepatching/livepatching.git
11489 F:      Documentation/ABI/testing/sysfs-kernel-livepatch
11490 F:      Documentation/livepatch/
11491 F:      arch/powerpc/include/asm/livepatch.h
11492 F:      include/linux/livepatch.h
11493 F:      kernel/livepatch/
11494 F:      kernel/module/livepatch.c
11495 F:      lib/livepatch/
11496 F:      samples/livepatch/
11497 F:      tools/testing/selftests/livepatch/
11498
11499 LLC (802.2)
11500 L:      netdev@vger.kernel.org
11501 S:      Odd fixes
11502 F:      include/linux/llc.h
11503 F:      include/net/llc*
11504 F:      include/uapi/linux/llc.h
11505 F:      net/llc/
11506
11507 LM73 HARDWARE MONITOR DRIVER
11508 M:      Guillaume Ligneul <guillaume.ligneul@gmail.com>
11509 L:      linux-hwmon@vger.kernel.org
11510 S:      Maintained
11511 F:      drivers/hwmon/lm73.c
11512
11513 LM78 HARDWARE MONITOR DRIVER
11514 M:      Jean Delvare <jdelvare@suse.com>
11515 L:      linux-hwmon@vger.kernel.org
11516 S:      Maintained
11517 F:      Documentation/hwmon/lm78.rst
11518 F:      drivers/hwmon/lm78.c
11519
11520 LM83 HARDWARE MONITOR DRIVER
11521 M:      Jean Delvare <jdelvare@suse.com>
11522 L:      linux-hwmon@vger.kernel.org
11523 S:      Maintained
11524 F:      Documentation/hwmon/lm83.rst
11525 F:      drivers/hwmon/lm83.c
11526
11527 LM90 HARDWARE MONITOR DRIVER
11528 M:      Jean Delvare <jdelvare@suse.com>
11529 L:      linux-hwmon@vger.kernel.org
11530 S:      Maintained
11531 F:      Documentation/devicetree/bindings/hwmon/national,lm90.yaml
11532 F:      Documentation/hwmon/lm90.rst
11533 F:      drivers/hwmon/lm90.c
11534 F:      include/dt-bindings/thermal/lm90.h
11535
11536 LM95234 HARDWARE MONITOR DRIVER
11537 M:      Guenter Roeck <linux@roeck-us.net>
11538 L:      linux-hwmon@vger.kernel.org
11539 S:      Maintained
11540 F:      Documentation/hwmon/lm95234.rst
11541 F:      drivers/hwmon/lm95234.c
11542
11543 LME2510 MEDIA DRIVER
11544 M:      Malcolm Priestley <tvboxspy@gmail.com>
11545 L:      linux-media@vger.kernel.org
11546 S:      Maintained
11547 W:      https://linuxtv.org
11548 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11549 F:      drivers/media/usb/dvb-usb-v2/lmedm04*
11550
11551 LOADPIN SECURITY MODULE
11552 M:      Kees Cook <keescook@chromium.org>
11553 S:      Supported
11554 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git lsm/loadpin
11555 F:      Documentation/admin-guide/LSM/LoadPin.rst
11556 F:      security/loadpin/
11557
11558 LOCKING PRIMITIVES
11559 M:      Peter Zijlstra <peterz@infradead.org>
11560 M:      Ingo Molnar <mingo@redhat.com>
11561 M:      Will Deacon <will@kernel.org>
11562 R:      Waiman Long <longman@redhat.com>
11563 R:      Boqun Feng <boqun.feng@gmail.com> (LOCKDEP)
11564 L:      linux-kernel@vger.kernel.org
11565 S:      Maintained
11566 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
11567 F:      Documentation/locking/
11568 F:      arch/*/include/asm/spinlock*.h
11569 F:      include/linux/lockdep.h
11570 F:      include/linux/mutex*.h
11571 F:      include/linux/rwlock*.h
11572 F:      include/linux/rwsem*.h
11573 F:      include/linux/seqlock.h
11574 F:      include/linux/spinlock*.h
11575 F:      kernel/locking/
11576 F:      lib/locking*.[ch]
11577 X:      kernel/locking/locktorture.c
11578
11579 LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
11580 M:      "Richard Russon (FlatCap)" <ldm@flatcap.org>
11581 L:      linux-ntfs-dev@lists.sourceforge.net
11582 S:      Maintained
11583 W:      http://www.linux-ntfs.org/content/view/19/37/
11584 F:      Documentation/admin-guide/ldm.rst
11585 F:      block/partitions/ldm.*
11586
11587 LOGITECH HID GAMING KEYBOARDS
11588 M:      Hans de Goede <hdegoede@redhat.com>
11589 L:      linux-input@vger.kernel.org
11590 S:      Maintained
11591 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
11592 F:      drivers/hid/hid-lg-g15.c
11593
11594 LONTIUM LT8912B MIPI TO HDMI BRIDGE
11595 M:      Adrien Grassein <adrien.grassein@gmail.com>
11596 S:      Maintained
11597 F:      Documentation/devicetree/bindings/display/bridge/lontium,lt8912b.yaml
11598 F:      drivers/gpu/drm/bridge/lontium-lt8912b.c
11599
11600 LOONGARCH
11601 M:      Huacai Chen <chenhuacai@kernel.org>
11602 R:      WANG Xuerui <kernel@xen0n.name>
11603 S:      Maintained
11604 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chenhuacai/linux-loongson.git
11605 F:      arch/loongarch/
11606 F:      drivers/*/*loongarch*
11607 F:      Documentation/loongarch/
11608 F:      Documentation/translations/zh_CN/loongarch/
11609
11610 LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
11611 M:      Sathya Prakash <sathya.prakash@broadcom.com>
11612 M:      Sreekanth Reddy <sreekanth.reddy@broadcom.com>
11613 M:      Suganath Prabu Subramani <suganath-prabu.subramani@broadcom.com>
11614 L:      MPT-FusionLinux.pdl@broadcom.com
11615 L:      linux-scsi@vger.kernel.org
11616 S:      Supported
11617 W:      http://www.avagotech.com/support/
11618 F:      drivers/message/fusion/
11619 F:      drivers/scsi/mpt3sas/
11620
11621 LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
11622 M:      Matthew Wilcox <willy@infradead.org>
11623 L:      linux-scsi@vger.kernel.org
11624 S:      Maintained
11625 F:      drivers/scsi/sym53c8xx_2/
11626
11627 LTC1660 DAC DRIVER
11628 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
11629 L:      linux-iio@vger.kernel.org
11630 S:      Maintained
11631 F:      Documentation/devicetree/bindings/iio/dac/lltc,ltc1660.yaml
11632 F:      drivers/iio/dac/ltc1660.c
11633
11634 LTC2688 IIO DAC DRIVER
11635 M:      Nuno Sá <nuno.sa@analog.com>
11636 L:      linux-iio@vger.kernel.org
11637 S:      Supported
11638 W:      http://ez.analog.com/community/linux-device-drivers
11639 F:      Documentation/ABI/testing/sysfs-bus-iio-dac-ltc2688
11640 F:      Documentation/devicetree/bindings/iio/dac/adi,ltc2688.yaml
11641 F:      drivers/iio/dac/ltc2688.c
11642
11643 LTC2947 HARDWARE MONITOR DRIVER
11644 M:      Nuno Sá <nuno.sa@analog.com>
11645 L:      linux-hwmon@vger.kernel.org
11646 S:      Supported
11647 W:      https://ez.analog.com/linux-software-drivers
11648 F:      Documentation/devicetree/bindings/hwmon/adi,ltc2947.yaml
11649 F:      drivers/hwmon/ltc2947-core.c
11650 F:      drivers/hwmon/ltc2947-i2c.c
11651 F:      drivers/hwmon/ltc2947-spi.c
11652 F:      drivers/hwmon/ltc2947.h
11653
11654 LTC2983 IIO TEMPERATURE DRIVER
11655 M:      Nuno Sá <nuno.sa@analog.com>
11656 L:      linux-iio@vger.kernel.org
11657 S:      Supported
11658 W:      https://ez.analog.com/linux-software-drivers
11659 F:      Documentation/devicetree/bindings/iio/temperature/adi,ltc2983.yaml
11660 F:      drivers/iio/temperature/ltc2983.c
11661
11662 LTC4261 HARDWARE MONITOR DRIVER
11663 M:      Guenter Roeck <linux@roeck-us.net>
11664 L:      linux-hwmon@vger.kernel.org
11665 S:      Maintained
11666 F:      Documentation/hwmon/ltc4261.rst
11667 F:      drivers/hwmon/ltc4261.c
11668
11669 LTC4306 I2C MULTIPLEXER DRIVER
11670 M:      Michael Hennerich <michael.hennerich@analog.com>
11671 L:      linux-i2c@vger.kernel.org
11672 S:      Supported
11673 W:      https://ez.analog.com/linux-software-drivers
11674 F:      Documentation/devicetree/bindings/i2c/i2c-mux-ltc4306.txt
11675 F:      drivers/i2c/muxes/i2c-mux-ltc4306.c
11676
11677 LTP (Linux Test Project)
11678 M:      Mike Frysinger <vapier@gentoo.org>
11679 M:      Cyril Hrubis <chrubis@suse.cz>
11680 M:      Wanlong Gao <wanlong.gao@gmail.com>
11681 M:      Jan Stancek <jstancek@redhat.com>
11682 M:      Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com>
11683 M:      Alexey Kodanev <alexey.kodanev@oracle.com>
11684 L:      ltp@lists.linux.it (subscribers-only)
11685 S:      Maintained
11686 W:      http://linux-test-project.github.io/
11687 T:      git git://github.com/linux-test-project/ltp.git
11688
11689 LYNX 28G SERDES PHY DRIVER
11690 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
11691 L:      netdev@vger.kernel.org
11692 S:      Supported
11693 F:      Documentation/devicetree/bindings/phy/fsl,lynx-28g.yaml
11694 F:      drivers/phy/freescale/phy-fsl-lynx-28g.c
11695
11696 LYNX PCS MODULE
11697 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
11698 L:      netdev@vger.kernel.org
11699 S:      Supported
11700 F:      drivers/net/pcs/pcs-lynx.c
11701 F:      include/linux/pcs-lynx.h
11702
11703 M68K ARCHITECTURE
11704 M:      Geert Uytterhoeven <geert@linux-m68k.org>
11705 L:      linux-m68k@lists.linux-m68k.org
11706 S:      Maintained
11707 W:      http://www.linux-m68k.org/
11708 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
11709 F:      arch/m68k/
11710 F:      drivers/zorro/
11711
11712 M68K ON APPLE MACINTOSH
11713 M:      Joshua Thompson <funaho@jurai.org>
11714 L:      linux-m68k@lists.linux-m68k.org
11715 S:      Maintained
11716 W:      http://www.mac.linux-m68k.org/
11717 F:      arch/m68k/mac/
11718 F:      drivers/macintosh/adb-iop.c
11719 F:      drivers/macintosh/via-macii.c
11720
11721 M68K ON HP9000/300
11722 M:      Philip Blundell <philb@gnu.org>
11723 S:      Maintained
11724 W:      http://www.tazenda.demon.co.uk/phil/linux-hp
11725 F:      arch/m68k/hp300/
11726
11727 M88DS3103 MEDIA DRIVER
11728 M:      Antti Palosaari <crope@iki.fi>
11729 L:      linux-media@vger.kernel.org
11730 S:      Maintained
11731 W:      https://linuxtv.org
11732 W:      http://palosaari.fi/linux/
11733 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11734 T:      git git://linuxtv.org/anttip/media_tree.git
11735 F:      drivers/media/dvb-frontends/m88ds3103*
11736
11737 M88RS2000 MEDIA DRIVER
11738 M:      Malcolm Priestley <tvboxspy@gmail.com>
11739 L:      linux-media@vger.kernel.org
11740 S:      Maintained
11741 W:      https://linuxtv.org
11742 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11743 F:      drivers/media/dvb-frontends/m88rs2000*
11744
11745 MA901 MASTERKIT USB FM RADIO DRIVER
11746 M:      Alexey Klimov <klimov.linux@gmail.com>
11747 L:      linux-media@vger.kernel.org
11748 S:      Maintained
11749 T:      git git://linuxtv.org/media_tree.git
11750 F:      drivers/media/radio/radio-ma901.c
11751
11752 MAC80211
11753 M:      Johannes Berg <johannes@sipsolutions.net>
11754 L:      linux-wireless@vger.kernel.org
11755 S:      Maintained
11756 W:      https://wireless.wiki.kernel.org/
11757 Q:      https://patchwork.kernel.org/project/linux-wireless/list/
11758 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless.git
11759 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless-next.git
11760 F:      Documentation/networking/mac80211-injection.rst
11761 F:      Documentation/networking/mac80211_hwsim/mac80211_hwsim.rst
11762 F:      drivers/net/wireless/mac80211_hwsim.[ch]
11763 F:      include/net/mac80211.h
11764 F:      net/mac80211/
11765
11766 MAILBOX API
11767 M:      Jassi Brar <jassisinghbrar@gmail.com>
11768 L:      linux-kernel@vger.kernel.org
11769 S:      Maintained
11770 F:      drivers/mailbox/
11771 F:      include/linux/mailbox_client.h
11772 F:      include/linux/mailbox_controller.h
11773 F:      include/dt-bindings/mailbox/
11774 F:      Documentation/devicetree/bindings/mailbox/
11775
11776 MAILBOX ARM MHUv2
11777 M:      Viresh Kumar <viresh.kumar@linaro.org>
11778 M:      Tushar Khandelwal <Tushar.Khandelwal@arm.com>
11779 L:      linux-kernel@vger.kernel.org
11780 S:      Maintained
11781 F:      drivers/mailbox/arm_mhuv2.c
11782 F:      include/linux/mailbox/arm_mhuv2_message.h
11783 F:      Documentation/devicetree/bindings/mailbox/arm,mhuv2.yaml
11784
11785 MANAGEMENT COMPONENT TRANSPORT PROTOCOL (MCTP)
11786 M:      Jeremy Kerr <jk@codeconstruct.com.au>
11787 M:      Matt Johnston <matt@codeconstruct.com.au>
11788 L:      netdev@vger.kernel.org
11789 S:      Maintained
11790 F:      Documentation/networking/mctp.rst
11791 F:      drivers/net/mctp/
11792 F:      include/net/mctp.h
11793 F:      include/net/mctpdevice.h
11794 F:      include/net/netns/mctp.h
11795 F:      net/mctp/
11796
11797 MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
11798 M:      Michael Kerrisk <mtk.manpages@gmail.com>
11799 L:      linux-man@vger.kernel.org
11800 S:      Maintained
11801 W:      http://www.kernel.org/doc/man-pages
11802
11803 MARDUK (CREATOR CI40) DEVICE TREE SUPPORT
11804 M:      Rahul Bedarkar <rahulbedarkar89@gmail.com>
11805 L:      linux-mips@vger.kernel.org
11806 S:      Maintained
11807 F:      arch/mips/boot/dts/img/pistachio*
11808
11809 MARVELL 88E6XXX ETHERNET SWITCH FABRIC DRIVER
11810 M:      Andrew Lunn <andrew@lunn.ch>
11811 M:      Vivien Didelot <vivien.didelot@gmail.com>
11812 L:      netdev@vger.kernel.org
11813 S:      Maintained
11814 F:      Documentation/devicetree/bindings/net/dsa/marvell.txt
11815 F:      Documentation/networking/devlink/mv88e6xxx.rst
11816 F:      drivers/net/dsa/mv88e6xxx/
11817 F:      include/linux/dsa/mv88e6xxx.h
11818 F:      include/linux/platform_data/mv88e6xxx.h
11819
11820 MARVELL ARMADA 3700 PHY DRIVERS
11821 M:      Miquel Raynal <miquel.raynal@bootlin.com>
11822 S:      Maintained
11823 F:      Documentation/devicetree/bindings/phy/phy-mvebu-comphy.txt
11824 F:      Documentation/devicetree/bindings/phy/marvell,armada-3700-utmi-phy.yaml
11825 F:      drivers/phy/marvell/phy-mvebu-a3700-comphy.c
11826 F:      drivers/phy/marvell/phy-mvebu-a3700-utmi.c
11827
11828 MARVELL ARMADA 3700 SERIAL DRIVER
11829 M:      Pali Rohár <pali@kernel.org>
11830 S:      Maintained
11831 F:      Documentation/devicetree/bindings/clock/marvell,armada-3700-uart-clock.yaml
11832 F:      Documentation/devicetree/bindings/serial/mvebu-uart.txt
11833 F:      drivers/tty/serial/mvebu-uart.c
11834
11835 MARVELL ARMADA DRM SUPPORT
11836 M:      Russell King <linux@armlinux.org.uk>
11837 S:      Maintained
11838 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-devel
11839 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-fixes
11840 F:      Documentation/devicetree/bindings/display/armada/
11841 F:      drivers/gpu/drm/armada/
11842 F:      include/uapi/drm/armada_drm.h
11843
11844 MARVELL CRYPTO DRIVER
11845 M:      Boris Brezillon <bbrezillon@kernel.org>
11846 M:      Arnaud Ebalard <arno@natisbad.org>
11847 M:      Srujana Challa <schalla@marvell.com>
11848 L:      linux-crypto@vger.kernel.org
11849 S:      Maintained
11850 F:      drivers/crypto/marvell/
11851 F:      include/linux/soc/marvell/octeontx2/
11852
11853 MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
11854 M:      Mirko Lindner <mlindner@marvell.com>
11855 M:      Stephen Hemminger <stephen@networkplumber.org>
11856 L:      netdev@vger.kernel.org
11857 S:      Maintained
11858 F:      drivers/net/ethernet/marvell/sk*
11859
11860 MARVELL LIBERTAS WIRELESS DRIVER
11861 L:      libertas-dev@lists.infradead.org
11862 S:      Orphan
11863 F:      drivers/net/wireless/marvell/libertas/
11864
11865 MARVELL MACCHIATOBIN SUPPORT
11866 M:      Russell King <linux@armlinux.org.uk>
11867 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11868 S:      Maintained
11869 F:      arch/arm64/boot/dts/marvell/armada-8040-mcbin.dts
11870
11871 MARVELL MV643XX ETHERNET DRIVER
11872 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
11873 L:      netdev@vger.kernel.org
11874 S:      Maintained
11875 F:      drivers/net/ethernet/marvell/mv643xx_eth.*
11876 F:      include/linux/mv643xx.h
11877
11878 MARVELL MV88X3310 PHY DRIVER
11879 M:      Russell King <linux@armlinux.org.uk>
11880 M:      Marek Behún <kabel@kernel.org>
11881 L:      netdev@vger.kernel.org
11882 S:      Maintained
11883 F:      drivers/net/phy/marvell10g.c
11884
11885 MARVELL MVEBU THERMAL DRIVER
11886 M:      Miquel Raynal <miquel.raynal@bootlin.com>
11887 S:      Maintained
11888 F:      drivers/thermal/armada_thermal.c
11889
11890 MARVELL MVNETA ETHERNET DRIVER
11891 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
11892 L:      netdev@vger.kernel.org
11893 S:      Maintained
11894 F:      drivers/net/ethernet/marvell/mvneta.*
11895
11896 MARVELL MVPP2 ETHERNET DRIVER
11897 M:      Marcin Wojtas <mw@semihalf.com>
11898 M:      Russell King <linux@armlinux.org.uk>
11899 L:      netdev@vger.kernel.org
11900 S:      Maintained
11901 F:      Documentation/devicetree/bindings/net/marvell-pp2.txt
11902 F:      drivers/net/ethernet/marvell/mvpp2/
11903
11904 MARVELL MWIFIEX WIRELESS DRIVER
11905 M:      Amitkumar Karwar <amitkarwar@gmail.com>
11906 M:      Ganapathi Bhat <ganapathi017@gmail.com>
11907 M:      Sharvari Harisangam <sharvari.harisangam@nxp.com>
11908 M:      Xinming Hu <huxinming820@gmail.com>
11909 L:      linux-wireless@vger.kernel.org
11910 S:      Maintained
11911 F:      drivers/net/wireless/marvell/mwifiex/
11912
11913 MARVELL MWL8K WIRELESS DRIVER
11914 M:      Lennert Buytenhek <buytenh@wantstofly.org>
11915 L:      linux-wireless@vger.kernel.org
11916 S:      Odd Fixes
11917 F:      drivers/net/wireless/marvell/mwl8k.c
11918
11919 MARVELL NAND CONTROLLER DRIVER
11920 M:      Miquel Raynal <miquel.raynal@bootlin.com>
11921 L:      linux-mtd@lists.infradead.org
11922 S:      Maintained
11923 F:      Documentation/devicetree/bindings/mtd/marvell-nand.txt
11924 F:      drivers/mtd/nand/raw/marvell_nand.c
11925
11926 MARVELL OCTEONTX2 PHYSICAL FUNCTION DRIVER
11927 M:      Sunil Goutham <sgoutham@marvell.com>
11928 M:      Geetha sowjanya <gakula@marvell.com>
11929 M:      Subbaraya Sundeep <sbhatta@marvell.com>
11930 M:      hariprasad <hkelam@marvell.com>
11931 L:      netdev@vger.kernel.org
11932 S:      Supported
11933 F:      drivers/net/ethernet/marvell/octeontx2/nic/
11934 F:      include/linux/soc/marvell/octeontx2/
11935
11936 MARVELL OCTEONTX2 RVU ADMIN FUNCTION DRIVER
11937 M:      Sunil Goutham <sgoutham@marvell.com>
11938 M:      Linu Cherian <lcherian@marvell.com>
11939 M:      Geetha sowjanya <gakula@marvell.com>
11940 M:      Jerin Jacob <jerinj@marvell.com>
11941 M:      hariprasad <hkelam@marvell.com>
11942 M:      Subbaraya Sundeep <sbhatta@marvell.com>
11943 L:      netdev@vger.kernel.org
11944 S:      Supported
11945 F:      Documentation/networking/device_drivers/ethernet/marvell/octeontx2.rst
11946 F:      drivers/net/ethernet/marvell/octeontx2/af/
11947
11948 MARVELL PRESTERA ETHERNET SWITCH DRIVER
11949 M:      Taras Chornyi <tchornyi@marvell.com>
11950 S:      Supported
11951 W:      https://github.com/Marvell-switching/switchdev-prestera
11952 F:      drivers/net/ethernet/marvell/prestera/
11953
11954 MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
11955 M:      Nicolas Pitre <nico@fluxnic.net>
11956 S:      Odd Fixes
11957 F:      drivers/mmc/host/mvsdio.*
11958
11959 MARVELL USB MDIO CONTROLLER DRIVER
11960 M:      Tobias Waldekranz <tobias@waldekranz.com>
11961 L:      netdev@vger.kernel.org
11962 S:      Maintained
11963 F:      Documentation/devicetree/bindings/net/marvell,mvusb.yaml
11964 F:      drivers/net/mdio/mdio-mvusb.c
11965
11966 MARVELL XENON MMC/SD/SDIO HOST CONTROLLER DRIVER
11967 M:      Hu Ziji <huziji@marvell.com>
11968 L:      linux-mmc@vger.kernel.org
11969 S:      Supported
11970 F:      Documentation/devicetree/bindings/mmc/marvell,xenon-sdhci.yaml
11971 F:      drivers/mmc/host/sdhci-xenon*
11972
11973 MARVELL OCTEON ENDPOINT DRIVER
11974 M:      Veerasenareddy Burru <vburru@marvell.com>
11975 M:      Abhijit Ayarekar <aayarekar@marvell.com>
11976 L:      netdev@vger.kernel.org
11977 S:      Supported
11978 F:      drivers/net/ethernet/marvell/octeon_ep
11979
11980 MATROX FRAMEBUFFER DRIVER
11981 L:      linux-fbdev@vger.kernel.org
11982 S:      Orphan
11983 F:      drivers/video/fbdev/matrox/matroxfb_*
11984 F:      include/uapi/linux/matroxfb.h
11985
11986 MAX15301 DRIVER
11987 M:      Daniel Nilsson <daniel.nilsson@flex.com>
11988 L:      linux-hwmon@vger.kernel.org
11989 S:      Maintained
11990 F:      Documentation/hwmon/max15301.rst
11991 F:      drivers/hwmon/pmbus/max15301.c
11992
11993 MAX16065 HARDWARE MONITOR DRIVER
11994 M:      Guenter Roeck <linux@roeck-us.net>
11995 L:      linux-hwmon@vger.kernel.org
11996 S:      Maintained
11997 F:      Documentation/hwmon/max16065.rst
11998 F:      drivers/hwmon/max16065.c
11999
12000 MAX2175 SDR TUNER DRIVER
12001 M:      Ramesh Shanmugasundaram <rashanmu@gmail.com>
12002 L:      linux-media@vger.kernel.org
12003 S:      Maintained
12004 T:      git git://linuxtv.org/media_tree.git
12005 F:      Documentation/devicetree/bindings/media/i2c/max2175.txt
12006 F:      Documentation/userspace-api/media/drivers/max2175.rst
12007 F:      drivers/media/i2c/max2175*
12008 F:      include/uapi/linux/max2175.h
12009
12010 MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
12011 L:      linux-hwmon@vger.kernel.org
12012 S:      Orphan
12013 F:      Documentation/hwmon/max6650.rst
12014 F:      drivers/hwmon/max6650.c
12015
12016 MAX6697 HARDWARE MONITOR DRIVER
12017 M:      Guenter Roeck <linux@roeck-us.net>
12018 L:      linux-hwmon@vger.kernel.org
12019 S:      Maintained
12020 F:      Documentation/devicetree/bindings/hwmon/max6697.txt
12021 F:      Documentation/hwmon/max6697.rst
12022 F:      drivers/hwmon/max6697.c
12023 F:      include/linux/platform_data/max6697.h
12024
12025 MAX9286 QUAD GMSL DESERIALIZER DRIVER
12026 M:      Jacopo Mondi <jacopo+renesas@jmondi.org>
12027 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
12028 M:      Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
12029 M:      Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
12030 L:      linux-media@vger.kernel.org
12031 S:      Maintained
12032 F:      Documentation/devicetree/bindings/media/i2c/maxim,max9286.yaml
12033 F:      drivers/media/i2c/max9286.c
12034
12035 MAX96712 QUAD GMSL2 DESERIALIZER DRIVER
12036 M:      Niklas Söderlund <niklas.soderlund@ragnatech.se>
12037 L:      linux-media@vger.kernel.org
12038 S:      Maintained
12039 F:      drivers/staging/media/max96712/max96712.c
12040
12041 MAX9860 MONO AUDIO VOICE CODEC DRIVER
12042 M:      Peter Rosin <peda@axentia.se>
12043 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12044 S:      Maintained
12045 F:      Documentation/devicetree/bindings/sound/max9860.txt
12046 F:      sound/soc/codecs/max9860.*
12047
12048 MAXBOTIX ULTRASONIC RANGER IIO DRIVER
12049 M:      Andreas Klinger <ak@it-klinger.de>
12050 L:      linux-iio@vger.kernel.org
12051 S:      Maintained
12052 F:      Documentation/devicetree/bindings/iio/proximity/maxbotix,mb1232.yaml
12053 F:      drivers/iio/proximity/mb1232.c
12054
12055 MAXIM MAX17040 FAMILY FUEL GAUGE DRIVERS
12056 R:      Iskren Chernev <iskren.chernev@gmail.com>
12057 R:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
12058 R:      Marek Szyprowski <m.szyprowski@samsung.com>
12059 R:      Matheus Castello <matheus@castello.eng.br>
12060 L:      linux-pm@vger.kernel.org
12061 S:      Maintained
12062 F:      Documentation/devicetree/bindings/power/supply/maxim,max17040.yaml
12063 F:      drivers/power/supply/max17040_battery.c
12064
12065 MAXIM MAX17042 FAMILY FUEL GAUGE DRIVERS
12066 R:      Hans de Goede <hdegoede@redhat.com>
12067 R:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
12068 R:      Marek Szyprowski <m.szyprowski@samsung.com>
12069 R:      Sebastian Krzyszkowiak <sebastian.krzyszkowiak@puri.sm>
12070 R:      Purism Kernel Team <kernel@puri.sm>
12071 L:      linux-pm@vger.kernel.org
12072 S:      Maintained
12073 F:      Documentation/devicetree/bindings/power/supply/maxim,max17042.yaml
12074 F:      drivers/power/supply/max17042_battery.c
12075
12076 MAXIM MAX20086 CAMERA POWER PROTECTOR DRIVER
12077 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12078 L:      linux-kernel@vger.kernel.org
12079 S:      Maintained
12080 F:      Documentation/devicetree/bindings/regulator/maxim,max20086.yaml
12081 F:      drivers/regulator/max20086-regulator.c
12082
12083 MAXIM MAX77650 PMIC MFD DRIVER
12084 M:      Bartosz Golaszewski <brgl@bgdev.pl>
12085 L:      linux-kernel@vger.kernel.org
12086 S:      Maintained
12087 F:      Documentation/devicetree/bindings/*/*max77650.yaml
12088 F:      Documentation/devicetree/bindings/*/max77650*.yaml
12089 F:      drivers/gpio/gpio-max77650.c
12090 F:      drivers/input/misc/max77650-onkey.c
12091 F:      drivers/leds/leds-max77650.c
12092 F:      drivers/mfd/max77650.c
12093 F:      drivers/power/supply/max77650-charger.c
12094 F:      drivers/regulator/max77650-regulator.c
12095 F:      include/linux/mfd/max77650.h
12096
12097 MAXIM MAX77714 PMIC MFD DRIVER
12098 M:      Luca Ceresoli <luca@lucaceresoli.net>
12099 S:      Maintained
12100 F:      Documentation/devicetree/bindings/mfd/maxim,max77714.yaml
12101 F:      drivers/mfd/max77714.c
12102 F:      include/linux/mfd/max77714.h
12103
12104 MAXIM MAX77802 PMIC REGULATOR DEVICE DRIVER
12105 M:      Javier Martinez Canillas <javier@dowhile0.org>
12106 L:      linux-kernel@vger.kernel.org
12107 S:      Supported
12108 F:      Documentation/devicetree/bindings/*/*max77802.yaml
12109 F:      drivers/regulator/max77802-regulator.c
12110 F:      include/dt-bindings/*/*max77802.h
12111
12112 MAXIM MAX77976 BATTERY CHARGER
12113 M:      Luca Ceresoli <luca@lucaceresoli.net>
12114 S:      Supported
12115 F:      Documentation/devicetree/bindings/power/supply/maxim,max77976.yaml
12116 F:      drivers/power/supply/max77976_charger.c
12117
12118 MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS
12119 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
12120 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
12121 L:      linux-pm@vger.kernel.org
12122 S:      Supported
12123 B:      mailto:linux-samsung-soc@vger.kernel.org
12124 F:      Documentation/devicetree/bindings/power/supply/maxim,max14577.yaml
12125 F:      Documentation/devicetree/bindings/power/supply/maxim,max77693.yaml
12126 F:      drivers/power/supply/max14577_charger.c
12127 F:      drivers/power/supply/max77693_charger.c
12128
12129 MAXIM PMIC AND MUIC DRIVERS FOR EXYNOS BASED BOARDS
12130 M:      Chanwoo Choi <cw00.choi@samsung.com>
12131 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
12132 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
12133 L:      linux-kernel@vger.kernel.org
12134 S:      Supported
12135 B:      mailto:linux-samsung-soc@vger.kernel.org
12136 F:      Documentation/devicetree/bindings/*/maxim,max14577.yaml
12137 F:      Documentation/devicetree/bindings/*/maxim,max77686.yaml
12138 F:      Documentation/devicetree/bindings/*/maxim,max77693.yaml
12139 F:      Documentation/devicetree/bindings/*/maxim,max77843.yaml
12140 F:      Documentation/devicetree/bindings/clock/maxim,max77686.txt
12141 F:      Documentation/devicetree/bindings/mfd/max77693.txt
12142 F:      drivers/*/*max77843.c
12143 F:      drivers/*/max14577*.c
12144 F:      drivers/*/max77686*.c
12145 F:      drivers/*/max77693*.c
12146 F:      drivers/clk/clk-max77686.c
12147 F:      drivers/extcon/extcon-max14577.c
12148 F:      drivers/extcon/extcon-max77693.c
12149 F:      drivers/rtc/rtc-max77686.c
12150 F:      include/linux/mfd/max14577*.h
12151 F:      include/linux/mfd/max77686*.h
12152 F:      include/linux/mfd/max77693*.h
12153
12154 MAXIRADIO FM RADIO RECEIVER DRIVER
12155 M:      Hans Verkuil <hverkuil@xs4all.nl>
12156 L:      linux-media@vger.kernel.org
12157 S:      Maintained
12158 W:      https://linuxtv.org
12159 T:      git git://linuxtv.org/media_tree.git
12160 F:      drivers/media/radio/radio-maxiradio*
12161
12162 MAXLINEAR ETHERNET PHY DRIVER
12163 M:      Xu Liang <lxu@maxlinear.com>
12164 L:      netdev@vger.kernel.org
12165 S:      Supported
12166 F:      drivers/net/phy/mxl-gpy.c
12167
12168 MCBA MICROCHIP CAN BUS ANALYZER TOOL DRIVER
12169 R:      Yasushi SHOJI <yashi@spacecubics.com>
12170 L:      linux-can@vger.kernel.org
12171 S:      Maintained
12172 F:      drivers/net/can/usb/mcba_usb.c
12173
12174 MCAN MMIO DEVICE DRIVER
12175 M:      Chandrasekar Ramakrishnan <rcsekar@samsung.com>
12176 L:      linux-can@vger.kernel.org
12177 S:      Maintained
12178 F:      Documentation/devicetree/bindings/net/can/bosch,m_can.yaml
12179 F:      drivers/net/can/m_can/m_can.c
12180 F:      drivers/net/can/m_can/m_can.h
12181 F:      drivers/net/can/m_can/m_can_platform.c
12182
12183 MCP2221A MICROCHIP USB-HID TO I2C BRIDGE DRIVER
12184 M:      Rishi Gupta <gupt21@gmail.com>
12185 L:      linux-i2c@vger.kernel.org
12186 L:      linux-input@vger.kernel.org
12187 S:      Maintained
12188 F:      drivers/hid/hid-mcp2221.c
12189
12190 MCP251XFD SPI-CAN NETWORK DRIVER
12191 M:      Marc Kleine-Budde <mkl@pengutronix.de>
12192 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
12193 R:      Thomas Kopp <thomas.kopp@microchip.com>
12194 L:      linux-can@vger.kernel.org
12195 S:      Maintained
12196 F:      Documentation/devicetree/bindings/net/can/microchip,mcp251xfd.yaml
12197 F:      drivers/net/can/spi/mcp251xfd/
12198
12199 MCP4018 AND MCP4531 MICROCHIP DIGITAL POTENTIOMETER DRIVERS
12200 M:      Peter Rosin <peda@axentia.se>
12201 L:      linux-iio@vger.kernel.org
12202 S:      Maintained
12203 F:      Documentation/ABI/testing/sysfs-bus-iio-potentiometer-mcp4531
12204 F:      drivers/iio/potentiometer/mcp4018.c
12205 F:      drivers/iio/potentiometer/mcp4531.c
12206
12207 MCR20A IEEE-802.15.4 RADIO DRIVER
12208 M:      Xue Liu <liuxuenetmail@gmail.com>
12209 L:      linux-wpan@vger.kernel.org
12210 S:      Maintained
12211 W:      https://github.com/xueliu/mcr20a-linux
12212 F:      Documentation/devicetree/bindings/net/ieee802154/mcr20a.txt
12213 F:      drivers/net/ieee802154/mcr20a.c
12214 F:      drivers/net/ieee802154/mcr20a.h
12215
12216 MEASUREMENT COMPUTING CIO-DAC IIO DRIVER
12217 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
12218 L:      linux-iio@vger.kernel.org
12219 S:      Maintained
12220 F:      drivers/iio/dac/cio-dac.c
12221
12222 MEDIA CONTROLLER FRAMEWORK
12223 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
12224 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12225 L:      linux-media@vger.kernel.org
12226 S:      Supported
12227 W:      https://www.linuxtv.org
12228 T:      git git://linuxtv.org/media_tree.git
12229 F:      drivers/media/mc/
12230 F:      include/media/media-*.h
12231 F:      include/uapi/linux/media.h
12232
12233 MEDIA DRIVER FOR FREESCALE IMX PXP
12234 M:      Philipp Zabel <p.zabel@pengutronix.de>
12235 L:      linux-media@vger.kernel.org
12236 S:      Maintained
12237 T:      git git://linuxtv.org/media_tree.git
12238 F:      drivers/media/platform/nxp/imx-pxp.[ch]
12239
12240 MEDIA DRIVERS FOR ASCOT2E
12241 M:      Sergey Kozlov <serjk@netup.ru>
12242 M:      Abylay Ospan <aospan@netup.ru>
12243 L:      linux-media@vger.kernel.org
12244 S:      Supported
12245 W:      https://linuxtv.org
12246 W:      http://netup.tv/
12247 T:      git git://linuxtv.org/media_tree.git
12248 F:      drivers/media/dvb-frontends/ascot2e*
12249
12250 MEDIA DRIVERS FOR CXD2099AR CI CONTROLLERS
12251 M:      Jasmin Jessich <jasmin@anw.at>
12252 L:      linux-media@vger.kernel.org
12253 S:      Maintained
12254 W:      https://linuxtv.org
12255 T:      git git://linuxtv.org/media_tree.git
12256 F:      drivers/media/dvb-frontends/cxd2099*
12257
12258 MEDIA DRIVERS FOR CXD2841ER
12259 M:      Sergey Kozlov <serjk@netup.ru>
12260 M:      Abylay Ospan <aospan@netup.ru>
12261 L:      linux-media@vger.kernel.org
12262 S:      Supported
12263 W:      https://linuxtv.org
12264 W:      http://netup.tv/
12265 T:      git git://linuxtv.org/media_tree.git
12266 F:      drivers/media/dvb-frontends/cxd2841er*
12267
12268 MEDIA DRIVERS FOR CXD2880
12269 M:      Yasunari Takiguchi <Yasunari.Takiguchi@sony.com>
12270 L:      linux-media@vger.kernel.org
12271 S:      Supported
12272 W:      http://linuxtv.org/
12273 T:      git git://linuxtv.org/media_tree.git
12274 F:      drivers/media/dvb-frontends/cxd2880/*
12275 F:      drivers/media/spi/cxd2880*
12276
12277 MEDIA DRIVERS FOR DIGITAL DEVICES PCIE DEVICES
12278 L:      linux-media@vger.kernel.org
12279 S:      Orphan
12280 W:      https://linuxtv.org
12281 T:      git git://linuxtv.org/media_tree.git
12282 F:      drivers/media/pci/ddbridge/*
12283
12284 MEDIA DRIVERS FOR FREESCALE IMX
12285 M:      Steve Longerbeam <slongerbeam@gmail.com>
12286 M:      Philipp Zabel <p.zabel@pengutronix.de>
12287 L:      linux-media@vger.kernel.org
12288 S:      Maintained
12289 T:      git git://linuxtv.org/media_tree.git
12290 F:      Documentation/admin-guide/media/imx.rst
12291 F:      Documentation/devicetree/bindings/media/imx.txt
12292 F:      drivers/staging/media/imx/
12293 F:      include/linux/imx-media.h
12294 F:      include/media/imx.h
12295
12296 MEDIA DRIVERS FOR FREESCALE IMX7
12297 M:      Rui Miguel Silva <rmfrfs@gmail.com>
12298 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12299 L:      linux-media@vger.kernel.org
12300 S:      Maintained
12301 T:      git git://linuxtv.org/media_tree.git
12302 F:      Documentation/admin-guide/media/imx7.rst
12303 F:      Documentation/devicetree/bindings/media/nxp,imx-mipi-csi2.yaml
12304 F:      Documentation/devicetree/bindings/media/nxp,imx7-csi.yaml
12305 F:      drivers/media/platform/nxp/imx-mipi-csis.c
12306 F:      drivers/staging/media/imx/imx7-media-csi.c
12307
12308 MEDIA DRIVERS FOR HELENE
12309 M:      Abylay Ospan <aospan@netup.ru>
12310 L:      linux-media@vger.kernel.org
12311 S:      Supported
12312 W:      https://linuxtv.org
12313 W:      http://netup.tv/
12314 T:      git git://linuxtv.org/media_tree.git
12315 F:      drivers/media/dvb-frontends/helene*
12316
12317 MEDIA DRIVERS FOR HORUS3A
12318 M:      Sergey Kozlov <serjk@netup.ru>
12319 M:      Abylay Ospan <aospan@netup.ru>
12320 L:      linux-media@vger.kernel.org
12321 S:      Supported
12322 W:      https://linuxtv.org
12323 W:      http://netup.tv/
12324 T:      git git://linuxtv.org/media_tree.git
12325 F:      drivers/media/dvb-frontends/horus3a*
12326
12327 MEDIA DRIVERS FOR LNBH25
12328 M:      Sergey Kozlov <serjk@netup.ru>
12329 M:      Abylay Ospan <aospan@netup.ru>
12330 L:      linux-media@vger.kernel.org
12331 S:      Supported
12332 W:      https://linuxtv.org
12333 W:      http://netup.tv/
12334 T:      git git://linuxtv.org/media_tree.git
12335 F:      drivers/media/dvb-frontends/lnbh25*
12336
12337 MEDIA DRIVERS FOR MXL5XX TUNER DEMODULATORS
12338 L:      linux-media@vger.kernel.org
12339 S:      Orphan
12340 W:      https://linuxtv.org
12341 T:      git git://linuxtv.org/media_tree.git
12342 F:      drivers/media/dvb-frontends/mxl5xx*
12343
12344 MEDIA DRIVERS FOR NETUP PCI UNIVERSAL DVB devices
12345 M:      Sergey Kozlov <serjk@netup.ru>
12346 M:      Abylay Ospan <aospan@netup.ru>
12347 L:      linux-media@vger.kernel.org
12348 S:      Supported
12349 W:      https://linuxtv.org
12350 W:      http://netup.tv/
12351 T:      git git://linuxtv.org/media_tree.git
12352 F:      drivers/media/pci/netup_unidvb/*
12353
12354 MEDIA DRIVERS FOR NVIDIA TEGRA - VDE
12355 M:      Dmitry Osipenko <digetx@gmail.com>
12356 L:      linux-media@vger.kernel.org
12357 L:      linux-tegra@vger.kernel.org
12358 S:      Maintained
12359 T:      git git://linuxtv.org/media_tree.git
12360 F:      Documentation/devicetree/bindings/media/nvidia,tegra-vde.yaml
12361 F:      drivers/media/platform/nvidia/tegra-vde/
12362
12363 MEDIA DRIVERS FOR RENESAS - CEU
12364 M:      Jacopo Mondi <jacopo@jmondi.org>
12365 L:      linux-media@vger.kernel.org
12366 L:      linux-renesas-soc@vger.kernel.org
12367 S:      Supported
12368 T:      git git://linuxtv.org/media_tree.git
12369 F:      Documentation/devicetree/bindings/media/renesas,ceu.yaml
12370 F:      drivers/media/platform/renesas/renesas-ceu.c
12371 F:      include/media/drv-intf/renesas-ceu.h
12372
12373 MEDIA DRIVERS FOR RENESAS - DRIF
12374 M:      Fabrizio Castro <fabrizio.castro.jz@renesas.com>
12375 L:      linux-media@vger.kernel.org
12376 L:      linux-renesas-soc@vger.kernel.org
12377 S:      Supported
12378 T:      git git://linuxtv.org/media_tree.git
12379 F:      Documentation/devicetree/bindings/media/renesas,drif.yaml
12380 F:      drivers/media/platform/renesas/rcar_drif.c
12381
12382 MEDIA DRIVERS FOR RENESAS - FCP
12383 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12384 L:      linux-media@vger.kernel.org
12385 L:      linux-renesas-soc@vger.kernel.org
12386 S:      Supported
12387 T:      git git://linuxtv.org/media_tree.git
12388 F:      Documentation/devicetree/bindings/media/renesas,fcp.yaml
12389 F:      drivers/media/platform/renesas/rcar-fcp.c
12390 F:      include/media/rcar-fcp.h
12391
12392 MEDIA DRIVERS FOR RENESAS - FDP1
12393 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
12394 L:      linux-media@vger.kernel.org
12395 L:      linux-renesas-soc@vger.kernel.org
12396 S:      Supported
12397 T:      git git://linuxtv.org/media_tree.git
12398 F:      Documentation/devicetree/bindings/media/renesas,fdp1.yaml
12399 F:      drivers/media/platform/renesas/rcar_fdp1.c
12400
12401 MEDIA DRIVERS FOR RENESAS - VIN
12402 M:      Niklas Söderlund <niklas.soderlund@ragnatech.se>
12403 L:      linux-media@vger.kernel.org
12404 L:      linux-renesas-soc@vger.kernel.org
12405 S:      Supported
12406 T:      git git://linuxtv.org/media_tree.git
12407 F:      Documentation/devicetree/bindings/media/renesas,csi2.yaml
12408 F:      Documentation/devicetree/bindings/media/renesas,isp.yaml
12409 F:      Documentation/devicetree/bindings/media/renesas,vin.yaml
12410 F:      drivers/media/platform/renesas/rcar-isp.c
12411 F:      drivers/media/platform/renesas/rcar-vin/
12412
12413 MEDIA DRIVERS FOR RENESAS - VSP1
12414 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12415 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
12416 L:      linux-media@vger.kernel.org
12417 L:      linux-renesas-soc@vger.kernel.org
12418 S:      Supported
12419 T:      git git://linuxtv.org/media_tree.git
12420 F:      Documentation/devicetree/bindings/media/renesas,vsp1.yaml
12421 F:      drivers/media/platform/renesas/vsp1/
12422
12423 MEDIA DRIVERS FOR ST STV0910 DEMODULATOR ICs
12424 L:      linux-media@vger.kernel.org
12425 S:      Orphan
12426 W:      https://linuxtv.org
12427 T:      git git://linuxtv.org/media_tree.git
12428 F:      drivers/media/dvb-frontends/stv0910*
12429
12430 MEDIA DRIVERS FOR ST STV6111 TUNER ICs
12431 L:      linux-media@vger.kernel.org
12432 S:      Orphan
12433 W:      https://linuxtv.org
12434 T:      git git://linuxtv.org/media_tree.git
12435 F:      drivers/media/dvb-frontends/stv6111*
12436
12437 MEDIA DRIVERS FOR STM32 - DCMI
12438 M:      Hugues Fruchet <hugues.fruchet@foss.st.com>
12439 L:      linux-media@vger.kernel.org
12440 S:      Supported
12441 T:      git git://linuxtv.org/media_tree.git
12442 F:      Documentation/devicetree/bindings/media/st,stm32-dcmi.yaml
12443 F:      drivers/media/platform/st/stm32/stm32-dcmi.c
12444
12445 MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
12446 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
12447 L:      linux-media@vger.kernel.org
12448 S:      Maintained
12449 W:      https://linuxtv.org
12450 Q:      http://patchwork.kernel.org/project/linux-media/list/
12451 T:      git git://linuxtv.org/media_tree.git
12452 F:      Documentation/admin-guide/media/
12453 F:      Documentation/devicetree/bindings/media/
12454 F:      Documentation/driver-api/media/
12455 F:      Documentation/userspace-api/media/
12456 F:      drivers/media/
12457 F:      drivers/staging/media/
12458 F:      include/dt-bindings/media/
12459 F:      include/linux/platform_data/media/
12460 F:      include/media/
12461 F:      include/uapi/linux/dvb/
12462 F:      include/uapi/linux/ivtv*
12463 F:      include/uapi/linux/media.h
12464 F:      include/uapi/linux/meye.h
12465 F:      include/uapi/linux/uvcvideo.h
12466 F:      include/uapi/linux/v4l2-*
12467 F:      include/uapi/linux/videodev2.h
12468
12469 MEDIATEK BLUETOOTH DRIVER
12470 M:      Sean Wang <sean.wang@mediatek.com>
12471 L:      linux-bluetooth@vger.kernel.org
12472 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
12473 S:      Maintained
12474 F:      Documentation/devicetree/bindings/net/mediatek-bluetooth.txt
12475 F:      drivers/bluetooth/btmtkuart.c
12476
12477 MEDIATEK BOARD LEVEL SHUTDOWN DRIVERS
12478 M:      Sean Wang <sean.wang@mediatek.com>
12479 L:      linux-pm@vger.kernel.org
12480 S:      Maintained
12481 F:      Documentation/devicetree/bindings/power/reset/mt6323-poweroff.txt
12482 F:      drivers/power/reset/mt6323-poweroff.c
12483
12484 MEDIATEK CIR DRIVER
12485 M:      Sean Wang <sean.wang@mediatek.com>
12486 S:      Maintained
12487 F:      drivers/media/rc/mtk-cir.c
12488
12489 MEDIATEK DMA DRIVER
12490 M:      Sean Wang <sean.wang@mediatek.com>
12491 L:      dmaengine@vger.kernel.org
12492 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12493 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
12494 S:      Maintained
12495 F:      Documentation/devicetree/bindings/dma/mtk-*
12496 F:      drivers/dma/mediatek/
12497
12498 MEDIATEK ETHERNET DRIVER
12499 M:      Felix Fietkau <nbd@nbd.name>
12500 M:      John Crispin <john@phrozen.org>
12501 M:      Sean Wang <sean.wang@mediatek.com>
12502 M:      Mark Lee <Mark-MC.Lee@mediatek.com>
12503 L:      netdev@vger.kernel.org
12504 S:      Maintained
12505 F:      drivers/net/ethernet/mediatek/
12506
12507 MEDIATEK I2C CONTROLLER DRIVER
12508 M:      Qii Wang <qii.wang@mediatek.com>
12509 L:      linux-i2c@vger.kernel.org
12510 S:      Maintained
12511 F:      Documentation/devicetree/bindings/i2c/i2c-mt65xx.yaml
12512 F:      drivers/i2c/busses/i2c-mt65xx.c
12513
12514 MEDIATEK IOMMU DRIVER
12515 M:      Yong Wu <yong.wu@mediatek.com>
12516 L:      iommu@lists.linux-foundation.org
12517 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
12518 S:      Supported
12519 F:      Documentation/devicetree/bindings/iommu/mediatek*
12520 F:      drivers/iommu/mtk_iommu*
12521 F:      include/dt-bindings/memory/mt*-port.h
12522
12523 MEDIATEK JPEG DRIVER
12524 M:      Bin Liu <bin.liu@mediatek.com>
12525 S:      Supported
12526 F:      Documentation/devicetree/bindings/media/mediatek-jpeg-*.yaml
12527 F:      drivers/media/platform/mediatek/jpeg/
12528
12529 MEDIATEK MDP DRIVER
12530 M:      Minghsiu Tsai <minghsiu.tsai@mediatek.com>
12531 M:      Houlong Wei <houlong.wei@mediatek.com>
12532 M:      Andrew-CT Chen <andrew-ct.chen@mediatek.com>
12533 S:      Supported
12534 F:      Documentation/devicetree/bindings/media/mediatek-mdp.txt
12535 F:      drivers/media/platform/mediatek/mdp/
12536 F:      drivers/media/platform/mediatek/vpu/
12537
12538 MEDIATEK MEDIA DRIVER
12539 M:      Tiffany Lin <tiffany.lin@mediatek.com>
12540 M:      Andrew-CT Chen <andrew-ct.chen@mediatek.com>
12541 M:      Yunfei Dong <yunfei.dong@mediatek.com>
12542 S:      Supported
12543 F:      Documentation/devicetree/bindings/media/mediatek,vcodec*.yaml
12544 F:      Documentation/devicetree/bindings/media/mediatek-vpu.txt
12545 F:      drivers/media/platform/mediatek/vcodec/
12546 F:      drivers/media/platform/mediatek/vpu/
12547
12548 MEDIATEK MMC/SD/SDIO DRIVER
12549 M:      Chaotian Jing <chaotian.jing@mediatek.com>
12550 S:      Maintained
12551 F:      Documentation/devicetree/bindings/mmc/mtk-sd.yaml
12552 F:      drivers/mmc/host/mtk-sd.c
12553
12554 MEDIATEK MT76 WIRELESS LAN DRIVER
12555 M:      Felix Fietkau <nbd@nbd.name>
12556 M:      Lorenzo Bianconi <lorenzo@kernel.org>
12557 M:      Ryder Lee <ryder.lee@mediatek.com>
12558 R:      Shayne Chen <shayne.chen@mediatek.com>
12559 R:      Sean Wang <sean.wang@mediatek.com>
12560 L:      linux-wireless@vger.kernel.org
12561 S:      Maintained
12562 F:      Documentation/devicetree/bindings/net/wireless/mediatek,mt76.yaml
12563 F:      drivers/net/wireless/mediatek/mt76/
12564
12565 MEDIATEK MT7601U WIRELESS LAN DRIVER
12566 M:      Jakub Kicinski <kubakici@wp.pl>
12567 L:      linux-wireless@vger.kernel.org
12568 S:      Maintained
12569 F:      drivers/net/wireless/mediatek/mt7601u/
12570
12571 MEDIATEK MT7621 CLOCK DRIVER
12572 M:      Sergio Paracuellos <sergio.paracuellos@gmail.com>
12573 S:      Maintained
12574 F:      Documentation/devicetree/bindings/clock/mediatek,mt7621-sysc.yaml
12575 F:      drivers/clk/ralink/clk-mt7621.c
12576
12577 MEDIATEK MT7621/28/88 I2C DRIVER
12578 M:      Stefan Roese <sr@denx.de>
12579 L:      linux-i2c@vger.kernel.org
12580 S:      Maintained
12581 F:      Documentation/devicetree/bindings/i2c/i2c-mt7621.txt
12582 F:      drivers/i2c/busses/i2c-mt7621.c
12583
12584 MEDIATEK MT7621 PCIE CONTROLLER DRIVER
12585 M:      Sergio Paracuellos <sergio.paracuellos@gmail.com>
12586 S:      Maintained
12587 F:      Documentation/devicetree/bindings/pci/mediatek,mt7621-pcie.yaml
12588 F:      drivers/pci/controller/pcie-mt7621.c
12589
12590 MEDIATEK MT7621 PHY PCI DRIVER
12591 M:      Sergio Paracuellos <sergio.paracuellos@gmail.com>
12592 S:      Maintained
12593 F:      Documentation/devicetree/bindings/phy/mediatek,mt7621-pci-phy.yaml
12594 F:      drivers/phy/ralink/phy-mt7621-pci.c
12595
12596 MEDIATEK NAND CONTROLLER DRIVER
12597 L:      linux-mtd@lists.infradead.org
12598 S:      Orphan
12599 F:      Documentation/devicetree/bindings/mtd/mtk-nand.txt
12600 F:      drivers/mtd/nand/raw/mtk_*
12601
12602 MEDIATEK PMIC LED DRIVER
12603 M:      Sean Wang <sean.wang@mediatek.com>
12604 S:      Maintained
12605 F:      Documentation/devicetree/bindings/leds/leds-mt6323.txt
12606 F:      drivers/leds/leds-mt6323.c
12607
12608 MEDIATEK RANDOM NUMBER GENERATOR SUPPORT
12609 M:      Sean Wang <sean.wang@mediatek.com>
12610 S:      Maintained
12611 F:      drivers/char/hw_random/mtk-rng.c
12612
12613 MEDIATEK SMI DRIVER
12614 M:      Yong Wu <yong.wu@mediatek.com>
12615 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
12616 S:      Supported
12617 F:      Documentation/devicetree/bindings/memory-controllers/mediatek,smi*
12618 F:      drivers/memory/mtk-smi.c
12619 F:      include/soc/mediatek/smi.h
12620
12621 MEDIATEK SWITCH DRIVER
12622 M:      Sean Wang <sean.wang@mediatek.com>
12623 M:      Landen Chao <Landen.Chao@mediatek.com>
12624 M:      DENG Qingfang <dqfext@gmail.com>
12625 L:      netdev@vger.kernel.org
12626 S:      Maintained
12627 F:      drivers/net/dsa/mt7530.*
12628 F:      net/dsa/tag_mtk.c
12629
12630 MEDIATEK T7XX 5G WWAN MODEM DRIVER
12631 M:      Chandrashekar Devegowda <chandrashekar.devegowda@intel.com>
12632 M:      Intel Corporation <linuxwwan@intel.com>
12633 R:      Chiranjeevi Rapolu <chiranjeevi.rapolu@linux.intel.com>
12634 R:      Liu Haijun <haijun.liu@mediatek.com>
12635 R:      M Chetan Kumar <m.chetan.kumar@linux.intel.com>
12636 R:      Ricardo Martinez <ricardo.martinez@linux.intel.com>
12637 L:      netdev@vger.kernel.org
12638 S:      Supported
12639 F:      drivers/net/wwan/t7xx/
12640
12641 MEDIATEK USB3 DRD IP DRIVER
12642 M:      Chunfeng Yun <chunfeng.yun@mediatek.com>
12643 L:      linux-usb@vger.kernel.org
12644 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12645 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
12646 S:      Maintained
12647 F:      Documentation/devicetree/bindings/usb/mediatek,*
12648 F:      drivers/usb/host/xhci-mtk*
12649 F:      drivers/usb/mtu3/
12650
12651 MEGACHIPS STDPXXXX-GE-B850V3-FW LVDS/DP++ BRIDGES
12652 M:      Peter Senna Tschudin <peter.senna@gmail.com>
12653 M:      Martin Donnelly <martin.donnelly@ge.com>
12654 M:      Martyn Welch <martyn.welch@collabora.co.uk>
12655 S:      Maintained
12656 F:      Documentation/devicetree/bindings/display/bridge/megachips-stdpxxxx-ge-b850v3-fw.txt
12657 F:      drivers/gpu/drm/bridge/megachips-stdpxxxx-ge-b850v3-fw.c
12658
12659 MEGARAID SCSI/SAS DRIVERS
12660 M:      Kashyap Desai <kashyap.desai@broadcom.com>
12661 M:      Sumit Saxena <sumit.saxena@broadcom.com>
12662 M:      Shivasharan S <shivasharan.srikanteshwara@broadcom.com>
12663 L:      megaraidlinux.pdl@broadcom.com
12664 L:      linux-scsi@vger.kernel.org
12665 S:      Maintained
12666 W:      http://www.avagotech.com/support/
12667 F:      Documentation/scsi/megaraid.rst
12668 F:      drivers/scsi/megaraid.*
12669 F:      drivers/scsi/megaraid/
12670
12671 MELEXIS MLX90614 DRIVER
12672 M:      Crt Mori <cmo@melexis.com>
12673 L:      linux-iio@vger.kernel.org
12674 S:      Supported
12675 W:      http://www.melexis.com
12676 F:      drivers/iio/temperature/mlx90614.c
12677
12678 MELEXIS MLX90632 DRIVER
12679 M:      Crt Mori <cmo@melexis.com>
12680 L:      linux-iio@vger.kernel.org
12681 S:      Supported
12682 W:      http://www.melexis.com
12683 F:      drivers/iio/temperature/mlx90632.c
12684
12685 MELFAS MIP4 TOUCHSCREEN DRIVER
12686 M:      Sangwon Jee <jeesw@melfas.com>
12687 S:      Supported
12688 W:      http://www.melfas.com
12689 F:      Documentation/devicetree/bindings/input/touchscreen/melfas_mip4.txt
12690 F:      drivers/input/touchscreen/melfas_mip4.c
12691
12692 MELLANOX BLUEFIELD I2C DRIVER
12693 M:      Khalil Blaiech <kblaiech@nvidia.com>
12694 L:      linux-i2c@vger.kernel.org
12695 S:      Supported
12696 F:      Documentation/devicetree/bindings/i2c/mellanox,i2c-mlxbf.yaml
12697 F:      drivers/i2c/busses/i2c-mlxbf.c
12698
12699 MELLANOX ETHERNET DRIVER (mlx4_en)
12700 M:      Tariq Toukan <tariqt@nvidia.com>
12701 L:      netdev@vger.kernel.org
12702 S:      Supported
12703 W:      http://www.mellanox.com
12704 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12705 F:      drivers/net/ethernet/mellanox/mlx4/en_*
12706
12707 MELLANOX ETHERNET DRIVER (mlx5e)
12708 M:      Saeed Mahameed <saeedm@nvidia.com>
12709 L:      netdev@vger.kernel.org
12710 S:      Supported
12711 W:      http://www.mellanox.com
12712 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12713 F:      drivers/net/ethernet/mellanox/mlx5/core/en_*
12714
12715 MELLANOX ETHERNET INNOVA DRIVERS
12716 R:      Boris Pismenny <borisp@nvidia.com>
12717 L:      netdev@vger.kernel.org
12718 S:      Supported
12719 W:      http://www.mellanox.com
12720 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12721 F:      drivers/net/ethernet/mellanox/mlx5/core/en_accel/*
12722 F:      drivers/net/ethernet/mellanox/mlx5/core/fpga/*
12723 F:      include/linux/mlx5/mlx5_ifc_fpga.h
12724
12725 MELLANOX ETHERNET SWITCH DRIVERS
12726 M:      Ido Schimmel <idosch@nvidia.com>
12727 M:      Petr Machata <petrm@nvidia.com>
12728 L:      netdev@vger.kernel.org
12729 S:      Supported
12730 W:      http://www.mellanox.com
12731 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12732 F:      drivers/net/ethernet/mellanox/mlxsw/
12733 F:      tools/testing/selftests/drivers/net/mlxsw/
12734
12735 MELLANOX FIRMWARE FLASH LIBRARY (mlxfw)
12736 M:      mlxsw@nvidia.com
12737 L:      netdev@vger.kernel.org
12738 S:      Supported
12739 W:      http://www.mellanox.com
12740 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12741 F:      drivers/net/ethernet/mellanox/mlxfw/
12742
12743 MELLANOX HARDWARE PLATFORM SUPPORT
12744 M:      Hans de Goede <hdegoede@redhat.com>
12745 M:      Mark Gross <markgross@kernel.org>
12746 M:      Vadim Pasternak <vadimp@nvidia.com>
12747 L:      platform-driver-x86@vger.kernel.org
12748 S:      Supported
12749 F:      Documentation/ABI/testing/sysfs-platform-mellanox-bootctl
12750 F:      drivers/platform/mellanox/
12751 F:      include/linux/platform_data/mlxreg.h
12752
12753 MELLANOX MLX4 core VPI driver
12754 M:      Tariq Toukan <tariqt@nvidia.com>
12755 L:      netdev@vger.kernel.org
12756 L:      linux-rdma@vger.kernel.org
12757 S:      Supported
12758 W:      http://www.mellanox.com
12759 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12760 F:      drivers/net/ethernet/mellanox/mlx4/
12761 F:      include/linux/mlx4/
12762
12763 MELLANOX MLX4 IB driver
12764 M:      Yishai Hadas <yishaih@nvidia.com>
12765 L:      linux-rdma@vger.kernel.org
12766 S:      Supported
12767 W:      http://www.mellanox.com
12768 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
12769 F:      drivers/infiniband/hw/mlx4/
12770 F:      include/linux/mlx4/
12771 F:      include/uapi/rdma/mlx4-abi.h
12772
12773 MELLANOX MLX5 core VPI driver
12774 M:      Saeed Mahameed <saeedm@nvidia.com>
12775 M:      Leon Romanovsky <leonro@nvidia.com>
12776 L:      netdev@vger.kernel.org
12777 L:      linux-rdma@vger.kernel.org
12778 S:      Supported
12779 W:      http://www.mellanox.com
12780 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12781 F:      Documentation/networking/device_drivers/ethernet/mellanox/
12782 F:      drivers/net/ethernet/mellanox/mlx5/core/
12783 F:      include/linux/mlx5/
12784
12785 MELLANOX MLX5 IB driver
12786 M:      Leon Romanovsky <leonro@nvidia.com>
12787 L:      linux-rdma@vger.kernel.org
12788 S:      Supported
12789 W:      http://www.mellanox.com
12790 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
12791 F:      drivers/infiniband/hw/mlx5/
12792 F:      include/linux/mlx5/
12793 F:      include/uapi/rdma/mlx5-abi.h
12794
12795 MELLANOX MLXCPLD I2C AND MUX DRIVER
12796 M:      Vadim Pasternak <vadimp@nvidia.com>
12797 M:      Michael Shych <michaelsh@nvidia.com>
12798 L:      linux-i2c@vger.kernel.org
12799 S:      Supported
12800 F:      Documentation/i2c/busses/i2c-mlxcpld.rst
12801 F:      drivers/i2c/busses/i2c-mlxcpld.c
12802 F:      drivers/i2c/muxes/i2c-mux-mlxcpld.c
12803
12804 MELLANOX MLXCPLD LED DRIVER
12805 M:      Vadim Pasternak <vadimp@nvidia.com>
12806 L:      linux-leds@vger.kernel.org
12807 S:      Supported
12808 F:      Documentation/leds/leds-mlxcpld.rst
12809 F:      drivers/leds/leds-mlxcpld.c
12810 F:      drivers/leds/leds-mlxreg.c
12811
12812 MELLANOX PLATFORM DRIVER
12813 M:      Vadim Pasternak <vadimp@nvidia.com>
12814 L:      platform-driver-x86@vger.kernel.org
12815 S:      Supported
12816 F:      drivers/platform/x86/mlx-platform.c
12817
12818 MEMBARRIER SUPPORT
12819 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
12820 M:      "Paul E. McKenney" <paulmck@kernel.org>
12821 L:      linux-kernel@vger.kernel.org
12822 S:      Supported
12823 F:      arch/powerpc/include/asm/membarrier.h
12824 F:      include/uapi/linux/membarrier.h
12825 F:      kernel/sched/membarrier.c
12826
12827 MEMBLOCK
12828 M:      Mike Rapoport <rppt@kernel.org>
12829 L:      linux-mm@kvack.org
12830 S:      Maintained
12831 F:      Documentation/core-api/boot-time-mm.rst
12832 F:      include/linux/memblock.h
12833 F:      mm/memblock.c
12834 F:      tools/testing/memblock/
12835
12836 MEMORY CONTROLLER DRIVERS
12837 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
12838 L:      linux-kernel@vger.kernel.org
12839 S:      Maintained
12840 B:      mailto:krzysztof.kozlowski@linaro.org
12841 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/krzk/linux-mem-ctrl.git
12842 F:      Documentation/devicetree/bindings/memory-controllers/
12843 F:      drivers/memory/
12844 F:      include/dt-bindings/memory/
12845 F:      include/memory/
12846
12847 MEMORY FREQUENCY SCALING DRIVERS FOR NVIDIA TEGRA
12848 M:      Dmitry Osipenko <digetx@gmail.com>
12849 L:      linux-pm@vger.kernel.org
12850 L:      linux-tegra@vger.kernel.org
12851 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
12852 S:      Maintained
12853 F:      drivers/devfreq/tegra30-devfreq.c
12854
12855 MEMORY MANAGEMENT
12856 M:      Andrew Morton <akpm@linux-foundation.org>
12857 L:      linux-mm@kvack.org
12858 S:      Maintained
12859 W:      http://www.linux-mm.org
12860 T:      quilt https://ozlabs.org/~akpm/mmotm/
12861 T:      quilt https://ozlabs.org/~akpm/mmots/
12862 T:      git git://github.com/hnaz/linux-mm.git
12863 F:      include/linux/gfp.h
12864 F:      include/linux/memory_hotplug.h
12865 F:      include/linux/mm.h
12866 F:      include/linux/mmzone.h
12867 F:      include/linux/pagewalk.h
12868 F:      include/linux/vmalloc.h
12869 F:      mm/
12870 F:      tools/testing/selftests/vm/
12871
12872 MEMORY TECHNOLOGY DEVICES (MTD)
12873 M:      Miquel Raynal <miquel.raynal@bootlin.com>
12874 M:      Richard Weinberger <richard@nod.at>
12875 M:      Vignesh Raghavendra <vigneshr@ti.com>
12876 L:      linux-mtd@lists.infradead.org
12877 S:      Maintained
12878 W:      http://www.linux-mtd.infradead.org/
12879 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
12880 C:      irc://irc.oftc.net/mtd
12881 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/fixes
12882 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/next
12883 F:      Documentation/devicetree/bindings/mtd/
12884 F:      drivers/mtd/
12885 F:      include/linux/mtd/
12886 F:      include/uapi/mtd/
12887
12888 MEN A21 WATCHDOG DRIVER
12889 M:      Johannes Thumshirn <morbidrsa@gmail.com>
12890 L:      linux-watchdog@vger.kernel.org
12891 S:      Maintained
12892 F:      drivers/watchdog/mena21_wdt.c
12893
12894 MEN CHAMELEON BUS (mcb)
12895 M:      Johannes Thumshirn <morbidrsa@gmail.com>
12896 S:      Maintained
12897 F:      Documentation/driver-api/men-chameleon-bus.rst
12898 F:      drivers/mcb/
12899 F:      include/linux/mcb.h
12900
12901 MEN F21BMC (Board Management Controller)
12902 M:      Andreas Werner <andreas.werner@men.de>
12903 S:      Supported
12904 F:      Documentation/hwmon/menf21bmc.rst
12905 F:      drivers/hwmon/menf21bmc_hwmon.c
12906 F:      drivers/leds/leds-menf21bmc.c
12907 F:      drivers/mfd/menf21bmc.c
12908 F:      drivers/watchdog/menf21bmc_wdt.c
12909
12910 MEN Z069 WATCHDOG DRIVER
12911 M:      Johannes Thumshirn <jth@kernel.org>
12912 L:      linux-watchdog@vger.kernel.org
12913 S:      Maintained
12914 F:      drivers/watchdog/menz69_wdt.c
12915
12916 MESON AO CEC DRIVER FOR AMLOGIC SOCS
12917 M:      Neil Armstrong <narmstrong@baylibre.com>
12918 L:      linux-media@vger.kernel.org
12919 L:      linux-amlogic@lists.infradead.org
12920 S:      Supported
12921 W:      http://linux-meson.com/
12922 T:      git git://linuxtv.org/media_tree.git
12923 F:      Documentation/devicetree/bindings/media/amlogic,meson-gx-ao-cec.yaml
12924 F:      drivers/media/cec/platform/meson/ao-cec-g12a.c
12925 F:      drivers/media/cec/platform/meson/ao-cec.c
12926
12927 MESON GE2D DRIVER FOR AMLOGIC SOCS
12928 M:      Neil Armstrong <narmstrong@baylibre.com>
12929 L:      linux-media@vger.kernel.org
12930 L:      linux-amlogic@lists.infradead.org
12931 S:      Supported
12932 T:      git git://linuxtv.org/media_tree.git
12933 F:      Documentation/devicetree/bindings/media/amlogic,axg-ge2d.yaml
12934 F:      drivers/media/platform/amlogic/meson-ge2d/
12935
12936 MESON NAND CONTROLLER DRIVER FOR AMLOGIC SOCS
12937 M:      Liang Yang <liang.yang@amlogic.com>
12938 L:      linux-mtd@lists.infradead.org
12939 S:      Maintained
12940 F:      Documentation/devicetree/bindings/mtd/amlogic,meson-nand.txt
12941 F:      drivers/mtd/nand/raw/meson_*
12942
12943 MESON VIDEO DECODER DRIVER FOR AMLOGIC SOCS
12944 M:      Neil Armstrong <narmstrong@baylibre.com>
12945 L:      linux-media@vger.kernel.org
12946 L:      linux-amlogic@lists.infradead.org
12947 S:      Supported
12948 T:      git git://linuxtv.org/media_tree.git
12949 F:      Documentation/devicetree/bindings/media/amlogic,gx-vdec.yaml
12950 F:      drivers/staging/media/meson/vdec/
12951
12952 METHODE UDPU SUPPORT
12953 M:      Vladimir Vid <vladimir.vid@sartura.hr>
12954 S:      Maintained
12955 F:      arch/arm64/boot/dts/marvell/armada-3720-uDPU.dts
12956
12957 MHI BUS
12958 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
12959 R:      Hemant Kumar <quic_hemantk@quicinc.com>
12960 L:      mhi@lists.linux.dev
12961 L:      linux-arm-msm@vger.kernel.org
12962 S:      Maintained
12963 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mani/mhi.git
12964 F:      Documentation/ABI/stable/sysfs-bus-mhi
12965 F:      Documentation/mhi/
12966 F:      drivers/bus/mhi/
12967 F:      include/linux/mhi.h
12968
12969 MICROBLAZE ARCHITECTURE
12970 M:      Michal Simek <monstr@monstr.eu>
12971 S:      Supported
12972 W:      http://www.monstr.eu/fdt/
12973 T:      git git://git.monstr.eu/linux-2.6-microblaze.git
12974 F:      arch/microblaze/
12975
12976 MICROCHIP AT91 DMA DRIVERS
12977 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
12978 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
12979 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12980 L:      dmaengine@vger.kernel.org
12981 S:      Supported
12982 F:      Documentation/devicetree/bindings/dma/atmel-dma.txt
12983 F:      drivers/dma/at_hdmac.c
12984 F:      drivers/dma/at_hdmac_regs.h
12985 F:      drivers/dma/at_xdmac.c
12986 F:      include/dt-bindings/dma/at91.h
12987
12988 MICROCHIP AT91 SERIAL DRIVER
12989 M:      Richard Genoud <richard.genoud@gmail.com>
12990 S:      Maintained
12991 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
12992 F:      drivers/tty/serial/atmel_serial.c
12993 F:      drivers/tty/serial/atmel_serial.h
12994
12995 MICROCHIP AT91 USART MFD DRIVER
12996 M:      Radu Pirea <radu_nicolae.pirea@upb.ro>
12997 L:      linux-kernel@vger.kernel.org
12998 S:      Supported
12999 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
13000 F:      drivers/mfd/at91-usart.c
13001 F:      include/dt-bindings/mfd/at91-usart.h
13002
13003 MICROCHIP AT91 USART SPI DRIVER
13004 M:      Radu Pirea <radu_nicolae.pirea@upb.ro>
13005 L:      linux-spi@vger.kernel.org
13006 S:      Supported
13007 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
13008 F:      drivers/spi/spi-at91-usart.c
13009
13010 MICROCHIP AUDIO ASOC DRIVERS
13011 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
13012 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
13013 S:      Supported
13014 F:      sound/soc/atmel
13015
13016 MICROCHIP CSI2DC DRIVER
13017 M:      Eugen Hristev <eugen.hristev@microchip.com>
13018 L:      linux-media@vger.kernel.org
13019 S:      Supported
13020 F:      Documentation/devicetree/bindings/media/microchip,csi2dc.yaml
13021 F:      drivers/media/platform/atmel/microchip-csi2dc.c
13022
13023 MICROCHIP ECC DRIVER
13024 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
13025 L:      linux-crypto@vger.kernel.org
13026 S:      Maintained
13027 F:      drivers/crypto/atmel-ecc.*
13028
13029 MICROCHIP EIC DRIVER
13030 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
13031 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13032 S:      Supported
13033 F:      drivers/irqchip/irq-mchp-eic.c
13034
13035 MICROCHIP I2C DRIVER
13036 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
13037 L:      linux-i2c@vger.kernel.org
13038 S:      Supported
13039 F:      drivers/i2c/busses/i2c-at91-*.c
13040 F:      drivers/i2c/busses/i2c-at91.h
13041
13042 MICROCHIP ISC DRIVER
13043 M:      Eugen Hristev <eugen.hristev@microchip.com>
13044 L:      linux-media@vger.kernel.org
13045 S:      Supported
13046 F:      Documentation/devicetree/bindings/media/atmel,isc.yaml
13047 F:      Documentation/devicetree/bindings/media/microchip,xisc.yaml
13048 F:      drivers/media/platform/atmel/atmel-isc*
13049 F:      drivers/media/platform/atmel/atmel-sama*-isc*
13050 F:      include/linux/atmel-isc-media.h
13051
13052 MICROCHIP ISI DRIVER
13053 M:      Eugen Hristev <eugen.hristev@microchip.com>
13054 L:      linux-media@vger.kernel.org
13055 S:      Supported
13056 F:      drivers/media/platform/atmel/atmel-isi.c
13057 F:      drivers/media/platform/atmel/atmel-isi.h
13058
13059 MICROCHIP KSZ SERIES ETHERNET SWITCH DRIVER
13060 M:      Woojung Huh <woojung.huh@microchip.com>
13061 M:      UNGLinuxDriver@microchip.com
13062 L:      netdev@vger.kernel.org
13063 S:      Maintained
13064 F:      Documentation/devicetree/bindings/net/dsa/microchip,ksz.yaml
13065 F:      drivers/net/dsa/microchip/*
13066 F:      include/linux/platform_data/microchip-ksz.h
13067 F:      net/dsa/tag_ksz.c
13068
13069 MICROCHIP LAN87xx/LAN937x T1 PHY DRIVER
13070 M:      Arun Ramadoss <arun.ramadoss@microchip.com>
13071 R:      UNGLinuxDriver@microchip.com
13072 L:      netdev@vger.kernel.org
13073 S:      Maintained
13074 F:      drivers/net/phy/microchip_t1.c
13075
13076 MICROCHIP LAN743X ETHERNET DRIVER
13077 M:      Bryan Whitehead <bryan.whitehead@microchip.com>
13078 M:      UNGLinuxDriver@microchip.com
13079 L:      netdev@vger.kernel.org
13080 S:      Maintained
13081 F:      drivers/net/ethernet/microchip/lan743x_*
13082
13083 MICROCHIP LAN966X ETHERNET DRIVER
13084 M:      Horatiu Vultur <horatiu.vultur@microchip.com>
13085 M:      UNGLinuxDriver@microchip.com
13086 L:      netdev@vger.kernel.org
13087 S:      Maintained
13088 F:      drivers/net/ethernet/microchip/lan966x/*
13089
13090 MICROCHIP LCDFB DRIVER
13091 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
13092 L:      linux-fbdev@vger.kernel.org
13093 S:      Maintained
13094 F:      drivers/video/fbdev/atmel_lcdfb.c
13095 F:      include/video/atmel_lcdc.h
13096
13097 MICROCHIP MCP16502 PMIC DRIVER
13098 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
13099 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13100 S:      Supported
13101 F:      Documentation/devicetree/bindings/regulator/mcp16502-regulator.txt
13102 F:      drivers/regulator/mcp16502.c
13103
13104 MICROCHIP MCP3911 ADC DRIVER
13105 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
13106 M:      Kent Gustavsson <kent@minoris.se>
13107 L:      linux-iio@vger.kernel.org
13108 S:      Supported
13109 F:      Documentation/devicetree/bindings/iio/adc/microchip,mcp3911.yaml
13110 F:      drivers/iio/adc/mcp3911.c
13111
13112 MICROCHIP MMC/SD/SDIO MCI DRIVER
13113 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
13114 S:      Maintained
13115 F:      drivers/mmc/host/atmel-mci.c
13116
13117 MICROCHIP NAND DRIVER
13118 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
13119 L:      linux-mtd@lists.infradead.org
13120 S:      Supported
13121 F:      Documentation/devicetree/bindings/mtd/atmel-nand.txt
13122 F:      drivers/mtd/nand/raw/atmel/*
13123
13124 MICROCHIP PWM DRIVER
13125 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
13126 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13127 L:      linux-pwm@vger.kernel.org
13128 S:      Supported
13129 F:      Documentation/devicetree/bindings/pwm/atmel,at91sam-pwm.yaml
13130 F:      drivers/pwm/pwm-atmel.c
13131
13132 MICROCHIP SAMA5D2-COMPATIBLE ADC DRIVER
13133 M:      Eugen Hristev <eugen.hristev@microchip.com>
13134 L:      linux-iio@vger.kernel.org
13135 S:      Supported
13136 F:      Documentation/devicetree/bindings/iio/adc/atmel,sama5d2-adc.yaml
13137 F:      drivers/iio/adc/at91-sama5d2_adc.c
13138 F:      include/dt-bindings/iio/adc/at91-sama5d2_adc.h
13139
13140 MICROCHIP SAMA5D2-COMPATIBLE SHUTDOWN CONTROLLER
13141 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
13142 S:      Supported
13143 F:      drivers/power/reset/at91-sama5d2_shdwc.c
13144
13145 MICROCHIP SPI DRIVER
13146 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
13147 S:      Supported
13148 F:      drivers/spi/spi-atmel.*
13149
13150 MICROCHIP SSC DRIVER
13151 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
13152 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13153 S:      Supported
13154 F:      drivers/misc/atmel-ssc.c
13155 F:      include/linux/atmel-ssc.h
13156
13157 MICROCHIP USB251XB DRIVER
13158 M:      Richard Leitner <richard.leitner@skidata.com>
13159 L:      linux-usb@vger.kernel.org
13160 S:      Maintained
13161 F:      Documentation/devicetree/bindings/usb/usb251xb.txt
13162 F:      drivers/usb/misc/usb251xb.c
13163
13164 MICROCHIP USBA UDC DRIVER
13165 M:      Cristian Birsan <cristian.birsan@microchip.com>
13166 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13167 S:      Supported
13168 F:      drivers/usb/gadget/udc/atmel_usba_udc.*
13169
13170 MICROCHIP WILC1000 WIFI DRIVER
13171 M:      Ajay Singh <ajay.kathat@microchip.com>
13172 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
13173 L:      linux-wireless@vger.kernel.org
13174 S:      Supported
13175 F:      drivers/net/wireless/microchip/wilc1000/
13176
13177 MICROSEMI MIPS SOCS
13178 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
13179 M:      UNGLinuxDriver@microchip.com
13180 L:      linux-mips@vger.kernel.org
13181 S:      Supported
13182 F:      Documentation/devicetree/bindings/mips/mscc.txt
13183 F:      Documentation/devicetree/bindings/power/reset/ocelot-reset.txt
13184 F:      arch/mips/boot/dts/mscc/
13185 F:      arch/mips/configs/generic/board-ocelot.config
13186 F:      arch/mips/generic/board-ocelot.c
13187
13188 MICROSEMI SMART ARRAY SMARTPQI DRIVER (smartpqi)
13189 M:      Don Brace <don.brace@microchip.com>
13190 L:      storagedev@microchip.com
13191 L:      linux-scsi@vger.kernel.org
13192 S:      Supported
13193 F:      Documentation/scsi/smartpqi.rst
13194 F:      drivers/scsi/smartpqi/Kconfig
13195 F:      drivers/scsi/smartpqi/Makefile
13196 F:      drivers/scsi/smartpqi/smartpqi*.[ch]
13197 F:      include/linux/cciss*.h
13198 F:      include/uapi/linux/cciss*.h
13199
13200 MICROSOFT SURFACE BATTERY AND AC DRIVERS
13201 M:      Maximilian Luz <luzmaximilian@gmail.com>
13202 L:      linux-pm@vger.kernel.org
13203 L:      platform-driver-x86@vger.kernel.org
13204 S:      Maintained
13205 F:      drivers/power/supply/surface_battery.c
13206 F:      drivers/power/supply/surface_charger.c
13207
13208 MICROSOFT SURFACE DTX DRIVER
13209 M:      Maximilian Luz <luzmaximilian@gmail.com>
13210 L:      platform-driver-x86@vger.kernel.org
13211 S:      Maintained
13212 F:      Documentation/driver-api/surface_aggregator/clients/dtx.rst
13213 F:      drivers/platform/surface/surface_dtx.c
13214 F:      include/uapi/linux/surface_aggregator/dtx.h
13215
13216 MICROSOFT SURFACE GPE LID SUPPORT DRIVER
13217 M:      Maximilian Luz <luzmaximilian@gmail.com>
13218 L:      platform-driver-x86@vger.kernel.org
13219 S:      Maintained
13220 F:      drivers/platform/surface/surface_gpe.c
13221
13222 MICROSOFT SURFACE HARDWARE PLATFORM SUPPORT
13223 M:      Hans de Goede <hdegoede@redhat.com>
13224 M:      Mark Gross <markgross@kernel.org>
13225 M:      Maximilian Luz <luzmaximilian@gmail.com>
13226 L:      platform-driver-x86@vger.kernel.org
13227 S:      Maintained
13228 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
13229 F:      drivers/platform/surface/
13230
13231 MICROSOFT SURFACE HID TRANSPORT DRIVER
13232 M:      Maximilian Luz <luzmaximilian@gmail.com>
13233 L:      linux-input@vger.kernel.org
13234 L:      platform-driver-x86@vger.kernel.org
13235 S:      Maintained
13236 F:      drivers/hid/surface-hid/
13237
13238 MICROSOFT SURFACE HOT-PLUG DRIVER
13239 M:      Maximilian Luz <luzmaximilian@gmail.com>
13240 L:      platform-driver-x86@vger.kernel.org
13241 S:      Maintained
13242 F:      drivers/platform/surface/surface_hotplug.c
13243
13244 MICROSOFT SURFACE PLATFORM PROFILE DRIVER
13245 M:      Maximilian Luz <luzmaximilian@gmail.com>
13246 L:      platform-driver-x86@vger.kernel.org
13247 S:      Maintained
13248 F:      drivers/platform/surface/surface_platform_profile.c
13249
13250 MICROSOFT SURFACE PRO 3 BUTTON DRIVER
13251 M:      Chen Yu <yu.c.chen@intel.com>
13252 L:      platform-driver-x86@vger.kernel.org
13253 S:      Supported
13254 F:      drivers/platform/surface/surfacepro3_button.c
13255
13256 MICROSOFT SURFACE SYSTEM AGGREGATOR SUBSYSTEM
13257 M:      Maximilian Luz <luzmaximilian@gmail.com>
13258 L:      platform-driver-x86@vger.kernel.org
13259 S:      Maintained
13260 W:      https://github.com/linux-surface/surface-aggregator-module
13261 C:      irc://irc.libera.chat/linux-surface
13262 F:      Documentation/driver-api/surface_aggregator/
13263 F:      drivers/platform/surface/aggregator/
13264 F:      drivers/platform/surface/surface_acpi_notify.c
13265 F:      drivers/platform/surface/surface_aggregator_cdev.c
13266 F:      drivers/platform/surface/surface_aggregator_registry.c
13267 F:      include/linux/surface_acpi_notify.h
13268 F:      include/linux/surface_aggregator/
13269 F:      include/uapi/linux/surface_aggregator/
13270
13271 MICROTEK X6 SCANNER
13272 M:      Oliver Neukum <oliver@neukum.org>
13273 S:      Maintained
13274 F:      drivers/usb/image/microtek.*
13275
13276 MIKROTIK CRS3XX 98DX3236 BOARD SUPPORT
13277 M:      Luka Kovacic <luka.kovacic@sartura.hr>
13278 M:      Luka Perkov <luka.perkov@sartura.hr>
13279 S:      Maintained
13280 F:      arch/arm/boot/dts/armada-xp-crs305-1g-4s-bit.dts
13281 F:      arch/arm/boot/dts/armada-xp-crs305-1g-4s.dts
13282 F:      arch/arm/boot/dts/armada-xp-crs326-24g-2s-bit.dts
13283 F:      arch/arm/boot/dts/armada-xp-crs326-24g-2s.dts
13284 F:      arch/arm/boot/dts/armada-xp-crs328-4c-20s-4s-bit.dts
13285 F:      arch/arm/boot/dts/armada-xp-crs328-4c-20s-4s.dts
13286
13287 MIPI CCS, SMIA AND SMIA++ IMAGE SENSOR DRIVER
13288 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
13289 L:      linux-media@vger.kernel.org
13290 S:      Maintained
13291 F:      Documentation/devicetree/bindings/media/i2c/mipi-ccs.yaml
13292 F:      Documentation/driver-api/media/drivers/ccs/
13293 F:      Documentation/userspace-api/media/drivers/ccs.rst
13294 F:      drivers/media/i2c/ccs-pll.c
13295 F:      drivers/media/i2c/ccs-pll.h
13296 F:      drivers/media/i2c/ccs/
13297 F:      include/uapi/linux/ccs.h
13298 F:      include/uapi/linux/smiapp.h
13299
13300 MIPS
13301 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
13302 L:      linux-mips@vger.kernel.org
13303 S:      Maintained
13304 W:      http://www.linux-mips.org/
13305 Q:      https://patchwork.kernel.org/project/linux-mips/list/
13306 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mips/linux.git
13307 F:      Documentation/devicetree/bindings/mips/
13308 F:      Documentation/mips/
13309 F:      arch/mips/
13310 F:      drivers/platform/mips/
13311
13312 MIPS BOSTON DEVELOPMENT BOARD
13313 M:      Paul Burton <paulburton@kernel.org>
13314 L:      linux-mips@vger.kernel.org
13315 S:      Maintained
13316 F:      Documentation/devicetree/bindings/clock/img,boston-clock.txt
13317 F:      arch/mips/boot/dts/img/boston.dts
13318 F:      arch/mips/configs/generic/board-boston.config
13319 F:      drivers/clk/imgtec/clk-boston.c
13320 F:      include/dt-bindings/clock/boston-clock.h
13321
13322 MIPS CORE DRIVERS
13323 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
13324 M:      Serge Semin <fancer.lancer@gmail.com>
13325 L:      linux-mips@vger.kernel.org
13326 S:      Supported
13327 F:      drivers/bus/mips_cdmm.c
13328 F:      drivers/clocksource/mips-gic-timer.c
13329 F:      drivers/cpuidle/cpuidle-cps.c
13330 F:      drivers/irqchip/irq-mips-cpu.c
13331 F:      drivers/irqchip/irq-mips-gic.c
13332
13333 MIPS GENERIC PLATFORM
13334 M:      Paul Burton <paulburton@kernel.org>
13335 L:      linux-mips@vger.kernel.org
13336 S:      Supported
13337 F:      Documentation/devicetree/bindings/power/mti,mips-cpc.yaml
13338 F:      arch/mips/generic/
13339 F:      arch/mips/tools/generic-board-config.sh
13340
13341 MIPS RINT INSTRUCTION EMULATION
13342 M:      Aleksandar Markovic <aleksandar.markovic@mips.com>
13343 L:      linux-mips@vger.kernel.org
13344 S:      Supported
13345 F:      arch/mips/math-emu/dp_rint.c
13346 F:      arch/mips/math-emu/sp_rint.c
13347
13348 MIPS/LOONGSON1 ARCHITECTURE
13349 M:      Keguang Zhang <keguang.zhang@gmail.com>
13350 L:      linux-mips@vger.kernel.org
13351 S:      Maintained
13352 F:      arch/mips/include/asm/mach-loongson32/
13353 F:      arch/mips/loongson32/
13354 F:      drivers/*/*/*loongson1*
13355 F:      drivers/*/*loongson1*
13356
13357 MIPS/LOONGSON2EF ARCHITECTURE
13358 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
13359 L:      linux-mips@vger.kernel.org
13360 S:      Maintained
13361 F:      arch/mips/include/asm/mach-loongson2ef/
13362 F:      arch/mips/loongson2ef/
13363 F:      drivers/cpufreq/loongson2_cpufreq.c
13364
13365 MIPS/LOONGSON64 ARCHITECTURE
13366 M:      Huacai Chen <chenhuacai@kernel.org>
13367 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
13368 L:      linux-mips@vger.kernel.org
13369 S:      Maintained
13370 F:      arch/mips/include/asm/mach-loongson64/
13371 F:      arch/mips/loongson64/
13372 F:      drivers/irqchip/irq-loongson*
13373 F:      drivers/platform/mips/cpu_hwmon.c
13374
13375 MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
13376 M:      Hans Verkuil <hverkuil@xs4all.nl>
13377 L:      linux-media@vger.kernel.org
13378 S:      Odd Fixes
13379 W:      https://linuxtv.org
13380 T:      git git://linuxtv.org/media_tree.git
13381 F:      drivers/media/radio/radio-miropcm20*
13382
13383 MMP SUPPORT
13384 R:      Lubomir Rintel <lkundrak@v3.sk>
13385 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13386 S:      Odd Fixes
13387 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lkundrak/linux-mmp.git
13388 F:      arch/arm/boot/dts/mmp*
13389 F:      arch/arm/mach-mmp/
13390 F:      include/linux/soc/mmp/
13391
13392 MMP USB PHY DRIVERS
13393 R:      Lubomir Rintel <lkundrak@v3.sk>
13394 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13395 S:      Maintained
13396 F:      drivers/phy/marvell/phy-mmp3-usb.c
13397 F:      drivers/phy/marvell/phy-pxa-usb.c
13398
13399 MMU GATHER AND TLB INVALIDATION
13400 M:      Will Deacon <will@kernel.org>
13401 M:      "Aneesh Kumar K.V" <aneesh.kumar@linux.ibm.com>
13402 M:      Andrew Morton <akpm@linux-foundation.org>
13403 M:      Nick Piggin <npiggin@gmail.com>
13404 M:      Peter Zijlstra <peterz@infradead.org>
13405 L:      linux-arch@vger.kernel.org
13406 L:      linux-mm@kvack.org
13407 S:      Maintained
13408 F:      arch/*/include/asm/tlb.h
13409 F:      include/asm-generic/tlb.h
13410 F:      mm/mmu_gather.c
13411
13412 MN88472 MEDIA DRIVER
13413 M:      Antti Palosaari <crope@iki.fi>
13414 L:      linux-media@vger.kernel.org
13415 S:      Maintained
13416 W:      https://linuxtv.org
13417 W:      http://palosaari.fi/linux/
13418 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13419 F:      drivers/media/dvb-frontends/mn88472*
13420
13421 MN88473 MEDIA DRIVER
13422 M:      Antti Palosaari <crope@iki.fi>
13423 L:      linux-media@vger.kernel.org
13424 S:      Maintained
13425 W:      https://linuxtv.org
13426 W:      http://palosaari.fi/linux/
13427 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13428 F:      drivers/media/dvb-frontends/mn88473*
13429
13430 MODULE SUPPORT
13431 M:      Luis Chamberlain <mcgrof@kernel.org>
13432 L:      linux-modules@vger.kernel.org
13433 L:      linux-kernel@vger.kernel.org
13434 S:      Maintained
13435 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mcgrof/linux.git modules-next
13436 F:      include/linux/module.h
13437 F:      kernel/module/
13438
13439 MONOLITHIC POWER SYSTEM PMIC DRIVER
13440 M:      Saravanan Sekar <sravanhome@gmail.com>
13441 S:      Maintained
13442 F:      Documentation/devicetree/bindings/mfd/mps,mp2629.yaml
13443 F:      Documentation/devicetree/bindings/regulator/mps,mp*.yaml
13444 F:      drivers/iio/adc/mp2629_adc.c
13445 F:      drivers/mfd/mp2629.c
13446 F:      drivers/power/supply/mp2629_charger.c
13447 F:      drivers/regulator/mp5416.c
13448 F:      drivers/regulator/mpq7920.c
13449 F:      drivers/regulator/mpq7920.h
13450 F:      include/linux/mfd/mp2629.h
13451
13452 MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
13453 S:      Orphan
13454 W:      http://popies.net/meye/
13455 F:      Documentation/userspace-api/media/drivers/meye*
13456 F:      drivers/media/pci/meye/
13457 F:      include/uapi/linux/meye.h
13458
13459 MOTORCOMM PHY DRIVER
13460 M:      Peter Geis <pgwipeout@gmail.com>
13461 L:      netdev@vger.kernel.org
13462 S:      Maintained
13463 F:      drivers/net/phy/motorcomm.c
13464
13465 MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
13466 M:      Jiri Slaby <jirislaby@kernel.org>
13467 S:      Maintained
13468 F:      Documentation/driver-api/tty/moxa-smartio.rst
13469 F:      drivers/tty/mxser.*
13470
13471 MR800 AVERMEDIA USB FM RADIO DRIVER
13472 M:      Alexey Klimov <klimov.linux@gmail.com>
13473 L:      linux-media@vger.kernel.org
13474 S:      Maintained
13475 T:      git git://linuxtv.org/media_tree.git
13476 F:      drivers/media/radio/radio-mr800.c
13477
13478 MRF24J40 IEEE 802.15.4 RADIO DRIVER
13479 M:      Alan Ott <alan@signal11.us>
13480 L:      linux-wpan@vger.kernel.org
13481 S:      Maintained
13482 F:      Documentation/devicetree/bindings/net/ieee802154/mrf24j40.txt
13483 F:      drivers/net/ieee802154/mrf24j40.c
13484
13485 MSI LAPTOP SUPPORT
13486 M:      "Lee, Chun-Yi" <jlee@suse.com>
13487 L:      platform-driver-x86@vger.kernel.org
13488 S:      Maintained
13489 F:      drivers/platform/x86/msi-laptop.c
13490
13491 MSI WMI SUPPORT
13492 L:      platform-driver-x86@vger.kernel.org
13493 S:      Orphan
13494 F:      drivers/platform/x86/msi-wmi.c
13495
13496 MSI001 MEDIA DRIVER
13497 M:      Antti Palosaari <crope@iki.fi>
13498 L:      linux-media@vger.kernel.org
13499 S:      Maintained
13500 W:      https://linuxtv.org
13501 W:      http://palosaari.fi/linux/
13502 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13503 T:      git git://linuxtv.org/anttip/media_tree.git
13504 F:      drivers/media/tuners/msi001*
13505
13506 MSI2500 MEDIA DRIVER
13507 M:      Antti Palosaari <crope@iki.fi>
13508 L:      linux-media@vger.kernel.org
13509 S:      Maintained
13510 W:      https://linuxtv.org
13511 W:      http://palosaari.fi/linux/
13512 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13513 T:      git git://linuxtv.org/anttip/media_tree.git
13514 F:      drivers/media/usb/msi2500/
13515
13516 MSTAR INTERRUPT CONTROLLER DRIVER
13517 M:      Mark-PK Tsai <mark-pk.tsai@mediatek.com>
13518 M:      Daniel Palmer <daniel@thingy.jp>
13519 S:      Maintained
13520 F:      Documentation/devicetree/bindings/interrupt-controller/mstar,mst-intc.yaml
13521 F:      drivers/irqchip/irq-mst-intc.c
13522
13523 MSYSTEMS DISKONCHIP G3 MTD DRIVER
13524 M:      Robert Jarzmik <robert.jarzmik@free.fr>
13525 L:      linux-mtd@lists.infradead.org
13526 S:      Maintained
13527 F:      drivers/mtd/devices/docg3*
13528
13529 MT9M032 APTINA SENSOR DRIVER
13530 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
13531 L:      linux-media@vger.kernel.org
13532 S:      Maintained
13533 T:      git git://linuxtv.org/media_tree.git
13534 F:      drivers/media/i2c/mt9m032.c
13535 F:      include/media/i2c/mt9m032.h
13536
13537 MT9P031 APTINA CAMERA SENSOR
13538 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
13539 L:      linux-media@vger.kernel.org
13540 S:      Maintained
13541 T:      git git://linuxtv.org/media_tree.git
13542 F:      Documentation/devicetree/bindings/media/i2c/aptina,mt9p031.yaml
13543 F:      drivers/media/i2c/mt9p031.c
13544 F:      include/media/i2c/mt9p031.h
13545
13546 MT9T001 APTINA CAMERA SENSOR
13547 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
13548 L:      linux-media@vger.kernel.org
13549 S:      Maintained
13550 T:      git git://linuxtv.org/media_tree.git
13551 F:      drivers/media/i2c/mt9t001.c
13552 F:      include/media/i2c/mt9t001.h
13553
13554 MT9T112 APTINA CAMERA SENSOR
13555 M:      Jacopo Mondi <jacopo@jmondi.org>
13556 L:      linux-media@vger.kernel.org
13557 S:      Odd Fixes
13558 T:      git git://linuxtv.org/media_tree.git
13559 F:      drivers/media/i2c/mt9t112.c
13560 F:      include/media/i2c/mt9t112.h
13561
13562 MT9V032 APTINA CAMERA SENSOR
13563 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
13564 L:      linux-media@vger.kernel.org
13565 S:      Maintained
13566 T:      git git://linuxtv.org/media_tree.git
13567 F:      Documentation/devicetree/bindings/media/i2c/mt9v032.txt
13568 F:      drivers/media/i2c/mt9v032.c
13569 F:      include/media/i2c/mt9v032.h
13570
13571 MT9V111 APTINA CAMERA SENSOR
13572 M:      Jacopo Mondi <jacopo@jmondi.org>
13573 L:      linux-media@vger.kernel.org
13574 S:      Maintained
13575 T:      git git://linuxtv.org/media_tree.git
13576 F:      Documentation/devicetree/bindings/media/i2c/aptina,mt9v111.yaml
13577 F:      drivers/media/i2c/mt9v111.c
13578
13579 MULTIFUNCTION DEVICES (MFD)
13580 M:      Lee Jones <lee.jones@linaro.org>
13581 S:      Supported
13582 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
13583 F:      Documentation/devicetree/bindings/mfd/
13584 F:      drivers/mfd/
13585 F:      include/dt-bindings/mfd/
13586 F:      include/linux/mfd/
13587
13588 MULTIMEDIA CARD (MMC) ETC. OVER SPI
13589 S:      Orphan
13590 F:      drivers/mmc/host/mmc_spi.c
13591 F:      include/linux/spi/mmc_spi.h
13592
13593 MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
13594 M:      Ulf Hansson <ulf.hansson@linaro.org>
13595 L:      linux-mmc@vger.kernel.org
13596 S:      Maintained
13597 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
13598 F:      Documentation/devicetree/bindings/mmc/
13599 F:      drivers/mmc/
13600 F:      include/linux/mmc/
13601 F:      include/uapi/linux/mmc/
13602
13603 MULTIPLEXER SUBSYSTEM
13604 M:      Peter Rosin <peda@axentia.se>
13605 S:      Maintained
13606 F:      Documentation/ABI/testing/sysfs-class-mux*
13607 F:      Documentation/devicetree/bindings/mux/
13608 F:      drivers/mux/
13609 F:      include/dt-bindings/mux/
13610 F:      include/linux/mux/
13611
13612 MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
13613 M:      Bin Liu <b-liu@ti.com>
13614 L:      linux-usb@vger.kernel.org
13615 S:      Maintained
13616 F:      drivers/usb/musb/
13617
13618 MXL301RF MEDIA DRIVER
13619 M:      Akihiro Tsukada <tskd08@gmail.com>
13620 L:      linux-media@vger.kernel.org
13621 S:      Odd Fixes
13622 F:      drivers/media/tuners/mxl301rf*
13623
13624 MXL5007T MEDIA DRIVER
13625 M:      Michael Krufky <mkrufky@linuxtv.org>
13626 L:      linux-media@vger.kernel.org
13627 S:      Maintained
13628 W:      https://linuxtv.org
13629 W:      http://github.com/mkrufky
13630 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13631 T:      git git://linuxtv.org/mkrufky/tuners.git
13632 F:      drivers/media/tuners/mxl5007t.*
13633
13634 MXSFB DRM DRIVER
13635 M:      Marek Vasut <marex@denx.de>
13636 M:      Stefan Agner <stefan@agner.ch>
13637 L:      dri-devel@lists.freedesktop.org
13638 S:      Supported
13639 T:      git git://anongit.freedesktop.org/drm/drm-misc
13640 F:      Documentation/devicetree/bindings/display/fsl,lcdif.yaml
13641 F:      drivers/gpu/drm/mxsfb/
13642
13643 MYLEX DAC960 PCI RAID Controller
13644 M:      Hannes Reinecke <hare@kernel.org>
13645 L:      linux-scsi@vger.kernel.org
13646 S:      Supported
13647 F:      drivers/scsi/myrb.*
13648 F:      drivers/scsi/myrs.*
13649
13650 MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
13651 M:      Chris Lee <christopher.lee@cspi.com>
13652 L:      netdev@vger.kernel.org
13653 S:      Supported
13654 W:      https://www.cspi.com/ethernet-products/support/downloads/
13655 F:      drivers/net/ethernet/myricom/myri10ge/
13656
13657 NAND FLASH SUBSYSTEM
13658 M:      Miquel Raynal <miquel.raynal@bootlin.com>
13659 R:      Richard Weinberger <richard@nod.at>
13660 L:      linux-mtd@lists.infradead.org
13661 S:      Maintained
13662 W:      http://www.linux-mtd.infradead.org/
13663 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
13664 C:      irc://irc.oftc.net/mtd
13665 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git nand/next
13666 F:      drivers/mtd/nand/
13667 F:      include/linux/mtd/*nand*.h
13668
13669 NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
13670 M:      Daniel Mack <zonque@gmail.com>
13671 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
13672 S:      Maintained
13673 W:      http://www.native-instruments.com
13674 F:      sound/usb/caiaq/
13675
13676 NATSEMI ETHERNET DRIVER (DP8381x)
13677 S:      Orphan
13678 F:      drivers/net/ethernet/natsemi/natsemi.c
13679
13680 NCR 5380 SCSI DRIVERS
13681 M:      Finn Thain <fthain@linux-m68k.org>
13682 M:      Michael Schmitz <schmitzmic@gmail.com>
13683 L:      linux-scsi@vger.kernel.org
13684 S:      Maintained
13685 F:      Documentation/scsi/g_NCR5380.rst
13686 F:      drivers/scsi/NCR5380.*
13687 F:      drivers/scsi/arm/cumana_1.c
13688 F:      drivers/scsi/arm/oak.c
13689 F:      drivers/scsi/atari_scsi.*
13690 F:      drivers/scsi/dmx3191d.c
13691 F:      drivers/scsi/g_NCR5380.*
13692 F:      drivers/scsi/mac_scsi.*
13693 F:      drivers/scsi/sun3_scsi.*
13694 F:      drivers/scsi/sun3_scsi_vme.c
13695
13696 NCSI LIBRARY
13697 M:      Samuel Mendoza-Jonas <sam@mendozajonas.com>
13698 S:      Maintained
13699 F:      net/ncsi/
13700
13701 NCT6775 HARDWARE MONITOR DRIVER - CORE & PLATFORM DRIVER
13702 M:      Guenter Roeck <linux@roeck-us.net>
13703 L:      linux-hwmon@vger.kernel.org
13704 S:      Maintained
13705 F:      Documentation/hwmon/nct6775.rst
13706 F:      drivers/hwmon/nct6775-core.c
13707 F:      drivers/hwmon/nct6775-platform.c
13708 F:      drivers/hwmon/nct6775.h
13709
13710 NCT6775 HARDWARE MONITOR DRIVER - I2C DRIVER
13711 M:      Zev Weiss <zev@bewilderbeest.net>
13712 L:      linux-hwmon@vger.kernel.org
13713 S:      Maintained
13714 F:      Documentation/devicetree/bindings/hwmon/nuvoton,nct6775.yaml
13715 F:      drivers/hwmon/nct6775-i2c.c
13716
13717 NETDEVSIM
13718 M:      Jakub Kicinski <kuba@kernel.org>
13719 S:      Maintained
13720 F:      drivers/net/netdevsim/*
13721
13722 NETEM NETWORK EMULATOR
13723 M:      Stephen Hemminger <stephen@networkplumber.org>
13724 L:      netdev@vger.kernel.org
13725 S:      Maintained
13726 F:      net/sched/sch_netem.c
13727
13728 NETERION 10GbE DRIVERS (s2io/vxge)
13729 M:      Jon Mason <jdmason@kudzu.us>
13730 L:      netdev@vger.kernel.org
13731 S:      Supported
13732 F:      Documentation/networking/device_drivers/ethernet/neterion/s2io.rst
13733 F:      Documentation/networking/device_drivers/ethernet/neterion/vxge.rst
13734 F:      drivers/net/ethernet/neterion/
13735
13736 NETFILTER
13737 M:      Pablo Neira Ayuso <pablo@netfilter.org>
13738 M:      Jozsef Kadlecsik <kadlec@netfilter.org>
13739 M:      Florian Westphal <fw@strlen.de>
13740 L:      netfilter-devel@vger.kernel.org
13741 L:      coreteam@netfilter.org
13742 S:      Maintained
13743 W:      http://www.netfilter.org/
13744 W:      http://www.iptables.org/
13745 W:      http://www.nftables.org/
13746 Q:      http://patchwork.ozlabs.org/project/netfilter-devel/list/
13747 C:      irc://irc.libera.chat/netfilter
13748 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netfilter/nf.git
13749 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netfilter/nf-next.git
13750 F:      include/linux/netfilter*
13751 F:      include/linux/netfilter/
13752 F:      include/net/netfilter/
13753 F:      include/uapi/linux/netfilter*
13754 F:      include/uapi/linux/netfilter/
13755 F:      net/*/netfilter.c
13756 F:      net/*/netfilter/
13757 F:      net/bridge/br_netfilter*.c
13758 F:      net/netfilter/
13759
13760 NETROM NETWORK LAYER
13761 M:      Ralf Baechle <ralf@linux-mips.org>
13762 L:      linux-hams@vger.kernel.org
13763 S:      Maintained
13764 W:      http://www.linux-ax25.org/
13765 F:      include/net/netrom.h
13766 F:      include/uapi/linux/netrom.h
13767 F:      net/netrom/
13768
13769 NETRONIX EMBEDDED CONTROLLER
13770 M:      Jonathan Neuschäfer <j.neuschaefer@gmx.net>
13771 S:      Maintained
13772 F:      Documentation/devicetree/bindings/mfd/netronix,ntxec.yaml
13773 F:      drivers/mfd/ntxec.c
13774 F:      drivers/pwm/pwm-ntxec.c
13775 F:      drivers/rtc/rtc-ntxec.c
13776 F:      include/linux/mfd/ntxec.h
13777
13778 NETRONOME ETHERNET DRIVERS
13779 M:      Simon Horman <simon.horman@corigine.com>
13780 R:      Jakub Kicinski <kuba@kernel.org>
13781 L:      oss-drivers@corigine.com
13782 S:      Maintained
13783 F:      drivers/net/ethernet/netronome/
13784
13785 NETWORK BLOCK DEVICE (NBD)
13786 M:      Josef Bacik <josef@toxicpanda.com>
13787 L:      linux-block@vger.kernel.org
13788 L:      nbd@other.debian.org
13789 S:      Maintained
13790 F:      Documentation/admin-guide/blockdev/nbd.rst
13791 F:      drivers/block/nbd.c
13792 F:      include/trace/events/nbd.h
13793 F:      include/uapi/linux/nbd.h
13794
13795 NETWORK DROP MONITOR
13796 M:      Neil Horman <nhorman@tuxdriver.com>
13797 L:      netdev@vger.kernel.org
13798 S:      Maintained
13799 W:      https://fedorahosted.org/dropwatch/
13800 F:      include/uapi/linux/net_dropmon.h
13801 F:      net/core/drop_monitor.c
13802
13803 NETWORKING DRIVERS
13804 M:      "David S. Miller" <davem@davemloft.net>
13805 M:      Eric Dumazet <edumazet@google.com>
13806 M:      Jakub Kicinski <kuba@kernel.org>
13807 M:      Paolo Abeni <pabeni@redhat.com>
13808 L:      netdev@vger.kernel.org
13809 S:      Maintained
13810 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
13811 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
13812 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
13813 F:      Documentation/devicetree/bindings/net/
13814 F:      drivers/connector/
13815 F:      drivers/net/
13816 F:      include/dt-bindings/net/
13817 F:      include/linux/etherdevice.h
13818 F:      include/linux/fcdevice.h
13819 F:      include/linux/fddidevice.h
13820 F:      include/linux/hippidevice.h
13821 F:      include/linux/if_*
13822 F:      include/linux/inetdevice.h
13823 F:      include/linux/netdevice.h
13824 F:      include/uapi/linux/if_*
13825 F:      include/uapi/linux/netdevice.h
13826
13827 NETWORKING DRIVERS (WIRELESS)
13828 M:      Kalle Valo <kvalo@kernel.org>
13829 L:      linux-wireless@vger.kernel.org
13830 S:      Maintained
13831 W:      https://wireless.wiki.kernel.org/
13832 Q:      https://patchwork.kernel.org/project/linux-wireless/list/
13833 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless.git
13834 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless-next.git
13835 F:      Documentation/devicetree/bindings/net/wireless/
13836 F:      drivers/net/wireless/
13837
13838 NETWORKING [DSA]
13839 M:      Andrew Lunn <andrew@lunn.ch>
13840 M:      Vivien Didelot <vivien.didelot@gmail.com>
13841 M:      Florian Fainelli <f.fainelli@gmail.com>
13842 M:      Vladimir Oltean <olteanv@gmail.com>
13843 S:      Maintained
13844 F:      Documentation/devicetree/bindings/net/dsa/
13845 F:      drivers/net/dsa/
13846 F:      include/linux/dsa/
13847 F:      include/linux/platform_data/dsa.h
13848 F:      include/net/dsa.h
13849 F:      net/dsa/
13850 F:      tools/testing/selftests/drivers/net/dsa/
13851
13852 NETWORKING [GENERAL]
13853 M:      "David S. Miller" <davem@davemloft.net>
13854 M:      Eric Dumazet <edumazet@google.com>
13855 M:      Jakub Kicinski <kuba@kernel.org>
13856 M:      Paolo Abeni <pabeni@redhat.com>
13857 L:      netdev@vger.kernel.org
13858 S:      Maintained
13859 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
13860 B:      mailto:netdev@vger.kernel.org
13861 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
13862 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
13863 F:      Documentation/networking/
13864 F:      Documentation/process/maintainer-netdev.rst
13865 F:      include/linux/in.h
13866 F:      include/linux/net.h
13867 F:      include/linux/netdevice.h
13868 F:      include/net/
13869 F:      include/uapi/linux/in.h
13870 F:      include/uapi/linux/net.h
13871 F:      include/uapi/linux/net_namespace.h
13872 F:      include/uapi/linux/netdevice.h
13873 F:      lib/net_utils.c
13874 F:      lib/random32.c
13875 F:      net/
13876 F:      tools/testing/selftests/net/
13877
13878 NETWORKING [IPSEC]
13879 M:      Steffen Klassert <steffen.klassert@secunet.com>
13880 M:      Herbert Xu <herbert@gondor.apana.org.au>
13881 M:      "David S. Miller" <davem@davemloft.net>
13882 L:      netdev@vger.kernel.org
13883 S:      Maintained
13884 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git
13885 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git
13886 F:      include/net/xfrm.h
13887 F:      include/uapi/linux/xfrm.h
13888 F:      net/ipv4/ah4.c
13889 F:      net/ipv4/esp4*
13890 F:      net/ipv4/ip_vti.c
13891 F:      net/ipv4/ipcomp.c
13892 F:      net/ipv4/xfrm*
13893 F:      net/ipv6/ah6.c
13894 F:      net/ipv6/esp6*
13895 F:      net/ipv6/ip6_vti.c
13896 F:      net/ipv6/ipcomp6.c
13897 F:      net/ipv6/xfrm*
13898 F:      net/key/
13899 F:      net/xfrm/
13900 F:      tools/testing/selftests/net/ipsec.c
13901
13902 NETWORKING [IPv4/IPv6]
13903 M:      "David S. Miller" <davem@davemloft.net>
13904 M:      Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
13905 M:      David Ahern <dsahern@kernel.org>
13906 L:      netdev@vger.kernel.org
13907 S:      Maintained
13908 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
13909 F:      arch/x86/net/*
13910 F:      include/linux/ip.h
13911 F:      include/linux/ipv6*
13912 F:      include/net/fib*
13913 F:      include/net/ip*
13914 F:      include/net/route.h
13915 F:      net/ipv4/
13916 F:      net/ipv6/
13917
13918 NETWORKING [LABELED] (NetLabel, Labeled IPsec, SECMARK)
13919 M:      Paul Moore <paul@paul-moore.com>
13920 L:      netdev@vger.kernel.org
13921 L:      linux-security-module@vger.kernel.org
13922 S:      Maintained
13923 W:      https://github.com/netlabel
13924 F:      Documentation/netlabel/
13925 F:      include/net/calipso.h
13926 F:      include/net/cipso_ipv4.h
13927 F:      include/net/netlabel.h
13928 F:      include/uapi/linux/netfilter/xt_CONNSECMARK.h
13929 F:      include/uapi/linux/netfilter/xt_SECMARK.h
13930 F:      net/ipv4/cipso_ipv4.c
13931 F:      net/ipv6/calipso.c
13932 F:      net/netfilter/xt_CONNSECMARK.c
13933 F:      net/netfilter/xt_SECMARK.c
13934 F:      net/netlabel/
13935
13936 NETWORKING [MPTCP]
13937 M:      Mat Martineau <mathew.j.martineau@linux.intel.com>
13938 M:      Matthieu Baerts <matthieu.baerts@tessares.net>
13939 L:      netdev@vger.kernel.org
13940 L:      mptcp@lists.linux.dev
13941 S:      Maintained
13942 W:      https://github.com/multipath-tcp/mptcp_net-next/wiki
13943 B:      https://github.com/multipath-tcp/mptcp_net-next/issues
13944 F:      Documentation/networking/mptcp-sysctl.rst
13945 F:      include/net/mptcp.h
13946 F:      include/trace/events/mptcp.h
13947 F:      include/uapi/linux/mptcp.h
13948 F:      net/mptcp/
13949 F:      tools/testing/selftests/bpf/*/*mptcp*.c
13950 F:      tools/testing/selftests/net/mptcp/
13951
13952 NETWORKING [TCP]
13953 M:      Eric Dumazet <edumazet@google.com>
13954 L:      netdev@vger.kernel.org
13955 S:      Maintained
13956 F:      include/linux/tcp.h
13957 F:      include/net/tcp.h
13958 F:      include/trace/events/tcp.h
13959 F:      include/uapi/linux/tcp.h
13960 F:      net/ipv4/syncookies.c
13961 F:      net/ipv4/tcp*.c
13962 F:      net/ipv6/syncookies.c
13963 F:      net/ipv6/tcp*.c
13964
13965 NETWORKING [TLS]
13966 M:      Boris Pismenny <borisp@nvidia.com>
13967 M:      John Fastabend <john.fastabend@gmail.com>
13968 M:      Daniel Borkmann <daniel@iogearbox.net>
13969 M:      Jakub Kicinski <kuba@kernel.org>
13970 L:      netdev@vger.kernel.org
13971 S:      Maintained
13972 F:      include/net/tls.h
13973 F:      include/uapi/linux/tls.h
13974 F:      net/tls/*
13975
13976 NETXEN (1/10) GbE SUPPORT
13977 M:      Manish Chopra <manishc@marvell.com>
13978 M:      Rahul Verma <rahulv@marvell.com>
13979 M:      GR-Linux-NIC-Dev@marvell.com
13980 L:      netdev@vger.kernel.org
13981 S:      Supported
13982 F:      drivers/net/ethernet/qlogic/netxen/
13983
13984 NET_FAILOVER MODULE
13985 M:      Sridhar Samudrala <sridhar.samudrala@intel.com>
13986 L:      netdev@vger.kernel.org
13987 S:      Supported
13988 F:      Documentation/networking/net_failover.rst
13989 F:      drivers/net/net_failover.c
13990 F:      include/net/net_failover.h
13991
13992 NEXTHOP
13993 M:      David Ahern <dsahern@kernel.org>
13994 L:      netdev@vger.kernel.org
13995 S:      Maintained
13996 F:      include/net/netns/nexthop.h
13997 F:      include/net/nexthop.h
13998 F:      include/uapi/linux/nexthop.h
13999 F:      net/ipv4/nexthop.c
14000
14001 NFC SUBSYSTEM
14002 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
14003 L:      linux-nfc@lists.01.org (subscribers-only)
14004 L:      netdev@vger.kernel.org
14005 S:      Maintained
14006 B:      mailto:linux-nfc@lists.01.org
14007 F:      Documentation/devicetree/bindings/net/nfc/
14008 F:      drivers/nfc/
14009 F:      include/linux/platform_data/nfcmrvl.h
14010 F:      include/net/nfc/
14011 F:      include/uapi/linux/nfc.h
14012 F:      net/nfc/
14013
14014 NFC VIRTUAL NCI DEVICE DRIVER
14015 M:      Bongsu Jeon <bongsu.jeon@samsung.com>
14016 L:      netdev@vger.kernel.org
14017 L:      linux-nfc@lists.01.org (subscribers-only)
14018 S:      Supported
14019 F:      drivers/nfc/virtual_ncidev.c
14020 F:      tools/testing/selftests/nci/
14021
14022 NFS, SUNRPC, AND LOCKD CLIENTS
14023 M:      Trond Myklebust <trond.myklebust@hammerspace.com>
14024 M:      Anna Schumaker <anna@kernel.org>
14025 L:      linux-nfs@vger.kernel.org
14026 S:      Maintained
14027 W:      http://client.linux-nfs.org
14028 T:      git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git
14029 F:      fs/lockd/
14030 F:      fs/nfs/
14031 F:      fs/nfs_common/
14032 F:      include/linux/lockd/
14033 F:      include/linux/nfs*
14034 F:      include/linux/sunrpc/
14035 F:      include/uapi/linux/nfs*
14036 F:      include/uapi/linux/sunrpc/
14037 F:      net/sunrpc/
14038 F:      Documentation/filesystems/nfs/
14039
14040 NILFS2 FILESYSTEM
14041 M:      Ryusuke Konishi <konishi.ryusuke@gmail.com>
14042 L:      linux-nilfs@vger.kernel.org
14043 S:      Supported
14044 W:      https://nilfs.sourceforge.io/
14045 W:      https://nilfs.osdn.jp/
14046 T:      git git://github.com/konis/nilfs2.git
14047 F:      Documentation/filesystems/nilfs2.rst
14048 F:      fs/nilfs2/
14049 F:      include/trace/events/nilfs2.h
14050 F:      include/uapi/linux/nilfs2_api.h
14051 F:      include/uapi/linux/nilfs2_ondisk.h
14052
14053 NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
14054 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
14055 S:      Maintained
14056 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
14057 F:      Documentation/scsi/NinjaSCSI.rst
14058 F:      drivers/scsi/pcmcia/nsp_*
14059
14060 NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
14061 M:      GOTO Masanori <gotom@debian.or.jp>
14062 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
14063 S:      Maintained
14064 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
14065 F:      Documentation/scsi/NinjaSCSI.rst
14066 F:      drivers/scsi/nsp32*
14067
14068 NINTENDO HID DRIVER
14069 M:      Daniel J. Ogorchock <djogorchock@gmail.com>
14070 L:      linux-input@vger.kernel.org
14071 S:      Maintained
14072 F:      drivers/hid/hid-nintendo*
14073
14074 NIOS2 ARCHITECTURE
14075 M:      Dinh Nguyen <dinguyen@kernel.org>
14076 S:      Maintained
14077 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
14078 F:      arch/nios2/
14079
14080 NITRO ENCLAVES (NE)
14081 M:      Andra Paraschiv <andraprs@amazon.com>
14082 M:      Alexandru Vasile <lexnv@amazon.com>
14083 M:      Alexandru Ciobotaru <alcioa@amazon.com>
14084 L:      linux-kernel@vger.kernel.org
14085 S:      Supported
14086 W:      https://aws.amazon.com/ec2/nitro/nitro-enclaves/
14087 F:      Documentation/virt/ne_overview.rst
14088 F:      drivers/virt/nitro_enclaves/
14089 F:      include/linux/nitro_enclaves.h
14090 F:      include/uapi/linux/nitro_enclaves.h
14091 F:      samples/nitro_enclaves/
14092
14093 NOHZ, DYNTICKS SUPPORT
14094 M:      Frederic Weisbecker <fweisbec@gmail.com>
14095 M:      Thomas Gleixner <tglx@linutronix.de>
14096 M:      Ingo Molnar <mingo@kernel.org>
14097 L:      linux-kernel@vger.kernel.org
14098 S:      Maintained
14099 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/nohz
14100 F:      include/linux/sched/nohz.h
14101 F:      include/linux/tick.h
14102 F:      kernel/time/tick*.*
14103
14104 NOKIA N900 CAMERA SUPPORT (ET8EK8 SENSOR, AD5820 FOCUS)
14105 M:      Pavel Machek <pavel@ucw.cz>
14106 M:      Sakari Ailus <sakari.ailus@iki.fi>
14107 L:      linux-media@vger.kernel.org
14108 S:      Maintained
14109 F:      drivers/media/i2c/ad5820.c
14110 F:      drivers/media/i2c/et8ek8
14111
14112 NOKIA N900 POWER SUPPLY DRIVERS
14113 R:      Pali Rohár <pali@kernel.org>
14114 F:      drivers/power/supply/bq2415x_charger.c
14115 F:      drivers/power/supply/bq27xxx_battery.c
14116 F:      drivers/power/supply/bq27xxx_battery_i2c.c
14117 F:      drivers/power/supply/isp1704_charger.c
14118 F:      drivers/power/supply/rx51_battery.c
14119 F:      include/linux/power/bq2415x_charger.h
14120 F:      include/linux/power/bq27xxx_battery.h
14121
14122 NOLIBC HEADER FILE
14123 M:      Willy Tarreau <w@1wt.eu>
14124 S:      Maintained
14125 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wtarreau/nolibc.git
14126 F:      tools/include/nolibc/
14127
14128 NSDEPS
14129 M:      Matthias Maennich <maennich@google.com>
14130 S:      Maintained
14131 F:      Documentation/core-api/symbol-namespaces.rst
14132 F:      scripts/nsdeps
14133
14134 NTB AMD DRIVER
14135 M:      Sanjay R Mehta <sanju.mehta@amd.com>
14136 M:      Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
14137 L:      ntb@lists.linux.dev
14138 S:      Supported
14139 F:      drivers/ntb/hw/amd/
14140
14141 NTB DRIVER CORE
14142 M:      Jon Mason <jdmason@kudzu.us>
14143 M:      Dave Jiang <dave.jiang@intel.com>
14144 M:      Allen Hubbe <allenbh@gmail.com>
14145 L:      ntb@lists.linux.dev
14146 S:      Supported
14147 W:      https://github.com/jonmason/ntb/wiki
14148 T:      git git://github.com/jonmason/ntb.git
14149 F:      drivers/net/ntb_netdev.c
14150 F:      drivers/ntb/
14151 F:      include/linux/ntb.h
14152 F:      include/linux/ntb_transport.h
14153 F:      tools/testing/selftests/ntb/
14154
14155 NTB IDT DRIVER
14156 M:      Serge Semin <fancer.lancer@gmail.com>
14157 L:      ntb@lists.linux.dev
14158 S:      Supported
14159 F:      drivers/ntb/hw/idt/
14160
14161 NTB INTEL DRIVER
14162 M:      Dave Jiang <dave.jiang@intel.com>
14163 L:      ntb@lists.linux.dev
14164 S:      Supported
14165 W:      https://github.com/davejiang/linux/wiki
14166 T:      git https://github.com/davejiang/linux.git
14167 F:      drivers/ntb/hw/intel/
14168
14169 NTFS FILESYSTEM
14170 M:      Anton Altaparmakov <anton@tuxera.com>
14171 L:      linux-ntfs-dev@lists.sourceforge.net
14172 S:      Supported
14173 W:      http://www.tuxera.com/
14174 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
14175 F:      Documentation/filesystems/ntfs.rst
14176 F:      fs/ntfs/
14177
14178 NTFS3 FILESYSTEM
14179 M:      Konstantin Komarov <almaz.alexandrovich@paragon-software.com>
14180 L:      ntfs3@lists.linux.dev
14181 S:      Supported
14182 W:      http://www.paragon-software.com/
14183 T:      git https://github.com/Paragon-Software-Group/linux-ntfs3.git
14184 F:      Documentation/filesystems/ntfs3.rst
14185 F:      fs/ntfs3/
14186
14187 NUBUS SUBSYSTEM
14188 M:      Finn Thain <fthain@linux-m68k.org>
14189 L:      linux-m68k@lists.linux-m68k.org
14190 S:      Maintained
14191 F:      arch/*/include/asm/nubus.h
14192 F:      drivers/nubus/
14193 F:      include/linux/nubus.h
14194 F:      include/uapi/linux/nubus.h
14195
14196 NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
14197 M:      Antonino Daplas <adaplas@gmail.com>
14198 L:      linux-fbdev@vger.kernel.org
14199 S:      Maintained
14200 F:      drivers/video/fbdev/nvidia/
14201 F:      drivers/video/fbdev/riva/
14202
14203 NVIDIA WMI EC BACKLIGHT DRIVER
14204 M:      Daniel Dadap <ddadap@nvidia.com>
14205 L:      platform-driver-x86@vger.kernel.org
14206 S:      Supported
14207 F:      drivers/platform/x86/nvidia-wmi-ec-backlight.c
14208
14209 NVM EXPRESS DRIVER
14210 M:      Keith Busch <kbusch@kernel.org>
14211 M:      Jens Axboe <axboe@fb.com>
14212 M:      Christoph Hellwig <hch@lst.de>
14213 M:      Sagi Grimberg <sagi@grimberg.me>
14214 L:      linux-nvme@lists.infradead.org
14215 S:      Supported
14216 W:      http://git.infradead.org/nvme.git
14217 T:      git://git.infradead.org/nvme.git
14218 F:      drivers/nvme/host/
14219 F:      include/linux/nvme.h
14220 F:      include/uapi/linux/nvme_ioctl.h
14221
14222 NVM EXPRESS FC TRANSPORT DRIVERS
14223 M:      James Smart <james.smart@broadcom.com>
14224 L:      linux-nvme@lists.infradead.org
14225 S:      Supported
14226 F:      drivers/nvme/host/fc.c
14227 F:      drivers/nvme/target/fc.c
14228 F:      drivers/nvme/target/fcloop.c
14229 F:      include/linux/nvme-fc-driver.h
14230 F:      include/linux/nvme-fc.h
14231
14232 NVM EXPRESS TARGET DRIVER
14233 M:      Christoph Hellwig <hch@lst.de>
14234 M:      Sagi Grimberg <sagi@grimberg.me>
14235 M:      Chaitanya Kulkarni <kch@nvidia.com>
14236 L:      linux-nvme@lists.infradead.org
14237 S:      Supported
14238 W:      http://git.infradead.org/nvme.git
14239 T:      git://git.infradead.org/nvme.git
14240 F:      drivers/nvme/target/
14241
14242 NVMEM FRAMEWORK
14243 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
14244 S:      Maintained
14245 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/srini/nvmem.git
14246 F:      Documentation/ABI/stable/sysfs-bus-nvmem
14247 F:      Documentation/devicetree/bindings/nvmem/
14248 F:      drivers/nvmem/
14249 F:      include/linux/nvmem-consumer.h
14250 F:      include/linux/nvmem-provider.h
14251
14252 NXP C45 TJA11XX PHY DRIVER
14253 M:      Radu Pirea <radu-nicolae.pirea@oss.nxp.com>
14254 L:      netdev@vger.kernel.org
14255 S:      Maintained
14256 F:      drivers/net/phy/nxp-c45-tja11xx.c
14257
14258 NXP FSPI DRIVER
14259 M:      Ashish Kumar <ashish.kumar@nxp.com>
14260 R:      Yogesh Gaur <yogeshgaur.83@gmail.com>
14261 L:      linux-spi@vger.kernel.org
14262 S:      Maintained
14263 F:      Documentation/devicetree/bindings/spi/spi-nxp-fspi.yaml
14264 F:      drivers/spi/spi-nxp-fspi.c
14265
14266 NXP FXAS21002C DRIVER
14267 M:      Rui Miguel Silva <rmfrfs@gmail.com>
14268 L:      linux-iio@vger.kernel.org
14269 S:      Maintained
14270 F:      Documentation/devicetree/bindings/iio/gyroscope/nxp,fxas21002c.yaml
14271 F:      drivers/iio/gyro/fxas21002c.h
14272 F:      drivers/iio/gyro/fxas21002c_core.c
14273 F:      drivers/iio/gyro/fxas21002c_i2c.c
14274 F:      drivers/iio/gyro/fxas21002c_spi.c
14275
14276 NXP i.MX CLOCK DRIVERS
14277 M:      Abel Vesa <abel.vesa@nxp.com>
14278 L:      linux-clk@vger.kernel.org
14279 L:      linux-imx@nxp.com
14280 S:      Maintained
14281 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/abelvesa/linux.git clk/imx
14282 F:      Documentation/devicetree/bindings/clock/imx*
14283 F:      drivers/clk/imx/
14284 F:      include/dt-bindings/clock/imx*
14285
14286 NXP i.MX 8MQ DCSS DRIVER
14287 M:      Laurentiu Palcu <laurentiu.palcu@oss.nxp.com>
14288 R:      Lucas Stach <l.stach@pengutronix.de>
14289 L:      dri-devel@lists.freedesktop.org
14290 S:      Maintained
14291 F:      Documentation/devicetree/bindings/display/imx/nxp,imx8mq-dcss.yaml
14292 F:      drivers/gpu/drm/imx/dcss/
14293
14294 NXP i.MX 8QXP ADC DRIVER
14295 M:      Cai Huoqing <cai.huoqing@linux.dev>
14296 M:      Haibo Chen <haibo.chen@nxp.com>
14297 L:      linux-imx@nxp.com
14298 L:      linux-iio@vger.kernel.org
14299 S:      Maintained
14300 F:      Documentation/devicetree/bindings/iio/adc/nxp,imx8qxp-adc.yaml
14301 F:      drivers/iio/adc/imx8qxp-adc.c
14302
14303 NXP i.MX 7D/6SX/6UL AND VF610 ADC DRIVER
14304 M:      Haibo Chen <haibo.chen@nxp.com>
14305 L:      linux-iio@vger.kernel.org
14306 L:      linux-imx@nxp.com
14307 S:      Maintained
14308 F:      Documentation/devicetree/bindings/iio/adc/fsl,imx7d-adc.yaml
14309 F:      Documentation/devicetree/bindings/iio/adc/fsl,vf610-adc.yaml
14310 F:      drivers/iio/adc/imx7d_adc.c
14311 F:      drivers/iio/adc/vf610_adc.c
14312
14313 NXP PF8100/PF8121A/PF8200 PMIC REGULATOR DEVICE DRIVER
14314 M:      Jagan Teki <jagan@amarulasolutions.com>
14315 S:      Maintained
14316 F:      Documentation/devicetree/bindings/regulator/nxp,pf8x00-regulator.yaml
14317 F:      drivers/regulator/pf8x00-regulator.c
14318
14319 NXP PTN5150A CC LOGIC AND EXTCON DRIVER
14320 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
14321 L:      linux-kernel@vger.kernel.org
14322 S:      Maintained
14323 F:      Documentation/devicetree/bindings/extcon/extcon-ptn5150.yaml
14324 F:      drivers/extcon/extcon-ptn5150.c
14325
14326 NXP SGTL5000 DRIVER
14327 M:      Fabio Estevam <festevam@gmail.com>
14328 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
14329 S:      Maintained
14330 F:      Documentation/devicetree/bindings/sound/sgtl5000.yaml
14331 F:      sound/soc/codecs/sgtl5000*
14332
14333 NXP SJA1105 ETHERNET SWITCH DRIVER
14334 M:      Vladimir Oltean <olteanv@gmail.com>
14335 L:      linux-kernel@vger.kernel.org
14336 S:      Maintained
14337 F:      drivers/net/dsa/sja1105
14338 F:      drivers/net/pcs/pcs-xpcs-nxp.c
14339
14340 NXP TDA998X DRM DRIVER
14341 M:      Russell King <linux@armlinux.org.uk>
14342 S:      Maintained
14343 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-devel
14344 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-fixes
14345 F:      drivers/gpu/drm/i2c/tda998x_drv.c
14346 F:      include/drm/i2c/tda998x.h
14347 F:      include/dt-bindings/display/tda998x.h
14348 K:      "nxp,tda998x"
14349
14350 NXP TFA9879 DRIVER
14351 M:      Peter Rosin <peda@axentia.se>
14352 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
14353 S:      Maintained
14354 F:      Documentation/devicetree/bindings/sound/tfa9879.txt
14355 F:      sound/soc/codecs/tfa9879*
14356
14357 NXP/Goodix TFA989X (TFA1) DRIVER
14358 M:      Stephan Gerhold <stephan@gerhold.net>
14359 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
14360 S:      Maintained
14361 F:      Documentation/devicetree/bindings/sound/nxp,tfa989x.yaml
14362 F:      sound/soc/codecs/tfa989x.c
14363
14364 NXP-NCI NFC DRIVER
14365 R:      Charles Gorand <charles.gorand@effinnov.com>
14366 L:      linux-nfc@lists.01.org (subscribers-only)
14367 S:      Supported
14368 F:      Documentation/devicetree/bindings/net/nfc/nxp,nci.yaml
14369 F:      drivers/nfc/nxp-nci
14370
14371 NXP i.MX 8QXP/8QM JPEG V4L2 DRIVER
14372 M:      Mirela Rabulea <mirela.rabulea@nxp.com>
14373 R:      NXP Linux Team <linux-imx@nxp.com>
14374 L:      linux-media@vger.kernel.org
14375 S:      Maintained
14376 F:      Documentation/devicetree/bindings/media/nxp,imx8-jpeg.yaml
14377 F:      drivers/media/platform/nxp/imx-jpeg
14378
14379 NZXT-KRAKEN2 HARDWARE MONITORING DRIVER
14380 M:      Jonas Malaco <jonas@protocubo.io>
14381 L:      linux-hwmon@vger.kernel.org
14382 S:      Maintained
14383 F:      Documentation/hwmon/nzxt-kraken2.rst
14384 F:      drivers/hwmon/nzxt-kraken2.c
14385
14386 NZXT-SMART2 HARDWARE MONITORING DRIVER
14387 M:      Aleksandr Mezin <mezin.alexander@gmail.com>
14388 L:      linux-hwmon@vger.kernel.org
14389 S:      Maintained
14390 F:      Documentation/hwmon/nzxt-smart2.rst
14391 F:      drivers/hwmon/nzxt-smart2.c
14392
14393 OBJAGG
14394 M:      Jiri Pirko <jiri@nvidia.com>
14395 L:      netdev@vger.kernel.org
14396 S:      Supported
14397 F:      include/linux/objagg.h
14398 F:      lib/objagg.c
14399 F:      lib/test_objagg.c
14400
14401 OBJTOOL
14402 M:      Josh Poimboeuf <jpoimboe@kernel.org>
14403 M:      Peter Zijlstra <peterz@infradead.org>
14404 S:      Supported
14405 F:      tools/objtool/
14406 F:      include/linux/objtool.h
14407
14408 OCELOT ETHERNET SWITCH DRIVER
14409 M:      Vladimir Oltean <vladimir.oltean@nxp.com>
14410 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
14411 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
14412 M:      UNGLinuxDriver@microchip.com
14413 L:      netdev@vger.kernel.org
14414 S:      Supported
14415 F:      drivers/net/dsa/ocelot/*
14416 F:      drivers/net/ethernet/mscc/
14417 F:      include/soc/mscc/ocelot*
14418 F:      net/dsa/tag_ocelot.c
14419 F:      net/dsa/tag_ocelot_8021q.c
14420 F:      tools/testing/selftests/drivers/net/ocelot/*
14421
14422 OCXL (Open Coherent Accelerator Processor Interface OpenCAPI) DRIVER
14423 M:      Frederic Barrat <fbarrat@linux.ibm.com>
14424 M:      Andrew Donnellan <ajd@linux.ibm.com>
14425 L:      linuxppc-dev@lists.ozlabs.org
14426 S:      Supported
14427 F:      Documentation/userspace-api/accelerators/ocxl.rst
14428 F:      arch/powerpc/include/asm/pnv-ocxl.h
14429 F:      arch/powerpc/platforms/powernv/ocxl.c
14430 F:      drivers/misc/ocxl/
14431 F:      include/misc/ocxl*
14432 F:      include/uapi/misc/ocxl.h
14433
14434 OMAP AUDIO SUPPORT
14435 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
14436 M:      Jarkko Nikula <jarkko.nikula@bitmer.com>
14437 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
14438 L:      linux-omap@vger.kernel.org
14439 S:      Maintained
14440 F:      sound/soc/ti/n810.c
14441 F:      sound/soc/ti/omap*
14442 F:      sound/soc/ti/rx51.c
14443 F:      sound/soc/ti/sdma-pcm.*
14444
14445 OMAP CLOCK FRAMEWORK SUPPORT
14446 M:      Paul Walmsley <paul@pwsan.com>
14447 L:      linux-omap@vger.kernel.org
14448 S:      Maintained
14449 F:      arch/arm/*omap*/*clock*
14450
14451 OMAP DEVICE TREE SUPPORT
14452 M:      Benoît Cousson <bcousson@baylibre.com>
14453 M:      Tony Lindgren <tony@atomide.com>
14454 L:      linux-omap@vger.kernel.org
14455 L:      devicetree@vger.kernel.org
14456 S:      Maintained
14457 F:      arch/arm/boot/dts/*am3*
14458 F:      arch/arm/boot/dts/*am4*
14459 F:      arch/arm/boot/dts/*am5*
14460 F:      arch/arm/boot/dts/*dra7*
14461 F:      arch/arm/boot/dts/*omap*
14462 F:      arch/arm/boot/dts/logicpd-som-lv*
14463 F:      arch/arm/boot/dts/logicpd-torpedo*
14464
14465 OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
14466 L:      linux-omap@vger.kernel.org
14467 L:      linux-fbdev@vger.kernel.org
14468 S:      Orphan
14469 F:      Documentation/arm/omap/dss.rst
14470 F:      drivers/video/fbdev/omap2/
14471
14472 OMAP FRAMEBUFFER SUPPORT
14473 L:      linux-fbdev@vger.kernel.org
14474 L:      linux-omap@vger.kernel.org
14475 S:      Orphan
14476 F:      drivers/video/fbdev/omap/
14477
14478 OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT
14479 M:      Roger Quadros <rogerq@kernel.org>
14480 M:      Tony Lindgren <tony@atomide.com>
14481 L:      linux-omap@vger.kernel.org
14482 S:      Maintained
14483 F:      arch/arm/mach-omap2/*gpmc*
14484 F:      drivers/memory/omap-gpmc.c
14485
14486 OMAP GPIO DRIVER
14487 M:      Grygorii Strashko <grygorii.strashko@ti.com>
14488 M:      Santosh Shilimkar <ssantosh@kernel.org>
14489 M:      Kevin Hilman <khilman@kernel.org>
14490 L:      linux-omap@vger.kernel.org
14491 S:      Maintained
14492 F:      Documentation/devicetree/bindings/gpio/ti,omap-gpio.yaml
14493 F:      drivers/gpio/gpio-omap.c
14494
14495 OMAP HARDWARE SPINLOCK SUPPORT
14496 M:      Ohad Ben-Cohen <ohad@wizery.com>
14497 L:      linux-omap@vger.kernel.org
14498 S:      Maintained
14499 F:      drivers/hwspinlock/omap_hwspinlock.c
14500
14501 OMAP HS MMC SUPPORT
14502 L:      linux-mmc@vger.kernel.org
14503 L:      linux-omap@vger.kernel.org
14504 S:      Orphan
14505 F:      drivers/mmc/host/omap_hsmmc.c
14506
14507 OMAP HWMOD DATA
14508 M:      Paul Walmsley <paul@pwsan.com>
14509 L:      linux-omap@vger.kernel.org
14510 S:      Maintained
14511 F:      arch/arm/mach-omap2/omap_hwmod*data*
14512
14513 OMAP HWMOD SUPPORT
14514 M:      Benoît Cousson <bcousson@baylibre.com>
14515 M:      Paul Walmsley <paul@pwsan.com>
14516 L:      linux-omap@vger.kernel.org
14517 S:      Maintained
14518 F:      arch/arm/mach-omap2/omap_hwmod.*
14519
14520 OMAP I2C DRIVER
14521 M:      Vignesh R <vigneshr@ti.com>
14522 L:      linux-omap@vger.kernel.org
14523 L:      linux-i2c@vger.kernel.org
14524 S:      Maintained
14525 F:      Documentation/devicetree/bindings/i2c/ti,omap4-i2c.yaml
14526 F:      drivers/i2c/busses/i2c-omap.c
14527
14528 OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS)
14529 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
14530 L:      linux-media@vger.kernel.org
14531 S:      Maintained
14532 F:      Documentation/devicetree/bindings/media/ti,omap3isp.txt
14533 F:      drivers/media/platform/ti/omap3isp/
14534 F:      drivers/staging/media/omap4iss/
14535
14536 OMAP MMC SUPPORT
14537 M:      Aaro Koskinen <aaro.koskinen@iki.fi>
14538 L:      linux-omap@vger.kernel.org
14539 S:      Odd Fixes
14540 F:      drivers/mmc/host/omap.c
14541
14542 OMAP POWER MANAGEMENT SUPPORT
14543 M:      Kevin Hilman <khilman@kernel.org>
14544 L:      linux-omap@vger.kernel.org
14545 S:      Maintained
14546 F:      arch/arm/*omap*/*pm*
14547 F:      drivers/cpufreq/omap-cpufreq.c
14548
14549 OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT
14550 M:      Paul Walmsley <paul@pwsan.com>
14551 L:      linux-omap@vger.kernel.org
14552 S:      Maintained
14553 F:      arch/arm/mach-omap2/prm*
14554
14555 OMAP RANDOM NUMBER GENERATOR SUPPORT
14556 M:      Deepak Saxena <dsaxena@plexity.net>
14557 S:      Maintained
14558 F:      drivers/char/hw_random/omap-rng.c
14559
14560 OMAP USB SUPPORT
14561 L:      linux-usb@vger.kernel.org
14562 L:      linux-omap@vger.kernel.org
14563 S:      Orphan
14564 F:      arch/arm/*omap*/usb*
14565 F:      drivers/usb/*/*omap*
14566
14567 OMAP/NEWFLOW NANOBONE MACHINE SUPPORT
14568 M:      Mark Jackson <mpfj@newflow.co.uk>
14569 L:      linux-omap@vger.kernel.org
14570 S:      Maintained
14571 F:      arch/arm/boot/dts/am335x-nano.dts
14572
14573 OMAP1 SUPPORT
14574 M:      Aaro Koskinen <aaro.koskinen@iki.fi>
14575 M:      Janusz Krzysztofik <jmkrzyszt@gmail.com>
14576 M:      Tony Lindgren <tony@atomide.com>
14577 L:      linux-omap@vger.kernel.org
14578 S:      Maintained
14579 Q:      http://patchwork.kernel.org/project/linux-omap/list/
14580 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
14581 F:      arch/arm/configs/omap1_defconfig
14582 F:      arch/arm/mach-omap1/
14583 F:      arch/arm/plat-omap/
14584 F:      drivers/i2c/busses/i2c-omap.c
14585 F:      include/linux/platform_data/ams-delta-fiq.h
14586 F:      include/linux/platform_data/i2c-omap.h
14587
14588 OMAP2+ SUPPORT
14589 M:      Tony Lindgren <tony@atomide.com>
14590 L:      linux-omap@vger.kernel.org
14591 S:      Maintained
14592 W:      http://www.muru.com/linux/omap/
14593 W:      http://linux.omap.com/
14594 Q:      http://patchwork.kernel.org/project/linux-omap/list/
14595 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
14596 F:      arch/arm/configs/omap2plus_defconfig
14597 F:      arch/arm/mach-omap2/
14598 F:      arch/arm/plat-omap/
14599 F:      drivers/bus/ti-sysc.c
14600 F:      drivers/i2c/busses/i2c-omap.c
14601 F:      drivers/irqchip/irq-omap-intc.c
14602 F:      drivers/mfd/*omap*.c
14603 F:      drivers/mfd/menelaus.c
14604 F:      drivers/mfd/palmas.c
14605 F:      drivers/mfd/tps65217.c
14606 F:      drivers/mfd/tps65218.c
14607 F:      drivers/mfd/tps65910.c
14608 F:      drivers/mfd/twl-core.[ch]
14609 F:      drivers/mfd/twl4030*.c
14610 F:      drivers/mfd/twl6030*.c
14611 F:      drivers/mfd/twl6040*.c
14612 F:      drivers/regulator/palmas-regulator*.c
14613 F:      drivers/regulator/pbias-regulator.c
14614 F:      drivers/regulator/tps65217-regulator.c
14615 F:      drivers/regulator/tps65218-regulator.c
14616 F:      drivers/regulator/tps65910-regulator.c
14617 F:      drivers/regulator/twl-regulator.c
14618 F:      drivers/regulator/twl6030-regulator.c
14619 F:      include/linux/platform_data/i2c-omap.h
14620 F:      include/linux/platform_data/ti-sysc.h
14621
14622 OMFS FILESYSTEM
14623 M:      Bob Copeland <me@bobcopeland.com>
14624 L:      linux-karma-devel@lists.sourceforge.net
14625 S:      Maintained
14626 F:      Documentation/filesystems/omfs.rst
14627 F:      fs/omfs/
14628
14629 OMNIKEY CARDMAN 4000 DRIVER
14630 M:      Harald Welte <laforge@gnumonks.org>
14631 S:      Maintained
14632 F:      drivers/char/pcmcia/cm4000_cs.c
14633 F:      include/linux/cm4000_cs.h
14634 F:      include/uapi/linux/cm4000_cs.h
14635
14636 OMNIKEY CARDMAN 4040 DRIVER
14637 M:      Harald Welte <laforge@gnumonks.org>
14638 S:      Maintained
14639 F:      drivers/char/pcmcia/cm4040_cs.*
14640
14641 OMNIVISION OG01A1B SENSOR DRIVER
14642 M:      Shawn Tu <shawnx.tu@intel.com>
14643 L:      linux-media@vger.kernel.org
14644 S:      Maintained
14645 F:      drivers/media/i2c/og01a1b.c
14646
14647 OMNIVISION OV02A10 SENSOR DRIVER
14648 M:      Dongchun Zhu <dongchun.zhu@mediatek.com>
14649 L:      linux-media@vger.kernel.org
14650 S:      Maintained
14651 T:      git git://linuxtv.org/media_tree.git
14652 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov02a10.yaml
14653 F:      drivers/media/i2c/ov02a10.c
14654
14655 OMNIVISION OV08D10 SENSOR DRIVER
14656 M:      Jimmy Su <jimmy.su@intel.com>
14657 L:      linux-media@vger.kernel.org
14658 S:      Maintained
14659 T:      git git://linuxtv.org/media_tree.git
14660 F:      drivers/media/i2c/ov08d10.c
14661
14662 OMNIVISION OV13858 SENSOR DRIVER
14663 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
14664 L:      linux-media@vger.kernel.org
14665 S:      Maintained
14666 T:      git git://linuxtv.org/media_tree.git
14667 F:      drivers/media/i2c/ov13858.c
14668
14669 OMNIVISION OV13B10 SENSOR DRIVER
14670 M:      Arec Kao <arec.kao@intel.com>
14671 L:      linux-media@vger.kernel.org
14672 S:      Maintained
14673 T:      git git://linuxtv.org/media_tree.git
14674 F:      drivers/media/i2c/ov13b10.c
14675
14676 OMNIVISION OV2680 SENSOR DRIVER
14677 M:      Rui Miguel Silva <rmfrfs@gmail.com>
14678 L:      linux-media@vger.kernel.org
14679 S:      Maintained
14680 T:      git git://linuxtv.org/media_tree.git
14681 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov2680.yaml
14682 F:      drivers/media/i2c/ov2680.c
14683
14684 OMNIVISION OV2685 SENSOR DRIVER
14685 M:      Shunqian Zheng <zhengsq@rock-chips.com>
14686 L:      linux-media@vger.kernel.org
14687 S:      Maintained
14688 T:      git git://linuxtv.org/media_tree.git
14689 F:      drivers/media/i2c/ov2685.c
14690
14691 OMNIVISION OV2740 SENSOR DRIVER
14692 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
14693 R:      Shawn Tu <shawnx.tu@intel.com>
14694 R:      Bingbu Cao <bingbu.cao@intel.com>
14695 L:      linux-media@vger.kernel.org
14696 S:      Maintained
14697 T:      git git://linuxtv.org/media_tree.git
14698 F:      drivers/media/i2c/ov2740.c
14699
14700 OMNIVISION OV5640 SENSOR DRIVER
14701 M:      Steve Longerbeam <slongerbeam@gmail.com>
14702 L:      linux-media@vger.kernel.org
14703 S:      Maintained
14704 T:      git git://linuxtv.org/media_tree.git
14705 F:      drivers/media/i2c/ov5640.c
14706
14707 OMNIVISION OV5647 SENSOR DRIVER
14708 M:      Dave Stevenson <dave.stevenson@raspberrypi.com>
14709 M:      Jacopo Mondi <jacopo@jmondi.org>
14710 L:      linux-media@vger.kernel.org
14711 S:      Maintained
14712 T:      git git://linuxtv.org/media_tree.git
14713 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov5647.yaml
14714 F:      drivers/media/i2c/ov5647.c
14715
14716 OMNIVISION OV5670 SENSOR DRIVER
14717 M:      Chiranjeevi Rapolu <chiranjeevi.rapolu@intel.com>
14718 L:      linux-media@vger.kernel.org
14719 S:      Maintained
14720 T:      git git://linuxtv.org/media_tree.git
14721 F:      drivers/media/i2c/ov5670.c
14722
14723 OMNIVISION OV5675 SENSOR DRIVER
14724 M:      Shawn Tu <shawnx.tu@intel.com>
14725 L:      linux-media@vger.kernel.org
14726 S:      Maintained
14727 T:      git git://linuxtv.org/media_tree.git
14728 F:      drivers/media/i2c/ov5675.c
14729
14730 OMNIVISION OV5693 SENSOR DRIVER
14731 M:      Daniel Scally <djrscally@gmail.com>
14732 L:      linux-media@vger.kernel.org
14733 S:      Maintained
14734 T:      git git://linuxtv.org/media_tree.git
14735 F:      drivers/media/i2c/ov5693.c
14736
14737 OMNIVISION OV5695 SENSOR DRIVER
14738 M:      Shunqian Zheng <zhengsq@rock-chips.com>
14739 L:      linux-media@vger.kernel.org
14740 S:      Maintained
14741 T:      git git://linuxtv.org/media_tree.git
14742 F:      drivers/media/i2c/ov5695.c
14743
14744 OMNIVISION OV7670 SENSOR DRIVER
14745 L:      linux-media@vger.kernel.org
14746 S:      Orphan
14747 T:      git git://linuxtv.org/media_tree.git
14748 F:      Documentation/devicetree/bindings/media/i2c/ov7670.txt
14749 F:      drivers/media/i2c/ov7670.c
14750
14751 OMNIVISION OV772x SENSOR DRIVER
14752 M:      Jacopo Mondi <jacopo@jmondi.org>
14753 L:      linux-media@vger.kernel.org
14754 S:      Odd fixes
14755 T:      git git://linuxtv.org/media_tree.git
14756 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov772x.yaml
14757 F:      drivers/media/i2c/ov772x.c
14758 F:      include/media/i2c/ov772x.h
14759
14760 OMNIVISION OV7740 SENSOR DRIVER
14761 M:      Wenyou Yang <wenyou.yang@microchip.com>
14762 L:      linux-media@vger.kernel.org
14763 S:      Maintained
14764 T:      git git://linuxtv.org/media_tree.git
14765 F:      Documentation/devicetree/bindings/media/i2c/ov7740.txt
14766 F:      drivers/media/i2c/ov7740.c
14767
14768 OMNIVISION OV8856 SENSOR DRIVER
14769 M:      Dongchun Zhu <dongchun.zhu@mediatek.com>
14770 L:      linux-media@vger.kernel.org
14771 S:      Maintained
14772 T:      git git://linuxtv.org/media_tree.git
14773 F:      Documentation/devicetree/bindings/media/i2c/ov8856.yaml
14774 F:      drivers/media/i2c/ov8856.c
14775
14776 OMNIVISION OV9282 SENSOR DRIVER
14777 M:      Paul J. Murphy <paul.j.murphy@intel.com>
14778 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
14779 L:      linux-media@vger.kernel.org
14780 S:      Maintained
14781 T:      git git://linuxtv.org/media_tree.git
14782 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov9282.yaml
14783 F:      drivers/media/i2c/ov9282.c
14784
14785 OMNIVISION OV9640 SENSOR DRIVER
14786 M:      Petr Cvek <petrcvekcz@gmail.com>
14787 L:      linux-media@vger.kernel.org
14788 S:      Maintained
14789 F:      drivers/media/i2c/ov9640.*
14790
14791 OMNIVISION OV9650 SENSOR DRIVER
14792 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
14793 R:      Akinobu Mita <akinobu.mita@gmail.com>
14794 R:      Sylwester Nawrocki <s.nawrocki@samsung.com>
14795 L:      linux-media@vger.kernel.org
14796 S:      Maintained
14797 T:      git git://linuxtv.org/media_tree.git
14798 F:      Documentation/devicetree/bindings/media/i2c/ov9650.txt
14799 F:      drivers/media/i2c/ov9650.c
14800
14801 OMNIVISION OV9734 SENSOR DRIVER
14802 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
14803 R:      Bingbu Cao <bingbu.cao@intel.com>
14804 L:      linux-media@vger.kernel.org
14805 S:      Maintained
14806 T:      git git://linuxtv.org/media_tree.git
14807 F:      drivers/media/i2c/ov9734.c
14808
14809 ONENAND FLASH DRIVER
14810 M:      Kyungmin Park <kyungmin.park@samsung.com>
14811 L:      linux-mtd@lists.infradead.org
14812 S:      Maintained
14813 F:      drivers/mtd/nand/onenand/
14814 F:      include/linux/mtd/onenand*.h
14815
14816 ONION OMEGA2+ BOARD
14817 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
14818 L:      linux-mips@vger.kernel.org
14819 S:      Maintained
14820 F:      arch/mips/boot/dts/ralink/omega2p.dts
14821
14822 OP-TEE DRIVER
14823 M:      Jens Wiklander <jens.wiklander@linaro.org>
14824 L:      op-tee@lists.trustedfirmware.org
14825 S:      Maintained
14826 F:      Documentation/ABI/testing/sysfs-bus-optee-devices
14827 F:      drivers/tee/optee/
14828
14829 OP-TEE RANDOM NUMBER GENERATOR (RNG) DRIVER
14830 M:      Sumit Garg <sumit.garg@linaro.org>
14831 L:      op-tee@lists.trustedfirmware.org
14832 S:      Maintained
14833 F:      drivers/char/hw_random/optee-rng.c
14834
14835 OP-TEE RTC DRIVER
14836 M:      Clément Léger <clement.leger@bootlin.com>
14837 L:      linux-rtc@vger.kernel.org
14838 S:      Maintained
14839 F:      drivers/rtc/rtc-optee.c
14840
14841 OPA-VNIC DRIVER
14842 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
14843 L:      linux-rdma@vger.kernel.org
14844 S:      Supported
14845 F:      drivers/infiniband/ulp/opa_vnic
14846
14847 OPEN FIRMWARE AND DEVICE TREE OVERLAYS
14848 M:      Pantelis Antoniou <pantelis.antoniou@konsulko.com>
14849 M:      Frank Rowand <frowand.list@gmail.com>
14850 L:      devicetree@vger.kernel.org
14851 S:      Maintained
14852 F:      Documentation/devicetree/dynamic-resolution-notes.rst
14853 F:      Documentation/devicetree/overlay-notes.rst
14854 F:      drivers/of/overlay.c
14855 F:      drivers/of/resolver.c
14856 K:      of_overlay_notifier_
14857
14858 OPEN FIRMWARE AND FLATTENED DEVICE TREE
14859 M:      Rob Herring <robh+dt@kernel.org>
14860 M:      Frank Rowand <frowand.list@gmail.com>
14861 L:      devicetree@vger.kernel.org
14862 S:      Maintained
14863 C:      irc://irc.libera.chat/devicetree
14864 W:      http://www.devicetree.org/
14865 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
14866 F:      Documentation/ABI/testing/sysfs-firmware-ofw
14867 F:      drivers/of/
14868 F:      include/linux/of*.h
14869 F:      scripts/dtc/
14870
14871 OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
14872 M:      Rob Herring <robh+dt@kernel.org>
14873 M:      Krzysztof Kozlowski <krzysztof.kozlowski+dt@linaro.org>
14874 L:      devicetree@vger.kernel.org
14875 S:      Maintained
14876 C:      irc://irc.libera.chat/devicetree
14877 Q:      http://patchwork.ozlabs.org/project/devicetree-bindings/list/
14878 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
14879 F:      Documentation/devicetree/
14880 F:      arch/*/boot/dts/
14881 F:      include/dt-bindings/
14882
14883 OPENCOMPUTE PTP CLOCK DRIVER
14884 M:      Jonathan Lemon <jonathan.lemon@gmail.com>
14885 L:      netdev@vger.kernel.org
14886 S:      Maintained
14887 F:      drivers/ptp/ptp_ocp.c
14888
14889 OPENCORES I2C BUS DRIVER
14890 M:      Peter Korsgaard <peter@korsgaard.com>
14891 M:      Andrew Lunn <andrew@lunn.ch>
14892 L:      linux-i2c@vger.kernel.org
14893 S:      Maintained
14894 F:      Documentation/devicetree/bindings/i2c/i2c-ocores.txt
14895 F:      Documentation/i2c/busses/i2c-ocores.rst
14896 F:      drivers/i2c/busses/i2c-ocores.c
14897 F:      include/linux/platform_data/i2c-ocores.h
14898
14899 OPENRISC ARCHITECTURE
14900 M:      Jonas Bonn <jonas@southpole.se>
14901 M:      Stefan Kristiansson <stefan.kristiansson@saunalahti.fi>
14902 M:      Stafford Horne <shorne@gmail.com>
14903 L:      openrisc@lists.librecores.org
14904 S:      Maintained
14905 W:      http://openrisc.io
14906 T:      git git://github.com/openrisc/linux.git
14907 F:      Documentation/devicetree/bindings/openrisc/
14908 F:      Documentation/openrisc/
14909 F:      arch/openrisc/
14910 F:      drivers/irqchip/irq-ompic.c
14911 F:      drivers/irqchip/irq-or1k-*
14912
14913 OPENVSWITCH
14914 M:      Pravin B Shelar <pshelar@ovn.org>
14915 L:      netdev@vger.kernel.org
14916 L:      dev@openvswitch.org
14917 S:      Maintained
14918 W:      http://openvswitch.org
14919 F:      include/uapi/linux/openvswitch.h
14920 F:      net/openvswitch/
14921
14922 OPERATING PERFORMANCE POINTS (OPP)
14923 M:      Viresh Kumar <vireshk@kernel.org>
14924 M:      Nishanth Menon <nm@ti.com>
14925 M:      Stephen Boyd <sboyd@kernel.org>
14926 L:      linux-pm@vger.kernel.org
14927 S:      Maintained
14928 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git
14929 F:      Documentation/devicetree/bindings/opp/
14930 F:      Documentation/power/opp.rst
14931 F:      drivers/opp/
14932 F:      include/linux/pm_opp.h
14933
14934 OPL4 DRIVER
14935 M:      Clemens Ladisch <clemens@ladisch.de>
14936 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
14937 S:      Maintained
14938 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
14939 F:      sound/drivers/opl4/
14940
14941 ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
14942 M:      Mark Fasheh <mark@fasheh.com>
14943 M:      Joel Becker <jlbec@evilplan.org>
14944 M:      Joseph Qi <joseph.qi@linux.alibaba.com>
14945 L:      ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
14946 S:      Supported
14947 W:      http://ocfs2.wiki.kernel.org
14948 F:      Documentation/filesystems/dlmfs.rst
14949 F:      Documentation/filesystems/ocfs2.rst
14950 F:      fs/ocfs2/
14951
14952 ORANGEFS FILESYSTEM
14953 M:      Mike Marshall <hubcap@omnibond.com>
14954 R:      Martin Brandenburg <martin@omnibond.com>
14955 L:      devel@lists.orangefs.org
14956 S:      Supported
14957 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hubcap/linux.git
14958 F:      Documentation/filesystems/orangefs.rst
14959 F:      fs/orangefs/
14960
14961 ORINOCO DRIVER
14962 L:      linux-wireless@vger.kernel.org
14963 S:      Orphan
14964 W:      https://wireless.wiki.kernel.org/en/users/Drivers/orinoco
14965 W:      http://www.nongnu.org/orinoco/
14966 F:      drivers/net/wireless/intersil/orinoco/
14967
14968 OV2659 OMNIVISION SENSOR DRIVER
14969 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
14970 L:      linux-media@vger.kernel.org
14971 S:      Maintained
14972 W:      https://linuxtv.org
14973 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14974 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
14975 F:      drivers/media/i2c/ov2659.c
14976 F:      include/media/i2c/ov2659.h
14977
14978 OVERLAY FILESYSTEM
14979 M:      Miklos Szeredi <miklos@szeredi.hu>
14980 L:      linux-unionfs@vger.kernel.org
14981 S:      Supported
14982 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git
14983 F:      Documentation/filesystems/overlayfs.rst
14984 F:      fs/overlayfs/
14985
14986 P54 WIRELESS DRIVER
14987 M:      Christian Lamparter <chunkeey@googlemail.com>
14988 L:      linux-wireless@vger.kernel.org
14989 S:      Maintained
14990 W:      https://wireless.wiki.kernel.org/en/users/Drivers/p54
14991 F:      drivers/net/wireless/intersil/p54/
14992
14993 PACKING
14994 M:      Vladimir Oltean <olteanv@gmail.com>
14995 L:      netdev@vger.kernel.org
14996 S:      Supported
14997 F:      Documentation/core-api/packing.rst
14998 F:      include/linux/packing.h
14999 F:      lib/packing.c
15000
15001 PADATA PARALLEL EXECUTION MECHANISM
15002 M:      Steffen Klassert <steffen.klassert@secunet.com>
15003 M:      Daniel Jordan <daniel.m.jordan@oracle.com>
15004 L:      linux-crypto@vger.kernel.org
15005 L:      linux-kernel@vger.kernel.org
15006 S:      Maintained
15007 F:      Documentation/core-api/padata.rst
15008 F:      include/linux/padata.h
15009 F:      kernel/padata.c
15010
15011 PAGE CACHE
15012 M:      Matthew Wilcox (Oracle) <willy@infradead.org>
15013 L:      linux-fsdevel@vger.kernel.org
15014 S:      Supported
15015 T:      git git://git.infradead.org/users/willy/pagecache.git
15016 F:      Documentation/filesystems/locking.rst
15017 F:      Documentation/filesystems/vfs.rst
15018 F:      include/linux/pagemap.h
15019 F:      mm/filemap.c
15020 F:      mm/page-writeback.c
15021 F:      mm/readahead.c
15022 F:      mm/truncate.c
15023
15024 PAGE POOL
15025 M:      Jesper Dangaard Brouer <hawk@kernel.org>
15026 M:      Ilias Apalodimas <ilias.apalodimas@linaro.org>
15027 L:      netdev@vger.kernel.org
15028 S:      Supported
15029 F:      Documentation/networking/page_pool.rst
15030 F:      include/net/page_pool.h
15031 F:      include/trace/events/page_pool.h
15032 F:      net/core/page_pool.c
15033
15034 PAGE TABLE CHECK
15035 M:      Pasha Tatashin <pasha.tatashin@soleen.com>
15036 M:      Andrew Morton <akpm@linux-foundation.org>
15037 L:      linux-mm@kvack.org
15038 S:      Maintained
15039 F:      Documentation/vm/page_table_check.rst
15040 F:      include/linux/page_table_check.h
15041 F:      mm/page_table_check.c
15042
15043 PANASONIC LAPTOP ACPI EXTRAS DRIVER
15044 M:      Kenneth Chan <kenneth.t.chan@gmail.com>
15045 L:      platform-driver-x86@vger.kernel.org
15046 S:      Maintained
15047 F:      drivers/platform/x86/panasonic-laptop.c
15048
15049 PARALLAX PING IIO SENSOR DRIVER
15050 M:      Andreas Klinger <ak@it-klinger.de>
15051 L:      linux-iio@vger.kernel.org
15052 S:      Maintained
15053 F:      Documentation/devicetree/bindings/iio/proximity/parallax-ping.yaml
15054 F:      drivers/iio/proximity/ping.c
15055
15056 PARALLEL LCD/KEYPAD PANEL DRIVER
15057 M:      Willy Tarreau <willy@haproxy.com>
15058 M:      Ksenija Stanojevic <ksenija.stanojevic@gmail.com>
15059 S:      Odd Fixes
15060 F:      Documentation/admin-guide/lcd-panel-cgram.rst
15061 F:      drivers/auxdisplay/panel.c
15062
15063 PARALLEL PORT SUBSYSTEM
15064 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
15065 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
15066 L:      linux-parport@lists.infradead.org (subscribers-only)
15067 S:      Maintained
15068 F:      Documentation/driver-api/parport*.rst
15069 F:      drivers/char/ppdev.c
15070 F:      drivers/parport/
15071 F:      include/linux/parport*.h
15072 F:      include/uapi/linux/ppdev.h
15073
15074 PARAVIRT_OPS INTERFACE
15075 M:      Juergen Gross <jgross@suse.com>
15076 M:      Srivatsa S. Bhat (VMware) <srivatsa@csail.mit.edu>
15077 R:      Alexey Makhalov <amakhalov@vmware.com>
15078 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
15079 L:      virtualization@lists.linux-foundation.org
15080 L:      x86@kernel.org
15081 S:      Supported
15082 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
15083 F:      Documentation/virt/paravirt_ops.rst
15084 F:      arch/*/include/asm/paravirt*.h
15085 F:      arch/*/kernel/paravirt*
15086 F:      include/linux/hypervisor.h
15087
15088 PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
15089 M:      Tim Waugh <tim@cyberelk.net>
15090 L:      linux-parport@lists.infradead.org (subscribers-only)
15091 S:      Maintained
15092 F:      Documentation/admin-guide/blockdev/paride.rst
15093 F:      drivers/block/paride/
15094
15095 PARISC ARCHITECTURE
15096 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
15097 M:      Helge Deller <deller@gmx.de>
15098 L:      linux-parisc@vger.kernel.org
15099 S:      Maintained
15100 W:      https://parisc.wiki.kernel.org
15101 Q:      http://patchwork.kernel.org/project/linux-parisc/list/
15102 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
15103 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git
15104 F:      Documentation/parisc/
15105 F:      arch/parisc/
15106 F:      drivers/char/agp/parisc-agp.c
15107 F:      drivers/input/misc/hp_sdc_rtc.c
15108 F:      drivers/input/serio/gscps2.c
15109 F:      drivers/input/serio/hp_sdc*
15110 F:      drivers/parisc/
15111 F:      drivers/parport/parport_gsc.*
15112 F:      drivers/tty/serial/8250/8250_gsc.c
15113 F:      drivers/video/console/sti*
15114 F:      drivers/video/fbdev/sti*
15115 F:      drivers/video/logo/logo_parisc*
15116 F:      include/linux/hp_sdc.h
15117
15118 PARMAN
15119 M:      Jiri Pirko <jiri@nvidia.com>
15120 L:      netdev@vger.kernel.org
15121 S:      Supported
15122 F:      include/linux/parman.h
15123 F:      lib/parman.c
15124 F:      lib/test_parman.c
15125
15126 PC ENGINES APU BOARD DRIVER
15127 M:      Enrico Weigelt, metux IT consult <info@metux.net>
15128 S:      Maintained
15129 F:      drivers/platform/x86/pcengines-apuv2.c
15130
15131 PC87360 HARDWARE MONITORING DRIVER
15132 M:      Jim Cromie <jim.cromie@gmail.com>
15133 L:      linux-hwmon@vger.kernel.org
15134 S:      Maintained
15135 F:      Documentation/hwmon/pc87360.rst
15136 F:      drivers/hwmon/pc87360.c
15137
15138 PC8736x GPIO DRIVER
15139 M:      Jim Cromie <jim.cromie@gmail.com>
15140 S:      Maintained
15141 F:      drivers/char/pc8736x_gpio.c
15142
15143 PC87427 HARDWARE MONITORING DRIVER
15144 M:      Jean Delvare <jdelvare@suse.com>
15145 L:      linux-hwmon@vger.kernel.org
15146 S:      Maintained
15147 F:      Documentation/hwmon/pc87427.rst
15148 F:      drivers/hwmon/pc87427.c
15149
15150 PCA9532 LED DRIVER
15151 M:      Riku Voipio <riku.voipio@iki.fi>
15152 S:      Maintained
15153 F:      drivers/leds/leds-pca9532.c
15154 F:      include/linux/leds-pca9532.h
15155
15156 PCA9541 I2C BUS MASTER SELECTOR DRIVER
15157 M:      Guenter Roeck <linux@roeck-us.net>
15158 L:      linux-i2c@vger.kernel.org
15159 S:      Maintained
15160 F:      drivers/i2c/muxes/i2c-mux-pca9541.c
15161
15162 PCDP - PRIMARY CONSOLE AND DEBUG PORT
15163 M:      Khalid Aziz <khalid@gonehiking.org>
15164 S:      Maintained
15165 F:      drivers/firmware/pcdp.*
15166
15167 PCI DRIVER FOR AARDVARK (Marvell Armada 3700)
15168 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
15169 M:      Pali Rohár <pali@kernel.org>
15170 L:      linux-pci@vger.kernel.org
15171 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15172 S:      Maintained
15173 F:      Documentation/devicetree/bindings/pci/aardvark-pci.txt
15174 F:      drivers/pci/controller/pci-aardvark.c
15175
15176 PCI DRIVER FOR ALTERA PCIE IP
15177 M:      Joyce Ooi <joyce.ooi@intel.com>
15178 L:      linux-pci@vger.kernel.org
15179 S:      Supported
15180 F:      Documentation/devicetree/bindings/pci/altera-pcie.txt
15181 F:      drivers/pci/controller/pcie-altera.c
15182
15183 PCI DRIVER FOR APPLIEDMICRO XGENE
15184 M:      Toan Le <toan@os.amperecomputing.com>
15185 L:      linux-pci@vger.kernel.org
15186 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15187 S:      Maintained
15188 F:      Documentation/devicetree/bindings/pci/xgene-pci.txt
15189 F:      drivers/pci/controller/pci-xgene.c
15190
15191 PCI DRIVER FOR ARM VERSATILE PLATFORM
15192 M:      Rob Herring <robh@kernel.org>
15193 L:      linux-pci@vger.kernel.org
15194 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15195 S:      Maintained
15196 F:      Documentation/devicetree/bindings/pci/versatile.yaml
15197 F:      drivers/pci/controller/pci-versatile.c
15198
15199 PCI DRIVER FOR ARMADA 8K
15200 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
15201 L:      linux-pci@vger.kernel.org
15202 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15203 S:      Maintained
15204 F:      Documentation/devicetree/bindings/pci/pci-armada8k.txt
15205 F:      drivers/pci/controller/dwc/pcie-armada8k.c
15206
15207 PCI DRIVER FOR CADENCE PCIE IP
15208 M:      Tom Joseph <tjoseph@cadence.com>
15209 L:      linux-pci@vger.kernel.org
15210 S:      Maintained
15211 F:      Documentation/devicetree/bindings/pci/cdns,*
15212 F:      drivers/pci/controller/cadence/
15213
15214 PCI DRIVER FOR FREESCALE LAYERSCAPE
15215 M:      Minghuan Lian <minghuan.Lian@nxp.com>
15216 M:      Mingkai Hu <mingkai.hu@nxp.com>
15217 M:      Roy Zang <roy.zang@nxp.com>
15218 L:      linuxppc-dev@lists.ozlabs.org
15219 L:      linux-pci@vger.kernel.org
15220 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15221 S:      Maintained
15222 F:      drivers/pci/controller/dwc/*layerscape*
15223
15224 PCI DRIVER FOR GENERIC OF HOSTS
15225 M:      Will Deacon <will@kernel.org>
15226 L:      linux-pci@vger.kernel.org
15227 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15228 S:      Maintained
15229 F:      Documentation/devicetree/bindings/pci/host-generic-pci.yaml
15230 F:      drivers/pci/controller/pci-host-common.c
15231 F:      drivers/pci/controller/pci-host-generic.c
15232
15233 PCI DRIVER FOR IMX6
15234 M:      Richard Zhu <hongxing.zhu@nxp.com>
15235 M:      Lucas Stach <l.stach@pengutronix.de>
15236 L:      linux-pci@vger.kernel.org
15237 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15238 S:      Maintained
15239 F:      Documentation/devicetree/bindings/pci/fsl,imx6q-pcie.yaml
15240 F:      drivers/pci/controller/dwc/*imx6*
15241
15242 PCI DRIVER FOR FU740
15243 M:      Paul Walmsley <paul.walmsley@sifive.com>
15244 M:      Greentime Hu <greentime.hu@sifive.com>
15245 L:      linux-pci@vger.kernel.org
15246 S:      Maintained
15247 F:      Documentation/devicetree/bindings/pci/sifive,fu740-pcie.yaml
15248 F:      drivers/pci/controller/dwc/pcie-fu740.c
15249
15250 PCI DRIVER FOR INTEL IXP4XX
15251 M:      Linus Walleij <linus.walleij@linaro.org>
15252 S:      Maintained
15253 F:      Documentation/devicetree/bindings/pci/intel,ixp4xx-pci.yaml
15254 F:      drivers/pci/controller/pci-ixp4xx.c
15255
15256 PCI DRIVER FOR INTEL VOLUME MANAGEMENT DEVICE (VMD)
15257 M:      Nirmal Patel <nirmal.patel@linux.intel.com>
15258 R:      Jonathan Derrick <jonathan.derrick@linux.dev>
15259 L:      linux-pci@vger.kernel.org
15260 S:      Supported
15261 F:      drivers/pci/controller/vmd.c
15262
15263 PCI DRIVER FOR MICROSEMI SWITCHTEC
15264 M:      Kurt Schwemmer <kurt.schwemmer@microsemi.com>
15265 M:      Logan Gunthorpe <logang@deltatee.com>
15266 L:      linux-pci@vger.kernel.org
15267 S:      Maintained
15268 F:      Documentation/ABI/testing/sysfs-class-switchtec
15269 F:      Documentation/driver-api/switchtec.rst
15270 F:      drivers/ntb/hw/mscc/
15271 F:      drivers/pci/switch/switchtec*
15272 F:      include/linux/switchtec.h
15273 F:      include/uapi/linux/switchtec_ioctl.h
15274
15275 PCI DRIVER FOR MOBIVEIL PCIE IP
15276 M:      Karthikeyan Mitran <m.karthikeyan@mobiveil.co.in>
15277 M:      Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
15278 L:      linux-pci@vger.kernel.org
15279 S:      Supported
15280 F:      Documentation/devicetree/bindings/pci/mobiveil-pcie.txt
15281 F:      drivers/pci/controller/mobiveil/pcie-mobiveil*
15282
15283 PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support)
15284 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
15285 M:      Pali Rohár <pali@kernel.org>
15286 L:      linux-pci@vger.kernel.org
15287 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15288 S:      Maintained
15289 F:      drivers/pci/controller/*mvebu*
15290
15291 PCI DRIVER FOR NVIDIA TEGRA
15292 M:      Thierry Reding <thierry.reding@gmail.com>
15293 L:      linux-tegra@vger.kernel.org
15294 L:      linux-pci@vger.kernel.org
15295 S:      Supported
15296 F:      Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt
15297 F:      drivers/pci/controller/pci-tegra.c
15298
15299 PCI DRIVER FOR NXP LAYERSCAPE GEN4 CONTROLLER
15300 M:      Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
15301 L:      linux-pci@vger.kernel.org
15302 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15303 S:      Maintained
15304 F:      Documentation/devicetree/bindings/pci/layerscape-pcie-gen4.txt
15305 F:      drivers/pci/controller/mobiveil/pcie-layerscape-gen4.c
15306
15307 PCI DRIVER FOR RENESAS R-CAR
15308 M:      Marek Vasut <marek.vasut+renesas@gmail.com>
15309 M:      Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
15310 L:      linux-pci@vger.kernel.org
15311 L:      linux-renesas-soc@vger.kernel.org
15312 S:      Maintained
15313 F:      Documentation/devicetree/bindings/pci/*rcar*
15314 F:      drivers/pci/controller/*rcar*
15315
15316 PCI DRIVER FOR SAMSUNG EXYNOS
15317 M:      Jingoo Han <jingoohan1@gmail.com>
15318 L:      linux-pci@vger.kernel.org
15319 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15320 L:      linux-samsung-soc@vger.kernel.org
15321 S:      Maintained
15322 F:      drivers/pci/controller/dwc/pci-exynos.c
15323
15324 PCI DRIVER FOR SYNOPSYS DESIGNWARE
15325 M:      Jingoo Han <jingoohan1@gmail.com>
15326 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
15327 L:      linux-pci@vger.kernel.org
15328 S:      Maintained
15329 F:      Documentation/devicetree/bindings/pci/snps,dw-pcie.yaml
15330 F:      Documentation/devicetree/bindings/pci/snps,dw-pcie-ep.yaml
15331 F:      drivers/pci/controller/dwc/*designware*
15332
15333 PCI DRIVER FOR TI DRA7XX/J721E
15334 M:      Kishon Vijay Abraham I <kishon@ti.com>
15335 L:      linux-omap@vger.kernel.org
15336 L:      linux-pci@vger.kernel.org
15337 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15338 S:      Supported
15339 F:      Documentation/devicetree/bindings/pci/ti-pci.txt
15340 F:      drivers/pci/controller/cadence/pci-j721e.c
15341 F:      drivers/pci/controller/dwc/pci-dra7xx.c
15342
15343 PCI DRIVER FOR V3 SEMICONDUCTOR V360EPC
15344 M:      Linus Walleij <linus.walleij@linaro.org>
15345 L:      linux-pci@vger.kernel.org
15346 S:      Maintained
15347 F:      Documentation/devicetree/bindings/pci/v3-v360epc-pci.txt
15348 F:      drivers/pci/controller/pci-v3-semi.c
15349
15350 PCI ENDPOINT SUBSYSTEM
15351 M:      Kishon Vijay Abraham I <kishon@ti.com>
15352 M:      Lorenzo Pieralisi <lpieralisi@kernel.org>
15353 R:      Krzysztof Wilczyński <kw@linux.com>
15354 L:      linux-pci@vger.kernel.org
15355 S:      Supported
15356 Q:      https://patchwork.kernel.org/project/linux-pci/list/
15357 B:      https://bugzilla.kernel.org
15358 C:      irc://irc.oftc.net/linux-pci
15359 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lpieralisi/pci.git
15360 F:      Documentation/PCI/endpoint/*
15361 F:      Documentation/misc-devices/pci-endpoint-test.rst
15362 F:      drivers/misc/pci_endpoint_test.c
15363 F:      drivers/pci/endpoint/
15364 F:      tools/pci/
15365
15366 PCI ENHANCED ERROR HANDLING (EEH) FOR POWERPC
15367 M:      Russell Currey <ruscur@russell.cc>
15368 M:      Oliver O'Halloran <oohall@gmail.com>
15369 L:      linuxppc-dev@lists.ozlabs.org
15370 S:      Supported
15371 F:      Documentation/PCI/pci-error-recovery.rst
15372 F:      Documentation/powerpc/eeh-pci-error-recovery.rst
15373 F:      arch/powerpc/include/*/eeh*.h
15374 F:      arch/powerpc/kernel/eeh*.c
15375 F:      arch/powerpc/platforms/*/eeh*.c
15376 F:      drivers/pci/pcie/aer.c
15377 F:      drivers/pci/pcie/dpc.c
15378 F:      drivers/pci/pcie/err.c
15379
15380 PCI ERROR RECOVERY
15381 M:      Linas Vepstas <linasvepstas@gmail.com>
15382 L:      linux-pci@vger.kernel.org
15383 S:      Supported
15384 F:      Documentation/PCI/pci-error-recovery.rst
15385
15386 PCI PEER-TO-PEER DMA (P2PDMA)
15387 M:      Bjorn Helgaas <bhelgaas@google.com>
15388 M:      Logan Gunthorpe <logang@deltatee.com>
15389 L:      linux-pci@vger.kernel.org
15390 S:      Supported
15391 Q:      https://patchwork.kernel.org/project/linux-pci/list/
15392 B:      https://bugzilla.kernel.org
15393 C:      irc://irc.oftc.net/linux-pci
15394 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
15395 F:      Documentation/driver-api/pci/p2pdma.rst
15396 F:      drivers/pci/p2pdma.c
15397 F:      include/linux/pci-p2pdma.h
15398
15399 PCI MSI DRIVER FOR ALTERA MSI IP
15400 M:      Joyce Ooi <joyce.ooi@intel.com>
15401 L:      linux-pci@vger.kernel.org
15402 S:      Supported
15403 F:      Documentation/devicetree/bindings/pci/altera-pcie-msi.txt
15404 F:      drivers/pci/controller/pcie-altera-msi.c
15405
15406 PCI MSI DRIVER FOR APPLIEDMICRO XGENE
15407 M:      Toan Le <toan@os.amperecomputing.com>
15408 L:      linux-pci@vger.kernel.org
15409 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15410 S:      Maintained
15411 F:      Documentation/devicetree/bindings/pci/xgene-pci-msi.txt
15412 F:      drivers/pci/controller/pci-xgene-msi.c
15413
15414 PCI NATIVE HOST BRIDGE AND ENDPOINT DRIVERS
15415 M:      Lorenzo Pieralisi <lpieralisi@kernel.org>
15416 R:      Rob Herring <robh@kernel.org>
15417 R:      Krzysztof Wilczyński <kw@linux.com>
15418 L:      linux-pci@vger.kernel.org
15419 S:      Supported
15420 Q:      https://patchwork.kernel.org/project/linux-pci/list/
15421 B:      https://bugzilla.kernel.org
15422 C:      irc://irc.oftc.net/linux-pci
15423 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lpieralisi/pci.git
15424 F:      drivers/pci/controller/
15425 F:      drivers/pci/pci-bridge-emul.c
15426 F:      drivers/pci/pci-bridge-emul.h
15427
15428 PCI SUBSYSTEM
15429 M:      Bjorn Helgaas <bhelgaas@google.com>
15430 L:      linux-pci@vger.kernel.org
15431 S:      Supported
15432 Q:      https://patchwork.kernel.org/project/linux-pci/list/
15433 B:      https://bugzilla.kernel.org
15434 C:      irc://irc.oftc.net/linux-pci
15435 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
15436 F:      Documentation/PCI/
15437 F:      Documentation/devicetree/bindings/pci/
15438 F:      arch/x86/kernel/early-quirks.c
15439 F:      arch/x86/kernel/quirks.c
15440 F:      arch/x86/pci/
15441 F:      drivers/acpi/pci*
15442 F:      drivers/pci/
15443 F:      include/asm-generic/pci*
15444 F:      include/linux/of_pci.h
15445 F:      include/linux/pci*
15446 F:      include/uapi/linux/pci*
15447 F:      lib/pci*
15448
15449 PCIE DRIVER FOR AMAZON ANNAPURNA LABS
15450 M:      Jonathan Chocron <jonnyc@amazon.com>
15451 L:      linux-pci@vger.kernel.org
15452 S:      Maintained
15453 F:      Documentation/devicetree/bindings/pci/pcie-al.txt
15454 F:      drivers/pci/controller/dwc/pcie-al.c
15455
15456 PCIE DRIVER FOR AMLOGIC MESON
15457 M:      Yue Wang <yue.wang@Amlogic.com>
15458 L:      linux-pci@vger.kernel.org
15459 L:      linux-amlogic@lists.infradead.org
15460 S:      Maintained
15461 F:      drivers/pci/controller/dwc/pci-meson.c
15462
15463 PCIE DRIVER FOR AXIS ARTPEC
15464 M:      Jesper Nilsson <jesper.nilsson@axis.com>
15465 L:      linux-arm-kernel@axis.com
15466 L:      linux-pci@vger.kernel.org
15467 S:      Maintained
15468 F:      Documentation/devicetree/bindings/pci/axis,artpec*
15469 F:      drivers/pci/controller/dwc/*artpec*
15470
15471 PCIE DRIVER FOR CAVIUM THUNDERX
15472 M:      Robert Richter <rric@kernel.org>
15473 L:      linux-pci@vger.kernel.org
15474 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15475 S:      Odd Fixes
15476 F:      drivers/pci/controller/pci-thunder-*
15477
15478 PCIE DRIVER FOR HISILICON
15479 M:      Zhou Wang <wangzhou1@hisilicon.com>
15480 L:      linux-pci@vger.kernel.org
15481 S:      Maintained
15482 F:      drivers/pci/controller/dwc/pcie-hisi.c
15483
15484 PCIE DRIVER FOR HISILICON KIRIN
15485 M:      Xiaowei Song <songxiaowei@hisilicon.com>
15486 M:      Binghui Wang <wangbinghui@hisilicon.com>
15487 L:      linux-pci@vger.kernel.org
15488 S:      Maintained
15489 F:      Documentation/devicetree/bindings/pci/hisilicon,kirin-pcie.yaml
15490 F:      drivers/pci/controller/dwc/pcie-kirin.c
15491
15492 PCIE DRIVER FOR HISILICON STB
15493 M:      Shawn Guo <shawn.guo@linaro.org>
15494 L:      linux-pci@vger.kernel.org
15495 S:      Maintained
15496 F:      Documentation/devicetree/bindings/pci/hisilicon-histb-pcie.txt
15497 F:      drivers/pci/controller/dwc/pcie-histb.c
15498
15499 PCIE DRIVER FOR INTEL KEEM BAY
15500 M:      Srikanth Thokala <srikanth.thokala@intel.com>
15501 L:      linux-pci@vger.kernel.org
15502 S:      Supported
15503 F:      Documentation/devicetree/bindings/pci/intel,keembay-pcie*
15504 F:      drivers/pci/controller/dwc/pcie-keembay.c
15505
15506 PCIE DRIVER FOR INTEL LGM GW SOC
15507 M:      Rahul Tanwar <rtanwar@maxlinear.com>
15508 L:      linux-pci@vger.kernel.org
15509 S:      Maintained
15510 F:      Documentation/devicetree/bindings/pci/intel-gw-pcie.yaml
15511 F:      drivers/pci/controller/dwc/pcie-intel-gw.c
15512
15513 PCIE DRIVER FOR MEDIATEK
15514 M:      Ryder Lee <ryder.lee@mediatek.com>
15515 M:      Jianjun Wang <jianjun.wang@mediatek.com>
15516 L:      linux-pci@vger.kernel.org
15517 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
15518 S:      Supported
15519 F:      Documentation/devicetree/bindings/pci/mediatek*
15520 F:      drivers/pci/controller/*mediatek*
15521
15522 PCIE DRIVER FOR MICROCHIP
15523 M:      Daire McNamara <daire.mcnamara@microchip.com>
15524 L:      linux-pci@vger.kernel.org
15525 S:      Supported
15526 F:      Documentation/devicetree/bindings/pci/microchip*
15527 F:      drivers/pci/controller/*microchip*
15528
15529 PCIE DRIVER FOR QUALCOMM MSM
15530 M:      Stanimir Varbanov <svarbanov@mm-sol.com>
15531 L:      linux-pci@vger.kernel.org
15532 L:      linux-arm-msm@vger.kernel.org
15533 S:      Maintained
15534 F:      drivers/pci/controller/dwc/pcie-qcom.c
15535
15536 PCIE ENDPOINT DRIVER FOR QUALCOMM
15537 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
15538 L:      linux-pci@vger.kernel.org
15539 L:      linux-arm-msm@vger.kernel.org
15540 S:      Maintained
15541 F:      Documentation/devicetree/bindings/pci/qcom,pcie-ep.yaml
15542 F:      drivers/pci/controller/dwc/pcie-qcom-ep.c
15543
15544 PCIE DRIVER FOR ROCKCHIP
15545 M:      Shawn Lin <shawn.lin@rock-chips.com>
15546 L:      linux-pci@vger.kernel.org
15547 L:      linux-rockchip@lists.infradead.org
15548 S:      Maintained
15549 F:      Documentation/devicetree/bindings/pci/rockchip-pcie*
15550 F:      drivers/pci/controller/pcie-rockchip*
15551
15552 PCIE DRIVER FOR SOCIONEXT UNIPHIER
15553 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
15554 L:      linux-pci@vger.kernel.org
15555 S:      Maintained
15556 F:      Documentation/devicetree/bindings/pci/socionext,uniphier-pcie*
15557 F:      drivers/pci/controller/dwc/pcie-uniphier*
15558
15559 PCIE DRIVER FOR ST SPEAR13XX
15560 M:      Pratyush Anand <pratyush.anand@gmail.com>
15561 L:      linux-pci@vger.kernel.org
15562 S:      Maintained
15563 F:      drivers/pci/controller/dwc/*spear*
15564
15565 PCMCIA SUBSYSTEM
15566 M:      Dominik Brodowski <linux@dominikbrodowski.net>
15567 S:      Odd Fixes
15568 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/linux.git
15569 F:      Documentation/pcmcia/
15570 F:      drivers/pcmcia/
15571 F:      include/pcmcia/
15572 F:      tools/pcmcia/
15573
15574 PCNET32 NETWORK DRIVER
15575 M:      Don Fry <pcnet32@frontier.com>
15576 L:      netdev@vger.kernel.org
15577 S:      Maintained
15578 F:      drivers/net/ethernet/amd/pcnet32.c
15579
15580 PCRYPT PARALLEL CRYPTO ENGINE
15581 M:      Steffen Klassert <steffen.klassert@secunet.com>
15582 L:      linux-crypto@vger.kernel.org
15583 S:      Maintained
15584 F:      crypto/pcrypt.c
15585 F:      include/crypto/pcrypt.h
15586
15587 PEAQ WMI HOTKEYS DRIVER
15588 M:      Hans de Goede <hdegoede@redhat.com>
15589 L:      platform-driver-x86@vger.kernel.org
15590 S:      Maintained
15591 F:      drivers/platform/x86/peaq-wmi.c
15592
15593 PECI HARDWARE MONITORING DRIVERS
15594 M:      Iwona Winiarska <iwona.winiarska@intel.com>
15595 L:      linux-hwmon@vger.kernel.org
15596 S:      Supported
15597 F:      Documentation/hwmon/peci-cputemp.rst
15598 F:      Documentation/hwmon/peci-dimmtemp.rst
15599 F:      drivers/hwmon/peci/
15600
15601 PECI SUBSYSTEM
15602 M:      Iwona Winiarska <iwona.winiarska@intel.com>
15603 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
15604 S:      Supported
15605 F:      Documentation/devicetree/bindings/peci/
15606 F:      Documentation/peci/
15607 F:      drivers/peci/
15608 F:      include/linux/peci-cpu.h
15609 F:      include/linux/peci.h
15610
15611 PENSANDO ETHERNET DRIVERS
15612 M:      Shannon Nelson <snelson@pensando.io>
15613 M:      drivers@pensando.io
15614 L:      netdev@vger.kernel.org
15615 S:      Supported
15616 F:      Documentation/networking/device_drivers/ethernet/pensando/ionic.rst
15617 F:      drivers/net/ethernet/pensando/
15618
15619 PER-CPU MEMORY ALLOCATOR
15620 M:      Dennis Zhou <dennis@kernel.org>
15621 M:      Tejun Heo <tj@kernel.org>
15622 M:      Christoph Lameter <cl@linux.com>
15623 L:      linux-mm@kvack.org
15624 S:      Maintained
15625 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dennis/percpu.git
15626 F:      arch/*/include/asm/percpu.h
15627 F:      include/linux/percpu*.h
15628 F:      lib/percpu*.c
15629 F:      mm/percpu*.c
15630
15631 PER-TASK DELAY ACCOUNTING
15632 M:      Balbir Singh <bsingharora@gmail.com>
15633 S:      Maintained
15634 F:      include/linux/delayacct.h
15635 F:      kernel/delayacct.c
15636
15637 PERFORMANCE EVENTS SUBSYSTEM
15638 M:      Peter Zijlstra <peterz@infradead.org>
15639 M:      Ingo Molnar <mingo@redhat.com>
15640 M:      Arnaldo Carvalho de Melo <acme@kernel.org>
15641 R:      Mark Rutland <mark.rutland@arm.com>
15642 R:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
15643 R:      Jiri Olsa <jolsa@kernel.org>
15644 R:      Namhyung Kim <namhyung@kernel.org>
15645 L:      linux-perf-users@vger.kernel.org
15646 L:      linux-kernel@vger.kernel.org
15647 S:      Supported
15648 W:      https://perf.wiki.kernel.org/
15649 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
15650 F:      arch/*/events/*
15651 F:      arch/*/events/*/*
15652 F:      arch/*/include/asm/perf_event.h
15653 F:      arch/*/kernel/*/*/perf_event*.c
15654 F:      arch/*/kernel/*/perf_event*.c
15655 F:      arch/*/kernel/perf_callchain.c
15656 F:      arch/*/kernel/perf_event*.c
15657 F:      include/linux/perf_event.h
15658 F:      include/uapi/linux/perf_event.h
15659 F:      kernel/events/*
15660 F:      tools/lib/perf/
15661 F:      tools/perf/
15662
15663 PERFORMANCE EVENTS TOOLING ARM64
15664 R:      John Garry <john.garry@huawei.com>
15665 R:      Will Deacon <will@kernel.org>
15666 R:      James Clark <james.clark@arm.com>
15667 R:      Mike Leach <mike.leach@linaro.org>
15668 R:      Leo Yan <leo.yan@linaro.org>
15669 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15670 S:      Supported
15671 F:      tools/build/feature/test-libopencsd.c
15672 F:      tools/perf/arch/arm*/
15673 F:      tools/perf/pmu-events/arch/arm64/
15674 F:      tools/perf/util/arm-spe*
15675 F:      tools/perf/util/cs-etm*
15676
15677 PERSONALITY HANDLING
15678 M:      Christoph Hellwig <hch@infradead.org>
15679 L:      linux-abi-devel@lists.sourceforge.net
15680 S:      Maintained
15681 F:      include/linux/personality.h
15682 F:      include/uapi/linux/personality.h
15683
15684 PHOENIX RC FLIGHT CONTROLLER ADAPTER
15685 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
15686 L:      linux-input@vger.kernel.org
15687 S:      Maintained
15688 F:      Documentation/input/devices/pxrc.rst
15689 F:      drivers/input/joystick/pxrc.c
15690
15691 PHONET PROTOCOL
15692 M:      Remi Denis-Courmont <courmisch@gmail.com>
15693 S:      Supported
15694 F:      Documentation/networking/phonet.rst
15695 F:      include/linux/phonet.h
15696 F:      include/net/phonet/
15697 F:      include/uapi/linux/phonet.h
15698 F:      net/phonet/
15699
15700 PHRAM MTD DRIVER
15701 M:      Joern Engel <joern@lazybastard.org>
15702 L:      linux-mtd@lists.infradead.org
15703 S:      Maintained
15704 F:      drivers/mtd/devices/phram.c
15705
15706 PICOLCD HID DRIVER
15707 M:      Bruno Prémont <bonbons@linux-vserver.org>
15708 L:      linux-input@vger.kernel.org
15709 S:      Maintained
15710 F:      drivers/hid/hid-picolcd*
15711
15712 PIDFD API
15713 M:      Christian Brauner <christian@brauner.io>
15714 L:      linux-kernel@vger.kernel.org
15715 S:      Maintained
15716 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brauner/linux.git
15717 F:      samples/pidfd/
15718 F:      tools/testing/selftests/clone3/
15719 F:      tools/testing/selftests/pid_namespace/
15720 F:      tools/testing/selftests/pidfd/
15721 K:      (?i)pidfd
15722 K:      (?i)clone3
15723 K:      \b(clone_args|kernel_clone_args)\b
15724
15725 PIN CONTROL SUBSYSTEM
15726 M:      Linus Walleij <linus.walleij@linaro.org>
15727 L:      linux-gpio@vger.kernel.org
15728 S:      Maintained
15729 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git
15730 F:      Documentation/devicetree/bindings/pinctrl/
15731 F:      Documentation/driver-api/pin-control.rst
15732 F:      drivers/pinctrl/
15733 F:      include/linux/pinctrl/
15734
15735 PIN CONTROLLER - AMD
15736 M:      Basavaraj Natikar <Basavaraj.Natikar@amd.com>
15737 M:      Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
15738 S:      Maintained
15739 F:      drivers/pinctrl/pinctrl-amd.c
15740
15741 PIN CONTROLLER - FREESCALE
15742 M:      Dong Aisheng <aisheng.dong@nxp.com>
15743 M:      Fabio Estevam <festevam@gmail.com>
15744 M:      Shawn Guo <shawnguo@kernel.org>
15745 M:      Stefan Agner <stefan@agner.ch>
15746 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
15747 L:      linux-gpio@vger.kernel.org
15748 S:      Maintained
15749 F:      Documentation/devicetree/bindings/pinctrl/fsl,*
15750 F:      drivers/pinctrl/freescale/
15751
15752 PIN CONTROLLER - INTEL
15753 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
15754 M:      Andy Shevchenko <andy@kernel.org>
15755 S:      Maintained
15756 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/intel.git
15757 F:      drivers/pinctrl/intel/
15758
15759 PIN CONTROLLER - KEEMBAY
15760 M:      Lakshmi Sowjanya D <lakshmi.sowjanya.d@intel.com>
15761 S:      Supported
15762 F:      drivers/pinctrl/pinctrl-keembay*
15763
15764 PIN CONTROLLER - MEDIATEK
15765 M:      Sean Wang <sean.wang@kernel.org>
15766 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
15767 S:      Maintained
15768 F:      Documentation/devicetree/bindings/pinctrl/mediatek,mt65xx-pinctrl.yaml
15769 F:      Documentation/devicetree/bindings/pinctrl/mediatek,mt6797-pinctrl.yaml
15770 F:      Documentation/devicetree/bindings/pinctrl/mediatek,mt7622-pinctrl.yaml
15771 F:      Documentation/devicetree/bindings/pinctrl/mediatek,mt8183-pinctrl.yaml
15772 F:      drivers/pinctrl/mediatek/
15773
15774 PIN CONTROLLER - MICROCHIP AT91
15775 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
15776 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15777 L:      linux-gpio@vger.kernel.org
15778 S:      Supported
15779 F:      drivers/gpio/gpio-sama5d2-piobu.c
15780 F:      drivers/pinctrl/pinctrl-at91*
15781
15782 PIN CONTROLLER - QUALCOMM
15783 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
15784 L:      linux-arm-msm@vger.kernel.org
15785 S:      Maintained
15786 F:      Documentation/devicetree/bindings/pinctrl/qcom,*.txt
15787 F:      drivers/pinctrl/qcom/
15788
15789 PIN CONTROLLER - RENESAS
15790 M:      Geert Uytterhoeven <geert+renesas@glider.be>
15791 L:      linux-renesas-soc@vger.kernel.org
15792 S:      Supported
15793 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git renesas-pinctrl
15794 F:      Documentation/devicetree/bindings/pinctrl/renesas,*
15795 F:      drivers/pinctrl/renesas/
15796
15797 PIN CONTROLLER - SAMSUNG
15798 M:      Tomasz Figa <tomasz.figa@gmail.com>
15799 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
15800 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
15801 R:      Alim Akhtar <alim.akhtar@samsung.com>
15802 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15803 L:      linux-samsung-soc@vger.kernel.org
15804 S:      Maintained
15805 C:      irc://irc.libera.chat/linux-exynos
15806 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
15807 B:      mailto:linux-samsung-soc@vger.kernel.org
15808 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/samsung.git
15809 F:      Documentation/devicetree/bindings/pinctrl/samsung,pinctrl*yaml
15810 F:      drivers/pinctrl/samsung/
15811 F:      include/dt-bindings/pinctrl/samsung.h
15812
15813 PIN CONTROLLER - SINGLE
15814 M:      Tony Lindgren <tony@atomide.com>
15815 M:      Haojian Zhuang <haojian.zhuang@linaro.org>
15816 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15817 L:      linux-omap@vger.kernel.org
15818 S:      Maintained
15819 F:      drivers/pinctrl/pinctrl-single.c
15820
15821 PIN CONTROLLER - THUNDERBAY
15822 M:      Lakshmi Sowjanya D <lakshmi.sowjanya.d@intel.com>
15823 S:      Supported
15824 F:      drivers/pinctrl/pinctrl-thunderbay.c
15825
15826 PIN CONTROLLER - SUNPLUS / TIBBO
15827 M:      Dvorkin Dmitry <dvorkin@tibbo.com>
15828 M:      Wells Lu <wellslutw@gmail.com>
15829 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15830 S:      Maintained
15831 W:      https://sunplus.atlassian.net/wiki/spaces/doc/overview
15832 F:      Documentation/devicetree/bindings/pinctrl/sunplus,*
15833 F:      drivers/pinctrl/sunplus/
15834 F:      include/dt-bindings/pinctrl/sppctl*.h
15835
15836 PKTCDVD DRIVER
15837 M:      linux-block@vger.kernel.org
15838 S:      Orphan
15839 F:      drivers/block/pktcdvd.c
15840 F:      include/linux/pktcdvd.h
15841 F:      include/uapi/linux/pktcdvd.h
15842
15843 PLANTOWER PMS7003 AIR POLLUTION SENSOR DRIVER
15844 M:      Tomasz Duszynski <tduszyns@gmail.com>
15845 S:      Maintained
15846 F:      Documentation/devicetree/bindings/iio/chemical/plantower,pms7003.yaml
15847 F:      drivers/iio/chemical/pms7003.c
15848
15849 PLATFORM FEATURE INFRASTRUCTURE
15850 M:      Juergen Gross <jgross@suse.com>
15851 S:      Maintained
15852 F:      arch/*/include/asm/platform-feature.h
15853 F:      include/asm-generic/platform-feature.h
15854 F:      include/linux/platform-feature.h
15855 F:      kernel/platform-feature.c
15856
15857 PLDMFW LIBRARY
15858 M:      Jacob Keller <jacob.e.keller@intel.com>
15859 S:      Maintained
15860 F:      Documentation/driver-api/pldmfw/
15861 F:      include/linux/pldmfw.h
15862 F:      lib/pldmfw/
15863
15864 PLX DMA DRIVER
15865 M:      Logan Gunthorpe <logang@deltatee.com>
15866 S:      Maintained
15867 F:      drivers/dma/plx_dma.c
15868
15869 PM6764TR DRIVER
15870 M:      Charles Hsu     <hsu.yungteng@gmail.com>
15871 L:      linux-hwmon@vger.kernel.org
15872 S:      Maintained
15873 F:      Documentation/hwmon/pm6764tr.rst
15874 F:      drivers/hwmon/pmbus/pm6764tr.c
15875
15876 PM-GRAPH UTILITY
15877 M:      "Todd E Brandt" <todd.e.brandt@linux.intel.com>
15878 L:      linux-pm@vger.kernel.org
15879 S:      Supported
15880 W:      https://01.org/pm-graph
15881 B:      https://bugzilla.kernel.org/buglist.cgi?component=pm-graph&product=Tools
15882 T:      git git://github.com/intel/pm-graph
15883 F:      tools/power/pm-graph
15884
15885 PMBUS HARDWARE MONITORING DRIVERS
15886 M:      Guenter Roeck <linux@roeck-us.net>
15887 L:      linux-hwmon@vger.kernel.org
15888 S:      Maintained
15889 W:      http://hwmon.wiki.kernel.org/
15890 W:      http://www.roeck-us.net/linux/drivers/
15891 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
15892 F:      Documentation/devicetree/bindings/hwmon/ltc2978.txt
15893 F:      Documentation/devicetree/bindings/hwmon/max31785.txt
15894 F:      Documentation/hwmon/adm1275.rst
15895 F:      Documentation/hwmon/ibm-cffps.rst
15896 F:      Documentation/hwmon/ir35221.rst
15897 F:      Documentation/hwmon/lm25066.rst
15898 F:      Documentation/hwmon/ltc2978.rst
15899 F:      Documentation/hwmon/ltc3815.rst
15900 F:      Documentation/hwmon/max16064.rst
15901 F:      Documentation/hwmon/max20751.rst
15902 F:      Documentation/hwmon/max31785.rst
15903 F:      Documentation/hwmon/max34440.rst
15904 F:      Documentation/hwmon/max8688.rst
15905 F:      Documentation/hwmon/pmbus-core.rst
15906 F:      Documentation/hwmon/pmbus.rst
15907 F:      Documentation/hwmon/tps40422.rst
15908 F:      Documentation/hwmon/ucd9000.rst
15909 F:      Documentation/hwmon/ucd9200.rst
15910 F:      Documentation/hwmon/zl6100.rst
15911 F:      drivers/hwmon/pmbus/
15912 F:      include/linux/pmbus.h
15913
15914 PMC SIERRA MaxRAID DRIVER
15915 L:      linux-scsi@vger.kernel.org
15916 S:      Orphan
15917 W:      http://www.pmc-sierra.com/
15918 F:      drivers/scsi/pmcraid.*
15919
15920 PMC SIERRA PM8001 DRIVER
15921 M:      Jack Wang <jinpu.wang@cloud.ionos.com>
15922 L:      linux-scsi@vger.kernel.org
15923 S:      Supported
15924 F:      drivers/scsi/pm8001/
15925
15926 PNI RM3100 IIO DRIVER
15927 M:      Song Qiang <songqiang1304521@gmail.com>
15928 L:      linux-iio@vger.kernel.org
15929 S:      Maintained
15930 F:      Documentation/devicetree/bindings/iio/magnetometer/pni,rm3100.yaml
15931 F:      drivers/iio/magnetometer/rm3100*
15932
15933 PNP SUPPORT
15934 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
15935 L:      linux-acpi@vger.kernel.org
15936 S:      Maintained
15937 F:      drivers/pnp/
15938 F:      include/linux/pnp.h
15939
15940 POSIX CLOCKS and TIMERS
15941 M:      Thomas Gleixner <tglx@linutronix.de>
15942 L:      linux-kernel@vger.kernel.org
15943 S:      Maintained
15944 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
15945 F:      fs/timerfd.c
15946 F:      include/linux/time_namespace.h
15947 F:      include/linux/timer*
15948 F:      kernel/time/*timer*
15949 F:      kernel/time/namespace.c
15950
15951 POWER MANAGEMENT CORE
15952 M:      "Rafael J. Wysocki" <rafael@kernel.org>
15953 L:      linux-pm@vger.kernel.org
15954 S:      Supported
15955 B:      https://bugzilla.kernel.org
15956 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
15957 F:      drivers/base/power/
15958 F:      drivers/powercap/
15959 F:      include/linux/intel_rapl.h
15960 F:      include/linux/pm.h
15961 F:      include/linux/pm_*
15962 F:      include/linux/powercap.h
15963 F:      kernel/configs/nopm.config
15964
15965 DYNAMIC THERMAL POWER MANAGEMENT (DTPM)
15966 M:      Daniel Lezcano <daniel.lezcano@kernel.org>
15967 L:      linux-pm@vger.kernel.org
15968 S:      Supported
15969 B:      https://bugzilla.kernel.org
15970 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
15971 F:      drivers/powercap/dtpm*
15972 F:      include/linux/dtpm.h
15973
15974 POWER STATE COORDINATION INTERFACE (PSCI)
15975 M:      Mark Rutland <mark.rutland@arm.com>
15976 M:      Lorenzo Pieralisi <lpieralisi@kernel.org>
15977 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15978 S:      Maintained
15979 F:      drivers/firmware/psci/
15980 F:      include/linux/psci.h
15981 F:      include/uapi/linux/psci.h
15982
15983 POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
15984 M:      Sebastian Reichel <sre@kernel.org>
15985 L:      linux-pm@vger.kernel.org
15986 S:      Maintained
15987 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
15988 F:      Documentation/ABI/testing/sysfs-class-power
15989 F:      Documentation/devicetree/bindings/power/supply/
15990 F:      drivers/power/supply/
15991 F:      include/linux/power/
15992 F:      include/linux/power_supply.h
15993
15994 POWERNV OPERATOR PANEL LCD DISPLAY DRIVER
15995 M:      Suraj Jitindar Singh <sjitindarsingh@gmail.com>
15996 L:      linuxppc-dev@lists.ozlabs.org
15997 S:      Maintained
15998 F:      drivers/char/powernv-op-panel.c
15999
16000 PPP OVER ATM (RFC 2364)
16001 M:      Mitchell Blank Jr <mitch@sfgoth.com>
16002 S:      Maintained
16003 F:      include/uapi/linux/atmppp.h
16004 F:      net/atm/pppoatm.c
16005
16006 PPP OVER ETHERNET
16007 M:      Michal Ostrowski <mostrows@earthlink.net>
16008 S:      Maintained
16009 F:      drivers/net/ppp/pppoe.c
16010 F:      drivers/net/ppp/pppox.c
16011
16012 PPP OVER L2TP
16013 M:      James Chapman <jchapman@katalix.com>
16014 S:      Maintained
16015 F:      include/linux/if_pppol2tp.h
16016 F:      include/uapi/linux/if_pppol2tp.h
16017 F:      net/l2tp/l2tp_ppp.c
16018
16019 PPP PROTOCOL DRIVERS AND COMPRESSORS
16020 M:      Paul Mackerras <paulus@samba.org>
16021 L:      linux-ppp@vger.kernel.org
16022 S:      Maintained
16023 F:      drivers/net/ppp/ppp_*
16024
16025 PPS SUPPORT
16026 M:      Rodolfo Giometti <giometti@enneenne.com>
16027 L:      linuxpps@ml.enneenne.com (subscribers-only)
16028 S:      Maintained
16029 W:      http://wiki.enneenne.com/index.php/LinuxPPS_support
16030 F:      Documentation/ABI/testing/sysfs-pps
16031 F:      Documentation/devicetree/bindings/pps/pps-gpio.txt
16032 F:      Documentation/driver-api/pps.rst
16033 F:      drivers/pps/
16034 F:      include/linux/pps*.h
16035 F:      include/uapi/linux/pps.h
16036
16037 PPTP DRIVER
16038 M:      Dmitry Kozlov <xeb@mail.ru>
16039 L:      netdev@vger.kernel.org
16040 S:      Maintained
16041 W:      http://sourceforge.net/projects/accel-pptp
16042 F:      drivers/net/ppp/pptp.c
16043
16044 PRESSURE STALL INFORMATION (PSI)
16045 M:      Johannes Weiner <hannes@cmpxchg.org>
16046 M:      Suren Baghdasaryan <surenb@google.com>
16047 S:      Maintained
16048 F:      include/linux/psi*
16049 F:      kernel/sched/psi.c
16050
16051 PRINTK
16052 M:      Petr Mladek <pmladek@suse.com>
16053 M:      Sergey Senozhatsky <senozhatsky@chromium.org>
16054 R:      Steven Rostedt <rostedt@goodmis.org>
16055 R:      John Ogness <john.ogness@linutronix.de>
16056 S:      Maintained
16057 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/printk/linux.git
16058 F:      include/linux/printk.h
16059 F:      kernel/printk/
16060
16061 PRINTK INDEXING
16062 R:      Chris Down <chris@chrisdown.name>
16063 S:      Maintained
16064 F:      Documentation/core-api/printk-index.rst
16065 F:      kernel/printk/index.c
16066 K:      printk_index
16067
16068 PROC FILESYSTEM
16069 L:      linux-kernel@vger.kernel.org
16070 L:      linux-fsdevel@vger.kernel.org
16071 S:      Maintained
16072 F:      Documentation/filesystems/proc.rst
16073 F:      fs/proc/
16074 F:      include/linux/proc_fs.h
16075 F:      tools/testing/selftests/proc/
16076
16077 PROC SYSCTL
16078 M:      Luis Chamberlain <mcgrof@kernel.org>
16079 M:      Kees Cook <keescook@chromium.org>
16080 M:      Iurii Zaikin <yzaikin@google.com>
16081 L:      linux-kernel@vger.kernel.org
16082 L:      linux-fsdevel@vger.kernel.org
16083 S:      Maintained
16084 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mcgrof/linux.git sysctl-next
16085 F:      fs/proc/proc_sysctl.c
16086 F:      include/linux/sysctl.h
16087 F:      kernel/sysctl-test.c
16088 F:      kernel/sysctl.c
16089 F:      tools/testing/selftests/sysctl/
16090
16091 PS3 NETWORK SUPPORT
16092 M:      Geoff Levand <geoff@infradead.org>
16093 L:      netdev@vger.kernel.org
16094 L:      linuxppc-dev@lists.ozlabs.org
16095 S:      Maintained
16096 F:      drivers/net/ethernet/toshiba/ps3_gelic_net.*
16097
16098 PS3 PLATFORM SUPPORT
16099 M:      Geoff Levand <geoff@infradead.org>
16100 L:      linuxppc-dev@lists.ozlabs.org
16101 S:      Maintained
16102 F:      arch/powerpc/boot/ps3*
16103 F:      arch/powerpc/include/asm/lv1call.h
16104 F:      arch/powerpc/include/asm/ps3*.h
16105 F:      arch/powerpc/platforms/ps3/
16106 F:      drivers/*/ps3*
16107 F:      drivers/ps3/
16108 F:      drivers/rtc/rtc-ps3.c
16109 F:      drivers/usb/host/*ps3.c
16110 F:      sound/ppc/snd_ps3*
16111
16112 PS3VRAM DRIVER
16113 M:      Jim Paris <jim@jtan.com>
16114 M:      Geoff Levand <geoff@infradead.org>
16115 L:      linuxppc-dev@lists.ozlabs.org
16116 S:      Maintained
16117 F:      drivers/block/ps3vram.c
16118
16119 PSAMPLE PACKET SAMPLING SUPPORT
16120 M:      Yotam Gigi <yotam.gi@gmail.com>
16121 S:      Maintained
16122 F:      include/net/psample.h
16123 F:      include/uapi/linux/psample.h
16124 F:      net/psample
16125
16126 PSTORE FILESYSTEM
16127 M:      Kees Cook <keescook@chromium.org>
16128 M:      Anton Vorontsov <anton@enomsg.org>
16129 M:      Colin Cross <ccross@android.com>
16130 M:      Tony Luck <tony.luck@intel.com>
16131 S:      Maintained
16132 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/pstore
16133 F:      Documentation/admin-guide/ramoops.rst
16134 F:      Documentation/admin-guide/pstore-blk.rst
16135 F:      Documentation/devicetree/bindings/reserved-memory/ramoops.yaml
16136 F:      drivers/acpi/apei/erst.c
16137 F:      drivers/firmware/efi/efi-pstore.c
16138 F:      fs/pstore/
16139 F:      include/linux/pstore*
16140 K:      \b(pstore|ramoops)
16141
16142 PTP HARDWARE CLOCK SUPPORT
16143 M:      Richard Cochran <richardcochran@gmail.com>
16144 L:      netdev@vger.kernel.org
16145 S:      Maintained
16146 W:      http://linuxptp.sourceforge.net/
16147 F:      Documentation/ABI/testing/sysfs-ptp
16148 F:      Documentation/driver-api/ptp.rst
16149 F:      drivers/net/phy/dp83640*
16150 F:      drivers/ptp/*
16151 F:      include/linux/ptp_cl*
16152
16153 PTP VIRTUAL CLOCK SUPPORT
16154 M:      Yangbo Lu <yangbo.lu@nxp.com>
16155 L:      netdev@vger.kernel.org
16156 S:      Maintained
16157 F:      drivers/ptp/ptp_vclock.c
16158 F:      net/ethtool/phc_vclocks.c
16159
16160 PTRACE SUPPORT
16161 M:      Oleg Nesterov <oleg@redhat.com>
16162 S:      Maintained
16163 F:      arch/*/*/ptrace*.c
16164 F:      arch/*/include/asm/ptrace*.h
16165 F:      arch/*/ptrace*.c
16166 F:      include/asm-generic/syscall.h
16167 F:      include/linux/ptrace.h
16168 F:      include/linux/regset.h
16169 F:      include/uapi/linux/ptrace.h
16170 F:      kernel/ptrace.c
16171
16172 PULSE8-CEC DRIVER
16173 M:      Hans Verkuil <hverkuil@xs4all.nl>
16174 L:      linux-media@vger.kernel.org
16175 S:      Maintained
16176 T:      git git://linuxtv.org/media_tree.git
16177 F:      Documentation/admin-guide/media/pulse8-cec.rst
16178 F:      drivers/media/cec/usb/pulse8/
16179
16180 PURELIFI PLFXLC DRIVER
16181 M:      Srinivasan Raju <srini.raju@purelifi.com>
16182 L:      linux-wireless@vger.kernel.org
16183 S:      Supported
16184 F:      drivers/net/wireless/purelifi/plfxlc/
16185
16186 PVRUSB2 VIDEO4LINUX DRIVER
16187 M:      Mike Isely <isely@pobox.com>
16188 L:      pvrusb2@isely.net       (subscribers-only)
16189 L:      linux-media@vger.kernel.org
16190 S:      Maintained
16191 W:      http://www.isely.net/pvrusb2/
16192 T:      git git://linuxtv.org/media_tree.git
16193 F:      Documentation/driver-api/media/drivers/pvrusb2*
16194 F:      drivers/media/usb/pvrusb2/
16195
16196 PWC WEBCAM DRIVER
16197 M:      Hans Verkuil <hverkuil@xs4all.nl>
16198 L:      linux-media@vger.kernel.org
16199 S:      Odd Fixes
16200 T:      git git://linuxtv.org/media_tree.git
16201 F:      drivers/media/usb/pwc/*
16202 F:      include/trace/events/pwc.h
16203
16204 PWM FAN DRIVER
16205 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
16206 L:      linux-hwmon@vger.kernel.org
16207 S:      Supported
16208 F:      Documentation/devicetree/bindings/hwmon/pwm-fan.txt
16209 F:      Documentation/hwmon/pwm-fan.rst
16210 F:      drivers/hwmon/pwm-fan.c
16211
16212 PWM IR Transmitter
16213 M:      Sean Young <sean@mess.org>
16214 L:      linux-media@vger.kernel.org
16215 S:      Maintained
16216 F:      drivers/media/rc/pwm-ir-tx.c
16217
16218 PWM SUBSYSTEM
16219 M:      Thierry Reding <thierry.reding@gmail.com>
16220 R:      Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
16221 M:      Lee Jones <lee.jones@linaro.org>
16222 L:      linux-pwm@vger.kernel.org
16223 S:      Maintained
16224 Q:      https://patchwork.ozlabs.org/project/linux-pwm/list/
16225 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git
16226 F:      Documentation/devicetree/bindings/gpio/gpio-mvebu.txt
16227 F:      Documentation/devicetree/bindings/pwm/
16228 F:      Documentation/driver-api/pwm.rst
16229 F:      drivers/gpio/gpio-mvebu.c
16230 F:      drivers/pwm/
16231 F:      drivers/video/backlight/pwm_bl.c
16232 F:      include/linux/pwm.h
16233 F:      include/linux/pwm_backlight.h
16234 K:      pwm_(config|apply_state|ops)
16235
16236 PXA GPIO DRIVER
16237 M:      Robert Jarzmik <robert.jarzmik@free.fr>
16238 L:      linux-gpio@vger.kernel.org
16239 S:      Maintained
16240 F:      drivers/gpio/gpio-pxa.c
16241
16242 PXA MMCI DRIVER
16243 S:      Orphan
16244
16245 PXA RTC DRIVER
16246 M:      Robert Jarzmik <robert.jarzmik@free.fr>
16247 L:      linux-rtc@vger.kernel.org
16248 S:      Maintained
16249
16250 PXA2xx/PXA3xx SUPPORT
16251 M:      Daniel Mack <daniel@zonque.org>
16252 M:      Haojian Zhuang <haojian.zhuang@gmail.com>
16253 M:      Robert Jarzmik <robert.jarzmik@free.fr>
16254 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16255 S:      Maintained
16256 T:      git git://github.com/hzhuang1/linux.git
16257 T:      git git://github.com/rjarzmik/linux.git
16258 F:      arch/arm/boot/dts/pxa*
16259 F:      arch/arm/mach-pxa/
16260 F:      drivers/dma/pxa*
16261 F:      drivers/pcmcia/pxa2xx*
16262 F:      drivers/pinctrl/pxa/
16263 F:      drivers/spi/spi-pxa2xx*
16264 F:      drivers/usb/gadget/udc/pxa2*
16265 F:      include/sound/pxa2xx-lib.h
16266 F:      sound/arm/pxa*
16267 F:      sound/soc/pxa/
16268
16269 QAT DRIVER
16270 M:      Giovanni Cabiddu <giovanni.cabiddu@intel.com>
16271 L:      qat-linux@intel.com
16272 S:      Supported
16273 F:      drivers/crypto/qat/
16274
16275 QCOM AUDIO (ASoC) DRIVERS
16276 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
16277 M:      Banajit Goswami <bgoswami@codeaurora.org>
16278 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16279 S:      Supported
16280 F:      sound/soc/codecs/lpass-va-macro.c
16281 F:      sound/soc/codecs/lpass-wsa-macro.*
16282 F:      sound/soc/codecs/msm8916-wcd-analog.c
16283 F:      sound/soc/codecs/msm8916-wcd-digital.c
16284 F:      sound/soc/codecs/wcd9335.*
16285 F:      sound/soc/codecs/wcd934x.c
16286 F:      sound/soc/codecs/wcd-clsh-v2.*
16287 F:      sound/soc/codecs/wsa881x.c
16288 F:      sound/soc/qcom/
16289
16290 QCOM EMBEDDED USB DEBUGGER (EUD)
16291 M:      Souradeep Chowdhury <quic_schowdhu@quicinc.com>
16292 L:      linux-arm-msm@vger.kernel.org
16293 S:      Maintained
16294 F:      Documentation/ABI/testing/sysfs-driver-eud
16295 F:      Documentation/devicetree/bindings/soc/qcom/qcom,eud.yaml
16296 F:      drivers/usb/misc/qcom_eud.c
16297
16298 QCOM IPA DRIVER
16299 M:      Alex Elder <elder@kernel.org>
16300 L:      netdev@vger.kernel.org
16301 S:      Supported
16302 F:      drivers/net/ipa/
16303
16304 QEMU MACHINE EMULATOR AND VIRTUALIZER SUPPORT
16305 M:      Gabriel Somlo <somlo@cmu.edu>
16306 M:      "Michael S. Tsirkin" <mst@redhat.com>
16307 L:      qemu-devel@nongnu.org
16308 S:      Maintained
16309 F:      drivers/firmware/qemu_fw_cfg.c
16310 F:      include/uapi/linux/qemu_fw_cfg.h
16311
16312 QIB DRIVER
16313 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
16314 L:      linux-rdma@vger.kernel.org
16315 S:      Supported
16316 F:      drivers/infiniband/hw/qib/
16317
16318 QLOGIC QL41xxx FCOE DRIVER
16319 M:      Saurav Kashyap <skashyap@marvell.com>
16320 M:      Javed Hasan <jhasan@marvell.com>
16321 M:      GR-QLogic-Storage-Upstream@marvell.com
16322 L:      linux-scsi@vger.kernel.org
16323 S:      Supported
16324 F:      drivers/scsi/qedf/
16325
16326 QLOGIC QL41xxx ISCSI DRIVER
16327 M:      Nilesh Javali <njavali@marvell.com>
16328 M:      Manish Rangankar <mrangankar@marvell.com>
16329 M:      GR-QLogic-Storage-Upstream@marvell.com
16330 L:      linux-scsi@vger.kernel.org
16331 S:      Supported
16332 F:      drivers/scsi/qedi/
16333
16334 QLOGIC QL4xxx ETHERNET DRIVER
16335 M:      Ariel Elior <aelior@marvell.com>
16336 M:      Manish Chopra <manishc@marvell.com>
16337 L:      netdev@vger.kernel.org
16338 S:      Supported
16339 F:      drivers/net/ethernet/qlogic/qed/
16340 F:      drivers/net/ethernet/qlogic/qede/
16341 F:      include/linux/qed/
16342
16343 QLOGIC QL4xxx RDMA DRIVER
16344 M:      Michal Kalderon <mkalderon@marvell.com>
16345 M:      Ariel Elior <aelior@marvell.com>
16346 L:      linux-rdma@vger.kernel.org
16347 S:      Supported
16348 F:      drivers/infiniband/hw/qedr/
16349 F:      include/uapi/rdma/qedr-abi.h
16350
16351 QLOGIC QLA1280 SCSI DRIVER
16352 M:      Michael Reed <mdr@sgi.com>
16353 L:      linux-scsi@vger.kernel.org
16354 S:      Maintained
16355 F:      drivers/scsi/qla1280.[ch]
16356
16357 QLOGIC QLA2XXX FC-SCSI DRIVER
16358 M:      Nilesh Javali <njavali@marvell.com>
16359 M:      GR-QLogic-Storage-Upstream@marvell.com
16360 L:      linux-scsi@vger.kernel.org
16361 S:      Supported
16362 F:      drivers/scsi/qla2xxx/
16363
16364 QLOGIC QLA3XXX NETWORK DRIVER
16365 M:      GR-Linux-NIC-Dev@marvell.com
16366 L:      netdev@vger.kernel.org
16367 S:      Supported
16368 F:      drivers/net/ethernet/qlogic/qla3xxx.*
16369
16370 QLOGIC QLA4XXX iSCSI DRIVER
16371 M:      Nilesh Javali <njavali@marvell.com>
16372 M:      Manish Rangankar <mrangankar@marvell.com>
16373 M:      GR-QLogic-Storage-Upstream@marvell.com
16374 L:      linux-scsi@vger.kernel.org
16375 S:      Supported
16376 F:      drivers/scsi/qla4xxx/
16377
16378 QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
16379 M:      Shahed Shaikh <shshaikh@marvell.com>
16380 M:      Manish Chopra <manishc@marvell.com>
16381 M:      GR-Linux-NIC-Dev@marvell.com
16382 L:      netdev@vger.kernel.org
16383 S:      Supported
16384 F:      drivers/net/ethernet/qlogic/qlcnic/
16385
16386 QLOGIC QLGE 10Gb ETHERNET DRIVER
16387 M:      Manish Chopra <manishc@marvell.com>
16388 M:      GR-Linux-NIC-Dev@marvell.com
16389 M:      Coiby Xu <coiby.xu@gmail.com>
16390 L:      netdev@vger.kernel.org
16391 S:      Supported
16392 F:      Documentation/networking/device_drivers/qlogic/qlge.rst
16393 F:      drivers/staging/qlge/
16394
16395 QM1D1B0004 MEDIA DRIVER
16396 M:      Akihiro Tsukada <tskd08@gmail.com>
16397 L:      linux-media@vger.kernel.org
16398 S:      Odd Fixes
16399 F:      drivers/media/tuners/qm1d1b0004*
16400
16401 QM1D1C0042 MEDIA DRIVER
16402 M:      Akihiro Tsukada <tskd08@gmail.com>
16403 L:      linux-media@vger.kernel.org
16404 S:      Odd Fixes
16405 F:      drivers/media/tuners/qm1d1c0042*
16406
16407 QNX4 FILESYSTEM
16408 M:      Anders Larsen <al@alarsen.net>
16409 S:      Maintained
16410 W:      http://www.alarsen.net/linux/qnx4fs/
16411 F:      fs/qnx4/
16412 F:      include/uapi/linux/qnx4_fs.h
16413 F:      include/uapi/linux/qnxtypes.h
16414
16415 QORIQ DPAA2 FSL-MC BUS DRIVER
16416 M:      Stuart Yoder <stuyoder@gmail.com>
16417 M:      Laurentiu Tudor <laurentiu.tudor@nxp.com>
16418 L:      linux-kernel@vger.kernel.org
16419 S:      Maintained
16420 F:      Documentation/ABI/stable/sysfs-bus-fsl-mc
16421 F:      Documentation/devicetree/bindings/misc/fsl,qoriq-mc.txt
16422 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/overview.rst
16423 F:      drivers/bus/fsl-mc/
16424 F:      include/uapi/linux/fsl_mc.h
16425
16426 QT1010 MEDIA DRIVER
16427 M:      Antti Palosaari <crope@iki.fi>
16428 L:      linux-media@vger.kernel.org
16429 S:      Maintained
16430 W:      https://linuxtv.org
16431 W:      http://palosaari.fi/linux/
16432 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16433 T:      git git://linuxtv.org/anttip/media_tree.git
16434 F:      drivers/media/tuners/qt1010*
16435
16436 QUALCOMM ATHEROS ATH10K WIRELESS DRIVER
16437 M:      Kalle Valo <kvalo@kernel.org>
16438 L:      ath10k@lists.infradead.org
16439 S:      Supported
16440 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath10k
16441 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
16442 F:      drivers/net/wireless/ath/ath10k/
16443 F:      Documentation/devicetree/bindings/net/wireless/qcom,ath10k.txt
16444
16445 QUALCOMM ATHEROS ATH11K WIRELESS DRIVER
16446 M:      Kalle Valo <kvalo@kernel.org>
16447 L:      ath11k@lists.infradead.org
16448 S:      Supported
16449 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
16450 F:      Documentation/devicetree/bindings/net/wireless/qcom,ath11k.yaml
16451 F:      drivers/net/wireless/ath/ath11k/
16452
16453 QUALCOMM ATHEROS ATH9K WIRELESS DRIVER
16454 M:      Toke Høiland-Jørgensen <toke@toke.dk>
16455 L:      linux-wireless@vger.kernel.org
16456 S:      Maintained
16457 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath9k
16458 F:      Documentation/devicetree/bindings/net/wireless/qca,ath9k.yaml
16459 F:      drivers/net/wireless/ath/ath9k/
16460
16461 QUALCOMM BAM-DMUX WWAN NETWORK DRIVER
16462 M:      Stephan Gerhold <stephan@gerhold.net>
16463 L:      netdev@vger.kernel.org
16464 L:      linux-arm-msm@vger.kernel.org
16465 S:      Maintained
16466 F:      Documentation/devicetree/bindings/net/qcom,bam-dmux.yaml
16467 F:      drivers/net/wwan/qcom_bam_dmux.c
16468
16469 QUALCOMM CAMERA SUBSYSTEM DRIVER
16470 M:      Robert Foss <robert.foss@linaro.org>
16471 M:      Todor Tomov <todor.too@gmail.com>
16472 L:      linux-media@vger.kernel.org
16473 S:      Maintained
16474 F:      Documentation/admin-guide/media/qcom_camss.rst
16475 F:      Documentation/devicetree/bindings/media/*camss*
16476 F:      drivers/media/platform/qcom/camss/
16477
16478 QUALCOMM CLOCK DRIVERS
16479 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
16480 L:      linux-arm-msm@vger.kernel.org
16481 S:      Supported
16482 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/qcom/linux.git
16483 F:      Documentation/devicetree/bindings/clock/qcom,*
16484 F:      drivers/clk/qcom/
16485 F:      include/dt-bindings/clock/qcom,*
16486
16487 QUALCOMM CORE POWER REDUCTION (CPR) AVS DRIVER
16488 M:      Niklas Cassel <nks@flawful.org>
16489 L:      linux-pm@vger.kernel.org
16490 L:      linux-arm-msm@vger.kernel.org
16491 S:      Maintained
16492 F:      Documentation/devicetree/bindings/power/avs/qcom,cpr.yaml
16493 F:      drivers/soc/qcom/cpr.c
16494
16495 QUALCOMM CPUFREQ DRIVER MSM8996/APQ8096
16496 M:      Ilia Lin <ilia.lin@kernel.org>
16497 L:      linux-pm@vger.kernel.org
16498 S:      Maintained
16499 F:      Documentation/devicetree/bindings/cpufreq/qcom-cpufreq-nvmem.yaml
16500 F:      Documentation/devicetree/bindings/opp/opp-v2-kryo-cpu.yaml
16501 F:      drivers/cpufreq/qcom-cpufreq-nvmem.c
16502
16503 QUALCOMM CRYPTO DRIVERS
16504 M:      Thara Gopinath <thara.gopinath@linaro.org>
16505 L:      linux-crypto@vger.kernel.org
16506 L:      linux-arm-msm@vger.kernel.org
16507 S:      Maintained
16508 F:      drivers/crypto/qce/
16509
16510 QUALCOMM EMAC GIGABIT ETHERNET DRIVER
16511 M:      Timur Tabi <timur@kernel.org>
16512 L:      netdev@vger.kernel.org
16513 S:      Maintained
16514 F:      drivers/net/ethernet/qualcomm/emac/
16515
16516 QUALCOMM ETHQOS ETHERNET DRIVER
16517 M:      Vinod Koul <vkoul@kernel.org>
16518 L:      netdev@vger.kernel.org
16519 S:      Maintained
16520 F:      Documentation/devicetree/bindings/net/qcom,ethqos.txt
16521 F:      drivers/net/ethernet/stmicro/stmmac/dwmac-qcom-ethqos.c
16522
16523 QUALCOMM FASTRPC DRIVER
16524 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
16525 M:      Amol Maheshwari <amahesh@qti.qualcomm.com>
16526 L:      linux-arm-msm@vger.kernel.org
16527 S:      Maintained
16528 F:      Documentation/devicetree/bindings/misc/qcom,fastrpc.txt
16529 F:      drivers/misc/fastrpc.c
16530 F:      include/uapi/misc/fastrpc.h
16531
16532 QUALCOMM HEXAGON ARCHITECTURE
16533 M:      Brian Cain <bcain@quicinc.com>
16534 L:      linux-hexagon@vger.kernel.org
16535 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bcain/linux.git
16536 S:      Supported
16537 F:      arch/hexagon/
16538
16539 QUALCOMM HIDMA DRIVER
16540 M:      Sinan Kaya <okaya@kernel.org>
16541 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16542 L:      linux-arm-msm@vger.kernel.org
16543 L:      dmaengine@vger.kernel.org
16544 S:      Supported
16545 F:      drivers/dma/qcom/hidma*
16546
16547 QUALCOMM I2C CCI DRIVER
16548 M:      Loic Poulain <loic.poulain@linaro.org>
16549 M:      Robert Foss <robert.foss@linaro.org>
16550 L:      linux-i2c@vger.kernel.org
16551 L:      linux-arm-msm@vger.kernel.org
16552 S:      Maintained
16553 F:      Documentation/devicetree/bindings/i2c/i2c-qcom-cci.txt
16554 F:      drivers/i2c/busses/i2c-qcom-cci.c
16555
16556 QUALCOMM IOMMU
16557 M:      Rob Clark <robdclark@gmail.com>
16558 L:      iommu@lists.linux-foundation.org
16559 L:      linux-arm-msm@vger.kernel.org
16560 S:      Maintained
16561 F:      drivers/iommu/arm/arm-smmu/qcom_iommu.c
16562
16563 QUALCOMM IPC ROUTER (QRTR) DRIVER
16564 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
16565 L:      linux-arm-msm@vger.kernel.org
16566 S:      Maintained
16567 F:      include/trace/events/qrtr.h
16568 F:      include/uapi/linux/qrtr.h
16569 F:      net/qrtr/
16570
16571 QUALCOMM IPCC MAILBOX DRIVER
16572 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
16573 L:      linux-arm-msm@vger.kernel.org
16574 S:      Supported
16575 F:      Documentation/devicetree/bindings/mailbox/qcom-ipcc.yaml
16576 F:      drivers/mailbox/qcom-ipcc.c
16577 F:      include/dt-bindings/mailbox/qcom-ipcc.h
16578
16579 QUALCOMM IPQ4019 USB PHY DRIVER
16580 M:      Robert Marko <robert.marko@sartura.hr>
16581 M:      Luka Perkov <luka.perkov@sartura.hr>
16582 L:      linux-arm-msm@vger.kernel.org
16583 S:      Maintained
16584 F:      Documentation/devicetree/bindings/phy/qcom-usb-ipq4019-phy.yaml
16585 F:      drivers/phy/qualcomm/phy-qcom-ipq4019-usb.c
16586
16587 QUALCOMM IPQ4019 VQMMC REGULATOR DRIVER
16588 M:      Robert Marko <robert.marko@sartura.hr>
16589 M:      Luka Perkov <luka.perkov@sartura.hr>
16590 L:      linux-arm-msm@vger.kernel.org
16591 S:      Maintained
16592 F:      Documentation/devicetree/bindings/regulator/vqmmc-ipq4019-regulator.yaml
16593 F:      drivers/regulator/vqmmc-ipq4019-regulator.c
16594
16595 QUALCOMM NAND CONTROLLER DRIVER
16596 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
16597 L:      linux-mtd@lists.infradead.org
16598 L:      linux-arm-msm@vger.kernel.org
16599 S:      Maintained
16600 F:      Documentation/devicetree/bindings/mtd/qcom,nandc.yaml
16601 F:      drivers/mtd/nand/raw/qcom_nandc.c
16602
16603 QUALCOMM RMNET DRIVER
16604 M:      Subash Abhinov Kasiviswanathan <quic_subashab@quicinc.com>
16605 M:      Sean Tranchetti <quic_stranche@quicinc.com>
16606 L:      netdev@vger.kernel.org
16607 S:      Maintained
16608 F:      Documentation/networking/device_drivers/cellular/qualcomm/rmnet.rst
16609 F:      drivers/net/ethernet/qualcomm/rmnet/
16610 F:      include/linux/if_rmnet.h
16611
16612 QUALCOMM TSENS THERMAL DRIVER
16613 M:      Amit Kucheria <amitk@kernel.org>
16614 M:      Thara Gopinath <thara.gopinath@linaro.org>
16615 L:      linux-pm@vger.kernel.org
16616 L:      linux-arm-msm@vger.kernel.org
16617 S:      Maintained
16618 F:      Documentation/devicetree/bindings/thermal/qcom-tsens.yaml
16619 F:      drivers/thermal/qcom/
16620
16621 QUALCOMM VENUS VIDEO ACCELERATOR DRIVER
16622 M:      Stanimir Varbanov <stanimir.varbanov@linaro.org>
16623 L:      linux-media@vger.kernel.org
16624 L:      linux-arm-msm@vger.kernel.org
16625 S:      Maintained
16626 T:      git git://linuxtv.org/media_tree.git
16627 F:      Documentation/devicetree/bindings/media/*venus*
16628 F:      drivers/media/platform/qcom/venus/
16629
16630 QUALCOMM WCN36XX WIRELESS DRIVER
16631 M:      Loic Poulain <loic.poulain@linaro.org>
16632 L:      wcn36xx@lists.infradead.org
16633 S:      Supported
16634 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wcn36xx
16635 F:      drivers/net/wireless/ath/wcn36xx/
16636
16637 QUANTENNA QTNFMAC WIRELESS DRIVER
16638 M:      Igor Mitsyanko <imitsyanko@quantenna.com>
16639 R:      Sergey Matyukevich <geomatsi@gmail.com>
16640 L:      linux-wireless@vger.kernel.org
16641 S:      Maintained
16642 F:      drivers/net/wireless/quantenna
16643
16644 RADEON and AMDGPU DRM DRIVERS
16645 M:      Alex Deucher <alexander.deucher@amd.com>
16646 M:      Christian König <christian.koenig@amd.com>
16647 M:      Pan, Xinhui <Xinhui.Pan@amd.com>
16648 L:      amd-gfx@lists.freedesktop.org
16649 S:      Supported
16650 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
16651 B:      https://gitlab.freedesktop.org/drm/amd/-/issues
16652 C:      irc://irc.oftc.net/radeon
16653 F:      Documentation/gpu/amdgpu/
16654 F:      drivers/gpu/drm/amd/
16655 F:      drivers/gpu/drm/radeon/
16656 F:      include/uapi/drm/amdgpu_drm.h
16657 F:      include/uapi/drm/radeon_drm.h
16658
16659 RADEON FRAMEBUFFER DISPLAY DRIVER
16660 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
16661 L:      linux-fbdev@vger.kernel.org
16662 S:      Maintained
16663 F:      drivers/video/fbdev/aty/radeon*
16664 F:      include/uapi/linux/radeonfb.h
16665
16666 RADIOSHARK RADIO DRIVER
16667 M:      Hans Verkuil <hverkuil@xs4all.nl>
16668 L:      linux-media@vger.kernel.org
16669 S:      Maintained
16670 T:      git git://linuxtv.org/media_tree.git
16671 F:      drivers/media/radio/radio-shark.c
16672
16673 RADIOSHARK2 RADIO DRIVER
16674 M:      Hans Verkuil <hverkuil@xs4all.nl>
16675 L:      linux-media@vger.kernel.org
16676 S:      Maintained
16677 T:      git git://linuxtv.org/media_tree.git
16678 F:      drivers/media/radio/radio-shark2.c
16679 F:      drivers/media/radio/radio-tea5777.c
16680
16681 RADOS BLOCK DEVICE (RBD)
16682 M:      Ilya Dryomov <idryomov@gmail.com>
16683 R:      Dongsheng Yang <dongsheng.yang@easystack.cn>
16684 L:      ceph-devel@vger.kernel.org
16685 S:      Supported
16686 W:      http://ceph.com/
16687 T:      git git://github.com/ceph/ceph-client.git
16688 F:      Documentation/ABI/testing/sysfs-bus-rbd
16689 F:      drivers/block/rbd.c
16690 F:      drivers/block/rbd_types.h
16691
16692 RAGE128 FRAMEBUFFER DISPLAY DRIVER
16693 M:      Paul Mackerras <paulus@samba.org>
16694 L:      linux-fbdev@vger.kernel.org
16695 S:      Maintained
16696 F:      drivers/video/fbdev/aty/aty128fb.c
16697
16698 RAINSHADOW-CEC DRIVER
16699 M:      Hans Verkuil <hverkuil@xs4all.nl>
16700 L:      linux-media@vger.kernel.org
16701 S:      Maintained
16702 T:      git git://linuxtv.org/media_tree.git
16703 F:      drivers/media/cec/usb/rainshadow/
16704
16705 RALINK MIPS ARCHITECTURE
16706 M:      John Crispin <john@phrozen.org>
16707 L:      linux-mips@vger.kernel.org
16708 S:      Maintained
16709 F:      arch/mips/ralink
16710
16711 RALINK MT7621 MIPS ARCHITECTURE
16712 M:      Arınç ÜNAL <arinc.unal@arinc9.com>
16713 M:      Sergio Paracuellos <sergio.paracuellos@gmail.com>
16714 L:      linux-mips@vger.kernel.org
16715 S:      Maintained
16716 F:      arch/mips/boot/dts/ralink/mt7621*
16717
16718 RALINK PINCTRL DRIVER
16719 M:      Arınç ÜNAL <arinc.unal@arinc9.com>
16720 M:      Sergio Paracuellos <sergio.paracuellos@gmail.com>
16721 L:      linux-mips@vger.kernel.org
16722 S:      Maintained
16723 F:      drivers/pinctrl/ralink/
16724
16725 RALINK RT2X00 WIRELESS LAN DRIVER
16726 M:      Stanislaw Gruszka <stf_xl@wp.pl>
16727 M:      Helmut Schaa <helmut.schaa@googlemail.com>
16728 L:      linux-wireless@vger.kernel.org
16729 S:      Maintained
16730 F:      drivers/net/wireless/ralink/rt2x00/
16731
16732 RAMDISK RAM BLOCK DEVICE DRIVER
16733 M:      Jens Axboe <axboe@kernel.dk>
16734 S:      Maintained
16735 F:      Documentation/admin-guide/blockdev/ramdisk.rst
16736 F:      drivers/block/brd.c
16737
16738 RANCHU VIRTUAL BOARD FOR MIPS
16739 M:      Miodrag Dinic <miodrag.dinic@mips.com>
16740 L:      linux-mips@vger.kernel.org
16741 S:      Supported
16742 F:      arch/mips/configs/generic/board-ranchu.config
16743 F:      arch/mips/generic/board-ranchu.c
16744
16745 RANDOM NUMBER DRIVER
16746 M:      "Theodore Ts'o" <tytso@mit.edu>
16747 M:      Jason A. Donenfeld <Jason@zx2c4.com>
16748 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/crng/random.git
16749 S:      Maintained
16750 F:      drivers/char/random.c
16751 F:      drivers/virt/vmgenid.c
16752
16753 RAPIDIO SUBSYSTEM
16754 M:      Matt Porter <mporter@kernel.crashing.org>
16755 M:      Alexandre Bounine <alex.bou9@gmail.com>
16756 S:      Maintained
16757 F:      drivers/rapidio/
16758
16759 RAS INFRASTRUCTURE
16760 M:      Tony Luck <tony.luck@intel.com>
16761 M:      Borislav Petkov <bp@alien8.de>
16762 L:      linux-edac@vger.kernel.org
16763 S:      Maintained
16764 F:      Documentation/admin-guide/ras.rst
16765 F:      drivers/ras/
16766 F:      include/linux/ras.h
16767 F:      include/ras/ras_event.h
16768
16769 RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
16770 L:      linux-wireless@vger.kernel.org
16771 S:      Orphan
16772 F:      drivers/net/wireless/ray*
16773
16774 RC-CORE / LIRC FRAMEWORK
16775 M:      Sean Young <sean@mess.org>
16776 L:      linux-media@vger.kernel.org
16777 S:      Maintained
16778 W:      http://linuxtv.org
16779 T:      git git://linuxtv.org/media_tree.git
16780 F:      Documentation/driver-api/media/rc-core.rst
16781 F:      Documentation/userspace-api/media/rc/
16782 F:      drivers/media/rc/
16783 F:      include/media/rc-map.h
16784 F:      include/media/rc-core.h
16785 F:      include/uapi/linux/lirc.h
16786
16787 RCMM REMOTE CONTROLS DECODER
16788 M:      Patrick Lerda <patrick9876@free.fr>
16789 S:      Maintained
16790 F:      drivers/media/rc/ir-rcmm-decoder.c
16791
16792 RCUTORTURE TEST FRAMEWORK
16793 M:      "Paul E. McKenney" <paulmck@kernel.org>
16794 M:      Josh Triplett <josh@joshtriplett.org>
16795 R:      Steven Rostedt <rostedt@goodmis.org>
16796 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
16797 R:      Lai Jiangshan <jiangshanlai@gmail.com>
16798 L:      rcu@vger.kernel.org
16799 S:      Supported
16800 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
16801 F:      tools/testing/selftests/rcutorture
16802
16803 RDACM20 Camera Sensor
16804 M:      Jacopo Mondi <jacopo+renesas@jmondi.org>
16805 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
16806 M:      Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
16807 M:      Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
16808 L:      linux-media@vger.kernel.org
16809 S:      Maintained
16810 F:      Documentation/devicetree/bindings/media/i2c/imi,rdacm2x-gmsl.yaml
16811 F:      drivers/media/i2c/max9271.c
16812 F:      drivers/media/i2c/max9271.h
16813 F:      drivers/media/i2c/rdacm20.c
16814
16815 RDACM21 Camera Sensor
16816 M:      Jacopo Mondi <jacopo+renesas@jmondi.org>
16817 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
16818 M:      Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
16819 M:      Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
16820 L:      linux-media@vger.kernel.org
16821 S:      Maintained
16822 F:      Documentation/devicetree/bindings/media/i2c/imi,rdacm2x-gmsl.yaml
16823 F:      drivers/media/i2c/max9271.c
16824 F:      drivers/media/i2c/max9271.h
16825 F:      drivers/media/i2c/rdacm21.c
16826
16827 RDC R-321X SoC
16828 M:      Florian Fainelli <florian@openwrt.org>
16829 S:      Maintained
16830
16831 RDC R6040 FAST ETHERNET DRIVER
16832 M:      Florian Fainelli <f.fainelli@gmail.com>
16833 L:      netdev@vger.kernel.org
16834 S:      Maintained
16835 F:      drivers/net/ethernet/rdc/r6040.c
16836
16837 RDMAVT - RDMA verbs software
16838 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
16839 L:      linux-rdma@vger.kernel.org
16840 S:      Supported
16841 F:      drivers/infiniband/sw/rdmavt
16842
16843 RDS - RELIABLE DATAGRAM SOCKETS
16844 M:      Santosh Shilimkar <santosh.shilimkar@oracle.com>
16845 L:      netdev@vger.kernel.org
16846 L:      linux-rdma@vger.kernel.org
16847 L:      rds-devel@oss.oracle.com (moderated for non-subscribers)
16848 S:      Supported
16849 W:      https://oss.oracle.com/projects/rds/
16850 F:      Documentation/networking/rds.rst
16851 F:      net/rds/
16852
16853 RDT - RESOURCE ALLOCATION
16854 M:      Fenghua Yu <fenghua.yu@intel.com>
16855 M:      Reinette Chatre <reinette.chatre@intel.com>
16856 L:      linux-kernel@vger.kernel.org
16857 S:      Supported
16858 F:      Documentation/x86/resctrl*
16859 F:      arch/x86/include/asm/resctrl.h
16860 F:      arch/x86/kernel/cpu/resctrl/
16861 F:      tools/testing/selftests/resctrl/
16862
16863 READ-COPY UPDATE (RCU)
16864 M:      "Paul E. McKenney" <paulmck@kernel.org>
16865 M:      Frederic Weisbecker <frederic@kernel.org> (kernel/rcu/tree_nocb.h)
16866 M:      Neeraj Upadhyay <quic_neeraju@quicinc.com> (kernel/rcu/tasks.h)
16867 M:      Josh Triplett <josh@joshtriplett.org>
16868 R:      Steven Rostedt <rostedt@goodmis.org>
16869 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
16870 R:      Lai Jiangshan <jiangshanlai@gmail.com>
16871 R:      Joel Fernandes <joel@joelfernandes.org>
16872 L:      rcu@vger.kernel.org
16873 S:      Supported
16874 W:      http://www.rdrop.com/users/paulmck/RCU/
16875 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
16876 F:      Documentation/RCU/
16877 F:      include/linux/rcu*
16878 F:      kernel/rcu/
16879 X:      Documentation/RCU/torture.rst
16880 X:      include/linux/srcu*.h
16881 X:      kernel/rcu/srcu*.c
16882
16883 REAL TIME CLOCK (RTC) SUBSYSTEM
16884 M:      Alessandro Zummo <a.zummo@towertech.it>
16885 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
16886 L:      linux-rtc@vger.kernel.org
16887 S:      Maintained
16888 Q:      http://patchwork.ozlabs.org/project/rtc-linux/list/
16889 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git
16890 F:      Documentation/admin-guide/rtc.rst
16891 F:      Documentation/devicetree/bindings/rtc/
16892 F:      drivers/rtc/
16893 F:      include/linux/platform_data/rtc-*
16894 F:      include/linux/rtc.h
16895 F:      include/linux/rtc/
16896 F:      include/uapi/linux/rtc.h
16897 F:      tools/testing/selftests/rtc/
16898
16899 REALTEK AUDIO CODECS
16900 M:      Oder Chiou <oder_chiou@realtek.com>
16901 S:      Maintained
16902 F:      include/sound/rt*.h
16903 F:      sound/soc/codecs/rt*
16904
16905 REALTEK OTTO WATCHDOG
16906 M:      Sander Vanheule <sander@svanheule.net>
16907 L:      linux-watchdog@vger.kernel.org
16908 S:      Maintained
16909 F:      Documentation/devicetree/bindings/watchdog/realtek,otto-wdt.yaml
16910 F:      drivers/watchdog/realtek_otto_wdt.c
16911
16912 REALTEK RTL83xx SMI DSA ROUTER CHIPS
16913 M:      Linus Walleij <linus.walleij@linaro.org>
16914 M:      Alvin Šipraga <alsi@bang-olufsen.dk>
16915 S:      Maintained
16916 F:      Documentation/devicetree/bindings/net/dsa/realtek.yaml
16917 F:      drivers/net/dsa/realtek/*
16918
16919 REALTEK WIRELESS DRIVER (rtlwifi family)
16920 M:      Ping-Ke Shih <pkshih@realtek.com>
16921 L:      linux-wireless@vger.kernel.org
16922 S:      Maintained
16923 W:      https://wireless.wiki.kernel.org/
16924 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
16925 F:      drivers/net/wireless/realtek/rtlwifi/
16926
16927 REALTEK WIRELESS DRIVER (rtw88)
16928 M:      Yan-Hsuan Chuang <tony0620emma@gmail.com>
16929 L:      linux-wireless@vger.kernel.org
16930 S:      Maintained
16931 F:      drivers/net/wireless/realtek/rtw88/
16932
16933 REALTEK WIRELESS DRIVER (rtw89)
16934 M:      Ping-Ke Shih <pkshih@realtek.com>
16935 L:      linux-wireless@vger.kernel.org
16936 S:      Maintained
16937 F:      drivers/net/wireless/realtek/rtw89/
16938
16939 REDPINE WIRELESS DRIVER
16940 M:      Amitkumar Karwar <amitkarwar@gmail.com>
16941 M:      Siva Rebbagondla <siva8118@gmail.com>
16942 L:      linux-wireless@vger.kernel.org
16943 S:      Maintained
16944 F:      drivers/net/wireless/rsi/
16945
16946 REGISTER MAP ABSTRACTION
16947 M:      Mark Brown <broonie@kernel.org>
16948 L:      linux-kernel@vger.kernel.org
16949 S:      Supported
16950 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
16951 F:      Documentation/devicetree/bindings/regmap/
16952 F:      drivers/base/regmap/
16953 F:      include/linux/regmap.h
16954
16955 REISERFS FILE SYSTEM
16956 L:      reiserfs-devel@vger.kernel.org
16957 S:      Supported
16958 F:      fs/reiserfs/
16959
16960 REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
16961 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
16962 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
16963 L:      linux-remoteproc@vger.kernel.org
16964 S:      Maintained
16965 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/remoteproc/linux.git rproc-next
16966 F:      Documentation/ABI/testing/sysfs-class-remoteproc
16967 F:      Documentation/devicetree/bindings/remoteproc/
16968 F:      Documentation/staging/remoteproc.rst
16969 F:      drivers/remoteproc/
16970 F:      include/linux/remoteproc.h
16971 F:      include/linux/remoteproc/
16972
16973 REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM
16974 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
16975 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
16976 L:      linux-remoteproc@vger.kernel.org
16977 S:      Maintained
16978 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/remoteproc/linux.git rpmsg-next
16979 F:      Documentation/ABI/testing/sysfs-bus-rpmsg
16980 F:      Documentation/staging/rpmsg.rst
16981 F:      drivers/rpmsg/
16982 F:      include/linux/rpmsg.h
16983 F:      include/linux/rpmsg/
16984 F:      include/uapi/linux/rpmsg.h
16985 F:      samples/rpmsg/
16986
16987 REMOTE PROCESSOR MESSAGING (RPMSG) WWAN CONTROL DRIVER
16988 M:      Stephan Gerhold <stephan@gerhold.net>
16989 L:      netdev@vger.kernel.org
16990 L:      linux-remoteproc@vger.kernel.org
16991 S:      Maintained
16992 F:      drivers/net/wwan/rpmsg_wwan_ctrl.c
16993
16994 RENESAS CLOCK DRIVERS
16995 M:      Geert Uytterhoeven <geert+renesas@glider.be>
16996 L:      linux-renesas-soc@vger.kernel.org
16997 S:      Supported
16998 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git renesas-clk
16999 F:      Documentation/devicetree/bindings/clock/renesas,*
17000 F:      drivers/clk/renesas/
17001
17002 RENESAS EMEV2 I2C DRIVER
17003 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
17004 L:      linux-renesas-soc@vger.kernel.org
17005 S:      Supported
17006 F:      Documentation/devicetree/bindings/i2c/renesas,iic-emev2.yaml
17007 F:      drivers/i2c/busses/i2c-emev2.c
17008
17009 RENESAS ETHERNET DRIVERS
17010 R:      Sergey Shtylyov <s.shtylyov@omp.ru>
17011 L:      netdev@vger.kernel.org
17012 L:      linux-renesas-soc@vger.kernel.org
17013 F:      Documentation/devicetree/bindings/net/renesas,*.yaml
17014 F:      drivers/net/ethernet/renesas/
17015 F:      include/linux/sh_eth.h
17016
17017 RENESAS R-CAR GYROADC DRIVER
17018 M:      Marek Vasut <marek.vasut@gmail.com>
17019 L:      linux-iio@vger.kernel.org
17020 S:      Supported
17021 F:      Documentation/devicetree/bindings/iio/adc/renesas,rcar-gyroadc.yaml
17022 F:      drivers/iio/adc/rcar-gyroadc.c
17023
17024 RENESAS R-CAR I2C DRIVERS
17025 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
17026 L:      linux-renesas-soc@vger.kernel.org
17027 S:      Supported
17028 F:      Documentation/devicetree/bindings/i2c/renesas,rcar-i2c.yaml
17029 F:      Documentation/devicetree/bindings/i2c/renesas,rmobile-iic.yaml
17030 F:      drivers/i2c/busses/i2c-rcar.c
17031 F:      drivers/i2c/busses/i2c-sh_mobile.c
17032
17033 RENESAS R-CAR SATA DRIVER
17034 R:      Sergey Shtylyov <s.shtylyov@omp.ru>
17035 S:      Supported
17036 L:      linux-ide@vger.kernel.org
17037 L:      linux-renesas-soc@vger.kernel.org
17038 F:      Documentation/devicetree/bindings/ata/renesas,rcar-sata.yaml
17039 F:      drivers/ata/sata_rcar.c
17040
17041 RENESAS R-CAR THERMAL DRIVERS
17042 M:      Niklas Söderlund <niklas.soderlund@ragnatech.se>
17043 L:      linux-renesas-soc@vger.kernel.org
17044 S:      Supported
17045 F:      Documentation/devicetree/bindings/thermal/rcar-gen3-thermal.yaml
17046 F:      Documentation/devicetree/bindings/thermal/rcar-thermal.yaml
17047 F:      drivers/thermal/rcar_gen3_thermal.c
17048 F:      drivers/thermal/rcar_thermal.c
17049
17050 RENESAS RIIC DRIVER
17051 M:      Chris Brandt <chris.brandt@renesas.com>
17052 L:      linux-renesas-soc@vger.kernel.org
17053 S:      Supported
17054 F:      Documentation/devicetree/bindings/i2c/renesas,riic.yaml
17055 F:      drivers/i2c/busses/i2c-riic.c
17056
17057 RENESAS USB PHY DRIVER
17058 M:      Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
17059 L:      linux-renesas-soc@vger.kernel.org
17060 S:      Maintained
17061 F:      drivers/phy/renesas/phy-rcar-gen3-usb*.c
17062
17063 RENESAS RZ/G2L A/D DRIVER
17064 M:      Lad Prabhakar <prabhakar.mahadev-lad.rj@bp.renesas.com>
17065 L:      linux-iio@vger.kernel.org
17066 L:      linux-renesas-soc@vger.kernel.org
17067 S:      Supported
17068 F:      Documentation/devicetree/bindings/iio/adc/renesas,rzg2l-adc.yaml
17069 F:      drivers/iio/adc/rzg2l_adc.c
17070
17071 RENESAS RZ/N1 RTC CONTROLLER DRIVER
17072 M:      Miquel Raynal <miquel.raynal@bootlin.com>
17073 L:      linux-rtc@vger.kernel.org
17074 L:      linux-renesas-soc@vger.kernel.org
17075 S:      Maintained
17076 F:      Documentation/devicetree/bindings/rtc/renesas,rzn1-rtc.yaml
17077 F:      drivers/rtc/rtc-rzn1.c
17078
17079 RENESAS R-CAR GEN3 & RZ/N1 NAND CONTROLLER DRIVER
17080 M:      Miquel Raynal <miquel.raynal@bootlin.com>
17081 L:      linux-mtd@lists.infradead.org
17082 L:      linux-renesas-soc@vger.kernel.org
17083 S:      Maintained
17084 F:      Documentation/devicetree/bindings/mtd/renesas-nandc.yaml
17085 F:      drivers/mtd/nand/raw/renesas-nand-controller.c
17086
17087 RESET CONTROLLER FRAMEWORK
17088 M:      Philipp Zabel <p.zabel@pengutronix.de>
17089 S:      Maintained
17090 T:      git git://git.pengutronix.de/git/pza/linux
17091 F:      Documentation/devicetree/bindings/reset/
17092 F:      Documentation/driver-api/reset.rst
17093 F:      drivers/reset/
17094 F:      include/dt-bindings/reset/
17095 F:      include/linux/reset-controller.h
17096 F:      include/linux/reset.h
17097 F:      include/linux/reset/
17098 K:      \b(?:devm_|of_)?reset_control(?:ler_[a-z]+|_[a-z_]+)?\b
17099
17100 RESTARTABLE SEQUENCES SUPPORT
17101 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
17102 M:      Peter Zijlstra <peterz@infradead.org>
17103 M:      "Paul E. McKenney" <paulmck@kernel.org>
17104 M:      Boqun Feng <boqun.feng@gmail.com>
17105 L:      linux-kernel@vger.kernel.org
17106 S:      Supported
17107 F:      include/trace/events/rseq.h
17108 F:      include/uapi/linux/rseq.h
17109 F:      kernel/rseq.c
17110 F:      tools/testing/selftests/rseq/
17111
17112 RFKILL
17113 M:      Johannes Berg <johannes@sipsolutions.net>
17114 L:      linux-wireless@vger.kernel.org
17115 S:      Maintained
17116 W:      https://wireless.wiki.kernel.org/
17117 Q:      https://patchwork.kernel.org/project/linux-wireless/list/
17118 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless.git
17119 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless-next.git
17120 F:      Documentation/ABI/stable/sysfs-class-rfkill
17121 F:      Documentation/driver-api/rfkill.rst
17122 F:      include/linux/rfkill.h
17123 F:      include/uapi/linux/rfkill.h
17124 F:      net/rfkill/
17125
17126 RHASHTABLE
17127 M:      Thomas Graf <tgraf@suug.ch>
17128 M:      Herbert Xu <herbert@gondor.apana.org.au>
17129 L:      netdev@vger.kernel.org
17130 S:      Maintained
17131 F:      include/linux/rhashtable-types.h
17132 F:      include/linux/rhashtable.h
17133 F:      lib/rhashtable.c
17134 F:      lib/test_rhashtable.c
17135
17136 RICOH R5C592 MEMORYSTICK DRIVER
17137 M:      Maxim Levitsky <maximlevitsky@gmail.com>
17138 S:      Maintained
17139 F:      drivers/memstick/host/r592.*
17140
17141 RICOH SMARTMEDIA/XD DRIVER
17142 M:      Maxim Levitsky <maximlevitsky@gmail.com>
17143 S:      Maintained
17144 F:      drivers/mtd/nand/raw/r852.c
17145 F:      drivers/mtd/nand/raw/r852.h
17146
17147 RISC-V PMU DRIVERS
17148 M:      Atish Patra <atishp@atishpatra.org>
17149 R:      Anup Patel <anup@brainfault.org>
17150 L:      linux-riscv@lists.infradead.org
17151 S:      Supported
17152 F:      drivers/perf/riscv_pmu.c
17153 F:      drivers/perf/riscv_pmu_legacy.c
17154 F:      drivers/perf/riscv_pmu_sbi.c
17155
17156 RISC-V ARCHITECTURE
17157 M:      Paul Walmsley <paul.walmsley@sifive.com>
17158 M:      Palmer Dabbelt <palmer@dabbelt.com>
17159 M:      Albert Ou <aou@eecs.berkeley.edu>
17160 L:      linux-riscv@lists.infradead.org
17161 S:      Supported
17162 P:      Documentation/riscv/patch-acceptance.rst
17163 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/riscv/linux.git
17164 F:      arch/riscv/
17165 N:      riscv
17166 K:      riscv
17167
17168 RISC-V/MICROCHIP POLARFIRE SOC SUPPORT
17169 M:      Lewis Hanly <lewis.hanly@microchip.com>
17170 M:      Conor Dooley <conor.dooley@microchip.com>
17171 L:      linux-riscv@lists.infradead.org
17172 S:      Supported
17173 F:      arch/riscv/boot/dts/microchip/
17174 F:      drivers/mailbox/mailbox-mpfs.c
17175 F:      drivers/soc/microchip/
17176 F:      include/soc/microchip/mpfs.h
17177
17178 RNBD BLOCK DRIVERS
17179 M:      Md. Haris Iqbal <haris.iqbal@ionos.com>
17180 M:      Jack Wang <jinpu.wang@ionos.com>
17181 L:      linux-block@vger.kernel.org
17182 S:      Maintained
17183 F:      drivers/block/rnbd/
17184
17185 ROCCAT DRIVERS
17186 M:      Stefan Achatz <erazor_de@users.sourceforge.net>
17187 S:      Maintained
17188 W:      http://sourceforge.net/projects/roccat/
17189 F:      Documentation/ABI/*/sysfs-driver-hid-roccat*
17190 F:      drivers/hid/hid-roccat*
17191 F:      include/linux/hid-roccat*
17192
17193 ROCKCHIP I2S TDM DRIVER
17194 M:      Nicolas Frattaroli <frattaroli.nicolas@gmail.com>
17195 L:      linux-rockchip@lists.infradead.org
17196 S:      Maintained
17197 F:      Documentation/devicetree/bindings/sound/rockchip,i2s-tdm.yaml
17198 F:      sound/soc/rockchip/rockchip_i2s_tdm.*
17199
17200 ROCKCHIP ISP V1 DRIVER
17201 M:      Dafna Hirschfeld <dafna@fastmail.com>
17202 L:      linux-media@vger.kernel.org
17203 L:      linux-rockchip@lists.infradead.org
17204 S:      Maintained
17205 F:      Documentation/admin-guide/media/rkisp1.rst
17206 F:      Documentation/devicetree/bindings/media/rockchip-isp1.yaml
17207 F:      Documentation/userspace-api/media/v4l/pixfmt-meta-rkisp1.rst
17208 F:      drivers/media/platform/rockchip/rkisp1
17209 F:      include/uapi/linux/rkisp1-config.h
17210
17211 ROCKCHIP RASTER 2D GRAPHIC ACCELERATION UNIT DRIVER
17212 M:      Jacob Chen <jacob-chen@iotwrt.com>
17213 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
17214 L:      linux-media@vger.kernel.org
17215 L:      linux-rockchip@lists.infradead.org
17216 S:      Maintained
17217 F:      Documentation/devicetree/bindings/media/rockchip-rga.yaml
17218 F:      drivers/media/platform/rockchip/rga/
17219
17220 ROCKCHIP VIDEO DECODER DRIVER
17221 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
17222 L:      linux-media@vger.kernel.org
17223 L:      linux-rockchip@lists.infradead.org
17224 S:      Maintained
17225 F:      Documentation/devicetree/bindings/media/rockchip,vdec.yaml
17226 F:      drivers/staging/media/rkvdec/
17227
17228 ROCKER DRIVER
17229 M:      Jiri Pirko <jiri@resnulli.us>
17230 L:      netdev@vger.kernel.org
17231 S:      Supported
17232 F:      drivers/net/ethernet/rocker/
17233
17234 ROCKETPORT EXPRESS/INFINITY DRIVER
17235 M:      Kevin Cernekee <cernekee@gmail.com>
17236 L:      linux-serial@vger.kernel.org
17237 S:      Odd Fixes
17238 F:      drivers/tty/serial/rp2.*
17239
17240 ROHM BD99954 CHARGER IC
17241 R:      Matti Vaittinen <mazziesaccount@gmail.com>
17242 S:      Supported
17243 F:      drivers/power/supply/bd99954-charger.c
17244 F:      drivers/power/supply/bd99954-charger.h
17245
17246 ROHM BH1750 AMBIENT LIGHT SENSOR DRIVER
17247 M:      Tomasz Duszynski <tduszyns@gmail.com>
17248 S:      Maintained
17249 F:      Documentation/devicetree/bindings/iio/light/bh1750.yaml
17250 F:      drivers/iio/light/bh1750.c
17251
17252 ROHM MULTIFUNCTION BD9571MWV-M PMIC DEVICE DRIVERS
17253 M:      Marek Vasut <marek.vasut+renesas@gmail.com>
17254 L:      linux-kernel@vger.kernel.org
17255 L:      linux-renesas-soc@vger.kernel.org
17256 S:      Supported
17257 F:      Documentation/devicetree/bindings/mfd/rohm,bd9571mwv.yaml
17258 F:      drivers/gpio/gpio-bd9571mwv.c
17259 F:      drivers/mfd/bd9571mwv.c
17260 F:      drivers/regulator/bd9571mwv-regulator.c
17261 F:      include/linux/mfd/bd9571mwv.h
17262
17263 ROHM POWER MANAGEMENT IC DEVICE DRIVERS
17264 R:      Matti Vaittinen <mazziesaccount@gmail.com>
17265 S:      Supported
17266 F:      drivers/clk/clk-bd718x7.c
17267 F:      drivers/gpio/gpio-bd71815.c
17268 F:      drivers/gpio/gpio-bd71828.c
17269 F:      drivers/mfd/rohm-bd71828.c
17270 F:      drivers/mfd/rohm-bd718x7.c
17271 F:      drivers/mfd/rohm-bd9576.c
17272 F:      drivers/regulator/bd71815-regulator.c
17273 F:      drivers/regulator/bd71828-regulator.c
17274 F:      drivers/regulator/bd718x7-regulator.c
17275 F:      drivers/regulator/bd9576-regulator.c
17276 F:      drivers/regulator/rohm-regulator.c
17277 F:      drivers/rtc/rtc-bd70528.c
17278 F:      drivers/watchdog/bd9576_wdt.c
17279 F:      include/linux/mfd/rohm-bd71815.h
17280 F:      include/linux/mfd/rohm-bd71828.h
17281 F:      include/linux/mfd/rohm-bd718x7.h
17282 F:      include/linux/mfd/rohm-bd957x.h
17283 F:      include/linux/mfd/rohm-generic.h
17284 F:      include/linux/mfd/rohm-shared.h
17285
17286 ROSE NETWORK LAYER
17287 M:      Ralf Baechle <ralf@linux-mips.org>
17288 L:      linux-hams@vger.kernel.org
17289 S:      Maintained
17290 W:      http://www.linux-ax25.org/
17291 F:      include/net/rose.h
17292 F:      include/uapi/linux/rose.h
17293 F:      net/rose/
17294
17295 ROTATION DRIVER FOR ALLWINNER A83T
17296 M:      Jernej Skrabec <jernej.skrabec@gmail.com>
17297 L:      linux-media@vger.kernel.org
17298 S:      Maintained
17299 T:      git git://linuxtv.org/media_tree.git
17300 F:      Documentation/devicetree/bindings/media/allwinner,sun8i-a83t-de2-rotate.yaml
17301 F:      drivers/media/platform/sunxi/sun8i-rotate/
17302
17303 RPMSG TTY DRIVER
17304 M:      Arnaud Pouliquen <arnaud.pouliquen@foss.st.com>
17305 L:      linux-remoteproc@vger.kernel.org
17306 S:      Maintained
17307 F:      drivers/tty/rpmsg_tty.c
17308
17309 RTL2830 MEDIA DRIVER
17310 M:      Antti Palosaari <crope@iki.fi>
17311 L:      linux-media@vger.kernel.org
17312 S:      Maintained
17313 W:      https://linuxtv.org
17314 W:      http://palosaari.fi/linux/
17315 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17316 T:      git git://linuxtv.org/anttip/media_tree.git
17317 F:      drivers/media/dvb-frontends/rtl2830*
17318
17319 RTL2832 MEDIA DRIVER
17320 M:      Antti Palosaari <crope@iki.fi>
17321 L:      linux-media@vger.kernel.org
17322 S:      Maintained
17323 W:      https://linuxtv.org
17324 W:      http://palosaari.fi/linux/
17325 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17326 T:      git git://linuxtv.org/anttip/media_tree.git
17327 F:      drivers/media/dvb-frontends/rtl2832*
17328
17329 RTL2832_SDR MEDIA DRIVER
17330 M:      Antti Palosaari <crope@iki.fi>
17331 L:      linux-media@vger.kernel.org
17332 S:      Maintained
17333 W:      https://linuxtv.org
17334 W:      http://palosaari.fi/linux/
17335 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17336 T:      git git://linuxtv.org/anttip/media_tree.git
17337 F:      drivers/media/dvb-frontends/rtl2832_sdr*
17338
17339 RTL8180 WIRELESS DRIVER
17340 L:      linux-wireless@vger.kernel.org
17341 S:      Orphan
17342 W:      https://wireless.wiki.kernel.org/
17343 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
17344 F:      drivers/net/wireless/realtek/rtl818x/rtl8180/
17345
17346 RTL8187 WIRELESS DRIVER
17347 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
17348 M:      Hin-Tak Leung <htl10@users.sourceforge.net>
17349 M:      Larry Finger <Larry.Finger@lwfinger.net>
17350 L:      linux-wireless@vger.kernel.org
17351 S:      Maintained
17352 W:      https://wireless.wiki.kernel.org/
17353 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
17354 F:      drivers/net/wireless/realtek/rtl818x/rtl8187/
17355
17356 RTL8XXXU WIRELESS DRIVER (rtl8xxxu)
17357 M:      Jes Sorensen <Jes.Sorensen@gmail.com>
17358 L:      linux-wireless@vger.kernel.org
17359 S:      Maintained
17360 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jes/linux.git rtl8xxxu-devel
17361 F:      drivers/net/wireless/realtek/rtl8xxxu/
17362
17363 RTRS TRANSPORT DRIVERS
17364 M:      Md. Haris Iqbal <haris.iqbal@ionos.com>
17365 M:      Jack Wang <jinpu.wang@ionos.com>
17366 L:      linux-rdma@vger.kernel.org
17367 S:      Maintained
17368 F:      drivers/infiniband/ulp/rtrs/
17369
17370 RXRPC SOCKETS (AF_RXRPC)
17371 M:      David Howells <dhowells@redhat.com>
17372 M:      Marc Dionne <marc.dionne@auristor.com>
17373 L:      linux-afs@lists.infradead.org
17374 S:      Supported
17375 W:      https://www.infradead.org/~dhowells/kafs/
17376 F:      Documentation/networking/rxrpc.rst
17377 F:      include/keys/rxrpc-type.h
17378 F:      include/net/af_rxrpc.h
17379 F:      include/trace/events/rxrpc.h
17380 F:      include/uapi/linux/rxrpc.h
17381 F:      net/rxrpc/
17382
17383 S3 SAVAGE FRAMEBUFFER DRIVER
17384 M:      Antonino Daplas <adaplas@gmail.com>
17385 L:      linux-fbdev@vger.kernel.org
17386 S:      Maintained
17387 F:      drivers/video/fbdev/savage/
17388
17389 S390
17390 M:      Heiko Carstens <hca@linux.ibm.com>
17391 M:      Vasily Gorbik <gor@linux.ibm.com>
17392 M:      Alexander Gordeev <agordeev@linux.ibm.com>
17393 R:      Christian Borntraeger <borntraeger@linux.ibm.com>
17394 R:      Sven Schnelle <svens@linux.ibm.com>
17395 L:      linux-s390@vger.kernel.org
17396 S:      Supported
17397 W:      http://www.ibm.com/developerworks/linux/linux390/
17398 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux.git
17399 F:      Documentation/driver-api/s390-drivers.rst
17400 F:      Documentation/s390/
17401 F:      arch/s390/
17402 F:      drivers/s390/
17403
17404 S390 COMMON I/O LAYER
17405 M:      Vineeth Vijayan <vneethv@linux.ibm.com>
17406 M:      Peter Oberparleiter <oberpar@linux.ibm.com>
17407 L:      linux-s390@vger.kernel.org
17408 S:      Supported
17409 W:      http://www.ibm.com/developerworks/linux/linux390/
17410 F:      drivers/s390/cio/
17411
17412 S390 DASD DRIVER
17413 M:      Stefan Haberland <sth@linux.ibm.com>
17414 M:      Jan Hoeppner <hoeppner@linux.ibm.com>
17415 L:      linux-s390@vger.kernel.org
17416 S:      Supported
17417 W:      http://www.ibm.com/developerworks/linux/linux390/
17418 F:      block/partitions/ibm.c
17419 F:      drivers/s390/block/dasd*
17420 F:      include/linux/dasd_mod.h
17421
17422 S390 IOMMU (PCI)
17423 M:      Matthew Rosato <mjrosato@linux.ibm.com>
17424 M:      Gerald Schaefer <gerald.schaefer@linux.ibm.com>
17425 L:      linux-s390@vger.kernel.org
17426 S:      Supported
17427 W:      http://www.ibm.com/developerworks/linux/linux390/
17428 F:      drivers/iommu/s390-iommu.c
17429
17430 S390 IUCV NETWORK LAYER
17431 M:      Alexandra Winter <wintera@linux.ibm.com>
17432 M:      Wenjia Zhang <wenjia@linux.ibm.com>
17433 L:      linux-s390@vger.kernel.org
17434 L:      netdev@vger.kernel.org
17435 S:      Supported
17436 W:      http://www.ibm.com/developerworks/linux/linux390/
17437 F:      drivers/s390/net/*iucv*
17438 F:      include/net/iucv/
17439 F:      net/iucv/
17440
17441 S390 NETWORK DRIVERS
17442 M:      Alexandra Winter <wintera@linux.ibm.com>
17443 M:      Wenjia Zhang <wenjia@linux.ibm.com>
17444 L:      linux-s390@vger.kernel.org
17445 L:      netdev@vger.kernel.org
17446 S:      Supported
17447 W:      http://www.ibm.com/developerworks/linux/linux390/
17448 F:      drivers/s390/net/
17449
17450 S390 PCI SUBSYSTEM
17451 M:      Niklas Schnelle <schnelle@linux.ibm.com>
17452 M:      Gerald Schaefer <gerald.schaefer@linux.ibm.com>
17453 L:      linux-s390@vger.kernel.org
17454 S:      Supported
17455 W:      http://www.ibm.com/developerworks/linux/linux390/
17456 F:      arch/s390/pci/
17457 F:      drivers/pci/hotplug/s390_pci_hpc.c
17458 F:      Documentation/s390/pci.rst
17459
17460 S390 VFIO AP DRIVER
17461 M:      Tony Krowiak <akrowiak@linux.ibm.com>
17462 M:      Halil Pasic <pasic@linux.ibm.com>
17463 M:      Jason Herne <jjherne@linux.ibm.com>
17464 L:      linux-s390@vger.kernel.org
17465 S:      Supported
17466 W:      http://www.ibm.com/developerworks/linux/linux390/
17467 F:      Documentation/s390/vfio-ap.rst
17468 F:      drivers/s390/crypto/vfio_ap*
17469
17470 S390 VFIO-CCW DRIVER
17471 M:      Eric Farman <farman@linux.ibm.com>
17472 M:      Matthew Rosato <mjrosato@linux.ibm.com>
17473 R:      Halil Pasic <pasic@linux.ibm.com>
17474 L:      linux-s390@vger.kernel.org
17475 L:      kvm@vger.kernel.org
17476 S:      Supported
17477 F:      Documentation/s390/vfio-ccw.rst
17478 F:      drivers/s390/cio/vfio_ccw*
17479 F:      include/uapi/linux/vfio_ccw.h
17480
17481 S390 VFIO-PCI DRIVER
17482 M:      Matthew Rosato <mjrosato@linux.ibm.com>
17483 M:      Eric Farman <farman@linux.ibm.com>
17484 L:      linux-s390@vger.kernel.org
17485 L:      kvm@vger.kernel.org
17486 S:      Supported
17487 F:      drivers/vfio/pci/vfio_pci_zdev.c
17488 F:      include/uapi/linux/vfio_zdev.h
17489
17490 S390 ZCRYPT DRIVER
17491 M:      Harald Freudenberger <freude@linux.ibm.com>
17492 L:      linux-s390@vger.kernel.org
17493 S:      Supported
17494 W:      http://www.ibm.com/developerworks/linux/linux390/
17495 F:      drivers/s390/crypto/
17496
17497 S390 ZFCP DRIVER
17498 M:      Steffen Maier <maier@linux.ibm.com>
17499 M:      Benjamin Block <bblock@linux.ibm.com>
17500 L:      linux-s390@vger.kernel.org
17501 S:      Supported
17502 W:      http://www.ibm.com/developerworks/linux/linux390/
17503 F:      drivers/s390/scsi/zfcp_*
17504
17505 S3C ADC BATTERY DRIVER
17506 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
17507 L:      linux-samsung-soc@vger.kernel.org
17508 S:      Odd Fixes
17509 F:      drivers/power/supply/s3c_adc_battery.c
17510 F:      include/linux/s3c_adc_battery.h
17511
17512 S3C24XX SD/MMC Driver
17513 M:      Ben Dooks <ben-linux@fluff.org>
17514 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
17515 S:      Supported
17516 F:      drivers/mmc/host/s3cmci.*
17517
17518 SAA6588 RDS RECEIVER DRIVER
17519 M:      Hans Verkuil <hverkuil@xs4all.nl>
17520 L:      linux-media@vger.kernel.org
17521 S:      Odd Fixes
17522 W:      https://linuxtv.org
17523 T:      git git://linuxtv.org/media_tree.git
17524 F:      drivers/media/i2c/saa6588*
17525
17526 SAA7134 VIDEO4LINUX DRIVER
17527 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
17528 L:      linux-media@vger.kernel.org
17529 S:      Odd fixes
17530 W:      https://linuxtv.org
17531 T:      git git://linuxtv.org/media_tree.git
17532 F:      Documentation/driver-api/media/drivers/saa7134*
17533 F:      drivers/media/pci/saa7134/
17534
17535 SAA7146 VIDEO4LINUX-2 DRIVER
17536 M:      Hans Verkuil <hverkuil@xs4all.nl>
17537 L:      linux-media@vger.kernel.org
17538 S:      Maintained
17539 T:      git git://linuxtv.org/media_tree.git
17540 F:      drivers/media/common/saa7146/
17541 F:      drivers/media/pci/saa7146/
17542 F:      include/media/drv-intf/saa7146*
17543
17544 SAFESETID SECURITY MODULE
17545 M:      Micah Morton <mortonm@chromium.org>
17546 S:      Supported
17547 F:      Documentation/admin-guide/LSM/SafeSetID.rst
17548 F:      security/safesetid/
17549
17550 SAMSUNG AUDIO (ASoC) DRIVERS
17551 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
17552 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
17553 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17554 S:      Supported
17555 B:      mailto:linux-samsung-soc@vger.kernel.org
17556 F:      Documentation/devicetree/bindings/sound/samsung*
17557 F:      sound/soc/samsung/
17558
17559 SAMSUNG EXYNOS PSEUDO RANDOM NUMBER GENERATOR (RNG) DRIVER
17560 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
17561 L:      linux-crypto@vger.kernel.org
17562 L:      linux-samsung-soc@vger.kernel.org
17563 S:      Maintained
17564 F:      Documentation/devicetree/bindings/rng/samsung,exynos4-rng.yaml
17565 F:      drivers/crypto/exynos-rng.c
17566
17567 SAMSUNG EXYNOS TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
17568 M:      Łukasz Stelmach <l.stelmach@samsung.com>
17569 L:      linux-samsung-soc@vger.kernel.org
17570 S:      Maintained
17571 F:      Documentation/devicetree/bindings/rng/samsung,exynos5250-trng.yaml
17572 F:      drivers/char/hw_random/exynos-trng.c
17573
17574 SAMSUNG FRAMEBUFFER DRIVER
17575 M:      Jingoo Han <jingoohan1@gmail.com>
17576 L:      linux-fbdev@vger.kernel.org
17577 S:      Maintained
17578 F:      drivers/video/fbdev/s3c-fb.c
17579
17580 SAMSUNG INTERCONNECT DRIVERS
17581 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
17582 M:      Artur Świgoń <a.swigon@samsung.com>
17583 L:      linux-pm@vger.kernel.org
17584 L:      linux-samsung-soc@vger.kernel.org
17585 S:      Supported
17586 F:      drivers/interconnect/samsung/
17587
17588 SAMSUNG LAPTOP DRIVER
17589 M:      Corentin Chary <corentin.chary@gmail.com>
17590 L:      platform-driver-x86@vger.kernel.org
17591 S:      Maintained
17592 F:      drivers/platform/x86/samsung-laptop.c
17593
17594 SAMSUNG MULTIFUNCTION PMIC DEVICE DRIVERS
17595 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
17596 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
17597 L:      linux-kernel@vger.kernel.org
17598 L:      linux-samsung-soc@vger.kernel.org
17599 S:      Supported
17600 B:      mailto:linux-samsung-soc@vger.kernel.org
17601 F:      Documentation/devicetree/bindings/clock/samsung,s2mps11.yaml
17602 F:      Documentation/devicetree/bindings/mfd/samsung,s2m*.yaml
17603 F:      Documentation/devicetree/bindings/mfd/samsung,s5m*.yaml
17604 F:      Documentation/devicetree/bindings/regulator/samsung,s2m*.yaml
17605 F:      Documentation/devicetree/bindings/regulator/samsung,s5m*.yaml
17606 F:      drivers/clk/clk-s2mps11.c
17607 F:      drivers/mfd/sec*.c
17608 F:      drivers/regulator/s2m*.c
17609 F:      drivers/regulator/s5m*.c
17610 F:      drivers/rtc/rtc-s5m.c
17611 F:      include/linux/mfd/samsung/
17612
17613 SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
17614 M:      Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
17615 L:      linux-media@vger.kernel.org
17616 L:      linux-samsung-soc@vger.kernel.org
17617 S:      Maintained
17618 F:      drivers/media/platform/samsung/s3c-camif/
17619 F:      include/media/drv-intf/s3c_camif.h
17620
17621 SAMSUNG S3FWRN5 NFC DRIVER
17622 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
17623 M:      Krzysztof Opasiak <k.opasiak@samsung.com>
17624 L:      linux-nfc@lists.01.org (subscribers-only)
17625 S:      Maintained
17626 F:      Documentation/devicetree/bindings/net/nfc/samsung,s3fwrn5.yaml
17627 F:      drivers/nfc/s3fwrn5
17628
17629 SAMSUNG S5C73M3 CAMERA DRIVER
17630 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
17631 M:      Andrzej Hajda <andrzej.hajda@intel.com>
17632 L:      linux-media@vger.kernel.org
17633 S:      Supported
17634 F:      drivers/media/i2c/s5c73m3/*
17635
17636 SAMSUNG S5K5BAF CAMERA DRIVER
17637 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
17638 M:      Andrzej Hajda <andrzej.hajda@intel.com>
17639 L:      linux-media@vger.kernel.org
17640 S:      Supported
17641 F:      drivers/media/i2c/s5k5baf.c
17642
17643 SAMSUNG S5P Security SubSystem (SSS) DRIVER
17644 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
17645 M:      Vladimir Zapolskiy <vz@mleia.com>
17646 L:      linux-crypto@vger.kernel.org
17647 L:      linux-samsung-soc@vger.kernel.org
17648 S:      Maintained
17649 F:      Documentation/devicetree/bindings/crypto/samsung-slimsss.yaml
17650 F:      Documentation/devicetree/bindings/crypto/samsung-sss.yaml
17651 F:      drivers/crypto/s5p-sss.c
17652
17653 SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS
17654 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
17655 L:      linux-media@vger.kernel.org
17656 S:      Supported
17657 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
17658 F:      drivers/media/platform/samsung/exynos4-is/
17659
17660 SAMSUNG SOC CLOCK DRIVERS
17661 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
17662 M:      Tomasz Figa <tomasz.figa@gmail.com>
17663 M:      Chanwoo Choi <cw00.choi@samsung.com>
17664 R:      Alim Akhtar <alim.akhtar@samsung.com>
17665 L:      linux-samsung-soc@vger.kernel.org
17666 S:      Supported
17667 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/snawrocki/clk.git
17668 F:      Documentation/devicetree/bindings/clock/samsung,*.yaml
17669 F:      Documentation/devicetree/bindings/clock/samsung,s3c*
17670 F:      drivers/clk/samsung/
17671 F:      include/dt-bindings/clock/exynos*.h
17672 F:      include/dt-bindings/clock/s3c*.h
17673 F:      include/dt-bindings/clock/s5p*.h
17674 F:      include/dt-bindings/clock/samsung,*.h
17675 F:      include/linux/clk/samsung.h
17676 F:      include/linux/platform_data/clk-s3c2410.h
17677
17678 SAMSUNG SPI DRIVERS
17679 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
17680 M:      Andi Shyti <andi@etezian.org>
17681 L:      linux-spi@vger.kernel.org
17682 L:      linux-samsung-soc@vger.kernel.org
17683 S:      Maintained
17684 F:      Documentation/devicetree/bindings/spi/samsung,spi*.yaml
17685 F:      drivers/spi/spi-s3c*
17686 F:      include/linux/platform_data/spi-s3c64xx.h
17687 F:      include/linux/spi/s3c24xx-fiq.h
17688
17689 SAMSUNG SXGBE DRIVERS
17690 M:      Byungho An <bh74.an@samsung.com>
17691 L:      netdev@vger.kernel.org
17692 S:      Supported
17693 F:      drivers/net/ethernet/samsung/sxgbe/
17694
17695 SAMSUNG THERMAL DRIVER
17696 M:      Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
17697 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
17698 L:      linux-pm@vger.kernel.org
17699 L:      linux-samsung-soc@vger.kernel.org
17700 S:      Maintained
17701 F:      Documentation/devicetree/bindings/thermal/samsung,exynos-thermal.yaml
17702 F:      drivers/thermal/samsung/
17703
17704 SAMSUNG USB2 PHY DRIVER
17705 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
17706 L:      linux-kernel@vger.kernel.org
17707 S:      Supported
17708 F:      Documentation/devicetree/bindings/phy/samsung,usb2-phy.yaml
17709 F:      Documentation/driver-api/phy/samsung-usb2.rst
17710 F:      drivers/phy/samsung/phy-exynos4210-usb2.c
17711 F:      drivers/phy/samsung/phy-exynos4x12-usb2.c
17712 F:      drivers/phy/samsung/phy-exynos5250-usb2.c
17713 F:      drivers/phy/samsung/phy-s5pv210-usb2.c
17714 F:      drivers/phy/samsung/phy-samsung-usb2.c
17715 F:      drivers/phy/samsung/phy-samsung-usb2.h
17716
17717 SANCLOUD BEAGLEBONE ENHANCED DEVICE TREE
17718 M:      Paul Barker <paul.barker@sancloud.com>
17719 R:      Marc Murphy <marc.murphy@sancloud.com>
17720 S:      Supported
17721 F:      arch/arm/boot/dts/am335x-sancloud*
17722
17723 SC1200 WDT DRIVER
17724 M:      Zwane Mwaikambo <zwanem@gmail.com>
17725 S:      Maintained
17726 F:      drivers/watchdog/sc1200wdt.c
17727
17728 SCHEDULER
17729 M:      Ingo Molnar <mingo@redhat.com>
17730 M:      Peter Zijlstra <peterz@infradead.org>
17731 M:      Juri Lelli <juri.lelli@redhat.com> (SCHED_DEADLINE)
17732 M:      Vincent Guittot <vincent.guittot@linaro.org> (SCHED_NORMAL)
17733 R:      Dietmar Eggemann <dietmar.eggemann@arm.com> (SCHED_NORMAL)
17734 R:      Steven Rostedt <rostedt@goodmis.org> (SCHED_FIFO/SCHED_RR)
17735 R:      Ben Segall <bsegall@google.com> (CONFIG_CFS_BANDWIDTH)
17736 R:      Mel Gorman <mgorman@suse.de> (CONFIG_NUMA_BALANCING)
17737 R:      Daniel Bristot de Oliveira <bristot@redhat.com> (SCHED_DEADLINE)
17738 R:      Valentin Schneider <vschneid@redhat.com> (TOPOLOGY)
17739 L:      linux-kernel@vger.kernel.org
17740 S:      Maintained
17741 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
17742 F:      include/linux/preempt.h
17743 F:      include/linux/sched.h
17744 F:      include/linux/wait.h
17745 F:      include/uapi/linux/sched.h
17746 F:      kernel/sched/
17747
17748 SCR24X CHIP CARD INTERFACE DRIVER
17749 M:      Lubomir Rintel <lkundrak@v3.sk>
17750 S:      Supported
17751 F:      drivers/char/pcmcia/scr24x_cs.c
17752
17753 SCSI RDMA PROTOCOL (SRP) INITIATOR
17754 M:      Bart Van Assche <bvanassche@acm.org>
17755 L:      linux-rdma@vger.kernel.org
17756 S:      Supported
17757 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
17758 F:      drivers/infiniband/ulp/srp/
17759 F:      include/scsi/srp.h
17760
17761 SCSI RDMA PROTOCOL (SRP) TARGET
17762 M:      Bart Van Assche <bvanassche@acm.org>
17763 L:      linux-rdma@vger.kernel.org
17764 L:      target-devel@vger.kernel.org
17765 S:      Supported
17766 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
17767 F:      drivers/infiniband/ulp/srpt/
17768
17769 SCSI SG DRIVER
17770 M:      Doug Gilbert <dgilbert@interlog.com>
17771 L:      linux-scsi@vger.kernel.org
17772 S:      Maintained
17773 W:      http://sg.danny.cz/sg
17774 F:      Documentation/scsi/scsi-generic.rst
17775 F:      drivers/scsi/sg.c
17776 F:      include/scsi/sg.h
17777
17778 SCSI SUBSYSTEM
17779 M:      "James E.J. Bottomley" <jejb@linux.ibm.com>
17780 M:      "Martin K. Petersen" <martin.petersen@oracle.com>
17781 L:      linux-scsi@vger.kernel.org
17782 S:      Maintained
17783 Q:      https://patchwork.kernel.org/project/linux-scsi/list/
17784 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git
17785 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
17786 F:      Documentation/devicetree/bindings/scsi/
17787 F:      drivers/scsi/
17788 F:      drivers/ufs/
17789 F:      include/scsi/
17790
17791 SCSI TAPE DRIVER
17792 M:      Kai Mäkisara <Kai.Makisara@kolumbus.fi>
17793 L:      linux-scsi@vger.kernel.org
17794 S:      Maintained
17795 F:      Documentation/scsi/st.rst
17796 F:      drivers/scsi/st.*
17797 F:      drivers/scsi/st_*.h
17798
17799 SCSI TARGET CORE USER DRIVER
17800 M:      Bodo Stroesser <bostroesser@gmail.com>
17801 L:      linux-scsi@vger.kernel.org
17802 L:      target-devel@vger.kernel.org
17803 S:      Supported
17804 F:      Documentation/target/tcmu-design.rst
17805 F:      drivers/target/target_core_user.c
17806 F:      include/uapi/linux/target_core_user.h
17807
17808 SCSI TARGET SUBSYSTEM
17809 M:      "Martin K. Petersen" <martin.petersen@oracle.com>
17810 L:      linux-scsi@vger.kernel.org
17811 L:      target-devel@vger.kernel.org
17812 S:      Supported
17813 W:      http://www.linux-iscsi.org
17814 Q:      https://patchwork.kernel.org/project/target-devel/list/
17815 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
17816 F:      Documentation/target/
17817 F:      drivers/target/
17818 F:      include/target/
17819
17820 SCTP PROTOCOL
17821 M:      Vlad Yasevich <vyasevich@gmail.com>
17822 M:      Neil Horman <nhorman@tuxdriver.com>
17823 M:      Marcelo Ricardo Leitner <marcelo.leitner@gmail.com>
17824 L:      linux-sctp@vger.kernel.org
17825 S:      Maintained
17826 W:      http://lksctp.sourceforge.net
17827 F:      Documentation/networking/sctp.rst
17828 F:      include/linux/sctp.h
17829 F:      include/net/sctp/
17830 F:      include/uapi/linux/sctp.h
17831 F:      net/sctp/
17832
17833 SCx200 CPU SUPPORT
17834 M:      Jim Cromie <jim.cromie@gmail.com>
17835 S:      Odd Fixes
17836 F:      Documentation/i2c/busses/scx200_acb.rst
17837 F:      arch/x86/platform/scx200/
17838 F:      drivers/i2c/busses/scx200*
17839 F:      drivers/mtd/maps/scx200_docflash.c
17840 F:      drivers/watchdog/scx200_wdt.c
17841 F:      include/linux/scx200.h
17842
17843 SCx200 GPIO DRIVER
17844 M:      Jim Cromie <jim.cromie@gmail.com>
17845 S:      Maintained
17846 F:      drivers/char/scx200_gpio.c
17847 F:      include/linux/scx200_gpio.h
17848
17849 SCx200 HRT CLOCKSOURCE DRIVER
17850 M:      Jim Cromie <jim.cromie@gmail.com>
17851 S:      Maintained
17852 F:      drivers/clocksource/scx200_hrt.c
17853
17854 SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
17855 M:      Sascha Sommer <saschasommer@freenet.de>
17856 L:      sdricohcs-devel@lists.sourceforge.net (subscribers-only)
17857 S:      Maintained
17858 F:      drivers/mmc/host/sdricoh_cs.c
17859
17860 SECO BOARDS CEC DRIVER
17861 M:      Ettore Chimenti <ek5.chimenti@gmail.com>
17862 S:      Maintained
17863 F:      drivers/media/cec/platform/seco/seco-cec.c
17864 F:      drivers/media/cec/platform/seco/seco-cec.h
17865
17866 SECURE COMPUTING
17867 M:      Kees Cook <keescook@chromium.org>
17868 R:      Andy Lutomirski <luto@amacapital.net>
17869 R:      Will Drewry <wad@chromium.org>
17870 S:      Supported
17871 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git seccomp
17872 F:      Documentation/userspace-api/seccomp_filter.rst
17873 F:      include/linux/seccomp.h
17874 F:      include/uapi/linux/seccomp.h
17875 F:      kernel/seccomp.c
17876 F:      tools/testing/selftests/kselftest_harness.h
17877 F:      tools/testing/selftests/seccomp/*
17878 K:      \bsecure_computing
17879 K:      \bTIF_SECCOMP\b
17880
17881 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) Broadcom BRCMSTB DRIVER
17882 M:      Al Cooper <alcooperx@gmail.com>
17883 R:      Broadcom internal kernel review list <bcm-kernel-feedback-list@broadcom.com>
17884 L:      linux-mmc@vger.kernel.org
17885 S:      Maintained
17886 F:      drivers/mmc/host/sdhci-brcmstb*
17887
17888 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
17889 M:      Adrian Hunter <adrian.hunter@intel.com>
17890 L:      linux-mmc@vger.kernel.org
17891 S:      Maintained
17892 F:      drivers/mmc/host/sdhci*
17893
17894 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) MICROCHIP DRIVER
17895 M:      Eugen Hristev <eugen.hristev@microchip.com>
17896 L:      linux-mmc@vger.kernel.org
17897 S:      Supported
17898 F:      drivers/mmc/host/sdhci-of-at91.c
17899
17900 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
17901 M:      Ben Dooks <ben-linux@fluff.org>
17902 M:      Jaehoon Chung <jh80.chung@samsung.com>
17903 L:      linux-mmc@vger.kernel.org
17904 S:      Maintained
17905 F:      drivers/mmc/host/sdhci-s3c*
17906
17907 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
17908 M:      Viresh Kumar <vireshk@kernel.org>
17909 L:      linux-mmc@vger.kernel.org
17910 S:      Maintained
17911 F:      drivers/mmc/host/sdhci-spear.c
17912
17913 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) TI OMAP DRIVER
17914 M:      Kishon Vijay Abraham I <kishon@ti.com>
17915 L:      linux-mmc@vger.kernel.org
17916 S:      Maintained
17917 F:      drivers/mmc/host/sdhci-omap.c
17918
17919 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) NXP i.MX DRIVER
17920 M:      Haibo Chen <haibo.chen@nxp.com>
17921 L:      linux-imx@nxp.com
17922 L:      linux-mmc@vger.kernel.org
17923 S:      Maintained
17924 F:      drivers/mmc/host/sdhci-esdhc-imx.c
17925
17926 SECURE ENCRYPTING DEVICE (SED) OPAL DRIVER
17927 M:      Jonathan Derrick <jonathan.derrick@intel.com>
17928 M:      Revanth Rajashekar <revanth.rajashekar@intel.com>
17929 L:      linux-block@vger.kernel.org
17930 S:      Supported
17931 F:      block/opal_proto.h
17932 F:      block/sed*
17933 F:      include/linux/sed*
17934 F:      include/uapi/linux/sed*
17935
17936 SECURITY CONTACT
17937 M:      Security Officers <security@kernel.org>
17938 S:      Supported
17939 F:      Documentation/admin-guide/security-bugs.rst
17940
17941 SECURITY SUBSYSTEM
17942 M:      James Morris <jmorris@namei.org>
17943 M:      "Serge E. Hallyn" <serge@hallyn.com>
17944 L:      linux-security-module@vger.kernel.org (suggested Cc:)
17945 S:      Supported
17946 W:      http://kernsec.org/
17947 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
17948 F:      security/
17949 X:      security/selinux/
17950
17951 SELINUX SECURITY MODULE
17952 M:      Paul Moore <paul@paul-moore.com>
17953 M:      Stephen Smalley <stephen.smalley.work@gmail.com>
17954 M:      Eric Paris <eparis@parisplace.org>
17955 L:      selinux@vger.kernel.org
17956 S:      Supported
17957 W:      https://selinuxproject.org
17958 W:      https://github.com/SELinuxProject
17959 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/selinux.git
17960 F:      Documentation/ABI/obsolete/sysfs-selinux-checkreqprot
17961 F:      Documentation/ABI/obsolete/sysfs-selinux-disable
17962 F:      Documentation/admin-guide/LSM/SELinux.rst
17963 F:      include/trace/events/avc.h
17964 F:      include/uapi/linux/selinux_netlink.h
17965 F:      scripts/selinux/
17966 F:      security/selinux/
17967
17968 SENSABLE PHANTOM
17969 M:      Jiri Slaby <jirislaby@kernel.org>
17970 S:      Maintained
17971 F:      drivers/misc/phantom.c
17972 F:      include/uapi/linux/phantom.h
17973
17974 SENSEAIR SUNRISE 006-0-0007
17975 M:      Jacopo Mondi <jacopo@jmondi.org>
17976 S:      Maintained
17977 F:      Documentation/ABI/testing/sysfs-bus-iio-chemical-sunrise-co2
17978 F:      Documentation/devicetree/bindings/iio/chemical/senseair,sunrise.yaml
17979 F:      drivers/iio/chemical/sunrise_co2.c
17980
17981 SENSIRION SCD30 CARBON DIOXIDE SENSOR DRIVER
17982 M:      Tomasz Duszynski <tomasz.duszynski@octakon.com>
17983 S:      Maintained
17984 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,scd30.yaml
17985 F:      drivers/iio/chemical/scd30.h
17986 F:      drivers/iio/chemical/scd30_core.c
17987 F:      drivers/iio/chemical/scd30_i2c.c
17988 F:      drivers/iio/chemical/scd30_serial.c
17989
17990 SENSIRION SCD4X CARBON DIOXIDE SENSOR DRIVER
17991 M:      Roan van Dijk <roan@protonic.nl>
17992 S:      Maintained
17993 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,scd4x.yaml
17994 F:      drivers/iio/chemical/scd4x.c
17995
17996 SENSIRION SGP40 GAS SENSOR DRIVER
17997 M:      Andreas Klinger <ak@it-klinger.de>
17998 S:      Maintained
17999 F:      Documentation/ABI/testing/sysfs-bus-iio-chemical-sgp40
18000 F:      drivers/iio/chemical/sgp40.c
18001
18002 SENSIRION SPS30 AIR POLLUTION SENSOR DRIVER
18003 M:      Tomasz Duszynski <tduszyns@gmail.com>
18004 S:      Maintained
18005 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,sps30.yaml
18006 F:      drivers/iio/chemical/sps30.c
18007 F:      drivers/iio/chemical/sps30_i2c.c
18008 F:      drivers/iio/chemical/sps30_serial.c
18009
18010 SERIAL DEVICE BUS
18011 M:      Rob Herring <robh@kernel.org>
18012 L:      linux-serial@vger.kernel.org
18013 S:      Maintained
18014 F:      Documentation/devicetree/bindings/serial/serial.yaml
18015 F:      drivers/tty/serdev/
18016 F:      include/linux/serdev.h
18017
18018 SERIAL DRIVERS
18019 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
18020 L:      linux-serial@vger.kernel.org
18021 S:      Maintained
18022 F:      Documentation/devicetree/bindings/serial/
18023 F:      drivers/tty/serial/
18024
18025 SERIAL IR RECEIVER
18026 M:      Sean Young <sean@mess.org>
18027 L:      linux-media@vger.kernel.org
18028 S:      Maintained
18029 F:      drivers/media/rc/serial_ir.c
18030
18031 SERIAL LOW-POWER INTER-CHIP MEDIA BUS (SLIMbus)
18032 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
18033 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18034 S:      Maintained
18035 F:      Documentation/devicetree/bindings/slimbus/
18036 F:      drivers/slimbus/
18037 F:      include/linux/slimbus.h
18038
18039 SFC NETWORK DRIVER
18040 M:      Edward Cree <ecree.xilinx@gmail.com>
18041 M:      Martin Habets <habetsm.xilinx@gmail.com>
18042 L:      netdev@vger.kernel.org
18043 S:      Supported
18044 F:      drivers/net/ethernet/sfc/
18045
18046 SFF/SFP/SFP+ MODULE SUPPORT
18047 M:      Russell King <linux@armlinux.org.uk>
18048 L:      netdev@vger.kernel.org
18049 S:      Maintained
18050 F:      drivers/net/phy/phylink.c
18051 F:      drivers/net/phy/sfp*
18052 F:      include/linux/mdio/mdio-i2c.h
18053 F:      include/linux/phylink.h
18054 F:      include/linux/sfp.h
18055 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)
18056
18057 SGI GRU DRIVER
18058 M:      Dimitri Sivanich <dimitri.sivanich@hpe.com>
18059 S:      Maintained
18060 F:      drivers/misc/sgi-gru/
18061
18062 SGI XP/XPC/XPNET DRIVER
18063 M:      Robin Holt <robinmholt@gmail.com>
18064 M:      Steve Wahl <steve.wahl@hpe.com>
18065 R:      Mike Travis <mike.travis@hpe.com>
18066 S:      Maintained
18067 F:      drivers/misc/sgi-xp/
18068
18069 SHARED MEMORY COMMUNICATIONS (SMC) SOCKETS
18070 M:      Karsten Graul <kgraul@linux.ibm.com>
18071 L:      linux-s390@vger.kernel.org
18072 S:      Supported
18073 W:      http://www.ibm.com/developerworks/linux/linux390/
18074 F:      net/smc/
18075
18076 SHARP GP2AP002A00F/GP2AP002S00F SENSOR DRIVER
18077 M:      Linus Walleij <linus.walleij@linaro.org>
18078 L:      linux-iio@vger.kernel.org
18079 S:      Maintained
18080 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
18081 F:      Documentation/devicetree/bindings/iio/light/sharp,gp2ap002.yaml
18082 F:      drivers/iio/light/gp2ap002.c
18083
18084 SHARP RJ54N1CB0C SENSOR DRIVER
18085 M:      Jacopo Mondi <jacopo@jmondi.org>
18086 L:      linux-media@vger.kernel.org
18087 S:      Odd fixes
18088 T:      git git://linuxtv.org/media_tree.git
18089 F:      drivers/media/i2c/rj54n1cb0c.c
18090 F:      include/media/i2c/rj54n1cb0c.h
18091
18092 SH_VOU V4L2 OUTPUT DRIVER
18093 L:      linux-media@vger.kernel.org
18094 S:      Orphan
18095 F:      drivers/media/platform/renesas/sh_vou.c
18096 F:      include/media/drv-intf/sh_vou.h
18097
18098 SI2157 MEDIA DRIVER
18099 M:      Antti Palosaari <crope@iki.fi>
18100 L:      linux-media@vger.kernel.org
18101 S:      Maintained
18102 W:      https://linuxtv.org
18103 W:      http://palosaari.fi/linux/
18104 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18105 T:      git git://linuxtv.org/anttip/media_tree.git
18106 F:      drivers/media/tuners/si2157*
18107
18108 SI2165 MEDIA DRIVER
18109 M:      Matthias Schwarzott <zzam@gentoo.org>
18110 L:      linux-media@vger.kernel.org
18111 S:      Maintained
18112 W:      https://linuxtv.org
18113 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18114 F:      drivers/media/dvb-frontends/si2165*
18115
18116 SI2168 MEDIA DRIVER
18117 M:      Antti Palosaari <crope@iki.fi>
18118 L:      linux-media@vger.kernel.org
18119 S:      Maintained
18120 W:      https://linuxtv.org
18121 W:      http://palosaari.fi/linux/
18122 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18123 T:      git git://linuxtv.org/anttip/media_tree.git
18124 F:      drivers/media/dvb-frontends/si2168*
18125
18126 SI470X FM RADIO RECEIVER I2C DRIVER
18127 M:      Hans Verkuil <hverkuil@xs4all.nl>
18128 L:      linux-media@vger.kernel.org
18129 S:      Odd Fixes
18130 W:      https://linuxtv.org
18131 T:      git git://linuxtv.org/media_tree.git
18132 F:      drivers/media/radio/si470x/radio-si470x-i2c.c
18133
18134 SI470X FM RADIO RECEIVER USB DRIVER
18135 M:      Hans Verkuil <hverkuil@xs4all.nl>
18136 L:      linux-media@vger.kernel.org
18137 S:      Maintained
18138 W:      https://linuxtv.org
18139 T:      git git://linuxtv.org/media_tree.git
18140 F:      drivers/media/radio/si470x/radio-si470x-common.c
18141 F:      drivers/media/radio/si470x/radio-si470x-usb.c
18142 F:      drivers/media/radio/si470x/radio-si470x.h
18143
18144 SI4713 FM RADIO TRANSMITTER I2C DRIVER
18145 M:      Eduardo Valentin <edubezval@gmail.com>
18146 L:      linux-media@vger.kernel.org
18147 S:      Odd Fixes
18148 W:      https://linuxtv.org
18149 T:      git git://linuxtv.org/media_tree.git
18150 F:      drivers/media/radio/si4713/si4713.?
18151
18152 SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
18153 M:      Eduardo Valentin <edubezval@gmail.com>
18154 L:      linux-media@vger.kernel.org
18155 S:      Odd Fixes
18156 W:      https://linuxtv.org
18157 T:      git git://linuxtv.org/media_tree.git
18158 F:      drivers/media/radio/si4713/radio-platform-si4713.c
18159
18160 SI4713 FM RADIO TRANSMITTER USB DRIVER
18161 M:      Hans Verkuil <hverkuil@xs4all.nl>
18162 L:      linux-media@vger.kernel.org
18163 S:      Maintained
18164 W:      https://linuxtv.org
18165 T:      git git://linuxtv.org/media_tree.git
18166 F:      drivers/media/radio/si4713/radio-usb-si4713.c
18167
18168 SIANO DVB DRIVER
18169 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
18170 L:      linux-media@vger.kernel.org
18171 S:      Odd fixes
18172 W:      https://linuxtv.org
18173 T:      git git://linuxtv.org/media_tree.git
18174 F:      drivers/media/common/siano/
18175 F:      drivers/media/mmc/siano/
18176 F:      drivers/media/usb/siano/
18177 F:      drivers/media/usb/siano/
18178
18179 SIFIVE DRIVERS
18180 M:      Palmer Dabbelt <palmer@dabbelt.com>
18181 M:      Paul Walmsley <paul.walmsley@sifive.com>
18182 L:      linux-riscv@lists.infradead.org
18183 S:      Supported
18184 T:      git git://github.com/sifive/riscv-linux.git
18185 N:      sifive
18186 K:      [^@]sifive
18187
18188 SIFIVE FU540 SYSTEM-ON-CHIP
18189 M:      Paul Walmsley <paul.walmsley@sifive.com>
18190 M:      Palmer Dabbelt <palmer@dabbelt.com>
18191 L:      linux-riscv@lists.infradead.org
18192 S:      Supported
18193 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pjw/sifive.git
18194 N:      fu540
18195 K:      fu540
18196
18197 SIFIVE PDMA DRIVER
18198 M:      Green Wan <green.wan@sifive.com>
18199 S:      Maintained
18200 F:      Documentation/devicetree/bindings/dma/sifive,fu540-c000-pdma.yaml
18201 F:      drivers/dma/sf-pdma/
18202
18203 SILEAD TOUCHSCREEN DRIVER
18204 M:      Hans de Goede <hdegoede@redhat.com>
18205 L:      linux-input@vger.kernel.org
18206 L:      platform-driver-x86@vger.kernel.org
18207 S:      Maintained
18208 F:      drivers/input/touchscreen/silead.c
18209 F:      drivers/platform/x86/touchscreen_dmi.c
18210
18211 SILICON LABS WIRELESS DRIVERS (for WFxxx series)
18212 M:      Jérôme Pouiller <jerome.pouiller@silabs.com>
18213 S:      Supported
18214 F:      Documentation/devicetree/bindings/net/wireless/silabs,wfx.yaml
18215 F:      drivers/net/wireless/silabs/wfx/
18216
18217 SILICON MOTION SM712 FRAME BUFFER DRIVER
18218 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
18219 M:      Teddy Wang <teddy.wang@siliconmotion.com>
18220 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
18221 L:      linux-fbdev@vger.kernel.org
18222 S:      Maintained
18223 F:      Documentation/fb/sm712fb.rst
18224 F:      drivers/video/fbdev/sm712*
18225
18226 SILVACO I3C DUAL-ROLE MASTER
18227 M:      Miquel Raynal <miquel.raynal@bootlin.com>
18228 M:      Conor Culhane <conor.culhane@silvaco.com>
18229 L:      linux-i3c@lists.infradead.org (moderated for non-subscribers)
18230 S:      Maintained
18231 F:      Documentation/devicetree/bindings/i3c/silvaco,i3c-master.yaml
18232 F:      drivers/i3c/master/svc-i3c-master.c
18233
18234 SIMPLEFB FB DRIVER
18235 M:      Hans de Goede <hdegoede@redhat.com>
18236 L:      linux-fbdev@vger.kernel.org
18237 S:      Maintained
18238 F:      Documentation/devicetree/bindings/display/simple-framebuffer.yaml
18239 F:      drivers/video/fbdev/simplefb.c
18240 F:      include/linux/platform_data/simplefb.h
18241
18242 SIMTEC EB110ATX (Chalice CATS)
18243 M:      Simtec Linux Team <linux@simtec.co.uk>
18244 S:      Supported
18245 W:      http://www.simtec.co.uk/products/EB110ATX/
18246
18247 SIMTEC EB2410ITX (BAST)
18248 M:      Simtec Linux Team <linux@simtec.co.uk>
18249 S:      Supported
18250 W:      http://www.simtec.co.uk/products/EB2410ITX/
18251 F:      arch/arm/mach-s3c/bast-ide.c
18252 F:      arch/arm/mach-s3c/bast-irq.c
18253 F:      arch/arm/mach-s3c/mach-bast.c
18254
18255 SIOX
18256 M:      Thorsten Scherer <t.scherer@eckelmann.de>
18257 M:      Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
18258 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
18259 S:      Supported
18260 F:      drivers/gpio/gpio-siox.c
18261 F:      drivers/siox/*
18262 F:      include/trace/events/siox.h
18263
18264 SIPHASH PRF ROUTINES
18265 M:      Jason A. Donenfeld <Jason@zx2c4.com>
18266 S:      Maintained
18267 F:      include/linux/siphash.h
18268 F:      lib/siphash.c
18269 F:      lib/test_siphash.c
18270
18271 SIS 190 ETHERNET DRIVER
18272 M:      Francois Romieu <romieu@fr.zoreil.com>
18273 L:      netdev@vger.kernel.org
18274 S:      Maintained
18275 F:      drivers/net/ethernet/sis/sis190.c
18276
18277 SIS 900/7016 FAST ETHERNET DRIVER
18278 M:      Daniele Venzano <venza@brownhat.org>
18279 L:      netdev@vger.kernel.org
18280 S:      Maintained
18281 W:      http://www.brownhat.org/sis900.html
18282 F:      drivers/net/ethernet/sis/sis900.*
18283
18284 SIS FRAMEBUFFER DRIVER
18285 M:      Thomas Winischhofer <thomas@winischhofer.net>
18286 S:      Maintained
18287 W:      http://www.winischhofer.net/linuxsisvga.shtml
18288 F:      Documentation/fb/sisfb.rst
18289 F:      drivers/video/fbdev/sis/
18290 F:      include/video/sisfb.h
18291
18292 SIS I2C TOUCHSCREEN DRIVER
18293 M:      Mika Penttilä <mika.penttila@nextfour.com>
18294 L:      linux-input@vger.kernel.org
18295 S:      Maintained
18296 F:      Documentation/devicetree/bindings/input/touchscreen/sis_i2c.txt
18297 F:      drivers/input/touchscreen/sis_i2c.c
18298
18299 SIS USB2VGA DRIVER
18300 M:      Thomas Winischhofer <thomas@winischhofer.net>
18301 S:      Maintained
18302 W:      http://www.winischhofer.at/linuxsisusbvga.shtml
18303 F:      drivers/usb/misc/sisusbvga/
18304
18305 SL28 CPLD MFD DRIVER
18306 M:      Michael Walle <michael@walle.cc>
18307 S:      Maintained
18308 F:      Documentation/devicetree/bindings/gpio/kontron,sl28cpld-gpio.yaml
18309 F:      Documentation/devicetree/bindings/hwmon/kontron,sl28cpld-hwmon.yaml
18310 F:      Documentation/devicetree/bindings/interrupt-controller/kontron,sl28cpld-intc.yaml
18311 F:      Documentation/devicetree/bindings/mfd/kontron,sl28cpld.yaml
18312 F:      Documentation/devicetree/bindings/pwm/kontron,sl28cpld-pwm.yaml
18313 F:      Documentation/devicetree/bindings/watchdog/kontron,sl28cpld-wdt.yaml
18314 F:      drivers/gpio/gpio-sl28cpld.c
18315 F:      drivers/hwmon/sl28cpld-hwmon.c
18316 F:      drivers/irqchip/irq-sl28cpld.c
18317 F:      drivers/pwm/pwm-sl28cpld.c
18318 F:      drivers/watchdog/sl28cpld_wdt.c
18319
18320 SLAB ALLOCATOR
18321 M:      Christoph Lameter <cl@linux.com>
18322 M:      Pekka Enberg <penberg@kernel.org>
18323 M:      David Rientjes <rientjes@google.com>
18324 M:      Joonsoo Kim <iamjoonsoo.kim@lge.com>
18325 M:      Andrew Morton <akpm@linux-foundation.org>
18326 M:      Vlastimil Babka <vbabka@suse.cz>
18327 R:      Roman Gushchin <roman.gushchin@linux.dev>
18328 R:      Hyeonggon Yoo <42.hyeyoo@gmail.com>
18329 L:      linux-mm@kvack.org
18330 S:      Maintained
18331 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vbabka/slab.git
18332 F:      include/linux/sl?b*.h
18333 F:      mm/sl?b*
18334
18335 SLEEPABLE READ-COPY UPDATE (SRCU)
18336 M:      Lai Jiangshan <jiangshanlai@gmail.com>
18337 M:      "Paul E. McKenney" <paulmck@kernel.org>
18338 M:      Josh Triplett <josh@joshtriplett.org>
18339 R:      Steven Rostedt <rostedt@goodmis.org>
18340 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
18341 L:      rcu@vger.kernel.org
18342 S:      Supported
18343 W:      http://www.rdrop.com/users/paulmck/RCU/
18344 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
18345 F:      include/linux/srcu*.h
18346 F:      kernel/rcu/srcu*.c
18347
18348 SMACK SECURITY MODULE
18349 M:      Casey Schaufler <casey@schaufler-ca.com>
18350 L:      linux-security-module@vger.kernel.org
18351 S:      Maintained
18352 W:      http://schaufler-ca.com
18353 T:      git git://github.com/cschaufler/smack-next
18354 F:      Documentation/admin-guide/LSM/Smack.rst
18355 F:      security/smack/
18356
18357 SMC91x ETHERNET DRIVER
18358 M:      Nicolas Pitre <nico@fluxnic.net>
18359 S:      Odd Fixes
18360 F:      drivers/net/ethernet/smsc/smc91x.*
18361
18362 SECURE MONITOR CALL(SMC) CALLING CONVENTION (SMCCC)
18363 M:      Mark Rutland <mark.rutland@arm.com>
18364 M:      Lorenzo Pieralisi <lpieralisi@kernel.org>
18365 M:      Sudeep Holla <sudeep.holla@arm.com>
18366 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
18367 S:      Maintained
18368 F:      drivers/firmware/smccc/
18369 F:      include/linux/arm-smccc.h
18370
18371 SMM665 HARDWARE MONITOR DRIVER
18372 M:      Guenter Roeck <linux@roeck-us.net>
18373 L:      linux-hwmon@vger.kernel.org
18374 S:      Maintained
18375 F:      Documentation/hwmon/smm665.rst
18376 F:      drivers/hwmon/smm665.c
18377
18378 SMSC EMC2103 HARDWARE MONITOR DRIVER
18379 M:      Steve Glendinning <steve.glendinning@shawell.net>
18380 L:      linux-hwmon@vger.kernel.org
18381 S:      Maintained
18382 F:      Documentation/hwmon/emc2103.rst
18383 F:      drivers/hwmon/emc2103.c
18384
18385 SMSC SCH5627 HARDWARE MONITOR DRIVER
18386 M:      Hans de Goede <hdegoede@redhat.com>
18387 L:      linux-hwmon@vger.kernel.org
18388 S:      Supported
18389 F:      Documentation/hwmon/sch5627.rst
18390 F:      drivers/hwmon/sch5627.c
18391
18392 SMSC UFX6000 and UFX7000 USB to VGA DRIVER
18393 M:      Steve Glendinning <steve.glendinning@shawell.net>
18394 L:      linux-fbdev@vger.kernel.org
18395 S:      Maintained
18396 F:      drivers/video/fbdev/smscufx.c
18397
18398 SMSC47B397 HARDWARE MONITOR DRIVER
18399 M:      Jean Delvare <jdelvare@suse.com>
18400 L:      linux-hwmon@vger.kernel.org
18401 S:      Maintained
18402 F:      Documentation/hwmon/smsc47b397.rst
18403 F:      drivers/hwmon/smsc47b397.c
18404
18405 SMSC911x ETHERNET DRIVER
18406 M:      Steve Glendinning <steve.glendinning@shawell.net>
18407 L:      netdev@vger.kernel.org
18408 S:      Maintained
18409 F:      drivers/net/ethernet/smsc/smsc911x.*
18410 F:      include/linux/smsc911x.h
18411
18412 SMSC9420 PCI ETHERNET DRIVER
18413 M:      Steve Glendinning <steve.glendinning@shawell.net>
18414 L:      netdev@vger.kernel.org
18415 S:      Maintained
18416 F:      drivers/net/ethernet/smsc/smsc9420.*
18417
18418 SOCIONEXT (SNI) AVE NETWORK DRIVER
18419 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
18420 L:      netdev@vger.kernel.org
18421 S:      Maintained
18422 F:      Documentation/devicetree/bindings/net/socionext,uniphier-ave4.yaml
18423 F:      drivers/net/ethernet/socionext/sni_ave.c
18424
18425 SOCIONEXT (SNI) NETSEC NETWORK DRIVER
18426 M:      Jassi Brar <jaswinder.singh@linaro.org>
18427 M:      Ilias Apalodimas <ilias.apalodimas@linaro.org>
18428 L:      netdev@vger.kernel.org
18429 S:      Maintained
18430 F:      Documentation/devicetree/bindings/net/socionext-netsec.txt
18431 F:      drivers/net/ethernet/socionext/netsec.c
18432
18433 SOCIONEXT (SNI) Synquacer SPI DRIVER
18434 M:      Masahisa Kojima <masahisa.kojima@linaro.org>
18435 M:      Jassi Brar <jaswinder.singh@linaro.org>
18436 L:      linux-spi@vger.kernel.org
18437 S:      Maintained
18438 F:      Documentation/devicetree/bindings/spi/spi-synquacer.txt
18439 F:      drivers/spi/spi-synquacer.c
18440
18441 SOCIONEXT SYNQUACER I2C DRIVER
18442 M:      Ard Biesheuvel <ardb@kernel.org>
18443 L:      linux-i2c@vger.kernel.org
18444 S:      Maintained
18445 F:      Documentation/devicetree/bindings/i2c/i2c-synquacer.txt
18446 F:      drivers/i2c/busses/i2c-synquacer.c
18447
18448 SOCIONEXT UNIPHIER SOUND DRIVER
18449 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18450 S:      Orphan
18451 F:      sound/soc/uniphier/
18452
18453 SOEKRIS NET48XX LED SUPPORT
18454 M:      Chris Boot <bootc@bootc.net>
18455 S:      Maintained
18456 F:      drivers/leds/leds-net48xx.c
18457
18458 SOFT-IWARP DRIVER (siw)
18459 M:      Bernard Metzler <bmt@zurich.ibm.com>
18460 L:      linux-rdma@vger.kernel.org
18461 S:      Supported
18462 F:      drivers/infiniband/sw/siw/
18463 F:      include/uapi/rdma/siw-abi.h
18464
18465 SOFT-ROCE DRIVER (rxe)
18466 M:      Zhu Yanjun <zyjzyj2000@gmail.com>
18467 L:      linux-rdma@vger.kernel.org
18468 S:      Supported
18469 F:      drivers/infiniband/sw/rxe/
18470 F:      include/uapi/rdma/rdma_user_rxe.h
18471
18472 SOFTLOGIC 6x10 MPEG CODEC
18473 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
18474 M:      Anton Sviridenko <anton@corp.bluecherry.net>
18475 M:      Andrey Utkin <andrey_utkin@fastmail.com>
18476 M:      Ismael Luceno <ismael@iodev.co.uk>
18477 L:      linux-media@vger.kernel.org
18478 S:      Supported
18479 F:      drivers/media/pci/solo6x10/
18480
18481 SOFTWARE DELEGATED EXCEPTION INTERFACE (SDEI)
18482 M:      James Morse <james.morse@arm.com>
18483 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
18484 S:      Maintained
18485 F:      Documentation/devicetree/bindings/arm/firmware/sdei.txt
18486 F:      drivers/firmware/arm_sdei.c
18487 F:      include/linux/arm_sdei.h
18488 F:      include/uapi/linux/arm_sdei.h
18489
18490 SOFTWARE NODES AND DEVICE PROPERTIES
18491 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
18492 R:      Daniel Scally <djrscally@gmail.com>
18493 R:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
18494 R:      Sakari Ailus <sakari.ailus@linux.intel.com>
18495 L:      linux-acpi@vger.kernel.org
18496 S:      Maintained
18497 F:      drivers/base/property.c
18498 F:      drivers/base/swnode.c
18499 F:      include/linux/fwnode.h
18500 F:      include/linux/property.h
18501
18502 SOFTWARE RAID (Multiple Disks) SUPPORT
18503 M:      Song Liu <song@kernel.org>
18504 L:      linux-raid@vger.kernel.org
18505 S:      Supported
18506 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/song/md.git
18507 F:      drivers/md/Kconfig
18508 F:      drivers/md/Makefile
18509 F:      drivers/md/md*
18510 F:      drivers/md/raid*
18511 F:      include/linux/raid/
18512 F:      include/uapi/linux/raid/
18513
18514 SOLIDRUN CLEARFOG SUPPORT
18515 M:      Russell King <linux@armlinux.org.uk>
18516 S:      Maintained
18517 F:      arch/arm/boot/dts/armada-388-clearfog*
18518 F:      arch/arm/boot/dts/armada-38x-solidrun-*
18519
18520 SOLIDRUN CUBOX-I/HUMMINGBOARD SUPPORT
18521 M:      Russell King <linux@armlinux.org.uk>
18522 S:      Maintained
18523 F:      arch/arm/boot/dts/imx6*-cubox-i*
18524 F:      arch/arm/boot/dts/imx6*-hummingboard*
18525 F:      arch/arm/boot/dts/imx6*-sr-*
18526
18527 SONIC NETWORK DRIVER
18528 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
18529 L:      netdev@vger.kernel.org
18530 S:      Maintained
18531 F:      drivers/net/ethernet/natsemi/sonic.*
18532
18533 SONICS SILICON BACKPLANE DRIVER (SSB)
18534 M:      Michael Buesch <m@bues.ch>
18535 L:      linux-wireless@vger.kernel.org
18536 S:      Maintained
18537 F:      drivers/ssb/
18538 F:      include/linux/ssb/
18539
18540 SONY IMX208 SENSOR DRIVER
18541 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
18542 L:      linux-media@vger.kernel.org
18543 S:      Maintained
18544 T:      git git://linuxtv.org/media_tree.git
18545 F:      drivers/media/i2c/imx208.c
18546
18547 SONY IMX214 SENSOR DRIVER
18548 M:      Ricardo Ribalda <ribalda@kernel.org>
18549 L:      linux-media@vger.kernel.org
18550 S:      Maintained
18551 T:      git git://linuxtv.org/media_tree.git
18552 F:      Documentation/devicetree/bindings/media/i2c/sony,imx214.yaml
18553 F:      drivers/media/i2c/imx214.c
18554
18555 SONY IMX219 SENSOR DRIVER
18556 M:      Dave Stevenson <dave.stevenson@raspberrypi.com>
18557 L:      linux-media@vger.kernel.org
18558 S:      Maintained
18559 T:      git git://linuxtv.org/media_tree.git
18560 F:      Documentation/devicetree/bindings/media/i2c/imx219.yaml
18561 F:      drivers/media/i2c/imx219.c
18562
18563 SONY IMX258 SENSOR DRIVER
18564 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
18565 L:      linux-media@vger.kernel.org
18566 S:      Maintained
18567 T:      git git://linuxtv.org/media_tree.git
18568 F:      Documentation/devicetree/bindings/media/i2c/imx258.yaml
18569 F:      drivers/media/i2c/imx258.c
18570
18571 SONY IMX274 SENSOR DRIVER
18572 M:      Leon Luo <leonl@leopardimaging.com>
18573 L:      linux-media@vger.kernel.org
18574 S:      Maintained
18575 T:      git git://linuxtv.org/media_tree.git
18576 F:      Documentation/devicetree/bindings/media/i2c/sony,imx274.yaml
18577 F:      drivers/media/i2c/imx274.c
18578
18579 SONY IMX290 SENSOR DRIVER
18580 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
18581 L:      linux-media@vger.kernel.org
18582 S:      Maintained
18583 T:      git git://linuxtv.org/media_tree.git
18584 F:      Documentation/devicetree/bindings/media/i2c/imx290.txt
18585 F:      drivers/media/i2c/imx290.c
18586
18587 SONY IMX319 SENSOR DRIVER
18588 M:      Bingbu Cao <bingbu.cao@intel.com>
18589 L:      linux-media@vger.kernel.org
18590 S:      Maintained
18591 T:      git git://linuxtv.org/media_tree.git
18592 F:      drivers/media/i2c/imx319.c
18593
18594 SONY IMX334 SENSOR DRIVER
18595 M:      Paul J. Murphy <paul.j.murphy@intel.com>
18596 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
18597 L:      linux-media@vger.kernel.org
18598 S:      Maintained
18599 T:      git git://linuxtv.org/media_tree.git
18600 F:      Documentation/devicetree/bindings/media/i2c/sony,imx334.yaml
18601 F:      drivers/media/i2c/imx334.c
18602
18603 SONY IMX335 SENSOR DRIVER
18604 M:      Paul J. Murphy <paul.j.murphy@intel.com>
18605 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
18606 L:      linux-media@vger.kernel.org
18607 S:      Maintained
18608 T:      git git://linuxtv.org/media_tree.git
18609 F:      Documentation/devicetree/bindings/media/i2c/sony,imx335.yaml
18610 F:      drivers/media/i2c/imx335.c
18611
18612 SONY IMX355 SENSOR DRIVER
18613 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
18614 L:      linux-media@vger.kernel.org
18615 S:      Maintained
18616 T:      git git://linuxtv.org/media_tree.git
18617 F:      drivers/media/i2c/imx355.c
18618
18619 SONY IMX412 SENSOR DRIVER
18620 M:      Paul J. Murphy <paul.j.murphy@intel.com>
18621 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
18622 L:      linux-media@vger.kernel.org
18623 S:      Maintained
18624 T:      git git://linuxtv.org/media_tree.git
18625 F:      Documentation/devicetree/bindings/media/i2c/sony,imx412.yaml
18626 F:      drivers/media/i2c/imx412.c
18627
18628 SONY MEMORYSTICK SUBSYSTEM
18629 M:      Maxim Levitsky <maximlevitsky@gmail.com>
18630 M:      Alex Dubov <oakad@yahoo.com>
18631 M:      Ulf Hansson <ulf.hansson@linaro.org>
18632 L:      linux-mmc@vger.kernel.org
18633 S:      Maintained
18634 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
18635 F:      drivers/memstick/
18636 F:      include/linux/memstick.h
18637
18638 SONY VAIO CONTROL DEVICE DRIVER
18639 M:      Mattia Dongili <malattia@linux.it>
18640 L:      platform-driver-x86@vger.kernel.org
18641 S:      Maintained
18642 W:      http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
18643 F:      Documentation/admin-guide/laptops/sony-laptop.rst
18644 F:      drivers/char/sonypi.c
18645 F:      drivers/platform/x86/sony-laptop.c
18646 F:      include/linux/sony-laptop.h
18647
18648 SOUND
18649 M:      Jaroslav Kysela <perex@perex.cz>
18650 M:      Takashi Iwai <tiwai@suse.com>
18651 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18652 S:      Maintained
18653 W:      http://www.alsa-project.org/
18654 Q:      http://patchwork.kernel.org/project/alsa-devel/list/
18655 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
18656 F:      Documentation/sound/
18657 F:      include/sound/
18658 F:      include/uapi/sound/
18659 F:      sound/
18660 F:      tools/testing/selftests/alsa
18661
18662 SOUND - COMPRESSED AUDIO
18663 M:      Vinod Koul <vkoul@kernel.org>
18664 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18665 S:      Supported
18666 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
18667 F:      Documentation/sound/designs/compress-offload.rst
18668 F:      include/sound/compress_driver.h
18669 F:      include/uapi/sound/compress_*
18670 F:      sound/core/compress_offload.c
18671 F:      sound/soc/soc-compress.c
18672
18673 SOUND - DMAENGINE HELPERS
18674 M:      Lars-Peter Clausen <lars@metafoo.de>
18675 S:      Supported
18676 F:      include/sound/dmaengine_pcm.h
18677 F:      sound/core/pcm_dmaengine.c
18678 F:      sound/soc/soc-generic-dmaengine-pcm.c
18679
18680 SOUND - ALSA SELFTESTS
18681 M:      Mark Brown <broonie@kernel.org>
18682 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18683 L:      linux-kselftest@vger.kernel.org
18684 S:      Supported
18685 F:      tools/testing/selftests/alsa
18686
18687 SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
18688 M:      Liam Girdwood <lgirdwood@gmail.com>
18689 M:      Mark Brown <broonie@kernel.org>
18690 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18691 S:      Supported
18692 W:      http://alsa-project.org/main/index.php/ASoC
18693 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
18694 F:      Documentation/devicetree/bindings/sound/
18695 F:      Documentation/sound/soc/
18696 F:      include/dt-bindings/sound/
18697 F:      include/sound/soc*
18698 F:      sound/soc/
18699
18700 SOUND - SOUND OPEN FIRMWARE (SOF) DRIVERS
18701 M:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
18702 M:      Liam Girdwood <lgirdwood@gmail.com>
18703 M:      Ranjani Sridharan <ranjani.sridharan@linux.intel.com>
18704 M:      Kai Vehmanen <kai.vehmanen@linux.intel.com>
18705 M:      Daniel Baluta <daniel.baluta@nxp.com>
18706 L:      sound-open-firmware@alsa-project.org (moderated for non-subscribers)
18707 S:      Supported
18708 W:      https://github.com/thesofproject/linux/
18709 F:      sound/soc/sof/
18710
18711 SOUNDWIRE SUBSYSTEM
18712 M:      Vinod Koul <vkoul@kernel.org>
18713 M:      Bard Liao <yung-chuan.liao@linux.intel.com>
18714 R:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
18715 R:      Sanyog Kale <sanyog.r.kale@intel.com>
18716 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18717 S:      Supported
18718 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vkoul/soundwire.git
18719 F:      Documentation/driver-api/soundwire/
18720 F:      drivers/soundwire/
18721 F:      include/linux/soundwire/
18722
18723 SP2 MEDIA DRIVER
18724 M:      Olli Salonen <olli.salonen@iki.fi>
18725 L:      linux-media@vger.kernel.org
18726 S:      Maintained
18727 W:      https://linuxtv.org
18728 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18729 F:      drivers/media/dvb-frontends/sp2*
18730
18731 SPARC + UltraSPARC (sparc/sparc64)
18732 M:      "David S. Miller" <davem@davemloft.net>
18733 L:      sparclinux@vger.kernel.org
18734 S:      Maintained
18735 Q:      http://patchwork.ozlabs.org/project/sparclinux/list/
18736 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
18737 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
18738 F:      arch/sparc/
18739 F:      drivers/sbus/
18740
18741 SPARC SERIAL DRIVERS
18742 M:      "David S. Miller" <davem@davemloft.net>
18743 L:      sparclinux@vger.kernel.org
18744 S:      Maintained
18745 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
18746 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
18747 F:      drivers/tty/serial/suncore.c
18748 F:      drivers/tty/serial/sunhv.c
18749 F:      drivers/tty/serial/sunsab.c
18750 F:      drivers/tty/serial/sunsab.h
18751 F:      drivers/tty/serial/sunsu.c
18752 F:      drivers/tty/serial/sunzilog.c
18753 F:      drivers/tty/serial/sunzilog.h
18754 F:      drivers/tty/vcc.c
18755 F:      include/linux/sunserialcore.h
18756
18757 SPARSE CHECKER
18758 M:      "Luc Van Oostenryck" <luc.vanoostenryck@gmail.com>
18759 L:      linux-sparse@vger.kernel.org
18760 S:      Maintained
18761 W:      https://sparse.docs.kernel.org/
18762 T:      git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
18763 Q:      https://patchwork.kernel.org/project/linux-sparse/list/
18764 B:      https://bugzilla.kernel.org/enter_bug.cgi?component=Sparse&product=Tools
18765 F:      include/linux/compiler.h
18766
18767 SPEAKUP CONSOLE SPEECH DRIVER
18768 M:      William Hubbs <w.d.hubbs@gmail.com>
18769 M:      Chris Brannon <chris@the-brannons.com>
18770 M:      Kirk Reiser <kirk@reisers.ca>
18771 M:      Samuel Thibault <samuel.thibault@ens-lyon.org>
18772 L:      speakup@linux-speakup.org
18773 S:      Odd Fixes
18774 W:      http://www.linux-speakup.org/
18775 W:      https://github.com/linux-speakup/speakup
18776 B:      https://github.com/linux-speakup/speakup/issues
18777 F:      drivers/accessibility/speakup/
18778
18779 SPEAR PLATFORM/CLOCK/PINCTRL SUPPORT
18780 M:      Viresh Kumar <vireshk@kernel.org>
18781 M:      Shiraz Hashim <shiraz.linux.kernel@gmail.com>
18782 M:      soc@kernel.org
18783 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
18784 S:      Maintained
18785 W:      http://www.st.com/spear
18786 F:      arch/arm/boot/dts/spear*
18787 F:      arch/arm/mach-spear/
18788 F:      drivers/clk/spear/
18789 F:      drivers/pinctrl/spear/
18790
18791 SPI NOR SUBSYSTEM
18792 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
18793 M:      Pratyush Yadav <p.yadav@ti.com>
18794 R:      Michael Walle <michael@walle.cc>
18795 L:      linux-mtd@lists.infradead.org
18796 S:      Maintained
18797 W:      http://www.linux-mtd.infradead.org/
18798 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
18799 C:      irc://irc.oftc.net/mtd
18800 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git spi-nor/next
18801 F:      Documentation/devicetree/bindings/mtd/jedec,spi-nor.yaml
18802 F:      drivers/mtd/spi-nor/
18803 F:      include/linux/mtd/spi-nor.h
18804
18805 SPI SUBSYSTEM
18806 M:      Mark Brown <broonie@kernel.org>
18807 L:      linux-spi@vger.kernel.org
18808 S:      Maintained
18809 Q:      http://patchwork.kernel.org/project/spi-devel-general/list/
18810 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
18811 F:      Documentation/devicetree/bindings/spi/
18812 F:      Documentation/spi/
18813 F:      drivers/spi/
18814 F:      include/linux/spi/
18815 F:      include/uapi/linux/spi/
18816 F:      tools/spi/
18817
18818 SPIDERNET NETWORK DRIVER for CELL
18819 M:      Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
18820 M:      Geoff Levand <geoff@infradead.org>
18821 L:      netdev@vger.kernel.org
18822 L:      linuxppc-dev@lists.ozlabs.org
18823 S:      Maintained
18824 F:      Documentation/networking/device_drivers/ethernet/toshiba/spider_net.rst
18825 F:      drivers/net/ethernet/toshiba/spider_net*
18826
18827 SPMI SUBSYSTEM
18828 M:      Stephen Boyd <sboyd@kernel.org>
18829 L:      linux-kernel@vger.kernel.org
18830 S:      Maintained
18831 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sboyd/spmi.git
18832 F:      Documentation/devicetree/bindings/spmi/
18833 F:      drivers/spmi/
18834 F:      include/dt-bindings/spmi/spmi.h
18835 F:      include/linux/spmi.h
18836 F:      include/trace/events/spmi.h
18837
18838 SPU FILE SYSTEM
18839 M:      Jeremy Kerr <jk@ozlabs.org>
18840 L:      linuxppc-dev@lists.ozlabs.org
18841 S:      Supported
18842 W:      http://www.ibm.com/developerworks/power/cell/
18843 F:      Documentation/filesystems/spufs/spufs.rst
18844 F:      arch/powerpc/platforms/cell/spufs/
18845
18846 SQUASHFS FILE SYSTEM
18847 M:      Phillip Lougher <phillip@squashfs.org.uk>
18848 L:      squashfs-devel@lists.sourceforge.net (subscribers-only)
18849 S:      Maintained
18850 W:      http://squashfs.org.uk
18851 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pkl/squashfs-next.git
18852 F:      Documentation/filesystems/squashfs.rst
18853 F:      fs/squashfs/
18854
18855 SRM (Alpha) environment access
18856 M:      Jan-Benedict Glaw <jbglaw@lug-owl.de>
18857 S:      Maintained
18858 F:      arch/alpha/kernel/srm_env.c
18859
18860 ST LSM6DSx IMU IIO DRIVER
18861 M:      Lorenzo Bianconi <lorenzo@kernel.org>
18862 L:      linux-iio@vger.kernel.org
18863 S:      Maintained
18864 W:      http://www.st.com/
18865 F:      Documentation/devicetree/bindings/iio/imu/st,lsm6dsx.yaml
18866 F:      drivers/iio/imu/st_lsm6dsx/
18867
18868 ST MIPID02 CSI-2 TO PARALLEL BRIDGE DRIVER
18869 M:      Benjamin Mugnier <benjamin.mugnier@foss.st.com>
18870 M:      Sylvain Petinot <sylvain.petinot@foss.st.com>
18871 L:      linux-media@vger.kernel.org
18872 S:      Maintained
18873 T:      git git://linuxtv.org/media_tree.git
18874 F:      Documentation/devicetree/bindings/media/i2c/st,st-mipid02.txt
18875 F:      drivers/media/i2c/st-mipid02.c
18876
18877 ST STM32 I2C/SMBUS DRIVER
18878 M:      Pierre-Yves MORDRET <pierre-yves.mordret@foss.st.com>
18879 M:      Alain Volmat <alain.volmat@foss.st.com>
18880 L:      linux-i2c@vger.kernel.org
18881 S:      Maintained
18882 F:      drivers/i2c/busses/i2c-stm32*
18883
18884 ST STM32 SPI DRIVER
18885 M:      Alain Volmat <alain.volmat@foss.st.com>
18886 L:      linux-spi@vger.kernel.org
18887 S:      Maintained
18888 F:      drivers/spi/spi-stm32.c
18889
18890 ST STPDDC60 DRIVER
18891 M:      Daniel Nilsson <daniel.nilsson@flex.com>
18892 L:      linux-hwmon@vger.kernel.org
18893 S:      Maintained
18894 F:      Documentation/hwmon/stpddc60.rst
18895 F:      drivers/hwmon/pmbus/stpddc60.c
18896
18897 ST VL53L0X ToF RANGER(I2C) IIO DRIVER
18898 M:      Song Qiang <songqiang1304521@gmail.com>
18899 L:      linux-iio@vger.kernel.org
18900 S:      Maintained
18901 F:      Documentation/devicetree/bindings/iio/proximity/st,vl53l0x.yaml
18902 F:      drivers/iio/proximity/vl53l0x-i2c.c
18903
18904 STABLE BRANCH
18905 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
18906 M:      Sasha Levin <sashal@kernel.org>
18907 L:      stable@vger.kernel.org
18908 S:      Supported
18909 F:      Documentation/process/stable-kernel-rules.rst
18910
18911 STAGING - ATOMISP DRIVER
18912 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
18913 R:      Sakari Ailus <sakari.ailus@linux.intel.com>
18914 L:      linux-media@vger.kernel.org
18915 S:      Maintained
18916 F:      drivers/staging/media/atomisp/
18917
18918 STAGING - FIELDBUS SUBSYSTEM
18919 M:      Sven Van Asbroeck <TheSven73@gmail.com>
18920 S:      Maintained
18921 F:      drivers/staging/fieldbus/*
18922 F:      drivers/staging/fieldbus/Documentation/
18923
18924 STAGING - HMS ANYBUS-S BUS
18925 M:      Sven Van Asbroeck <TheSven73@gmail.com>
18926 S:      Maintained
18927 F:      drivers/staging/fieldbus/anybuss/
18928
18929 STAGING - INDUSTRIAL IO
18930 M:      Jonathan Cameron <jic23@kernel.org>
18931 L:      linux-iio@vger.kernel.org
18932 S:      Odd Fixes
18933 F:      Documentation/devicetree/bindings/staging/iio/
18934 F:      drivers/staging/iio/
18935
18936 STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
18937 M:      Marc Dietrich <marvin24@gmx.de>
18938 L:      ac100@lists.launchpad.net (moderated for non-subscribers)
18939 L:      linux-tegra@vger.kernel.org
18940 S:      Maintained
18941 F:      drivers/staging/nvec/
18942
18943 STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
18944 M:      Jens Frederich <jfrederich@gmail.com>
18945 M:      Jon Nettleton <jon.nettleton@gmail.com>
18946 S:      Maintained
18947 W:      http://wiki.laptop.org/go/DCON
18948 F:      drivers/staging/olpc_dcon/
18949
18950 STAGING - REALTEK RTL8188EU DRIVERS
18951 M:      Larry Finger <Larry.Finger@lwfinger.net>
18952 M:      Phillip Potter <phil@philpotter.co.uk>
18953 S:      Supported
18954 F:      drivers/staging/r8188eu/
18955
18956 STAGING - REALTEK RTL8712U DRIVERS
18957 M:      Larry Finger <Larry.Finger@lwfinger.net>
18958 M:      Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
18959 S:      Odd Fixes
18960 F:      drivers/staging/rtl8712/
18961
18962 STAGING - SEPS525 LCD CONTROLLER DRIVERS
18963 M:      Michael Hennerich <michael.hennerich@analog.com>
18964 L:      linux-fbdev@vger.kernel.org
18965 S:      Supported
18966 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7606.yaml
18967 F:      drivers/staging/fbtft/fb_seps525.c
18968
18969 STAGING - SILICON MOTION SM750 FRAME BUFFER DRIVER
18970 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
18971 M:      Teddy Wang <teddy.wang@siliconmotion.com>
18972 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
18973 L:      linux-fbdev@vger.kernel.org
18974 S:      Maintained
18975 F:      drivers/staging/sm750fb/
18976
18977 STAGING - VIA VT665X DRIVERS
18978 M:      Forest Bond <forest@alittletooquiet.net>
18979 S:      Odd Fixes
18980 F:      drivers/staging/vt665?/
18981
18982 STAGING SUBSYSTEM
18983 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
18984 L:      linux-staging@lists.linux.dev
18985 S:      Supported
18986 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
18987 F:      drivers/staging/
18988
18989 STARFIRE/DURALAN NETWORK DRIVER
18990 M:      Ion Badulescu <ionut@badula.org>
18991 S:      Odd Fixes
18992 F:      drivers/net/ethernet/adaptec/starfire*
18993
18994 STARFIVE JH7100 CLOCK DRIVERS
18995 M:      Emil Renner Berthing <kernel@esmil.dk>
18996 S:      Maintained
18997 F:      Documentation/devicetree/bindings/clock/starfive,jh7100-*.yaml
18998 F:      drivers/clk/starfive/clk-starfive-jh7100*
18999 F:      include/dt-bindings/clock/starfive-jh7100*.h
19000
19001 STARFIVE JH7100 PINCTRL DRIVER
19002 M:      Emil Renner Berthing <kernel@esmil.dk>
19003 L:      linux-gpio@vger.kernel.org
19004 S:      Maintained
19005 F:      Documentation/devicetree/bindings/pinctrl/starfive,jh7100-pinctrl.yaml
19006 F:      drivers/pinctrl/pinctrl-starfive.c
19007 F:      include/dt-bindings/pinctrl/pinctrl-starfive.h
19008
19009 STARFIVE JH7100 RESET CONTROLLER DRIVER
19010 M:      Emil Renner Berthing <kernel@esmil.dk>
19011 S:      Maintained
19012 F:      Documentation/devicetree/bindings/reset/starfive,jh7100-reset.yaml
19013 F:      drivers/reset/reset-starfive-jh7100.c
19014 F:      include/dt-bindings/reset/starfive-jh7100.h
19015
19016 STATIC BRANCH/CALL
19017 M:      Peter Zijlstra <peterz@infradead.org>
19018 M:      Josh Poimboeuf <jpoimboe@kernel.org>
19019 M:      Jason Baron <jbaron@akamai.com>
19020 R:      Steven Rostedt <rostedt@goodmis.org>
19021 R:      Ard Biesheuvel <ardb@kernel.org>
19022 S:      Supported
19023 F:      arch/*/include/asm/jump_label*.h
19024 F:      arch/*/include/asm/static_call*.h
19025 F:      arch/*/kernel/jump_label.c
19026 F:      arch/*/kernel/static_call.c
19027 F:      include/linux/jump_label*.h
19028 F:      include/linux/static_call*.h
19029 F:      kernel/jump_label.c
19030 F:      kernel/static_call.c
19031
19032 STI AUDIO (ASoC) DRIVERS
19033 M:      Arnaud Pouliquen <arnaud.pouliquen@foss.st.com>
19034 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19035 S:      Maintained
19036 F:      Documentation/devicetree/bindings/sound/st,sti-asoc-card.txt
19037 F:      sound/soc/sti/
19038
19039 STI CEC DRIVER
19040 M:      Alain Volmat <alain.volmat@foss.st.com>
19041 S:      Maintained
19042 F:      Documentation/devicetree/bindings/media/stih-cec.txt
19043 F:      drivers/media/cec/platform/sti/
19044
19045 STK1160 USB VIDEO CAPTURE DRIVER
19046 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
19047 L:      linux-media@vger.kernel.org
19048 S:      Maintained
19049 T:      git git://linuxtv.org/media_tree.git
19050 F:      drivers/media/usb/stk1160/
19051
19052 STM32 AUDIO (ASoC) DRIVERS
19053 M:      Olivier Moysan <olivier.moysan@foss.st.com>
19054 M:      Arnaud Pouliquen <arnaud.pouliquen@foss.st.com>
19055 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19056 S:      Maintained
19057 F:      Documentation/devicetree/bindings/iio/adc/st,stm32-dfsdm-adc.yaml
19058 F:      Documentation/devicetree/bindings/sound/st,stm32-*.yaml
19059 F:      sound/soc/stm/
19060
19061 STM32 TIMER/LPTIMER DRIVERS
19062 M:      Fabrice Gasnier <fabrice.gasnier@foss.st.com>
19063 S:      Maintained
19064 F:      Documentation/ABI/testing/*timer-stm32
19065 F:      Documentation/devicetree/bindings/*/*stm32-*timer*
19066 F:      drivers/*/stm32-*timer*
19067 F:      drivers/pwm/pwm-stm32*
19068 F:      include/linux/*/stm32-*tim*
19069
19070 STMMAC ETHERNET DRIVER
19071 M:      Giuseppe Cavallaro <peppe.cavallaro@st.com>
19072 M:      Alexandre Torgue <alexandre.torgue@foss.st.com>
19073 M:      Jose Abreu <joabreu@synopsys.com>
19074 L:      netdev@vger.kernel.org
19075 S:      Supported
19076 W:      http://www.stlinux.com
19077 F:      Documentation/networking/device_drivers/ethernet/stmicro/
19078 F:      drivers/net/ethernet/stmicro/stmmac/
19079
19080 SUN3/3X
19081 M:      Sam Creasey <sammy@sammy.net>
19082 S:      Maintained
19083 W:      http://sammy.net/sun3/
19084 F:      arch/m68k/include/asm/sun3*
19085 F:      arch/m68k/kernel/*sun3*
19086 F:      arch/m68k/sun3*/
19087 F:      drivers/net/ethernet/i825xx/sun3*
19088
19089 SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER
19090 M:      Hans de Goede <hdegoede@redhat.com>
19091 L:      linux-input@vger.kernel.org
19092 S:      Maintained
19093 F:      Documentation/devicetree/bindings/input/allwinner,sun4i-a10-lradc-keys.yaml
19094 F:      drivers/input/keyboard/sun4i-lradc-keys.c
19095
19096 SUNDANCE NETWORK DRIVER
19097 M:      Denis Kirjanov <kda@linux-powerpc.org>
19098 L:      netdev@vger.kernel.org
19099 S:      Maintained
19100 F:      drivers/net/ethernet/dlink/sundance.c
19101
19102 SUNPLUS ETHERNET DRIVER
19103 M:      Wells Lu <wellslutw@gmail.com>
19104 L:      netdev@vger.kernel.org
19105 S:      Maintained
19106 W:      https://sunplus.atlassian.net/wiki/spaces/doc/overview
19107 F:      Documentation/devicetree/bindings/net/sunplus,sp7021-emac.yaml
19108 F:      drivers/net/ethernet/sunplus/
19109
19110 SUNPLUS OCOTP DRIVER
19111 M:      Vincent Shih <vincent.sunplus@gmail.com>
19112 S:      Maintained
19113 F:      Documentation/devicetree/bindings/nvmem/sunplus,sp7021-ocotp.yaml
19114 F:      drivers/nvmem/sunplus-ocotp.c
19115
19116 SUNPLUS PWM DRIVER
19117 M:      Hammer Hsieh <hammerh0314@gmail.com>
19118 S:      Maintained
19119 F:      Documentation/devicetree/bindings/pwm/sunplus,sp7021-pwm.yaml
19120 F:      drivers/pwm/pwm-sunplus.c
19121
19122 SUNPLUS RTC DRIVER
19123 M:      Vincent Shih <vincent.sunplus@gmail.com>
19124 L:      linux-rtc@vger.kernel.org
19125 S:      Maintained
19126 F:      Documentation/devicetree/bindings/rtc/sunplus,sp7021-rtc.yaml
19127 F:      drivers/rtc/rtc-sunplus.c
19128
19129 SUNPLUS SPI CONTROLLER INTERFACE DRIVER
19130 M:      Li-hao Kuo <lhjeff911@gmail.com>
19131 L:      linux-spi@vger.kernel.org
19132 S:      Maintained
19133 F:      Documentation/devicetree/bindings/spi/spi-sunplus-sp7021.yaml
19134 F:      drivers/spi/spi-sunplus-sp7021.c
19135
19136 SUNPLUS UART DRIVER
19137 M:      Hammer Hsieh <hammerh0314@gmail.com>
19138 S:      Maintained
19139 F:      Documentation/devicetree/bindings/serial/sunplus,sp7021-uart.yaml
19140 F:      drivers/tty/serial/sunplus-uart.c
19141
19142 SUNPLUS WATCHDOG DRIVER
19143 M:      Xiantao Hu <xt.hu@cqplus1.com>
19144 L:      linux-watchdog@vger.kernel.org
19145 S:      Maintained
19146 F:      Documentation/devicetree/bindings/watchdog/sunplus,sp7021-wdt.yaml
19147 F:      drivers/watchdog/sunplus_wdt.c
19148
19149 SUPERH
19150 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
19151 M:      Rich Felker <dalias@libc.org>
19152 L:      linux-sh@vger.kernel.org
19153 S:      Maintained
19154 Q:      http://patchwork.kernel.org/project/linux-sh/list/
19155 F:      Documentation/sh/
19156 F:      arch/sh/
19157 F:      drivers/sh/
19158
19159 SUSPEND TO RAM
19160 M:      "Rafael J. Wysocki" <rafael@kernel.org>
19161 M:      Len Brown <len.brown@intel.com>
19162 M:      Pavel Machek <pavel@ucw.cz>
19163 L:      linux-pm@vger.kernel.org
19164 S:      Supported
19165 B:      https://bugzilla.kernel.org
19166 F:      Documentation/power/
19167 F:      arch/x86/kernel/acpi/
19168 F:      drivers/base/power/
19169 F:      include/linux/freezer.h
19170 F:      include/linux/pm.h
19171 F:      include/linux/suspend.h
19172 F:      kernel/power/
19173
19174 SVGA HANDLING
19175 M:      Martin Mares <mj@ucw.cz>
19176 L:      linux-video@atrey.karlin.mff.cuni.cz
19177 S:      Maintained
19178 F:      Documentation/admin-guide/svga.rst
19179 F:      arch/x86/boot/video*
19180
19181 SWIOTLB SUBSYSTEM
19182 M:      Christoph Hellwig <hch@infradead.org>
19183 L:      iommu@lists.linux-foundation.org
19184 S:      Supported
19185 W:      http://git.infradead.org/users/hch/dma-mapping.git
19186 T:      git git://git.infradead.org/users/hch/dma-mapping.git
19187 F:      arch/*/kernel/pci-swiotlb.c
19188 F:      include/linux/swiotlb.h
19189 F:      kernel/dma/swiotlb.c
19190
19191 SWITCHDEV
19192 M:      Jiri Pirko <jiri@resnulli.us>
19193 M:      Ivan Vecera <ivecera@redhat.com>
19194 L:      netdev@vger.kernel.org
19195 S:      Supported
19196 F:      include/net/switchdev.h
19197 F:      net/switchdev/
19198
19199 SY8106A REGULATOR DRIVER
19200 M:      Icenowy Zheng <icenowy@aosc.io>
19201 S:      Maintained
19202 F:      Documentation/devicetree/bindings/regulator/silergy,sy8106a.yaml
19203 F:      drivers/regulator/sy8106a-regulator.c
19204
19205 SYNC FILE FRAMEWORK
19206 M:      Sumit Semwal <sumit.semwal@linaro.org>
19207 R:      Gustavo Padovan <gustavo@padovan.org>
19208 L:      linux-media@vger.kernel.org
19209 L:      dri-devel@lists.freedesktop.org
19210 S:      Maintained
19211 T:      git git://anongit.freedesktop.org/drm/drm-misc
19212 F:      Documentation/driver-api/sync_file.rst
19213 F:      drivers/dma-buf/dma-fence*
19214 F:      drivers/dma-buf/sw_sync.c
19215 F:      drivers/dma-buf/sync_*
19216 F:      include/linux/sync_file.h
19217 F:      include/uapi/linux/sync_file.h
19218
19219 SYNOPSYS ARC ARCHITECTURE
19220 M:      Vineet Gupta <vgupta@kernel.org>
19221 L:      linux-snps-arc@lists.infradead.org
19222 S:      Supported
19223 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc.git
19224 F:      Documentation/arc/
19225 F:      Documentation/devicetree/bindings/arc/*
19226 F:      Documentation/devicetree/bindings/interrupt-controller/snps,arc*
19227 F:      arch/arc/
19228 F:      drivers/clocksource/arc_timer.c
19229 F:      drivers/tty/serial/arc_uart.c
19230
19231 SYNOPSYS ARC HSDK SDP pll clock driver
19232 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
19233 S:      Supported
19234 F:      Documentation/devicetree/bindings/clock/snps,hsdk-pll-clock.txt
19235 F:      drivers/clk/clk-hsdk-pll.c
19236
19237 SYNOPSYS ARC SDP clock driver
19238 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
19239 S:      Supported
19240 F:      Documentation/devicetree/bindings/clock/snps,pll-clock.txt
19241 F:      drivers/clk/axs10x/*
19242
19243 SYNOPSYS ARC SDP platform support
19244 M:      Alexey Brodkin <abrodkin@synopsys.com>
19245 S:      Supported
19246 F:      Documentation/devicetree/bindings/arc/axs10*
19247 F:      arch/arc/boot/dts/ax*
19248 F:      arch/arc/plat-axs10x
19249
19250 SYNOPSYS AXS10x RESET CONTROLLER DRIVER
19251 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
19252 S:      Supported
19253 F:      Documentation/devicetree/bindings/reset/snps,axs10x-reset.yaml
19254 F:      drivers/reset/reset-axs10x.c
19255
19256 SYNOPSYS CREG GPIO DRIVER
19257 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
19258 S:      Maintained
19259 F:      Documentation/devicetree/bindings/gpio/snps,creg-gpio.txt
19260 F:      drivers/gpio/gpio-creg-snps.c
19261
19262 SYNOPSYS DESIGNWARE 8250 UART DRIVER
19263 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
19264 S:      Maintained
19265 F:      drivers/tty/serial/8250/8250_dw.c
19266 F:      drivers/tty/serial/8250/8250_dwlib.*
19267 F:      drivers/tty/serial/8250/8250_lpss.c
19268
19269 SYNOPSYS DESIGNWARE APB GPIO DRIVER
19270 M:      Hoan Tran <hoan@os.amperecomputing.com>
19271 M:      Serge Semin <fancer.lancer@gmail.com>
19272 L:      linux-gpio@vger.kernel.org
19273 S:      Maintained
19274 F:      Documentation/devicetree/bindings/gpio/snps,dw-apb-gpio.yaml
19275 F:      drivers/gpio/gpio-dwapb.c
19276
19277 SYNOPSYS DESIGNWARE APB SSI DRIVER
19278 M:      Serge Semin <fancer.lancer@gmail.com>
19279 L:      linux-spi@vger.kernel.org
19280 S:      Supported
19281 F:      Documentation/devicetree/bindings/spi/snps,dw-apb-ssi.yaml
19282 F:      drivers/spi/spi-dw*
19283
19284 SYNOPSYS DESIGNWARE AXI DMAC DRIVER
19285 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
19286 S:      Maintained
19287 F:      Documentation/devicetree/bindings/dma/snps,dw-axi-dmac.yaml
19288 F:      drivers/dma/dw-axi-dmac/
19289
19290 SYNOPSYS DESIGNWARE DMAC DRIVER
19291 M:      Viresh Kumar <vireshk@kernel.org>
19292 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
19293 S:      Maintained
19294 F:      Documentation/devicetree/bindings/dma/renesas,rzn1-dmamux.yaml
19295 F:      Documentation/devicetree/bindings/dma/snps,dma-spear1340.yaml
19296 F:      drivers/dma/dw/
19297 F:      include/dt-bindings/dma/dw-dmac.h
19298 F:      include/linux/dma/dw.h
19299 F:      include/linux/platform_data/dma-dw.h
19300
19301 SYNOPSYS DESIGNWARE ENTERPRISE ETHERNET DRIVER
19302 M:      Jose Abreu <Jose.Abreu@synopsys.com>
19303 L:      netdev@vger.kernel.org
19304 S:      Supported
19305 F:      drivers/net/ethernet/synopsys/
19306
19307 SYNOPSYS DESIGNWARE ETHERNET XPCS DRIVER
19308 M:      Jose Abreu <Jose.Abreu@synopsys.com>
19309 L:      netdev@vger.kernel.org
19310 S:      Supported
19311 F:      drivers/net/pcs/pcs-xpcs.c
19312 F:      drivers/net/pcs/pcs-xpcs.h
19313 F:      include/linux/pcs/pcs-xpcs.h
19314
19315 SYNOPSYS DESIGNWARE I2C DRIVER
19316 M:      Jarkko Nikula <jarkko.nikula@linux.intel.com>
19317 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
19318 R:      Mika Westerberg <mika.westerberg@linux.intel.com>
19319 R:      Jan Dabros <jsd@semihalf.com>
19320 L:      linux-i2c@vger.kernel.org
19321 S:      Supported
19322 F:      drivers/i2c/busses/i2c-designware-*
19323
19324 SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
19325 M:      Jaehoon Chung <jh80.chung@samsung.com>
19326 L:      linux-mmc@vger.kernel.org
19327 S:      Maintained
19328 F:      drivers/mmc/host/dw_mmc*
19329
19330 SYNOPSYS HSDK RESET CONTROLLER DRIVER
19331 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
19332 S:      Supported
19333 F:      Documentation/devicetree/bindings/reset/snps,hsdk-reset.txt
19334 F:      drivers/reset/reset-hsdk.c
19335 F:      include/dt-bindings/reset/snps,hsdk-reset.h
19336
19337 SYNOPSYS SDHCI COMPLIANT DWC MSHC DRIVER
19338 M:      Prabu Thangamuthu <prabu.t@synopsys.com>
19339 M:      Manjunath M B <manjumb@synopsys.com>
19340 L:      linux-mmc@vger.kernel.org
19341 S:      Maintained
19342 F:      drivers/mmc/host/sdhci-pci-dwc-mshc.c
19343
19344 SYSTEM CONFIGURATION (SYSCON)
19345 M:      Lee Jones <lee.jones@linaro.org>
19346 M:      Arnd Bergmann <arnd@arndb.de>
19347 S:      Supported
19348 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
19349 F:      drivers/mfd/syscon.c
19350
19351 SYSTEM CONTROL & POWER/MANAGEMENT INTERFACE (SCPI/SCMI) Message Protocol drivers
19352 M:      Sudeep Holla <sudeep.holla@arm.com>
19353 R:      Cristian Marussi <cristian.marussi@arm.com>
19354 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
19355 S:      Maintained
19356 F:      Documentation/devicetree/bindings/firmware/arm,sc[mp]i.yaml
19357 F:      drivers/clk/clk-sc[mp]i.c
19358 F:      drivers/cpufreq/sc[mp]i-cpufreq.c
19359 F:      drivers/firmware/arm_scmi/
19360 F:      drivers/firmware/arm_scpi.c
19361 F:      drivers/regulator/scmi-regulator.c
19362 F:      drivers/reset/reset-scmi.c
19363 F:      include/linux/sc[mp]i_protocol.h
19364 F:      include/trace/events/scmi.h
19365 F:      include/uapi/linux/virtio_scmi.h
19366
19367 SYSTEM RESET/SHUTDOWN DRIVERS
19368 M:      Sebastian Reichel <sre@kernel.org>
19369 L:      linux-pm@vger.kernel.org
19370 S:      Maintained
19371 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
19372 F:      Documentation/devicetree/bindings/power/reset/
19373 F:      drivers/power/reset/
19374
19375 SYSTEM TRACE MODULE CLASS
19376 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
19377 S:      Maintained
19378 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ash/stm.git
19379 F:      Documentation/trace/stm.rst
19380 F:      drivers/hwtracing/stm/
19381 F:      include/linux/stm.h
19382 F:      include/uapi/linux/stm.h
19383
19384 SYSTEM76 ACPI DRIVER
19385 M:      Jeremy Soller <jeremy@system76.com>
19386 M:      System76 Product Development <productdev@system76.com>
19387 L:      platform-driver-x86@vger.kernel.org
19388 S:      Maintained
19389 F:      drivers/platform/x86/system76_acpi.c
19390
19391 SYSV FILESYSTEM
19392 M:      Christoph Hellwig <hch@infradead.org>
19393 S:      Maintained
19394 F:      Documentation/filesystems/sysv-fs.rst
19395 F:      fs/sysv/
19396 F:      include/linux/sysv_fs.h
19397
19398 TASKSTATS STATISTICS INTERFACE
19399 M:      Balbir Singh <bsingharora@gmail.com>
19400 S:      Maintained
19401 F:      Documentation/accounting/taskstats*
19402 F:      include/linux/taskstats*
19403 F:      kernel/taskstats.c
19404
19405 TC subsystem
19406 M:      Jamal Hadi Salim <jhs@mojatatu.com>
19407 M:      Cong Wang <xiyou.wangcong@gmail.com>
19408 M:      Jiri Pirko <jiri@resnulli.us>
19409 L:      netdev@vger.kernel.org
19410 S:      Maintained
19411 F:      include/net/pkt_cls.h
19412 F:      include/net/pkt_sched.h
19413 F:      include/net/tc_act/
19414 F:      include/uapi/linux/pkt_cls.h
19415 F:      include/uapi/linux/pkt_sched.h
19416 F:      include/uapi/linux/tc_act/
19417 F:      include/uapi/linux/tc_ematch/
19418 F:      net/sched/
19419 F:      tools/testing/selftests/tc-testing
19420
19421 TC90522 MEDIA DRIVER
19422 M:      Akihiro Tsukada <tskd08@gmail.com>
19423 L:      linux-media@vger.kernel.org
19424 S:      Odd Fixes
19425 F:      drivers/media/dvb-frontends/tc90522*
19426
19427 TCP LOW PRIORITY MODULE
19428 M:      "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
19429 M:      "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
19430 S:      Maintained
19431 W:      http://tcp-lp-mod.sourceforge.net/
19432 F:      net/ipv4/tcp_lp.c
19433
19434 TDA10071 MEDIA DRIVER
19435 M:      Antti Palosaari <crope@iki.fi>
19436 L:      linux-media@vger.kernel.org
19437 S:      Maintained
19438 W:      https://linuxtv.org
19439 W:      http://palosaari.fi/linux/
19440 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19441 T:      git git://linuxtv.org/anttip/media_tree.git
19442 F:      drivers/media/dvb-frontends/tda10071*
19443
19444 TDA18212 MEDIA DRIVER
19445 M:      Antti Palosaari <crope@iki.fi>
19446 L:      linux-media@vger.kernel.org
19447 S:      Maintained
19448 W:      https://linuxtv.org
19449 W:      http://palosaari.fi/linux/
19450 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19451 T:      git git://linuxtv.org/anttip/media_tree.git
19452 F:      drivers/media/tuners/tda18212*
19453
19454 TDA18218 MEDIA DRIVER
19455 M:      Antti Palosaari <crope@iki.fi>
19456 L:      linux-media@vger.kernel.org
19457 S:      Maintained
19458 W:      https://linuxtv.org
19459 W:      http://palosaari.fi/linux/
19460 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19461 T:      git git://linuxtv.org/anttip/media_tree.git
19462 F:      drivers/media/tuners/tda18218*
19463
19464 TDA18250 MEDIA DRIVER
19465 M:      Olli Salonen <olli.salonen@iki.fi>
19466 L:      linux-media@vger.kernel.org
19467 S:      Maintained
19468 W:      https://linuxtv.org
19469 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19470 T:      git git://linuxtv.org/media_tree.git
19471 F:      drivers/media/tuners/tda18250*
19472
19473 TDA18271 MEDIA DRIVER
19474 M:      Michael Krufky <mkrufky@linuxtv.org>
19475 L:      linux-media@vger.kernel.org
19476 S:      Maintained
19477 W:      https://linuxtv.org
19478 W:      http://github.com/mkrufky
19479 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19480 T:      git git://linuxtv.org/mkrufky/tuners.git
19481 F:      drivers/media/tuners/tda18271*
19482
19483 TDA1997x MEDIA DRIVER
19484 M:      Tim Harvey <tharvey@gateworks.com>
19485 L:      linux-media@vger.kernel.org
19486 S:      Maintained
19487 W:      https://linuxtv.org
19488 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19489 F:      drivers/media/i2c/tda1997x.*
19490
19491 TDA827x MEDIA DRIVER
19492 M:      Michael Krufky <mkrufky@linuxtv.org>
19493 L:      linux-media@vger.kernel.org
19494 S:      Maintained
19495 W:      https://linuxtv.org
19496 W:      http://github.com/mkrufky
19497 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19498 T:      git git://linuxtv.org/mkrufky/tuners.git
19499 F:      drivers/media/tuners/tda8290.*
19500
19501 TDA8290 MEDIA DRIVER
19502 M:      Michael Krufky <mkrufky@linuxtv.org>
19503 L:      linux-media@vger.kernel.org
19504 S:      Maintained
19505 W:      https://linuxtv.org
19506 W:      http://github.com/mkrufky
19507 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19508 T:      git git://linuxtv.org/mkrufky/tuners.git
19509 F:      drivers/media/tuners/tda8290.*
19510
19511 TDA9840 MEDIA DRIVER
19512 M:      Hans Verkuil <hverkuil@xs4all.nl>
19513 L:      linux-media@vger.kernel.org
19514 S:      Maintained
19515 W:      https://linuxtv.org
19516 T:      git git://linuxtv.org/media_tree.git
19517 F:      drivers/media/i2c/tda9840*
19518
19519 TEA5761 TUNER DRIVER
19520 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
19521 L:      linux-media@vger.kernel.org
19522 S:      Odd fixes
19523 W:      https://linuxtv.org
19524 T:      git git://linuxtv.org/media_tree.git
19525 F:      drivers/media/tuners/tea5761.*
19526
19527 TEA5767 TUNER DRIVER
19528 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
19529 L:      linux-media@vger.kernel.org
19530 S:      Maintained
19531 W:      https://linuxtv.org
19532 T:      git git://linuxtv.org/media_tree.git
19533 F:      drivers/media/tuners/tea5767.*
19534
19535 TEA6415C MEDIA DRIVER
19536 M:      Hans Verkuil <hverkuil@xs4all.nl>
19537 L:      linux-media@vger.kernel.org
19538 S:      Maintained
19539 W:      https://linuxtv.org
19540 T:      git git://linuxtv.org/media_tree.git
19541 F:      drivers/media/i2c/tea6415c*
19542
19543 TEA6420 MEDIA DRIVER
19544 M:      Hans Verkuil <hverkuil@xs4all.nl>
19545 L:      linux-media@vger.kernel.org
19546 S:      Maintained
19547 W:      https://linuxtv.org
19548 T:      git git://linuxtv.org/media_tree.git
19549 F:      drivers/media/i2c/tea6420*
19550
19551 TEAM DRIVER
19552 M:      Jiri Pirko <jiri@resnulli.us>
19553 L:      netdev@vger.kernel.org
19554 S:      Supported
19555 F:      drivers/net/team/
19556 F:      include/linux/if_team.h
19557 F:      include/uapi/linux/if_team.h
19558
19559 TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
19560 M:      "Savoir-faire Linux Inc." <kernel@savoirfairelinux.com>
19561 S:      Maintained
19562 F:      arch/x86/platform/ts5500/
19563
19564 TECHNOTREND USB IR RECEIVER
19565 M:      Sean Young <sean@mess.org>
19566 L:      linux-media@vger.kernel.org
19567 S:      Maintained
19568 F:      drivers/media/rc/ttusbir.c
19569
19570 TECHWELL TW9910 VIDEO DECODER
19571 L:      linux-media@vger.kernel.org
19572 S:      Orphan
19573 F:      drivers/media/i2c/tw9910.c
19574 F:      include/media/i2c/tw9910.h
19575
19576 TEE SUBSYSTEM
19577 M:      Jens Wiklander <jens.wiklander@linaro.org>
19578 R:      Sumit Garg <sumit.garg@linaro.org>
19579 L:      op-tee@lists.trustedfirmware.org
19580 S:      Maintained
19581 F:      Documentation/staging/tee.rst
19582 F:      drivers/tee/
19583 F:      include/linux/tee_drv.h
19584 F:      include/uapi/linux/tee.h
19585
19586 TEGRA ARCHITECTURE SUPPORT
19587 M:      Thierry Reding <thierry.reding@gmail.com>
19588 M:      Jonathan Hunter <jonathanh@nvidia.com>
19589 L:      linux-tegra@vger.kernel.org
19590 S:      Supported
19591 Q:      http://patchwork.ozlabs.org/project/linux-tegra/list/
19592 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git
19593 N:      [^a-z]tegra
19594
19595 TEGRA CLOCK DRIVER
19596 M:      Peter De Schrijver <pdeschrijver@nvidia.com>
19597 M:      Prashant Gaikwad <pgaikwad@nvidia.com>
19598 S:      Supported
19599 F:      drivers/clk/tegra/
19600
19601 TEGRA DMA DRIVERS
19602 M:      Laxman Dewangan <ldewangan@nvidia.com>
19603 M:      Jon Hunter <jonathanh@nvidia.com>
19604 S:      Supported
19605 F:      drivers/dma/tegra*
19606
19607 TEGRA I2C DRIVER
19608 M:      Laxman Dewangan <ldewangan@nvidia.com>
19609 R:      Dmitry Osipenko <digetx@gmail.com>
19610 S:      Supported
19611 F:      drivers/i2c/busses/i2c-tegra.c
19612
19613 TEGRA IOMMU DRIVERS
19614 M:      Thierry Reding <thierry.reding@gmail.com>
19615 R:      Krishna Reddy <vdumpa@nvidia.com>
19616 L:      linux-tegra@vger.kernel.org
19617 S:      Supported
19618 F:      drivers/iommu/arm/arm-smmu/arm-smmu-nvidia.c
19619 F:      drivers/iommu/tegra*
19620
19621 TEGRA KBC DRIVER
19622 M:      Laxman Dewangan <ldewangan@nvidia.com>
19623 S:      Supported
19624 F:      drivers/input/keyboard/tegra-kbc.c
19625
19626 TEGRA NAND DRIVER
19627 M:      Stefan Agner <stefan@agner.ch>
19628 M:      Lucas Stach <dev@lynxeye.de>
19629 S:      Maintained
19630 F:      Documentation/devicetree/bindings/mtd/nvidia-tegra20-nand.txt
19631 F:      drivers/mtd/nand/raw/tegra_nand.c
19632
19633 TEGRA PWM DRIVER
19634 M:      Thierry Reding <thierry.reding@gmail.com>
19635 S:      Supported
19636 F:      drivers/pwm/pwm-tegra.c
19637
19638 TEGRA SERIAL DRIVER
19639 M:      Laxman Dewangan <ldewangan@nvidia.com>
19640 S:      Supported
19641 F:      drivers/tty/serial/serial-tegra.c
19642
19643 TEGRA SPI DRIVER
19644 M:      Laxman Dewangan <ldewangan@nvidia.com>
19645 S:      Supported
19646 F:      drivers/spi/spi-tegra*
19647
19648 TEGRA QUAD SPI DRIVER
19649 M:      Thierry Reding <thierry.reding@gmail.com>
19650 M:      Jonathan Hunter <jonathanh@nvidia.com>
19651 M:      Sowjanya Komatineni <skomatineni@nvidia.com>
19652 L:      linux-tegra@vger.kernel.org
19653 S:      Maintained
19654 F:      drivers/spi/spi-tegra210-quad.c
19655
19656 TEGRA VIDEO DRIVER
19657 M:      Thierry Reding <thierry.reding@gmail.com>
19658 M:      Jonathan Hunter <jonathanh@nvidia.com>
19659 M:      Sowjanya Komatineni <skomatineni@nvidia.com>
19660 L:      linux-media@vger.kernel.org
19661 L:      linux-tegra@vger.kernel.org
19662 S:      Maintained
19663 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
19664 F:      drivers/staging/media/tegra-video/
19665
19666 TEGRA XUSB PADCTL DRIVER
19667 M:      JC Kuo <jckuo@nvidia.com>
19668 S:      Supported
19669 F:      drivers/phy/tegra/xusb*
19670
19671 TEHUTI ETHERNET DRIVER
19672 M:      Andy Gospodarek <andy@greyhouse.net>
19673 L:      netdev@vger.kernel.org
19674 S:      Supported
19675 F:      drivers/net/ethernet/tehuti/*
19676
19677 TELECOM CLOCK DRIVER FOR MCPL0010
19678 M:      Mark Gross <markgross@kernel.org>
19679 S:      Supported
19680 F:      drivers/char/tlclk.c
19681
19682 TEMPO SEMICONDUCTOR DRIVERS
19683 M:      Steven Eckhoff <steven.eckhoff.opensource@gmail.com>
19684 S:      Maintained
19685 F:      Documentation/devicetree/bindings/sound/tscs*.txt
19686 F:      sound/soc/codecs/tscs*.c
19687 F:      sound/soc/codecs/tscs*.h
19688
19689 TENSILICA XTENSA PORT (xtensa)
19690 M:      Chris Zankel <chris@zankel.net>
19691 M:      Max Filippov <jcmvbkbc@gmail.com>
19692 L:      linux-xtensa@linux-xtensa.org
19693 S:      Maintained
19694 T:      git git://github.com/czankel/xtensa-linux.git
19695 F:      arch/xtensa/
19696 F:      drivers/irqchip/irq-xtensa-*
19697
19698 TEXAS INSTRUMENTS ASoC DRIVERS
19699 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
19700 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19701 S:      Maintained
19702 F:      Documentation/devicetree/bindings/sound/davinci-mcasp-audio.yaml
19703 F:      sound/soc/ti/
19704
19705 TEXAS INSTRUMENTS' DAC7612 DAC DRIVER
19706 M:      Ricardo Ribalda <ribalda@kernel.org>
19707 L:      linux-iio@vger.kernel.org
19708 S:      Supported
19709 F:      Documentation/devicetree/bindings/iio/dac/ti,dac7612.yaml
19710 F:      drivers/iio/dac/ti-dac7612.c
19711
19712 TEXAS INSTRUMENTS DMA DRIVERS
19713 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
19714 L:      dmaengine@vger.kernel.org
19715 S:      Maintained
19716 F:      Documentation/devicetree/bindings/dma/ti-dma-crossbar.txt
19717 F:      Documentation/devicetree/bindings/dma/ti-edma.txt
19718 F:      Documentation/devicetree/bindings/dma/ti/
19719 F:      drivers/dma/ti/
19720 X:      drivers/dma/ti/cppi41.c
19721 F:      include/linux/dma/k3-udma-glue.h
19722 F:      include/linux/dma/ti-cppi5.h
19723 F:      include/linux/dma/k3-psil.h
19724
19725 TEXAS INSTRUMENTS' SYSTEM CONTROL INTERFACE (TISCI) PROTOCOL DRIVER
19726 M:      Nishanth Menon <nm@ti.com>
19727 M:      Tero Kristo <kristo@kernel.org>
19728 M:      Santosh Shilimkar <ssantosh@kernel.org>
19729 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
19730 S:      Maintained
19731 F:      Documentation/devicetree/bindings/arm/keystone/ti,k3-sci-common.yaml
19732 F:      Documentation/devicetree/bindings/arm/keystone/ti,sci.yaml
19733 F:      Documentation/devicetree/bindings/clock/ti,sci-clk.yaml
19734 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-inta.yaml
19735 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-intr.yaml
19736 F:      Documentation/devicetree/bindings/reset/ti,sci-reset.yaml
19737 F:      Documentation/devicetree/bindings/soc/ti/sci-pm-domain.yaml
19738 F:      drivers/clk/keystone/sci-clk.c
19739 F:      drivers/firmware/ti_sci*
19740 F:      drivers/irqchip/irq-ti-sci-inta.c
19741 F:      drivers/irqchip/irq-ti-sci-intr.c
19742 F:      drivers/reset/reset-ti-sci.c
19743 F:      drivers/soc/ti/ti_sci_inta_msi.c
19744 F:      drivers/soc/ti/ti_sci_pm_domains.c
19745 F:      include/dt-bindings/soc/ti,sci_pm_domain.h
19746 F:      include/linux/soc/ti/ti_sci_inta_msi.h
19747 F:      include/linux/soc/ti/ti_sci_protocol.h
19748
19749 TEXAS INSTRUMENTS TPS23861 PoE PSE DRIVER
19750 M:      Robert Marko <robert.marko@sartura.hr>
19751 M:      Luka Perkov <luka.perkov@sartura.hr>
19752 L:      linux-hwmon@vger.kernel.org
19753 S:      Maintained
19754 F:      Documentation/devicetree/bindings/hwmon/ti,tps23861.yaml
19755 F:      Documentation/hwmon/tps23861.rst
19756 F:      drivers/hwmon/tps23861.c
19757
19758 TEXAS INSTRUMENTS' TMP117 TEMPERATURE SENSOR DRIVER
19759 M:      Puranjay Mohan <puranjay12@gmail.com>
19760 L:      linux-iio@vger.kernel.org
19761 S:      Supported
19762 F:      Documentation/devicetree/bindings/iio/temperature/ti,tmp117.yaml
19763 F:      drivers/iio/temperature/tmp117.c
19764
19765 THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER
19766 M:      Hans Verkuil <hverkuil@xs4all.nl>
19767 L:      linux-media@vger.kernel.org
19768 S:      Maintained
19769 W:      https://linuxtv.org
19770 T:      git git://linuxtv.org/media_tree.git
19771 F:      drivers/media/radio/radio-raremono.c
19772
19773 THERMAL
19774 M:      Rafael J. Wysocki <rafael@kernel.org>
19775 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
19776 R:      Amit Kucheria <amitk@kernel.org>
19777 R:      Zhang Rui <rui.zhang@intel.com>
19778 L:      linux-pm@vger.kernel.org
19779 S:      Supported
19780 Q:      https://patchwork.kernel.org/project/linux-pm/list/
19781 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git thermal
19782 F:      Documentation/ABI/testing/sysfs-class-thermal
19783 F:      Documentation/devicetree/bindings/thermal/
19784 F:      Documentation/driver-api/thermal/
19785 F:      drivers/thermal/
19786 F:      include/linux/cpu_cooling.h
19787 F:      include/linux/thermal.h
19788 F:      include/uapi/linux/thermal.h
19789 F:      tools/lib/thermal/
19790 F:      tools/thermal/
19791
19792 THERMAL DRIVER FOR AMLOGIC SOCS
19793 M:      Guillaume La Roque <glaroque@baylibre.com>
19794 L:      linux-pm@vger.kernel.org
19795 L:      linux-amlogic@lists.infradead.org
19796 S:      Supported
19797 W:      http://linux-meson.com/
19798 F:      Documentation/devicetree/bindings/thermal/amlogic,thermal.yaml
19799 F:      drivers/thermal/amlogic_thermal.c
19800
19801 THERMAL/CPU_COOLING
19802 M:      Amit Daniel Kachhap <amit.kachhap@gmail.com>
19803 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
19804 M:      Viresh Kumar <viresh.kumar@linaro.org>
19805 R:      Lukasz Luba <lukasz.luba@arm.com>
19806 L:      linux-pm@vger.kernel.org
19807 S:      Supported
19808 F:      Documentation/driver-api/thermal/cpu-cooling-api.rst
19809 F:      Documentation/driver-api/thermal/cpu-idle-cooling.rst
19810 F:      drivers/thermal/cpufreq_cooling.c
19811 F:      drivers/thermal/cpuidle_cooling.c
19812 F:      include/linux/cpu_cooling.h
19813
19814 THERMAL/POWER_ALLOCATOR
19815 M:      Lukasz Luba <lukasz.luba@arm.com>
19816 L:      linux-pm@vger.kernel.org
19817 S:      Maintained
19818 F:      Documentation/driver-api/thermal/power_allocator.rst
19819 F:      drivers/thermal/gov_power_allocator.c
19820 F:      include/trace/events/thermal_power_allocator.h
19821
19822 THINKPAD ACPI EXTRAS DRIVER
19823 M:      Henrique de Moraes Holschuh <hmh@hmh.eng.br>
19824 L:      ibm-acpi-devel@lists.sourceforge.net
19825 L:      platform-driver-x86@vger.kernel.org
19826 S:      Maintained
19827 W:      http://ibm-acpi.sourceforge.net
19828 W:      http://thinkwiki.org/wiki/Ibm-acpi
19829 T:      git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
19830 F:      drivers/platform/x86/thinkpad_acpi.c
19831
19832 THINKPAD LMI DRIVER
19833 M:      Mark Pearson <markpearson@lenovo.com>
19834 L:      platform-driver-x86@vger.kernel.org
19835 S:      Maintained
19836 F:      Documentation/ABI/testing/sysfs-class-firmware-attributes
19837 F:      drivers/platform/x86/think-lmi.?
19838
19839 THUNDERBOLT DMA TRAFFIC TEST DRIVER
19840 M:      Isaac Hazan <isaac.hazan@intel.com>
19841 L:      linux-usb@vger.kernel.org
19842 S:      Maintained
19843 F:      drivers/thunderbolt/dma_test.c
19844
19845 THUNDERBOLT DRIVER
19846 M:      Andreas Noever <andreas.noever@gmail.com>
19847 M:      Michael Jamet <michael.jamet@intel.com>
19848 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
19849 M:      Yehezkel Bernat <YehezkelShB@gmail.com>
19850 L:      linux-usb@vger.kernel.org
19851 S:      Maintained
19852 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/westeri/thunderbolt.git
19853 F:      Documentation/admin-guide/thunderbolt.rst
19854 F:      drivers/thunderbolt/
19855 F:      include/linux/thunderbolt.h
19856
19857 THUNDERBOLT NETWORK DRIVER
19858 M:      Michael Jamet <michael.jamet@intel.com>
19859 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
19860 M:      Yehezkel Bernat <YehezkelShB@gmail.com>
19861 L:      netdev@vger.kernel.org
19862 S:      Maintained
19863 F:      drivers/net/thunderbolt.c
19864
19865 THUNDERX GPIO DRIVER
19866 M:      Robert Richter <rric@kernel.org>
19867 S:      Odd Fixes
19868 F:      drivers/gpio/gpio-thunderx.c
19869
19870 TI ADS131E0X ADC SERIES DRIVER
19871 M:      Tomislav Denis <tomislav.denis@avl.com>
19872 L:      linux-iio@vger.kernel.org
19873 S:      Maintained
19874 F:      Documentation/devicetree/bindings/iio/adc/ti,ads131e08.yaml
19875 F:      drivers/iio/adc/ti-ads131e08.c
19876
19877 TI AM437X VPFE DRIVER
19878 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
19879 L:      linux-media@vger.kernel.org
19880 S:      Maintained
19881 W:      https://linuxtv.org
19882 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19883 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
19884 F:      drivers/media/platform/ti/am437x/
19885
19886 TI BANDGAP AND THERMAL DRIVER
19887 M:      Eduardo Valentin <edubezval@gmail.com>
19888 M:      Keerthy <j-keerthy@ti.com>
19889 L:      linux-pm@vger.kernel.org
19890 L:      linux-omap@vger.kernel.org
19891 S:      Maintained
19892 F:      drivers/thermal/ti-soc-thermal/
19893
19894 TI BQ27XXX POWER SUPPLY DRIVER
19895 F:      drivers/power/supply/bq27xxx_battery.c
19896 F:      drivers/power/supply/bq27xxx_battery_i2c.c
19897 F:      include/linux/power/bq27xxx_battery.h
19898
19899 TI CDCE706 CLOCK DRIVER
19900 M:      Max Filippov <jcmvbkbc@gmail.com>
19901 S:      Maintained
19902 F:      drivers/clk/clk-cdce706.c
19903
19904 TI CLOCK DRIVER
19905 M:      Tero Kristo <kristo@kernel.org>
19906 L:      linux-omap@vger.kernel.org
19907 S:      Odd Fixes
19908 F:      drivers/clk/ti/
19909 F:      include/linux/clk/ti.h
19910
19911 TI DAVINCI MACHINE SUPPORT
19912 M:      Sekhar Nori <nsekhar@ti.com>
19913 R:      Bartosz Golaszewski <brgl@bgdev.pl>
19914 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
19915 S:      Supported
19916 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nsekhar/linux-davinci.git
19917 F:      Documentation/devicetree/bindings/i2c/i2c-davinci.txt
19918 F:      arch/arm/boot/dts/da850*
19919 F:      arch/arm/mach-davinci/
19920 F:      drivers/i2c/busses/i2c-davinci.c
19921
19922 TI DAVINCI SERIES CLOCK DRIVER
19923 M:      David Lechner <david@lechnology.com>
19924 R:      Sekhar Nori <nsekhar@ti.com>
19925 S:      Maintained
19926 F:      Documentation/devicetree/bindings/clock/ti/davinci/
19927 F:      drivers/clk/davinci/
19928
19929 TI DAVINCI SERIES GPIO DRIVER
19930 M:      Keerthy <j-keerthy@ti.com>
19931 L:      linux-gpio@vger.kernel.org
19932 S:      Maintained
19933 F:      Documentation/devicetree/bindings/gpio/gpio-davinci.yaml
19934 F:      drivers/gpio/gpio-davinci.c
19935
19936 TI DAVINCI SERIES MEDIA DRIVER
19937 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
19938 L:      linux-media@vger.kernel.org
19939 S:      Maintained
19940 W:      https://linuxtv.org
19941 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19942 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
19943 F:      drivers/media/platform/ti/davinci/
19944 F:      include/media/davinci/
19945
19946 TI ENHANCED QUADRATURE ENCODER PULSE (eQEP) DRIVER
19947 R:      David Lechner <david@lechnology.com>
19948 L:      linux-iio@vger.kernel.org
19949 F:      Documentation/devicetree/bindings/counter/ti-eqep.yaml
19950 F:      drivers/counter/ti-eqep.c
19951
19952 TI ETHERNET SWITCH DRIVER (CPSW)
19953 R:      Grygorii Strashko <grygorii.strashko@ti.com>
19954 L:      linux-omap@vger.kernel.org
19955 L:      netdev@vger.kernel.org
19956 S:      Maintained
19957 F:      drivers/net/ethernet/ti/cpsw*
19958 F:      drivers/net/ethernet/ti/davinci*
19959
19960 TI FLASH MEDIA MEMORYSTICK/MMC DRIVERS
19961 M:      Alex Dubov <oakad@yahoo.com>
19962 S:      Maintained
19963 W:      http://tifmxx.berlios.de/
19964 F:      drivers/memstick/host/tifm_ms.c
19965 F:      drivers/misc/tifm*
19966 F:      drivers/mmc/host/tifm_sd.c
19967 F:      include/linux/tifm.h
19968
19969 TI KEYSTONE MULTICORE NAVIGATOR DRIVERS
19970 M:      Nishanth Menon <nm@ti.com>
19971 M:      Santosh Shilimkar <ssantosh@kernel.org>
19972 L:      linux-kernel@vger.kernel.org
19973 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
19974 S:      Maintained
19975 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ti/linux.git
19976 F:      drivers/soc/ti/*
19977
19978 TI LM49xxx FAMILY ASoC CODEC DRIVERS
19979 M:      M R Swami Reddy <mr.swami.reddy@ti.com>
19980 M:      Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
19981 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19982 S:      Maintained
19983 F:      sound/soc/codecs/isabelle*
19984 F:      sound/soc/codecs/lm49453*
19985
19986 TI PCM3060 ASoC CODEC DRIVER
19987 M:      Kirill Marinushkin <kmarinushkin@birdec.com>
19988 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19989 S:      Maintained
19990 F:      Documentation/devicetree/bindings/sound/pcm3060.txt
19991 F:      sound/soc/codecs/pcm3060*
19992
19993 TI TAS571X FAMILY ASoC CODEC DRIVER
19994 M:      Kevin Cernekee <cernekee@chromium.org>
19995 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19996 S:      Odd Fixes
19997 F:      sound/soc/codecs/tas571x*
19998
19999 TI TRF7970A NFC DRIVER
20000 M:      Mark Greer <mgreer@animalcreek.com>
20001 L:      linux-wireless@vger.kernel.org
20002 L:      linux-nfc@lists.01.org (subscribers-only)
20003 S:      Supported
20004 F:      Documentation/devicetree/bindings/net/nfc/ti,trf7970a.yaml
20005 F:      drivers/nfc/trf7970a.c
20006
20007 TI TSC2046 ADC DRIVER
20008 M:      Oleksij Rempel <o.rempel@pengutronix.de>
20009 R:      kernel@pengutronix.de
20010 L:      linux-iio@vger.kernel.org
20011 S:      Maintained
20012 F:      Documentation/devicetree/bindings/iio/adc/ti,tsc2046.yaml
20013 F:      drivers/iio/adc/ti-tsc2046.c
20014
20015 TI TWL4030 SERIES SOC CODEC DRIVER
20016 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
20017 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
20018 S:      Maintained
20019 F:      sound/soc/codecs/twl4030*
20020
20021 TI VPE/CAL DRIVERS
20022 M:      Benoit Parrot <bparrot@ti.com>
20023 L:      linux-media@vger.kernel.org
20024 S:      Maintained
20025 W:      http://linuxtv.org/
20026 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
20027 F:      Documentation/devicetree/bindings/media/ti,cal.yaml
20028 F:      Documentation/devicetree/bindings/media/ti,vpe.yaml
20029 F:      drivers/media/platform/ti/cal/
20030 F:      drivers/media/platform/ti/vpe/
20031
20032 TI WILINK WIRELESS DRIVERS
20033 L:      linux-wireless@vger.kernel.org
20034 S:      Orphan
20035 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wl12xx
20036 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wl1251
20037 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
20038 F:      drivers/net/wireless/ti/
20039 F:      include/linux/wl12xx.h
20040
20041 TIMEKEEPING, CLOCKSOURCE CORE, NTP, ALARMTIMER
20042 M:      John Stultz <jstultz@google.com>
20043 M:      Thomas Gleixner <tglx@linutronix.de>
20044 R:      Stephen Boyd <sboyd@kernel.org>
20045 L:      linux-kernel@vger.kernel.org
20046 S:      Supported
20047 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
20048 F:      include/linux/clocksource.h
20049 F:      include/linux/time.h
20050 F:      include/linux/timex.h
20051 F:      include/uapi/linux/time.h
20052 F:      include/uapi/linux/timex.h
20053 F:      kernel/time/alarmtimer.c
20054 F:      kernel/time/clocksource.c
20055 F:      kernel/time/ntp.c
20056 F:      kernel/time/time*.c
20057 F:      tools/testing/selftests/timers/
20058
20059 TIPC NETWORK LAYER
20060 M:      Jon Maloy <jmaloy@redhat.com>
20061 M:      Ying Xue <ying.xue@windriver.com>
20062 L:      netdev@vger.kernel.org (core kernel code)
20063 L:      tipc-discussion@lists.sourceforge.net (user apps, general discussion)
20064 S:      Maintained
20065 W:      http://tipc.sourceforge.net/
20066 F:      include/uapi/linux/tipc*.h
20067 F:      net/tipc/
20068
20069 TLAN NETWORK DRIVER
20070 M:      Samuel Chessman <chessman@tux.org>
20071 L:      tlan-devel@lists.sourceforge.net (subscribers-only)
20072 S:      Maintained
20073 W:      http://sourceforge.net/projects/tlan/
20074 F:      Documentation/networking/device_drivers/ethernet/ti/tlan.rst
20075 F:      drivers/net/ethernet/ti/tlan.*
20076
20077 TM6000 VIDEO4LINUX DRIVER
20078 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
20079 L:      linux-media@vger.kernel.org
20080 S:      Odd fixes
20081 W:      https://linuxtv.org
20082 T:      git git://linuxtv.org/media_tree.git
20083 F:      Documentation/admin-guide/media/tm6000*
20084 F:      drivers/media/usb/tm6000/
20085
20086 TMIO/SDHI MMC DRIVER
20087 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
20088 L:      linux-mmc@vger.kernel.org
20089 L:      linux-renesas-soc@vger.kernel.org
20090 S:      Supported
20091 F:      drivers/mmc/host/renesas_sdhi*
20092 F:      drivers/mmc/host/tmio_mmc*
20093 F:      include/linux/mfd/tmio.h
20094
20095 TMP401 HARDWARE MONITOR DRIVER
20096 M:      Guenter Roeck <linux@roeck-us.net>
20097 L:      linux-hwmon@vger.kernel.org
20098 S:      Maintained
20099 F:      Documentation/devicetree/bindings/hwmon/ti,tmp401.yaml
20100 F:      Documentation/hwmon/tmp401.rst
20101 F:      drivers/hwmon/tmp401.c
20102
20103 TMP464 HARDWARE MONITOR DRIVER
20104 M:      Agathe Porte <agathe.porte@nokia.com>
20105 M:      Guenter Roeck <linux@roeck-us.net>
20106 L:      linux-hwmon@vger.kernel.org
20107 S:      Maintained
20108 F:      Documentation/devicetree/bindings/hwmon/ti,tmp464.yaml
20109 F:      Documentation/hwmon/tmp464.rst
20110 F:      drivers/hwmon/tmp464.c
20111
20112 TMP513 HARDWARE MONITOR DRIVER
20113 M:      Eric Tremblay <etremblay@distech-controls.com>
20114 L:      linux-hwmon@vger.kernel.org
20115 S:      Maintained
20116 F:      Documentation/hwmon/tmp513.rst
20117 F:      drivers/hwmon/tmp513.c
20118
20119 TMPFS (SHMEM FILESYSTEM)
20120 M:      Hugh Dickins <hughd@google.com>
20121 L:      linux-mm@kvack.org
20122 S:      Maintained
20123 F:      include/linux/shmem_fs.h
20124 F:      mm/shmem.c
20125
20126 TOMOYO SECURITY MODULE
20127 M:      Kentaro Takeda <takedakn@nttdata.co.jp>
20128 M:      Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
20129 L:      tomoyo-dev-en@lists.osdn.me (subscribers-only, for developers in English)
20130 L:      tomoyo-users-en@lists.osdn.me (subscribers-only, for users in English)
20131 L:      tomoyo-dev@lists.osdn.me (subscribers-only, for developers in Japanese)
20132 L:      tomoyo-users@lists.osdn.me (subscribers-only, for users in Japanese)
20133 S:      Maintained
20134 W:      https://tomoyo.osdn.jp/
20135 F:      security/tomoyo/
20136
20137 TOPSTAR LAPTOP EXTRAS DRIVER
20138 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
20139 L:      platform-driver-x86@vger.kernel.org
20140 S:      Maintained
20141 F:      drivers/platform/x86/topstar-laptop.c
20142
20143 TORTURE-TEST MODULES
20144 M:      Davidlohr Bueso <dave@stgolabs.net>
20145 M:      "Paul E. McKenney" <paulmck@kernel.org>
20146 M:      Josh Triplett <josh@joshtriplett.org>
20147 L:      linux-kernel@vger.kernel.org
20148 S:      Supported
20149 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
20150 F:      Documentation/RCU/torture.rst
20151 F:      kernel/locking/locktorture.c
20152 F:      kernel/rcu/rcuscale.c
20153 F:      kernel/rcu/rcutorture.c
20154 F:      kernel/rcu/refscale.c
20155 F:      kernel/torture.c
20156
20157 TOSHIBA ACPI EXTRAS DRIVER
20158 M:      Azael Avalos <coproscefalo@gmail.com>
20159 L:      platform-driver-x86@vger.kernel.org
20160 S:      Maintained
20161 F:      drivers/platform/x86/toshiba_acpi.c
20162
20163 TOSHIBA BLUETOOTH DRIVER
20164 M:      Azael Avalos <coproscefalo@gmail.com>
20165 L:      platform-driver-x86@vger.kernel.org
20166 S:      Maintained
20167 F:      drivers/platform/x86/toshiba_bluetooth.c
20168
20169 TOSHIBA HDD ACTIVE PROTECTION SENSOR DRIVER
20170 M:      Azael Avalos <coproscefalo@gmail.com>
20171 L:      platform-driver-x86@vger.kernel.org
20172 S:      Maintained
20173 F:      drivers/platform/x86/toshiba_haps.c
20174
20175 TOSHIBA SMM DRIVER
20176 M:      Jonathan Buzzard <jonathan@buzzard.org.uk>
20177 S:      Maintained
20178 W:      http://www.buzzard.org.uk/toshiba/
20179 F:      drivers/char/toshiba.c
20180 F:      include/linux/toshiba.h
20181 F:      include/uapi/linux/toshiba.h
20182
20183 TOSHIBA TC358743 DRIVER
20184 M:      Mats Randgaard <matrandg@cisco.com>
20185 L:      linux-media@vger.kernel.org
20186 S:      Maintained
20187 F:      drivers/media/i2c/tc358743*
20188 F:      include/media/i2c/tc358743.h
20189
20190 TOSHIBA WMI HOTKEYS DRIVER
20191 M:      Azael Avalos <coproscefalo@gmail.com>
20192 L:      platform-driver-x86@vger.kernel.org
20193 S:      Maintained
20194 F:      drivers/platform/x86/toshiba-wmi.c
20195
20196 TPM DEVICE DRIVER
20197 M:      Peter Huewe <peterhuewe@gmx.de>
20198 M:      Jarkko Sakkinen <jarkko@kernel.org>
20199 R:      Jason Gunthorpe <jgg@ziepe.ca>
20200 L:      linux-integrity@vger.kernel.org
20201 S:      Maintained
20202 W:      https://kernsec.org/wiki/index.php/Linux_Kernel_Integrity
20203 Q:      https://patchwork.kernel.org/project/linux-integrity/list/
20204 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jarkko/linux-tpmdd.git
20205 F:      drivers/char/tpm/
20206
20207 TRACING
20208 M:      Steven Rostedt <rostedt@goodmis.org>
20209 M:      Ingo Molnar <mingo@redhat.com>
20210 S:      Maintained
20211 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rostedt/linux-trace.git
20212 F:      Documentation/trace/ftrace.rst
20213 F:      arch/*/*/*/*ftrace*
20214 F:      arch/*/*/*ftrace*
20215 F:      fs/tracefs/
20216 F:      include/*/ftrace.h
20217 F:      include/linux/trace*.h
20218 F:      include/trace/
20219 F:      kernel/trace/
20220 F:      tools/testing/selftests/ftrace/
20221
20222 TRACING MMIO ACCESSES (MMIOTRACE)
20223 M:      Steven Rostedt <rostedt@goodmis.org>
20224 M:      Ingo Molnar <mingo@kernel.org>
20225 R:      Karol Herbst <karolherbst@gmail.com>
20226 R:      Pekka Paalanen <ppaalanen@gmail.com>
20227 L:      linux-kernel@vger.kernel.org
20228 L:      nouveau@lists.freedesktop.org
20229 S:      Maintained
20230 F:      arch/x86/mm/kmmio.c
20231 F:      arch/x86/mm/mmio-mod.c
20232 F:      arch/x86/mm/testmmiotrace.c
20233 F:      include/linux/mmiotrace.h
20234 F:      kernel/trace/trace_mmiotrace.c
20235
20236 TRACING OS NOISE / LATENCY TRACERS
20237 M:      Steven Rostedt <rostedt@goodmis.org>
20238 M:      Daniel Bristot de Oliveira <bristot@kernel.org>
20239 S:      Maintained
20240 F:      kernel/trace/trace_osnoise.c
20241 F:      include/trace/events/osnoise.h
20242 F:      kernel/trace/trace_hwlat.c
20243 F:      kernel/trace/trace_irqsoff.c
20244 F:      kernel/trace/trace_sched_wakeup.c
20245 F:      Documentation/trace/osnoise-tracer.rst
20246 F:      Documentation/trace/timerlat-tracer.rst
20247 F:      Documentation/trace/hwlat_detector.rst
20248 F:      arch/*/kernel/trace.c
20249
20250 Real-time Linux Analysis (RTLA) tools
20251 M:      Daniel Bristot de Oliveira <bristot@kernel.org>
20252 M:      Steven Rostedt <rostedt@goodmis.org>
20253 L:      linux-trace-devel@vger.kernel.org
20254 S:      Maintained
20255 F:      Documentation/tools/rtla/
20256 F:      tools/tracing/rtla/
20257
20258 TRADITIONAL CHINESE DOCUMENTATION
20259 M:      Hu Haowen <src.res@email.cn>
20260 L:      linux-doc-tw-discuss@lists.sourceforge.net
20261 S:      Maintained
20262 W:      https://github.com/srcres258/linux-doc
20263 T:      git git://github.com/srcres258/linux-doc.git doc-zh-tw
20264 F:      Documentation/translations/zh_TW/
20265
20266 TTY LAYER
20267 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
20268 M:      Jiri Slaby <jirislaby@kernel.org>
20269 S:      Supported
20270 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
20271 F:      Documentation/driver-api/serial/
20272 F:      drivers/tty/
20273 F:      drivers/tty/serial/serial_core.c
20274 F:      include/linux/selection.h
20275 F:      include/linux/serial.h
20276 F:      include/linux/serial_core.h
20277 F:      include/linux/sysrq.h
20278 F:      include/linux/tty*.h
20279 F:      include/linux/vt.h
20280 F:      include/linux/vt_*.h
20281 F:      include/uapi/linux/serial.h
20282 F:      include/uapi/linux/serial_core.h
20283 F:      include/uapi/linux/tty.h
20284
20285 TUA9001 MEDIA DRIVER
20286 M:      Antti Palosaari <crope@iki.fi>
20287 L:      linux-media@vger.kernel.org
20288 S:      Maintained
20289 W:      https://linuxtv.org
20290 W:      http://palosaari.fi/linux/
20291 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
20292 T:      git git://linuxtv.org/anttip/media_tree.git
20293 F:      drivers/media/tuners/tua9001*
20294
20295 TULIP NETWORK DRIVERS
20296 L:      netdev@vger.kernel.org
20297 L:      linux-parisc@vger.kernel.org
20298 S:      Orphan
20299 F:      drivers/net/ethernet/dec/tulip/
20300
20301 TUN/TAP driver
20302 M:      Maxim Krasnyansky <maxk@qti.qualcomm.com>
20303 S:      Maintained
20304 W:      http://vtun.sourceforge.net/tun
20305 F:      Documentation/networking/tuntap.rst
20306 F:      arch/um/os-Linux/drivers/
20307
20308 TURBOCHANNEL SUBSYSTEM
20309 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
20310 M:      Ralf Baechle <ralf@linux-mips.org>
20311 L:      linux-mips@vger.kernel.org
20312 S:      Maintained
20313 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
20314 F:      drivers/tc/
20315 F:      include/linux/tc.h
20316
20317 TURBOSTAT UTILITY
20318 M:      "Len Brown" <lenb@kernel.org>
20319 L:      linux-pm@vger.kernel.org
20320 S:      Supported
20321 Q:      https://patchwork.kernel.org/project/linux-pm/list/
20322 B:      https://bugzilla.kernel.org
20323 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git turbostat
20324 F:      tools/power/x86/turbostat/
20325
20326 TW5864 VIDEO4LINUX DRIVER
20327 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
20328 M:      Anton Sviridenko <anton@corp.bluecherry.net>
20329 M:      Andrey Utkin <andrey.utkin@corp.bluecherry.net>
20330 M:      Andrey Utkin <andrey_utkin@fastmail.com>
20331 L:      linux-media@vger.kernel.org
20332 S:      Supported
20333 F:      drivers/media/pci/tw5864/
20334
20335 TW68 VIDEO4LINUX DRIVER
20336 M:      Hans Verkuil <hverkuil@xs4all.nl>
20337 L:      linux-media@vger.kernel.org
20338 S:      Odd Fixes
20339 W:      https://linuxtv.org
20340 T:      git git://linuxtv.org/media_tree.git
20341 F:      drivers/media/pci/tw68/
20342
20343 TW686X VIDEO4LINUX DRIVER
20344 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
20345 L:      linux-media@vger.kernel.org
20346 S:      Maintained
20347 W:      http://linuxtv.org
20348 T:      git git://linuxtv.org/media_tree.git
20349 F:      drivers/media/pci/tw686x/
20350
20351 U-BOOT ENVIRONMENT VARIABLES
20352 M:      Rafał Miłecki <rafal@milecki.pl>
20353 S:      Maintained
20354 F:      Documentation/devicetree/bindings/nvmem/u-boot,env.yaml
20355
20356 UACCE ACCELERATOR FRAMEWORK
20357 M:      Zhangfei Gao <zhangfei.gao@linaro.org>
20358 M:      Zhou Wang <wangzhou1@hisilicon.com>
20359 L:      linux-accelerators@lists.ozlabs.org
20360 L:      linux-kernel@vger.kernel.org
20361 S:      Maintained
20362 F:      Documentation/ABI/testing/sysfs-driver-uacce
20363 F:      Documentation/misc-devices/uacce.rst
20364 F:      drivers/misc/uacce/
20365 F:      include/linux/uacce.h
20366 F:      include/uapi/misc/uacce/
20367
20368 UBI FILE SYSTEM (UBIFS)
20369 M:      Richard Weinberger <richard@nod.at>
20370 L:      linux-mtd@lists.infradead.org
20371 S:      Supported
20372 W:      http://www.linux-mtd.infradead.org/doc/ubifs.html
20373 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
20374 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
20375 F:      Documentation/ABI/testing/sysfs-fs-ubifs
20376 F:      Documentation/filesystems/ubifs-authentication.rst
20377 F:      Documentation/filesystems/ubifs.rst
20378 F:      fs/ubifs/
20379
20380 UCLINUX (M68KNOMMU AND COLDFIRE)
20381 M:      Greg Ungerer <gerg@linux-m68k.org>
20382 L:      linux-m68k@lists.linux-m68k.org
20383 L:      uclinux-dev@uclinux.org  (subscribers-only)
20384 S:      Maintained
20385 W:      http://www.linux-m68k.org/
20386 W:      http://www.uclinux.org/
20387 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git
20388 F:      arch/m68k/*/*_no.*
20389 F:      arch/m68k/68*/
20390 F:      arch/m68k/coldfire/
20391 F:      arch/m68k/include/asm/*_no.*
20392
20393 UDF FILESYSTEM
20394 M:      Jan Kara <jack@suse.com>
20395 S:      Maintained
20396 F:      Documentation/filesystems/udf.rst
20397 F:      fs/udf/
20398
20399 UDRAW TABLET
20400 M:      Bastien Nocera <hadess@hadess.net>
20401 L:      linux-input@vger.kernel.org
20402 S:      Maintained
20403 F:      drivers/hid/hid-udraw-ps3.c
20404
20405 UFS FILESYSTEM
20406 M:      Evgeniy Dushistov <dushistov@mail.ru>
20407 S:      Maintained
20408 F:      Documentation/admin-guide/ufs.rst
20409 F:      fs/ufs/
20410
20411 UHID USERSPACE HID IO DRIVER
20412 M:      David Rheinsberg <david.rheinsberg@gmail.com>
20413 L:      linux-input@vger.kernel.org
20414 S:      Maintained
20415 F:      drivers/hid/uhid.c
20416 F:      include/uapi/linux/uhid.h
20417
20418 ULPI BUS
20419 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
20420 L:      linux-usb@vger.kernel.org
20421 S:      Maintained
20422 F:      drivers/usb/common/ulpi.c
20423 F:      include/linux/ulpi/
20424
20425 UNICODE SUBSYSTEM
20426 M:      Gabriel Krisman Bertazi <krisman@collabora.com>
20427 L:      linux-fsdevel@vger.kernel.org
20428 S:      Supported
20429 F:      fs/unicode/
20430
20431 UNIFDEF
20432 M:      Tony Finch <dot@dotat.at>
20433 S:      Maintained
20434 W:      http://dotat.at/prog/unifdef
20435 F:      scripts/unifdef.c
20436
20437 UNIFORM CDROM DRIVER
20438 M:      Phillip Potter <phil@philpotter.co.uk>
20439 S:      Maintained
20440 F:      Documentation/cdrom/
20441 F:      drivers/cdrom/cdrom.c
20442 F:      include/linux/cdrom.h
20443 F:      include/uapi/linux/cdrom.h
20444
20445 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
20446 R:      Alim Akhtar <alim.akhtar@samsung.com>
20447 R:      Avri Altman <avri.altman@wdc.com>
20448 R:      Bart Van Assche <bvanassche@acm.org>
20449 L:      linux-scsi@vger.kernel.org
20450 S:      Supported
20451 F:      Documentation/devicetree/bindings/ufs/
20452 F:      Documentation/scsi/ufs.rst
20453 F:      drivers/ufs/core/
20454
20455 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER DWC HOOKS
20456 M:      Pedro Sousa <pedrom.sousa@synopsys.com>
20457 L:      linux-scsi@vger.kernel.org
20458 S:      Supported
20459 F:      drivers/ufs/host/*dwc*
20460
20461 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER MEDIATEK HOOKS
20462 M:      Stanley Chu <stanley.chu@mediatek.com>
20463 L:      linux-scsi@vger.kernel.org
20464 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
20465 S:      Maintained
20466 F:      drivers/ufs/host/ufs-mediatek*
20467
20468 UNSORTED BLOCK IMAGES (UBI)
20469 M:      Richard Weinberger <richard@nod.at>
20470 L:      linux-mtd@lists.infradead.org
20471 S:      Supported
20472 W:      http://www.linux-mtd.infradead.org/
20473 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
20474 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
20475 F:      drivers/mtd/ubi/
20476 F:      include/linux/mtd/ubi.h
20477 F:      include/uapi/mtd/ubi-user.h
20478
20479 USB "USBNET" DRIVER FRAMEWORK
20480 M:      Oliver Neukum <oneukum@suse.com>
20481 L:      netdev@vger.kernel.org
20482 S:      Maintained
20483 W:      http://www.linux-usb.org/usbnet
20484 F:      drivers/net/usb/usbnet.c
20485 F:      include/linux/usb/usbnet.h
20486
20487 USB ACM DRIVER
20488 M:      Oliver Neukum <oneukum@suse.com>
20489 L:      linux-usb@vger.kernel.org
20490 S:      Maintained
20491 F:      Documentation/usb/acm.rst
20492 F:      drivers/usb/class/cdc-acm.*
20493
20494 USB APPLE MFI FASTCHARGE DRIVER
20495 M:      Bastien Nocera <hadess@hadess.net>
20496 L:      linux-usb@vger.kernel.org
20497 S:      Maintained
20498 F:      drivers/usb/misc/apple-mfi-fastcharge.c
20499
20500 USB AR5523 WIRELESS DRIVER
20501 M:      Pontus Fuchs <pontus.fuchs@gmail.com>
20502 L:      linux-wireless@vger.kernel.org
20503 S:      Maintained
20504 F:      drivers/net/wireless/ath/ar5523/
20505
20506 USB ATTACHED SCSI
20507 M:      Oliver Neukum <oneukum@suse.com>
20508 L:      linux-usb@vger.kernel.org
20509 L:      linux-scsi@vger.kernel.org
20510 S:      Maintained
20511 F:      drivers/usb/storage/uas.c
20512
20513 USB CDC ETHERNET DRIVER
20514 M:      Oliver Neukum <oliver@neukum.org>
20515 L:      linux-usb@vger.kernel.org
20516 S:      Maintained
20517 F:      drivers/net/usb/cdc_*.c
20518 F:      include/uapi/linux/usb/cdc.h
20519
20520 USB CHAOSKEY DRIVER
20521 M:      Keith Packard <keithp@keithp.com>
20522 L:      linux-usb@vger.kernel.org
20523 S:      Maintained
20524 F:      drivers/usb/misc/chaoskey.c
20525
20526 USB CYPRESS C67X00 DRIVER
20527 L:      linux-usb@vger.kernel.org
20528 S:      Orphan
20529 F:      drivers/usb/c67x00/
20530
20531 USB DAVICOM DM9601 DRIVER
20532 M:      Peter Korsgaard <peter@korsgaard.com>
20533 L:      netdev@vger.kernel.org
20534 S:      Maintained
20535 W:      http://www.linux-usb.org/usbnet
20536 F:      drivers/net/usb/dm9601.c
20537
20538 USB EHCI DRIVER
20539 M:      Alan Stern <stern@rowland.harvard.edu>
20540 L:      linux-usb@vger.kernel.org
20541 S:      Maintained
20542 F:      Documentation/usb/ehci.rst
20543 F:      drivers/usb/host/ehci*
20544
20545 USB GADGET/PERIPHERAL SUBSYSTEM
20546 M:      Felipe Balbi <balbi@kernel.org>
20547 L:      linux-usb@vger.kernel.org
20548 S:      Maintained
20549 W:      http://www.linux-usb.org/gadget
20550 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
20551 F:      drivers/usb/gadget/
20552 F:      include/linux/usb/gadget*
20553
20554 USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
20555 M:      Jiri Kosina <jikos@kernel.org>
20556 M:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
20557 L:      linux-usb@vger.kernel.org
20558 S:      Maintained
20559 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
20560 F:      Documentation/hid/hiddev.rst
20561 F:      drivers/hid/usbhid/
20562
20563 USB INTEL XHCI ROLE MUX DRIVER
20564 M:      Hans de Goede <hdegoede@redhat.com>
20565 L:      linux-usb@vger.kernel.org
20566 S:      Maintained
20567 F:      drivers/usb/roles/intel-xhci-usb-role-switch.c
20568
20569 USB IP DRIVER FOR HISILICON KIRIN 960
20570 M:      Yu Chen <chenyu56@huawei.com>
20571 M:      Binghui Wang <wangbinghui@hisilicon.com>
20572 L:      linux-usb@vger.kernel.org
20573 S:      Maintained
20574 F:      Documentation/devicetree/bindings/phy/hisilicon,hi3660-usb3.yaml
20575 F:      drivers/phy/hisilicon/phy-hi3660-usb3.c
20576
20577 USB IP DRIVER FOR HISILICON KIRIN 970
20578 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
20579 L:      linux-usb@vger.kernel.org
20580 S:      Maintained
20581 F:      Documentation/devicetree/bindings/phy/hisilicon,hi3670-usb3.yaml
20582 F:      drivers/phy/hisilicon/phy-hi3670-usb3.c
20583
20584 USB ISP116X DRIVER
20585 M:      Olav Kongas <ok@artecdesign.ee>
20586 L:      linux-usb@vger.kernel.org
20587 S:      Maintained
20588 F:      drivers/usb/host/isp116x*
20589 F:      include/linux/usb/isp116x.h
20590
20591 USB ISP1760 DRIVER
20592 M:      Rui Miguel Silva <rui.silva@linaro.org>
20593 L:      linux-usb@vger.kernel.org
20594 S:      Maintained
20595 F:      drivers/usb/isp1760/*
20596 F:      Documentation/devicetree/bindings/usb/nxp,isp1760.yaml
20597
20598 USB LAN78XX ETHERNET DRIVER
20599 M:      Woojung Huh <woojung.huh@microchip.com>
20600 M:      UNGLinuxDriver@microchip.com
20601 L:      netdev@vger.kernel.org
20602 S:      Maintained
20603 F:      Documentation/devicetree/bindings/net/microchip,lan78xx.txt
20604 F:      drivers/net/usb/lan78xx.*
20605 F:      include/dt-bindings/net/microchip-lan78xx.h
20606
20607 USB MASS STORAGE DRIVER
20608 M:      Alan Stern <stern@rowland.harvard.edu>
20609 L:      linux-usb@vger.kernel.org
20610 L:      usb-storage@lists.one-eyed-alien.net
20611 S:      Maintained
20612 F:      drivers/usb/storage/
20613
20614 USB MIDI DRIVER
20615 M:      Clemens Ladisch <clemens@ladisch.de>
20616 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
20617 S:      Maintained
20618 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
20619 F:      sound/usb/midi.*
20620
20621 USB NETWORKING DRIVERS
20622 L:      linux-usb@vger.kernel.org
20623 S:      Odd Fixes
20624 F:      drivers/net/usb/
20625
20626 USB OHCI DRIVER
20627 M:      Alan Stern <stern@rowland.harvard.edu>
20628 L:      linux-usb@vger.kernel.org
20629 S:      Maintained
20630 F:      Documentation/usb/ohci.rst
20631 F:      drivers/usb/host/ohci*
20632
20633 USB OTG FSM (Finite State Machine)
20634 M:      Peter Chen <peter.chen@kernel.org>
20635 L:      linux-usb@vger.kernel.org
20636 S:      Maintained
20637 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
20638 F:      drivers/usb/common/usb-otg-fsm.c
20639
20640 USB OVER IP DRIVER
20641 M:      Valentina Manea <valentina.manea.m@gmail.com>
20642 M:      Shuah Khan <shuah@kernel.org>
20643 M:      Shuah Khan <skhan@linuxfoundation.org>
20644 L:      linux-usb@vger.kernel.org
20645 S:      Maintained
20646 F:      Documentation/usb/usbip_protocol.rst
20647 F:      drivers/usb/usbip/
20648 F:      tools/testing/selftests/drivers/usb/usbip/
20649 F:      tools/usb/usbip/
20650
20651 USB PEGASUS DRIVER
20652 M:      Petko Manolov <petkan@nucleusys.com>
20653 L:      linux-usb@vger.kernel.org
20654 L:      netdev@vger.kernel.org
20655 S:      Maintained
20656 W:      https://github.com/petkan/pegasus
20657 T:      git git://github.com/petkan/pegasus.git
20658 F:      drivers/net/usb/pegasus.*
20659
20660 USB PHY LAYER
20661 M:      Felipe Balbi <balbi@kernel.org>
20662 L:      linux-usb@vger.kernel.org
20663 S:      Maintained
20664 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
20665 F:      drivers/usb/phy/
20666
20667 USB PRINTER DRIVER (usblp)
20668 M:      Pete Zaitcev <zaitcev@redhat.com>
20669 L:      linux-usb@vger.kernel.org
20670 S:      Supported
20671 F:      drivers/usb/class/usblp.c
20672
20673 USB RAW GADGET DRIVER
20674 R:      Andrey Konovalov <andreyknvl@gmail.com>
20675 L:      linux-usb@vger.kernel.org
20676 S:      Maintained
20677 F:      Documentation/usb/raw-gadget.rst
20678 F:      drivers/usb/gadget/legacy/raw_gadget.c
20679 F:      include/uapi/linux/usb/raw_gadget.h
20680
20681 USB QMI WWAN NETWORK DRIVER
20682 M:      Bjørn Mork <bjorn@mork.no>
20683 L:      netdev@vger.kernel.org
20684 S:      Maintained
20685 F:      Documentation/ABI/testing/sysfs-class-net-qmi
20686 F:      drivers/net/usb/qmi_wwan.c
20687
20688 USB RTL8150 DRIVER
20689 M:      Petko Manolov <petkan@nucleusys.com>
20690 L:      linux-usb@vger.kernel.org
20691 L:      netdev@vger.kernel.org
20692 S:      Maintained
20693 W:      https://github.com/petkan/rtl8150
20694 T:      git git://github.com/petkan/rtl8150.git
20695 F:      drivers/net/usb/rtl8150.c
20696
20697 USB SERIAL SUBSYSTEM
20698 M:      Johan Hovold <johan@kernel.org>
20699 L:      linux-usb@vger.kernel.org
20700 S:      Maintained
20701 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/usb-serial.git
20702 F:      Documentation/usb/usb-serial.rst
20703 F:      drivers/usb/serial/
20704 F:      include/linux/usb/serial.h
20705
20706 USB SMSC75XX ETHERNET DRIVER
20707 M:      Steve Glendinning <steve.glendinning@shawell.net>
20708 L:      netdev@vger.kernel.org
20709 S:      Maintained
20710 F:      drivers/net/usb/smsc75xx.*
20711
20712 USB SMSC95XX ETHERNET DRIVER
20713 M:      Steve Glendinning <steve.glendinning@shawell.net>
20714 M:      UNGLinuxDriver@microchip.com
20715 L:      netdev@vger.kernel.org
20716 S:      Maintained
20717 F:      drivers/net/usb/smsc95xx.*
20718
20719 USB SUBSYSTEM
20720 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
20721 L:      linux-usb@vger.kernel.org
20722 S:      Supported
20723 W:      http://www.linux-usb.org
20724 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
20725 F:      Documentation/devicetree/bindings/usb/
20726 F:      Documentation/usb/
20727 F:      drivers/usb/
20728 F:      include/linux/usb.h
20729 F:      include/linux/usb/
20730
20731 USB TYPEC BUS FOR ALTERNATE MODES
20732 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
20733 L:      linux-usb@vger.kernel.org
20734 S:      Maintained
20735 F:      Documentation/ABI/testing/sysfs-bus-typec
20736 F:      Documentation/driver-api/usb/typec_bus.rst
20737 F:      drivers/usb/typec/altmodes/
20738 F:      include/linux/usb/typec_altmode.h
20739
20740 USB TYPEC CLASS
20741 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
20742 L:      linux-usb@vger.kernel.org
20743 S:      Maintained
20744 F:      Documentation/ABI/testing/sysfs-class-typec
20745 F:      Documentation/driver-api/usb/typec.rst
20746 F:      drivers/usb/typec/
20747 F:      include/linux/usb/typec.h
20748
20749 USB TYPEC INTEL PMC MUX DRIVER
20750 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
20751 L:      linux-usb@vger.kernel.org
20752 S:      Maintained
20753 F:      Documentation/firmware-guide/acpi/intel-pmc-mux.rst
20754 F:      drivers/usb/typec/mux/intel_pmc_mux.c
20755
20756 USB TYPEC PI3USB30532 MUX DRIVER
20757 M:      Hans de Goede <hdegoede@redhat.com>
20758 L:      linux-usb@vger.kernel.org
20759 S:      Maintained
20760 F:      drivers/usb/typec/mux/pi3usb30532.c
20761
20762 USB TYPEC PORT CONTROLLER DRIVERS
20763 M:      Guenter Roeck <linux@roeck-us.net>
20764 L:      linux-usb@vger.kernel.org
20765 S:      Maintained
20766 F:      drivers/usb/typec/tcpm/
20767
20768 USB UHCI DRIVER
20769 M:      Alan Stern <stern@rowland.harvard.edu>
20770 L:      linux-usb@vger.kernel.org
20771 S:      Maintained
20772 F:      drivers/usb/host/uhci*
20773
20774 USB VIDEO CLASS
20775 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
20776 L:      linux-media@vger.kernel.org
20777 S:      Maintained
20778 W:      http://www.ideasonboard.org/uvc/
20779 T:      git git://linuxtv.org/media_tree.git
20780 F:      drivers/media/usb/uvc/
20781 F:      include/uapi/linux/uvcvideo.h
20782
20783 USB WEBCAM GADGET
20784 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
20785 L:      linux-usb@vger.kernel.org
20786 S:      Maintained
20787 F:      drivers/usb/gadget/function/*uvc*
20788 F:      drivers/usb/gadget/legacy/webcam.c
20789 F:      include/uapi/linux/usb/g_uvc.h
20790
20791 USB WIRELESS RNDIS DRIVER (rndis_wlan)
20792 M:      Jussi Kivilinna <jussi.kivilinna@iki.fi>
20793 L:      linux-wireless@vger.kernel.org
20794 S:      Maintained
20795 F:      drivers/net/wireless/rndis_wlan.c
20796
20797 USB XHCI DRIVER
20798 M:      Mathias Nyman <mathias.nyman@intel.com>
20799 L:      linux-usb@vger.kernel.org
20800 S:      Supported
20801 F:      drivers/usb/host/pci-quirks*
20802 F:      drivers/usb/host/xhci*
20803
20804 USB ZD1201 DRIVER
20805 L:      linux-wireless@vger.kernel.org
20806 S:      Orphan
20807 W:      http://linux-lc100020.sourceforge.net
20808 F:      drivers/net/wireless/zydas/zd1201.*
20809
20810 USB ZR364XX DRIVER
20811 M:      Antoine Jacquet <royale@zerezo.com>
20812 L:      linux-usb@vger.kernel.org
20813 L:      linux-media@vger.kernel.org
20814 S:      Maintained
20815 W:      http://royale.zerezo.com/zr364xx/
20816 T:      git git://linuxtv.org/media_tree.git
20817 F:      Documentation/admin-guide/media/zr364xx*
20818 F:      drivers/media/usb/zr364xx/
20819
20820 USER-MODE LINUX (UML)
20821 M:      Richard Weinberger <richard@nod.at>
20822 M:      Anton Ivanov <anton.ivanov@cambridgegreys.com>
20823 M:      Johannes Berg <johannes@sipsolutions.net>
20824 L:      linux-um@lists.infradead.org
20825 S:      Maintained
20826 W:      http://user-mode-linux.sourceforge.net
20827 Q:      https://patchwork.ozlabs.org/project/linux-um/list/
20828 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/uml/linux.git next
20829 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/uml/linux.git fixes
20830 F:      Documentation/virt/uml/
20831 F:      arch/um/
20832 F:      arch/x86/um/
20833 F:      fs/hostfs/
20834
20835 USERSPACE COPYIN/COPYOUT (UIOVEC)
20836 M:      Alexander Viro <viro@zeniv.linux.org.uk>
20837 S:      Maintained
20838 F:      include/linux/uio.h
20839 F:      lib/iov_iter.c
20840
20841 USERSPACE DMA BUFFER DRIVER
20842 M:      Gerd Hoffmann <kraxel@redhat.com>
20843 L:      dri-devel@lists.freedesktop.org
20844 S:      Maintained
20845 T:      git git://anongit.freedesktop.org/drm/drm-misc
20846 F:      drivers/dma-buf/udmabuf.c
20847 F:      include/uapi/linux/udmabuf.h
20848
20849 USERSPACE I/O (UIO)
20850 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
20851 S:      Maintained
20852 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
20853 F:      Documentation/driver-api/uio-howto.rst
20854 F:      drivers/uio/
20855 F:      include/linux/uio_driver.h
20856
20857 UTIL-LINUX PACKAGE
20858 M:      Karel Zak <kzak@redhat.com>
20859 L:      util-linux@vger.kernel.org
20860 S:      Maintained
20861 W:      http://en.wikipedia.org/wiki/Util-linux
20862 T:      git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
20863
20864 UUID HELPERS
20865 M:      Christoph Hellwig <hch@lst.de>
20866 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
20867 L:      linux-kernel@vger.kernel.org
20868 S:      Maintained
20869 T:      git git://git.infradead.org/users/hch/uuid.git
20870 F:      include/linux/uuid.h
20871 F:      include/uapi/linux/uuid.h
20872 F:      lib/test_uuid.c
20873 F:      lib/uuid.c
20874
20875 UV SYSFS DRIVER
20876 M:      Justin Ernst <justin.ernst@hpe.com>
20877 L:      platform-driver-x86@vger.kernel.org
20878 S:      Maintained
20879 F:      drivers/platform/x86/uv_sysfs.c
20880
20881 UVESAFB DRIVER
20882 M:      Michal Januszewski <spock@gentoo.org>
20883 L:      linux-fbdev@vger.kernel.org
20884 S:      Maintained
20885 W:      https://github.com/mjanusz/v86d
20886 F:      Documentation/fb/uvesafb.rst
20887 F:      drivers/video/fbdev/uvesafb.*
20888
20889 Ux500 CLOCK DRIVERS
20890 M:      Ulf Hansson <ulf.hansson@linaro.org>
20891 L:      linux-clk@vger.kernel.org
20892 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
20893 S:      Maintained
20894 F:      drivers/clk/ux500/
20895
20896 VF610 NAND DRIVER
20897 M:      Stefan Agner <stefan@agner.ch>
20898 L:      linux-mtd@lists.infradead.org
20899 S:      Supported
20900 F:      drivers/mtd/nand/raw/vf610_nfc.c
20901
20902 VFAT/FAT/MSDOS FILESYSTEM
20903 M:      OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
20904 S:      Maintained
20905 F:      Documentation/filesystems/vfat.rst
20906 F:      fs/fat/
20907
20908 VFIO DRIVER
20909 M:      Alex Williamson <alex.williamson@redhat.com>
20910 R:      Cornelia Huck <cohuck@redhat.com>
20911 L:      kvm@vger.kernel.org
20912 S:      Maintained
20913 T:      git git://github.com/awilliam/linux-vfio.git
20914 F:      Documentation/driver-api/vfio.rst
20915 F:      drivers/vfio/
20916 F:      include/linux/vfio.h
20917 F:      include/linux/vfio_pci_core.h
20918 F:      include/uapi/linux/vfio.h
20919
20920 VFIO FSL-MC DRIVER
20921 M:      Diana Craciun <diana.craciun@oss.nxp.com>
20922 L:      kvm@vger.kernel.org
20923 S:      Maintained
20924 F:      drivers/vfio/fsl-mc/
20925
20926 VFIO HISILICON PCI DRIVER
20927 M:      Longfang Liu <liulongfang@huawei.com>
20928 M:      Shameer Kolothum <shameerali.kolothum.thodi@huawei.com>
20929 L:      kvm@vger.kernel.org
20930 S:      Maintained
20931 F:      drivers/vfio/pci/hisilicon/
20932
20933 VFIO MEDIATED DEVICE DRIVERS
20934 M:      Kirti Wankhede <kwankhede@nvidia.com>
20935 L:      kvm@vger.kernel.org
20936 S:      Maintained
20937 F:      Documentation/driver-api/vfio-mediated-device.rst
20938 F:      drivers/vfio/mdev/
20939 F:      include/linux/mdev.h
20940 F:      samples/vfio-mdev/
20941
20942 VFIO PCI DEVICE SPECIFIC DRIVERS
20943 R:      Jason Gunthorpe <jgg@nvidia.com>
20944 R:      Yishai Hadas <yishaih@nvidia.com>
20945 R:      Shameer Kolothum <shameerali.kolothum.thodi@huawei.com>
20946 R:      Kevin Tian <kevin.tian@intel.com>
20947 L:      kvm@vger.kernel.org
20948 S:      Maintained
20949 P:      Documentation/driver-api/vfio-pci-device-specific-driver-acceptance.rst
20950 F:      drivers/vfio/pci/*/
20951
20952 VFIO PLATFORM DRIVER
20953 M:      Eric Auger <eric.auger@redhat.com>
20954 L:      kvm@vger.kernel.org
20955 S:      Maintained
20956 F:      drivers/vfio/platform/
20957
20958 VFIO MLX5 PCI DRIVER
20959 M:      Yishai Hadas <yishaih@nvidia.com>
20960 L:      kvm@vger.kernel.org
20961 S:      Maintained
20962 F:      drivers/vfio/pci/mlx5/
20963
20964 VGA_SWITCHEROO
20965 R:      Lukas Wunner <lukas@wunner.de>
20966 S:      Maintained
20967 T:      git git://anongit.freedesktop.org/drm/drm-misc
20968 F:      Documentation/gpu/vga-switcheroo.rst
20969 F:      drivers/gpu/vga/vga_switcheroo.c
20970 F:      include/linux/vga_switcheroo.h
20971
20972 VIA RHINE NETWORK DRIVER
20973 S:      Maintained
20974 M:      Kevin Brace <kevinbrace@bracecomputerlab.com>
20975 F:      drivers/net/ethernet/via/via-rhine.c
20976
20977 VIA SD/MMC CARD CONTROLLER DRIVER
20978 M:      Bruce Chang <brucechang@via.com.tw>
20979 M:      Harald Welte <HaraldWelte@viatech.com>
20980 S:      Maintained
20981 F:      drivers/mmc/host/via-sdmmc.c
20982
20983 VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
20984 M:      Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
20985 L:      linux-fbdev@vger.kernel.org
20986 S:      Maintained
20987 F:      drivers/video/fbdev/via/
20988 F:      include/linux/via-core.h
20989 F:      include/linux/via-gpio.h
20990 F:      include/linux/via_i2c.h
20991
20992 VIA VELOCITY NETWORK DRIVER
20993 M:      Francois Romieu <romieu@fr.zoreil.com>
20994 L:      netdev@vger.kernel.org
20995 S:      Maintained
20996 F:      drivers/net/ethernet/via/via-velocity.*
20997
20998 VICODEC VIRTUAL CODEC DRIVER
20999 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
21000 L:      linux-media@vger.kernel.org
21001 S:      Maintained
21002 W:      https://linuxtv.org
21003 T:      git git://linuxtv.org/media_tree.git
21004 F:      drivers/media/test-drivers/vicodec/*
21005
21006 VIDEO I2C POLLING DRIVER
21007 M:      Matt Ranostay <matt.ranostay@konsulko.com>
21008 L:      linux-media@vger.kernel.org
21009 S:      Maintained
21010 F:      drivers/media/i2c/video-i2c.c
21011
21012 VIDEO MULTIPLEXER DRIVER
21013 M:      Philipp Zabel <p.zabel@pengutronix.de>
21014 L:      linux-media@vger.kernel.org
21015 S:      Maintained
21016 F:      drivers/media/platform/video-mux.c
21017
21018 VIDEOBUF2 FRAMEWORK
21019 M:      Tomasz Figa <tfiga@chromium.org>
21020 M:      Marek Szyprowski <m.szyprowski@samsung.com>
21021 L:      linux-media@vger.kernel.org
21022 S:      Maintained
21023 F:      drivers/media/common/videobuf2/*
21024 F:      include/media/videobuf2-*
21025
21026 VIMC VIRTUAL MEDIA CONTROLLER DRIVER
21027 M:      Shuah Khan <skhan@linuxfoundation.org>
21028 R:      Kieran Bingham <kieran.bingham@ideasonboard.com>
21029 L:      linux-media@vger.kernel.org
21030 S:      Maintained
21031 W:      https://linuxtv.org
21032 T:      git git://linuxtv.org/media_tree.git
21033 F:      drivers/media/test-drivers/vimc/*
21034
21035 VIRT LIB
21036 M:      Alex Williamson <alex.williamson@redhat.com>
21037 M:      Paolo Bonzini <pbonzini@redhat.com>
21038 L:      kvm@vger.kernel.org
21039 S:      Supported
21040 F:      virt/lib/
21041
21042 VIRTIO AND VHOST VSOCK DRIVER
21043 M:      Stefan Hajnoczi <stefanha@redhat.com>
21044 M:      Stefano Garzarella <sgarzare@redhat.com>
21045 L:      kvm@vger.kernel.org
21046 L:      virtualization@lists.linux-foundation.org
21047 L:      netdev@vger.kernel.org
21048 S:      Maintained
21049 F:      drivers/vhost/vsock.c
21050 F:      include/linux/virtio_vsock.h
21051 F:      include/uapi/linux/virtio_vsock.h
21052 F:      net/vmw_vsock/virtio_transport.c
21053 F:      net/vmw_vsock/virtio_transport_common.c
21054
21055 VIRTIO BLOCK AND SCSI DRIVERS
21056 M:      "Michael S. Tsirkin" <mst@redhat.com>
21057 M:      Jason Wang <jasowang@redhat.com>
21058 R:      Paolo Bonzini <pbonzini@redhat.com>
21059 R:      Stefan Hajnoczi <stefanha@redhat.com>
21060 L:      virtualization@lists.linux-foundation.org
21061 S:      Maintained
21062 F:      drivers/block/virtio_blk.c
21063 F:      drivers/scsi/virtio_scsi.c
21064 F:      drivers/vhost/scsi.c
21065 F:      include/uapi/linux/virtio_blk.h
21066 F:      include/uapi/linux/virtio_scsi.h
21067
21068 VIRTIO CONSOLE DRIVER
21069 M:      Amit Shah <amit@kernel.org>
21070 L:      virtualization@lists.linux-foundation.org
21071 S:      Maintained
21072 F:      drivers/char/virtio_console.c
21073 F:      include/linux/virtio_console.h
21074 F:      include/uapi/linux/virtio_console.h
21075
21076 VIRTIO CORE AND NET DRIVERS
21077 M:      "Michael S. Tsirkin" <mst@redhat.com>
21078 M:      Jason Wang <jasowang@redhat.com>
21079 L:      virtualization@lists.linux-foundation.org
21080 S:      Maintained
21081 F:      Documentation/ABI/testing/sysfs-bus-vdpa
21082 F:      Documentation/devicetree/bindings/virtio/
21083 F:      drivers/block/virtio_blk.c
21084 F:      drivers/crypto/virtio/
21085 F:      drivers/net/virtio_net.c
21086 F:      drivers/vdpa/
21087 F:      drivers/virtio/
21088 F:      include/linux/vdpa.h
21089 F:      include/linux/virtio*.h
21090 F:      include/uapi/linux/virtio_*.h
21091 F:      tools/virtio/
21092
21093 VIRTIO BALLOON
21094 M:      "Michael S. Tsirkin" <mst@redhat.com>
21095 M:      David Hildenbrand <david@redhat.com>
21096 L:      virtualization@lists.linux-foundation.org
21097 S:      Maintained
21098 F:      drivers/virtio/virtio_balloon.c
21099 F:      include/uapi/linux/virtio_balloon.h
21100 F:      include/linux/balloon_compaction.h
21101 F:      mm/balloon_compaction.c
21102
21103 VIRTIO CRYPTO DRIVER
21104 M:      Gonglei <arei.gonglei@huawei.com>
21105 L:      virtualization@lists.linux-foundation.org
21106 L:      linux-crypto@vger.kernel.org
21107 S:      Maintained
21108 F:      drivers/crypto/virtio/
21109 F:      include/uapi/linux/virtio_crypto.h
21110
21111 VIRTIO DRIVERS FOR S390
21112 M:      Cornelia Huck <cohuck@redhat.com>
21113 M:      Halil Pasic <pasic@linux.ibm.com>
21114 M:      Eric Farman <farman@linux.ibm.com>
21115 L:      linux-s390@vger.kernel.org
21116 L:      virtualization@lists.linux-foundation.org
21117 L:      kvm@vger.kernel.org
21118 S:      Supported
21119 F:      arch/s390/include/uapi/asm/virtio-ccw.h
21120 F:      drivers/s390/virtio/
21121
21122 VIRTIO FILE SYSTEM
21123 M:      Vivek Goyal <vgoyal@redhat.com>
21124 M:      Stefan Hajnoczi <stefanha@redhat.com>
21125 M:      Miklos Szeredi <miklos@szeredi.hu>
21126 L:      virtualization@lists.linux-foundation.org
21127 L:      linux-fsdevel@vger.kernel.org
21128 S:      Supported
21129 W:      https://virtio-fs.gitlab.io/
21130 F:      Documentation/filesystems/virtiofs.rst
21131 F:      fs/fuse/virtio_fs.c
21132 F:      include/uapi/linux/virtio_fs.h
21133
21134 VIRTIO GPIO DRIVER
21135 M:      Enrico Weigelt, metux IT consult <info@metux.net>
21136 M:      Viresh Kumar <vireshk@kernel.org>
21137 L:      linux-gpio@vger.kernel.org
21138 L:      virtualization@lists.linux-foundation.org
21139 S:      Maintained
21140 F:      drivers/gpio/gpio-virtio.c
21141 F:      include/uapi/linux/virtio_gpio.h
21142
21143 VIRTIO GPU DRIVER
21144 M:      David Airlie <airlied@linux.ie>
21145 M:      Gerd Hoffmann <kraxel@redhat.com>
21146 R:      Gurchetan Singh <gurchetansingh@chromium.org>
21147 R:      Chia-I Wu <olvaffe@gmail.com>
21148 L:      dri-devel@lists.freedesktop.org
21149 L:      virtualization@lists.linux-foundation.org
21150 S:      Maintained
21151 T:      git git://anongit.freedesktop.org/drm/drm-misc
21152 F:      drivers/gpu/drm/virtio/
21153 F:      include/uapi/linux/virtio_gpu.h
21154
21155 VIRTIO HOST (VHOST)
21156 M:      "Michael S. Tsirkin" <mst@redhat.com>
21157 M:      Jason Wang <jasowang@redhat.com>
21158 L:      kvm@vger.kernel.org
21159 L:      virtualization@lists.linux-foundation.org
21160 L:      netdev@vger.kernel.org
21161 S:      Maintained
21162 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost.git
21163 F:      drivers/vhost/
21164 F:      include/linux/vhost_iotlb.h
21165 F:      include/uapi/linux/vhost.h
21166
21167 VIRTIO INPUT DRIVER
21168 M:      Gerd Hoffmann <kraxel@redhat.com>
21169 S:      Maintained
21170 F:      drivers/virtio/virtio_input.c
21171 F:      include/uapi/linux/virtio_input.h
21172
21173 VIRTIO IOMMU DRIVER
21174 M:      Jean-Philippe Brucker <jean-philippe@linaro.org>
21175 L:      virtualization@lists.linux-foundation.org
21176 S:      Maintained
21177 F:      drivers/iommu/virtio-iommu.c
21178 F:      include/uapi/linux/virtio_iommu.h
21179
21180 VIRTIO MEM DRIVER
21181 M:      David Hildenbrand <david@redhat.com>
21182 L:      virtualization@lists.linux-foundation.org
21183 S:      Maintained
21184 W:      https://virtio-mem.gitlab.io/
21185 F:      drivers/virtio/virtio_mem.c
21186 F:      include/uapi/linux/virtio_mem.h
21187
21188 VIRTIO SOUND DRIVER
21189 M:      Anton Yakovlev <anton.yakovlev@opensynergy.com>
21190 M:      "Michael S. Tsirkin" <mst@redhat.com>
21191 L:      virtualization@lists.linux-foundation.org
21192 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
21193 S:      Maintained
21194 F:      include/uapi/linux/virtio_snd.h
21195 F:      sound/virtio/*
21196
21197 VIRTIO I2C DRIVER
21198 M:      Conghui Chen <conghui.chen@intel.com>
21199 M:      Viresh Kumar <viresh.kumar@linaro.org>
21200 L:      linux-i2c@vger.kernel.org
21201 L:      virtualization@lists.linux-foundation.org
21202 S:      Maintained
21203 F:      drivers/i2c/busses/i2c-virtio.c
21204 F:      include/uapi/linux/virtio_i2c.h
21205
21206 VIRTIO PMEM DRIVER
21207 M:      Pankaj Gupta <pankaj.gupta.linux@gmail.com>
21208 L:      virtualization@lists.linux-foundation.org
21209 S:      Maintained
21210 F:      drivers/nvdimm/virtio_pmem.c
21211 F:      drivers/nvdimm/nd_virtio.c
21212
21213 VIRTUAL BOX GUEST DEVICE DRIVER
21214 M:      Hans de Goede <hdegoede@redhat.com>
21215 M:      Arnd Bergmann <arnd@arndb.de>
21216 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
21217 S:      Maintained
21218 F:      drivers/virt/vboxguest/
21219 F:      include/linux/vbox_utils.h
21220 F:      include/uapi/linux/vbox*.h
21221
21222 VIRTUAL BOX SHARED FOLDER VFS DRIVER
21223 M:      Hans de Goede <hdegoede@redhat.com>
21224 L:      linux-fsdevel@vger.kernel.org
21225 S:      Maintained
21226 F:      fs/vboxsf/*
21227
21228 VIRTUAL SERIO DEVICE DRIVER
21229 M:      Stephen Chandler Paul <thatslyude@gmail.com>
21230 S:      Maintained
21231 F:      drivers/input/serio/userio.c
21232 F:      include/uapi/linux/userio.h
21233
21234 VIVID VIRTUAL VIDEO DRIVER
21235 M:      Hans Verkuil <hverkuil@xs4all.nl>
21236 L:      linux-media@vger.kernel.org
21237 S:      Maintained
21238 W:      https://linuxtv.org
21239 T:      git git://linuxtv.org/media_tree.git
21240 F:      drivers/media/test-drivers/vivid/*
21241
21242 VIDTV VIRTUAL DIGITAL TV DRIVER
21243 M:      Daniel W. S. Almeida <dwlsalmeida@gmail.com>
21244 L:      linux-media@vger.kernel.org
21245 S:      Maintained
21246 W:      https://linuxtv.org
21247 T:      git git://linuxtv.org/media_tree.git
21248 F:      drivers/media/test-drivers/vidtv/*
21249
21250 VLYNQ BUS
21251 M:      Florian Fainelli <f.fainelli@gmail.com>
21252 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
21253 S:      Maintained
21254 F:      drivers/vlynq/vlynq.c
21255 F:      include/linux/vlynq.h
21256
21257 VME SUBSYSTEM
21258 M:      Martyn Welch <martyn@welchs.me.uk>
21259 M:      Manohar Vanga <manohar.vanga@gmail.com>
21260 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
21261 L:      linux-kernel@vger.kernel.org
21262 S:      Maintained
21263 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
21264 F:      Documentation/driver-api/vme.rst
21265 F:      drivers/staging/vme_user/
21266 F:      drivers/vme/
21267 F:      include/linux/vme*
21268
21269 VM SOCKETS (AF_VSOCK)
21270 M:      Stefano Garzarella <sgarzare@redhat.com>
21271 L:      virtualization@lists.linux-foundation.org
21272 L:      netdev@vger.kernel.org
21273 S:      Maintained
21274 F:      drivers/net/vsockmon.c
21275 F:      include/net/af_vsock.h
21276 F:      include/uapi/linux/vm_sockets.h
21277 F:      include/uapi/linux/vm_sockets_diag.h
21278 F:      include/uapi/linux/vsockmon.h
21279 F:      net/vmw_vsock/
21280 F:      tools/testing/vsock/
21281
21282 VMWARE BALLOON DRIVER
21283 M:      Nadav Amit <namit@vmware.com>
21284 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
21285 L:      linux-kernel@vger.kernel.org
21286 S:      Maintained
21287 F:      drivers/misc/vmw_balloon.c
21288
21289 VMWARE HYPERVISOR INTERFACE
21290 M:      Srivatsa S. Bhat (VMware) <srivatsa@csail.mit.edu>
21291 M:      Alexey Makhalov <amakhalov@vmware.com>
21292 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
21293 L:      virtualization@lists.linux-foundation.org
21294 L:      x86@kernel.org
21295 S:      Supported
21296 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vmware
21297 F:      arch/x86/include/asm/vmware.h
21298 F:      arch/x86/kernel/cpu/vmware.c
21299
21300 VMWARE PVRDMA DRIVER
21301 M:      Bryan Tan <bryantan@vmware.com>
21302 M:      Vishnu Dasa <vdasa@vmware.com>
21303 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
21304 L:      linux-rdma@vger.kernel.org
21305 S:      Maintained
21306 F:      drivers/infiniband/hw/vmw_pvrdma/
21307
21308 VMware PVSCSI driver
21309 M:      Vishal Bhakta <vbhakta@vmware.com>
21310 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
21311 L:      linux-scsi@vger.kernel.org
21312 S:      Maintained
21313 F:      drivers/scsi/vmw_pvscsi.c
21314 F:      drivers/scsi/vmw_pvscsi.h
21315
21316 VMWARE VIRTUAL PTP CLOCK DRIVER
21317 M:      Vivek Thampi <vithampi@vmware.com>
21318 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
21319 L:      netdev@vger.kernel.org
21320 S:      Supported
21321 F:      drivers/ptp/ptp_vmw.c
21322
21323 VMWARE VMCI DRIVER
21324 M:      Bryan Tan <bryantan@vmware.com>
21325 M:      Rajesh Jalisatgi <rjalisatgi@vmware.com>
21326 M:      Vishnu Dasa <vdasa@vmware.com>
21327 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
21328 L:      linux-kernel@vger.kernel.org
21329 S:      Maintained
21330 F:      drivers/misc/vmw_vmci/
21331
21332 VMWARE VMMOUSE SUBDRIVER
21333 M:      Zack Rusin <zackr@vmware.com>
21334 R:      VMware Graphics Reviewers <linux-graphics-maintainer@vmware.com>
21335 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
21336 L:      linux-input@vger.kernel.org
21337 S:      Maintained
21338 F:      drivers/input/mouse/vmmouse.c
21339 F:      drivers/input/mouse/vmmouse.h
21340
21341 VMWARE VMXNET3 ETHERNET DRIVER
21342 M:      Ronak Doshi <doshir@vmware.com>
21343 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
21344 L:      netdev@vger.kernel.org
21345 S:      Maintained
21346 F:      drivers/net/vmxnet3/
21347
21348 VOCORE VOCORE2 BOARD
21349 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
21350 L:      linux-mips@vger.kernel.org
21351 S:      Maintained
21352 F:      arch/mips/boot/dts/ralink/vocore2.dts
21353
21354 VOLTAGE AND CURRENT REGULATOR FRAMEWORK
21355 M:      Liam Girdwood <lgirdwood@gmail.com>
21356 M:      Mark Brown <broonie@kernel.org>
21357 L:      linux-kernel@vger.kernel.org
21358 S:      Supported
21359 W:      http://www.slimlogic.co.uk/?p=48
21360 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git
21361 F:      Documentation/devicetree/bindings/regulator/
21362 F:      Documentation/power/regulator/
21363 F:      drivers/regulator/
21364 F:      include/dt-bindings/regulator/
21365 F:      include/linux/regulator/
21366 K:      regulator_get_optional
21367
21368 VOLTAGE AND CURRENT REGULATOR IRQ HELPERS
21369 R:      Matti Vaittinen <mazziesaccount@gmail.com>
21370 F:      drivers/regulator/irq_helpers.c
21371
21372 VRF
21373 M:      David Ahern <dsahern@kernel.org>
21374 L:      netdev@vger.kernel.org
21375 S:      Maintained
21376 F:      Documentation/networking/vrf.rst
21377 F:      drivers/net/vrf.c
21378
21379 VSPRINTF
21380 M:      Petr Mladek <pmladek@suse.com>
21381 M:      Steven Rostedt <rostedt@goodmis.org>
21382 M:      Sergey Senozhatsky <senozhatsky@chromium.org>
21383 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
21384 R:      Rasmus Villemoes <linux@rasmusvillemoes.dk>
21385 S:      Maintained
21386 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/printk/linux.git
21387 F:      Documentation/core-api/printk-formats.rst
21388 F:      lib/test_printf.c
21389 F:      lib/test_scanf.c
21390 F:      lib/vsprintf.c
21391
21392 VT1211 HARDWARE MONITOR DRIVER
21393 M:      Juerg Haefliger <juergh@gmail.com>
21394 L:      linux-hwmon@vger.kernel.org
21395 S:      Maintained
21396 F:      Documentation/hwmon/vt1211.rst
21397 F:      drivers/hwmon/vt1211.c
21398
21399 VT8231 HARDWARE MONITOR DRIVER
21400 M:      Roger Lucas <vt8231@hiddenengine.co.uk>
21401 L:      linux-hwmon@vger.kernel.org
21402 S:      Maintained
21403 F:      drivers/hwmon/vt8231.c
21404
21405 VUB300 USB to SDIO/SD/MMC bridge chip
21406 L:      linux-mmc@vger.kernel.org
21407 S:      Orphan
21408 F:      drivers/mmc/host/vub300.c
21409
21410 W1 DALLAS'S 1-WIRE BUS
21411 M:      Evgeniy Polyakov <zbr@ioremap.net>
21412 S:      Maintained
21413 F:      Documentation/devicetree/bindings/w1/
21414 F:      Documentation/w1/
21415 F:      drivers/w1/
21416 F:      include/linux/w1.h
21417
21418 W83791D HARDWARE MONITORING DRIVER
21419 M:      Marc Hulsman <m.hulsman@tudelft.nl>
21420 L:      linux-hwmon@vger.kernel.org
21421 S:      Maintained
21422 F:      Documentation/hwmon/w83791d.rst
21423 F:      drivers/hwmon/w83791d.c
21424
21425 W83793 HARDWARE MONITORING DRIVER
21426 M:      Rudolf Marek <r.marek@assembler.cz>
21427 L:      linux-hwmon@vger.kernel.org
21428 S:      Maintained
21429 F:      Documentation/hwmon/w83793.rst
21430 F:      drivers/hwmon/w83793.c
21431
21432 W83795 HARDWARE MONITORING DRIVER
21433 M:      Jean Delvare <jdelvare@suse.com>
21434 L:      linux-hwmon@vger.kernel.org
21435 S:      Maintained
21436 F:      drivers/hwmon/w83795.c
21437
21438 W83L51xD SD/MMC CARD INTERFACE DRIVER
21439 M:      Pierre Ossman <pierre@ossman.eu>
21440 S:      Maintained
21441 F:      drivers/mmc/host/wbsd.*
21442
21443 WACOM PROTOCOL 4 SERIAL TABLETS
21444 M:      Julian Squires <julian@cipht.net>
21445 M:      Hans de Goede <hdegoede@redhat.com>
21446 L:      linux-input@vger.kernel.org
21447 S:      Maintained
21448 F:      drivers/input/tablet/wacom_serial4.c
21449
21450 WATCHDOG DEVICE DRIVERS
21451 M:      Wim Van Sebroeck <wim@linux-watchdog.org>
21452 M:      Guenter Roeck <linux@roeck-us.net>
21453 L:      linux-watchdog@vger.kernel.org
21454 S:      Maintained
21455 W:      http://www.linux-watchdog.org/
21456 T:      git git://www.linux-watchdog.org/linux-watchdog.git
21457 F:      Documentation/devicetree/bindings/watchdog/
21458 F:      Documentation/watchdog/
21459 F:      drivers/watchdog/
21460 F:      include/linux/watchdog.h
21461 F:      include/uapi/linux/watchdog.h
21462
21463 WHISKEYCOVE PMIC GPIO DRIVER
21464 M:      Kuppuswamy Sathyanarayanan <sathyanarayanan.kuppuswamy@linux.intel.com>
21465 L:      linux-gpio@vger.kernel.org
21466 S:      Maintained
21467 F:      drivers/gpio/gpio-wcove.c
21468
21469 WHWAVE RTC DRIVER
21470 M:      Dianlong Li <long17.cool@163.com>
21471 L:      linux-rtc@vger.kernel.org
21472 S:      Maintained
21473 F:      drivers/rtc/rtc-sd3078.c
21474
21475 WIIMOTE HID DRIVER
21476 M:      David Rheinsberg <david.rheinsberg@gmail.com>
21477 L:      linux-input@vger.kernel.org
21478 S:      Maintained
21479 F:      drivers/hid/hid-wiimote*
21480
21481 WILOCITY WIL6210 WIRELESS DRIVER
21482 L:      linux-wireless@vger.kernel.org
21483 S:      Orphan
21484 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wil6210
21485 F:      drivers/net/wireless/ath/wil6210/
21486
21487 WINBOND CIR DRIVER
21488 M:      David Härdeman <david@hardeman.nu>
21489 S:      Maintained
21490 F:      drivers/media/rc/winbond-cir.c
21491
21492 WINSYSTEMS EBC-C384 WATCHDOG DRIVER
21493 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
21494 L:      linux-watchdog@vger.kernel.org
21495 S:      Maintained
21496 F:      drivers/watchdog/ebc-c384_wdt.c
21497
21498 WINSYSTEMS WS16C48 GPIO DRIVER
21499 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
21500 L:      linux-gpio@vger.kernel.org
21501 S:      Maintained
21502 F:      drivers/gpio/gpio-ws16c48.c
21503
21504 WIREGUARD SECURE NETWORK TUNNEL
21505 M:      Jason A. Donenfeld <Jason@zx2c4.com>
21506 L:      wireguard@lists.zx2c4.com
21507 L:      netdev@vger.kernel.org
21508 S:      Maintained
21509 F:      drivers/net/wireguard/
21510 F:      tools/testing/selftests/wireguard/
21511
21512 WISTRON LAPTOP BUTTON DRIVER
21513 M:      Miloslav Trmac <mitr@volny.cz>
21514 S:      Maintained
21515 F:      drivers/input/misc/wistron_btns.c
21516
21517 WL3501 WIRELESS PCMCIA CARD DRIVER
21518 L:      linux-wireless@vger.kernel.org
21519 S:      Odd fixes
21520 F:      drivers/net/wireless/wl3501*
21521
21522 WOLFSON MICROELECTRONICS DRIVERS
21523 L:      patches@opensource.cirrus.com
21524 S:      Supported
21525 W:      https://github.com/CirrusLogic/linux-drivers/wiki
21526 T:      git https://github.com/CirrusLogic/linux-drivers.git
21527 F:      Documentation/devicetree/bindings/extcon/wlf,arizona.yaml
21528 F:      Documentation/devicetree/bindings/mfd/wlf,arizona.yaml
21529 F:      Documentation/devicetree/bindings/mfd/wm831x.txt
21530 F:      Documentation/devicetree/bindings/regulator/wlf,arizona.yaml
21531 F:      Documentation/devicetree/bindings/sound/wlf,*.yaml
21532 F:      Documentation/devicetree/bindings/sound/wm*
21533 F:      Documentation/hwmon/wm83??.rst
21534 F:      arch/arm/mach-s3c/mach-crag6410*
21535 F:      drivers/clk/clk-wm83*.c
21536 F:      drivers/gpio/gpio-*wm*.c
21537 F:      drivers/gpio/gpio-arizona.c
21538 F:      drivers/hwmon/wm83??-hwmon.c
21539 F:      drivers/input/misc/wm831x-on.c
21540 F:      drivers/input/touchscreen/wm831x-ts.c
21541 F:      drivers/input/touchscreen/wm97*.c
21542 F:      drivers/leds/leds-wm83*.c
21543 F:      drivers/mfd/arizona*
21544 F:      drivers/mfd/cs47l24*
21545 F:      drivers/mfd/wm*.c
21546 F:      drivers/power/supply/wm83*.c
21547 F:      drivers/regulator/arizona*
21548 F:      drivers/regulator/wm8*.c
21549 F:      drivers/rtc/rtc-wm83*.c
21550 F:      drivers/video/backlight/wm83*_bl.c
21551 F:      drivers/watchdog/wm83*_wdt.c
21552 F:      include/linux/mfd/arizona/
21553 F:      include/linux/mfd/wm831x/
21554 F:      include/linux/mfd/wm8350/
21555 F:      include/linux/mfd/wm8400*
21556 F:      include/linux/regulator/arizona*
21557 F:      include/linux/wm97xx.h
21558 F:      include/sound/wm????.h
21559 F:      sound/soc/codecs/arizona*
21560 F:      sound/soc/codecs/cs47l24*
21561 F:      sound/soc/codecs/wm*
21562
21563 WORKQUEUE
21564 M:      Tejun Heo <tj@kernel.org>
21565 R:      Lai Jiangshan <jiangshanlai@gmail.com>
21566 S:      Maintained
21567 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
21568 F:      Documentation/core-api/workqueue.rst
21569 F:      include/linux/workqueue.h
21570 F:      kernel/workqueue.c
21571
21572 WWAN DRIVERS
21573 M:      Loic Poulain <loic.poulain@linaro.org>
21574 M:      Sergey Ryazanov <ryazanov.s.a@gmail.com>
21575 R:      Johannes Berg <johannes@sipsolutions.net>
21576 L:      netdev@vger.kernel.org
21577 S:      Maintained
21578 F:      drivers/net/wwan/
21579 F:      include/linux/wwan.h
21580 F:      include/uapi/linux/wwan.h
21581
21582 X-POWERS AXP288 PMIC DRIVERS
21583 M:      Hans de Goede <hdegoede@redhat.com>
21584 S:      Maintained
21585 F:      drivers/acpi/pmic/intel_pmic_xpower.c
21586 N:      axp288
21587
21588 X-POWERS MULTIFUNCTION PMIC DEVICE DRIVERS
21589 M:      Chen-Yu Tsai <wens@csie.org>
21590 L:      linux-kernel@vger.kernel.org
21591 S:      Maintained
21592 N:      axp[128]
21593
21594 X.25 STACK
21595 M:      Martin Schiller <ms@dev.tdt.de>
21596 L:      linux-x25@vger.kernel.org
21597 S:      Maintained
21598 F:      Documentation/networking/lapb-module.rst
21599 F:      Documentation/networking/x25*
21600 F:      drivers/net/wan/hdlc_x25.c
21601 F:      drivers/net/wan/lapbether.c
21602 F:      include/*/lapb.h
21603 F:      include/net/x25*
21604 F:      include/uapi/linux/x25.h
21605 F:      net/lapb/
21606 F:      net/x25/
21607
21608 X86 ARCHITECTURE (32-BIT AND 64-BIT)
21609 M:      Thomas Gleixner <tglx@linutronix.de>
21610 M:      Ingo Molnar <mingo@redhat.com>
21611 M:      Borislav Petkov <bp@alien8.de>
21612 M:      Dave Hansen <dave.hansen@linux.intel.com>
21613 M:      x86@kernel.org
21614 R:      "H. Peter Anvin" <hpa@zytor.com>
21615 L:      linux-kernel@vger.kernel.org
21616 S:      Maintained
21617 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
21618 F:      Documentation/devicetree/bindings/x86/
21619 F:      Documentation/x86/
21620 F:      arch/x86/
21621
21622 X86 ENTRY CODE
21623 M:      Andy Lutomirski <luto@kernel.org>
21624 L:      linux-kernel@vger.kernel.org
21625 S:      Maintained
21626 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/asm
21627 F:      arch/x86/entry/
21628
21629 X86 MCE INFRASTRUCTURE
21630 M:      Tony Luck <tony.luck@intel.com>
21631 M:      Borislav Petkov <bp@alien8.de>
21632 L:      linux-edac@vger.kernel.org
21633 S:      Maintained
21634 F:      Documentation/ABI/testing/sysfs-mce
21635 F:      Documentation/x86/x86_64/machinecheck.rst
21636 F:      arch/x86/kernel/cpu/mce/*
21637
21638 X86 MICROCODE UPDATE SUPPORT
21639 M:      Borislav Petkov <bp@alien8.de>
21640 S:      Maintained
21641 F:      arch/x86/kernel/cpu/microcode/*
21642
21643 X86 MM
21644 M:      Dave Hansen <dave.hansen@linux.intel.com>
21645 M:      Andy Lutomirski <luto@kernel.org>
21646 M:      Peter Zijlstra <peterz@infradead.org>
21647 L:      linux-kernel@vger.kernel.org
21648 S:      Maintained
21649 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/mm
21650 F:      arch/x86/mm/
21651
21652 X86 PLATFORM ANDROID TABLETS DSDT FIXUP DRIVER
21653 M:      Hans de Goede <hdegoede@redhat.com>
21654 L:      platform-driver-x86@vger.kernel.org
21655 S:      Maintained
21656 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
21657 F:      drivers/platform/x86/x86-android-tablets.c
21658
21659 X86 PLATFORM DRIVERS
21660 M:      Hans de Goede <hdegoede@redhat.com>
21661 M:      Mark Gross <markgross@kernel.org>
21662 L:      platform-driver-x86@vger.kernel.org
21663 S:      Maintained
21664 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
21665 F:      drivers/platform/olpc/
21666 F:      drivers/platform/x86/
21667
21668 X86 PLATFORM DRIVERS - ARCH
21669 R:      Darren Hart <dvhart@infradead.org>
21670 R:      Andy Shevchenko <andy@infradead.org>
21671 L:      platform-driver-x86@vger.kernel.org
21672 L:      x86@kernel.org
21673 S:      Maintained
21674 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
21675 F:      arch/x86/platform
21676
21677 X86 PLATFORM UV HPE SUPERDOME FLEX
21678 M:      Steve Wahl <steve.wahl@hpe.com>
21679 R:      Mike Travis <mike.travis@hpe.com>
21680 R:      Dimitri Sivanich <dimitri.sivanich@hpe.com>
21681 R:      Russ Anderson <russ.anderson@hpe.com>
21682 S:      Supported
21683 F:      arch/x86/include/asm/uv/
21684 F:      arch/x86/kernel/apic/x2apic_uv_x.c
21685 F:      arch/x86/platform/uv/
21686
21687 X86 STACK UNWINDING
21688 M:      Josh Poimboeuf <jpoimboe@kernel.org>
21689 M:      Peter Zijlstra <peterz@infradead.org>
21690 S:      Supported
21691 F:      arch/x86/include/asm/unwind*.h
21692 F:      arch/x86/kernel/dumpstack.c
21693 F:      arch/x86/kernel/stacktrace.c
21694 F:      arch/x86/kernel/unwind_*.c
21695
21696 X86 VDSO
21697 M:      Andy Lutomirski <luto@kernel.org>
21698 L:      linux-kernel@vger.kernel.org
21699 S:      Maintained
21700 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso
21701 F:      arch/x86/entry/vdso/
21702
21703 XARRAY
21704 M:      Matthew Wilcox <willy@infradead.org>
21705 L:      linux-fsdevel@vger.kernel.org
21706 S:      Supported
21707 F:      Documentation/core-api/xarray.rst
21708 F:      include/linux/idr.h
21709 F:      include/linux/xarray.h
21710 F:      lib/idr.c
21711 F:      lib/xarray.c
21712 F:      tools/testing/radix-tree
21713
21714 XBOX DVD IR REMOTE
21715 M:      Benjamin Valentin <benpicco@googlemail.com>
21716 S:      Maintained
21717 F:      drivers/media/rc/keymaps/rc-xbox-dvd.c
21718 F:      drivers/media/rc/xbox_remote.c
21719
21720 XC2028/3028 TUNER DRIVER
21721 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
21722 L:      linux-media@vger.kernel.org
21723 S:      Maintained
21724 W:      https://linuxtv.org
21725 T:      git git://linuxtv.org/media_tree.git
21726 F:      drivers/media/tuners/xc2028.*
21727
21728 XDP (eXpress Data Path)
21729 M:      Alexei Starovoitov <ast@kernel.org>
21730 M:      Daniel Borkmann <daniel@iogearbox.net>
21731 M:      David S. Miller <davem@davemloft.net>
21732 M:      Jakub Kicinski <kuba@kernel.org>
21733 M:      Jesper Dangaard Brouer <hawk@kernel.org>
21734 M:      John Fastabend <john.fastabend@gmail.com>
21735 L:      netdev@vger.kernel.org
21736 L:      bpf@vger.kernel.org
21737 S:      Supported
21738 F:      include/net/xdp.h
21739 F:      include/net/xdp_priv.h
21740 F:      include/trace/events/xdp.h
21741 F:      kernel/bpf/cpumap.c
21742 F:      kernel/bpf/devmap.c
21743 F:      net/core/xdp.c
21744 F:      samples/bpf/xdp*
21745 F:      tools/testing/selftests/bpf/*xdp*
21746 F:      tools/testing/selftests/bpf/*/*xdp*
21747 F:      drivers/net/ethernet/*/*/*/*/*xdp*
21748 F:      drivers/net/ethernet/*/*/*xdp*
21749 K:      (?:\b|_)xdp(?:\b|_)
21750
21751 XDP SOCKETS (AF_XDP)
21752 M:      Björn Töpel <bjorn@kernel.org>
21753 M:      Magnus Karlsson <magnus.karlsson@intel.com>
21754 M:      Maciej Fijalkowski <maciej.fijalkowski@intel.com>
21755 R:      Jonathan Lemon <jonathan.lemon@gmail.com>
21756 L:      netdev@vger.kernel.org
21757 L:      bpf@vger.kernel.org
21758 S:      Maintained
21759 F:      Documentation/networking/af_xdp.rst
21760 F:      include/net/xdp_sock*
21761 F:      include/net/xsk_buff_pool.h
21762 F:      include/uapi/linux/if_xdp.h
21763 F:      include/uapi/linux/xdp_diag.h
21764 F:      include/net/netns/xdp.h
21765 F:      net/xdp/
21766 F:      samples/bpf/xdpsock*
21767 F:      tools/lib/bpf/xsk*
21768
21769 XEN BLOCK SUBSYSTEM
21770 M:      Roger Pau Monné <roger.pau@citrix.com>
21771 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
21772 S:      Supported
21773 F:      drivers/block/xen*
21774 F:      drivers/block/xen-blkback/*
21775
21776 XEN HYPERVISOR ARM
21777 M:      Stefano Stabellini <sstabellini@kernel.org>
21778 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
21779 S:      Maintained
21780 F:      arch/arm/include/asm/xen/
21781 F:      arch/arm/xen/
21782
21783 XEN HYPERVISOR ARM64
21784 M:      Stefano Stabellini <sstabellini@kernel.org>
21785 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
21786 S:      Maintained
21787 F:      arch/arm64/include/asm/xen/
21788 F:      arch/arm64/xen/
21789
21790 XEN HYPERVISOR INTERFACE
21791 M:      Juergen Gross <jgross@suse.com>
21792 M:      Stefano Stabellini <sstabellini@kernel.org>
21793 R:      Oleksandr Tyshchenko <oleksandr_tyshchenko@epam.com>
21794 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
21795 S:      Supported
21796 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git
21797 F:      Documentation/ABI/stable/sysfs-hypervisor-xen
21798 F:      Documentation/ABI/testing/sysfs-hypervisor-xen
21799 F:      drivers/*/xen-*front.c
21800 F:      drivers/xen/
21801 F:      include/uapi/xen/
21802 F:      include/xen/
21803
21804 XEN HYPERVISOR X86
21805 M:      Juergen Gross <jgross@suse.com>
21806 R:      Boris Ostrovsky <boris.ostrovsky@oracle.com>
21807 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
21808 S:      Supported
21809 F:      arch/x86/include/asm/pvclock-abi.h
21810 F:      arch/x86/include/asm/xen/
21811 F:      arch/x86/platform/pvh/
21812 F:      arch/x86/xen/
21813
21814 XEN NETWORK BACKEND DRIVER
21815 M:      Wei Liu <wei.liu@kernel.org>
21816 M:      Paul Durrant <paul@xen.org>
21817 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
21818 L:      netdev@vger.kernel.org
21819 S:      Supported
21820 F:      drivers/net/xen-netback/*
21821
21822 XEN PCI SUBSYSTEM
21823 M:      Juergen Gross <jgross@suse.com>
21824 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
21825 S:      Supported
21826 F:      arch/x86/pci/*xen*
21827 F:      drivers/pci/*xen*
21828
21829 XEN PVSCSI DRIVERS
21830 M:      Juergen Gross <jgross@suse.com>
21831 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
21832 L:      linux-scsi@vger.kernel.org
21833 S:      Supported
21834 F:      drivers/scsi/xen-scsifront.c
21835 F:      drivers/xen/xen-scsiback.c
21836 F:      include/xen/interface/io/vscsiif.h
21837
21838 XEN PVUSB DRIVER
21839 M:      Juergen Gross <jgross@suse.com>
21840 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
21841 L:      linux-usb@vger.kernel.org
21842 S:      Supported
21843 F:      drivers/usb/host/xen*
21844 F:      include/xen/interface/io/usbif.h
21845
21846 XEN SOUND FRONTEND DRIVER
21847 M:      Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
21848 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
21849 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
21850 S:      Supported
21851 F:      sound/xen/*
21852
21853 XEN SWIOTLB SUBSYSTEM
21854 M:      Juergen Gross <jgross@suse.com>
21855 M:      Stefano Stabellini <sstabellini@kernel.org>
21856 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
21857 L:      iommu@lists.linux-foundation.org
21858 S:      Supported
21859 F:      arch/x86/xen/*swiotlb*
21860 F:      drivers/xen/*swiotlb*
21861
21862 XFS FILESYSTEM
21863 C:      irc://irc.oftc.net/xfs
21864 M:      Darrick J. Wong <djwong@kernel.org>
21865 L:      linux-xfs@vger.kernel.org
21866 S:      Supported
21867 W:      http://xfs.org/
21868 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
21869 F:      Documentation/ABI/testing/sysfs-fs-xfs
21870 F:      Documentation/admin-guide/xfs.rst
21871 F:      Documentation/filesystems/xfs-delayed-logging-design.rst
21872 F:      Documentation/filesystems/xfs-self-describing-metadata.rst
21873 F:      fs/xfs/
21874 F:      include/uapi/linux/dqblk_xfs.h
21875 F:      include/uapi/linux/fsmap.h
21876
21877 XILINX AMS DRIVER
21878 M:      Anand Ashok Dumbre <anand.ashok.dumbre@xilinx.com>
21879 L:      linux-iio@vger.kernel.org
21880 S:      Maintained
21881 F:      Documentation/devicetree/bindings/iio/adc/xlnx,zynqmp-ams.yaml
21882 F:      drivers/iio/adc/xilinx-ams.c
21883
21884 XILINX AXI ETHERNET DRIVER
21885 M:      Radhey Shyam Pandey <radhey.shyam.pandey@xilinx.com>
21886 S:      Maintained
21887 F:      drivers/net/ethernet/xilinx/xilinx_axienet*
21888
21889 XILINX CAN DRIVER
21890 M:      Appana Durga Kedareswara rao <appana.durga.rao@xilinx.com>
21891 R:      Naga Sureshkumar Relli <naga.sureshkumar.relli@xilinx.com>
21892 L:      linux-can@vger.kernel.org
21893 S:      Maintained
21894 F:      Documentation/devicetree/bindings/net/can/xilinx,can.yaml
21895 F:      drivers/net/can/xilinx_can.c
21896
21897 XILINX GPIO DRIVER
21898 M:      Shubhrajyoti Datta <shubhrajyoti.datta@xilinx.com>
21899 R:      Srinivas Neeli <srinivas.neeli@xilinx.com>
21900 R:      Michal Simek <michal.simek@xilinx.com>
21901 S:      Maintained
21902 F:      Documentation/devicetree/bindings/gpio/gpio-xilinx.txt
21903 F:      Documentation/devicetree/bindings/gpio/gpio-zynq.yaml
21904 F:      drivers/gpio/gpio-xilinx.c
21905 F:      drivers/gpio/gpio-zynq.c
21906
21907 XILINX SD-FEC IP CORES
21908 M:      Derek Kiernan <derek.kiernan@xilinx.com>
21909 M:      Dragan Cvetic <dragan.cvetic@xilinx.com>
21910 S:      Maintained
21911 F:      Documentation/devicetree/bindings/misc/xlnx,sd-fec.txt
21912 F:      Documentation/misc-devices/xilinx_sdfec.rst
21913 F:      drivers/misc/Kconfig
21914 F:      drivers/misc/Makefile
21915 F:      drivers/misc/xilinx_sdfec.c
21916 F:      include/uapi/misc/xilinx_sdfec.h
21917
21918 XILINX PWM DRIVER
21919 M:      Sean Anderson <sean.anderson@seco.com>
21920 S:      Maintained
21921 F:      drivers/pwm/pwm-xilinx.c
21922 F:      include/clocksource/timer-xilinx.h
21923
21924 XILINX UARTLITE SERIAL DRIVER
21925 M:      Peter Korsgaard <jacmet@sunsite.dk>
21926 L:      linux-serial@vger.kernel.org
21927 S:      Maintained
21928 F:      drivers/tty/serial/uartlite.c
21929
21930 XILINX VIDEO IP CORES
21931 M:      Hyun Kwon <hyun.kwon@xilinx.com>
21932 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
21933 L:      linux-media@vger.kernel.org
21934 S:      Supported
21935 T:      git git://linuxtv.org/media_tree.git
21936 F:      Documentation/devicetree/bindings/media/xilinx/
21937 F:      drivers/media/platform/xilinx/
21938 F:      include/uapi/linux/xilinx-v4l2-controls.h
21939
21940 XILINX ZYNQMP DPDMA DRIVER
21941 M:      Hyun Kwon <hyun.kwon@xilinx.com>
21942 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
21943 L:      dmaengine@vger.kernel.org
21944 S:      Supported
21945 F:      Documentation/devicetree/bindings/dma/xilinx/xlnx,zynqmp-dpdma.yaml
21946 F:      drivers/dma/xilinx/xilinx_dpdma.c
21947 F:      include/dt-bindings/dma/xlnx-zynqmp-dpdma.h
21948
21949 XILINX ZYNQMP PSGTR PHY DRIVER
21950 M:      Anurag Kumar Vulisha <anurag.kumar.vulisha@xilinx.com>
21951 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
21952 L:      linux-kernel@vger.kernel.org
21953 S:      Supported
21954 T:      git https://github.com/Xilinx/linux-xlnx.git
21955 F:      Documentation/devicetree/bindings/phy/xlnx,zynqmp-psgtr.yaml
21956 F:      drivers/phy/xilinx/phy-zynqmp.c
21957
21958 XILINX ZYNQMP SHA3 DRIVER
21959 M:      Harsha <harsha.harsha@xilinx.com>
21960 S:      Maintained
21961 F:      drivers/crypto/xilinx/zynqmp-sha.c
21962
21963 XILINX EVENT MANAGEMENT DRIVER
21964 M:      Abhyuday Godhasara <abhyuday.godhasara@xilinx.com>
21965 S:      Maintained
21966 F:      drivers/soc/xilinx/xlnx_event_manager.c
21967 F:      include/linux/firmware/xlnx-event-manager.h
21968
21969 XILLYBUS DRIVER
21970 M:      Eli Billauer <eli.billauer@gmail.com>
21971 L:      linux-kernel@vger.kernel.org
21972 S:      Supported
21973 F:      drivers/char/xillybus/
21974
21975 XLP9XX I2C DRIVER
21976 M:      George Cherian <gcherian@marvell.com>
21977 L:      linux-i2c@vger.kernel.org
21978 S:      Supported
21979 W:      http://www.marvell.com
21980 F:      drivers/i2c/busses/i2c-xlp9xx.c
21981
21982 XRA1403 GPIO EXPANDER
21983 M:      Nandor Han <nandor.han@ge.com>
21984 M:      Semi Malinen <semi.malinen@ge.com>
21985 L:      linux-gpio@vger.kernel.org
21986 S:      Maintained
21987 F:      Documentation/devicetree/bindings/gpio/gpio-xra1403.txt
21988 F:      drivers/gpio/gpio-xra1403.c
21989
21990 XTENSA XTFPGA PLATFORM SUPPORT
21991 M:      Max Filippov <jcmvbkbc@gmail.com>
21992 L:      linux-xtensa@linux-xtensa.org
21993 S:      Maintained
21994 F:      drivers/spi/spi-xtensa-xtfpga.c
21995 F:      sound/soc/xtensa/xtfpga-i2s.c
21996
21997 YAM DRIVER FOR AX.25
21998 M:      Jean-Paul Roubelat <jpr@f6fbb.org>
21999 L:      linux-hams@vger.kernel.org
22000 S:      Maintained
22001 F:      drivers/net/hamradio/yam*
22002 F:      include/linux/yam.h
22003
22004 YAMA SECURITY MODULE
22005 M:      Kees Cook <keescook@chromium.org>
22006 S:      Supported
22007 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git yama/tip
22008 F:      Documentation/admin-guide/LSM/Yama.rst
22009 F:      security/yama/
22010
22011 YEALINK PHONE DRIVER
22012 M:      Henk Vergonet <Henk.Vergonet@gmail.com>
22013 L:      usbb2k-api-dev@nongnu.org
22014 S:      Maintained
22015 F:      Documentation/input/devices/yealink.rst
22016 F:      drivers/input/misc/yealink.*
22017
22018 Z8530 DRIVER FOR AX.25
22019 M:      Joerg Reuter <jreuter@yaina.de>
22020 L:      linux-hams@vger.kernel.org
22021 S:      Maintained
22022 W:      http://yaina.de/jreuter/
22023 W:      http://www.qsl.net/dl1bke/
22024 F:      Documentation/networking/device_drivers/hamradio/z8530drv.rst
22025 F:      drivers/net/hamradio/*scc.c
22026 F:      drivers/net/hamradio/z8530.h
22027
22028 ZBUD COMPRESSED PAGE ALLOCATOR
22029 M:      Seth Jennings <sjenning@redhat.com>
22030 M:      Dan Streetman <ddstreet@ieee.org>
22031 L:      linux-mm@kvack.org
22032 S:      Maintained
22033 F:      mm/zbud.c
22034
22035 Z3FOLD COMPRESSED PAGE ALLOCATOR
22036 M:      Vitaly Wool <vitaly.wool@konsulko.com>
22037 R:      Miaohe Lin <linmiaohe@huawei.com>
22038 L:      linux-mm@kvack.org
22039 S:      Maintained
22040 F:      mm/z3fold.c
22041
22042 ZD1211RW WIRELESS DRIVER
22043 M:      Ulrich Kunitz <kune@deine-taler.de>
22044 L:      linux-wireless@vger.kernel.org
22045 L:      zd1211-devs@lists.sourceforge.net (subscribers-only)
22046 S:      Maintained
22047 W:      http://zd1211.ath.cx/wiki/DriverRewrite
22048 F:      drivers/net/wireless/zydas/zd1211rw/
22049
22050 ZD1301 MEDIA DRIVER
22051 M:      Antti Palosaari <crope@iki.fi>
22052 L:      linux-media@vger.kernel.org
22053 S:      Maintained
22054 W:      https://linuxtv.org/
22055 W:      http://palosaari.fi/linux/
22056 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
22057 F:      drivers/media/usb/dvb-usb-v2/zd1301*
22058
22059 ZD1301_DEMOD MEDIA DRIVER
22060 M:      Antti Palosaari <crope@iki.fi>
22061 L:      linux-media@vger.kernel.org
22062 S:      Maintained
22063 W:      https://linuxtv.org/
22064 W:      http://palosaari.fi/linux/
22065 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
22066 F:      drivers/media/dvb-frontends/zd1301_demod*
22067
22068 ZHAOXIN PROCESSOR SUPPORT
22069 M:      Tony W Wang-oc <TonyWWang-oc@zhaoxin.com>
22070 L:      linux-kernel@vger.kernel.org
22071 S:      Maintained
22072 F:      arch/x86/kernel/cpu/zhaoxin.c
22073
22074 ZONEFS FILESYSTEM
22075 M:      Damien Le Moal <damien.lemoal@opensource.wdc.com>
22076 M:      Naohiro Aota <naohiro.aota@wdc.com>
22077 R:      Johannes Thumshirn <jth@kernel.org>
22078 L:      linux-fsdevel@vger.kernel.org
22079 S:      Maintained
22080 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dlemoal/zonefs.git
22081 F:      Documentation/filesystems/zonefs.rst
22082 F:      fs/zonefs/
22083
22084 ZPOOL COMPRESSED PAGE STORAGE API
22085 M:      Dan Streetman <ddstreet@ieee.org>
22086 L:      linux-mm@kvack.org
22087 S:      Maintained
22088 F:      include/linux/zpool.h
22089 F:      mm/zpool.c
22090
22091 ZR36067 VIDEO FOR LINUX DRIVER
22092 M:      Corentin Labbe <clabbe@baylibre.com>
22093 L:      mjpeg-users@lists.sourceforge.net
22094 L:      linux-media@vger.kernel.org
22095 S:      Maintained
22096 W:      http://mjpeg.sourceforge.net/driver-zoran/
22097 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
22098 F:      Documentation/driver-api/media/drivers/zoran.rst
22099 F:      drivers/staging/media/zoran/
22100
22101 ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER
22102 M:      Minchan Kim <minchan@kernel.org>
22103 M:      Nitin Gupta <ngupta@vflare.org>
22104 R:      Sergey Senozhatsky <senozhatsky@chromium.org>
22105 L:      linux-kernel@vger.kernel.org
22106 S:      Maintained
22107 F:      Documentation/admin-guide/blockdev/zram.rst
22108 F:      drivers/block/zram/
22109
22110 ZS DECSTATION Z85C30 SERIAL DRIVER
22111 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
22112 S:      Maintained
22113 F:      drivers/tty/serial/zs.*
22114
22115 ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR
22116 M:      Minchan Kim <minchan@kernel.org>
22117 M:      Nitin Gupta <ngupta@vflare.org>
22118 R:      Sergey Senozhatsky <senozhatsky@chromium.org>
22119 L:      linux-mm@kvack.org
22120 S:      Maintained
22121 F:      Documentation/vm/zsmalloc.rst
22122 F:      include/linux/zsmalloc.h
22123 F:      mm/zsmalloc.c
22124
22125 ZSTD
22126 M:      Nick Terrell <terrelln@fb.com>
22127 S:      Maintained
22128 B:      https://github.com/facebook/zstd/issues
22129 T:      git git://github.com/terrelln/linux.git
22130 F:      include/linux/zstd*
22131 F:      lib/zstd/
22132 F:      lib/decompress_unzstd.c
22133 F:      crypto/zstd.c
22134 N:      zstd
22135 K:      zstd
22136
22137 ZSWAP COMPRESSED SWAP CACHING
22138 M:      Seth Jennings <sjenning@redhat.com>
22139 M:      Dan Streetman <ddstreet@ieee.org>
22140 M:      Vitaly Wool <vitaly.wool@konsulko.com>
22141 L:      linux-mm@kvack.org
22142 S:      Maintained
22143 F:      mm/zswap.c
22144
22145 THE REST
22146 M:      Linus Torvalds <torvalds@linux-foundation.org>
22147 L:      linux-kernel@vger.kernel.org
22148 S:      Buried alive in reporters
22149 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
22150 F:      *
22151 F:      */