Merge tag 'prlimit-tasklist_lock-for-v5.18' of git://git.kernel.org/pub/scm/linux...
[linux-2.6-microblaze.git] / MAINTAINERS
1 List of maintainers and how to submit kernel changes
2 ====================================================
3
4 Please try to follow the guidelines below.  This will make things
5 easier on the maintainers.  Not all of these guidelines matter for every
6 trivial patch so apply some common sense.
7
8 Tips for patch submitters
9 -------------------------
10
11 1.      Always *test* your changes, however small, on at least 4 or
12         5 people, preferably many more.
13
14 2.      Try to release a few ALPHA test versions to the net. Announce
15         them onto the kernel channel and await results. This is especially
16         important for device drivers, because often that's the only way
17         you will find things like the fact version 3 firmware needs
18         a magic fix you didn't know about, or some clown changed the
19         chips on a board and not its name.  (Don't laugh!  Look at the
20         SMC etherpower for that.)
21
22 3.      Make sure your changes compile correctly in multiple
23         configurations. In particular check that changes work both as a
24         module and built into the kernel.
25
26 4.      When you are happy with a change make it generally available for
27         testing and await feedback.
28
29 5.      Make a patch available to the relevant maintainer in the list. Use
30         ``diff -u`` to make the patch easy to merge. Be prepared to get your
31         changes sent back with seemingly silly requests about formatting
32         and variable names.  These aren't as silly as they seem. One
33         job the maintainers (and especially Linus) do is to keep things
34         looking the same. Sometimes this means that the clever hack in
35         your driver to get around a problem actually needs to become a
36         generalized kernel feature ready for next time.
37
38         PLEASE check your patch with the automated style checker
39         (scripts/checkpatch.pl) to catch trivial style violations.
40         See Documentation/process/coding-style.rst for guidance here.
41
42         PLEASE CC: the maintainers and mailing lists that are generated
43         by ``scripts/get_maintainer.pl.`` The results returned by the
44         script will be best if you have git installed and are making
45         your changes in a branch derived from Linus' latest git tree.
46         See Documentation/process/submitting-patches.rst for details.
47
48         PLEASE try to include any credit lines you want added with the
49         patch. It avoids people being missed off by mistake and makes
50         it easier to know who wants adding and who doesn't.
51
52         PLEASE document known bugs. If it doesn't work for everything
53         or does something very odd once a month document it.
54
55         PLEASE remember that submissions must be made under the terms
56         of the Linux Foundation certificate of contribution and should
57         include a Signed-off-by: line.  The current version of this
58         "Developer's Certificate of Origin" (DCO) is listed in the file
59         Documentation/process/submitting-patches.rst.
60
61 6.      Make sure you have the right to send any changes you make. If you
62         do changes at work you may find your employer owns the patch
63         not you.
64
65 7.      When sending security related changes or reports to a maintainer
66         please Cc: security@kernel.org, especially if the maintainer
67         does not respond. Please keep in mind that the security team is
68         a small set of people who can be efficient only when working on
69         verified bugs. Please only Cc: this list when you have identified
70         that the bug would present a short-term risk to other users if it
71         were publicly disclosed. For example, reports of address leaks do
72         not represent an immediate threat and are better handled publicly,
73         and ideally, should come with a patch proposal. Please do not send
74         automated reports to this list either. Such bugs will be handled
75         better and faster in the usual public places. See
76         Documentation/admin-guide/security-bugs.rst for details.
77
78 8.      Happy hacking.
79
80 Descriptions of section entries and preferred order
81 ---------------------------------------------------
82
83         M: *Mail* patches to: FullName <address@domain>
84         R: Designated *Reviewer*: FullName <address@domain>
85            These reviewers should be CCed on patches.
86         L: *Mailing list* that is relevant to this area
87         S: *Status*, one of the following:
88            Supported:   Someone is actually paid to look after this.
89            Maintained:  Someone actually looks after it.
90            Odd Fixes:   It has a maintainer but they don't have time to do
91                         much other than throw the odd patch in. See below..
92            Orphan:      No current maintainer [but maybe you could take the
93                         role as you write your new code].
94            Obsolete:    Old code. Something tagged obsolete generally means
95                         it has been replaced by a better system and you
96                         should be using that.
97         W: *Web-page* with status/info
98         Q: *Patchwork* web based patch tracking system site
99         B: URI for where to file *bugs*. A web-page with detailed bug
100            filing info, a direct bug tracker link, or a mailto: URI.
101         C: URI for *chat* protocol, server and channel where developers
102            usually hang out, for example irc://server/channel.
103         P: Subsystem Profile document for more details submitting
104            patches to the given subsystem. This is either an in-tree file,
105            or a URI. See Documentation/maintainer/maintainer-entry-profile.rst
106            for details.
107         T: *SCM* tree type and location.
108            Type is one of: git, hg, quilt, stgit, topgit
109         F: *Files* and directories wildcard patterns.
110            A trailing slash includes all files and subdirectory files.
111            F:   drivers/net/    all files in and below drivers/net
112            F:   drivers/net/*   all files in drivers/net, but not below
113            F:   */net/*         all files in "any top level directory"/net
114            One pattern per line.  Multiple F: lines acceptable.
115         X: *Excluded* files and directories that are NOT maintained, same
116            rules as F:. Files exclusions are tested before file matches.
117            Can be useful for excluding a specific subdirectory, for instance:
118            F:   net/
119            X:   net/ipv6/
120            matches all files in and below net excluding net/ipv6/
121         N: Files and directories *Regex* patterns.
122            N:   [^a-z]tegra     all files whose path contains tegra
123                                 (not including files like integrator)
124            One pattern per line.  Multiple N: lines acceptable.
125            scripts/get_maintainer.pl has different behavior for files that
126            match F: pattern and matches of N: patterns.  By default,
127            get_maintainer will not look at git log history when an F: pattern
128            match occurs.  When an N: match occurs, git log history is used
129            to also notify the people that have git commit signatures.
130         K: *Content regex* (perl extended) pattern match in a patch or file.
131            For instance:
132            K: of_get_profile
133               matches patches or files that contain "of_get_profile"
134            K: \b(printk|pr_(info|err))\b
135               matches patches or files that contain one or more of the words
136               printk, pr_info or pr_err
137            One regex pattern per line.  Multiple K: lines acceptable.
138
139 Maintainers List
140 ----------------
141
142 .. note:: When reading this list, please look for the most precise areas
143           first. When adding to this list, please keep the entries in
144           alphabetical order.
145
146 3C59X NETWORK DRIVER
147 M:      Steffen Klassert <klassert@kernel.org>
148 L:      netdev@vger.kernel.org
149 S:      Odd Fixes
150 F:      Documentation/networking/device_drivers/ethernet/3com/vortex.rst
151 F:      drivers/net/ethernet/3com/3c59x.c
152
153 3CR990 NETWORK DRIVER
154 M:      David Dillow <dave@thedillows.org>
155 L:      netdev@vger.kernel.org
156 S:      Maintained
157 F:      drivers/net/ethernet/3com/typhoon*
158
159 3WARE SAS/SATA-RAID SCSI DRIVERS (3W-XXXX, 3W-9XXX, 3W-SAS)
160 M:      Adam Radford <aradford@gmail.com>
161 L:      linux-scsi@vger.kernel.org
162 S:      Supported
163 W:      http://www.lsi.com
164 F:      drivers/scsi/3w-*
165
166 53C700 AND 53C700-66 SCSI DRIVER
167 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
168 L:      linux-scsi@vger.kernel.org
169 S:      Maintained
170 F:      drivers/scsi/53c700*
171
172 6LOWPAN GENERIC (BTLE/IEEE 802.15.4)
173 M:      Alexander Aring <alex.aring@gmail.com>
174 M:      Jukka Rissanen <jukka.rissanen@linux.intel.com>
175 L:      linux-bluetooth@vger.kernel.org
176 L:      linux-wpan@vger.kernel.org
177 S:      Maintained
178 F:      Documentation/networking/6lowpan.rst
179 F:      include/net/6lowpan.h
180 F:      net/6lowpan/
181
182 6PACK NETWORK DRIVER FOR AX.25
183 M:      Andreas Koensgen <ajk@comnets.uni-bremen.de>
184 L:      linux-hams@vger.kernel.org
185 S:      Maintained
186 F:      drivers/net/hamradio/6pack.c
187
188 802.11 (including CFG80211/NL80211)
189 M:      Johannes Berg <johannes@sipsolutions.net>
190 L:      linux-wireless@vger.kernel.org
191 S:      Maintained
192 W:      https://wireless.wiki.kernel.org/
193 Q:      https://patchwork.kernel.org/project/linux-wireless/list/
194 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless.git
195 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless-next.git
196 F:      Documentation/driver-api/80211/cfg80211.rst
197 F:      Documentation/networking/regulatory.rst
198 F:      include/linux/ieee80211.h
199 F:      include/net/cfg80211.h
200 F:      include/net/ieee80211_radiotap.h
201 F:      include/net/iw_handler.h
202 F:      include/net/wext.h
203 F:      include/uapi/linux/nl80211.h
204 F:      net/wireless/
205
206 8169 10/100/1000 GIGABIT ETHERNET DRIVER
207 M:      Heiner Kallweit <hkallweit1@gmail.com>
208 M:      nic_swsd@realtek.com
209 L:      netdev@vger.kernel.org
210 S:      Maintained
211 F:      drivers/net/ethernet/realtek/r8169*
212
213 8250/16?50 (AND CLONE UARTS) SERIAL DRIVER
214 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
215 L:      linux-serial@vger.kernel.org
216 S:      Maintained
217 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
218 F:      drivers/tty/serial/8250*
219 F:      include/linux/serial_8250.h
220
221 8390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.]
222 L:      netdev@vger.kernel.org
223 S:      Orphan / Obsolete
224 F:      drivers/net/ethernet/8390/
225
226 9P FILE SYSTEM
227 M:      Eric Van Hensbergen <ericvh@gmail.com>
228 M:      Latchesar Ionkov <lucho@ionkov.net>
229 M:      Dominique Martinet <asmadeus@codewreck.org>
230 R:      Christian Schoenebeck <linux_oss@crudebyte.com>
231 L:      v9fs-developer@lists.sourceforge.net
232 S:      Maintained
233 W:      http://swik.net/v9fs
234 Q:      http://patchwork.kernel.org/project/v9fs-devel/list/
235 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs.git
236 T:      git git://github.com/martinetd/linux.git
237 F:      Documentation/filesystems/9p.rst
238 F:      fs/9p/
239 F:      include/net/9p/
240 F:      include/trace/events/9p.h
241 F:      include/uapi/linux/virtio_9p.h
242 F:      net/9p/
243
244 A8293 MEDIA DRIVER
245 M:      Antti Palosaari <crope@iki.fi>
246 L:      linux-media@vger.kernel.org
247 S:      Maintained
248 W:      https://linuxtv.org
249 W:      http://palosaari.fi/linux/
250 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
251 T:      git git://linuxtv.org/anttip/media_tree.git
252 F:      drivers/media/dvb-frontends/a8293*
253
254 AACRAID SCSI RAID DRIVER
255 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
256 L:      linux-scsi@vger.kernel.org
257 S:      Supported
258 W:      http://www.adaptec.com/
259 F:      Documentation/scsi/aacraid.rst
260 F:      drivers/scsi/aacraid/
261
262 ABI/API
263 L:      linux-api@vger.kernel.org
264 F:      include/linux/syscalls.h
265 F:      kernel/sys_ni.c
266 X:      include/uapi/
267 X:      arch/*/include/uapi/
268
269 ABIT UGURU 1,2 HARDWARE MONITOR DRIVER
270 M:      Hans de Goede <hdegoede@redhat.com>
271 L:      linux-hwmon@vger.kernel.org
272 S:      Maintained
273 F:      drivers/hwmon/abituguru.c
274
275 ABIT UGURU 3 HARDWARE MONITOR DRIVER
276 M:      Alistair John Strachan <alistair@devzero.co.uk>
277 L:      linux-hwmon@vger.kernel.org
278 S:      Maintained
279 F:      drivers/hwmon/abituguru3.c
280
281 ACCES 104-DIO-48E GPIO DRIVER
282 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
283 L:      linux-gpio@vger.kernel.org
284 S:      Maintained
285 F:      drivers/gpio/gpio-104-dio-48e.c
286
287 ACCES 104-IDI-48 GPIO DRIVER
288 M:      "William Breathitt Gray" <vilhelm.gray@gmail.com>
289 L:      linux-gpio@vger.kernel.org
290 S:      Maintained
291 F:      drivers/gpio/gpio-104-idi-48.c
292
293 ACCES 104-IDIO-16 GPIO DRIVER
294 M:      "William Breathitt Gray" <vilhelm.gray@gmail.com>
295 L:      linux-gpio@vger.kernel.org
296 S:      Maintained
297 F:      drivers/gpio/gpio-104-idio-16.c
298
299 ACCES 104-QUAD-8 DRIVER
300 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
301 M:      Syed Nayyar Waris <syednwaris@gmail.com>
302 L:      linux-iio@vger.kernel.org
303 S:      Maintained
304 F:      drivers/counter/104-quad-8.c
305
306 ACCES PCI-IDIO-16 GPIO DRIVER
307 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
308 L:      linux-gpio@vger.kernel.org
309 S:      Maintained
310 F:      drivers/gpio/gpio-pci-idio-16.c
311
312 ACCES PCIe-IDIO-24 GPIO DRIVER
313 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
314 L:      linux-gpio@vger.kernel.org
315 S:      Maintained
316 F:      drivers/gpio/gpio-pcie-idio-24.c
317
318 ACENIC DRIVER
319 M:      Jes Sorensen <jes@trained-monkey.org>
320 L:      linux-acenic@sunsite.dk
321 S:      Maintained
322 F:      drivers/net/ethernet/alteon/acenic*
323
324 ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER
325 M:      Peter Kaestle <peter@piie.net>
326 L:      platform-driver-x86@vger.kernel.org
327 S:      Maintained
328 W:      http://piie.net/?section=acerhdf
329 F:      drivers/platform/x86/acerhdf.c
330
331 ACER WMI LAPTOP EXTRAS
332 M:      "Lee, Chun-Yi" <jlee@suse.com>
333 L:      platform-driver-x86@vger.kernel.org
334 S:      Maintained
335 F:      drivers/platform/x86/acer-wmi.c
336
337 ACPI
338 M:      "Rafael J. Wysocki" <rafael@kernel.org>
339 R:      Len Brown <lenb@kernel.org>
340 L:      linux-acpi@vger.kernel.org
341 S:      Supported
342 W:      https://01.org/linux-acpi
343 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
344 B:      https://bugzilla.kernel.org
345 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
346 F:      Documentation/ABI/testing/configfs-acpi
347 F:      Documentation/ABI/testing/sysfs-bus-acpi
348 F:      Documentation/firmware-guide/acpi/
349 F:      drivers/acpi/
350 F:      drivers/pci/*/*acpi*
351 F:      drivers/pci/*acpi*
352 F:      drivers/pnp/pnpacpi/
353 F:      include/acpi/
354 F:      include/linux/acpi.h
355 F:      include/linux/fwnode.h
356 F:      tools/power/acpi/
357
358 ACPI APEI
359 M:      "Rafael J. Wysocki" <rafael@kernel.org>
360 R:      Len Brown <lenb@kernel.org>
361 R:      James Morse <james.morse@arm.com>
362 R:      Tony Luck <tony.luck@intel.com>
363 R:      Borislav Petkov <bp@alien8.de>
364 L:      linux-acpi@vger.kernel.org
365 F:      drivers/acpi/apei/
366
367 ACPI COMPONENT ARCHITECTURE (ACPICA)
368 M:      Robert Moore <robert.moore@intel.com>
369 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
370 L:      linux-acpi@vger.kernel.org
371 L:      devel@acpica.org
372 S:      Supported
373 W:      https://acpica.org/
374 W:      https://github.com/acpica/acpica/
375 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
376 B:      https://bugzilla.kernel.org
377 B:      https://bugs.acpica.org
378 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
379 F:      drivers/acpi/acpica/
380 F:      include/acpi/
381 F:      tools/power/acpi/
382
383 ACPI FOR ARM64 (ACPI/arm64)
384 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
385 M:      Hanjun Guo <guohanjun@huawei.com>
386 M:      Sudeep Holla <sudeep.holla@arm.com>
387 L:      linux-acpi@vger.kernel.org
388 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
389 S:      Maintained
390 F:      drivers/acpi/arm64
391
392 ACPI SERIAL MULTI INSTANTIATE DRIVER
393 M:      Hans de Goede <hdegoede@redhat.com>
394 L:      platform-driver-x86@vger.kernel.org
395 S:      Maintained
396 F:      drivers/platform/x86/serial-multi-instantiate.c
397
398 ACPI PCC(Platform Communication Channel) MAILBOX DRIVER
399 M:      Sudeep Holla <sudeep.holla@arm.com>
400 L:      linux-acpi@vger.kernel.org
401 S:      Supported
402 F:      drivers/mailbox/pcc.c
403
404 ACPI PMIC DRIVERS
405 M:      "Rafael J. Wysocki" <rafael@kernel.org>
406 M:      Len Brown <lenb@kernel.org>
407 R:      Andy Shevchenko <andy@kernel.org>
408 R:      Mika Westerberg <mika.westerberg@linux.intel.com>
409 L:      linux-acpi@vger.kernel.org
410 S:      Supported
411 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
412 B:      https://bugzilla.kernel.org
413 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
414 F:      drivers/acpi/pmic/
415
416 ACPI THERMAL DRIVER
417 M:      Rafael J. Wysocki <rafael@kernel.org>
418 R:      Zhang Rui <rui.zhang@intel.com>
419 L:      linux-acpi@vger.kernel.org
420 S:      Supported
421 W:      https://01.org/linux-acpi
422 B:      https://bugzilla.kernel.org
423 F:      drivers/acpi/*thermal*
424
425 ACPI VIOT DRIVER
426 M:      Jean-Philippe Brucker <jean-philippe@linaro.org>
427 L:      linux-acpi@vger.kernel.org
428 L:      iommu@lists.linux-foundation.org
429 S:      Maintained
430 F:      drivers/acpi/viot.c
431 F:      include/linux/acpi_viot.h
432
433 ACPI WMI DRIVER
434 L:      platform-driver-x86@vger.kernel.org
435 S:      Orphan
436 F:      drivers/platform/x86/wmi.c
437 F:      include/uapi/linux/wmi.h
438
439 ACRN HYPERVISOR SERVICE MODULE
440 M:      Fei Li <fei1.li@intel.com>
441 L:      acrn-dev@lists.projectacrn.org (subscribers-only)
442 S:      Supported
443 W:      https://projectacrn.org
444 F:      Documentation/virt/acrn/
445 F:      drivers/virt/acrn/
446 F:      include/uapi/linux/acrn.h
447
448 AD1889 ALSA SOUND DRIVER
449 L:      linux-parisc@vger.kernel.org
450 S:      Maintained
451 W:      https://parisc.wiki.kernel.org/index.php/AD1889
452 F:      sound/pci/ad1889.*
453
454 AD5110 ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
455 M:      Mugilraj Dhavachelvan <dmugil2000@gmail.com>
456 L:      linux-iio@vger.kernel.org
457 S:      Supported
458 F:      drivers/iio/potentiometer/ad5110.c
459
460 AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
461 M:      Michael Hennerich <michael.hennerich@analog.com>
462 S:      Supported
463 W:      http://wiki.analog.com/AD5254
464 W:      http://ez.analog.com/community/linux-device-drivers
465 F:      drivers/misc/ad525x_dpot.c
466
467 AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821)
468 M:      Michael Hennerich <michael.hennerich@analog.com>
469 S:      Supported
470 W:      http://wiki.analog.com/AD5398
471 W:      http://ez.analog.com/community/linux-device-drivers
472 F:      drivers/regulator/ad5398.c
473
474 AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A)
475 M:      Michael Hennerich <michael.hennerich@analog.com>
476 S:      Supported
477 W:      http://wiki.analog.com/AD7142
478 W:      http://ez.analog.com/community/linux-device-drivers
479 F:      drivers/input/misc/ad714x.c
480
481 AD7877 TOUCHSCREEN DRIVER
482 M:      Michael Hennerich <michael.hennerich@analog.com>
483 S:      Supported
484 W:      http://wiki.analog.com/AD7877
485 W:      http://ez.analog.com/community/linux-device-drivers
486 F:      drivers/input/touchscreen/ad7877.c
487
488 AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889)
489 M:      Michael Hennerich <michael.hennerich@analog.com>
490 S:      Supported
491 W:      http://wiki.analog.com/AD7879
492 W:      http://ez.analog.com/community/linux-device-drivers
493 F:      drivers/input/touchscreen/ad7879.c
494
495 ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR)
496 M:      Jiri Kosina <jikos@kernel.org>
497 S:      Maintained
498
499 ADF7242 IEEE 802.15.4 RADIO DRIVER
500 M:      Michael Hennerich <michael.hennerich@analog.com>
501 L:      linux-wpan@vger.kernel.org
502 S:      Supported
503 W:      https://wiki.analog.com/ADF7242
504 W:      http://ez.analog.com/community/linux-device-drivers
505 F:      Documentation/devicetree/bindings/net/ieee802154/adf7242.txt
506 F:      drivers/net/ieee802154/adf7242.c
507
508 ADM1025 HARDWARE MONITOR DRIVER
509 M:      Jean Delvare <jdelvare@suse.com>
510 L:      linux-hwmon@vger.kernel.org
511 S:      Maintained
512 F:      Documentation/hwmon/adm1025.rst
513 F:      drivers/hwmon/adm1025.c
514
515 ADM1029 HARDWARE MONITOR DRIVER
516 M:      Corentin Labbe <clabbe.montjoie@gmail.com>
517 L:      linux-hwmon@vger.kernel.org
518 S:      Maintained
519 F:      drivers/hwmon/adm1029.c
520
521 ADM8211 WIRELESS DRIVER
522 L:      linux-wireless@vger.kernel.org
523 S:      Orphan
524 W:      https://wireless.wiki.kernel.org/
525 F:      drivers/net/wireless/admtek/adm8211.*
526
527 ADP1653 FLASH CONTROLLER DRIVER
528 M:      Sakari Ailus <sakari.ailus@iki.fi>
529 L:      linux-media@vger.kernel.org
530 S:      Maintained
531 F:      drivers/media/i2c/adp1653.c
532 F:      include/media/i2c/adp1653.h
533
534 ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501)
535 M:      Michael Hennerich <michael.hennerich@analog.com>
536 S:      Supported
537 W:      http://wiki.analog.com/ADP5520
538 W:      http://ez.analog.com/community/linux-device-drivers
539 F:      drivers/gpio/gpio-adp5520.c
540 F:      drivers/input/keyboard/adp5520-keys.c
541 F:      drivers/leds/leds-adp5520.c
542 F:      drivers/mfd/adp5520.c
543 F:      drivers/video/backlight/adp5520_bl.c
544
545 ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587)
546 M:      Michael Hennerich <michael.hennerich@analog.com>
547 S:      Supported
548 W:      http://wiki.analog.com/ADP5588
549 W:      http://ez.analog.com/community/linux-device-drivers
550 F:      drivers/gpio/gpio-adp5588.c
551 F:      drivers/input/keyboard/adp5588-keys.c
552
553 ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863)
554 M:      Michael Hennerich <michael.hennerich@analog.com>
555 S:      Supported
556 W:      http://wiki.analog.com/ADP8860
557 W:      http://ez.analog.com/community/linux-device-drivers
558 F:      drivers/video/backlight/adp8860_bl.c
559
560 ADT746X FAN DRIVER
561 M:      Colin Leroy <colin@colino.net>
562 S:      Maintained
563 F:      drivers/macintosh/therm_adt746x.c
564
565 ADT7475 HARDWARE MONITOR DRIVER
566 M:      Jean Delvare <jdelvare@suse.com>
567 L:      linux-hwmon@vger.kernel.org
568 S:      Maintained
569 F:      Documentation/hwmon/adt7475.rst
570 F:      drivers/hwmon/adt7475.c
571
572 ADVANSYS SCSI DRIVER
573 M:      Matthew Wilcox <willy@infradead.org>
574 M:      Hannes Reinecke <hare@suse.com>
575 L:      linux-scsi@vger.kernel.org
576 S:      Maintained
577 F:      Documentation/scsi/advansys.rst
578 F:      drivers/scsi/advansys.c
579
580 ADVANTECH SWBTN DRIVER
581 M:      Andrea Ho <Andrea.Ho@advantech.com.tw>
582 L:      platform-driver-x86@vger.kernel.org
583 S:      Maintained
584 F:      drivers/platform/x86/adv_swbutton.c
585
586 ADXL313 THREE-AXIS DIGITAL ACCELEROMETER DRIVER
587 M:      Lucas Stankus <lucas.p.stankus@gmail.com>
588 S:      Supported
589 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl313.yaml
590 F:      drivers/iio/accel/adxl313*
591
592 ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346)
593 M:      Michael Hennerich <michael.hennerich@analog.com>
594 S:      Supported
595 W:      http://wiki.analog.com/ADXL345
596 W:      http://ez.analog.com/community/linux-device-drivers
597 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl345.yaml
598 F:      drivers/input/misc/adxl34x.c
599
600 ADXL355 THREE-AXIS DIGITAL ACCELEROMETER DRIVER
601 M:      Puranjay Mohan <puranjay12@gmail.com>
602 L:      linux-iio@vger.kernel.org
603 S:      Supported
604 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl355.yaml
605 F:      drivers/iio/accel/adxl355.h
606 F:      drivers/iio/accel/adxl355_core.c
607 F:      drivers/iio/accel/adxl355_i2c.c
608 F:      drivers/iio/accel/adxl355_spi.c
609
610 ADXL372 THREE-AXIS DIGITAL ACCELEROMETER DRIVER
611 M:      Michael Hennerich <michael.hennerich@analog.com>
612 S:      Supported
613 W:      http://ez.analog.com/community/linux-device-drivers
614 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl372.yaml
615 F:      drivers/iio/accel/adxl372.c
616 F:      drivers/iio/accel/adxl372_i2c.c
617 F:      drivers/iio/accel/adxl372_spi.c
618
619 AF9013 MEDIA DRIVER
620 M:      Antti Palosaari <crope@iki.fi>
621 L:      linux-media@vger.kernel.org
622 S:      Maintained
623 W:      https://linuxtv.org
624 W:      http://palosaari.fi/linux/
625 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
626 T:      git git://linuxtv.org/anttip/media_tree.git
627 F:      drivers/media/dvb-frontends/af9013*
628
629 AF9033 MEDIA DRIVER
630 M:      Antti Palosaari <crope@iki.fi>
631 L:      linux-media@vger.kernel.org
632 S:      Maintained
633 W:      https://linuxtv.org
634 W:      http://palosaari.fi/linux/
635 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
636 T:      git git://linuxtv.org/anttip/media_tree.git
637 F:      drivers/media/dvb-frontends/af9033*
638
639 AFFS FILE SYSTEM
640 M:      David Sterba <dsterba@suse.com>
641 L:      linux-fsdevel@vger.kernel.org
642 S:      Odd Fixes
643 F:      Documentation/filesystems/affs.rst
644 F:      fs/affs/
645
646 AFS FILESYSTEM
647 M:      David Howells <dhowells@redhat.com>
648 M:      Marc Dionne <marc.dionne@auristor.com>
649 L:      linux-afs@lists.infradead.org
650 S:      Supported
651 W:      https://www.infradead.org/~dhowells/kafs/
652 F:      Documentation/filesystems/afs.rst
653 F:      fs/afs/
654 F:      include/trace/events/afs.h
655
656 AGPGART DRIVER
657 M:      David Airlie <airlied@linux.ie>
658 S:      Maintained
659 T:      git git://anongit.freedesktop.org/drm/drm
660 F:      drivers/char/agp/
661 F:      include/linux/agp*
662 F:      include/uapi/linux/agp*
663
664 AHA152X SCSI DRIVER
665 M:      "Juergen E. Fischer" <fischer@norbit.de>
666 L:      linux-scsi@vger.kernel.org
667 S:      Maintained
668 F:      drivers/scsi/aha152x*
669 F:      drivers/scsi/pcmcia/aha152x*
670
671 AIC7XXX / AIC79XX SCSI DRIVER
672 M:      Hannes Reinecke <hare@suse.com>
673 L:      linux-scsi@vger.kernel.org
674 S:      Maintained
675 F:      drivers/scsi/aic7xxx/
676
677 AIMSLAB FM RADIO RECEIVER DRIVER
678 M:      Hans Verkuil <hverkuil@xs4all.nl>
679 L:      linux-media@vger.kernel.org
680 S:      Maintained
681 W:      https://linuxtv.org
682 T:      git git://linuxtv.org/media_tree.git
683 F:      drivers/media/radio/radio-aimslab*
684
685 AIO
686 M:      Benjamin LaHaise <bcrl@kvack.org>
687 L:      linux-aio@kvack.org
688 S:      Supported
689 F:      fs/aio.c
690 F:      include/linux/*aio*.h
691
692 AIRSPY MEDIA DRIVER
693 M:      Antti Palosaari <crope@iki.fi>
694 L:      linux-media@vger.kernel.org
695 S:      Maintained
696 W:      https://linuxtv.org
697 W:      http://palosaari.fi/linux/
698 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
699 T:      git git://linuxtv.org/anttip/media_tree.git
700 F:      drivers/media/usb/airspy/
701
702 ALACRITECH GIGABIT ETHERNET DRIVER
703 M:      Lino Sanfilippo <LinoSanfilippo@gmx.de>
704 S:      Maintained
705 F:      drivers/net/ethernet/alacritech/*
706
707 ALCATEL SPEEDTOUCH USB DRIVER
708 M:      Duncan Sands <duncan.sands@free.fr>
709 L:      linux-usb@vger.kernel.org
710 S:      Maintained
711 W:      http://www.linux-usb.org/SpeedTouch/
712 F:      drivers/usb/atm/speedtch.c
713 F:      drivers/usb/atm/usbatm.c
714
715 ALCHEMY AU1XX0 MMC DRIVER
716 M:      Manuel Lauss <manuel.lauss@gmail.com>
717 S:      Maintained
718 F:      drivers/mmc/host/au1xmmc.c
719
720 ALI1563 I2C DRIVER
721 M:      Rudolf Marek <r.marek@assembler.cz>
722 L:      linux-i2c@vger.kernel.org
723 S:      Maintained
724 F:      Documentation/i2c/busses/i2c-ali1563.rst
725 F:      drivers/i2c/busses/i2c-ali1563.c
726
727 ALIENWARE WMI DRIVER
728 L:      Dell.Client.Kernel@dell.com
729 S:      Maintained
730 F:      drivers/platform/x86/dell/alienware-wmi.c
731
732 ALL SENSORS DLH SERIES PRESSURE SENSORS DRIVER
733 M:      Tomislav Denis <tomislav.denis@avl.com>
734 L:      linux-iio@vger.kernel.org
735 S:      Maintained
736 W:      http://www.allsensors.com/
737 F:      Documentation/devicetree/bindings/iio/pressure/asc,dlhl60d.yaml
738 F:      drivers/iio/pressure/dlhl60d.c
739
740 ALLEGRO DVT VIDEO IP CORE DRIVER
741 M:      Michael Tretter <m.tretter@pengutronix.de>
742 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
743 L:      linux-media@vger.kernel.org
744 S:      Maintained
745 F:      Documentation/devicetree/bindings/media/allegro,al5e.yaml
746 F:      drivers/media/platform/allegro-dvt/
747
748 ALLWINNER A10 CSI DRIVER
749 M:      Maxime Ripard <mripard@kernel.org>
750 L:      linux-media@vger.kernel.org
751 S:      Maintained
752 T:      git git://linuxtv.org/media_tree.git
753 F:      Documentation/devicetree/bindings/media/allwinner,sun4i-a10-csi.yaml
754 F:      drivers/media/platform/sunxi/sun4i-csi/
755
756 ALLWINNER CPUFREQ DRIVER
757 M:      Yangtao Li <tiny.windzz@gmail.com>
758 L:      linux-pm@vger.kernel.org
759 S:      Maintained
760 F:      Documentation/devicetree/bindings/opp/allwinner,sun50i-h6-operating-points.yaml
761 F:      drivers/cpufreq/sun50i-cpufreq-nvmem.c
762
763 ALLWINNER CRYPTO DRIVERS
764 M:      Corentin Labbe <clabbe.montjoie@gmail.com>
765 L:      linux-crypto@vger.kernel.org
766 S:      Maintained
767 F:      drivers/crypto/allwinner/
768
769 ALLWINNER HARDWARE SPINLOCK SUPPORT
770 M:      Wilken Gottwalt <wilken.gottwalt@posteo.net>
771 S:      Maintained
772 F:      Documentation/devicetree/bindings/hwlock/allwinner,sun6i-a31-hwspinlock.yaml
773 F:      drivers/hwspinlock/sun6i_hwspinlock.c
774
775 ALLWINNER THERMAL DRIVER
776 M:      Vasily Khoruzhick <anarsoul@gmail.com>
777 M:      Yangtao Li <tiny.windzz@gmail.com>
778 L:      linux-pm@vger.kernel.org
779 S:      Maintained
780 F:      Documentation/devicetree/bindings/thermal/allwinner,sun8i-a83t-ths.yaml
781 F:      drivers/thermal/sun8i_thermal.c
782
783 ALLWINNER VPU DRIVER
784 M:      Maxime Ripard <mripard@kernel.org>
785 M:      Paul Kocialkowski <paul.kocialkowski@bootlin.com>
786 L:      linux-media@vger.kernel.org
787 S:      Maintained
788 F:      drivers/staging/media/sunxi/cedrus/
789
790 ALPHA PORT
791 M:      Richard Henderson <rth@twiddle.net>
792 M:      Ivan Kokshaysky <ink@jurassic.park.msu.ru>
793 M:      Matt Turner <mattst88@gmail.com>
794 L:      linux-alpha@vger.kernel.org
795 S:      Odd Fixes
796 F:      arch/alpha/
797
798 ALPS PS/2 TOUCHPAD DRIVER
799 R:      Pali Rohár <pali@kernel.org>
800 F:      drivers/input/mouse/alps.*
801
802 ALTERA I2C CONTROLLER DRIVER
803 M:      Thor Thayer <thor.thayer@linux.intel.com>
804 S:      Maintained
805 F:      Documentation/devicetree/bindings/i2c/i2c-altera.txt
806 F:      drivers/i2c/busses/i2c-altera.c
807
808 ALTERA MAILBOX DRIVER
809 M:      Mun Yew Tham <mun.yew.tham@intel.com>
810 S:      Maintained
811 F:      drivers/mailbox/mailbox-altera.c
812
813 ALTERA MSGDMA IP CORE DRIVER
814 M:      Olivier Dautricourt <olivier.dautricourt@orolia.com>
815 R:      Stefan Roese <sr@denx.de>
816 L:      dmaengine@vger.kernel.org
817 S:      Odd Fixes
818 F:      Documentation/devicetree/bindings/dma/altr,msgdma.yaml
819 F:      drivers/dma/altera-msgdma.c
820
821 ALTERA PIO DRIVER
822 M:      Mun Yew Tham <mun.yew.tham@intel.com>
823 L:      linux-gpio@vger.kernel.org
824 S:      Maintained
825 F:      drivers/gpio/gpio-altera.c
826
827 ALTERA SYSTEM MANAGER DRIVER
828 M:      Thor Thayer <thor.thayer@linux.intel.com>
829 S:      Maintained
830 F:      drivers/mfd/altera-sysmgr.c
831 F:      include/linux/mfd/altera-sysmgr.h
832
833 ALTERA SYSTEM RESOURCE DRIVER FOR ARRIA10 DEVKIT
834 M:      Thor Thayer <thor.thayer@linux.intel.com>
835 S:      Maintained
836 F:      drivers/gpio/gpio-altera-a10sr.c
837 F:      drivers/mfd/altera-a10sr.c
838 F:      drivers/reset/reset-a10sr.c
839 F:      include/dt-bindings/reset/altr,rst-mgr-a10sr.h
840 F:      include/linux/mfd/altera-a10sr.h
841
842 ALTERA TRIPLE SPEED ETHERNET DRIVER
843 M:      Joyce Ooi <joyce.ooi@intel.com>
844 L:      netdev@vger.kernel.org
845 S:      Maintained
846 F:      drivers/net/ethernet/altera/
847
848 ALTERA UART/JTAG UART SERIAL DRIVERS
849 M:      Tobias Klauser <tklauser@distanz.ch>
850 L:      linux-serial@vger.kernel.org
851 S:      Maintained
852 F:      drivers/tty/serial/altera_jtaguart.c
853 F:      drivers/tty/serial/altera_uart.c
854 F:      include/linux/altera_jtaguart.h
855 F:      include/linux/altera_uart.h
856
857 AMAZON ANNAPURNA LABS FIC DRIVER
858 M:      Talel Shenhar <talel@amazon.com>
859 S:      Maintained
860 F:      Documentation/devicetree/bindings/interrupt-controller/amazon,al-fic.txt
861 F:      drivers/irqchip/irq-al-fic.c
862
863 AMAZON ANNAPURNA LABS MEMORY CONTROLLER EDAC
864 M:      Talel Shenhar <talel@amazon.com>
865 M:      Talel Shenhar <talelshenhar@gmail.com>
866 S:      Maintained
867 F:      Documentation/devicetree/bindings/edac/amazon,al-mc-edac.yaml
868 F:      drivers/edac/al_mc_edac.c
869
870 AMAZON ANNAPURNA LABS THERMAL MMIO DRIVER
871 M:      Talel Shenhar <talel@amazon.com>
872 S:      Maintained
873 F:      Documentation/devicetree/bindings/thermal/amazon,al-thermal.txt
874 F:      drivers/thermal/thermal_mmio.c
875
876 AMAZON ETHERNET DRIVERS
877 M:      Shay Agroskin <shayagr@amazon.com>
878 M:      Arthur Kiyanovski <akiyano@amazon.com>
879 R:      David Arinzon <darinzon@amazon.com>
880 R:      Noam Dagan <ndagan@amazon.com>
881 R:      Saeed Bishara <saeedb@amazon.com>
882 L:      netdev@vger.kernel.org
883 S:      Supported
884 F:      Documentation/networking/device_drivers/ethernet/amazon/ena.rst
885 F:      drivers/net/ethernet/amazon/
886
887 AMAZON RDMA EFA DRIVER
888 M:      Gal Pressman <galpress@amazon.com>
889 R:      Yossi Leybovich <sleybo@amazon.com>
890 L:      linux-rdma@vger.kernel.org
891 S:      Supported
892 Q:      https://patchwork.kernel.org/project/linux-rdma/list/
893 F:      drivers/infiniband/hw/efa/
894 F:      include/uapi/rdma/efa-abi.h
895
896 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER
897 M:      Tom Lendacky <thomas.lendacky@amd.com>
898 M:      John Allen <john.allen@amd.com>
899 L:      linux-crypto@vger.kernel.org
900 S:      Supported
901 F:      drivers/crypto/ccp/
902 F:      include/linux/ccp.h
903
904 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER - SEV SUPPORT
905 M:      Brijesh Singh <brijesh.singh@amd.com>
906 M:      Tom Lendacky <thomas.lendacky@amd.com>
907 L:      linux-crypto@vger.kernel.org
908 S:      Supported
909 F:      drivers/crypto/ccp/sev*
910 F:      include/uapi/linux/psp-sev.h
911
912 AMD DISPLAY CORE
913 M:      Harry Wentland <harry.wentland@amd.com>
914 M:      Leo Li <sunpeng.li@amd.com>
915 M:      Rodrigo Siqueira <Rodrigo.Siqueira@amd.com>
916 L:      amd-gfx@lists.freedesktop.org
917 S:      Supported
918 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
919 F:      drivers/gpu/drm/amd/display/
920
921 AMD FAM15H PROCESSOR POWER MONITORING DRIVER
922 M:      Huang Rui <ray.huang@amd.com>
923 L:      linux-hwmon@vger.kernel.org
924 S:      Supported
925 F:      Documentation/hwmon/fam15h_power.rst
926 F:      drivers/hwmon/fam15h_power.c
927
928 AMD FCH GPIO DRIVER
929 M:      Enrico Weigelt, metux IT consult <info@metux.net>
930 L:      linux-gpio@vger.kernel.org
931 S:      Maintained
932 F:      drivers/gpio/gpio-amd-fch.c
933 F:      include/linux/platform_data/gpio/gpio-amd-fch.h
934
935 AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
936 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
937 S:      Orphan
938 F:      drivers/usb/gadget/udc/amd5536udc.*
939
940 AMD GEODE PROCESSOR/CHIPSET SUPPORT
941 M:      Andres Salomon <dilinger@queued.net>
942 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
943 S:      Supported
944 W:      http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
945 F:      arch/x86/include/asm/geode.h
946 F:      drivers/char/hw_random/geode-rng.c
947 F:      drivers/crypto/geode*
948 F:      drivers/video/fbdev/geode/
949
950 AMD IOMMU (AMD-VI)
951 M:      Joerg Roedel <joro@8bytes.org>
952 R:      Suravee Suthikulpanit <suravee.suthikulpanit@amd.com>
953 L:      iommu@lists.linux-foundation.org
954 S:      Maintained
955 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
956 F:      drivers/iommu/amd/
957 F:      include/linux/amd-iommu.h
958
959 AMD KFD
960 M:      Felix Kuehling <Felix.Kuehling@amd.com>
961 L:      amd-gfx@lists.freedesktop.org
962 S:      Supported
963 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
964 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd*.[ch]
965 F:      drivers/gpu/drm/amd/amdkfd/
966 F:      drivers/gpu/drm/amd/include/cik_structs.h
967 F:      drivers/gpu/drm/amd/include/kgd_kfd_interface.h
968 F:      drivers/gpu/drm/amd/include/v9_structs.h
969 F:      drivers/gpu/drm/amd/include/vi_structs.h
970 F:      include/uapi/linux/kfd_ioctl.h
971 F:      include/uapi/linux/kfd_sysfs.h
972
973 AMD SPI DRIVER
974 M:      Sanjay R Mehta <sanju.mehta@amd.com>
975 S:      Maintained
976 F:      drivers/spi/spi-amd.c
977
978 AMD MP2 I2C DRIVER
979 M:      Elie Morisse <syniurge@gmail.com>
980 M:      Nehal Shah <nehal-bakulchandra.shah@amd.com>
981 M:      Shyam Sundar S K <shyam-sundar.s-k@amd.com>
982 L:      linux-i2c@vger.kernel.org
983 S:      Maintained
984 F:      drivers/i2c/busses/i2c-amd-mp2*
985
986 AMD PMC DRIVER
987 M:      Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
988 L:      platform-driver-x86@vger.kernel.org
989 S:      Maintained
990 F:      drivers/platform/x86/amd-pmc.*
991
992 AMD POWERPLAY AND SWSMU
993 M:      Evan Quan <evan.quan@amd.com>
994 L:      amd-gfx@lists.freedesktop.org
995 S:      Supported
996 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
997 F:      drivers/gpu/drm/amd/pm/
998
999 AMD PSTATE DRIVER
1000 M:      Huang Rui <ray.huang@amd.com>
1001 L:      linux-pm@vger.kernel.org
1002 S:      Supported
1003 F:      Documentation/admin-guide/pm/amd-pstate.rst
1004 F:      drivers/cpufreq/amd-pstate*
1005 F:      tools/power/x86/amd_pstate_tracer/amd_pstate_trace.py
1006
1007 AMD PTDMA DRIVER
1008 M:      Sanjay R Mehta <sanju.mehta@amd.com>
1009 L:      dmaengine@vger.kernel.org
1010 S:      Maintained
1011 F:      drivers/dma/ptdma/
1012
1013 AMD SEATTLE DEVICE TREE SUPPORT
1014 M:      Brijesh Singh <brijeshkumar.singh@amd.com>
1015 M:      Suravee Suthikulpanit <suravee.suthikulpanit@amd.com>
1016 M:      Tom Lendacky <thomas.lendacky@amd.com>
1017 S:      Supported
1018 F:      arch/arm64/boot/dts/amd/
1019
1020 AMD XGBE DRIVER
1021 M:      Tom Lendacky <thomas.lendacky@amd.com>
1022 L:      netdev@vger.kernel.org
1023 S:      Supported
1024 F:      arch/arm64/boot/dts/amd/amd-seattle-xgbe*.dtsi
1025 F:      drivers/net/ethernet/amd/xgbe/
1026
1027 AMD SENSOR FUSION HUB DRIVER
1028 M:      Nehal Shah <nehal-bakulchandra.shah@amd.com>
1029 M:      Basavaraj Natikar <basavaraj.natikar@amd.com>
1030 L:      linux-input@vger.kernel.org
1031 S:      Maintained
1032 F:      Documentation/hid/amd-sfh*
1033 F:      drivers/hid/amd-sfh-hid/
1034
1035 AMPHION VPU CODEC V4L2 DRIVER
1036 M:      Ming Qian <ming.qian@nxp.com>
1037 M:      Shijie Qin <shijie.qin@nxp.com>
1038 M:      Zhou Peng <eagle.zhou@nxp.com>
1039 L:      linux-media@vger.kernel.org
1040 S:      Maintained
1041 F:      Documentation/devicetree/bindings/media/amphion,vpu.yaml
1042 F:      drivers/media/platform/amphion/
1043
1044 AMS AS73211 DRIVER
1045 M:      Christian Eggers <ceggers@arri.de>
1046 L:      linux-iio@vger.kernel.org
1047 S:      Maintained
1048 F:      Documentation/devicetree/bindings/iio/light/ams,as73211.yaml
1049 F:      drivers/iio/light/as73211.c
1050
1051 AMT (Automatic Multicast Tunneling)
1052 M:      Taehee Yoo <ap420073@gmail.com>
1053 L:      netdev@vger.kernel.org
1054 S:      Maintained
1055 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
1056 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
1057 F:      drivers/net/amt.c
1058
1059 ANALOG DEVICES INC AD7192 DRIVER
1060 M:      Alexandru Tachici <alexandru.tachici@analog.com>
1061 L:      linux-iio@vger.kernel.org
1062 S:      Supported
1063 W:      http://ez.analog.com/community/linux-device-drivers
1064 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7192.yaml
1065 F:      drivers/iio/adc/ad7192.c
1066
1067 ANALOG DEVICES INC AD7292 DRIVER
1068 M:      Marcelo Schmitt <marcelo.schmitt1@gmail.com>
1069 L:      linux-iio@vger.kernel.org
1070 S:      Supported
1071 W:      http://ez.analog.com/community/linux-device-drivers
1072 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7292.yaml
1073 F:      drivers/iio/adc/ad7292.c
1074
1075 ANALOG DEVICES INC AD7768-1 DRIVER
1076 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1077 L:      linux-iio@vger.kernel.org
1078 S:      Supported
1079 W:      http://ez.analog.com/community/linux-device-drivers
1080 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7768-1.yaml
1081 F:      drivers/iio/adc/ad7768-1.c
1082
1083 ANALOG DEVICES INC AD7780 DRIVER
1084 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1085 M:      Renato Lui Geh <renatogeh@gmail.com>
1086 L:      linux-iio@vger.kernel.org
1087 S:      Supported
1088 W:      http://ez.analog.com/community/linux-device-drivers
1089 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7780.yaml
1090 F:      drivers/iio/adc/ad7780.c
1091
1092 ANALOG DEVICES INC AD74413R DRIVER
1093 M:      Cosmin Tanislav <cosmin.tanislav@analog.com>
1094 L:      linux-iio@vger.kernel.org
1095 S:      Supported
1096 W:      http://ez.analog.com/community/linux-device-drivers
1097 F:      Documentation/devicetree/bindings/iio/addac/adi,ad74413r.yaml
1098 F:      drivers/iio/addac/ad74413r.c
1099 F:      include/dt-bindings/iio/addac/adi,ad74413r.h
1100
1101 ANALOG DEVICES INC AD9389B DRIVER
1102 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1103 L:      linux-media@vger.kernel.org
1104 S:      Maintained
1105 F:      drivers/media/i2c/ad9389b*
1106
1107 ANALOG DEVICES INC ADGS1408 DRIVER
1108 M:      Mircea Caprioru <mircea.caprioru@analog.com>
1109 S:      Supported
1110 F:      Documentation/devicetree/bindings/mux/adi,adgs1408.txt
1111 F:      drivers/mux/adgs1408.c
1112
1113 ANALOG DEVICES INC ADIN DRIVER
1114 M:      Michael Hennerich <michael.hennerich@analog.com>
1115 L:      netdev@vger.kernel.org
1116 S:      Supported
1117 W:      http://ez.analog.com/community/linux-device-drivers
1118 F:      Documentation/devicetree/bindings/net/adi,adin.yaml
1119 F:      drivers/net/phy/adin.c
1120
1121 ANALOG DEVICES INC ADIS DRIVER LIBRARY
1122 M:      Nuno Sa <nuno.sa@analog.com>
1123 L:      linux-iio@vger.kernel.org
1124 S:      Supported
1125 F:      drivers/iio/imu/adis.c
1126 F:      include/linux/iio/imu/adis.h
1127
1128 ANALOG DEVICES INC ADIS16460 DRIVER
1129 M:      Dragos Bogdan <dragos.bogdan@analog.com>
1130 L:      linux-iio@vger.kernel.org
1131 S:      Supported
1132 W:      http://ez.analog.com/community/linux-device-drivers
1133 F:      Documentation/devicetree/bindings/iio/imu/adi,adis16460.yaml
1134 F:      drivers/iio/imu/adis16460.c
1135
1136 ANALOG DEVICES INC ADIS16475 DRIVER
1137 M:      Nuno Sa <nuno.sa@analog.com>
1138 L:      linux-iio@vger.kernel.org
1139 W:      http://ez.analog.com/community/linux-device-drivers
1140 S:      Supported
1141 F:      drivers/iio/imu/adis16475.c
1142 F:      Documentation/devicetree/bindings/iio/imu/adi,adis16475.yaml
1143
1144 ANALOG DEVICES INC ADM1177 DRIVER
1145 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1146 L:      linux-hwmon@vger.kernel.org
1147 S:      Supported
1148 W:      http://ez.analog.com/community/linux-device-drivers
1149 F:      Documentation/devicetree/bindings/hwmon/adi,adm1177.yaml
1150 F:      drivers/hwmon/adm1177.c
1151
1152 ANALOG DEVICES INC ADP5061 DRIVER
1153 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1154 L:      linux-pm@vger.kernel.org
1155 S:      Supported
1156 W:      http://ez.analog.com/community/linux-device-drivers
1157 F:      drivers/power/supply/adp5061.c
1158
1159 ANALOG DEVICES INC ADV7180 DRIVER
1160 M:      Lars-Peter Clausen <lars@metafoo.de>
1161 L:      linux-media@vger.kernel.org
1162 S:      Supported
1163 W:      http://ez.analog.com/community/linux-device-drivers
1164 F:      drivers/media/i2c/adv7180.c
1165 F:      Documentation/devicetree/bindings/media/i2c/adv7180.yaml
1166
1167 ANALOG DEVICES INC ADV748X DRIVER
1168 M:      Kieran Bingham <kieran.bingham@ideasonboard.com>
1169 L:      linux-media@vger.kernel.org
1170 S:      Maintained
1171 F:      Documentation/devicetree/bindings/media/i2c/adv748x.yaml
1172 F:      drivers/media/i2c/adv748x/*
1173
1174 ANALOG DEVICES INC ADV7511 DRIVER
1175 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1176 L:      linux-media@vger.kernel.org
1177 S:      Maintained
1178 F:      drivers/media/i2c/adv7511*
1179
1180 ANALOG DEVICES INC ADV7604 DRIVER
1181 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1182 L:      linux-media@vger.kernel.org
1183 S:      Maintained
1184 F:      drivers/media/i2c/adv7604*
1185 F:      Documentation/devicetree/bindings/media/i2c/adv7604.yaml
1186
1187 ANALOG DEVICES INC ADV7842 DRIVER
1188 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1189 L:      linux-media@vger.kernel.org
1190 S:      Maintained
1191 F:      drivers/media/i2c/adv7842*
1192
1193 ANALOG DEVICES INC ADXRS290 DRIVER
1194 M:      Nishant Malpani <nish.malpani25@gmail.com>
1195 L:      linux-iio@vger.kernel.org
1196 S:      Supported
1197 F:      drivers/iio/gyro/adxrs290.c
1198 F:      Documentation/devicetree/bindings/iio/gyroscope/adi,adxrs290.yaml
1199
1200 ANALOG DEVICES INC ASOC CODEC DRIVERS
1201 M:      Lars-Peter Clausen <lars@metafoo.de>
1202 M:      Nuno Sá <nuno.sa@analog.com>
1203 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1204 S:      Supported
1205 W:      http://wiki.analog.com/
1206 W:      http://ez.analog.com/community/linux-device-drivers
1207 F:      sound/soc/codecs/ad1*
1208 F:      sound/soc/codecs/ad7*
1209 F:      sound/soc/codecs/adau*
1210 F:      sound/soc/codecs/adav*
1211 F:      sound/soc/codecs/sigmadsp.*
1212 F:      sound/soc/codecs/ssm*
1213
1214 ANALOG DEVICES INC DMA DRIVERS
1215 M:      Lars-Peter Clausen <lars@metafoo.de>
1216 S:      Supported
1217 W:      http://ez.analog.com/community/linux-device-drivers
1218 F:      drivers/dma/dma-axi-dmac.c
1219
1220 ANALOG DEVICES INC IIO DRIVERS
1221 M:      Lars-Peter Clausen <lars@metafoo.de>
1222 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1223 S:      Supported
1224 W:      http://wiki.analog.com/
1225 W:      http://ez.analog.com/community/linux-device-drivers
1226 F:      Documentation/ABI/testing/sysfs-bus-iio-frequency-ad9523
1227 F:      Documentation/ABI/testing/sysfs-bus-iio-frequency-adf4350
1228 F:      Documentation/devicetree/bindings/iio/*/adi,*
1229 F:      Documentation/devicetree/bindings/iio/dac/adi,ad5758.yaml
1230 F:      drivers/iio/*/ad*
1231 F:      drivers/iio/adc/ltc249*
1232 F:      drivers/iio/amplifiers/hmc425a.c
1233 F:      drivers/staging/iio/*/ad*
1234 X:      drivers/iio/*/adjd*
1235
1236 ANALOGBITS PLL LIBRARIES
1237 M:      Paul Walmsley <paul.walmsley@sifive.com>
1238 S:      Supported
1239 F:      drivers/clk/analogbits/*
1240 F:      include/linux/clk/analogbits*
1241
1242 ANDROID CONFIG FRAGMENTS
1243 M:      Rob Herring <robh@kernel.org>
1244 S:      Supported
1245 F:      kernel/configs/android*
1246
1247 ANDROID DRIVERS
1248 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
1249 M:      Arve Hjønnevåg <arve@android.com>
1250 M:      Todd Kjos <tkjos@android.com>
1251 M:      Martijn Coenen <maco@android.com>
1252 M:      Joel Fernandes <joel@joelfernandes.org>
1253 M:      Christian Brauner <christian@brauner.io>
1254 M:      Hridya Valsaraju <hridya@google.com>
1255 M:      Suren Baghdasaryan <surenb@google.com>
1256 L:      linux-kernel@vger.kernel.org
1257 S:      Supported
1258 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
1259 F:      drivers/android/
1260 F:      drivers/staging/android/
1261
1262 ANDROID GOLDFISH PIC DRIVER
1263 M:      Miodrag Dinic <miodrag.dinic@mips.com>
1264 S:      Supported
1265 F:      Documentation/devicetree/bindings/interrupt-controller/google,goldfish-pic.txt
1266 F:      drivers/irqchip/irq-goldfish-pic.c
1267
1268 ANDROID GOLDFISH RTC DRIVER
1269 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
1270 S:      Supported
1271 F:      Documentation/devicetree/bindings/rtc/google,goldfish-rtc.txt
1272 F:      drivers/rtc/rtc-goldfish.c
1273
1274 AOA (Apple Onboard Audio) ALSA DRIVER
1275 M:      Johannes Berg <johannes@sipsolutions.net>
1276 L:      linuxppc-dev@lists.ozlabs.org
1277 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1278 S:      Maintained
1279 F:      sound/aoa/
1280
1281 APEX EMBEDDED SYSTEMS STX104 IIO DRIVER
1282 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
1283 L:      linux-iio@vger.kernel.org
1284 S:      Maintained
1285 F:      drivers/iio/adc/stx104.c
1286
1287 APM DRIVER
1288 M:      Jiri Kosina <jikos@kernel.org>
1289 S:      Odd fixes
1290 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/apm.git
1291 F:      arch/x86/kernel/apm_32.c
1292 F:      drivers/char/apm-emulation.c
1293 F:      include/linux/apm_bios.h
1294 F:      include/uapi/linux/apm_bios.h
1295
1296 APPARMOR SECURITY MODULE
1297 M:      John Johansen <john.johansen@canonical.com>
1298 L:      apparmor@lists.ubuntu.com (subscribers-only, general discussion)
1299 S:      Supported
1300 W:      wiki.apparmor.net
1301 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jj/linux-apparmor
1302 F:      Documentation/admin-guide/LSM/apparmor.rst
1303 F:      security/apparmor/
1304
1305 APPLE BCM5974 MULTITOUCH DRIVER
1306 M:      Henrik Rydberg <rydberg@bitmath.org>
1307 L:      linux-input@vger.kernel.org
1308 S:      Odd fixes
1309 F:      drivers/input/mouse/bcm5974.c
1310
1311 APPLE DART IOMMU DRIVER
1312 M:      Sven Peter <sven@svenpeter.dev>
1313 R:      Alyssa Rosenzweig <alyssa@rosenzweig.io>
1314 L:      iommu@lists.linux-foundation.org
1315 S:      Maintained
1316 F:      Documentation/devicetree/bindings/iommu/apple,dart.yaml
1317 F:      drivers/iommu/apple-dart.c
1318
1319 APPLE PCIE CONTROLLER DRIVER
1320 M:      Alyssa Rosenzweig <alyssa@rosenzweig.io>
1321 M:      Marc Zyngier <maz@kernel.org>
1322 L:      linux-pci@vger.kernel.org
1323 S:      Maintained
1324 F:      drivers/pci/controller/pcie-apple.c
1325
1326 APPLE SMC DRIVER
1327 M:      Henrik Rydberg <rydberg@bitmath.org>
1328 L:      linux-hwmon@vger.kernel.org
1329 S:      Odd fixes
1330 F:      drivers/hwmon/applesmc.c
1331
1332 APPLETALK NETWORK LAYER
1333 L:      netdev@vger.kernel.org
1334 S:      Odd fixes
1335 F:      drivers/net/appletalk/
1336 F:      include/linux/atalk.h
1337 F:      include/uapi/linux/atalk.h
1338 F:      net/appletalk/
1339
1340 APPLIED MICRO (APM) X-GENE DEVICE TREE SUPPORT
1341 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1342 S:      Supported
1343 F:      arch/arm64/boot/dts/apm/
1344
1345 APPLIED MICRO (APM) X-GENE SOC EDAC
1346 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1347 S:      Supported
1348 F:      Documentation/devicetree/bindings/edac/apm-xgene-edac.txt
1349 F:      drivers/edac/xgene_edac.c
1350
1351 APPLIED MICRO (APM) X-GENE SOC ETHERNET (V2) DRIVER
1352 M:      Iyappan Subramanian <iyappan@os.amperecomputing.com>
1353 M:      Keyur Chudgar <keyur@os.amperecomputing.com>
1354 S:      Supported
1355 F:      drivers/net/ethernet/apm/xgene-v2/
1356
1357 APPLIED MICRO (APM) X-GENE SOC ETHERNET DRIVER
1358 M:      Iyappan Subramanian <iyappan@os.amperecomputing.com>
1359 M:      Keyur Chudgar <keyur@os.amperecomputing.com>
1360 M:      Quan Nguyen <quan@os.amperecomputing.com>
1361 S:      Supported
1362 F:      Documentation/devicetree/bindings/net/apm-xgene-enet.txt
1363 F:      Documentation/devicetree/bindings/net/apm-xgene-mdio.txt
1364 F:      drivers/net/ethernet/apm/xgene/
1365 F:      drivers/net/mdio/mdio-xgene.c
1366
1367 APPLIED MICRO (APM) X-GENE SOC PMU
1368 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1369 S:      Supported
1370 F:      Documentation/admin-guide/perf/xgene-pmu.rst
1371 F:      Documentation/devicetree/bindings/perf/apm-xgene-pmu.txt
1372 F:      drivers/perf/xgene_pmu.c
1373
1374 APTINA CAMERA SENSOR PLL
1375 M:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
1376 L:      linux-media@vger.kernel.org
1377 S:      Maintained
1378 F:      drivers/media/i2c/aptina-pll.*
1379
1380 AQUACOMPUTER D5 NEXT PUMP SENSOR DRIVER
1381 M:      Aleksa Savic <savicaleksa83@gmail.com>
1382 L:      linux-hwmon@vger.kernel.org
1383 S:      Maintained
1384 F:      Documentation/hwmon/aquacomputer_d5next.rst
1385 F:      drivers/hwmon/aquacomputer_d5next.c
1386
1387 AQUANTIA ETHERNET DRIVER (atlantic)
1388 M:      Igor Russkikh <irusskikh@marvell.com>
1389 L:      netdev@vger.kernel.org
1390 S:      Supported
1391 W:      https://www.marvell.com/
1392 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
1393 F:      Documentation/networking/device_drivers/ethernet/aquantia/atlantic.rst
1394 F:      drivers/net/ethernet/aquantia/atlantic/
1395
1396 AQUANTIA ETHERNET DRIVER PTP SUBSYSTEM
1397 M:      Egor Pomozov <epomozov@marvell.com>
1398 L:      netdev@vger.kernel.org
1399 S:      Supported
1400 W:      http://www.aquantia.com
1401 F:      drivers/net/ethernet/aquantia/atlantic/aq_ptp*
1402
1403 ARASAN NAND CONTROLLER DRIVER
1404 M:      Miquel Raynal <miquel.raynal@bootlin.com>
1405 M:      Naga Sureshkumar Relli <nagasure@xilinx.com>
1406 L:      linux-mtd@lists.infradead.org
1407 S:      Maintained
1408 F:      Documentation/devicetree/bindings/mtd/arasan,nand-controller.yaml
1409 F:      drivers/mtd/nand/raw/arasan-nand-controller.c
1410
1411 ARC FRAMEBUFFER DRIVER
1412 M:      Jaya Kumar <jayalk@intworks.biz>
1413 S:      Maintained
1414 F:      drivers/video/fbdev/arcfb.c
1415 F:      drivers/video/fbdev/core/fb_defio.c
1416
1417 ARC PGU DRM DRIVER
1418 M:      Alexey Brodkin <abrodkin@synopsys.com>
1419 S:      Supported
1420 F:      Documentation/devicetree/bindings/display/snps,arcpgu.txt
1421 F:      drivers/gpu/drm/tiny/arcpgu.c
1422
1423 ARCNET NETWORK LAYER
1424 M:      Michael Grzeschik <m.grzeschik@pengutronix.de>
1425 L:      netdev@vger.kernel.org
1426 S:      Maintained
1427 F:      drivers/net/arcnet/
1428 F:      include/uapi/linux/if_arcnet.h
1429
1430 ARM ARCHITECTED TIMER DRIVER
1431 M:      Mark Rutland <mark.rutland@arm.com>
1432 M:      Marc Zyngier <maz@kernel.org>
1433 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1434 S:      Maintained
1435 F:      arch/arm/include/asm/arch_timer.h
1436 F:      arch/arm64/include/asm/arch_timer.h
1437 F:      drivers/clocksource/arm_arch_timer.c
1438
1439 ARM HDLCD DRM DRIVER
1440 M:      Liviu Dudau <liviu.dudau@arm.com>
1441 S:      Supported
1442 F:      Documentation/devicetree/bindings/display/arm,hdlcd.txt
1443 F:      drivers/gpu/drm/arm/hdlcd_*
1444
1445 ARM INTEGRATOR, VERSATILE AND REALVIEW SUPPORT
1446 M:      Linus Walleij <linus.walleij@linaro.org>
1447 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1448 S:      Maintained
1449 F:      Documentation/devicetree/bindings/arm/arm,integrator.yaml
1450 F:      Documentation/devicetree/bindings/arm/arm,realview.yaml
1451 F:      Documentation/devicetree/bindings/arm/arm,versatile.yaml
1452 F:      Documentation/devicetree/bindings/arm/arm,vexpress-juno.yaml
1453 F:      Documentation/devicetree/bindings/auxdisplay/arm,versatile-lcd.yaml
1454 F:      Documentation/devicetree/bindings/clock/arm,syscon-icst.yaml
1455 F:      Documentation/devicetree/bindings/i2c/i2c-versatile.txt
1456 F:      Documentation/devicetree/bindings/interrupt-controller/arm,versatile-fpga-irq.txt
1457 F:      Documentation/devicetree/bindings/mtd/mtd-physmap.yaml
1458 F:      arch/arm/boot/dts/arm-realview-*
1459 F:      arch/arm/boot/dts/integrator*
1460 F:      arch/arm/boot/dts/versatile*
1461 F:      arch/arm/mach-integrator/
1462 F:      arch/arm/mach-realview/
1463 F:      arch/arm/mach-versatile/
1464 F:      arch/arm/plat-versatile/
1465 F:      drivers/bus/arm-integrator-lm.c
1466 F:      drivers/clk/versatile/
1467 F:      drivers/i2c/busses/i2c-versatile.c
1468 F:      drivers/irqchip/irq-versatile-fpga.c
1469 F:      drivers/mtd/maps/physmap-versatile.*
1470 F:      drivers/power/reset/arm-versatile-reboot.c
1471 F:      drivers/soc/versatile/
1472
1473 ARM KOMEDA DRM-KMS DRIVER
1474 M:      James (Qian) Wang <james.qian.wang@arm.com>
1475 M:      Liviu Dudau <liviu.dudau@arm.com>
1476 M:      Mihail Atanassov <mihail.atanassov@arm.com>
1477 L:      Mali DP Maintainers <malidp@foss.arm.com>
1478 S:      Supported
1479 T:      git git://anongit.freedesktop.org/drm/drm-misc
1480 F:      Documentation/devicetree/bindings/display/arm,komeda.txt
1481 F:      Documentation/gpu/komeda-kms.rst
1482 F:      drivers/gpu/drm/arm/display/include/
1483 F:      drivers/gpu/drm/arm/display/komeda/
1484
1485 ARM MALI PANFROST DRM DRIVER
1486 M:      Rob Herring <robh@kernel.org>
1487 M:      Tomeu Vizoso <tomeu.vizoso@collabora.com>
1488 R:      Steven Price <steven.price@arm.com>
1489 R:      Alyssa Rosenzweig <alyssa.rosenzweig@collabora.com>
1490 L:      dri-devel@lists.freedesktop.org
1491 S:      Supported
1492 T:      git git://anongit.freedesktop.org/drm/drm-misc
1493 F:      drivers/gpu/drm/panfrost/
1494 F:      include/uapi/drm/panfrost_drm.h
1495
1496 ARM MALI-DP DRM DRIVER
1497 M:      Liviu Dudau <liviu.dudau@arm.com>
1498 M:      Brian Starkey <brian.starkey@arm.com>
1499 L:      Mali DP Maintainers <malidp@foss.arm.com>
1500 S:      Supported
1501 T:      git git://anongit.freedesktop.org/drm/drm-misc
1502 F:      Documentation/devicetree/bindings/display/arm,malidp.txt
1503 F:      Documentation/gpu/afbc.rst
1504 F:      drivers/gpu/drm/arm/
1505
1506 ARM MFM AND FLOPPY DRIVERS
1507 M:      Ian Molton <spyro@f2s.com>
1508 S:      Maintained
1509 F:      arch/arm/include/asm/floppy.h
1510 F:      arch/arm/mach-rpc/floppydma.S
1511
1512 ARM PMU PROFILING AND DEBUGGING
1513 M:      Will Deacon <will@kernel.org>
1514 M:      Mark Rutland <mark.rutland@arm.com>
1515 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1516 S:      Maintained
1517 F:      Documentation/devicetree/bindings/arm/pmu.yaml
1518 F:      Documentation/devicetree/bindings/perf/
1519 F:      arch/arm*/include/asm/hw_breakpoint.h
1520 F:      arch/arm*/include/asm/perf_event.h
1521 F:      arch/arm*/kernel/hw_breakpoint.c
1522 F:      arch/arm*/kernel/perf_*
1523 F:      drivers/perf/
1524 F:      include/linux/perf/arm_pmu.h
1525
1526 ARM PORT
1527 M:      Russell King <linux@armlinux.org.uk>
1528 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1529 S:      Odd Fixes
1530 W:      http://www.armlinux.org.uk/
1531 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git
1532 F:      arch/arm/
1533 X:      arch/arm/boot/dts/
1534
1535 ARM PRIMECELL AACI PL041 DRIVER
1536 M:      Russell King <linux@armlinux.org.uk>
1537 S:      Odd Fixes
1538 F:      sound/arm/aaci.*
1539
1540 ARM PRIMECELL BUS SUPPORT
1541 M:      Russell King <linux@armlinux.org.uk>
1542 S:      Odd Fixes
1543 F:      drivers/amba/
1544 F:      include/linux/amba/bus.h
1545
1546 ARM PRIMECELL PL35X NAND CONTROLLER DRIVER
1547 M:      Miquel Raynal <miquel.raynal@bootlin.com>
1548 M:      Naga Sureshkumar Relli <nagasure@xilinx.com>
1549 L:      linux-mtd@lists.infradead.org
1550 S:      Maintained
1551 F:      Documentation/devicetree/bindings/mtd/arm,pl353-nand-r2p1.yaml
1552 F:      drivers/mtd/nand/raw/pl35x-nand-controller.c
1553
1554 ARM PRIMECELL PL35X SMC DRIVER
1555 M:      Miquel Raynal <miquel.raynal@bootlin.com>
1556 M:      Naga Sureshkumar Relli <nagasure@xilinx.com>
1557 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1558 S:      Maintained
1559 F:      Documentation/devicetree/bindings/memory-controllers/arm,pl353-smc.yaml
1560 F:      drivers/memory/pl353-smc.c
1561
1562 ARM PRIMECELL CLCD PL110 DRIVER
1563 M:      Russell King <linux@armlinux.org.uk>
1564 S:      Odd Fixes
1565 F:      drivers/video/fbdev/amba-clcd.*
1566
1567 ARM PRIMECELL KMI PL050 DRIVER
1568 M:      Russell King <linux@armlinux.org.uk>
1569 S:      Odd Fixes
1570 F:      drivers/input/serio/ambakmi.*
1571 F:      include/linux/amba/kmi.h
1572
1573 ARM PRIMECELL MMCI PL180/1 DRIVER
1574 M:      Russell King <linux@armlinux.org.uk>
1575 S:      Odd Fixes
1576 F:      drivers/mmc/host/mmci.*
1577 F:      include/linux/amba/mmci.h
1578
1579 ARM PRIMECELL SSP PL022 SPI DRIVER
1580 M:      Linus Walleij <linus.walleij@linaro.org>
1581 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1582 S:      Maintained
1583 F:      Documentation/devicetree/bindings/spi/spi-pl022.yaml
1584 F:      drivers/spi/spi-pl022.c
1585
1586 ARM PRIMECELL UART PL010 AND PL011 DRIVERS
1587 M:      Russell King <linux@armlinux.org.uk>
1588 S:      Odd Fixes
1589 F:      drivers/tty/serial/amba-pl01*.c
1590 F:      include/linux/amba/serial.h
1591
1592 ARM PRIMECELL VIC PL190/PL192 DRIVER
1593 M:      Linus Walleij <linus.walleij@linaro.org>
1594 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1595 S:      Maintained
1596 F:      Documentation/devicetree/bindings/interrupt-controller/arm,vic.yaml
1597 F:      drivers/irqchip/irq-vic.c
1598
1599 ARM SMC WATCHDOG DRIVER
1600 M:      Julius Werner <jwerner@chromium.org>
1601 R:      Evan Benn <evanbenn@chromium.org>
1602 S:      Maintained
1603 F:      Documentation/devicetree/bindings/watchdog/arm-smc-wdt.yaml
1604 F:      drivers/watchdog/arm_smc_wdt.c
1605
1606 ARM SMMU DRIVERS
1607 M:      Will Deacon <will@kernel.org>
1608 R:      Robin Murphy <robin.murphy@arm.com>
1609 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1610 S:      Maintained
1611 F:      Documentation/devicetree/bindings/iommu/arm,smmu*
1612 F:      drivers/iommu/arm/
1613 F:      drivers/iommu/io-pgtable-arm*
1614
1615 ARM AND ARM64 SoC SUB-ARCHITECTURES (COMMON PARTS)
1616 M:      Arnd Bergmann <arnd@arndb.de>
1617 M:      Olof Johansson <olof@lixom.net>
1618 M:      soc@kernel.org
1619 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1620 S:      Maintained
1621 C:      irc://irc.libera.chat/armlinux
1622 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/soc/soc.git
1623 F:      arch/arm/boot/dts/Makefile
1624 F:      arch/arm64/boot/dts/Makefile
1625
1626 ARM SUB-ARCHITECTURES
1627 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1628 S:      Maintained
1629 C:      irc://irc.libera.chat/armlinux
1630 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/soc/soc.git
1631 F:      arch/arm/mach-*/
1632 F:      arch/arm/plat-*/
1633
1634 ARM/ACTIONS SEMI ARCHITECTURE
1635 M:      Andreas Färber <afaerber@suse.de>
1636 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
1637 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1638 L:      linux-actions@lists.infradead.org (moderated for non-subscribers)
1639 S:      Maintained
1640 F:      Documentation/devicetree/bindings/arm/actions.yaml
1641 F:      Documentation/devicetree/bindings/clock/actions,owl-cmu.txt
1642 F:      Documentation/devicetree/bindings/dma/owl-dma.yaml
1643 F:      Documentation/devicetree/bindings/i2c/i2c-owl.yaml
1644 F:      Documentation/devicetree/bindings/interrupt-controller/actions,owl-sirq.yaml
1645 F:      Documentation/devicetree/bindings/mmc/owl-mmc.yaml
1646 F:      Documentation/devicetree/bindings/net/actions,owl-emac.yaml
1647 F:      Documentation/devicetree/bindings/pinctrl/actions,*
1648 F:      Documentation/devicetree/bindings/power/actions,owl-sps.txt
1649 F:      Documentation/devicetree/bindings/timer/actions,owl-timer.txt
1650 F:      arch/arm/boot/dts/owl-*
1651 F:      arch/arm/mach-actions/
1652 F:      arch/arm64/boot/dts/actions/
1653 F:      drivers/clk/actions/
1654 F:      drivers/clocksource/timer-owl*
1655 F:      drivers/dma/owl-dma.c
1656 F:      drivers/i2c/busses/i2c-owl.c
1657 F:      drivers/irqchip/irq-owl-sirq.c
1658 F:      drivers/mmc/host/owl-mmc.c
1659 F:      drivers/net/ethernet/actions/
1660 F:      drivers/pinctrl/actions/*
1661 F:      drivers/soc/actions/
1662 F:      include/dt-bindings/power/owl-*
1663 F:      include/dt-bindings/reset/actions,*
1664 F:      include/linux/soc/actions/
1665 N:      owl
1666
1667 ARM/ADS SPHERE MACHINE SUPPORT
1668 M:      Lennert Buytenhek <kernel@wantstofly.org>
1669 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1670 S:      Maintained
1671
1672 ARM/AFEB9260 MACHINE SUPPORT
1673 M:      Sergey Lapin <slapin@ossfans.org>
1674 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1675 S:      Maintained
1676
1677 ARM/AJECO 1ARM MACHINE SUPPORT
1678 M:      Lennert Buytenhek <kernel@wantstofly.org>
1679 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1680 S:      Maintained
1681
1682 ARM/Allwinner SoC Clock Support
1683 M:      Emilio López <emilio@elopez.com.ar>
1684 S:      Maintained
1685 F:      drivers/clk/sunxi/
1686
1687 ARM/Allwinner sunXi SoC support
1688 M:      Chen-Yu Tsai <wens@csie.org>
1689 M:      Jernej Skrabec <jernej.skrabec@gmail.com>
1690 M:      Samuel Holland <samuel@sholland.org>
1691 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1692 S:      Maintained
1693 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sunxi/linux.git
1694 L:      linux-sunxi@lists.linux.dev
1695 F:      arch/arm/mach-sunxi/
1696 F:      arch/arm64/boot/dts/allwinner/
1697 F:      drivers/clk/sunxi-ng/
1698 F:      drivers/pinctrl/sunxi/
1699 F:      drivers/soc/sunxi/
1700 N:      allwinner
1701 N:      sun[x456789]i
1702 N:      sun50i
1703
1704 ARM/Amlogic Meson SoC CLOCK FRAMEWORK
1705 M:      Neil Armstrong <narmstrong@baylibre.com>
1706 M:      Jerome Brunet <jbrunet@baylibre.com>
1707 L:      linux-amlogic@lists.infradead.org
1708 S:      Maintained
1709 F:      Documentation/devicetree/bindings/clock/amlogic*
1710 F:      drivers/clk/meson/
1711 F:      include/dt-bindings/clock/gxbb*
1712 F:      include/dt-bindings/clock/meson*
1713
1714 ARM/Amlogic Meson SoC Crypto Drivers
1715 M:      Corentin Labbe <clabbe@baylibre.com>
1716 L:      linux-crypto@vger.kernel.org
1717 L:      linux-amlogic@lists.infradead.org
1718 S:      Maintained
1719 F:      Documentation/devicetree/bindings/crypto/amlogic*
1720 F:      drivers/crypto/amlogic/
1721
1722 ARM/Amlogic Meson SoC Sound Drivers
1723 M:      Jerome Brunet <jbrunet@baylibre.com>
1724 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1725 S:      Maintained
1726 F:      Documentation/devicetree/bindings/sound/amlogic*
1727 F:      sound/soc/meson/
1728
1729 ARM/Amlogic Meson SoC support
1730 M:      Neil Armstrong <narmstrong@baylibre.com>
1731 M:      Kevin Hilman <khilman@baylibre.com>
1732 R:      Jerome Brunet <jbrunet@baylibre.com>
1733 R:      Martin Blumenstingl <martin.blumenstingl@googlemail.com>
1734 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1735 L:      linux-amlogic@lists.infradead.org
1736 S:      Maintained
1737 W:      http://linux-meson.com/
1738 F:      arch/arm/boot/dts/meson*
1739 F:      arch/arm/mach-meson/
1740 F:      arch/arm64/boot/dts/amlogic/
1741 F:      drivers/mmc/host/meson*
1742 F:      drivers/pinctrl/meson/
1743 F:      drivers/rtc/rtc-meson*
1744 F:      drivers/soc/amlogic/
1745 N:      meson
1746
1747 ARM/Annapurna Labs ALPINE ARCHITECTURE
1748 M:      Tsahee Zidenberg <tsahee@annapurnalabs.com>
1749 M:      Antoine Tenart <atenart@kernel.org>
1750 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1751 S:      Maintained
1752 F:      arch/arm/boot/dts/alpine*
1753 F:      arch/arm/mach-alpine/
1754 F:      arch/arm64/boot/dts/amazon/
1755 F:      drivers/*/*alpine*
1756
1757 ARM/APPLE MACHINE SUPPORT
1758 M:      Hector Martin <marcan@marcan.st>
1759 M:      Sven Peter <sven@svenpeter.dev>
1760 R:      Alyssa Rosenzweig <alyssa@rosenzweig.io>
1761 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1762 S:      Maintained
1763 W:      https://asahilinux.org
1764 B:      https://github.com/AsahiLinux/linux/issues
1765 C:      irc://irc.oftc.net/asahi-dev
1766 T:      git https://github.com/AsahiLinux/linux.git
1767 F:      Documentation/devicetree/bindings/arm/apple.yaml
1768 F:      Documentation/devicetree/bindings/arm/apple/*
1769 F:      Documentation/devicetree/bindings/i2c/apple,i2c.yaml
1770 F:      Documentation/devicetree/bindings/interrupt-controller/apple,*
1771 F:      Documentation/devicetree/bindings/mailbox/apple,mailbox.yaml
1772 F:      Documentation/devicetree/bindings/pci/apple,pcie.yaml
1773 F:      Documentation/devicetree/bindings/pinctrl/apple,pinctrl.yaml
1774 F:      Documentation/devicetree/bindings/power/apple*
1775 F:      Documentation/devicetree/bindings/watchdog/apple,wdt.yaml
1776 F:      arch/arm64/boot/dts/apple/
1777 F:      drivers/i2c/busses/i2c-pasemi-core.c
1778 F:      drivers/i2c/busses/i2c-pasemi-platform.c
1779 F:      drivers/irqchip/irq-apple-aic.c
1780 F:      drivers/mailbox/apple-mailbox.c
1781 F:      drivers/pinctrl/pinctrl-apple-gpio.c
1782 F:      drivers/soc/apple/*
1783 F:      drivers/watchdog/apple_wdt.c
1784 F:      include/dt-bindings/interrupt-controller/apple-aic.h
1785 F:      include/dt-bindings/pinctrl/apple.h
1786 F:      include/linux/apple-mailbox.h
1787
1788 ARM/ARTPEC MACHINE SUPPORT
1789 M:      Jesper Nilsson <jesper.nilsson@axis.com>
1790 M:      Lars Persson <lars.persson@axis.com>
1791 L:      linux-arm-kernel@axis.com
1792 S:      Maintained
1793 F:      Documentation/devicetree/bindings/pinctrl/axis,artpec6-pinctrl.txt
1794 F:      arch/arm/boot/dts/artpec6*
1795 F:      arch/arm/mach-artpec
1796 F:      drivers/clk/axis
1797 F:      drivers/crypto/axis
1798 F:      drivers/mmc/host/usdhi6rol0.c
1799 F:      drivers/pinctrl/pinctrl-artpec*
1800
1801 ARM/ASPEED I2C DRIVER
1802 M:      Brendan Higgins <brendanhiggins@google.com>
1803 R:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
1804 R:      Joel Stanley <joel@jms.id.au>
1805 L:      linux-i2c@vger.kernel.org
1806 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
1807 S:      Maintained
1808 F:      Documentation/devicetree/bindings/i2c/aspeed,i2c.yaml
1809 F:      Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2400-i2c-ic.txt
1810 F:      drivers/i2c/busses/i2c-aspeed.c
1811 F:      drivers/irqchip/irq-aspeed-i2c-ic.c
1812
1813 ARM/ASPEED MACHINE SUPPORT
1814 M:      Joel Stanley <joel@jms.id.au>
1815 R:      Andrew Jeffery <andrew@aj.id.au>
1816 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1817 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
1818 S:      Supported
1819 Q:      https://patchwork.ozlabs.org/project/linux-aspeed/list/
1820 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joel/aspeed.git
1821 F:      arch/arm/boot/dts/aspeed-*
1822 F:      arch/arm/mach-aspeed/
1823 N:      aspeed
1824
1825 ARM/BITMAIN ARCHITECTURE
1826 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
1827 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1828 S:      Maintained
1829 F:      Documentation/devicetree/bindings/arm/bitmain.yaml
1830 F:      Documentation/devicetree/bindings/clock/bitmain,bm1880-clk.yaml
1831 F:      Documentation/devicetree/bindings/pinctrl/bitmain,bm1880-pinctrl.txt
1832 F:      arch/arm64/boot/dts/bitmain/
1833 F:      drivers/clk/clk-bm1880.c
1834 F:      drivers/pinctrl/pinctrl-bm1880.c
1835
1836 ARM/CALXEDA HIGHBANK ARCHITECTURE
1837 M:      Andre Przywara <andre.przywara@arm.com>
1838 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1839 S:      Maintained
1840 F:      arch/arm/boot/dts/ecx-*.dts*
1841 F:      arch/arm/boot/dts/highbank.dts
1842 F:      arch/arm/mach-highbank/
1843
1844 ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
1845 M:      Krzysztof Halasa <khalasa@piap.pl>
1846 S:      Maintained
1847 F:      arch/arm/mach-cns3xxx/
1848
1849 ARM/CAVIUM THUNDER NETWORK DRIVER
1850 M:      Sunil Goutham <sgoutham@marvell.com>
1851 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1852 S:      Supported
1853 F:      drivers/net/ethernet/cavium/thunder/
1854
1855 ARM/CIRRUS LOGIC BK3 MACHINE SUPPORT
1856 M:      Lukasz Majewski <lukma@denx.de>
1857 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1858 S:      Maintained
1859 F:      arch/arm/mach-ep93xx/ts72xx.c
1860
1861 ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
1862 M:      Alexander Shiyan <shc_work@mail.ru>
1863 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1864 S:      Odd Fixes
1865 N:      clps711x
1866
1867 ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
1868 M:      Lennert Buytenhek <kernel@wantstofly.org>
1869 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1870 S:      Maintained
1871
1872 ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
1873 M:      Hartley Sweeten <hsweeten@visionengravers.com>
1874 M:      Alexander Sverdlin <alexander.sverdlin@gmail.com>
1875 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1876 S:      Maintained
1877 F:      arch/arm/mach-ep93xx/
1878 F:      arch/arm/mach-ep93xx/include/mach/
1879
1880 ARM/CLKDEV SUPPORT
1881 M:      Russell King <linux@armlinux.org.uk>
1882 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1883 S:      Maintained
1884 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git clkdev
1885 F:      drivers/clk/clkdev.c
1886
1887 ARM/CONEXANT DIGICOLOR MACHINE SUPPORT
1888 M:      Baruch Siach <baruch@tkos.co.il>
1889 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1890 S:      Maintained
1891 F:      arch/arm/boot/dts/cx92755*
1892 N:      digicolor
1893
1894 ARM/CONTEC MICRO9 MACHINE SUPPORT
1895 M:      Hubert Feurstein <hubert.feurstein@contec.at>
1896 S:      Maintained
1897 F:      arch/arm/mach-ep93xx/micro9.c
1898
1899 ARM/CORESIGHT FRAMEWORK AND DRIVERS
1900 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
1901 M:      Suzuki K Poulose <suzuki.poulose@arm.com>
1902 R:      Mike Leach <mike.leach@linaro.org>
1903 R:      Leo Yan <leo.yan@linaro.org>
1904 L:      coresight@lists.linaro.org (moderated for non-subscribers)
1905 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1906 S:      Maintained
1907 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/coresight/linux.git
1908 F:      Documentation/ABI/testing/sysfs-bus-coresight-devices-*
1909 F:      Documentation/devicetree/bindings/arm/coresight-cpu-debug.txt
1910 F:      Documentation/devicetree/bindings/arm/coresight-cti.yaml
1911 F:      Documentation/devicetree/bindings/arm/coresight.txt
1912 F:      Documentation/devicetree/bindings/arm/ete.yaml
1913 F:      Documentation/devicetree/bindings/arm/trbe.yaml
1914 F:      Documentation/trace/coresight/*
1915 F:      drivers/hwtracing/coresight/*
1916 F:      include/dt-bindings/arm/coresight-cti-dt.h
1917 F:      include/linux/coresight*
1918 F:      samples/coresight/*
1919 F:      tools/perf/arch/arm/util/auxtrace.c
1920 F:      tools/perf/arch/arm/util/cs-etm.c
1921 F:      tools/perf/arch/arm/util/cs-etm.h
1922 F:      tools/perf/arch/arm/util/pmu.c
1923 F:      tools/perf/util/cs-etm-decoder/*
1924 F:      tools/perf/util/cs-etm.*
1925
1926 ARM/CORGI MACHINE SUPPORT
1927 M:      Richard Purdie <rpurdie@rpsys.net>
1928 S:      Maintained
1929
1930 ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
1931 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
1932 M:      Linus Walleij <linus.walleij@linaro.org>
1933 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1934 S:      Maintained
1935 T:      git git://github.com/ulli-kroll/linux.git
1936 F:      Documentation/devicetree/bindings/arm/gemini.yaml
1937 F:      Documentation/devicetree/bindings/net/cortina,gemini-ethernet.txt
1938 F:      Documentation/devicetree/bindings/pinctrl/cortina,gemini-pinctrl.txt
1939 F:      Documentation/devicetree/bindings/rtc/faraday,ftrtc010.yaml
1940 F:      arch/arm/boot/dts/gemini*
1941 F:      arch/arm/mach-gemini/
1942 F:      drivers/crypto/gemini/
1943 F:      drivers/net/ethernet/cortina/
1944 F:      drivers/pinctrl/pinctrl-gemini.c
1945 F:      drivers/rtc/rtc-ftrtc010.c
1946
1947 ARM/CZ.NIC TURRIS SUPPORT
1948 M:      Marek Behún <kabel@kernel.org>
1949 S:      Maintained
1950 W:      https://www.turris.cz/
1951 F:      Documentation/ABI/testing/debugfs-moxtet
1952 F:      Documentation/ABI/testing/sysfs-bus-moxtet-devices
1953 F:      Documentation/ABI/testing/sysfs-firmware-turris-mox-rwtm
1954 F:      Documentation/devicetree/bindings/bus/moxtet.txt
1955 F:      Documentation/devicetree/bindings/firmware/cznic,turris-mox-rwtm.txt
1956 F:      Documentation/devicetree/bindings/gpio/gpio-moxtet.txt
1957 F:      Documentation/devicetree/bindings/leds/cznic,turris-omnia-leds.yaml
1958 F:      Documentation/devicetree/bindings/watchdog/armada-37xx-wdt.txt
1959 F:      drivers/bus/moxtet.c
1960 F:      drivers/firmware/turris-mox-rwtm.c
1961 F:      drivers/leds/leds-turris-omnia.c
1962 F:      drivers/mailbox/armada-37xx-rwtm-mailbox.c
1963 F:      drivers/gpio/gpio-moxtet.c
1964 F:      drivers/watchdog/armada_37xx_wdt.c
1965 F:      include/dt-bindings/bus/moxtet.h
1966 F:      include/linux/armada-37xx-rwtm-mailbox.h
1967 F:      include/linux/moxtet.h
1968
1969 ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
1970 M:      Robert Jarzmik <robert.jarzmik@free.fr>
1971 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1972 S:      Maintained
1973 F:      arch/arm/mach-pxa/ezx.c
1974
1975 ARM/FARADAY FA526 PORT
1976 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
1977 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1978 S:      Maintained
1979 T:      git git://git.berlios.de/gemini-board
1980 F:      arch/arm/mm/*-fa*
1981
1982 ARM/FOOTBRIDGE ARCHITECTURE
1983 M:      Russell King <linux@armlinux.org.uk>
1984 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1985 S:      Maintained
1986 W:      http://www.armlinux.org.uk/
1987 F:      arch/arm/include/asm/hardware/dec21285.h
1988 F:      arch/arm/mach-footbridge/
1989
1990 ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
1991 M:      Shawn Guo <shawnguo@kernel.org>
1992 M:      Sascha Hauer <s.hauer@pengutronix.de>
1993 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
1994 R:      Fabio Estevam <festevam@gmail.com>
1995 R:      NXP Linux Team <linux-imx@nxp.com>
1996 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1997 S:      Maintained
1998 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1999 X:      drivers/media/i2c/
2000 N:      imx
2001 N:      mxs
2002
2003 ARM/FREESCALE LAYERSCAPE ARM ARCHITECTURE
2004 M:      Shawn Guo <shawnguo@kernel.org>
2005 M:      Li Yang <leoyang.li@nxp.com>
2006 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2007 S:      Maintained
2008 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
2009 F:      arch/arm/boot/dts/ls1021a*
2010 F:      arch/arm64/boot/dts/freescale/fsl-*
2011 F:      arch/arm64/boot/dts/freescale/qoriq-*
2012
2013 ARM/FREESCALE VYBRID ARM ARCHITECTURE
2014 M:      Shawn Guo <shawnguo@kernel.org>
2015 M:      Sascha Hauer <s.hauer@pengutronix.de>
2016 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
2017 R:      Stefan Agner <stefan@agner.ch>
2018 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2019 S:      Maintained
2020 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
2021 F:      arch/arm/boot/dts/vf*
2022 F:      arch/arm/mach-imx/*vf610*
2023
2024 ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
2025 M:      Lennert Buytenhek <kernel@wantstofly.org>
2026 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2027 S:      Maintained
2028
2029 ARM/GUMSTIX MACHINE SUPPORT
2030 M:      Steve Sakoman <sakoman@gmail.com>
2031 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2032 S:      Maintained
2033
2034 ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
2035 M:      Philipp Zabel <philipp.zabel@gmail.com>
2036 M:      Paul Parsons <lost.distance@yahoo.com>
2037 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2038 S:      Maintained
2039 F:      arch/arm/mach-pxa/hx4700.c
2040 F:      arch/arm/mach-pxa/include/mach/hx4700.h
2041 F:      sound/soc/pxa/hx4700.c
2042
2043 ARM/HISILICON SOC SUPPORT
2044 M:      Wei Xu <xuwei5@hisilicon.com>
2045 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2046 S:      Supported
2047 W:      http://www.hisilicon.com
2048 T:      git git://github.com/hisilicon/linux-hisi.git
2049 F:      arch/arm/boot/dts/hi3*
2050 F:      arch/arm/boot/dts/hip*
2051 F:      arch/arm/boot/dts/hisi*
2052 F:      arch/arm/mach-hisi/
2053 F:      arch/arm64/boot/dts/hisilicon/
2054
2055 ARM/HP JORNADA 7XX MACHINE SUPPORT
2056 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
2057 S:      Maintained
2058 W:      www.jlime.com
2059 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
2060 F:      arch/arm/mach-sa1100/include/mach/jornada720.h
2061 F:      arch/arm/mach-sa1100/jornada720.c
2062
2063 ARM/IGEP MACHINE SUPPORT
2064 M:      Enric Balletbo i Serra <eballetbo@gmail.com>
2065 M:      Javier Martinez Canillas <javier@dowhile0.org>
2066 L:      linux-omap@vger.kernel.org
2067 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2068 S:      Maintained
2069 F:      arch/arm/boot/dts/omap3-igep*
2070
2071 ARM/INCOME PXA270 SUPPORT
2072 M:      Marek Vasut <marek.vasut@gmail.com>
2073 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2074 S:      Maintained
2075 F:      arch/arm/mach-pxa/colibri-pxa270-income.c
2076
2077 ARM/INTEL IOP32X ARM ARCHITECTURE
2078 M:      Lennert Buytenhek <kernel@wantstofly.org>
2079 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2080 S:      Maintained
2081
2082 ARM/INTEL IQ81342EX MACHINE SUPPORT
2083 M:      Lennert Buytenhek <kernel@wantstofly.org>
2084 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2085 S:      Maintained
2086
2087 ARM/INTEL IXDP2850 MACHINE SUPPORT
2088 M:      Lennert Buytenhek <kernel@wantstofly.org>
2089 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2090 S:      Maintained
2091
2092 ARM/INTEL IXP4XX ARM ARCHITECTURE
2093 M:      Linus Walleij <linusw@kernel.org>
2094 M:      Imre Kaloz <kaloz@openwrt.org>
2095 M:      Krzysztof Halasa <khalasa@piap.pl>
2096 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2097 S:      Maintained
2098 F:      Documentation/devicetree/bindings/arm/intel-ixp4xx.yaml
2099 F:      Documentation/devicetree/bindings/bus/intel,ixp4xx-expansion-bus-controller.yaml
2100 F:      Documentation/devicetree/bindings/gpio/intel,ixp4xx-gpio.txt
2101 F:      Documentation/devicetree/bindings/interrupt-controller/intel,ixp4xx-interrupt.yaml
2102 F:      Documentation/devicetree/bindings/timer/intel,ixp4xx-timer.yaml
2103 F:      arch/arm/mach-ixp4xx/
2104 F:      drivers/bus/intel-ixp4xx-eb.c
2105 F:      drivers/clocksource/timer-ixp4xx.c
2106 F:      drivers/crypto/ixp4xx_crypto.c
2107 F:      drivers/gpio/gpio-ixp4xx.c
2108 F:      drivers/irqchip/irq-ixp4xx.c
2109 F:      include/linux/irqchip/irq-ixp4xx.h
2110 F:      include/linux/platform_data/timer-ixp4xx.h
2111
2112 ARM/INTEL KEEMBAY ARCHITECTURE
2113 M:      Paul J. Murphy <paul.j.murphy@intel.com>
2114 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
2115 S:      Maintained
2116 F:      Documentation/devicetree/bindings/arm/intel,keembay.yaml
2117 F:      arch/arm64/boot/dts/intel/keembay-evm.dts
2118 F:      arch/arm64/boot/dts/intel/keembay-soc.dtsi
2119
2120 ARM/INTEL XSC3 (MANZANO) ARM CORE
2121 M:      Lennert Buytenhek <kernel@wantstofly.org>
2122 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2123 S:      Maintained
2124
2125 ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
2126 M:      Lennert Buytenhek <kernel@wantstofly.org>
2127 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2128 S:      Maintained
2129
2130 ARM/LG1K ARCHITECTURE
2131 M:      Chanho Min <chanho.min@lge.com>
2132 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2133 S:      Maintained
2134 F:      arch/arm64/boot/dts/lg/
2135
2136 ARM/LOGICPD PXA270 MACHINE SUPPORT
2137 M:      Lennert Buytenhek <kernel@wantstofly.org>
2138 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2139 S:      Maintained
2140
2141 ARM/LPC18XX ARCHITECTURE
2142 M:      Vladimir Zapolskiy <vz@mleia.com>
2143 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2144 S:      Maintained
2145 F:      Documentation/devicetree/bindings/i2c/i2c-lpc2k.txt
2146 F:      arch/arm/boot/dts/lpc43*
2147 F:      drivers/i2c/busses/i2c-lpc2k.c
2148 F:      drivers/memory/pl172.c
2149 F:      drivers/mtd/spi-nor/controllers/nxp-spifi.c
2150 F:      drivers/rtc/rtc-lpc24xx.c
2151 N:      lpc18xx
2152
2153 ARM/LPC32XX SOC SUPPORT
2154 M:      Vladimir Zapolskiy <vz@mleia.com>
2155 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2156 S:      Maintained
2157 T:      git git://github.com/vzapolskiy/linux-lpc32xx.git
2158 F:      Documentation/devicetree/bindings/i2c/i2c-pnx.txt
2159 F:      arch/arm/boot/dts/lpc32*
2160 F:      arch/arm/mach-lpc32xx/
2161 F:      drivers/i2c/busses/i2c-pnx.c
2162 F:      drivers/net/ethernet/nxp/lpc_eth.c
2163 F:      drivers/usb/host/ohci-nxp.c
2164 F:      drivers/watchdog/pnx4008_wdt.c
2165 N:      lpc32xx
2166
2167 ARM/MAGICIAN MACHINE SUPPORT
2168 M:      Philipp Zabel <philipp.zabel@gmail.com>
2169 S:      Maintained
2170
2171 ARM/Marvell Dove/MV78xx0/Orion SOC support
2172 M:      Andrew Lunn <andrew@lunn.ch>
2173 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2174 M:      Gregory Clement <gregory.clement@bootlin.com>
2175 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2176 S:      Maintained
2177 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gclement/mvebu.git
2178 F:      Documentation/devicetree/bindings/soc/dove/
2179 F:      arch/arm/boot/dts/dove*
2180 F:      arch/arm/boot/dts/orion5x*
2181 F:      arch/arm/mach-dove/
2182 F:      arch/arm/mach-mv78xx0/
2183 F:      arch/arm/mach-orion5x/
2184 F:      arch/arm/plat-orion/
2185 F:      drivers/soc/dove/
2186
2187 ARM/Marvell Kirkwood and Armada 370, 375, 38x, 39x, XP, 3700, 7K/8K, CN9130 SOC support
2188 M:      Andrew Lunn <andrew@lunn.ch>
2189 M:      Gregory Clement <gregory.clement@bootlin.com>
2190 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2191 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2192 S:      Maintained
2193 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gclement/mvebu.git
2194 F:      arch/arm/boot/dts/armada*
2195 F:      arch/arm/boot/dts/kirkwood*
2196 F:      arch/arm/configs/mvebu_*_defconfig
2197 F:      arch/arm/mach-mvebu/
2198 F:      arch/arm64/boot/dts/marvell/armada*
2199 F:      arch/arm64/boot/dts/marvell/cn913*
2200 F:      drivers/cpufreq/armada-37xx-cpufreq.c
2201 F:      drivers/cpufreq/armada-8k-cpufreq.c
2202 F:      drivers/cpufreq/mvebu-cpufreq.c
2203 F:      drivers/irqchip/irq-armada-370-xp.c
2204 F:      drivers/irqchip/irq-mvebu-*
2205 F:      drivers/pinctrl/mvebu/
2206 F:      drivers/rtc/rtc-armada38x.c
2207
2208 ARM/Mediatek RTC DRIVER
2209 M:      Eddie Huang <eddie.huang@mediatek.com>
2210 M:      Sean Wang <sean.wang@mediatek.com>
2211 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2212 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2213 S:      Maintained
2214 F:      Documentation/devicetree/bindings/rtc/rtc-mt2712.txt
2215 F:      Documentation/devicetree/bindings/rtc/rtc-mt7622.txt
2216 F:      drivers/rtc/rtc-mt2712.c
2217 F:      drivers/rtc/rtc-mt6397.c
2218 F:      drivers/rtc/rtc-mt7622.c
2219
2220 ARM/Mediatek SoC support
2221 M:      Matthias Brugger <matthias.bgg@gmail.com>
2222 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2223 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2224 S:      Maintained
2225 W:      https://mtk.wiki.kernel.org/
2226 C:      irc://chat.freenode.net/linux-mediatek
2227 F:      arch/arm/boot/dts/mt6*
2228 F:      arch/arm/boot/dts/mt7*
2229 F:      arch/arm/boot/dts/mt8*
2230 F:      arch/arm/mach-mediatek/
2231 F:      arch/arm64/boot/dts/mediatek/
2232 F:      drivers/soc/mediatek/
2233 N:      mtk
2234 N:      mt[678]
2235 K:      mediatek
2236
2237 ARM/Mediatek USB3 PHY DRIVER
2238 M:      Chunfeng Yun <chunfeng.yun@mediatek.com>
2239 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2240 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2241 S:      Maintained
2242 F:      Documentation/devicetree/bindings/phy/mediatek,*
2243 F:      drivers/phy/mediatek/
2244
2245 ARM/Microchip (AT91) SoC support
2246 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
2247 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
2248 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
2249 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2250 S:      Supported
2251 W:      http://www.linux4sam.org
2252 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/at91/linux.git
2253 F:      arch/arm/boot/dts/at91*.dts
2254 F:      arch/arm/boot/dts/at91*.dtsi
2255 F:      arch/arm/boot/dts/sama*.dts
2256 F:      arch/arm/boot/dts/sama*.dtsi
2257 F:      arch/arm/include/debug/at91.S
2258 F:      arch/arm/mach-at91/
2259 F:      drivers/memory/atmel*
2260 F:      drivers/watchdog/sama5d4_wdt.c
2261 F:      include/soc/at91/
2262 X:      drivers/input/touchscreen/atmel_mxt_ts.c
2263 X:      drivers/net/wireless/atmel/
2264 N:      at91
2265 N:      atmel
2266
2267 ARM/Microchip Sparx5 SoC support
2268 M:      Lars Povlsen <lars.povlsen@microchip.com>
2269 M:      Steen Hegelund <Steen.Hegelund@microchip.com>
2270 M:      UNGLinuxDriver@microchip.com
2271 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2272 S:      Supported
2273 T:      git git://github.com/microchip-ung/linux-upstream.git
2274 F:      arch/arm64/boot/dts/microchip/
2275 F:      drivers/pinctrl/pinctrl-microchip-sgpio.c
2276 N:      sparx5
2277
2278 Microchip Timer Counter Block (TCB) Capture Driver
2279 M:      Kamel Bouhara <kamel.bouhara@bootlin.com>
2280 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2281 L:      linux-iio@vger.kernel.org
2282 S:      Maintained
2283 F:      drivers/counter/microchip-tcb-capture.c
2284
2285 ARM/MILBEAUT ARCHITECTURE
2286 M:      Taichi Sugaya <sugaya.taichi@socionext.com>
2287 M:      Takao Orito <orito.takao@socionext.com>
2288 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2289 S:      Maintained
2290 F:      arch/arm/boot/dts/milbeaut*
2291 F:      arch/arm/mach-milbeaut/
2292 N:      milbeaut
2293
2294 ARM/MIOA701 MACHINE SUPPORT
2295 M:      Robert Jarzmik <robert.jarzmik@free.fr>
2296 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2297 S:      Maintained
2298 F:      arch/arm/mach-pxa/mioa701.c
2299
2300 ARM/MStar/Sigmastar Armv7 SoC support
2301 M:      Daniel Palmer <daniel@thingy.jp>
2302 M:      Romain Perier <romain.perier@gmail.com>
2303 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2304 S:      Maintained
2305 W:      http://linux-chenxing.org/
2306 T:      git git://github.com/linux-chenxing/linux.git
2307 F:      Documentation/devicetree/bindings/arm/mstar/*
2308 F:      Documentation/devicetree/bindings/clock/mstar,msc313-mpll.yaml
2309 F:      Documentation/devicetree/bindings/gpio/mstar,msc313-gpio.yaml
2310 F:      arch/arm/boot/dts/mstar-*
2311 F:      arch/arm/mach-mstar/
2312 F:      drivers/clk/mstar/
2313 F:      drivers/clocksource/timer-msc313e.c
2314 F:      drivers/gpio/gpio-msc313.c
2315 F:      drivers/rtc/rtc-msc313.c
2316 F:      drivers/watchdog/msc313e_wdt.c
2317 F:      include/dt-bindings/clock/mstar-*
2318 F:      include/dt-bindings/gpio/msc313-gpio.h
2319
2320 ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
2321 M:      Michael Petchkovsky <mkpetch@internode.on.net>
2322 S:      Maintained
2323
2324 ARM/NOMADIK/Ux500 ARCHITECTURES
2325 M:      Linus Walleij <linus.walleij@linaro.org>
2326 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2327 S:      Maintained
2328 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
2329 F:      Documentation/devicetree/bindings/arm/ste-*
2330 F:      Documentation/devicetree/bindings/arm/ux500.yaml
2331 F:      Documentation/devicetree/bindings/arm/ux500/
2332 F:      Documentation/devicetree/bindings/i2c/i2c-nomadik.txt
2333 F:      arch/arm/boot/dts/ste-*
2334 F:      arch/arm/mach-nomadik/
2335 F:      arch/arm/mach-ux500/
2336 F:      drivers/clk/clk-nomadik.c
2337 F:      drivers/clocksource/clksrc-dbx500-prcmu.c
2338 F:      drivers/dma/ste_dma40*
2339 F:      drivers/hwspinlock/u8500_hsem.c
2340 F:      drivers/i2c/busses/i2c-nomadik.c
2341 F:      drivers/iio/adc/ab8500-gpadc.c
2342 F:      drivers/mfd/ab8500*
2343 F:      drivers/mfd/abx500*
2344 F:      drivers/mfd/db8500*
2345 F:      drivers/pinctrl/nomadik/
2346 F:      drivers/rtc/rtc-ab8500.c
2347 F:      drivers/rtc/rtc-pl031.c
2348 F:      drivers/soc/ux500/
2349
2350 ARM/NUVOTON NPCM ARCHITECTURE
2351 M:      Avi Fishman <avifishman70@gmail.com>
2352 M:      Tomer Maimon <tmaimon77@gmail.com>
2353 M:      Tali Perry <tali.perry1@gmail.com>
2354 R:      Patrick Venture <venture@google.com>
2355 R:      Nancy Yuen <yuenn@google.com>
2356 R:      Benjamin Fair <benjaminfair@google.com>
2357 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2358 S:      Supported
2359 F:      Documentation/devicetree/bindings/*/*/*npcm*
2360 F:      Documentation/devicetree/bindings/*/*npcm*
2361 F:      Documentation/devicetree/bindings/arm/npcm/*
2362 F:      arch/arm/boot/dts/nuvoton-npcm*
2363 F:      arch/arm/mach-npcm/
2364 F:      drivers/*/*npcm*
2365 F:      drivers/*/*/*npcm*
2366 F:      include/dt-bindings/clock/nuvoton,npcm7xx-clock.h
2367
2368 ARM/NUVOTON WPCM450 ARCHITECTURE
2369 M:      Jonathan Neuschäfer <j.neuschaefer@gmx.net>
2370 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2371 S:      Maintained
2372 W:      https://github.com/neuschaefer/wpcm450/wiki
2373 F:      Documentation/devicetree/bindings/*/*wpcm*
2374 F:      arch/arm/boot/dts/nuvoton-wpcm450*
2375 F:      arch/arm/mach-npcm/wpcm450.c
2376 F:      drivers/*/*wpcm*
2377
2378 ARM/NXP S32G ARCHITECTURE
2379 M:      Chester Lin <clin@suse.com>
2380 R:      Andreas Färber <afaerber@suse.de>
2381 R:      Matthias Brugger <mbrugger@suse.com>
2382 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2383 S:      Maintained
2384 F:      arch/arm64/boot/dts/freescale/s32g*.dts*
2385
2386 ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
2387 L:      openmoko-kernel@lists.openmoko.org (subscribers-only)
2388 S:      Orphan
2389 W:      http://wiki.openmoko.org/wiki/Neo_FreeRunner
2390 F:      arch/arm/mach-s3c/gta02.h
2391 F:      arch/arm/mach-s3c/mach-gta02.c
2392
2393 ARM/Orion SoC/Technologic Systems TS-78xx platform support
2394 M:      Alexander Clouter <alex@digriz.org.uk>
2395 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2396 S:      Maintained
2397 W:      http://www.digriz.org.uk/ts78xx/kernel
2398 F:      arch/arm/mach-orion5x/ts78xx-*
2399
2400 ARM/OXNAS platform support
2401 M:      Neil Armstrong <narmstrong@baylibre.com>
2402 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2403 L:      linux-oxnas@groups.io (moderated for non-subscribers)
2404 S:      Maintained
2405 F:      arch/arm/boot/dts/ox8*.dts*
2406 F:      arch/arm/mach-oxnas/
2407 F:      drivers/power/reset/oxnas-restart.c
2408 N:      oxnas
2409
2410 ARM/PALM TREO SUPPORT
2411 M:      Tomas Cech <sleep_walker@suse.com>
2412 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2413 S:      Maintained
2414 W:      http://hackndev.com
2415 F:      arch/arm/mach-pxa/palmtreo.*
2416
2417 ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
2418 M:      Marek Vasut <marek.vasut@gmail.com>
2419 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2420 S:      Maintained
2421 W:      http://hackndev.com
2422 F:      arch/arm/mach-pxa/include/mach/palmld.h
2423 F:      arch/arm/mach-pxa/include/mach/palmtc.h
2424 F:      arch/arm/mach-pxa/include/mach/palmtx.h
2425 F:      arch/arm/mach-pxa/palmld.c
2426 F:      arch/arm/mach-pxa/palmt5.*
2427 F:      arch/arm/mach-pxa/palmtc.c
2428 F:      arch/arm/mach-pxa/palmte2.*
2429 F:      arch/arm/mach-pxa/palmtx.c
2430
2431 ARM/PALMZ72 SUPPORT
2432 M:      Sergey Lapin <slapin@ossfans.org>
2433 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2434 S:      Maintained
2435 W:      http://hackndev.com
2436 F:      arch/arm/mach-pxa/palmz72.*
2437
2438 ARM/PLEB SUPPORT
2439 M:      Peter Chubb <pleb@gelato.unsw.edu.au>
2440 S:      Maintained
2441 W:      http://www.disy.cse.unsw.edu.au/Hardware/PLEB
2442
2443 ARM/PT DIGITAL BOARD PORT
2444 M:      Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
2445 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2446 S:      Maintained
2447 W:      http://www.armlinux.org.uk/
2448
2449 ARM/QUALCOMM SUPPORT
2450 M:      Andy Gross <agross@kernel.org>
2451 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
2452 L:      linux-arm-msm@vger.kernel.org
2453 S:      Maintained
2454 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/qcom/linux.git
2455 F:      Documentation/devicetree/bindings/*/qcom*
2456 F:      Documentation/devicetree/bindings/soc/qcom/
2457 F:      arch/arm/boot/dts/qcom-*.dts
2458 F:      arch/arm/boot/dts/qcom-*.dtsi
2459 F:      arch/arm/mach-qcom/
2460 F:      arch/arm64/boot/dts/qcom/
2461 F:      drivers/*/*/qcom*
2462 F:      drivers/*/*/qcom/
2463 F:      drivers/*/pm8???-*
2464 F:      drivers/*/qcom*
2465 F:      drivers/*/qcom/
2466 F:      drivers/bluetooth/btqcomsmd.c
2467 F:      drivers/clocksource/timer-qcom.c
2468 F:      drivers/cpuidle/cpuidle-qcom-spm.c
2469 F:      drivers/extcon/extcon-qcom*
2470 F:      drivers/i2c/busses/i2c-qcom-geni.c
2471 F:      drivers/i2c/busses/i2c-qup.c
2472 F:      drivers/iommu/msm*
2473 F:      drivers/mfd/ssbi.c
2474 F:      drivers/mmc/host/mmci_qcom*
2475 F:      drivers/mmc/host/sdhci-msm.c
2476 F:      drivers/pci/controller/dwc/pcie-qcom.c
2477 F:      drivers/phy/qualcomm/
2478 F:      drivers/power/*/msm*
2479 F:      drivers/reset/reset-qcom-*
2480 F:      drivers/scsi/ufs/ufs-qcom*
2481 F:      drivers/spi/spi-geni-qcom.c
2482 F:      drivers/spi/spi-qcom-qspi.c
2483 F:      drivers/spi/spi-qup.c
2484 F:      drivers/tty/serial/msm_serial.c
2485 F:      drivers/usb/dwc3/dwc3-qcom.c
2486 F:      include/dt-bindings/*/qcom*
2487 F:      include/linux/*/qcom*
2488 F:      include/linux/soc/qcom/
2489
2490 ARM/RADISYS ENP2611 MACHINE SUPPORT
2491 M:      Lennert Buytenhek <kernel@wantstofly.org>
2492 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2493 S:      Maintained
2494
2495 ARM/RDA MICRO ARCHITECTURE
2496 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
2497 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2498 L:      linux-unisoc@lists.infradead.org (moderated for non-subscribers)
2499 S:      Maintained
2500 F:      Documentation/devicetree/bindings/arm/rda.yaml
2501 F:      Documentation/devicetree/bindings/gpio/gpio-rda.yaml
2502 F:      Documentation/devicetree/bindings/interrupt-controller/rda,8810pl-intc.txt
2503 F:      Documentation/devicetree/bindings/serial/rda,8810pl-uart.txt
2504 F:      Documentation/devicetree/bindings/timer/rda,8810pl-timer.txt
2505 F:      arch/arm/boot/dts/rda8810pl-*
2506 F:      drivers/clocksource/timer-rda.c
2507 F:      drivers/gpio/gpio-rda.c
2508 F:      drivers/irqchip/irq-rda-intc.c
2509 F:      drivers/tty/serial/rda-uart.c
2510
2511 ARM/REALTEK ARCHITECTURE
2512 M:      Andreas Färber <afaerber@suse.de>
2513 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2514 L:      linux-realtek-soc@lists.infradead.org (moderated for non-subscribers)
2515 S:      Maintained
2516 F:      Documentation/devicetree/bindings/arm/realtek.yaml
2517 F:      arch/arm/boot/dts/rtd*
2518 F:      arch/arm/mach-realtek/
2519 F:      arch/arm64/boot/dts/realtek/
2520
2521 ARM/RENESAS ARM64 ARCHITECTURE
2522 M:      Geert Uytterhoeven <geert+renesas@glider.be>
2523 M:      Magnus Damm <magnus.damm@gmail.com>
2524 L:      linux-renesas-soc@vger.kernel.org
2525 S:      Supported
2526 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
2527 C:      irc://irc.libera.chat/renesas-soc
2528 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git next
2529 F:      Documentation/devicetree/bindings/arm/renesas.yaml
2530 F:      arch/arm64/boot/dts/renesas/
2531 F:      drivers/soc/renesas/
2532 F:      include/linux/soc/renesas/
2533
2534 ARM/RISCPC ARCHITECTURE
2535 M:      Russell King <linux@armlinux.org.uk>
2536 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2537 S:      Maintained
2538 W:      http://www.armlinux.org.uk/
2539 F:      arch/arm/include/asm/hardware/entry-macro-iomd.S
2540 F:      arch/arm/include/asm/hardware/ioc.h
2541 F:      arch/arm/include/asm/hardware/iomd.h
2542 F:      arch/arm/include/asm/hardware/memc.h
2543 F:      arch/arm/mach-rpc/
2544 F:      drivers/net/ethernet/8390/etherh.c
2545 F:      drivers/net/ethernet/i825xx/ether1*
2546 F:      drivers/net/ethernet/seeq/ether3*
2547 F:      drivers/scsi/arm/
2548
2549 ARM/Rockchip SoC support
2550 M:      Heiko Stuebner <heiko@sntech.de>
2551 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2552 L:      linux-rockchip@lists.infradead.org
2553 S:      Maintained
2554 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmind/linux-rockchip.git
2555 F:      Documentation/devicetree/bindings/i2c/i2c-rk3x.yaml
2556 F:      Documentation/devicetree/bindings/mmc/rockchip-dw-mshc.yaml
2557 F:      Documentation/devicetree/bindings/spi/spi-rockchip.yaml
2558 F:      arch/arm/boot/dts/rk3*
2559 F:      arch/arm/boot/dts/rv1108*
2560 F:      arch/arm/mach-rockchip/
2561 F:      drivers/*/*/*rockchip*
2562 F:      drivers/*/*rockchip*
2563 F:      drivers/clk/rockchip/
2564 F:      drivers/i2c/busses/i2c-rk3x.c
2565 F:      sound/soc/rockchip/
2566 N:      rockchip
2567
2568 ARM/SAMSUNG S3C, S5P AND EXYNOS ARM ARCHITECTURES
2569 M:      Krzysztof Kozlowski <krzk@kernel.org>
2570 R:      Alim Akhtar <alim.akhtar@samsung.com>
2571 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2572 L:      linux-samsung-soc@vger.kernel.org
2573 S:      Maintained
2574 C:      irc://irc.libera.chat/linux-exynos
2575 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
2576 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/krzk/linux.git
2577 F:      Documentation/arm/samsung/
2578 F:      Documentation/devicetree/bindings/arm/samsung/
2579 F:      Documentation/devicetree/bindings/power/pd-samsung.yaml
2580 F:      Documentation/devicetree/bindings/soc/samsung/
2581 F:      arch/arm/boot/dts/exynos*
2582 F:      arch/arm/boot/dts/s3c*
2583 F:      arch/arm/boot/dts/s5p*
2584 F:      arch/arm/mach-exynos*/
2585 F:      arch/arm/mach-s3c/
2586 F:      arch/arm/mach-s5p*/
2587 F:      arch/arm64/boot/dts/exynos/
2588 F:      drivers/*/*/*s3c24*
2589 F:      drivers/*/*s3c24*
2590 F:      drivers/*/*s3c64xx*
2591 F:      drivers/*/*s5pv210*
2592 F:      drivers/clocksource/samsung_pwm_timer.c
2593 F:      drivers/memory/samsung/
2594 F:      drivers/pwm/pwm-samsung.c
2595 F:      drivers/soc/samsung/
2596 F:      drivers/tty/serial/samsung*
2597 F:      include/clocksource/samsung_pwm.h
2598 F:      include/linux/platform_data/*s3c*
2599 F:      include/linux/serial_s3c.h
2600 F:      include/linux/soc/samsung/
2601 N:      exynos
2602 N:      s3c2410
2603 N:      s3c64xx
2604 N:      s5pv210
2605
2606 ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT
2607 M:      Łukasz Stelmach <l.stelmach@samsung.com>
2608 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2609 L:      linux-media@vger.kernel.org
2610 S:      Maintained
2611 F:      drivers/media/platform/samsung/s5p-g2d/
2612
2613 ARM/SAMSUNG S5P SERIES HDMI CEC SUBSYSTEM SUPPORT
2614 M:      Marek Szyprowski <m.szyprowski@samsung.com>
2615 L:      linux-samsung-soc@vger.kernel.org
2616 L:      linux-media@vger.kernel.org
2617 S:      Maintained
2618 F:      Documentation/devicetree/bindings/media/s5p-cec.txt
2619 F:      drivers/media/cec/platform/s5p/
2620
2621 ARM/SAMSUNG S5P SERIES JPEG CODEC SUPPORT
2622 M:      Andrzej Pietrasiewicz <andrzejtp2010@gmail.com>
2623 M:      Jacek Anaszewski <jacek.anaszewski@gmail.com>
2624 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
2625 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2626 L:      linux-media@vger.kernel.org
2627 S:      Maintained
2628 F:      drivers/media/platform/samsung/s5p-jpeg/
2629
2630 ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
2631 M:      Marek Szyprowski <m.szyprowski@samsung.com>
2632 M:      Andrzej Hajda <andrzej.hajda@intel.com>
2633 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2634 L:      linux-media@vger.kernel.org
2635 S:      Maintained
2636 F:      drivers/media/platform/samsung/s5p-mfc/
2637
2638 ARM/SHMOBILE ARM ARCHITECTURE
2639 M:      Geert Uytterhoeven <geert+renesas@glider.be>
2640 M:      Magnus Damm <magnus.damm@gmail.com>
2641 L:      linux-renesas-soc@vger.kernel.org
2642 S:      Supported
2643 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
2644 C:      irc://irc.libera.chat/renesas-soc
2645 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git next
2646 F:      Documentation/devicetree/bindings/arm/renesas.yaml
2647 F:      arch/arm/boot/dts/emev2*
2648 F:      arch/arm/boot/dts/gr-peach*
2649 F:      arch/arm/boot/dts/iwg20d-q7*
2650 F:      arch/arm/boot/dts/r7s*
2651 F:      arch/arm/boot/dts/r8a*
2652 F:      arch/arm/boot/dts/r9a*
2653 F:      arch/arm/boot/dts/sh*
2654 F:      arch/arm/configs/shmobile_defconfig
2655 F:      arch/arm/include/debug/renesas-scif.S
2656 F:      arch/arm/mach-shmobile/
2657 F:      drivers/soc/renesas/
2658 F:      include/linux/soc/renesas/
2659
2660 ARM/SOCFPGA ARCHITECTURE
2661 M:      Dinh Nguyen <dinguyen@kernel.org>
2662 S:      Maintained
2663 W:      http://www.rocketboards.org
2664 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
2665 F:      arch/arm/boot/dts/socfpga*
2666 F:      arch/arm/configs/socfpga_defconfig
2667 F:      arch/arm/mach-socfpga/
2668 F:      arch/arm64/boot/dts/altera/
2669 F:      arch/arm64/boot/dts/intel/
2670
2671 ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
2672 M:      Dinh Nguyen <dinguyen@kernel.org>
2673 S:      Maintained
2674 F:      drivers/clk/socfpga/
2675
2676 ARM/SOCFPGA EDAC SUPPORT
2677 M:      Dinh Nguyen <dinguyen@kernel.org>
2678 S:      Maintained
2679 F:      drivers/edac/altera_edac.[ch]
2680
2681 ARM/SPREADTRUM SoC SUPPORT
2682 M:      Orson Zhai <orsonzhai@gmail.com>
2683 M:      Baolin Wang <baolin.wang7@gmail.com>
2684 M:      Chunyan Zhang <zhang.lyra@gmail.com>
2685 S:      Maintained
2686 F:      arch/arm64/boot/dts/sprd
2687 N:      sprd
2688 N:      sc27xx
2689 N:      sc2731
2690
2691 ARM/STI ARCHITECTURE
2692 M:      Patrice Chotard <patrice.chotard@foss.st.com>
2693 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2694 S:      Maintained
2695 W:      http://www.stlinux.com
2696 F:      Documentation/devicetree/bindings/i2c/i2c-st.txt
2697 F:      arch/arm/boot/dts/sti*
2698 F:      arch/arm/mach-sti/
2699 F:      drivers/ata/ahci_st.c
2700 F:      drivers/char/hw_random/st-rng.c
2701 F:      drivers/clocksource/arm_global_timer.c
2702 F:      drivers/clocksource/clksrc_st_lpc.c
2703 F:      drivers/cpufreq/sti-cpufreq.c
2704 F:      drivers/dma/st_fdma*
2705 F:      drivers/i2c/busses/i2c-st.c
2706 F:      drivers/media/platform/st/sti/c8sectpfe/
2707 F:      drivers/media/rc/st_rc.c
2708 F:      drivers/mmc/host/sdhci-st.c
2709 F:      drivers/phy/st/phy-miphy28lp.c
2710 F:      drivers/phy/st/phy-stih407-usb.c
2711 F:      drivers/pinctrl/pinctrl-st.c
2712 F:      drivers/remoteproc/st_remoteproc.c
2713 F:      drivers/remoteproc/st_slim_rproc.c
2714 F:      drivers/reset/sti/
2715 F:      drivers/rtc/rtc-st-lpc.c
2716 F:      drivers/tty/serial/st-asc.c
2717 F:      drivers/usb/dwc3/dwc3-st.c
2718 F:      drivers/usb/host/ehci-st.c
2719 F:      drivers/usb/host/ohci-st.c
2720 F:      drivers/watchdog/st_lpc_wdt.c
2721 F:      include/linux/remoteproc/st_slim_rproc.h
2722
2723 ARM/STM32 ARCHITECTURE
2724 M:      Maxime Coquelin <mcoquelin.stm32@gmail.com>
2725 M:      Alexandre Torgue <alexandre.torgue@foss.st.com>
2726 L:      linux-stm32@st-md-mailman.stormreply.com (moderated for non-subscribers)
2727 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2728 S:      Maintained
2729 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/atorgue/stm32.git stm32-next
2730 F:      arch/arm/boot/dts/stm32*
2731 F:      arch/arm/mach-stm32/
2732 F:      drivers/clocksource/armv7m_systick.c
2733 N:      stm32
2734 N:      stm
2735
2736 ARM/Synaptics SoC support
2737 M:      Jisheng Zhang <jszhang@kernel.org>
2738 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2739 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2740 S:      Maintained
2741 F:      arch/arm/boot/dts/berlin*
2742 F:      arch/arm/mach-berlin/
2743 F:      arch/arm64/boot/dts/synaptics/
2744
2745 ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
2746 M:      Lennert Buytenhek <kernel@wantstofly.org>
2747 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2748 S:      Maintained
2749
2750 ARM/TEGRA HDMI CEC SUBSYSTEM SUPPORT
2751 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
2752 L:      linux-tegra@vger.kernel.org
2753 L:      linux-media@vger.kernel.org
2754 S:      Maintained
2755 F:      Documentation/devicetree/bindings/media/tegra-cec.txt
2756 F:      drivers/media/cec/platform/tegra/
2757
2758 ARM/TESLA FSD SoC SUPPORT
2759 M:      Alim Akhtar <alim.akhtar@samsung.com>
2760 M:      linux-fsd@tesla.com
2761 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2762 L:      linux-samsung-soc@vger.kernel.org
2763 S:      Maintained
2764 F:      arch/arm64/boot/dts/tesla*
2765
2766 ARM/TETON BGA MACHINE SUPPORT
2767 M:      "Mark F. Brown" <mark.brown314@gmail.com>
2768 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2769 S:      Maintained
2770
2771 ARM/TEXAS INSTRUMENT AEMIF/EMIF DRIVERS
2772 M:      Santosh Shilimkar <ssantosh@kernel.org>
2773 L:      linux-kernel@vger.kernel.org
2774 S:      Maintained
2775 F:      drivers/memory/*emif*
2776
2777 ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE
2778 M:      Nishanth Menon <nm@ti.com>
2779 M:      Santosh Shilimkar <ssantosh@kernel.org>
2780 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2781 S:      Maintained
2782 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ti/linux.git
2783 F:      arch/arm/boot/dts/keystone-*
2784 F:      arch/arm/mach-keystone/
2785
2786 ARM/TEXAS INSTRUMENT KEYSTONE CLOCK FRAMEWORK
2787 M:      Santosh Shilimkar <ssantosh@kernel.org>
2788 L:      linux-kernel@vger.kernel.org
2789 S:      Maintained
2790 F:      drivers/clk/keystone/
2791
2792 ARM/TEXAS INSTRUMENT KEYSTONE CLOCKSOURCE
2793 M:      Santosh Shilimkar <ssantosh@kernel.org>
2794 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2795 L:      linux-kernel@vger.kernel.org
2796 S:      Maintained
2797 F:      drivers/clocksource/timer-keystone.c
2798
2799 ARM/TEXAS INSTRUMENT KEYSTONE RESET DRIVER
2800 M:      Santosh Shilimkar <ssantosh@kernel.org>
2801 L:      linux-kernel@vger.kernel.org
2802 S:      Maintained
2803 F:      drivers/power/reset/keystone-reset.c
2804
2805 ARM/TEXAS INSTRUMENTS K3 ARCHITECTURE
2806 M:      Nishanth Menon <nm@ti.com>
2807 M:      Vignesh Raghavendra <vigneshr@ti.com>
2808 M:      Tero Kristo <kristo@kernel.org>
2809 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2810 S:      Supported
2811 F:      Documentation/devicetree/bindings/arm/ti/k3.yaml
2812 F:      arch/arm64/boot/dts/ti/Makefile
2813 F:      arch/arm64/boot/dts/ti/k3-*
2814 F:      include/dt-bindings/pinctrl/k3.h
2815
2816 ARM/THECUS N2100 MACHINE SUPPORT
2817 M:      Lennert Buytenhek <kernel@wantstofly.org>
2818 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2819 S:      Maintained
2820
2821 ARM/TOSA MACHINE SUPPORT
2822 M:      Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
2823 M:      Dirk Opfer <dirk@opfer-online.de>
2824 S:      Maintained
2825
2826 ARM/TOSHIBA VISCONTI ARCHITECTURE
2827 M:      Nobuhiro Iwamatsu <nobuhiro1.iwamatsu@toshiba.co.jp>
2828 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2829 S:      Supported
2830 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwamatsu/linux-visconti.git
2831 F:      Documentation/devicetree/bindings/arm/toshiba.yaml
2832 F:      Documentation/devicetree/bindings/clock/toshiba,tmpv770x-pipllct.yaml
2833 F:      Documentation/devicetree/bindings/clock/toshiba,tmpv770x-pismu.yaml
2834 F:      Documentation/devicetree/bindings/net/toshiba,visconti-dwmac.yaml
2835 F:      Documentation/devicetree/bindings/gpio/toshiba,gpio-visconti.yaml
2836 F:      Documentation/devicetree/bindings/pci/toshiba,visconti-pcie.yaml
2837 F:      Documentation/devicetree/bindings/pinctrl/toshiba,visconti-pinctrl.yaml
2838 F:      Documentation/devicetree/bindings/watchdog/toshiba,visconti-wdt.yaml
2839 F:      arch/arm64/boot/dts/toshiba/
2840 F:      drivers/clk/visconti/
2841 F:      drivers/net/ethernet/stmicro/stmmac/dwmac-visconti.c
2842 F:      drivers/gpio/gpio-visconti.c
2843 F:      drivers/pci/controller/dwc/pcie-visconti.c
2844 F:      drivers/pinctrl/visconti/
2845 F:      drivers/watchdog/visconti_wdt.c
2846 N:      visconti
2847
2848 ARM/UNIPHIER ARCHITECTURE
2849 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
2850 M:      Masami Hiramatsu <mhiramat@kernel.org>
2851 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2852 S:      Maintained
2853 F:      Documentation/devicetree/bindings/arm/socionext/uniphier.yaml
2854 F:      Documentation/devicetree/bindings/gpio/socionext,uniphier-gpio.yaml
2855 F:      Documentation/devicetree/bindings/pinctrl/socionext,uniphier-pinctrl.yaml
2856 F:      arch/arm/boot/dts/uniphier*
2857 F:      arch/arm/include/asm/hardware/cache-uniphier.h
2858 F:      arch/arm/mach-uniphier/
2859 F:      arch/arm/mm/cache-uniphier.c
2860 F:      arch/arm64/boot/dts/socionext/uniphier*
2861 F:      drivers/bus/uniphier-system-bus.c
2862 F:      drivers/clk/uniphier/
2863 F:      drivers/dma/uniphier-mdmac.c
2864 F:      drivers/gpio/gpio-uniphier.c
2865 F:      drivers/i2c/busses/i2c-uniphier*
2866 F:      drivers/irqchip/irq-uniphier-aidet.c
2867 F:      drivers/mmc/host/uniphier-sd.c
2868 F:      drivers/pinctrl/uniphier/
2869 F:      drivers/reset/reset-uniphier.c
2870 F:      drivers/tty/serial/8250/8250_uniphier.c
2871 N:      uniphier
2872
2873 ARM/VERSATILE EXPRESS PLATFORM
2874 M:      Liviu Dudau <liviu.dudau@arm.com>
2875 M:      Sudeep Holla <sudeep.holla@arm.com>
2876 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
2877 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2878 S:      Maintained
2879 F:      */*/*/vexpress*
2880 F:      */*/vexpress*
2881 F:      arch/arm/boot/dts/vexpress*
2882 F:      arch/arm/mach-vexpress/
2883 F:      arch/arm64/boot/dts/arm/
2884 F:      drivers/clk/versatile/clk-vexpress-osc.c
2885 F:      drivers/clocksource/timer-versatile.c
2886 N:      mps2
2887
2888 ARM/VFP SUPPORT
2889 M:      Russell King <linux@armlinux.org.uk>
2890 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2891 S:      Maintained
2892 W:      http://www.armlinux.org.uk/
2893 F:      arch/arm/vfp/
2894
2895 ARM/VOIPAC PXA270 SUPPORT
2896 M:      Marek Vasut <marek.vasut@gmail.com>
2897 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2898 S:      Maintained
2899 F:      arch/arm/mach-pxa/include/mach/vpac270.h
2900 F:      arch/arm/mach-pxa/vpac270.c
2901
2902 ARM/VT8500 ARM ARCHITECTURE
2903 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2904 S:      Orphan
2905 F:      Documentation/devicetree/bindings/i2c/i2c-wmt.txt
2906 F:      arch/arm/mach-vt8500/
2907 F:      drivers/clocksource/timer-vt8500.c
2908 F:      drivers/i2c/busses/i2c-wmt.c
2909 F:      drivers/mmc/host/wmt-sdmmc.c
2910 F:      drivers/pwm/pwm-vt8500.c
2911 F:      drivers/rtc/rtc-vt8500.c
2912 F:      drivers/tty/serial/vt8500_serial.c
2913 F:      drivers/usb/host/ehci-platform.c
2914 F:      drivers/usb/host/uhci-platform.c
2915 F:      drivers/video/fbdev/vt8500lcdfb.*
2916 F:      drivers/video/fbdev/wm8505fb*
2917 F:      drivers/video/fbdev/wmt_ge_rops.*
2918
2919 ARM/ZIPIT Z2 SUPPORT
2920 M:      Marek Vasut <marek.vasut@gmail.com>
2921 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2922 S:      Maintained
2923 F:      arch/arm/mach-pxa/include/mach/z2.h
2924 F:      arch/arm/mach-pxa/z2.c
2925
2926 ARM/ZYNQ ARCHITECTURE
2927 M:      Michal Simek <michal.simek@xilinx.com>
2928 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2929 S:      Supported
2930 W:      http://wiki.xilinx.com
2931 T:      git https://github.com/Xilinx/linux-xlnx.git
2932 F:      Documentation/devicetree/bindings/i2c/cdns,i2c-r1p10.yaml
2933 F:      Documentation/devicetree/bindings/i2c/xlnx,xps-iic-2.00.a.yaml
2934 F:      Documentation/devicetree/bindings/spi/xlnx,zynq-qspi.yaml
2935 F:      arch/arm/mach-zynq/
2936 F:      drivers/clocksource/timer-cadence-ttc.c
2937 F:      drivers/cpuidle/cpuidle-zynq.c
2938 F:      drivers/edac/synopsys_edac.c
2939 F:      drivers/i2c/busses/i2c-cadence.c
2940 F:      drivers/i2c/busses/i2c-xiic.c
2941 F:      drivers/mmc/host/sdhci-of-arasan.c
2942 N:      zynq
2943 N:      xilinx
2944
2945 ARM64 PORT (AARCH64 ARCHITECTURE)
2946 M:      Catalin Marinas <catalin.marinas@arm.com>
2947 M:      Will Deacon <will@kernel.org>
2948 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2949 S:      Maintained
2950 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux.git
2951 F:      Documentation/arm64/
2952 F:      arch/arm64/
2953 F:      tools/testing/selftests/arm64/
2954 X:      arch/arm64/boot/dts/
2955
2956 ARROW SPEEDCHIPS XRS7000 SERIES ETHERNET SWITCH DRIVER
2957 M:      George McCollister <george.mccollister@gmail.com>
2958 L:      netdev@vger.kernel.org
2959 S:      Maintained
2960 F:      Documentation/devicetree/bindings/net/dsa/arrow,xrs700x.yaml
2961 F:      drivers/net/dsa/xrs700x/*
2962 F:      net/dsa/tag_xrs700x.c
2963
2964 AS3645A LED FLASH CONTROLLER DRIVER
2965 M:      Sakari Ailus <sakari.ailus@iki.fi>
2966 L:      linux-leds@vger.kernel.org
2967 S:      Maintained
2968 F:      drivers/leds/flash/leds-as3645a.c
2969
2970 ASAHI KASEI AK7375 LENS VOICE COIL DRIVER
2971 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
2972 L:      linux-media@vger.kernel.org
2973 S:      Maintained
2974 T:      git git://linuxtv.org/media_tree.git
2975 F:      Documentation/devicetree/bindings/media/i2c/ak7375.txt
2976 F:      drivers/media/i2c/ak7375.c
2977
2978 ASAHI KASEI AK8974 DRIVER
2979 M:      Linus Walleij <linus.walleij@linaro.org>
2980 L:      linux-iio@vger.kernel.org
2981 S:      Supported
2982 W:      http://www.akm.com/
2983 F:      drivers/iio/magnetometer/ak8974.c
2984
2985 ASC7621 HARDWARE MONITOR DRIVER
2986 M:      George Joseph <george.joseph@fairview5.com>
2987 L:      linux-hwmon@vger.kernel.org
2988 S:      Maintained
2989 F:      Documentation/hwmon/asc7621.rst
2990 F:      drivers/hwmon/asc7621.c
2991
2992 ASIX AX88796C SPI ETHERNET ADAPTER
2993 M:      Łukasz Stelmach <l.stelmach@samsung.com>
2994 S:      Maintained
2995 F:      Documentation/devicetree/bindings/net/asix,ax88796c.yaml
2996 F:      drivers/net/ethernet/asix/ax88796c_*
2997
2998 ASPEED PINCTRL DRIVERS
2999 M:      Andrew Jeffery <andrew@aj.id.au>
3000 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
3001 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
3002 L:      linux-gpio@vger.kernel.org
3003 S:      Maintained
3004 F:      Documentation/devicetree/bindings/pinctrl/aspeed,*
3005 F:      drivers/pinctrl/aspeed/
3006
3007 ASPEED SCU INTERRUPT CONTROLLER DRIVER
3008 M:      Eddie James <eajames@linux.ibm.com>
3009 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
3010 S:      Maintained
3011 F:      Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2xxx-scu-ic.txt
3012 F:      drivers/irqchip/irq-aspeed-scu-ic.c
3013 F:      include/dt-bindings/interrupt-controller/aspeed-scu-ic.h
3014
3015 ASPEED SD/MMC DRIVER
3016 M:      Andrew Jeffery <andrew@aj.id.au>
3017 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
3018 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
3019 L:      linux-mmc@vger.kernel.org
3020 S:      Maintained
3021 F:      Documentation/devicetree/bindings/mmc/aspeed,sdhci.yaml
3022 F:      drivers/mmc/host/sdhci-of-aspeed*
3023
3024 ASPEED VIDEO ENGINE DRIVER
3025 M:      Eddie James <eajames@linux.ibm.com>
3026 L:      linux-media@vger.kernel.org
3027 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
3028 S:      Maintained
3029 F:      Documentation/devicetree/bindings/media/aspeed-video.txt
3030 F:      drivers/media/platform/aspeed/
3031
3032 ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
3033 M:      Corentin Chary <corentin.chary@gmail.com>
3034 L:      acpi4asus-user@lists.sourceforge.net
3035 L:      platform-driver-x86@vger.kernel.org
3036 S:      Maintained
3037 W:      http://acpi4asus.sf.net
3038 F:      drivers/platform/x86/asus*.c
3039 F:      drivers/platform/x86/eeepc*.c
3040
3041 ASUS TF103C DOCK DRIVER
3042 M:      Hans de Goede <hdegoede@redhat.com>
3043 L:      platform-driver-x86@vger.kernel.org
3044 S:      Maintained
3045 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
3046 F:      drivers/platform/x86/asus-tf103c-dock.c
3047
3048 ASUS WMI HARDWARE MONITOR DRIVER
3049 M:      Ed Brindley <kernel@maidavale.org>
3050 M:      Denis Pauk <pauk.denis@gmail.com>
3051 L:      linux-hwmon@vger.kernel.org
3052 S:      Maintained
3053 F:      drivers/hwmon/asus_wmi_sensors.c
3054
3055 ASUS WMI EC HARDWARE MONITOR DRIVER
3056 M:      Eugene Shalygin <eugene.shalygin@gmail.com>
3057 M:      Denis Pauk <pauk.denis@gmail.com>
3058 L:      linux-hwmon@vger.kernel.org
3059 S:      Maintained
3060 F:      drivers/hwmon/asus_wmi_ec_sensors.c
3061
3062 ASUS EC HARDWARE MONITOR DRIVER
3063 M:      Eugene Shalygin <eugene.shalygin@gmail.com>
3064 L:      linux-hwmon@vger.kernel.org
3065 S:      Maintained
3066 F:      drivers/hwmon/asus-ec-sensors.c
3067
3068 ASUS WIRELESS RADIO CONTROL DRIVER
3069 M:      João Paulo Rechi Vita <jprvita@gmail.com>
3070 L:      platform-driver-x86@vger.kernel.org
3071 S:      Maintained
3072 F:      drivers/platform/x86/asus-wireless.c
3073
3074 ASYMMETRIC KEYS
3075 M:      David Howells <dhowells@redhat.com>
3076 L:      keyrings@vger.kernel.org
3077 S:      Maintained
3078 F:      Documentation/crypto/asymmetric-keys.rst
3079 F:      crypto/asymmetric_keys/
3080 F:      include/crypto/pkcs7.h
3081 F:      include/crypto/public_key.h
3082 F:      include/linux/verification.h
3083
3084 ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
3085 R:      Dan Williams <dan.j.williams@intel.com>
3086 S:      Odd fixes
3087 W:      http://sourceforge.net/projects/xscaleiop
3088 F:      Documentation/crypto/async-tx-api.rst
3089 F:      crypto/async_tx/
3090 F:      include/linux/async_tx.h
3091
3092 AT24 EEPROM DRIVER
3093 M:      Bartosz Golaszewski <brgl@bgdev.pl>
3094 L:      linux-i2c@vger.kernel.org
3095 S:      Maintained
3096 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux.git
3097 F:      Documentation/devicetree/bindings/eeprom/at24.yaml
3098 F:      drivers/misc/eeprom/at24.c
3099
3100 ATA OVER ETHERNET (AOE) DRIVER
3101 M:      "Justin Sanders" <justin@coraid.com>
3102 S:      Supported
3103 W:      http://www.openaoe.org/
3104 F:      Documentation/admin-guide/aoe/
3105 F:      drivers/block/aoe/
3106
3107 ATC260X PMIC MFD DRIVER
3108 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
3109 M:      Cristian Ciocaltea <cristian.ciocaltea@gmail.com>
3110 L:      linux-actions@lists.infradead.org
3111 S:      Maintained
3112 F:      Documentation/devicetree/bindings/mfd/actions,atc260x.yaml
3113 F:      drivers/input/misc/atc260x-onkey.c
3114 F:      drivers/mfd/atc260*
3115 F:      drivers/power/reset/atc260x-poweroff.c
3116 F:      drivers/regulator/atc260x-regulator.c
3117 F:      include/linux/mfd/atc260x/*
3118
3119 ATHEROS 71XX/9XXX GPIO DRIVER
3120 M:      Alban Bedel <albeu@free.fr>
3121 S:      Maintained
3122 W:      https://github.com/AlbanBedel/linux
3123 T:      git git://github.com/AlbanBedel/linux
3124 F:      Documentation/devicetree/bindings/gpio/gpio-ath79.txt
3125 F:      drivers/gpio/gpio-ath79.c
3126
3127 ATHEROS 71XX/9XXX USB PHY DRIVER
3128 M:      Alban Bedel <albeu@free.fr>
3129 S:      Maintained
3130 W:      https://github.com/AlbanBedel/linux
3131 T:      git git://github.com/AlbanBedel/linux
3132 F:      Documentation/devicetree/bindings/phy/phy-ath79-usb.txt
3133 F:      drivers/phy/qualcomm/phy-ath79-usb.c
3134
3135 ATHEROS ATH GENERIC UTILITIES
3136 M:      Kalle Valo <kvalo@kernel.org>
3137 L:      linux-wireless@vger.kernel.org
3138 S:      Supported
3139 F:      drivers/net/wireless/ath/*
3140
3141 ATHEROS ATH5K WIRELESS DRIVER
3142 M:      Jiri Slaby <jirislaby@kernel.org>
3143 M:      Nick Kossifidis <mickflemm@gmail.com>
3144 M:      Luis Chamberlain <mcgrof@kernel.org>
3145 L:      linux-wireless@vger.kernel.org
3146 S:      Maintained
3147 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath5k
3148 F:      drivers/net/wireless/ath/ath5k/
3149
3150 ATHEROS ATH6KL WIRELESS DRIVER
3151 L:      linux-wireless@vger.kernel.org
3152 S:      Orphan
3153 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath6kl
3154 F:      drivers/net/wireless/ath/ath6kl/
3155
3156 ATI_REMOTE2 DRIVER
3157 M:      Ville Syrjala <syrjala@sci.fi>
3158 S:      Maintained
3159 F:      drivers/input/misc/ati_remote2.c
3160
3161 ATK0110 HWMON DRIVER
3162 M:      Luca Tettamanti <kronos.it@gmail.com>
3163 L:      linux-hwmon@vger.kernel.org
3164 S:      Maintained
3165 F:      drivers/hwmon/asus_atk0110.c
3166
3167 ATLX ETHERNET DRIVERS
3168 M:      Chris Snook <chris.snook@gmail.com>
3169 L:      netdev@vger.kernel.org
3170 S:      Maintained
3171 W:      http://sourceforge.net/projects/atl1
3172 W:      http://atl1.sourceforge.net
3173 F:      drivers/net/ethernet/atheros/
3174
3175 ATM
3176 M:      Chas Williams <3chas3@gmail.com>
3177 L:      linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
3178 L:      netdev@vger.kernel.org
3179 S:      Maintained
3180 W:      http://linux-atm.sourceforge.net
3181 F:      drivers/atm/
3182 F:      include/linux/atm*
3183 F:      include/uapi/linux/atm*
3184
3185 ATMEL MACB ETHERNET DRIVER
3186 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
3187 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
3188 S:      Supported
3189 F:      drivers/net/ethernet/cadence/
3190
3191 ATMEL MAXTOUCH DRIVER
3192 M:      Nick Dyer <nick@shmanahar.org>
3193 S:      Maintained
3194 T:      git git://github.com/ndyer/linux.git
3195 F:      Documentation/devicetree/bindings/input/atmel,maxtouch.yaml
3196 F:      drivers/input/touchscreen/atmel_mxt_ts.c
3197
3198 ATMEL WIRELESS DRIVER
3199 M:      Simon Kelley <simon@thekelleys.org.uk>
3200 L:      linux-wireless@vger.kernel.org
3201 S:      Maintained
3202 W:      http://www.thekelleys.org.uk/atmel
3203 W:      http://atmelwlandriver.sourceforge.net/
3204 F:      drivers/net/wireless/atmel/atmel*
3205
3206 ATOMIC INFRASTRUCTURE
3207 M:      Will Deacon <will@kernel.org>
3208 M:      Peter Zijlstra <peterz@infradead.org>
3209 R:      Boqun Feng <boqun.feng@gmail.com>
3210 R:      Mark Rutland <mark.rutland@arm.com>
3211 L:      linux-kernel@vger.kernel.org
3212 S:      Maintained
3213 F:      arch/*/include/asm/atomic*.h
3214 F:      include/*/atomic*.h
3215 F:      include/linux/refcount.h
3216 F:      Documentation/atomic_*.txt
3217 F:      scripts/atomic/
3218
3219 ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER
3220 M:      Bradley Grove <linuxdrivers@attotech.com>
3221 L:      linux-scsi@vger.kernel.org
3222 S:      Supported
3223 W:      http://www.attotech.com
3224 F:      drivers/scsi/esas2r
3225
3226 ATUSB IEEE 802.15.4 RADIO DRIVER
3227 M:      Stefan Schmidt <stefan@datenfreihafen.org>
3228 L:      linux-wpan@vger.kernel.org
3229 S:      Maintained
3230 F:      drivers/net/ieee802154/at86rf230.h
3231 F:      drivers/net/ieee802154/atusb.c
3232 F:      drivers/net/ieee802154/atusb.h
3233
3234 AUDIT SUBSYSTEM
3235 M:      Paul Moore <paul@paul-moore.com>
3236 M:      Eric Paris <eparis@redhat.com>
3237 L:      linux-audit@redhat.com (moderated for non-subscribers)
3238 S:      Supported
3239 W:      https://github.com/linux-audit
3240 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/audit.git
3241 F:      include/asm-generic/audit_*.h
3242 F:      include/linux/audit.h
3243 F:      include/linux/audit_arch.h
3244 F:      include/uapi/linux/audit.h
3245 F:      kernel/audit*
3246 F:      lib/*audit.c
3247
3248 AUXILIARY DISPLAY DRIVERS
3249 M:      Miguel Ojeda <ojeda@kernel.org>
3250 S:      Maintained
3251 F:      Documentation/devicetree/bindings/auxdisplay/
3252 F:      drivers/auxdisplay/
3253 F:      include/linux/cfag12864b.h
3254
3255 AVIA HX711 ANALOG DIGITAL CONVERTER IIO DRIVER
3256 M:      Andreas Klinger <ak@it-klinger.de>
3257 L:      linux-iio@vger.kernel.org
3258 S:      Maintained
3259 F:      Documentation/devicetree/bindings/iio/adc/avia-hx711.yaml
3260 F:      drivers/iio/adc/hx711.c
3261
3262 AX.25 NETWORK LAYER
3263 M:      Ralf Baechle <ralf@linux-mips.org>
3264 L:      linux-hams@vger.kernel.org
3265 S:      Maintained
3266 W:      http://www.linux-ax25.org/
3267 F:      include/net/ax25.h
3268 F:      include/uapi/linux/ax25.h
3269 F:      net/ax25/
3270
3271 AXENTIA ARM DEVICES
3272 M:      Peter Rosin <peda@axentia.se>
3273 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3274 S:      Maintained
3275 F:      arch/arm/boot/dts/at91-linea.dtsi
3276 F:      arch/arm/boot/dts/at91-natte.dtsi
3277 F:      arch/arm/boot/dts/at91-nattis-2-natte-2.dts
3278 F:      arch/arm/boot/dts/at91-tse850-3.dts
3279
3280 AXENTIA ASOC DRIVERS
3281 M:      Peter Rosin <peda@axentia.se>
3282 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3283 S:      Maintained
3284 F:      Documentation/devicetree/bindings/sound/axentia,*
3285 F:      sound/soc/atmel/tse850-pcm5142.c
3286
3287 AXI-FAN-CONTROL HARDWARE MONITOR DRIVER
3288 M:      Nuno Sá <nuno.sa@analog.com>
3289 L:      linux-hwmon@vger.kernel.org
3290 S:      Supported
3291 W:      http://ez.analog.com/community/linux-device-drivers
3292 F:      Documentation/devicetree/bindings/hwmon/adi,axi-fan-control.yaml
3293 F:      drivers/hwmon/axi-fan-control.c
3294
3295 AXXIA I2C CONTROLLER
3296 M:      Krzysztof Adamski <krzysztof.adamski@nokia.com>
3297 L:      linux-i2c@vger.kernel.org
3298 S:      Maintained
3299 F:      Documentation/devicetree/bindings/i2c/i2c-axxia.txt
3300 F:      drivers/i2c/busses/i2c-axxia.c
3301
3302 AZ6007 DVB DRIVER
3303 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
3304 L:      linux-media@vger.kernel.org
3305 S:      Maintained
3306 W:      https://linuxtv.org
3307 T:      git git://linuxtv.org/media_tree.git
3308 F:      drivers/media/usb/dvb-usb-v2/az6007.c
3309
3310 AZTECH FM RADIO RECEIVER DRIVER
3311 M:      Hans Verkuil <hverkuil@xs4all.nl>
3312 L:      linux-media@vger.kernel.org
3313 S:      Maintained
3314 W:      https://linuxtv.org
3315 T:      git git://linuxtv.org/media_tree.git
3316 F:      drivers/media/radio/radio-aztech*
3317
3318 B43 WIRELESS DRIVER
3319 L:      linux-wireless@vger.kernel.org
3320 L:      b43-dev@lists.infradead.org
3321 S:      Odd Fixes
3322 W:      https://wireless.wiki.kernel.org/en/users/Drivers/b43
3323 F:      drivers/net/wireless/broadcom/b43/
3324
3325 B43LEGACY WIRELESS DRIVER
3326 M:      Larry Finger <Larry.Finger@lwfinger.net>
3327 L:      linux-wireless@vger.kernel.org
3328 L:      b43-dev@lists.infradead.org
3329 S:      Maintained
3330 W:      https://wireless.wiki.kernel.org/en/users/Drivers/b43
3331 F:      drivers/net/wireless/broadcom/b43legacy/
3332
3333 BACKLIGHT CLASS/SUBSYSTEM
3334 M:      Lee Jones <lee.jones@linaro.org>
3335 M:      Daniel Thompson <daniel.thompson@linaro.org>
3336 M:      Jingoo Han <jingoohan1@gmail.com>
3337 L:      dri-devel@lists.freedesktop.org
3338 S:      Maintained
3339 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/backlight.git
3340 F:      Documentation/ABI/stable/sysfs-class-backlight
3341 F:      Documentation/ABI/testing/sysfs-class-backlight
3342 F:      Documentation/devicetree/bindings/leds/backlight
3343 F:      drivers/video/backlight/
3344 F:      include/linux/backlight.h
3345 F:      include/linux/pwm_backlight.h
3346
3347 BARCO P50 GPIO DRIVER
3348 M:      Santosh Kumar Yadav <santoshkumar.yadav@barco.com>
3349 M:      Peter Korsgaard <peter.korsgaard@barco.com>
3350 S:      Maintained
3351 F:      drivers/platform/x86/barco-p50-gpio.c
3352
3353 BATMAN ADVANCED
3354 M:      Marek Lindner <mareklindner@neomailbox.ch>
3355 M:      Simon Wunderlich <sw@simonwunderlich.de>
3356 M:      Antonio Quartulli <a@unstable.cc>
3357 M:      Sven Eckelmann <sven@narfation.org>
3358 L:      b.a.t.m.a.n@lists.open-mesh.org (moderated for non-subscribers)
3359 S:      Maintained
3360 W:      https://www.open-mesh.org/
3361 Q:      https://patchwork.open-mesh.org/project/batman/list/
3362 B:      https://www.open-mesh.org/projects/batman-adv/issues
3363 C:      ircs://irc.hackint.org/batadv
3364 T:      git https://git.open-mesh.org/linux-merge.git
3365 F:      Documentation/networking/batman-adv.rst
3366 F:      include/uapi/linux/batadv_packet.h
3367 F:      include/uapi/linux/batman_adv.h
3368 F:      net/batman-adv/
3369
3370 BAYCOM/HDLCDRV DRIVERS FOR AX.25
3371 M:      Thomas Sailer <t.sailer@alumni.ethz.ch>
3372 L:      linux-hams@vger.kernel.org
3373 S:      Maintained
3374 W:      http://www.baycom.org/~tom/ham/ham.html
3375 F:      drivers/net/hamradio/baycom*
3376
3377 BCACHE (BLOCK LAYER CACHE)
3378 M:      Coly Li <colyli@suse.de>
3379 M:      Kent Overstreet <kent.overstreet@gmail.com>
3380 L:      linux-bcache@vger.kernel.org
3381 S:      Maintained
3382 W:      http://bcache.evilpiepirate.org
3383 C:      irc://irc.oftc.net/bcache
3384 F:      drivers/md/bcache/
3385
3386 BDISP ST MEDIA DRIVER
3387 M:      Fabien Dessenne <fabien.dessenne@foss.st.com>
3388 L:      linux-media@vger.kernel.org
3389 S:      Supported
3390 W:      https://linuxtv.org
3391 T:      git git://linuxtv.org/media_tree.git
3392 F:      drivers/media/platform/st/sti/bdisp
3393
3394 BECKHOFF CX5020 ETHERCAT MASTER DRIVER
3395 M:      Dariusz Marcinkiewicz <reksio@newterm.pl>
3396 L:      netdev@vger.kernel.org
3397 S:      Maintained
3398 F:      drivers/net/ethernet/ec_bhf.c
3399
3400 BEFS FILE SYSTEM
3401 M:      Luis de Bethencourt <luisbg@kernel.org>
3402 M:      Salah Triki <salah.triki@gmail.com>
3403 S:      Maintained
3404 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luisbg/linux-befs.git
3405 F:      Documentation/filesystems/befs.rst
3406 F:      fs/befs/
3407
3408 BFQ I/O SCHEDULER
3409 M:      Paolo Valente <paolo.valente@linaro.org>
3410 M:      Jens Axboe <axboe@kernel.dk>
3411 L:      linux-block@vger.kernel.org
3412 S:      Maintained
3413 F:      Documentation/block/bfq-iosched.rst
3414 F:      block/bfq-*
3415
3416 BFS FILE SYSTEM
3417 M:      "Tigran A. Aivazian" <aivazian.tigran@gmail.com>
3418 S:      Maintained
3419 F:      Documentation/filesystems/bfs.rst
3420 F:      fs/bfs/
3421 F:      include/uapi/linux/bfs_fs.h
3422
3423 BITMAP API
3424 M:      Yury Norov <yury.norov@gmail.com>
3425 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
3426 R:      Rasmus Villemoes <linux@rasmusvillemoes.dk>
3427 S:      Maintained
3428 F:      include/linux/bitmap.h
3429 F:      include/linux/find.h
3430 F:      lib/bitmap.c
3431 F:      lib/find_bit.c
3432 F:      lib/find_bit_benchmark.c
3433 F:      lib/test_bitmap.c
3434 F:      tools/include/linux/bitmap.h
3435 F:      tools/include/linux/find.h
3436 F:      tools/lib/bitmap.c
3437 F:      tools/lib/find_bit.c
3438
3439 BLINKM RGB LED DRIVER
3440 M:      Jan-Simon Moeller <jansimon.moeller@gmx.de>
3441 S:      Maintained
3442 F:      drivers/leds/leds-blinkm.c
3443
3444 BLOCK LAYER
3445 M:      Jens Axboe <axboe@kernel.dk>
3446 L:      linux-block@vger.kernel.org
3447 S:      Maintained
3448 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
3449 F:      Documentation/ABI/stable/sysfs-block
3450 F:      Documentation/block/
3451 F:      block/
3452 F:      drivers/block/
3453 F:      include/linux/bio.h
3454 F:      include/linux/blk*
3455 F:      kernel/trace/blktrace.c
3456 F:      lib/sbitmap.c
3457
3458 BLOCK2MTD DRIVER
3459 M:      Joern Engel <joern@lazybastard.org>
3460 L:      linux-mtd@lists.infradead.org
3461 S:      Maintained
3462 F:      drivers/mtd/devices/block2mtd.c
3463
3464 BLUETOOTH DRIVERS
3465 M:      Marcel Holtmann <marcel@holtmann.org>
3466 M:      Johan Hedberg <johan.hedberg@gmail.com>
3467 M:      Luiz Augusto von Dentz <luiz.dentz@gmail.com>
3468 L:      linux-bluetooth@vger.kernel.org
3469 S:      Supported
3470 W:      http://www.bluez.org/
3471 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3472 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3473 F:      drivers/bluetooth/
3474
3475 BLUETOOTH SUBSYSTEM
3476 M:      Marcel Holtmann <marcel@holtmann.org>
3477 M:      Johan Hedberg <johan.hedberg@gmail.com>
3478 M:      Luiz Augusto von Dentz <luiz.dentz@gmail.com>
3479 L:      linux-bluetooth@vger.kernel.org
3480 S:      Supported
3481 W:      http://www.bluez.org/
3482 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3483 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3484 F:      include/net/bluetooth/
3485 F:      net/bluetooth/
3486
3487 BONDING DRIVER
3488 M:      Jay Vosburgh <j.vosburgh@gmail.com>
3489 M:      Veaceslav Falico <vfalico@gmail.com>
3490 M:      Andy Gospodarek <andy@greyhouse.net>
3491 L:      netdev@vger.kernel.org
3492 S:      Supported
3493 W:      http://sourceforge.net/projects/bonding/
3494 F:      drivers/net/bonding/
3495 F:      include/net/bonding.h
3496 F:      include/uapi/linux/if_bonding.h
3497
3498 BOSCH SENSORTEC BMA400 ACCELEROMETER IIO DRIVER
3499 M:      Dan Robertson <dan@dlrobertson.com>
3500 L:      linux-iio@vger.kernel.org
3501 S:      Maintained
3502 F:      Documentation/devicetree/bindings/iio/accel/bosch,bma400.yaml
3503 F:      drivers/iio/accel/bma400*
3504
3505 BPF (Safe dynamic programs and tools)
3506 M:      Alexei Starovoitov <ast@kernel.org>
3507 M:      Daniel Borkmann <daniel@iogearbox.net>
3508 M:      Andrii Nakryiko <andrii@kernel.org>
3509 R:      Martin KaFai Lau <kafai@fb.com>
3510 R:      Song Liu <songliubraving@fb.com>
3511 R:      Yonghong Song <yhs@fb.com>
3512 R:      John Fastabend <john.fastabend@gmail.com>
3513 R:      KP Singh <kpsingh@kernel.org>
3514 L:      netdev@vger.kernel.org
3515 L:      bpf@vger.kernel.org
3516 S:      Supported
3517 W:      https://bpf.io/
3518 Q:      https://patchwork.kernel.org/project/netdevbpf/list/?delegate=121173
3519 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf.git
3520 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-next.git
3521 F:      Documentation/bpf/
3522 F:      Documentation/networking/filter.rst
3523 F:      Documentation/userspace-api/ebpf/
3524 F:      arch/*/net/*
3525 F:      include/linux/bpf*
3526 F:      include/linux/btf*
3527 F:      include/linux/filter.h
3528 F:      include/trace/events/xdp.h
3529 F:      include/uapi/linux/bpf*
3530 F:      include/uapi/linux/btf*
3531 F:      include/uapi/linux/filter.h
3532 F:      kernel/bpf/
3533 F:      kernel/trace/bpf_trace.c
3534 F:      lib/test_bpf.c
3535 F:      net/bpf/
3536 F:      net/core/filter.c
3537 F:      net/sched/act_bpf.c
3538 F:      net/sched/cls_bpf.c
3539 F:      samples/bpf/
3540 F:      scripts/bpf_doc.py
3541 F:      tools/bpf/
3542 F:      tools/lib/bpf/
3543 F:      tools/testing/selftests/bpf/
3544 N:      bpf
3545 K:      bpf
3546
3547 BPF JIT for ARM
3548 M:      Shubham Bansal <illusionist.neo@gmail.com>
3549 L:      netdev@vger.kernel.org
3550 L:      bpf@vger.kernel.org
3551 S:      Maintained
3552 F:      arch/arm/net/
3553
3554 BPF JIT for ARM64
3555 M:      Daniel Borkmann <daniel@iogearbox.net>
3556 M:      Alexei Starovoitov <ast@kernel.org>
3557 M:      Zi Shen Lim <zlim.lnx@gmail.com>
3558 L:      netdev@vger.kernel.org
3559 L:      bpf@vger.kernel.org
3560 S:      Supported
3561 F:      arch/arm64/net/
3562
3563 BPF JIT for MIPS (32-BIT AND 64-BIT)
3564 M:      Johan Almbladh <johan.almbladh@anyfinetworks.com>
3565 M:      Paul Burton <paulburton@kernel.org>
3566 L:      netdev@vger.kernel.org
3567 L:      bpf@vger.kernel.org
3568 S:      Maintained
3569 F:      arch/mips/net/
3570
3571 BPF JIT for NFP NICs
3572 M:      Jakub Kicinski <kuba@kernel.org>
3573 L:      netdev@vger.kernel.org
3574 L:      bpf@vger.kernel.org
3575 S:      Supported
3576 F:      drivers/net/ethernet/netronome/nfp/bpf/
3577
3578 BPF JIT for POWERPC (32-BIT AND 64-BIT)
3579 M:      Naveen N. Rao <naveen.n.rao@linux.ibm.com>
3580 L:      netdev@vger.kernel.org
3581 L:      bpf@vger.kernel.org
3582 S:      Maintained
3583 F:      arch/powerpc/net/
3584
3585 BPF JIT for RISC-V (32-bit)
3586 M:      Luke Nelson <luke.r.nels@gmail.com>
3587 M:      Xi Wang <xi.wang@gmail.com>
3588 L:      netdev@vger.kernel.org
3589 L:      bpf@vger.kernel.org
3590 S:      Maintained
3591 F:      arch/riscv/net/
3592 X:      arch/riscv/net/bpf_jit_comp64.c
3593
3594 BPF JIT for RISC-V (64-bit)
3595 M:      Björn Töpel <bjorn@kernel.org>
3596 L:      netdev@vger.kernel.org
3597 L:      bpf@vger.kernel.org
3598 S:      Maintained
3599 F:      arch/riscv/net/
3600 X:      arch/riscv/net/bpf_jit_comp32.c
3601
3602 BPF JIT for S390
3603 M:      Ilya Leoshkevich <iii@linux.ibm.com>
3604 M:      Heiko Carstens <hca@linux.ibm.com>
3605 M:      Vasily Gorbik <gor@linux.ibm.com>
3606 L:      netdev@vger.kernel.org
3607 L:      bpf@vger.kernel.org
3608 S:      Maintained
3609 F:      arch/s390/net/
3610 X:      arch/s390/net/pnet.c
3611
3612 BPF JIT for SPARC (32-BIT AND 64-BIT)
3613 M:      David S. Miller <davem@davemloft.net>
3614 L:      netdev@vger.kernel.org
3615 L:      bpf@vger.kernel.org
3616 S:      Maintained
3617 F:      arch/sparc/net/
3618
3619 BPF JIT for X86 32-BIT
3620 M:      Wang YanQing <udknight@gmail.com>
3621 L:      netdev@vger.kernel.org
3622 L:      bpf@vger.kernel.org
3623 S:      Maintained
3624 F:      arch/x86/net/bpf_jit_comp32.c
3625
3626 BPF JIT for X86 64-BIT
3627 M:      Alexei Starovoitov <ast@kernel.org>
3628 M:      Daniel Borkmann <daniel@iogearbox.net>
3629 L:      netdev@vger.kernel.org
3630 L:      bpf@vger.kernel.org
3631 S:      Supported
3632 F:      arch/x86/net/
3633 X:      arch/x86/net/bpf_jit_comp32.c
3634
3635 BPF LSM (Security Audit and Enforcement using BPF)
3636 M:      KP Singh <kpsingh@kernel.org>
3637 R:      Florent Revest <revest@chromium.org>
3638 R:      Brendan Jackman <jackmanb@chromium.org>
3639 L:      bpf@vger.kernel.org
3640 S:      Maintained
3641 F:      Documentation/bpf/prog_lsm.rst
3642 F:      include/linux/bpf_lsm.h
3643 F:      kernel/bpf/bpf_lsm.c
3644 F:      security/bpf/
3645
3646 BROADCOM B44 10/100 ETHERNET DRIVER
3647 M:      Michael Chan <michael.chan@broadcom.com>
3648 L:      netdev@vger.kernel.org
3649 S:      Supported
3650 F:      drivers/net/ethernet/broadcom/b44.*
3651
3652 BROADCOM B53/SF2 ETHERNET SWITCH DRIVER
3653 M:      Florian Fainelli <f.fainelli@gmail.com>
3654 L:      netdev@vger.kernel.org
3655 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
3656 S:      Supported
3657 F:      Documentation/devicetree/bindings/net/dsa/brcm,b53.yaml
3658 F:      drivers/net/dsa/b53/*
3659 F:      drivers/net/dsa/bcm_sf2*
3660 F:      include/linux/dsa/brcm.h
3661 F:      include/linux/platform_data/b53.h
3662
3663 BROADCOM BCM2711/BCM2835 ARM ARCHITECTURE
3664 M:      Nicolas Saenz Julienne <nsaenz@kernel.org>
3665 L:      bcm-kernel-feedback-list@broadcom.com
3666 L:      linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
3667 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3668 S:      Maintained
3669 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nsaenz/linux-rpi.git
3670 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3671 F:      drivers/pci/controller/pcie-brcmstb.c
3672 F:      drivers/staging/vc04_services
3673 N:      bcm2711
3674 N:      bcm283*
3675
3676 BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE
3677 M:      Florian Fainelli <f.fainelli@gmail.com>
3678 M:      Ray Jui <rjui@broadcom.com>
3679 M:      Scott Branden <sbranden@broadcom.com>
3680 M:      bcm-kernel-feedback-list@broadcom.com
3681 S:      Maintained
3682 T:      git git://github.com/broadcom/mach-bcm
3683 F:      arch/arm/mach-bcm/
3684 N:      bcm281*
3685 N:      bcm113*
3686 N:      bcm216*
3687 N:      kona
3688
3689 BROADCOM BCM47XX MIPS ARCHITECTURE
3690 M:      Hauke Mehrtens <hauke@hauke-m.de>
3691 M:      Rafał Miłecki <zajec5@gmail.com>
3692 L:      linux-mips@vger.kernel.org
3693 S:      Maintained
3694 F:      Documentation/devicetree/bindings/mips/brcm/
3695 F:      arch/mips/bcm47xx/*
3696 F:      arch/mips/include/asm/mach-bcm47xx/*
3697
3698 BROADCOM BCM4908 ETHERNET DRIVER
3699 M:      Rafał Miłecki <rafal@milecki.pl>
3700 M:      bcm-kernel-feedback-list@broadcom.com
3701 L:      netdev@vger.kernel.org
3702 S:      Maintained
3703 F:      Documentation/devicetree/bindings/net/brcm,bcm4908-enet.yaml
3704 F:      drivers/net/ethernet/broadcom/bcm4908_enet.*
3705 F:      drivers/net/ethernet/broadcom/unimac.h
3706
3707 BROADCOM BCM5301X ARM ARCHITECTURE
3708 M:      Florian Fainelli <f.fainelli@gmail.com>
3709 M:      Hauke Mehrtens <hauke@hauke-m.de>
3710 M:      Rafał Miłecki <zajec5@gmail.com>
3711 M:      bcm-kernel-feedback-list@broadcom.com
3712 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3713 S:      Maintained
3714 F:      arch/arm/boot/dts/bcm470*
3715 F:      arch/arm/boot/dts/bcm5301*
3716 F:      arch/arm/boot/dts/bcm953012*
3717 F:      arch/arm/mach-bcm/bcm_5301x.c
3718
3719 BROADCOM BCM53573 ARM ARCHITECTURE
3720 M:      Florian Fainelli <f.fainelli@gmail.com>
3721 M:      Rafał Miłecki <rafal@milecki.pl>
3722 L:      bcm-kernel-feedback-list@broadcom.com
3723 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3724 S:      Maintained
3725 F:      arch/arm/boot/dts/bcm47189*
3726 F:      arch/arm/boot/dts/bcm53573*
3727
3728 BROADCOM BCM63XX ARM ARCHITECTURE
3729 M:      Florian Fainelli <f.fainelli@gmail.com>
3730 M:      bcm-kernel-feedback-list@broadcom.com
3731 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3732 S:      Maintained
3733 T:      git git://github.com/broadcom/stblinux.git
3734 N:      bcm63xx
3735
3736 BROADCOM BCM63XX/BCM33XX UDC DRIVER
3737 M:      Kevin Cernekee <cernekee@gmail.com>
3738 L:      linux-usb@vger.kernel.org
3739 S:      Maintained
3740 F:      drivers/usb/gadget/udc/bcm63xx_udc.*
3741
3742 BROADCOM BCM7XXX ARM ARCHITECTURE
3743 M:      Florian Fainelli <f.fainelli@gmail.com>
3744 M:      bcm-kernel-feedback-list@broadcom.com
3745 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3746 S:      Maintained
3747 T:      git git://github.com/broadcom/stblinux.git
3748 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3749 F:      arch/arm/boot/dts/bcm7*.dts*
3750 F:      arch/arm/include/asm/hardware/cache-b15-rac.h
3751 F:      arch/arm/mach-bcm/*brcmstb*
3752 F:      arch/arm/mm/cache-b15-rac.c
3753 F:      drivers/bus/brcmstb_gisb.c
3754 F:      drivers/pci/controller/pcie-brcmstb.c
3755 N:      brcmstb
3756 N:      bcm7038
3757 N:      bcm7120
3758
3759 BROADCOM BDC DRIVER
3760 M:      Al Cooper <alcooperx@gmail.com>
3761 L:      linux-usb@vger.kernel.org
3762 L:      bcm-kernel-feedback-list@broadcom.com
3763 S:      Maintained
3764 F:      Documentation/devicetree/bindings/usb/brcm,bdc.yaml
3765 F:      drivers/usb/gadget/udc/bdc/
3766
3767 BROADCOM BMIPS CPUFREQ DRIVER
3768 M:      Markus Mayer <mmayer@broadcom.com>
3769 M:      bcm-kernel-feedback-list@broadcom.com
3770 L:      linux-pm@vger.kernel.org
3771 S:      Maintained
3772 F:      drivers/cpufreq/bmips-cpufreq.c
3773
3774 BROADCOM BMIPS MIPS ARCHITECTURE
3775 M:      Florian Fainelli <f.fainelli@gmail.com>
3776 L:      bcm-kernel-feedback-list@broadcom.com
3777 L:      linux-mips@vger.kernel.org
3778 S:      Maintained
3779 T:      git git://github.com/broadcom/stblinux.git
3780 F:      arch/mips/bmips/*
3781 F:      arch/mips/boot/dts/brcm/bcm*.dts*
3782 F:      arch/mips/include/asm/mach-bmips/*
3783 F:      arch/mips/kernel/*bmips*
3784 F:      drivers/soc/bcm/bcm63xx
3785 F:      drivers/irqchip/irq-bcm63*
3786 F:      drivers/irqchip/irq-bcm7*
3787 F:      drivers/irqchip/irq-brcmstb*
3788 F:      include/linux/bcm963xx_nvram.h
3789 F:      include/linux/bcm963xx_tag.h
3790
3791 BROADCOM BNX2 GIGABIT ETHERNET DRIVER
3792 M:      Rasesh Mody <rmody@marvell.com>
3793 M:      GR-Linux-NIC-Dev@marvell.com
3794 L:      netdev@vger.kernel.org
3795 S:      Supported
3796 F:      drivers/net/ethernet/broadcom/bnx2.*
3797 F:      drivers/net/ethernet/broadcom/bnx2_*
3798
3799 BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
3800 M:      Saurav Kashyap <skashyap@marvell.com>
3801 M:      Javed Hasan <jhasan@marvell.com>
3802 M:      GR-QLogic-Storage-Upstream@marvell.com
3803 L:      linux-scsi@vger.kernel.org
3804 S:      Supported
3805 F:      drivers/scsi/bnx2fc/
3806
3807 BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER
3808 M:      Nilesh Javali <njavali@marvell.com>
3809 M:      Manish Rangankar <mrangankar@marvell.com>
3810 M:      GR-QLogic-Storage-Upstream@marvell.com
3811 L:      linux-scsi@vger.kernel.org
3812 S:      Supported
3813 F:      drivers/scsi/bnx2i/
3814
3815 BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
3816 M:      Ariel Elior <aelior@marvell.com>
3817 M:      Sudarsana Kalluru <skalluru@marvell.com>
3818 M:      Manish Chopra <manishc@marvell.com>
3819 L:      netdev@vger.kernel.org
3820 S:      Supported
3821 F:      drivers/net/ethernet/broadcom/bnx2x/
3822
3823 BROADCOM BNXT_EN 50 GIGABIT ETHERNET DRIVER
3824 M:      Michael Chan <michael.chan@broadcom.com>
3825 L:      netdev@vger.kernel.org
3826 S:      Supported
3827 F:      drivers/net/ethernet/broadcom/bnxt/
3828
3829 BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
3830 M:      Arend van Spriel <aspriel@gmail.com>
3831 M:      Franky Lin <franky.lin@broadcom.com>
3832 M:      Hante Meuleman <hante.meuleman@broadcom.com>
3833 M:      Chi-hsien Lin <chi-hsien.lin@infineon.com>
3834 M:      Wright Feng <wright.feng@infineon.com>
3835 M:      Chung-hsien Hsu <chung-hsien.hsu@infineon.com>
3836 L:      linux-wireless@vger.kernel.org
3837 L:      brcm80211-dev-list.pdl@broadcom.com
3838 L:      SHA-cyfmac-dev-list@infineon.com
3839 S:      Supported
3840 F:      drivers/net/wireless/broadcom/brcm80211/
3841
3842 BROADCOM BRCMSTB GPIO DRIVER
3843 M:      Doug Berger <opendmb@gmail.com>
3844 M:      Florian Fainelli <f.fainelli@gmail.com>
3845 L:      bcm-kernel-feedback-list@broadcom.com
3846 S:      Supported
3847 F:      Documentation/devicetree/bindings/gpio/brcm,brcmstb-gpio.yaml
3848 F:      drivers/gpio/gpio-brcmstb.c
3849
3850 BROADCOM BRCMSTB I2C DRIVER
3851 M:      Kamal Dasu <kdasu.kdev@gmail.com>
3852 L:      linux-i2c@vger.kernel.org
3853 L:      bcm-kernel-feedback-list@broadcom.com
3854 S:      Supported
3855 F:      Documentation/devicetree/bindings/i2c/brcm,brcmstb-i2c.yaml
3856 F:      drivers/i2c/busses/i2c-brcmstb.c
3857
3858 BROADCOM BRCMSTB UART DRIVER
3859 M:      Al Cooper <alcooperx@gmail.com>
3860 L:      linux-serial@vger.kernel.org
3861 L:      bcm-kernel-feedback-list@broadcom.com
3862 S:      Maintained
3863 F:      Documentation/devicetree/bindings/serial/brcm,bcm7271-uart.yaml
3864 F:      drivers/tty/serial/8250/8250_bcm7271.c
3865
3866 BROADCOM BRCMSTB USB EHCI DRIVER
3867 M:      Al Cooper <alcooperx@gmail.com>
3868 L:      linux-usb@vger.kernel.org
3869 L:      bcm-kernel-feedback-list@broadcom.com
3870 S:      Maintained
3871 F:      Documentation/devicetree/bindings/usb/brcm,bcm7445-ehci.yaml
3872 F:      drivers/usb/host/ehci-brcm.*
3873
3874 BROADCOM BRCMSTB USB PIN MAP DRIVER
3875 M:      Al Cooper <alcooperx@gmail.com>
3876 L:      linux-usb@vger.kernel.org
3877 L:      bcm-kernel-feedback-list@broadcom.com
3878 S:      Maintained
3879 F:      Documentation/devicetree/bindings/usb/brcm,usb-pinmap.yaml
3880 F:      drivers/usb/misc/brcmstb-usb-pinmap.c
3881
3882 BROADCOM BRCMSTB USB2 and USB3 PHY DRIVER
3883 M:      Al Cooper <alcooperx@gmail.com>
3884 L:      linux-kernel@vger.kernel.org
3885 L:      bcm-kernel-feedback-list@broadcom.com
3886 S:      Maintained
3887 F:      drivers/phy/broadcom/phy-brcm-usb*
3888
3889 BROADCOM ETHERNET PHY DRIVERS
3890 M:      Florian Fainelli <f.fainelli@gmail.com>
3891 L:      bcm-kernel-feedback-list@broadcom.com
3892 L:      netdev@vger.kernel.org
3893 S:      Supported
3894 F:      Documentation/devicetree/bindings/net/broadcom-bcm87xx.txt
3895 F:      drivers/net/phy/bcm*.[ch]
3896 F:      drivers/net/phy/broadcom.c
3897 F:      include/linux/brcmphy.h
3898
3899 BROADCOM GENET ETHERNET DRIVER
3900 M:      Doug Berger <opendmb@gmail.com>
3901 M:      Florian Fainelli <f.fainelli@gmail.com>
3902 L:      bcm-kernel-feedback-list@broadcom.com
3903 L:      netdev@vger.kernel.org
3904 S:      Supported
3905 F:      Documentation/devicetree/bindings/net/brcm,bcmgenet.yaml
3906 F:      Documentation/devicetree/bindings/net/brcm,unimac-mdio.yaml
3907 F:      drivers/net/ethernet/broadcom/genet/
3908 F:      drivers/net/ethernet/broadcom/unimac.h
3909 F:      drivers/net/mdio/mdio-bcm-unimac.c
3910 F:      include/linux/platform_data/bcmgenet.h
3911 F:      include/linux/platform_data/mdio-bcm-unimac.h
3912
3913 BROADCOM IPROC ARM ARCHITECTURE
3914 M:      Ray Jui <rjui@broadcom.com>
3915 M:      Scott Branden <sbranden@broadcom.com>
3916 M:      bcm-kernel-feedback-list@broadcom.com
3917 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3918 S:      Maintained
3919 T:      git git://github.com/broadcom/stblinux.git
3920 F:      arch/arm64/boot/dts/broadcom/northstar2/*
3921 F:      arch/arm64/boot/dts/broadcom/stingray/*
3922 F:      drivers/clk/bcm/clk-ns*
3923 F:      drivers/clk/bcm/clk-sr*
3924 F:      drivers/pinctrl/bcm/pinctrl-ns*
3925 F:      include/dt-bindings/clock/bcm-sr*
3926 N:      iproc
3927 N:      cygnus
3928 N:      bcm[-_]nsp
3929 N:      bcm9113*
3930 N:      bcm9583*
3931 N:      bcm9585*
3932 N:      bcm9586*
3933 N:      bcm988312
3934 N:      bcm113*
3935 N:      bcm583*
3936 N:      bcm585*
3937 N:      bcm586*
3938 N:      bcm88312
3939 N:      hr2
3940 N:      stingray
3941
3942 BROADCOM IPROC GBIT ETHERNET DRIVER
3943 M:      Rafał Miłecki <rafal@milecki.pl>
3944 M:      bcm-kernel-feedback-list@broadcom.com
3945 L:      netdev@vger.kernel.org
3946 S:      Maintained
3947 F:      Documentation/devicetree/bindings/net/brcm,amac.yaml
3948 F:      drivers/net/ethernet/broadcom/bgmac*
3949 F:      drivers/net/ethernet/broadcom/unimac.h
3950
3951 BROADCOM KONA GPIO DRIVER
3952 M:      Ray Jui <rjui@broadcom.com>
3953 L:      bcm-kernel-feedback-list@broadcom.com
3954 S:      Supported
3955 F:      Documentation/devicetree/bindings/gpio/brcm,kona-gpio.txt
3956 F:      drivers/gpio/gpio-bcm-kona.c
3957
3958 BROADCOM MPI3 STORAGE CONTROLLER DRIVER
3959 M:      Sathya Prakash Veerichetty <sathya.prakash@broadcom.com>
3960 M:      Kashyap Desai <kashyap.desai@broadcom.com>
3961 M:      Sumit Saxena <sumit.saxena@broadcom.com>
3962 M:      Sreekanth Reddy <sreekanth.reddy@broadcom.com>
3963 L:      mpi3mr-linuxdrv.pdl@broadcom.com
3964 L:      linux-scsi@vger.kernel.org
3965 S:      Supported
3966 W:      https://www.broadcom.com/support/storage
3967 F:      drivers/scsi/mpi3mr/
3968
3969 BROADCOM NETXTREME-E ROCE DRIVER
3970 M:      Selvin Xavier <selvin.xavier@broadcom.com>
3971 L:      linux-rdma@vger.kernel.org
3972 S:      Supported
3973 W:      http://www.broadcom.com
3974 F:      drivers/infiniband/hw/bnxt_re/
3975 F:      include/uapi/rdma/bnxt_re-abi.h
3976
3977 BROADCOM NVRAM DRIVER
3978 M:      Rafał Miłecki <zajec5@gmail.com>
3979 L:      linux-mips@vger.kernel.org
3980 S:      Maintained
3981 F:      drivers/firmware/broadcom/*
3982
3983 BROADCOM PMB (POWER MANAGEMENT BUS) DRIVER
3984 M:      Rafał Miłecki <rafal@milecki.pl>
3985 M:      Florian Fainelli <f.fainelli@gmail.com>
3986 M:      bcm-kernel-feedback-list@broadcom.com
3987 L:      linux-pm@vger.kernel.org
3988 S:      Maintained
3989 T:      git git://github.com/broadcom/stblinux.git
3990 F:      drivers/soc/bcm/bcm63xx/bcm-pmb.c
3991 F:      include/dt-bindings/soc/bcm-pmb.h
3992
3993 BROADCOM SPECIFIC AMBA DRIVER (BCMA)
3994 M:      Rafał Miłecki <zajec5@gmail.com>
3995 L:      linux-wireless@vger.kernel.org
3996 S:      Maintained
3997 F:      drivers/bcma/
3998 F:      include/linux/bcma/
3999
4000 BROADCOM SPI DRIVER
4001 M:      Kamal Dasu <kdasu.kdev@gmail.com>
4002 M:      bcm-kernel-feedback-list@broadcom.com
4003 S:      Maintained
4004 F:      Documentation/devicetree/bindings/spi/brcm,spi-bcm-qspi.yaml
4005 F:      drivers/spi/spi-bcm-qspi.*
4006 F:      drivers/spi/spi-brcmstb-qspi.c
4007 F:      drivers/spi/spi-iproc-qspi.c
4008
4009 BROADCOM STB AVS CPUFREQ DRIVER
4010 M:      Markus Mayer <mmayer@broadcom.com>
4011 M:      bcm-kernel-feedback-list@broadcom.com
4012 L:      linux-pm@vger.kernel.org
4013 S:      Maintained
4014 F:      Documentation/devicetree/bindings/cpufreq/brcm,stb-avs-cpu-freq.txt
4015 F:      drivers/cpufreq/brcmstb*
4016
4017 BROADCOM STB AVS TMON DRIVER
4018 M:      Markus Mayer <mmayer@broadcom.com>
4019 M:      bcm-kernel-feedback-list@broadcom.com
4020 L:      linux-pm@vger.kernel.org
4021 S:      Maintained
4022 F:      Documentation/devicetree/bindings/thermal/brcm,avs-tmon.yaml
4023 F:      drivers/thermal/broadcom/brcmstb*
4024
4025 BROADCOM STB DPFE DRIVER
4026 M:      Markus Mayer <mmayer@broadcom.com>
4027 M:      bcm-kernel-feedback-list@broadcom.com
4028 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4029 S:      Maintained
4030 F:      Documentation/devicetree/bindings/memory-controllers/brcm,dpfe-cpu.yaml
4031 F:      drivers/memory/brcmstb_dpfe.c
4032
4033 BROADCOM STB NAND FLASH DRIVER
4034 M:      Brian Norris <computersforpeace@gmail.com>
4035 M:      Kamal Dasu <kdasu.kdev@gmail.com>
4036 L:      linux-mtd@lists.infradead.org
4037 L:      bcm-kernel-feedback-list@broadcom.com
4038 S:      Maintained
4039 F:      drivers/mtd/nand/raw/brcmnand/
4040
4041 BROADCOM STB PCIE DRIVER
4042 M:      Jim Quinlan <jim2101024@gmail.com>
4043 M:      Nicolas Saenz Julienne <nsaenz@kernel.org>
4044 M:      Florian Fainelli <f.fainelli@gmail.com>
4045 M:      bcm-kernel-feedback-list@broadcom.com
4046 L:      linux-pci@vger.kernel.org
4047 S:      Maintained
4048 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
4049 F:      drivers/pci/controller/pcie-brcmstb.c
4050
4051 BROADCOM SYSTEMPORT ETHERNET DRIVER
4052 M:      Florian Fainelli <f.fainelli@gmail.com>
4053 L:      bcm-kernel-feedback-list@broadcom.com
4054 L:      netdev@vger.kernel.org
4055 S:      Supported
4056 F:      drivers/net/ethernet/broadcom/bcmsysport.*
4057 F:      drivers/net/ethernet/broadcom/unimac.h
4058 F:      Documentation/devicetree/bindings/net/brcm,systemport.yaml
4059
4060 BROADCOM TG3 GIGABIT ETHERNET DRIVER
4061 M:      Siva Reddy Kallam <siva.kallam@broadcom.com>
4062 M:      Prashant Sreedharan <prashant@broadcom.com>
4063 M:      Michael Chan <mchan@broadcom.com>
4064 L:      netdev@vger.kernel.org
4065 S:      Supported
4066 F:      drivers/net/ethernet/broadcom/tg3.*
4067
4068 BROADCOM VK DRIVER
4069 M:      Scott Branden <scott.branden@broadcom.com>
4070 L:      bcm-kernel-feedback-list@broadcom.com
4071 S:      Supported
4072 F:      drivers/misc/bcm-vk/
4073 F:      include/uapi/linux/misc/bcm_vk.h
4074
4075 BROCADE BFA FC SCSI DRIVER
4076 M:      Anil Gurumurthy <anil.gurumurthy@qlogic.com>
4077 M:      Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
4078 L:      linux-scsi@vger.kernel.org
4079 S:      Supported
4080 F:      drivers/scsi/bfa/
4081
4082 BROCADE BNA 10 GIGABIT ETHERNET DRIVER
4083 M:      Rasesh Mody <rmody@marvell.com>
4084 M:      Sudarsana Kalluru <skalluru@marvell.com>
4085 M:      GR-Linux-NIC-Dev@marvell.com
4086 L:      netdev@vger.kernel.org
4087 S:      Supported
4088 F:      drivers/net/ethernet/brocade/bna/
4089
4090 BSG (block layer generic sg v4 driver)
4091 M:      FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
4092 L:      linux-scsi@vger.kernel.org
4093 S:      Supported
4094 F:      block/bsg.c
4095 F:      include/linux/bsg.h
4096 F:      include/uapi/linux/bsg.h
4097
4098 BT87X AUDIO DRIVER
4099 M:      Clemens Ladisch <clemens@ladisch.de>
4100 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4101 S:      Maintained
4102 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
4103 F:      Documentation/sound/cards/bt87x.rst
4104 F:      sound/pci/bt87x.c
4105
4106 BT8XXGPIO DRIVER
4107 M:      Michael Buesch <m@bues.ch>
4108 S:      Maintained
4109 W:      http://bu3sch.de/btgpio.php
4110 F:      drivers/gpio/gpio-bt8xx.c
4111
4112 BTRFS FILE SYSTEM
4113 M:      Chris Mason <clm@fb.com>
4114 M:      Josef Bacik <josef@toxicpanda.com>
4115 M:      David Sterba <dsterba@suse.com>
4116 L:      linux-btrfs@vger.kernel.org
4117 S:      Maintained
4118 W:      http://btrfs.wiki.kernel.org/
4119 Q:      http://patchwork.kernel.org/project/linux-btrfs/list/
4120 C:      irc://irc.libera.chat/btrfs
4121 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kdave/linux.git
4122 F:      Documentation/filesystems/btrfs.rst
4123 F:      fs/btrfs/
4124 F:      include/linux/btrfs*
4125 F:      include/uapi/linux/btrfs*
4126
4127 BTTV VIDEO4LINUX DRIVER
4128 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
4129 L:      linux-media@vger.kernel.org
4130 S:      Odd fixes
4131 W:      https://linuxtv.org
4132 T:      git git://linuxtv.org/media_tree.git
4133 F:      Documentation/driver-api/media/drivers/bttv*
4134 F:      drivers/media/pci/bt8xx/bttv*
4135
4136 BUS FREQUENCY DRIVER FOR SAMSUNG EXYNOS
4137 M:      Chanwoo Choi <cw00.choi@samsung.com>
4138 L:      linux-pm@vger.kernel.org
4139 L:      linux-samsung-soc@vger.kernel.org
4140 S:      Maintained
4141 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
4142 F:      Documentation/devicetree/bindings/devfreq/exynos-bus.txt
4143 F:      drivers/devfreq/exynos-bus.c
4144
4145 BUSLOGIC SCSI DRIVER
4146 M:      Khalid Aziz <khalid@gonehiking.org>
4147 L:      linux-scsi@vger.kernel.org
4148 S:      Maintained
4149 F:      drivers/scsi/BusLogic.*
4150 F:      drivers/scsi/FlashPoint.*
4151
4152 C-MEDIA CMI8788 DRIVER
4153 M:      Clemens Ladisch <clemens@ladisch.de>
4154 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4155 S:      Maintained
4156 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
4157 F:      sound/pci/oxygen/
4158
4159 C-SKY ARCHITECTURE
4160 M:      Guo Ren <guoren@kernel.org>
4161 L:      linux-csky@vger.kernel.org
4162 S:      Supported
4163 T:      git https://github.com/c-sky/csky-linux.git
4164 F:      Documentation/devicetree/bindings/csky/
4165 F:      Documentation/devicetree/bindings/interrupt-controller/csky,*
4166 F:      Documentation/devicetree/bindings/timer/csky,*
4167 F:      arch/csky/
4168 F:      drivers/clocksource/timer-gx6605s.c
4169 F:      drivers/clocksource/timer-mp-csky.c
4170 F:      drivers/irqchip/irq-csky-*
4171 N:      csky
4172 K:      csky
4173
4174 CA8210 IEEE-802.15.4 RADIO DRIVER
4175 L:      linux-wpan@vger.kernel.org
4176 S:      Orphan
4177 W:      https://github.com/Cascoda/ca8210-linux.git
4178 F:      Documentation/devicetree/bindings/net/ieee802154/ca8210.txt
4179 F:      drivers/net/ieee802154/ca8210.c
4180
4181 CANAAN/KENDRYTE K210 SOC FPIOA DRIVER
4182 M:      Damien Le Moal <damien.lemoal@wdc.com>
4183 L:      linux-riscv@lists.infradead.org
4184 L:      linux-gpio@vger.kernel.org (pinctrl driver)
4185 F:      Documentation/devicetree/bindings/pinctrl/canaan,k210-fpioa.yaml
4186 F:      drivers/pinctrl/pinctrl-k210.c
4187
4188 CANAAN/KENDRYTE K210 SOC RESET CONTROLLER DRIVER
4189 M:      Damien Le Moal <damien.lemoal@wdc.com>
4190 L:      linux-kernel@vger.kernel.org
4191 L:      linux-riscv@lists.infradead.org
4192 S:      Maintained
4193 F:      Documentation/devicetree/bindings/reset/canaan,k210-rst.yaml
4194 F:      drivers/reset/reset-k210.c
4195
4196 CANAAN/KENDRYTE K210 SOC SYSTEM CONTROLLER DRIVER
4197 M:      Damien Le Moal <damien.lemoal@wdc.com>
4198 L:      linux-riscv@lists.infradead.org
4199 S:      Maintained
4200 F:      Documentation/devicetree/bindings/mfd/canaan,k210-sysctl.yaml
4201 F:      drivers/soc/canaan/
4202 F:      include/soc/canaan/
4203
4204 CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
4205 M:      David Howells <dhowells@redhat.com>
4206 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
4207 S:      Supported
4208 F:      Documentation/filesystems/caching/cachefiles.rst
4209 F:      fs/cachefiles/
4210
4211 CADENCE MIPI-CSI2 BRIDGES
4212 M:      Maxime Ripard <mripard@kernel.org>
4213 L:      linux-media@vger.kernel.org
4214 S:      Maintained
4215 F:      Documentation/devicetree/bindings/media/cdns,*.txt
4216 F:      drivers/media/platform/cadence/cdns-csi2*
4217
4218 CADENCE NAND DRIVER
4219 L:      linux-mtd@lists.infradead.org
4220 S:      Orphan
4221 F:      Documentation/devicetree/bindings/mtd/cadence-nand-controller.txt
4222 F:      drivers/mtd/nand/raw/cadence-nand-controller.c
4223
4224 CADENCE USB3 DRD IP DRIVER
4225 M:      Peter Chen <peter.chen@kernel.org>
4226 M:      Pawel Laszczak <pawell@cadence.com>
4227 R:      Roger Quadros <rogerq@kernel.org>
4228 R:      Aswath Govindraju <a-govindraju@ti.com>
4229 L:      linux-usb@vger.kernel.org
4230 S:      Maintained
4231 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4232 F:      Documentation/devicetree/bindings/usb/cdns,usb3.yaml
4233 F:      drivers/usb/cdns3/
4234 X:      drivers/usb/cdns3/cdnsp*
4235
4236 CADENCE USBSSP DRD IP DRIVER
4237 M:      Pawel Laszczak <pawell@cadence.com>
4238 L:      linux-usb@vger.kernel.org
4239 S:      Maintained
4240 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4241 F:      drivers/usb/cdns3/
4242 X:      drivers/usb/cdns3/cdns3*
4243
4244 CADET FM/AM RADIO RECEIVER DRIVER
4245 M:      Hans Verkuil <hverkuil@xs4all.nl>
4246 L:      linux-media@vger.kernel.org
4247 S:      Maintained
4248 W:      https://linuxtv.org
4249 T:      git git://linuxtv.org/media_tree.git
4250 F:      drivers/media/radio/radio-cadet*
4251
4252 CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
4253 L:      linux-media@vger.kernel.org
4254 S:      Orphan
4255 T:      git git://linuxtv.org/media_tree.git
4256 F:      Documentation/admin-guide/media/cafe_ccic*
4257 F:      drivers/media/platform/marvell/
4258
4259 CAIF NETWORK LAYER
4260 L:      netdev@vger.kernel.org
4261 S:      Orphan
4262 F:      Documentation/networking/caif/
4263 F:      drivers/net/caif/
4264 F:      include/net/caif/
4265 F:      include/uapi/linux/caif/
4266 F:      net/caif/
4267
4268 CAKE QDISC
4269 M:      Toke Høiland-Jørgensen <toke@toke.dk>
4270 L:      cake@lists.bufferbloat.net (moderated for non-subscribers)
4271 S:      Maintained
4272 F:      net/sched/sch_cake.c
4273
4274 CAN NETWORK DRIVERS
4275 M:      Wolfgang Grandegger <wg@grandegger.com>
4276 M:      Marc Kleine-Budde <mkl@pengutronix.de>
4277 L:      linux-can@vger.kernel.org
4278 S:      Maintained
4279 W:      https://github.com/linux-can
4280 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
4281 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
4282 F:      Documentation/devicetree/bindings/net/can/
4283 F:      Documentation/devicetree/bindings/phy/ti,tcan104x-can.yaml
4284 F:      drivers/net/can/
4285 F:      drivers/phy/phy-can-transceiver.c
4286 F:      include/linux/can/bittiming.h
4287 F:      include/linux/can/dev.h
4288 F:      include/linux/can/led.h
4289 F:      include/linux/can/length.h
4290 F:      include/linux/can/platform/
4291 F:      include/linux/can/rx-offload.h
4292 F:      include/uapi/linux/can/error.h
4293 F:      include/uapi/linux/can/netlink.h
4294 F:      include/uapi/linux/can/vxcan.h
4295
4296 CAN NETWORK LAYER
4297 M:      Oliver Hartkopp <socketcan@hartkopp.net>
4298 M:      Marc Kleine-Budde <mkl@pengutronix.de>
4299 L:      linux-can@vger.kernel.org
4300 S:      Maintained
4301 W:      https://github.com/linux-can
4302 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
4303 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
4304 F:      Documentation/networking/can.rst
4305 F:      include/linux/can/can-ml.h
4306 F:      include/linux/can/core.h
4307 F:      include/linux/can/skb.h
4308 F:      include/net/netns/can.h
4309 F:      include/uapi/linux/can.h
4310 F:      include/uapi/linux/can/bcm.h
4311 F:      include/uapi/linux/can/gw.h
4312 F:      include/uapi/linux/can/isotp.h
4313 F:      include/uapi/linux/can/raw.h
4314 F:      net/can/
4315
4316 CAN-J1939 NETWORK LAYER
4317 M:      Robin van der Gracht <robin@protonic.nl>
4318 M:      Oleksij Rempel <o.rempel@pengutronix.de>
4319 R:      kernel@pengutronix.de
4320 L:      linux-can@vger.kernel.org
4321 S:      Maintained
4322 F:      Documentation/networking/j1939.rst
4323 F:      include/uapi/linux/can/j1939.h
4324 F:      net/can/j1939/
4325
4326 CAPABILITIES
4327 M:      Serge Hallyn <serge@hallyn.com>
4328 L:      linux-security-module@vger.kernel.org
4329 S:      Supported
4330 F:      include/linux/capability.h
4331 F:      include/uapi/linux/capability.h
4332 F:      kernel/capability.c
4333 F:      security/commoncap.c
4334
4335 CAPELLA MICROSYSTEMS LIGHT SENSOR DRIVER
4336 M:      Kevin Tsai <ktsai@capellamicro.com>
4337 S:      Maintained
4338 F:      drivers/iio/light/cm*
4339
4340 CARL9170 LINUX COMMUNITY WIRELESS DRIVER
4341 M:      Christian Lamparter <chunkeey@googlemail.com>
4342 L:      linux-wireless@vger.kernel.org
4343 S:      Maintained
4344 W:      https://wireless.wiki.kernel.org/en/users/Drivers/carl9170
4345 F:      drivers/net/wireless/ath/carl9170/
4346
4347 CAVIUM I2C DRIVER
4348 M:      Robert Richter <rric@kernel.org>
4349 S:      Odd Fixes
4350 W:      http://www.marvell.com
4351 F:      drivers/i2c/busses/i2c-octeon*
4352 F:      drivers/i2c/busses/i2c-thunderx*
4353
4354 CAVIUM LIQUIDIO NETWORK DRIVER
4355 M:      Derek Chickles <dchickles@marvell.com>
4356 M:      Satanand Burla <sburla@marvell.com>
4357 M:      Felix Manlunas <fmanlunas@marvell.com>
4358 L:      netdev@vger.kernel.org
4359 S:      Supported
4360 W:      http://www.marvell.com
4361 F:      drivers/net/ethernet/cavium/liquidio/
4362
4363 CAVIUM MMC DRIVER
4364 M:      Robert Richter <rric@kernel.org>
4365 S:      Odd Fixes
4366 W:      http://www.marvell.com
4367 F:      drivers/mmc/host/cavium*
4368
4369 CAVIUM OCTEON-TX CRYPTO DRIVER
4370 M:      George Cherian <gcherian@marvell.com>
4371 L:      linux-crypto@vger.kernel.org
4372 S:      Supported
4373 W:      http://www.marvell.com
4374 F:      drivers/crypto/cavium/cpt/
4375
4376 CAVIUM THUNDERX2 ARM64 SOC
4377 M:      Robert Richter <rric@kernel.org>
4378 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4379 S:      Odd Fixes
4380 F:      Documentation/devicetree/bindings/arm/cavium-thunder2.txt
4381 F:      arch/arm64/boot/dts/cavium/thunder2-99xx*
4382
4383 CBS/ETF/TAPRIO QDISCS
4384 M:      Vinicius Costa Gomes <vinicius.gomes@intel.com>
4385 S:      Maintained
4386 L:      netdev@vger.kernel.org
4387 F:      net/sched/sch_cbs.c
4388 F:      net/sched/sch_etf.c
4389 F:      net/sched/sch_taprio.c
4390
4391 CC2520 IEEE-802.15.4 RADIO DRIVER
4392 M:      Varka Bhadram <varkabhadram@gmail.com>
4393 L:      linux-wpan@vger.kernel.org
4394 S:      Maintained
4395 F:      Documentation/devicetree/bindings/net/ieee802154/cc2520.txt
4396 F:      drivers/net/ieee802154/cc2520.c
4397 F:      include/linux/spi/cc2520.h
4398
4399 CCREE ARM TRUSTZONE CRYPTOCELL REE DRIVER
4400 M:      Gilad Ben-Yossef <gilad@benyossef.com>
4401 L:      linux-crypto@vger.kernel.org
4402 S:      Supported
4403 W:      https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
4404 F:      drivers/crypto/ccree/
4405
4406 CCTRNG ARM TRUSTZONE CRYPTOCELL TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
4407 M:      Hadar Gat <hadar.gat@arm.com>
4408 L:      linux-crypto@vger.kernel.org
4409 S:      Supported
4410 F:      drivers/char/hw_random/cctrng.c
4411 F:      drivers/char/hw_random/cctrng.h
4412 F:      Documentation/devicetree/bindings/rng/arm-cctrng.yaml
4413 W:      https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
4414
4415 CEC FRAMEWORK
4416 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
4417 L:      linux-media@vger.kernel.org
4418 S:      Supported
4419 W:      http://linuxtv.org
4420 T:      git git://linuxtv.org/media_tree.git
4421 F:      Documentation/ABI/testing/debugfs-cec-error-inj
4422 F:      Documentation/devicetree/bindings/media/cec.txt
4423 F:      Documentation/driver-api/media/cec-core.rst
4424 F:      Documentation/userspace-api/media/cec
4425 F:      drivers/media/cec/
4426 F:      drivers/media/rc/keymaps/rc-cec.c
4427 F:      include/media/cec-notifier.h
4428 F:      include/media/cec.h
4429 F:      include/uapi/linux/cec-funcs.h
4430 F:      include/uapi/linux/cec.h
4431
4432 CEC GPIO DRIVER
4433 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
4434 L:      linux-media@vger.kernel.org
4435 S:      Supported
4436 W:      http://linuxtv.org
4437 T:      git git://linuxtv.org/media_tree.git
4438 F:      Documentation/devicetree/bindings/media/cec-gpio.txt
4439 F:      drivers/media/cec/platform/cec-gpio/
4440
4441 CELL BROADBAND ENGINE ARCHITECTURE
4442 M:      Arnd Bergmann <arnd@arndb.de>
4443 L:      linuxppc-dev@lists.ozlabs.org
4444 S:      Supported
4445 W:      http://www.ibm.com/developerworks/power/cell/
4446 F:      arch/powerpc/include/asm/cell*.h
4447 F:      arch/powerpc/include/asm/spu*.h
4448 F:      arch/powerpc/include/uapi/asm/spu*.h
4449 F:      arch/powerpc/platforms/cell/
4450
4451 CELLWISE CW2015 BATTERY DRIVER
4452 M:      Tobias Schrammm <t.schramm@manjaro.org>
4453 S:      Maintained
4454 F:      Documentation/devicetree/bindings/power/supply/cw2015_battery.yaml
4455 F:      drivers/power/supply/cw2015_battery.c
4456
4457 CEPH COMMON CODE (LIBCEPH)
4458 M:      Ilya Dryomov <idryomov@gmail.com>
4459 M:      Jeff Layton <jlayton@kernel.org>
4460 L:      ceph-devel@vger.kernel.org
4461 S:      Supported
4462 W:      http://ceph.com/
4463 T:      git git://github.com/ceph/ceph-client.git
4464 F:      include/linux/ceph/
4465 F:      include/linux/crush/
4466 F:      net/ceph/
4467
4468 CEPH DISTRIBUTED FILE SYSTEM CLIENT (CEPH)
4469 M:      Jeff Layton <jlayton@kernel.org>
4470 M:      Ilya Dryomov <idryomov@gmail.com>
4471 L:      ceph-devel@vger.kernel.org
4472 S:      Supported
4473 W:      http://ceph.com/
4474 T:      git git://github.com/ceph/ceph-client.git
4475 F:      Documentation/filesystems/ceph.rst
4476 F:      fs/ceph/
4477
4478 CERTIFICATE HANDLING
4479 M:      David Howells <dhowells@redhat.com>
4480 M:      David Woodhouse <dwmw2@infradead.org>
4481 L:      keyrings@vger.kernel.org
4482 S:      Maintained
4483 F:      Documentation/admin-guide/module-signing.rst
4484 F:      certs/
4485 F:      scripts/sign-file.c
4486
4487 CFAG12864B LCD DRIVER
4488 M:      Miguel Ojeda <ojeda@kernel.org>
4489 S:      Maintained
4490 F:      drivers/auxdisplay/cfag12864b.c
4491 F:      include/linux/cfag12864b.h
4492
4493 CFAG12864BFB LCD FRAMEBUFFER DRIVER
4494 M:      Miguel Ojeda <ojeda@kernel.org>
4495 S:      Maintained
4496 F:      drivers/auxdisplay/cfag12864bfb.c
4497 F:      include/linux/cfag12864b.h
4498
4499 CHAR and MISC DRIVERS
4500 M:      Arnd Bergmann <arnd@arndb.de>
4501 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4502 S:      Supported
4503 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
4504 F:      drivers/char/
4505 F:      drivers/misc/
4506 F:      include/linux/miscdevice.h
4507 X:      drivers/char/agp/
4508 X:      drivers/char/hw_random/
4509 X:      drivers/char/ipmi/
4510 X:      drivers/char/random.c
4511 X:      drivers/char/tpm/
4512
4513 CHECKPATCH
4514 M:      Andy Whitcroft <apw@canonical.com>
4515 M:      Joe Perches <joe@perches.com>
4516 R:      Dwaipayan Ray <dwaipayanray1@gmail.com>
4517 R:      Lukas Bulwahn <lukas.bulwahn@gmail.com>
4518 S:      Maintained
4519 F:      scripts/checkpatch.pl
4520
4521 CHECKPATCH DOCUMENTATION
4522 M:      Dwaipayan Ray <dwaipayanray1@gmail.com>
4523 M:      Lukas Bulwahn <lukas.bulwahn@gmail.com>
4524 R:      Joe Perches <joe@perches.com>
4525 S:      Maintained
4526 F:      Documentation/dev-tools/checkpatch.rst
4527
4528 CHINESE DOCUMENTATION
4529 M:      Alex Shi <alexs@kernel.org>
4530 S:      Maintained
4531 F:      Documentation/translations/zh_CN/
4532
4533 CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
4534 M:      Peter Chen <peter.chen@kernel.org>
4535 L:      linux-usb@vger.kernel.org
4536 S:      Maintained
4537 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4538 F:      drivers/usb/chipidea/
4539
4540 CHIPONE ICN8318 I2C TOUCHSCREEN DRIVER
4541 M:      Hans de Goede <hdegoede@redhat.com>
4542 L:      linux-input@vger.kernel.org
4543 S:      Maintained
4544 F:      Documentation/devicetree/bindings/input/touchscreen/chipone,icn8318.yaml
4545 F:      drivers/input/touchscreen/chipone_icn8318.c
4546
4547 CHIPONE ICN8505 I2C TOUCHSCREEN DRIVER
4548 M:      Hans de Goede <hdegoede@redhat.com>
4549 L:      linux-input@vger.kernel.org
4550 S:      Maintained
4551 F:      drivers/input/touchscreen/chipone_icn8505.c
4552
4553 CHROME HARDWARE PLATFORM SUPPORT
4554 M:      Benson Leung <bleung@chromium.org>
4555 S:      Maintained
4556 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chrome-platform/linux.git
4557 F:      drivers/platform/chrome/
4558
4559 CHROMEOS EC CODEC DRIVER
4560 M:      Cheng-Yi Chiang <cychiang@chromium.org>
4561 M:      Tzung-Bi Shih <tzungbi@google.com>
4562 R:      Guenter Roeck <groeck@chromium.org>
4563 S:      Maintained
4564 F:      Documentation/devicetree/bindings/sound/google,cros-ec-codec.yaml
4565 F:      sound/soc/codecs/cros_ec_codec.*
4566
4567 CHROMEOS EC SUBDRIVERS
4568 M:      Benson Leung <bleung@chromium.org>
4569 R:      Guenter Roeck <groeck@chromium.org>
4570 S:      Maintained
4571 F:      drivers/power/supply/cros_usbpd-charger.c
4572 N:      cros_ec
4573 N:      cros-ec
4574
4575 CHROMEOS EC USB TYPE-C DRIVER
4576 M:      Prashant Malani <pmalani@chromium.org>
4577 S:      Maintained
4578 F:      drivers/platform/chrome/cros_ec_typec.c
4579
4580 CHROMEOS EC USB PD NOTIFY DRIVER
4581 M:      Prashant Malani <pmalani@chromium.org>
4582 S:      Maintained
4583 F:      drivers/platform/chrome/cros_usbpd_notify.c
4584 F:      include/linux/platform_data/cros_usbpd_notify.h
4585
4586 CHRONTEL CH7322 CEC DRIVER
4587 M:      Joe Tessler <jrt@google.com>
4588 L:      linux-media@vger.kernel.org
4589 S:      Maintained
4590 T:      git git://linuxtv.org/media_tree.git
4591 F:      Documentation/devicetree/bindings/media/i2c/chrontel,ch7322.yaml
4592 F:      drivers/media/cec/i2c/ch7322.c
4593
4594 CIRRUS LOGIC AUDIO CODEC DRIVERS
4595 M:      James Schulman <james.schulman@cirrus.com>
4596 M:      David Rhodes <david.rhodes@cirrus.com>
4597 M:      Lucas Tanure <tanureal@opensource.cirrus.com>
4598 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4599 L:      patches@opensource.cirrus.com
4600 S:      Maintained
4601 F:      Documentation/devicetree/bindings/sound/cirrus,cs*
4602 F:      sound/pci/hda/cs*
4603 F:      sound/soc/codecs/cs*
4604
4605 CIRRUS LOGIC DSP FIRMWARE DRIVER
4606 M:      Simon Trimmer <simont@opensource.cirrus.com>
4607 M:      Charles Keepax <ckeepax@opensource.cirrus.com>
4608 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4609 L:      patches@opensource.cirrus.com
4610 S:      Supported
4611 W:      https://github.com/CirrusLogic/linux-drivers/wiki
4612 T:      git https://github.com/CirrusLogic/linux-drivers.git
4613 F:      drivers/firmware/cirrus/*
4614 F:      include/linux/firmware/cirrus/*
4615
4616 CIRRUS LOGIC EP93XX ETHERNET DRIVER
4617 M:      Hartley Sweeten <hsweeten@visionengravers.com>
4618 L:      netdev@vger.kernel.org
4619 S:      Maintained
4620 F:      drivers/net/ethernet/cirrus/ep93xx_eth.c
4621
4622 CIRRUS LOGIC LOCHNAGAR DRIVER
4623 M:      Charles Keepax <ckeepax@opensource.cirrus.com>
4624 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4625 L:      patches@opensource.cirrus.com
4626 S:      Supported
4627 F:      Documentation/devicetree/bindings/clock/cirrus,lochnagar.yaml
4628 F:      Documentation/devicetree/bindings/hwmon/cirrus,lochnagar.yaml
4629 F:      Documentation/devicetree/bindings/mfd/cirrus,lochnagar.yaml
4630 F:      Documentation/devicetree/bindings/pinctrl/cirrus,lochnagar.yaml
4631 F:      Documentation/devicetree/bindings/sound/cirrus,lochnagar.yaml
4632 F:      Documentation/hwmon/lochnagar.rst
4633 F:      drivers/clk/clk-lochnagar.c
4634 F:      drivers/hwmon/lochnagar-hwmon.c
4635 F:      drivers/mfd/lochnagar-i2c.c
4636 F:      drivers/pinctrl/cirrus/pinctrl-lochnagar.c
4637 F:      drivers/regulator/lochnagar-regulator.c
4638 F:      include/dt-bindings/clk/lochnagar.h
4639 F:      include/dt-bindings/pinctrl/lochnagar.h
4640 F:      include/linux/mfd/lochnagar*
4641 F:      sound/soc/codecs/lochnagar-sc.c
4642
4643 CIRRUS LOGIC MADERA CODEC DRIVERS
4644 M:      Charles Keepax <ckeepax@opensource.cirrus.com>
4645 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4646 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4647 L:      patches@opensource.cirrus.com
4648 S:      Supported
4649 W:      https://github.com/CirrusLogic/linux-drivers/wiki
4650 T:      git https://github.com/CirrusLogic/linux-drivers.git
4651 F:      Documentation/devicetree/bindings/mfd/cirrus,madera.yaml
4652 F:      Documentation/devicetree/bindings/pinctrl/cirrus,madera.yaml
4653 F:      Documentation/devicetree/bindings/sound/cirrus,madera.yaml
4654 F:      drivers/gpio/gpio-madera*
4655 F:      drivers/irqchip/irq-madera*
4656 F:      drivers/mfd/cs47l*
4657 F:      drivers/mfd/madera*
4658 F:      drivers/pinctrl/cirrus/*
4659 F:      include/dt-bindings/sound/madera*
4660 F:      include/linux/irqchip/irq-madera*
4661 F:      include/linux/mfd/madera/*
4662 F:      include/sound/madera*
4663 F:      sound/soc/codecs/cs47l*
4664 F:      sound/soc/codecs/madera*
4665
4666 CISCO FCOE HBA DRIVER
4667 M:      Satish Kharat <satishkh@cisco.com>
4668 M:      Sesidhar Baddela <sebaddel@cisco.com>
4669 M:      Karan Tilak Kumar <kartilak@cisco.com>
4670 L:      linux-scsi@vger.kernel.org
4671 S:      Supported
4672 F:      drivers/scsi/fnic/
4673
4674 CISCO SCSI HBA DRIVER
4675 M:      Karan Tilak Kumar <kartilak@cisco.com>
4676 M:      Sesidhar Baddela <sebaddel@cisco.com>
4677 L:      linux-scsi@vger.kernel.org
4678 S:      Supported
4679 F:      drivers/scsi/snic/
4680
4681 CISCO VIC ETHERNET NIC DRIVER
4682 M:      Christian Benvenuti <benve@cisco.com>
4683 M:      Govindarajulu Varadarajan <_govind@gmx.com>
4684 S:      Supported
4685 F:      drivers/net/ethernet/cisco/enic/
4686
4687 CISCO VIC LOW LATENCY NIC DRIVER
4688 M:      Christian Benvenuti <benve@cisco.com>
4689 M:      Nelson Escobar <neescoba@cisco.com>
4690 S:      Supported
4691 F:      drivers/infiniband/hw/usnic/
4692
4693 CLANG-FORMAT FILE
4694 M:      Miguel Ojeda <ojeda@kernel.org>
4695 S:      Maintained
4696 F:      .clang-format
4697
4698 CLANG/LLVM BUILD SUPPORT
4699 M:      Nathan Chancellor <nathan@kernel.org>
4700 M:      Nick Desaulniers <ndesaulniers@google.com>
4701 L:      llvm@lists.linux.dev
4702 S:      Supported
4703 W:      https://clangbuiltlinux.github.io/
4704 B:      https://github.com/ClangBuiltLinux/linux/issues
4705 C:      irc://irc.libera.chat/clangbuiltlinux
4706 F:      Documentation/kbuild/llvm.rst
4707 F:      include/linux/compiler-clang.h
4708 F:      scripts/Makefile.clang
4709 F:      scripts/clang-tools/
4710 K:      \b(?i:clang|llvm)\b
4711
4712 CLANG CONTROL FLOW INTEGRITY SUPPORT
4713 M:      Sami Tolvanen <samitolvanen@google.com>
4714 M:      Kees Cook <keescook@chromium.org>
4715 R:      Nathan Chancellor <nathan@kernel.org>
4716 R:      Nick Desaulniers <ndesaulniers@google.com>
4717 L:      llvm@lists.linux.dev
4718 S:      Supported
4719 B:      https://github.com/ClangBuiltLinux/linux/issues
4720 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/clang/features
4721 F:      include/linux/cfi.h
4722 F:      kernel/cfi.c
4723
4724 CLK API
4725 M:      Russell King <linux@armlinux.org.uk>
4726 L:      linux-clk@vger.kernel.org
4727 S:      Maintained
4728 F:      include/linux/clk.h
4729
4730 CLOCKSOURCE, CLOCKEVENT DRIVERS
4731 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4732 M:      Thomas Gleixner <tglx@linutronix.de>
4733 L:      linux-kernel@vger.kernel.org
4734 S:      Supported
4735 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
4736 F:      Documentation/devicetree/bindings/timer/
4737 F:      drivers/clocksource/
4738
4739 CMPC ACPI DRIVER
4740 M:      Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
4741 M:      Daniel Oliveira Nascimento <don@syst.com.br>
4742 L:      platform-driver-x86@vger.kernel.org
4743 S:      Supported
4744 F:      drivers/platform/x86/classmate-laptop.c
4745
4746 COBALT MEDIA DRIVER
4747 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
4748 L:      linux-media@vger.kernel.org
4749 S:      Supported
4750 W:      https://linuxtv.org
4751 T:      git git://linuxtv.org/media_tree.git
4752 F:      drivers/media/pci/cobalt/
4753
4754 COCCINELLE/Semantic Patches (SmPL)
4755 M:      Julia Lawall <Julia.Lawall@inria.fr>
4756 M:      Nicolas Palix <nicolas.palix@imag.fr>
4757 L:      cocci@inria.fr (moderated for non-subscribers)
4758 S:      Supported
4759 W:      https://coccinelle.gitlabpages.inria.fr/website/
4760 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jlawall/linux.git
4761 F:      Documentation/dev-tools/coccinelle.rst
4762 F:      scripts/coccicheck
4763 F:      scripts/coccinelle/
4764
4765 CODA FILE SYSTEM
4766 M:      Jan Harkes <jaharkes@cs.cmu.edu>
4767 M:      coda@cs.cmu.edu
4768 L:      codalist@coda.cs.cmu.edu
4769 S:      Maintained
4770 W:      http://www.coda.cs.cmu.edu/
4771 F:      Documentation/filesystems/coda.rst
4772 F:      fs/coda/
4773 F:      include/linux/coda*.h
4774 F:      include/uapi/linux/coda*.h
4775
4776 CODA V4L2 MEM2MEM DRIVER
4777 M:      Philipp Zabel <p.zabel@pengutronix.de>
4778 L:      linux-media@vger.kernel.org
4779 S:      Maintained
4780 F:      Documentation/devicetree/bindings/media/coda.yaml
4781 F:      drivers/media/platform/chips-media/
4782
4783 CODE OF CONDUCT
4784 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4785 S:      Supported
4786 F:      Documentation/process/code-of-conduct-interpretation.rst
4787 F:      Documentation/process/code-of-conduct.rst
4788
4789 COMEDI DRIVERS
4790 M:      Ian Abbott <abbotti@mev.co.uk>
4791 M:      H Hartley Sweeten <hsweeten@visionengravers.com>
4792 S:      Odd Fixes
4793 F:      drivers/comedi/
4794 F:      include/linux/comedi/
4795 F:      include/uapi/linux/comedi.h
4796
4797 COMMON CLK FRAMEWORK
4798 M:      Michael Turquette <mturquette@baylibre.com>
4799 M:      Stephen Boyd <sboyd@kernel.org>
4800 L:      linux-clk@vger.kernel.org
4801 S:      Maintained
4802 Q:      http://patchwork.kernel.org/project/linux-clk/list/
4803 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git
4804 F:      Documentation/devicetree/bindings/clock/
4805 F:      drivers/clk/
4806 F:      include/linux/clk-pr*
4807 F:      include/linux/clk/
4808 F:      include/linux/of_clk.h
4809 X:      drivers/clk/clkdev.c
4810
4811 COMMON INTERNET FILE SYSTEM CLIENT (CIFS)
4812 M:      Steve French <sfrench@samba.org>
4813 L:      linux-cifs@vger.kernel.org
4814 L:      samba-technical@lists.samba.org (moderated for non-subscribers)
4815 S:      Supported
4816 W:      http://linux-cifs.samba.org/
4817 T:      git git://git.samba.org/sfrench/cifs-2.6.git
4818 F:      Documentation/admin-guide/cifs/
4819 F:      fs/cifs/
4820 F:      fs/smbfs_common/
4821
4822 COMPACTPCI HOTPLUG CORE
4823 M:      Scott Murray <scott@spiteful.org>
4824 L:      linux-pci@vger.kernel.org
4825 S:      Maintained
4826 F:      drivers/pci/hotplug/cpci_hotplug*
4827
4828 COMPACTPCI HOTPLUG GENERIC DRIVER
4829 M:      Scott Murray <scott@spiteful.org>
4830 L:      linux-pci@vger.kernel.org
4831 S:      Maintained
4832 F:      drivers/pci/hotplug/cpcihp_generic.c
4833
4834 COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
4835 M:      Scott Murray <scott@spiteful.org>
4836 L:      linux-pci@vger.kernel.org
4837 S:      Maintained
4838 F:      drivers/pci/hotplug/cpcihp_zt5550.*
4839
4840 COMPAL LAPTOP SUPPORT
4841 M:      Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
4842 L:      platform-driver-x86@vger.kernel.org
4843 S:      Maintained
4844 F:      drivers/platform/x86/compal-laptop.c
4845
4846 COMPILER ATTRIBUTES
4847 M:      Miguel Ojeda <ojeda@kernel.org>
4848 R:      Nick Desaulniers <ndesaulniers@google.com>
4849 S:      Maintained
4850 F:      include/linux/compiler_attributes.h
4851
4852 COMPUTE EXPRESS LINK (CXL)
4853 M:      Alison Schofield <alison.schofield@intel.com>
4854 M:      Vishal Verma <vishal.l.verma@intel.com>
4855 M:      Ira Weiny <ira.weiny@intel.com>
4856 M:      Ben Widawsky <ben.widawsky@intel.com>
4857 M:      Dan Williams <dan.j.williams@intel.com>
4858 L:      linux-cxl@vger.kernel.org
4859 S:      Maintained
4860 F:      drivers/cxl/
4861 F:      include/uapi/linux/cxl_mem.h
4862
4863 CONEXANT ACCESSRUNNER USB DRIVER
4864 L:      accessrunner-general@lists.sourceforge.net
4865 S:      Orphan
4866 W:      http://accessrunner.sourceforge.net/
4867 F:      drivers/usb/atm/cxacru.c
4868
4869 CONFIGFS
4870 M:      Joel Becker <jlbec@evilplan.org>
4871 M:      Christoph Hellwig <hch@lst.de>
4872 S:      Supported
4873 T:      git git://git.infradead.org/users/hch/configfs.git
4874 F:      fs/configfs/
4875 F:      include/linux/configfs.h
4876 F:      samples/configfs/
4877
4878 CONSOLE SUBSYSTEM
4879 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4880 S:      Supported
4881 F:      drivers/video/console/
4882 F:      include/linux/console*
4883
4884 CONTEXT TRACKING
4885 M:      Frederic Weisbecker <frederic@kernel.org>
4886 S:      Maintained
4887 F:      kernel/context_tracking.c
4888 F:      include/linux/context_tracking*
4889
4890 CONTROL GROUP (CGROUP)
4891 M:      Tejun Heo <tj@kernel.org>
4892 M:      Zefan Li <lizefan.x@bytedance.com>
4893 M:      Johannes Weiner <hannes@cmpxchg.org>
4894 L:      cgroups@vger.kernel.org
4895 S:      Maintained
4896 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
4897 F:      Documentation/admin-guide/cgroup-v1/
4898 F:      Documentation/admin-guide/cgroup-v2.rst
4899 F:      include/linux/cgroup*
4900 F:      kernel/cgroup/
4901
4902 CONTROL GROUP - BLOCK IO CONTROLLER (BLKIO)
4903 M:      Tejun Heo <tj@kernel.org>
4904 M:      Jens Axboe <axboe@kernel.dk>
4905 L:      cgroups@vger.kernel.org
4906 L:      linux-block@vger.kernel.org
4907 T:      git git://git.kernel.dk/linux-block
4908 F:      Documentation/admin-guide/cgroup-v1/blkio-controller.rst
4909 F:      block/bfq-cgroup.c
4910 F:      block/blk-cgroup.c
4911 F:      block/blk-iolatency.c
4912 F:      block/blk-throttle.c
4913 F:      include/linux/blk-cgroup.h
4914
4915 CONTROL GROUP - CPUSET
4916 M:      Zefan Li <lizefan.x@bytedance.com>
4917 L:      cgroups@vger.kernel.org
4918 S:      Maintained
4919 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
4920 F:      Documentation/admin-guide/cgroup-v1/cpusets.rst
4921 F:      include/linux/cpuset.h
4922 F:      kernel/cgroup/cpuset.c
4923
4924 CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG)
4925 M:      Johannes Weiner <hannes@cmpxchg.org>
4926 M:      Michal Hocko <mhocko@kernel.org>
4927 M:      Roman Gushchin <roman.gushchin@linux.dev>
4928 M:      Shakeel Butt <shakeelb@google.com>
4929 L:      cgroups@vger.kernel.org
4930 L:      linux-mm@kvack.org
4931 S:      Maintained
4932 F:      mm/memcontrol.c
4933 F:      mm/swap_cgroup.c
4934
4935 CORETEMP HARDWARE MONITORING DRIVER
4936 M:      Fenghua Yu <fenghua.yu@intel.com>
4937 L:      linux-hwmon@vger.kernel.org
4938 S:      Maintained
4939 F:      Documentation/hwmon/coretemp.rst
4940 F:      drivers/hwmon/coretemp.c
4941
4942 CORSAIR-CPRO HARDWARE MONITOR DRIVER
4943 M:      Marius Zachmann <mail@mariuszachmann.de>
4944 L:      linux-hwmon@vger.kernel.org
4945 S:      Maintained
4946 F:      drivers/hwmon/corsair-cpro.c
4947
4948 CORSAIR-PSU HARDWARE MONITOR DRIVER
4949 M:      Wilken Gottwalt <wilken.gottwalt@posteo.net>
4950 L:      linux-hwmon@vger.kernel.org
4951 S:      Maintained
4952 F:      Documentation/hwmon/corsair-psu.rst
4953 F:      drivers/hwmon/corsair-psu.c
4954
4955 COSA/SRP SYNC SERIAL DRIVER
4956 M:      Jan "Yenya" Kasprzak <kas@fi.muni.cz>
4957 S:      Maintained
4958 W:      http://www.fi.muni.cz/~kas/cosa/
4959 F:      drivers/net/wan/cosa*
4960
4961 COUNTER SUBSYSTEM
4962 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
4963 L:      linux-iio@vger.kernel.org
4964 S:      Maintained
4965 F:      Documentation/ABI/testing/sysfs-bus-counter
4966 F:      Documentation/driver-api/generic-counter.rst
4967 F:      drivers/counter/
4968 F:      include/linux/counter.h
4969 F:      include/uapi/linux/counter.h
4970 F:      tools/counter/
4971
4972 CP2615 I2C DRIVER
4973 M:      Bence Csókás <bence98@sch.bme.hu>
4974 S:      Maintained
4975 F:      drivers/i2c/busses/i2c-cp2615.c
4976
4977 CPMAC ETHERNET DRIVER
4978 M:      Florian Fainelli <f.fainelli@gmail.com>
4979 L:      netdev@vger.kernel.org
4980 S:      Maintained
4981 F:      drivers/net/ethernet/ti/cpmac.c
4982
4983 CPU FREQUENCY DRIVERS - VEXPRESS SPC ARM BIG LITTLE
4984 M:      Viresh Kumar <viresh.kumar@linaro.org>
4985 M:      Sudeep Holla <sudeep.holla@arm.com>
4986 L:      linux-pm@vger.kernel.org
4987 S:      Maintained
4988 W:      http://www.arm.com/products/processors/technologies/biglittleprocessing.php
4989 F:      drivers/cpufreq/vexpress-spc-cpufreq.c
4990
4991 CPU FREQUENCY SCALING FRAMEWORK
4992 M:      "Rafael J. Wysocki" <rafael@kernel.org>
4993 M:      Viresh Kumar <viresh.kumar@linaro.org>
4994 L:      linux-pm@vger.kernel.org
4995 S:      Maintained
4996 B:      https://bugzilla.kernel.org
4997 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4998 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git (For ARM Updates)
4999 F:      Documentation/admin-guide/pm/cpufreq.rst
5000 F:      Documentation/admin-guide/pm/intel_pstate.rst
5001 F:      Documentation/cpu-freq/
5002 F:      Documentation/devicetree/bindings/cpufreq/
5003 F:      drivers/cpufreq/
5004 F:      include/linux/cpufreq.h
5005 F:      include/linux/sched/cpufreq.h
5006 F:      kernel/sched/cpufreq*.c
5007 F:      tools/testing/selftests/cpufreq/
5008
5009 CPU IDLE TIME MANAGEMENT FRAMEWORK
5010 M:      "Rafael J. Wysocki" <rafael@kernel.org>
5011 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
5012 L:      linux-pm@vger.kernel.org
5013 S:      Maintained
5014 B:      https://bugzilla.kernel.org
5015 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
5016 F:      Documentation/admin-guide/pm/cpuidle.rst
5017 F:      Documentation/driver-api/pm/cpuidle.rst
5018 F:      drivers/cpuidle/
5019 F:      include/linux/cpuidle.h
5020
5021 CPU POWER MONITORING SUBSYSTEM
5022 M:      Thomas Renninger <trenn@suse.com>
5023 M:      Shuah Khan <shuah@kernel.org>
5024 M:      Shuah Khan <skhan@linuxfoundation.org>
5025 L:      linux-pm@vger.kernel.org
5026 S:      Maintained
5027 F:      tools/power/cpupower/
5028
5029 CPUID/MSR DRIVER
5030 M:      "H. Peter Anvin" <hpa@zytor.com>
5031 S:      Maintained
5032 F:      arch/x86/kernel/cpuid.c
5033 F:      arch/x86/kernel/msr.c
5034
5035 CPUIDLE DRIVER - ARM BIG LITTLE
5036 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
5037 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
5038 L:      linux-pm@vger.kernel.org
5039 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5040 S:      Maintained
5041 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
5042 F:      drivers/cpuidle/cpuidle-big_little.c
5043
5044 CPUIDLE DRIVER - ARM EXYNOS
5045 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
5046 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
5047 M:      Kukjin Kim <kgene@kernel.org>
5048 L:      linux-pm@vger.kernel.org
5049 L:      linux-samsung-soc@vger.kernel.org
5050 S:      Supported
5051 F:      arch/arm/mach-exynos/pm.c
5052 F:      drivers/cpuidle/cpuidle-exynos.c
5053 F:      include/linux/platform_data/cpuidle-exynos.h
5054
5055 CPUIDLE DRIVER - ARM PSCI
5056 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
5057 M:      Sudeep Holla <sudeep.holla@arm.com>
5058 L:      linux-pm@vger.kernel.org
5059 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5060 S:      Supported
5061 F:      drivers/cpuidle/cpuidle-psci.c
5062
5063 CPUIDLE DRIVER - ARM PSCI PM DOMAIN
5064 M:      Ulf Hansson <ulf.hansson@linaro.org>
5065 L:      linux-pm@vger.kernel.org
5066 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5067 S:      Supported
5068 F:      drivers/cpuidle/cpuidle-psci.h
5069 F:      drivers/cpuidle/cpuidle-psci-domain.c
5070
5071 CRAMFS FILESYSTEM
5072 M:      Nicolas Pitre <nico@fluxnic.net>
5073 S:      Maintained
5074 F:      Documentation/filesystems/cramfs.rst
5075 F:      fs/cramfs/
5076
5077 CREATIVE SB0540
5078 M:      Bastien Nocera <hadess@hadess.net>
5079 L:      linux-input@vger.kernel.org
5080 S:      Maintained
5081 F:      drivers/hid/hid-creative-sb0540.c
5082
5083 CRYPTO API
5084 M:      Herbert Xu <herbert@gondor.apana.org.au>
5085 M:      "David S. Miller" <davem@davemloft.net>
5086 L:      linux-crypto@vger.kernel.org
5087 S:      Maintained
5088 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
5089 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
5090 F:      Documentation/crypto/
5091 F:      Documentation/devicetree/bindings/crypto/
5092 F:      arch/*/crypto/
5093 F:      crypto/
5094 F:      drivers/crypto/
5095 F:      include/crypto/
5096 F:      include/linux/crypto*
5097 F:      lib/crypto/
5098
5099 CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
5100 M:      Neil Horman <nhorman@tuxdriver.com>
5101 L:      linux-crypto@vger.kernel.org
5102 S:      Maintained
5103 F:      crypto/ansi_cprng.c
5104 F:      crypto/rng.c
5105
5106 CS3308 MEDIA DRIVER
5107 M:      Hans Verkuil <hverkuil@xs4all.nl>
5108 L:      linux-media@vger.kernel.org
5109 S:      Odd Fixes
5110 W:      http://linuxtv.org
5111 T:      git git://linuxtv.org/media_tree.git
5112 F:      drivers/media/i2c/cs3308.c
5113
5114 CS5535 Audio ALSA driver
5115 M:      Jaya Kumar <jayakumar.alsa@gmail.com>
5116 S:      Maintained
5117 F:      sound/pci/cs5535audio/
5118
5119 CSI DRIVERS FOR ALLWINNER V3s
5120 M:      Yong Deng <yong.deng@magewell.com>
5121 L:      linux-media@vger.kernel.org
5122 S:      Maintained
5123 T:      git git://linuxtv.org/media_tree.git
5124 F:      Documentation/devicetree/bindings/media/allwinner,sun6i-a31-csi.yaml
5125 F:      drivers/media/platform/sunxi/sun6i-csi/
5126
5127 CW1200 WLAN driver
5128 M:      Solomon Peachy <pizza@shaftnet.org>
5129 S:      Maintained
5130 F:      drivers/net/wireless/st/cw1200/
5131
5132 CX18 VIDEO4LINUX DRIVER
5133 M:      Andy Walls <awalls@md.metrocast.net>
5134 L:      linux-media@vger.kernel.org
5135 S:      Maintained
5136 W:      https://linuxtv.org
5137 T:      git git://linuxtv.org/media_tree.git
5138 F:      drivers/media/pci/cx18/
5139 F:      include/uapi/linux/ivtv*
5140
5141 CX2341X MPEG ENCODER HELPER MODULE
5142 M:      Hans Verkuil <hverkuil@xs4all.nl>
5143 L:      linux-media@vger.kernel.org
5144 S:      Maintained
5145 W:      https://linuxtv.org
5146 T:      git git://linuxtv.org/media_tree.git
5147 F:      drivers/media/common/cx2341x*
5148 F:      include/media/drv-intf/cx2341x.h
5149
5150 CX24120 MEDIA DRIVER
5151 M:      Jemma Denson <jdenson@gmail.com>
5152 M:      Patrick Boettcher <patrick.boettcher@posteo.de>
5153 L:      linux-media@vger.kernel.org
5154 S:      Maintained
5155 W:      https://linuxtv.org
5156 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5157 F:      drivers/media/dvb-frontends/cx24120*
5158
5159 CX88 VIDEO4LINUX DRIVER
5160 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
5161 L:      linux-media@vger.kernel.org
5162 S:      Odd fixes
5163 W:      https://linuxtv.org
5164 T:      git git://linuxtv.org/media_tree.git
5165 F:      Documentation/driver-api/media/drivers/cx88*
5166 F:      drivers/media/pci/cx88/
5167
5168 CXD2820R MEDIA DRIVER
5169 M:      Antti Palosaari <crope@iki.fi>
5170 L:      linux-media@vger.kernel.org
5171 S:      Maintained
5172 W:      https://linuxtv.org
5173 W:      http://palosaari.fi/linux/
5174 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5175 T:      git git://linuxtv.org/anttip/media_tree.git
5176 F:      drivers/media/dvb-frontends/cxd2820r*
5177
5178 CXGB3 ETHERNET DRIVER (CXGB3)
5179 M:      Raju Rangoju <rajur@chelsio.com>
5180 L:      netdev@vger.kernel.org
5181 S:      Supported
5182 W:      http://www.chelsio.com
5183 F:      drivers/net/ethernet/chelsio/cxgb3/
5184
5185 CXGB3 ISCSI DRIVER (CXGB3I)
5186 M:      Karen Xie <kxie@chelsio.com>
5187 L:      linux-scsi@vger.kernel.org
5188 S:      Supported
5189 W:      http://www.chelsio.com
5190 F:      drivers/scsi/cxgbi/cxgb3i
5191
5192 CXGB4 CRYPTO DRIVER (chcr)
5193 M:      Ayush Sawal <ayush.sawal@chelsio.com>
5194 M:      Vinay Kumar Yadav <vinay.yadav@chelsio.com>
5195 M:      Rohit Maheshwari <rohitm@chelsio.com>
5196 L:      linux-crypto@vger.kernel.org
5197 S:      Supported
5198 W:      http://www.chelsio.com
5199 F:      drivers/crypto/chelsio
5200
5201 CXGB4 INLINE CRYPTO DRIVER
5202 M:      Ayush Sawal <ayush.sawal@chelsio.com>
5203 M:      Vinay Kumar Yadav <vinay.yadav@chelsio.com>
5204 M:      Rohit Maheshwari <rohitm@chelsio.com>
5205 L:      netdev@vger.kernel.org
5206 S:      Supported
5207 W:      http://www.chelsio.com
5208 F:      drivers/net/ethernet/chelsio/inline_crypto/
5209
5210 CXGB4 ETHERNET DRIVER (CXGB4)
5211 M:      Raju Rangoju <rajur@chelsio.com>
5212 L:      netdev@vger.kernel.org
5213 S:      Supported
5214 W:      http://www.chelsio.com
5215 F:      drivers/net/ethernet/chelsio/cxgb4/
5216
5217 CXGB4 ISCSI DRIVER (CXGB4I)
5218 M:      Karen Xie <kxie@chelsio.com>
5219 L:      linux-scsi@vger.kernel.org
5220 S:      Supported
5221 W:      http://www.chelsio.com
5222 F:      drivers/scsi/cxgbi/cxgb4i
5223
5224 CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
5225 M:      Potnuri Bharat Teja <bharat@chelsio.com>
5226 L:      linux-rdma@vger.kernel.org
5227 S:      Supported
5228 W:      http://www.openfabrics.org
5229 F:      drivers/infiniband/hw/cxgb4/
5230 F:      include/uapi/rdma/cxgb4-abi.h
5231
5232 CXGB4VF ETHERNET DRIVER (CXGB4VF)
5233 M:      Raju Rangoju <rajur@chelsio.com>
5234 L:      netdev@vger.kernel.org
5235 S:      Supported
5236 W:      http://www.chelsio.com
5237 F:      drivers/net/ethernet/chelsio/cxgb4vf/
5238
5239 CXL (IBM Coherent Accelerator Processor Interface CAPI) DRIVER
5240 M:      Frederic Barrat <fbarrat@linux.ibm.com>
5241 M:      Andrew Donnellan <ajd@linux.ibm.com>
5242 L:      linuxppc-dev@lists.ozlabs.org
5243 S:      Supported
5244 F:      Documentation/ABI/testing/sysfs-class-cxl
5245 F:      Documentation/powerpc/cxl.rst
5246 F:      arch/powerpc/platforms/powernv/pci-cxl.c
5247 F:      drivers/misc/cxl/
5248 F:      include/misc/cxl*
5249 F:      include/uapi/misc/cxl.h
5250
5251 CXLFLASH (IBM Coherent Accelerator Processor Interface CAPI Flash) SCSI DRIVER
5252 M:      Manoj N. Kumar <manoj@linux.ibm.com>
5253 M:      Matthew R. Ochs <mrochs@linux.ibm.com>
5254 M:      Uma Krishnan <ukrishn@linux.ibm.com>
5255 L:      linux-scsi@vger.kernel.org
5256 S:      Supported
5257 F:      Documentation/powerpc/cxlflash.rst
5258 F:      drivers/scsi/cxlflash/
5259 F:      include/uapi/scsi/cxlflash_ioctl.h
5260
5261 CYBERPRO FB DRIVER
5262 M:      Russell King <linux@armlinux.org.uk>
5263 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5264 S:      Maintained
5265 W:      http://www.armlinux.org.uk/
5266 F:      drivers/video/fbdev/cyber2000fb.*
5267
5268 CYCLADES PC300 DRIVER
5269 S:      Orphan
5270 F:      drivers/net/wan/pc300*
5271
5272 CYPRESS_FIRMWARE MEDIA DRIVER
5273 M:      Antti Palosaari <crope@iki.fi>
5274 L:      linux-media@vger.kernel.org
5275 S:      Maintained
5276 W:      https://linuxtv.org
5277 W:      http://palosaari.fi/linux/
5278 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5279 T:      git git://linuxtv.org/anttip/media_tree.git
5280 F:      drivers/media/common/cypress_firmware*
5281
5282 CYPRESS CY8CTMA140 TOUCHSCREEN DRIVER
5283 M:      Linus Walleij <linus.walleij@linaro.org>
5284 L:      linux-input@vger.kernel.org
5285 S:      Maintained
5286 F:      drivers/input/touchscreen/cy8ctma140.c
5287
5288 CYPRESS STREETFIGHTER TOUCHKEYS DRIVER
5289 M:      Yassine Oudjana <y.oudjana@protonmail.com>
5290 L:      linux-input@vger.kernel.org
5291 S:      Maintained
5292 F:      Documentation/devicetree/bindings/input/cypress-sf.yaml
5293 F:      drivers/input/keyboard/cypress-sf.c
5294
5295 CYTTSP TOUCHSCREEN DRIVER
5296 M:      Linus Walleij <linus.walleij@linaro.org>
5297 L:      linux-input@vger.kernel.org
5298 S:      Maintained
5299 F:      drivers/input/touchscreen/cyttsp*
5300
5301 D-LINK DIR-685 TOUCHKEYS DRIVER
5302 M:      Linus Walleij <linus.walleij@linaro.org>
5303 L:      linux-input@vger.kernel.org
5304 S:      Supported
5305 F:      drivers/input/keyboard/dlink-dir685-touchkeys.c
5306
5307 DALLAS/MAXIM DS1685-FAMILY REAL TIME CLOCK
5308 M:      Joshua Kinard <kumba@gentoo.org>
5309 S:      Maintained
5310 F:      drivers/rtc/rtc-ds1685.c
5311 F:      include/linux/rtc/ds1685.h
5312
5313 DAMA SLAVE for AX.25
5314 M:      Joerg Reuter <jreuter@yaina.de>
5315 L:      linux-hams@vger.kernel.org
5316 S:      Maintained
5317 W:      http://yaina.de/jreuter/
5318 W:      http://www.qsl.net/dl1bke/
5319 F:      net/ax25/af_ax25.c
5320 F:      net/ax25/ax25_dev.c
5321 F:      net/ax25/ax25_ds_*
5322 F:      net/ax25/ax25_in.c
5323 F:      net/ax25/ax25_out.c
5324 F:      net/ax25/ax25_timer.c
5325 F:      net/ax25/sysctl_net_ax25.c
5326
5327 DATA ACCESS MONITOR
5328 M:      SeongJae Park <sj@kernel.org>
5329 L:      linux-mm@kvack.org
5330 S:      Maintained
5331 F:      Documentation/ABI/testing/sysfs-kernel-mm-damon
5332 F:      Documentation/admin-guide/mm/damon/
5333 F:      Documentation/vm/damon/
5334 F:      include/linux/damon.h
5335 F:      include/trace/events/damon.h
5336 F:      mm/damon/
5337 F:      tools/testing/selftests/damon/
5338
5339 DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
5340 L:      netdev@vger.kernel.org
5341 S:      Orphan
5342 F:      Documentation/networking/device_drivers/ethernet/dec/dmfe.rst
5343 F:      drivers/net/ethernet/dec/tulip/dmfe.c
5344
5345 DC390/AM53C974 SCSI driver
5346 M:      Hannes Reinecke <hare@suse.com>
5347 L:      linux-scsi@vger.kernel.org
5348 S:      Maintained
5349 F:      drivers/scsi/am53c974.c
5350
5351 DC395x SCSI driver
5352 M:      Oliver Neukum <oliver@neukum.org>
5353 M:      Ali Akcaagac <aliakc@web.de>
5354 M:      Jamie Lenehan <lenehan@twibble.org>
5355 L:      dc395x@twibble.org
5356 S:      Maintained
5357 W:      http://twibble.org/dist/dc395x/
5358 W:      http://lists.twibble.org/mailman/listinfo/dc395x/
5359 F:      Documentation/scsi/dc395x.rst
5360 F:      drivers/scsi/dc395x.*
5361
5362 DCCP PROTOCOL
5363 L:      dccp@vger.kernel.org
5364 S:      Orphan
5365 W:      http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
5366 F:      include/linux/dccp.h
5367 F:      include/linux/tfrc.h
5368 F:      include/uapi/linux/dccp.h
5369 F:      net/dccp/
5370
5371 DECnet NETWORK LAYER
5372 L:      linux-decnet-user@lists.sourceforge.net
5373 S:      Orphan
5374 W:      http://linux-decnet.sourceforge.net
5375 F:      Documentation/networking/decnet.rst
5376 F:      net/decnet/
5377
5378 DECSTATION PLATFORM SUPPORT
5379 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
5380 L:      linux-mips@vger.kernel.org
5381 S:      Maintained
5382 W:      http://www.linux-mips.org/wiki/DECstation
5383 F:      arch/mips/dec/
5384 F:      arch/mips/include/asm/dec/
5385 F:      arch/mips/include/asm/mach-dec/
5386
5387 DEFXX FDDI NETWORK DRIVER
5388 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
5389 S:      Maintained
5390 F:      drivers/net/fddi/defxx.*
5391
5392 DEFZA FDDI NETWORK DRIVER
5393 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
5394 S:      Maintained
5395 F:      drivers/net/fddi/defza.*
5396
5397 DEINTERLACE DRIVERS FOR ALLWINNER H3
5398 M:      Jernej Skrabec <jernej.skrabec@gmail.com>
5399 L:      linux-media@vger.kernel.org
5400 S:      Maintained
5401 T:      git git://linuxtv.org/media_tree.git
5402 F:      Documentation/devicetree/bindings/media/allwinner,sun8i-h3-deinterlace.yaml
5403 F:      drivers/media/platform/sunxi/sun8i-di/
5404
5405 DELL LAPTOP DRIVER
5406 M:      Matthew Garrett <mjg59@srcf.ucam.org>
5407 M:      Pali Rohár <pali@kernel.org>
5408 L:      platform-driver-x86@vger.kernel.org
5409 S:      Maintained
5410 F:      drivers/platform/x86/dell/dell-laptop.c
5411
5412 DELL LAPTOP FREEFALL DRIVER
5413 M:      Pali Rohár <pali@kernel.org>
5414 S:      Maintained
5415 F:      drivers/platform/x86/dell/dell-smo8800.c
5416
5417 DELL LAPTOP RBTN DRIVER
5418 M:      Pali Rohár <pali@kernel.org>
5419 S:      Maintained
5420 F:      drivers/platform/x86/dell/dell-rbtn.*
5421
5422 DELL LAPTOP SMM DRIVER
5423 M:      Pali Rohár <pali@kernel.org>
5424 S:      Maintained
5425 F:      Documentation/ABI/obsolete/procfs-i8k
5426 F:      drivers/hwmon/dell-smm-hwmon.c
5427 F:      include/uapi/linux/i8k.h
5428
5429 DELL REMOTE BIOS UPDATE DRIVER
5430 M:      Stuart Hayes <stuart.w.hayes@gmail.com>
5431 L:      platform-driver-x86@vger.kernel.org
5432 S:      Maintained
5433 F:      drivers/platform/x86/dell/dell_rbu.c
5434
5435 DELL SMBIOS DRIVER
5436 M:      Pali Rohár <pali@kernel.org>
5437 L:      Dell.Client.Kernel@dell.com
5438 L:      platform-driver-x86@vger.kernel.org
5439 S:      Maintained
5440 F:      drivers/platform/x86/dell/dell-smbios.*
5441
5442 DELL SMBIOS SMM DRIVER
5443 L:      Dell.Client.Kernel@dell.com
5444 L:      platform-driver-x86@vger.kernel.org
5445 S:      Maintained
5446 F:      drivers/platform/x86/dell/dell-smbios-smm.c
5447
5448 DELL SMBIOS WMI DRIVER
5449 L:      Dell.Client.Kernel@dell.com
5450 L:      platform-driver-x86@vger.kernel.org
5451 S:      Maintained
5452 F:      drivers/platform/x86/dell/dell-smbios-wmi.c
5453 F:      tools/wmi/dell-smbios-example.c
5454
5455 DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
5456 M:      Stuart Hayes <stuart.w.hayes@gmail.com>
5457 L:      platform-driver-x86@vger.kernel.org
5458 S:      Maintained
5459 F:      Documentation/driver-api/dcdbas.rst
5460 F:      drivers/platform/x86/dell/dcdbas.*
5461
5462 DELL WMI DESCRIPTOR DRIVER
5463 L:      Dell.Client.Kernel@dell.com
5464 S:      Maintained
5465 F:      drivers/platform/x86/dell/dell-wmi-descriptor.c
5466
5467 DELL WMI SYSMAN DRIVER
5468 M:      Divya Bharathi <divya.bharathi@dell.com>
5469 M:      Prasanth Ksr <prasanth.ksr@dell.com>
5470 L:      Dell.Client.Kernel@dell.com
5471 L:      platform-driver-x86@vger.kernel.org
5472 S:      Maintained
5473 F:      Documentation/ABI/testing/sysfs-class-firmware-attributes
5474 F:      drivers/platform/x86/dell/dell-wmi-sysman/
5475
5476 DELL WMI NOTIFICATIONS DRIVER
5477 M:      Matthew Garrett <mjg59@srcf.ucam.org>
5478 M:      Pali Rohár <pali@kernel.org>
5479 S:      Maintained
5480 F:      drivers/platform/x86/dell/dell-wmi-base.c
5481
5482 DELL WMI HARDWARE PRIVACY SUPPORT
5483 M:      Perry Yuan <Perry.Yuan@dell.com>
5484 L:      Dell.Client.Kernel@dell.com
5485 L:      platform-driver-x86@vger.kernel.org
5486 S:      Maintained
5487 F:      drivers/platform/x86/dell/dell-wmi-privacy.c
5488
5489 DELTA ST MEDIA DRIVER
5490 M:      Hugues Fruchet <hugues.fruchet@foss.st.com>
5491 L:      linux-media@vger.kernel.org
5492 S:      Supported
5493 W:      https://linuxtv.org
5494 T:      git git://linuxtv.org/media_tree.git
5495 F:      drivers/media/platform/st/sti/delta
5496
5497 DELTA AHE-50DC FAN CONTROL MODULE DRIVER
5498 M:      Zev Weiss <zev@bewilderbeest.net>
5499 L:      linux-hwmon@vger.kernel.org
5500 S:      Maintained
5501 F:      drivers/hwmon/pmbus/delta-ahe50dc-fan.c
5502
5503 DELTA DPS920AB PSU DRIVER
5504 M:      Robert Marko <robert.marko@sartura.hr>
5505 L:      linux-hwmon@vger.kernel.org
5506 S:      Maintained
5507 F:      Documentation/hwmon/dps920ab.rst
5508 F:      drivers/hwmon/pmbus/dps920ab.c
5509
5510 DENALI NAND DRIVER
5511 L:      linux-mtd@lists.infradead.org
5512 S:      Orphan
5513 F:      drivers/mtd/nand/raw/denali*
5514
5515 DESIGNWARE EDMA CORE IP DRIVER
5516 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
5517 L:      dmaengine@vger.kernel.org
5518 S:      Maintained
5519 F:      drivers/dma/dw-edma/
5520 F:      include/linux/dma/edma.h
5521
5522 DESIGNWARE XDATA IP DRIVER
5523 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
5524 L:      linux-pci@vger.kernel.org
5525 S:      Maintained
5526 F:      Documentation/misc-devices/dw-xdata-pcie.rst
5527 F:      drivers/misc/dw-xdata-pcie.c
5528
5529 DESIGNWARE USB2 DRD IP DRIVER
5530 M:      Minas Harutyunyan <hminas@synopsys.com>
5531 L:      linux-usb@vger.kernel.org
5532 S:      Maintained
5533 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
5534 F:      drivers/usb/dwc2/
5535
5536 DESIGNWARE USB3 DRD IP DRIVER
5537 M:      Felipe Balbi <balbi@kernel.org>
5538 L:      linux-usb@vger.kernel.org
5539 S:      Maintained
5540 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
5541 F:      drivers/usb/dwc3/
5542
5543 DEVANTECH SRF ULTRASONIC RANGER IIO DRIVER
5544 M:      Andreas Klinger <ak@it-klinger.de>
5545 L:      linux-iio@vger.kernel.org
5546 S:      Maintained
5547 F:      Documentation/ABI/testing/sysfs-bus-iio-distance-srf08
5548 F:      drivers/iio/proximity/srf*.c
5549
5550 DEVICE COREDUMP (DEV_COREDUMP)
5551 M:      Johannes Berg <johannes@sipsolutions.net>
5552 L:      linux-kernel@vger.kernel.org
5553 S:      Maintained
5554 F:      drivers/base/devcoredump.c
5555 F:      include/linux/devcoredump.h
5556
5557 DEVICE DEPENDENCY HELPER SCRIPT
5558 M:      Saravana Kannan <saravanak@google.com>
5559 L:      linux-kernel@vger.kernel.org
5560 S:      Maintained
5561 F:      scripts/dev-needs.sh
5562
5563 DEVICE DIRECT ACCESS (DAX)
5564 M:      Dan Williams <dan.j.williams@intel.com>
5565 M:      Vishal Verma <vishal.l.verma@intel.com>
5566 M:      Dave Jiang <dave.jiang@intel.com>
5567 L:      nvdimm@lists.linux.dev
5568 S:      Supported
5569 F:      drivers/dax/
5570
5571 DEVICE FREQUENCY (DEVFREQ)
5572 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
5573 M:      Kyungmin Park <kyungmin.park@samsung.com>
5574 M:      Chanwoo Choi <cw00.choi@samsung.com>
5575 L:      linux-pm@vger.kernel.org
5576 S:      Maintained
5577 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
5578 F:      Documentation/devicetree/bindings/devfreq/
5579 F:      drivers/devfreq/
5580 F:      include/linux/devfreq.h
5581 F:      include/trace/events/devfreq.h
5582
5583 DEVICE FREQUENCY EVENT (DEVFREQ-EVENT)
5584 M:      Chanwoo Choi <cw00.choi@samsung.com>
5585 L:      linux-pm@vger.kernel.org
5586 S:      Supported
5587 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
5588 F:      Documentation/devicetree/bindings/devfreq/event/
5589 F:      drivers/devfreq/devfreq-event.c
5590 F:      drivers/devfreq/event/
5591 F:      include/dt-bindings/pmu/exynos_ppmu.h
5592 F:      include/linux/devfreq-event.h
5593
5594 DEVICE NUMBER REGISTRY
5595 M:      Torben Mathiasen <device@lanana.org>
5596 S:      Maintained
5597 W:      http://lanana.org/docs/device-list/index.html
5598
5599 DEVICE RESOURCE MANAGEMENT HELPERS
5600 M:      Hans de Goede <hdegoede@redhat.com>
5601 R:      Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
5602 S:      Maintained
5603 F:      include/linux/devm-helpers.h
5604
5605 DEVICE-MAPPER  (LVM)
5606 M:      Alasdair Kergon <agk@redhat.com>
5607 M:      Mike Snitzer <snitzer@redhat.com>
5608 M:      dm-devel@redhat.com
5609 L:      dm-devel@redhat.com
5610 S:      Maintained
5611 W:      http://sources.redhat.com/dm
5612 Q:      http://patchwork.kernel.org/project/dm-devel/list/
5613 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git
5614 T:      quilt http://people.redhat.com/agk/patches/linux/editing/
5615 F:      Documentation/admin-guide/device-mapper/
5616 F:      drivers/md/Kconfig
5617 F:      drivers/md/Makefile
5618 F:      drivers/md/dm*
5619 F:      drivers/md/persistent-data/
5620 F:      include/linux/device-mapper.h
5621 F:      include/linux/dm-*.h
5622 F:      include/uapi/linux/dm-*.h
5623
5624 DEVLINK
5625 M:      Jiri Pirko <jiri@nvidia.com>
5626 L:      netdev@vger.kernel.org
5627 S:      Supported
5628 F:      Documentation/networking/devlink
5629 F:      include/net/devlink.h
5630 F:      include/uapi/linux/devlink.h
5631 F:      net/core/devlink.c
5632
5633 DH ELECTRONICS IMX6 DHCOM BOARD SUPPORT
5634 M:      Christoph Niedermaier <cniedermaier@dh-electronics.com>
5635 L:      kernel@dh-electronics.com
5636 S:      Maintained
5637 F:      arch/arm/boot/dts/imx6*-dhcom-*
5638
5639 DH ELECTRONICS STM32MP1 DHCOM/DHCOR BOARD SUPPORT
5640 M:      Marek Vasut <marex@denx.de>
5641 L:      kernel@dh-electronics.com
5642 S:      Maintained
5643 F:      arch/arm/boot/dts/stm32mp1*-dhcom-*
5644 F:      arch/arm/boot/dts/stm32mp1*-dhcor-*
5645
5646 DIALOG SEMICONDUCTOR DRIVERS
5647 M:      Support Opensource <support.opensource@diasemi.com>
5648 S:      Supported
5649 W:      http://www.dialog-semiconductor.com/products
5650 F:      Documentation/devicetree/bindings/input/da90??-onkey.txt
5651 F:      Documentation/devicetree/bindings/input/dlg,da72??.txt
5652 F:      Documentation/devicetree/bindings/mfd/da90*.txt
5653 F:      Documentation/devicetree/bindings/regulator/dlg,da9*.yaml
5654 F:      Documentation/devicetree/bindings/regulator/da92*.txt
5655 F:      Documentation/devicetree/bindings/regulator/slg51000.txt
5656 F:      Documentation/devicetree/bindings/sound/da[79]*.txt
5657 F:      Documentation/devicetree/bindings/thermal/da90??-thermal.txt
5658 F:      Documentation/devicetree/bindings/watchdog/da90??-wdt.txt
5659 F:      Documentation/hwmon/da90??.rst
5660 F:      drivers/gpio/gpio-da90??.c
5661 F:      drivers/hwmon/da90??-hwmon.c
5662 F:      drivers/iio/adc/da91??-*.c
5663 F:      drivers/input/misc/da72??.[ch]
5664 F:      drivers/input/misc/da90??_onkey.c
5665 F:      drivers/input/touchscreen/da9052_tsi.c
5666 F:      drivers/leds/leds-da90??.c
5667 F:      drivers/mfd/da903x.c
5668 F:      drivers/mfd/da90??-*.c
5669 F:      drivers/mfd/da91??-*.c
5670 F:      drivers/pinctrl/pinctrl-da90??.c
5671 F:      drivers/power/supply/da9052-battery.c
5672 F:      drivers/power/supply/da91??-*.c
5673 F:      drivers/regulator/da9???-regulator.[ch]
5674 F:      drivers/regulator/slg51000-regulator.[ch]
5675 F:      drivers/rtc/rtc-da90??.c
5676 F:      drivers/thermal/da90??-thermal.c
5677 F:      drivers/video/backlight/da90??_bl.c
5678 F:      drivers/watchdog/da90??_wdt.c
5679 F:      include/dt-bindings/regulator/dlg,da9*-regulator.h
5680 F:      include/linux/mfd/da903x.h
5681 F:      include/linux/mfd/da9052/
5682 F:      include/linux/mfd/da9055/
5683 F:      include/linux/mfd/da9062/
5684 F:      include/linux/mfd/da9063/
5685 F:      include/linux/mfd/da9150/
5686 F:      include/linux/regulator/da9211.h
5687 F:      include/sound/da[79]*.h
5688 F:      sound/soc/codecs/da[79]*.[ch]
5689
5690 DIAMOND SYSTEMS GPIO-MM GPIO DRIVER
5691 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
5692 L:      linux-gpio@vger.kernel.org
5693 S:      Maintained
5694 F:      drivers/gpio/gpio-gpio-mm.c
5695
5696 DIOLAN U2C-12 I2C DRIVER
5697 M:      Guenter Roeck <linux@roeck-us.net>
5698 L:      linux-i2c@vger.kernel.org
5699 S:      Maintained
5700 F:      drivers/i2c/busses/i2c-diolan-u2c.c
5701
5702 DIRECTORY NOTIFICATION (DNOTIFY)
5703 M:      Jan Kara <jack@suse.cz>
5704 R:      Amir Goldstein <amir73il@gmail.com>
5705 L:      linux-fsdevel@vger.kernel.org
5706 S:      Maintained
5707 F:      Documentation/filesystems/dnotify.rst
5708 F:      fs/notify/dnotify/
5709 F:      include/linux/dnotify.h
5710
5711 DISK GEOMETRY AND PARTITION HANDLING
5712 M:      Andries Brouwer <aeb@cwi.nl>
5713 S:      Maintained
5714 W:      http://www.win.tue.nl/~aeb/linux/Large-Disk.html
5715 W:      http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
5716 W:      http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
5717
5718 DISKQUOTA
5719 M:      Jan Kara <jack@suse.com>
5720 S:      Maintained
5721 F:      Documentation/filesystems/quota.rst
5722 F:      fs/quota/
5723 F:      include/linux/quota*.h
5724 F:      include/uapi/linux/quota*.h
5725
5726 DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
5727 M:      Bernie Thompson <bernie@plugable.com>
5728 L:      linux-fbdev@vger.kernel.org
5729 S:      Maintained
5730 W:      http://plugable.com/category/projects/udlfb/
5731 F:      Documentation/fb/udlfb.rst
5732 F:      drivers/video/fbdev/udlfb.c
5733 F:      include/video/udlfb.h
5734
5735 DISTRIBUTED LOCK MANAGER (DLM)
5736 M:      Christine Caulfield <ccaulfie@redhat.com>
5737 M:      David Teigland <teigland@redhat.com>
5738 L:      cluster-devel@redhat.com
5739 S:      Supported
5740 W:      http://sources.redhat.com/cluster/
5741 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/linux-dlm.git
5742 F:      fs/dlm/
5743
5744 DMA BUFFER SHARING FRAMEWORK
5745 M:      Sumit Semwal <sumit.semwal@linaro.org>
5746 M:      Christian König <christian.koenig@amd.com>
5747 L:      linux-media@vger.kernel.org
5748 L:      dri-devel@lists.freedesktop.org
5749 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
5750 S:      Maintained
5751 T:      git git://anongit.freedesktop.org/drm/drm-misc
5752 F:      Documentation/driver-api/dma-buf.rst
5753 F:      drivers/dma-buf/
5754 F:      include/linux/*fence.h
5755 F:      include/linux/dma-buf*
5756 F:      include/linux/dma-resv.h
5757 K:      \bdma_(?:buf|fence|resv)\b
5758
5759 DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
5760 M:      Vinod Koul <vkoul@kernel.org>
5761 L:      dmaengine@vger.kernel.org
5762 S:      Maintained
5763 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
5764 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vkoul/dmaengine.git
5765 F:      Documentation/devicetree/bindings/dma/
5766 F:      Documentation/driver-api/dmaengine/
5767 F:      drivers/dma/
5768 F:      include/linux/dma/
5769 F:      include/linux/dmaengine.h
5770 F:      include/linux/of_dma.h
5771
5772 DMA MAPPING HELPERS
5773 M:      Christoph Hellwig <hch@lst.de>
5774 M:      Marek Szyprowski <m.szyprowski@samsung.com>
5775 R:      Robin Murphy <robin.murphy@arm.com>
5776 L:      iommu@lists.linux-foundation.org
5777 S:      Supported
5778 W:      http://git.infradead.org/users/hch/dma-mapping.git
5779 T:      git git://git.infradead.org/users/hch/dma-mapping.git
5780 F:      include/asm-generic/dma-mapping.h
5781 F:      include/linux/dma-direct.h
5782 F:      include/linux/dma-mapping.h
5783 F:      include/linux/dma-map-ops.h
5784 F:      kernel/dma/
5785
5786 DMA MAPPING BENCHMARK
5787 M:      Barry Song <song.bao.hua@hisilicon.com>
5788 L:      iommu@lists.linux-foundation.org
5789 F:      kernel/dma/map_benchmark.c
5790 F:      tools/testing/selftests/dma/
5791
5792 DMA-BUF HEAPS FRAMEWORK
5793 M:      Sumit Semwal <sumit.semwal@linaro.org>
5794 R:      Benjamin Gaignard <benjamin.gaignard@collabora.com>
5795 R:      Liam Mark <lmark@codeaurora.org>
5796 R:      Laura Abbott <labbott@redhat.com>
5797 R:      Brian Starkey <Brian.Starkey@arm.com>
5798 R:      John Stultz <john.stultz@linaro.org>
5799 L:      linux-media@vger.kernel.org
5800 L:      dri-devel@lists.freedesktop.org
5801 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
5802 S:      Maintained
5803 T:      git git://anongit.freedesktop.org/drm/drm-misc
5804 F:      drivers/dma-buf/dma-heap.c
5805 F:      drivers/dma-buf/heaps/*
5806 F:      include/linux/dma-heap.h
5807 F:      include/uapi/linux/dma-heap.h
5808
5809 DMC FREQUENCY DRIVER FOR SAMSUNG EXYNOS5422
5810 M:      Lukasz Luba <lukasz.luba@arm.com>
5811 L:      linux-pm@vger.kernel.org
5812 L:      linux-samsung-soc@vger.kernel.org
5813 S:      Maintained
5814 F:      Documentation/devicetree/bindings/memory-controllers/samsung,exynos5422-dmc.yaml
5815 F:      drivers/memory/samsung/exynos5422-dmc.c
5816
5817 DME1737 HARDWARE MONITOR DRIVER
5818 M:      Juerg Haefliger <juergh@gmail.com>
5819 L:      linux-hwmon@vger.kernel.org
5820 S:      Maintained
5821 F:      Documentation/hwmon/dme1737.rst
5822 F:      drivers/hwmon/dme1737.c
5823
5824 DMI/SMBIOS SUPPORT
5825 M:      Jean Delvare <jdelvare@suse.com>
5826 S:      Maintained
5827 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jdelvare/staging.git dmi-for-next
5828 F:      Documentation/ABI/testing/sysfs-firmware-dmi-tables
5829 F:      drivers/firmware/dmi-id.c
5830 F:      drivers/firmware/dmi_scan.c
5831 F:      include/linux/dmi.h
5832
5833 DOCUMENTATION
5834 M:      Jonathan Corbet <corbet@lwn.net>
5835 L:      linux-doc@vger.kernel.org
5836 S:      Maintained
5837 P:      Documentation/doc-guide/maintainer-profile.rst
5838 T:      git git://git.lwn.net/linux.git docs-next
5839 F:      Documentation/
5840 F:      scripts/documentation-file-ref-check
5841 F:      scripts/kernel-doc
5842 F:      scripts/sphinx-pre-install
5843 X:      Documentation/ABI/
5844 X:      Documentation/admin-guide/media/
5845 X:      Documentation/devicetree/
5846 X:      Documentation/driver-api/media/
5847 X:      Documentation/firmware-guide/acpi/
5848 X:      Documentation/i2c/
5849 X:      Documentation/power/
5850 X:      Documentation/spi/
5851 X:      Documentation/userspace-api/media/
5852
5853 DOCUMENTATION REPORTING ISSUES
5854 M:      Thorsten Leemhuis <linux@leemhuis.info>
5855 L:      linux-doc@vger.kernel.org
5856 S:      Maintained
5857 F:      Documentation/admin-guide/reporting-issues.rst
5858
5859 DOCUMENTATION SCRIPTS
5860 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
5861 L:      linux-doc@vger.kernel.org
5862 S:      Maintained
5863 F:      Documentation/sphinx/parse-headers.pl
5864 F:      scripts/documentation-file-ref-check
5865 F:      scripts/sphinx-pre-install
5866
5867 DOCUMENTATION/ITALIAN
5868 M:      Federico Vaga <federico.vaga@vaga.pv.it>
5869 L:      linux-doc@vger.kernel.org
5870 S:      Maintained
5871 F:      Documentation/translations/it_IT
5872
5873 DONGWOON DW9714 LENS VOICE COIL DRIVER
5874 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
5875 L:      linux-media@vger.kernel.org
5876 S:      Maintained
5877 T:      git git://linuxtv.org/media_tree.git
5878 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9714.txt
5879 F:      drivers/media/i2c/dw9714.c
5880
5881 DONGWOON DW9768 LENS VOICE COIL DRIVER
5882 M:      Dongchun Zhu <dongchun.zhu@mediatek.com>
5883 L:      linux-media@vger.kernel.org
5884 S:      Maintained
5885 T:      git git://linuxtv.org/media_tree.git
5886 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9768.yaml
5887 F:      drivers/media/i2c/dw9768.c
5888
5889 DONGWOON DW9807 LENS VOICE COIL DRIVER
5890 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
5891 L:      linux-media@vger.kernel.org
5892 S:      Maintained
5893 T:      git git://linuxtv.org/media_tree.git
5894 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9807-vcm.txt
5895 F:      drivers/media/i2c/dw9807-vcm.c
5896
5897 DOUBLETALK DRIVER
5898 M:      "James R. Van Zandt" <jrv@vanzandt.mv.com>
5899 L:      blinux-list@redhat.com
5900 S:      Maintained
5901 F:      drivers/char/dtlk.c
5902 F:      include/linux/dtlk.h
5903
5904 DPAA2 DATAPATH I/O (DPIO) DRIVER
5905 M:      Roy Pledge <Roy.Pledge@nxp.com>
5906 L:      linux-kernel@vger.kernel.org
5907 S:      Maintained
5908 F:      drivers/soc/fsl/dpio
5909
5910 DPAA2 ETHERNET DRIVER
5911 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
5912 L:      netdev@vger.kernel.org
5913 S:      Maintained
5914 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/ethernet-driver.rst
5915 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/mac-phy-support.rst
5916 F:      drivers/net/ethernet/freescale/dpaa2/Kconfig
5917 F:      drivers/net/ethernet/freescale/dpaa2/Makefile
5918 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-eth*
5919 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-mac*
5920 F:      drivers/net/ethernet/freescale/dpaa2/dpkg.h
5921 F:      drivers/net/ethernet/freescale/dpaa2/dpmac*
5922 F:      drivers/net/ethernet/freescale/dpaa2/dpni*
5923
5924 DPAA2 ETHERNET SWITCH DRIVER
5925 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
5926 L:      netdev@vger.kernel.org
5927 S:      Maintained
5928 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/switch-driver.rst
5929 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-switch*
5930 F:      drivers/net/ethernet/freescale/dpaa2/dpsw*
5931
5932 DPT_I2O SCSI RAID DRIVER
5933 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
5934 L:      linux-scsi@vger.kernel.org
5935 S:      Maintained
5936 W:      http://www.adaptec.com/
5937 F:      drivers/scsi/dpt*
5938 F:      drivers/scsi/dpt/
5939
5940 DRBD DRIVER
5941 M:      Philipp Reisner <philipp.reisner@linbit.com>
5942 M:      Lars Ellenberg <lars.ellenberg@linbit.com>
5943 L:      drbd-dev@lists.linbit.com
5944 S:      Supported
5945 W:      http://www.drbd.org
5946 T:      git git://git.linbit.com/linux-drbd.git
5947 T:      git git://git.linbit.com/drbd-8.4.git
5948 F:      Documentation/admin-guide/blockdev/
5949 F:      drivers/block/drbd/
5950 F:      lib/lru_cache.c
5951
5952 DRIVER COMPONENT FRAMEWORK
5953 L:      dri-devel@lists.freedesktop.org
5954 F:      drivers/base/component.c
5955 F:      include/linux/component.h
5956
5957 DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS
5958 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
5959 R:      "Rafael J. Wysocki" <rafael@kernel.org>
5960 S:      Supported
5961 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
5962 F:      Documentation/core-api/kobject.rst
5963 F:      drivers/base/
5964 F:      fs/debugfs/
5965 F:      fs/sysfs/
5966 F:      include/linux/debugfs.h
5967 F:      include/linux/kobj*
5968 F:      lib/kobj*
5969
5970 DRIVERS FOR OMAP ADAPTIVE VOLTAGE SCALING (AVS)
5971 M:      Nishanth Menon <nm@ti.com>
5972 L:      linux-pm@vger.kernel.org
5973 S:      Maintained
5974 F:      drivers/soc/ti/smartreflex.c
5975 F:      include/linux/power/smartreflex.h
5976
5977 DRM DRIVER FOR ALLWINNER DE2 AND DE3 ENGINE
5978 M:      Maxime Ripard <mripard@kernel.org>
5979 M:      Chen-Yu Tsai <wens@csie.org>
5980 R:      Jernej Skrabec <jernej.skrabec@gmail.com>
5981 L:      dri-devel@lists.freedesktop.org
5982 S:      Supported
5983 T:      git git://anongit.freedesktop.org/drm/drm-misc
5984 F:      drivers/gpu/drm/sun4i/sun8i*
5985
5986 DRM DRIVER FOR ARM PL111 CLCD
5987 M:      Emma Anholt <emma@anholt.net>
5988 S:      Supported
5989 T:      git git://anongit.freedesktop.org/drm/drm-misc
5990 F:      drivers/gpu/drm/pl111/
5991
5992 DRM DRIVER FOR ARM VERSATILE TFT PANELS
5993 M:      Linus Walleij <linus.walleij@linaro.org>
5994 S:      Maintained
5995 T:      git git://anongit.freedesktop.org/drm/drm-misc
5996 F:      Documentation/devicetree/bindings/display/panel/arm,versatile-tft-panel.yaml
5997 F:      drivers/gpu/drm/panel/panel-arm-versatile.c
5998
5999 DRM DRIVER FOR ASPEED BMC GFX
6000 M:      Joel Stanley <joel@jms.id.au>
6001 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
6002 S:      Supported
6003 T:      git git://anongit.freedesktop.org/drm/drm-misc
6004 F:      Documentation/devicetree/bindings/gpu/aspeed-gfx.txt
6005 F:      drivers/gpu/drm/aspeed/
6006
6007 DRM DRIVER FOR AST SERVER GRAPHICS CHIPS
6008 M:      Dave Airlie <airlied@redhat.com>
6009 R:      Thomas Zimmermann <tzimmermann@suse.de>
6010 L:      dri-devel@lists.freedesktop.org
6011 S:      Supported
6012 T:      git git://anongit.freedesktop.org/drm/drm-misc
6013 F:      drivers/gpu/drm/ast/
6014
6015 DRM DRIVER FOR BOCHS VIRTUAL GPU
6016 M:      Gerd Hoffmann <kraxel@redhat.com>
6017 L:      virtualization@lists.linux-foundation.org
6018 S:      Maintained
6019 T:      git git://anongit.freedesktop.org/drm/drm-misc
6020 F:      drivers/gpu/drm/tiny/bochs.c
6021
6022 DRM DRIVER FOR BOE HIMAX8279D PANELS
6023 M:      Jerry Han <hanxu5@huaqin.corp-partner.google.com>
6024 S:      Maintained
6025 F:      Documentation/devicetree/bindings/display/panel/boe,himax8279d.yaml
6026 F:      drivers/gpu/drm/panel/panel-boe-himax8279d.c
6027
6028 DRM DRIVER FOR CHIPONE ICN6211 MIPI-DSI to RGB CONVERTER BRIDGE
6029 M:      Jagan Teki <jagan@amarulasolutions.com>
6030 S:      Maintained
6031 F:      Documentation/devicetree/bindings/display/bridge/chipone,icn6211.yaml
6032 F:      drivers/gpu/drm/bridge/chipone-icn6211.c
6033
6034 DRM DRIVER FOR FARADAY TVE200 TV ENCODER
6035 M:      Linus Walleij <linus.walleij@linaro.org>
6036 S:      Maintained
6037 T:      git git://anongit.freedesktop.org/drm/drm-misc
6038 F:      drivers/gpu/drm/tve200/
6039
6040 DRM DRIVER FOR FEIXIN K101 IM2BA02 MIPI-DSI LCD PANELS
6041 M:      Icenowy Zheng <icenowy@aosc.io>
6042 S:      Maintained
6043 F:      Documentation/devicetree/bindings/display/panel/feixin,k101-im2ba02.yaml
6044 F:      drivers/gpu/drm/panel/panel-feixin-k101-im2ba02.c
6045
6046 DRM DRIVER FOR FEIYANG FY07024DI26A30-D MIPI-DSI LCD PANELS
6047 M:      Jagan Teki <jagan@amarulasolutions.com>
6048 S:      Maintained
6049 F:      Documentation/devicetree/bindings/display/panel/feiyang,fy07024di26a30d.yaml
6050 F:      drivers/gpu/drm/panel/panel-feiyang-fy07024di26a30d.c
6051
6052 DRM DRIVER FOR GENERIC USB DISPLAY
6053 M:      Noralf Trønnes <noralf@tronnes.org>
6054 S:      Maintained
6055 W:      https://github.com/notro/gud/wiki
6056 T:      git git://anongit.freedesktop.org/drm/drm-misc
6057 F:      drivers/gpu/drm/gud/
6058 F:      include/drm/gud.h
6059
6060 DRM DRIVER FOR GRAIN MEDIA GM12U320 PROJECTORS
6061 M:      Hans de Goede <hdegoede@redhat.com>
6062 S:      Maintained
6063 T:      git git://anongit.freedesktop.org/drm/drm-misc
6064 F:      drivers/gpu/drm/tiny/gm12u320.c
6065
6066 DRM DRIVER FOR HX8357D PANELS
6067 M:      Emma Anholt <emma@anholt.net>
6068 S:      Maintained
6069 T:      git git://anongit.freedesktop.org/drm/drm-misc
6070 F:      Documentation/devicetree/bindings/display/himax,hx8357d.txt
6071 F:      drivers/gpu/drm/tiny/hx8357d.c
6072
6073 DRM DRIVER FOR ILITEK ILI9225 PANELS
6074 M:      David Lechner <david@lechnology.com>
6075 S:      Maintained
6076 T:      git git://anongit.freedesktop.org/drm/drm-misc
6077 F:      Documentation/devicetree/bindings/display/ilitek,ili9225.txt
6078 F:      drivers/gpu/drm/tiny/ili9225.c
6079
6080 DRM DRIVER FOR ILITEK ILI9486 PANELS
6081 M:      Kamlesh Gurudasani <kamlesh.gurudasani@gmail.com>
6082 S:      Maintained
6083 T:      git git://anongit.freedesktop.org/drm/drm-misc
6084 F:      Documentation/devicetree/bindings/display/ilitek,ili9486.yaml
6085 F:      drivers/gpu/drm/tiny/ili9486.c
6086
6087 DRM DRIVER FOR INTEL I810 VIDEO CARDS
6088 S:      Orphan / Obsolete
6089 F:      drivers/gpu/drm/i810/
6090 F:      include/uapi/drm/i810_drm.h
6091
6092 DRM DRIVER FOR LVDS PANELS
6093 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6094 L:      dri-devel@lists.freedesktop.org
6095 T:      git git://anongit.freedesktop.org/drm/drm-misc
6096 S:      Maintained
6097 F:      drivers/gpu/drm/panel/panel-lvds.c
6098 F:      Documentation/devicetree/bindings/display/panel/lvds.yaml
6099
6100 DRM DRIVER FOR MANTIX MLAF057WE51 PANELS
6101 M:      Guido Günther <agx@sigxcpu.org>
6102 R:      Purism Kernel Team <kernel@puri.sm>
6103 S:      Maintained
6104 F:      Documentation/devicetree/bindings/display/panel/mantix,mlaf057we51-x.yaml
6105 F:      drivers/gpu/drm/panel/panel-mantix-mlaf057we51.c
6106
6107 DRM DRIVER FOR MATROX G200/G400 GRAPHICS CARDS
6108 S:      Orphan / Obsolete
6109 F:      drivers/gpu/drm/mga/
6110 F:      include/uapi/drm/mga_drm.h
6111
6112 DRM DRIVER FOR MGA G200 GRAPHICS CHIPS
6113 M:      Dave Airlie <airlied@redhat.com>
6114 R:      Thomas Zimmermann <tzimmermann@suse.de>
6115 L:      dri-devel@lists.freedesktop.org
6116 S:      Supported
6117 T:      git git://anongit.freedesktop.org/drm/drm-misc
6118 F:      drivers/gpu/drm/mgag200/
6119
6120 DRM DRIVER FOR MI0283QT
6121 M:      Noralf Trønnes <noralf@tronnes.org>
6122 S:      Maintained
6123 T:      git git://anongit.freedesktop.org/drm/drm-misc
6124 F:      Documentation/devicetree/bindings/display/multi-inno,mi0283qt.txt
6125 F:      drivers/gpu/drm/tiny/mi0283qt.c
6126
6127 DRM DRIVER FOR MSM ADRENO GPU
6128 M:      Rob Clark <robdclark@gmail.com>
6129 M:      Sean Paul <sean@poorly.run>
6130 R:      Abhinav Kumar <quic_abhinavk@quicinc.com>
6131 L:      linux-arm-msm@vger.kernel.org
6132 L:      dri-devel@lists.freedesktop.org
6133 L:      freedreno@lists.freedesktop.org
6134 S:      Maintained
6135 T:      git https://gitlab.freedesktop.org/drm/msm.git
6136 F:      Documentation/devicetree/bindings/display/msm/
6137 F:      drivers/gpu/drm/msm/
6138 F:      include/uapi/drm/msm_drm.h
6139
6140 DRM DRIVER FOR NOVATEK NT35510 PANELS
6141 M:      Linus Walleij <linus.walleij@linaro.org>
6142 S:      Maintained
6143 T:      git git://anongit.freedesktop.org/drm/drm-misc
6144 F:      Documentation/devicetree/bindings/display/panel/novatek,nt35510.yaml
6145 F:      drivers/gpu/drm/panel/panel-novatek-nt35510.c
6146
6147 DRM DRIVER FOR NOVATEK NT36672A PANELS
6148 M:      Sumit Semwal <sumit.semwal@linaro.org>
6149 S:      Maintained
6150 T:      git git://anongit.freedesktop.org/drm/drm-misc
6151 F:      Documentation/devicetree/bindings/display/panel/novatek,nt36672a.yaml
6152 F:      drivers/gpu/drm/panel/panel-novatek-nt36672a.c
6153
6154 DRM DRIVER FOR NVIDIA GEFORCE/QUADRO GPUS
6155 M:      Ben Skeggs <bskeggs@redhat.com>
6156 M:      Karol Herbst <kherbst@redhat.com>
6157 M:      Lyude Paul <lyude@redhat.com>
6158 L:      dri-devel@lists.freedesktop.org
6159 L:      nouveau@lists.freedesktop.org
6160 S:      Supported
6161 W:      https://nouveau.freedesktop.org/
6162 Q:      https://patchwork.freedesktop.org/project/nouveau/
6163 Q:      https://gitlab.freedesktop.org/drm/nouveau/-/merge_requests
6164 B:      https://gitlab.freedesktop.org/drm/nouveau/-/issues
6165 C:      irc://irc.oftc.net/nouveau
6166 T:      git https://gitlab.freedesktop.org/drm/nouveau.git
6167 F:      drivers/gpu/drm/nouveau/
6168 F:      include/uapi/drm/nouveau_drm.h
6169
6170 DRM DRIVER FOR OLIMEX LCD-OLINUXINO PANELS
6171 M:      Stefan Mavrodiev <stefan@olimex.com>
6172 S:      Maintained
6173 F:      Documentation/devicetree/bindings/display/panel/olimex,lcd-olinuxino.yaml
6174 F:      drivers/gpu/drm/panel/panel-olimex-lcd-olinuxino.c
6175
6176 DRM DRIVER FOR PERVASIVE DISPLAYS REPAPER PANELS
6177 M:      Noralf Trønnes <noralf@tronnes.org>
6178 S:      Maintained
6179 T:      git git://anongit.freedesktop.org/drm/drm-misc
6180 F:      Documentation/devicetree/bindings/display/repaper.txt
6181 F:      drivers/gpu/drm/tiny/repaper.c
6182
6183 DRM DRIVER FOR QEMU'S CIRRUS DEVICE
6184 M:      Dave Airlie <airlied@redhat.com>
6185 M:      Gerd Hoffmann <kraxel@redhat.com>
6186 L:      virtualization@lists.linux-foundation.org
6187 S:      Obsolete
6188 W:      https://www.kraxel.org/blog/2014/10/qemu-using-cirrus-considered-harmful/
6189 T:      git git://anongit.freedesktop.org/drm/drm-misc
6190 F:      drivers/gpu/drm/tiny/cirrus.c
6191
6192 DRM DRIVER FOR QXL VIRTUAL GPU
6193 M:      Dave Airlie <airlied@redhat.com>
6194 M:      Gerd Hoffmann <kraxel@redhat.com>
6195 L:      virtualization@lists.linux-foundation.org
6196 L:      spice-devel@lists.freedesktop.org
6197 S:      Maintained
6198 T:      git git://anongit.freedesktop.org/drm/drm-misc
6199 F:      drivers/gpu/drm/qxl/
6200 F:      include/uapi/drm/qxl_drm.h
6201
6202 DRM DRIVER FOR RAGE 128 VIDEO CARDS
6203 S:      Orphan / Obsolete
6204 F:      drivers/gpu/drm/r128/
6205 F:      include/uapi/drm/r128_drm.h
6206
6207 DRM DRIVER FOR RAYDIUM RM67191 PANELS
6208 M:      Robert Chiras <robert.chiras@nxp.com>
6209 S:      Maintained
6210 F:      Documentation/devicetree/bindings/display/panel/raydium,rm67191.yaml
6211 F:      drivers/gpu/drm/panel/panel-raydium-rm67191.c
6212
6213 DRM DRIVER FOR SAMSUNG DB7430 PANELS
6214 M:      Linus Walleij <linus.walleij@linaro.org>
6215 S:      Maintained
6216 T:      git git://anongit.freedesktop.org/drm/drm-misc
6217 F:      Documentation/devicetree/bindings/display/panel/samsung,lms397kf04.yaml
6218 F:      drivers/gpu/drm/panel/panel-samsung-db7430.c
6219
6220 DRM DRIVER FOR SAMSUNG S6D27A1 PANELS
6221 M:      Markuss Broks <markuss.broks@gmail.com>
6222 S:      Maintained
6223 F:      Documentation/devicetree/bindings/display/panel/samsung,s6d27a1.yaml
6224 F:      drivers/gpu/drm/panel/panel-samsung-s6d27a1.c
6225
6226 DRM DRIVER FOR SITRONIX ST7703 PANELS
6227 M:      Guido Günther <agx@sigxcpu.org>
6228 R:      Purism Kernel Team <kernel@puri.sm>
6229 R:      Ondrej Jirman <megous@megous.com>
6230 S:      Maintained
6231 F:      Documentation/devicetree/bindings/display/panel/rocktech,jh057n00900.yaml
6232 F:      drivers/gpu/drm/panel/panel-sitronix-st7703.c
6233
6234 DRM DRIVER FOR SAVAGE VIDEO CARDS
6235 S:      Orphan / Obsolete
6236 F:      drivers/gpu/drm/savage/
6237 F:      include/uapi/drm/savage_drm.h
6238
6239 DRM DRIVER FOR SIMPLE FRAMEBUFFERS
6240 M:      Thomas Zimmermann <tzimmermann@suse.de>
6241 L:      dri-devel@lists.freedesktop.org
6242 S:      Maintained
6243 T:      git git://anongit.freedesktop.org/drm/drm-misc
6244 F:      drivers/gpu/drm/tiny/simpledrm.c
6245
6246 DRM DRIVER FOR SIS VIDEO CARDS
6247 S:      Orphan / Obsolete
6248 F:      drivers/gpu/drm/sis/
6249 F:      include/uapi/drm/sis_drm.h
6250
6251 DRM DRIVER FOR SITRONIX ST7586 PANELS
6252 M:      David Lechner <david@lechnology.com>
6253 S:      Maintained
6254 T:      git git://anongit.freedesktop.org/drm/drm-misc
6255 F:      Documentation/devicetree/bindings/display/sitronix,st7586.txt
6256 F:      drivers/gpu/drm/tiny/st7586.c
6257
6258 DRM DRIVER FOR SITRONIX ST7701 PANELS
6259 M:      Jagan Teki <jagan@amarulasolutions.com>
6260 S:      Maintained
6261 F:      Documentation/devicetree/bindings/display/panel/sitronix,st7701.yaml
6262 F:      drivers/gpu/drm/panel/panel-sitronix-st7701.c
6263
6264 DRM DRIVER FOR SITRONIX ST7735R PANELS
6265 M:      David Lechner <david@lechnology.com>
6266 S:      Maintained
6267 T:      git git://anongit.freedesktop.org/drm/drm-misc
6268 F:      Documentation/devicetree/bindings/display/sitronix,st7735r.yaml
6269 F:      drivers/gpu/drm/tiny/st7735r.c
6270
6271 DRM DRIVER FOR SONY ACX424AKP PANELS
6272 M:      Linus Walleij <linus.walleij@linaro.org>
6273 S:      Maintained
6274 T:      git git://anongit.freedesktop.org/drm/drm-misc
6275 F:      drivers/gpu/drm/panel/panel-sony-acx424akp.c
6276
6277 DRM DRIVER FOR ST-ERICSSON MCDE
6278 M:      Linus Walleij <linus.walleij@linaro.org>
6279 S:      Maintained
6280 T:      git git://anongit.freedesktop.org/drm/drm-misc
6281 F:      Documentation/devicetree/bindings/display/ste,mcde.yaml
6282 F:      drivers/gpu/drm/mcde/
6283
6284 DRM DRIVER FOR TDFX VIDEO CARDS
6285 S:      Orphan / Obsolete
6286 F:      drivers/gpu/drm/tdfx/
6287
6288 DRM DRIVER FOR TPO TPG110 PANELS
6289 M:      Linus Walleij <linus.walleij@linaro.org>
6290 S:      Maintained
6291 T:      git git://anongit.freedesktop.org/drm/drm-misc
6292 F:      Documentation/devicetree/bindings/display/panel/tpo,tpg110.yaml
6293 F:      drivers/gpu/drm/panel/panel-tpo-tpg110.c
6294
6295 DRM DRIVER FOR USB DISPLAYLINK VIDEO ADAPTERS
6296 M:      Dave Airlie <airlied@redhat.com>
6297 R:      Sean Paul <sean@poorly.run>
6298 R:      Thomas Zimmermann <tzimmermann@suse.de>
6299 L:      dri-devel@lists.freedesktop.org
6300 S:      Supported
6301 T:      git git://anongit.freedesktop.org/drm/drm-misc
6302 F:      drivers/gpu/drm/udl/
6303
6304 DRM DRIVER FOR VIRTUAL KERNEL MODESETTING (VKMS)
6305 M:      Rodrigo Siqueira <rodrigosiqueiramelo@gmail.com>
6306 M:      Melissa Wen <melissa.srw@gmail.com>
6307 R:      Haneen Mohammed <hamohammed.sa@gmail.com>
6308 R:      Daniel Vetter <daniel@ffwll.ch>
6309 L:      dri-devel@lists.freedesktop.org
6310 S:      Maintained
6311 T:      git git://anongit.freedesktop.org/drm/drm-misc
6312 F:      Documentation/gpu/vkms.rst
6313 F:      drivers/gpu/drm/vkms/
6314
6315 DRM DRIVER FOR VIRTUALBOX VIRTUAL GPU
6316 M:      Hans de Goede <hdegoede@redhat.com>
6317 L:      dri-devel@lists.freedesktop.org
6318 S:      Maintained
6319 T:      git git://anongit.freedesktop.org/drm/drm-misc
6320 F:      drivers/gpu/drm/vboxvideo/
6321
6322 DRM DRIVER FOR VMWARE VIRTUAL GPU
6323 M:      Zack Rusin <zackr@vmware.com>
6324 R:      VMware Graphics Reviewers <linux-graphics-maintainer@vmware.com>
6325 L:      dri-devel@lists.freedesktop.org
6326 S:      Supported
6327 T:      git git://anongit.freedesktop.org/drm/drm-misc
6328 F:      drivers/gpu/drm/vmwgfx/
6329 F:      include/uapi/drm/vmwgfx_drm.h
6330
6331 DRM DRIVER FOR WIDECHIPS WS2401 PANELS
6332 M:      Linus Walleij <linus.walleij@linaro.org>
6333 S:      Maintained
6334 T:      git git://anongit.freedesktop.org/drm/drm-misc
6335 F:      Documentation/devicetree/bindings/display/panel/samsung,lms380kf01.yaml
6336 F:      drivers/gpu/drm/panel/panel-widechips-ws2401.c
6337
6338 DRM DRIVERS
6339 M:      David Airlie <airlied@linux.ie>
6340 M:      Daniel Vetter <daniel@ffwll.ch>
6341 L:      dri-devel@lists.freedesktop.org
6342 S:      Maintained
6343 B:      https://gitlab.freedesktop.org/drm
6344 C:      irc://irc.oftc.net/dri-devel
6345 T:      git git://anongit.freedesktop.org/drm/drm
6346 F:      Documentation/devicetree/bindings/display/
6347 F:      Documentation/devicetree/bindings/gpu/
6348 F:      Documentation/gpu/
6349 F:      drivers/gpu/
6350 F:      include/drm/
6351 F:      include/linux/vga*
6352 F:      include/uapi/drm/
6353
6354 DRM DRIVERS AND MISC GPU PATCHES
6355 M:      Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
6356 M:      Maxime Ripard <mripard@kernel.org>
6357 M:      Thomas Zimmermann <tzimmermann@suse.de>
6358 S:      Maintained
6359 W:      https://01.org/linuxgraphics/gfx-docs/maintainer-tools/drm-misc.html
6360 T:      git git://anongit.freedesktop.org/drm/drm-misc
6361 F:      Documentation/gpu/
6362 F:      drivers/gpu/drm/*
6363 F:      drivers/gpu/vga/
6364 F:      include/drm/drm*
6365 F:      include/linux/vga*
6366 F:      include/uapi/drm/drm*
6367
6368 DRM DRIVERS FOR ALLWINNER A10
6369 M:      Maxime Ripard <mripard@kernel.org>
6370 M:      Chen-Yu Tsai <wens@csie.org>
6371 L:      dri-devel@lists.freedesktop.org
6372 S:      Supported
6373 T:      git git://anongit.freedesktop.org/drm/drm-misc
6374 F:      Documentation/devicetree/bindings/display/allwinner*
6375 F:      drivers/gpu/drm/sun4i/
6376
6377 DRM DRIVERS FOR AMLOGIC SOCS
6378 M:      Neil Armstrong <narmstrong@baylibre.com>
6379 L:      dri-devel@lists.freedesktop.org
6380 L:      linux-amlogic@lists.infradead.org
6381 S:      Supported
6382 W:      http://linux-meson.com/
6383 T:      git git://anongit.freedesktop.org/drm/drm-misc
6384 F:      Documentation/devicetree/bindings/display/amlogic,meson-dw-hdmi.yaml
6385 F:      Documentation/devicetree/bindings/display/amlogic,meson-vpu.yaml
6386 F:      Documentation/gpu/meson.rst
6387 F:      drivers/gpu/drm/meson/
6388
6389 DRM DRIVERS FOR ATMEL HLCDC
6390 M:      Sam Ravnborg <sam@ravnborg.org>
6391 M:      Boris Brezillon <bbrezillon@kernel.org>
6392 L:      dri-devel@lists.freedesktop.org
6393 S:      Supported
6394 T:      git git://anongit.freedesktop.org/drm/drm-misc
6395 F:      Documentation/devicetree/bindings/display/atmel/
6396 F:      drivers/gpu/drm/atmel-hlcdc/
6397
6398 DRM DRIVERS FOR BRIDGE CHIPS
6399 M:      Andrzej Hajda <andrzej.hajda@intel.com>
6400 M:      Neil Armstrong <narmstrong@baylibre.com>
6401 M:      Robert Foss <robert.foss@linaro.org>
6402 R:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
6403 R:      Jonas Karlman <jonas@kwiboo.se>
6404 R:      Jernej Skrabec <jernej.skrabec@gmail.com>
6405 S:      Maintained
6406 T:      git git://anongit.freedesktop.org/drm/drm-misc
6407 F:      drivers/gpu/drm/bridge/
6408
6409 DRM DRIVERS FOR EXYNOS
6410 M:      Inki Dae <inki.dae@samsung.com>
6411 M:      Joonyoung Shim <jy0922.shim@samsung.com>
6412 M:      Seung-Woo Kim <sw0312.kim@samsung.com>
6413 M:      Kyungmin Park <kyungmin.park@samsung.com>
6414 L:      dri-devel@lists.freedesktop.org
6415 S:      Supported
6416 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
6417 F:      Documentation/devicetree/bindings/display/exynos/
6418 F:      drivers/gpu/drm/exynos/
6419 F:      include/uapi/drm/exynos_drm.h
6420
6421 DRM DRIVERS FOR FREESCALE DCU
6422 M:      Stefan Agner <stefan@agner.ch>
6423 M:      Alison Wang <alison.wang@nxp.com>
6424 L:      dri-devel@lists.freedesktop.org
6425 S:      Supported
6426 T:      git git://anongit.freedesktop.org/drm/drm-misc
6427 F:      Documentation/devicetree/bindings/display/fsl,dcu.txt
6428 F:      Documentation/devicetree/bindings/display/fsl,tcon.txt
6429 F:      drivers/gpu/drm/fsl-dcu/
6430
6431 DRM DRIVERS FOR FREESCALE IMX
6432 M:      Philipp Zabel <p.zabel@pengutronix.de>
6433 L:      dri-devel@lists.freedesktop.org
6434 S:      Maintained
6435 F:      Documentation/devicetree/bindings/display/imx/
6436 F:      drivers/gpu/drm/imx/
6437 F:      drivers/gpu/ipu-v3/
6438
6439 DRM DRIVERS FOR GMA500 (Poulsbo, Moorestown and derivative chipsets)
6440 M:      Patrik Jakobsson <patrik.r.jakobsson@gmail.com>
6441 L:      dri-devel@lists.freedesktop.org
6442 S:      Maintained
6443 T:      git git://github.com/patjak/drm-gma500
6444 F:      drivers/gpu/drm/gma500/
6445
6446 DRM DRIVERS FOR HISILICON
6447 M:      Xinliang Liu <xinliang.liu@linaro.org>
6448 M:      Tian Tao  <tiantao6@hisilicon.com>
6449 R:      John Stultz <john.stultz@linaro.org>
6450 R:      Xinwei Kong <kong.kongxinwei@hisilicon.com>
6451 R:      Chen Feng <puck.chen@hisilicon.com>
6452 L:      dri-devel@lists.freedesktop.org
6453 S:      Maintained
6454 T:      git git://anongit.freedesktop.org/drm/drm-misc
6455 F:      Documentation/devicetree/bindings/display/hisilicon/
6456 F:      drivers/gpu/drm/hisilicon/
6457
6458 DRM DRIVER FOR HYPERV SYNTHETIC VIDEO DEVICE
6459 M:      Deepak Rawat <drawat.floss@gmail.com>
6460 L:      linux-hyperv@vger.kernel.org
6461 L:      dri-devel@lists.freedesktop.org
6462 S:      Maintained
6463 T:      git git://anongit.freedesktop.org/drm/drm-misc
6464 F:      drivers/gpu/drm/hyperv
6465
6466 DRM DRIVERS FOR LIMA
6467 M:      Qiang Yu <yuq825@gmail.com>
6468 L:      dri-devel@lists.freedesktop.org
6469 L:      lima@lists.freedesktop.org (moderated for non-subscribers)
6470 S:      Maintained
6471 T:      git git://anongit.freedesktop.org/drm/drm-misc
6472 F:      drivers/gpu/drm/lima/
6473 F:      include/uapi/drm/lima_drm.h
6474
6475 DRM DRIVERS FOR MEDIATEK
6476 M:      Chun-Kuang Hu <chunkuang.hu@kernel.org>
6477 M:      Philipp Zabel <p.zabel@pengutronix.de>
6478 L:      dri-devel@lists.freedesktop.org
6479 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
6480 S:      Supported
6481 F:      Documentation/devicetree/bindings/display/mediatek/
6482 F:      drivers/gpu/drm/mediatek/
6483 F:      drivers/phy/mediatek/phy-mtk-hdmi*
6484 F:      drivers/phy/mediatek/phy-mtk-mipi*
6485
6486 DRM DRIVERS FOR NVIDIA TEGRA
6487 M:      Thierry Reding <thierry.reding@gmail.com>
6488 L:      dri-devel@lists.freedesktop.org
6489 L:      linux-tegra@vger.kernel.org
6490 S:      Supported
6491 T:      git git://anongit.freedesktop.org/tegra/linux.git
6492 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
6493 F:      Documentation/devicetree/bindings/gpu/host1x/
6494 F:      drivers/gpu/drm/tegra/
6495 F:      drivers/gpu/host1x/
6496 F:      include/linux/host1x.h
6497 F:      include/uapi/drm/tegra_drm.h
6498
6499 DRM DRIVERS FOR RENESAS
6500 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6501 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
6502 L:      dri-devel@lists.freedesktop.org
6503 L:      linux-renesas-soc@vger.kernel.org
6504 S:      Supported
6505 T:      git git://linuxtv.org/pinchartl/media drm/du/next
6506 F:      Documentation/devicetree/bindings/display/bridge/renesas,dsi-csi2-tx.yaml
6507 F:      Documentation/devicetree/bindings/display/bridge/renesas,dw-hdmi.yaml
6508 F:      Documentation/devicetree/bindings/display/bridge/renesas,lvds.yaml
6509 F:      Documentation/devicetree/bindings/display/renesas,du.yaml
6510 F:      drivers/gpu/drm/rcar-du/
6511 F:      drivers/gpu/drm/shmobile/
6512 F:      include/linux/platform_data/shmob_drm.h
6513
6514 DRM DRIVERS FOR ROCKCHIP
6515 M:      Sandy Huang <hjc@rock-chips.com>
6516 M:      Heiko Stübner <heiko@sntech.de>
6517 L:      dri-devel@lists.freedesktop.org
6518 S:      Maintained
6519 T:      git git://anongit.freedesktop.org/drm/drm-misc
6520 F:      Documentation/devicetree/bindings/display/rockchip/
6521 F:      drivers/gpu/drm/rockchip/
6522
6523 DRM DRIVERS FOR STI
6524 M:      Alain Volmat <alain.volmat@foss.st.com>
6525 L:      dri-devel@lists.freedesktop.org
6526 S:      Maintained
6527 T:      git git://anongit.freedesktop.org/drm/drm-misc
6528 F:      Documentation/devicetree/bindings/display/st,stih4xx.txt
6529 F:      drivers/gpu/drm/sti
6530
6531 DRM DRIVERS FOR STM
6532 M:      Yannick Fertre <yannick.fertre@foss.st.com>
6533 M:      Raphael Gallais-Pou <raphael.gallais-pou@foss.st.com>
6534 M:      Philippe Cornu <philippe.cornu@foss.st.com>
6535 L:      dri-devel@lists.freedesktop.org
6536 S:      Maintained
6537 T:      git git://anongit.freedesktop.org/drm/drm-misc
6538 F:      Documentation/devicetree/bindings/display/st,stm32-ltdc.yaml
6539 F:      drivers/gpu/drm/stm
6540
6541 DRM DRIVERS FOR TI KEYSTONE
6542 M:      Jyri Sarha <jyri.sarha@iki.fi>
6543 M:      Tomi Valkeinen <tomba@kernel.org>
6544 L:      dri-devel@lists.freedesktop.org
6545 S:      Maintained
6546 T:      git git://anongit.freedesktop.org/drm/drm-misc
6547 F:      Documentation/devicetree/bindings/display/ti/ti,am65x-dss.yaml
6548 F:      Documentation/devicetree/bindings/display/ti/ti,j721e-dss.yaml
6549 F:      Documentation/devicetree/bindings/display/ti/ti,k2g-dss.yaml
6550 F:      drivers/gpu/drm/tidss/
6551
6552 DRM DRIVERS FOR TI LCDC
6553 M:      Jyri Sarha <jyri.sarha@iki.fi>
6554 R:      Tomi Valkeinen <tomba@kernel.org>
6555 L:      dri-devel@lists.freedesktop.org
6556 S:      Maintained
6557 F:      Documentation/devicetree/bindings/display/tilcdc/
6558 F:      drivers/gpu/drm/tilcdc/
6559
6560 DRM DRIVERS FOR TI OMAP
6561 M:      Tomi Valkeinen <tomba@kernel.org>
6562 L:      dri-devel@lists.freedesktop.org
6563 S:      Maintained
6564 F:      Documentation/devicetree/bindings/display/ti/
6565 F:      drivers/gpu/drm/omapdrm/
6566
6567 DRM DRIVERS FOR V3D
6568 M:      Emma Anholt <emma@anholt.net>
6569 S:      Supported
6570 T:      git git://anongit.freedesktop.org/drm/drm-misc
6571 F:      Documentation/devicetree/bindings/gpu/brcm,bcm-v3d.yaml
6572 F:      drivers/gpu/drm/v3d/
6573 F:      include/uapi/drm/v3d_drm.h
6574
6575 DRM DRIVERS FOR VC4
6576 M:      Emma Anholt <emma@anholt.net>
6577 M:      Maxime Ripard <mripard@kernel.org>
6578 S:      Supported
6579 T:      git git://github.com/anholt/linux
6580 T:      git git://anongit.freedesktop.org/drm/drm-misc
6581 F:      Documentation/devicetree/bindings/display/brcm,bcm2835-*.yaml
6582 F:      drivers/gpu/drm/vc4/
6583 F:      include/uapi/drm/vc4_drm.h
6584
6585 DRM DRIVERS FOR VIVANTE GPU IP
6586 M:      Lucas Stach <l.stach@pengutronix.de>
6587 R:      Russell King <linux+etnaviv@armlinux.org.uk>
6588 R:      Christian Gmeiner <christian.gmeiner@gmail.com>
6589 L:      etnaviv@lists.freedesktop.org (moderated for non-subscribers)
6590 L:      dri-devel@lists.freedesktop.org
6591 S:      Maintained
6592 F:      Documentation/devicetree/bindings/gpu/vivante,gc.yaml
6593 F:      drivers/gpu/drm/etnaviv/
6594 F:      include/uapi/drm/etnaviv_drm.h
6595
6596 DRM DRIVERS FOR XEN
6597 M:      Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
6598 L:      dri-devel@lists.freedesktop.org
6599 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
6600 S:      Supported
6601 T:      git git://anongit.freedesktop.org/drm/drm-misc
6602 F:      Documentation/gpu/xen-front.rst
6603 F:      drivers/gpu/drm/xen/
6604
6605 DRM DRIVERS FOR XILINX
6606 M:      Hyun Kwon <hyun.kwon@xilinx.com>
6607 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6608 L:      dri-devel@lists.freedesktop.org
6609 S:      Maintained
6610 T:      git git://anongit.freedesktop.org/drm/drm-misc
6611 F:      Documentation/devicetree/bindings/display/xlnx/
6612 F:      drivers/gpu/drm/xlnx/
6613
6614 DRM PANEL DRIVERS
6615 M:      Thierry Reding <thierry.reding@gmail.com>
6616 R:      Sam Ravnborg <sam@ravnborg.org>
6617 L:      dri-devel@lists.freedesktop.org
6618 S:      Maintained
6619 T:      git git://anongit.freedesktop.org/drm/drm-misc
6620 F:      Documentation/devicetree/bindings/display/panel/
6621 F:      drivers/gpu/drm/drm_panel.c
6622 F:      drivers/gpu/drm/panel/
6623 F:      include/drm/drm_panel.h
6624
6625 DRM PRIVACY-SCREEN CLASS
6626 M:      Hans de Goede <hdegoede@redhat.com>
6627 L:      dri-devel@lists.freedesktop.org
6628 S:      Maintained
6629 T:      git git://anongit.freedesktop.org/drm/drm-misc
6630 F:      drivers/gpu/drm/drm_privacy_screen*
6631 F:      include/drm/drm_privacy_screen*
6632
6633 DRM TTM SUBSYSTEM
6634 M:      Christian Koenig <christian.koenig@amd.com>
6635 M:      Huang Rui <ray.huang@amd.com>
6636 L:      dri-devel@lists.freedesktop.org
6637 S:      Maintained
6638 T:      git git://anongit.freedesktop.org/drm/drm-misc
6639 F:      drivers/gpu/drm/ttm/
6640 F:      include/drm/ttm/
6641
6642 DRM GPU SCHEDULER
6643 M:      Andrey Grodzovsky <andrey.grodzovsky@amd.com>
6644 L:      dri-devel@lists.freedesktop.org
6645 S:      Maintained
6646 T:      git git://anongit.freedesktop.org/drm/drm-misc
6647 F:      drivers/gpu/drm/scheduler/
6648 F:      include/drm/gpu_scheduler.h
6649
6650 DSBR100 USB FM RADIO DRIVER
6651 M:      Alexey Klimov <klimov.linux@gmail.com>
6652 L:      linux-media@vger.kernel.org
6653 S:      Maintained
6654 T:      git git://linuxtv.org/media_tree.git
6655 F:      drivers/media/radio/dsbr100.c
6656
6657 DT3155 MEDIA DRIVER
6658 M:      Hans Verkuil <hverkuil@xs4all.nl>
6659 L:      linux-media@vger.kernel.org
6660 S:      Odd Fixes
6661 W:      https://linuxtv.org
6662 T:      git git://linuxtv.org/media_tree.git
6663 F:      drivers/media/pci/dt3155/
6664
6665 DVB_USB_AF9015 MEDIA DRIVER
6666 M:      Antti Palosaari <crope@iki.fi>
6667 L:      linux-media@vger.kernel.org
6668 S:      Maintained
6669 W:      https://linuxtv.org
6670 W:      http://palosaari.fi/linux/
6671 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6672 T:      git git://linuxtv.org/anttip/media_tree.git
6673 F:      drivers/media/usb/dvb-usb-v2/af9015*
6674
6675 DVB_USB_AF9035 MEDIA DRIVER
6676 M:      Antti Palosaari <crope@iki.fi>
6677 L:      linux-media@vger.kernel.org
6678 S:      Maintained
6679 W:      https://linuxtv.org
6680 W:      http://palosaari.fi/linux/
6681 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6682 T:      git git://linuxtv.org/anttip/media_tree.git
6683 F:      drivers/media/usb/dvb-usb-v2/af9035*
6684
6685 DVB_USB_ANYSEE MEDIA DRIVER
6686 M:      Antti Palosaari <crope@iki.fi>
6687 L:      linux-media@vger.kernel.org
6688 S:      Maintained
6689 W:      https://linuxtv.org
6690 W:      http://palosaari.fi/linux/
6691 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6692 T:      git git://linuxtv.org/anttip/media_tree.git
6693 F:      drivers/media/usb/dvb-usb-v2/anysee*
6694
6695 DVB_USB_AU6610 MEDIA DRIVER
6696 M:      Antti Palosaari <crope@iki.fi>
6697 L:      linux-media@vger.kernel.org
6698 S:      Maintained
6699 W:      https://linuxtv.org
6700 W:      http://palosaari.fi/linux/
6701 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6702 T:      git git://linuxtv.org/anttip/media_tree.git
6703 F:      drivers/media/usb/dvb-usb-v2/au6610*
6704
6705 DVB_USB_CE6230 MEDIA DRIVER
6706 M:      Antti Palosaari <crope@iki.fi>
6707 L:      linux-media@vger.kernel.org
6708 S:      Maintained
6709 W:      https://linuxtv.org
6710 W:      http://palosaari.fi/linux/
6711 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6712 T:      git git://linuxtv.org/anttip/media_tree.git
6713 F:      drivers/media/usb/dvb-usb-v2/ce6230*
6714
6715 DVB_USB_CXUSB MEDIA DRIVER
6716 M:      Michael Krufky <mkrufky@linuxtv.org>
6717 L:      linux-media@vger.kernel.org
6718 S:      Maintained
6719 W:      https://linuxtv.org
6720 W:      http://github.com/mkrufky
6721 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6722 T:      git git://linuxtv.org/media_tree.git
6723 F:      drivers/media/usb/dvb-usb/cxusb*
6724
6725 DVB_USB_EC168 MEDIA DRIVER
6726 M:      Antti Palosaari <crope@iki.fi>
6727 L:      linux-media@vger.kernel.org
6728 S:      Maintained
6729 W:      https://linuxtv.org
6730 W:      http://palosaari.fi/linux/
6731 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6732 T:      git git://linuxtv.org/anttip/media_tree.git
6733 F:      drivers/media/usb/dvb-usb-v2/ec168*
6734
6735 DVB_USB_GL861 MEDIA DRIVER
6736 M:      Antti Palosaari <crope@iki.fi>
6737 L:      linux-media@vger.kernel.org
6738 S:      Maintained
6739 W:      https://linuxtv.org
6740 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6741 T:      git git://linuxtv.org/anttip/media_tree.git
6742 F:      drivers/media/usb/dvb-usb-v2/gl861*
6743
6744 DVB_USB_MXL111SF MEDIA DRIVER
6745 M:      Michael Krufky <mkrufky@linuxtv.org>
6746 L:      linux-media@vger.kernel.org
6747 S:      Maintained
6748 W:      https://linuxtv.org
6749 W:      http://github.com/mkrufky
6750 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6751 T:      git git://linuxtv.org/mkrufky/mxl111sf.git
6752 F:      drivers/media/usb/dvb-usb-v2/mxl111sf*
6753
6754 DVB_USB_RTL28XXU MEDIA DRIVER
6755 M:      Antti Palosaari <crope@iki.fi>
6756 L:      linux-media@vger.kernel.org
6757 S:      Maintained
6758 W:      https://linuxtv.org
6759 W:      http://palosaari.fi/linux/
6760 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6761 T:      git git://linuxtv.org/anttip/media_tree.git
6762 F:      drivers/media/usb/dvb-usb-v2/rtl28xxu*
6763
6764 DVB_USB_V2 MEDIA DRIVER
6765 M:      Antti Palosaari <crope@iki.fi>
6766 L:      linux-media@vger.kernel.org
6767 S:      Maintained
6768 W:      https://linuxtv.org
6769 W:      http://palosaari.fi/linux/
6770 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6771 T:      git git://linuxtv.org/anttip/media_tree.git
6772 F:      drivers/media/usb/dvb-usb-v2/dvb_usb*
6773 F:      drivers/media/usb/dvb-usb-v2/usb_urb.c
6774
6775 DYNAMIC DEBUG
6776 M:      Jason Baron <jbaron@akamai.com>
6777 S:      Maintained
6778 F:      include/linux/dynamic_debug.h
6779 F:      lib/dynamic_debug.c
6780
6781 DYNAMIC INTERRUPT MODERATION
6782 M:      Tal Gilboa <talgi@nvidia.com>
6783 S:      Maintained
6784 F:      Documentation/networking/net_dim.rst
6785 F:      include/linux/dim.h
6786 F:      lib/dim/
6787
6788 DZ DECSTATION DZ11 SERIAL DRIVER
6789 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
6790 S:      Maintained
6791 F:      drivers/tty/serial/dz.*
6792
6793 E3X0 POWER BUTTON DRIVER
6794 M:      Moritz Fischer <moritz.fischer@ettus.com>
6795 L:      usrp-users@lists.ettus.com
6796 S:      Supported
6797 W:      http://www.ettus.com
6798 F:      Documentation/devicetree/bindings/input/e3x0-button.txt
6799 F:      drivers/input/misc/e3x0-button.c
6800
6801 E4000 MEDIA DRIVER
6802 M:      Antti Palosaari <crope@iki.fi>
6803 L:      linux-media@vger.kernel.org
6804 S:      Maintained
6805 W:      https://linuxtv.org
6806 W:      http://palosaari.fi/linux/
6807 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6808 T:      git git://linuxtv.org/anttip/media_tree.git
6809 F:      drivers/media/tuners/e4000*
6810
6811 EARTH_PT1 MEDIA DRIVER
6812 M:      Akihiro Tsukada <tskd08@gmail.com>
6813 L:      linux-media@vger.kernel.org
6814 S:      Odd Fixes
6815 F:      drivers/media/pci/pt1/
6816
6817 EARTH_PT3 MEDIA DRIVER
6818 M:      Akihiro Tsukada <tskd08@gmail.com>
6819 L:      linux-media@vger.kernel.org
6820 S:      Odd Fixes
6821 F:      drivers/media/pci/pt3/
6822
6823 EC100 MEDIA DRIVER
6824 M:      Antti Palosaari <crope@iki.fi>
6825 L:      linux-media@vger.kernel.org
6826 S:      Maintained
6827 W:      https://linuxtv.org
6828 W:      http://palosaari.fi/linux/
6829 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6830 T:      git git://linuxtv.org/anttip/media_tree.git
6831 F:      drivers/media/dvb-frontends/ec100*
6832
6833 ECRYPT FILE SYSTEM
6834 M:      Tyler Hicks <code@tyhicks.com>
6835 L:      ecryptfs@vger.kernel.org
6836 S:      Odd Fixes
6837 W:      http://ecryptfs.org
6838 W:      https://launchpad.net/ecryptfs
6839 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tyhicks/ecryptfs.git
6840 F:      Documentation/filesystems/ecryptfs.rst
6841 F:      fs/ecryptfs/
6842
6843 EDAC-AMD64
6844 M:      Yazen Ghannam <yazen.ghannam@amd.com>
6845 L:      linux-edac@vger.kernel.org
6846 S:      Supported
6847 F:      drivers/edac/amd64_edac*
6848 F:      drivers/edac/mce_amd*
6849
6850 EDAC-ARMADA
6851 M:      Jan Luebbe <jlu@pengutronix.de>
6852 L:      linux-edac@vger.kernel.org
6853 S:      Maintained
6854 F:      Documentation/devicetree/bindings/memory-controllers/marvell,mvebu-sdram-controller.yaml
6855 F:      drivers/edac/armada_xp_*
6856
6857 EDAC-AST2500
6858 M:      Stefan Schaeckeler <sschaeck@cisco.com>
6859 S:      Supported
6860 F:      Documentation/devicetree/bindings/edac/aspeed-sdram-edac.txt
6861 F:      drivers/edac/aspeed_edac.c
6862
6863 EDAC-BLUEFIELD
6864 M:      Shravan Kumar Ramani <shravankr@nvidia.com>
6865 S:      Supported
6866 F:      drivers/edac/bluefield_edac.c
6867
6868 EDAC-CALXEDA
6869 M:      Andre Przywara <andre.przywara@arm.com>
6870 L:      linux-edac@vger.kernel.org
6871 S:      Maintained
6872 F:      drivers/edac/highbank*
6873
6874 EDAC-CAVIUM OCTEON
6875 M:      Ralf Baechle <ralf@linux-mips.org>
6876 L:      linux-edac@vger.kernel.org
6877 L:      linux-mips@vger.kernel.org
6878 S:      Supported
6879 F:      drivers/edac/octeon_edac*
6880
6881 EDAC-CAVIUM THUNDERX
6882 M:      Robert Richter <rric@kernel.org>
6883 L:      linux-edac@vger.kernel.org
6884 S:      Odd Fixes
6885 F:      drivers/edac/thunderx_edac*
6886
6887 EDAC-CORE
6888 M:      Borislav Petkov <bp@alien8.de>
6889 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6890 M:      Tony Luck <tony.luck@intel.com>
6891 R:      James Morse <james.morse@arm.com>
6892 R:      Robert Richter <rric@kernel.org>
6893 L:      linux-edac@vger.kernel.org
6894 S:      Supported
6895 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ras/ras.git edac-for-next
6896 F:      Documentation/admin-guide/ras.rst
6897 F:      Documentation/driver-api/edac.rst
6898 F:      drivers/edac/
6899 F:      include/linux/edac.h
6900
6901 EDAC-DMC520
6902 M:      Lei Wang <lewan@microsoft.com>
6903 L:      linux-edac@vger.kernel.org
6904 S:      Supported
6905 F:      drivers/edac/dmc520_edac.c
6906
6907 EDAC-E752X
6908 M:      Mark Gross <markgross@kernel.org>
6909 L:      linux-edac@vger.kernel.org
6910 S:      Maintained
6911 F:      drivers/edac/e752x_edac.c
6912
6913 EDAC-E7XXX
6914 L:      linux-edac@vger.kernel.org
6915 S:      Maintained
6916 F:      drivers/edac/e7xxx_edac.c
6917
6918 EDAC-FSL_DDR
6919 M:      York Sun <york.sun@nxp.com>
6920 L:      linux-edac@vger.kernel.org
6921 S:      Maintained
6922 F:      drivers/edac/fsl_ddr_edac.*
6923
6924 EDAC-GHES
6925 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6926 L:      linux-edac@vger.kernel.org
6927 S:      Maintained
6928 F:      drivers/edac/ghes_edac.c
6929
6930 EDAC-I10NM
6931 M:      Tony Luck <tony.luck@intel.com>
6932 L:      linux-edac@vger.kernel.org
6933 S:      Maintained
6934 F:      drivers/edac/i10nm_base.c
6935
6936 EDAC-I3000
6937 L:      linux-edac@vger.kernel.org
6938 S:      Orphan
6939 F:      drivers/edac/i3000_edac.c
6940
6941 EDAC-I5000
6942 L:      linux-edac@vger.kernel.org
6943 S:      Maintained
6944 F:      drivers/edac/i5000_edac.c
6945
6946 EDAC-I5400
6947 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6948 L:      linux-edac@vger.kernel.org
6949 S:      Maintained
6950 F:      drivers/edac/i5400_edac.c
6951
6952 EDAC-I7300
6953 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6954 L:      linux-edac@vger.kernel.org
6955 S:      Maintained
6956 F:      drivers/edac/i7300_edac.c
6957
6958 EDAC-I7CORE
6959 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6960 L:      linux-edac@vger.kernel.org
6961 S:      Maintained
6962 F:      drivers/edac/i7core_edac.c
6963
6964 EDAC-I82443BXGX
6965 M:      Tim Small <tim@buttersideup.com>
6966 L:      linux-edac@vger.kernel.org
6967 S:      Maintained
6968 F:      drivers/edac/i82443bxgx_edac.c
6969
6970 EDAC-I82975X
6971 M:      "Arvind R." <arvino55@gmail.com>
6972 L:      linux-edac@vger.kernel.org
6973 S:      Maintained
6974 F:      drivers/edac/i82975x_edac.c
6975
6976 EDAC-IE31200
6977 M:      Jason Baron <jbaron@akamai.com>
6978 L:      linux-edac@vger.kernel.org
6979 S:      Maintained
6980 F:      drivers/edac/ie31200_edac.c
6981
6982 EDAC-IGEN6
6983 M:      Tony Luck <tony.luck@intel.com>
6984 R:      Qiuxu Zhuo <qiuxu.zhuo@intel.com>
6985 L:      linux-edac@vger.kernel.org
6986 S:      Maintained
6987 F:      drivers/edac/igen6_edac.c
6988
6989 EDAC-MPC85XX
6990 M:      Johannes Thumshirn <morbidrsa@gmail.com>
6991 L:      linux-edac@vger.kernel.org
6992 S:      Maintained
6993 F:      drivers/edac/mpc85xx_edac.[ch]
6994
6995 EDAC-PASEMI
6996 M:      Egor Martovetsky <egor@pasemi.com>
6997 L:      linux-edac@vger.kernel.org
6998 S:      Maintained
6999 F:      drivers/edac/pasemi_edac.c
7000
7001 EDAC-PND2
7002 M:      Tony Luck <tony.luck@intel.com>
7003 L:      linux-edac@vger.kernel.org
7004 S:      Maintained
7005 F:      drivers/edac/pnd2_edac.[ch]
7006
7007 EDAC-QCOM
7008 M:      Channagoud Kadabi <ckadabi@codeaurora.org>
7009 M:      Venkata Narendra Kumar Gutta <vnkgutta@codeaurora.org>
7010 L:      linux-arm-msm@vger.kernel.org
7011 L:      linux-edac@vger.kernel.org
7012 S:      Maintained
7013 F:      drivers/edac/qcom_edac.c
7014
7015 EDAC-R82600
7016 M:      Tim Small <tim@buttersideup.com>
7017 L:      linux-edac@vger.kernel.org
7018 S:      Maintained
7019 F:      drivers/edac/r82600_edac.c
7020
7021 EDAC-SBRIDGE
7022 M:      Tony Luck <tony.luck@intel.com>
7023 R:      Qiuxu Zhuo <qiuxu.zhuo@intel.com>
7024 L:      linux-edac@vger.kernel.org
7025 S:      Maintained
7026 F:      drivers/edac/sb_edac.c
7027
7028 EDAC-SKYLAKE
7029 M:      Tony Luck <tony.luck@intel.com>
7030 L:      linux-edac@vger.kernel.org
7031 S:      Maintained
7032 F:      drivers/edac/skx_*.[ch]
7033
7034 EDAC-TI
7035 M:      Tero Kristo <kristo@kernel.org>
7036 L:      linux-edac@vger.kernel.org
7037 S:      Odd Fixes
7038 F:      drivers/edac/ti_edac.c
7039
7040 EDIROL UA-101/UA-1000 DRIVER
7041 M:      Clemens Ladisch <clemens@ladisch.de>
7042 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7043 S:      Maintained
7044 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
7045 F:      sound/usb/misc/ua101.c
7046
7047 EFI TEST DRIVER
7048 M:      Ivan Hu <ivan.hu@canonical.com>
7049 M:      Ard Biesheuvel <ardb@kernel.org>
7050 L:      linux-efi@vger.kernel.org
7051 S:      Maintained
7052 F:      drivers/firmware/efi/test/
7053
7054 EFI VARIABLE FILESYSTEM
7055 M:      Matthew Garrett <matthew.garrett@nebula.com>
7056 M:      Jeremy Kerr <jk@ozlabs.org>
7057 M:      Ard Biesheuvel <ardb@kernel.org>
7058 L:      linux-efi@vger.kernel.org
7059 S:      Maintained
7060 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
7061 F:      fs/efivarfs/
7062
7063 EFIFB FRAMEBUFFER DRIVER
7064 M:      Peter Jones <pjones@redhat.com>
7065 L:      linux-fbdev@vger.kernel.org
7066 S:      Maintained
7067 F:      drivers/video/fbdev/efifb.c
7068
7069 EFS FILESYSTEM
7070 S:      Orphan
7071 W:      http://aeschi.ch.eu.org/efs/
7072 F:      fs/efs/
7073
7074 EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
7075 M:      Douglas Miller <dougmill@linux.ibm.com>
7076 L:      netdev@vger.kernel.org
7077 S:      Maintained
7078 F:      drivers/net/ethernet/ibm/ehea/
7079
7080 EM28XX VIDEO4LINUX DRIVER
7081 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
7082 L:      linux-media@vger.kernel.org
7083 S:      Maintained
7084 W:      https://linuxtv.org
7085 T:      git git://linuxtv.org/media_tree.git
7086 F:      Documentation/admin-guide/media/em28xx*
7087 F:      drivers/media/usb/em28xx/
7088
7089 EMBEDDED LINUX
7090 M:      Matt Mackall <mpm@selenic.com>
7091 M:      David Woodhouse <dwmw2@infradead.org>
7092 L:      linux-embedded@vger.kernel.org
7093 S:      Maintained
7094
7095 EMMC CMDQ HOST CONTROLLER INTERFACE (CQHCI) DRIVER
7096 M:      Adrian Hunter <adrian.hunter@intel.com>
7097 M:      Ritesh Harjani <riteshh@codeaurora.org>
7098 M:      Asutosh Das <asutoshd@codeaurora.org>
7099 L:      linux-mmc@vger.kernel.org
7100 S:      Maintained
7101 F:      drivers/mmc/host/cqhci*
7102
7103 EMULEX 10Gbps iSCSI - OneConnect DRIVER
7104 M:      Ketan Mukadam <ketan.mukadam@broadcom.com>
7105 L:      linux-scsi@vger.kernel.org
7106 S:      Supported
7107 W:      http://www.broadcom.com
7108 F:      drivers/scsi/be2iscsi/
7109
7110 EMULEX 10Gbps NIC BE2, BE3-R, Lancer, Skyhawk-R DRIVER (be2net)
7111 M:      Ajit Khaparde <ajit.khaparde@broadcom.com>
7112 M:      Sriharsha Basavapatna <sriharsha.basavapatna@broadcom.com>
7113 M:      Somnath Kotur <somnath.kotur@broadcom.com>
7114 L:      netdev@vger.kernel.org
7115 S:      Supported
7116 W:      http://www.emulex.com
7117 F:      drivers/net/ethernet/emulex/benet/
7118
7119 EMULEX ONECONNECT ROCE DRIVER
7120 M:      Selvin Xavier <selvin.xavier@broadcom.com>
7121 L:      linux-rdma@vger.kernel.org
7122 S:      Odd Fixes
7123 W:      http://www.broadcom.com
7124 F:      drivers/infiniband/hw/ocrdma/
7125 F:      include/uapi/rdma/ocrdma-abi.h
7126
7127 EMULEX/BROADCOM LPFC FC/FCOE SCSI DRIVER
7128 M:      James Smart <james.smart@broadcom.com>
7129 M:      Dick Kennedy <dick.kennedy@broadcom.com>
7130 L:      linux-scsi@vger.kernel.org
7131 S:      Supported
7132 W:      http://www.broadcom.com
7133 F:      drivers/scsi/lpfc/
7134
7135 EMULEX/BROADCOM EFCT FC/FCOE SCSI TARGET DRIVER
7136 M:      James Smart <james.smart@broadcom.com>
7137 M:      Ram Vegesna <ram.vegesna@broadcom.com>
7138 L:      linux-scsi@vger.kernel.org
7139 L:      target-devel@vger.kernel.org
7140 S:      Supported
7141 W:      http://www.broadcom.com
7142 F:      drivers/scsi/elx/
7143
7144 ENE CB710 FLASH CARD READER DRIVER
7145 M:      Michał Mirosław <mirq-linux@rere.qmqm.pl>
7146 S:      Maintained
7147 F:      drivers/misc/cb710/
7148 F:      drivers/mmc/host/cb710-mmc.*
7149 F:      include/linux/cb710.h
7150
7151 ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
7152 M:      Maxim Levitsky <maximlevitsky@gmail.com>
7153 S:      Maintained
7154 F:      drivers/media/rc/ene_ir.*
7155
7156 EPAPR HYPERVISOR BYTE CHANNEL DEVICE DRIVER
7157 M:      Laurentiu Tudor <laurentiu.tudor@nxp.com>
7158 L:      linuxppc-dev@lists.ozlabs.org
7159 S:      Maintained
7160 F:      drivers/tty/ehv_bytechan.c
7161
7162 EPSON S1D13XXX FRAMEBUFFER DRIVER
7163 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
7164 S:      Maintained
7165 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
7166 F:      drivers/video/fbdev/s1d13xxxfb.c
7167 F:      include/video/s1d13xxxfb.h
7168
7169 EROFS FILE SYSTEM
7170 M:      Gao Xiang <xiang@kernel.org>
7171 M:      Chao Yu <chao@kernel.org>
7172 L:      linux-erofs@lists.ozlabs.org
7173 S:      Maintained
7174 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs.git
7175 F:      Documentation/filesystems/erofs.rst
7176 F:      fs/erofs/
7177 F:      include/trace/events/erofs.h
7178
7179 ERRSEQ ERROR TRACKING INFRASTRUCTURE
7180 M:      Jeff Layton <jlayton@kernel.org>
7181 S:      Maintained
7182 F:      include/linux/errseq.h
7183 F:      lib/errseq.c
7184
7185 ET131X NETWORK DRIVER
7186 M:      Mark Einon <mark.einon@gmail.com>
7187 S:      Odd Fixes
7188 F:      drivers/net/ethernet/agere/
7189
7190 ETAS ES58X CAN/USB DRIVER
7191 M:      Vincent Mailhol <mailhol.vincent@wanadoo.fr>
7192 L:      linux-can@vger.kernel.org
7193 S:      Maintained
7194 F:      drivers/net/can/usb/etas_es58x/
7195
7196 ETHERNET BRIDGE
7197 M:      Roopa Prabhu <roopa@nvidia.com>
7198 M:      Nikolay Aleksandrov <razor@blackwall.org>
7199 L:      bridge@lists.linux-foundation.org (moderated for non-subscribers)
7200 L:      netdev@vger.kernel.org
7201 S:      Maintained
7202 W:      http://www.linuxfoundation.org/en/Net:Bridge
7203 F:      include/linux/netfilter_bridge/
7204 F:      net/bridge/
7205
7206 ETHERNET PHY LIBRARY
7207 M:      Andrew Lunn <andrew@lunn.ch>
7208 M:      Heiner Kallweit <hkallweit1@gmail.com>
7209 R:      Russell King <linux@armlinux.org.uk>
7210 L:      netdev@vger.kernel.org
7211 S:      Maintained
7212 F:      Documentation/ABI/testing/sysfs-class-net-phydev
7213 F:      Documentation/devicetree/bindings/net/ethernet-phy.yaml
7214 F:      Documentation/devicetree/bindings/net/mdio*
7215 F:      Documentation/devicetree/bindings/net/qca,ar803x.yaml
7216 F:      Documentation/networking/phy.rst
7217 F:      drivers/net/mdio/
7218 F:      drivers/net/mdio/acpi_mdio.c
7219 F:      drivers/net/mdio/fwnode_mdio.c
7220 F:      drivers/net/mdio/of_mdio.c
7221 F:      drivers/net/pcs/
7222 F:      drivers/net/phy/
7223 F:      include/dt-bindings/net/qca-ar803x.h
7224 F:      include/linux/linkmode.h
7225 F:      include/linux/*mdio*.h
7226 F:      include/linux/mdio/*.h
7227 F:      include/linux/mii.h
7228 F:      include/linux/of_net.h
7229 F:      include/linux/phy.h
7230 F:      include/linux/phy_fixed.h
7231 F:      include/linux/platform_data/mdio-bcm-unimac.h
7232 F:      include/linux/platform_data/mdio-gpio.h
7233 F:      include/trace/events/mdio.h
7234 F:      include/uapi/linux/mdio.h
7235 F:      include/uapi/linux/mii.h
7236 F:      net/core/of_net.c
7237
7238 EXEC & BINFMT API
7239 R:      Eric Biederman <ebiederm@xmission.com>
7240 R:      Kees Cook <keescook@chromium.org>
7241 L:      linux-mm@kvack.org
7242 S:      Supported
7243 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/execve
7244 F:      arch/alpha/kernel/binfmt_loader.c
7245 F:      arch/x86/ia32/ia32_aout.c
7246 F:      fs/*binfmt_*.c
7247 F:      fs/exec.c
7248 F:      include/linux/binfmts.h
7249 F:      include/linux/elf.h
7250 F:      include/uapi/linux/binfmts.h
7251 F:      include/uapi/linux/elf.h
7252 F:      tools/testing/selftests/exec/
7253 N:      asm/elf.h
7254 N:      binfmt
7255
7256 EXFAT FILE SYSTEM
7257 M:      Namjae Jeon <linkinjeon@kernel.org>
7258 M:      Sungjong Seo <sj1557.seo@samsung.com>
7259 L:      linux-fsdevel@vger.kernel.org
7260 S:      Maintained
7261 F:      fs/exfat/
7262
7263 EXT2 FILE SYSTEM
7264 M:      Jan Kara <jack@suse.com>
7265 L:      linux-ext4@vger.kernel.org
7266 S:      Maintained
7267 F:      Documentation/filesystems/ext2.rst
7268 F:      fs/ext2/
7269 F:      include/linux/ext2*
7270
7271 EXT4 FILE SYSTEM
7272 M:      "Theodore Ts'o" <tytso@mit.edu>
7273 M:      Andreas Dilger <adilger.kernel@dilger.ca>
7274 L:      linux-ext4@vger.kernel.org
7275 S:      Maintained
7276 W:      http://ext4.wiki.kernel.org
7277 Q:      http://patchwork.ozlabs.org/project/linux-ext4/list/
7278 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tytso/ext4.git
7279 F:      Documentation/filesystems/ext4/
7280 F:      fs/ext4/
7281 F:      include/trace/events/ext4.h
7282
7283 Extended Verification Module (EVM)
7284 M:      Mimi Zohar <zohar@linux.ibm.com>
7285 L:      linux-integrity@vger.kernel.org
7286 S:      Supported
7287 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/zohar/linux-integrity.git
7288 F:      security/integrity/evm/
7289 F:      security/integrity/
7290
7291 EXTENSIBLE FIRMWARE INTERFACE (EFI)
7292 M:      Ard Biesheuvel <ardb@kernel.org>
7293 L:      linux-efi@vger.kernel.org
7294 S:      Maintained
7295 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
7296 F:      Documentation/admin-guide/efi-stub.rst
7297 F:      arch/*/include/asm/efi.h
7298 F:      arch/*/kernel/efi.c
7299 F:      arch/arm/boot/compressed/efi-header.S
7300 F:      arch/arm64/kernel/efi-entry.S
7301 F:      arch/x86/platform/efi/
7302 F:      drivers/firmware/efi/
7303 F:      include/linux/efi*.h
7304
7305 EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
7306 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
7307 M:      Chanwoo Choi <cw00.choi@samsung.com>
7308 L:      linux-kernel@vger.kernel.org
7309 S:      Maintained
7310 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git
7311 F:      Documentation/devicetree/bindings/extcon/
7312 F:      Documentation/firmware-guide/acpi/extcon-intel-int3496.rst
7313 F:      drivers/extcon/
7314 F:      include/linux/extcon.h
7315 F:      include/linux/extcon/
7316
7317 EXTRA BOOT CONFIG
7318 M:      Masami Hiramatsu <mhiramat@kernel.org>
7319 S:      Maintained
7320 F:      Documentation/admin-guide/bootconfig.rst
7321 F:      fs/proc/bootconfig.c
7322 F:      include/linux/bootconfig.h
7323 F:      lib/bootconfig.c
7324 F:      tools/bootconfig/*
7325 F:      tools/bootconfig/scripts/*
7326
7327 EXYNOS DP DRIVER
7328 M:      Jingoo Han <jingoohan1@gmail.com>
7329 L:      dri-devel@lists.freedesktop.org
7330 S:      Maintained
7331 F:      drivers/gpu/drm/exynos/exynos_dp*
7332
7333 EXYNOS SYSMMU (IOMMU) driver
7334 M:      Marek Szyprowski <m.szyprowski@samsung.com>
7335 L:      iommu@lists.linux-foundation.org
7336 S:      Maintained
7337 F:      drivers/iommu/exynos-iommu.c
7338
7339 F2FS FILE SYSTEM
7340 M:      Jaegeuk Kim <jaegeuk@kernel.org>
7341 M:      Chao Yu <chao@kernel.org>
7342 L:      linux-f2fs-devel@lists.sourceforge.net
7343 S:      Maintained
7344 W:      https://f2fs.wiki.kernel.org/
7345 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
7346 F:      Documentation/ABI/testing/sysfs-fs-f2fs
7347 F:      Documentation/filesystems/f2fs.rst
7348 F:      fs/f2fs/
7349 F:      include/linux/f2fs_fs.h
7350 F:      include/trace/events/f2fs.h
7351 F:      include/uapi/linux/f2fs.h
7352
7353 F71805F HARDWARE MONITORING DRIVER
7354 M:      Jean Delvare <jdelvare@suse.com>
7355 L:      linux-hwmon@vger.kernel.org
7356 S:      Maintained
7357 F:      Documentation/hwmon/f71805f.rst
7358 F:      drivers/hwmon/f71805f.c
7359
7360 FADDR2LINE
7361 M:      Josh Poimboeuf <jpoimboe@redhat.com>
7362 S:      Maintained
7363 F:      scripts/faddr2line
7364
7365 FAILOVER MODULE
7366 M:      Sridhar Samudrala <sridhar.samudrala@intel.com>
7367 L:      netdev@vger.kernel.org
7368 S:      Supported
7369 F:      Documentation/networking/failover.rst
7370 F:      include/net/failover.h
7371 F:      net/core/failover.c
7372
7373 FANOTIFY
7374 M:      Jan Kara <jack@suse.cz>
7375 R:      Amir Goldstein <amir73il@gmail.com>
7376 R:      Matthew Bobrowski <repnop@google.com>
7377 L:      linux-fsdevel@vger.kernel.org
7378 S:      Maintained
7379 F:      fs/notify/fanotify/
7380 F:      include/linux/fanotify.h
7381 F:      include/uapi/linux/fanotify.h
7382
7383 FARSYNC SYNCHRONOUS DRIVER
7384 M:      Kevin Curtis <kevin.curtis@farsite.co.uk>
7385 S:      Supported
7386 W:      http://www.farsite.co.uk/
7387 F:      drivers/net/wan/farsync.*
7388
7389 FAULT INJECTION SUPPORT
7390 M:      Akinobu Mita <akinobu.mita@gmail.com>
7391 S:      Supported
7392 F:      Documentation/fault-injection/
7393 F:      lib/fault-inject.c
7394
7395 FBTFT Framebuffer drivers
7396 L:      dri-devel@lists.freedesktop.org
7397 L:      linux-fbdev@vger.kernel.org
7398 S:      Orphan
7399 F:      drivers/staging/fbtft/
7400
7401 FC0011 TUNER DRIVER
7402 M:      Michael Buesch <m@bues.ch>
7403 L:      linux-media@vger.kernel.org
7404 S:      Maintained
7405 F:      drivers/media/tuners/fc0011.c
7406 F:      drivers/media/tuners/fc0011.h
7407
7408 FC2580 MEDIA DRIVER
7409 M:      Antti Palosaari <crope@iki.fi>
7410 L:      linux-media@vger.kernel.org
7411 S:      Maintained
7412 W:      https://linuxtv.org
7413 W:      http://palosaari.fi/linux/
7414 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7415 T:      git git://linuxtv.org/anttip/media_tree.git
7416 F:      drivers/media/tuners/fc2580*
7417
7418 FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
7419 M:      Hannes Reinecke <hare@suse.de>
7420 L:      linux-scsi@vger.kernel.org
7421 S:      Supported
7422 W:      www.Open-FCoE.org
7423 F:      drivers/scsi/fcoe/
7424 F:      drivers/scsi/libfc/
7425 F:      include/scsi/fc/
7426 F:      include/scsi/libfc.h
7427 F:      include/scsi/libfcoe.h
7428 F:      include/uapi/scsi/fc/
7429
7430 FILE LOCKING (flock() and fcntl()/lockf())
7431 M:      Jeff Layton <jlayton@kernel.org>
7432 L:      linux-fsdevel@vger.kernel.org
7433 S:      Maintained
7434 F:      fs/fcntl.c
7435 F:      fs/locks.c
7436 F:      include/linux/fcntl.h
7437 F:      include/uapi/linux/fcntl.h
7438
7439 FILESYSTEM DIRECT ACCESS (DAX)
7440 M:      Dan Williams <dan.j.williams@intel.com>
7441 R:      Matthew Wilcox <willy@infradead.org>
7442 R:      Jan Kara <jack@suse.cz>
7443 L:      linux-fsdevel@vger.kernel.org
7444 L:      nvdimm@lists.linux.dev
7445 S:      Supported
7446 F:      fs/dax.c
7447 F:      include/linux/dax.h
7448 F:      include/trace/events/fs_dax.h
7449
7450 FILESYSTEMS (VFS and infrastructure)
7451 M:      Alexander Viro <viro@zeniv.linux.org.uk>
7452 L:      linux-fsdevel@vger.kernel.org
7453 S:      Maintained
7454 F:      fs/*
7455 F:      include/linux/fs.h
7456 F:      include/linux/fs_types.h
7457 F:      include/uapi/linux/fs.h
7458 F:      include/uapi/linux/openat2.h
7459 X:      fs/io-wq.c
7460 X:      fs/io-wq.h
7461 X:      fs/io_uring.c
7462
7463 FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
7464 M:      Riku Voipio <riku.voipio@iki.fi>
7465 L:      linux-hwmon@vger.kernel.org
7466 S:      Maintained
7467 F:      drivers/hwmon/f75375s.c
7468 F:      include/linux/f75375s.h
7469
7470 FIREWIRE AUDIO DRIVERS and IEC 61883-1/6 PACKET STREAMING ENGINE
7471 M:      Clemens Ladisch <clemens@ladisch.de>
7472 M:      Takashi Sakamoto <o-takashi@sakamocchi.jp>
7473 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7474 S:      Maintained
7475 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
7476 F:      include/uapi/sound/firewire.h
7477 F:      sound/firewire/
7478
7479 FIREWIRE MEDIA DRIVERS (firedtv)
7480 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
7481 L:      linux-media@vger.kernel.org
7482 L:      linux1394-devel@lists.sourceforge.net
7483 S:      Maintained
7484 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
7485 F:      drivers/media/firewire/
7486
7487 FIREWIRE SBP-2 TARGET
7488 M:      Chris Boot <bootc@bootc.net>
7489 L:      linux-scsi@vger.kernel.org
7490 L:      target-devel@vger.kernel.org
7491 L:      linux1394-devel@lists.sourceforge.net
7492 S:      Maintained
7493 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
7494 F:      drivers/target/sbp/
7495
7496 FIREWIRE SUBSYSTEM
7497 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
7498 L:      linux1394-devel@lists.sourceforge.net
7499 S:      Maintained
7500 W:      http://ieee1394.wiki.kernel.org/
7501 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
7502 F:      drivers/firewire/
7503 F:      include/linux/firewire.h
7504 F:      include/uapi/linux/firewire*.h
7505 F:      tools/firewire/
7506
7507 FIRMWARE FRAMEWORK FOR ARMV8-A
7508 M:      Sudeep Holla <sudeep.holla@arm.com>
7509 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7510 S:      Maintained
7511 F:      drivers/firmware/arm_ffa/
7512 F:      include/linux/arm_ffa.h
7513
7514 FIRMWARE LOADER (request_firmware)
7515 M:      Luis Chamberlain <mcgrof@kernel.org>
7516 L:      linux-kernel@vger.kernel.org
7517 S:      Maintained
7518 F:      Documentation/firmware_class/
7519 F:      drivers/base/firmware_loader/
7520 F:      include/linux/firmware.h
7521
7522 FLEXTIMER FTM-QUADDEC DRIVER
7523 M:      Patrick Havelange <patrick.havelange@essensium.com>
7524 L:      linux-iio@vger.kernel.org
7525 S:      Maintained
7526 F:      Documentation/devicetree/bindings/counter/ftm-quaddec.txt
7527 F:      drivers/counter/ftm-quaddec.c
7528
7529 FLOPPY DRIVER
7530 M:      Denis Efremov <efremov@linux.com>
7531 L:      linux-block@vger.kernel.org
7532 S:      Odd Fixes
7533 F:      drivers/block/floppy.c
7534
7535 FLYSKY FSIA6B RC RECEIVER
7536 M:      Markus Koch <markus@notsyncing.net>
7537 L:      linux-input@vger.kernel.org
7538 S:      Maintained
7539 F:      drivers/input/joystick/fsia6b.c
7540
7541 FOCUSRITE SCARLETT GEN 2/3 MIXER DRIVER
7542 M:      Geoffrey D. Bennett <g@b4.vu>
7543 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7544 S:      Maintained
7545 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
7546 F:      sound/usb/mixer_scarlett_gen2.c
7547
7548 FORCEDETH GIGABIT ETHERNET DRIVER
7549 M:      Rain River <rain.1986.08.12@gmail.com>
7550 M:      Zhu Yanjun <zyjzyj2000@gmail.com>
7551 L:      netdev@vger.kernel.org
7552 S:      Maintained
7553 F:      drivers/net/ethernet/nvidia/*
7554
7555 FORTIFY_SOURCE
7556 M:      Kees Cook <keescook@chromium.org>
7557 L:      linux-hardening@vger.kernel.org
7558 S:      Supported
7559 F:      include/linux/fortify-string.h
7560 F:      lib/test_fortify/*
7561 F:      scripts/test_fortify.sh
7562 K:      \b__NO_FORTIFY\b
7563
7564 FPGA DFL DRIVERS
7565 M:      Wu Hao <hao.wu@intel.com>
7566 R:      Tom Rix <trix@redhat.com>
7567 L:      linux-fpga@vger.kernel.org
7568 S:      Maintained
7569 F:      Documentation/ABI/testing/sysfs-bus-dfl*
7570 F:      Documentation/fpga/dfl.rst
7571 F:      drivers/fpga/dfl*
7572 F:      drivers/uio/uio_dfl.c
7573 F:      include/linux/dfl.h
7574 F:      include/uapi/linux/fpga-dfl.h
7575
7576 FPGA MANAGER FRAMEWORK
7577 M:      Moritz Fischer <mdf@kernel.org>
7578 M:      Wu Hao <hao.wu@intel.com>
7579 M:      Xu Yilun <yilun.xu@intel.com>
7580 R:      Tom Rix <trix@redhat.com>
7581 L:      linux-fpga@vger.kernel.org
7582 S:      Maintained
7583 Q:      http://patchwork.kernel.org/project/linux-fpga/list/
7584 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mdf/linux-fpga.git
7585 F:      Documentation/devicetree/bindings/fpga/
7586 F:      Documentation/driver-api/fpga/
7587 F:      Documentation/fpga/
7588 F:      drivers/fpga/
7589 F:      include/linux/fpga/
7590
7591 FPU EMULATOR
7592 M:      Bill Metzenthen <billm@melbpc.org.au>
7593 S:      Maintained
7594 W:      http://floatingpoint.sourceforge.net/emulator/index.html
7595 F:      arch/x86/math-emu/
7596
7597 FRAMEBUFFER CORE
7598 M:      Daniel Vetter <daniel@ffwll.ch>
7599 F:      drivers/video/fbdev/core/
7600 S:      Odd Fixes
7601 T:      git git://anongit.freedesktop.org/drm/drm-misc
7602
7603 FRAMEBUFFER LAYER
7604 M:      Helge Deller <deller@gmx.de>
7605 L:      linux-fbdev@vger.kernel.org
7606 L:      dri-devel@lists.freedesktop.org
7607 S:      Maintained
7608 Q:      http://patchwork.kernel.org/project/linux-fbdev/list/
7609 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/deller/linux-fbdev.git
7610 F:      Documentation/fb/
7611 F:      drivers/video/
7612 F:      include/linux/fb.h
7613 F:      include/uapi/linux/fb.h
7614 F:      include/uapi/video/
7615 F:      include/video/
7616
7617 FREESCALE CAAM (Cryptographic Acceleration and Assurance Module) DRIVER
7618 M:      Horia Geantă <horia.geanta@nxp.com>
7619 M:      Pankaj Gupta <pankaj.gupta@nxp.com>
7620 M:      Gaurav Jain <gaurav.jain@nxp.com>
7621 L:      linux-crypto@vger.kernel.org
7622 S:      Maintained
7623 F:      Documentation/devicetree/bindings/crypto/fsl-sec4.txt
7624 F:      drivers/crypto/caam/
7625
7626 FREESCALE COLDFIRE M5441X MMC DRIVER
7627 M:      Angelo Dureghello <angelo.dureghello@timesys.com>
7628 L:      linux-mmc@vger.kernel.org
7629 S:      Maintained
7630 F:      drivers/mmc/host/sdhci-esdhc-mcf.c
7631 F:      include/linux/platform_data/mmc-esdhc-mcf.h
7632
7633 FREESCALE DIU FRAMEBUFFER DRIVER
7634 M:      Timur Tabi <timur@kernel.org>
7635 L:      linux-fbdev@vger.kernel.org
7636 S:      Maintained
7637 F:      drivers/video/fbdev/fsl-diu-fb.*
7638
7639 FREESCALE DMA DRIVER
7640 M:      Li Yang <leoyang.li@nxp.com>
7641 M:      Zhang Wei <zw@zh-kernel.org>
7642 L:      linuxppc-dev@lists.ozlabs.org
7643 S:      Maintained
7644 F:      drivers/dma/fsldma.*
7645
7646 FREESCALE DSPI DRIVER
7647 M:      Vladimir Oltean <olteanv@gmail.com>
7648 L:      linux-spi@vger.kernel.org
7649 S:      Maintained
7650 F:      Documentation/devicetree/bindings/spi/spi-fsl-dspi.txt
7651 F:      drivers/spi/spi-fsl-dspi.c
7652 F:      include/linux/spi/spi-fsl-dspi.h
7653
7654 FREESCALE ENETC ETHERNET DRIVERS
7655 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
7656 L:      netdev@vger.kernel.org
7657 S:      Maintained
7658 F:      drivers/net/ethernet/freescale/enetc/
7659
7660 FREESCALE eTSEC ETHERNET DRIVER (GIANFAR)
7661 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
7662 L:      netdev@vger.kernel.org
7663 S:      Maintained
7664 F:      Documentation/devicetree/bindings/net/fsl-tsec-phy.txt
7665 F:      drivers/net/ethernet/freescale/gianfar*
7666
7667 FREESCALE GPMI NAND DRIVER
7668 M:      Han Xu <han.xu@nxp.com>
7669 L:      linux-mtd@lists.infradead.org
7670 S:      Maintained
7671 F:      drivers/mtd/nand/raw/gpmi-nand/*
7672
7673 FREESCALE I2C CPM DRIVER
7674 M:      Jochen Friedrich <jochen@scram.de>
7675 L:      linuxppc-dev@lists.ozlabs.org
7676 L:      linux-i2c@vger.kernel.org
7677 S:      Maintained
7678 F:      drivers/i2c/busses/i2c-cpm.c
7679
7680 FREESCALE IMX / MXC FEC DRIVER
7681 M:      Joakim Zhang <qiangqing.zhang@nxp.com>
7682 L:      netdev@vger.kernel.org
7683 S:      Maintained
7684 F:      Documentation/devicetree/bindings/net/fsl,fec.yaml
7685 F:      drivers/net/ethernet/freescale/fec.h
7686 F:      drivers/net/ethernet/freescale/fec_main.c
7687 F:      drivers/net/ethernet/freescale/fec_ptp.c
7688
7689 FREESCALE IMX / MXC FRAMEBUFFER DRIVER
7690 M:      Sascha Hauer <s.hauer@pengutronix.de>
7691 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
7692 L:      linux-fbdev@vger.kernel.org
7693 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7694 S:      Maintained
7695 F:      drivers/video/fbdev/imxfb.c
7696 F:      include/linux/platform_data/video-imxfb.h
7697
7698 FREESCALE IMX DDR PMU DRIVER
7699 M:      Frank Li <Frank.li@nxp.com>
7700 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7701 S:      Maintained
7702 F:      Documentation/admin-guide/perf/imx-ddr.rst
7703 F:      Documentation/devicetree/bindings/perf/fsl-imx-ddr.yaml
7704 F:      drivers/perf/fsl_imx8_ddr_perf.c
7705
7706 FREESCALE IMX I2C DRIVER
7707 M:      Oleksij Rempel <o.rempel@pengutronix.de>
7708 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
7709 L:      linux-i2c@vger.kernel.org
7710 S:      Maintained
7711 F:      Documentation/devicetree/bindings/i2c/i2c-imx.yaml
7712 F:      drivers/i2c/busses/i2c-imx.c
7713
7714 FREESCALE IMX LPI2C DRIVER
7715 M:      Dong Aisheng <aisheng.dong@nxp.com>
7716 L:      linux-i2c@vger.kernel.org
7717 L:      linux-imx@nxp.com
7718 S:      Maintained
7719 F:      Documentation/devicetree/bindings/i2c/i2c-imx-lpi2c.yaml
7720 F:      drivers/i2c/busses/i2c-imx-lpi2c.c
7721
7722 FREESCALE MPC I2C DRIVER
7723 M:      Chris Packham <chris.packham@alliedtelesis.co.nz>
7724 L:      linux-i2c@vger.kernel.org
7725 S:      Maintained
7726 F:      Documentation/devicetree/bindings/i2c/i2c-mpc.yaml
7727 F:      drivers/i2c/busses/i2c-mpc.c
7728
7729 FREESCALE QORIQ DPAA ETHERNET DRIVER
7730 M:      Madalin Bucur <madalin.bucur@nxp.com>
7731 L:      netdev@vger.kernel.org
7732 S:      Maintained
7733 F:      drivers/net/ethernet/freescale/dpaa
7734
7735 FREESCALE QORIQ DPAA FMAN DRIVER
7736 M:      Madalin Bucur <madalin.bucur@nxp.com>
7737 L:      netdev@vger.kernel.org
7738 S:      Maintained
7739 F:      Documentation/devicetree/bindings/net/fsl-fman.txt
7740 F:      drivers/net/ethernet/freescale/fman
7741
7742 FREESCALE QORIQ PTP CLOCK DRIVER
7743 M:      Yangbo Lu <yangbo.lu@nxp.com>
7744 L:      netdev@vger.kernel.org
7745 S:      Maintained
7746 F:      Documentation/devicetree/bindings/ptp/ptp-qoriq.txt
7747 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-ptp*
7748 F:      drivers/net/ethernet/freescale/dpaa2/dprtc*
7749 F:      drivers/net/ethernet/freescale/enetc/enetc_ptp.c
7750 F:      drivers/ptp/ptp_qoriq.c
7751 F:      drivers/ptp/ptp_qoriq_debugfs.c
7752 F:      include/linux/fsl/ptp_qoriq.h
7753
7754 FREESCALE QUAD SPI DRIVER
7755 M:      Han Xu <han.xu@nxp.com>
7756 L:      linux-spi@vger.kernel.org
7757 S:      Maintained
7758 F:      Documentation/devicetree/bindings/spi/fsl,spi-fsl-qspi.yaml
7759 F:      drivers/spi/spi-fsl-qspi.c
7760
7761 FREESCALE QUICC ENGINE LIBRARY
7762 M:      Qiang Zhao <qiang.zhao@nxp.com>
7763 L:      linuxppc-dev@lists.ozlabs.org
7764 S:      Maintained
7765 F:      drivers/soc/fsl/qe/
7766 F:      include/soc/fsl/qe/
7767
7768 FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
7769 M:      Li Yang <leoyang.li@nxp.com>
7770 L:      netdev@vger.kernel.org
7771 L:      linuxppc-dev@lists.ozlabs.org
7772 S:      Maintained
7773 F:      drivers/net/ethernet/freescale/ucc_geth*
7774
7775 FREESCALE QUICC ENGINE UCC HDLC DRIVER
7776 M:      Zhao Qiang <qiang.zhao@nxp.com>
7777 L:      netdev@vger.kernel.org
7778 L:      linuxppc-dev@lists.ozlabs.org
7779 S:      Maintained
7780 F:      drivers/net/wan/fsl_ucc_hdlc*
7781
7782 FREESCALE QUICC ENGINE UCC UART DRIVER
7783 M:      Timur Tabi <timur@kernel.org>
7784 L:      linuxppc-dev@lists.ozlabs.org
7785 S:      Maintained
7786 F:      drivers/tty/serial/ucc_uart.c
7787
7788 FREESCALE SOC DRIVERS
7789 M:      Li Yang <leoyang.li@nxp.com>
7790 L:      linuxppc-dev@lists.ozlabs.org
7791 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7792 S:      Maintained
7793 F:      Documentation/devicetree/bindings/misc/fsl,dpaa2-console.yaml
7794 F:      Documentation/devicetree/bindings/soc/fsl/
7795 F:      drivers/soc/fsl/
7796 F:      include/linux/fsl/
7797 F:      include/soc/fsl/
7798
7799 FREESCALE SOC FS_ENET DRIVER
7800 M:      Pantelis Antoniou <pantelis.antoniou@gmail.com>
7801 L:      linuxppc-dev@lists.ozlabs.org
7802 L:      netdev@vger.kernel.org
7803 S:      Maintained
7804 F:      drivers/net/ethernet/freescale/fs_enet/
7805 F:      include/linux/fs_enet_pd.h
7806
7807 FREESCALE SOC SOUND DRIVERS
7808 M:      Shengjiu Wang <shengjiu.wang@gmail.com>
7809 M:      Xiubo Li <Xiubo.Lee@gmail.com>
7810 R:      Fabio Estevam <festevam@gmail.com>
7811 R:      Nicolin Chen <nicoleotsuka@gmail.com>
7812 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7813 L:      linuxppc-dev@lists.ozlabs.org
7814 S:      Maintained
7815 F:      sound/soc/fsl/fsl*
7816 F:      sound/soc/fsl/imx*
7817 F:      sound/soc/fsl/mpc8610_hpcd.c
7818
7819 FREESCALE USB PERIPHERAL DRIVERS
7820 M:      Li Yang <leoyang.li@nxp.com>
7821 L:      linux-usb@vger.kernel.org
7822 L:      linuxppc-dev@lists.ozlabs.org
7823 S:      Maintained
7824 F:      drivers/usb/gadget/udc/fsl*
7825
7826 FREESCALE USB PHY DRIVER
7827 M:      Ran Wang <ran.wang_1@nxp.com>
7828 L:      linux-usb@vger.kernel.org
7829 L:      linuxppc-dev@lists.ozlabs.org
7830 S:      Maintained
7831 F:      drivers/usb/phy/phy-fsl-usb*
7832
7833 FREEVXFS FILESYSTEM
7834 M:      Christoph Hellwig <hch@infradead.org>
7835 S:      Maintained
7836 W:      ftp://ftp.openlinux.org/pub/people/hch/vxfs
7837 F:      fs/freevxfs/
7838
7839 FREEZER
7840 M:      "Rafael J. Wysocki" <rafael@kernel.org>
7841 M:      Pavel Machek <pavel@ucw.cz>
7842 L:      linux-pm@vger.kernel.org
7843 S:      Supported
7844 F:      Documentation/power/freezing-of-tasks.rst
7845 F:      include/linux/freezer.h
7846 F:      kernel/freezer.c
7847
7848 FRONTSWAP API
7849 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
7850 L:      linux-kernel@vger.kernel.org
7851 S:      Maintained
7852 F:      include/linux/frontswap.h
7853 F:      mm/frontswap.c
7854
7855 FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
7856 M:      David Howells <dhowells@redhat.com>
7857 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
7858 S:      Supported
7859 F:      Documentation/filesystems/caching/
7860 F:      fs/fscache/
7861 F:      include/linux/fscache*.h
7862
7863 FSCRYPT: FILE SYSTEM LEVEL ENCRYPTION SUPPORT
7864 M:      Theodore Y. Ts'o <tytso@mit.edu>
7865 M:      Jaegeuk Kim <jaegeuk@kernel.org>
7866 M:      Eric Biggers <ebiggers@kernel.org>
7867 L:      linux-fscrypt@vger.kernel.org
7868 S:      Supported
7869 Q:      https://patchwork.kernel.org/project/linux-fscrypt/list/
7870 T:      git git://git.kernel.org/pub/scm/fs/fscrypt/fscrypt.git
7871 F:      Documentation/filesystems/fscrypt.rst
7872 F:      fs/crypto/
7873 F:      include/linux/fscrypt*.h
7874 F:      include/uapi/linux/fscrypt.h
7875
7876 FSI SUBSYSTEM
7877 M:      Jeremy Kerr <jk@ozlabs.org>
7878 M:      Joel Stanley <joel@jms.id.au>
7879 R:      Alistar Popple <alistair@popple.id.au>
7880 R:      Eddie James <eajames@linux.ibm.com>
7881 L:      linux-fsi@lists.ozlabs.org
7882 S:      Supported
7883 Q:      http://patchwork.ozlabs.org/project/linux-fsi/list/
7884 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joel/fsi.git
7885 F:      drivers/fsi/
7886 F:      include/linux/fsi*.h
7887 F:      include/trace/events/fsi*.h
7888
7889 FSI-ATTACHED I2C DRIVER
7890 M:      Eddie James <eajames@linux.ibm.com>
7891 L:      linux-i2c@vger.kernel.org
7892 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
7893 S:      Maintained
7894 F:      Documentation/devicetree/bindings/i2c/i2c-fsi.txt
7895 F:      drivers/i2c/busses/i2c-fsi.c
7896
7897 FSI-ATTACHED SPI DRIVER
7898 M:      Eddie James <eajames@linux.ibm.com>
7899 L:      linux-spi@vger.kernel.org
7900 S:      Maintained
7901 F:      Documentation/devicetree/bindings/fsi/ibm,fsi2spi.yaml
7902 F:      drivers/spi/spi-fsi.c
7903
7904 FSNOTIFY: FILESYSTEM NOTIFICATION INFRASTRUCTURE
7905 M:      Jan Kara <jack@suse.cz>
7906 R:      Amir Goldstein <amir73il@gmail.com>
7907 L:      linux-fsdevel@vger.kernel.org
7908 S:      Maintained
7909 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jack/linux-fs.git fsnotify
7910 F:      fs/notify/
7911 F:      include/linux/fsnotify*.h
7912
7913 FSVERITY: READ-ONLY FILE-BASED AUTHENTICITY PROTECTION
7914 M:      Eric Biggers <ebiggers@kernel.org>
7915 M:      Theodore Y. Ts'o <tytso@mit.edu>
7916 L:      linux-fscrypt@vger.kernel.org
7917 S:      Supported
7918 Q:      https://patchwork.kernel.org/project/linux-fscrypt/list/
7919 T:      git git://git.kernel.org/pub/scm/fs/fscrypt/fscrypt.git fsverity
7920 F:      Documentation/filesystems/fsverity.rst
7921 F:      fs/verity/
7922 F:      include/linux/fsverity.h
7923 F:      include/uapi/linux/fsverity.h
7924
7925 FT260 FTDI USB-HID TO I2C BRIDGE DRIVER
7926 M:      Michael Zaidman <michael.zaidman@gmail.com>
7927 L:      linux-i2c@vger.kernel.org
7928 L:      linux-input@vger.kernel.org
7929 S:      Maintained
7930 F:      drivers/hid/hid-ft260.c
7931
7932 FUJITSU LAPTOP EXTRAS
7933 M:      Jonathan Woithe <jwoithe@just42.net>
7934 L:      platform-driver-x86@vger.kernel.org
7935 S:      Maintained
7936 F:      drivers/platform/x86/fujitsu-laptop.c
7937
7938 FUJITSU M-5MO LS CAMERA ISP DRIVER
7939 M:      Kyungmin Park <kyungmin.park@samsung.com>
7940 M:      Heungjun Kim <riverful.kim@samsung.com>
7941 L:      linux-media@vger.kernel.org
7942 S:      Maintained
7943 F:      drivers/media/i2c/m5mols/
7944 F:      include/media/i2c/m5mols.h
7945
7946 FUJITSU TABLET EXTRAS
7947 M:      Robert Gerlach <khnz@gmx.de>
7948 L:      platform-driver-x86@vger.kernel.org
7949 S:      Maintained
7950 F:      drivers/platform/x86/fujitsu-tablet.c
7951
7952 FUSE: FILESYSTEM IN USERSPACE
7953 M:      Miklos Szeredi <miklos@szeredi.hu>
7954 L:      linux-fsdevel@vger.kernel.org
7955 S:      Maintained
7956 W:      https://github.com/libfuse/
7957 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse.git
7958 F:      Documentation/filesystems/fuse.rst
7959 F:      fs/fuse/
7960 F:      include/uapi/linux/fuse.h
7961
7962 FUTEX SUBSYSTEM
7963 M:      Thomas Gleixner <tglx@linutronix.de>
7964 M:      Ingo Molnar <mingo@redhat.com>
7965 R:      Peter Zijlstra <peterz@infradead.org>
7966 R:      Darren Hart <dvhart@infradead.org>
7967 R:      Davidlohr Bueso <dave@stgolabs.net>
7968 R:      André Almeida <andrealmeid@collabora.com>
7969 L:      linux-kernel@vger.kernel.org
7970 S:      Maintained
7971 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
7972 F:      Documentation/locking/*futex*
7973 F:      include/asm-generic/futex.h
7974 F:      include/linux/futex.h
7975 F:      include/uapi/linux/futex.h
7976 F:      kernel/futex/*
7977 F:      tools/perf/bench/futex*
7978 F:      tools/testing/selftests/futex/
7979
7980 GATEWORKS SYSTEM CONTROLLER (GSC) DRIVER
7981 M:      Tim Harvey <tharvey@gateworks.com>
7982 M:      Robert Jones <rjones@gateworks.com>
7983 S:      Maintained
7984 F:      Documentation/devicetree/bindings/mfd/gateworks-gsc.yaml
7985 F:      drivers/mfd/gateworks-gsc.c
7986 F:      include/linux/mfd/gsc.h
7987 F:      Documentation/hwmon/gsc-hwmon.rst
7988 F:      drivers/hwmon/gsc-hwmon.c
7989 F:      include/linux/platform_data/gsc_hwmon.h
7990
7991 GCC PLUGINS
7992 M:      Kees Cook <keescook@chromium.org>
7993 L:      linux-hardening@vger.kernel.org
7994 S:      Maintained
7995 F:      Documentation/kbuild/gcc-plugins.rst
7996 F:      scripts/Makefile.gcc-plugins
7997 F:      scripts/gcc-plugins/
7998
7999 GCOV BASED KERNEL PROFILING
8000 M:      Peter Oberparleiter <oberpar@linux.ibm.com>
8001 S:      Maintained
8002 F:      Documentation/dev-tools/gcov.rst
8003 F:      kernel/gcov/
8004
8005 GDB KERNEL DEBUGGING HELPER SCRIPTS
8006 M:      Jan Kiszka <jan.kiszka@siemens.com>
8007 M:      Kieran Bingham <kbingham@kernel.org>
8008 S:      Supported
8009 F:      scripts/gdb/
8010
8011 GEMINI CRYPTO DRIVER
8012 M:      Corentin Labbe <clabbe@baylibre.com>
8013 L:      linux-crypto@vger.kernel.org
8014 S:      Maintained
8015 F:      drivers/crypto/gemini/
8016
8017 GEMTEK FM RADIO RECEIVER DRIVER
8018 M:      Hans Verkuil <hverkuil@xs4all.nl>
8019 L:      linux-media@vger.kernel.org
8020 S:      Maintained
8021 W:      https://linuxtv.org
8022 T:      git git://linuxtv.org/media_tree.git
8023 F:      drivers/media/radio/radio-gemtek*
8024
8025 GENERIC ARCHITECTURE TOPOLOGY
8026 M:      Sudeep Holla <sudeep.holla@arm.com>
8027 L:      linux-kernel@vger.kernel.org
8028 S:      Maintained
8029 F:      drivers/base/arch_topology.c
8030 F:      include/linux/arch_topology.h
8031
8032 GENERIC ENTRY CODE
8033 M:      Thomas Gleixner <tglx@linutronix.de>
8034 M:      Peter Zijlstra <peterz@infradead.org>
8035 M:      Andy Lutomirski <luto@kernel.org>
8036 L:      linux-kernel@vger.kernel.org
8037 S:      Maintained
8038 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/entry
8039 F:      include/linux/entry-common.h
8040 F:      include/linux/entry-kvm.h
8041 F:      kernel/entry/
8042
8043 GENERIC GPIO I2C DRIVER
8044 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
8045 S:      Supported
8046 F:      drivers/i2c/busses/i2c-gpio.c
8047 F:      include/linux/platform_data/i2c-gpio.h
8048
8049 GENERIC GPIO I2C MULTIPLEXER DRIVER
8050 M:      Peter Korsgaard <peter.korsgaard@barco.com>
8051 L:      linux-i2c@vger.kernel.org
8052 S:      Supported
8053 F:      Documentation/i2c/muxes/i2c-mux-gpio.rst
8054 F:      drivers/i2c/muxes/i2c-mux-gpio.c
8055 F:      include/linux/platform_data/i2c-mux-gpio.h
8056
8057 GENERIC HDLC (WAN) DRIVERS
8058 M:      Krzysztof Halasa <khc@pm.waw.pl>
8059 S:      Maintained
8060 W:      http://www.kernel.org/pub/linux/utils/net/hdlc/
8061 F:      drivers/net/wan/c101.c
8062 F:      drivers/net/wan/hd6457*
8063 F:      drivers/net/wan/hdlc*
8064 F:      drivers/net/wan/n2.c
8065 F:      drivers/net/wan/pc300too.c
8066 F:      drivers/net/wan/pci200syn.c
8067 F:      drivers/net/wan/wanxl*
8068
8069 GENERIC INCLUDE/ASM HEADER FILES
8070 M:      Arnd Bergmann <arnd@arndb.de>
8071 L:      linux-arch@vger.kernel.org
8072 S:      Maintained
8073 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
8074 F:      include/asm-generic/
8075 F:      include/uapi/asm-generic/
8076
8077 GENERIC PHY FRAMEWORK
8078 M:      Kishon Vijay Abraham I <kishon@ti.com>
8079 M:      Vinod Koul <vkoul@kernel.org>
8080 L:      linux-phy@lists.infradead.org
8081 S:      Supported
8082 Q:      https://patchwork.kernel.org/project/linux-phy/list/
8083 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/phy/linux-phy.git
8084 F:      Documentation/devicetree/bindings/phy/
8085 F:      drivers/phy/
8086 F:      include/linux/phy/
8087
8088 GENERIC PINCTRL I2C DEMULTIPLEXER DRIVER
8089 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
8090 S:      Supported
8091 F:      drivers/i2c/muxes/i2c-demux-pinctrl.c
8092
8093 GENERIC PM DOMAINS
8094 M:      "Rafael J. Wysocki" <rafael@kernel.org>
8095 M:      Kevin Hilman <khilman@kernel.org>
8096 M:      Ulf Hansson <ulf.hansson@linaro.org>
8097 L:      linux-pm@vger.kernel.org
8098 S:      Supported
8099 F:      Documentation/devicetree/bindings/power/power?domain*
8100 F:      drivers/base/power/domain*.c
8101 F:      include/linux/pm_domain.h
8102
8103 GENERIC RESISTIVE TOUCHSCREEN ADC DRIVER
8104 M:      Eugen Hristev <eugen.hristev@microchip.com>
8105 L:      linux-input@vger.kernel.org
8106 S:      Maintained
8107 F:      drivers/input/touchscreen/resistive-adc-touch.c
8108
8109 GENERIC STRING LIBRARY
8110 R:      Andy Shevchenko <andy@kernel.org>
8111 S:      Maintained
8112 F:      lib/string.c
8113 F:      lib/string_helpers.c
8114 F:      lib/test_string.c
8115 F:      lib/test-string_helpers.c
8116
8117 GENERIC UIO DRIVER FOR PCI DEVICES
8118 M:      "Michael S. Tsirkin" <mst@redhat.com>
8119 L:      kvm@vger.kernel.org
8120 S:      Supported
8121 F:      drivers/uio/uio_pci_generic.c
8122
8123 GENERIC VDSO LIBRARY
8124 M:      Andy Lutomirski <luto@kernel.org>
8125 M:      Thomas Gleixner <tglx@linutronix.de>
8126 M:      Vincenzo Frascino <vincenzo.frascino@arm.com>
8127 L:      linux-kernel@vger.kernel.org
8128 S:      Maintained
8129 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/vdso
8130 F:      include/asm-generic/vdso/vsyscall.h
8131 F:      include/vdso/
8132 F:      kernel/time/vsyscall.c
8133 F:      lib/vdso/
8134
8135 GENWQE (IBM Generic Workqueue Card)
8136 M:      Frank Haverkamp <haver@linux.ibm.com>
8137 S:      Supported
8138 F:      drivers/misc/genwqe/
8139
8140 GET_MAINTAINER SCRIPT
8141 M:      Joe Perches <joe@perches.com>
8142 S:      Maintained
8143 F:      scripts/get_maintainer.pl
8144
8145 GFS2 FILE SYSTEM
8146 M:      Bob Peterson <rpeterso@redhat.com>
8147 M:      Andreas Gruenbacher <agruenba@redhat.com>
8148 L:      cluster-devel@redhat.com
8149 S:      Supported
8150 B:      https://bugzilla.kernel.org/enter_bug.cgi?product=File%20System&component=gfs2
8151 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git
8152 F:      Documentation/filesystems/gfs2*
8153 F:      fs/gfs2/
8154 F:      include/uapi/linux/gfs2_ondisk.h
8155
8156 GIGABYTE WMI DRIVER
8157 M:      Thomas Weißschuh <thomas@weissschuh.net>
8158 L:      platform-driver-x86@vger.kernel.org
8159 S:      Maintained
8160 F:      drivers/platform/x86/gigabyte-wmi.c
8161
8162 GNSS SUBSYSTEM
8163 M:      Johan Hovold <johan@kernel.org>
8164 S:      Maintained
8165 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/gnss.git
8166 F:      Documentation/ABI/testing/sysfs-class-gnss
8167 F:      Documentation/devicetree/bindings/gnss/
8168 F:      drivers/gnss/
8169 F:      include/linux/gnss.h
8170
8171 GO7007 MPEG CODEC
8172 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
8173 L:      linux-media@vger.kernel.org
8174 S:      Maintained
8175 F:      drivers/media/usb/go7007/
8176
8177 GOODIX TOUCHSCREEN
8178 M:      Bastien Nocera <hadess@hadess.net>
8179 M:      Hans de Goede <hdegoede@redhat.com>
8180 L:      linux-input@vger.kernel.org
8181 S:      Maintained
8182 F:      drivers/input/touchscreen/goodix*
8183
8184 GOOGLE ETHERNET DRIVERS
8185 M:      Jeroen de Borst <jeroendb@google.com>
8186 R:      Catherine Sullivan <csully@google.com>
8187 R:      David Awogbemila <awogbemila@google.com>
8188 L:      netdev@vger.kernel.org
8189 S:      Supported
8190 F:      Documentation/networking/device_drivers/ethernet/google/gve.rst
8191 F:      drivers/net/ethernet/google
8192
8193 GPD POCKET FAN DRIVER
8194 M:      Hans de Goede <hdegoede@redhat.com>
8195 L:      platform-driver-x86@vger.kernel.org
8196 S:      Maintained
8197 F:      drivers/platform/x86/gpd-pocket-fan.c
8198
8199 GPIO ACPI SUPPORT
8200 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
8201 M:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
8202 L:      linux-gpio@vger.kernel.org
8203 L:      linux-acpi@vger.kernel.org
8204 S:      Maintained
8205 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
8206 F:      Documentation/firmware-guide/acpi/gpio-properties.rst
8207 F:      drivers/gpio/gpiolib-acpi.c
8208 F:      drivers/gpio/gpiolib-acpi.h
8209
8210 GPIO AGGREGATOR
8211 M:      Geert Uytterhoeven <geert+renesas@glider.be>
8212 L:      linux-gpio@vger.kernel.org
8213 S:      Supported
8214 F:      Documentation/admin-guide/gpio/gpio-aggregator.rst
8215 F:      drivers/gpio/gpio-aggregator.c
8216
8217 GPIO IR Transmitter
8218 M:      Sean Young <sean@mess.org>
8219 L:      linux-media@vger.kernel.org
8220 S:      Maintained
8221 F:      drivers/media/rc/gpio-ir-tx.c
8222
8223 GPIO MOCKUP DRIVER
8224 M:      Bamvor Jian Zhang <bamv2005@gmail.com>
8225 L:      linux-gpio@vger.kernel.org
8226 S:      Maintained
8227 F:      drivers/gpio/gpio-mockup.c
8228 F:      tools/testing/selftests/gpio/
8229
8230 GPIO REGMAP
8231 R:      Michael Walle <michael@walle.cc>
8232 S:      Maintained
8233 F:      drivers/gpio/gpio-regmap.c
8234 F:      include/linux/gpio/regmap.h
8235
8236 GPIO SUBSYSTEM
8237 M:      Linus Walleij <linus.walleij@linaro.org>
8238 M:      Bartosz Golaszewski <brgl@bgdev.pl>
8239 L:      linux-gpio@vger.kernel.org
8240 S:      Maintained
8241 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio.git
8242 F:      Documentation/ABI/obsolete/sysfs-gpio
8243 F:      Documentation/ABI/testing/gpio-cdev
8244 F:      Documentation/admin-guide/gpio/
8245 F:      Documentation/devicetree/bindings/gpio/
8246 F:      Documentation/driver-api/gpio/
8247 F:      drivers/gpio/
8248 F:      include/asm-generic/gpio.h
8249 F:      include/linux/gpio.h
8250 F:      include/linux/gpio/
8251 F:      include/linux/of_gpio.h
8252 F:      include/uapi/linux/gpio.h
8253 F:      tools/gpio/
8254
8255 GRE DEMULTIPLEXER DRIVER
8256 M:      Dmitry Kozlov <xeb@mail.ru>
8257 L:      netdev@vger.kernel.org
8258 S:      Maintained
8259 F:      include/net/gre.h
8260 F:      net/ipv4/gre_demux.c
8261 F:      net/ipv4/gre_offload.c
8262
8263 GRETH 10/100/1G Ethernet MAC device driver
8264 M:      Andreas Larsson <andreas@gaisler.com>
8265 L:      netdev@vger.kernel.org
8266 S:      Maintained
8267 F:      drivers/net/ethernet/aeroflex/
8268
8269 GREYBUS AUDIO PROTOCOLS DRIVERS
8270 M:      Vaibhav Agarwal <vaibhav.sr@gmail.com>
8271 M:      Mark Greer <mgreer@animalcreek.com>
8272 S:      Maintained
8273 F:      drivers/staging/greybus/audio_apbridgea.c
8274 F:      drivers/staging/greybus/audio_apbridgea.h
8275 F:      drivers/staging/greybus/audio_codec.c
8276 F:      drivers/staging/greybus/audio_codec.h
8277 F:      drivers/staging/greybus/audio_gb.c
8278 F:      drivers/staging/greybus/audio_manager.c
8279 F:      drivers/staging/greybus/audio_manager.h
8280 F:      drivers/staging/greybus/audio_manager_module.c
8281 F:      drivers/staging/greybus/audio_manager_private.h
8282 F:      drivers/staging/greybus/audio_manager_sysfs.c
8283 F:      drivers/staging/greybus/audio_module.c
8284 F:      drivers/staging/greybus/audio_topology.c
8285
8286 GREYBUS FW/HID/SPI PROTOCOLS DRIVERS
8287 M:      Viresh Kumar <vireshk@kernel.org>
8288 S:      Maintained
8289 F:      drivers/staging/greybus/authentication.c
8290 F:      drivers/staging/greybus/bootrom.c
8291 F:      drivers/staging/greybus/firmware.h
8292 F:      drivers/staging/greybus/fw-core.c
8293 F:      drivers/staging/greybus/fw-download.c
8294 F:      drivers/staging/greybus/fw-management.c
8295 F:      drivers/staging/greybus/greybus_authentication.h
8296 F:      drivers/staging/greybus/greybus_firmware.h
8297 F:      drivers/staging/greybus/hid.c
8298 F:      drivers/staging/greybus/i2c.c
8299 F:      drivers/staging/greybus/spi.c
8300 F:      drivers/staging/greybus/spilib.c
8301 F:      drivers/staging/greybus/spilib.h
8302
8303 GREYBUS LOOPBACK DRIVER
8304 M:      Bryan O'Donoghue <pure.logic@nexus-software.ie>
8305 S:      Maintained
8306 F:      drivers/staging/greybus/loopback.c
8307
8308 GREYBUS PLATFORM DRIVERS
8309 M:      Vaibhav Hiremath <hvaibhav.linux@gmail.com>
8310 S:      Maintained
8311 F:      drivers/staging/greybus/arche-apb-ctrl.c
8312 F:      drivers/staging/greybus/arche-platform.c
8313 F:      drivers/staging/greybus/arche_platform.h
8314
8315 GREYBUS SDIO/GPIO/SPI PROTOCOLS DRIVERS
8316 M:      Rui Miguel Silva <rmfrfs@gmail.com>
8317 S:      Maintained
8318 F:      drivers/staging/greybus/gpio.c
8319 F:      drivers/staging/greybus/light.c
8320 F:      drivers/staging/greybus/power_supply.c
8321 F:      drivers/staging/greybus/sdio.c
8322 F:      drivers/staging/greybus/spi.c
8323 F:      drivers/staging/greybus/spilib.c
8324
8325 GREYBUS SUBSYSTEM
8326 M:      Johan Hovold <johan@kernel.org>
8327 M:      Alex Elder <elder@kernel.org>
8328 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
8329 L:      greybus-dev@lists.linaro.org (moderated for non-subscribers)
8330 S:      Maintained
8331 F:      drivers/greybus/
8332 F:      drivers/staging/greybus/
8333 F:      include/linux/greybus.h
8334 F:      include/linux/greybus/
8335
8336 GREYBUS UART PROTOCOLS DRIVERS
8337 M:      David Lin <dtwlin@gmail.com>
8338 S:      Maintained
8339 F:      drivers/staging/greybus/log.c
8340 F:      drivers/staging/greybus/uart.c
8341
8342 GS1662 VIDEO SERIALIZER
8343 M:      Charles-Antoine Couret <charles-antoine.couret@nexvision.fr>
8344 L:      linux-media@vger.kernel.org
8345 S:      Maintained
8346 T:      git git://linuxtv.org/media_tree.git
8347 F:      drivers/media/spi/gs1662.c
8348
8349 GSPCA FINEPIX SUBDRIVER
8350 M:      Frank Zago <frank@zago.net>
8351 L:      linux-media@vger.kernel.org
8352 S:      Maintained
8353 T:      git git://linuxtv.org/media_tree.git
8354 F:      drivers/media/usb/gspca/finepix.c
8355
8356 GSPCA GL860 SUBDRIVER
8357 M:      Olivier Lorin <o.lorin@laposte.net>
8358 L:      linux-media@vger.kernel.org
8359 S:      Maintained
8360 T:      git git://linuxtv.org/media_tree.git
8361 F:      drivers/media/usb/gspca/gl860/
8362
8363 GSPCA M5602 SUBDRIVER
8364 M:      Erik Andren <erik.andren@gmail.com>
8365 L:      linux-media@vger.kernel.org
8366 S:      Maintained
8367 T:      git git://linuxtv.org/media_tree.git
8368 F:      drivers/media/usb/gspca/m5602/
8369
8370 GSPCA PAC207 SONIXB SUBDRIVER
8371 M:      Hans Verkuil <hverkuil@xs4all.nl>
8372 L:      linux-media@vger.kernel.org
8373 S:      Odd Fixes
8374 T:      git git://linuxtv.org/media_tree.git
8375 F:      drivers/media/usb/gspca/pac207.c
8376
8377 GSPCA SN9C20X SUBDRIVER
8378 M:      Brian Johnson <brijohn@gmail.com>
8379 L:      linux-media@vger.kernel.org
8380 S:      Maintained
8381 T:      git git://linuxtv.org/media_tree.git
8382 F:      drivers/media/usb/gspca/sn9c20x.c
8383
8384 GSPCA T613 SUBDRIVER
8385 M:      Leandro Costantino <lcostantino@gmail.com>
8386 L:      linux-media@vger.kernel.org
8387 S:      Maintained
8388 T:      git git://linuxtv.org/media_tree.git
8389 F:      drivers/media/usb/gspca/t613.c
8390
8391 GSPCA USB WEBCAM DRIVER
8392 M:      Hans Verkuil <hverkuil@xs4all.nl>
8393 L:      linux-media@vger.kernel.org
8394 S:      Odd Fixes
8395 T:      git git://linuxtv.org/media_tree.git
8396 F:      drivers/media/usb/gspca/
8397
8398 GTP (GPRS Tunneling Protocol)
8399 M:      Pablo Neira Ayuso <pablo@netfilter.org>
8400 M:      Harald Welte <laforge@gnumonks.org>
8401 L:      osmocom-net-gprs@lists.osmocom.org
8402 S:      Maintained
8403 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/gtp.git
8404 F:      drivers/net/gtp.c
8405
8406 GUID PARTITION TABLE (GPT)
8407 M:      Davidlohr Bueso <dave@stgolabs.net>
8408 L:      linux-efi@vger.kernel.org
8409 S:      Maintained
8410 F:      block/partitions/efi.*
8411
8412 H8/300 ARCHITECTURE
8413 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
8414 L:      uclinux-h8-devel@lists.sourceforge.jp (moderated for non-subscribers)
8415 S:      Maintained
8416 W:      http://uclinux-h8.sourceforge.jp
8417 T:      git git://git.sourceforge.jp/gitroot/uclinux-h8/linux.git
8418 F:      arch/h8300/
8419 F:      drivers/clk/h8300/
8420 F:      drivers/clocksource/h8300_*.c
8421 F:      drivers/irqchip/irq-renesas-h8*.c
8422
8423 HABANALABS PCI DRIVER
8424 M:      Oded Gabbay <ogabbay@kernel.org>
8425 S:      Supported
8426 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/ogabbay/linux.git
8427 F:      Documentation/ABI/testing/debugfs-driver-habanalabs
8428 F:      Documentation/ABI/testing/sysfs-driver-habanalabs
8429 F:      drivers/misc/habanalabs/
8430 F:      include/uapi/misc/habanalabs.h
8431
8432 HACKRF MEDIA DRIVER
8433 M:      Antti Palosaari <crope@iki.fi>
8434 L:      linux-media@vger.kernel.org
8435 S:      Maintained
8436 W:      https://linuxtv.org
8437 W:      http://palosaari.fi/linux/
8438 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8439 T:      git git://linuxtv.org/anttip/media_tree.git
8440 F:      drivers/media/usb/hackrf/
8441
8442 HANTRO VPU CODEC DRIVER
8443 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
8444 M:      Philipp Zabel <p.zabel@pengutronix.de>
8445 L:      linux-media@vger.kernel.org
8446 L:      linux-rockchip@lists.infradead.org
8447 S:      Maintained
8448 F:      Documentation/devicetree/bindings/media/nxp,imx8mq-vpu.yaml
8449 F:      Documentation/devicetree/bindings/media/rockchip-vpu.yaml
8450 F:      drivers/staging/media/hantro/
8451
8452 HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
8453 M:      Frank Seidel <frank@f-seidel.de>
8454 L:      platform-driver-x86@vger.kernel.org
8455 S:      Maintained
8456 W:      http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
8457 F:      drivers/platform/x86/hdaps.c
8458
8459 HARDWARE MONITORING
8460 M:      Jean Delvare <jdelvare@suse.com>
8461 M:      Guenter Roeck <linux@roeck-us.net>
8462 L:      linux-hwmon@vger.kernel.org
8463 S:      Maintained
8464 W:      http://hwmon.wiki.kernel.org/
8465 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
8466 F:      Documentation/ABI/testing/sysfs-class-hwmon
8467 F:      Documentation/devicetree/bindings/hwmon/
8468 F:      Documentation/hwmon/
8469 F:      drivers/hwmon/
8470 F:      include/linux/hwmon*.h
8471 F:      include/trace/events/hwmon*.h
8472 K:      (devm_)?hwmon_device_(un)?register(|_with_groups|_with_info)
8473
8474 HARDWARE RANDOM NUMBER GENERATOR CORE
8475 M:      Matt Mackall <mpm@selenic.com>
8476 M:      Herbert Xu <herbert@gondor.apana.org.au>
8477 L:      linux-crypto@vger.kernel.org
8478 S:      Odd fixes
8479 F:      Documentation/admin-guide/hw_random.rst
8480 F:      Documentation/devicetree/bindings/rng/
8481 F:      drivers/char/hw_random/
8482 F:      include/linux/hw_random.h
8483
8484 HARDWARE SPINLOCK CORE
8485 M:      Ohad Ben-Cohen <ohad@wizery.com>
8486 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
8487 R:      Baolin Wang <baolin.wang7@gmail.com>
8488 L:      linux-remoteproc@vger.kernel.org
8489 S:      Maintained
8490 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git hwspinlock-next
8491 F:      Documentation/devicetree/bindings/hwlock/
8492 F:      Documentation/locking/hwspinlock.rst
8493 F:      drivers/hwspinlock/
8494 F:      include/linux/hwspinlock.h
8495
8496 HARDWARE TRACING FACILITIES
8497 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
8498 S:      Maintained
8499 F:      drivers/hwtracing/
8500
8501 HARMONY SOUND DRIVER
8502 L:      linux-parisc@vger.kernel.org
8503 S:      Maintained
8504 F:      sound/parisc/harmony.*
8505
8506 HDPVR USB VIDEO ENCODER DRIVER
8507 M:      Hans Verkuil <hverkuil@xs4all.nl>
8508 L:      linux-media@vger.kernel.org
8509 S:      Odd Fixes
8510 W:      https://linuxtv.org
8511 T:      git git://linuxtv.org/media_tree.git
8512 F:      drivers/media/usb/hdpvr/
8513
8514 HEWLETT PACKARD ENTERPRISE ILO CHIF DRIVER
8515 M:      Matt Hsiao <matt.hsiao@hpe.com>
8516 S:      Supported
8517 F:      drivers/misc/hpilo.[ch]
8518
8519 HEWLETT PACKARD ENTERPRISE ILO NMI WATCHDOG DRIVER
8520 M:      Jerry Hoemann <jerry.hoemann@hpe.com>
8521 S:      Supported
8522 F:      Documentation/watchdog/hpwdt.rst
8523 F:      drivers/watchdog/hpwdt.c
8524
8525 HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
8526 M:      Don Brace <don.brace@microchip.com>
8527 L:      storagedev@microchip.com
8528 L:      linux-scsi@vger.kernel.org
8529 S:      Supported
8530 F:      Documentation/scsi/hpsa.rst
8531 F:      drivers/scsi/hpsa*.[ch]
8532 F:      include/linux/cciss*.h
8533 F:      include/uapi/linux/cciss*.h
8534
8535 HFI1 DRIVER
8536 M:      Mike Marciniszyn <mike.marciniszyn@cornelisnetworks.com>
8537 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
8538 L:      linux-rdma@vger.kernel.org
8539 S:      Supported
8540 F:      drivers/infiniband/hw/hfi1
8541
8542 HFS FILESYSTEM
8543 L:      linux-fsdevel@vger.kernel.org
8544 S:      Orphan
8545 F:      Documentation/filesystems/hfs.rst
8546 F:      fs/hfs/
8547
8548 HFSPLUS FILESYSTEM
8549 L:      linux-fsdevel@vger.kernel.org
8550 S:      Orphan
8551 F:      Documentation/filesystems/hfsplus.rst
8552 F:      fs/hfsplus/
8553
8554 HGA FRAMEBUFFER DRIVER
8555 M:      Ferenc Bakonyi <fero@drama.obuda.kando.hu>
8556 L:      linux-nvidia@lists.surfsouth.com
8557 S:      Maintained
8558 W:      http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
8559 F:      drivers/video/fbdev/hgafb.c
8560
8561 HIBERNATION (aka Software Suspend, aka swsusp)
8562 M:      "Rafael J. Wysocki" <rafael@kernel.org>
8563 M:      Pavel Machek <pavel@ucw.cz>
8564 L:      linux-pm@vger.kernel.org
8565 S:      Supported
8566 B:      https://bugzilla.kernel.org
8567 F:      arch/*/include/asm/suspend*.h
8568 F:      arch/x86/power/
8569 F:      drivers/base/power/
8570 F:      include/linux/freezer.h
8571 F:      include/linux/pm.h
8572 F:      include/linux/suspend.h
8573 F:      kernel/power/
8574
8575 HID CORE LAYER
8576 M:      Jiri Kosina <jikos@kernel.org>
8577 M:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
8578 L:      linux-input@vger.kernel.org
8579 S:      Maintained
8580 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
8581 F:      drivers/hid/
8582 F:      include/linux/hid*
8583 F:      include/uapi/linux/hid*
8584
8585 HID LOGITECH DRIVERS
8586 R:      Filipe Laíns <lains@riseup.net>
8587 L:      linux-input@vger.kernel.org
8588 S:      Maintained
8589 F:      drivers/hid/hid-logitech-*
8590
8591 HID PLAYSTATION DRIVER
8592 M:      Roderick Colenbrander <roderick.colenbrander@sony.com>
8593 L:      linux-input@vger.kernel.org
8594 S:      Supported
8595 F:      drivers/hid/hid-playstation.c
8596
8597 HID SENSOR HUB DRIVERS
8598 M:      Jiri Kosina <jikos@kernel.org>
8599 M:      Jonathan Cameron <jic23@kernel.org>
8600 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
8601 L:      linux-input@vger.kernel.org
8602 L:      linux-iio@vger.kernel.org
8603 S:      Maintained
8604 F:      Documentation/hid/hid-sensor*
8605 F:      drivers/hid/hid-sensor-*
8606 F:      drivers/iio/*/hid-*
8607 F:      include/linux/hid-sensor-*
8608
8609 HIGH-RESOLUTION TIMERS, CLOCKEVENTS
8610 M:      Thomas Gleixner <tglx@linutronix.de>
8611 L:      linux-kernel@vger.kernel.org
8612 S:      Maintained
8613 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
8614 F:      Documentation/timers/
8615 F:      include/linux/clockchips.h
8616 F:      include/linux/hrtimer.h
8617 F:      kernel/time/clockevents.c
8618 F:      kernel/time/hrtimer.c
8619 F:      kernel/time/timer_*.c
8620
8621 HIGH-SPEED SCC DRIVER FOR AX.25
8622 L:      linux-hams@vger.kernel.org
8623 S:      Orphan
8624 F:      drivers/net/hamradio/dmascc.c
8625 F:      drivers/net/hamradio/scc.c
8626
8627 HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
8628 M:      HighPoint Linux Team <linux@highpoint-tech.com>
8629 S:      Supported
8630 W:      http://www.highpoint-tech.com
8631 F:      Documentation/scsi/hptiop.rst
8632 F:      drivers/scsi/hptiop.c
8633
8634 HIPPI
8635 M:      Jes Sorensen <jes@trained-monkey.org>
8636 L:      linux-hippi@sunsite.dk
8637 S:      Maintained
8638 F:      drivers/net/hippi/
8639 F:      include/linux/hippidevice.h
8640 F:      include/uapi/linux/if_hippi.h
8641 F:      net/802/hippi.c
8642
8643 HIRSCHMANN HELLCREEK ETHERNET SWITCH DRIVER
8644 M:      Kurt Kanzenbach <kurt@linutronix.de>
8645 L:      netdev@vger.kernel.org
8646 S:      Maintained
8647 F:      Documentation/devicetree/bindings/net/dsa/hirschmann,hellcreek.yaml
8648 F:      drivers/net/dsa/hirschmann/*
8649 F:      include/linux/platform_data/hirschmann-hellcreek.h
8650 F:      net/dsa/tag_hellcreek.c
8651
8652 HISILICON DMA DRIVER
8653 M:      Zhou Wang <wangzhou1@hisilicon.com>
8654 L:      dmaengine@vger.kernel.org
8655 S:      Maintained
8656 F:      drivers/dma/hisi_dma.c
8657
8658 HISILICON GPIO DRIVER
8659 M:      Luo Jiaxing <luojiaxing@huawei.com>
8660 L:      linux-gpio@vger.kernel.org
8661 S:      Maintained
8662 F:      drivers/gpio/gpio-hisi.c
8663
8664 HISILICON HIGH PERFORMANCE RSA ENGINE DRIVER (HPRE)
8665 M:      Longfang Liu <liulongfang@huawei.com>
8666 L:      linux-crypto@vger.kernel.org
8667 S:      Maintained
8668 F:      Documentation/ABI/testing/debugfs-hisi-hpre
8669 F:      drivers/crypto/hisilicon/hpre/hpre.h
8670 F:      drivers/crypto/hisilicon/hpre/hpre_crypto.c
8671 F:      drivers/crypto/hisilicon/hpre/hpre_main.c
8672
8673 HISILICON I2C CONTROLLER DRIVER
8674 M:      Yicong Yang <yangyicong@hisilicon.com>
8675 L:      linux-i2c@vger.kernel.org
8676 S:      Maintained
8677 W:      https://www.hisilicon.com
8678 F:      drivers/i2c/busses/i2c-hisi.c
8679
8680 HISILICON LPC BUS DRIVER
8681 M:      john.garry@huawei.com
8682 S:      Maintained
8683 W:      http://www.hisilicon.com
8684 F:      Documentation/devicetree/bindings/arm/hisilicon/low-pin-count.yaml
8685 F:      drivers/bus/hisi_lpc.c
8686
8687 HISILICON NETWORK SUBSYSTEM 3 DRIVER (HNS3)
8688 M:      Yisen Zhuang <yisen.zhuang@huawei.com>
8689 M:      Salil Mehta <salil.mehta@huawei.com>
8690 L:      netdev@vger.kernel.org
8691 S:      Maintained
8692 W:      http://www.hisilicon.com
8693 F:      drivers/net/ethernet/hisilicon/hns3/
8694
8695 HISILICON NETWORK SUBSYSTEM DRIVER
8696 M:      Yisen Zhuang <yisen.zhuang@huawei.com>
8697 M:      Salil Mehta <salil.mehta@huawei.com>
8698 L:      netdev@vger.kernel.org
8699 S:      Maintained
8700 W:      http://www.hisilicon.com
8701 F:      Documentation/devicetree/bindings/net/hisilicon*.txt
8702 F:      drivers/net/ethernet/hisilicon/
8703
8704 HIKEY960 ONBOARD USB GPIO HUB DRIVER
8705 M:      John Stultz <john.stultz@linaro.org>
8706 L:      linux-kernel@vger.kernel.org
8707 S:      Maintained
8708 F:      drivers/misc/hisi_hikey_usb.c
8709
8710 HISILICON PMU DRIVER
8711 M:      Shaokun Zhang <zhangshaokun@hisilicon.com>
8712 M:      Qi Liu <liuqi115@huawei.com>
8713 S:      Supported
8714 W:      http://www.hisilicon.com
8715 F:      Documentation/admin-guide/perf/hisi-pcie-pmu.rst
8716 F:      Documentation/admin-guide/perf/hisi-pmu.rst
8717 F:      drivers/perf/hisilicon
8718
8719 HISILICON QM AND ZIP Controller DRIVER
8720 M:      Zhou Wang <wangzhou1@hisilicon.com>
8721 L:      linux-crypto@vger.kernel.org
8722 S:      Maintained
8723 F:      Documentation/ABI/testing/debugfs-hisi-zip
8724 F:      drivers/crypto/hisilicon/qm.c
8725 F:      drivers/crypto/hisilicon/qm.h
8726 F:      drivers/crypto/hisilicon/sgl.c
8727 F:      drivers/crypto/hisilicon/zip/
8728
8729 HISILICON ROCE DRIVER
8730 M:      Wenpeng Liang <liangwenpeng@huawei.com>
8731 M:      Weihang Li <liweihang@huawei.com>
8732 L:      linux-rdma@vger.kernel.org
8733 S:      Maintained
8734 F:      Documentation/devicetree/bindings/infiniband/hisilicon-hns-roce.txt
8735 F:      drivers/infiniband/hw/hns/
8736
8737 HISILICON SAS Controller
8738 M:      John Garry <john.garry@huawei.com>
8739 S:      Supported
8740 W:      http://www.hisilicon.com
8741 F:      Documentation/devicetree/bindings/scsi/hisilicon-sas.txt
8742 F:      drivers/scsi/hisi_sas/
8743
8744 HISILICON SECURITY ENGINE V2 DRIVER (SEC2)
8745 M:      Kai Ye <yekai13@huawei.com>
8746 M:      Longfang Liu <liulongfang@huawei.com>
8747 L:      linux-crypto@vger.kernel.org
8748 S:      Maintained
8749 F:      Documentation/ABI/testing/debugfs-hisi-sec
8750 F:      drivers/crypto/hisilicon/sec2/sec.h
8751 F:      drivers/crypto/hisilicon/sec2/sec_crypto.c
8752 F:      drivers/crypto/hisilicon/sec2/sec_crypto.h
8753 F:      drivers/crypto/hisilicon/sec2/sec_main.c
8754
8755 HISILICON SPI Controller DRIVER FOR KUNPENG SOCS
8756 M:      Jay Fang <f.fangjian@huawei.com>
8757 L:      linux-spi@vger.kernel.org
8758 S:      Maintained
8759 W:      http://www.hisilicon.com
8760 F:      drivers/spi/spi-hisi-kunpeng.c
8761
8762 HISILICON SPMI CONTROLLER DRIVER FOR HIKEY 970
8763 M:      Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
8764 L:      linux-kernel@vger.kernel.org
8765 S:      Maintained
8766 F:      Documentation/devicetree/bindings/spmi/hisilicon,hisi-spmi-controller.yaml
8767 F:      drivers/spmi/hisi-spmi-controller.c
8768
8769 HISILICON SPMI PMIC DRIVER FOR HIKEY 6421v600
8770 M:      Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
8771 L:      linux-kernel@vger.kernel.org
8772 S:      Maintained
8773 F:      Documentation/devicetree/bindings/mfd/hisilicon,hi6421-spmi-pmic.yaml
8774 F:      drivers/mfd/hi6421-spmi-pmic.c
8775
8776 HISILICON TRUE RANDOM NUMBER GENERATOR V2 SUPPORT
8777 M:      Weili Qian <qianweili@huawei.com>
8778 S:      Maintained
8779 F:      drivers/crypto/hisilicon/trng/trng.c
8780
8781 HISILICON V3XX SPI NOR FLASH Controller Driver
8782 M:      John Garry <john.garry@huawei.com>
8783 S:      Maintained
8784 W:      http://www.hisilicon.com
8785 F:      drivers/spi/spi-hisi-sfc-v3xx.c
8786
8787 HMM - Heterogeneous Memory Management
8788 M:      Jérôme Glisse <jglisse@redhat.com>
8789 L:      linux-mm@kvack.org
8790 S:      Maintained
8791 F:      Documentation/vm/hmm.rst
8792 F:      include/linux/hmm*
8793 F:      lib/test_hmm*
8794 F:      mm/hmm*
8795 F:      tools/testing/selftests/vm/*hmm*
8796
8797 HOST AP DRIVER
8798 M:      Jouni Malinen <j@w1.fi>
8799 L:      linux-wireless@vger.kernel.org
8800 S:      Obsolete
8801 W:      http://w1.fi/hostap-driver.html
8802 F:      drivers/net/wireless/intersil/hostap/
8803
8804 HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
8805 L:      platform-driver-x86@vger.kernel.org
8806 S:      Orphan
8807 F:      drivers/platform/x86/tc1100-wmi.c
8808
8809 HPET:   High Precision Event Timers driver
8810 M:      Clemens Ladisch <clemens@ladisch.de>
8811 S:      Maintained
8812 F:      Documentation/timers/hpet.rst
8813 F:      drivers/char/hpet.c
8814 F:      include/linux/hpet.h
8815 F:      include/uapi/linux/hpet.h
8816
8817 HPET:   x86
8818 S:      Orphan
8819 F:      arch/x86/include/asm/hpet.h
8820 F:      arch/x86/kernel/hpet.c
8821
8822 HPFS FILESYSTEM
8823 M:      Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
8824 S:      Maintained
8825 W:      http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
8826 F:      fs/hpfs/
8827
8828 HSI SUBSYSTEM
8829 M:      Sebastian Reichel <sre@kernel.org>
8830 S:      Maintained
8831 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git
8832 F:      Documentation/ABI/testing/sysfs-bus-hsi
8833 F:      Documentation/driver-api/hsi.rst
8834 F:      drivers/hsi/
8835 F:      include/linux/hsi/
8836 F:      include/uapi/linux/hsi/
8837
8838 HSO 3G MODEM DRIVER
8839 L:      linux-usb@vger.kernel.org
8840 S:      Orphan
8841 F:      drivers/net/usb/hso.c
8842
8843 HSR NETWORK PROTOCOL
8844 L:      netdev@vger.kernel.org
8845 S:      Orphan
8846 F:      net/hsr/
8847
8848 HT16K33 LED CONTROLLER DRIVER
8849 M:      Robin van der Gracht <robin@protonic.nl>
8850 S:      Maintained
8851 F:      Documentation/devicetree/bindings/auxdisplay/holtek,ht16k33.yaml
8852 F:      drivers/auxdisplay/ht16k33.c
8853
8854 HTCPEN TOUCHSCREEN DRIVER
8855 M:      Pau Oliva Fora <pof@eslack.org>
8856 L:      linux-input@vger.kernel.org
8857 S:      Maintained
8858 F:      drivers/input/touchscreen/htcpen.c
8859
8860 HTS221 TEMPERATURE-HUMIDITY IIO DRIVER
8861 M:      Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
8862 L:      linux-iio@vger.kernel.org
8863 S:      Maintained
8864 W:      http://www.st.com/
8865 F:      Documentation/devicetree/bindings/iio/humidity/st,hts221.yaml
8866 F:      drivers/iio/humidity/hts221*
8867
8868 HUAWEI ETHERNET DRIVER
8869 L:      netdev@vger.kernel.org
8870 S:      Orphan
8871 F:      Documentation/networking/device_drivers/ethernet/huawei/hinic.rst
8872 F:      drivers/net/ethernet/huawei/hinic/
8873
8874 HUGETLB FILESYSTEM
8875 M:      Mike Kravetz <mike.kravetz@oracle.com>
8876 L:      linux-mm@kvack.org
8877 S:      Maintained
8878 F:      Documentation/ABI/testing/sysfs-kernel-mm-hugepages
8879 F:      Documentation/admin-guide/mm/hugetlbpage.rst
8880 F:      Documentation/vm/hugetlbfs_reserv.rst
8881 F:      fs/hugetlbfs/
8882 F:      include/linux/hugetlb.h
8883 F:      mm/hugetlb.c
8884
8885 HVA ST MEDIA DRIVER
8886 M:      Jean-Christophe Trotin <jean-christophe.trotin@foss.st.com>
8887 L:      linux-media@vger.kernel.org
8888 S:      Supported
8889 W:      https://linuxtv.org
8890 T:      git git://linuxtv.org/media_tree.git
8891 F:      drivers/media/platform/st/sti/hva
8892
8893 HWPOISON MEMORY FAILURE HANDLING
8894 M:      Naoya Horiguchi <naoya.horiguchi@nec.com>
8895 L:      linux-mm@kvack.org
8896 S:      Maintained
8897 F:      mm/hwpoison-inject.c
8898 F:      mm/memory-failure.c
8899
8900 HYCON HY46XX TOUCHSCREEN SUPPORT
8901 M:      Giulio Benetti <giulio.benetti@benettiengineering.com>
8902 L:      linux-input@vger.kernel.org
8903 S:      Maintained
8904 F:      Documentation/devicetree/bindings/input/touchscreen/hycon,hy46xx.yaml
8905 F:      drivers/input/touchscreen/hycon-hy46xx.c
8906
8907 HYGON PROCESSOR SUPPORT
8908 M:      Pu Wen <puwen@hygon.cn>
8909 L:      linux-kernel@vger.kernel.org
8910 S:      Maintained
8911 F:      arch/x86/kernel/cpu/hygon.c
8912
8913 HYNIX HI556 SENSOR DRIVER
8914 M:      Shawn Tu <shawnx.tu@intel.com>
8915 L:      linux-media@vger.kernel.org
8916 S:      Maintained
8917 T:      git git://linuxtv.org/media_tree.git
8918 F:      drivers/media/i2c/hi556.c
8919
8920 HYNIX HI846 SENSOR DRIVER
8921 M:      Martin Kepplinger <martin.kepplinger@puri.sm>
8922 L:      linux-media@vger.kernel.org
8923 S:      Maintained
8924 F:      drivers/media/i2c/hi846.c
8925
8926 HYNIX HI847 SENSOR DRIVER
8927 M:      Shawn Tu <shawnx.tu@intel.com>
8928 L:      linux-media@vger.kernel.org
8929 S:      Maintained
8930 F:      drivers/media/i2c/hi847.c
8931
8932 Hyper-V/Azure CORE AND DRIVERS
8933 M:      "K. Y. Srinivasan" <kys@microsoft.com>
8934 M:      Haiyang Zhang <haiyangz@microsoft.com>
8935 M:      Stephen Hemminger <sthemmin@microsoft.com>
8936 M:      Wei Liu <wei.liu@kernel.org>
8937 M:      Dexuan Cui <decui@microsoft.com>
8938 L:      linux-hyperv@vger.kernel.org
8939 S:      Supported
8940 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hyperv/linux.git
8941 F:      Documentation/ABI/stable/sysfs-bus-vmbus
8942 F:      Documentation/ABI/testing/debugfs-hyperv
8943 F:      Documentation/networking/device_drivers/ethernet/microsoft/netvsc.rst
8944 F:      arch/arm64/hyperv
8945 F:      arch/arm64/include/asm/hyperv-tlfs.h
8946 F:      arch/arm64/include/asm/mshyperv.h
8947 F:      arch/x86/hyperv
8948 F:      arch/x86/include/asm/hyperv-tlfs.h
8949 F:      arch/x86/include/asm/mshyperv.h
8950 F:      arch/x86/include/asm/trace/hyperv.h
8951 F:      arch/x86/kernel/cpu/mshyperv.c
8952 F:      drivers/clocksource/hyperv_timer.c
8953 F:      drivers/hid/hid-hyperv.c
8954 F:      drivers/hv/
8955 F:      drivers/input/serio/hyperv-keyboard.c
8956 F:      drivers/iommu/hyperv-iommu.c
8957 F:      drivers/net/ethernet/microsoft/
8958 F:      drivers/net/hyperv/
8959 F:      drivers/pci/controller/pci-hyperv-intf.c
8960 F:      drivers/pci/controller/pci-hyperv.c
8961 F:      drivers/scsi/storvsc_drv.c
8962 F:      drivers/uio/uio_hv_generic.c
8963 F:      drivers/video/fbdev/hyperv_fb.c
8964 F:      include/asm-generic/hyperv-tlfs.h
8965 F:      include/asm-generic/mshyperv.h
8966 F:      include/clocksource/hyperv_timer.h
8967 F:      include/linux/hyperv.h
8968 F:      include/uapi/linux/hyperv.h
8969 F:      net/vmw_vsock/hyperv_transport.c
8970 F:      tools/hv/
8971
8972 HYPERBUS SUPPORT
8973 M:      Vignesh Raghavendra <vigneshr@ti.com>
8974 L:      linux-mtd@lists.infradead.org
8975 S:      Supported
8976 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
8977 C:      irc://irc.oftc.net/mtd
8978 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git cfi/next
8979 F:      Documentation/devicetree/bindings/mtd/ti,am654-hbmc.yaml
8980 F:      drivers/mtd/hyperbus/
8981 F:      include/linux/mtd/hyperbus.h
8982
8983 HYPERVISOR VIRTUAL CONSOLE DRIVER
8984 L:      linuxppc-dev@lists.ozlabs.org
8985 S:      Odd Fixes
8986 F:      drivers/tty/hvc/
8987
8988 I2C ACPI SUPPORT
8989 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
8990 L:      linux-i2c@vger.kernel.org
8991 L:      linux-acpi@vger.kernel.org
8992 S:      Maintained
8993 F:      drivers/i2c/i2c-core-acpi.c
8994
8995 I2C CONTROLLER DRIVER FOR NVIDIA GPU
8996 M:      Ajay Gupta <ajayg@nvidia.com>
8997 L:      linux-i2c@vger.kernel.org
8998 S:      Maintained
8999 F:      Documentation/i2c/busses/i2c-nvidia-gpu.rst
9000 F:      drivers/i2c/busses/i2c-nvidia-gpu.c
9001
9002 I2C MUXES
9003 M:      Peter Rosin <peda@axentia.se>
9004 L:      linux-i2c@vger.kernel.org
9005 S:      Maintained
9006 F:      Documentation/devicetree/bindings/i2c/i2c-arb*
9007 F:      Documentation/devicetree/bindings/i2c/i2c-gate*
9008 F:      Documentation/devicetree/bindings/i2c/i2c-mux*
9009 F:      Documentation/i2c/i2c-topology.rst
9010 F:      Documentation/i2c/muxes/
9011 F:      drivers/i2c/i2c-mux.c
9012 F:      drivers/i2c/muxes/
9013 F:      include/linux/i2c-mux.h
9014
9015 I2C MV64XXX MARVELL AND ALLWINNER DRIVER
9016 M:      Gregory CLEMENT <gregory.clement@bootlin.com>
9017 L:      linux-i2c@vger.kernel.org
9018 S:      Maintained
9019 F:      Documentation/devicetree/bindings/i2c/marvell,mv64xxx-i2c.yaml
9020 F:      drivers/i2c/busses/i2c-mv64xxx.c
9021
9022 I2C OVER PARALLEL PORT
9023 M:      Jean Delvare <jdelvare@suse.com>
9024 L:      linux-i2c@vger.kernel.org
9025 S:      Maintained
9026 F:      Documentation/i2c/busses/i2c-parport.rst
9027 F:      drivers/i2c/busses/i2c-parport.c
9028
9029 I2C SUBSYSTEM
9030 M:      Wolfram Sang <wsa@kernel.org>
9031 L:      linux-i2c@vger.kernel.org
9032 S:      Maintained
9033 W:      https://i2c.wiki.kernel.org/
9034 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
9035 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
9036 F:      Documentation/devicetree/bindings/i2c/i2c.txt
9037 F:      Documentation/i2c/
9038 F:      drivers/i2c/*
9039 F:      include/linux/i2c-dev.h
9040 F:      include/linux/i2c-smbus.h
9041 F:      include/linux/i2c.h
9042 F:      include/uapi/linux/i2c-*.h
9043 F:      include/uapi/linux/i2c.h
9044
9045 I2C SUBSYSTEM HOST DRIVERS
9046 L:      linux-i2c@vger.kernel.org
9047 S:      Odd Fixes
9048 W:      https://i2c.wiki.kernel.org/
9049 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
9050 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
9051 F:      Documentation/devicetree/bindings/i2c/
9052 F:      drivers/i2c/algos/
9053 F:      drivers/i2c/busses/
9054
9055 I2C-TAOS-EVM DRIVER
9056 M:      Jean Delvare <jdelvare@suse.com>
9057 L:      linux-i2c@vger.kernel.org
9058 S:      Maintained
9059 F:      Documentation/i2c/busses/i2c-taos-evm.rst
9060 F:      drivers/i2c/busses/i2c-taos-evm.c
9061
9062 I2C-TINY-USB DRIVER
9063 M:      Till Harbaum <till@harbaum.org>
9064 L:      linux-i2c@vger.kernel.org
9065 S:      Maintained
9066 W:      http://www.harbaum.org/till/i2c_tiny_usb
9067 F:      drivers/i2c/busses/i2c-tiny-usb.c
9068
9069 I2C/SMBUS CONTROLLER DRIVERS FOR PC
9070 M:      Jean Delvare <jdelvare@suse.com>
9071 L:      linux-i2c@vger.kernel.org
9072 S:      Maintained
9073 F:      Documentation/i2c/busses/i2c-ali1535.rst
9074 F:      Documentation/i2c/busses/i2c-ali1563.rst
9075 F:      Documentation/i2c/busses/i2c-ali15x3.rst
9076 F:      Documentation/i2c/busses/i2c-amd756.rst
9077 F:      Documentation/i2c/busses/i2c-amd8111.rst
9078 F:      Documentation/i2c/busses/i2c-i801.rst
9079 F:      Documentation/i2c/busses/i2c-nforce2.rst
9080 F:      Documentation/i2c/busses/i2c-piix4.rst
9081 F:      Documentation/i2c/busses/i2c-sis5595.rst
9082 F:      Documentation/i2c/busses/i2c-sis630.rst
9083 F:      Documentation/i2c/busses/i2c-sis96x.rst
9084 F:      Documentation/i2c/busses/i2c-via.rst
9085 F:      Documentation/i2c/busses/i2c-viapro.rst
9086 F:      drivers/i2c/busses/i2c-ali1535.c
9087 F:      drivers/i2c/busses/i2c-ali1563.c
9088 F:      drivers/i2c/busses/i2c-ali15x3.c
9089 F:      drivers/i2c/busses/i2c-amd756-s4882.c
9090 F:      drivers/i2c/busses/i2c-amd756.c
9091 F:      drivers/i2c/busses/i2c-amd8111.c
9092 F:      drivers/i2c/busses/i2c-i801.c
9093 F:      drivers/i2c/busses/i2c-isch.c
9094 F:      drivers/i2c/busses/i2c-nforce2-s4985.c
9095 F:      drivers/i2c/busses/i2c-nforce2.c
9096 F:      drivers/i2c/busses/i2c-piix4.c
9097 F:      drivers/i2c/busses/i2c-sis5595.c
9098 F:      drivers/i2c/busses/i2c-sis630.c
9099 F:      drivers/i2c/busses/i2c-sis96x.c
9100 F:      drivers/i2c/busses/i2c-via.c
9101 F:      drivers/i2c/busses/i2c-viapro.c
9102
9103 I2C/SMBUS INTEL CHT WHISKEY COVE PMIC DRIVER
9104 M:      Hans de Goede <hdegoede@redhat.com>
9105 L:      linux-i2c@vger.kernel.org
9106 S:      Maintained
9107 F:      drivers/i2c/busses/i2c-cht-wc.c
9108
9109 I2C/SMBUS ISMT DRIVER
9110 M:      Seth Heasley <seth.heasley@intel.com>
9111 M:      Neil Horman <nhorman@tuxdriver.com>
9112 L:      linux-i2c@vger.kernel.org
9113 F:      Documentation/i2c/busses/i2c-ismt.rst
9114 F:      drivers/i2c/busses/i2c-ismt.c
9115
9116 I2C/SMBUS STUB DRIVER
9117 M:      Jean Delvare <jdelvare@suse.com>
9118 L:      linux-i2c@vger.kernel.org
9119 S:      Maintained
9120 F:      drivers/i2c/i2c-stub.c
9121
9122 I3C DRIVER FOR CADENCE I3C MASTER IP
9123 M:      Przemysław Gaj <pgaj@cadence.com>
9124 S:      Maintained
9125 F:      Documentation/devicetree/bindings/i3c/cdns,i3c-master.txt
9126 F:      drivers/i3c/master/i3c-master-cdns.c
9127
9128 I3C DRIVER FOR SYNOPSYS DESIGNWARE
9129 M:      Vitor Soares <vitor.soares@synopsys.com>
9130 S:      Maintained
9131 F:      Documentation/devicetree/bindings/i3c/snps,dw-i3c-master.txt
9132 F:      drivers/i3c/master/dw*
9133
9134 I3C SUBSYSTEM
9135 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
9136 L:      linux-i3c@lists.infradead.org (moderated for non-subscribers)
9137 S:      Maintained
9138 C:      irc://chat.freenode.net/linux-i3c
9139 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/i3c/linux.git
9140 F:      Documentation/ABI/testing/sysfs-bus-i3c
9141 F:      Documentation/devicetree/bindings/i3c/
9142 F:      Documentation/driver-api/i3c
9143 F:      drivers/i3c/
9144 F:      include/linux/i3c/
9145
9146 IA64 (Itanium) PLATFORM
9147 L:      linux-ia64@vger.kernel.org
9148 S:      Orphan
9149 F:      Documentation/ia64/
9150 F:      arch/ia64/
9151
9152 IBM Power 842 compression accelerator
9153 M:      Haren Myneni <haren@us.ibm.com>
9154 S:      Supported
9155 F:      crypto/842.c
9156 F:      drivers/crypto/nx/Kconfig
9157 F:      drivers/crypto/nx/Makefile
9158 F:      drivers/crypto/nx/nx-842*
9159 F:      include/linux/sw842.h
9160 F:      lib/842/
9161
9162 IBM Power in-Nest Crypto Acceleration
9163 M:      Breno Leitão <leitao@debian.org>
9164 M:      Nayna Jain <nayna@linux.ibm.com>
9165 M:      Paulo Flabiano Smorigo <pfsmorigo@gmail.com>
9166 L:      linux-crypto@vger.kernel.org
9167 S:      Supported
9168 F:      drivers/crypto/nx/Kconfig
9169 F:      drivers/crypto/nx/Makefile
9170 F:      drivers/crypto/nx/nx-aes*
9171 F:      drivers/crypto/nx/nx-sha*
9172 F:      drivers/crypto/nx/nx.*
9173 F:      drivers/crypto/nx/nx_csbcpb.h
9174 F:      drivers/crypto/nx/nx_debugfs.c
9175
9176 IBM Power IO DLPAR Driver for RPA-compliant PPC64 platform
9177 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
9178 L:      linux-pci@vger.kernel.org
9179 L:      linuxppc-dev@lists.ozlabs.org
9180 S:      Supported
9181 F:      drivers/pci/hotplug/rpadlpar*
9182
9183 IBM Power Linux RAID adapter
9184 M:      Brian King <brking@us.ibm.com>
9185 S:      Supported
9186 F:      drivers/scsi/ipr.*
9187
9188 IBM Power PCI Hotplug Driver for RPA-compliant PPC64 platform
9189 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
9190 L:      linux-pci@vger.kernel.org
9191 L:      linuxppc-dev@lists.ozlabs.org
9192 S:      Supported
9193 F:      drivers/pci/hotplug/rpaphp*
9194
9195 IBM Power SRIOV Virtual NIC Device Driver
9196 M:      Dany Madden <drt@linux.ibm.com>
9197 M:      Sukadev Bhattiprolu <sukadev@linux.ibm.com>
9198 R:      Thomas Falcon <tlfalcon@linux.ibm.com>
9199 L:      netdev@vger.kernel.org
9200 S:      Supported
9201 F:      drivers/net/ethernet/ibm/ibmvnic.*
9202
9203 IBM Power Virtual Accelerator Switchboard
9204 M:      Sukadev Bhattiprolu <sukadev@linux.ibm.com>
9205 L:      linuxppc-dev@lists.ozlabs.org
9206 S:      Supported
9207 F:      arch/powerpc/include/asm/vas.h
9208 F:      arch/powerpc/platforms/powernv/copy-paste.h
9209 F:      arch/powerpc/platforms/powernv/vas*
9210
9211 IBM Power Virtual Ethernet Device Driver
9212 M:      Cristobal Forno <cforno12@linux.ibm.com>
9213 L:      netdev@vger.kernel.org
9214 S:      Supported
9215 F:      drivers/net/ethernet/ibm/ibmveth.*
9216
9217 IBM Power Virtual FC Device Drivers
9218 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
9219 L:      linux-scsi@vger.kernel.org
9220 S:      Supported
9221 F:      drivers/scsi/ibmvscsi/ibmvfc*
9222
9223 IBM Power Virtual Management Channel Driver
9224 M:      Brad Warrum <bwarrum@linux.ibm.com>
9225 M:      Ritu Agarwal <rituagar@linux.ibm.com>
9226 S:      Supported
9227 F:      drivers/misc/ibmvmc.*
9228
9229 IBM Power Virtual SCSI Device Drivers
9230 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
9231 L:      linux-scsi@vger.kernel.org
9232 S:      Supported
9233 F:      drivers/scsi/ibmvscsi/ibmvscsi*
9234 F:      include/scsi/viosrp.h
9235
9236 IBM Power Virtual SCSI Device Target Driver
9237 M:      Michael Cyr <mikecyr@linux.ibm.com>
9238 L:      linux-scsi@vger.kernel.org
9239 L:      target-devel@vger.kernel.org
9240 S:      Supported
9241 F:      drivers/scsi/ibmvscsi_tgt/
9242
9243 IBM Power VMX Cryptographic instructions
9244 M:      Breno Leitão <leitao@debian.org>
9245 M:      Nayna Jain <nayna@linux.ibm.com>
9246 M:      Paulo Flabiano Smorigo <pfsmorigo@gmail.com>
9247 L:      linux-crypto@vger.kernel.org
9248 S:      Supported
9249 F:      drivers/crypto/vmx/Kconfig
9250 F:      drivers/crypto/vmx/Makefile
9251 F:      drivers/crypto/vmx/aes*
9252 F:      drivers/crypto/vmx/ghash*
9253 F:      drivers/crypto/vmx/ppc-xlate.pl
9254 F:      drivers/crypto/vmx/vmx.c
9255
9256 IBM ServeRAID RAID DRIVER
9257 S:      Orphan
9258 F:      drivers/scsi/ips.*
9259
9260 ICH LPC AND GPIO DRIVER
9261 M:      Peter Tyser <ptyser@xes-inc.com>
9262 S:      Maintained
9263 F:      drivers/gpio/gpio-ich.c
9264 F:      drivers/mfd/lpc_ich.c
9265
9266 ICY I2C DRIVER
9267 M:      Max Staudt <max@enpas.org>
9268 L:      linux-i2c@vger.kernel.org
9269 S:      Maintained
9270 F:      drivers/i2c/busses/i2c-icy.c
9271
9272 IDEAPAD LAPTOP EXTRAS DRIVER
9273 M:      Ike Panhc <ike.pan@canonical.com>
9274 L:      platform-driver-x86@vger.kernel.org
9275 S:      Maintained
9276 W:      http://launchpad.net/ideapad-laptop
9277 F:      drivers/platform/x86/ideapad-laptop.c
9278
9279 IDEAPAD LAPTOP SLIDEBAR DRIVER
9280 M:      Andrey Moiseev <o2g.org.ru@gmail.com>
9281 L:      linux-input@vger.kernel.org
9282 S:      Maintained
9283 W:      https://github.com/o2genum/ideapad-slidebar
9284 F:      drivers/input/misc/ideapad_slidebar.c
9285
9286 IDMAPPED MOUNTS
9287 M:      Christian Brauner <brauner@kernel.org>
9288 L:      linux-fsdevel@vger.kernel.org
9289 S:      Maintained
9290 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brauner/linux.git
9291 F:      Documentation/filesystems/idmappings.rst
9292 F:      tools/testing/selftests/mount_setattr/
9293 F:      include/linux/mnt_idmapping.h
9294
9295 IDT VersaClock 5 CLOCK DRIVER
9296 M:      Luca Ceresoli <luca@lucaceresoli.net>
9297 S:      Maintained
9298 F:      Documentation/devicetree/bindings/clock/idt,versaclock5.yaml
9299 F:      drivers/clk/clk-versaclock5.c
9300
9301 IEEE 802.15.4 SUBSYSTEM
9302 M:      Alexander Aring <alex.aring@gmail.com>
9303 M:      Stefan Schmidt <stefan@datenfreihafen.org>
9304 L:      linux-wpan@vger.kernel.org
9305 S:      Maintained
9306 W:      https://linux-wpan.org/
9307 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan.git
9308 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan-next.git
9309 F:      Documentation/networking/ieee802154.rst
9310 F:      drivers/net/ieee802154/
9311 F:      include/linux/ieee802154.h
9312 F:      include/linux/nl802154.h
9313 F:      include/net/af_ieee802154.h
9314 F:      include/net/cfg802154.h
9315 F:      include/net/ieee802154_netdev.h
9316 F:      include/net/mac802154.h
9317 F:      include/net/nl802154.h
9318 F:      net/ieee802154/
9319 F:      net/mac802154/
9320
9321 IFE PROTOCOL
9322 M:      Yotam Gigi <yotam.gi@gmail.com>
9323 M:      Jamal Hadi Salim <jhs@mojatatu.com>
9324 F:      include/net/ife.h
9325 F:      include/uapi/linux/ife.h
9326 F:      net/ife
9327
9328 IGORPLUG-USB IR RECEIVER
9329 M:      Sean Young <sean@mess.org>
9330 L:      linux-media@vger.kernel.org
9331 S:      Maintained
9332 F:      drivers/media/rc/igorplugusb.c
9333
9334 IGUANAWORKS USB IR TRANSCEIVER
9335 M:      Sean Young <sean@mess.org>
9336 L:      linux-media@vger.kernel.org
9337 S:      Maintained
9338 F:      drivers/media/rc/iguanair.c
9339
9340 IIO DIGITAL POTENTIOMETER DAC
9341 M:      Peter Rosin <peda@axentia.se>
9342 L:      linux-iio@vger.kernel.org
9343 S:      Maintained
9344 F:      Documentation/ABI/testing/sysfs-bus-iio-dac-dpot-dac
9345 F:      Documentation/devicetree/bindings/iio/dac/dpot-dac.yaml
9346 F:      drivers/iio/dac/dpot-dac.c
9347
9348 IIO ENVELOPE DETECTOR
9349 M:      Peter Rosin <peda@axentia.se>
9350 L:      linux-iio@vger.kernel.org
9351 S:      Maintained
9352 F:      Documentation/ABI/testing/sysfs-bus-iio-adc-envelope-detector
9353 F:      Documentation/devicetree/bindings/iio/adc/envelope-detector.yaml
9354 F:      drivers/iio/adc/envelope-detector.c
9355
9356 IIO MULTIPLEXER
9357 M:      Peter Rosin <peda@axentia.se>
9358 L:      linux-iio@vger.kernel.org
9359 S:      Maintained
9360 F:      Documentation/devicetree/bindings/iio/multiplexer/io-channel-mux.yaml
9361 F:      drivers/iio/multiplexer/iio-mux.c
9362
9363 IIO SCMI BASED DRIVER
9364 M:      Jyoti Bhayana <jbhayana@google.com>
9365 L:      linux-iio@vger.kernel.org
9366 S:      Maintained
9367 F:      drivers/iio/common/scmi_sensors/scmi_iio.c
9368
9369 IIO SUBSYSTEM AND DRIVERS
9370 M:      Jonathan Cameron <jic23@kernel.org>
9371 R:      Lars-Peter Clausen <lars@metafoo.de>
9372 L:      linux-iio@vger.kernel.org
9373 S:      Maintained
9374 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
9375 F:      Documentation/ABI/testing/configfs-iio*
9376 F:      Documentation/ABI/testing/sysfs-bus-iio*
9377 F:      Documentation/devicetree/bindings/iio/
9378 F:      drivers/iio/
9379 F:      drivers/staging/iio/
9380 F:      include/linux/iio/
9381 F:      tools/iio/
9382
9383 IIO UNIT CONVERTER
9384 M:      Peter Rosin <peda@axentia.se>
9385 L:      linux-iio@vger.kernel.org
9386 S:      Maintained
9387 F:      Documentation/devicetree/bindings/iio/afe/current-sense-amplifier.yaml
9388 F:      Documentation/devicetree/bindings/iio/afe/current-sense-shunt.yaml
9389 F:      Documentation/devicetree/bindings/iio/afe/voltage-divider.yaml
9390 F:      drivers/iio/afe/iio-rescale.c
9391
9392 IKANOS/ADI EAGLE ADSL USB DRIVER
9393 M:      Matthieu Castet <castet.matthieu@free.fr>
9394 M:      Stanislaw Gruszka <stf_xl@wp.pl>
9395 S:      Maintained
9396 F:      drivers/usb/atm/ueagle-atm.c
9397
9398 IMGTEC ASCII LCD DRIVER
9399 M:      Paul Burton <paulburton@kernel.org>
9400 S:      Maintained
9401 F:      Documentation/devicetree/bindings/auxdisplay/img,ascii-lcd.yaml
9402 F:      drivers/auxdisplay/img-ascii-lcd.c
9403
9404 IMGTEC IR DECODER DRIVER
9405 S:      Orphan
9406 F:      drivers/media/rc/img-ir/
9407
9408 IMON SOUNDGRAPH USB IR RECEIVER
9409 M:      Sean Young <sean@mess.org>
9410 L:      linux-media@vger.kernel.org
9411 S:      Maintained
9412 F:      drivers/media/rc/imon.c
9413 F:      drivers/media/rc/imon_raw.c
9414
9415 IMS TWINTURBO FRAMEBUFFER DRIVER
9416 L:      linux-fbdev@vger.kernel.org
9417 S:      Orphan
9418 F:      drivers/video/fbdev/imsttfb.c
9419
9420 INA209 HARDWARE MONITOR DRIVER
9421 M:      Guenter Roeck <linux@roeck-us.net>
9422 L:      linux-hwmon@vger.kernel.org
9423 S:      Maintained
9424 F:      Documentation/devicetree/bindings/hwmon/ti,ina2xx.yaml
9425 F:      Documentation/hwmon/ina209.rst
9426 F:      drivers/hwmon/ina209.c
9427
9428 INA2XX HARDWARE MONITOR DRIVER
9429 M:      Guenter Roeck <linux@roeck-us.net>
9430 L:      linux-hwmon@vger.kernel.org
9431 S:      Maintained
9432 F:      Documentation/hwmon/ina2xx.rst
9433 F:      drivers/hwmon/ina2xx.c
9434 F:      include/linux/platform_data/ina2xx.h
9435
9436 INDUSTRY PACK SUBSYSTEM (IPACK)
9437 M:      Samuel Iglesias Gonsalvez <siglesias@igalia.com>
9438 M:      Jens Taprogge <jens.taprogge@taprogge.org>
9439 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
9440 L:      industrypack-devel@lists.sourceforge.net
9441 S:      Maintained
9442 W:      http://industrypack.sourceforge.net
9443 F:      drivers/ipack/
9444
9445 INFINEON DPS310 Driver
9446 M:      Eddie James <eajames@linux.ibm.com>
9447 L:      linux-iio@vger.kernel.org
9448 S:      Maintained
9449 F:      drivers/iio/pressure/dps310.c
9450
9451 INFINIBAND SUBSYSTEM
9452 M:      Jason Gunthorpe <jgg@nvidia.com>
9453 L:      linux-rdma@vger.kernel.org
9454 S:      Supported
9455 W:      https://github.com/linux-rdma/rdma-core
9456 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
9457 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rdma/rdma.git
9458 F:      Documentation/devicetree/bindings/infiniband/
9459 F:      Documentation/infiniband/
9460 F:      drivers/infiniband/
9461 F:      include/rdma/
9462 F:      include/trace/events/ib_mad.h
9463 F:      include/trace/events/ib_umad.h
9464 F:      include/uapi/linux/if_infiniband.h
9465 F:      include/uapi/rdma/
9466 F:      samples/bpf/ibumad_kern.c
9467 F:      samples/bpf/ibumad_user.c
9468
9469 INGENIC JZ4780 NAND DRIVER
9470 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
9471 L:      linux-mtd@lists.infradead.org
9472 L:      linux-mips@vger.kernel.org
9473 S:      Maintained
9474 F:      drivers/mtd/nand/raw/ingenic/
9475
9476 INGENIC JZ47xx SoCs
9477 M:      Paul Cercueil <paul@crapouillou.net>
9478 L:      linux-mips@vger.kernel.org
9479 S:      Maintained
9480 F:      arch/mips/boot/dts/ingenic/
9481 F:      arch/mips/generic/board-ingenic.c
9482 F:      arch/mips/include/asm/mach-ingenic/
9483 F:      arch/mips/ingenic/Kconfig
9484 F:      drivers/clk/ingenic/
9485 F:      drivers/dma/dma-jz4780.c
9486 F:      drivers/gpu/drm/ingenic/
9487 F:      drivers/i2c/busses/i2c-jz4780.c
9488 F:      drivers/iio/adc/ingenic-adc.c
9489 F:      drivers/irqchip/irq-ingenic.c
9490 F:      drivers/memory/jz4780-nemc.c
9491 F:      drivers/mmc/host/jz4740_mmc.c
9492 F:      drivers/mtd/nand/raw/ingenic/
9493 F:      drivers/pinctrl/pinctrl-ingenic.c
9494 F:      drivers/power/supply/ingenic-battery.c
9495 F:      drivers/pwm/pwm-jz4740.c
9496 F:      drivers/remoteproc/ingenic_rproc.c
9497 F:      drivers/rtc/rtc-jz4740.c
9498 F:      drivers/tty/serial/8250/8250_ingenic.c
9499 F:      drivers/usb/musb/jz4740.c
9500 F:      drivers/watchdog/jz4740_wdt.c
9501 F:      include/dt-bindings/iio/adc/ingenic,adc.h
9502 F:      include/linux/mfd/ingenic-tcu.h
9503 F:      sound/soc/codecs/jz47*
9504 F:      sound/soc/jz4740/
9505
9506 INOTIFY
9507 M:      Jan Kara <jack@suse.cz>
9508 R:      Amir Goldstein <amir73il@gmail.com>
9509 L:      linux-fsdevel@vger.kernel.org
9510 S:      Maintained
9511 F:      Documentation/filesystems/inotify.rst
9512 F:      fs/notify/inotify/
9513 F:      include/linux/inotify.h
9514 F:      include/uapi/linux/inotify.h
9515
9516 INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
9517 M:      Dmitry Torokhov <dmitry.torokhov@gmail.com>
9518 L:      linux-input@vger.kernel.org
9519 S:      Maintained
9520 Q:      http://patchwork.kernel.org/project/linux-input/list/
9521 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
9522 F:      Documentation/devicetree/bindings/input/
9523 F:      Documentation/devicetree/bindings/serio/
9524 F:      Documentation/input/
9525 F:      drivers/input/
9526 F:      include/linux/input.h
9527 F:      include/linux/input/
9528 F:      include/uapi/linux/input-event-codes.h
9529 F:      include/uapi/linux/input.h
9530
9531 INPUT MULTITOUCH (MT) PROTOCOL
9532 M:      Henrik Rydberg <rydberg@bitmath.org>
9533 L:      linux-input@vger.kernel.org
9534 S:      Odd fixes
9535 F:      Documentation/input/multi-touch-protocol.rst
9536 F:      drivers/input/input-mt.c
9537 K:      \b(ABS|SYN)_MT_
9538
9539 INSIDE SECURE CRYPTO DRIVER
9540 M:      Antoine Tenart <atenart@kernel.org>
9541 L:      linux-crypto@vger.kernel.org
9542 S:      Maintained
9543 F:      drivers/crypto/inside-secure/
9544
9545 INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
9546 M:      Mimi Zohar <zohar@linux.ibm.com>
9547 M:      Dmitry Kasatkin <dmitry.kasatkin@gmail.com>
9548 L:      linux-integrity@vger.kernel.org
9549 S:      Supported
9550 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/zohar/linux-integrity.git
9551 F:      security/integrity/ima/
9552 F:      security/integrity/
9553
9554 INTEL 810/815 FRAMEBUFFER DRIVER
9555 M:      Antonino Daplas <adaplas@gmail.com>
9556 L:      linux-fbdev@vger.kernel.org
9557 S:      Maintained
9558 F:      drivers/video/fbdev/i810/
9559
9560 INTEL ASoC DRIVERS
9561 M:      Cezary Rojewski <cezary.rojewski@intel.com>
9562 M:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
9563 M:      Liam Girdwood <liam.r.girdwood@linux.intel.com>
9564 M:      Jie Yang <yang.jie@linux.intel.com>
9565 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
9566 S:      Supported
9567 F:      sound/soc/intel/
9568
9569 INTEL ATOMISP2 DUMMY / POWER-MANAGEMENT DRIVER
9570 M:      Hans de Goede <hdegoede@redhat.com>
9571 L:      platform-driver-x86@vger.kernel.org
9572 S:      Maintained
9573 F:      drivers/platform/x86/intel/atomisp2/pm.c
9574
9575 INTEL ATOMISP2 LED DRIVER
9576 M:      Hans de Goede <hdegoede@redhat.com>
9577 L:      platform-driver-x86@vger.kernel.org
9578 S:      Maintained
9579 F:      drivers/platform/x86/intel/atomisp2/led.c
9580
9581 INTEL BIOS SAR INT1092 DRIVER
9582 M:      Shravan Sudhakar <s.shravan@intel.com>
9583 M:      Intel Corporation <linuxwwan@intel.com>
9584 L:      platform-driver-x86@vger.kernel.org
9585 S:      Maintained
9586 F:      drivers/platform/x86/intel/int1092/
9587
9588 INTEL BROXTON PMC DRIVER
9589 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
9590 M:      Zha Qipeng <qipeng.zha@intel.com>
9591 S:      Maintained
9592 F:      drivers/mfd/intel_pmc_bxt.c
9593 F:      include/linux/mfd/intel_pmc_bxt.h
9594
9595 INTEL C600 SERIES SAS CONTROLLER DRIVER
9596 M:      Artur Paszkiewicz <artur.paszkiewicz@intel.com>
9597 L:      linux-scsi@vger.kernel.org
9598 S:      Supported
9599 T:      git git://git.code.sf.net/p/intel-sas/isci
9600 F:      drivers/scsi/isci/
9601
9602 INTEL CPU family model numbers
9603 M:      Tony Luck <tony.luck@intel.com>
9604 M:      x86@kernel.org
9605 L:      linux-kernel@vger.kernel.org
9606 S:      Supported
9607 F:      arch/x86/include/asm/intel-family.h
9608
9609 INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
9610 M:      Jani Nikula <jani.nikula@linux.intel.com>
9611 M:      Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
9612 M:      Rodrigo Vivi <rodrigo.vivi@intel.com>
9613 M:      Tvrtko Ursulin <tvrtko.ursulin@linux.intel.com>
9614 L:      intel-gfx@lists.freedesktop.org
9615 S:      Supported
9616 W:      https://01.org/linuxgraphics/
9617 Q:      http://patchwork.freedesktop.org/project/intel-gfx/
9618 B:      https://gitlab.freedesktop.org/drm/intel/-/wikis/How-to-file-i915-bugs
9619 C:      irc://irc.oftc.net/intel-gfx
9620 T:      git git://anongit.freedesktop.org/drm-intel
9621 F:      Documentation/gpu/i915.rst
9622 F:      drivers/gpu/drm/i915/
9623 F:      include/drm/i915*
9624 F:      include/uapi/drm/i915_drm.h
9625
9626 INTEL ETHERNET DRIVERS
9627 M:      Jesse Brandeburg <jesse.brandeburg@intel.com>
9628 M:      Tony Nguyen <anthony.l.nguyen@intel.com>
9629 L:      intel-wired-lan@lists.osuosl.org (moderated for non-subscribers)
9630 S:      Supported
9631 W:      http://www.intel.com/support/feedback.htm
9632 W:      http://e1000.sourceforge.net/
9633 Q:      http://patchwork.ozlabs.org/project/intel-wired-lan/list/
9634 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tnguy/net-queue.git
9635 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tnguy/next-queue.git
9636 F:      Documentation/networking/device_drivers/ethernet/intel/
9637 F:      drivers/net/ethernet/intel/
9638 F:      drivers/net/ethernet/intel/*/
9639 F:      include/linux/avf/virtchnl.h
9640 F:      include/linux/net/intel/iidc.h
9641
9642 INTEL ETHERNET PROTOCOL DRIVER FOR RDMA
9643 M:      Mustafa Ismail <mustafa.ismail@intel.com>
9644 M:      Shiraz Saleem <shiraz.saleem@intel.com>
9645 L:      linux-rdma@vger.kernel.org
9646 S:      Supported
9647 F:      drivers/infiniband/hw/irdma/
9648 F:      include/uapi/rdma/irdma-abi.h
9649
9650 INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
9651 M:      Maik Broemme <mbroemme@libmpq.org>
9652 L:      linux-fbdev@vger.kernel.org
9653 S:      Maintained
9654 F:      Documentation/fb/intelfb.rst
9655 F:      drivers/video/fbdev/intelfb/
9656
9657 INTEL GPIO DRIVERS
9658 M:      Andy Shevchenko <andy@kernel.org>
9659 L:      linux-gpio@vger.kernel.org
9660 S:      Maintained
9661 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
9662 F:      drivers/gpio/gpio-ich.c
9663 F:      drivers/gpio/gpio-merrifield.c
9664 F:      drivers/gpio/gpio-ml-ioh.c
9665 F:      drivers/gpio/gpio-pch.c
9666 F:      drivers/gpio/gpio-sch.c
9667 F:      drivers/gpio/gpio-sodaville.c
9668
9669 INTEL GVT-g DRIVERS (Intel GPU Virtualization)
9670 M:      Zhenyu Wang <zhenyuw@linux.intel.com>
9671 M:      Zhi Wang <zhi.a.wang@intel.com>
9672 L:      intel-gvt-dev@lists.freedesktop.org
9673 L:      intel-gfx@lists.freedesktop.org
9674 S:      Supported
9675 W:      https://01.org/igvt-g
9676 T:      git https://github.com/intel/gvt-linux.git
9677 F:      drivers/gpu/drm/i915/gvt/
9678
9679 INTEL HID EVENT DRIVER
9680 M:      Alex Hung <alex.hung@canonical.com>
9681 L:      platform-driver-x86@vger.kernel.org
9682 S:      Maintained
9683 F:      drivers/platform/x86/intel/hid.c
9684
9685 INTEL I/OAT DMA DRIVER
9686 M:      Dave Jiang <dave.jiang@intel.com>
9687 R:      Dan Williams <dan.j.williams@intel.com>
9688 L:      dmaengine@vger.kernel.org
9689 S:      Supported
9690 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
9691 F:      drivers/dma/ioat*
9692
9693 INTEL IADX DRIVER
9694 M:      Dave Jiang <dave.jiang@intel.com>
9695 L:      dmaengine@vger.kernel.org
9696 S:      Supported
9697 F:      drivers/dma/idxd/*
9698 F:      include/uapi/linux/idxd.h
9699
9700 INTEL IDLE DRIVER
9701 M:      Jacob Pan <jacob.jun.pan@linux.intel.com>
9702 M:      Len Brown <lenb@kernel.org>
9703 L:      linux-pm@vger.kernel.org
9704 S:      Supported
9705 B:      https://bugzilla.kernel.org
9706 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
9707 F:      drivers/idle/intel_idle.c
9708
9709 INTEL INTEGRATED SENSOR HUB DRIVER
9710 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
9711 M:      Jiri Kosina <jikos@kernel.org>
9712 L:      linux-input@vger.kernel.org
9713 S:      Maintained
9714 F:      drivers/hid/intel-ish-hid/
9715
9716 INTEL IOMMU (VT-d)
9717 M:      David Woodhouse <dwmw2@infradead.org>
9718 M:      Lu Baolu <baolu.lu@linux.intel.com>
9719 L:      iommu@lists.linux-foundation.org
9720 S:      Supported
9721 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
9722 F:      drivers/iommu/intel/
9723 F:      include/linux/intel-iommu.h
9724 F:      include/linux/intel-svm.h
9725
9726 INTEL IOP-ADMA DMA DRIVER
9727 R:      Dan Williams <dan.j.williams@intel.com>
9728 S:      Odd fixes
9729 F:      drivers/dma/iop-adma.c
9730
9731 INTEL IPU3 CSI-2 CIO2 DRIVER
9732 M:      Yong Zhi <yong.zhi@intel.com>
9733 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
9734 M:      Bingbu Cao <bingbu.cao@intel.com>
9735 M:      Dan Scally <djrscally@gmail.com>
9736 R:      Tianshu Qiu <tian.shu.qiu@intel.com>
9737 L:      linux-media@vger.kernel.org
9738 S:      Maintained
9739 T:      git git://linuxtv.org/media_tree.git
9740 F:      Documentation/userspace-api/media/v4l/pixfmt-srggb10-ipu3.rst
9741 F:      drivers/media/pci/intel/ipu3/
9742
9743 INTEL IPU3 CSI-2 IMGU DRIVER
9744 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
9745 R:      Bingbu Cao <bingbu.cao@intel.com>
9746 R:      Tianshu Qiu <tian.shu.qiu@intel.com>
9747 L:      linux-media@vger.kernel.org
9748 S:      Maintained
9749 F:      Documentation/admin-guide/media/ipu3.rst
9750 F:      Documentation/admin-guide/media/ipu3_rcb.svg
9751 F:      Documentation/userspace-api/media/v4l/pixfmt-meta-intel-ipu3.rst
9752 F:      drivers/staging/media/ipu3/
9753
9754 INTEL IXP4XX CRYPTO SUPPORT
9755 M:      Corentin Labbe <clabbe@baylibre.com>
9756 L:      linux-crypto@vger.kernel.org
9757 S:      Maintained
9758 F:      drivers/crypto/ixp4xx_crypto.c
9759
9760 INTEL ISHTP ECLITE DRIVER
9761 M:      Sumesh K Naduvalath <sumesh.k.naduvalath@intel.com>
9762 L:      platform-driver-x86@vger.kernel.org
9763 S:      Supported
9764 F:      drivers/platform/x86/intel/ishtp_eclite.c
9765
9766 INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
9767 M:      Krzysztof Halasa <khalasa@piap.pl>
9768 S:      Maintained
9769 F:      drivers/net/ethernet/xscale/ixp4xx_eth.c
9770 F:      drivers/net/wan/ixp4xx_hss.c
9771 F:      drivers/soc/ixp4xx/ixp4xx-npe.c
9772 F:      drivers/soc/ixp4xx/ixp4xx-qmgr.c
9773 F:      include/linux/soc/ixp4xx/npe.h
9774 F:      include/linux/soc/ixp4xx/qmgr.h
9775
9776 INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
9777 M:      Deepak Saxena <dsaxena@plexity.net>
9778 S:      Maintained
9779 F:      Documentation/devicetree/bindings/rng/intel,ixp46x-rng.yaml
9780 F:      drivers/char/hw_random/ixp4xx-rng.c
9781
9782 INTEL KEEM BAY DRM DRIVER
9783 M:      Anitha Chrisanthus <anitha.chrisanthus@intel.com>
9784 M:      Edmund Dea <edmund.j.dea@intel.com>
9785 S:      Maintained
9786 F:      Documentation/devicetree/bindings/display/intel,keembay-display.yaml
9787 F:      drivers/gpu/drm/kmb/
9788
9789 INTEL KEEM BAY OCS AES/SM4 CRYPTO DRIVER
9790 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
9791 S:      Maintained
9792 F:      Documentation/devicetree/bindings/crypto/intel,keembay-ocs-aes.yaml
9793 F:      drivers/crypto/keembay/Kconfig
9794 F:      drivers/crypto/keembay/Makefile
9795 F:      drivers/crypto/keembay/keembay-ocs-aes-core.c
9796 F:      drivers/crypto/keembay/ocs-aes.c
9797 F:      drivers/crypto/keembay/ocs-aes.h
9798
9799 INTEL KEEM BAY OCS ECC CRYPTO DRIVER
9800 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
9801 M:      Prabhjot Khurana <prabhjot.khurana@intel.com>
9802 M:      Mark Gross <mgross@linux.intel.com>
9803 S:      Maintained
9804 F:      Documentation/devicetree/bindings/crypto/intel,keembay-ocs-ecc.yaml
9805 F:      drivers/crypto/keembay/Kconfig
9806 F:      drivers/crypto/keembay/Makefile
9807 F:      drivers/crypto/keembay/keembay-ocs-ecc.c
9808
9809 INTEL KEEM BAY OCS HCU CRYPTO DRIVER
9810 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
9811 M:      Declan Murphy <declan.murphy@intel.com>
9812 S:      Maintained
9813 F:      Documentation/devicetree/bindings/crypto/intel,keembay-ocs-hcu.yaml
9814 F:      drivers/crypto/keembay/Kconfig
9815 F:      drivers/crypto/keembay/Makefile
9816 F:      drivers/crypto/keembay/keembay-ocs-hcu-core.c
9817 F:      drivers/crypto/keembay/ocs-hcu.c
9818 F:      drivers/crypto/keembay/ocs-hcu.h
9819
9820 INTEL THUNDER BAY EMMC PHY DRIVER
9821 M:      Nandhini Srikandan <nandhini.srikandan@intel.com>
9822 M:      Rashmi A <rashmi.a@intel.com>
9823 S:      Maintained
9824 F:      Documentation/devicetree/bindings/phy/intel,phy-thunderbay-emmc.yaml
9825 F:      drivers/phy/intel/phy-intel-thunderbay-emmc.c
9826
9827 INTEL MANAGEMENT ENGINE (mei)
9828 M:      Tomas Winkler <tomas.winkler@intel.com>
9829 L:      linux-kernel@vger.kernel.org
9830 S:      Supported
9831 F:      Documentation/driver-api/mei/*
9832 F:      drivers/misc/mei/
9833 F:      drivers/watchdog/mei_wdt.c
9834 F:      include/linux/mei_cl_bus.h
9835 F:      include/uapi/linux/mei.h
9836 F:      samples/mei/*
9837
9838 INTEL MAX 10 BMC MFD DRIVER
9839 M:      Xu Yilun <yilun.xu@intel.com>
9840 R:      Tom Rix <trix@redhat.com>
9841 S:      Maintained
9842 F:      Documentation/ABI/testing/sysfs-driver-intel-m10-bmc
9843 F:      Documentation/hwmon/intel-m10-bmc-hwmon.rst
9844 F:      drivers/hwmon/intel-m10-bmc-hwmon.c
9845 F:      drivers/mfd/intel-m10-bmc.c
9846 F:      include/linux/mfd/intel-m10-bmc.h
9847
9848 INTEL MENLOW THERMAL DRIVER
9849 M:      Sujith Thomas <sujith.thomas@intel.com>
9850 L:      linux-pm@vger.kernel.org
9851 S:      Supported
9852 W:      https://01.org/linux-acpi
9853 F:      drivers/thermal/intel/intel_menlow.c
9854
9855 INTEL P-Unit IPC DRIVER
9856 M:      Zha Qipeng <qipeng.zha@intel.com>
9857 L:      platform-driver-x86@vger.kernel.org
9858 S:      Maintained
9859 F:      arch/x86/include/asm/intel_punit_ipc.h
9860 F:      drivers/platform/x86/intel/punit_ipc.c
9861
9862 INTEL PMC CORE DRIVER
9863 M:      Rajneesh Bhardwaj <irenic.rajneesh@gmail.com>
9864 M:      David E Box <david.e.box@intel.com>
9865 L:      platform-driver-x86@vger.kernel.org
9866 S:      Maintained
9867 F:      Documentation/ABI/testing/sysfs-platform-intel-pmc
9868 F:      drivers/platform/x86/intel/pmc/
9869
9870 INTEL PMIC GPIO DRIVERS
9871 M:      Andy Shevchenko <andy@kernel.org>
9872 S:      Maintained
9873 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
9874 F:      drivers/gpio/gpio-*cove.c
9875
9876 INTEL PMIC MULTIFUNCTION DEVICE DRIVERS
9877 M:      Andy Shevchenko <andy@kernel.org>
9878 S:      Maintained
9879 F:      drivers/mfd/intel_soc_pmic*
9880 F:      include/linux/mfd/intel_soc_pmic*
9881
9882 INTEL PMT DRIVERS
9883 M:      David E. Box <david.e.box@linux.intel.com>
9884 S:      Supported
9885 F:      drivers/platform/x86/intel/pmt/
9886
9887 INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
9888 M:      Stanislav Yakovlev <stas.yakovlev@gmail.com>
9889 L:      linux-wireless@vger.kernel.org
9890 S:      Maintained
9891 F:      Documentation/networking/device_drivers/wifi/intel/ipw2100.rst
9892 F:      Documentation/networking/device_drivers/wifi/intel/ipw2200.rst
9893 F:      drivers/net/wireless/intel/ipw2x00/
9894
9895 INTEL PSTATE DRIVER
9896 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
9897 M:      Len Brown <lenb@kernel.org>
9898 L:      linux-pm@vger.kernel.org
9899 S:      Supported
9900 F:      drivers/cpufreq/intel_pstate.c
9901
9902 INTEL QUADRATURE ENCODER PERIPHERAL DRIVER
9903 M:      Jarkko Nikula <jarkko.nikula@linux.intel.com>
9904 L:      linux-iio@vger.kernel.org
9905 F:      drivers/counter/intel-qep.c
9906
9907 INTEL SCU DRIVERS
9908 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
9909 S:      Maintained
9910 F:      arch/x86/include/asm/intel_scu_ipc.h
9911 F:      drivers/platform/x86/intel_scu_*
9912
9913 INTEL SKYLAKE INT3472 ACPI DEVICE DRIVER
9914 M:      Daniel Scally <djrscally@gmail.com>
9915 S:      Maintained
9916 F:      drivers/platform/x86/intel/int3472/
9917
9918 INTEL SPEED SELECT TECHNOLOGY
9919 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
9920 L:      platform-driver-x86@vger.kernel.org
9921 S:      Maintained
9922 F:      drivers/platform/x86/intel/speed_select_if/
9923 F:      include/uapi/linux/isst_if.h
9924 F:      tools/power/x86/intel-speed-select/
9925
9926 INTEL STRATIX10 FIRMWARE DRIVERS
9927 M:      Dinh Nguyen <dinguyen@kernel.org>
9928 L:      linux-kernel@vger.kernel.org
9929 S:      Maintained
9930 F:      Documentation/ABI/testing/sysfs-devices-platform-stratix10-rsu
9931 F:      Documentation/devicetree/bindings/firmware/intel,stratix10-svc.txt
9932 F:      drivers/firmware/stratix10-rsu.c
9933 F:      drivers/firmware/stratix10-svc.c
9934 F:      include/linux/firmware/intel/stratix10-smc.h
9935 F:      include/linux/firmware/intel/stratix10-svc-client.h
9936
9937 INTEL TELEMETRY DRIVER
9938 M:      Rajneesh Bhardwaj <irenic.rajneesh@gmail.com>
9939 M:      "David E. Box" <david.e.box@linux.intel.com>
9940 L:      platform-driver-x86@vger.kernel.org
9941 S:      Maintained
9942 F:      arch/x86/include/asm/intel_telemetry.h
9943 F:      drivers/platform/x86/intel/telemetry/
9944
9945 INTEL UNCORE FREQUENCY CONTROL
9946 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
9947 L:      platform-driver-x86@vger.kernel.org
9948 S:      Maintained
9949 F:      drivers/platform/x86/intel/uncore-frequency.c
9950
9951 INTEL VENDOR SPECIFIC EXTENDED CAPABILITIES DRIVER
9952 M:      David E. Box <david.e.box@linux.intel.com>
9953 S:      Supported
9954 F:      drivers/platform/x86/intel/vsec.*
9955
9956 INTEL VIRTUAL BUTTON DRIVER
9957 M:      AceLan Kao <acelan.kao@canonical.com>
9958 L:      platform-driver-x86@vger.kernel.org
9959 S:      Maintained
9960 F:      drivers/platform/x86/intel/vbtn.c
9961
9962 INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
9963 M:      Stanislaw Gruszka <stf_xl@wp.pl>
9964 L:      linux-wireless@vger.kernel.org
9965 S:      Supported
9966 F:      drivers/net/wireless/intel/iwlegacy/
9967
9968 INTEL WIRELESS WIFI LINK (iwlwifi)
9969 M:      Luca Coelho <luciano.coelho@intel.com>
9970 L:      linux-wireless@vger.kernel.org
9971 S:      Supported
9972 W:      https://wireless.wiki.kernel.org/en/users/drivers/iwlwifi
9973 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
9974 F:      drivers/net/wireless/intel/iwlwifi/
9975
9976 INTEL WMI SLIM BOOTLOADER (SBL) FIRMWARE UPDATE DRIVER
9977 M:      Jithu Joseph <jithu.joseph@intel.com>
9978 R:      Maurice Ma <maurice.ma@intel.com>
9979 S:      Maintained
9980 W:      https://slimbootloader.github.io/security/firmware-update.html
9981 F:      drivers/platform/x86/intel/wmi/sbl-fw-update.c
9982
9983 INTEL WMI THUNDERBOLT FORCE POWER DRIVER
9984 L:      Dell.Client.Kernel@dell.com
9985 S:      Maintained
9986 F:      drivers/platform/x86/intel/wmi/thunderbolt.c
9987
9988 INTEL WWAN IOSM DRIVER
9989 M:      M Chetan Kumar <m.chetan.kumar@intel.com>
9990 M:      Intel Corporation <linuxwwan@intel.com>
9991 L:      netdev@vger.kernel.org
9992 S:      Maintained
9993 F:      drivers/net/wwan/iosm/
9994
9995 INTEL(R) TRACE HUB
9996 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
9997 S:      Supported
9998 F:      Documentation/trace/intel_th.rst
9999 F:      drivers/hwtracing/intel_th/
10000 F:      include/linux/intel_th.h
10001
10002 INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
10003 M:      Ning Sun <ning.sun@intel.com>
10004 L:      tboot-devel@lists.sourceforge.net
10005 S:      Supported
10006 W:      http://tboot.sourceforge.net
10007 T:      hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
10008 F:      Documentation/x86/intel_txt.rst
10009 F:      arch/x86/kernel/tboot.c
10010 F:      include/linux/tboot.h
10011
10012 INTEL SGX
10013 M:      Jarkko Sakkinen <jarkko@kernel.org>
10014 R:      Dave Hansen <dave.hansen@linux.intel.com>
10015 L:      linux-sgx@vger.kernel.org
10016 S:      Supported
10017 Q:      https://patchwork.kernel.org/project/intel-sgx/list/
10018 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/sgx
10019 F:      Documentation/x86/sgx.rst
10020 F:      arch/x86/entry/vdso/vsgx.S
10021 F:      arch/x86/include/asm/sgx.h
10022 F:      arch/x86/include/uapi/asm/sgx.h
10023 F:      arch/x86/kernel/cpu/sgx/*
10024 F:      tools/testing/selftests/sgx/*
10025 K:      \bSGX_
10026
10027 INTERCONNECT API
10028 M:      Georgi Djakov <djakov@kernel.org>
10029 L:      linux-pm@vger.kernel.org
10030 S:      Maintained
10031 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/djakov/icc.git
10032 F:      Documentation/devicetree/bindings/interconnect/
10033 F:      Documentation/driver-api/interconnect.rst
10034 F:      drivers/interconnect/
10035 F:      include/dt-bindings/interconnect/
10036 F:      include/linux/interconnect-provider.h
10037 F:      include/linux/interconnect.h
10038
10039 INTERRUPT COUNTER DRIVER
10040 M:      Oleksij Rempel <o.rempel@pengutronix.de>
10041 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
10042 L:      linux-iio@vger.kernel.org
10043 F:      Documentation/devicetree/bindings/counter/interrupt-counter.yaml
10044 F:      drivers/counter/interrupt-cnt.c
10045
10046 INTERSIL ISL7998X VIDEO DECODER DRIVER
10047 M:      Michael Tretter <m.tretter@pengutronix.de>
10048 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
10049 L:      linux-media@vger.kernel.org
10050 S:      Maintained
10051 F:      Documentation/devicetree/bindings/media/i2c/isil,isl79987.yaml
10052 F:      drivers/media/i2c/isl7998x.c
10053
10054 INVENSENSE ICM-426xx IMU DRIVER
10055 M:      Jean-Baptiste Maneyrol <jmaneyrol@invensense.com>
10056 L:      linux-iio@vger.kernel.org
10057 S:      Maintained
10058 W:      https://invensense.tdk.com/
10059 F:      Documentation/devicetree/bindings/iio/imu/invensense,icm42600.yaml
10060 F:      drivers/iio/imu/inv_icm42600/
10061
10062 INVENSENSE MPU-3050 GYROSCOPE DRIVER
10063 M:      Linus Walleij <linus.walleij@linaro.org>
10064 L:      linux-iio@vger.kernel.org
10065 S:      Maintained
10066 F:      Documentation/devicetree/bindings/iio/gyroscope/invensense,mpu3050.yaml
10067 F:      drivers/iio/gyro/mpu3050*
10068
10069 IOC3 ETHERNET DRIVER
10070 M:      Ralf Baechle <ralf@linux-mips.org>
10071 L:      linux-mips@vger.kernel.org
10072 S:      Maintained
10073 F:      drivers/net/ethernet/sgi/ioc3-eth.c
10074
10075 IOMAP FILESYSTEM LIBRARY
10076 M:      Christoph Hellwig <hch@infradead.org>
10077 M:      Darrick J. Wong <djwong@kernel.org>
10078 M:      linux-xfs@vger.kernel.org
10079 M:      linux-fsdevel@vger.kernel.org
10080 L:      linux-xfs@vger.kernel.org
10081 L:      linux-fsdevel@vger.kernel.org
10082 S:      Supported
10083 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
10084 F:      fs/iomap/
10085 F:      include/linux/iomap.h
10086
10087 IOMMU DRIVERS
10088 M:      Joerg Roedel <joro@8bytes.org>
10089 M:      Will Deacon <will@kernel.org>
10090 L:      iommu@lists.linux-foundation.org
10091 S:      Maintained
10092 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
10093 F:      Documentation/devicetree/bindings/iommu/
10094 F:      Documentation/userspace-api/iommu.rst
10095 F:      drivers/iommu/
10096 F:      include/linux/iommu.h
10097 F:      include/linux/iova.h
10098 F:      include/linux/of_iommu.h
10099 F:      include/uapi/linux/iommu.h
10100
10101 IO_URING
10102 M:      Jens Axboe <axboe@kernel.dk>
10103 R:      Pavel Begunkov <asml.silence@gmail.com>
10104 L:      io-uring@vger.kernel.org
10105 S:      Maintained
10106 T:      git git://git.kernel.dk/linux-block
10107 T:      git git://git.kernel.dk/liburing
10108 F:      fs/io-wq.c
10109 F:      fs/io-wq.h
10110 F:      fs/io_uring.c
10111 F:      include/linux/io_uring.h
10112 F:      include/uapi/linux/io_uring.h
10113 F:      tools/io_uring/
10114
10115 IPMI SUBSYSTEM
10116 M:      Corey Minyard <minyard@acm.org>
10117 L:      openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
10118 S:      Supported
10119 W:      http://openipmi.sourceforge.net/
10120 F:      Documentation/driver-api/ipmi.rst
10121 F:      Documentation/devicetree/bindings/ipmi/
10122 F:      drivers/char/ipmi/
10123 F:      include/linux/ipmi*
10124 F:      include/uapi/linux/ipmi*
10125
10126 IPS SCSI RAID DRIVER
10127 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
10128 L:      linux-scsi@vger.kernel.org
10129 S:      Maintained
10130 W:      http://www.adaptec.com/
10131 F:      drivers/scsi/ips*
10132
10133 IPVS
10134 M:      Simon Horman <horms@verge.net.au>
10135 M:      Julian Anastasov <ja@ssi.bg>
10136 L:      netdev@vger.kernel.org
10137 L:      lvs-devel@vger.kernel.org
10138 S:      Maintained
10139 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs-next.git
10140 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs.git
10141 F:      Documentation/networking/ipvs-sysctl.rst
10142 F:      include/net/ip_vs.h
10143 F:      include/uapi/linux/ip_vs.h
10144 F:      net/netfilter/ipvs/
10145
10146 IPWIRELESS DRIVER
10147 M:      Jiri Kosina <jikos@kernel.org>
10148 M:      David Sterba <dsterba@suse.com>
10149 S:      Odd Fixes
10150 F:      drivers/tty/ipwireless/
10151
10152 IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
10153 M:      Marc Zyngier <maz@kernel.org>
10154 S:      Maintained
10155 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
10156 F:      Documentation/core-api/irq/irq-domain.rst
10157 F:      include/linux/irqdomain.h
10158 F:      kernel/irq/irqdomain.c
10159 F:      kernel/irq/msi.c
10160
10161 IRQ SUBSYSTEM
10162 M:      Thomas Gleixner <tglx@linutronix.de>
10163 L:      linux-kernel@vger.kernel.org
10164 S:      Maintained
10165 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
10166 F:      kernel/irq/
10167
10168 IRQCHIP DRIVERS
10169 M:      Thomas Gleixner <tglx@linutronix.de>
10170 M:      Marc Zyngier <maz@kernel.org>
10171 L:      linux-kernel@vger.kernel.org
10172 S:      Maintained
10173 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
10174 F:      Documentation/devicetree/bindings/interrupt-controller/
10175 F:      drivers/irqchip/
10176
10177 ISA
10178 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
10179 S:      Maintained
10180 F:      Documentation/driver-api/isa.rst
10181 F:      drivers/base/isa.c
10182 F:      include/linux/isa.h
10183
10184 ISA RADIO MODULE
10185 M:      Hans Verkuil <hverkuil@xs4all.nl>
10186 L:      linux-media@vger.kernel.org
10187 S:      Maintained
10188 W:      https://linuxtv.org
10189 T:      git git://linuxtv.org/media_tree.git
10190 F:      drivers/media/radio/radio-isa*
10191
10192 ISAPNP
10193 M:      Jaroslav Kysela <perex@perex.cz>
10194 S:      Maintained
10195 F:      Documentation/driver-api/isapnp.rst
10196 F:      drivers/pnp/isapnp/
10197 F:      include/linux/isapnp.h
10198
10199 ISCSI
10200 M:      Lee Duncan <lduncan@suse.com>
10201 M:      Chris Leech <cleech@redhat.com>
10202 L:      open-iscsi@googlegroups.com
10203 L:      linux-scsi@vger.kernel.org
10204 S:      Maintained
10205 W:      www.open-iscsi.com
10206 F:      drivers/scsi/*iscsi*
10207 F:      include/scsi/*iscsi*
10208
10209 iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
10210 M:      Peter Jones <pjones@redhat.com>
10211 M:      Konrad Rzeszutek Wilk <konrad@kernel.org>
10212 S:      Maintained
10213 F:      drivers/firmware/iscsi_ibft*
10214
10215 ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR
10216 M:      Sagi Grimberg <sagi@grimberg.me>
10217 M:      Max Gurtovoy <mgurtovoy@nvidia.com>
10218 L:      linux-rdma@vger.kernel.org
10219 S:      Supported
10220 W:      http://www.openfabrics.org
10221 W:      www.open-iscsi.org
10222 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
10223 F:      drivers/infiniband/ulp/iser/
10224
10225 ISCSI EXTENSIONS FOR RDMA (ISER) TARGET
10226 M:      Sagi Grimberg <sagi@grimberg.me>
10227 L:      linux-rdma@vger.kernel.org
10228 L:      target-devel@vger.kernel.org
10229 S:      Supported
10230 W:      http://www.linux-iscsi.org
10231 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
10232 F:      drivers/infiniband/ulp/isert
10233
10234 ISDN/CMTP OVER BLUETOOTH
10235 M:      Karsten Keil <isdn@linux-pingi.de>
10236 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
10237 L:      netdev@vger.kernel.org
10238 S:      Odd Fixes
10239 W:      http://www.isdn4linux.de
10240 F:      Documentation/isdn/
10241 F:      drivers/isdn/capi/
10242 F:      include/linux/isdn/
10243 F:      include/uapi/linux/isdn/
10244 F:      net/bluetooth/cmtp/
10245
10246 ISDN/mISDN SUBSYSTEM
10247 M:      Karsten Keil <isdn@linux-pingi.de>
10248 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
10249 L:      netdev@vger.kernel.org
10250 S:      Maintained
10251 W:      http://www.isdn4linux.de
10252 F:      drivers/isdn/Kconfig
10253 F:      drivers/isdn/Makefile
10254 F:      drivers/isdn/hardware/
10255 F:      drivers/isdn/mISDN/
10256
10257 IT87 HARDWARE MONITORING DRIVER
10258 M:      Jean Delvare <jdelvare@suse.com>
10259 L:      linux-hwmon@vger.kernel.org
10260 S:      Maintained
10261 F:      Documentation/hwmon/it87.rst
10262 F:      drivers/hwmon/it87.c
10263
10264 IT913X MEDIA DRIVER
10265 M:      Antti Palosaari <crope@iki.fi>
10266 L:      linux-media@vger.kernel.org
10267 S:      Maintained
10268 W:      https://linuxtv.org
10269 W:      http://palosaari.fi/linux/
10270 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10271 T:      git git://linuxtv.org/anttip/media_tree.git
10272 F:      drivers/media/tuners/it913x*
10273
10274 ITE IT66121 HDMI BRIDGE DRIVER
10275 M:      Phong LE <ple@baylibre.com>
10276 M:      Neil Armstrong <narmstrong@baylibre.com>
10277 S:      Maintained
10278 T:      git git://anongit.freedesktop.org/drm/drm-misc
10279 F:      Documentation/devicetree/bindings/display/bridge/ite,it66121.yaml
10280 F:      drivers/gpu/drm/bridge/ite-it66121.c
10281
10282 IVTV VIDEO4LINUX DRIVER
10283 M:      Andy Walls <awalls@md.metrocast.net>
10284 L:      linux-media@vger.kernel.org
10285 S:      Maintained
10286 W:      https://linuxtv.org
10287 T:      git git://linuxtv.org/media_tree.git
10288 F:      Documentation/admin-guide/media/ivtv*
10289 F:      drivers/media/pci/ivtv/
10290 F:      include/uapi/linux/ivtv*
10291
10292 IX2505V MEDIA DRIVER
10293 M:      Malcolm Priestley <tvboxspy@gmail.com>
10294 L:      linux-media@vger.kernel.org
10295 S:      Maintained
10296 W:      https://linuxtv.org
10297 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10298 F:      drivers/media/dvb-frontends/ix2505v*
10299
10300 JAILHOUSE HYPERVISOR INTERFACE
10301 M:      Jan Kiszka <jan.kiszka@siemens.com>
10302 L:      jailhouse-dev@googlegroups.com
10303 S:      Maintained
10304 F:      arch/x86/include/asm/jailhouse_para.h
10305 F:      arch/x86/kernel/jailhouse.c
10306
10307 JC42.4 TEMPERATURE SENSOR DRIVER
10308 M:      Guenter Roeck <linux@roeck-us.net>
10309 L:      linux-hwmon@vger.kernel.org
10310 S:      Maintained
10311 F:      Documentation/devicetree/bindings/hwmon/jedec,jc42.yaml
10312 F:      Documentation/hwmon/jc42.rst
10313 F:      drivers/hwmon/jc42.c
10314
10315 JFS FILESYSTEM
10316 M:      Dave Kleikamp <shaggy@kernel.org>
10317 L:      jfs-discussion@lists.sourceforge.net
10318 S:      Maintained
10319 W:      http://jfs.sourceforge.net/
10320 T:      git git://github.com/kleikamp/linux-shaggy.git
10321 F:      Documentation/admin-guide/jfs.rst
10322 F:      fs/jfs/
10323
10324 JME NETWORK DRIVER
10325 M:      Guo-Fu Tseng <cooldavid@cooldavid.org>
10326 L:      netdev@vger.kernel.org
10327 S:      Maintained
10328 F:      drivers/net/ethernet/jme.*
10329
10330 JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
10331 M:      David Woodhouse <dwmw2@infradead.org>
10332 M:      Richard Weinberger <richard@nod.at>
10333 L:      linux-mtd@lists.infradead.org
10334 S:      Odd Fixes
10335 W:      http://www.linux-mtd.infradead.org/doc/jffs2.html
10336 T:      git git://git.infradead.org/ubifs-2.6.git
10337 F:      fs/jffs2/
10338 F:      include/uapi/linux/jffs2.h
10339
10340 JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
10341 M:      "Theodore Ts'o" <tytso@mit.edu>
10342 M:      Jan Kara <jack@suse.com>
10343 L:      linux-ext4@vger.kernel.org
10344 S:      Maintained
10345 F:      fs/jbd2/
10346 F:      include/linux/jbd2.h
10347
10348 JPU V4L2 MEM2MEM DRIVER FOR RENESAS
10349 M:      Mikhail Ulyanov <mikhail.ulyanov@cogentembedded.com>
10350 L:      linux-media@vger.kernel.org
10351 L:      linux-renesas-soc@vger.kernel.org
10352 S:      Maintained
10353 F:      drivers/media/platform/renesas/rcar_jpu.c
10354
10355 JSM Neo PCI based serial card
10356 L:      linux-serial@vger.kernel.org
10357 S:      Orphan
10358 F:      drivers/tty/serial/jsm/
10359
10360 K10TEMP HARDWARE MONITORING DRIVER
10361 M:      Clemens Ladisch <clemens@ladisch.de>
10362 L:      linux-hwmon@vger.kernel.org
10363 S:      Maintained
10364 F:      Documentation/hwmon/k10temp.rst
10365 F:      drivers/hwmon/k10temp.c
10366
10367 K8TEMP HARDWARE MONITORING DRIVER
10368 M:      Rudolf Marek <r.marek@assembler.cz>
10369 L:      linux-hwmon@vger.kernel.org
10370 S:      Maintained
10371 F:      Documentation/hwmon/k8temp.rst
10372 F:      drivers/hwmon/k8temp.c
10373
10374 KASAN
10375 M:      Andrey Ryabinin <ryabinin.a.a@gmail.com>
10376 R:      Alexander Potapenko <glider@google.com>
10377 R:      Andrey Konovalov <andreyknvl@gmail.com>
10378 R:      Dmitry Vyukov <dvyukov@google.com>
10379 L:      kasan-dev@googlegroups.com
10380 S:      Maintained
10381 F:      Documentation/dev-tools/kasan.rst
10382 F:      arch/*/include/asm/*kasan.h
10383 F:      arch/*/mm/kasan_init*
10384 F:      include/linux/kasan*.h
10385 F:      lib/Kconfig.kasan
10386 F:      lib/test_kasan*.c
10387 F:      mm/kasan/
10388 F:      scripts/Makefile.kasan
10389
10390 KCONFIG
10391 M:      Masahiro Yamada <masahiroy@kernel.org>
10392 L:      linux-kbuild@vger.kernel.org
10393 S:      Maintained
10394 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git kconfig
10395 F:      Documentation/kbuild/kconfig*
10396 F:      scripts/Kconfig.include
10397 F:      scripts/kconfig/
10398
10399 KCOV
10400 R:      Dmitry Vyukov <dvyukov@google.com>
10401 R:      Andrey Konovalov <andreyknvl@gmail.com>
10402 L:      kasan-dev@googlegroups.com
10403 S:      Maintained
10404 F:      Documentation/dev-tools/kcov.rst
10405 F:      include/linux/kcov.h
10406 F:      include/uapi/linux/kcov.h
10407 F:      kernel/kcov.c
10408 F:      scripts/Makefile.kcov
10409
10410 KCSAN
10411 M:      Marco Elver <elver@google.com>
10412 R:      Dmitry Vyukov <dvyukov@google.com>
10413 L:      kasan-dev@googlegroups.com
10414 S:      Maintained
10415 F:      Documentation/dev-tools/kcsan.rst
10416 F:      include/linux/kcsan*.h
10417 F:      kernel/kcsan/
10418 F:      lib/Kconfig.kcsan
10419 F:      scripts/Makefile.kcsan
10420
10421 KDUMP
10422 M:      Baoquan He <bhe@redhat.com>
10423 R:      Vivek Goyal <vgoyal@redhat.com>
10424 R:      Dave Young <dyoung@redhat.com>
10425 L:      kexec@lists.infradead.org
10426 S:      Maintained
10427 W:      http://lse.sourceforge.net/kdump/
10428 F:      Documentation/admin-guide/kdump/
10429 F:      fs/proc/vmcore.c
10430 F:      include/linux/crash_core.h
10431 F:      include/linux/crash_dump.h
10432 F:      include/uapi/linux/vmcore.h
10433 F:      kernel/crash_*.c
10434
10435 KEENE FM RADIO TRANSMITTER DRIVER
10436 M:      Hans Verkuil <hverkuil@xs4all.nl>
10437 L:      linux-media@vger.kernel.org
10438 S:      Maintained
10439 W:      https://linuxtv.org
10440 T:      git git://linuxtv.org/media_tree.git
10441 F:      drivers/media/radio/radio-keene*
10442
10443 KERNEL AUTOMOUNTER
10444 M:      Ian Kent <raven@themaw.net>
10445 L:      autofs@vger.kernel.org
10446 S:      Maintained
10447 F:      fs/autofs/
10448
10449 KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
10450 M:      Masahiro Yamada <masahiroy@kernel.org>
10451 M:      Michal Marek <michal.lkml@markovi.net>
10452 R:      Nick Desaulniers <ndesaulniers@google.com>
10453 L:      linux-kbuild@vger.kernel.org
10454 S:      Maintained
10455 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git
10456 F:      Documentation/kbuild/
10457 F:      Makefile
10458 F:      scripts/*vmlinux*
10459 F:      scripts/Kbuild*
10460 F:      scripts/Makefile*
10461 F:      scripts/basic/
10462 F:      scripts/dummy-tools/
10463 F:      scripts/mk*
10464 F:      scripts/mod/
10465 F:      scripts/package/
10466
10467 KERNEL JANITORS
10468 L:      kernel-janitors@vger.kernel.org
10469 S:      Odd Fixes
10470 W:      http://kernelnewbies.org/KernelJanitors
10471
10472 KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
10473 M:      Chuck Lever <chuck.lever@oracle.com>
10474 L:      linux-nfs@vger.kernel.org
10475 S:      Supported
10476 W:      http://nfs.sourceforge.net/
10477 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/cel/linux.git
10478 F:      fs/lockd/
10479 F:      fs/nfs_common/
10480 F:      fs/nfsd/
10481 F:      include/linux/lockd/
10482 F:      include/linux/sunrpc/
10483 F:      include/uapi/linux/nfsd/
10484 F:      include/uapi/linux/sunrpc/
10485 F:      net/sunrpc/
10486 F:      Documentation/filesystems/nfs/
10487
10488 KERNEL REGRESSIONS
10489 M:      Thorsten Leemhuis <linux@leemhuis.info>
10490 L:      regressions@lists.linux.dev
10491 S:      Supported
10492 F:      Documentation/admin-guide/reporting-regressions.rst
10493 F:      Documentation/process/handling-regressions.rst
10494
10495 KERNEL SELFTEST FRAMEWORK
10496 M:      Shuah Khan <shuah@kernel.org>
10497 M:      Shuah Khan <skhan@linuxfoundation.org>
10498 L:      linux-kselftest@vger.kernel.org
10499 S:      Maintained
10500 Q:      https://patchwork.kernel.org/project/linux-kselftest/list/
10501 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest.git
10502 F:      Documentation/dev-tools/kselftest*
10503 F:      tools/testing/selftests/
10504
10505 KERNEL SMB3 SERVER (KSMBD)
10506 M:      Namjae Jeon <linkinjeon@kernel.org>
10507 M:      Sergey Senozhatsky <senozhatsky@chromium.org>
10508 M:      Steve French <sfrench@samba.org>
10509 M:      Hyunchul Lee <hyc.lee@gmail.com>
10510 L:      linux-cifs@vger.kernel.org
10511 S:      Maintained
10512 T:      git git://git.samba.org/ksmbd.git
10513 F:      fs/ksmbd/
10514 F:      fs/smbfs_common/
10515
10516 KERNEL UNIT TESTING FRAMEWORK (KUnit)
10517 M:      Brendan Higgins <brendanhiggins@google.com>
10518 L:      linux-kselftest@vger.kernel.org
10519 L:      kunit-dev@googlegroups.com
10520 S:      Maintained
10521 W:      https://google.github.io/kunit-docs/third_party/kernel/docs/
10522 F:      Documentation/dev-tools/kunit/
10523 F:      include/kunit/
10524 F:      lib/kunit/
10525 F:      tools/testing/kunit/
10526
10527 KERNEL USERMODE HELPER
10528 M:      Luis Chamberlain <mcgrof@kernel.org>
10529 L:      linux-kernel@vger.kernel.org
10530 S:      Maintained
10531 F:      include/linux/umh.h
10532 F:      kernel/umh.c
10533
10534 KERNEL VIRTUAL MACHINE (KVM)
10535 M:      Paolo Bonzini <pbonzini@redhat.com>
10536 L:      kvm@vger.kernel.org
10537 S:      Supported
10538 W:      http://www.linux-kvm.org
10539 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
10540 F:      Documentation/virt/kvm/
10541 F:      include/asm-generic/kvm*
10542 F:      include/kvm/iodev.h
10543 F:      include/linux/kvm*
10544 F:      include/trace/events/kvm.h
10545 F:      include/uapi/asm-generic/kvm*
10546 F:      include/uapi/linux/kvm*
10547 F:      tools/kvm/
10548 F:      tools/testing/selftests/kvm/
10549 F:      virt/kvm/*
10550
10551 KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64)
10552 M:      Marc Zyngier <maz@kernel.org>
10553 R:      James Morse <james.morse@arm.com>
10554 R:      Alexandru Elisei <alexandru.elisei@arm.com>
10555 R:      Suzuki K Poulose <suzuki.poulose@arm.com>
10556 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10557 L:      kvmarm@lists.cs.columbia.edu (moderated for non-subscribers)
10558 S:      Maintained
10559 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvmarm/kvmarm.git
10560 F:      arch/arm64/include/asm/kvm*
10561 F:      arch/arm64/include/uapi/asm/kvm*
10562 F:      arch/arm64/kvm/
10563 F:      include/kvm/arm_*
10564 F:      tools/testing/selftests/kvm/*/aarch64/
10565 F:      tools/testing/selftests/kvm/aarch64/
10566
10567 KERNEL VIRTUAL MACHINE FOR MIPS (KVM/mips)
10568 M:      Huacai Chen <chenhuacai@kernel.org>
10569 M:      Aleksandar Markovic <aleksandar.qemu.devel@gmail.com>
10570 L:      linux-mips@vger.kernel.org
10571 L:      kvm@vger.kernel.org
10572 S:      Maintained
10573 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
10574 F:      arch/mips/include/asm/kvm*
10575 F:      arch/mips/include/uapi/asm/kvm*
10576 F:      arch/mips/kvm/
10577
10578 KERNEL VIRTUAL MACHINE FOR POWERPC (KVM/powerpc)
10579 L:      linuxppc-dev@lists.ozlabs.org
10580 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git topic/ppc-kvm
10581 F:      arch/powerpc/include/asm/kvm*
10582 F:      arch/powerpc/include/uapi/asm/kvm*
10583 F:      arch/powerpc/kernel/kvm*
10584 F:      arch/powerpc/kvm/
10585
10586 KERNEL VIRTUAL MACHINE FOR RISC-V (KVM/riscv)
10587 M:      Anup Patel <anup@brainfault.org>
10588 R:      Atish Patra <atishp@atishpatra.org>
10589 L:      kvm@vger.kernel.org
10590 L:      kvm-riscv@lists.infradead.org
10591 L:      linux-riscv@lists.infradead.org
10592 S:      Maintained
10593 T:      git git://github.com/kvm-riscv/linux.git
10594 F:      arch/riscv/include/asm/kvm*
10595 F:      arch/riscv/include/uapi/asm/kvm*
10596 F:      arch/riscv/kvm/
10597
10598 KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
10599 M:      Christian Borntraeger <borntraeger@linux.ibm.com>
10600 M:      Janosch Frank <frankja@linux.ibm.com>
10601 R:      David Hildenbrand <david@redhat.com>
10602 R:      Claudio Imbrenda <imbrenda@linux.ibm.com>
10603 L:      kvm@vger.kernel.org
10604 S:      Supported
10605 W:      http://www.ibm.com/developerworks/linux/linux390/
10606 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvms390/linux.git
10607 F:      Documentation/virt/kvm/s390*
10608 F:      arch/s390/include/asm/gmap.h
10609 F:      arch/s390/include/asm/kvm*
10610 F:      arch/s390/include/uapi/asm/kvm*
10611 F:      arch/s390/kernel/uv.c
10612 F:      arch/s390/kvm/
10613 F:      arch/s390/mm/gmap.c
10614 F:      tools/testing/selftests/kvm/*/s390x/
10615 F:      tools/testing/selftests/kvm/s390x/
10616
10617 KERNEL VIRTUAL MACHINE FOR X86 (KVM/x86)
10618 M:      Paolo Bonzini <pbonzini@redhat.com>
10619 R:      Sean Christopherson <seanjc@google.com>
10620 R:      Vitaly Kuznetsov <vkuznets@redhat.com>
10621 R:      Wanpeng Li <wanpengli@tencent.com>
10622 R:      Jim Mattson <jmattson@google.com>
10623 R:      Joerg Roedel <joro@8bytes.org>
10624 L:      kvm@vger.kernel.org
10625 S:      Supported
10626 W:      http://www.linux-kvm.org
10627 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
10628 F:      arch/x86/include/asm/kvm*
10629 F:      arch/x86/include/asm/pvclock-abi.h
10630 F:      arch/x86/include/asm/svm.h
10631 F:      arch/x86/include/asm/vmx*.h
10632 F:      arch/x86/include/uapi/asm/kvm*
10633 F:      arch/x86/include/uapi/asm/svm.h
10634 F:      arch/x86/include/uapi/asm/vmx.h
10635 F:      arch/x86/kernel/kvm.c
10636 F:      arch/x86/kernel/kvmclock.c
10637 F:      arch/x86/kvm/
10638 F:      arch/x86/kvm/*/
10639
10640 KERNFS
10641 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10642 M:      Tejun Heo <tj@kernel.org>
10643 S:      Supported
10644 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
10645 F:      fs/kernfs/
10646 F:      include/linux/kernfs.h
10647
10648 KEXEC
10649 M:      Eric Biederman <ebiederm@xmission.com>
10650 L:      kexec@lists.infradead.org
10651 S:      Maintained
10652 W:      http://kernel.org/pub/linux/utils/kernel/kexec/
10653 F:      include/linux/kexec.h
10654 F:      include/uapi/linux/kexec.h
10655 F:      kernel/kexec*
10656
10657 KEYS-ENCRYPTED
10658 M:      Mimi Zohar <zohar@linux.ibm.com>
10659 L:      linux-integrity@vger.kernel.org
10660 L:      keyrings@vger.kernel.org
10661 S:      Supported
10662 F:      Documentation/security/keys/trusted-encrypted.rst
10663 F:      include/keys/encrypted-type.h
10664 F:      security/keys/encrypted-keys/
10665
10666 KEYS-TRUSTED
10667 M:      James Bottomley <jejb@linux.ibm.com>
10668 M:      Jarkko Sakkinen <jarkko@kernel.org>
10669 M:      Mimi Zohar <zohar@linux.ibm.com>
10670 L:      linux-integrity@vger.kernel.org
10671 L:      keyrings@vger.kernel.org
10672 S:      Supported
10673 F:      Documentation/security/keys/trusted-encrypted.rst
10674 F:      include/keys/trusted-type.h
10675 F:      include/keys/trusted_tpm.h
10676 F:      security/keys/trusted-keys/
10677
10678 KEYS-TRUSTED-TEE
10679 M:      Sumit Garg <sumit.garg@linaro.org>
10680 L:      linux-integrity@vger.kernel.org
10681 L:      keyrings@vger.kernel.org
10682 S:      Supported
10683 F:      include/keys/trusted_tee.h
10684 F:      security/keys/trusted-keys/trusted_tee.c
10685
10686 KEYS/KEYRINGS
10687 M:      David Howells <dhowells@redhat.com>
10688 M:      Jarkko Sakkinen <jarkko@kernel.org>
10689 L:      keyrings@vger.kernel.org
10690 S:      Maintained
10691 F:      Documentation/security/keys/core.rst
10692 F:      include/keys/
10693 F:      include/linux/key-type.h
10694 F:      include/linux/key.h
10695 F:      include/linux/keyctl.h
10696 F:      include/uapi/linux/keyctl.h
10697 F:      security/keys/
10698
10699 KEYS/KEYRINGS_INTEGRITY
10700 M:      Jarkko Sakkinen <jarkko@kernel.org>
10701 M:      Mimi Zohar <zohar@linux.ibm.com>
10702 L:      linux-integrity@vger.kernel.org
10703 L:      keyrings@vger.kernel.org
10704 S:      Supported
10705 F:      security/integrity/platform_certs
10706
10707 KFENCE
10708 M:      Alexander Potapenko <glider@google.com>
10709 M:      Marco Elver <elver@google.com>
10710 R:      Dmitry Vyukov <dvyukov@google.com>
10711 L:      kasan-dev@googlegroups.com
10712 S:      Maintained
10713 F:      Documentation/dev-tools/kfence.rst
10714 F:      arch/*/include/asm/kfence.h
10715 F:      include/linux/kfence.h
10716 F:      lib/Kconfig.kfence
10717 F:      mm/kfence/
10718
10719 KFIFO
10720 M:      Stefani Seibold <stefani@seibold.net>
10721 S:      Maintained
10722 F:      include/linux/kfifo.h
10723 F:      lib/kfifo.c
10724 F:      samples/kfifo/
10725
10726 KGDB / KDB /debug_core
10727 M:      Jason Wessel <jason.wessel@windriver.com>
10728 M:      Daniel Thompson <daniel.thompson@linaro.org>
10729 R:      Douglas Anderson <dianders@chromium.org>
10730 L:      kgdb-bugreport@lists.sourceforge.net
10731 S:      Maintained
10732 W:      http://kgdb.wiki.kernel.org/
10733 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jwessel/kgdb.git
10734 F:      Documentation/dev-tools/kgdb.rst
10735 F:      drivers/misc/kgdbts.c
10736 F:      drivers/tty/serial/kgdboc.c
10737 F:      include/linux/kdb.h
10738 F:      include/linux/kgdb.h
10739 F:      kernel/debug/
10740
10741 KHADAS MCU MFD DRIVER
10742 M:      Neil Armstrong <narmstrong@baylibre.com>
10743 L:      linux-amlogic@lists.infradead.org
10744 S:      Maintained
10745 F:      Documentation/devicetree/bindings/mfd/khadas,mcu.yaml
10746 F:      drivers/mfd/khadas-mcu.c
10747 F:      include/linux/mfd/khadas-mcu.h
10748 F:      drivers/thermal/khadas_mcu_fan.c
10749
10750 KMEMLEAK
10751 M:      Catalin Marinas <catalin.marinas@arm.com>
10752 S:      Maintained
10753 F:      Documentation/dev-tools/kmemleak.rst
10754 F:      include/linux/kmemleak.h
10755 F:      mm/kmemleak.c
10756 F:      samples/kmemleak/kmemleak-test.c
10757
10758 KMOD KERNEL MODULE LOADER - USERMODE HELPER
10759 M:      Luis Chamberlain <mcgrof@kernel.org>
10760 L:      linux-kernel@vger.kernel.org
10761 L:      linux-modules@vger.kernel.org
10762 S:      Maintained
10763 F:      include/linux/kmod.h
10764 F:      kernel/kmod.c
10765 F:      lib/test_kmod.c
10766 F:      tools/testing/selftests/kmod/
10767
10768 KPROBES
10769 M:      Naveen N. Rao <naveen.n.rao@linux.ibm.com>
10770 M:      Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
10771 M:      "David S. Miller" <davem@davemloft.net>
10772 M:      Masami Hiramatsu <mhiramat@kernel.org>
10773 S:      Maintained
10774 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rostedt/linux-trace.git
10775 F:      Documentation/trace/kprobes.rst
10776 F:      include/asm-generic/kprobes.h
10777 F:      include/linux/kprobes.h
10778 F:      kernel/kprobes.c
10779 F:      lib/test_kprobes.c
10780 F:      samples/kprobes
10781
10782 KS0108 LCD CONTROLLER DRIVER
10783 M:      Miguel Ojeda <ojeda@kernel.org>
10784 S:      Maintained
10785 F:      Documentation/admin-guide/auxdisplay/ks0108.rst
10786 F:      drivers/auxdisplay/ks0108.c
10787 F:      include/linux/ks0108.h
10788
10789 KTD253 BACKLIGHT DRIVER
10790 M:      Linus Walleij <linus.walleij@linaro.org>
10791 S:      Maintained
10792 F:      Documentation/devicetree/bindings/leds/backlight/kinetic,ktd253.yaml
10793 F:      drivers/video/backlight/ktd253-backlight.c
10794
10795 KTEST
10796 M:      Steven Rostedt <rostedt@goodmis.org>
10797 M:      John Hawley <warthog9@eaglescrag.net>
10798 S:      Maintained
10799 F:      tools/testing/ktest
10800
10801 L3MDEV
10802 M:      David Ahern <dsahern@kernel.org>
10803 L:      netdev@vger.kernel.org
10804 S:      Maintained
10805 F:      include/net/l3mdev.h
10806 F:      net/l3mdev
10807
10808 L7 BPF FRAMEWORK
10809 M:      John Fastabend <john.fastabend@gmail.com>
10810 M:      Daniel Borkmann <daniel@iogearbox.net>
10811 M:      Jakub Sitnicki <jakub@cloudflare.com>
10812 M:      Lorenz Bauer <lmb@cloudflare.com>
10813 L:      netdev@vger.kernel.org
10814 L:      bpf@vger.kernel.org
10815 S:      Maintained
10816 F:      include/linux/skmsg.h
10817 F:      net/core/skmsg.c
10818 F:      net/core/sock_map.c
10819 F:      net/ipv4/tcp_bpf.c
10820 F:      net/ipv4/udp_bpf.c
10821 F:      net/unix/unix_bpf.c
10822
10823 LANDLOCK SECURITY MODULE
10824 M:      Mickaël Salaün <mic@digikod.net>
10825 L:      linux-security-module@vger.kernel.org
10826 S:      Supported
10827 W:      https://landlock.io
10828 T:      git https://github.com/landlock-lsm/linux.git
10829 F:      Documentation/security/landlock.rst
10830 F:      Documentation/userspace-api/landlock.rst
10831 F:      include/uapi/linux/landlock.h
10832 F:      samples/landlock/
10833 F:      security/landlock/
10834 F:      tools/testing/selftests/landlock/
10835 K:      landlock
10836 K:      LANDLOCK
10837
10838 LANTIQ / INTEL Ethernet drivers
10839 M:      Hauke Mehrtens <hauke@hauke-m.de>
10840 L:      netdev@vger.kernel.org
10841 S:      Maintained
10842 F:      drivers/net/dsa/lantiq_gswip.c
10843 F:      drivers/net/dsa/lantiq_pce.h
10844 F:      drivers/net/ethernet/lantiq_xrx200.c
10845 F:      net/dsa/tag_gswip.c
10846
10847 LANTIQ MIPS ARCHITECTURE
10848 M:      John Crispin <john@phrozen.org>
10849 L:      linux-mips@vger.kernel.org
10850 S:      Maintained
10851 F:      arch/mips/lantiq
10852 F:      drivers/soc/lantiq
10853
10854 LASI 53c700 driver for PARISC
10855 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
10856 L:      linux-scsi@vger.kernel.org
10857 S:      Maintained
10858 F:      Documentation/scsi/53c700.rst
10859 F:      drivers/scsi/53c700*
10860
10861 LEAKING_ADDRESSES
10862 M:      Tobin C. Harding <me@tobin.cc>
10863 M:      Tycho Andersen <tycho@tycho.pizza>
10864 L:      linux-hardening@vger.kernel.org
10865 S:      Maintained
10866 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tobin/leaks.git
10867 F:      scripts/leaking_addresses.pl
10868
10869 LED SUBSYSTEM
10870 M:      Pavel Machek <pavel@ucw.cz>
10871 L:      linux-leds@vger.kernel.org
10872 S:      Maintained
10873 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pavel/linux-leds.git
10874 F:      Documentation/devicetree/bindings/leds/
10875 F:      drivers/leds/
10876 F:      include/linux/leds.h
10877
10878 LEGACY EEPROM DRIVER
10879 M:      Jean Delvare <jdelvare@suse.com>
10880 S:      Maintained
10881 F:      Documentation/misc-devices/eeprom.rst
10882 F:      drivers/misc/eeprom/eeprom.c
10883
10884 LEGO MINDSTORMS EV3
10885 R:      David Lechner <david@lechnology.com>
10886 S:      Maintained
10887 F:      Documentation/devicetree/bindings/power/supply/lego,ev3-battery.yaml
10888 F:      arch/arm/boot/dts/da850-lego-ev3.dts
10889 F:      drivers/power/supply/lego_ev3_battery.c
10890
10891 LEGO USB Tower driver
10892 M:      Juergen Stuber <starblue@users.sourceforge.net>
10893 L:      legousb-devel@lists.sourceforge.net
10894 S:      Maintained
10895 W:      http://legousb.sourceforge.net/
10896 F:      drivers/usb/misc/legousbtower.c
10897
10898 LETSKETCH HID TABLET DRIVER
10899 M:      Hans de Goede <hdegoede@redhat.com>
10900 L:      linux-input@vger.kernel.org
10901 S:      Maintained
10902 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
10903 F:      drivers/hid/hid-letsketch.c
10904
10905 LG LAPTOP EXTRAS
10906 M:      Matan Ziv-Av <matan@svgalib.org>
10907 L:      platform-driver-x86@vger.kernel.org
10908 S:      Maintained
10909 F:      Documentation/ABI/testing/sysfs-platform-lg-laptop
10910 F:      Documentation/admin-guide/laptops/lg-laptop.rst
10911 F:      drivers/platform/x86/lg-laptop.c
10912
10913 LG2160 MEDIA DRIVER
10914 M:      Michael Krufky <mkrufky@linuxtv.org>
10915 L:      linux-media@vger.kernel.org
10916 S:      Maintained
10917 W:      https://linuxtv.org
10918 W:      http://github.com/mkrufky
10919 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10920 T:      git git://linuxtv.org/mkrufky/tuners.git
10921 F:      drivers/media/dvb-frontends/lg2160.*
10922
10923 LGDT3305 MEDIA DRIVER
10924 M:      Michael Krufky <mkrufky@linuxtv.org>
10925 L:      linux-media@vger.kernel.org
10926 S:      Maintained
10927 W:      https://linuxtv.org
10928 W:      http://github.com/mkrufky
10929 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10930 T:      git git://linuxtv.org/mkrufky/tuners.git
10931 F:      drivers/media/dvb-frontends/lgdt3305.*
10932
10933 LIBATA PATA ARASAN COMPACT FLASH CONTROLLER
10934 M:      Viresh Kumar <vireshk@kernel.org>
10935 L:      linux-ide@vger.kernel.org
10936 S:      Maintained
10937 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
10938 F:      drivers/ata/pata_arasan_cf.c
10939 F:      include/linux/pata_arasan_cf_data.h
10940
10941 LIBATA PATA DRIVERS
10942 R:      Sergey Shtylyov <s.shtylyov@omp.ru>
10943 L:      linux-ide@vger.kernel.org
10944 F:      drivers/ata/ata_*.c
10945 F:      drivers/ata/pata_*.c
10946
10947 LIBATA PATA FARADAY FTIDE010 AND GEMINI SATA BRIDGE DRIVERS
10948 M:      Linus Walleij <linus.walleij@linaro.org>
10949 L:      linux-ide@vger.kernel.org
10950 S:      Maintained
10951 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
10952 F:      drivers/ata/pata_ftide010.c
10953 F:      drivers/ata/sata_gemini.c
10954 F:      drivers/ata/sata_gemini.h
10955
10956 LIBATA SATA AHCI PLATFORM devices support
10957 M:      Hans de Goede <hdegoede@redhat.com>
10958 M:      Jens Axboe <axboe@kernel.dk>
10959 L:      linux-ide@vger.kernel.org
10960 S:      Maintained
10961 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
10962 F:      drivers/ata/ahci_platform.c
10963 F:      drivers/ata/libahci_platform.c
10964 F:      include/linux/ahci_platform.h
10965
10966 LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER
10967 M:      Mikael Pettersson <mikpelinux@gmail.com>
10968 L:      linux-ide@vger.kernel.org
10969 S:      Maintained
10970 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
10971 F:      drivers/ata/sata_promise.*
10972
10973 LIBATA SUBSYSTEM (Serial and Parallel ATA drivers)
10974 M:      Damien Le Moal <damien.lemoal@opensource.wdc.com>
10975 L:      linux-ide@vger.kernel.org
10976 S:      Maintained
10977 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dlemoal/libata.git
10978 F:      Documentation/devicetree/bindings/ata/
10979 F:      drivers/ata/
10980 F:      include/linux/ata.h
10981 F:      include/linux/libata.h
10982
10983 LIBNVDIMM BLK: MMIO-APERTURE DRIVER
10984 M:      Dan Williams <dan.j.williams@intel.com>
10985 M:      Vishal Verma <vishal.l.verma@intel.com>
10986 M:      Dave Jiang <dave.jiang@intel.com>
10987 L:      nvdimm@lists.linux.dev
10988 S:      Supported
10989 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10990 P:      Documentation/nvdimm/maintainer-entry-profile.rst
10991 F:      drivers/nvdimm/blk.c
10992 F:      drivers/nvdimm/region_devs.c
10993
10994 LIBNVDIMM BTT: BLOCK TRANSLATION TABLE
10995 M:      Vishal Verma <vishal.l.verma@intel.com>
10996 M:      Dan Williams <dan.j.williams@intel.com>
10997 M:      Dave Jiang <dave.jiang@intel.com>
10998 L:      nvdimm@lists.linux.dev
10999 S:      Supported
11000 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
11001 P:      Documentation/nvdimm/maintainer-entry-profile.rst
11002 F:      drivers/nvdimm/btt*
11003
11004 LIBNVDIMM PMEM: PERSISTENT MEMORY DRIVER
11005 M:      Dan Williams <dan.j.williams@intel.com>
11006 M:      Vishal Verma <vishal.l.verma@intel.com>
11007 M:      Dave Jiang <dave.jiang@intel.com>
11008 L:      nvdimm@lists.linux.dev
11009 S:      Supported
11010 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
11011 P:      Documentation/nvdimm/maintainer-entry-profile.rst
11012 F:      drivers/nvdimm/pmem*
11013
11014 LIBNVDIMM: DEVICETREE BINDINGS
11015 M:      Oliver O'Halloran <oohall@gmail.com>
11016 L:      nvdimm@lists.linux.dev
11017 S:      Supported
11018 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
11019 F:      Documentation/devicetree/bindings/pmem/pmem-region.txt
11020 F:      drivers/nvdimm/of_pmem.c
11021
11022 LIBNVDIMM: NON-VOLATILE MEMORY DEVICE SUBSYSTEM
11023 M:      Dan Williams <dan.j.williams@intel.com>
11024 M:      Vishal Verma <vishal.l.verma@intel.com>
11025 M:      Dave Jiang <dave.jiang@intel.com>
11026 M:      Ira Weiny <ira.weiny@intel.com>
11027 L:      nvdimm@lists.linux.dev
11028 S:      Supported
11029 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
11030 P:      Documentation/nvdimm/maintainer-entry-profile.rst
11031 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nvdimm/nvdimm.git
11032 F:      drivers/acpi/nfit/*
11033 F:      drivers/nvdimm/*
11034 F:      include/linux/libnvdimm.h
11035 F:      include/linux/nd.h
11036 F:      include/uapi/linux/ndctl.h
11037 F:      tools/testing/nvdimm/
11038
11039 LICENSES and SPDX stuff
11040 M:      Thomas Gleixner <tglx@linutronix.de>
11041 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
11042 L:      linux-spdx@vger.kernel.org
11043 S:      Maintained
11044 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/spdx.git
11045 F:      COPYING
11046 F:      Documentation/process/license-rules.rst
11047 F:      LICENSES/
11048 F:      scripts/spdxcheck-test.sh
11049 F:      scripts/spdxcheck.py
11050
11051 LINEAR RANGES HELPERS
11052 M:      Mark Brown <broonie@kernel.org>
11053 R:      Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
11054 F:      lib/linear_ranges.c
11055 F:      lib/test_linear_ranges.c
11056 F:      include/linux/linear_range.h
11057
11058 LINUX FOR POWER MACINTOSH
11059 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
11060 L:      linuxppc-dev@lists.ozlabs.org
11061 S:      Odd Fixes
11062 F:      arch/powerpc/platforms/powermac/
11063 F:      drivers/macintosh/
11064
11065 LINUX FOR POWERPC (32-BIT AND 64-BIT)
11066 M:      Michael Ellerman <mpe@ellerman.id.au>
11067 R:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
11068 R:      Paul Mackerras <paulus@samba.org>
11069 L:      linuxppc-dev@lists.ozlabs.org
11070 S:      Supported
11071 W:      https://github.com/linuxppc/wiki/wiki
11072 Q:      http://patchwork.ozlabs.org/project/linuxppc-dev/list/
11073 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git
11074 F:      Documentation/ABI/stable/sysfs-firmware-opal-*
11075 F:      Documentation/devicetree/bindings/i2c/i2c-opal.txt
11076 F:      Documentation/devicetree/bindings/powerpc/
11077 F:      Documentation/devicetree/bindings/rtc/rtc-opal.txt
11078 F:      Documentation/powerpc/
11079 F:      arch/powerpc/
11080 F:      drivers/*/*/*pasemi*
11081 F:      drivers/*/*pasemi*
11082 F:      drivers/char/tpm/tpm_ibmvtpm*
11083 F:      drivers/crypto/nx/
11084 F:      drivers/crypto/vmx/
11085 F:      drivers/i2c/busses/i2c-opal.c
11086 F:      drivers/net/ethernet/ibm/ibmveth.*
11087 F:      drivers/net/ethernet/ibm/ibmvnic.*
11088 F:      drivers/pci/hotplug/pnv_php.c
11089 F:      drivers/pci/hotplug/rpa*
11090 F:      drivers/rtc/rtc-opal.c
11091 F:      drivers/scsi/ibmvscsi/
11092 F:      drivers/tty/hvc/hvc_opal.c
11093 F:      drivers/watchdog/wdrtas.c
11094 F:      tools/testing/selftests/powerpc
11095 N:      /pmac
11096 N:      powermac
11097 N:      powernv
11098 N:      [^a-z0-9]ps3
11099 N:      pseries
11100
11101 LINUX FOR POWERPC EMBEDDED MPC5XXX
11102 M:      Anatolij Gustschin <agust@denx.de>
11103 L:      linuxppc-dev@lists.ozlabs.org
11104 S:      Odd Fixes
11105 F:      arch/powerpc/platforms/512x/
11106 F:      arch/powerpc/platforms/52xx/
11107
11108 LINUX FOR POWERPC EMBEDDED PPC4XX
11109 L:      linuxppc-dev@lists.ozlabs.org
11110 S:      Orphan
11111 F:      arch/powerpc/platforms/40x/
11112 F:      arch/powerpc/platforms/44x/
11113
11114 LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
11115 M:      Scott Wood <oss@buserror.net>
11116 L:      linuxppc-dev@lists.ozlabs.org
11117 S:      Odd fixes
11118 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git
11119 F:      Documentation/devicetree/bindings/powerpc/fsl/
11120 F:      arch/powerpc/platforms/83xx/
11121 F:      arch/powerpc/platforms/85xx/
11122
11123 LINUX FOR POWERPC EMBEDDED PPC8XX
11124 M:      Christophe Leroy <christophe.leroy@csgroup.eu>
11125 L:      linuxppc-dev@lists.ozlabs.org
11126 S:      Maintained
11127 F:      arch/powerpc/platforms/8xx/
11128
11129 LINUX KERNEL DUMP TEST MODULE (LKDTM)
11130 M:      Kees Cook <keescook@chromium.org>
11131 S:      Maintained
11132 F:      drivers/misc/lkdtm/*
11133 F:      tools/testing/selftests/lkdtm/*
11134
11135 LINUX KERNEL MEMORY CONSISTENCY MODEL (LKMM)
11136 M:      Alan Stern <stern@rowland.harvard.edu>
11137 M:      Andrea Parri <parri.andrea@gmail.com>
11138 M:      Will Deacon <will@kernel.org>
11139 M:      Peter Zijlstra <peterz@infradead.org>
11140 M:      Boqun Feng <boqun.feng@gmail.com>
11141 M:      Nicholas Piggin <npiggin@gmail.com>
11142 M:      David Howells <dhowells@redhat.com>
11143 M:      Jade Alglave <j.alglave@ucl.ac.uk>
11144 M:      Luc Maranget <luc.maranget@inria.fr>
11145 M:      "Paul E. McKenney" <paulmck@kernel.org>
11146 R:      Akira Yokosawa <akiyks@gmail.com>
11147 R:      Daniel Lustig <dlustig@nvidia.com>
11148 R:      Joel Fernandes <joel@joelfernandes.org>
11149 L:      linux-kernel@vger.kernel.org
11150 L:      linux-arch@vger.kernel.org
11151 S:      Supported
11152 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
11153 F:      Documentation/atomic_bitops.txt
11154 F:      Documentation/atomic_t.txt
11155 F:      Documentation/core-api/refcount-vs-atomic.rst
11156 F:      Documentation/litmus-tests/
11157 F:      Documentation/memory-barriers.txt
11158 F:      tools/memory-model/
11159
11160 LIS3LV02D ACCELEROMETER DRIVER
11161 M:      Eric Piel <eric.piel@tremplin-utc.net>
11162 S:      Maintained
11163 F:      Documentation/misc-devices/lis3lv02d.rst
11164 F:      drivers/misc/lis3lv02d/
11165 F:      drivers/platform/x86/hp_accel.c
11166
11167 LIST KUNIT TEST
11168 M:      David Gow <davidgow@google.com>
11169 L:      linux-kselftest@vger.kernel.org
11170 L:      kunit-dev@googlegroups.com
11171 S:      Maintained
11172 F:      lib/list-test.c
11173
11174 LITEX PLATFORM
11175 M:      Karol Gugala <kgugala@antmicro.com>
11176 M:      Mateusz Holenko <mholenko@antmicro.com>
11177 M:      Gabriel Somlo <gsomlo@gmail.com>
11178 M:      Joel Stanley <joel@jms.id.au>
11179 S:      Maintained
11180 F:      Documentation/devicetree/bindings/*/litex,*.yaml
11181 F:      arch/openrisc/boot/dts/or1klitex.dts
11182 F:      include/linux/litex.h
11183 F:      drivers/tty/serial/liteuart.c
11184 F:      drivers/soc/litex/*
11185 F:      drivers/net/ethernet/litex/*
11186 F:      drivers/mmc/host/litex_mmc.c
11187 N:      litex
11188
11189 LIVE PATCHING
11190 M:      Josh Poimboeuf <jpoimboe@redhat.com>
11191 M:      Jiri Kosina <jikos@kernel.org>
11192 M:      Miroslav Benes <mbenes@suse.cz>
11193 M:      Petr Mladek <pmladek@suse.com>
11194 R:      Joe Lawrence <joe.lawrence@redhat.com>
11195 L:      live-patching@vger.kernel.org
11196 S:      Maintained
11197 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/livepatching/livepatching.git
11198 F:      Documentation/ABI/testing/sysfs-kernel-livepatch
11199 F:      Documentation/livepatch/
11200 F:      arch/powerpc/include/asm/livepatch.h
11201 F:      arch/s390/include/asm/livepatch.h
11202 F:      arch/x86/include/asm/livepatch.h
11203 F:      include/linux/livepatch.h
11204 F:      kernel/livepatch/
11205 F:      lib/livepatch/
11206 F:      samples/livepatch/
11207 F:      tools/testing/selftests/livepatch/
11208
11209 LLC (802.2)
11210 L:      netdev@vger.kernel.org
11211 S:      Odd fixes
11212 F:      include/linux/llc.h
11213 F:      include/net/llc*
11214 F:      include/uapi/linux/llc.h
11215 F:      net/llc/
11216
11217 LM73 HARDWARE MONITOR DRIVER
11218 M:      Guillaume Ligneul <guillaume.ligneul@gmail.com>
11219 L:      linux-hwmon@vger.kernel.org
11220 S:      Maintained
11221 F:      drivers/hwmon/lm73.c
11222
11223 LM78 HARDWARE MONITOR DRIVER
11224 M:      Jean Delvare <jdelvare@suse.com>
11225 L:      linux-hwmon@vger.kernel.org
11226 S:      Maintained
11227 F:      Documentation/hwmon/lm78.rst
11228 F:      drivers/hwmon/lm78.c
11229
11230 LM83 HARDWARE MONITOR DRIVER
11231 M:      Jean Delvare <jdelvare@suse.com>
11232 L:      linux-hwmon@vger.kernel.org
11233 S:      Maintained
11234 F:      Documentation/hwmon/lm83.rst
11235 F:      drivers/hwmon/lm83.c
11236
11237 LM90 HARDWARE MONITOR DRIVER
11238 M:      Jean Delvare <jdelvare@suse.com>
11239 L:      linux-hwmon@vger.kernel.org
11240 S:      Maintained
11241 F:      Documentation/devicetree/bindings/hwmon/national,lm90.yaml
11242 F:      Documentation/hwmon/lm90.rst
11243 F:      drivers/hwmon/lm90.c
11244 F:      include/dt-bindings/thermal/lm90.h
11245
11246 LM95234 HARDWARE MONITOR DRIVER
11247 M:      Guenter Roeck <linux@roeck-us.net>
11248 L:      linux-hwmon@vger.kernel.org
11249 S:      Maintained
11250 F:      Documentation/hwmon/lm95234.rst
11251 F:      drivers/hwmon/lm95234.c
11252
11253 LME2510 MEDIA DRIVER
11254 M:      Malcolm Priestley <tvboxspy@gmail.com>
11255 L:      linux-media@vger.kernel.org
11256 S:      Maintained
11257 W:      https://linuxtv.org
11258 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11259 F:      drivers/media/usb/dvb-usb-v2/lmedm04*
11260
11261 LOADPIN SECURITY MODULE
11262 M:      Kees Cook <keescook@chromium.org>
11263 S:      Supported
11264 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git lsm/loadpin
11265 F:      Documentation/admin-guide/LSM/LoadPin.rst
11266 F:      security/loadpin/
11267
11268 LOCKING PRIMITIVES
11269 M:      Peter Zijlstra <peterz@infradead.org>
11270 M:      Ingo Molnar <mingo@redhat.com>
11271 M:      Will Deacon <will@kernel.org>
11272 R:      Waiman Long <longman@redhat.com>
11273 R:      Boqun Feng <boqun.feng@gmail.com> (LOCKDEP)
11274 L:      linux-kernel@vger.kernel.org
11275 S:      Maintained
11276 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
11277 F:      Documentation/locking/
11278 F:      arch/*/include/asm/spinlock*.h
11279 F:      include/linux/lockdep.h
11280 F:      include/linux/mutex*.h
11281 F:      include/linux/rwlock*.h
11282 F:      include/linux/rwsem*.h
11283 F:      include/linux/seqlock.h
11284 F:      include/linux/spinlock*.h
11285 F:      kernel/locking/
11286 F:      lib/locking*.[ch]
11287 X:      kernel/locking/locktorture.c
11288
11289 LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
11290 M:      "Richard Russon (FlatCap)" <ldm@flatcap.org>
11291 L:      linux-ntfs-dev@lists.sourceforge.net
11292 S:      Maintained
11293 W:      http://www.linux-ntfs.org/content/view/19/37/
11294 F:      Documentation/admin-guide/ldm.rst
11295 F:      block/partitions/ldm.*
11296
11297 LOGITECH HID GAMING KEYBOARDS
11298 M:      Hans de Goede <hdegoede@redhat.com>
11299 L:      linux-input@vger.kernel.org
11300 S:      Maintained
11301 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
11302 F:      drivers/hid/hid-lg-g15.c
11303
11304 LONTIUM LT8912B MIPI TO HDMI BRIDGE
11305 M:      Adrien Grassein <adrien.grassein@gmail.com>
11306 S:      Maintained
11307 F:      Documentation/devicetree/bindings/display/bridge/lontium,lt8912b.yaml
11308 F:      drivers/gpu/drm/bridge/lontium-lt8912b.c
11309
11310 LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
11311 M:      Sathya Prakash <sathya.prakash@broadcom.com>
11312 M:      Sreekanth Reddy <sreekanth.reddy@broadcom.com>
11313 M:      Suganath Prabu Subramani <suganath-prabu.subramani@broadcom.com>
11314 L:      MPT-FusionLinux.pdl@broadcom.com
11315 L:      linux-scsi@vger.kernel.org
11316 S:      Supported
11317 W:      http://www.avagotech.com/support/
11318 F:      drivers/message/fusion/
11319 F:      drivers/scsi/mpt3sas/
11320
11321 LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
11322 M:      Matthew Wilcox <willy@infradead.org>
11323 L:      linux-scsi@vger.kernel.org
11324 S:      Maintained
11325 F:      drivers/scsi/sym53c8xx_2/
11326
11327 LTC1660 DAC DRIVER
11328 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
11329 L:      linux-iio@vger.kernel.org
11330 S:      Maintained
11331 F:      Documentation/devicetree/bindings/iio/dac/lltc,ltc1660.yaml
11332 F:      drivers/iio/dac/ltc1660.c
11333
11334 LTC2947 HARDWARE MONITOR DRIVER
11335 M:      Nuno Sá <nuno.sa@analog.com>
11336 L:      linux-hwmon@vger.kernel.org
11337 S:      Supported
11338 W:      http://ez.analog.com/community/linux-device-drivers
11339 F:      Documentation/devicetree/bindings/hwmon/adi,ltc2947.yaml
11340 F:      drivers/hwmon/ltc2947-core.c
11341 F:      drivers/hwmon/ltc2947-i2c.c
11342 F:      drivers/hwmon/ltc2947-spi.c
11343 F:      drivers/hwmon/ltc2947.h
11344
11345 LTC2983 IIO TEMPERATURE DRIVER
11346 M:      Nuno Sá <nuno.sa@analog.com>
11347 L:      linux-iio@vger.kernel.org
11348 S:      Supported
11349 W:      http://ez.analog.com/community/linux-device-drivers
11350 F:      Documentation/devicetree/bindings/iio/temperature/adi,ltc2983.yaml
11351 F:      drivers/iio/temperature/ltc2983.c
11352
11353 LTC4261 HARDWARE MONITOR DRIVER
11354 M:      Guenter Roeck <linux@roeck-us.net>
11355 L:      linux-hwmon@vger.kernel.org
11356 S:      Maintained
11357 F:      Documentation/hwmon/ltc4261.rst
11358 F:      drivers/hwmon/ltc4261.c
11359
11360 LTC4306 I2C MULTIPLEXER DRIVER
11361 M:      Michael Hennerich <michael.hennerich@analog.com>
11362 L:      linux-i2c@vger.kernel.org
11363 S:      Supported
11364 W:      http://ez.analog.com/community/linux-device-drivers
11365 F:      Documentation/devicetree/bindings/i2c/i2c-mux-ltc4306.txt
11366 F:      drivers/i2c/muxes/i2c-mux-ltc4306.c
11367
11368 LTP (Linux Test Project)
11369 M:      Mike Frysinger <vapier@gentoo.org>
11370 M:      Cyril Hrubis <chrubis@suse.cz>
11371 M:      Wanlong Gao <wanlong.gao@gmail.com>
11372 M:      Jan Stancek <jstancek@redhat.com>
11373 M:      Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com>
11374 M:      Alexey Kodanev <alexey.kodanev@oracle.com>
11375 L:      ltp@lists.linux.it (subscribers-only)
11376 S:      Maintained
11377 W:      http://linux-test-project.github.io/
11378 T:      git git://github.com/linux-test-project/ltp.git
11379
11380 LYNX PCS MODULE
11381 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
11382 L:      netdev@vger.kernel.org
11383 S:      Supported
11384 F:      drivers/net/pcs/pcs-lynx.c
11385 F:      include/linux/pcs-lynx.h
11386
11387 M68K ARCHITECTURE
11388 M:      Geert Uytterhoeven <geert@linux-m68k.org>
11389 L:      linux-m68k@lists.linux-m68k.org
11390 S:      Maintained
11391 W:      http://www.linux-m68k.org/
11392 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
11393 F:      arch/m68k/
11394 F:      drivers/zorro/
11395
11396 M68K ON APPLE MACINTOSH
11397 M:      Joshua Thompson <funaho@jurai.org>
11398 L:      linux-m68k@lists.linux-m68k.org
11399 S:      Maintained
11400 W:      http://www.mac.linux-m68k.org/
11401 F:      arch/m68k/mac/
11402 F:      drivers/macintosh/adb-iop.c
11403 F:      drivers/macintosh/via-macii.c
11404
11405 M68K ON HP9000/300
11406 M:      Philip Blundell <philb@gnu.org>
11407 S:      Maintained
11408 W:      http://www.tazenda.demon.co.uk/phil/linux-hp
11409 F:      arch/m68k/hp300/
11410
11411 M88DS3103 MEDIA DRIVER
11412 M:      Antti Palosaari <crope@iki.fi>
11413 L:      linux-media@vger.kernel.org
11414 S:      Maintained
11415 W:      https://linuxtv.org
11416 W:      http://palosaari.fi/linux/
11417 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11418 T:      git git://linuxtv.org/anttip/media_tree.git
11419 F:      drivers/media/dvb-frontends/m88ds3103*
11420
11421 M88RS2000 MEDIA DRIVER
11422 M:      Malcolm Priestley <tvboxspy@gmail.com>
11423 L:      linux-media@vger.kernel.org
11424 S:      Maintained
11425 W:      https://linuxtv.org
11426 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11427 F:      drivers/media/dvb-frontends/m88rs2000*
11428
11429 MA901 MASTERKIT USB FM RADIO DRIVER
11430 M:      Alexey Klimov <klimov.linux@gmail.com>
11431 L:      linux-media@vger.kernel.org
11432 S:      Maintained
11433 T:      git git://linuxtv.org/media_tree.git
11434 F:      drivers/media/radio/radio-ma901.c
11435
11436 MAC80211
11437 M:      Johannes Berg <johannes@sipsolutions.net>
11438 L:      linux-wireless@vger.kernel.org
11439 S:      Maintained
11440 W:      https://wireless.wiki.kernel.org/
11441 Q:      https://patchwork.kernel.org/project/linux-wireless/list/
11442 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless.git
11443 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless-next.git
11444 F:      Documentation/networking/mac80211-injection.rst
11445 F:      Documentation/networking/mac80211_hwsim/mac80211_hwsim.rst
11446 F:      drivers/net/wireless/mac80211_hwsim.[ch]
11447 F:      include/net/mac80211.h
11448 F:      net/mac80211/
11449
11450 MAILBOX API
11451 M:      Jassi Brar <jassisinghbrar@gmail.com>
11452 L:      linux-kernel@vger.kernel.org
11453 S:      Maintained
11454 F:      drivers/mailbox/
11455 F:      include/linux/mailbox_client.h
11456 F:      include/linux/mailbox_controller.h
11457 F:      include/dt-bindings/mailbox/
11458 F:      Documentation/devicetree/bindings/mailbox/
11459
11460 MAILBOX ARM MHUv2
11461 M:      Viresh Kumar <viresh.kumar@linaro.org>
11462 M:      Tushar Khandelwal <Tushar.Khandelwal@arm.com>
11463 L:      linux-kernel@vger.kernel.org
11464 S:      Maintained
11465 F:      drivers/mailbox/arm_mhuv2.c
11466 F:      include/linux/mailbox/arm_mhuv2_message.h
11467 F:      Documentation/devicetree/bindings/mailbox/arm,mhuv2.yaml
11468
11469 MANAGEMENT COMPONENT TRANSPORT PROTOCOL (MCTP)
11470 M:      Jeremy Kerr <jk@codeconstruct.com.au>
11471 M:      Matt Johnston <matt@codeconstruct.com.au>
11472 L:      netdev@vger.kernel.org
11473 S:      Maintained
11474 F:      Documentation/networking/mctp.rst
11475 F:      drivers/net/mctp/
11476 F:      include/net/mctp.h
11477 F:      include/net/mctpdevice.h
11478 F:      include/net/netns/mctp.h
11479 F:      net/mctp/
11480
11481 MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
11482 M:      Michael Kerrisk <mtk.manpages@gmail.com>
11483 L:      linux-man@vger.kernel.org
11484 S:      Maintained
11485 W:      http://www.kernel.org/doc/man-pages
11486
11487 MARDUK (CREATOR CI40) DEVICE TREE SUPPORT
11488 M:      Rahul Bedarkar <rahulbedarkar89@gmail.com>
11489 L:      linux-mips@vger.kernel.org
11490 S:      Maintained
11491 F:      arch/mips/boot/dts/img/pistachio*
11492
11493 MARVELL 88E6XXX ETHERNET SWITCH FABRIC DRIVER
11494 M:      Andrew Lunn <andrew@lunn.ch>
11495 M:      Vivien Didelot <vivien.didelot@gmail.com>
11496 L:      netdev@vger.kernel.org
11497 S:      Maintained
11498 F:      Documentation/devicetree/bindings/net/dsa/marvell.txt
11499 F:      Documentation/networking/devlink/mv88e6xxx.rst
11500 F:      drivers/net/dsa/mv88e6xxx/
11501 F:      include/linux/dsa/mv88e6xxx.h
11502 F:      include/linux/platform_data/mv88e6xxx.h
11503
11504 MARVELL ARMADA 3700 PHY DRIVERS
11505 M:      Miquel Raynal <miquel.raynal@bootlin.com>
11506 S:      Maintained
11507 F:      Documentation/devicetree/bindings/phy/phy-mvebu-comphy.txt
11508 F:      Documentation/devicetree/bindings/phy/marvell,armada-3700-utmi-phy.yaml
11509 F:      drivers/phy/marvell/phy-mvebu-a3700-comphy.c
11510 F:      drivers/phy/marvell/phy-mvebu-a3700-utmi.c
11511
11512 MARVELL ARMADA DRM SUPPORT
11513 M:      Russell King <linux@armlinux.org.uk>
11514 S:      Maintained
11515 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-devel
11516 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-fixes
11517 F:      Documentation/devicetree/bindings/display/armada/
11518 F:      drivers/gpu/drm/armada/
11519 F:      include/uapi/drm/armada_drm.h
11520
11521 MARVELL CRYPTO DRIVER
11522 M:      Boris Brezillon <bbrezillon@kernel.org>
11523 M:      Arnaud Ebalard <arno@natisbad.org>
11524 M:      Srujana Challa <schalla@marvell.com>
11525 L:      linux-crypto@vger.kernel.org
11526 S:      Maintained
11527 F:      drivers/crypto/marvell/
11528 F:      include/linux/soc/marvell/octeontx2/
11529
11530 MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
11531 M:      Mirko Lindner <mlindner@marvell.com>
11532 M:      Stephen Hemminger <stephen@networkplumber.org>
11533 L:      netdev@vger.kernel.org
11534 S:      Maintained
11535 F:      drivers/net/ethernet/marvell/sk*
11536
11537 MARVELL LIBERTAS WIRELESS DRIVER
11538 L:      libertas-dev@lists.infradead.org
11539 S:      Orphan
11540 F:      drivers/net/wireless/marvell/libertas/
11541
11542 MARVELL MACCHIATOBIN SUPPORT
11543 M:      Russell King <linux@armlinux.org.uk>
11544 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11545 S:      Maintained
11546 F:      arch/arm64/boot/dts/marvell/armada-8040-mcbin.dts
11547
11548 MARVELL MV643XX ETHERNET DRIVER
11549 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
11550 L:      netdev@vger.kernel.org
11551 S:      Maintained
11552 F:      drivers/net/ethernet/marvell/mv643xx_eth.*
11553 F:      include/linux/mv643xx.h
11554
11555 MARVELL MV88X3310 PHY DRIVER
11556 M:      Russell King <linux@armlinux.org.uk>
11557 M:      Marek Behún <kabel@kernel.org>
11558 L:      netdev@vger.kernel.org
11559 S:      Maintained
11560 F:      drivers/net/phy/marvell10g.c
11561
11562 MARVELL MVEBU THERMAL DRIVER
11563 M:      Miquel Raynal <miquel.raynal@bootlin.com>
11564 S:      Maintained
11565 F:      drivers/thermal/armada_thermal.c
11566
11567 MARVELL MVNETA ETHERNET DRIVER
11568 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
11569 L:      netdev@vger.kernel.org
11570 S:      Maintained
11571 F:      drivers/net/ethernet/marvell/mvneta.*
11572
11573 MARVELL MVPP2 ETHERNET DRIVER
11574 M:      Marcin Wojtas <mw@semihalf.com>
11575 M:      Russell King <linux@armlinux.org.uk>
11576 L:      netdev@vger.kernel.org
11577 S:      Maintained
11578 F:      Documentation/devicetree/bindings/net/marvell-pp2.txt
11579 F:      drivers/net/ethernet/marvell/mvpp2/
11580
11581 MARVELL MWIFIEX WIRELESS DRIVER
11582 M:      Amitkumar Karwar <amitkarwar@gmail.com>
11583 M:      Ganapathi Bhat <ganapathi017@gmail.com>
11584 M:      Sharvari Harisangam <sharvari.harisangam@nxp.com>
11585 M:      Xinming Hu <huxinming820@gmail.com>
11586 L:      linux-wireless@vger.kernel.org
11587 S:      Maintained
11588 F:      drivers/net/wireless/marvell/mwifiex/
11589
11590 MARVELL MWL8K WIRELESS DRIVER
11591 M:      Lennert Buytenhek <buytenh@wantstofly.org>
11592 L:      linux-wireless@vger.kernel.org
11593 S:      Odd Fixes
11594 F:      drivers/net/wireless/marvell/mwl8k.c
11595
11596 MARVELL NAND CONTROLLER DRIVER
11597 M:      Miquel Raynal <miquel.raynal@bootlin.com>
11598 L:      linux-mtd@lists.infradead.org
11599 S:      Maintained
11600 F:      Documentation/devicetree/bindings/mtd/marvell-nand.txt
11601 F:      drivers/mtd/nand/raw/marvell_nand.c
11602
11603 MARVELL OCTEONTX2 PHYSICAL FUNCTION DRIVER
11604 M:      Sunil Goutham <sgoutham@marvell.com>
11605 M:      Geetha sowjanya <gakula@marvell.com>
11606 M:      Subbaraya Sundeep <sbhatta@marvell.com>
11607 M:      hariprasad <hkelam@marvell.com>
11608 L:      netdev@vger.kernel.org
11609 S:      Supported
11610 F:      drivers/net/ethernet/marvell/octeontx2/nic/
11611 F:      include/linux/soc/marvell/octeontx2/
11612
11613 MARVELL OCTEONTX2 RVU ADMIN FUNCTION DRIVER
11614 M:      Sunil Goutham <sgoutham@marvell.com>
11615 M:      Linu Cherian <lcherian@marvell.com>
11616 M:      Geetha sowjanya <gakula@marvell.com>
11617 M:      Jerin Jacob <jerinj@marvell.com>
11618 M:      hariprasad <hkelam@marvell.com>
11619 M:      Subbaraya Sundeep <sbhatta@marvell.com>
11620 L:      netdev@vger.kernel.org
11621 S:      Supported
11622 F:      Documentation/networking/device_drivers/ethernet/marvell/octeontx2.rst
11623 F:      drivers/net/ethernet/marvell/octeontx2/af/
11624
11625 MARVELL PRESTERA ETHERNET SWITCH DRIVER
11626 M:      Taras Chornyi <tchornyi@marvell.com>
11627 S:      Supported
11628 W:      https://github.com/Marvell-switching/switchdev-prestera
11629 F:      drivers/net/ethernet/marvell/prestera/
11630
11631 MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
11632 M:      Nicolas Pitre <nico@fluxnic.net>
11633 S:      Odd Fixes
11634 F:      drivers/mmc/host/mvsdio.*
11635
11636 MARVELL USB MDIO CONTROLLER DRIVER
11637 M:      Tobias Waldekranz <tobias@waldekranz.com>
11638 L:      netdev@vger.kernel.org
11639 S:      Maintained
11640 F:      Documentation/devicetree/bindings/net/marvell,mvusb.yaml
11641 F:      drivers/net/mdio/mdio-mvusb.c
11642
11643 MARVELL XENON MMC/SD/SDIO HOST CONTROLLER DRIVER
11644 M:      Hu Ziji <huziji@marvell.com>
11645 L:      linux-mmc@vger.kernel.org
11646 S:      Supported
11647 F:      Documentation/devicetree/bindings/mmc/marvell,xenon-sdhci.txt
11648 F:      drivers/mmc/host/sdhci-xenon*
11649
11650 MATROX FRAMEBUFFER DRIVER
11651 L:      linux-fbdev@vger.kernel.org
11652 S:      Orphan
11653 F:      drivers/video/fbdev/matrox/matroxfb_*
11654 F:      include/uapi/linux/matroxfb.h
11655
11656 MAX15301 DRIVER
11657 M:      Daniel Nilsson <daniel.nilsson@flex.com>
11658 L:      linux-hwmon@vger.kernel.org
11659 S:      Maintained
11660 F:      Documentation/hwmon/max15301.rst
11661 F:      drivers/hwmon/pmbus/max15301.c
11662
11663 MAX16065 HARDWARE MONITOR DRIVER
11664 M:      Guenter Roeck <linux@roeck-us.net>
11665 L:      linux-hwmon@vger.kernel.org
11666 S:      Maintained
11667 F:      Documentation/hwmon/max16065.rst
11668 F:      drivers/hwmon/max16065.c
11669
11670 MAX2175 SDR TUNER DRIVER
11671 M:      Ramesh Shanmugasundaram <rashanmu@gmail.com>
11672 L:      linux-media@vger.kernel.org
11673 S:      Maintained
11674 T:      git git://linuxtv.org/media_tree.git
11675 F:      Documentation/devicetree/bindings/media/i2c/max2175.txt
11676 F:      Documentation/userspace-api/media/drivers/max2175.rst
11677 F:      drivers/media/i2c/max2175*
11678 F:      include/uapi/linux/max2175.h
11679
11680 MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
11681 L:      linux-hwmon@vger.kernel.org
11682 S:      Orphan
11683 F:      Documentation/hwmon/max6650.rst
11684 F:      drivers/hwmon/max6650.c
11685
11686 MAX6697 HARDWARE MONITOR DRIVER
11687 M:      Guenter Roeck <linux@roeck-us.net>
11688 L:      linux-hwmon@vger.kernel.org
11689 S:      Maintained
11690 F:      Documentation/devicetree/bindings/hwmon/max6697.txt
11691 F:      Documentation/hwmon/max6697.rst
11692 F:      drivers/hwmon/max6697.c
11693 F:      include/linux/platform_data/max6697.h
11694
11695 MAX9286 QUAD GMSL DESERIALIZER DRIVER
11696 M:      Jacopo Mondi <jacopo+renesas@jmondi.org>
11697 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
11698 M:      Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
11699 M:      Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
11700 L:      linux-media@vger.kernel.org
11701 S:      Maintained
11702 F:      Documentation/devicetree/bindings/media/i2c/maxim,max9286.yaml
11703 F:      drivers/media/i2c/max9286.c
11704
11705 MAX96712 QUAD GMSL2 DESERIALIZER DRIVER
11706 M:      Niklas Söderlund <niklas.soderlund@ragnatech.se>
11707 L:      linux-media@vger.kernel.org
11708 S:      Maintained
11709 F:      drivers/staging/media/max96712/max96712.c
11710
11711 MAX9860 MONO AUDIO VOICE CODEC DRIVER
11712 M:      Peter Rosin <peda@axentia.se>
11713 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
11714 S:      Maintained
11715 F:      Documentation/devicetree/bindings/sound/max9860.txt
11716 F:      sound/soc/codecs/max9860.*
11717
11718 MAXBOTIX ULTRASONIC RANGER IIO DRIVER
11719 M:      Andreas Klinger <ak@it-klinger.de>
11720 L:      linux-iio@vger.kernel.org
11721 S:      Maintained
11722 F:      Documentation/devicetree/bindings/iio/proximity/maxbotix,mb1232.yaml
11723 F:      drivers/iio/proximity/mb1232.c
11724
11725 MAXIM MAX17040 FAMILY FUEL GAUGE DRIVERS
11726 R:      Iskren Chernev <iskren.chernev@gmail.com>
11727 R:      Krzysztof Kozlowski <krzk@kernel.org>
11728 R:      Marek Szyprowski <m.szyprowski@samsung.com>
11729 R:      Matheus Castello <matheus@castello.eng.br>
11730 L:      linux-pm@vger.kernel.org
11731 S:      Maintained
11732 F:      Documentation/devicetree/bindings/power/supply/maxim,max17040.yaml
11733 F:      drivers/power/supply/max17040_battery.c
11734
11735 MAXIM MAX17042 FAMILY FUEL GAUGE DRIVERS
11736 R:      Hans de Goede <hdegoede@redhat.com>
11737 R:      Krzysztof Kozlowski <krzk@kernel.org>
11738 R:      Marek Szyprowski <m.szyprowski@samsung.com>
11739 R:      Sebastian Krzyszkowiak <sebastian.krzyszkowiak@puri.sm>
11740 R:      Purism Kernel Team <kernel@puri.sm>
11741 L:      linux-pm@vger.kernel.org
11742 S:      Maintained
11743 F:      Documentation/devicetree/bindings/power/supply/maxim,max17042.yaml
11744 F:      drivers/power/supply/max17042_battery.c
11745
11746 MAXIM MAX20086 CAMERA POWER PROTECTOR DRIVER
11747 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11748 L:      linux-kernel@vger.kernel.org
11749 S:      Maintained
11750 F:      Documentation/devicetree/bindings/regulator/maxim,max20086.yaml
11751 F:      drivers/regulator/max20086-regulator.c
11752
11753 MAXIM MAX77650 PMIC MFD DRIVER
11754 M:      Bartosz Golaszewski <brgl@bgdev.pl>
11755 L:      linux-kernel@vger.kernel.org
11756 S:      Maintained
11757 F:      Documentation/devicetree/bindings/*/*max77650.yaml
11758 F:      Documentation/devicetree/bindings/*/max77650*.yaml
11759 F:      drivers/gpio/gpio-max77650.c
11760 F:      drivers/input/misc/max77650-onkey.c
11761 F:      drivers/leds/leds-max77650.c
11762 F:      drivers/mfd/max77650.c
11763 F:      drivers/power/supply/max77650-charger.c
11764 F:      drivers/regulator/max77650-regulator.c
11765 F:      include/linux/mfd/max77650.h
11766
11767 MAXIM MAX77802 PMIC REGULATOR DEVICE DRIVER
11768 M:      Javier Martinez Canillas <javier@dowhile0.org>
11769 L:      linux-kernel@vger.kernel.org
11770 S:      Supported
11771 F:      Documentation/devicetree/bindings/*/*max77802.yaml
11772 F:      drivers/regulator/max77802-regulator.c
11773 F:      include/dt-bindings/*/*max77802.h
11774
11775 MAXIM MAX77976 BATTERY CHARGER
11776 M:      Luca Ceresoli <luca@lucaceresoli.net>
11777 S:      Supported
11778 F:      Documentation/devicetree/bindings/power/supply/maxim,max77976.yaml
11779 F:      drivers/power/supply/max77976_charger.c
11780
11781 MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS
11782 M:      Krzysztof Kozlowski <krzk@kernel.org>
11783 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
11784 L:      linux-pm@vger.kernel.org
11785 S:      Supported
11786 F:      Documentation/devicetree/bindings/power/supply/maxim,max14577.yaml
11787 F:      drivers/power/supply/max14577_charger.c
11788 F:      drivers/power/supply/max77693_charger.c
11789
11790 MAXIM PMIC AND MUIC DRIVERS FOR EXYNOS BASED BOARDS
11791 M:      Chanwoo Choi <cw00.choi@samsung.com>
11792 M:      Krzysztof Kozlowski <krzk@kernel.org>
11793 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
11794 L:      linux-kernel@vger.kernel.org
11795 S:      Supported
11796 F:      Documentation/devicetree/bindings/*/maxim,max14577.yaml
11797 F:      Documentation/devicetree/bindings/*/maxim,max77686.yaml
11798 F:      Documentation/devicetree/bindings/*/maxim,max77843.yaml
11799 F:      Documentation/devicetree/bindings/clock/maxim,max77686.txt
11800 F:      Documentation/devicetree/bindings/mfd/max77693.txt
11801 F:      drivers/*/*max77843.c
11802 F:      drivers/*/max14577*.c
11803 F:      drivers/*/max77686*.c
11804 F:      drivers/*/max77693*.c
11805 F:      drivers/clk/clk-max77686.c
11806 F:      drivers/extcon/extcon-max14577.c
11807 F:      drivers/extcon/extcon-max77693.c
11808 F:      drivers/rtc/rtc-max77686.c
11809 F:      include/linux/mfd/max14577*.h
11810 F:      include/linux/mfd/max77686*.h
11811 F:      include/linux/mfd/max77693*.h
11812
11813 MAXIRADIO FM RADIO RECEIVER DRIVER
11814 M:      Hans Verkuil <hverkuil@xs4all.nl>
11815 L:      linux-media@vger.kernel.org
11816 S:      Maintained
11817 W:      https://linuxtv.org
11818 T:      git git://linuxtv.org/media_tree.git
11819 F:      drivers/media/radio/radio-maxiradio*
11820
11821 MAXLINEAR ETHERNET PHY DRIVER
11822 M:      Xu Liang <lxu@maxlinear.com>
11823 L:      netdev@vger.kernel.org
11824 S:      Supported
11825 F:      drivers/net/phy/mxl-gpy.c
11826
11827 MCBA MICROCHIP CAN BUS ANALYZER TOOL DRIVER
11828 R:      Yasushi SHOJI <yashi@spacecubics.com>
11829 L:      linux-can@vger.kernel.org
11830 S:      Maintained
11831 F:      drivers/net/can/usb/mcba_usb.c
11832
11833 MCAN MMIO DEVICE DRIVER
11834 M:      Chandrasekar Ramakrishnan <rcsekar@samsung.com>
11835 L:      linux-can@vger.kernel.org
11836 S:      Maintained
11837 F:      Documentation/devicetree/bindings/net/can/bosch,m_can.yaml
11838 F:      drivers/net/can/m_can/m_can.c
11839 F:      drivers/net/can/m_can/m_can.h
11840 F:      drivers/net/can/m_can/m_can_platform.c
11841
11842 MCP2221A MICROCHIP USB-HID TO I2C BRIDGE DRIVER
11843 M:      Rishi Gupta <gupt21@gmail.com>
11844 L:      linux-i2c@vger.kernel.org
11845 L:      linux-input@vger.kernel.org
11846 S:      Maintained
11847 F:      drivers/hid/hid-mcp2221.c
11848
11849 MCP251XFD SPI-CAN NETWORK DRIVER
11850 M:      Marc Kleine-Budde <mkl@pengutronix.de>
11851 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
11852 R:      Thomas Kopp <thomas.kopp@microchip.com>
11853 L:      linux-can@vger.kernel.org
11854 S:      Maintained
11855 F:      Documentation/devicetree/bindings/net/can/microchip,mcp251xfd.yaml
11856 F:      drivers/net/can/spi/mcp251xfd/
11857
11858 MCP4018 AND MCP4531 MICROCHIP DIGITAL POTENTIOMETER DRIVERS
11859 M:      Peter Rosin <peda@axentia.se>
11860 L:      linux-iio@vger.kernel.org
11861 S:      Maintained
11862 F:      Documentation/ABI/testing/sysfs-bus-iio-potentiometer-mcp4531
11863 F:      drivers/iio/potentiometer/mcp4018.c
11864 F:      drivers/iio/potentiometer/mcp4531.c
11865
11866 MCR20A IEEE-802.15.4 RADIO DRIVER
11867 M:      Xue Liu <liuxuenetmail@gmail.com>
11868 L:      linux-wpan@vger.kernel.org
11869 S:      Maintained
11870 W:      https://github.com/xueliu/mcr20a-linux
11871 F:      Documentation/devicetree/bindings/net/ieee802154/mcr20a.txt
11872 F:      drivers/net/ieee802154/mcr20a.c
11873 F:      drivers/net/ieee802154/mcr20a.h
11874
11875 MEASUREMENT COMPUTING CIO-DAC IIO DRIVER
11876 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
11877 L:      linux-iio@vger.kernel.org
11878 S:      Maintained
11879 F:      drivers/iio/dac/cio-dac.c
11880
11881 MEDIA CONTROLLER FRAMEWORK
11882 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
11883 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11884 L:      linux-media@vger.kernel.org
11885 S:      Supported
11886 W:      https://www.linuxtv.org
11887 T:      git git://linuxtv.org/media_tree.git
11888 F:      drivers/media/mc/
11889 F:      include/media/media-*.h
11890 F:      include/uapi/linux/media.h
11891
11892 MEDIA DRIVER FOR FREESCALE IMX PXP
11893 M:      Philipp Zabel <p.zabel@pengutronix.de>
11894 L:      linux-media@vger.kernel.org
11895 S:      Maintained
11896 T:      git git://linuxtv.org/media_tree.git
11897 F:      drivers/media/platform/nxp/imx-pxp.[ch]
11898
11899 MEDIA DRIVERS FOR ASCOT2E
11900 M:      Sergey Kozlov <serjk@netup.ru>
11901 M:      Abylay Ospan <aospan@netup.ru>
11902 L:      linux-media@vger.kernel.org
11903 S:      Supported
11904 W:      https://linuxtv.org
11905 W:      http://netup.tv/
11906 T:      git git://linuxtv.org/media_tree.git
11907 F:      drivers/media/dvb-frontends/ascot2e*
11908
11909 MEDIA DRIVERS FOR CXD2099AR CI CONTROLLERS
11910 M:      Jasmin Jessich <jasmin@anw.at>
11911 L:      linux-media@vger.kernel.org
11912 S:      Maintained
11913 W:      https://linuxtv.org
11914 T:      git git://linuxtv.org/media_tree.git
11915 F:      drivers/media/dvb-frontends/cxd2099*
11916
11917 MEDIA DRIVERS FOR CXD2841ER
11918 M:      Sergey Kozlov <serjk@netup.ru>
11919 M:      Abylay Ospan <aospan@netup.ru>
11920 L:      linux-media@vger.kernel.org
11921 S:      Supported
11922 W:      https://linuxtv.org
11923 W:      http://netup.tv/
11924 T:      git git://linuxtv.org/media_tree.git
11925 F:      drivers/media/dvb-frontends/cxd2841er*
11926
11927 MEDIA DRIVERS FOR CXD2880
11928 M:      Yasunari Takiguchi <Yasunari.Takiguchi@sony.com>
11929 L:      linux-media@vger.kernel.org
11930 S:      Supported
11931 W:      http://linuxtv.org/
11932 T:      git git://linuxtv.org/media_tree.git
11933 F:      drivers/media/dvb-frontends/cxd2880/*
11934 F:      drivers/media/spi/cxd2880*
11935
11936 MEDIA DRIVERS FOR DIGITAL DEVICES PCIE DEVICES
11937 L:      linux-media@vger.kernel.org
11938 S:      Orphan
11939 W:      https://linuxtv.org
11940 T:      git git://linuxtv.org/media_tree.git
11941 F:      drivers/media/pci/ddbridge/*
11942
11943 MEDIA DRIVERS FOR FREESCALE IMX
11944 M:      Steve Longerbeam <slongerbeam@gmail.com>
11945 M:      Philipp Zabel <p.zabel@pengutronix.de>
11946 L:      linux-media@vger.kernel.org
11947 S:      Maintained
11948 T:      git git://linuxtv.org/media_tree.git
11949 F:      Documentation/admin-guide/media/imx.rst
11950 F:      Documentation/devicetree/bindings/media/imx.txt
11951 F:      drivers/staging/media/imx/
11952 F:      include/linux/imx-media.h
11953 F:      include/media/imx.h
11954
11955 MEDIA DRIVERS FOR FREESCALE IMX7
11956 M:      Rui Miguel Silva <rmfrfs@gmail.com>
11957 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11958 L:      linux-media@vger.kernel.org
11959 S:      Maintained
11960 T:      git git://linuxtv.org/media_tree.git
11961 F:      Documentation/admin-guide/media/imx7.rst
11962 F:      Documentation/devicetree/bindings/media/nxp,imx-mipi-csi2.yaml
11963 F:      Documentation/devicetree/bindings/media/nxp,imx7-csi.yaml
11964 F:      drivers/media/platform/imx/imx-mipi-csis.c
11965 F:      drivers/staging/media/imx/imx7-media-csi.c
11966
11967 MEDIA DRIVERS FOR HELENE
11968 M:      Abylay Ospan <aospan@netup.ru>
11969 L:      linux-media@vger.kernel.org
11970 S:      Supported
11971 W:      https://linuxtv.org
11972 W:      http://netup.tv/
11973 T:      git git://linuxtv.org/media_tree.git
11974 F:      drivers/media/dvb-frontends/helene*
11975
11976 MEDIA DRIVERS FOR HORUS3A
11977 M:      Sergey Kozlov <serjk@netup.ru>
11978 M:      Abylay Ospan <aospan@netup.ru>
11979 L:      linux-media@vger.kernel.org
11980 S:      Supported
11981 W:      https://linuxtv.org
11982 W:      http://netup.tv/
11983 T:      git git://linuxtv.org/media_tree.git
11984 F:      drivers/media/dvb-frontends/horus3a*
11985
11986 MEDIA DRIVERS FOR LNBH25
11987 M:      Sergey Kozlov <serjk@netup.ru>
11988 M:      Abylay Ospan <aospan@netup.ru>
11989 L:      linux-media@vger.kernel.org
11990 S:      Supported
11991 W:      https://linuxtv.org
11992 W:      http://netup.tv/
11993 T:      git git://linuxtv.org/media_tree.git
11994 F:      drivers/media/dvb-frontends/lnbh25*
11995
11996 MEDIA DRIVERS FOR MXL5XX TUNER DEMODULATORS
11997 L:      linux-media@vger.kernel.org
11998 S:      Orphan
11999 W:      https://linuxtv.org
12000 T:      git git://linuxtv.org/media_tree.git
12001 F:      drivers/media/dvb-frontends/mxl5xx*
12002
12003 MEDIA DRIVERS FOR NETUP PCI UNIVERSAL DVB devices
12004 M:      Sergey Kozlov <serjk@netup.ru>
12005 M:      Abylay Ospan <aospan@netup.ru>
12006 L:      linux-media@vger.kernel.org
12007 S:      Supported
12008 W:      https://linuxtv.org
12009 W:      http://netup.tv/
12010 T:      git git://linuxtv.org/media_tree.git
12011 F:      drivers/media/pci/netup_unidvb/*
12012
12013 MEDIA DRIVERS FOR NVIDIA TEGRA - VDE
12014 M:      Dmitry Osipenko <digetx@gmail.com>
12015 L:      linux-media@vger.kernel.org
12016 L:      linux-tegra@vger.kernel.org
12017 S:      Maintained
12018 T:      git git://linuxtv.org/media_tree.git
12019 F:      Documentation/devicetree/bindings/media/nvidia,tegra-vde.txt
12020 F:      drivers/media/platform/nvidia/tegra-vde/
12021
12022 MEDIA DRIVERS FOR RENESAS - CEU
12023 M:      Jacopo Mondi <jacopo@jmondi.org>
12024 L:      linux-media@vger.kernel.org
12025 L:      linux-renesas-soc@vger.kernel.org
12026 S:      Supported
12027 T:      git git://linuxtv.org/media_tree.git
12028 F:      Documentation/devicetree/bindings/media/renesas,ceu.yaml
12029 F:      drivers/media/platform/renesas/renesas-ceu.c
12030 F:      include/media/drv-intf/renesas-ceu.h
12031
12032 MEDIA DRIVERS FOR RENESAS - DRIF
12033 M:      Fabrizio Castro <fabrizio.castro.jz@renesas.com>
12034 L:      linux-media@vger.kernel.org
12035 L:      linux-renesas-soc@vger.kernel.org
12036 S:      Supported
12037 T:      git git://linuxtv.org/media_tree.git
12038 F:      Documentation/devicetree/bindings/media/renesas,drif.yaml
12039 F:      drivers/media/platform/renesas/rcar_drif.c
12040
12041 MEDIA DRIVERS FOR RENESAS - FCP
12042 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12043 L:      linux-media@vger.kernel.org
12044 L:      linux-renesas-soc@vger.kernel.org
12045 S:      Supported
12046 T:      git git://linuxtv.org/media_tree.git
12047 F:      Documentation/devicetree/bindings/media/renesas,fcp.yaml
12048 F:      drivers/media/platform/renesas/rcar-fcp.c
12049 F:      include/media/rcar-fcp.h
12050
12051 MEDIA DRIVERS FOR RENESAS - FDP1
12052 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
12053 L:      linux-media@vger.kernel.org
12054 L:      linux-renesas-soc@vger.kernel.org
12055 S:      Supported
12056 T:      git git://linuxtv.org/media_tree.git
12057 F:      Documentation/devicetree/bindings/media/renesas,fdp1.yaml
12058 F:      drivers/media/platform/renesas/rcar_fdp1.c
12059
12060 MEDIA DRIVERS FOR RENESAS - VIN
12061 M:      Niklas Söderlund <niklas.soderlund@ragnatech.se>
12062 L:      linux-media@vger.kernel.org
12063 L:      linux-renesas-soc@vger.kernel.org
12064 S:      Supported
12065 T:      git git://linuxtv.org/media_tree.git
12066 F:      Documentation/devicetree/bindings/media/renesas,csi2.yaml
12067 F:      Documentation/devicetree/bindings/media/renesas,isp.yaml
12068 F:      Documentation/devicetree/bindings/media/renesas,vin.yaml
12069 F:      drivers/media/platform/renesas/rcar-isp.c
12070 F:      drivers/media/platform/renesas/rcar-vin/
12071
12072 MEDIA DRIVERS FOR RENESAS - VSP1
12073 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12074 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
12075 L:      linux-media@vger.kernel.org
12076 L:      linux-renesas-soc@vger.kernel.org
12077 S:      Supported
12078 T:      git git://linuxtv.org/media_tree.git
12079 F:      Documentation/devicetree/bindings/media/renesas,vsp1.yaml
12080 F:      drivers/media/platform/renesas/vsp1/
12081
12082 MEDIA DRIVERS FOR ST STV0910 DEMODULATOR ICs
12083 L:      linux-media@vger.kernel.org
12084 S:      Orphan
12085 W:      https://linuxtv.org
12086 T:      git git://linuxtv.org/media_tree.git
12087 F:      drivers/media/dvb-frontends/stv0910*
12088
12089 MEDIA DRIVERS FOR ST STV6111 TUNER ICs
12090 L:      linux-media@vger.kernel.org
12091 S:      Orphan
12092 W:      https://linuxtv.org
12093 T:      git git://linuxtv.org/media_tree.git
12094 F:      drivers/media/dvb-frontends/stv6111*
12095
12096 MEDIA DRIVERS FOR STM32 - DCMI
12097 M:      Hugues Fruchet <hugues.fruchet@foss.st.com>
12098 L:      linux-media@vger.kernel.org
12099 S:      Supported
12100 T:      git git://linuxtv.org/media_tree.git
12101 F:      Documentation/devicetree/bindings/media/st,stm32-dcmi.yaml
12102 F:      drivers/media/platform/st/stm32/stm32-dcmi.c
12103
12104 MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
12105 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
12106 L:      linux-media@vger.kernel.org
12107 S:      Maintained
12108 W:      https://linuxtv.org
12109 Q:      http://patchwork.kernel.org/project/linux-media/list/
12110 T:      git git://linuxtv.org/media_tree.git
12111 F:      Documentation/admin-guide/media/
12112 F:      Documentation/devicetree/bindings/media/
12113 F:      Documentation/driver-api/media/
12114 F:      Documentation/userspace-api/media/
12115 F:      drivers/media/
12116 F:      drivers/staging/media/
12117 F:      include/linux/platform_data/media/
12118 F:      include/media/
12119 F:      include/uapi/linux/dvb/
12120 F:      include/uapi/linux/ivtv*
12121 F:      include/uapi/linux/media.h
12122 F:      include/uapi/linux/meye.h
12123 F:      include/uapi/linux/uvcvideo.h
12124 F:      include/uapi/linux/v4l2-*
12125 F:      include/uapi/linux/videodev2.h
12126
12127 MEDIATEK BLUETOOTH DRIVER
12128 M:      Sean Wang <sean.wang@mediatek.com>
12129 L:      linux-bluetooth@vger.kernel.org
12130 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
12131 S:      Maintained
12132 F:      Documentation/devicetree/bindings/net/mediatek-bluetooth.txt
12133 F:      drivers/bluetooth/btmtkuart.c
12134
12135 MEDIATEK BOARD LEVEL SHUTDOWN DRIVERS
12136 M:      Sean Wang <sean.wang@mediatek.com>
12137 L:      linux-pm@vger.kernel.org
12138 S:      Maintained
12139 F:      Documentation/devicetree/bindings/power/reset/mt6323-poweroff.txt
12140 F:      drivers/power/reset/mt6323-poweroff.c
12141
12142 MEDIATEK CIR DRIVER
12143 M:      Sean Wang <sean.wang@mediatek.com>
12144 S:      Maintained
12145 F:      drivers/media/rc/mtk-cir.c
12146
12147 MEDIATEK DMA DRIVER
12148 M:      Sean Wang <sean.wang@mediatek.com>
12149 L:      dmaengine@vger.kernel.org
12150 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12151 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
12152 S:      Maintained
12153 F:      Documentation/devicetree/bindings/dma/mtk-*
12154 F:      drivers/dma/mediatek/
12155
12156 MEDIATEK ETHERNET DRIVER
12157 M:      Felix Fietkau <nbd@nbd.name>
12158 M:      John Crispin <john@phrozen.org>
12159 M:      Sean Wang <sean.wang@mediatek.com>
12160 M:      Mark Lee <Mark-MC.Lee@mediatek.com>
12161 L:      netdev@vger.kernel.org
12162 S:      Maintained
12163 F:      drivers/net/ethernet/mediatek/
12164
12165 MEDIATEK I2C CONTROLLER DRIVER
12166 M:      Qii Wang <qii.wang@mediatek.com>
12167 L:      linux-i2c@vger.kernel.org
12168 S:      Maintained
12169 F:      Documentation/devicetree/bindings/i2c/i2c-mt65xx.txt
12170 F:      drivers/i2c/busses/i2c-mt65xx.c
12171
12172 MEDIATEK IOMMU DRIVER
12173 M:      Yong Wu <yong.wu@mediatek.com>
12174 L:      iommu@lists.linux-foundation.org
12175 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
12176 S:      Supported
12177 F:      Documentation/devicetree/bindings/iommu/mediatek*
12178 F:      drivers/iommu/mtk_iommu*
12179 F:      include/dt-bindings/memory/mt*-port.h
12180
12181 MEDIATEK JPEG DRIVER
12182 M:      Rick Chang <rick.chang@mediatek.com>
12183 M:      Bin Liu <bin.liu@mediatek.com>
12184 S:      Supported
12185 F:      Documentation/devicetree/bindings/media/mediatek-jpeg-decoder.txt
12186 F:      drivers/media/platform/mediatek/jpeg/
12187
12188 MEDIATEK MDP DRIVER
12189 M:      Minghsiu Tsai <minghsiu.tsai@mediatek.com>
12190 M:      Houlong Wei <houlong.wei@mediatek.com>
12191 M:      Andrew-CT Chen <andrew-ct.chen@mediatek.com>
12192 S:      Supported
12193 F:      Documentation/devicetree/bindings/media/mediatek-mdp.txt
12194 F:      drivers/media/platform/mediatek/mdp/
12195 F:      drivers/media/platform/mediatek/vpu/
12196
12197 MEDIATEK MEDIA DRIVER
12198 M:      Tiffany Lin <tiffany.lin@mediatek.com>
12199 M:      Andrew-CT Chen <andrew-ct.chen@mediatek.com>
12200 S:      Supported
12201 F:      Documentation/devicetree/bindings/media/mediatek-vcodec.txt
12202 F:      Documentation/devicetree/bindings/media/mediatek-vpu.txt
12203 F:      drivers/media/platform/mediatek/vcodec/
12204 F:      drivers/media/platform/mediatek/vpu/
12205
12206 MEDIATEK MMC/SD/SDIO DRIVER
12207 M:      Chaotian Jing <chaotian.jing@mediatek.com>
12208 S:      Maintained
12209 F:      Documentation/devicetree/bindings/mmc/mtk-sd.yaml
12210 F:      drivers/mmc/host/mtk-sd.c
12211
12212 MEDIATEK MT76 WIRELESS LAN DRIVER
12213 M:      Felix Fietkau <nbd@nbd.name>
12214 M:      Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
12215 M:      Ryder Lee <ryder.lee@mediatek.com>
12216 R:      Shayne Chen <shayne.chen@mediatek.com>
12217 R:      Sean Wang <sean.wang@mediatek.com>
12218 L:      linux-wireless@vger.kernel.org
12219 S:      Maintained
12220 F:      drivers/net/wireless/mediatek/mt76/
12221
12222 MEDIATEK MT7601U WIRELESS LAN DRIVER
12223 M:      Jakub Kicinski <kubakici@wp.pl>
12224 L:      linux-wireless@vger.kernel.org
12225 S:      Maintained
12226 F:      drivers/net/wireless/mediatek/mt7601u/
12227
12228 MEDIATEK MT7621 CLOCK DRIVER
12229 M:      Sergio Paracuellos <sergio.paracuellos@gmail.com>
12230 S:      Maintained
12231 F:      Documentation/devicetree/bindings/clock/mediatek,mt7621-sysc.yaml
12232 F:      drivers/clk/ralink/clk-mt7621.c
12233
12234 MEDIATEK MT7621/28/88 I2C DRIVER
12235 M:      Stefan Roese <sr@denx.de>
12236 L:      linux-i2c@vger.kernel.org
12237 S:      Maintained
12238 F:      Documentation/devicetree/bindings/i2c/i2c-mt7621.txt
12239 F:      drivers/i2c/busses/i2c-mt7621.c
12240
12241 MEDIATEK MT7621 PCIE CONTROLLER DRIVER
12242 M:      Sergio Paracuellos <sergio.paracuellos@gmail.com>
12243 S:      Maintained
12244 F:      Documentation/devicetree/bindings/pci/mediatek,mt7621-pcie.yaml
12245 F:      drivers/pci/controller/pcie-mt7621.c
12246
12247 MEDIATEK MT7621 PHY PCI DRIVER
12248 M:      Sergio Paracuellos <sergio.paracuellos@gmail.com>
12249 S:      Maintained
12250 F:      Documentation/devicetree/bindings/phy/mediatek,mt7621-pci-phy.yaml
12251 F:      drivers/phy/ralink/phy-mt7621-pci.c
12252
12253 MEDIATEK NAND CONTROLLER DRIVER
12254 L:      linux-mtd@lists.infradead.org
12255 S:      Orphan
12256 F:      Documentation/devicetree/bindings/mtd/mtk-nand.txt
12257 F:      drivers/mtd/nand/raw/mtk_*
12258
12259 MEDIATEK PMIC LED DRIVER
12260 M:      Sean Wang <sean.wang@mediatek.com>
12261 S:      Maintained
12262 F:      Documentation/devicetree/bindings/leds/leds-mt6323.txt
12263 F:      drivers/leds/leds-mt6323.c
12264
12265 MEDIATEK RANDOM NUMBER GENERATOR SUPPORT
12266 M:      Sean Wang <sean.wang@mediatek.com>
12267 S:      Maintained
12268 F:      drivers/char/hw_random/mtk-rng.c
12269
12270 MEDIATEK SMI DRIVER
12271 M:      Yong Wu <yong.wu@mediatek.com>
12272 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
12273 S:      Supported
12274 F:      Documentation/devicetree/bindings/memory-controllers/mediatek,smi*
12275 F:      drivers/memory/mtk-smi.c
12276 F:      include/soc/mediatek/smi.h
12277
12278 MEDIATEK SWITCH DRIVER
12279 M:      Sean Wang <sean.wang@mediatek.com>
12280 M:      Landen Chao <Landen.Chao@mediatek.com>
12281 M:      DENG Qingfang <dqfext@gmail.com>
12282 L:      netdev@vger.kernel.org
12283 S:      Maintained
12284 F:      drivers/net/dsa/mt7530.*
12285 F:      net/dsa/tag_mtk.c
12286
12287 MEDIATEK USB3 DRD IP DRIVER
12288 M:      Chunfeng Yun <chunfeng.yun@mediatek.com>
12289 L:      linux-usb@vger.kernel.org
12290 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12291 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
12292 S:      Maintained
12293 F:      Documentation/devicetree/bindings/usb/mediatek,*
12294 F:      drivers/usb/host/xhci-mtk*
12295 F:      drivers/usb/mtu3/
12296
12297 MEGACHIPS STDPXXXX-GE-B850V3-FW LVDS/DP++ BRIDGES
12298 M:      Peter Senna Tschudin <peter.senna@gmail.com>
12299 M:      Martin Donnelly <martin.donnelly@ge.com>
12300 M:      Martyn Welch <martyn.welch@collabora.co.uk>
12301 S:      Maintained
12302 F:      Documentation/devicetree/bindings/display/bridge/megachips-stdpxxxx-ge-b850v3-fw.txt
12303 F:      drivers/gpu/drm/bridge/megachips-stdpxxxx-ge-b850v3-fw.c
12304
12305 MEGARAID SCSI/SAS DRIVERS
12306 M:      Kashyap Desai <kashyap.desai@broadcom.com>
12307 M:      Sumit Saxena <sumit.saxena@broadcom.com>
12308 M:      Shivasharan S <shivasharan.srikanteshwara@broadcom.com>
12309 L:      megaraidlinux.pdl@broadcom.com
12310 L:      linux-scsi@vger.kernel.org
12311 S:      Maintained
12312 W:      http://www.avagotech.com/support/
12313 F:      Documentation/scsi/megaraid.rst
12314 F:      drivers/scsi/megaraid.*
12315 F:      drivers/scsi/megaraid/
12316
12317 MELEXIS MLX90614 DRIVER
12318 M:      Crt Mori <cmo@melexis.com>
12319 L:      linux-iio@vger.kernel.org
12320 S:      Supported
12321 W:      http://www.melexis.com
12322 F:      drivers/iio/temperature/mlx90614.c
12323
12324 MELEXIS MLX90632 DRIVER
12325 M:      Crt Mori <cmo@melexis.com>
12326 L:      linux-iio@vger.kernel.org
12327 S:      Supported
12328 W:      http://www.melexis.com
12329 F:      drivers/iio/temperature/mlx90632.c
12330
12331 MELFAS MIP4 TOUCHSCREEN DRIVER
12332 M:      Sangwon Jee <jeesw@melfas.com>
12333 S:      Supported
12334 W:      http://www.melfas.com
12335 F:      Documentation/devicetree/bindings/input/touchscreen/melfas_mip4.txt
12336 F:      drivers/input/touchscreen/melfas_mip4.c
12337
12338 MELLANOX BLUEFIELD I2C DRIVER
12339 M:      Khalil Blaiech <kblaiech@nvidia.com>
12340 L:      linux-i2c@vger.kernel.org
12341 S:      Supported
12342 F:      Documentation/devicetree/bindings/i2c/mellanox,i2c-mlxbf.yaml
12343 F:      drivers/i2c/busses/i2c-mlxbf.c
12344
12345 MELLANOX ETHERNET DRIVER (mlx4_en)
12346 M:      Tariq Toukan <tariqt@nvidia.com>
12347 L:      netdev@vger.kernel.org
12348 S:      Supported
12349 W:      http://www.mellanox.com
12350 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12351 F:      drivers/net/ethernet/mellanox/mlx4/en_*
12352
12353 MELLANOX ETHERNET DRIVER (mlx5e)
12354 M:      Saeed Mahameed <saeedm@nvidia.com>
12355 L:      netdev@vger.kernel.org
12356 S:      Supported
12357 W:      http://www.mellanox.com
12358 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12359 F:      drivers/net/ethernet/mellanox/mlx5/core/en_*
12360
12361 MELLANOX ETHERNET INNOVA DRIVERS
12362 R:      Boris Pismenny <borisp@nvidia.com>
12363 L:      netdev@vger.kernel.org
12364 S:      Supported
12365 W:      http://www.mellanox.com
12366 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12367 F:      drivers/net/ethernet/mellanox/mlx5/core/accel/*
12368 F:      drivers/net/ethernet/mellanox/mlx5/core/en_accel/*
12369 F:      drivers/net/ethernet/mellanox/mlx5/core/fpga/*
12370 F:      include/linux/mlx5/mlx5_ifc_fpga.h
12371
12372 MELLANOX ETHERNET SWITCH DRIVERS
12373 M:      Ido Schimmel <idosch@nvidia.com>
12374 M:      Petr Machata <petrm@nvidia.com>
12375 L:      netdev@vger.kernel.org
12376 S:      Supported
12377 W:      http://www.mellanox.com
12378 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12379 F:      drivers/net/ethernet/mellanox/mlxsw/
12380 F:      tools/testing/selftests/drivers/net/mlxsw/
12381
12382 MELLANOX FIRMWARE FLASH LIBRARY (mlxfw)
12383 M:      mlxsw@nvidia.com
12384 L:      netdev@vger.kernel.org
12385 S:      Supported
12386 W:      http://www.mellanox.com
12387 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12388 F:      drivers/net/ethernet/mellanox/mlxfw/
12389
12390 MELLANOX HARDWARE PLATFORM SUPPORT
12391 M:      Hans de Goede <hdegoede@redhat.com>
12392 M:      Mark Gross <markgross@kernel.org>
12393 M:      Vadim Pasternak <vadimp@nvidia.com>
12394 L:      platform-driver-x86@vger.kernel.org
12395 S:      Supported
12396 F:      Documentation/ABI/testing/sysfs-platform-mellanox-bootctl
12397 F:      drivers/platform/mellanox/
12398 F:      include/linux/platform_data/mlxreg.h
12399
12400 MELLANOX MLX4 core VPI driver
12401 M:      Tariq Toukan <tariqt@nvidia.com>
12402 L:      netdev@vger.kernel.org
12403 L:      linux-rdma@vger.kernel.org
12404 S:      Supported
12405 W:      http://www.mellanox.com
12406 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12407 F:      drivers/net/ethernet/mellanox/mlx4/
12408 F:      include/linux/mlx4/
12409
12410 MELLANOX MLX4 IB driver
12411 M:      Yishai Hadas <yishaih@nvidia.com>
12412 L:      linux-rdma@vger.kernel.org
12413 S:      Supported
12414 W:      http://www.mellanox.com
12415 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
12416 F:      drivers/infiniband/hw/mlx4/
12417 F:      include/linux/mlx4/
12418 F:      include/uapi/rdma/mlx4-abi.h
12419
12420 MELLANOX MLX5 core VPI driver
12421 M:      Saeed Mahameed <saeedm@nvidia.com>
12422 M:      Leon Romanovsky <leonro@nvidia.com>
12423 L:      netdev@vger.kernel.org
12424 L:      linux-rdma@vger.kernel.org
12425 S:      Supported
12426 W:      http://www.mellanox.com
12427 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12428 F:      Documentation/networking/device_drivers/ethernet/mellanox/
12429 F:      drivers/net/ethernet/mellanox/mlx5/core/
12430 F:      include/linux/mlx5/
12431
12432 MELLANOX MLX5 IB driver
12433 M:      Leon Romanovsky <leonro@nvidia.com>
12434 L:      linux-rdma@vger.kernel.org
12435 S:      Supported
12436 W:      http://www.mellanox.com
12437 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
12438 F:      drivers/infiniband/hw/mlx5/
12439 F:      include/linux/mlx5/
12440 F:      include/uapi/rdma/mlx5-abi.h
12441
12442 MELLANOX MLXCPLD I2C AND MUX DRIVER
12443 M:      Vadim Pasternak <vadimp@nvidia.com>
12444 M:      Michael Shych <michaelsh@nvidia.com>
12445 L:      linux-i2c@vger.kernel.org
12446 S:      Supported
12447 F:      Documentation/i2c/busses/i2c-mlxcpld.rst
12448 F:      drivers/i2c/busses/i2c-mlxcpld.c
12449 F:      drivers/i2c/muxes/i2c-mux-mlxcpld.c
12450
12451 MELLANOX MLXCPLD LED DRIVER
12452 M:      Vadim Pasternak <vadimp@nvidia.com>
12453 L:      linux-leds@vger.kernel.org
12454 S:      Supported
12455 F:      Documentation/leds/leds-mlxcpld.rst
12456 F:      drivers/leds/leds-mlxcpld.c
12457 F:      drivers/leds/leds-mlxreg.c
12458
12459 MELLANOX PLATFORM DRIVER
12460 M:      Vadim Pasternak <vadimp@nvidia.com>
12461 L:      platform-driver-x86@vger.kernel.org
12462 S:      Supported
12463 F:      drivers/platform/x86/mlx-platform.c
12464
12465 MEMBARRIER SUPPORT
12466 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
12467 M:      "Paul E. McKenney" <paulmck@kernel.org>
12468 L:      linux-kernel@vger.kernel.org
12469 S:      Supported
12470 F:      arch/powerpc/include/asm/membarrier.h
12471 F:      include/uapi/linux/membarrier.h
12472 F:      kernel/sched/membarrier.c
12473
12474 MEMBLOCK
12475 M:      Mike Rapoport <rppt@kernel.org>
12476 L:      linux-mm@kvack.org
12477 S:      Maintained
12478 F:      Documentation/core-api/boot-time-mm.rst
12479 F:      include/linux/memblock.h
12480 F:      mm/memblock.c
12481
12482 MEMORY CONTROLLER DRIVERS
12483 M:      Krzysztof Kozlowski <krzk@kernel.org>
12484 L:      linux-kernel@vger.kernel.org
12485 S:      Maintained
12486 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/krzk/linux-mem-ctrl.git
12487 F:      Documentation/devicetree/bindings/memory-controllers/
12488 F:      drivers/memory/
12489 F:      include/dt-bindings/memory/
12490 F:      include/memory/
12491
12492 MEMORY FREQUENCY SCALING DRIVERS FOR NVIDIA TEGRA
12493 M:      Dmitry Osipenko <digetx@gmail.com>
12494 L:      linux-pm@vger.kernel.org
12495 L:      linux-tegra@vger.kernel.org
12496 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
12497 S:      Maintained
12498 F:      drivers/devfreq/tegra30-devfreq.c
12499
12500 MEMORY MANAGEMENT
12501 M:      Andrew Morton <akpm@linux-foundation.org>
12502 L:      linux-mm@kvack.org
12503 S:      Maintained
12504 W:      http://www.linux-mm.org
12505 T:      quilt https://ozlabs.org/~akpm/mmotm/
12506 T:      quilt https://ozlabs.org/~akpm/mmots/
12507 T:      git git://github.com/hnaz/linux-mm.git
12508 F:      include/linux/gfp.h
12509 F:      include/linux/memory_hotplug.h
12510 F:      include/linux/mm.h
12511 F:      include/linux/mmzone.h
12512 F:      include/linux/pagewalk.h
12513 F:      include/linux/vmalloc.h
12514 F:      mm/
12515 F:      tools/testing/selftests/vm/
12516
12517 MEMORY TECHNOLOGY DEVICES (MTD)
12518 M:      Miquel Raynal <miquel.raynal@bootlin.com>
12519 M:      Richard Weinberger <richard@nod.at>
12520 M:      Vignesh Raghavendra <vigneshr@ti.com>
12521 L:      linux-mtd@lists.infradead.org
12522 S:      Maintained
12523 W:      http://www.linux-mtd.infradead.org/
12524 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
12525 C:      irc://irc.oftc.net/mtd
12526 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/fixes
12527 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/next
12528 F:      Documentation/devicetree/bindings/mtd/
12529 F:      drivers/mtd/
12530 F:      include/linux/mtd/
12531 F:      include/uapi/mtd/
12532
12533 MEN A21 WATCHDOG DRIVER
12534 M:      Johannes Thumshirn <morbidrsa@gmail.com>
12535 L:      linux-watchdog@vger.kernel.org
12536 S:      Maintained
12537 F:      drivers/watchdog/mena21_wdt.c
12538
12539 MEN CHAMELEON BUS (mcb)
12540 M:      Johannes Thumshirn <morbidrsa@gmail.com>
12541 S:      Maintained
12542 F:      Documentation/driver-api/men-chameleon-bus.rst
12543 F:      drivers/mcb/
12544 F:      include/linux/mcb.h
12545
12546 MEN F21BMC (Board Management Controller)
12547 M:      Andreas Werner <andreas.werner@men.de>
12548 S:      Supported
12549 F:      Documentation/hwmon/menf21bmc.rst
12550 F:      drivers/hwmon/menf21bmc_hwmon.c
12551 F:      drivers/leds/leds-menf21bmc.c
12552 F:      drivers/mfd/menf21bmc.c
12553 F:      drivers/watchdog/menf21bmc_wdt.c
12554
12555 MEN Z069 WATCHDOG DRIVER
12556 M:      Johannes Thumshirn <jth@kernel.org>
12557 L:      linux-watchdog@vger.kernel.org
12558 S:      Maintained
12559 F:      drivers/watchdog/menz69_wdt.c
12560
12561 MESON AO CEC DRIVER FOR AMLOGIC SOCS
12562 M:      Neil Armstrong <narmstrong@baylibre.com>
12563 L:      linux-media@vger.kernel.org
12564 L:      linux-amlogic@lists.infradead.org
12565 S:      Supported
12566 W:      http://linux-meson.com/
12567 T:      git git://linuxtv.org/media_tree.git
12568 F:      Documentation/devicetree/bindings/media/amlogic,meson-gx-ao-cec.yaml
12569 F:      drivers/media/cec/platform/meson/ao-cec-g12a.c
12570 F:      drivers/media/cec/platform/meson/ao-cec.c
12571
12572 MESON GE2D DRIVER FOR AMLOGIC SOCS
12573 M:      Neil Armstrong <narmstrong@baylibre.com>
12574 L:      linux-media@vger.kernel.org
12575 L:      linux-amlogic@lists.infradead.org
12576 S:      Supported
12577 T:      git git://linuxtv.org/media_tree.git
12578 F:      Documentation/devicetree/bindings/media/amlogic,axg-ge2d.yaml
12579 F:      drivers/media/platform/amlogic/meson-ge2d/
12580
12581 MESON NAND CONTROLLER DRIVER FOR AMLOGIC SOCS
12582 M:      Liang Yang <liang.yang@amlogic.com>
12583 L:      linux-mtd@lists.infradead.org
12584 S:      Maintained
12585 F:      Documentation/devicetree/bindings/mtd/amlogic,meson-nand.txt
12586 F:      drivers/mtd/nand/raw/meson_*
12587
12588 MESON VIDEO DECODER DRIVER FOR AMLOGIC SOCS
12589 M:      Neil Armstrong <narmstrong@baylibre.com>
12590 L:      linux-media@vger.kernel.org
12591 L:      linux-amlogic@lists.infradead.org
12592 S:      Supported
12593 T:      git git://linuxtv.org/media_tree.git
12594 F:      Documentation/devicetree/bindings/media/amlogic,gx-vdec.yaml
12595 F:      drivers/staging/media/meson/vdec/
12596
12597 METHODE UDPU SUPPORT
12598 M:      Vladimir Vid <vladimir.vid@sartura.hr>
12599 S:      Maintained
12600 F:      arch/arm64/boot/dts/marvell/armada-3720-uDPU.dts
12601
12602 MHI BUS
12603 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
12604 R:      Hemant Kumar <hemantk@codeaurora.org>
12605 L:      mhi@lists.linux.dev
12606 L:      linux-arm-msm@vger.kernel.org
12607 S:      Maintained
12608 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mani/mhi.git
12609 F:      Documentation/ABI/stable/sysfs-bus-mhi
12610 F:      Documentation/mhi/
12611 F:      drivers/bus/mhi/
12612 F:      include/linux/mhi.h
12613
12614 MICROBLAZE ARCHITECTURE
12615 M:      Michal Simek <monstr@monstr.eu>
12616 S:      Supported
12617 W:      http://www.monstr.eu/fdt/
12618 T:      git git://git.monstr.eu/linux-2.6-microblaze.git
12619 F:      arch/microblaze/
12620
12621 MICROCHIP AT91 DMA DRIVERS
12622 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
12623 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
12624 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12625 L:      dmaengine@vger.kernel.org
12626 S:      Supported
12627 F:      Documentation/devicetree/bindings/dma/atmel-dma.txt
12628 F:      drivers/dma/at_hdmac.c
12629 F:      drivers/dma/at_hdmac_regs.h
12630 F:      drivers/dma/at_xdmac.c
12631 F:      include/dt-bindings/dma/at91.h
12632
12633 MICROCHIP AT91 SERIAL DRIVER
12634 M:      Richard Genoud <richard.genoud@gmail.com>
12635 S:      Maintained
12636 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
12637 F:      drivers/tty/serial/atmel_serial.c
12638 F:      drivers/tty/serial/atmel_serial.h
12639
12640 MICROCHIP AT91 USART MFD DRIVER
12641 M:      Radu Pirea <radu_nicolae.pirea@upb.ro>
12642 L:      linux-kernel@vger.kernel.org
12643 S:      Supported
12644 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
12645 F:      drivers/mfd/at91-usart.c
12646 F:      include/dt-bindings/mfd/at91-usart.h
12647
12648 MICROCHIP AT91 USART SPI DRIVER
12649 M:      Radu Pirea <radu_nicolae.pirea@upb.ro>
12650 L:      linux-spi@vger.kernel.org
12651 S:      Supported
12652 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
12653 F:      drivers/spi/spi-at91-usart.c
12654
12655 MICROCHIP AUDIO ASOC DRIVERS
12656 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
12657 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12658 S:      Supported
12659 F:      sound/soc/atmel
12660
12661 MICROCHIP CSI2DC DRIVER
12662 M:      Eugen Hristev <eugen.hristev@microchip.com>
12663 L:      linux-media@vger.kernel.org
12664 S:      Supported
12665 F:      Documentation/devicetree/bindings/media/microchip,csi2dc.yaml
12666 F:      drivers/media/platform/atmel/microchip-csi2dc.c
12667
12668 MICROCHIP ECC DRIVER
12669 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
12670 L:      linux-crypto@vger.kernel.org
12671 S:      Maintained
12672 F:      drivers/crypto/atmel-ecc.*
12673
12674 MICROCHIP EIC DRIVER
12675 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
12676 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12677 S:      Supported
12678 F:      drivers/irqchip/irq-mchp-eic.c
12679
12680 MICROCHIP I2C DRIVER
12681 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
12682 L:      linux-i2c@vger.kernel.org
12683 S:      Supported
12684 F:      drivers/i2c/busses/i2c-at91-*.c
12685 F:      drivers/i2c/busses/i2c-at91.h
12686
12687 MICROCHIP ISC DRIVER
12688 M:      Eugen Hristev <eugen.hristev@microchip.com>
12689 L:      linux-media@vger.kernel.org
12690 S:      Supported
12691 F:      Documentation/devicetree/bindings/media/atmel,isc.yaml
12692 F:      Documentation/devicetree/bindings/media/microchip,xisc.yaml
12693 F:      drivers/media/platform/atmel/atmel-isc*
12694 F:      drivers/media/platform/atmel/atmel-sama*-isc*
12695 F:      include/linux/atmel-isc-media.h
12696
12697 MICROCHIP ISI DRIVER
12698 M:      Eugen Hristev <eugen.hristev@microchip.com>
12699 L:      linux-media@vger.kernel.org
12700 S:      Supported
12701 F:      drivers/media/platform/atmel/atmel-isi.c
12702 F:      drivers/media/platform/atmel/atmel-isi.h
12703
12704 MICROCHIP KSZ SERIES ETHERNET SWITCH DRIVER
12705 M:      Woojung Huh <woojung.huh@microchip.com>
12706 M:      UNGLinuxDriver@microchip.com
12707 L:      netdev@vger.kernel.org
12708 S:      Maintained
12709 F:      Documentation/devicetree/bindings/net/dsa/microchip,ksz.yaml
12710 F:      drivers/net/dsa/microchip/*
12711 F:      include/linux/platform_data/microchip-ksz.h
12712 F:      net/dsa/tag_ksz.c
12713
12714 MICROCHIP LAN743X ETHERNET DRIVER
12715 M:      Bryan Whitehead <bryan.whitehead@microchip.com>
12716 M:      UNGLinuxDriver@microchip.com
12717 L:      netdev@vger.kernel.org
12718 S:      Maintained
12719 F:      drivers/net/ethernet/microchip/lan743x_*
12720
12721 MICROCHIP LAN966X ETHERNET DRIVER
12722 M:      Horatiu Vultur <horatiu.vultur@microchip.com>
12723 M:      UNGLinuxDriver@microchip.com
12724 L:      netdev@vger.kernel.org
12725 S:      Maintained
12726 F:      drivers/net/ethernet/microchip/lan966x/*
12727
12728 MICROCHIP LCDFB DRIVER
12729 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
12730 L:      linux-fbdev@vger.kernel.org
12731 S:      Maintained
12732 F:      drivers/video/fbdev/atmel_lcdfb.c
12733 F:      include/video/atmel_lcdc.h
12734
12735 MICROCHIP MCP16502 PMIC DRIVER
12736 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
12737 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12738 S:      Supported
12739 F:      Documentation/devicetree/bindings/regulator/mcp16502-regulator.txt
12740 F:      drivers/regulator/mcp16502.c
12741
12742 MICROCHIP MCP3911 ADC DRIVER
12743 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
12744 M:      Kent Gustavsson <kent@minoris.se>
12745 L:      linux-iio@vger.kernel.org
12746 S:      Supported
12747 F:      Documentation/devicetree/bindings/iio/adc/microchip,mcp3911.yaml
12748 F:      drivers/iio/adc/mcp3911.c
12749
12750 MICROCHIP MMC/SD/SDIO MCI DRIVER
12751 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
12752 S:      Maintained
12753 F:      drivers/mmc/host/atmel-mci.c
12754
12755 MICROCHIP NAND DRIVER
12756 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
12757 L:      linux-mtd@lists.infradead.org
12758 S:      Supported
12759 F:      Documentation/devicetree/bindings/mtd/atmel-nand.txt
12760 F:      drivers/mtd/nand/raw/atmel/*
12761
12762 MICROCHIP PWM DRIVER
12763 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
12764 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12765 L:      linux-pwm@vger.kernel.org
12766 S:      Supported
12767 F:      Documentation/devicetree/bindings/pwm/atmel-pwm.txt
12768 F:      drivers/pwm/pwm-atmel.c
12769
12770 MICROCHIP SAMA5D2-COMPATIBLE ADC DRIVER
12771 M:      Eugen Hristev <eugen.hristev@microchip.com>
12772 L:      linux-iio@vger.kernel.org
12773 S:      Supported
12774 F:      Documentation/devicetree/bindings/iio/adc/atmel,sama5d2-adc.yaml
12775 F:      drivers/iio/adc/at91-sama5d2_adc.c
12776 F:      include/dt-bindings/iio/adc/at91-sama5d2_adc.h
12777
12778 MICROCHIP SAMA5D2-COMPATIBLE SHUTDOWN CONTROLLER
12779 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
12780 S:      Supported
12781 F:      drivers/power/reset/at91-sama5d2_shdwc.c
12782
12783 MICROCHIP SPI DRIVER
12784 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
12785 S:      Supported
12786 F:      drivers/spi/spi-atmel.*
12787
12788 MICROCHIP SSC DRIVER
12789 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
12790 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12791 S:      Supported
12792 F:      drivers/misc/atmel-ssc.c
12793 F:      include/linux/atmel-ssc.h
12794
12795 MICROCHIP USB251XB DRIVER
12796 M:      Richard Leitner <richard.leitner@skidata.com>
12797 L:      linux-usb@vger.kernel.org
12798 S:      Maintained
12799 F:      Documentation/devicetree/bindings/usb/usb251xb.txt
12800 F:      drivers/usb/misc/usb251xb.c
12801
12802 MICROCHIP USBA UDC DRIVER
12803 M:      Cristian Birsan <cristian.birsan@microchip.com>
12804 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12805 S:      Supported
12806 F:      drivers/usb/gadget/udc/atmel_usba_udc.*
12807
12808 MICROCHIP WILC1000 WIFI DRIVER
12809 M:      Ajay Singh <ajay.kathat@microchip.com>
12810 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
12811 L:      linux-wireless@vger.kernel.org
12812 S:      Supported
12813 F:      drivers/net/wireless/microchip/wilc1000/
12814
12815 MICROSEMI MIPS SOCS
12816 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
12817 M:      UNGLinuxDriver@microchip.com
12818 L:      linux-mips@vger.kernel.org
12819 S:      Supported
12820 F:      Documentation/devicetree/bindings/mips/mscc.txt
12821 F:      Documentation/devicetree/bindings/power/reset/ocelot-reset.txt
12822 F:      arch/mips/boot/dts/mscc/
12823 F:      arch/mips/configs/generic/board-ocelot.config
12824 F:      arch/mips/generic/board-ocelot.c
12825
12826 MICROSEMI SMART ARRAY SMARTPQI DRIVER (smartpqi)
12827 M:      Don Brace <don.brace@microchip.com>
12828 L:      storagedev@microchip.com
12829 L:      linux-scsi@vger.kernel.org
12830 S:      Supported
12831 F:      Documentation/scsi/smartpqi.rst
12832 F:      drivers/scsi/smartpqi/Kconfig
12833 F:      drivers/scsi/smartpqi/Makefile
12834 F:      drivers/scsi/smartpqi/smartpqi*.[ch]
12835 F:      include/linux/cciss*.h
12836 F:      include/uapi/linux/cciss*.h
12837
12838 MICROSOFT SURFACE BATTERY AND AC DRIVERS
12839 M:      Maximilian Luz <luzmaximilian@gmail.com>
12840 L:      linux-pm@vger.kernel.org
12841 L:      platform-driver-x86@vger.kernel.org
12842 S:      Maintained
12843 F:      drivers/power/supply/surface_battery.c
12844 F:      drivers/power/supply/surface_charger.c
12845
12846 MICROSOFT SURFACE DTX DRIVER
12847 M:      Maximilian Luz <luzmaximilian@gmail.com>
12848 L:      platform-driver-x86@vger.kernel.org
12849 S:      Maintained
12850 F:      Documentation/driver-api/surface_aggregator/clients/dtx.rst
12851 F:      drivers/platform/surface/surface_dtx.c
12852 F:      include/uapi/linux/surface_aggregator/dtx.h
12853
12854 MICROSOFT SURFACE GPE LID SUPPORT DRIVER
12855 M:      Maximilian Luz <luzmaximilian@gmail.com>
12856 L:      platform-driver-x86@vger.kernel.org
12857 S:      Maintained
12858 F:      drivers/platform/surface/surface_gpe.c
12859
12860 MICROSOFT SURFACE HARDWARE PLATFORM SUPPORT
12861 M:      Hans de Goede <hdegoede@redhat.com>
12862 M:      Mark Gross <markgross@kernel.org>
12863 M:      Maximilian Luz <luzmaximilian@gmail.com>
12864 L:      platform-driver-x86@vger.kernel.org
12865 S:      Maintained
12866 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
12867 F:      drivers/platform/surface/
12868
12869 MICROSOFT SURFACE HID TRANSPORT DRIVER
12870 M:      Maximilian Luz <luzmaximilian@gmail.com>
12871 L:      linux-input@vger.kernel.org
12872 L:      platform-driver-x86@vger.kernel.org
12873 S:      Maintained
12874 F:      drivers/hid/surface-hid/
12875
12876 MICROSOFT SURFACE HOT-PLUG DRIVER
12877 M:      Maximilian Luz <luzmaximilian@gmail.com>
12878 L:      platform-driver-x86@vger.kernel.org
12879 S:      Maintained
12880 F:      drivers/platform/surface/surface_hotplug.c
12881
12882 MICROSOFT SURFACE PLATFORM PROFILE DRIVER
12883 M:      Maximilian Luz <luzmaximilian@gmail.com>
12884 L:      platform-driver-x86@vger.kernel.org
12885 S:      Maintained
12886 F:      drivers/platform/surface/surface_platform_profile.c
12887
12888 MICROSOFT SURFACE PRO 3 BUTTON DRIVER
12889 M:      Chen Yu <yu.c.chen@intel.com>
12890 L:      platform-driver-x86@vger.kernel.org
12891 S:      Supported
12892 F:      drivers/platform/surface/surfacepro3_button.c
12893
12894 MICROSOFT SURFACE SYSTEM AGGREGATOR SUBSYSTEM
12895 M:      Maximilian Luz <luzmaximilian@gmail.com>
12896 L:      platform-driver-x86@vger.kernel.org
12897 S:      Maintained
12898 W:      https://github.com/linux-surface/surface-aggregator-module
12899 C:      irc://irc.libera.chat/linux-surface
12900 F:      Documentation/driver-api/surface_aggregator/
12901 F:      drivers/platform/surface/aggregator/
12902 F:      drivers/platform/surface/surface_acpi_notify.c
12903 F:      drivers/platform/surface/surface_aggregator_cdev.c
12904 F:      drivers/platform/surface/surface_aggregator_registry.c
12905 F:      include/linux/surface_acpi_notify.h
12906 F:      include/linux/surface_aggregator/
12907 F:      include/uapi/linux/surface_aggregator/
12908
12909 MICROTEK X6 SCANNER
12910 M:      Oliver Neukum <oliver@neukum.org>
12911 S:      Maintained
12912 F:      drivers/usb/image/microtek.*
12913
12914 MIKROTIK CRS3XX 98DX3236 BOARD SUPPORT
12915 M:      Luka Kovacic <luka.kovacic@sartura.hr>
12916 M:      Luka Perkov <luka.perkov@sartura.hr>
12917 S:      Maintained
12918 F:      arch/arm/boot/dts/armada-xp-crs305-1g-4s-bit.dts
12919 F:      arch/arm/boot/dts/armada-xp-crs305-1g-4s.dts
12920 F:      arch/arm/boot/dts/armada-xp-crs326-24g-2s-bit.dts
12921 F:      arch/arm/boot/dts/armada-xp-crs326-24g-2s.dts
12922 F:      arch/arm/boot/dts/armada-xp-crs328-4c-20s-4s-bit.dts
12923 F:      arch/arm/boot/dts/armada-xp-crs328-4c-20s-4s.dts
12924
12925 MIPI CCS, SMIA AND SMIA++ IMAGE SENSOR DRIVER
12926 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
12927 L:      linux-media@vger.kernel.org
12928 S:      Maintained
12929 F:      Documentation/devicetree/bindings/media/i2c/mipi-ccs.yaml
12930 F:      Documentation/driver-api/media/drivers/ccs/
12931 F:      Documentation/userspace-api/media/drivers/ccs.rst
12932 F:      drivers/media/i2c/ccs-pll.c
12933 F:      drivers/media/i2c/ccs-pll.h
12934 F:      drivers/media/i2c/ccs/
12935 F:      include/uapi/linux/ccs.h
12936 F:      include/uapi/linux/smiapp.h
12937
12938 MIPS
12939 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
12940 L:      linux-mips@vger.kernel.org
12941 S:      Maintained
12942 W:      http://www.linux-mips.org/
12943 Q:      https://patchwork.kernel.org/project/linux-mips/list/
12944 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mips/linux.git
12945 F:      Documentation/devicetree/bindings/mips/
12946 F:      Documentation/mips/
12947 F:      arch/mips/
12948 F:      drivers/platform/mips/
12949
12950 MIPS BOSTON DEVELOPMENT BOARD
12951 M:      Paul Burton <paulburton@kernel.org>
12952 L:      linux-mips@vger.kernel.org
12953 S:      Maintained
12954 F:      Documentation/devicetree/bindings/clock/img,boston-clock.txt
12955 F:      arch/mips/boot/dts/img/boston.dts
12956 F:      arch/mips/configs/generic/board-boston.config
12957 F:      drivers/clk/imgtec/clk-boston.c
12958 F:      include/dt-bindings/clock/boston-clock.h
12959
12960 MIPS CORE DRIVERS
12961 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
12962 M:      Serge Semin <fancer.lancer@gmail.com>
12963 L:      linux-mips@vger.kernel.org
12964 S:      Supported
12965 F:      drivers/bus/mips_cdmm.c
12966 F:      drivers/clocksource/mips-gic-timer.c
12967 F:      drivers/cpuidle/cpuidle-cps.c
12968 F:      drivers/irqchip/irq-mips-cpu.c
12969 F:      drivers/irqchip/irq-mips-gic.c
12970
12971 MIPS GENERIC PLATFORM
12972 M:      Paul Burton <paulburton@kernel.org>
12973 L:      linux-mips@vger.kernel.org
12974 S:      Supported
12975 F:      Documentation/devicetree/bindings/power/mti,mips-cpc.yaml
12976 F:      arch/mips/generic/
12977 F:      arch/mips/tools/generic-board-config.sh
12978
12979 MIPS RINT INSTRUCTION EMULATION
12980 M:      Aleksandar Markovic <aleksandar.markovic@mips.com>
12981 L:      linux-mips@vger.kernel.org
12982 S:      Supported
12983 F:      arch/mips/math-emu/dp_rint.c
12984 F:      arch/mips/math-emu/sp_rint.c
12985
12986 MIPS/LOONGSON1 ARCHITECTURE
12987 M:      Keguang Zhang <keguang.zhang@gmail.com>
12988 L:      linux-mips@vger.kernel.org
12989 S:      Maintained
12990 F:      arch/mips/include/asm/mach-loongson32/
12991 F:      arch/mips/loongson32/
12992 F:      drivers/*/*/*loongson1*
12993 F:      drivers/*/*loongson1*
12994
12995 MIPS/LOONGSON2EF ARCHITECTURE
12996 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
12997 L:      linux-mips@vger.kernel.org
12998 S:      Maintained
12999 F:      arch/mips/include/asm/mach-loongson2ef/
13000 F:      arch/mips/loongson2ef/
13001 F:      drivers/cpufreq/loongson2_cpufreq.c
13002
13003 MIPS/LOONGSON64 ARCHITECTURE
13004 M:      Huacai Chen <chenhuacai@kernel.org>
13005 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
13006 L:      linux-mips@vger.kernel.org
13007 S:      Maintained
13008 F:      arch/mips/include/asm/mach-loongson64/
13009 F:      arch/mips/loongson64/
13010 F:      drivers/irqchip/irq-loongson*
13011 F:      drivers/platform/mips/cpu_hwmon.c
13012
13013 MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
13014 M:      Hans Verkuil <hverkuil@xs4all.nl>
13015 L:      linux-media@vger.kernel.org
13016 S:      Odd Fixes
13017 W:      https://linuxtv.org
13018 T:      git git://linuxtv.org/media_tree.git
13019 F:      drivers/media/radio/radio-miropcm20*
13020
13021 MMP SUPPORT
13022 R:      Lubomir Rintel <lkundrak@v3.sk>
13023 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13024 S:      Odd Fixes
13025 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lkundrak/linux-mmp.git
13026 F:      arch/arm/boot/dts/mmp*
13027 F:      arch/arm/mach-mmp/
13028 F:      include/linux/soc/mmp/
13029
13030 MMP USB PHY DRIVERS
13031 R:      Lubomir Rintel <lkundrak@v3.sk>
13032 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13033 S:      Maintained
13034 F:      drivers/phy/marvell/phy-mmp3-usb.c
13035 F:      drivers/phy/marvell/phy-pxa-usb.c
13036
13037 MMU GATHER AND TLB INVALIDATION
13038 M:      Will Deacon <will@kernel.org>
13039 M:      "Aneesh Kumar K.V" <aneesh.kumar@linux.ibm.com>
13040 M:      Andrew Morton <akpm@linux-foundation.org>
13041 M:      Nick Piggin <npiggin@gmail.com>
13042 M:      Peter Zijlstra <peterz@infradead.org>
13043 L:      linux-arch@vger.kernel.org
13044 L:      linux-mm@kvack.org
13045 S:      Maintained
13046 F:      arch/*/include/asm/tlb.h
13047 F:      include/asm-generic/tlb.h
13048 F:      mm/mmu_gather.c
13049
13050 MN88472 MEDIA DRIVER
13051 M:      Antti Palosaari <crope@iki.fi>
13052 L:      linux-media@vger.kernel.org
13053 S:      Maintained
13054 W:      https://linuxtv.org
13055 W:      http://palosaari.fi/linux/
13056 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13057 F:      drivers/media/dvb-frontends/mn88472*
13058
13059 MN88473 MEDIA DRIVER
13060 M:      Antti Palosaari <crope@iki.fi>
13061 L:      linux-media@vger.kernel.org
13062 S:      Maintained
13063 W:      https://linuxtv.org
13064 W:      http://palosaari.fi/linux/
13065 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13066 F:      drivers/media/dvb-frontends/mn88473*
13067
13068 MODULE SUPPORT
13069 M:      Luis Chamberlain <mcgrof@kernel.org>
13070 L:      linux-modules@vger.kernel.org
13071 L:      linux-kernel@vger.kernel.org
13072 S:      Maintained
13073 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mcgrof/linux.git modules-next
13074 F:      include/linux/module.h
13075 F:      kernel/module.c
13076
13077 MONOLITHIC POWER SYSTEM PMIC DRIVER
13078 M:      Saravanan Sekar <sravanhome@gmail.com>
13079 S:      Maintained
13080 F:      Documentation/devicetree/bindings/mfd/mps,mp2629.yaml
13081 F:      Documentation/devicetree/bindings/regulator/mps,mp*.yaml
13082 F:      drivers/iio/adc/mp2629_adc.c
13083 F:      drivers/mfd/mp2629.c
13084 F:      drivers/power/supply/mp2629_charger.c
13085 F:      drivers/regulator/mp5416.c
13086 F:      drivers/regulator/mpq7920.c
13087 F:      drivers/regulator/mpq7920.h
13088 F:      include/linux/mfd/mp2629.h
13089
13090 MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
13091 S:      Orphan
13092 W:      http://popies.net/meye/
13093 F:      Documentation/userspace-api/media/drivers/meye*
13094 F:      drivers/media/pci/meye/
13095 F:      include/uapi/linux/meye.h
13096
13097 MOTORCOMM PHY DRIVER
13098 M:      Peter Geis <pgwipeout@gmail.com>
13099 L:      netdev@vger.kernel.org
13100 S:      Maintained
13101 F:      drivers/net/phy/motorcomm.c
13102
13103 MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
13104 M:      Jiri Slaby <jirislaby@kernel.org>
13105 S:      Maintained
13106 F:      Documentation/driver-api/serial/moxa-smartio.rst
13107 F:      drivers/tty/mxser.*
13108
13109 MR800 AVERMEDIA USB FM RADIO DRIVER
13110 M:      Alexey Klimov <klimov.linux@gmail.com>
13111 L:      linux-media@vger.kernel.org
13112 S:      Maintained
13113 T:      git git://linuxtv.org/media_tree.git
13114 F:      drivers/media/radio/radio-mr800.c
13115
13116 MRF24J40 IEEE 802.15.4 RADIO DRIVER
13117 M:      Alan Ott <alan@signal11.us>
13118 L:      linux-wpan@vger.kernel.org
13119 S:      Maintained
13120 F:      Documentation/devicetree/bindings/net/ieee802154/mrf24j40.txt
13121 F:      drivers/net/ieee802154/mrf24j40.c
13122
13123 MSI LAPTOP SUPPORT
13124 M:      "Lee, Chun-Yi" <jlee@suse.com>
13125 L:      platform-driver-x86@vger.kernel.org
13126 S:      Maintained
13127 F:      drivers/platform/x86/msi-laptop.c
13128
13129 MSI WMI SUPPORT
13130 L:      platform-driver-x86@vger.kernel.org
13131 S:      Orphan
13132 F:      drivers/platform/x86/msi-wmi.c
13133
13134 MSI001 MEDIA DRIVER
13135 M:      Antti Palosaari <crope@iki.fi>
13136 L:      linux-media@vger.kernel.org
13137 S:      Maintained
13138 W:      https://linuxtv.org
13139 W:      http://palosaari.fi/linux/
13140 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13141 T:      git git://linuxtv.org/anttip/media_tree.git
13142 F:      drivers/media/tuners/msi001*
13143
13144 MSI2500 MEDIA DRIVER
13145 M:      Antti Palosaari <crope@iki.fi>
13146 L:      linux-media@vger.kernel.org
13147 S:      Maintained
13148 W:      https://linuxtv.org
13149 W:      http://palosaari.fi/linux/
13150 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13151 T:      git git://linuxtv.org/anttip/media_tree.git
13152 F:      drivers/media/usb/msi2500/
13153
13154 MSTAR INTERRUPT CONTROLLER DRIVER
13155 M:      Mark-PK Tsai <mark-pk.tsai@mediatek.com>
13156 M:      Daniel Palmer <daniel@thingy.jp>
13157 S:      Maintained
13158 F:      Documentation/devicetree/bindings/interrupt-controller/mstar,mst-intc.yaml
13159 F:      drivers/irqchip/irq-mst-intc.c
13160
13161 MSYSTEMS DISKONCHIP G3 MTD DRIVER
13162 M:      Robert Jarzmik <robert.jarzmik@free.fr>
13163 L:      linux-mtd@lists.infradead.org
13164 S:      Maintained
13165 F:      drivers/mtd/devices/docg3*
13166
13167 MT9M032 APTINA SENSOR DRIVER
13168 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
13169 L:      linux-media@vger.kernel.org
13170 S:      Maintained
13171 T:      git git://linuxtv.org/media_tree.git
13172 F:      drivers/media/i2c/mt9m032.c
13173 F:      include/media/i2c/mt9m032.h
13174
13175 MT9P031 APTINA CAMERA SENSOR
13176 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
13177 L:      linux-media@vger.kernel.org
13178 S:      Maintained
13179 T:      git git://linuxtv.org/media_tree.git
13180 F:      Documentation/devicetree/bindings/media/i2c/aptina,mt9p031.yaml
13181 F:      drivers/media/i2c/mt9p031.c
13182 F:      include/media/i2c/mt9p031.h
13183
13184 MT9T001 APTINA CAMERA SENSOR
13185 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
13186 L:      linux-media@vger.kernel.org
13187 S:      Maintained
13188 T:      git git://linuxtv.org/media_tree.git
13189 F:      drivers/media/i2c/mt9t001.c
13190 F:      include/media/i2c/mt9t001.h
13191
13192 MT9T112 APTINA CAMERA SENSOR
13193 M:      Jacopo Mondi <jacopo@jmondi.org>
13194 L:      linux-media@vger.kernel.org
13195 S:      Odd Fixes
13196 T:      git git://linuxtv.org/media_tree.git
13197 F:      drivers/media/i2c/mt9t112.c
13198 F:      include/media/i2c/mt9t112.h
13199
13200 MT9V032 APTINA CAMERA SENSOR
13201 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
13202 L:      linux-media@vger.kernel.org
13203 S:      Maintained
13204 T:      git git://linuxtv.org/media_tree.git
13205 F:      Documentation/devicetree/bindings/media/i2c/mt9v032.txt
13206 F:      drivers/media/i2c/mt9v032.c
13207 F:      include/media/i2c/mt9v032.h
13208
13209 MT9V111 APTINA CAMERA SENSOR
13210 M:      Jacopo Mondi <jacopo@jmondi.org>
13211 L:      linux-media@vger.kernel.org
13212 S:      Maintained
13213 T:      git git://linuxtv.org/media_tree.git
13214 F:      Documentation/devicetree/bindings/media/i2c/aptina,mt9v111.yaml
13215 F:      drivers/media/i2c/mt9v111.c
13216
13217 MULTIFUNCTION DEVICES (MFD)
13218 M:      Lee Jones <lee.jones@linaro.org>
13219 S:      Supported
13220 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
13221 F:      Documentation/devicetree/bindings/mfd/
13222 F:      drivers/mfd/
13223 F:      include/dt-bindings/mfd/
13224 F:      include/linux/mfd/
13225
13226 MULTIMEDIA CARD (MMC) ETC. OVER SPI
13227 S:      Orphan
13228 F:      drivers/mmc/host/mmc_spi.c
13229 F:      include/linux/spi/mmc_spi.h
13230
13231 MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
13232 M:      Ulf Hansson <ulf.hansson@linaro.org>
13233 L:      linux-mmc@vger.kernel.org
13234 S:      Maintained
13235 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
13236 F:      Documentation/devicetree/bindings/mmc/
13237 F:      drivers/mmc/
13238 F:      include/linux/mmc/
13239 F:      include/uapi/linux/mmc/
13240
13241 MULTIPLEXER SUBSYSTEM
13242 M:      Peter Rosin <peda@axentia.se>
13243 S:      Maintained
13244 F:      Documentation/ABI/testing/sysfs-class-mux*
13245 F:      Documentation/devicetree/bindings/mux/
13246 F:      drivers/mux/
13247 F:      include/dt-bindings/mux/
13248 F:      include/linux/mux/
13249
13250 MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
13251 M:      Bin Liu <b-liu@ti.com>
13252 L:      linux-usb@vger.kernel.org
13253 S:      Maintained
13254 F:      drivers/usb/musb/
13255
13256 MXL301RF MEDIA DRIVER
13257 M:      Akihiro Tsukada <tskd08@gmail.com>
13258 L:      linux-media@vger.kernel.org
13259 S:      Odd Fixes
13260 F:      drivers/media/tuners/mxl301rf*
13261
13262 MXL5007T MEDIA DRIVER
13263 M:      Michael Krufky <mkrufky@linuxtv.org>
13264 L:      linux-media@vger.kernel.org
13265 S:      Maintained
13266 W:      https://linuxtv.org
13267 W:      http://github.com/mkrufky
13268 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13269 T:      git git://linuxtv.org/mkrufky/tuners.git
13270 F:      drivers/media/tuners/mxl5007t.*
13271
13272 MXSFB DRM DRIVER
13273 M:      Marek Vasut <marex@denx.de>
13274 M:      Stefan Agner <stefan@agner.ch>
13275 L:      dri-devel@lists.freedesktop.org
13276 S:      Supported
13277 T:      git git://anongit.freedesktop.org/drm/drm-misc
13278 F:      Documentation/devicetree/bindings/display/fsl,lcdif.yaml
13279 F:      drivers/gpu/drm/mxsfb/
13280
13281 MYLEX DAC960 PCI RAID Controller
13282 M:      Hannes Reinecke <hare@kernel.org>
13283 L:      linux-scsi@vger.kernel.org
13284 S:      Supported
13285 F:      drivers/scsi/myrb.*
13286 F:      drivers/scsi/myrs.*
13287
13288 MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
13289 M:      Chris Lee <christopher.lee@cspi.com>
13290 L:      netdev@vger.kernel.org
13291 S:      Supported
13292 W:      https://www.cspi.com/ethernet-products/support/downloads/
13293 F:      drivers/net/ethernet/myricom/myri10ge/
13294
13295 NAND FLASH SUBSYSTEM
13296 M:      Miquel Raynal <miquel.raynal@bootlin.com>
13297 R:      Richard Weinberger <richard@nod.at>
13298 L:      linux-mtd@lists.infradead.org
13299 S:      Maintained
13300 W:      http://www.linux-mtd.infradead.org/
13301 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
13302 C:      irc://irc.oftc.net/mtd
13303 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git nand/next
13304 F:      drivers/mtd/nand/
13305 F:      include/linux/mtd/*nand*.h
13306
13307 NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
13308 M:      Daniel Mack <zonque@gmail.com>
13309 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
13310 S:      Maintained
13311 W:      http://www.native-instruments.com
13312 F:      sound/usb/caiaq/
13313
13314 NATSEMI ETHERNET DRIVER (DP8381x)
13315 S:      Orphan
13316 F:      drivers/net/ethernet/natsemi/natsemi.c
13317
13318 NCR 5380 SCSI DRIVERS
13319 M:      Finn Thain <fthain@linux-m68k.org>
13320 M:      Michael Schmitz <schmitzmic@gmail.com>
13321 L:      linux-scsi@vger.kernel.org
13322 S:      Maintained
13323 F:      Documentation/scsi/g_NCR5380.rst
13324 F:      drivers/scsi/NCR5380.*
13325 F:      drivers/scsi/arm/cumana_1.c
13326 F:      drivers/scsi/arm/oak.c
13327 F:      drivers/scsi/atari_scsi.*
13328 F:      drivers/scsi/dmx3191d.c
13329 F:      drivers/scsi/g_NCR5380.*
13330 F:      drivers/scsi/mac_scsi.*
13331 F:      drivers/scsi/sun3_scsi.*
13332 F:      drivers/scsi/sun3_scsi_vme.c
13333
13334 NCSI LIBRARY
13335 M:      Samuel Mendoza-Jonas <sam@mendozajonas.com>
13336 S:      Maintained
13337 F:      net/ncsi/
13338
13339 NCT6775 HARDWARE MONITOR DRIVER
13340 M:      Guenter Roeck <linux@roeck-us.net>
13341 L:      linux-hwmon@vger.kernel.org
13342 S:      Maintained
13343 F:      Documentation/hwmon/nct6775.rst
13344 F:      drivers/hwmon/nct6775.c
13345
13346 NETDEVSIM
13347 M:      Jakub Kicinski <kuba@kernel.org>
13348 S:      Maintained
13349 F:      drivers/net/netdevsim/*
13350
13351 NETEM NETWORK EMULATOR
13352 M:      Stephen Hemminger <stephen@networkplumber.org>
13353 L:      netdev@vger.kernel.org
13354 S:      Maintained
13355 F:      net/sched/sch_netem.c
13356
13357 NETERION 10GbE DRIVERS (s2io/vxge)
13358 M:      Jon Mason <jdmason@kudzu.us>
13359 L:      netdev@vger.kernel.org
13360 S:      Supported
13361 F:      Documentation/networking/device_drivers/ethernet/neterion/s2io.rst
13362 F:      Documentation/networking/device_drivers/ethernet/neterion/vxge.rst
13363 F:      drivers/net/ethernet/neterion/
13364
13365 NETFILTER
13366 M:      Pablo Neira Ayuso <pablo@netfilter.org>
13367 M:      Jozsef Kadlecsik <kadlec@netfilter.org>
13368 M:      Florian Westphal <fw@strlen.de>
13369 L:      netfilter-devel@vger.kernel.org
13370 L:      coreteam@netfilter.org
13371 S:      Maintained
13372 W:      http://www.netfilter.org/
13373 W:      http://www.iptables.org/
13374 W:      http://www.nftables.org/
13375 Q:      http://patchwork.ozlabs.org/project/netfilter-devel/list/
13376 C:      irc://irc.libera.chat/netfilter
13377 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netfilter/nf.git
13378 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netfilter/nf-next.git
13379 F:      include/linux/netfilter*
13380 F:      include/linux/netfilter/
13381 F:      include/net/netfilter/
13382 F:      include/uapi/linux/netfilter*
13383 F:      include/uapi/linux/netfilter/
13384 F:      net/*/netfilter.c
13385 F:      net/*/netfilter/
13386 F:      net/bridge/br_netfilter*.c
13387 F:      net/netfilter/
13388
13389 NETROM NETWORK LAYER
13390 M:      Ralf Baechle <ralf@linux-mips.org>
13391 L:      linux-hams@vger.kernel.org
13392 S:      Maintained
13393 W:      http://www.linux-ax25.org/
13394 F:      include/net/netrom.h
13395 F:      include/uapi/linux/netrom.h
13396 F:      net/netrom/
13397
13398 NETRONIX EMBEDDED CONTROLLER
13399 M:      Jonathan Neuschäfer <j.neuschaefer@gmx.net>
13400 S:      Maintained
13401 F:      Documentation/devicetree/bindings/mfd/netronix,ntxec.yaml
13402 F:      drivers/mfd/ntxec.c
13403 F:      drivers/pwm/pwm-ntxec.c
13404 F:      drivers/rtc/rtc-ntxec.c
13405 F:      include/linux/mfd/ntxec.h
13406
13407 NETRONOME ETHERNET DRIVERS
13408 M:      Simon Horman <simon.horman@corigine.com>
13409 R:      Jakub Kicinski <kuba@kernel.org>
13410 L:      oss-drivers@corigine.com
13411 S:      Maintained
13412 F:      drivers/net/ethernet/netronome/
13413
13414 NETWORK BLOCK DEVICE (NBD)
13415 M:      Josef Bacik <josef@toxicpanda.com>
13416 L:      linux-block@vger.kernel.org
13417 L:      nbd@other.debian.org
13418 S:      Maintained
13419 F:      Documentation/admin-guide/blockdev/nbd.rst
13420 F:      drivers/block/nbd.c
13421 F:      include/trace/events/nbd.h
13422 F:      include/uapi/linux/nbd.h
13423
13424 NETWORK DROP MONITOR
13425 M:      Neil Horman <nhorman@tuxdriver.com>
13426 L:      netdev@vger.kernel.org
13427 S:      Maintained
13428 W:      https://fedorahosted.org/dropwatch/
13429 F:      include/uapi/linux/net_dropmon.h
13430 F:      net/core/drop_monitor.c
13431
13432 NETWORKING DRIVERS
13433 M:      "David S. Miller" <davem@davemloft.net>
13434 M:      Jakub Kicinski <kuba@kernel.org>
13435 M:      Paolo Abeni <pabeni@redhat.com>
13436 L:      netdev@vger.kernel.org
13437 S:      Maintained
13438 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
13439 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
13440 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
13441 F:      Documentation/devicetree/bindings/net/
13442 F:      drivers/connector/
13443 F:      drivers/net/
13444 F:      include/linux/etherdevice.h
13445 F:      include/linux/fcdevice.h
13446 F:      include/linux/fddidevice.h
13447 F:      include/linux/hippidevice.h
13448 F:      include/linux/if_*
13449 F:      include/linux/inetdevice.h
13450 F:      include/linux/netdevice.h
13451 F:      include/uapi/linux/if_*
13452 F:      include/uapi/linux/netdevice.h
13453
13454 NETWORKING DRIVERS (WIRELESS)
13455 M:      Kalle Valo <kvalo@kernel.org>
13456 L:      linux-wireless@vger.kernel.org
13457 S:      Maintained
13458 W:      https://wireless.wiki.kernel.org/
13459 Q:      https://patchwork.kernel.org/project/linux-wireless/list/
13460 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless.git
13461 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless-next.git
13462 F:      Documentation/devicetree/bindings/net/wireless/
13463 F:      drivers/net/wireless/
13464
13465 NETWORKING [DSA]
13466 M:      Andrew Lunn <andrew@lunn.ch>
13467 M:      Vivien Didelot <vivien.didelot@gmail.com>
13468 M:      Florian Fainelli <f.fainelli@gmail.com>
13469 M:      Vladimir Oltean <olteanv@gmail.com>
13470 S:      Maintained
13471 F:      Documentation/devicetree/bindings/net/dsa/
13472 F:      drivers/net/dsa/
13473 F:      include/linux/dsa/
13474 F:      include/linux/platform_data/dsa.h
13475 F:      include/net/dsa.h
13476 F:      net/dsa/
13477 F:      tools/testing/selftests/drivers/net/dsa/
13478
13479 NETWORKING [GENERAL]
13480 M:      "David S. Miller" <davem@davemloft.net>
13481 M:      Jakub Kicinski <kuba@kernel.org>
13482 M:      Paolo Abeni <pabeni@redhat.com>
13483 L:      netdev@vger.kernel.org
13484 S:      Maintained
13485 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
13486 B:      mailto:netdev@vger.kernel.org
13487 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
13488 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
13489 F:      Documentation/networking/
13490 F:      include/linux/in.h
13491 F:      include/linux/net.h
13492 F:      include/linux/netdevice.h
13493 F:      include/net/
13494 F:      include/uapi/linux/in.h
13495 F:      include/uapi/linux/net.h
13496 F:      include/uapi/linux/net_namespace.h
13497 F:      include/uapi/linux/netdevice.h
13498 F:      lib/net_utils.c
13499 F:      lib/random32.c
13500 F:      net/
13501 F:      tools/testing/selftests/net/
13502
13503 NETWORKING [IPSEC]
13504 M:      Steffen Klassert <steffen.klassert@secunet.com>
13505 M:      Herbert Xu <herbert@gondor.apana.org.au>
13506 M:      "David S. Miller" <davem@davemloft.net>
13507 L:      netdev@vger.kernel.org
13508 S:      Maintained
13509 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git
13510 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git
13511 F:      include/net/xfrm.h
13512 F:      include/uapi/linux/xfrm.h
13513 F:      net/ipv4/ah4.c
13514 F:      net/ipv4/esp4*
13515 F:      net/ipv4/ip_vti.c
13516 F:      net/ipv4/ipcomp.c
13517 F:      net/ipv4/xfrm*
13518 F:      net/ipv6/ah6.c
13519 F:      net/ipv6/esp6*
13520 F:      net/ipv6/ip6_vti.c
13521 F:      net/ipv6/ipcomp6.c
13522 F:      net/ipv6/xfrm*
13523 F:      net/key/
13524 F:      net/xfrm/
13525 F:      tools/testing/selftests/net/ipsec.c
13526
13527 NETWORKING [IPv4/IPv6]
13528 M:      "David S. Miller" <davem@davemloft.net>
13529 M:      Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
13530 M:      David Ahern <dsahern@kernel.org>
13531 L:      netdev@vger.kernel.org
13532 S:      Maintained
13533 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
13534 F:      arch/x86/net/*
13535 F:      include/linux/ip.h
13536 F:      include/linux/ipv6*
13537 F:      include/net/fib*
13538 F:      include/net/ip*
13539 F:      include/net/route.h
13540 F:      net/ipv4/
13541 F:      net/ipv6/
13542
13543 NETWORKING [LABELED] (NetLabel, Labeled IPsec, SECMARK)
13544 M:      Paul Moore <paul@paul-moore.com>
13545 L:      netdev@vger.kernel.org
13546 L:      linux-security-module@vger.kernel.org
13547 S:      Maintained
13548 W:      https://github.com/netlabel
13549 F:      Documentation/netlabel/
13550 F:      include/net/calipso.h
13551 F:      include/net/cipso_ipv4.h
13552 F:      include/net/netlabel.h
13553 F:      include/uapi/linux/netfilter/xt_CONNSECMARK.h
13554 F:      include/uapi/linux/netfilter/xt_SECMARK.h
13555 F:      net/ipv4/cipso_ipv4.c
13556 F:      net/ipv6/calipso.c
13557 F:      net/netfilter/xt_CONNSECMARK.c
13558 F:      net/netfilter/xt_SECMARK.c
13559 F:      net/netlabel/
13560
13561 NETWORKING [MPTCP]
13562 M:      Mat Martineau <mathew.j.martineau@linux.intel.com>
13563 M:      Matthieu Baerts <matthieu.baerts@tessares.net>
13564 L:      netdev@vger.kernel.org
13565 L:      mptcp@lists.linux.dev
13566 S:      Maintained
13567 W:      https://github.com/multipath-tcp/mptcp_net-next/wiki
13568 B:      https://github.com/multipath-tcp/mptcp_net-next/issues
13569 F:      Documentation/networking/mptcp-sysctl.rst
13570 F:      include/net/mptcp.h
13571 F:      include/trace/events/mptcp.h
13572 F:      include/uapi/linux/mptcp.h
13573 F:      net/mptcp/
13574 F:      tools/testing/selftests/net/mptcp/
13575
13576 NETWORKING [TCP]
13577 M:      Eric Dumazet <edumazet@google.com>
13578 L:      netdev@vger.kernel.org
13579 S:      Maintained
13580 F:      include/linux/tcp.h
13581 F:      include/net/tcp.h
13582 F:      include/trace/events/tcp.h
13583 F:      include/uapi/linux/tcp.h
13584 F:      net/ipv4/syncookies.c
13585 F:      net/ipv4/tcp*.c
13586 F:      net/ipv6/syncookies.c
13587 F:      net/ipv6/tcp*.c
13588
13589 NETWORKING [TLS]
13590 M:      Boris Pismenny <borisp@nvidia.com>
13591 M:      John Fastabend <john.fastabend@gmail.com>
13592 M:      Daniel Borkmann <daniel@iogearbox.net>
13593 M:      Jakub Kicinski <kuba@kernel.org>
13594 L:      netdev@vger.kernel.org
13595 S:      Maintained
13596 F:      include/net/tls.h
13597 F:      include/uapi/linux/tls.h
13598 F:      net/tls/*
13599
13600 NETXEN (1/10) GbE SUPPORT
13601 M:      Manish Chopra <manishc@marvell.com>
13602 M:      Rahul Verma <rahulv@marvell.com>
13603 M:      GR-Linux-NIC-Dev@marvell.com
13604 L:      netdev@vger.kernel.org
13605 S:      Supported
13606 F:      drivers/net/ethernet/qlogic/netxen/
13607
13608 NET_FAILOVER MODULE
13609 M:      Sridhar Samudrala <sridhar.samudrala@intel.com>
13610 L:      netdev@vger.kernel.org
13611 S:      Supported
13612 F:      Documentation/networking/net_failover.rst
13613 F:      drivers/net/net_failover.c
13614 F:      include/net/net_failover.h
13615
13616 NEXTHOP
13617 M:      David Ahern <dsahern@kernel.org>
13618 L:      netdev@vger.kernel.org
13619 S:      Maintained
13620 F:      include/net/netns/nexthop.h
13621 F:      include/net/nexthop.h
13622 F:      include/uapi/linux/nexthop.h
13623 F:      net/ipv4/nexthop.c
13624
13625 NFC SUBSYSTEM
13626 M:      Krzysztof Kozlowski <krzk@kernel.org>
13627 L:      linux-nfc@lists.01.org (subscribers-only)
13628 L:      netdev@vger.kernel.org
13629 S:      Maintained
13630 F:      Documentation/devicetree/bindings/net/nfc/
13631 F:      drivers/nfc/
13632 F:      include/linux/platform_data/nfcmrvl.h
13633 F:      include/net/nfc/
13634 F:      include/uapi/linux/nfc.h
13635 F:      net/nfc/
13636
13637 NFC VIRTUAL NCI DEVICE DRIVER
13638 M:      Bongsu Jeon <bongsu.jeon@samsung.com>
13639 L:      netdev@vger.kernel.org
13640 L:      linux-nfc@lists.01.org (subscribers-only)
13641 S:      Supported
13642 F:      drivers/nfc/virtual_ncidev.c
13643 F:      tools/testing/selftests/nci/
13644
13645 NFS, SUNRPC, AND LOCKD CLIENTS
13646 M:      Trond Myklebust <trond.myklebust@hammerspace.com>
13647 M:      Anna Schumaker <anna@kernel.org>
13648 L:      linux-nfs@vger.kernel.org
13649 S:      Maintained
13650 W:      http://client.linux-nfs.org
13651 T:      git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git
13652 F:      fs/lockd/
13653 F:      fs/nfs/
13654 F:      fs/nfs_common/
13655 F:      include/linux/lockd/
13656 F:      include/linux/nfs*
13657 F:      include/linux/sunrpc/
13658 F:      include/uapi/linux/nfs*
13659 F:      include/uapi/linux/sunrpc/
13660 F:      net/sunrpc/
13661 F:      Documentation/filesystems/nfs/
13662
13663 NILFS2 FILESYSTEM
13664 M:      Ryusuke Konishi <konishi.ryusuke@gmail.com>
13665 L:      linux-nilfs@vger.kernel.org
13666 S:      Supported
13667 W:      https://nilfs.sourceforge.io/
13668 W:      https://nilfs.osdn.jp/
13669 T:      git git://github.com/konis/nilfs2.git
13670 F:      Documentation/filesystems/nilfs2.rst
13671 F:      fs/nilfs2/
13672 F:      include/trace/events/nilfs2.h
13673 F:      include/uapi/linux/nilfs2_api.h
13674 F:      include/uapi/linux/nilfs2_ondisk.h
13675
13676 NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
13677 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
13678 S:      Maintained
13679 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
13680 F:      Documentation/scsi/NinjaSCSI.rst
13681 F:      drivers/scsi/pcmcia/nsp_*
13682
13683 NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
13684 M:      GOTO Masanori <gotom@debian.or.jp>
13685 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
13686 S:      Maintained
13687 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
13688 F:      Documentation/scsi/NinjaSCSI.rst
13689 F:      drivers/scsi/nsp32*
13690
13691 NINTENDO HID DRIVER
13692 M:      Daniel J. Ogorchock <djogorchock@gmail.com>
13693 L:      linux-input@vger.kernel.org
13694 S:      Maintained
13695 F:      drivers/hid/hid-nintendo*
13696
13697 NIOS2 ARCHITECTURE
13698 M:      Dinh Nguyen <dinguyen@kernel.org>
13699 S:      Maintained
13700 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
13701 F:      arch/nios2/
13702
13703 NITRO ENCLAVES (NE)
13704 M:      Andra Paraschiv <andraprs@amazon.com>
13705 M:      Alexandru Vasile <lexnv@amazon.com>
13706 M:      Alexandru Ciobotaru <alcioa@amazon.com>
13707 L:      linux-kernel@vger.kernel.org
13708 S:      Supported
13709 W:      https://aws.amazon.com/ec2/nitro/nitro-enclaves/
13710 F:      Documentation/virt/ne_overview.rst
13711 F:      drivers/virt/nitro_enclaves/
13712 F:      include/linux/nitro_enclaves.h
13713 F:      include/uapi/linux/nitro_enclaves.h
13714 F:      samples/nitro_enclaves/
13715
13716 NOHZ, DYNTICKS SUPPORT
13717 M:      Frederic Weisbecker <fweisbec@gmail.com>
13718 M:      Thomas Gleixner <tglx@linutronix.de>
13719 M:      Ingo Molnar <mingo@kernel.org>
13720 L:      linux-kernel@vger.kernel.org
13721 S:      Maintained
13722 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/nohz
13723 F:      include/linux/sched/nohz.h
13724 F:      include/linux/tick.h
13725 F:      kernel/time/tick*.*
13726
13727 NOKIA N900 CAMERA SUPPORT (ET8EK8 SENSOR, AD5820 FOCUS)
13728 M:      Pavel Machek <pavel@ucw.cz>
13729 M:      Sakari Ailus <sakari.ailus@iki.fi>
13730 L:      linux-media@vger.kernel.org
13731 S:      Maintained
13732 F:      drivers/media/i2c/ad5820.c
13733 F:      drivers/media/i2c/et8ek8
13734
13735 NOKIA N900 POWER SUPPLY DRIVERS
13736 R:      Pali Rohár <pali@kernel.org>
13737 F:      drivers/power/supply/bq2415x_charger.c
13738 F:      drivers/power/supply/bq27xxx_battery.c
13739 F:      drivers/power/supply/bq27xxx_battery_i2c.c
13740 F:      drivers/power/supply/isp1704_charger.c
13741 F:      drivers/power/supply/rx51_battery.c
13742 F:      include/linux/power/bq2415x_charger.h
13743 F:      include/linux/power/bq27xxx_battery.h
13744
13745 NOLIBC HEADER FILE
13746 M:      Willy Tarreau <w@1wt.eu>
13747 S:      Maintained
13748 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wtarreau/nolibc.git
13749 F:      tools/include/nolibc/
13750
13751 NSDEPS
13752 M:      Matthias Maennich <maennich@google.com>
13753 S:      Maintained
13754 F:      Documentation/core-api/symbol-namespaces.rst
13755 F:      scripts/nsdeps
13756
13757 NTB AMD DRIVER
13758 M:      Sanjay R Mehta <sanju.mehta@amd.com>
13759 M:      Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
13760 L:      ntb@lists.linux.dev
13761 S:      Supported
13762 F:      drivers/ntb/hw/amd/
13763
13764 NTB DRIVER CORE
13765 M:      Jon Mason <jdmason@kudzu.us>
13766 M:      Dave Jiang <dave.jiang@intel.com>
13767 M:      Allen Hubbe <allenbh@gmail.com>
13768 L:      ntb@lists.linux.dev
13769 S:      Supported
13770 W:      https://github.com/jonmason/ntb/wiki
13771 T:      git git://github.com/jonmason/ntb.git
13772 F:      drivers/net/ntb_netdev.c
13773 F:      drivers/ntb/
13774 F:      include/linux/ntb.h
13775 F:      include/linux/ntb_transport.h
13776 F:      tools/testing/selftests/ntb/
13777
13778 NTB IDT DRIVER
13779 M:      Serge Semin <fancer.lancer@gmail.com>
13780 L:      ntb@lists.linux.dev
13781 S:      Supported
13782 F:      drivers/ntb/hw/idt/
13783
13784 NTB INTEL DRIVER
13785 M:      Dave Jiang <dave.jiang@intel.com>
13786 L:      ntb@lists.linux.dev
13787 S:      Supported
13788 W:      https://github.com/davejiang/linux/wiki
13789 T:      git https://github.com/davejiang/linux.git
13790 F:      drivers/ntb/hw/intel/
13791
13792 NTFS FILESYSTEM
13793 M:      Anton Altaparmakov <anton@tuxera.com>
13794 L:      linux-ntfs-dev@lists.sourceforge.net
13795 S:      Supported
13796 W:      http://www.tuxera.com/
13797 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
13798 F:      Documentation/filesystems/ntfs.rst
13799 F:      fs/ntfs/
13800
13801 NTFS3 FILESYSTEM
13802 M:      Konstantin Komarov <almaz.alexandrovich@paragon-software.com>
13803 L:      ntfs3@lists.linux.dev
13804 S:      Supported
13805 W:      http://www.paragon-software.com/
13806 T:      git https://github.com/Paragon-Software-Group/linux-ntfs3.git
13807 F:      Documentation/filesystems/ntfs3.rst
13808 F:      fs/ntfs3/
13809
13810 NUBUS SUBSYSTEM
13811 M:      Finn Thain <fthain@linux-m68k.org>
13812 L:      linux-m68k@lists.linux-m68k.org
13813 S:      Maintained
13814 F:      arch/*/include/asm/nubus.h
13815 F:      drivers/nubus/
13816 F:      include/linux/nubus.h
13817 F:      include/uapi/linux/nubus.h
13818
13819 NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
13820 M:      Antonino Daplas <adaplas@gmail.com>
13821 L:      linux-fbdev@vger.kernel.org
13822 S:      Maintained
13823 F:      drivers/video/fbdev/nvidia/
13824 F:      drivers/video/fbdev/riva/
13825
13826 NVIDIA WMI EC BACKLIGHT DRIVER
13827 M:      Daniel Dadap <ddadap@nvidia.com>
13828 L:      platform-driver-x86@vger.kernel.org
13829 S:      Supported
13830 F:      drivers/platform/x86/nvidia-wmi-ec-backlight.c
13831
13832 NVM EXPRESS DRIVER
13833 M:      Keith Busch <kbusch@kernel.org>
13834 M:      Jens Axboe <axboe@fb.com>
13835 M:      Christoph Hellwig <hch@lst.de>
13836 M:      Sagi Grimberg <sagi@grimberg.me>
13837 L:      linux-nvme@lists.infradead.org
13838 S:      Supported
13839 W:      http://git.infradead.org/nvme.git
13840 T:      git://git.infradead.org/nvme.git
13841 F:      drivers/nvme/host/
13842 F:      include/linux/nvme.h
13843 F:      include/uapi/linux/nvme_ioctl.h
13844
13845 NVM EXPRESS FC TRANSPORT DRIVERS
13846 M:      James Smart <james.smart@broadcom.com>
13847 L:      linux-nvme@lists.infradead.org
13848 S:      Supported
13849 F:      drivers/nvme/host/fc.c
13850 F:      drivers/nvme/target/fc.c
13851 F:      drivers/nvme/target/fcloop.c
13852 F:      include/linux/nvme-fc-driver.h
13853 F:      include/linux/nvme-fc.h
13854
13855 NVM EXPRESS TARGET DRIVER
13856 M:      Christoph Hellwig <hch@lst.de>
13857 M:      Sagi Grimberg <sagi@grimberg.me>
13858 M:      Chaitanya Kulkarni <kch@nvidia.com>
13859 L:      linux-nvme@lists.infradead.org
13860 S:      Supported
13861 W:      http://git.infradead.org/nvme.git
13862 T:      git://git.infradead.org/nvme.git
13863 F:      drivers/nvme/target/
13864
13865 NVMEM FRAMEWORK
13866 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
13867 S:      Maintained
13868 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/srini/nvmem.git
13869 F:      Documentation/ABI/stable/sysfs-bus-nvmem
13870 F:      Documentation/devicetree/bindings/nvmem/
13871 F:      drivers/nvmem/
13872 F:      include/linux/nvmem-consumer.h
13873 F:      include/linux/nvmem-provider.h
13874
13875 NXP C45 TJA11XX PHY DRIVER
13876 M:      Radu Pirea <radu-nicolae.pirea@oss.nxp.com>
13877 L:      netdev@vger.kernel.org
13878 S:      Maintained
13879 F:      drivers/net/phy/nxp-c45-tja11xx.c
13880
13881 NXP FSPI DRIVER
13882 M:      Ashish Kumar <ashish.kumar@nxp.com>
13883 R:      Yogesh Gaur <yogeshgaur.83@gmail.com>
13884 L:      linux-spi@vger.kernel.org
13885 S:      Maintained
13886 F:      Documentation/devicetree/bindings/spi/spi-nxp-fspi.yaml
13887 F:      drivers/spi/spi-nxp-fspi.c
13888
13889 NXP FXAS21002C DRIVER
13890 M:      Rui Miguel Silva <rmfrfs@gmail.com>
13891 L:      linux-iio@vger.kernel.org
13892 S:      Maintained
13893 F:      Documentation/devicetree/bindings/iio/gyroscope/nxp,fxas21002c.yaml
13894 F:      drivers/iio/gyro/fxas21002c.h
13895 F:      drivers/iio/gyro/fxas21002c_core.c
13896 F:      drivers/iio/gyro/fxas21002c_i2c.c
13897 F:      drivers/iio/gyro/fxas21002c_spi.c
13898
13899 NXP i.MX CLOCK DRIVERS
13900 M:      Abel Vesa <abel.vesa@nxp.com>
13901 L:      linux-clk@vger.kernel.org
13902 L:      linux-imx@nxp.com
13903 S:      Maintained
13904 F:      drivers/clk/imx/
13905
13906 NXP i.MX 8MQ DCSS DRIVER
13907 M:      Laurentiu Palcu <laurentiu.palcu@oss.nxp.com>
13908 R:      Lucas Stach <l.stach@pengutronix.de>
13909 L:      dri-devel@lists.freedesktop.org
13910 S:      Maintained
13911 F:      Documentation/devicetree/bindings/display/imx/nxp,imx8mq-dcss.yaml
13912 F:      drivers/gpu/drm/imx/dcss/
13913
13914 NXP i.MX 8QXP ADC DRIVER
13915 M:      Cai Huoqing <cai.huoqing@linux.dev>
13916 M:      Haibo Chen <haibo.chen@nxp.com>
13917 L:      linux-imx@nxp.com
13918 L:      linux-iio@vger.kernel.org
13919 S:      Maintained
13920 F:      Documentation/devicetree/bindings/iio/adc/nxp,imx8qxp-adc.yaml
13921 F:      drivers/iio/adc/imx8qxp-adc.c
13922
13923 NXP i.MX 7D/6SX/6UL AND VF610 ADC DRIVER
13924 M:      Haibo Chen <haibo.chen@nxp.com>
13925 L:      linux-iio@vger.kernel.org
13926 L:      linux-imx@nxp.com
13927 S:      Maintained
13928 F:      Documentation/devicetree/bindings/iio/adc/fsl,imx7d-adc.yaml
13929 F:      Documentation/devicetree/bindings/iio/adc/fsl,vf610-adc.yaml
13930 F:      drivers/iio/adc/imx7d_adc.c
13931 F:      drivers/iio/adc/vf610_adc.c
13932
13933 NXP PF8100/PF8121A/PF8200 PMIC REGULATOR DEVICE DRIVER
13934 M:      Jagan Teki <jagan@amarulasolutions.com>
13935 S:      Maintained
13936 F:      Documentation/devicetree/bindings/regulator/nxp,pf8x00-regulator.yaml
13937 F:      drivers/regulator/pf8x00-regulator.c
13938
13939 NXP PTN5150A CC LOGIC AND EXTCON DRIVER
13940 M:      Krzysztof Kozlowski <krzk@kernel.org>
13941 L:      linux-kernel@vger.kernel.org
13942 S:      Maintained
13943 F:      Documentation/devicetree/bindings/extcon/extcon-ptn5150.yaml
13944 F:      drivers/extcon/extcon-ptn5150.c
13945
13946 NXP SGTL5000 DRIVER
13947 M:      Fabio Estevam <festevam@gmail.com>
13948 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
13949 S:      Maintained
13950 F:      Documentation/devicetree/bindings/sound/sgtl5000.yaml
13951 F:      sound/soc/codecs/sgtl5000*
13952
13953 NXP SJA1105 ETHERNET SWITCH DRIVER
13954 M:      Vladimir Oltean <olteanv@gmail.com>
13955 L:      linux-kernel@vger.kernel.org
13956 S:      Maintained
13957 F:      drivers/net/dsa/sja1105
13958 F:      drivers/net/pcs/pcs-xpcs-nxp.c
13959
13960 NXP TDA998X DRM DRIVER
13961 M:      Russell King <linux@armlinux.org.uk>
13962 S:      Maintained
13963 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-devel
13964 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-fixes
13965 F:      drivers/gpu/drm/i2c/tda998x_drv.c
13966 F:      include/drm/i2c/tda998x.h
13967 F:      include/dt-bindings/display/tda998x.h
13968 K:      "nxp,tda998x"
13969
13970 NXP TFA9879 DRIVER
13971 M:      Peter Rosin <peda@axentia.se>
13972 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
13973 S:      Maintained
13974 F:      Documentation/devicetree/bindings/sound/tfa9879.txt
13975 F:      sound/soc/codecs/tfa9879*
13976
13977 NXP/Goodix TFA989X (TFA1) DRIVER
13978 M:      Stephan Gerhold <stephan@gerhold.net>
13979 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
13980 S:      Maintained
13981 F:      Documentation/devicetree/bindings/sound/nxp,tfa989x.yaml
13982 F:      sound/soc/codecs/tfa989x.c
13983
13984 NXP-NCI NFC DRIVER
13985 R:      Charles Gorand <charles.gorand@effinnov.com>
13986 L:      linux-nfc@lists.01.org (subscribers-only)
13987 S:      Supported
13988 F:      Documentation/devicetree/bindings/net/nfc/nxp,nci.yaml
13989 F:      drivers/nfc/nxp-nci
13990
13991 NXP i.MX 8QXP/8QM JPEG V4L2 DRIVER
13992 M:      Mirela Rabulea <mirela.rabulea@nxp.com>
13993 R:      NXP Linux Team <linux-imx@nxp.com>
13994 L:      linux-media@vger.kernel.org
13995 S:      Maintained
13996 F:      Documentation/devicetree/bindings/media/nxp,imx8-jpeg.yaml
13997 F:      drivers/media/platform/imx-jpeg
13998
13999 NZXT-KRAKEN2 HARDWARE MONITORING DRIVER
14000 M:      Jonas Malaco <jonas@protocubo.io>
14001 L:      linux-hwmon@vger.kernel.org
14002 S:      Maintained
14003 F:      Documentation/hwmon/nzxt-kraken2.rst
14004 F:      drivers/hwmon/nzxt-kraken2.c
14005
14006 NZXT-SMART2 HARDWARE MONITORING DRIVER
14007 M:      Aleksandr Mezin <mezin.alexander@gmail.com>
14008 L:      linux-hwmon@vger.kernel.org
14009 S:      Maintained
14010 F:      Documentation/hwmon/nzxt-smart2.rst
14011 F:      drivers/hwmon/nzxt-smart2.c
14012
14013 OBJAGG
14014 M:      Jiri Pirko <jiri@nvidia.com>
14015 L:      netdev@vger.kernel.org
14016 S:      Supported
14017 F:      include/linux/objagg.h
14018 F:      lib/objagg.c
14019 F:      lib/test_objagg.c
14020
14021 OBJTOOL
14022 M:      Josh Poimboeuf <jpoimboe@redhat.com>
14023 M:      Peter Zijlstra <peterz@infradead.org>
14024 S:      Supported
14025 F:      tools/objtool/
14026 F:      include/linux/objtool.h
14027
14028 OCELOT ETHERNET SWITCH DRIVER
14029 M:      Vladimir Oltean <vladimir.oltean@nxp.com>
14030 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
14031 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
14032 M:      UNGLinuxDriver@microchip.com
14033 L:      netdev@vger.kernel.org
14034 S:      Supported
14035 F:      drivers/net/dsa/ocelot/*
14036 F:      drivers/net/ethernet/mscc/
14037 F:      include/soc/mscc/ocelot*
14038 F:      net/dsa/tag_ocelot.c
14039 F:      net/dsa/tag_ocelot_8021q.c
14040 F:      tools/testing/selftests/drivers/net/ocelot/*
14041
14042 OCXL (Open Coherent Accelerator Processor Interface OpenCAPI) DRIVER
14043 M:      Frederic Barrat <fbarrat@linux.ibm.com>
14044 M:      Andrew Donnellan <ajd@linux.ibm.com>
14045 L:      linuxppc-dev@lists.ozlabs.org
14046 S:      Supported
14047 F:      Documentation/userspace-api/accelerators/ocxl.rst
14048 F:      arch/powerpc/include/asm/pnv-ocxl.h
14049 F:      arch/powerpc/platforms/powernv/ocxl.c
14050 F:      drivers/misc/ocxl/
14051 F:      include/misc/ocxl*
14052 F:      include/uapi/misc/ocxl.h
14053
14054 OMAP AUDIO SUPPORT
14055 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
14056 M:      Jarkko Nikula <jarkko.nikula@bitmer.com>
14057 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
14058 L:      linux-omap@vger.kernel.org
14059 S:      Maintained
14060 F:      sound/soc/ti/n810.c
14061 F:      sound/soc/ti/omap*
14062 F:      sound/soc/ti/rx51.c
14063 F:      sound/soc/ti/sdma-pcm.*
14064
14065 OMAP CLOCK FRAMEWORK SUPPORT
14066 M:      Paul Walmsley <paul@pwsan.com>
14067 L:      linux-omap@vger.kernel.org
14068 S:      Maintained
14069 F:      arch/arm/*omap*/*clock*
14070
14071 OMAP DEVICE TREE SUPPORT
14072 M:      Benoît Cousson <bcousson@baylibre.com>
14073 M:      Tony Lindgren <tony@atomide.com>
14074 L:      linux-omap@vger.kernel.org
14075 L:      devicetree@vger.kernel.org
14076 S:      Maintained
14077 F:      arch/arm/boot/dts/*am3*
14078 F:      arch/arm/boot/dts/*am4*
14079 F:      arch/arm/boot/dts/*am5*
14080 F:      arch/arm/boot/dts/*dra7*
14081 F:      arch/arm/boot/dts/*omap*
14082 F:      arch/arm/boot/dts/logicpd-som-lv*
14083 F:      arch/arm/boot/dts/logicpd-torpedo*
14084
14085 OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
14086 L:      linux-omap@vger.kernel.org
14087 L:      linux-fbdev@vger.kernel.org
14088 S:      Orphan
14089 F:      Documentation/arm/omap/dss.rst
14090 F:      drivers/video/fbdev/omap2/
14091
14092 OMAP FRAMEBUFFER SUPPORT
14093 L:      linux-fbdev@vger.kernel.org
14094 L:      linux-omap@vger.kernel.org
14095 S:      Orphan
14096 F:      drivers/video/fbdev/omap/
14097
14098 OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT
14099 M:      Roger Quadros <rogerq@kernel.org>
14100 M:      Tony Lindgren <tony@atomide.com>
14101 L:      linux-omap@vger.kernel.org
14102 S:      Maintained
14103 F:      arch/arm/mach-omap2/*gpmc*
14104 F:      drivers/memory/omap-gpmc.c
14105
14106 OMAP GPIO DRIVER
14107 M:      Grygorii Strashko <grygorii.strashko@ti.com>
14108 M:      Santosh Shilimkar <ssantosh@kernel.org>
14109 M:      Kevin Hilman <khilman@kernel.org>
14110 L:      linux-omap@vger.kernel.org
14111 S:      Maintained
14112 F:      Documentation/devicetree/bindings/gpio/ti,omap-gpio.yaml
14113 F:      drivers/gpio/gpio-omap.c
14114
14115 OMAP HARDWARE SPINLOCK SUPPORT
14116 M:      Ohad Ben-Cohen <ohad@wizery.com>
14117 L:      linux-omap@vger.kernel.org
14118 S:      Maintained
14119 F:      drivers/hwspinlock/omap_hwspinlock.c
14120
14121 OMAP HS MMC SUPPORT
14122 L:      linux-mmc@vger.kernel.org
14123 L:      linux-omap@vger.kernel.org
14124 S:      Orphan
14125 F:      drivers/mmc/host/omap_hsmmc.c
14126
14127 OMAP HWMOD DATA
14128 M:      Paul Walmsley <paul@pwsan.com>
14129 L:      linux-omap@vger.kernel.org
14130 S:      Maintained
14131 F:      arch/arm/mach-omap2/omap_hwmod*data*
14132
14133 OMAP HWMOD SUPPORT
14134 M:      Benoît Cousson <bcousson@baylibre.com>
14135 M:      Paul Walmsley <paul@pwsan.com>
14136 L:      linux-omap@vger.kernel.org
14137 S:      Maintained
14138 F:      arch/arm/mach-omap2/omap_hwmod.*
14139
14140 OMAP I2C DRIVER
14141 M:      Vignesh R <vigneshr@ti.com>
14142 L:      linux-omap@vger.kernel.org
14143 L:      linux-i2c@vger.kernel.org
14144 S:      Maintained
14145 F:      Documentation/devicetree/bindings/i2c/ti,omap4-i2c.yaml
14146 F:      drivers/i2c/busses/i2c-omap.c
14147
14148 OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS)
14149 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
14150 L:      linux-media@vger.kernel.org
14151 S:      Maintained
14152 F:      Documentation/devicetree/bindings/media/ti,omap3isp.txt
14153 F:      drivers/media/platform/ti/omap3isp/
14154 F:      drivers/staging/media/omap4iss/
14155
14156 OMAP MMC SUPPORT
14157 M:      Aaro Koskinen <aaro.koskinen@iki.fi>
14158 L:      linux-omap@vger.kernel.org
14159 S:      Odd Fixes
14160 F:      drivers/mmc/host/omap.c
14161
14162 OMAP POWER MANAGEMENT SUPPORT
14163 M:      Kevin Hilman <khilman@kernel.org>
14164 L:      linux-omap@vger.kernel.org
14165 S:      Maintained
14166 F:      arch/arm/*omap*/*pm*
14167 F:      drivers/cpufreq/omap-cpufreq.c
14168
14169 OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT
14170 M:      Rajendra Nayak <rnayak@codeaurora.org>
14171 M:      Paul Walmsley <paul@pwsan.com>
14172 L:      linux-omap@vger.kernel.org
14173 S:      Maintained
14174 F:      arch/arm/mach-omap2/prm*
14175
14176 OMAP RANDOM NUMBER GENERATOR SUPPORT
14177 M:      Deepak Saxena <dsaxena@plexity.net>
14178 S:      Maintained
14179 F:      drivers/char/hw_random/omap-rng.c
14180
14181 OMAP USB SUPPORT
14182 L:      linux-usb@vger.kernel.org
14183 L:      linux-omap@vger.kernel.org
14184 S:      Orphan
14185 F:      arch/arm/*omap*/usb*
14186 F:      drivers/usb/*/*omap*
14187
14188 OMAP/NEWFLOW NANOBONE MACHINE SUPPORT
14189 M:      Mark Jackson <mpfj@newflow.co.uk>
14190 L:      linux-omap@vger.kernel.org
14191 S:      Maintained
14192 F:      arch/arm/boot/dts/am335x-nano.dts
14193
14194 OMAP1 SUPPORT
14195 M:      Aaro Koskinen <aaro.koskinen@iki.fi>
14196 M:      Tony Lindgren <tony@atomide.com>
14197 L:      linux-omap@vger.kernel.org
14198 S:      Maintained
14199 Q:      http://patchwork.kernel.org/project/linux-omap/list/
14200 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
14201 F:      arch/arm/configs/omap1_defconfig
14202 F:      arch/arm/mach-omap1/
14203 F:      arch/arm/plat-omap/
14204 F:      drivers/i2c/busses/i2c-omap.c
14205 F:      include/linux/platform_data/ams-delta-fiq.h
14206 F:      include/linux/platform_data/i2c-omap.h
14207
14208 OMAP2+ SUPPORT
14209 M:      Tony Lindgren <tony@atomide.com>
14210 L:      linux-omap@vger.kernel.org
14211 S:      Maintained
14212 W:      http://www.muru.com/linux/omap/
14213 W:      http://linux.omap.com/
14214 Q:      http://patchwork.kernel.org/project/linux-omap/list/
14215 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
14216 F:      arch/arm/configs/omap2plus_defconfig
14217 F:      arch/arm/mach-omap2/
14218 F:      arch/arm/plat-omap/
14219 F:      drivers/bus/ti-sysc.c
14220 F:      drivers/i2c/busses/i2c-omap.c
14221 F:      drivers/irqchip/irq-omap-intc.c
14222 F:      drivers/mfd/*omap*.c
14223 F:      drivers/mfd/menelaus.c
14224 F:      drivers/mfd/palmas.c
14225 F:      drivers/mfd/tps65217.c
14226 F:      drivers/mfd/tps65218.c
14227 F:      drivers/mfd/tps65910.c
14228 F:      drivers/mfd/twl-core.[ch]
14229 F:      drivers/mfd/twl4030*.c
14230 F:      drivers/mfd/twl6030*.c
14231 F:      drivers/mfd/twl6040*.c
14232 F:      drivers/regulator/palmas-regulator*.c
14233 F:      drivers/regulator/pbias-regulator.c
14234 F:      drivers/regulator/tps65217-regulator.c
14235 F:      drivers/regulator/tps65218-regulator.c
14236 F:      drivers/regulator/tps65910-regulator.c
14237 F:      drivers/regulator/twl-regulator.c
14238 F:      drivers/regulator/twl6030-regulator.c
14239 F:      include/linux/platform_data/i2c-omap.h
14240 F:      include/linux/platform_data/ti-sysc.h
14241
14242 OMFS FILESYSTEM
14243 M:      Bob Copeland <me@bobcopeland.com>
14244 L:      linux-karma-devel@lists.sourceforge.net
14245 S:      Maintained
14246 F:      Documentation/filesystems/omfs.rst
14247 F:      fs/omfs/
14248
14249 OMNIKEY CARDMAN 4000 DRIVER
14250 M:      Harald Welte <laforge@gnumonks.org>
14251 S:      Maintained
14252 F:      drivers/char/pcmcia/cm4000_cs.c
14253 F:      include/linux/cm4000_cs.h
14254 F:      include/uapi/linux/cm4000_cs.h
14255
14256 OMNIKEY CARDMAN 4040 DRIVER
14257 M:      Harald Welte <laforge@gnumonks.org>
14258 S:      Maintained
14259 F:      drivers/char/pcmcia/cm4040_cs.*
14260
14261 OMNIVISION OG01A1B SENSOR DRIVER
14262 M:      Shawn Tu <shawnx.tu@intel.com>
14263 L:      linux-media@vger.kernel.org
14264 S:      Maintained
14265 F:      drivers/media/i2c/og01a1b.c
14266
14267 OMNIVISION OV02A10 SENSOR DRIVER
14268 M:      Dongchun Zhu <dongchun.zhu@mediatek.com>
14269 L:      linux-media@vger.kernel.org
14270 S:      Maintained
14271 T:      git git://linuxtv.org/media_tree.git
14272 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov02a10.yaml
14273 F:      drivers/media/i2c/ov02a10.c
14274
14275 OMNIVISION OV08D10 SENSOR DRIVER
14276 M:      Jimmy Su <jimmy.su@intel.com>
14277 L:      linux-media@vger.kernel.org
14278 S:      Maintained
14279 T:      git git://linuxtv.org/media_tree.git
14280 F:      drivers/media/i2c/ov08d10.c
14281
14282 OMNIVISION OV13858 SENSOR DRIVER
14283 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
14284 L:      linux-media@vger.kernel.org
14285 S:      Maintained
14286 T:      git git://linuxtv.org/media_tree.git
14287 F:      drivers/media/i2c/ov13858.c
14288
14289 OMNIVISION OV13B10 SENSOR DRIVER
14290 M:      Arec Kao <arec.kao@intel.com>
14291 L:      linux-media@vger.kernel.org
14292 S:      Maintained
14293 T:      git git://linuxtv.org/media_tree.git
14294 F:      drivers/media/i2c/ov13b10.c
14295
14296 OMNIVISION OV2680 SENSOR DRIVER
14297 M:      Rui Miguel Silva <rmfrfs@gmail.com>
14298 L:      linux-media@vger.kernel.org
14299 S:      Maintained
14300 T:      git git://linuxtv.org/media_tree.git
14301 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov2680.yaml
14302 F:      drivers/media/i2c/ov2680.c
14303
14304 OMNIVISION OV2685 SENSOR DRIVER
14305 M:      Shunqian Zheng <zhengsq@rock-chips.com>
14306 L:      linux-media@vger.kernel.org
14307 S:      Maintained
14308 T:      git git://linuxtv.org/media_tree.git
14309 F:      drivers/media/i2c/ov2685.c
14310
14311 OMNIVISION OV2740 SENSOR DRIVER
14312 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
14313 R:      Shawn Tu <shawnx.tu@intel.com>
14314 R:      Bingbu Cao <bingbu.cao@intel.com>
14315 L:      linux-media@vger.kernel.org
14316 S:      Maintained
14317 T:      git git://linuxtv.org/media_tree.git
14318 F:      drivers/media/i2c/ov2740.c
14319
14320 OMNIVISION OV5640 SENSOR DRIVER
14321 M:      Steve Longerbeam <slongerbeam@gmail.com>
14322 L:      linux-media@vger.kernel.org
14323 S:      Maintained
14324 T:      git git://linuxtv.org/media_tree.git
14325 F:      drivers/media/i2c/ov5640.c
14326
14327 OMNIVISION OV5647 SENSOR DRIVER
14328 M:      Dave Stevenson <dave.stevenson@raspberrypi.com>
14329 M:      Jacopo Mondi <jacopo@jmondi.org>
14330 L:      linux-media@vger.kernel.org
14331 S:      Maintained
14332 T:      git git://linuxtv.org/media_tree.git
14333 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov5647.yaml
14334 F:      drivers/media/i2c/ov5647.c
14335
14336 OMNIVISION OV5670 SENSOR DRIVER
14337 M:      Chiranjeevi Rapolu <chiranjeevi.rapolu@intel.com>
14338 L:      linux-media@vger.kernel.org
14339 S:      Maintained
14340 T:      git git://linuxtv.org/media_tree.git
14341 F:      drivers/media/i2c/ov5670.c
14342
14343 OMNIVISION OV5675 SENSOR DRIVER
14344 M:      Shawn Tu <shawnx.tu@intel.com>
14345 L:      linux-media@vger.kernel.org
14346 S:      Maintained
14347 T:      git git://linuxtv.org/media_tree.git
14348 F:      drivers/media/i2c/ov5675.c
14349
14350 OMNIVISION OV5693 SENSOR DRIVER
14351 M:      Daniel Scally <djrscally@gmail.com>
14352 L:      linux-media@vger.kernel.org
14353 S:      Maintained
14354 T:      git git://linuxtv.org/media_tree.git
14355 F:      drivers/media/i2c/ov5693.c
14356
14357 OMNIVISION OV5695 SENSOR DRIVER
14358 M:      Shunqian Zheng <zhengsq@rock-chips.com>
14359 L:      linux-media@vger.kernel.org
14360 S:      Maintained
14361 T:      git git://linuxtv.org/media_tree.git
14362 F:      drivers/media/i2c/ov5695.c
14363
14364 OMNIVISION OV7670 SENSOR DRIVER
14365 L:      linux-media@vger.kernel.org
14366 S:      Orphan
14367 T:      git git://linuxtv.org/media_tree.git
14368 F:      Documentation/devicetree/bindings/media/i2c/ov7670.txt
14369 F:      drivers/media/i2c/ov7670.c
14370
14371 OMNIVISION OV772x SENSOR DRIVER
14372 M:      Jacopo Mondi <jacopo@jmondi.org>
14373 L:      linux-media@vger.kernel.org
14374 S:      Odd fixes
14375 T:      git git://linuxtv.org/media_tree.git
14376 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov772x.yaml
14377 F:      drivers/media/i2c/ov772x.c
14378 F:      include/media/i2c/ov772x.h
14379
14380 OMNIVISION OV7740 SENSOR DRIVER
14381 M:      Wenyou Yang <wenyou.yang@microchip.com>
14382 L:      linux-media@vger.kernel.org
14383 S:      Maintained
14384 T:      git git://linuxtv.org/media_tree.git
14385 F:      Documentation/devicetree/bindings/media/i2c/ov7740.txt
14386 F:      drivers/media/i2c/ov7740.c
14387
14388 OMNIVISION OV8856 SENSOR DRIVER
14389 M:      Dongchun Zhu <dongchun.zhu@mediatek.com>
14390 L:      linux-media@vger.kernel.org
14391 S:      Maintained
14392 T:      git git://linuxtv.org/media_tree.git
14393 F:      Documentation/devicetree/bindings/media/i2c/ov8856.yaml
14394 F:      drivers/media/i2c/ov8856.c
14395
14396 OMNIVISION OV9282 SENSOR DRIVER
14397 M:      Paul J. Murphy <paul.j.murphy@intel.com>
14398 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
14399 L:      linux-media@vger.kernel.org
14400 S:      Maintained
14401 T:      git git://linuxtv.org/media_tree.git
14402 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov9282.yaml
14403 F:      drivers/media/i2c/ov9282.c
14404
14405 OMNIVISION OV9640 SENSOR DRIVER
14406 M:      Petr Cvek <petrcvekcz@gmail.com>
14407 L:      linux-media@vger.kernel.org
14408 S:      Maintained
14409 F:      drivers/media/i2c/ov9640.*
14410
14411 OMNIVISION OV9650 SENSOR DRIVER
14412 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
14413 R:      Akinobu Mita <akinobu.mita@gmail.com>
14414 R:      Sylwester Nawrocki <s.nawrocki@samsung.com>
14415 L:      linux-media@vger.kernel.org
14416 S:      Maintained
14417 T:      git git://linuxtv.org/media_tree.git
14418 F:      Documentation/devicetree/bindings/media/i2c/ov9650.txt
14419 F:      drivers/media/i2c/ov9650.c
14420
14421 OMNIVISION OV9734 SENSOR DRIVER
14422 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
14423 R:      Bingbu Cao <bingbu.cao@intel.com>
14424 L:      linux-media@vger.kernel.org
14425 S:      Maintained
14426 T:      git git://linuxtv.org/media_tree.git
14427 F:      drivers/media/i2c/ov9734.c
14428
14429 ONENAND FLASH DRIVER
14430 M:      Kyungmin Park <kyungmin.park@samsung.com>
14431 L:      linux-mtd@lists.infradead.org
14432 S:      Maintained
14433 F:      drivers/mtd/nand/onenand/
14434 F:      include/linux/mtd/onenand*.h
14435
14436 ONION OMEGA2+ BOARD
14437 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
14438 L:      linux-mips@vger.kernel.org
14439 S:      Maintained
14440 F:      arch/mips/boot/dts/ralink/omega2p.dts
14441
14442 OP-TEE DRIVER
14443 M:      Jens Wiklander <jens.wiklander@linaro.org>
14444 L:      op-tee@lists.trustedfirmware.org
14445 S:      Maintained
14446 F:      Documentation/ABI/testing/sysfs-bus-optee-devices
14447 F:      drivers/tee/optee/
14448
14449 OP-TEE RANDOM NUMBER GENERATOR (RNG) DRIVER
14450 M:      Sumit Garg <sumit.garg@linaro.org>
14451 L:      op-tee@lists.trustedfirmware.org
14452 S:      Maintained
14453 F:      drivers/char/hw_random/optee-rng.c
14454
14455 OPA-VNIC DRIVER
14456 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
14457 M:      Mike Marciniszyn <mike.marciniszyn@cornelisnetworks.com>
14458 L:      linux-rdma@vger.kernel.org
14459 S:      Supported
14460 F:      drivers/infiniband/ulp/opa_vnic
14461
14462 OPEN FIRMWARE AND DEVICE TREE OVERLAYS
14463 M:      Pantelis Antoniou <pantelis.antoniou@konsulko.com>
14464 M:      Frank Rowand <frowand.list@gmail.com>
14465 L:      devicetree@vger.kernel.org
14466 S:      Maintained
14467 F:      Documentation/devicetree/dynamic-resolution-notes.rst
14468 F:      Documentation/devicetree/overlay-notes.rst
14469 F:      drivers/of/overlay.c
14470 F:      drivers/of/resolver.c
14471 K:      of_overlay_notifier_
14472
14473 OPEN FIRMWARE AND FLATTENED DEVICE TREE
14474 M:      Rob Herring <robh+dt@kernel.org>
14475 M:      Frank Rowand <frowand.list@gmail.com>
14476 L:      devicetree@vger.kernel.org
14477 S:      Maintained
14478 C:      irc://irc.libera.chat/devicetree
14479 W:      http://www.devicetree.org/
14480 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
14481 F:      Documentation/ABI/testing/sysfs-firmware-ofw
14482 F:      drivers/of/
14483 F:      include/linux/of*.h
14484 F:      scripts/dtc/
14485
14486 OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
14487 M:      Rob Herring <robh+dt@kernel.org>
14488 L:      devicetree@vger.kernel.org
14489 S:      Maintained
14490 C:      irc://irc.libera.chat/devicetree
14491 Q:      http://patchwork.ozlabs.org/project/devicetree-bindings/list/
14492 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
14493 F:      Documentation/devicetree/
14494 F:      arch/*/boot/dts/
14495 F:      include/dt-bindings/
14496
14497 OPENCOMPUTE PTP CLOCK DRIVER
14498 M:      Jonathan Lemon <jonathan.lemon@gmail.com>
14499 L:      netdev@vger.kernel.org
14500 S:      Maintained
14501 F:      drivers/ptp/ptp_ocp.c
14502
14503 OPENCORES I2C BUS DRIVER
14504 M:      Peter Korsgaard <peter@korsgaard.com>
14505 M:      Andrew Lunn <andrew@lunn.ch>
14506 L:      linux-i2c@vger.kernel.org
14507 S:      Maintained
14508 F:      Documentation/devicetree/bindings/i2c/i2c-ocores.txt
14509 F:      Documentation/i2c/busses/i2c-ocores.rst
14510 F:      drivers/i2c/busses/i2c-ocores.c
14511 F:      include/linux/platform_data/i2c-ocores.h
14512
14513 OPENRISC ARCHITECTURE
14514 M:      Jonas Bonn <jonas@southpole.se>
14515 M:      Stefan Kristiansson <stefan.kristiansson@saunalahti.fi>
14516 M:      Stafford Horne <shorne@gmail.com>
14517 L:      openrisc@lists.librecores.org
14518 S:      Maintained
14519 W:      http://openrisc.io
14520 T:      git git://github.com/openrisc/linux.git
14521 F:      Documentation/devicetree/bindings/openrisc/
14522 F:      Documentation/openrisc/
14523 F:      arch/openrisc/
14524 F:      drivers/irqchip/irq-ompic.c
14525 F:      drivers/irqchip/irq-or1k-*
14526
14527 OPENVSWITCH
14528 M:      Pravin B Shelar <pshelar@ovn.org>
14529 L:      netdev@vger.kernel.org
14530 L:      dev@openvswitch.org
14531 S:      Maintained
14532 W:      http://openvswitch.org
14533 F:      include/uapi/linux/openvswitch.h
14534 F:      net/openvswitch/
14535
14536 OPERATING PERFORMANCE POINTS (OPP)
14537 M:      Viresh Kumar <vireshk@kernel.org>
14538 M:      Nishanth Menon <nm@ti.com>
14539 M:      Stephen Boyd <sboyd@kernel.org>
14540 L:      linux-pm@vger.kernel.org
14541 S:      Maintained
14542 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git
14543 F:      Documentation/devicetree/bindings/opp/
14544 F:      Documentation/power/opp.rst
14545 F:      drivers/opp/
14546 F:      include/linux/pm_opp.h
14547
14548 OPL4 DRIVER
14549 M:      Clemens Ladisch <clemens@ladisch.de>
14550 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
14551 S:      Maintained
14552 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
14553 F:      sound/drivers/opl4/
14554
14555 ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
14556 M:      Mark Fasheh <mark@fasheh.com>
14557 M:      Joel Becker <jlbec@evilplan.org>
14558 M:      Joseph Qi <joseph.qi@linux.alibaba.com>
14559 L:      ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
14560 S:      Supported
14561 W:      http://ocfs2.wiki.kernel.org
14562 F:      Documentation/filesystems/dlmfs.rst
14563 F:      Documentation/filesystems/ocfs2.rst
14564 F:      fs/ocfs2/
14565
14566 ORANGEFS FILESYSTEM
14567 M:      Mike Marshall <hubcap@omnibond.com>
14568 R:      Martin Brandenburg <martin@omnibond.com>
14569 L:      devel@lists.orangefs.org
14570 S:      Supported
14571 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hubcap/linux.git
14572 F:      Documentation/filesystems/orangefs.rst
14573 F:      fs/orangefs/
14574
14575 ORINOCO DRIVER
14576 L:      linux-wireless@vger.kernel.org
14577 S:      Orphan
14578 W:      https://wireless.wiki.kernel.org/en/users/Drivers/orinoco
14579 W:      http://www.nongnu.org/orinoco/
14580 F:      drivers/net/wireless/intersil/orinoco/
14581
14582 OV2659 OMNIVISION SENSOR DRIVER
14583 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
14584 L:      linux-media@vger.kernel.org
14585 S:      Maintained
14586 W:      https://linuxtv.org
14587 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14588 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
14589 F:      drivers/media/i2c/ov2659.c
14590 F:      include/media/i2c/ov2659.h
14591
14592 OVERLAY FILESYSTEM
14593 M:      Miklos Szeredi <miklos@szeredi.hu>
14594 L:      linux-unionfs@vger.kernel.org
14595 S:      Supported
14596 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git
14597 F:      Documentation/filesystems/overlayfs.rst
14598 F:      fs/overlayfs/
14599
14600 P54 WIRELESS DRIVER
14601 M:      Christian Lamparter <chunkeey@googlemail.com>
14602 L:      linux-wireless@vger.kernel.org
14603 S:      Maintained
14604 W:      https://wireless.wiki.kernel.org/en/users/Drivers/p54
14605 F:      drivers/net/wireless/intersil/p54/
14606
14607 PACKING
14608 M:      Vladimir Oltean <olteanv@gmail.com>
14609 L:      netdev@vger.kernel.org
14610 S:      Supported
14611 F:      Documentation/core-api/packing.rst
14612 F:      include/linux/packing.h
14613 F:      lib/packing.c
14614
14615 PADATA PARALLEL EXECUTION MECHANISM
14616 M:      Steffen Klassert <steffen.klassert@secunet.com>
14617 M:      Daniel Jordan <daniel.m.jordan@oracle.com>
14618 L:      linux-crypto@vger.kernel.org
14619 L:      linux-kernel@vger.kernel.org
14620 S:      Maintained
14621 F:      Documentation/core-api/padata.rst
14622 F:      include/linux/padata.h
14623 F:      kernel/padata.c
14624
14625 PAGE POOL
14626 M:      Jesper Dangaard Brouer <hawk@kernel.org>
14627 M:      Ilias Apalodimas <ilias.apalodimas@linaro.org>
14628 L:      netdev@vger.kernel.org
14629 S:      Supported
14630 F:      Documentation/networking/page_pool.rst
14631 F:      include/net/page_pool.h
14632 F:      include/trace/events/page_pool.h
14633 F:      net/core/page_pool.c
14634
14635 PAGE TABLE CHECK
14636 M:      Pasha Tatashin <pasha.tatashin@soleen.com>
14637 M:      Andrew Morton <akpm@linux-foundation.org>
14638 L:      linux-mm@kvack.org
14639 S:      Maintained
14640 F:      Documentation/vm/page_table_check.rst
14641 F:      include/linux/page_table_check.h
14642 F:      mm/page_table_check.c
14643
14644 PANASONIC LAPTOP ACPI EXTRAS DRIVER
14645 M:      Kenneth Chan <kenneth.t.chan@gmail.com>
14646 L:      platform-driver-x86@vger.kernel.org
14647 S:      Maintained
14648 F:      drivers/platform/x86/panasonic-laptop.c
14649
14650 PARALLAX PING IIO SENSOR DRIVER
14651 M:      Andreas Klinger <ak@it-klinger.de>
14652 L:      linux-iio@vger.kernel.org
14653 S:      Maintained
14654 F:      Documentation/devicetree/bindings/iio/proximity/parallax-ping.yaml
14655 F:      drivers/iio/proximity/ping.c
14656
14657 PARALLEL LCD/KEYPAD PANEL DRIVER
14658 M:      Willy Tarreau <willy@haproxy.com>
14659 M:      Ksenija Stanojevic <ksenija.stanojevic@gmail.com>
14660 S:      Odd Fixes
14661 F:      Documentation/admin-guide/lcd-panel-cgram.rst
14662 F:      drivers/auxdisplay/panel.c
14663
14664 PARALLEL PORT SUBSYSTEM
14665 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
14666 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
14667 L:      linux-parport@lists.infradead.org (subscribers-only)
14668 S:      Maintained
14669 F:      Documentation/driver-api/parport*.rst
14670 F:      drivers/char/ppdev.c
14671 F:      drivers/parport/
14672 F:      include/linux/parport*.h
14673 F:      include/uapi/linux/ppdev.h
14674
14675 PARAVIRT_OPS INTERFACE
14676 M:      Juergen Gross <jgross@suse.com>
14677 M:      Srivatsa S. Bhat (VMware) <srivatsa@csail.mit.edu>
14678 R:      Alexey Makhalov <amakhalov@vmware.com>
14679 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
14680 L:      virtualization@lists.linux-foundation.org
14681 L:      x86@kernel.org
14682 S:      Supported
14683 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
14684 F:      Documentation/virt/paravirt_ops.rst
14685 F:      arch/*/include/asm/paravirt*.h
14686 F:      arch/*/kernel/paravirt*
14687 F:      include/linux/hypervisor.h
14688
14689 PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
14690 M:      Tim Waugh <tim@cyberelk.net>
14691 L:      linux-parport@lists.infradead.org (subscribers-only)
14692 S:      Maintained
14693 F:      Documentation/admin-guide/blockdev/paride.rst
14694 F:      drivers/block/paride/
14695
14696 PARISC ARCHITECTURE
14697 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
14698 M:      Helge Deller <deller@gmx.de>
14699 L:      linux-parisc@vger.kernel.org
14700 S:      Maintained
14701 W:      https://parisc.wiki.kernel.org
14702 Q:      http://patchwork.kernel.org/project/linux-parisc/list/
14703 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
14704 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git
14705 F:      Documentation/parisc/
14706 F:      arch/parisc/
14707 F:      drivers/char/agp/parisc-agp.c
14708 F:      drivers/input/misc/hp_sdc_rtc.c
14709 F:      drivers/input/serio/gscps2.c
14710 F:      drivers/input/serio/hp_sdc*
14711 F:      drivers/parisc/
14712 F:      drivers/parport/parport_gsc.*
14713 F:      drivers/tty/serial/8250/8250_gsc.c
14714 F:      drivers/video/console/sti*
14715 F:      drivers/video/fbdev/sti*
14716 F:      drivers/video/logo/logo_parisc*
14717 F:      include/linux/hp_sdc.h
14718
14719 PARMAN
14720 M:      Jiri Pirko <jiri@nvidia.com>
14721 L:      netdev@vger.kernel.org
14722 S:      Supported
14723 F:      include/linux/parman.h
14724 F:      lib/parman.c
14725 F:      lib/test_parman.c
14726
14727 PC ENGINES APU BOARD DRIVER
14728 M:      Enrico Weigelt, metux IT consult <info@metux.net>
14729 S:      Maintained
14730 F:      drivers/platform/x86/pcengines-apuv2.c
14731
14732 PC87360 HARDWARE MONITORING DRIVER
14733 M:      Jim Cromie <jim.cromie@gmail.com>
14734 L:      linux-hwmon@vger.kernel.org
14735 S:      Maintained
14736 F:      Documentation/hwmon/pc87360.rst
14737 F:      drivers/hwmon/pc87360.c
14738
14739 PC8736x GPIO DRIVER
14740 M:      Jim Cromie <jim.cromie@gmail.com>
14741 S:      Maintained
14742 F:      drivers/char/pc8736x_gpio.c
14743
14744 PC87427 HARDWARE MONITORING DRIVER
14745 M:      Jean Delvare <jdelvare@suse.com>
14746 L:      linux-hwmon@vger.kernel.org
14747 S:      Maintained
14748 F:      Documentation/hwmon/pc87427.rst
14749 F:      drivers/hwmon/pc87427.c
14750
14751 PCA9532 LED DRIVER
14752 M:      Riku Voipio <riku.voipio@iki.fi>
14753 S:      Maintained
14754 F:      drivers/leds/leds-pca9532.c
14755 F:      include/linux/leds-pca9532.h
14756
14757 PCA9541 I2C BUS MASTER SELECTOR DRIVER
14758 M:      Guenter Roeck <linux@roeck-us.net>
14759 L:      linux-i2c@vger.kernel.org
14760 S:      Maintained
14761 F:      drivers/i2c/muxes/i2c-mux-pca9541.c
14762
14763 PCDP - PRIMARY CONSOLE AND DEBUG PORT
14764 M:      Khalid Aziz <khalid@gonehiking.org>
14765 S:      Maintained
14766 F:      drivers/firmware/pcdp.*
14767
14768 PCI DRIVER FOR AARDVARK (Marvell Armada 3700)
14769 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
14770 M:      Pali Rohár <pali@kernel.org>
14771 L:      linux-pci@vger.kernel.org
14772 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14773 S:      Maintained
14774 F:      Documentation/devicetree/bindings/pci/aardvark-pci.txt
14775 F:      drivers/pci/controller/pci-aardvark.c
14776
14777 PCI DRIVER FOR ALTERA PCIE IP
14778 M:      Joyce Ooi <joyce.ooi@intel.com>
14779 L:      linux-pci@vger.kernel.org
14780 S:      Supported
14781 F:      Documentation/devicetree/bindings/pci/altera-pcie.txt
14782 F:      drivers/pci/controller/pcie-altera.c
14783
14784 PCI DRIVER FOR APPLIEDMICRO XGENE
14785 M:      Toan Le <toan@os.amperecomputing.com>
14786 L:      linux-pci@vger.kernel.org
14787 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14788 S:      Maintained
14789 F:      Documentation/devicetree/bindings/pci/xgene-pci.txt
14790 F:      drivers/pci/controller/pci-xgene.c
14791
14792 PCI DRIVER FOR ARM VERSATILE PLATFORM
14793 M:      Rob Herring <robh@kernel.org>
14794 L:      linux-pci@vger.kernel.org
14795 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14796 S:      Maintained
14797 F:      Documentation/devicetree/bindings/pci/versatile.yaml
14798 F:      drivers/pci/controller/pci-versatile.c
14799
14800 PCI DRIVER FOR ARMADA 8K
14801 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
14802 L:      linux-pci@vger.kernel.org
14803 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14804 S:      Maintained
14805 F:      Documentation/devicetree/bindings/pci/pci-armada8k.txt
14806 F:      drivers/pci/controller/dwc/pcie-armada8k.c
14807
14808 PCI DRIVER FOR CADENCE PCIE IP
14809 M:      Tom Joseph <tjoseph@cadence.com>
14810 L:      linux-pci@vger.kernel.org
14811 S:      Maintained
14812 F:      Documentation/devicetree/bindings/pci/cdns,*
14813 F:      drivers/pci/controller/cadence/
14814
14815 PCI DRIVER FOR FREESCALE LAYERSCAPE
14816 M:      Minghuan Lian <minghuan.Lian@nxp.com>
14817 M:      Mingkai Hu <mingkai.hu@nxp.com>
14818 M:      Roy Zang <roy.zang@nxp.com>
14819 L:      linuxppc-dev@lists.ozlabs.org
14820 L:      linux-pci@vger.kernel.org
14821 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14822 S:      Maintained
14823 F:      drivers/pci/controller/dwc/*layerscape*
14824
14825 PCI DRIVER FOR GENERIC OF HOSTS
14826 M:      Will Deacon <will@kernel.org>
14827 L:      linux-pci@vger.kernel.org
14828 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14829 S:      Maintained
14830 F:      Documentation/devicetree/bindings/pci/host-generic-pci.yaml
14831 F:      drivers/pci/controller/pci-host-common.c
14832 F:      drivers/pci/controller/pci-host-generic.c
14833
14834 PCI DRIVER FOR IMX6
14835 M:      Richard Zhu <hongxing.zhu@nxp.com>
14836 M:      Lucas Stach <l.stach@pengutronix.de>
14837 L:      linux-pci@vger.kernel.org
14838 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14839 S:      Maintained
14840 F:      Documentation/devicetree/bindings/pci/fsl,imx6q-pcie.yaml
14841 F:      drivers/pci/controller/dwc/*imx6*
14842
14843 PCI DRIVER FOR FU740
14844 M:      Paul Walmsley <paul.walmsley@sifive.com>
14845 M:      Greentime Hu <greentime.hu@sifive.com>
14846 L:      linux-pci@vger.kernel.org
14847 S:      Maintained
14848 F:      Documentation/devicetree/bindings/pci/sifive,fu740-pcie.yaml
14849 F:      drivers/pci/controller/dwc/pcie-fu740.c
14850
14851 PCI DRIVER FOR INTEL IXP4XX
14852 M:      Linus Walleij <linus.walleij@linaro.org>
14853 S:      Maintained
14854 F:      Documentation/devicetree/bindings/pci/intel,ixp4xx-pci.yaml
14855 F:      drivers/pci/controller/pci-ixp4xx.c
14856
14857 PCI DRIVER FOR INTEL VOLUME MANAGEMENT DEVICE (VMD)
14858 M:      Nirmal Patel <nirmal.patel@linux.intel.com>
14859 R:      Jonathan Derrick <jonathan.derrick@linux.dev>
14860 L:      linux-pci@vger.kernel.org
14861 S:      Supported
14862 F:      drivers/pci/controller/vmd.c
14863
14864 PCI DRIVER FOR MICROSEMI SWITCHTEC
14865 M:      Kurt Schwemmer <kurt.schwemmer@microsemi.com>
14866 M:      Logan Gunthorpe <logang@deltatee.com>
14867 L:      linux-pci@vger.kernel.org
14868 S:      Maintained
14869 F:      Documentation/ABI/testing/sysfs-class-switchtec
14870 F:      Documentation/driver-api/switchtec.rst
14871 F:      drivers/ntb/hw/mscc/
14872 F:      drivers/pci/switch/switchtec*
14873 F:      include/linux/switchtec.h
14874 F:      include/uapi/linux/switchtec_ioctl.h
14875
14876 PCI DRIVER FOR MOBIVEIL PCIE IP
14877 M:      Karthikeyan Mitran <m.karthikeyan@mobiveil.co.in>
14878 M:      Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
14879 L:      linux-pci@vger.kernel.org
14880 S:      Supported
14881 F:      Documentation/devicetree/bindings/pci/mobiveil-pcie.txt
14882 F:      drivers/pci/controller/mobiveil/pcie-mobiveil*
14883
14884 PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support)
14885 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
14886 L:      linux-pci@vger.kernel.org
14887 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14888 S:      Maintained
14889 F:      drivers/pci/controller/*mvebu*
14890
14891 PCI DRIVER FOR NVIDIA TEGRA
14892 M:      Thierry Reding <thierry.reding@gmail.com>
14893 L:      linux-tegra@vger.kernel.org
14894 L:      linux-pci@vger.kernel.org
14895 S:      Supported
14896 F:      Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt
14897 F:      drivers/pci/controller/pci-tegra.c
14898
14899 PCI DRIVER FOR NXP LAYERSCAPE GEN4 CONTROLLER
14900 M:      Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
14901 L:      linux-pci@vger.kernel.org
14902 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14903 S:      Maintained
14904 F:      Documentation/devicetree/bindings/pci/layerscape-pcie-gen4.txt
14905 F:      drivers/pci/controller/mobiveil/pcie-layerscape-gen4.c
14906
14907 PCI DRIVER FOR RENESAS R-CAR
14908 M:      Marek Vasut <marek.vasut+renesas@gmail.com>
14909 M:      Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
14910 L:      linux-pci@vger.kernel.org
14911 L:      linux-renesas-soc@vger.kernel.org
14912 S:      Maintained
14913 F:      Documentation/devicetree/bindings/pci/*rcar*
14914 F:      drivers/pci/controller/*rcar*
14915
14916 PCI DRIVER FOR SAMSUNG EXYNOS
14917 M:      Jingoo Han <jingoohan1@gmail.com>
14918 L:      linux-pci@vger.kernel.org
14919 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14920 L:      linux-samsung-soc@vger.kernel.org
14921 S:      Maintained
14922 F:      drivers/pci/controller/dwc/pci-exynos.c
14923
14924 PCI DRIVER FOR SYNOPSYS DESIGNWARE
14925 M:      Jingoo Han <jingoohan1@gmail.com>
14926 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
14927 L:      linux-pci@vger.kernel.org
14928 S:      Maintained
14929 F:      Documentation/devicetree/bindings/pci/snps,dw-pcie.yaml
14930 F:      Documentation/devicetree/bindings/pci/snps,dw-pcie-ep.yaml
14931 F:      drivers/pci/controller/dwc/*designware*
14932
14933 PCI DRIVER FOR TI DRA7XX/J721E
14934 M:      Kishon Vijay Abraham I <kishon@ti.com>
14935 L:      linux-omap@vger.kernel.org
14936 L:      linux-pci@vger.kernel.org
14937 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14938 S:      Supported
14939 F:      Documentation/devicetree/bindings/pci/ti-pci.txt
14940 F:      drivers/pci/controller/cadence/pci-j721e.c
14941 F:      drivers/pci/controller/dwc/pci-dra7xx.c
14942
14943 PCI DRIVER FOR V3 SEMICONDUCTOR V360EPC
14944 M:      Linus Walleij <linus.walleij@linaro.org>
14945 L:      linux-pci@vger.kernel.org
14946 S:      Maintained
14947 F:      Documentation/devicetree/bindings/pci/v3-v360epc-pci.txt
14948 F:      drivers/pci/controller/pci-v3-semi.c
14949
14950 PCI ENDPOINT SUBSYSTEM
14951 M:      Kishon Vijay Abraham I <kishon@ti.com>
14952 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
14953 R:      Krzysztof Wilczyński <kw@linux.com>
14954 L:      linux-pci@vger.kernel.org
14955 S:      Supported
14956 Q:      https://patchwork.kernel.org/project/linux-pci/list/
14957 B:      https://bugzilla.kernel.org
14958 C:      irc://irc.oftc.net/linux-pci
14959 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lpieralisi/pci.git
14960 F:      Documentation/PCI/endpoint/*
14961 F:      Documentation/misc-devices/pci-endpoint-test.rst
14962 F:      drivers/misc/pci_endpoint_test.c
14963 F:      drivers/pci/endpoint/
14964 F:      tools/pci/
14965
14966 PCI ENHANCED ERROR HANDLING (EEH) FOR POWERPC
14967 M:      Russell Currey <ruscur@russell.cc>
14968 M:      Oliver O'Halloran <oohall@gmail.com>
14969 L:      linuxppc-dev@lists.ozlabs.org
14970 S:      Supported
14971 F:      Documentation/PCI/pci-error-recovery.rst
14972 F:      Documentation/powerpc/eeh-pci-error-recovery.rst
14973 F:      arch/powerpc/include/*/eeh*.h
14974 F:      arch/powerpc/kernel/eeh*.c
14975 F:      arch/powerpc/platforms/*/eeh*.c
14976 F:      drivers/pci/pcie/aer.c
14977 F:      drivers/pci/pcie/dpc.c
14978 F:      drivers/pci/pcie/err.c
14979
14980 PCI ERROR RECOVERY
14981 M:      Linas Vepstas <linasvepstas@gmail.com>
14982 L:      linux-pci@vger.kernel.org
14983 S:      Supported
14984 F:      Documentation/PCI/pci-error-recovery.rst
14985
14986 PCI PEER-TO-PEER DMA (P2PDMA)
14987 M:      Bjorn Helgaas <bhelgaas@google.com>
14988 M:      Logan Gunthorpe <logang@deltatee.com>
14989 L:      linux-pci@vger.kernel.org
14990 S:      Supported
14991 Q:      https://patchwork.kernel.org/project/linux-pci/list/
14992 B:      https://bugzilla.kernel.org
14993 C:      irc://irc.oftc.net/linux-pci
14994 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
14995 F:      Documentation/driver-api/pci/p2pdma.rst
14996 F:      drivers/pci/p2pdma.c
14997 F:      include/linux/pci-p2pdma.h
14998
14999 PCI MSI DRIVER FOR ALTERA MSI IP
15000 M:      Joyce Ooi <joyce.ooi@intel.com>
15001 L:      linux-pci@vger.kernel.org
15002 S:      Supported
15003 F:      Documentation/devicetree/bindings/pci/altera-pcie-msi.txt
15004 F:      drivers/pci/controller/pcie-altera-msi.c
15005
15006 PCI MSI DRIVER FOR APPLIEDMICRO XGENE
15007 M:      Toan Le <toan@os.amperecomputing.com>
15008 L:      linux-pci@vger.kernel.org
15009 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15010 S:      Maintained
15011 F:      Documentation/devicetree/bindings/pci/xgene-pci-msi.txt
15012 F:      drivers/pci/controller/pci-xgene-msi.c
15013
15014 PCI NATIVE HOST BRIDGE AND ENDPOINT DRIVERS
15015 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
15016 R:      Rob Herring <robh@kernel.org>
15017 R:      Krzysztof Wilczyński <kw@linux.com>
15018 L:      linux-pci@vger.kernel.org
15019 S:      Supported
15020 Q:      https://patchwork.kernel.org/project/linux-pci/list/
15021 B:      https://bugzilla.kernel.org
15022 C:      irc://irc.oftc.net/linux-pci
15023 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lpieralisi/pci.git
15024 F:      drivers/pci/controller/
15025 F:      drivers/pci/pci-bridge-emul.c
15026 F:      drivers/pci/pci-bridge-emul.h
15027
15028 PCI SUBSYSTEM
15029 M:      Bjorn Helgaas <bhelgaas@google.com>
15030 L:      linux-pci@vger.kernel.org
15031 S:      Supported
15032 Q:      https://patchwork.kernel.org/project/linux-pci/list/
15033 B:      https://bugzilla.kernel.org
15034 C:      irc://irc.oftc.net/linux-pci
15035 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
15036 F:      Documentation/PCI/
15037 F:      Documentation/devicetree/bindings/pci/
15038 F:      arch/x86/kernel/early-quirks.c
15039 F:      arch/x86/kernel/quirks.c
15040 F:      arch/x86/pci/
15041 F:      drivers/acpi/pci*
15042 F:      drivers/pci/
15043 F:      include/asm-generic/pci*
15044 F:      include/linux/of_pci.h
15045 F:      include/linux/pci*
15046 F:      include/uapi/linux/pci*
15047 F:      lib/pci*
15048
15049 PCIE DRIVER FOR AMAZON ANNAPURNA LABS
15050 M:      Jonathan Chocron <jonnyc@amazon.com>
15051 L:      linux-pci@vger.kernel.org
15052 S:      Maintained
15053 F:      Documentation/devicetree/bindings/pci/pcie-al.txt
15054 F:      drivers/pci/controller/dwc/pcie-al.c
15055
15056 PCIE DRIVER FOR AMLOGIC MESON
15057 M:      Yue Wang <yue.wang@Amlogic.com>
15058 L:      linux-pci@vger.kernel.org
15059 L:      linux-amlogic@lists.infradead.org
15060 S:      Maintained
15061 F:      drivers/pci/controller/dwc/pci-meson.c
15062
15063 PCIE DRIVER FOR AXIS ARTPEC
15064 M:      Jesper Nilsson <jesper.nilsson@axis.com>
15065 L:      linux-arm-kernel@axis.com
15066 L:      linux-pci@vger.kernel.org
15067 S:      Maintained
15068 F:      Documentation/devicetree/bindings/pci/axis,artpec*
15069 F:      drivers/pci/controller/dwc/*artpec*
15070
15071 PCIE DRIVER FOR CAVIUM THUNDERX
15072 M:      Robert Richter <rric@kernel.org>
15073 L:      linux-pci@vger.kernel.org
15074 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15075 S:      Odd Fixes
15076 F:      drivers/pci/controller/pci-thunder-*
15077
15078 PCIE DRIVER FOR HISILICON
15079 M:      Zhou Wang <wangzhou1@hisilicon.com>
15080 L:      linux-pci@vger.kernel.org
15081 S:      Maintained
15082 F:      drivers/pci/controller/dwc/pcie-hisi.c
15083
15084 PCIE DRIVER FOR HISILICON KIRIN
15085 M:      Xiaowei Song <songxiaowei@hisilicon.com>
15086 M:      Binghui Wang <wangbinghui@hisilicon.com>
15087 L:      linux-pci@vger.kernel.org
15088 S:      Maintained
15089 F:      Documentation/devicetree/bindings/pci/hisilicon,kirin-pcie.yaml
15090 F:      drivers/pci/controller/dwc/pcie-kirin.c
15091
15092 PCIE DRIVER FOR HISILICON STB
15093 M:      Shawn Guo <shawn.guo@linaro.org>
15094 L:      linux-pci@vger.kernel.org
15095 S:      Maintained
15096 F:      Documentation/devicetree/bindings/pci/hisilicon-histb-pcie.txt
15097 F:      drivers/pci/controller/dwc/pcie-histb.c
15098
15099 PCIE DRIVER FOR INTEL KEEM BAY
15100 M:      Srikanth Thokala <srikanth.thokala@intel.com>
15101 L:      linux-pci@vger.kernel.org
15102 S:      Supported
15103 F:      Documentation/devicetree/bindings/pci/intel,keembay-pcie*
15104 F:      drivers/pci/controller/dwc/pcie-keembay.c
15105
15106 PCIE DRIVER FOR INTEL LGM GW SOC
15107 M:      Rahul Tanwar <rtanwar@maxlinear.com>
15108 L:      linux-pci@vger.kernel.org
15109 S:      Maintained
15110 F:      Documentation/devicetree/bindings/pci/intel-gw-pcie.yaml
15111 F:      drivers/pci/controller/dwc/pcie-intel-gw.c
15112
15113 PCIE DRIVER FOR MEDIATEK
15114 M:      Ryder Lee <ryder.lee@mediatek.com>
15115 M:      Jianjun Wang <jianjun.wang@mediatek.com>
15116 L:      linux-pci@vger.kernel.org
15117 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
15118 S:      Supported
15119 F:      Documentation/devicetree/bindings/pci/mediatek*
15120 F:      drivers/pci/controller/*mediatek*
15121
15122 PCIE DRIVER FOR MICROCHIP
15123 M:      Daire McNamara <daire.mcnamara@microchip.com>
15124 L:      linux-pci@vger.kernel.org
15125 S:      Supported
15126 F:      Documentation/devicetree/bindings/pci/microchip*
15127 F:      drivers/pci/controller/*microchip*
15128
15129 PCIE DRIVER FOR QUALCOMM MSM
15130 M:      Stanimir Varbanov <svarbanov@mm-sol.com>
15131 L:      linux-pci@vger.kernel.org
15132 L:      linux-arm-msm@vger.kernel.org
15133 S:      Maintained
15134 F:      drivers/pci/controller/dwc/pcie-qcom.c
15135
15136 PCIE ENDPOINT DRIVER FOR QUALCOMM
15137 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
15138 L:      linux-pci@vger.kernel.org
15139 L:      linux-arm-msm@vger.kernel.org
15140 S:      Maintained
15141 F:      Documentation/devicetree/bindings/pci/qcom,pcie-ep.yaml
15142 F:      drivers/pci/controller/dwc/pcie-qcom-ep.c
15143
15144 PCIE DRIVER FOR ROCKCHIP
15145 M:      Shawn Lin <shawn.lin@rock-chips.com>
15146 L:      linux-pci@vger.kernel.org
15147 L:      linux-rockchip@lists.infradead.org
15148 S:      Maintained
15149 F:      Documentation/devicetree/bindings/pci/rockchip-pcie*
15150 F:      drivers/pci/controller/pcie-rockchip*
15151
15152 PCIE DRIVER FOR SOCIONEXT UNIPHIER
15153 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
15154 L:      linux-pci@vger.kernel.org
15155 S:      Maintained
15156 F:      Documentation/devicetree/bindings/pci/uniphier-pcie*
15157 F:      drivers/pci/controller/dwc/pcie-uniphier*
15158
15159 PCIE DRIVER FOR ST SPEAR13XX
15160 M:      Pratyush Anand <pratyush.anand@gmail.com>
15161 L:      linux-pci@vger.kernel.org
15162 S:      Maintained
15163 F:      drivers/pci/controller/dwc/*spear*
15164
15165 PCMCIA SUBSYSTEM
15166 M:      Dominik Brodowski <linux@dominikbrodowski.net>
15167 S:      Odd Fixes
15168 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/linux.git
15169 F:      Documentation/pcmcia/
15170 F:      drivers/pcmcia/
15171 F:      include/pcmcia/
15172 F:      tools/pcmcia/
15173
15174 PCNET32 NETWORK DRIVER
15175 M:      Don Fry <pcnet32@frontier.com>
15176 L:      netdev@vger.kernel.org
15177 S:      Maintained
15178 F:      drivers/net/ethernet/amd/pcnet32.c
15179
15180 PCRYPT PARALLEL CRYPTO ENGINE
15181 M:      Steffen Klassert <steffen.klassert@secunet.com>
15182 L:      linux-crypto@vger.kernel.org
15183 S:      Maintained
15184 F:      crypto/pcrypt.c
15185 F:      include/crypto/pcrypt.h
15186
15187 PEAQ WMI HOTKEYS DRIVER
15188 M:      Hans de Goede <hdegoede@redhat.com>
15189 L:      platform-driver-x86@vger.kernel.org
15190 S:      Maintained
15191 F:      drivers/platform/x86/peaq-wmi.c
15192
15193 PENSANDO ETHERNET DRIVERS
15194 M:      Shannon Nelson <snelson@pensando.io>
15195 M:      drivers@pensando.io
15196 L:      netdev@vger.kernel.org
15197 S:      Supported
15198 F:      Documentation/networking/device_drivers/ethernet/pensando/ionic.rst
15199 F:      drivers/net/ethernet/pensando/
15200
15201 PER-CPU MEMORY ALLOCATOR
15202 M:      Dennis Zhou <dennis@kernel.org>
15203 M:      Tejun Heo <tj@kernel.org>
15204 M:      Christoph Lameter <cl@linux.com>
15205 L:      linux-mm@kvack.org
15206 S:      Maintained
15207 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dennis/percpu.git
15208 F:      arch/*/include/asm/percpu.h
15209 F:      include/linux/percpu*.h
15210 F:      lib/percpu*.c
15211 F:      mm/percpu*.c
15212
15213 PER-TASK DELAY ACCOUNTING
15214 M:      Balbir Singh <bsingharora@gmail.com>
15215 S:      Maintained
15216 F:      include/linux/delayacct.h
15217 F:      kernel/delayacct.c
15218
15219 PERFORMANCE EVENTS SUBSYSTEM
15220 M:      Peter Zijlstra <peterz@infradead.org>
15221 M:      Ingo Molnar <mingo@redhat.com>
15222 M:      Arnaldo Carvalho de Melo <acme@kernel.org>
15223 R:      Mark Rutland <mark.rutland@arm.com>
15224 R:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
15225 R:      Jiri Olsa <jolsa@kernel.org>
15226 R:      Namhyung Kim <namhyung@kernel.org>
15227 L:      linux-perf-users@vger.kernel.org
15228 L:      linux-kernel@vger.kernel.org
15229 S:      Supported
15230 W:      https://perf.wiki.kernel.org/
15231 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
15232 F:      arch/*/events/*
15233 F:      arch/*/events/*/*
15234 F:      arch/*/include/asm/perf_event.h
15235 F:      arch/*/kernel/*/*/perf_event*.c
15236 F:      arch/*/kernel/*/perf_event*.c
15237 F:      arch/*/kernel/perf_callchain.c
15238 F:      arch/*/kernel/perf_event*.c
15239 F:      include/linux/perf_event.h
15240 F:      include/uapi/linux/perf_event.h
15241 F:      kernel/events/*
15242 F:      tools/lib/perf/
15243 F:      tools/perf/
15244
15245 PERFORMANCE EVENTS TOOLING ARM64
15246 R:      John Garry <john.garry@huawei.com>
15247 R:      Will Deacon <will@kernel.org>
15248 R:      Mathieu Poirier <mathieu.poirier@linaro.org>
15249 R:      Leo Yan <leo.yan@linaro.org>
15250 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15251 S:      Supported
15252 F:      tools/build/feature/test-libopencsd.c
15253 F:      tools/perf/arch/arm*/
15254 F:      tools/perf/pmu-events/arch/arm64/
15255 F:      tools/perf/util/arm-spe*
15256 F:      tools/perf/util/cs-etm*
15257
15258 PERSONALITY HANDLING
15259 M:      Christoph Hellwig <hch@infradead.org>
15260 L:      linux-abi-devel@lists.sourceforge.net
15261 S:      Maintained
15262 F:      include/linux/personality.h
15263 F:      include/uapi/linux/personality.h
15264
15265 PHOENIX RC FLIGHT CONTROLLER ADAPTER
15266 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
15267 L:      linux-input@vger.kernel.org
15268 S:      Maintained
15269 F:      Documentation/input/devices/pxrc.rst
15270 F:      drivers/input/joystick/pxrc.c
15271
15272 PHONET PROTOCOL
15273 M:      Remi Denis-Courmont <courmisch@gmail.com>
15274 S:      Supported
15275 F:      Documentation/networking/phonet.rst
15276 F:      include/linux/phonet.h
15277 F:      include/net/phonet/
15278 F:      include/uapi/linux/phonet.h
15279 F:      net/phonet/
15280
15281 PHRAM MTD DRIVER
15282 M:      Joern Engel <joern@lazybastard.org>
15283 L:      linux-mtd@lists.infradead.org
15284 S:      Maintained
15285 F:      drivers/mtd/devices/phram.c
15286
15287 PICOLCD HID DRIVER
15288 M:      Bruno Prémont <bonbons@linux-vserver.org>
15289 L:      linux-input@vger.kernel.org
15290 S:      Maintained
15291 F:      drivers/hid/hid-picolcd*
15292
15293 PIDFD API
15294 M:      Christian Brauner <christian@brauner.io>
15295 L:      linux-kernel@vger.kernel.org
15296 S:      Maintained
15297 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brauner/linux.git
15298 F:      samples/pidfd/
15299 F:      tools/testing/selftests/clone3/
15300 F:      tools/testing/selftests/pid_namespace/
15301 F:      tools/testing/selftests/pidfd/
15302 K:      (?i)pidfd
15303 K:      (?i)clone3
15304 K:      \b(clone_args|kernel_clone_args)\b
15305
15306 PIN CONTROL SUBSYSTEM
15307 M:      Linus Walleij <linus.walleij@linaro.org>
15308 L:      linux-gpio@vger.kernel.org
15309 S:      Maintained
15310 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git
15311 F:      Documentation/devicetree/bindings/pinctrl/
15312 F:      Documentation/driver-api/pin-control.rst
15313 F:      drivers/pinctrl/
15314 F:      include/linux/pinctrl/
15315
15316 PIN CONTROLLER - AMD
15317 M:      Basavaraj Natikar <Basavaraj.Natikar@amd.com>
15318 M:      Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
15319 S:      Maintained
15320 F:      drivers/pinctrl/pinctrl-amd.c
15321
15322 PIN CONTROLLER - FREESCALE
15323 M:      Dong Aisheng <aisheng.dong@nxp.com>
15324 M:      Fabio Estevam <festevam@gmail.com>
15325 M:      Shawn Guo <shawnguo@kernel.org>
15326 M:      Stefan Agner <stefan@agner.ch>
15327 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
15328 L:      linux-gpio@vger.kernel.org
15329 S:      Maintained
15330 F:      Documentation/devicetree/bindings/pinctrl/fsl,*
15331 F:      drivers/pinctrl/freescale/
15332
15333 PIN CONTROLLER - INTEL
15334 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
15335 M:      Andy Shevchenko <andy@kernel.org>
15336 S:      Maintained
15337 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/intel.git
15338 F:      drivers/pinctrl/intel/
15339
15340 PIN CONTROLLER - KEEMBAY
15341 M:      Lakshmi Sowjanya D <lakshmi.sowjanya.d@intel.com>
15342 S:      Supported
15343 F:      drivers/pinctrl/pinctrl-keembay*
15344
15345 PIN CONTROLLER - MEDIATEK
15346 M:      Sean Wang <sean.wang@kernel.org>
15347 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
15348 S:      Maintained
15349 F:      Documentation/devicetree/bindings/pinctrl/mediatek,mt65xx-pinctrl.yaml
15350 F:      Documentation/devicetree/bindings/pinctrl/mediatek,mt6797-pinctrl.yaml
15351 F:      Documentation/devicetree/bindings/pinctrl/mediatek,mt7622-pinctrl.yaml
15352 F:      Documentation/devicetree/bindings/pinctrl/mediatek,mt8183-pinctrl.yaml
15353 F:      drivers/pinctrl/mediatek/
15354
15355 PIN CONTROLLER - MICROCHIP AT91
15356 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
15357 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15358 L:      linux-gpio@vger.kernel.org
15359 S:      Supported
15360 F:      drivers/gpio/gpio-sama5d2-piobu.c
15361 F:      drivers/pinctrl/pinctrl-at91*
15362
15363 PIN CONTROLLER - QUALCOMM
15364 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
15365 L:      linux-arm-msm@vger.kernel.org
15366 S:      Maintained
15367 F:      Documentation/devicetree/bindings/pinctrl/qcom,*.txt
15368 F:      drivers/pinctrl/qcom/
15369
15370 PIN CONTROLLER - RENESAS
15371 M:      Geert Uytterhoeven <geert+renesas@glider.be>
15372 L:      linux-renesas-soc@vger.kernel.org
15373 S:      Supported
15374 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git renesas-pinctrl
15375 F:      Documentation/devicetree/bindings/pinctrl/renesas,*
15376 F:      drivers/pinctrl/renesas/
15377
15378 PIN CONTROLLER - SAMSUNG
15379 M:      Tomasz Figa <tomasz.figa@gmail.com>
15380 M:      Krzysztof Kozlowski <krzk@kernel.org>
15381 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
15382 R:      Alim Akhtar <alim.akhtar@samsung.com>
15383 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15384 L:      linux-samsung-soc@vger.kernel.org
15385 S:      Maintained
15386 C:      irc://irc.libera.chat/linux-exynos
15387 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
15388 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/samsung.git
15389 F:      Documentation/devicetree/bindings/pinctrl/samsung,pinctrl*yaml
15390 F:      drivers/pinctrl/samsung/
15391 F:      include/dt-bindings/pinctrl/samsung.h
15392
15393 PIN CONTROLLER - SINGLE
15394 M:      Tony Lindgren <tony@atomide.com>
15395 M:      Haojian Zhuang <haojian.zhuang@linaro.org>
15396 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15397 L:      linux-omap@vger.kernel.org
15398 S:      Maintained
15399 F:      drivers/pinctrl/pinctrl-single.c
15400
15401 PIN CONTROLLER - THUNDERBAY
15402 M:      Lakshmi Sowjanya D <lakshmi.sowjanya.d@intel.com>
15403 S:      Supported
15404 F:      drivers/pinctrl/pinctrl-thunderbay.c
15405
15406 PKTCDVD DRIVER
15407 M:      linux-block@vger.kernel.org
15408 S:      Orphan
15409 F:      drivers/block/pktcdvd.c
15410 F:      include/linux/pktcdvd.h
15411 F:      include/uapi/linux/pktcdvd.h
15412
15413 PLANTOWER PMS7003 AIR POLLUTION SENSOR DRIVER
15414 M:      Tomasz Duszynski <tduszyns@gmail.com>
15415 S:      Maintained
15416 F:      Documentation/devicetree/bindings/iio/chemical/plantower,pms7003.yaml
15417 F:      drivers/iio/chemical/pms7003.c
15418
15419 PLDMFW LIBRARY
15420 M:      Jacob Keller <jacob.e.keller@intel.com>
15421 S:      Maintained
15422 F:      Documentation/driver-api/pldmfw/
15423 F:      include/linux/pldmfw.h
15424 F:      lib/pldmfw/
15425
15426 PLX DMA DRIVER
15427 M:      Logan Gunthorpe <logang@deltatee.com>
15428 S:      Maintained
15429 F:      drivers/dma/plx_dma.c
15430
15431 PM6764TR DRIVER
15432 M:      Charles Hsu     <hsu.yungteng@gmail.com>
15433 L:      linux-hwmon@vger.kernel.org
15434 S:      Maintained
15435 F:      Documentation/hwmon/pm6764tr.rst
15436 F:      drivers/hwmon/pmbus/pm6764tr.c
15437
15438 PM-GRAPH UTILITY
15439 M:      "Todd E Brandt" <todd.e.brandt@linux.intel.com>
15440 L:      linux-pm@vger.kernel.org
15441 S:      Supported
15442 W:      https://01.org/pm-graph
15443 B:      https://bugzilla.kernel.org/buglist.cgi?component=pm-graph&product=Tools
15444 T:      git git://github.com/intel/pm-graph
15445 F:      tools/power/pm-graph
15446
15447 PMBUS HARDWARE MONITORING DRIVERS
15448 M:      Guenter Roeck <linux@roeck-us.net>
15449 L:      linux-hwmon@vger.kernel.org
15450 S:      Maintained
15451 W:      http://hwmon.wiki.kernel.org/
15452 W:      http://www.roeck-us.net/linux/drivers/
15453 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
15454 F:      Documentation/devicetree/bindings/hwmon/ltc2978.txt
15455 F:      Documentation/devicetree/bindings/hwmon/max31785.txt
15456 F:      Documentation/hwmon/adm1275.rst
15457 F:      Documentation/hwmon/ibm-cffps.rst
15458 F:      Documentation/hwmon/ir35221.rst
15459 F:      Documentation/hwmon/lm25066.rst
15460 F:      Documentation/hwmon/ltc2978.rst
15461 F:      Documentation/hwmon/ltc3815.rst
15462 F:      Documentation/hwmon/max16064.rst
15463 F:      Documentation/hwmon/max20751.rst
15464 F:      Documentation/hwmon/max31785.rst
15465 F:      Documentation/hwmon/max34440.rst
15466 F:      Documentation/hwmon/max8688.rst
15467 F:      Documentation/hwmon/pmbus-core.rst
15468 F:      Documentation/hwmon/pmbus.rst
15469 F:      Documentation/hwmon/tps40422.rst
15470 F:      Documentation/hwmon/ucd9000.rst
15471 F:      Documentation/hwmon/ucd9200.rst
15472 F:      Documentation/hwmon/zl6100.rst
15473 F:      drivers/hwmon/pmbus/
15474 F:      include/linux/pmbus.h
15475
15476 PMC SIERRA MaxRAID DRIVER
15477 L:      linux-scsi@vger.kernel.org
15478 S:      Orphan
15479 W:      http://www.pmc-sierra.com/
15480 F:      drivers/scsi/pmcraid.*
15481
15482 PMC SIERRA PM8001 DRIVER
15483 M:      Jack Wang <jinpu.wang@cloud.ionos.com>
15484 L:      linux-scsi@vger.kernel.org
15485 S:      Supported
15486 F:      drivers/scsi/pm8001/
15487
15488 PNI RM3100 IIO DRIVER
15489 M:      Song Qiang <songqiang1304521@gmail.com>
15490 L:      linux-iio@vger.kernel.org
15491 S:      Maintained
15492 F:      Documentation/devicetree/bindings/iio/magnetometer/pni,rm3100.yaml
15493 F:      drivers/iio/magnetometer/rm3100*
15494
15495 PNP SUPPORT
15496 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
15497 L:      linux-acpi@vger.kernel.org
15498 S:      Maintained
15499 F:      drivers/pnp/
15500 F:      include/linux/pnp.h
15501
15502 POSIX CLOCKS and TIMERS
15503 M:      Thomas Gleixner <tglx@linutronix.de>
15504 L:      linux-kernel@vger.kernel.org
15505 S:      Maintained
15506 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
15507 F:      fs/timerfd.c
15508 F:      include/linux/time_namespace.h
15509 F:      include/linux/timer*
15510 F:      kernel/time/*timer*
15511 F:      kernel/time/namespace.c
15512
15513 POWER MANAGEMENT CORE
15514 M:      "Rafael J. Wysocki" <rafael@kernel.org>
15515 L:      linux-pm@vger.kernel.org
15516 S:      Supported
15517 B:      https://bugzilla.kernel.org
15518 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
15519 F:      drivers/base/power/
15520 F:      drivers/powercap/
15521 F:      include/linux/intel_rapl.h
15522 F:      include/linux/pm.h
15523 F:      include/linux/pm_*
15524 F:      include/linux/powercap.h
15525 F:      kernel/configs/nopm.config
15526
15527 DYNAMIC THERMAL POWER MANAGEMENT (DTPM)
15528 M:      Daniel Lezcano <daniel.lezcano@kernel.org>
15529 L:      linux-pm@vger.kernel.org
15530 S:      Supported
15531 B:      https://bugzilla.kernel.org
15532 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
15533 F:      drivers/powercap/dtpm*
15534 F:      include/linux/dtpm.h
15535
15536 POWER STATE COORDINATION INTERFACE (PSCI)
15537 M:      Mark Rutland <mark.rutland@arm.com>
15538 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
15539 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15540 S:      Maintained
15541 F:      drivers/firmware/psci/
15542 F:      include/linux/psci.h
15543 F:      include/uapi/linux/psci.h
15544
15545 POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
15546 M:      Sebastian Reichel <sre@kernel.org>
15547 L:      linux-pm@vger.kernel.org
15548 S:      Maintained
15549 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
15550 F:      Documentation/ABI/testing/sysfs-class-power
15551 F:      Documentation/devicetree/bindings/power/supply/
15552 F:      drivers/power/supply/
15553 F:      include/linux/power/
15554 F:      include/linux/power_supply.h
15555
15556 POWERNV OPERATOR PANEL LCD DISPLAY DRIVER
15557 M:      Suraj Jitindar Singh <sjitindarsingh@gmail.com>
15558 L:      linuxppc-dev@lists.ozlabs.org
15559 S:      Maintained
15560 F:      drivers/char/powernv-op-panel.c
15561
15562 PPP OVER ATM (RFC 2364)
15563 M:      Mitchell Blank Jr <mitch@sfgoth.com>
15564 S:      Maintained
15565 F:      include/uapi/linux/atmppp.h
15566 F:      net/atm/pppoatm.c
15567
15568 PPP OVER ETHERNET
15569 M:      Michal Ostrowski <mostrows@earthlink.net>
15570 S:      Maintained
15571 F:      drivers/net/ppp/pppoe.c
15572 F:      drivers/net/ppp/pppox.c
15573
15574 PPP OVER L2TP
15575 M:      James Chapman <jchapman@katalix.com>
15576 S:      Maintained
15577 F:      include/linux/if_pppol2tp.h
15578 F:      include/uapi/linux/if_pppol2tp.h
15579 F:      net/l2tp/l2tp_ppp.c
15580
15581 PPP PROTOCOL DRIVERS AND COMPRESSORS
15582 M:      Paul Mackerras <paulus@samba.org>
15583 L:      linux-ppp@vger.kernel.org
15584 S:      Maintained
15585 F:      drivers/net/ppp/ppp_*
15586
15587 PPS SUPPORT
15588 M:      Rodolfo Giometti <giometti@enneenne.com>
15589 L:      linuxpps@ml.enneenne.com (subscribers-only)
15590 S:      Maintained
15591 W:      http://wiki.enneenne.com/index.php/LinuxPPS_support
15592 F:      Documentation/ABI/testing/sysfs-pps
15593 F:      Documentation/devicetree/bindings/pps/pps-gpio.txt
15594 F:      Documentation/driver-api/pps.rst
15595 F:      drivers/pps/
15596 F:      include/linux/pps*.h
15597 F:      include/uapi/linux/pps.h
15598
15599 PPTP DRIVER
15600 M:      Dmitry Kozlov <xeb@mail.ru>
15601 L:      netdev@vger.kernel.org
15602 S:      Maintained
15603 W:      http://sourceforge.net/projects/accel-pptp
15604 F:      drivers/net/ppp/pptp.c
15605
15606 PRESSURE STALL INFORMATION (PSI)
15607 M:      Johannes Weiner <hannes@cmpxchg.org>
15608 M:      Suren Baghdasaryan <surenb@google.com>
15609 S:      Maintained
15610 F:      include/linux/psi*
15611 F:      kernel/sched/psi.c
15612
15613 PRINTK
15614 M:      Petr Mladek <pmladek@suse.com>
15615 M:      Sergey Senozhatsky <senozhatsky@chromium.org>
15616 R:      Steven Rostedt <rostedt@goodmis.org>
15617 R:      John Ogness <john.ogness@linutronix.de>
15618 S:      Maintained
15619 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/printk/linux.git
15620 F:      include/linux/printk.h
15621 F:      kernel/printk/
15622
15623 PRINTK INDEXING
15624 R:      Chris Down <chris@chrisdown.name>
15625 S:      Maintained
15626 F:      kernel/printk/index.c
15627
15628 PROC FILESYSTEM
15629 L:      linux-kernel@vger.kernel.org
15630 L:      linux-fsdevel@vger.kernel.org
15631 S:      Maintained
15632 F:      Documentation/filesystems/proc.rst
15633 F:      fs/proc/
15634 F:      include/linux/proc_fs.h
15635 F:      tools/testing/selftests/proc/
15636
15637 PROC SYSCTL
15638 M:      Luis Chamberlain <mcgrof@kernel.org>
15639 M:      Kees Cook <keescook@chromium.org>
15640 M:      Iurii Zaikin <yzaikin@google.com>
15641 L:      linux-kernel@vger.kernel.org
15642 L:      linux-fsdevel@vger.kernel.org
15643 S:      Maintained
15644 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mcgrof/linux.git sysctl-next
15645 F:      fs/proc/proc_sysctl.c
15646 F:      include/linux/sysctl.h
15647 F:      kernel/sysctl-test.c
15648 F:      kernel/sysctl.c
15649 F:      tools/testing/selftests/sysctl/
15650
15651 PS3 NETWORK SUPPORT
15652 M:      Geoff Levand <geoff@infradead.org>
15653 L:      netdev@vger.kernel.org
15654 L:      linuxppc-dev@lists.ozlabs.org
15655 S:      Maintained
15656 F:      drivers/net/ethernet/toshiba/ps3_gelic_net.*
15657
15658 PS3 PLATFORM SUPPORT
15659 M:      Geoff Levand <geoff@infradead.org>
15660 L:      linuxppc-dev@lists.ozlabs.org
15661 S:      Maintained
15662 F:      arch/powerpc/boot/ps3*
15663 F:      arch/powerpc/include/asm/lv1call.h
15664 F:      arch/powerpc/include/asm/ps3*.h
15665 F:      arch/powerpc/platforms/ps3/
15666 F:      drivers/*/ps3*
15667 F:      drivers/ps3/
15668 F:      drivers/rtc/rtc-ps3.c
15669 F:      drivers/usb/host/*ps3.c
15670 F:      sound/ppc/snd_ps3*
15671
15672 PS3VRAM DRIVER
15673 M:      Jim Paris <jim@jtan.com>
15674 M:      Geoff Levand <geoff@infradead.org>
15675 L:      linuxppc-dev@lists.ozlabs.org
15676 S:      Maintained
15677 F:      drivers/block/ps3vram.c
15678
15679 PSAMPLE PACKET SAMPLING SUPPORT
15680 M:      Yotam Gigi <yotam.gi@gmail.com>
15681 S:      Maintained
15682 F:      include/net/psample.h
15683 F:      include/uapi/linux/psample.h
15684 F:      net/psample
15685
15686 PSTORE FILESYSTEM
15687 M:      Kees Cook <keescook@chromium.org>
15688 M:      Anton Vorontsov <anton@enomsg.org>
15689 M:      Colin Cross <ccross@android.com>
15690 M:      Tony Luck <tony.luck@intel.com>
15691 S:      Maintained
15692 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/pstore
15693 F:      Documentation/admin-guide/ramoops.rst
15694 F:      Documentation/admin-guide/pstore-blk.rst
15695 F:      Documentation/devicetree/bindings/reserved-memory/ramoops.yaml
15696 F:      drivers/acpi/apei/erst.c
15697 F:      drivers/firmware/efi/efi-pstore.c
15698 F:      fs/pstore/
15699 F:      include/linux/pstore*
15700 K:      \b(pstore|ramoops)
15701
15702 PTP HARDWARE CLOCK SUPPORT
15703 M:      Richard Cochran <richardcochran@gmail.com>
15704 L:      netdev@vger.kernel.org
15705 S:      Maintained
15706 W:      http://linuxptp.sourceforge.net/
15707 F:      Documentation/ABI/testing/sysfs-ptp
15708 F:      Documentation/driver-api/ptp.rst
15709 F:      drivers/net/phy/dp83640*
15710 F:      drivers/ptp/*
15711 F:      include/linux/ptp_cl*
15712
15713 PTP VIRTUAL CLOCK SUPPORT
15714 M:      Yangbo Lu <yangbo.lu@nxp.com>
15715 L:      netdev@vger.kernel.org
15716 S:      Maintained
15717 F:      drivers/ptp/ptp_vclock.c
15718 F:      net/ethtool/phc_vclocks.c
15719
15720 PTRACE SUPPORT
15721 M:      Oleg Nesterov <oleg@redhat.com>
15722 S:      Maintained
15723 F:      arch/*/*/ptrace*.c
15724 F:      arch/*/include/asm/ptrace*.h
15725 F:      arch/*/ptrace*.c
15726 F:      include/asm-generic/syscall.h
15727 F:      include/linux/ptrace.h
15728 F:      include/linux/regset.h
15729 F:      include/linux/tracehook.h
15730 F:      include/uapi/linux/ptrace.h
15731 F:      include/uapi/linux/ptrace.h
15732 F:      kernel/ptrace.c
15733
15734 PULSE8-CEC DRIVER
15735 M:      Hans Verkuil <hverkuil@xs4all.nl>
15736 L:      linux-media@vger.kernel.org
15737 S:      Maintained
15738 T:      git git://linuxtv.org/media_tree.git
15739 F:      Documentation/admin-guide/media/pulse8-cec.rst
15740 F:      drivers/media/cec/usb/pulse8/
15741
15742 PVRUSB2 VIDEO4LINUX DRIVER
15743 M:      Mike Isely <isely@pobox.com>
15744 L:      pvrusb2@isely.net       (subscribers-only)
15745 L:      linux-media@vger.kernel.org
15746 S:      Maintained
15747 W:      http://www.isely.net/pvrusb2/
15748 T:      git git://linuxtv.org/media_tree.git
15749 F:      Documentation/driver-api/media/drivers/pvrusb2*
15750 F:      drivers/media/usb/pvrusb2/
15751
15752 PWC WEBCAM DRIVER
15753 M:      Hans Verkuil <hverkuil@xs4all.nl>
15754 L:      linux-media@vger.kernel.org
15755 S:      Odd Fixes
15756 T:      git git://linuxtv.org/media_tree.git
15757 F:      drivers/media/usb/pwc/*
15758 F:      include/trace/events/pwc.h
15759
15760 PWM FAN DRIVER
15761 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
15762 L:      linux-hwmon@vger.kernel.org
15763 S:      Supported
15764 F:      Documentation/devicetree/bindings/hwmon/pwm-fan.txt
15765 F:      Documentation/hwmon/pwm-fan.rst
15766 F:      drivers/hwmon/pwm-fan.c
15767
15768 PWM IR Transmitter
15769 M:      Sean Young <sean@mess.org>
15770 L:      linux-media@vger.kernel.org
15771 S:      Maintained
15772 F:      drivers/media/rc/pwm-ir-tx.c
15773
15774 PWM SUBSYSTEM
15775 M:      Thierry Reding <thierry.reding@gmail.com>
15776 R:      Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
15777 M:      Lee Jones <lee.jones@linaro.org>
15778 L:      linux-pwm@vger.kernel.org
15779 S:      Maintained
15780 Q:      https://patchwork.ozlabs.org/project/linux-pwm/list/
15781 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git
15782 F:      Documentation/devicetree/bindings/gpio/gpio-mvebu.txt
15783 F:      Documentation/devicetree/bindings/pwm/
15784 F:      Documentation/driver-api/pwm.rst
15785 F:      drivers/gpio/gpio-mvebu.c
15786 F:      drivers/pwm/
15787 F:      drivers/video/backlight/pwm_bl.c
15788 F:      include/linux/pwm.h
15789 F:      include/linux/pwm_backlight.h
15790 K:      pwm_(config|apply_state|ops)
15791
15792 PXA GPIO DRIVER
15793 M:      Robert Jarzmik <robert.jarzmik@free.fr>
15794 L:      linux-gpio@vger.kernel.org
15795 S:      Maintained
15796 F:      drivers/gpio/gpio-pxa.c
15797
15798 PXA MMCI DRIVER
15799 S:      Orphan
15800
15801 PXA RTC DRIVER
15802 M:      Robert Jarzmik <robert.jarzmik@free.fr>
15803 L:      linux-rtc@vger.kernel.org
15804 S:      Maintained
15805
15806 PXA2xx/PXA3xx SUPPORT
15807 M:      Daniel Mack <daniel@zonque.org>
15808 M:      Haojian Zhuang <haojian.zhuang@gmail.com>
15809 M:      Robert Jarzmik <robert.jarzmik@free.fr>
15810 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15811 S:      Maintained
15812 T:      git git://github.com/hzhuang1/linux.git
15813 T:      git git://github.com/rjarzmik/linux.git
15814 F:      arch/arm/boot/dts/pxa*
15815 F:      arch/arm/mach-pxa/
15816 F:      drivers/dma/pxa*
15817 F:      drivers/pcmcia/pxa2xx*
15818 F:      drivers/pinctrl/pxa/
15819 F:      drivers/spi/spi-pxa2xx*
15820 F:      drivers/usb/gadget/udc/pxa2*
15821 F:      include/sound/pxa2xx-lib.h
15822 F:      sound/arm/pxa*
15823 F:      sound/soc/pxa/
15824
15825 QAT DRIVER
15826 M:      Giovanni Cabiddu <giovanni.cabiddu@intel.com>
15827 L:      qat-linux@intel.com
15828 S:      Supported
15829 F:      drivers/crypto/qat/
15830
15831 QCOM AUDIO (ASoC) DRIVERS
15832 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
15833 M:      Banajit Goswami <bgoswami@codeaurora.org>
15834 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15835 S:      Supported
15836 F:      sound/soc/codecs/lpass-va-macro.c
15837 F:      sound/soc/codecs/lpass-wsa-macro.*
15838 F:      sound/soc/codecs/msm8916-wcd-analog.c
15839 F:      sound/soc/codecs/msm8916-wcd-digital.c
15840 F:      sound/soc/codecs/wcd9335.*
15841 F:      sound/soc/codecs/wcd934x.c
15842 F:      sound/soc/codecs/wcd-clsh-v2.*
15843 F:      sound/soc/codecs/wsa881x.c
15844 F:      sound/soc/qcom/
15845
15846 QCOM IPA DRIVER
15847 M:      Alex Elder <elder@kernel.org>
15848 L:      netdev@vger.kernel.org
15849 S:      Supported
15850 F:      drivers/net/ipa/
15851
15852 QEMU MACHINE EMULATOR AND VIRTUALIZER SUPPORT
15853 M:      Gabriel Somlo <somlo@cmu.edu>
15854 M:      "Michael S. Tsirkin" <mst@redhat.com>
15855 L:      qemu-devel@nongnu.org
15856 S:      Maintained
15857 F:      drivers/firmware/qemu_fw_cfg.c
15858 F:      include/uapi/linux/qemu_fw_cfg.h
15859
15860 QIB DRIVER
15861 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
15862 M:      Mike Marciniszyn <mike.marciniszyn@cornelisnetworks.com>
15863 L:      linux-rdma@vger.kernel.org
15864 S:      Supported
15865 F:      drivers/infiniband/hw/qib/
15866
15867 QLOGIC QL41xxx FCOE DRIVER
15868 M:      Saurav Kashyap <skashyap@marvell.com>
15869 M:      Javed Hasan <jhasan@marvell.com>
15870 M:      GR-QLogic-Storage-Upstream@marvell.com
15871 L:      linux-scsi@vger.kernel.org
15872 S:      Supported
15873 F:      drivers/scsi/qedf/
15874
15875 QLOGIC QL41xxx ISCSI DRIVER
15876 M:      Nilesh Javali <njavali@marvell.com>
15877 M:      Manish Rangankar <mrangankar@marvell.com>
15878 M:      GR-QLogic-Storage-Upstream@marvell.com
15879 L:      linux-scsi@vger.kernel.org
15880 S:      Supported
15881 F:      drivers/scsi/qedi/
15882
15883 QLOGIC QL4xxx ETHERNET DRIVER
15884 M:      Ariel Elior <aelior@marvell.com>
15885 M:      Manish Chopra <manishc@marvell.com>
15886 L:      netdev@vger.kernel.org
15887 S:      Supported
15888 F:      drivers/net/ethernet/qlogic/qed/
15889 F:      drivers/net/ethernet/qlogic/qede/
15890 F:      include/linux/qed/
15891
15892 QLOGIC QL4xxx RDMA DRIVER
15893 M:      Michal Kalderon <mkalderon@marvell.com>
15894 M:      Ariel Elior <aelior@marvell.com>
15895 L:      linux-rdma@vger.kernel.org
15896 S:      Supported
15897 F:      drivers/infiniband/hw/qedr/
15898 F:      include/uapi/rdma/qedr-abi.h
15899
15900 QLOGIC QLA1280 SCSI DRIVER
15901 M:      Michael Reed <mdr@sgi.com>
15902 L:      linux-scsi@vger.kernel.org
15903 S:      Maintained
15904 F:      drivers/scsi/qla1280.[ch]
15905
15906 QLOGIC QLA2XXX FC-SCSI DRIVER
15907 M:      Nilesh Javali <njavali@marvell.com>
15908 M:      GR-QLogic-Storage-Upstream@marvell.com
15909 L:      linux-scsi@vger.kernel.org
15910 S:      Supported
15911 F:      drivers/scsi/qla2xxx/
15912
15913 QLOGIC QLA3XXX NETWORK DRIVER
15914 M:      GR-Linux-NIC-Dev@marvell.com
15915 L:      netdev@vger.kernel.org
15916 S:      Supported
15917 F:      drivers/net/ethernet/qlogic/qla3xxx.*
15918
15919 QLOGIC QLA4XXX iSCSI DRIVER
15920 M:      Nilesh Javali <njavali@marvell.com>
15921 M:      Manish Rangankar <mrangankar@marvell.com>
15922 M:      GR-QLogic-Storage-Upstream@marvell.com
15923 L:      linux-scsi@vger.kernel.org
15924 S:      Supported
15925 F:      drivers/scsi/qla4xxx/
15926
15927 QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
15928 M:      Shahed Shaikh <shshaikh@marvell.com>
15929 M:      Manish Chopra <manishc@marvell.com>
15930 M:      GR-Linux-NIC-Dev@marvell.com
15931 L:      netdev@vger.kernel.org
15932 S:      Supported
15933 F:      drivers/net/ethernet/qlogic/qlcnic/
15934
15935 QLOGIC QLGE 10Gb ETHERNET DRIVER
15936 M:      Manish Chopra <manishc@marvell.com>
15937 M:      GR-Linux-NIC-Dev@marvell.com
15938 M:      Coiby Xu <coiby.xu@gmail.com>
15939 L:      netdev@vger.kernel.org
15940 S:      Supported
15941 F:      Documentation/networking/device_drivers/qlogic/qlge.rst
15942 F:      drivers/staging/qlge/
15943
15944 QM1D1B0004 MEDIA DRIVER
15945 M:      Akihiro Tsukada <tskd08@gmail.com>
15946 L:      linux-media@vger.kernel.org
15947 S:      Odd Fixes
15948 F:      drivers/media/tuners/qm1d1b0004*
15949
15950 QM1D1C0042 MEDIA DRIVER
15951 M:      Akihiro Tsukada <tskd08@gmail.com>
15952 L:      linux-media@vger.kernel.org
15953 S:      Odd Fixes
15954 F:      drivers/media/tuners/qm1d1c0042*
15955
15956 QNX4 FILESYSTEM
15957 M:      Anders Larsen <al@alarsen.net>
15958 S:      Maintained
15959 W:      http://www.alarsen.net/linux/qnx4fs/
15960 F:      fs/qnx4/
15961 F:      include/uapi/linux/qnx4_fs.h
15962 F:      include/uapi/linux/qnxtypes.h
15963
15964 QORIQ DPAA2 FSL-MC BUS DRIVER
15965 M:      Stuart Yoder <stuyoder@gmail.com>
15966 M:      Laurentiu Tudor <laurentiu.tudor@nxp.com>
15967 L:      linux-kernel@vger.kernel.org
15968 S:      Maintained
15969 F:      Documentation/ABI/stable/sysfs-bus-fsl-mc
15970 F:      Documentation/devicetree/bindings/misc/fsl,qoriq-mc.txt
15971 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/overview.rst
15972 F:      drivers/bus/fsl-mc/
15973 F:      include/uapi/linux/fsl_mc.h
15974
15975 QT1010 MEDIA DRIVER
15976 M:      Antti Palosaari <crope@iki.fi>
15977 L:      linux-media@vger.kernel.org
15978 S:      Maintained
15979 W:      https://linuxtv.org
15980 W:      http://palosaari.fi/linux/
15981 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15982 T:      git git://linuxtv.org/anttip/media_tree.git
15983 F:      drivers/media/tuners/qt1010*
15984
15985 QUALCOMM ATHEROS ATH10K WIRELESS DRIVER
15986 M:      Kalle Valo <kvalo@kernel.org>
15987 L:      ath10k@lists.infradead.org
15988 S:      Supported
15989 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath10k
15990 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
15991 F:      drivers/net/wireless/ath/ath10k/
15992 F:      Documentation/devicetree/bindings/net/wireless/qcom,ath10k.txt
15993
15994 QUALCOMM ATHEROS ATH11K WIRELESS DRIVER
15995 M:      Kalle Valo <kvalo@kernel.org>
15996 L:      ath11k@lists.infradead.org
15997 S:      Supported
15998 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
15999 F:      drivers/net/wireless/ath/ath11k/
16000 F:      Documentation/devicetree/bindings/net/wireless/qcom,ath11k.txt
16001
16002 QUALCOMM ATHEROS ATH9K WIRELESS DRIVER
16003 M:      Toke Høiland-Jørgensen <toke@toke.dk>
16004 L:      linux-wireless@vger.kernel.org
16005 S:      Maintained
16006 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath9k
16007 F:      Documentation/devicetree/bindings/net/wireless/qca,ath9k.yaml
16008 F:      drivers/net/wireless/ath/ath9k/
16009
16010 QUALCOMM BAM-DMUX WWAN NETWORK DRIVER
16011 M:      Stephan Gerhold <stephan@gerhold.net>
16012 L:      netdev@vger.kernel.org
16013 L:      linux-arm-msm@vger.kernel.org
16014 S:      Maintained
16015 F:      Documentation/devicetree/bindings/net/qcom,bam-dmux.yaml
16016 F:      drivers/net/wwan/qcom_bam_dmux.c
16017
16018 QUALCOMM CAMERA SUBSYSTEM DRIVER
16019 M:      Robert Foss <robert.foss@linaro.org>
16020 M:      Todor Tomov <todor.too@gmail.com>
16021 L:      linux-media@vger.kernel.org
16022 S:      Maintained
16023 F:      Documentation/admin-guide/media/qcom_camss.rst
16024 F:      Documentation/devicetree/bindings/media/*camss*
16025 F:      drivers/media/platform/qcom/camss/
16026
16027 QUALCOMM CLOCK DRIVERS
16028 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
16029 L:      linux-arm-msm@vger.kernel.org
16030 S:      Supported
16031 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/qcom/linux.git
16032 F:      Documentation/devicetree/bindings/clock/qcom,*
16033 F:      drivers/clk/qcom/
16034 F:      include/dt-bindings/clock/qcom,*
16035
16036 QUALCOMM CORE POWER REDUCTION (CPR) AVS DRIVER
16037 M:      Niklas Cassel <nks@flawful.org>
16038 L:      linux-pm@vger.kernel.org
16039 L:      linux-arm-msm@vger.kernel.org
16040 S:      Maintained
16041 F:      Documentation/devicetree/bindings/power/avs/qcom,cpr.txt
16042 F:      drivers/soc/qcom/cpr.c
16043
16044 QUALCOMM CPUFREQ DRIVER MSM8996/APQ8096
16045 M:      Ilia Lin <ilia.lin@kernel.org>
16046 L:      linux-pm@vger.kernel.org
16047 S:      Maintained
16048 F:      Documentation/devicetree/bindings/opp/qcom-nvmem-cpufreq.txt
16049 F:      drivers/cpufreq/qcom-cpufreq-nvmem.c
16050
16051 QUALCOMM CRYPTO DRIVERS
16052 M:      Thara Gopinath <thara.gopinath@linaro.org>
16053 L:      linux-crypto@vger.kernel.org
16054 L:      linux-arm-msm@vger.kernel.org
16055 S:      Maintained
16056 F:      drivers/crypto/qce/
16057
16058 QUALCOMM EMAC GIGABIT ETHERNET DRIVER
16059 M:      Timur Tabi <timur@kernel.org>
16060 L:      netdev@vger.kernel.org
16061 S:      Maintained
16062 F:      drivers/net/ethernet/qualcomm/emac/
16063
16064 QUALCOMM ETHQOS ETHERNET DRIVER
16065 M:      Vinod Koul <vkoul@kernel.org>
16066 L:      netdev@vger.kernel.org
16067 S:      Maintained
16068 F:      Documentation/devicetree/bindings/net/qcom,ethqos.txt
16069 F:      drivers/net/ethernet/stmicro/stmmac/dwmac-qcom-ethqos.c
16070
16071 QUALCOMM FASTRPC DRIVER
16072 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
16073 M:      Amol Maheshwari <amahesh@qti.qualcomm.com>
16074 L:      linux-arm-msm@vger.kernel.org
16075 S:      Maintained
16076 F:      Documentation/devicetree/bindings/misc/qcom,fastrpc.txt
16077 F:      drivers/misc/fastrpc.c
16078 F:      include/uapi/misc/fastrpc.h
16079
16080 QUALCOMM HEXAGON ARCHITECTURE
16081 M:      Brian Cain <bcain@codeaurora.org>
16082 L:      linux-hexagon@vger.kernel.org
16083 S:      Supported
16084 F:      arch/hexagon/
16085
16086 QUALCOMM HIDMA DRIVER
16087 M:      Sinan Kaya <okaya@kernel.org>
16088 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16089 L:      linux-arm-msm@vger.kernel.org
16090 L:      dmaengine@vger.kernel.org
16091 S:      Supported
16092 F:      drivers/dma/qcom/hidma*
16093
16094 QUALCOMM I2C CCI DRIVER
16095 M:      Loic Poulain <loic.poulain@linaro.org>
16096 M:      Robert Foss <robert.foss@linaro.org>
16097 L:      linux-i2c@vger.kernel.org
16098 L:      linux-arm-msm@vger.kernel.org
16099 S:      Maintained
16100 F:      Documentation/devicetree/bindings/i2c/i2c-qcom-cci.txt
16101 F:      drivers/i2c/busses/i2c-qcom-cci.c
16102
16103 QUALCOMM IOMMU
16104 M:      Rob Clark <robdclark@gmail.com>
16105 L:      iommu@lists.linux-foundation.org
16106 L:      linux-arm-msm@vger.kernel.org
16107 S:      Maintained
16108 F:      drivers/iommu/arm/arm-smmu/qcom_iommu.c
16109
16110 QUALCOMM IPC ROUTER (QRTR) DRIVER
16111 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
16112 L:      linux-arm-msm@vger.kernel.org
16113 S:      Maintained
16114 F:      include/trace/events/qrtr.h
16115 F:      include/uapi/linux/qrtr.h
16116 F:      net/qrtr/
16117
16118 QUALCOMM IPCC MAILBOX DRIVER
16119 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
16120 L:      linux-arm-msm@vger.kernel.org
16121 S:      Supported
16122 F:      Documentation/devicetree/bindings/mailbox/qcom-ipcc.yaml
16123 F:      drivers/mailbox/qcom-ipcc.c
16124 F:      include/dt-bindings/mailbox/qcom-ipcc.h
16125
16126 QUALCOMM IPQ4019 USB PHY DRIVER
16127 M:      Robert Marko <robert.marko@sartura.hr>
16128 M:      Luka Perkov <luka.perkov@sartura.hr>
16129 L:      linux-arm-msm@vger.kernel.org
16130 S:      Maintained
16131 F:      Documentation/devicetree/bindings/phy/qcom-usb-ipq4019-phy.yaml
16132 F:      drivers/phy/qualcomm/phy-qcom-ipq4019-usb.c
16133
16134 QUALCOMM IPQ4019 VQMMC REGULATOR DRIVER
16135 M:      Robert Marko <robert.marko@sartura.hr>
16136 M:      Luka Perkov <luka.perkov@sartura.hr>
16137 L:      linux-arm-msm@vger.kernel.org
16138 S:      Maintained
16139 F:      Documentation/devicetree/bindings/regulator/vqmmc-ipq4019-regulator.yaml
16140 F:      drivers/regulator/vqmmc-ipq4019-regulator.c
16141
16142 QUALCOMM NAND CONTROLLER DRIVER
16143 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
16144 L:      linux-mtd@lists.infradead.org
16145 L:      linux-arm-msm@vger.kernel.org
16146 S:      Maintained
16147 F:      Documentation/devicetree/bindings/mtd/qcom,nandc.yaml
16148 F:      drivers/mtd/nand/raw/qcom_nandc.c
16149
16150 QUALCOMM RMNET DRIVER
16151 M:      Subash Abhinov Kasiviswanathan <quic_subashab@quicinc.com>
16152 M:      Sean Tranchetti <quic_stranche@quicinc.com>
16153 L:      netdev@vger.kernel.org
16154 S:      Maintained
16155 F:      Documentation/networking/device_drivers/cellular/qualcomm/rmnet.rst
16156 F:      drivers/net/ethernet/qualcomm/rmnet/
16157 F:      include/linux/if_rmnet.h
16158
16159 QUALCOMM TSENS THERMAL DRIVER
16160 M:      Amit Kucheria <amitk@kernel.org>
16161 M:      Thara Gopinath <thara.gopinath@linaro.org>
16162 L:      linux-pm@vger.kernel.org
16163 L:      linux-arm-msm@vger.kernel.org
16164 S:      Maintained
16165 F:      Documentation/devicetree/bindings/thermal/qcom-tsens.yaml
16166 F:      drivers/thermal/qcom/
16167
16168 QUALCOMM VENUS VIDEO ACCELERATOR DRIVER
16169 M:      Stanimir Varbanov <stanimir.varbanov@linaro.org>
16170 L:      linux-media@vger.kernel.org
16171 L:      linux-arm-msm@vger.kernel.org
16172 S:      Maintained
16173 T:      git git://linuxtv.org/media_tree.git
16174 F:      Documentation/devicetree/bindings/media/*venus*
16175 F:      drivers/media/platform/qcom/venus/
16176
16177 QUALCOMM WCN36XX WIRELESS DRIVER
16178 M:      Loic Poulain <loic.poulain@linaro.org>
16179 L:      wcn36xx@lists.infradead.org
16180 S:      Supported
16181 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wcn36xx
16182 F:      drivers/net/wireless/ath/wcn36xx/
16183
16184 QUANTENNA QTNFMAC WIRELESS DRIVER
16185 M:      Igor Mitsyanko <imitsyanko@quantenna.com>
16186 R:      Sergey Matyukevich <geomatsi@gmail.com>
16187 L:      linux-wireless@vger.kernel.org
16188 S:      Maintained
16189 F:      drivers/net/wireless/quantenna
16190
16191 RADEON and AMDGPU DRM DRIVERS
16192 M:      Alex Deucher <alexander.deucher@amd.com>
16193 M:      Christian König <christian.koenig@amd.com>
16194 M:      Pan, Xinhui <Xinhui.Pan@amd.com>
16195 L:      amd-gfx@lists.freedesktop.org
16196 S:      Supported
16197 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
16198 B:      https://gitlab.freedesktop.org/drm/amd/-/issues
16199 C:      irc://irc.oftc.net/radeon
16200 F:      drivers/gpu/drm/amd/
16201 F:      drivers/gpu/drm/radeon/
16202 F:      include/uapi/drm/amdgpu_drm.h
16203 F:      include/uapi/drm/radeon_drm.h
16204
16205 RADEON FRAMEBUFFER DISPLAY DRIVER
16206 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
16207 L:      linux-fbdev@vger.kernel.org
16208 S:      Maintained
16209 F:      drivers/video/fbdev/aty/radeon*
16210 F:      include/uapi/linux/radeonfb.h
16211
16212 RADIOSHARK RADIO DRIVER
16213 M:      Hans Verkuil <hverkuil@xs4all.nl>
16214 L:      linux-media@vger.kernel.org
16215 S:      Maintained
16216 T:      git git://linuxtv.org/media_tree.git
16217 F:      drivers/media/radio/radio-shark.c
16218
16219 RADIOSHARK2 RADIO DRIVER
16220 M:      Hans Verkuil <hverkuil@xs4all.nl>
16221 L:      linux-media@vger.kernel.org
16222 S:      Maintained
16223 T:      git git://linuxtv.org/media_tree.git
16224 F:      drivers/media/radio/radio-shark2.c
16225 F:      drivers/media/radio/radio-tea5777.c
16226
16227 RADOS BLOCK DEVICE (RBD)
16228 M:      Ilya Dryomov <idryomov@gmail.com>
16229 R:      Dongsheng Yang <dongsheng.yang@easystack.cn>
16230 L:      ceph-devel@vger.kernel.org
16231 S:      Supported
16232 W:      http://ceph.com/
16233 T:      git git://github.com/ceph/ceph-client.git
16234 F:      Documentation/ABI/testing/sysfs-bus-rbd
16235 F:      drivers/block/rbd.c
16236 F:      drivers/block/rbd_types.h
16237
16238 RAGE128 FRAMEBUFFER DISPLAY DRIVER
16239 M:      Paul Mackerras <paulus@samba.org>
16240 L:      linux-fbdev@vger.kernel.org
16241 S:      Maintained
16242 F:      drivers/video/fbdev/aty/aty128fb.c
16243
16244 RAINSHADOW-CEC DRIVER
16245 M:      Hans Verkuil <hverkuil@xs4all.nl>
16246 L:      linux-media@vger.kernel.org
16247 S:      Maintained
16248 T:      git git://linuxtv.org/media_tree.git
16249 F:      drivers/media/cec/usb/rainshadow/
16250
16251 RALINK MIPS ARCHITECTURE
16252 M:      John Crispin <john@phrozen.org>
16253 L:      linux-mips@vger.kernel.org
16254 S:      Maintained
16255 F:      arch/mips/ralink
16256
16257 RALINK RT2X00 WIRELESS LAN DRIVER
16258 M:      Stanislaw Gruszka <stf_xl@wp.pl>
16259 M:      Helmut Schaa <helmut.schaa@googlemail.com>
16260 L:      linux-wireless@vger.kernel.org
16261 S:      Maintained
16262 F:      drivers/net/wireless/ralink/rt2x00/
16263
16264 RAMDISK RAM BLOCK DEVICE DRIVER
16265 M:      Jens Axboe <axboe@kernel.dk>
16266 S:      Maintained
16267 F:      Documentation/admin-guide/blockdev/ramdisk.rst
16268 F:      drivers/block/brd.c
16269
16270 RANCHU VIRTUAL BOARD FOR MIPS
16271 M:      Miodrag Dinic <miodrag.dinic@mips.com>
16272 L:      linux-mips@vger.kernel.org
16273 S:      Supported
16274 F:      arch/mips/configs/generic/board-ranchu.config
16275 F:      arch/mips/generic/board-ranchu.c
16276
16277 RANDOM NUMBER DRIVER
16278 M:      "Theodore Ts'o" <tytso@mit.edu>
16279 M:      Jason A. Donenfeld <Jason@zx2c4.com>
16280 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/crng/random.git
16281 S:      Maintained
16282 F:      drivers/char/random.c
16283 F:      drivers/virt/vmgenid.c
16284
16285 RAPIDIO SUBSYSTEM
16286 M:      Matt Porter <mporter@kernel.crashing.org>
16287 M:      Alexandre Bounine <alex.bou9@gmail.com>
16288 S:      Maintained
16289 F:      drivers/rapidio/
16290
16291 RAS INFRASTRUCTURE
16292 M:      Tony Luck <tony.luck@intel.com>
16293 M:      Borislav Petkov <bp@alien8.de>
16294 L:      linux-edac@vger.kernel.org
16295 S:      Maintained
16296 F:      Documentation/admin-guide/ras.rst
16297 F:      drivers/ras/
16298 F:      include/linux/ras.h
16299 F:      include/ras/ras_event.h
16300
16301 RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
16302 L:      linux-wireless@vger.kernel.org
16303 S:      Orphan
16304 F:      drivers/net/wireless/ray*
16305
16306 RC-CORE / LIRC FRAMEWORK
16307 M:      Sean Young <sean@mess.org>
16308 L:      linux-media@vger.kernel.org
16309 S:      Maintained
16310 W:      http://linuxtv.org
16311 T:      git git://linuxtv.org/media_tree.git
16312 F:      Documentation/driver-api/media/rc-core.rst
16313 F:      Documentation/userspace-api/media/rc/
16314 F:      drivers/media/rc/
16315 F:      include/media/rc-map.h
16316 F:      include/media/rc-core.h
16317 F:      include/uapi/linux/lirc.h
16318
16319 RCMM REMOTE CONTROLS DECODER
16320 M:      Patrick Lerda <patrick9876@free.fr>
16321 S:      Maintained
16322 F:      drivers/media/rc/ir-rcmm-decoder.c
16323
16324 RCUTORTURE TEST FRAMEWORK
16325 M:      "Paul E. McKenney" <paulmck@kernel.org>
16326 M:      Josh Triplett <josh@joshtriplett.org>
16327 R:      Steven Rostedt <rostedt@goodmis.org>
16328 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
16329 R:      Lai Jiangshan <jiangshanlai@gmail.com>
16330 L:      rcu@vger.kernel.org
16331 S:      Supported
16332 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
16333 F:      tools/testing/selftests/rcutorture
16334
16335 RDACM20 Camera Sensor
16336 M:      Jacopo Mondi <jacopo+renesas@jmondi.org>
16337 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
16338 M:      Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
16339 M:      Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
16340 L:      linux-media@vger.kernel.org
16341 S:      Maintained
16342 F:      Documentation/devicetree/bindings/media/i2c/imi,rdacm2x-gmsl.yaml
16343 F:      drivers/media/i2c/max9271.c
16344 F:      drivers/media/i2c/max9271.h
16345 F:      drivers/media/i2c/rdacm20.c
16346
16347 RDACM21 Camera Sensor
16348 M:      Jacopo Mondi <jacopo+renesas@jmondi.org>
16349 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
16350 M:      Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
16351 M:      Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
16352 L:      linux-media@vger.kernel.org
16353 S:      Maintained
16354 F:      Documentation/devicetree/bindings/media/i2c/imi,rdacm2x-gmsl.yaml
16355 F:      drivers/media/i2c/max9271.c
16356 F:      drivers/media/i2c/max9271.h
16357 F:      drivers/media/i2c/rdacm21.c
16358
16359 RDC R-321X SoC
16360 M:      Florian Fainelli <florian@openwrt.org>
16361 S:      Maintained
16362
16363 RDC R6040 FAST ETHERNET DRIVER
16364 M:      Florian Fainelli <f.fainelli@gmail.com>
16365 L:      netdev@vger.kernel.org
16366 S:      Maintained
16367 F:      drivers/net/ethernet/rdc/r6040.c
16368
16369 RDMAVT - RDMA verbs software
16370 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
16371 M:      Mike Marciniszyn <mike.marciniszyn@cornelisnetworks.com>
16372 L:      linux-rdma@vger.kernel.org
16373 S:      Supported
16374 F:      drivers/infiniband/sw/rdmavt
16375
16376 RDS - RELIABLE DATAGRAM SOCKETS
16377 M:      Santosh Shilimkar <santosh.shilimkar@oracle.com>
16378 L:      netdev@vger.kernel.org
16379 L:      linux-rdma@vger.kernel.org
16380 L:      rds-devel@oss.oracle.com (moderated for non-subscribers)
16381 S:      Supported
16382 W:      https://oss.oracle.com/projects/rds/
16383 F:      Documentation/networking/rds.rst
16384 F:      net/rds/
16385
16386 RDT - RESOURCE ALLOCATION
16387 M:      Fenghua Yu <fenghua.yu@intel.com>
16388 M:      Reinette Chatre <reinette.chatre@intel.com>
16389 L:      linux-kernel@vger.kernel.org
16390 S:      Supported
16391 F:      Documentation/x86/resctrl*
16392 F:      arch/x86/include/asm/resctrl.h
16393 F:      arch/x86/kernel/cpu/resctrl/
16394 F:      tools/testing/selftests/resctrl/
16395
16396 READ-COPY UPDATE (RCU)
16397 M:      "Paul E. McKenney" <paulmck@kernel.org>
16398 M:      Frederic Weisbecker <frederic@kernel.org> (kernel/rcu/tree_nocb.h)
16399 M:      Neeraj Upadhyay <quic_neeraju@quicinc.com> (kernel/rcu/tasks.h)
16400 M:      Josh Triplett <josh@joshtriplett.org>
16401 R:      Steven Rostedt <rostedt@goodmis.org>
16402 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
16403 R:      Lai Jiangshan <jiangshanlai@gmail.com>
16404 R:      Joel Fernandes <joel@joelfernandes.org>
16405 L:      rcu@vger.kernel.org
16406 S:      Supported
16407 W:      http://www.rdrop.com/users/paulmck/RCU/
16408 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
16409 F:      Documentation/RCU/
16410 F:      include/linux/rcu*
16411 F:      kernel/rcu/
16412 X:      Documentation/RCU/torture.rst
16413 X:      include/linux/srcu*.h
16414 X:      kernel/rcu/srcu*.c
16415
16416 REAL TIME CLOCK (RTC) SUBSYSTEM
16417 M:      Alessandro Zummo <a.zummo@towertech.it>
16418 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
16419 L:      linux-rtc@vger.kernel.org
16420 S:      Maintained
16421 Q:      http://patchwork.ozlabs.org/project/rtc-linux/list/
16422 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git
16423 F:      Documentation/admin-guide/rtc.rst
16424 F:      Documentation/devicetree/bindings/rtc/
16425 F:      drivers/rtc/
16426 F:      include/linux/platform_data/rtc-*
16427 F:      include/linux/rtc.h
16428 F:      include/linux/rtc/
16429 F:      include/uapi/linux/rtc.h
16430 F:      tools/testing/selftests/rtc/
16431
16432 REALTEK AUDIO CODECS
16433 M:      Oder Chiou <oder_chiou@realtek.com>
16434 S:      Maintained
16435 F:      include/sound/rt*.h
16436 F:      sound/soc/codecs/rt*
16437
16438 REALTEK OTTO WATCHDOG
16439 M:      Sander Vanheule <sander@svanheule.net>
16440 L:      linux-watchdog@vger.kernel.org
16441 S:      Maintained
16442 F:      Documentation/devicetree/bindings/watchdog/realtek,otto-wdt.yaml
16443 F:      drivers/watchdog/realtek_otto_wdt.c
16444
16445 REALTEK RTL83xx SMI DSA ROUTER CHIPS
16446 M:      Linus Walleij <linus.walleij@linaro.org>
16447 M:      Alvin Šipraga <alsi@bang-olufsen.dk>
16448 S:      Maintained
16449 F:      Documentation/devicetree/bindings/net/dsa/realtek-smi.txt
16450 F:      drivers/net/dsa/realtek-smi*
16451 F:      drivers/net/dsa/rtl83*
16452
16453 REALTEK WIRELESS DRIVER (rtlwifi family)
16454 M:      Ping-Ke Shih <pkshih@realtek.com>
16455 L:      linux-wireless@vger.kernel.org
16456 S:      Maintained
16457 W:      https://wireless.wiki.kernel.org/
16458 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
16459 F:      drivers/net/wireless/realtek/rtlwifi/
16460
16461 REALTEK WIRELESS DRIVER (rtw88)
16462 M:      Yan-Hsuan Chuang <tony0620emma@gmail.com>
16463 L:      linux-wireless@vger.kernel.org
16464 S:      Maintained
16465 F:      drivers/net/wireless/realtek/rtw88/
16466
16467 REALTEK WIRELESS DRIVER (rtw89)
16468 M:      Ping-Ke Shih <pkshih@realtek.com>
16469 L:      linux-wireless@vger.kernel.org
16470 S:      Maintained
16471 F:      drivers/net/wireless/realtek/rtw89/
16472
16473 REDPINE WIRELESS DRIVER
16474 M:      Amitkumar Karwar <amitkarwar@gmail.com>
16475 M:      Siva Rebbagondla <siva8118@gmail.com>
16476 L:      linux-wireless@vger.kernel.org
16477 S:      Maintained
16478 F:      drivers/net/wireless/rsi/
16479
16480 REGISTER MAP ABSTRACTION
16481 M:      Mark Brown <broonie@kernel.org>
16482 L:      linux-kernel@vger.kernel.org
16483 S:      Supported
16484 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
16485 F:      Documentation/devicetree/bindings/regmap/
16486 F:      drivers/base/regmap/
16487 F:      include/linux/regmap.h
16488
16489 REISERFS FILE SYSTEM
16490 L:      reiserfs-devel@vger.kernel.org
16491 S:      Supported
16492 F:      fs/reiserfs/
16493
16494 REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
16495 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
16496 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
16497 L:      linux-remoteproc@vger.kernel.org
16498 S:      Maintained
16499 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/remoteproc/linux.git rproc-next
16500 F:      Documentation/ABI/testing/sysfs-class-remoteproc
16501 F:      Documentation/devicetree/bindings/remoteproc/
16502 F:      Documentation/staging/remoteproc.rst
16503 F:      drivers/remoteproc/
16504 F:      include/linux/remoteproc.h
16505 F:      include/linux/remoteproc/
16506
16507 REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM
16508 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
16509 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
16510 L:      linux-remoteproc@vger.kernel.org
16511 S:      Maintained
16512 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/remoteproc/linux.git rpmsg-next
16513 F:      Documentation/ABI/testing/sysfs-bus-rpmsg
16514 F:      Documentation/staging/rpmsg.rst
16515 F:      drivers/rpmsg/
16516 F:      include/linux/rpmsg.h
16517 F:      include/linux/rpmsg/
16518 F:      include/uapi/linux/rpmsg.h
16519 F:      samples/rpmsg/
16520
16521 REMOTE PROCESSOR MESSAGING (RPMSG) WWAN CONTROL DRIVER
16522 M:      Stephan Gerhold <stephan@gerhold.net>
16523 L:      netdev@vger.kernel.org
16524 L:      linux-remoteproc@vger.kernel.org
16525 S:      Maintained
16526 F:      drivers/net/wwan/rpmsg_wwan_ctrl.c
16527
16528 RENESAS CLOCK DRIVERS
16529 M:      Geert Uytterhoeven <geert+renesas@glider.be>
16530 L:      linux-renesas-soc@vger.kernel.org
16531 S:      Supported
16532 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git renesas-clk
16533 F:      Documentation/devicetree/bindings/clock/renesas,*
16534 F:      drivers/clk/renesas/
16535
16536 RENESAS EMEV2 I2C DRIVER
16537 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
16538 L:      linux-renesas-soc@vger.kernel.org
16539 S:      Supported
16540 F:      Documentation/devicetree/bindings/i2c/renesas,iic-emev2.yaml
16541 F:      drivers/i2c/busses/i2c-emev2.c
16542
16543 RENESAS ETHERNET DRIVERS
16544 R:      Sergey Shtylyov <s.shtylyov@omp.ru>
16545 L:      netdev@vger.kernel.org
16546 L:      linux-renesas-soc@vger.kernel.org
16547 F:      Documentation/devicetree/bindings/net/renesas,*.yaml
16548 F:      drivers/net/ethernet/renesas/
16549 F:      include/linux/sh_eth.h
16550
16551 RENESAS R-CAR GYROADC DRIVER
16552 M:      Marek Vasut <marek.vasut@gmail.com>
16553 L:      linux-iio@vger.kernel.org
16554 S:      Supported
16555 F:      Documentation/devicetree/bindings/iio/adc/renesas,rcar-gyroadc.yaml
16556 F:      drivers/iio/adc/rcar-gyroadc.c
16557
16558 RENESAS R-CAR I2C DRIVERS
16559 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
16560 L:      linux-renesas-soc@vger.kernel.org
16561 S:      Supported
16562 F:      Documentation/devicetree/bindings/i2c/renesas,rcar-i2c.yaml
16563 F:      Documentation/devicetree/bindings/i2c/renesas,rmobile-iic.yaml
16564 F:      drivers/i2c/busses/i2c-rcar.c
16565 F:      drivers/i2c/busses/i2c-sh_mobile.c
16566
16567 RENESAS R-CAR SATA DRIVER
16568 R:      Sergey Shtylyov <s.shtylyov@omp.ru>
16569 S:      Supported
16570 L:      linux-ide@vger.kernel.org
16571 L:      linux-renesas-soc@vger.kernel.org
16572 F:      Documentation/devicetree/bindings/ata/renesas,rcar-sata.yaml
16573 F:      drivers/ata/sata_rcar.c
16574
16575 RENESAS R-CAR THERMAL DRIVERS
16576 M:      Niklas Söderlund <niklas.soderlund@ragnatech.se>
16577 L:      linux-renesas-soc@vger.kernel.org
16578 S:      Supported
16579 F:      Documentation/devicetree/bindings/thermal/rcar-gen3-thermal.yaml
16580 F:      Documentation/devicetree/bindings/thermal/rcar-thermal.yaml
16581 F:      drivers/thermal/rcar_gen3_thermal.c
16582 F:      drivers/thermal/rcar_thermal.c
16583
16584 RENESAS RIIC DRIVER
16585 M:      Chris Brandt <chris.brandt@renesas.com>
16586 L:      linux-renesas-soc@vger.kernel.org
16587 S:      Supported
16588 F:      Documentation/devicetree/bindings/i2c/renesas,riic.yaml
16589 F:      drivers/i2c/busses/i2c-riic.c
16590
16591 RENESAS USB PHY DRIVER
16592 M:      Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
16593 L:      linux-renesas-soc@vger.kernel.org
16594 S:      Maintained
16595 F:      drivers/phy/renesas/phy-rcar-gen3-usb*.c
16596
16597 RENESAS RZ/G2L A/D DRIVER
16598 M:      Lad Prabhakar <prabhakar.mahadev-lad.rj@bp.renesas.com>
16599 L:      linux-iio@vger.kernel.org
16600 L:      linux-renesas-soc@vger.kernel.org
16601 S:      Supported
16602 F:      Documentation/devicetree/bindings/iio/adc/renesas,rzg2l-adc.yaml
16603 F:      drivers/iio/adc/rzg2l_adc.c
16604
16605 RENESAS R-CAR GEN3 & RZ/N1 NAND CONTROLLER DRIVER
16606 M:      Miquel Raynal <miquel.raynal@bootlin.com>
16607 L:      linux-mtd@lists.infradead.org
16608 L:      linux-renesas-soc@vger.kernel.org
16609 S:      Maintained
16610 F:      Documentation/devicetree/bindings/mtd/renesas-nandc.yaml
16611 F:      drivers/mtd/nand/raw/renesas-nand-controller.c
16612
16613 RESET CONTROLLER FRAMEWORK
16614 M:      Philipp Zabel <p.zabel@pengutronix.de>
16615 S:      Maintained
16616 T:      git git://git.pengutronix.de/git/pza/linux
16617 F:      Documentation/devicetree/bindings/reset/
16618 F:      Documentation/driver-api/reset.rst
16619 F:      drivers/reset/
16620 F:      include/dt-bindings/reset/
16621 F:      include/linux/reset-controller.h
16622 F:      include/linux/reset.h
16623 F:      include/linux/reset/
16624 K:      \b(?:devm_|of_)?reset_control(?:ler_[a-z]+|_[a-z_]+)?\b
16625
16626 RESTARTABLE SEQUENCES SUPPORT
16627 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
16628 M:      Peter Zijlstra <peterz@infradead.org>
16629 M:      "Paul E. McKenney" <paulmck@kernel.org>
16630 M:      Boqun Feng <boqun.feng@gmail.com>
16631 L:      linux-kernel@vger.kernel.org
16632 S:      Supported
16633 F:      include/trace/events/rseq.h
16634 F:      include/uapi/linux/rseq.h
16635 F:      kernel/rseq.c
16636 F:      tools/testing/selftests/rseq/
16637
16638 RFKILL
16639 M:      Johannes Berg <johannes@sipsolutions.net>
16640 L:      linux-wireless@vger.kernel.org
16641 S:      Maintained
16642 W:      https://wireless.wiki.kernel.org/
16643 Q:      https://patchwork.kernel.org/project/linux-wireless/list/
16644 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless.git
16645 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless-next.git
16646 F:      Documentation/ABI/stable/sysfs-class-rfkill
16647 F:      Documentation/driver-api/rfkill.rst
16648 F:      include/linux/rfkill.h
16649 F:      include/uapi/linux/rfkill.h
16650 F:      net/rfkill/
16651
16652 RHASHTABLE
16653 M:      Thomas Graf <tgraf@suug.ch>
16654 M:      Herbert Xu <herbert@gondor.apana.org.au>
16655 L:      netdev@vger.kernel.org
16656 S:      Maintained
16657 F:      include/linux/rhashtable-types.h
16658 F:      include/linux/rhashtable.h
16659 F:      lib/rhashtable.c
16660 F:      lib/test_rhashtable.c
16661
16662 RICOH R5C592 MEMORYSTICK DRIVER
16663 M:      Maxim Levitsky <maximlevitsky@gmail.com>
16664 S:      Maintained
16665 F:      drivers/memstick/host/r592.*
16666
16667 RICOH SMARTMEDIA/XD DRIVER
16668 M:      Maxim Levitsky <maximlevitsky@gmail.com>
16669 S:      Maintained
16670 F:      drivers/mtd/nand/raw/r852.c
16671 F:      drivers/mtd/nand/raw/r852.h
16672
16673 RISC-V ARCHITECTURE
16674 M:      Paul Walmsley <paul.walmsley@sifive.com>
16675 M:      Palmer Dabbelt <palmer@dabbelt.com>
16676 M:      Albert Ou <aou@eecs.berkeley.edu>
16677 L:      linux-riscv@lists.infradead.org
16678 S:      Supported
16679 P:      Documentation/riscv/patch-acceptance.rst
16680 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/riscv/linux.git
16681 F:      arch/riscv/
16682 N:      riscv
16683 K:      riscv
16684
16685 RISC-V/MICROCHIP POLARFIRE SOC SUPPORT
16686 M:      Lewis Hanly <lewis.hanly@microchip.com>
16687 L:      linux-riscv@lists.infradead.org
16688 S:      Supported
16689 F:      drivers/mailbox/mailbox-mpfs.c
16690 F:      drivers/soc/microchip/
16691 F:      include/soc/microchip/mpfs.h
16692
16693 RNBD BLOCK DRIVERS
16694 M:      Md. Haris Iqbal <haris.iqbal@ionos.com>
16695 M:      Jack Wang <jinpu.wang@ionos.com>
16696 L:      linux-block@vger.kernel.org
16697 S:      Maintained
16698 F:      drivers/block/rnbd/
16699
16700 ROCCAT DRIVERS
16701 M:      Stefan Achatz <erazor_de@users.sourceforge.net>
16702 S:      Maintained
16703 W:      http://sourceforge.net/projects/roccat/
16704 F:      Documentation/ABI/*/sysfs-driver-hid-roccat*
16705 F:      drivers/hid/hid-roccat*
16706 F:      include/linux/hid-roccat*
16707
16708 ROCKCHIP I2S TDM DRIVER
16709 M:      Nicolas Frattaroli <frattaroli.nicolas@gmail.com>
16710 L:      linux-rockchip@lists.infradead.org
16711 S:      Maintained
16712 F:      Documentation/devicetree/bindings/sound/rockchip,i2s-tdm.yaml
16713 F:      sound/soc/rockchip/rockchip_i2s_tdm.*
16714
16715 ROCKCHIP ISP V1 DRIVER
16716 M:      Dafna Hirschfeld <dafna@fastmail.com>
16717 L:      linux-media@vger.kernel.org
16718 L:      linux-rockchip@lists.infradead.org
16719 S:      Maintained
16720 F:      Documentation/admin-guide/media/rkisp1.rst
16721 F:      Documentation/devicetree/bindings/media/rockchip-isp1.yaml
16722 F:      Documentation/userspace-api/media/v4l/pixfmt-meta-rkisp1.rst
16723 F:      drivers/media/platform/rockchip/rkisp1
16724 F:      include/uapi/linux/rkisp1-config.h
16725
16726 ROCKCHIP RASTER 2D GRAPHIC ACCELERATION UNIT DRIVER
16727 M:      Jacob Chen <jacob-chen@iotwrt.com>
16728 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
16729 L:      linux-media@vger.kernel.org
16730 L:      linux-rockchip@lists.infradead.org
16731 S:      Maintained
16732 F:      Documentation/devicetree/bindings/media/rockchip-rga.yaml
16733 F:      drivers/media/platform/rockchip/rga/
16734
16735 ROCKCHIP VIDEO DECODER DRIVER
16736 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
16737 L:      linux-media@vger.kernel.org
16738 L:      linux-rockchip@lists.infradead.org
16739 S:      Maintained
16740 F:      Documentation/devicetree/bindings/media/rockchip,vdec.yaml
16741 F:      drivers/staging/media/rkvdec/
16742
16743 ROCKER DRIVER
16744 M:      Jiri Pirko <jiri@resnulli.us>
16745 L:      netdev@vger.kernel.org
16746 S:      Supported
16747 F:      drivers/net/ethernet/rocker/
16748
16749 ROCKETPORT EXPRESS/INFINITY DRIVER
16750 M:      Kevin Cernekee <cernekee@gmail.com>
16751 L:      linux-serial@vger.kernel.org
16752 S:      Odd Fixes
16753 F:      drivers/tty/serial/rp2.*
16754
16755 ROHM BD99954 CHARGER IC
16756 R:      Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
16757 L:      linux-power@fi.rohmeurope.com
16758 S:      Supported
16759 F:      drivers/power/supply/bd99954-charger.c
16760 F:      drivers/power/supply/bd99954-charger.h
16761
16762 ROHM BH1750 AMBIENT LIGHT SENSOR DRIVER
16763 M:      Tomasz Duszynski <tduszyns@gmail.com>
16764 S:      Maintained
16765 F:      Documentation/devicetree/bindings/iio/light/bh1750.yaml
16766 F:      drivers/iio/light/bh1750.c
16767
16768 ROHM MULTIFUNCTION BD9571MWV-M PMIC DEVICE DRIVERS
16769 M:      Marek Vasut <marek.vasut+renesas@gmail.com>
16770 L:      linux-kernel@vger.kernel.org
16771 L:      linux-renesas-soc@vger.kernel.org
16772 S:      Supported
16773 F:      Documentation/devicetree/bindings/mfd/bd9571mwv.txt
16774 F:      drivers/gpio/gpio-bd9571mwv.c
16775 F:      drivers/mfd/bd9571mwv.c
16776 F:      drivers/regulator/bd9571mwv-regulator.c
16777 F:      include/linux/mfd/bd9571mwv.h
16778
16779 ROHM POWER MANAGEMENT IC DEVICE DRIVERS
16780 R:      Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
16781 L:      linux-power@fi.rohmeurope.com
16782 S:      Supported
16783 F:      drivers/clk/clk-bd718x7.c
16784 F:      drivers/gpio/gpio-bd71815.c
16785 F:      drivers/gpio/gpio-bd71828.c
16786 F:      drivers/mfd/rohm-bd71828.c
16787 F:      drivers/mfd/rohm-bd718x7.c
16788 F:      drivers/mfd/rohm-bd9576.c
16789 F:      drivers/regulator/bd71815-regulator.c
16790 F:      drivers/regulator/bd71828-regulator.c
16791 F:      drivers/regulator/bd718x7-regulator.c
16792 F:      drivers/regulator/bd9576-regulator.c
16793 F:      drivers/regulator/rohm-regulator.c
16794 F:      drivers/rtc/rtc-bd70528.c
16795 F:      drivers/watchdog/bd9576_wdt.c
16796 F:      include/linux/mfd/rohm-bd71815.h
16797 F:      include/linux/mfd/rohm-bd71828.h
16798 F:      include/linux/mfd/rohm-bd718x7.h
16799 F:      include/linux/mfd/rohm-bd957x.h
16800 F:      include/linux/mfd/rohm-generic.h
16801 F:      include/linux/mfd/rohm-shared.h
16802
16803 ROSE NETWORK LAYER
16804 M:      Ralf Baechle <ralf@linux-mips.org>
16805 L:      linux-hams@vger.kernel.org
16806 S:      Maintained
16807 W:      http://www.linux-ax25.org/
16808 F:      include/net/rose.h
16809 F:      include/uapi/linux/rose.h
16810 F:      net/rose/
16811
16812 ROTATION DRIVER FOR ALLWINNER A83T
16813 M:      Jernej Skrabec <jernej.skrabec@gmail.com>
16814 L:      linux-media@vger.kernel.org
16815 S:      Maintained
16816 T:      git git://linuxtv.org/media_tree.git
16817 F:      Documentation/devicetree/bindings/media/allwinner,sun8i-a83t-de2-rotate.yaml
16818 F:      drivers/media/platform/sunxi/sun8i-rotate/
16819
16820 RPMSG TTY DRIVER
16821 M:      Arnaud Pouliquen <arnaud.pouliquen@foss.st.com>
16822 L:      linux-remoteproc@vger.kernel.org
16823 S:      Maintained
16824 F:      drivers/tty/rpmsg_tty.c
16825
16826 RTL2830 MEDIA DRIVER
16827 M:      Antti Palosaari <crope@iki.fi>
16828 L:      linux-media@vger.kernel.org
16829 S:      Maintained
16830 W:      https://linuxtv.org
16831 W:      http://palosaari.fi/linux/
16832 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16833 T:      git git://linuxtv.org/anttip/media_tree.git
16834 F:      drivers/media/dvb-frontends/rtl2830*
16835
16836 RTL2832 MEDIA DRIVER
16837 M:      Antti Palosaari <crope@iki.fi>
16838 L:      linux-media@vger.kernel.org
16839 S:      Maintained
16840 W:      https://linuxtv.org
16841 W:      http://palosaari.fi/linux/
16842 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16843 T:      git git://linuxtv.org/anttip/media_tree.git
16844 F:      drivers/media/dvb-frontends/rtl2832*
16845
16846 RTL2832_SDR MEDIA DRIVER
16847 M:      Antti Palosaari <crope@iki.fi>
16848 L:      linux-media@vger.kernel.org
16849 S:      Maintained
16850 W:      https://linuxtv.org
16851 W:      http://palosaari.fi/linux/
16852 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16853 T:      git git://linuxtv.org/anttip/media_tree.git
16854 F:      drivers/media/dvb-frontends/rtl2832_sdr*
16855
16856 RTL8180 WIRELESS DRIVER
16857 L:      linux-wireless@vger.kernel.org
16858 S:      Orphan
16859 W:      https://wireless.wiki.kernel.org/
16860 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
16861 F:      drivers/net/wireless/realtek/rtl818x/rtl8180/
16862
16863 RTL8187 WIRELESS DRIVER
16864 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
16865 M:      Hin-Tak Leung <htl10@users.sourceforge.net>
16866 M:      Larry Finger <Larry.Finger@lwfinger.net>
16867 L:      linux-wireless@vger.kernel.org
16868 S:      Maintained
16869 W:      https://wireless.wiki.kernel.org/
16870 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
16871 F:      drivers/net/wireless/realtek/rtl818x/rtl8187/
16872
16873 RTL8XXXU WIRELESS DRIVER (rtl8xxxu)
16874 M:      Jes Sorensen <Jes.Sorensen@gmail.com>
16875 L:      linux-wireless@vger.kernel.org
16876 S:      Maintained
16877 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jes/linux.git rtl8xxxu-devel
16878 F:      drivers/net/wireless/realtek/rtl8xxxu/
16879
16880 RTRS TRANSPORT DRIVERS
16881 M:      Md. Haris Iqbal <haris.iqbal@ionos.com>
16882 M:      Jack Wang <jinpu.wang@ionos.com>
16883 L:      linux-rdma@vger.kernel.org
16884 S:      Maintained
16885 F:      drivers/infiniband/ulp/rtrs/
16886
16887 RXRPC SOCKETS (AF_RXRPC)
16888 M:      David Howells <dhowells@redhat.com>
16889 M:      Marc Dionne <marc.dionne@auristor.com>
16890 L:      linux-afs@lists.infradead.org
16891 S:      Supported
16892 W:      https://www.infradead.org/~dhowells/kafs/
16893 F:      Documentation/networking/rxrpc.rst
16894 F:      include/keys/rxrpc-type.h
16895 F:      include/net/af_rxrpc.h
16896 F:      include/trace/events/rxrpc.h
16897 F:      include/uapi/linux/rxrpc.h
16898 F:      net/rxrpc/
16899
16900 S3 SAVAGE FRAMEBUFFER DRIVER
16901 M:      Antonino Daplas <adaplas@gmail.com>
16902 L:      linux-fbdev@vger.kernel.org
16903 S:      Maintained
16904 F:      drivers/video/fbdev/savage/
16905
16906 S390
16907 M:      Heiko Carstens <hca@linux.ibm.com>
16908 M:      Vasily Gorbik <gor@linux.ibm.com>
16909 M:      Alexander Gordeev <agordeev@linux.ibm.com>
16910 R:      Christian Borntraeger <borntraeger@linux.ibm.com>
16911 R:      Sven Schnelle <svens@linux.ibm.com>
16912 L:      linux-s390@vger.kernel.org
16913 S:      Supported
16914 W:      http://www.ibm.com/developerworks/linux/linux390/
16915 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux.git
16916 F:      Documentation/driver-api/s390-drivers.rst
16917 F:      Documentation/s390/
16918 F:      arch/s390/
16919 F:      drivers/s390/
16920
16921 S390 COMMON I/O LAYER
16922 M:      Vineeth Vijayan <vneethv@linux.ibm.com>
16923 M:      Peter Oberparleiter <oberpar@linux.ibm.com>
16924 L:      linux-s390@vger.kernel.org
16925 S:      Supported
16926 W:      http://www.ibm.com/developerworks/linux/linux390/
16927 F:      drivers/s390/cio/
16928
16929 S390 DASD DRIVER
16930 M:      Stefan Haberland <sth@linux.ibm.com>
16931 M:      Jan Hoeppner <hoeppner@linux.ibm.com>
16932 L:      linux-s390@vger.kernel.org
16933 S:      Supported
16934 W:      http://www.ibm.com/developerworks/linux/linux390/
16935 F:      block/partitions/ibm.c
16936 F:      drivers/s390/block/dasd*
16937 F:      include/linux/dasd_mod.h
16938
16939 S390 IOMMU (PCI)
16940 M:      Matthew Rosato <mjrosato@linux.ibm.com>
16941 M:      Gerald Schaefer <gerald.schaefer@linux.ibm.com>
16942 L:      linux-s390@vger.kernel.org
16943 S:      Supported
16944 W:      http://www.ibm.com/developerworks/linux/linux390/
16945 F:      drivers/iommu/s390-iommu.c
16946
16947 S390 IUCV NETWORK LAYER
16948 M:      Alexandra Winter <wintera@linux.ibm.com>
16949 M:      Wenjia Zhang <wenjia@linux.ibm.com>
16950 L:      linux-s390@vger.kernel.org
16951 L:      netdev@vger.kernel.org
16952 S:      Supported
16953 W:      http://www.ibm.com/developerworks/linux/linux390/
16954 F:      drivers/s390/net/*iucv*
16955 F:      include/net/iucv/
16956 F:      net/iucv/
16957
16958 S390 NETWORK DRIVERS
16959 M:      Alexandra Winter <wintera@linux.ibm.com>
16960 M:      Wenjia Zhang <wenjia@linux.ibm.com>
16961 L:      linux-s390@vger.kernel.org
16962 L:      netdev@vger.kernel.org
16963 S:      Supported
16964 W:      http://www.ibm.com/developerworks/linux/linux390/
16965 F:      drivers/s390/net/
16966
16967 S390 PCI SUBSYSTEM
16968 M:      Niklas Schnelle <schnelle@linux.ibm.com>
16969 M:      Gerald Schaefer <gerald.schaefer@linux.ibm.com>
16970 L:      linux-s390@vger.kernel.org
16971 S:      Supported
16972 W:      http://www.ibm.com/developerworks/linux/linux390/
16973 F:      arch/s390/pci/
16974 F:      drivers/pci/hotplug/s390_pci_hpc.c
16975 F:      Documentation/s390/pci.rst
16976
16977 S390 VFIO AP DRIVER
16978 M:      Tony Krowiak <akrowiak@linux.ibm.com>
16979 M:      Halil Pasic <pasic@linux.ibm.com>
16980 M:      Jason Herne <jjherne@linux.ibm.com>
16981 L:      linux-s390@vger.kernel.org
16982 S:      Supported
16983 W:      http://www.ibm.com/developerworks/linux/linux390/
16984 F:      Documentation/s390/vfio-ap.rst
16985 F:      drivers/s390/crypto/vfio_ap_drv.c
16986 F:      drivers/s390/crypto/vfio_ap_ops.c
16987 F:      drivers/s390/crypto/vfio_ap_private.h
16988
16989 S390 VFIO-CCW DRIVER
16990 M:      Eric Farman <farman@linux.ibm.com>
16991 M:      Matthew Rosato <mjrosato@linux.ibm.com>
16992 R:      Halil Pasic <pasic@linux.ibm.com>
16993 L:      linux-s390@vger.kernel.org
16994 L:      kvm@vger.kernel.org
16995 S:      Supported
16996 F:      Documentation/s390/vfio-ccw.rst
16997 F:      drivers/s390/cio/vfio_ccw*
16998 F:      include/uapi/linux/vfio_ccw.h
16999
17000 S390 VFIO-PCI DRIVER
17001 M:      Matthew Rosato <mjrosato@linux.ibm.com>
17002 M:      Eric Farman <farman@linux.ibm.com>
17003 L:      linux-s390@vger.kernel.org
17004 L:      kvm@vger.kernel.org
17005 S:      Supported
17006 F:      drivers/vfio/pci/vfio_pci_zdev.c
17007 F:      include/uapi/linux/vfio_zdev.h
17008
17009 S390 ZCRYPT DRIVER
17010 M:      Harald Freudenberger <freude@linux.ibm.com>
17011 L:      linux-s390@vger.kernel.org
17012 S:      Supported
17013 W:      http://www.ibm.com/developerworks/linux/linux390/
17014 F:      drivers/s390/crypto/
17015
17016 S390 ZFCP DRIVER
17017 M:      Steffen Maier <maier@linux.ibm.com>
17018 M:      Benjamin Block <bblock@linux.ibm.com>
17019 L:      linux-s390@vger.kernel.org
17020 S:      Supported
17021 W:      http://www.ibm.com/developerworks/linux/linux390/
17022 F:      drivers/s390/scsi/zfcp_*
17023
17024 S3C ADC BATTERY DRIVER
17025 M:      Krzysztof Kozlowski <krzk@kernel.org>
17026 L:      linux-samsung-soc@vger.kernel.org
17027 S:      Odd Fixes
17028 F:      drivers/power/supply/s3c_adc_battery.c
17029 F:      include/linux/s3c_adc_battery.h
17030
17031 S3C24XX SD/MMC Driver
17032 M:      Ben Dooks <ben-linux@fluff.org>
17033 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
17034 S:      Supported
17035 F:      drivers/mmc/host/s3cmci.*
17036
17037 SAA6588 RDS RECEIVER DRIVER
17038 M:      Hans Verkuil <hverkuil@xs4all.nl>
17039 L:      linux-media@vger.kernel.org
17040 S:      Odd Fixes
17041 W:      https://linuxtv.org
17042 T:      git git://linuxtv.org/media_tree.git
17043 F:      drivers/media/i2c/saa6588*
17044
17045 SAA7134 VIDEO4LINUX DRIVER
17046 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
17047 L:      linux-media@vger.kernel.org
17048 S:      Odd fixes
17049 W:      https://linuxtv.org
17050 T:      git git://linuxtv.org/media_tree.git
17051 F:      Documentation/driver-api/media/drivers/saa7134*
17052 F:      drivers/media/pci/saa7134/
17053
17054 SAA7146 VIDEO4LINUX-2 DRIVER
17055 M:      Hans Verkuil <hverkuil@xs4all.nl>
17056 L:      linux-media@vger.kernel.org
17057 S:      Maintained
17058 T:      git git://linuxtv.org/media_tree.git
17059 F:      drivers/media/common/saa7146/
17060 F:      drivers/media/pci/saa7146/
17061 F:      include/media/drv-intf/saa7146*
17062
17063 SAFESETID SECURITY MODULE
17064 M:      Micah Morton <mortonm@chromium.org>
17065 S:      Supported
17066 F:      Documentation/admin-guide/LSM/SafeSetID.rst
17067 F:      security/safesetid/
17068
17069 SAMSUNG AUDIO (ASoC) DRIVERS
17070 M:      Krzysztof Kozlowski <krzk@kernel.org>
17071 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
17072 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17073 S:      Supported
17074 F:      Documentation/devicetree/bindings/sound/samsung*
17075 F:      sound/soc/samsung/
17076
17077 SAMSUNG EXYNOS PSEUDO RANDOM NUMBER GENERATOR (RNG) DRIVER
17078 M:      Krzysztof Kozlowski <krzk@kernel.org>
17079 L:      linux-crypto@vger.kernel.org
17080 L:      linux-samsung-soc@vger.kernel.org
17081 S:      Maintained
17082 F:      Documentation/devicetree/bindings/rng/samsung,exynos4-rng.yaml
17083 F:      drivers/crypto/exynos-rng.c
17084
17085 SAMSUNG EXYNOS TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
17086 M:      Łukasz Stelmach <l.stelmach@samsung.com>
17087 L:      linux-samsung-soc@vger.kernel.org
17088 S:      Maintained
17089 F:      Documentation/devicetree/bindings/rng/samsung,exynos5250-trng.yaml
17090 F:      drivers/char/hw_random/exynos-trng.c
17091
17092 SAMSUNG FRAMEBUFFER DRIVER
17093 M:      Jingoo Han <jingoohan1@gmail.com>
17094 L:      linux-fbdev@vger.kernel.org
17095 S:      Maintained
17096 F:      drivers/video/fbdev/s3c-fb.c
17097
17098 SAMSUNG INTERCONNECT DRIVERS
17099 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
17100 M:      Artur Świgoń <a.swigon@samsung.com>
17101 L:      linux-pm@vger.kernel.org
17102 L:      linux-samsung-soc@vger.kernel.org
17103 S:      Supported
17104 F:      drivers/interconnect/samsung/
17105
17106 SAMSUNG LAPTOP DRIVER
17107 M:      Corentin Chary <corentin.chary@gmail.com>
17108 L:      platform-driver-x86@vger.kernel.org
17109 S:      Maintained
17110 F:      drivers/platform/x86/samsung-laptop.c
17111
17112 SAMSUNG MULTIFUNCTION PMIC DEVICE DRIVERS
17113 M:      Krzysztof Kozlowski <krzk@kernel.org>
17114 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
17115 L:      linux-kernel@vger.kernel.org
17116 L:      linux-samsung-soc@vger.kernel.org
17117 S:      Supported
17118 F:      Documentation/devicetree/bindings/clock/samsung,s2mps11.yaml
17119 F:      Documentation/devicetree/bindings/mfd/samsung,s2m*.yaml
17120 F:      Documentation/devicetree/bindings/mfd/samsung,s5m*.yaml
17121 F:      Documentation/devicetree/bindings/regulator/samsung,s2m*.yaml
17122 F:      Documentation/devicetree/bindings/regulator/samsung,s5m*.yaml
17123 F:      drivers/clk/clk-s2mps11.c
17124 F:      drivers/mfd/sec*.c
17125 F:      drivers/regulator/s2m*.c
17126 F:      drivers/regulator/s5m*.c
17127 F:      drivers/rtc/rtc-s5m.c
17128 F:      include/linux/mfd/samsung/
17129
17130 SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
17131 M:      Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
17132 L:      linux-media@vger.kernel.org
17133 L:      linux-samsung-soc@vger.kernel.org
17134 S:      Maintained
17135 F:      drivers/media/platform/samsung/s3c-camif/
17136 F:      include/media/drv-intf/s3c_camif.h
17137
17138 SAMSUNG S3FWRN5 NFC DRIVER
17139 M:      Krzysztof Kozlowski <krzk@kernel.org>
17140 M:      Krzysztof Opasiak <k.opasiak@samsung.com>
17141 L:      linux-nfc@lists.01.org (subscribers-only)
17142 S:      Maintained
17143 F:      Documentation/devicetree/bindings/net/nfc/samsung,s3fwrn5.yaml
17144 F:      drivers/nfc/s3fwrn5
17145
17146 SAMSUNG S5C73M3 CAMERA DRIVER
17147 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
17148 M:      Andrzej Hajda <andrzej.hajda@intel.com>
17149 L:      linux-media@vger.kernel.org
17150 S:      Supported
17151 F:      drivers/media/i2c/s5c73m3/*
17152
17153 SAMSUNG S5K5BAF CAMERA DRIVER
17154 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
17155 M:      Andrzej Hajda <andrzej.hajda@intel.com>
17156 L:      linux-media@vger.kernel.org
17157 S:      Supported
17158 F:      drivers/media/i2c/s5k5baf.c
17159
17160 SAMSUNG S5P Security SubSystem (SSS) DRIVER
17161 M:      Krzysztof Kozlowski <krzk@kernel.org>
17162 M:      Vladimir Zapolskiy <vz@mleia.com>
17163 L:      linux-crypto@vger.kernel.org
17164 L:      linux-samsung-soc@vger.kernel.org
17165 S:      Maintained
17166 F:      Documentation/devicetree/bindings/crypto/samsung-slimsss.yaml
17167 F:      Documentation/devicetree/bindings/crypto/samsung-sss.yaml
17168 F:      drivers/crypto/s5p-sss.c
17169
17170 SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS
17171 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
17172 L:      linux-media@vger.kernel.org
17173 S:      Supported
17174 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
17175 F:      drivers/media/platform/samsung/exynos4-is/
17176
17177 SAMSUNG SOC CLOCK DRIVERS
17178 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
17179 M:      Tomasz Figa <tomasz.figa@gmail.com>
17180 M:      Chanwoo Choi <cw00.choi@samsung.com>
17181 R:      Alim Akhtar <alim.akhtar@samsung.com>
17182 L:      linux-samsung-soc@vger.kernel.org
17183 S:      Supported
17184 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/snawrocki/clk.git
17185 F:      Documentation/devicetree/bindings/clock/samsung,*.yaml
17186 F:      Documentation/devicetree/bindings/clock/samsung,s3c*
17187 F:      drivers/clk/samsung/
17188 F:      include/dt-bindings/clock/exynos*.h
17189 F:      include/dt-bindings/clock/s3c*.h
17190 F:      include/dt-bindings/clock/s5p*.h
17191 F:      include/dt-bindings/clock/samsung,*.h
17192 F:      include/linux/clk/samsung.h
17193 F:      include/linux/platform_data/clk-s3c2410.h
17194
17195 SAMSUNG SPI DRIVERS
17196 M:      Krzysztof Kozlowski <krzk@kernel.org>
17197 M:      Andi Shyti <andi@etezian.org>
17198 L:      linux-spi@vger.kernel.org
17199 L:      linux-samsung-soc@vger.kernel.org
17200 S:      Maintained
17201 F:      Documentation/devicetree/bindings/spi/samsung,spi*.yaml
17202 F:      drivers/spi/spi-s3c*
17203 F:      include/linux/platform_data/spi-s3c64xx.h
17204 F:      include/linux/spi/s3c24xx-fiq.h
17205
17206 SAMSUNG SXGBE DRIVERS
17207 M:      Byungho An <bh74.an@samsung.com>
17208 L:      netdev@vger.kernel.org
17209 S:      Supported
17210 F:      drivers/net/ethernet/samsung/sxgbe/
17211
17212 SAMSUNG THERMAL DRIVER
17213 M:      Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
17214 M:      Krzysztof Kozlowski <krzk@kernel.org>
17215 L:      linux-pm@vger.kernel.org
17216 L:      linux-samsung-soc@vger.kernel.org
17217 S:      Maintained
17218 F:      Documentation/devicetree/bindings/thermal/samsung,exynos-thermal.yaml
17219 F:      drivers/thermal/samsung/
17220
17221 SAMSUNG USB2 PHY DRIVER
17222 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
17223 L:      linux-kernel@vger.kernel.org
17224 S:      Supported
17225 F:      Documentation/devicetree/bindings/phy/samsung-phy.txt
17226 F:      Documentation/driver-api/phy/samsung-usb2.rst
17227 F:      drivers/phy/samsung/phy-exynos4210-usb2.c
17228 F:      drivers/phy/samsung/phy-exynos4x12-usb2.c
17229 F:      drivers/phy/samsung/phy-exynos5250-usb2.c
17230 F:      drivers/phy/samsung/phy-s5pv210-usb2.c
17231 F:      drivers/phy/samsung/phy-samsung-usb2.c
17232 F:      drivers/phy/samsung/phy-samsung-usb2.h
17233
17234 SANCLOUD BEAGLEBONE ENHANCED DEVICE TREE
17235 M:      Paul Barker <paul.barker@sancloud.com>
17236 R:      Marc Murphy <marc.murphy@sancloud.com>
17237 S:      Supported
17238 F:      arch/arm/boot/dts/am335x-sancloud*
17239
17240 SC1200 WDT DRIVER
17241 M:      Zwane Mwaikambo <zwanem@gmail.com>
17242 S:      Maintained
17243 F:      drivers/watchdog/sc1200wdt.c
17244
17245 SCHEDULER
17246 M:      Ingo Molnar <mingo@redhat.com>
17247 M:      Peter Zijlstra <peterz@infradead.org>
17248 M:      Juri Lelli <juri.lelli@redhat.com> (SCHED_DEADLINE)
17249 M:      Vincent Guittot <vincent.guittot@linaro.org> (SCHED_NORMAL)
17250 R:      Dietmar Eggemann <dietmar.eggemann@arm.com> (SCHED_NORMAL)
17251 R:      Steven Rostedt <rostedt@goodmis.org> (SCHED_FIFO/SCHED_RR)
17252 R:      Ben Segall <bsegall@google.com> (CONFIG_CFS_BANDWIDTH)
17253 R:      Mel Gorman <mgorman@suse.de> (CONFIG_NUMA_BALANCING)
17254 R:      Daniel Bristot de Oliveira <bristot@redhat.com> (SCHED_DEADLINE)
17255 L:      linux-kernel@vger.kernel.org
17256 S:      Maintained
17257 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
17258 F:      include/linux/preempt.h
17259 F:      include/linux/sched.h
17260 F:      include/linux/wait.h
17261 F:      include/uapi/linux/sched.h
17262 F:      kernel/sched/
17263
17264 SCR24X CHIP CARD INTERFACE DRIVER
17265 M:      Lubomir Rintel <lkundrak@v3.sk>
17266 S:      Supported
17267 F:      drivers/char/pcmcia/scr24x_cs.c
17268
17269 SCSI RDMA PROTOCOL (SRP) INITIATOR
17270 M:      Bart Van Assche <bvanassche@acm.org>
17271 L:      linux-rdma@vger.kernel.org
17272 S:      Supported
17273 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
17274 F:      drivers/infiniband/ulp/srp/
17275 F:      include/scsi/srp.h
17276
17277 SCSI RDMA PROTOCOL (SRP) TARGET
17278 M:      Bart Van Assche <bvanassche@acm.org>
17279 L:      linux-rdma@vger.kernel.org
17280 L:      target-devel@vger.kernel.org
17281 S:      Supported
17282 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
17283 F:      drivers/infiniband/ulp/srpt/
17284
17285 SCSI SG DRIVER
17286 M:      Doug Gilbert <dgilbert@interlog.com>
17287 L:      linux-scsi@vger.kernel.org
17288 S:      Maintained
17289 W:      http://sg.danny.cz/sg
17290 F:      Documentation/scsi/scsi-generic.rst
17291 F:      drivers/scsi/sg.c
17292 F:      include/scsi/sg.h
17293
17294 SCSI SUBSYSTEM
17295 M:      "James E.J. Bottomley" <jejb@linux.ibm.com>
17296 M:      "Martin K. Petersen" <martin.petersen@oracle.com>
17297 L:      linux-scsi@vger.kernel.org
17298 S:      Maintained
17299 Q:      https://patchwork.kernel.org/project/linux-scsi/list/
17300 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git
17301 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
17302 F:      Documentation/devicetree/bindings/scsi/
17303 F:      drivers/scsi/
17304 F:      include/scsi/
17305
17306 SCSI TAPE DRIVER
17307 M:      Kai Mäkisara <Kai.Makisara@kolumbus.fi>
17308 L:      linux-scsi@vger.kernel.org
17309 S:      Maintained
17310 F:      Documentation/scsi/st.rst
17311 F:      drivers/scsi/st.*
17312 F:      drivers/scsi/st_*.h
17313
17314 SCSI TARGET CORE USER DRIVER
17315 M:      Bodo Stroesser <bostroesser@gmail.com>
17316 L:      linux-scsi@vger.kernel.org
17317 L:      target-devel@vger.kernel.org
17318 S:      Supported
17319 F:      Documentation/target/tcmu-design.rst
17320 F:      drivers/target/target_core_user.c
17321 F:      include/uapi/linux/target_core_user.h
17322
17323 SCSI TARGET SUBSYSTEM
17324 M:      "Martin K. Petersen" <martin.petersen@oracle.com>
17325 L:      linux-scsi@vger.kernel.org
17326 L:      target-devel@vger.kernel.org
17327 S:      Supported
17328 W:      http://www.linux-iscsi.org
17329 Q:      https://patchwork.kernel.org/project/target-devel/list/
17330 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
17331 F:      Documentation/target/
17332 F:      drivers/target/
17333 F:      include/target/
17334
17335 SCTP PROTOCOL
17336 M:      Vlad Yasevich <vyasevich@gmail.com>
17337 M:      Neil Horman <nhorman@tuxdriver.com>
17338 M:      Marcelo Ricardo Leitner <marcelo.leitner@gmail.com>
17339 L:      linux-sctp@vger.kernel.org
17340 S:      Maintained
17341 W:      http://lksctp.sourceforge.net
17342 F:      Documentation/networking/sctp.rst
17343 F:      include/linux/sctp.h
17344 F:      include/net/sctp/
17345 F:      include/uapi/linux/sctp.h
17346 F:      net/sctp/
17347
17348 SCx200 CPU SUPPORT
17349 M:      Jim Cromie <jim.cromie@gmail.com>
17350 S:      Odd Fixes
17351 F:      Documentation/i2c/busses/scx200_acb.rst
17352 F:      arch/x86/platform/scx200/
17353 F:      drivers/i2c/busses/scx200*
17354 F:      drivers/mtd/maps/scx200_docflash.c
17355 F:      drivers/watchdog/scx200_wdt.c
17356 F:      include/linux/scx200.h
17357
17358 SCx200 GPIO DRIVER
17359 M:      Jim Cromie <jim.cromie@gmail.com>
17360 S:      Maintained
17361 F:      drivers/char/scx200_gpio.c
17362 F:      include/linux/scx200_gpio.h
17363
17364 SCx200 HRT CLOCKSOURCE DRIVER
17365 M:      Jim Cromie <jim.cromie@gmail.com>
17366 S:      Maintained
17367 F:      drivers/clocksource/scx200_hrt.c
17368
17369 SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
17370 M:      Sascha Sommer <saschasommer@freenet.de>
17371 L:      sdricohcs-devel@lists.sourceforge.net (subscribers-only)
17372 S:      Maintained
17373 F:      drivers/mmc/host/sdricoh_cs.c
17374
17375 SECO BOARDS CEC DRIVER
17376 M:      Ettore Chimenti <ek5.chimenti@gmail.com>
17377 S:      Maintained
17378 F:      drivers/media/cec/platform/seco/seco-cec.c
17379 F:      drivers/media/cec/platform/seco/seco-cec.h
17380
17381 SECURE COMPUTING
17382 M:      Kees Cook <keescook@chromium.org>
17383 R:      Andy Lutomirski <luto@amacapital.net>
17384 R:      Will Drewry <wad@chromium.org>
17385 S:      Supported
17386 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git seccomp
17387 F:      Documentation/userspace-api/seccomp_filter.rst
17388 F:      include/linux/seccomp.h
17389 F:      include/uapi/linux/seccomp.h
17390 F:      kernel/seccomp.c
17391 F:      tools/testing/selftests/kselftest_harness.h
17392 F:      tools/testing/selftests/seccomp/*
17393 K:      \bsecure_computing
17394 K:      \bTIF_SECCOMP\b
17395
17396 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) Broadcom BRCMSTB DRIVER
17397 M:      Al Cooper <alcooperx@gmail.com>
17398 L:      linux-mmc@vger.kernel.org
17399 L:      bcm-kernel-feedback-list@broadcom.com
17400 S:      Maintained
17401 F:      drivers/mmc/host/sdhci-brcmstb*
17402
17403 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
17404 M:      Adrian Hunter <adrian.hunter@intel.com>
17405 L:      linux-mmc@vger.kernel.org
17406 S:      Maintained
17407 F:      drivers/mmc/host/sdhci*
17408
17409 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) MICROCHIP DRIVER
17410 M:      Eugen Hristev <eugen.hristev@microchip.com>
17411 L:      linux-mmc@vger.kernel.org
17412 S:      Supported
17413 F:      drivers/mmc/host/sdhci-of-at91.c
17414
17415 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
17416 M:      Ben Dooks <ben-linux@fluff.org>
17417 M:      Jaehoon Chung <jh80.chung@samsung.com>
17418 L:      linux-mmc@vger.kernel.org
17419 S:      Maintained
17420 F:      drivers/mmc/host/sdhci-s3c*
17421
17422 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
17423 M:      Viresh Kumar <vireshk@kernel.org>
17424 L:      linux-mmc@vger.kernel.org
17425 S:      Maintained
17426 F:      drivers/mmc/host/sdhci-spear.c
17427
17428 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) TI OMAP DRIVER
17429 M:      Kishon Vijay Abraham I <kishon@ti.com>
17430 L:      linux-mmc@vger.kernel.org
17431 S:      Maintained
17432 F:      drivers/mmc/host/sdhci-omap.c
17433
17434 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) NXP i.MX DRIVER
17435 M:      Haibo Chen <haibo.chen@nxp.com>
17436 L:      linux-imx@nxp.com
17437 L:      linux-mmc@vger.kernel.org
17438 S:      Maintained
17439 F:      drivers/mmc/host/sdhci-esdhc-imx.c
17440
17441 SECURE ENCRYPTING DEVICE (SED) OPAL DRIVER
17442 M:      Jonathan Derrick <jonathan.derrick@intel.com>
17443 M:      Revanth Rajashekar <revanth.rajashekar@intel.com>
17444 L:      linux-block@vger.kernel.org
17445 S:      Supported
17446 F:      block/opal_proto.h
17447 F:      block/sed*
17448 F:      include/linux/sed*
17449 F:      include/uapi/linux/sed*
17450
17451 SECURITY CONTACT
17452 M:      Security Officers <security@kernel.org>
17453 S:      Supported
17454 F:      Documentation/admin-guide/security-bugs.rst
17455
17456 SECURITY SUBSYSTEM
17457 M:      James Morris <jmorris@namei.org>
17458 M:      "Serge E. Hallyn" <serge@hallyn.com>
17459 L:      linux-security-module@vger.kernel.org (suggested Cc:)
17460 S:      Supported
17461 W:      http://kernsec.org/
17462 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
17463 F:      security/
17464 X:      security/selinux/
17465
17466 SELINUX SECURITY MODULE
17467 M:      Paul Moore <paul@paul-moore.com>
17468 M:      Stephen Smalley <stephen.smalley.work@gmail.com>
17469 M:      Eric Paris <eparis@parisplace.org>
17470 L:      selinux@vger.kernel.org
17471 S:      Supported
17472 W:      https://selinuxproject.org
17473 W:      https://github.com/SELinuxProject
17474 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/selinux.git
17475 F:      Documentation/ABI/obsolete/sysfs-selinux-checkreqprot
17476 F:      Documentation/ABI/obsolete/sysfs-selinux-disable
17477 F:      Documentation/admin-guide/LSM/SELinux.rst
17478 F:      include/trace/events/avc.h
17479 F:      include/uapi/linux/selinux_netlink.h
17480 F:      scripts/selinux/
17481 F:      security/selinux/
17482
17483 SENSABLE PHANTOM
17484 M:      Jiri Slaby <jirislaby@kernel.org>
17485 S:      Maintained
17486 F:      drivers/misc/phantom.c
17487 F:      include/uapi/linux/phantom.h
17488
17489 SENSEAIR SUNRISE 006-0-0007
17490 M:      Jacopo Mondi <jacopo@jmondi.org>
17491 S:      Maintained
17492 F:      Documentation/ABI/testing/sysfs-bus-iio-chemical-sunrise-co2
17493 F:      Documentation/devicetree/bindings/iio/chemical/senseair,sunrise.yaml
17494 F:      drivers/iio/chemical/sunrise_co2.c
17495
17496 SENSIRION SCD30 CARBON DIOXIDE SENSOR DRIVER
17497 M:      Tomasz Duszynski <tomasz.duszynski@octakon.com>
17498 S:      Maintained
17499 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,scd30.yaml
17500 F:      drivers/iio/chemical/scd30.h
17501 F:      drivers/iio/chemical/scd30_core.c
17502 F:      drivers/iio/chemical/scd30_i2c.c
17503 F:      drivers/iio/chemical/scd30_serial.c
17504
17505 SENSIRION SCD4X CARBON DIOXIDE SENSOR DRIVER
17506 M:      Roan van Dijk <roan@protonic.nl>
17507 S:      Maintained
17508 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,scd4x.yaml
17509 F:      drivers/iio/chemical/scd4x.c
17510
17511 SENSIRION SGP40 GAS SENSOR DRIVER
17512 M:      Andreas Klinger <ak@it-klinger.de>
17513 S:      Maintained
17514 F:      Documentation/ABI/testing/sysfs-bus-iio-chemical-sgp40
17515 F:      drivers/iio/chemical/sgp40.c
17516
17517 SENSIRION SPS30 AIR POLLUTION SENSOR DRIVER
17518 M:      Tomasz Duszynski <tduszyns@gmail.com>
17519 S:      Maintained
17520 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,sps30.yaml
17521 F:      drivers/iio/chemical/sps30.c
17522 F:      drivers/iio/chemical/sps30_i2c.c
17523 F:      drivers/iio/chemical/sps30_serial.c
17524
17525 SERIAL DEVICE BUS
17526 M:      Rob Herring <robh@kernel.org>
17527 L:      linux-serial@vger.kernel.org
17528 S:      Maintained
17529 F:      Documentation/devicetree/bindings/serial/serial.yaml
17530 F:      drivers/tty/serdev/
17531 F:      include/linux/serdev.h
17532
17533 SERIAL DRIVERS
17534 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
17535 L:      linux-serial@vger.kernel.org
17536 S:      Maintained
17537 F:      Documentation/devicetree/bindings/serial/
17538 F:      drivers/tty/serial/
17539
17540 SERIAL IR RECEIVER
17541 M:      Sean Young <sean@mess.org>
17542 L:      linux-media@vger.kernel.org
17543 S:      Maintained
17544 F:      drivers/media/rc/serial_ir.c
17545
17546 SERIAL LOW-POWER INTER-CHIP MEDIA BUS (SLIMbus)
17547 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
17548 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17549 S:      Maintained
17550 F:      Documentation/devicetree/bindings/slimbus/
17551 F:      drivers/slimbus/
17552 F:      include/linux/slimbus.h
17553
17554 SFC NETWORK DRIVER
17555 M:      Edward Cree <ecree.xilinx@gmail.com>
17556 M:      Martin Habets <habetsm.xilinx@gmail.com>
17557 L:      netdev@vger.kernel.org
17558 S:      Supported
17559 F:      drivers/net/ethernet/sfc/
17560
17561 SFF/SFP/SFP+ MODULE SUPPORT
17562 M:      Russell King <linux@armlinux.org.uk>
17563 L:      netdev@vger.kernel.org
17564 S:      Maintained
17565 F:      drivers/net/phy/phylink.c
17566 F:      drivers/net/phy/sfp*
17567 F:      include/linux/mdio/mdio-i2c.h
17568 F:      include/linux/phylink.h
17569 F:      include/linux/sfp.h
17570 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)
17571
17572 SGI GRU DRIVER
17573 M:      Dimitri Sivanich <dimitri.sivanich@hpe.com>
17574 S:      Maintained
17575 F:      drivers/misc/sgi-gru/
17576
17577 SGI XP/XPC/XPNET DRIVER
17578 M:      Robin Holt <robinmholt@gmail.com>
17579 M:      Steve Wahl <steve.wahl@hpe.com>
17580 R:      Mike Travis <mike.travis@hpe.com>
17581 S:      Maintained
17582 F:      drivers/misc/sgi-xp/
17583
17584 SHARED MEMORY COMMUNICATIONS (SMC) SOCKETS
17585 M:      Karsten Graul <kgraul@linux.ibm.com>
17586 L:      linux-s390@vger.kernel.org
17587 S:      Supported
17588 W:      http://www.ibm.com/developerworks/linux/linux390/
17589 F:      net/smc/
17590
17591 SHARP GP2AP002A00F/GP2AP002S00F SENSOR DRIVER
17592 M:      Linus Walleij <linus.walleij@linaro.org>
17593 L:      linux-iio@vger.kernel.org
17594 S:      Maintained
17595 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
17596 F:      Documentation/devicetree/bindings/iio/light/sharp,gp2ap002.yaml
17597 F:      drivers/iio/light/gp2ap002.c
17598
17599 SHARP RJ54N1CB0C SENSOR DRIVER
17600 M:      Jacopo Mondi <jacopo@jmondi.org>
17601 L:      linux-media@vger.kernel.org
17602 S:      Odd fixes
17603 T:      git git://linuxtv.org/media_tree.git
17604 F:      drivers/media/i2c/rj54n1cb0c.c
17605 F:      include/media/i2c/rj54n1cb0c.h
17606
17607 SH_VOU V4L2 OUTPUT DRIVER
17608 L:      linux-media@vger.kernel.org
17609 S:      Orphan
17610 F:      drivers/media/platform/renesas/sh_vou.c
17611 F:      include/media/drv-intf/sh_vou.h
17612
17613 SI2157 MEDIA DRIVER
17614 M:      Antti Palosaari <crope@iki.fi>
17615 L:      linux-media@vger.kernel.org
17616 S:      Maintained
17617 W:      https://linuxtv.org
17618 W:      http://palosaari.fi/linux/
17619 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17620 T:      git git://linuxtv.org/anttip/media_tree.git
17621 F:      drivers/media/tuners/si2157*
17622
17623 SI2165 MEDIA DRIVER
17624 M:      Matthias Schwarzott <zzam@gentoo.org>
17625 L:      linux-media@vger.kernel.org
17626 S:      Maintained
17627 W:      https://linuxtv.org
17628 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17629 F:      drivers/media/dvb-frontends/si2165*
17630
17631 SI2168 MEDIA DRIVER
17632 M:      Antti Palosaari <crope@iki.fi>
17633 L:      linux-media@vger.kernel.org
17634 S:      Maintained
17635 W:      https://linuxtv.org
17636 W:      http://palosaari.fi/linux/
17637 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17638 T:      git git://linuxtv.org/anttip/media_tree.git
17639 F:      drivers/media/dvb-frontends/si2168*
17640
17641 SI470X FM RADIO RECEIVER I2C DRIVER
17642 M:      Hans Verkuil <hverkuil@xs4all.nl>
17643 L:      linux-media@vger.kernel.org
17644 S:      Odd Fixes
17645 W:      https://linuxtv.org
17646 T:      git git://linuxtv.org/media_tree.git
17647 F:      drivers/media/radio/si470x/radio-si470x-i2c.c
17648
17649 SI470X FM RADIO RECEIVER USB DRIVER
17650 M:      Hans Verkuil <hverkuil@xs4all.nl>
17651 L:      linux-media@vger.kernel.org
17652 S:      Maintained
17653 W:      https://linuxtv.org
17654 T:      git git://linuxtv.org/media_tree.git
17655 F:      drivers/media/radio/si470x/radio-si470x-common.c
17656 F:      drivers/media/radio/si470x/radio-si470x-usb.c
17657 F:      drivers/media/radio/si470x/radio-si470x.h
17658
17659 SI4713 FM RADIO TRANSMITTER I2C DRIVER
17660 M:      Eduardo Valentin <edubezval@gmail.com>
17661 L:      linux-media@vger.kernel.org
17662 S:      Odd Fixes
17663 W:      https://linuxtv.org
17664 T:      git git://linuxtv.org/media_tree.git
17665 F:      drivers/media/radio/si4713/si4713.?
17666
17667 SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
17668 M:      Eduardo Valentin <edubezval@gmail.com>
17669 L:      linux-media@vger.kernel.org
17670 S:      Odd Fixes
17671 W:      https://linuxtv.org
17672 T:      git git://linuxtv.org/media_tree.git
17673 F:      drivers/media/radio/si4713/radio-platform-si4713.c
17674
17675 SI4713 FM RADIO TRANSMITTER USB DRIVER
17676 M:      Hans Verkuil <hverkuil@xs4all.nl>
17677 L:      linux-media@vger.kernel.org
17678 S:      Maintained
17679 W:      https://linuxtv.org
17680 T:      git git://linuxtv.org/media_tree.git
17681 F:      drivers/media/radio/si4713/radio-usb-si4713.c
17682
17683 SIANO DVB DRIVER
17684 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
17685 L:      linux-media@vger.kernel.org
17686 S:      Odd fixes
17687 W:      https://linuxtv.org
17688 T:      git git://linuxtv.org/media_tree.git
17689 F:      drivers/media/common/siano/
17690 F:      drivers/media/mmc/siano/
17691 F:      drivers/media/usb/siano/
17692 F:      drivers/media/usb/siano/
17693
17694 SIFIVE DRIVERS
17695 M:      Palmer Dabbelt <palmer@dabbelt.com>
17696 M:      Paul Walmsley <paul.walmsley@sifive.com>
17697 L:      linux-riscv@lists.infradead.org
17698 S:      Supported
17699 T:      git git://github.com/sifive/riscv-linux.git
17700 N:      sifive
17701 K:      [^@]sifive
17702
17703 SIFIVE FU540 SYSTEM-ON-CHIP
17704 M:      Paul Walmsley <paul.walmsley@sifive.com>
17705 M:      Palmer Dabbelt <palmer@dabbelt.com>
17706 L:      linux-riscv@lists.infradead.org
17707 S:      Supported
17708 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pjw/sifive.git
17709 N:      fu540
17710 K:      fu540
17711
17712 SIFIVE PDMA DRIVER
17713 M:      Green Wan <green.wan@sifive.com>
17714 S:      Maintained
17715 F:      Documentation/devicetree/bindings/dma/sifive,fu540-c000-pdma.yaml
17716 F:      drivers/dma/sf-pdma/
17717
17718 SILEAD TOUCHSCREEN DRIVER
17719 M:      Hans de Goede <hdegoede@redhat.com>
17720 L:      linux-input@vger.kernel.org
17721 L:      platform-driver-x86@vger.kernel.org
17722 S:      Maintained
17723 F:      drivers/input/touchscreen/silead.c
17724 F:      drivers/platform/x86/touchscreen_dmi.c
17725
17726 SILICON LABS WIRELESS DRIVERS (for WFxxx series)
17727 M:      Jérôme Pouiller <jerome.pouiller@silabs.com>
17728 S:      Supported
17729 F:      drivers/staging/wfx/
17730
17731 SILICON MOTION SM712 FRAME BUFFER DRIVER
17732 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
17733 M:      Teddy Wang <teddy.wang@siliconmotion.com>
17734 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
17735 L:      linux-fbdev@vger.kernel.org
17736 S:      Maintained
17737 F:      Documentation/fb/sm712fb.rst
17738 F:      drivers/video/fbdev/sm712*
17739
17740 SILVACO I3C DUAL-ROLE MASTER
17741 M:      Miquel Raynal <miquel.raynal@bootlin.com>
17742 M:      Conor Culhane <conor.culhane@silvaco.com>
17743 L:      linux-i3c@lists.infradead.org (moderated for non-subscribers)
17744 S:      Maintained
17745 F:      Documentation/devicetree/bindings/i3c/silvaco,i3c-master.yaml
17746 F:      drivers/i3c/master/svc-i3c-master.c
17747
17748 SIMPLEFB FB DRIVER
17749 M:      Hans de Goede <hdegoede@redhat.com>
17750 L:      linux-fbdev@vger.kernel.org
17751 S:      Maintained
17752 F:      Documentation/devicetree/bindings/display/simple-framebuffer.yaml
17753 F:      drivers/video/fbdev/simplefb.c
17754 F:      include/linux/platform_data/simplefb.h
17755
17756 SIMTEC EB110ATX (Chalice CATS)
17757 M:      Simtec Linux Team <linux@simtec.co.uk>
17758 S:      Supported
17759 W:      http://www.simtec.co.uk/products/EB110ATX/
17760
17761 SIMTEC EB2410ITX (BAST)
17762 M:      Simtec Linux Team <linux@simtec.co.uk>
17763 S:      Supported
17764 W:      http://www.simtec.co.uk/products/EB2410ITX/
17765 F:      arch/arm/mach-s3c/bast-ide.c
17766 F:      arch/arm/mach-s3c/bast-irq.c
17767 F:      arch/arm/mach-s3c/mach-bast.c
17768
17769 SIOX
17770 M:      Thorsten Scherer <t.scherer@eckelmann.de>
17771 M:      Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
17772 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
17773 S:      Supported
17774 F:      drivers/gpio/gpio-siox.c
17775 F:      drivers/siox/*
17776 F:      include/trace/events/siox.h
17777
17778 SIPHASH PRF ROUTINES
17779 M:      Jason A. Donenfeld <Jason@zx2c4.com>
17780 S:      Maintained
17781 F:      include/linux/siphash.h
17782 F:      lib/siphash.c
17783 F:      lib/test_siphash.c
17784
17785 SIS 190 ETHERNET DRIVER
17786 M:      Francois Romieu <romieu@fr.zoreil.com>
17787 L:      netdev@vger.kernel.org
17788 S:      Maintained
17789 F:      drivers/net/ethernet/sis/sis190.c
17790
17791 SIS 900/7016 FAST ETHERNET DRIVER
17792 M:      Daniele Venzano <venza@brownhat.org>
17793 L:      netdev@vger.kernel.org
17794 S:      Maintained
17795 W:      http://www.brownhat.org/sis900.html
17796 F:      drivers/net/ethernet/sis/sis900.*
17797
17798 SIS FRAMEBUFFER DRIVER
17799 M:      Thomas Winischhofer <thomas@winischhofer.net>
17800 S:      Maintained
17801 W:      http://www.winischhofer.net/linuxsisvga.shtml
17802 F:      Documentation/fb/sisfb.rst
17803 F:      drivers/video/fbdev/sis/
17804 F:      include/video/sisfb.h
17805
17806 SIS I2C TOUCHSCREEN DRIVER
17807 M:      Mika Penttilä <mika.penttila@nextfour.com>
17808 L:      linux-input@vger.kernel.org
17809 S:      Maintained
17810 F:      Documentation/devicetree/bindings/input/touchscreen/sis_i2c.txt
17811 F:      drivers/input/touchscreen/sis_i2c.c
17812
17813 SIS USB2VGA DRIVER
17814 M:      Thomas Winischhofer <thomas@winischhofer.net>
17815 S:      Maintained
17816 W:      http://www.winischhofer.at/linuxsisusbvga.shtml
17817 F:      drivers/usb/misc/sisusbvga/
17818
17819 SL28 CPLD MFD DRIVER
17820 M:      Michael Walle <michael@walle.cc>
17821 S:      Maintained
17822 F:      Documentation/devicetree/bindings/gpio/kontron,sl28cpld-gpio.yaml
17823 F:      Documentation/devicetree/bindings/hwmon/kontron,sl28cpld-hwmon.yaml
17824 F:      Documentation/devicetree/bindings/interrupt-controller/kontron,sl28cpld-intc.yaml
17825 F:      Documentation/devicetree/bindings/mfd/kontron,sl28cpld.yaml
17826 F:      Documentation/devicetree/bindings/pwm/kontron,sl28cpld-pwm.yaml
17827 F:      Documentation/devicetree/bindings/watchdog/kontron,sl28cpld-wdt.yaml
17828 F:      drivers/gpio/gpio-sl28cpld.c
17829 F:      drivers/hwmon/sl28cpld-hwmon.c
17830 F:      drivers/irqchip/irq-sl28cpld.c
17831 F:      drivers/pwm/pwm-sl28cpld.c
17832 F:      drivers/watchdog/sl28cpld_wdt.c
17833
17834 SLAB ALLOCATOR
17835 M:      Christoph Lameter <cl@linux.com>
17836 M:      Pekka Enberg <penberg@kernel.org>
17837 M:      David Rientjes <rientjes@google.com>
17838 M:      Joonsoo Kim <iamjoonsoo.kim@lge.com>
17839 M:      Andrew Morton <akpm@linux-foundation.org>
17840 M:      Vlastimil Babka <vbabka@suse.cz>
17841 R:      Roman Gushchin <roman.gushchin@linux.dev>
17842 L:      linux-mm@kvack.org
17843 S:      Maintained
17844 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vbabka/slab.git
17845 F:      include/linux/sl?b*.h
17846 F:      mm/sl?b*
17847
17848 SLEEPABLE READ-COPY UPDATE (SRCU)
17849 M:      Lai Jiangshan <jiangshanlai@gmail.com>
17850 M:      "Paul E. McKenney" <paulmck@kernel.org>
17851 M:      Josh Triplett <josh@joshtriplett.org>
17852 R:      Steven Rostedt <rostedt@goodmis.org>
17853 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
17854 L:      rcu@vger.kernel.org
17855 S:      Supported
17856 W:      http://www.rdrop.com/users/paulmck/RCU/
17857 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
17858 F:      include/linux/srcu*.h
17859 F:      kernel/rcu/srcu*.c
17860
17861 SMACK SECURITY MODULE
17862 M:      Casey Schaufler <casey@schaufler-ca.com>
17863 L:      linux-security-module@vger.kernel.org
17864 S:      Maintained
17865 W:      http://schaufler-ca.com
17866 T:      git git://github.com/cschaufler/smack-next
17867 F:      Documentation/admin-guide/LSM/Smack.rst
17868 F:      security/smack/
17869
17870 SMC91x ETHERNET DRIVER
17871 M:      Nicolas Pitre <nico@fluxnic.net>
17872 S:      Odd Fixes
17873 F:      drivers/net/ethernet/smsc/smc91x.*
17874
17875 SECURE MONITOR CALL(SMC) CALLING CONVENTION (SMCCC)
17876 M:      Mark Rutland <mark.rutland@arm.com>
17877 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
17878 M:      Sudeep Holla <sudeep.holla@arm.com>
17879 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
17880 S:      Maintained
17881 F:      drivers/firmware/smccc/
17882 F:      include/linux/arm-smccc.h
17883
17884 SMM665 HARDWARE MONITOR DRIVER
17885 M:      Guenter Roeck <linux@roeck-us.net>
17886 L:      linux-hwmon@vger.kernel.org
17887 S:      Maintained
17888 F:      Documentation/hwmon/smm665.rst
17889 F:      drivers/hwmon/smm665.c
17890
17891 SMSC EMC2103 HARDWARE MONITOR DRIVER
17892 M:      Steve Glendinning <steve.glendinning@shawell.net>
17893 L:      linux-hwmon@vger.kernel.org
17894 S:      Maintained
17895 F:      Documentation/hwmon/emc2103.rst
17896 F:      drivers/hwmon/emc2103.c
17897
17898 SMSC SCH5627 HARDWARE MONITOR DRIVER
17899 M:      Hans de Goede <hdegoede@redhat.com>
17900 L:      linux-hwmon@vger.kernel.org
17901 S:      Supported
17902 F:      Documentation/hwmon/sch5627.rst
17903 F:      drivers/hwmon/sch5627.c
17904
17905 SMSC UFX6000 and UFX7000 USB to VGA DRIVER
17906 M:      Steve Glendinning <steve.glendinning@shawell.net>
17907 L:      linux-fbdev@vger.kernel.org
17908 S:      Maintained
17909 F:      drivers/video/fbdev/smscufx.c
17910
17911 SMSC47B397 HARDWARE MONITOR DRIVER
17912 M:      Jean Delvare <jdelvare@suse.com>
17913 L:      linux-hwmon@vger.kernel.org
17914 S:      Maintained
17915 F:      Documentation/hwmon/smsc47b397.rst
17916 F:      drivers/hwmon/smsc47b397.c
17917
17918 SMSC911x ETHERNET DRIVER
17919 M:      Steve Glendinning <steve.glendinning@shawell.net>
17920 L:      netdev@vger.kernel.org
17921 S:      Maintained
17922 F:      drivers/net/ethernet/smsc/smsc911x.*
17923 F:      include/linux/smsc911x.h
17924
17925 SMSC9420 PCI ETHERNET DRIVER
17926 M:      Steve Glendinning <steve.glendinning@shawell.net>
17927 L:      netdev@vger.kernel.org
17928 S:      Maintained
17929 F:      drivers/net/ethernet/smsc/smsc9420.*
17930
17931 SOCIONEXT (SNI) AVE NETWORK DRIVER
17932 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
17933 L:      netdev@vger.kernel.org
17934 S:      Maintained
17935 F:      Documentation/devicetree/bindings/net/socionext,uniphier-ave4.yaml
17936 F:      drivers/net/ethernet/socionext/sni_ave.c
17937
17938 SOCIONEXT (SNI) NETSEC NETWORK DRIVER
17939 M:      Jassi Brar <jaswinder.singh@linaro.org>
17940 M:      Ilias Apalodimas <ilias.apalodimas@linaro.org>
17941 L:      netdev@vger.kernel.org
17942 S:      Maintained
17943 F:      Documentation/devicetree/bindings/net/socionext-netsec.txt
17944 F:      drivers/net/ethernet/socionext/netsec.c
17945
17946 SOCIONEXT (SNI) Synquacer SPI DRIVER
17947 M:      Masahisa Kojima <masahisa.kojima@linaro.org>
17948 M:      Jassi Brar <jaswinder.singh@linaro.org>
17949 L:      linux-spi@vger.kernel.org
17950 S:      Maintained
17951 F:      Documentation/devicetree/bindings/spi/spi-synquacer.txt
17952 F:      drivers/spi/spi-synquacer.c
17953
17954 SOCIONEXT SYNQUACER I2C DRIVER
17955 M:      Ard Biesheuvel <ardb@kernel.org>
17956 L:      linux-i2c@vger.kernel.org
17957 S:      Maintained
17958 F:      Documentation/devicetree/bindings/i2c/i2c-synquacer.txt
17959 F:      drivers/i2c/busses/i2c-synquacer.c
17960
17961 SOCIONEXT UNIPHIER SOUND DRIVER
17962 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17963 S:      Orphan
17964 F:      sound/soc/uniphier/
17965
17966 SOEKRIS NET48XX LED SUPPORT
17967 M:      Chris Boot <bootc@bootc.net>
17968 S:      Maintained
17969 F:      drivers/leds/leds-net48xx.c
17970
17971 SOFT-IWARP DRIVER (siw)
17972 M:      Bernard Metzler <bmt@zurich.ibm.com>
17973 L:      linux-rdma@vger.kernel.org
17974 S:      Supported
17975 F:      drivers/infiniband/sw/siw/
17976 F:      include/uapi/rdma/siw-abi.h
17977
17978 SOFT-ROCE DRIVER (rxe)
17979 M:      Zhu Yanjun <zyjzyj2000@gmail.com>
17980 L:      linux-rdma@vger.kernel.org
17981 S:      Supported
17982 F:      drivers/infiniband/sw/rxe/
17983 F:      include/uapi/rdma/rdma_user_rxe.h
17984
17985 SOFTLOGIC 6x10 MPEG CODEC
17986 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
17987 M:      Anton Sviridenko <anton@corp.bluecherry.net>
17988 M:      Andrey Utkin <andrey_utkin@fastmail.com>
17989 M:      Ismael Luceno <ismael@iodev.co.uk>
17990 L:      linux-media@vger.kernel.org
17991 S:      Supported
17992 F:      drivers/media/pci/solo6x10/
17993
17994 SOFTWARE DELEGATED EXCEPTION INTERFACE (SDEI)
17995 M:      James Morse <james.morse@arm.com>
17996 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
17997 S:      Maintained
17998 F:      Documentation/devicetree/bindings/arm/firmware/sdei.txt
17999 F:      drivers/firmware/arm_sdei.c
18000 F:      include/linux/arm_sdei.h
18001 F:      include/uapi/linux/arm_sdei.h
18002
18003 SOFTWARE NODES AND DEVICE PROPERTIES
18004 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
18005 R:      Daniel Scally <djrscally@gmail.com>
18006 R:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
18007 R:      Sakari Ailus <sakari.ailus@linux.intel.com>
18008 L:      linux-acpi@vger.kernel.org
18009 S:      Maintained
18010 F:      drivers/base/property.c
18011 F:      drivers/base/swnode.c
18012 F:      include/linux/fwnode.h
18013 F:      include/linux/property.h
18014
18015 SOFTWARE RAID (Multiple Disks) SUPPORT
18016 M:      Song Liu <song@kernel.org>
18017 L:      linux-raid@vger.kernel.org
18018 S:      Supported
18019 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/song/md.git
18020 F:      drivers/md/Kconfig
18021 F:      drivers/md/Makefile
18022 F:      drivers/md/md*
18023 F:      drivers/md/raid*
18024 F:      include/linux/raid/
18025 F:      include/uapi/linux/raid/
18026
18027 SOLIDRUN CLEARFOG SUPPORT
18028 M:      Russell King <linux@armlinux.org.uk>
18029 S:      Maintained
18030 F:      arch/arm/boot/dts/armada-388-clearfog*
18031 F:      arch/arm/boot/dts/armada-38x-solidrun-*
18032
18033 SOLIDRUN CUBOX-I/HUMMINGBOARD SUPPORT
18034 M:      Russell King <linux@armlinux.org.uk>
18035 S:      Maintained
18036 F:      arch/arm/boot/dts/imx6*-cubox-i*
18037 F:      arch/arm/boot/dts/imx6*-hummingboard*
18038 F:      arch/arm/boot/dts/imx6*-sr-*
18039
18040 SONIC NETWORK DRIVER
18041 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
18042 L:      netdev@vger.kernel.org
18043 S:      Maintained
18044 F:      drivers/net/ethernet/natsemi/sonic.*
18045
18046 SONICS SILICON BACKPLANE DRIVER (SSB)
18047 M:      Michael Buesch <m@bues.ch>
18048 L:      linux-wireless@vger.kernel.org
18049 S:      Maintained
18050 F:      drivers/ssb/
18051 F:      include/linux/ssb/
18052
18053 SONY IMX208 SENSOR DRIVER
18054 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
18055 L:      linux-media@vger.kernel.org
18056 S:      Maintained
18057 T:      git git://linuxtv.org/media_tree.git
18058 F:      drivers/media/i2c/imx208.c
18059
18060 SONY IMX214 SENSOR DRIVER
18061 M:      Ricardo Ribalda <ribalda@kernel.org>
18062 L:      linux-media@vger.kernel.org
18063 S:      Maintained
18064 T:      git git://linuxtv.org/media_tree.git
18065 F:      Documentation/devicetree/bindings/media/i2c/sony,imx214.yaml
18066 F:      drivers/media/i2c/imx214.c
18067
18068 SONY IMX219 SENSOR DRIVER
18069 M:      Dave Stevenson <dave.stevenson@raspberrypi.com>
18070 L:      linux-media@vger.kernel.org
18071 S:      Maintained
18072 T:      git git://linuxtv.org/media_tree.git
18073 F:      Documentation/devicetree/bindings/media/i2c/imx219.yaml
18074 F:      drivers/media/i2c/imx219.c
18075
18076 SONY IMX258 SENSOR DRIVER
18077 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
18078 L:      linux-media@vger.kernel.org
18079 S:      Maintained
18080 T:      git git://linuxtv.org/media_tree.git
18081 F:      Documentation/devicetree/bindings/media/i2c/imx258.yaml
18082 F:      drivers/media/i2c/imx258.c
18083
18084 SONY IMX274 SENSOR DRIVER
18085 M:      Leon Luo <leonl@leopardimaging.com>
18086 L:      linux-media@vger.kernel.org
18087 S:      Maintained
18088 T:      git git://linuxtv.org/media_tree.git
18089 F:      Documentation/devicetree/bindings/media/i2c/sony,imx274.yaml
18090 F:      drivers/media/i2c/imx274.c
18091
18092 SONY IMX290 SENSOR DRIVER
18093 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
18094 L:      linux-media@vger.kernel.org
18095 S:      Maintained
18096 T:      git git://linuxtv.org/media_tree.git
18097 F:      Documentation/devicetree/bindings/media/i2c/imx290.txt
18098 F:      drivers/media/i2c/imx290.c
18099
18100 SONY IMX319 SENSOR DRIVER
18101 M:      Bingbu Cao <bingbu.cao@intel.com>
18102 L:      linux-media@vger.kernel.org
18103 S:      Maintained
18104 T:      git git://linuxtv.org/media_tree.git
18105 F:      drivers/media/i2c/imx319.c
18106
18107 SONY IMX334 SENSOR DRIVER
18108 M:      Paul J. Murphy <paul.j.murphy@intel.com>
18109 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
18110 L:      linux-media@vger.kernel.org
18111 S:      Maintained
18112 T:      git git://linuxtv.org/media_tree.git
18113 F:      Documentation/devicetree/bindings/media/i2c/sony,imx334.yaml
18114 F:      drivers/media/i2c/imx334.c
18115
18116 SONY IMX335 SENSOR DRIVER
18117 M:      Paul J. Murphy <paul.j.murphy@intel.com>
18118 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
18119 L:      linux-media@vger.kernel.org
18120 S:      Maintained
18121 T:      git git://linuxtv.org/media_tree.git
18122 F:      Documentation/devicetree/bindings/media/i2c/sony,imx335.yaml
18123 F:      drivers/media/i2c/imx335.c
18124
18125 SONY IMX355 SENSOR DRIVER
18126 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
18127 L:      linux-media@vger.kernel.org
18128 S:      Maintained
18129 T:      git git://linuxtv.org/media_tree.git
18130 F:      drivers/media/i2c/imx355.c
18131
18132 SONY IMX412 SENSOR DRIVER
18133 M:      Paul J. Murphy <paul.j.murphy@intel.com>
18134 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
18135 L:      linux-media@vger.kernel.org
18136 S:      Maintained
18137 T:      git git://linuxtv.org/media_tree.git
18138 F:      Documentation/devicetree/bindings/media/i2c/sony,imx412.yaml
18139 F:      drivers/media/i2c/imx412.c
18140
18141 SONY MEMORYSTICK SUBSYSTEM
18142 M:      Maxim Levitsky <maximlevitsky@gmail.com>
18143 M:      Alex Dubov <oakad@yahoo.com>
18144 M:      Ulf Hansson <ulf.hansson@linaro.org>
18145 L:      linux-mmc@vger.kernel.org
18146 S:      Maintained
18147 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
18148 F:      drivers/memstick/
18149 F:      include/linux/memstick.h
18150
18151 SONY VAIO CONTROL DEVICE DRIVER
18152 M:      Mattia Dongili <malattia@linux.it>
18153 L:      platform-driver-x86@vger.kernel.org
18154 S:      Maintained
18155 W:      http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
18156 F:      Documentation/admin-guide/laptops/sony-laptop.rst
18157 F:      drivers/char/sonypi.c
18158 F:      drivers/platform/x86/sony-laptop.c
18159 F:      include/linux/sony-laptop.h
18160
18161 SOUND
18162 M:      Jaroslav Kysela <perex@perex.cz>
18163 M:      Takashi Iwai <tiwai@suse.com>
18164 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18165 S:      Maintained
18166 W:      http://www.alsa-project.org/
18167 Q:      http://patchwork.kernel.org/project/alsa-devel/list/
18168 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
18169 F:      Documentation/sound/
18170 F:      include/sound/
18171 F:      include/uapi/sound/
18172 F:      sound/
18173 F:      tools/testing/selftests/alsa
18174
18175 SOUND - COMPRESSED AUDIO
18176 M:      Vinod Koul <vkoul@kernel.org>
18177 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18178 S:      Supported
18179 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
18180 F:      Documentation/sound/designs/compress-offload.rst
18181 F:      include/sound/compress_driver.h
18182 F:      include/uapi/sound/compress_*
18183 F:      sound/core/compress_offload.c
18184 F:      sound/soc/soc-compress.c
18185
18186 SOUND - DMAENGINE HELPERS
18187 M:      Lars-Peter Clausen <lars@metafoo.de>
18188 S:      Supported
18189 F:      include/sound/dmaengine_pcm.h
18190 F:      sound/core/pcm_dmaengine.c
18191 F:      sound/soc/soc-generic-dmaengine-pcm.c
18192
18193 SOUND - ALSA SELFTESTS
18194 M:      Mark Brown <broonie@kernel.org>
18195 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18196 L:      linux-kselftest@vger.kernel.org
18197 S:      Supported
18198 F:      tools/testing/selftests/alsa
18199
18200 SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
18201 M:      Liam Girdwood <lgirdwood@gmail.com>
18202 M:      Mark Brown <broonie@kernel.org>
18203 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18204 S:      Supported
18205 W:      http://alsa-project.org/main/index.php/ASoC
18206 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
18207 F:      Documentation/devicetree/bindings/sound/
18208 F:      Documentation/sound/soc/
18209 F:      include/dt-bindings/sound/
18210 F:      include/sound/soc*
18211 F:      sound/soc/
18212
18213 SOUND - SOUND OPEN FIRMWARE (SOF) DRIVERS
18214 M:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
18215 M:      Liam Girdwood <lgirdwood@gmail.com>
18216 M:      Ranjani Sridharan <ranjani.sridharan@linux.intel.com>
18217 M:      Kai Vehmanen <kai.vehmanen@linux.intel.com>
18218 M:      Daniel Baluta <daniel.baluta@nxp.com>
18219 L:      sound-open-firmware@alsa-project.org (moderated for non-subscribers)
18220 S:      Supported
18221 W:      https://github.com/thesofproject/linux/
18222 F:      sound/soc/sof/
18223
18224 SOUNDWIRE SUBSYSTEM
18225 M:      Vinod Koul <vkoul@kernel.org>
18226 M:      Bard Liao <yung-chuan.liao@linux.intel.com>
18227 R:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
18228 R:      Sanyog Kale <sanyog.r.kale@intel.com>
18229 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18230 S:      Supported
18231 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vkoul/soundwire.git
18232 F:      Documentation/driver-api/soundwire/
18233 F:      drivers/soundwire/
18234 F:      include/linux/soundwire/
18235
18236 SP2 MEDIA DRIVER
18237 M:      Olli Salonen <olli.salonen@iki.fi>
18238 L:      linux-media@vger.kernel.org
18239 S:      Maintained
18240 W:      https://linuxtv.org
18241 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18242 F:      drivers/media/dvb-frontends/sp2*
18243
18244 SPARC + UltraSPARC (sparc/sparc64)
18245 M:      "David S. Miller" <davem@davemloft.net>
18246 L:      sparclinux@vger.kernel.org
18247 S:      Maintained
18248 Q:      http://patchwork.ozlabs.org/project/sparclinux/list/
18249 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
18250 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
18251 F:      arch/sparc/
18252 F:      drivers/sbus/
18253
18254 SPARC SERIAL DRIVERS
18255 M:      "David S. Miller" <davem@davemloft.net>
18256 L:      sparclinux@vger.kernel.org
18257 S:      Maintained
18258 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
18259 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
18260 F:      drivers/tty/serial/suncore.c
18261 F:      drivers/tty/serial/sunhv.c
18262 F:      drivers/tty/serial/sunsab.c
18263 F:      drivers/tty/serial/sunsab.h
18264 F:      drivers/tty/serial/sunsu.c
18265 F:      drivers/tty/serial/sunzilog.c
18266 F:      drivers/tty/serial/sunzilog.h
18267 F:      drivers/tty/vcc.c
18268 F:      include/linux/sunserialcore.h
18269
18270 SPARSE CHECKER
18271 M:      "Luc Van Oostenryck" <luc.vanoostenryck@gmail.com>
18272 L:      linux-sparse@vger.kernel.org
18273 S:      Maintained
18274 W:      https://sparse.docs.kernel.org/
18275 T:      git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
18276 Q:      https://patchwork.kernel.org/project/linux-sparse/list/
18277 B:      https://bugzilla.kernel.org/enter_bug.cgi?component=Sparse&product=Tools
18278 F:      include/linux/compiler.h
18279
18280 SPEAKUP CONSOLE SPEECH DRIVER
18281 M:      William Hubbs <w.d.hubbs@gmail.com>
18282 M:      Chris Brannon <chris@the-brannons.com>
18283 M:      Kirk Reiser <kirk@reisers.ca>
18284 M:      Samuel Thibault <samuel.thibault@ens-lyon.org>
18285 L:      speakup@linux-speakup.org
18286 S:      Odd Fixes
18287 W:      http://www.linux-speakup.org/
18288 W:      https://github.com/linux-speakup/speakup
18289 B:      https://github.com/linux-speakup/speakup/issues
18290 F:      drivers/accessibility/speakup/
18291
18292 SPEAR PLATFORM/CLOCK/PINCTRL SUPPORT
18293 M:      Viresh Kumar <vireshk@kernel.org>
18294 M:      Shiraz Hashim <shiraz.linux.kernel@gmail.com>
18295 M:      soc@kernel.org
18296 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
18297 S:      Maintained
18298 W:      http://www.st.com/spear
18299 F:      arch/arm/boot/dts/spear*
18300 F:      arch/arm/mach-spear/
18301 F:      drivers/clk/spear/
18302 F:      drivers/pinctrl/spear/
18303
18304 SPI NOR SUBSYSTEM
18305 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
18306 M:      Pratyush Yadav <p.yadav@ti.com>
18307 R:      Michael Walle <michael@walle.cc>
18308 L:      linux-mtd@lists.infradead.org
18309 S:      Maintained
18310 W:      http://www.linux-mtd.infradead.org/
18311 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
18312 C:      irc://irc.oftc.net/mtd
18313 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git spi-nor/next
18314 F:      Documentation/devicetree/bindings/mtd/jedec,spi-nor.yaml
18315 F:      drivers/mtd/spi-nor/
18316 F:      include/linux/mtd/spi-nor.h
18317
18318 SPI SUBSYSTEM
18319 M:      Mark Brown <broonie@kernel.org>
18320 L:      linux-spi@vger.kernel.org
18321 S:      Maintained
18322 Q:      http://patchwork.kernel.org/project/spi-devel-general/list/
18323 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
18324 F:      Documentation/devicetree/bindings/spi/
18325 F:      Documentation/spi/
18326 F:      drivers/spi/
18327 F:      include/linux/spi/
18328 F:      include/uapi/linux/spi/
18329 F:      tools/spi/
18330
18331 SPIDERNET NETWORK DRIVER for CELL
18332 M:      Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
18333 M:      Geoff Levand <geoff@infradead.org>
18334 L:      netdev@vger.kernel.org
18335 L:      linuxppc-dev@lists.ozlabs.org
18336 S:      Maintained
18337 F:      Documentation/networking/device_drivers/ethernet/toshiba/spider_net.rst
18338 F:      drivers/net/ethernet/toshiba/spider_net*
18339
18340 SPMI SUBSYSTEM
18341 M:      Stephen Boyd <sboyd@kernel.org>
18342 L:      linux-kernel@vger.kernel.org
18343 S:      Maintained
18344 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sboyd/spmi.git
18345 F:      Documentation/devicetree/bindings/spmi/
18346 F:      drivers/spmi/
18347 F:      include/dt-bindings/spmi/spmi.h
18348 F:      include/linux/spmi.h
18349 F:      include/trace/events/spmi.h
18350
18351 SPU FILE SYSTEM
18352 M:      Jeremy Kerr <jk@ozlabs.org>
18353 L:      linuxppc-dev@lists.ozlabs.org
18354 S:      Supported
18355 W:      http://www.ibm.com/developerworks/power/cell/
18356 F:      Documentation/filesystems/spufs/spufs.rst
18357 F:      arch/powerpc/platforms/cell/spufs/
18358
18359 SQUASHFS FILE SYSTEM
18360 M:      Phillip Lougher <phillip@squashfs.org.uk>
18361 L:      squashfs-devel@lists.sourceforge.net (subscribers-only)
18362 S:      Maintained
18363 W:      http://squashfs.org.uk
18364 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pkl/squashfs-next.git
18365 F:      Documentation/filesystems/squashfs.rst
18366 F:      fs/squashfs/
18367
18368 SRM (Alpha) environment access
18369 M:      Jan-Benedict Glaw <jbglaw@lug-owl.de>
18370 S:      Maintained
18371 F:      arch/alpha/kernel/srm_env.c
18372
18373 ST LSM6DSx IMU IIO DRIVER
18374 M:      Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
18375 L:      linux-iio@vger.kernel.org
18376 S:      Maintained
18377 W:      http://www.st.com/
18378 F:      Documentation/devicetree/bindings/iio/imu/st,lsm6dsx.yaml
18379 F:      drivers/iio/imu/st_lsm6dsx/
18380
18381 ST MIPID02 CSI-2 TO PARALLEL BRIDGE DRIVER
18382 M:      Benjamin Mugnier <benjamin.mugnier@foss.st.com>
18383 M:      Sylvain Petinot <sylvain.petinot@foss.st.com>
18384 L:      linux-media@vger.kernel.org
18385 S:      Maintained
18386 T:      git git://linuxtv.org/media_tree.git
18387 F:      Documentation/devicetree/bindings/media/i2c/st,st-mipid02.txt
18388 F:      drivers/media/i2c/st-mipid02.c
18389
18390 ST STM32 I2C/SMBUS DRIVER
18391 M:      Pierre-Yves MORDRET <pierre-yves.mordret@foss.st.com>
18392 M:      Alain Volmat <alain.volmat@foss.st.com>
18393 L:      linux-i2c@vger.kernel.org
18394 S:      Maintained
18395 F:      drivers/i2c/busses/i2c-stm32*
18396
18397 ST STM32 SPI DRIVER
18398 M:      Alain Volmat <alain.volmat@foss.st.com>
18399 L:      linux-spi@vger.kernel.org
18400 S:      Maintained
18401 F:      drivers/spi/spi-stm32.c
18402
18403 ST STPDDC60 DRIVER
18404 M:      Daniel Nilsson <daniel.nilsson@flex.com>
18405 L:      linux-hwmon@vger.kernel.org
18406 S:      Maintained
18407 F:      Documentation/hwmon/stpddc60.rst
18408 F:      drivers/hwmon/pmbus/stpddc60.c
18409
18410 ST VL53L0X ToF RANGER(I2C) IIO DRIVER
18411 M:      Song Qiang <songqiang1304521@gmail.com>
18412 L:      linux-iio@vger.kernel.org
18413 S:      Maintained
18414 F:      Documentation/devicetree/bindings/iio/proximity/st,vl53l0x.yaml
18415 F:      drivers/iio/proximity/vl53l0x-i2c.c
18416
18417 STABLE BRANCH
18418 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
18419 M:      Sasha Levin <sashal@kernel.org>
18420 L:      stable@vger.kernel.org
18421 S:      Supported
18422 F:      Documentation/process/stable-kernel-rules.rst
18423
18424 STAGING - ATOMISP DRIVER
18425 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
18426 R:      Sakari Ailus <sakari.ailus@linux.intel.com>
18427 L:      linux-media@vger.kernel.org
18428 S:      Maintained
18429 F:      drivers/staging/media/atomisp/
18430
18431 STAGING - FIELDBUS SUBSYSTEM
18432 M:      Sven Van Asbroeck <TheSven73@gmail.com>
18433 S:      Maintained
18434 F:      drivers/staging/fieldbus/*
18435 F:      drivers/staging/fieldbus/Documentation/
18436
18437 STAGING - HMS ANYBUS-S BUS
18438 M:      Sven Van Asbroeck <TheSven73@gmail.com>
18439 S:      Maintained
18440 F:      drivers/staging/fieldbus/anybuss/
18441
18442 STAGING - INDUSTRIAL IO
18443 M:      Jonathan Cameron <jic23@kernel.org>
18444 L:      linux-iio@vger.kernel.org
18445 S:      Odd Fixes
18446 F:      Documentation/devicetree/bindings/staging/iio/
18447 F:      drivers/staging/iio/
18448
18449 STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
18450 M:      Marc Dietrich <marvin24@gmx.de>
18451 L:      ac100@lists.launchpad.net (moderated for non-subscribers)
18452 L:      linux-tegra@vger.kernel.org
18453 S:      Maintained
18454 F:      drivers/staging/nvec/
18455
18456 STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
18457 M:      Jens Frederich <jfrederich@gmail.com>
18458 M:      Jon Nettleton <jon.nettleton@gmail.com>
18459 S:      Maintained
18460 W:      http://wiki.laptop.org/go/DCON
18461 F:      drivers/staging/olpc_dcon/
18462
18463 STAGING - REALTEK RTL8188EU DRIVERS
18464 M:      Larry Finger <Larry.Finger@lwfinger.net>
18465 M:      Phillip Potter <phil@philpotter.co.uk>
18466 S:      Supported
18467 F:      drivers/staging/r8188eu/
18468
18469 STAGING - REALTEK RTL8712U DRIVERS
18470 M:      Larry Finger <Larry.Finger@lwfinger.net>
18471 M:      Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
18472 S:      Odd Fixes
18473 F:      drivers/staging/rtl8712/
18474
18475 STAGING - SEPS525 LCD CONTROLLER DRIVERS
18476 M:      Michael Hennerich <michael.hennerich@analog.com>
18477 L:      linux-fbdev@vger.kernel.org
18478 S:      Supported
18479 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7606.yaml
18480 F:      drivers/staging/fbtft/fb_seps525.c
18481
18482 STAGING - SILICON MOTION SM750 FRAME BUFFER DRIVER
18483 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
18484 M:      Teddy Wang <teddy.wang@siliconmotion.com>
18485 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
18486 L:      linux-fbdev@vger.kernel.org
18487 S:      Maintained
18488 F:      drivers/staging/sm750fb/
18489
18490 STAGING - VIA VT665X DRIVERS
18491 M:      Forest Bond <forest@alittletooquiet.net>
18492 S:      Odd Fixes
18493 F:      drivers/staging/vt665?/
18494
18495 STAGING SUBSYSTEM
18496 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
18497 L:      linux-staging@lists.linux.dev
18498 S:      Supported
18499 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
18500 F:      drivers/staging/
18501
18502 STARFIRE/DURALAN NETWORK DRIVER
18503 M:      Ion Badulescu <ionut@badula.org>
18504 S:      Odd Fixes
18505 F:      drivers/net/ethernet/adaptec/starfire*
18506
18507 STARFIVE JH7100 CLOCK DRIVER
18508 M:      Emil Renner Berthing <kernel@esmil.dk>
18509 S:      Maintained
18510 F:      Documentation/devicetree/bindings/clock/starfive,jh7100-clkgen.yaml
18511 F:      drivers/clk/starfive/clk-starfive-jh7100.c
18512 F:      include/dt-bindings/clock/starfive-jh7100.h
18513
18514 STARFIVE JH7100 PINCTRL DRIVER
18515 M:      Emil Renner Berthing <kernel@esmil.dk>
18516 L:      linux-gpio@vger.kernel.org
18517 S:      Maintained
18518 F:      Documentation/devicetree/bindings/pinctrl/starfive,jh7100-pinctrl.yaml
18519 F:      drivers/pinctrl/pinctrl-starfive.c
18520 F:      include/dt-bindings/pinctrl/pinctrl-starfive.h
18521
18522 STARFIVE JH7100 RESET CONTROLLER DRIVER
18523 M:      Emil Renner Berthing <kernel@esmil.dk>
18524 S:      Maintained
18525 F:      Documentation/devicetree/bindings/reset/starfive,jh7100-reset.yaml
18526 F:      drivers/reset/reset-starfive-jh7100.c
18527 F:      include/dt-bindings/reset/starfive-jh7100.h
18528
18529 STATIC BRANCH/CALL
18530 M:      Peter Zijlstra <peterz@infradead.org>
18531 M:      Josh Poimboeuf <jpoimboe@redhat.com>
18532 M:      Jason Baron <jbaron@akamai.com>
18533 R:      Steven Rostedt <rostedt@goodmis.org>
18534 R:      Ard Biesheuvel <ardb@kernel.org>
18535 S:      Supported
18536 F:      arch/*/include/asm/jump_label*.h
18537 F:      arch/*/include/asm/static_call*.h
18538 F:      arch/*/kernel/jump_label.c
18539 F:      arch/*/kernel/static_call.c
18540 F:      include/linux/jump_label*.h
18541 F:      include/linux/static_call*.h
18542 F:      kernel/jump_label.c
18543 F:      kernel/static_call.c
18544
18545 STI AUDIO (ASoC) DRIVERS
18546 M:      Arnaud Pouliquen <arnaud.pouliquen@foss.st.com>
18547 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18548 S:      Maintained
18549 F:      Documentation/devicetree/bindings/sound/st,sti-asoc-card.txt
18550 F:      sound/soc/sti/
18551
18552 STI CEC DRIVER
18553 M:      Alain Volmat <alain.volmat@foss.st.com>
18554 S:      Maintained
18555 F:      Documentation/devicetree/bindings/media/stih-cec.txt
18556 F:      drivers/media/cec/platform/sti/
18557
18558 STK1160 USB VIDEO CAPTURE DRIVER
18559 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
18560 L:      linux-media@vger.kernel.org
18561 S:      Maintained
18562 T:      git git://linuxtv.org/media_tree.git
18563 F:      drivers/media/usb/stk1160/
18564
18565 STM32 AUDIO (ASoC) DRIVERS
18566 M:      Olivier Moysan <olivier.moysan@foss.st.com>
18567 M:      Arnaud Pouliquen <arnaud.pouliquen@foss.st.com>
18568 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18569 S:      Maintained
18570 F:      Documentation/devicetree/bindings/iio/adc/st,stm32-dfsdm-adc.yaml
18571 F:      Documentation/devicetree/bindings/sound/st,stm32-*.yaml
18572 F:      sound/soc/stm/
18573
18574 STM32 TIMER/LPTIMER DRIVERS
18575 M:      Fabrice Gasnier <fabrice.gasnier@foss.st.com>
18576 S:      Maintained
18577 F:      Documentation/ABI/testing/*timer-stm32
18578 F:      Documentation/devicetree/bindings/*/*stm32-*timer*
18579 F:      drivers/*/stm32-*timer*
18580 F:      drivers/pwm/pwm-stm32*
18581 F:      include/linux/*/stm32-*tim*
18582
18583 STMMAC ETHERNET DRIVER
18584 M:      Giuseppe Cavallaro <peppe.cavallaro@st.com>
18585 M:      Alexandre Torgue <alexandre.torgue@foss.st.com>
18586 M:      Jose Abreu <joabreu@synopsys.com>
18587 L:      netdev@vger.kernel.org
18588 S:      Supported
18589 W:      http://www.stlinux.com
18590 F:      Documentation/networking/device_drivers/ethernet/stmicro/
18591 F:      drivers/net/ethernet/stmicro/stmmac/
18592
18593 SUN3/3X
18594 M:      Sam Creasey <sammy@sammy.net>
18595 S:      Maintained
18596 W:      http://sammy.net/sun3/
18597 F:      arch/m68k/include/asm/sun3*
18598 F:      arch/m68k/kernel/*sun3*
18599 F:      arch/m68k/sun3*/
18600 F:      drivers/net/ethernet/i825xx/sun3*
18601
18602 SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER
18603 M:      Hans de Goede <hdegoede@redhat.com>
18604 L:      linux-input@vger.kernel.org
18605 S:      Maintained
18606 F:      Documentation/devicetree/bindings/input/allwinner,sun4i-a10-lradc-keys.yaml
18607 F:      drivers/input/keyboard/sun4i-lradc-keys.c
18608
18609 SUNDANCE NETWORK DRIVER
18610 M:      Denis Kirjanov <kda@linux-powerpc.org>
18611 L:      netdev@vger.kernel.org
18612 S:      Maintained
18613 F:      drivers/net/ethernet/dlink/sundance.c
18614
18615 SUNPLUS RTC DRIVER
18616 M:      Vincent Shih <vincent.sunplus@gmail.com>
18617 L:      linux-rtc@vger.kernel.org
18618 S:      Maintained
18619 F:      Documentation/devicetree/bindings/rtc/sunplus,sp7021-rtc.yaml
18620 F:      drivers/rtc/rtc-sunplus.c
18621
18622 SUNPLUS SPI CONTROLLER INTERFACE DRIVER
18623 M:      Li-hao Kuo <lhjeff911@gmail.com>
18624 L:      linux-spi@vger.kernel.org
18625 S:      Maintained
18626 F:      Documentation/devicetree/bindings/spi/spi-sunplus-sp7021.yaml
18627 F:      drivers/spi/spi-sunplus-sp7021.c
18628
18629 SUPERH
18630 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
18631 M:      Rich Felker <dalias@libc.org>
18632 L:      linux-sh@vger.kernel.org
18633 S:      Maintained
18634 Q:      http://patchwork.kernel.org/project/linux-sh/list/
18635 F:      Documentation/sh/
18636 F:      arch/sh/
18637 F:      drivers/sh/
18638
18639 SUSPEND TO RAM
18640 M:      "Rafael J. Wysocki" <rafael@kernel.org>
18641 M:      Len Brown <len.brown@intel.com>
18642 M:      Pavel Machek <pavel@ucw.cz>
18643 L:      linux-pm@vger.kernel.org
18644 S:      Supported
18645 B:      https://bugzilla.kernel.org
18646 F:      Documentation/power/
18647 F:      arch/x86/kernel/acpi/
18648 F:      drivers/base/power/
18649 F:      include/linux/freezer.h
18650 F:      include/linux/pm.h
18651 F:      include/linux/suspend.h
18652 F:      kernel/power/
18653
18654 SVGA HANDLING
18655 M:      Martin Mares <mj@ucw.cz>
18656 L:      linux-video@atrey.karlin.mff.cuni.cz
18657 S:      Maintained
18658 F:      Documentation/admin-guide/svga.rst
18659 F:      arch/x86/boot/video*
18660
18661 SWIOTLB SUBSYSTEM
18662 M:      Christoph Hellwig <hch@infradead.org>
18663 L:      iommu@lists.linux-foundation.org
18664 S:      Supported
18665 W:      http://git.infradead.org/users/hch/dma-mapping.git
18666 T:      git git://git.infradead.org/users/hch/dma-mapping.git
18667 F:      arch/*/kernel/pci-swiotlb.c
18668 F:      include/linux/swiotlb.h
18669 F:      kernel/dma/swiotlb.c
18670
18671 SWITCHDEV
18672 M:      Jiri Pirko <jiri@resnulli.us>
18673 M:      Ivan Vecera <ivecera@redhat.com>
18674 L:      netdev@vger.kernel.org
18675 S:      Supported
18676 F:      include/net/switchdev.h
18677 F:      net/switchdev/
18678
18679 SY8106A REGULATOR DRIVER
18680 M:      Icenowy Zheng <icenowy@aosc.io>
18681 S:      Maintained
18682 F:      Documentation/devicetree/bindings/regulator/silergy,sy8106a.yaml
18683 F:      drivers/regulator/sy8106a-regulator.c
18684
18685 SYNC FILE FRAMEWORK
18686 M:      Sumit Semwal <sumit.semwal@linaro.org>
18687 R:      Gustavo Padovan <gustavo@padovan.org>
18688 L:      linux-media@vger.kernel.org
18689 L:      dri-devel@lists.freedesktop.org
18690 S:      Maintained
18691 T:      git git://anongit.freedesktop.org/drm/drm-misc
18692 F:      Documentation/driver-api/sync_file.rst
18693 F:      drivers/dma-buf/dma-fence*
18694 F:      drivers/dma-buf/sw_sync.c
18695 F:      drivers/dma-buf/sync_*
18696 F:      include/linux/sync_file.h
18697 F:      include/uapi/linux/sync_file.h
18698
18699 SYNOPSYS ARC ARCHITECTURE
18700 M:      Vineet Gupta <vgupta@kernel.org>
18701 L:      linux-snps-arc@lists.infradead.org
18702 S:      Supported
18703 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc.git
18704 F:      Documentation/arc/
18705 F:      Documentation/devicetree/bindings/arc/*
18706 F:      Documentation/devicetree/bindings/interrupt-controller/snps,arc*
18707 F:      arch/arc/
18708 F:      drivers/clocksource/arc_timer.c
18709 F:      drivers/tty/serial/arc_uart.c
18710
18711 SYNOPSYS ARC HSDK SDP pll clock driver
18712 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
18713 S:      Supported
18714 F:      Documentation/devicetree/bindings/clock/snps,hsdk-pll-clock.txt
18715 F:      drivers/clk/clk-hsdk-pll.c
18716
18717 SYNOPSYS ARC SDP clock driver
18718 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
18719 S:      Supported
18720 F:      Documentation/devicetree/bindings/clock/snps,pll-clock.txt
18721 F:      drivers/clk/axs10x/*
18722
18723 SYNOPSYS ARC SDP platform support
18724 M:      Alexey Brodkin <abrodkin@synopsys.com>
18725 S:      Supported
18726 F:      Documentation/devicetree/bindings/arc/axs10*
18727 F:      arch/arc/boot/dts/ax*
18728 F:      arch/arc/plat-axs10x
18729
18730 SYNOPSYS AXS10x RESET CONTROLLER DRIVER
18731 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
18732 S:      Supported
18733 F:      Documentation/devicetree/bindings/reset/snps,axs10x-reset.txt
18734 F:      drivers/reset/reset-axs10x.c
18735
18736 SYNOPSYS CREG GPIO DRIVER
18737 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
18738 S:      Maintained
18739 F:      Documentation/devicetree/bindings/gpio/snps,creg-gpio.txt
18740 F:      drivers/gpio/gpio-creg-snps.c
18741
18742 SYNOPSYS DESIGNWARE 8250 UART DRIVER
18743 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
18744 S:      Maintained
18745 F:      drivers/tty/serial/8250/8250_dw.c
18746 F:      drivers/tty/serial/8250/8250_dwlib.*
18747 F:      drivers/tty/serial/8250/8250_lpss.c
18748
18749 SYNOPSYS DESIGNWARE APB GPIO DRIVER
18750 M:      Hoan Tran <hoan@os.amperecomputing.com>
18751 M:      Serge Semin <fancer.lancer@gmail.com>
18752 L:      linux-gpio@vger.kernel.org
18753 S:      Maintained
18754 F:      Documentation/devicetree/bindings/gpio/snps,dw-apb-gpio.yaml
18755 F:      drivers/gpio/gpio-dwapb.c
18756
18757 SYNOPSYS DESIGNWARE APB SSI DRIVER
18758 M:      Serge Semin <fancer.lancer@gmail.com>
18759 L:      linux-spi@vger.kernel.org
18760 S:      Supported
18761 F:      Documentation/devicetree/bindings/spi/snps,dw-apb-ssi.yaml
18762 F:      drivers/spi/spi-dw*
18763
18764 SYNOPSYS DESIGNWARE AXI DMAC DRIVER
18765 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
18766 S:      Maintained
18767 F:      Documentation/devicetree/bindings/dma/snps,dw-axi-dmac.yaml
18768 F:      drivers/dma/dw-axi-dmac/
18769
18770 SYNOPSYS DESIGNWARE DMAC DRIVER
18771 M:      Viresh Kumar <vireshk@kernel.org>
18772 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
18773 S:      Maintained
18774 F:      Documentation/devicetree/bindings/dma/snps,dma-spear1340.yaml
18775 F:      drivers/dma/dw/
18776 F:      include/dt-bindings/dma/dw-dmac.h
18777 F:      include/linux/dma/dw.h
18778 F:      include/linux/platform_data/dma-dw.h
18779
18780 SYNOPSYS DESIGNWARE ENTERPRISE ETHERNET DRIVER
18781 M:      Jose Abreu <Jose.Abreu@synopsys.com>
18782 L:      netdev@vger.kernel.org
18783 S:      Supported
18784 F:      drivers/net/ethernet/synopsys/
18785
18786 SYNOPSYS DESIGNWARE ETHERNET XPCS DRIVER
18787 M:      Jose Abreu <Jose.Abreu@synopsys.com>
18788 L:      netdev@vger.kernel.org
18789 S:      Supported
18790 F:      drivers/net/pcs/pcs-xpcs.c
18791 F:      drivers/net/pcs/pcs-xpcs.h
18792 F:      include/linux/pcs/pcs-xpcs.h
18793
18794 SYNOPSYS DESIGNWARE I2C DRIVER
18795 M:      Jarkko Nikula <jarkko.nikula@linux.intel.com>
18796 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
18797 R:      Mika Westerberg <mika.westerberg@linux.intel.com>
18798 L:      linux-i2c@vger.kernel.org
18799 S:      Maintained
18800 F:      drivers/i2c/busses/i2c-designware-*
18801
18802 SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
18803 M:      Jaehoon Chung <jh80.chung@samsung.com>
18804 L:      linux-mmc@vger.kernel.org
18805 S:      Maintained
18806 F:      drivers/mmc/host/dw_mmc*
18807
18808 SYNOPSYS HSDK RESET CONTROLLER DRIVER
18809 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
18810 S:      Supported
18811 F:      Documentation/devicetree/bindings/reset/snps,hsdk-reset.txt
18812 F:      drivers/reset/reset-hsdk.c
18813 F:      include/dt-bindings/reset/snps,hsdk-reset.h
18814
18815 SYNOPSYS SDHCI COMPLIANT DWC MSHC DRIVER
18816 M:      Prabu Thangamuthu <prabu.t@synopsys.com>
18817 M:      Manjunath M B <manjumb@synopsys.com>
18818 L:      linux-mmc@vger.kernel.org
18819 S:      Maintained
18820 F:      drivers/mmc/host/sdhci-pci-dwc-mshc.c
18821
18822 SYSTEM CONFIGURATION (SYSCON)
18823 M:      Lee Jones <lee.jones@linaro.org>
18824 M:      Arnd Bergmann <arnd@arndb.de>
18825 S:      Supported
18826 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
18827 F:      drivers/mfd/syscon.c
18828
18829 SYSTEM CONTROL & POWER/MANAGEMENT INTERFACE (SCPI/SCMI) Message Protocol drivers
18830 M:      Sudeep Holla <sudeep.holla@arm.com>
18831 R:      Cristian Marussi <cristian.marussi@arm.com>
18832 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
18833 S:      Maintained
18834 F:      Documentation/devicetree/bindings/firmware/arm,sc[mp]i.yaml
18835 F:      drivers/clk/clk-sc[mp]i.c
18836 F:      drivers/cpufreq/sc[mp]i-cpufreq.c
18837 F:      drivers/firmware/arm_scmi/
18838 F:      drivers/firmware/arm_scpi.c
18839 F:      drivers/regulator/scmi-regulator.c
18840 F:      drivers/reset/reset-scmi.c
18841 F:      include/linux/sc[mp]i_protocol.h
18842 F:      include/trace/events/scmi.h
18843 F:      include/uapi/linux/virtio_scmi.h
18844
18845 SYSTEM RESET/SHUTDOWN DRIVERS
18846 M:      Sebastian Reichel <sre@kernel.org>
18847 L:      linux-pm@vger.kernel.org
18848 S:      Maintained
18849 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
18850 F:      Documentation/devicetree/bindings/power/reset/
18851 F:      drivers/power/reset/
18852
18853 SYSTEM TRACE MODULE CLASS
18854 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
18855 S:      Maintained
18856 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ash/stm.git
18857 F:      Documentation/trace/stm.rst
18858 F:      drivers/hwtracing/stm/
18859 F:      include/linux/stm.h
18860 F:      include/uapi/linux/stm.h
18861
18862 SYSTEM76 ACPI DRIVER
18863 M:      Jeremy Soller <jeremy@system76.com>
18864 M:      System76 Product Development <productdev@system76.com>
18865 L:      platform-driver-x86@vger.kernel.org
18866 S:      Maintained
18867 F:      drivers/platform/x86/system76_acpi.c
18868
18869 SYSV FILESYSTEM
18870 M:      Christoph Hellwig <hch@infradead.org>
18871 S:      Maintained
18872 F:      Documentation/filesystems/sysv-fs.rst
18873 F:      fs/sysv/
18874 F:      include/linux/sysv_fs.h
18875
18876 TASKSTATS STATISTICS INTERFACE
18877 M:      Balbir Singh <bsingharora@gmail.com>
18878 S:      Maintained
18879 F:      Documentation/accounting/taskstats*
18880 F:      include/linux/taskstats*
18881 F:      kernel/taskstats.c
18882
18883 TC subsystem
18884 M:      Jamal Hadi Salim <jhs@mojatatu.com>
18885 M:      Cong Wang <xiyou.wangcong@gmail.com>
18886 M:      Jiri Pirko <jiri@resnulli.us>
18887 L:      netdev@vger.kernel.org
18888 S:      Maintained
18889 F:      include/net/pkt_cls.h
18890 F:      include/net/pkt_sched.h
18891 F:      include/net/tc_act/
18892 F:      include/uapi/linux/pkt_cls.h
18893 F:      include/uapi/linux/pkt_sched.h
18894 F:      include/uapi/linux/tc_act/
18895 F:      include/uapi/linux/tc_ematch/
18896 F:      net/sched/
18897 F:      tools/testing/selftests/tc-testing
18898
18899 TC90522 MEDIA DRIVER
18900 M:      Akihiro Tsukada <tskd08@gmail.com>
18901 L:      linux-media@vger.kernel.org
18902 S:      Odd Fixes
18903 F:      drivers/media/dvb-frontends/tc90522*
18904
18905 TCP LOW PRIORITY MODULE
18906 M:      "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
18907 M:      "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
18908 S:      Maintained
18909 W:      http://tcp-lp-mod.sourceforge.net/
18910 F:      net/ipv4/tcp_lp.c
18911
18912 TDA10071 MEDIA DRIVER
18913 M:      Antti Palosaari <crope@iki.fi>
18914 L:      linux-media@vger.kernel.org
18915 S:      Maintained
18916 W:      https://linuxtv.org
18917 W:      http://palosaari.fi/linux/
18918 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18919 T:      git git://linuxtv.org/anttip/media_tree.git
18920 F:      drivers/media/dvb-frontends/tda10071*
18921
18922 TDA18212 MEDIA DRIVER
18923 M:      Antti Palosaari <crope@iki.fi>
18924 L:      linux-media@vger.kernel.org
18925 S:      Maintained
18926 W:      https://linuxtv.org
18927 W:      http://palosaari.fi/linux/
18928 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18929 T:      git git://linuxtv.org/anttip/media_tree.git
18930 F:      drivers/media/tuners/tda18212*
18931
18932 TDA18218 MEDIA DRIVER
18933 M:      Antti Palosaari <crope@iki.fi>
18934 L:      linux-media@vger.kernel.org
18935 S:      Maintained
18936 W:      https://linuxtv.org
18937 W:      http://palosaari.fi/linux/
18938 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18939 T:      git git://linuxtv.org/anttip/media_tree.git
18940 F:      drivers/media/tuners/tda18218*
18941
18942 TDA18250 MEDIA DRIVER
18943 M:      Olli Salonen <olli.salonen@iki.fi>
18944 L:      linux-media@vger.kernel.org
18945 S:      Maintained
18946 W:      https://linuxtv.org
18947 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18948 T:      git git://linuxtv.org/media_tree.git
18949 F:      drivers/media/tuners/tda18250*
18950
18951 TDA18271 MEDIA DRIVER
18952 M:      Michael Krufky <mkrufky@linuxtv.org>
18953 L:      linux-media@vger.kernel.org
18954 S:      Maintained
18955 W:      https://linuxtv.org
18956 W:      http://github.com/mkrufky
18957 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18958 T:      git git://linuxtv.org/mkrufky/tuners.git
18959 F:      drivers/media/tuners/tda18271*
18960
18961 TDA1997x MEDIA DRIVER
18962 M:      Tim Harvey <tharvey@gateworks.com>
18963 L:      linux-media@vger.kernel.org
18964 S:      Maintained
18965 W:      https://linuxtv.org
18966 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18967 F:      drivers/media/i2c/tda1997x.*
18968
18969 TDA827x MEDIA DRIVER
18970 M:      Michael Krufky <mkrufky@linuxtv.org>
18971 L:      linux-media@vger.kernel.org
18972 S:      Maintained
18973 W:      https://linuxtv.org
18974 W:      http://github.com/mkrufky
18975 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18976 T:      git git://linuxtv.org/mkrufky/tuners.git
18977 F:      drivers/media/tuners/tda8290.*
18978
18979 TDA8290 MEDIA DRIVER
18980 M:      Michael Krufky <mkrufky@linuxtv.org>
18981 L:      linux-media@vger.kernel.org
18982 S:      Maintained
18983 W:      https://linuxtv.org
18984 W:      http://github.com/mkrufky
18985 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18986 T:      git git://linuxtv.org/mkrufky/tuners.git
18987 F:      drivers/media/tuners/tda8290.*
18988
18989 TDA9840 MEDIA DRIVER
18990 M:      Hans Verkuil <hverkuil@xs4all.nl>
18991 L:      linux-media@vger.kernel.org
18992 S:      Maintained
18993 W:      https://linuxtv.org
18994 T:      git git://linuxtv.org/media_tree.git
18995 F:      drivers/media/i2c/tda9840*
18996
18997 TEA5761 TUNER DRIVER
18998 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
18999 L:      linux-media@vger.kernel.org
19000 S:      Odd fixes
19001 W:      https://linuxtv.org
19002 T:      git git://linuxtv.org/media_tree.git
19003 F:      drivers/media/tuners/tea5761.*
19004
19005 TEA5767 TUNER DRIVER
19006 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
19007 L:      linux-media@vger.kernel.org
19008 S:      Maintained
19009 W:      https://linuxtv.org
19010 T:      git git://linuxtv.org/media_tree.git
19011 F:      drivers/media/tuners/tea5767.*
19012
19013 TEA6415C MEDIA DRIVER
19014 M:      Hans Verkuil <hverkuil@xs4all.nl>
19015 L:      linux-media@vger.kernel.org
19016 S:      Maintained
19017 W:      https://linuxtv.org
19018 T:      git git://linuxtv.org/media_tree.git
19019 F:      drivers/media/i2c/tea6415c*
19020
19021 TEA6420 MEDIA DRIVER
19022 M:      Hans Verkuil <hverkuil@xs4all.nl>
19023 L:      linux-media@vger.kernel.org
19024 S:      Maintained
19025 W:      https://linuxtv.org
19026 T:      git git://linuxtv.org/media_tree.git
19027 F:      drivers/media/i2c/tea6420*
19028
19029 TEAM DRIVER
19030 M:      Jiri Pirko <jiri@resnulli.us>
19031 L:      netdev@vger.kernel.org
19032 S:      Supported
19033 F:      drivers/net/team/
19034 F:      include/linux/if_team.h
19035 F:      include/uapi/linux/if_team.h
19036
19037 TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
19038 M:      "Savoir-faire Linux Inc." <kernel@savoirfairelinux.com>
19039 S:      Maintained
19040 F:      arch/x86/platform/ts5500/
19041
19042 TECHNOTREND USB IR RECEIVER
19043 M:      Sean Young <sean@mess.org>
19044 L:      linux-media@vger.kernel.org
19045 S:      Maintained
19046 F:      drivers/media/rc/ttusbir.c
19047
19048 TECHWELL TW9910 VIDEO DECODER
19049 L:      linux-media@vger.kernel.org
19050 S:      Orphan
19051 F:      drivers/media/i2c/tw9910.c
19052 F:      include/media/i2c/tw9910.h
19053
19054 TEE SUBSYSTEM
19055 M:      Jens Wiklander <jens.wiklander@linaro.org>
19056 R:      Sumit Garg <sumit.garg@linaro.org>
19057 L:      op-tee@lists.trustedfirmware.org
19058 S:      Maintained
19059 F:      Documentation/staging/tee.rst
19060 F:      drivers/tee/
19061 F:      include/linux/tee_drv.h
19062 F:      include/uapi/linux/tee.h
19063
19064 TEGRA ARCHITECTURE SUPPORT
19065 M:      Thierry Reding <thierry.reding@gmail.com>
19066 M:      Jonathan Hunter <jonathanh@nvidia.com>
19067 L:      linux-tegra@vger.kernel.org
19068 S:      Supported
19069 Q:      http://patchwork.ozlabs.org/project/linux-tegra/list/
19070 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git
19071 N:      [^a-z]tegra
19072
19073 TEGRA CLOCK DRIVER
19074 M:      Peter De Schrijver <pdeschrijver@nvidia.com>
19075 M:      Prashant Gaikwad <pgaikwad@nvidia.com>
19076 S:      Supported
19077 F:      drivers/clk/tegra/
19078
19079 TEGRA DMA DRIVERS
19080 M:      Laxman Dewangan <ldewangan@nvidia.com>
19081 M:      Jon Hunter <jonathanh@nvidia.com>
19082 S:      Supported
19083 F:      drivers/dma/tegra*
19084
19085 TEGRA I2C DRIVER
19086 M:      Laxman Dewangan <ldewangan@nvidia.com>
19087 R:      Dmitry Osipenko <digetx@gmail.com>
19088 S:      Supported
19089 F:      drivers/i2c/busses/i2c-tegra.c
19090
19091 TEGRA IOMMU DRIVERS
19092 M:      Thierry Reding <thierry.reding@gmail.com>
19093 R:      Krishna Reddy <vdumpa@nvidia.com>
19094 L:      linux-tegra@vger.kernel.org
19095 S:      Supported
19096 F:      drivers/iommu/arm/arm-smmu/arm-smmu-nvidia.c
19097 F:      drivers/iommu/tegra*
19098
19099 TEGRA KBC DRIVER
19100 M:      Laxman Dewangan <ldewangan@nvidia.com>
19101 S:      Supported
19102 F:      drivers/input/keyboard/tegra-kbc.c
19103
19104 TEGRA NAND DRIVER
19105 M:      Stefan Agner <stefan@agner.ch>
19106 M:      Lucas Stach <dev@lynxeye.de>
19107 S:      Maintained
19108 F:      Documentation/devicetree/bindings/mtd/nvidia-tegra20-nand.txt
19109 F:      drivers/mtd/nand/raw/tegra_nand.c
19110
19111 TEGRA PWM DRIVER
19112 M:      Thierry Reding <thierry.reding@gmail.com>
19113 S:      Supported
19114 F:      drivers/pwm/pwm-tegra.c
19115
19116 TEGRA SERIAL DRIVER
19117 M:      Laxman Dewangan <ldewangan@nvidia.com>
19118 S:      Supported
19119 F:      drivers/tty/serial/serial-tegra.c
19120
19121 TEGRA SPI DRIVER
19122 M:      Laxman Dewangan <ldewangan@nvidia.com>
19123 S:      Supported
19124 F:      drivers/spi/spi-tegra*
19125
19126 TEGRA QUAD SPI DRIVER
19127 M:      Thierry Reding <thierry.reding@gmail.com>
19128 M:      Jonathan Hunter <jonathanh@nvidia.com>
19129 M:      Sowjanya Komatineni <skomatineni@nvidia.com>
19130 L:      linux-tegra@vger.kernel.org
19131 S:      Maintained
19132 F:      drivers/spi/spi-tegra210-quad.c
19133
19134 TEGRA VIDEO DRIVER
19135 M:      Thierry Reding <thierry.reding@gmail.com>
19136 M:      Jonathan Hunter <jonathanh@nvidia.com>
19137 M:      Sowjanya Komatineni <skomatineni@nvidia.com>
19138 L:      linux-media@vger.kernel.org
19139 L:      linux-tegra@vger.kernel.org
19140 S:      Maintained
19141 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
19142 F:      drivers/staging/media/tegra-video/
19143
19144 TEGRA XUSB PADCTL DRIVER
19145 M:      JC Kuo <jckuo@nvidia.com>
19146 S:      Supported
19147 F:      drivers/phy/tegra/xusb*
19148
19149 TEHUTI ETHERNET DRIVER
19150 M:      Andy Gospodarek <andy@greyhouse.net>
19151 L:      netdev@vger.kernel.org
19152 S:      Supported
19153 F:      drivers/net/ethernet/tehuti/*
19154
19155 TELECOM CLOCK DRIVER FOR MCPL0010
19156 M:      Mark Gross <markgross@kernel.org>
19157 S:      Supported
19158 F:      drivers/char/tlclk.c
19159
19160 TEMPO SEMICONDUCTOR DRIVERS
19161 M:      Steven Eckhoff <steven.eckhoff.opensource@gmail.com>
19162 S:      Maintained
19163 F:      Documentation/devicetree/bindings/sound/tscs*.txt
19164 F:      sound/soc/codecs/tscs*.c
19165 F:      sound/soc/codecs/tscs*.h
19166
19167 TENSILICA XTENSA PORT (xtensa)
19168 M:      Chris Zankel <chris@zankel.net>
19169 M:      Max Filippov <jcmvbkbc@gmail.com>
19170 L:      linux-xtensa@linux-xtensa.org
19171 S:      Maintained
19172 T:      git git://github.com/czankel/xtensa-linux.git
19173 F:      arch/xtensa/
19174 F:      drivers/irqchip/irq-xtensa-*
19175
19176 TEXAS INSTRUMENTS ASoC DRIVERS
19177 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
19178 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19179 S:      Maintained
19180 F:      Documentation/devicetree/bindings/sound/davinci-mcasp-audio.yaml
19181 F:      sound/soc/ti/
19182
19183 TEXAS INSTRUMENTS' DAC7612 DAC DRIVER
19184 M:      Ricardo Ribalda <ribalda@kernel.org>
19185 L:      linux-iio@vger.kernel.org
19186 S:      Supported
19187 F:      Documentation/devicetree/bindings/iio/dac/ti,dac7612.yaml
19188 F:      drivers/iio/dac/ti-dac7612.c
19189
19190 TEXAS INSTRUMENTS DMA DRIVERS
19191 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
19192 L:      dmaengine@vger.kernel.org
19193 S:      Maintained
19194 F:      Documentation/devicetree/bindings/dma/ti-dma-crossbar.txt
19195 F:      Documentation/devicetree/bindings/dma/ti-edma.txt
19196 F:      Documentation/devicetree/bindings/dma/ti/
19197 F:      drivers/dma/ti/
19198 X:      drivers/dma/ti/cppi41.c
19199 F:      include/linux/dma/k3-udma-glue.h
19200 F:      include/linux/dma/ti-cppi5.h
19201 F:      include/linux/dma/k3-psil.h
19202
19203 TEXAS INSTRUMENTS' SYSTEM CONTROL INTERFACE (TISCI) PROTOCOL DRIVER
19204 M:      Nishanth Menon <nm@ti.com>
19205 M:      Tero Kristo <kristo@kernel.org>
19206 M:      Santosh Shilimkar <ssantosh@kernel.org>
19207 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
19208 S:      Maintained
19209 F:      Documentation/devicetree/bindings/arm/keystone/ti,k3-sci-common.yaml
19210 F:      Documentation/devicetree/bindings/arm/keystone/ti,sci.yaml
19211 F:      Documentation/devicetree/bindings/clock/ti,sci-clk.yaml
19212 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-inta.yaml
19213 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-intr.yaml
19214 F:      Documentation/devicetree/bindings/reset/ti,sci-reset.yaml
19215 F:      Documentation/devicetree/bindings/soc/ti/sci-pm-domain.yaml
19216 F:      drivers/clk/keystone/sci-clk.c
19217 F:      drivers/firmware/ti_sci*
19218 F:      drivers/irqchip/irq-ti-sci-inta.c
19219 F:      drivers/irqchip/irq-ti-sci-intr.c
19220 F:      drivers/reset/reset-ti-sci.c
19221 F:      drivers/soc/ti/ti_sci_inta_msi.c
19222 F:      drivers/soc/ti/ti_sci_pm_domains.c
19223 F:      include/dt-bindings/soc/ti,sci_pm_domain.h
19224 F:      include/linux/soc/ti/ti_sci_inta_msi.h
19225 F:      include/linux/soc/ti/ti_sci_protocol.h
19226
19227 TEXAS INSTRUMENTS TPS23861 PoE PSE DRIVER
19228 M:      Robert Marko <robert.marko@sartura.hr>
19229 M:      Luka Perkov <luka.perkov@sartura.hr>
19230 L:      linux-hwmon@vger.kernel.org
19231 S:      Maintained
19232 F:      Documentation/devicetree/bindings/hwmon/ti,tps23861.yaml
19233 F:      Documentation/hwmon/tps23861.rst
19234 F:      drivers/hwmon/tps23861.c
19235
19236 TEXAS INSTRUMENTS' TMP117 TEMPERATURE SENSOR DRIVER
19237 M:      Puranjay Mohan <puranjay12@gmail.com>
19238 L:      linux-iio@vger.kernel.org
19239 S:      Supported
19240 F:      Documentation/devicetree/bindings/iio/temperature/ti,tmp117.yaml
19241 F:      drivers/iio/temperature/tmp117.c
19242
19243 THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER
19244 M:      Hans Verkuil <hverkuil@xs4all.nl>
19245 L:      linux-media@vger.kernel.org
19246 S:      Maintained
19247 W:      https://linuxtv.org
19248 T:      git git://linuxtv.org/media_tree.git
19249 F:      drivers/media/radio/radio-raremono.c
19250
19251 THERMAL
19252 M:      Rafael J. Wysocki <rafael@kernel.org>
19253 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
19254 R:      Amit Kucheria <amitk@kernel.org>
19255 R:      Zhang Rui <rui.zhang@intel.com>
19256 L:      linux-pm@vger.kernel.org
19257 S:      Supported
19258 Q:      https://patchwork.kernel.org/project/linux-pm/list/
19259 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git thermal
19260 F:      Documentation/ABI/testing/sysfs-class-thermal
19261 F:      Documentation/devicetree/bindings/thermal/
19262 F:      Documentation/driver-api/thermal/
19263 F:      drivers/thermal/
19264 F:      include/linux/cpu_cooling.h
19265 F:      include/linux/thermal.h
19266 F:      include/uapi/linux/thermal.h
19267 F:      tools/thermal/
19268
19269 THERMAL DRIVER FOR AMLOGIC SOCS
19270 M:      Guillaume La Roque <glaroque@baylibre.com>
19271 L:      linux-pm@vger.kernel.org
19272 L:      linux-amlogic@lists.infradead.org
19273 S:      Supported
19274 W:      http://linux-meson.com/
19275 F:      Documentation/devicetree/bindings/thermal/amlogic,thermal.yaml
19276 F:      drivers/thermal/amlogic_thermal.c
19277
19278 THERMAL/CPU_COOLING
19279 M:      Amit Daniel Kachhap <amit.kachhap@gmail.com>
19280 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
19281 M:      Viresh Kumar <viresh.kumar@linaro.org>
19282 R:      Lukasz Luba <lukasz.luba@arm.com>
19283 L:      linux-pm@vger.kernel.org
19284 S:      Supported
19285 F:      Documentation/driver-api/thermal/cpu-cooling-api.rst
19286 F:      Documentation/driver-api/thermal/cpu-idle-cooling.rst
19287 F:      drivers/thermal/cpufreq_cooling.c
19288 F:      drivers/thermal/cpuidle_cooling.c
19289 F:      include/linux/cpu_cooling.h
19290
19291 THERMAL/POWER_ALLOCATOR
19292 M:      Lukasz Luba <lukasz.luba@arm.com>
19293 L:      linux-pm@vger.kernel.org
19294 S:      Maintained
19295 F:      Documentation/driver-api/thermal/power_allocator.rst
19296 F:      drivers/thermal/gov_power_allocator.c
19297 F:      include/trace/events/thermal_power_allocator.h
19298
19299 THINKPAD ACPI EXTRAS DRIVER
19300 M:      Henrique de Moraes Holschuh <hmh@hmh.eng.br>
19301 L:      ibm-acpi-devel@lists.sourceforge.net
19302 L:      platform-driver-x86@vger.kernel.org
19303 S:      Maintained
19304 W:      http://ibm-acpi.sourceforge.net
19305 W:      http://thinkwiki.org/wiki/Ibm-acpi
19306 T:      git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
19307 F:      drivers/platform/x86/thinkpad_acpi.c
19308
19309 THINKPAD LMI DRIVER
19310 M:      Mark Pearson <markpearson@lenovo.com>
19311 L:      platform-driver-x86@vger.kernel.org
19312 S:      Maintained
19313 F:      Documentation/ABI/testing/sysfs-class-firmware-attributes
19314 F:      drivers/platform/x86/think-lmi.?
19315
19316 THUNDERBOLT DMA TRAFFIC TEST DRIVER
19317 M:      Isaac Hazan <isaac.hazan@intel.com>
19318 L:      linux-usb@vger.kernel.org
19319 S:      Maintained
19320 F:      drivers/thunderbolt/dma_test.c
19321
19322 THUNDERBOLT DRIVER
19323 M:      Andreas Noever <andreas.noever@gmail.com>
19324 M:      Michael Jamet <michael.jamet@intel.com>
19325 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
19326 M:      Yehezkel Bernat <YehezkelShB@gmail.com>
19327 L:      linux-usb@vger.kernel.org
19328 S:      Maintained
19329 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/westeri/thunderbolt.git
19330 F:      Documentation/admin-guide/thunderbolt.rst
19331 F:      drivers/thunderbolt/
19332 F:      include/linux/thunderbolt.h
19333
19334 THUNDERBOLT NETWORK DRIVER
19335 M:      Michael Jamet <michael.jamet@intel.com>
19336 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
19337 M:      Yehezkel Bernat <YehezkelShB@gmail.com>
19338 L:      netdev@vger.kernel.org
19339 S:      Maintained
19340 F:      drivers/net/thunderbolt.c
19341
19342 THUNDERX GPIO DRIVER
19343 M:      Robert Richter <rric@kernel.org>
19344 S:      Odd Fixes
19345 F:      drivers/gpio/gpio-thunderx.c
19346
19347 TI ADS131E0X ADC SERIES DRIVER
19348 M:      Tomislav Denis <tomislav.denis@avl.com>
19349 L:      linux-iio@vger.kernel.org
19350 S:      Maintained
19351 F:      Documentation/devicetree/bindings/iio/adc/ti,ads131e08.yaml
19352 F:      drivers/iio/adc/ti-ads131e08.c
19353
19354 TI AM437X VPFE DRIVER
19355 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
19356 L:      linux-media@vger.kernel.org
19357 S:      Maintained
19358 W:      https://linuxtv.org
19359 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19360 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
19361 F:      drivers/media/platform/ti/am437x/
19362
19363 TI BANDGAP AND THERMAL DRIVER
19364 M:      Eduardo Valentin <edubezval@gmail.com>
19365 M:      Keerthy <j-keerthy@ti.com>
19366 L:      linux-pm@vger.kernel.org
19367 L:      linux-omap@vger.kernel.org
19368 S:      Maintained
19369 F:      drivers/thermal/ti-soc-thermal/
19370
19371 TI BQ27XXX POWER SUPPLY DRIVER
19372 F:      drivers/power/supply/bq27xxx_battery.c
19373 F:      drivers/power/supply/bq27xxx_battery_i2c.c
19374 F:      include/linux/power/bq27xxx_battery.h
19375
19376 TI CDCE706 CLOCK DRIVER
19377 M:      Max Filippov <jcmvbkbc@gmail.com>
19378 S:      Maintained
19379 F:      drivers/clk/clk-cdce706.c
19380
19381 TI CLOCK DRIVER
19382 M:      Tero Kristo <kristo@kernel.org>
19383 L:      linux-omap@vger.kernel.org
19384 S:      Odd Fixes
19385 F:      drivers/clk/ti/
19386 F:      include/linux/clk/ti.h
19387
19388 TI DAVINCI MACHINE SUPPORT
19389 M:      Sekhar Nori <nsekhar@ti.com>
19390 R:      Bartosz Golaszewski <brgl@bgdev.pl>
19391 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
19392 S:      Supported
19393 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nsekhar/linux-davinci.git
19394 F:      Documentation/devicetree/bindings/i2c/i2c-davinci.txt
19395 F:      arch/arm/boot/dts/da850*
19396 F:      arch/arm/mach-davinci/
19397 F:      drivers/i2c/busses/i2c-davinci.c
19398
19399 TI DAVINCI SERIES CLOCK DRIVER
19400 M:      David Lechner <david@lechnology.com>
19401 R:      Sekhar Nori <nsekhar@ti.com>
19402 S:      Maintained
19403 F:      Documentation/devicetree/bindings/clock/ti/davinci/
19404 F:      drivers/clk/davinci/
19405
19406 TI DAVINCI SERIES GPIO DRIVER
19407 M:      Keerthy <j-keerthy@ti.com>
19408 L:      linux-gpio@vger.kernel.org
19409 S:      Maintained
19410 F:      Documentation/devicetree/bindings/gpio/gpio-davinci.yaml
19411 F:      drivers/gpio/gpio-davinci.c
19412
19413 TI DAVINCI SERIES MEDIA DRIVER
19414 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
19415 L:      linux-media@vger.kernel.org
19416 S:      Maintained
19417 W:      https://linuxtv.org
19418 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19419 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
19420 F:      drivers/media/platform/ti/davinci/
19421 F:      include/media/davinci/
19422
19423 TI ENHANCED QUADRATURE ENCODER PULSE (eQEP) DRIVER
19424 R:      David Lechner <david@lechnology.com>
19425 L:      linux-iio@vger.kernel.org
19426 F:      Documentation/devicetree/bindings/counter/ti-eqep.yaml
19427 F:      drivers/counter/ti-eqep.c
19428
19429 TI ETHERNET SWITCH DRIVER (CPSW)
19430 R:      Grygorii Strashko <grygorii.strashko@ti.com>
19431 L:      linux-omap@vger.kernel.org
19432 L:      netdev@vger.kernel.org
19433 S:      Maintained
19434 F:      drivers/net/ethernet/ti/cpsw*
19435 F:      drivers/net/ethernet/ti/davinci*
19436
19437 TI FLASH MEDIA MEMORYSTICK/MMC DRIVERS
19438 M:      Alex Dubov <oakad@yahoo.com>
19439 S:      Maintained
19440 W:      http://tifmxx.berlios.de/
19441 F:      drivers/memstick/host/tifm_ms.c
19442 F:      drivers/misc/tifm*
19443 F:      drivers/mmc/host/tifm_sd.c
19444 F:      include/linux/tifm.h
19445
19446 TI KEYSTONE MULTICORE NAVIGATOR DRIVERS
19447 M:      Nishanth Menon <nm@ti.com>
19448 M:      Santosh Shilimkar <ssantosh@kernel.org>
19449 L:      linux-kernel@vger.kernel.org
19450 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
19451 S:      Maintained
19452 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ti/linux.git
19453 F:      drivers/soc/ti/*
19454
19455 TI LM49xxx FAMILY ASoC CODEC DRIVERS
19456 M:      M R Swami Reddy <mr.swami.reddy@ti.com>
19457 M:      Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
19458 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19459 S:      Maintained
19460 F:      sound/soc/codecs/isabelle*
19461 F:      sound/soc/codecs/lm49453*
19462
19463 TI PCM3060 ASoC CODEC DRIVER
19464 M:      Kirill Marinushkin <kmarinushkin@birdec.com>
19465 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19466 S:      Maintained
19467 F:      Documentation/devicetree/bindings/sound/pcm3060.txt
19468 F:      sound/soc/codecs/pcm3060*
19469
19470 TI TAS571X FAMILY ASoC CODEC DRIVER
19471 M:      Kevin Cernekee <cernekee@chromium.org>
19472 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19473 S:      Odd Fixes
19474 F:      sound/soc/codecs/tas571x*
19475
19476 TI TRF7970A NFC DRIVER
19477 M:      Mark Greer <mgreer@animalcreek.com>
19478 L:      linux-wireless@vger.kernel.org
19479 L:      linux-nfc@lists.01.org (subscribers-only)
19480 S:      Supported
19481 F:      Documentation/devicetree/bindings/net/nfc/ti,trf7970a.yaml
19482 F:      drivers/nfc/trf7970a.c
19483
19484 TI TSC2046 ADC DRIVER
19485 M:      Oleksij Rempel <o.rempel@pengutronix.de>
19486 R:      kernel@pengutronix.de
19487 L:      linux-iio@vger.kernel.org
19488 S:      Maintained
19489 F:      Documentation/devicetree/bindings/iio/adc/ti,tsc2046.yaml
19490 F:      drivers/iio/adc/ti-tsc2046.c
19491
19492 TI TWL4030 SERIES SOC CODEC DRIVER
19493 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
19494 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19495 S:      Maintained
19496 F:      sound/soc/codecs/twl4030*
19497
19498 TI VPE/CAL DRIVERS
19499 M:      Benoit Parrot <bparrot@ti.com>
19500 L:      linux-media@vger.kernel.org
19501 S:      Maintained
19502 W:      http://linuxtv.org/
19503 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19504 F:      Documentation/devicetree/bindings/media/ti,cal.yaml
19505 F:      Documentation/devicetree/bindings/media/ti,vpe.yaml
19506 F:      drivers/media/platform/ti/cal/
19507 F:      drivers/media/platform/ti/vpe/
19508
19509 TI WILINK WIRELESS DRIVERS
19510 L:      linux-wireless@vger.kernel.org
19511 S:      Orphan
19512 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wl12xx
19513 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wl1251
19514 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
19515 F:      drivers/net/wireless/ti/
19516 F:      include/linux/wl12xx.h
19517
19518 TIMEKEEPING, CLOCKSOURCE CORE, NTP, ALARMTIMER
19519 M:      John Stultz <john.stultz@linaro.org>
19520 M:      Thomas Gleixner <tglx@linutronix.de>
19521 R:      Stephen Boyd <sboyd@kernel.org>
19522 L:      linux-kernel@vger.kernel.org
19523 S:      Supported
19524 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
19525 F:      include/linux/clocksource.h
19526 F:      include/linux/time.h
19527 F:      include/linux/timex.h
19528 F:      include/uapi/linux/time.h
19529 F:      include/uapi/linux/timex.h
19530 F:      kernel/time/alarmtimer.c
19531 F:      kernel/time/clocksource.c
19532 F:      kernel/time/ntp.c
19533 F:      kernel/time/time*.c
19534 F:      tools/testing/selftests/timers/
19535
19536 TIPC NETWORK LAYER
19537 M:      Jon Maloy <jmaloy@redhat.com>
19538 M:      Ying Xue <ying.xue@windriver.com>
19539 L:      netdev@vger.kernel.org (core kernel code)
19540 L:      tipc-discussion@lists.sourceforge.net (user apps, general discussion)
19541 S:      Maintained
19542 W:      http://tipc.sourceforge.net/
19543 F:      include/uapi/linux/tipc*.h
19544 F:      net/tipc/
19545
19546 TLAN NETWORK DRIVER
19547 M:      Samuel Chessman <chessman@tux.org>
19548 L:      tlan-devel@lists.sourceforge.net (subscribers-only)
19549 S:      Maintained
19550 W:      http://sourceforge.net/projects/tlan/
19551 F:      Documentation/networking/device_drivers/ethernet/ti/tlan.rst
19552 F:      drivers/net/ethernet/ti/tlan.*
19553
19554 TM6000 VIDEO4LINUX DRIVER
19555 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
19556 L:      linux-media@vger.kernel.org
19557 S:      Odd fixes
19558 W:      https://linuxtv.org
19559 T:      git git://linuxtv.org/media_tree.git
19560 F:      Documentation/admin-guide/media/tm6000*
19561 F:      drivers/media/usb/tm6000/
19562
19563 TMIO/SDHI MMC DRIVER
19564 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
19565 L:      linux-mmc@vger.kernel.org
19566 S:      Supported
19567 F:      drivers/mmc/host/renesas_sdhi*
19568 F:      drivers/mmc/host/tmio_mmc*
19569 F:      include/linux/mfd/tmio.h
19570
19571 TMP401 HARDWARE MONITOR DRIVER
19572 M:      Guenter Roeck <linux@roeck-us.net>
19573 L:      linux-hwmon@vger.kernel.org
19574 S:      Maintained
19575 F:      Documentation/hwmon/tmp401.rst
19576 F:      drivers/hwmon/tmp401.c
19577
19578 TMP464 HARDWARE MONITOR DRIVER
19579 M:      Agathe Porte <agathe.porte@nokia.com>
19580 M:      Guenter Roeck <linux@roeck-us.net>
19581 L:      linux-hwmon@vger.kernel.org
19582 S:      Maintained
19583 F:      Documentation/devicetree/bindings/hwmon/ti,tmp464.yaml
19584 F:      Documentation/hwmon/tmp464.rst
19585 F:      drivers/hwmon/tmp464.c
19586
19587 TMP513 HARDWARE MONITOR DRIVER
19588 M:      Eric Tremblay <etremblay@distech-controls.com>
19589 L:      linux-hwmon@vger.kernel.org
19590 S:      Maintained
19591 F:      Documentation/hwmon/tmp513.rst
19592 F:      drivers/hwmon/tmp513.c
19593
19594 TMPFS (SHMEM FILESYSTEM)
19595 M:      Hugh Dickins <hughd@google.com>
19596 L:      linux-mm@kvack.org
19597 S:      Maintained
19598 F:      include/linux/shmem_fs.h
19599 F:      mm/shmem.c
19600
19601 TOMOYO SECURITY MODULE
19602 M:      Kentaro Takeda <takedakn@nttdata.co.jp>
19603 M:      Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
19604 L:      tomoyo-dev-en@lists.osdn.me (subscribers-only, for developers in English)
19605 L:      tomoyo-users-en@lists.osdn.me (subscribers-only, for users in English)
19606 L:      tomoyo-dev@lists.osdn.me (subscribers-only, for developers in Japanese)
19607 L:      tomoyo-users@lists.osdn.me (subscribers-only, for users in Japanese)
19608 S:      Maintained
19609 W:      https://tomoyo.osdn.jp/
19610 F:      security/tomoyo/
19611
19612 TOPSTAR LAPTOP EXTRAS DRIVER
19613 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
19614 L:      platform-driver-x86@vger.kernel.org
19615 S:      Maintained
19616 F:      drivers/platform/x86/topstar-laptop.c
19617
19618 TORTURE-TEST MODULES
19619 M:      Davidlohr Bueso <dave@stgolabs.net>
19620 M:      "Paul E. McKenney" <paulmck@kernel.org>
19621 M:      Josh Triplett <josh@joshtriplett.org>
19622 L:      linux-kernel@vger.kernel.org
19623 S:      Supported
19624 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
19625 F:      Documentation/RCU/torture.rst
19626 F:      kernel/locking/locktorture.c
19627 F:      kernel/rcu/rcuscale.c
19628 F:      kernel/rcu/rcutorture.c
19629 F:      kernel/rcu/refscale.c
19630 F:      kernel/torture.c
19631
19632 TOSHIBA ACPI EXTRAS DRIVER
19633 M:      Azael Avalos <coproscefalo@gmail.com>
19634 L:      platform-driver-x86@vger.kernel.org
19635 S:      Maintained
19636 F:      drivers/platform/x86/toshiba_acpi.c
19637
19638 TOSHIBA BLUETOOTH DRIVER
19639 M:      Azael Avalos <coproscefalo@gmail.com>
19640 L:      platform-driver-x86@vger.kernel.org
19641 S:      Maintained
19642 F:      drivers/platform/x86/toshiba_bluetooth.c
19643
19644 TOSHIBA HDD ACTIVE PROTECTION SENSOR DRIVER
19645 M:      Azael Avalos <coproscefalo@gmail.com>
19646 L:      platform-driver-x86@vger.kernel.org
19647 S:      Maintained
19648 F:      drivers/platform/x86/toshiba_haps.c
19649
19650 TOSHIBA SMM DRIVER
19651 M:      Jonathan Buzzard <jonathan@buzzard.org.uk>
19652 S:      Maintained
19653 W:      http://www.buzzard.org.uk/toshiba/
19654 F:      drivers/char/toshiba.c
19655 F:      include/linux/toshiba.h
19656 F:      include/uapi/linux/toshiba.h
19657
19658 TOSHIBA TC358743 DRIVER
19659 M:      Mats Randgaard <matrandg@cisco.com>
19660 L:      linux-media@vger.kernel.org
19661 S:      Maintained
19662 F:      drivers/media/i2c/tc358743*
19663 F:      include/media/i2c/tc358743.h
19664
19665 TOSHIBA WMI HOTKEYS DRIVER
19666 M:      Azael Avalos <coproscefalo@gmail.com>
19667 L:      platform-driver-x86@vger.kernel.org
19668 S:      Maintained
19669 F:      drivers/platform/x86/toshiba-wmi.c
19670
19671 TPM DEVICE DRIVER
19672 M:      Peter Huewe <peterhuewe@gmx.de>
19673 M:      Jarkko Sakkinen <jarkko@kernel.org>
19674 R:      Jason Gunthorpe <jgg@ziepe.ca>
19675 L:      linux-integrity@vger.kernel.org
19676 S:      Maintained
19677 W:      https://kernsec.org/wiki/index.php/Linux_Kernel_Integrity
19678 Q:      https://patchwork.kernel.org/project/linux-integrity/list/
19679 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jarkko/linux-tpmdd.git
19680 F:      drivers/char/tpm/
19681
19682 TRACING
19683 M:      Steven Rostedt <rostedt@goodmis.org>
19684 M:      Ingo Molnar <mingo@redhat.com>
19685 S:      Maintained
19686 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rostedt/linux-trace.git
19687 F:      Documentation/trace/ftrace.rst
19688 F:      arch/*/*/*/ftrace.h
19689 F:      arch/*/kernel/ftrace.c
19690 F:      fs/tracefs/
19691 F:      include/*/ftrace.h
19692 F:      include/linux/trace*.h
19693 F:      include/trace/
19694 F:      kernel/trace/
19695 F:      tools/testing/selftests/ftrace/
19696
19697 TRACING MMIO ACCESSES (MMIOTRACE)
19698 M:      Steven Rostedt <rostedt@goodmis.org>
19699 M:      Ingo Molnar <mingo@kernel.org>
19700 R:      Karol Herbst <karolherbst@gmail.com>
19701 R:      Pekka Paalanen <ppaalanen@gmail.com>
19702 L:      linux-kernel@vger.kernel.org
19703 L:      nouveau@lists.freedesktop.org
19704 S:      Maintained
19705 F:      arch/x86/mm/kmmio.c
19706 F:      arch/x86/mm/mmio-mod.c
19707 F:      arch/x86/mm/testmmiotrace.c
19708 F:      include/linux/mmiotrace.h
19709 F:      kernel/trace/trace_mmiotrace.c
19710
19711 TRACING OS NOISE / LATENCY TRACERS
19712 M:      Steven Rostedt <rostedt@goodmis.org>
19713 M:      Daniel Bristot de Oliveira <bristot@kernel.org>
19714 S:      Maintained
19715 F:      kernel/trace/trace_osnoise.c
19716 F:      include/trace/events/osnoise.h
19717 F:      kernel/trace/trace_hwlat.c
19718 F:      kernel/trace/trace_irqsoff.c
19719 F:      kernel/trace/trace_sched_wakeup.c
19720 F:      Documentation/trace/osnoise-tracer.rst
19721 F:      Documentation/trace/timerlat-tracer.rst
19722 F:      Documentation/trace/hwlat_detector.rst
19723 F:      arch/*/kernel/trace.c
19724
19725 Real-time Linux Analysis (RTLA) tools
19726 M:      Daniel Bristot de Oliveira <bristot@kernel.org>
19727 M:      Steven Rostedt <rostedt@goodmis.org>
19728 L:      linux-trace-devel@vger.kernel.org
19729 S:      Maintained
19730 F:      Documentation/tools/rtla/
19731 F:      tools/tracing/rtla/
19732
19733 TRADITIONAL CHINESE DOCUMENTATION
19734 M:      Hu Haowen <src.res@email.cn>
19735 L:      linux-doc-tw-discuss@lists.sourceforge.net
19736 S:      Maintained
19737 W:      https://github.com/srcres258/linux-doc
19738 T:      git git://github.com/srcres258/linux-doc.git doc-zh-tw
19739 F:      Documentation/translations/zh_TW/
19740
19741 TTY LAYER
19742 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
19743 M:      Jiri Slaby <jirislaby@kernel.org>
19744 S:      Supported
19745 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
19746 F:      Documentation/driver-api/serial/
19747 F:      drivers/tty/
19748 F:      drivers/tty/serial/serial_core.c
19749 F:      include/linux/selection.h
19750 F:      include/linux/serial.h
19751 F:      include/linux/serial_core.h
19752 F:      include/linux/sysrq.h
19753 F:      include/linux/tty*.h
19754 F:      include/linux/vt.h
19755 F:      include/linux/vt_*.h
19756 F:      include/uapi/linux/serial.h
19757 F:      include/uapi/linux/serial_core.h
19758 F:      include/uapi/linux/tty.h
19759
19760 TUA9001 MEDIA DRIVER
19761 M:      Antti Palosaari <crope@iki.fi>
19762 L:      linux-media@vger.kernel.org
19763 S:      Maintained
19764 W:      https://linuxtv.org
19765 W:      http://palosaari.fi/linux/
19766 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19767 T:      git git://linuxtv.org/anttip/media_tree.git
19768 F:      drivers/media/tuners/tua9001*
19769
19770 TULIP NETWORK DRIVERS
19771 L:      netdev@vger.kernel.org
19772 L:      linux-parisc@vger.kernel.org
19773 S:      Orphan
19774 F:      drivers/net/ethernet/dec/tulip/
19775
19776 TUN/TAP driver
19777 M:      Maxim Krasnyansky <maxk@qti.qualcomm.com>
19778 S:      Maintained
19779 W:      http://vtun.sourceforge.net/tun
19780 F:      Documentation/networking/tuntap.rst
19781 F:      arch/um/os-Linux/drivers/
19782
19783 TURBOCHANNEL SUBSYSTEM
19784 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
19785 M:      Ralf Baechle <ralf@linux-mips.org>
19786 L:      linux-mips@vger.kernel.org
19787 S:      Maintained
19788 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
19789 F:      drivers/tc/
19790 F:      include/linux/tc.h
19791
19792 TURBOSTAT UTILITY
19793 M:      "Len Brown" <lenb@kernel.org>
19794 L:      linux-pm@vger.kernel.org
19795 S:      Supported
19796 Q:      https://patchwork.kernel.org/project/linux-pm/list/
19797 B:      https://bugzilla.kernel.org
19798 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git turbostat
19799 F:      tools/power/x86/turbostat/
19800
19801 TW5864 VIDEO4LINUX DRIVER
19802 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
19803 M:      Anton Sviridenko <anton@corp.bluecherry.net>
19804 M:      Andrey Utkin <andrey.utkin@corp.bluecherry.net>
19805 M:      Andrey Utkin <andrey_utkin@fastmail.com>
19806 L:      linux-media@vger.kernel.org
19807 S:      Supported
19808 F:      drivers/media/pci/tw5864/
19809
19810 TW68 VIDEO4LINUX DRIVER
19811 M:      Hans Verkuil <hverkuil@xs4all.nl>
19812 L:      linux-media@vger.kernel.org
19813 S:      Odd Fixes
19814 W:      https://linuxtv.org
19815 T:      git git://linuxtv.org/media_tree.git
19816 F:      drivers/media/pci/tw68/
19817
19818 TW686X VIDEO4LINUX DRIVER
19819 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
19820 L:      linux-media@vger.kernel.org
19821 S:      Maintained
19822 W:      http://linuxtv.org
19823 T:      git git://linuxtv.org/media_tree.git
19824 F:      drivers/media/pci/tw686x/
19825
19826 UACCE ACCELERATOR FRAMEWORK
19827 M:      Zhangfei Gao <zhangfei.gao@linaro.org>
19828 M:      Zhou Wang <wangzhou1@hisilicon.com>
19829 L:      linux-accelerators@lists.ozlabs.org
19830 L:      linux-kernel@vger.kernel.org
19831 S:      Maintained
19832 F:      Documentation/ABI/testing/sysfs-driver-uacce
19833 F:      Documentation/misc-devices/uacce.rst
19834 F:      drivers/misc/uacce/
19835 F:      include/linux/uacce.h
19836 F:      include/uapi/misc/uacce/
19837
19838 UBI FILE SYSTEM (UBIFS)
19839 M:      Richard Weinberger <richard@nod.at>
19840 L:      linux-mtd@lists.infradead.org
19841 S:      Supported
19842 W:      http://www.linux-mtd.infradead.org/doc/ubifs.html
19843 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
19844 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
19845 F:      Documentation/ABI/testing/sysfs-fs-ubifs
19846 F:      Documentation/filesystems/ubifs-authentication.rst
19847 F:      Documentation/filesystems/ubifs.rst
19848 F:      fs/ubifs/
19849
19850 UCLINUX (M68KNOMMU AND COLDFIRE)
19851 M:      Greg Ungerer <gerg@linux-m68k.org>
19852 L:      linux-m68k@lists.linux-m68k.org
19853 L:      uclinux-dev@uclinux.org  (subscribers-only)
19854 S:      Maintained
19855 W:      http://www.linux-m68k.org/
19856 W:      http://www.uclinux.org/
19857 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git
19858 F:      arch/m68k/*/*_no.*
19859 F:      arch/m68k/68*/
19860 F:      arch/m68k/coldfire/
19861 F:      arch/m68k/include/asm/*_no.*
19862
19863 UDF FILESYSTEM
19864 M:      Jan Kara <jack@suse.com>
19865 S:      Maintained
19866 F:      Documentation/filesystems/udf.rst
19867 F:      fs/udf/
19868
19869 UDRAW TABLET
19870 M:      Bastien Nocera <hadess@hadess.net>
19871 L:      linux-input@vger.kernel.org
19872 S:      Maintained
19873 F:      drivers/hid/hid-udraw-ps3.c
19874
19875 UFS FILESYSTEM
19876 M:      Evgeniy Dushistov <dushistov@mail.ru>
19877 S:      Maintained
19878 F:      Documentation/admin-guide/ufs.rst
19879 F:      fs/ufs/
19880
19881 UHID USERSPACE HID IO DRIVER
19882 M:      David Rheinsberg <david.rheinsberg@gmail.com>
19883 L:      linux-input@vger.kernel.org
19884 S:      Maintained
19885 F:      drivers/hid/uhid.c
19886 F:      include/uapi/linux/uhid.h
19887
19888 ULPI BUS
19889 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
19890 L:      linux-usb@vger.kernel.org
19891 S:      Maintained
19892 F:      drivers/usb/common/ulpi.c
19893 F:      include/linux/ulpi/
19894
19895 UNICODE SUBSYSTEM
19896 M:      Gabriel Krisman Bertazi <krisman@collabora.com>
19897 L:      linux-fsdevel@vger.kernel.org
19898 S:      Supported
19899 F:      fs/unicode/
19900
19901 UNIFDEF
19902 M:      Tony Finch <dot@dotat.at>
19903 S:      Maintained
19904 W:      http://dotat.at/prog/unifdef
19905 F:      scripts/unifdef.c
19906
19907 UNIFORM CDROM DRIVER
19908 M:      Phillip Potter <phil@philpotter.co.uk>
19909 S:      Maintained
19910 F:      Documentation/cdrom/
19911 F:      drivers/cdrom/cdrom.c
19912 F:      include/linux/cdrom.h
19913 F:      include/uapi/linux/cdrom.h
19914
19915 UNISYS S-PAR DRIVERS
19916 M:      David Kershner <david.kershner@unisys.com>
19917 L:      sparmaintainer@unisys.com (Unisys internal)
19918 S:      Supported
19919 F:      drivers/staging/unisys/
19920 F:      drivers/visorbus/
19921 F:      include/linux/visorbus.h
19922
19923 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
19924 R:      Alim Akhtar <alim.akhtar@samsung.com>
19925 R:      Avri Altman <avri.altman@wdc.com>
19926 L:      linux-scsi@vger.kernel.org
19927 S:      Supported
19928 F:      Documentation/scsi/ufs.rst
19929 F:      drivers/scsi/ufs/
19930
19931 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER DWC HOOKS
19932 M:      Pedro Sousa <pedrom.sousa@synopsys.com>
19933 L:      linux-scsi@vger.kernel.org
19934 S:      Supported
19935 F:      drivers/scsi/ufs/*dwc*
19936
19937 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER MEDIATEK HOOKS
19938 M:      Stanley Chu <stanley.chu@mediatek.com>
19939 L:      linux-scsi@vger.kernel.org
19940 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
19941 S:      Maintained
19942 F:      drivers/scsi/ufs/ufs-mediatek*
19943
19944 UNSORTED BLOCK IMAGES (UBI)
19945 M:      Richard Weinberger <richard@nod.at>
19946 L:      linux-mtd@lists.infradead.org
19947 S:      Supported
19948 W:      http://www.linux-mtd.infradead.org/
19949 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
19950 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
19951 F:      drivers/mtd/ubi/
19952 F:      include/linux/mtd/ubi.h
19953 F:      include/uapi/mtd/ubi-user.h
19954
19955 USB "USBNET" DRIVER FRAMEWORK
19956 M:      Oliver Neukum <oneukum@suse.com>
19957 L:      netdev@vger.kernel.org
19958 S:      Maintained
19959 W:      http://www.linux-usb.org/usbnet
19960 F:      drivers/net/usb/usbnet.c
19961 F:      include/linux/usb/usbnet.h
19962
19963 USB ACM DRIVER
19964 M:      Oliver Neukum <oneukum@suse.com>
19965 L:      linux-usb@vger.kernel.org
19966 S:      Maintained
19967 F:      Documentation/usb/acm.rst
19968 F:      drivers/usb/class/cdc-acm.*
19969
19970 USB APPLE MFI FASTCHARGE DRIVER
19971 M:      Bastien Nocera <hadess@hadess.net>
19972 L:      linux-usb@vger.kernel.org
19973 S:      Maintained
19974 F:      drivers/usb/misc/apple-mfi-fastcharge.c
19975
19976 USB AR5523 WIRELESS DRIVER
19977 M:      Pontus Fuchs <pontus.fuchs@gmail.com>
19978 L:      linux-wireless@vger.kernel.org
19979 S:      Maintained
19980 F:      drivers/net/wireless/ath/ar5523/
19981
19982 USB ATTACHED SCSI
19983 M:      Oliver Neukum <oneukum@suse.com>
19984 L:      linux-usb@vger.kernel.org
19985 L:      linux-scsi@vger.kernel.org
19986 S:      Maintained
19987 F:      drivers/usb/storage/uas.c
19988
19989 USB CDC ETHERNET DRIVER
19990 M:      Oliver Neukum <oliver@neukum.org>
19991 L:      linux-usb@vger.kernel.org
19992 S:      Maintained
19993 F:      drivers/net/usb/cdc_*.c
19994 F:      include/uapi/linux/usb/cdc.h
19995
19996 USB CHAOSKEY DRIVER
19997 M:      Keith Packard <keithp@keithp.com>
19998 L:      linux-usb@vger.kernel.org
19999 S:      Maintained
20000 F:      drivers/usb/misc/chaoskey.c
20001
20002 USB CYPRESS C67X00 DRIVER
20003 L:      linux-usb@vger.kernel.org
20004 S:      Orphan
20005 F:      drivers/usb/c67x00/
20006
20007 USB DAVICOM DM9601 DRIVER
20008 M:      Peter Korsgaard <peter@korsgaard.com>
20009 L:      netdev@vger.kernel.org
20010 S:      Maintained
20011 W:      http://www.linux-usb.org/usbnet
20012 F:      drivers/net/usb/dm9601.c
20013
20014 USB EHCI DRIVER
20015 M:      Alan Stern <stern@rowland.harvard.edu>
20016 L:      linux-usb@vger.kernel.org
20017 S:      Maintained
20018 F:      Documentation/usb/ehci.rst
20019 F:      drivers/usb/host/ehci*
20020
20021 USB GADGET/PERIPHERAL SUBSYSTEM
20022 M:      Felipe Balbi <balbi@kernel.org>
20023 L:      linux-usb@vger.kernel.org
20024 S:      Maintained
20025 W:      http://www.linux-usb.org/gadget
20026 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
20027 F:      drivers/usb/gadget/
20028 F:      include/linux/usb/gadget*
20029
20030 USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
20031 M:      Jiri Kosina <jikos@kernel.org>
20032 M:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
20033 L:      linux-usb@vger.kernel.org
20034 S:      Maintained
20035 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
20036 F:      Documentation/hid/hiddev.rst
20037 F:      drivers/hid/usbhid/
20038
20039 USB INTEL XHCI ROLE MUX DRIVER
20040 M:      Hans de Goede <hdegoede@redhat.com>
20041 L:      linux-usb@vger.kernel.org
20042 S:      Maintained
20043 F:      drivers/usb/roles/intel-xhci-usb-role-switch.c
20044
20045 USB IP DRIVER FOR HISILICON KIRIN 960
20046 M:      Yu Chen <chenyu56@huawei.com>
20047 M:      Binghui Wang <wangbinghui@hisilicon.com>
20048 L:      linux-usb@vger.kernel.org
20049 S:      Maintained
20050 F:      Documentation/devicetree/bindings/phy/hisilicon,hi3660-usb3.yaml
20051 F:      drivers/phy/hisilicon/phy-hi3660-usb3.c
20052
20053 USB IP DRIVER FOR HISILICON KIRIN 970
20054 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
20055 L:      linux-usb@vger.kernel.org
20056 S:      Maintained
20057 F:      Documentation/devicetree/bindings/phy/hisilicon,hi3670-usb3.yaml
20058 F:      drivers/phy/hisilicon/phy-hi3670-usb3.c
20059
20060 USB ISP116X DRIVER
20061 M:      Olav Kongas <ok@artecdesign.ee>
20062 L:      linux-usb@vger.kernel.org
20063 S:      Maintained
20064 F:      drivers/usb/host/isp116x*
20065 F:      include/linux/usb/isp116x.h
20066
20067 USB ISP1760 DRIVER
20068 M:      Rui Miguel Silva <rui.silva@linaro.org>
20069 L:      linux-usb@vger.kernel.org
20070 S:      Maintained
20071 F:      drivers/usb/isp1760/*
20072 F:      Documentation/devicetree/bindings/usb/nxp,isp1760.yaml
20073
20074 USB LAN78XX ETHERNET DRIVER
20075 M:      Woojung Huh <woojung.huh@microchip.com>
20076 M:      UNGLinuxDriver@microchip.com
20077 L:      netdev@vger.kernel.org
20078 S:      Maintained
20079 F:      Documentation/devicetree/bindings/net/microchip,lan78xx.txt
20080 F:      drivers/net/usb/lan78xx.*
20081 F:      include/dt-bindings/net/microchip-lan78xx.h
20082
20083 USB MASS STORAGE DRIVER
20084 M:      Alan Stern <stern@rowland.harvard.edu>
20085 L:      linux-usb@vger.kernel.org
20086 L:      usb-storage@lists.one-eyed-alien.net
20087 S:      Maintained
20088 F:      drivers/usb/storage/
20089
20090 USB MIDI DRIVER
20091 M:      Clemens Ladisch <clemens@ladisch.de>
20092 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
20093 S:      Maintained
20094 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
20095 F:      sound/usb/midi.*
20096
20097 USB NETWORKING DRIVERS
20098 L:      linux-usb@vger.kernel.org
20099 S:      Odd Fixes
20100 F:      drivers/net/usb/
20101
20102 USB OHCI DRIVER
20103 M:      Alan Stern <stern@rowland.harvard.edu>
20104 L:      linux-usb@vger.kernel.org
20105 S:      Maintained
20106 F:      Documentation/usb/ohci.rst
20107 F:      drivers/usb/host/ohci*
20108
20109 USB OTG FSM (Finite State Machine)
20110 M:      Peter Chen <peter.chen@kernel.org>
20111 L:      linux-usb@vger.kernel.org
20112 S:      Maintained
20113 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
20114 F:      drivers/usb/common/usb-otg-fsm.c
20115
20116 USB OVER IP DRIVER
20117 M:      Valentina Manea <valentina.manea.m@gmail.com>
20118 M:      Shuah Khan <shuah@kernel.org>
20119 M:      Shuah Khan <skhan@linuxfoundation.org>
20120 L:      linux-usb@vger.kernel.org
20121 S:      Maintained
20122 F:      Documentation/usb/usbip_protocol.rst
20123 F:      drivers/usb/usbip/
20124 F:      tools/testing/selftests/drivers/usb/usbip/
20125 F:      tools/usb/usbip/
20126
20127 USB PEGASUS DRIVER
20128 M:      Petko Manolov <petkan@nucleusys.com>
20129 L:      linux-usb@vger.kernel.org
20130 L:      netdev@vger.kernel.org
20131 S:      Maintained
20132 W:      https://github.com/petkan/pegasus
20133 T:      git git://github.com/petkan/pegasus.git
20134 F:      drivers/net/usb/pegasus.*
20135
20136 USB PHY LAYER
20137 M:      Felipe Balbi <balbi@kernel.org>
20138 L:      linux-usb@vger.kernel.org
20139 S:      Maintained
20140 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
20141 F:      drivers/usb/phy/
20142
20143 USB PRINTER DRIVER (usblp)
20144 M:      Pete Zaitcev <zaitcev@redhat.com>
20145 L:      linux-usb@vger.kernel.org
20146 S:      Supported
20147 F:      drivers/usb/class/usblp.c
20148
20149 USB RAW GADGET DRIVER
20150 R:      Andrey Konovalov <andreyknvl@gmail.com>
20151 L:      linux-usb@vger.kernel.org
20152 S:      Maintained
20153 F:      Documentation/usb/raw-gadget.rst
20154 F:      drivers/usb/gadget/legacy/raw_gadget.c
20155 F:      include/uapi/linux/usb/raw_gadget.h
20156
20157 USB QMI WWAN NETWORK DRIVER
20158 M:      Bjørn Mork <bjorn@mork.no>
20159 L:      netdev@vger.kernel.org
20160 S:      Maintained
20161 F:      Documentation/ABI/testing/sysfs-class-net-qmi
20162 F:      drivers/net/usb/qmi_wwan.c
20163
20164 USB RTL8150 DRIVER
20165 M:      Petko Manolov <petkan@nucleusys.com>
20166 L:      linux-usb@vger.kernel.org
20167 L:      netdev@vger.kernel.org
20168 S:      Maintained
20169 W:      https://github.com/petkan/rtl8150
20170 T:      git git://github.com/petkan/rtl8150.git
20171 F:      drivers/net/usb/rtl8150.c
20172
20173 USB SERIAL SUBSYSTEM
20174 M:      Johan Hovold <johan@kernel.org>
20175 L:      linux-usb@vger.kernel.org
20176 S:      Maintained
20177 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/usb-serial.git
20178 F:      Documentation/usb/usb-serial.rst
20179 F:      drivers/usb/serial/
20180 F:      include/linux/usb/serial.h
20181
20182 USB SMSC75XX ETHERNET DRIVER
20183 M:      Steve Glendinning <steve.glendinning@shawell.net>
20184 L:      netdev@vger.kernel.org
20185 S:      Maintained
20186 F:      drivers/net/usb/smsc75xx.*
20187
20188 USB SMSC95XX ETHERNET DRIVER
20189 M:      Steve Glendinning <steve.glendinning@shawell.net>
20190 M:      UNGLinuxDriver@microchip.com
20191 L:      netdev@vger.kernel.org
20192 S:      Maintained
20193 F:      drivers/net/usb/smsc95xx.*
20194
20195 USB SUBSYSTEM
20196 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
20197 L:      linux-usb@vger.kernel.org
20198 S:      Supported
20199 W:      http://www.linux-usb.org
20200 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
20201 F:      Documentation/devicetree/bindings/usb/
20202 F:      Documentation/usb/
20203 F:      drivers/usb/
20204 F:      include/linux/usb.h
20205 F:      include/linux/usb/
20206
20207 USB TYPEC BUS FOR ALTERNATE MODES
20208 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
20209 L:      linux-usb@vger.kernel.org
20210 S:      Maintained
20211 F:      Documentation/ABI/testing/sysfs-bus-typec
20212 F:      Documentation/driver-api/usb/typec_bus.rst
20213 F:      drivers/usb/typec/altmodes/
20214 F:      include/linux/usb/typec_altmode.h
20215
20216 USB TYPEC CLASS
20217 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
20218 L:      linux-usb@vger.kernel.org
20219 S:      Maintained
20220 F:      Documentation/ABI/testing/sysfs-class-typec
20221 F:      Documentation/driver-api/usb/typec.rst
20222 F:      drivers/usb/typec/
20223 F:      include/linux/usb/typec.h
20224
20225 USB TYPEC INTEL PMC MUX DRIVER
20226 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
20227 L:      linux-usb@vger.kernel.org
20228 S:      Maintained
20229 F:      Documentation/firmware-guide/acpi/intel-pmc-mux.rst
20230 F:      drivers/usb/typec/mux/intel_pmc_mux.c
20231
20232 USB TYPEC PI3USB30532 MUX DRIVER
20233 M:      Hans de Goede <hdegoede@redhat.com>
20234 L:      linux-usb@vger.kernel.org
20235 S:      Maintained
20236 F:      drivers/usb/typec/mux/pi3usb30532.c
20237
20238 USB TYPEC PORT CONTROLLER DRIVERS
20239 M:      Guenter Roeck <linux@roeck-us.net>
20240 L:      linux-usb@vger.kernel.org
20241 S:      Maintained
20242 F:      drivers/usb/typec/tcpm/
20243
20244 USB UHCI DRIVER
20245 M:      Alan Stern <stern@rowland.harvard.edu>
20246 L:      linux-usb@vger.kernel.org
20247 S:      Maintained
20248 F:      drivers/usb/host/uhci*
20249
20250 USB VIDEO CLASS
20251 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
20252 L:      linux-uvc-devel@lists.sourceforge.net (subscribers-only)
20253 L:      linux-media@vger.kernel.org
20254 S:      Maintained
20255 W:      http://www.ideasonboard.org/uvc/
20256 T:      git git://linuxtv.org/media_tree.git
20257 F:      drivers/media/usb/uvc/
20258 F:      include/uapi/linux/uvcvideo.h
20259
20260 USB WEBCAM GADGET
20261 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
20262 L:      linux-usb@vger.kernel.org
20263 S:      Maintained
20264 F:      drivers/usb/gadget/function/*uvc*
20265 F:      drivers/usb/gadget/legacy/webcam.c
20266 F:      include/uapi/linux/usb/g_uvc.h
20267
20268 USB WIRELESS RNDIS DRIVER (rndis_wlan)
20269 M:      Jussi Kivilinna <jussi.kivilinna@iki.fi>
20270 L:      linux-wireless@vger.kernel.org
20271 S:      Maintained
20272 F:      drivers/net/wireless/rndis_wlan.c
20273
20274 USB XHCI DRIVER
20275 M:      Mathias Nyman <mathias.nyman@intel.com>
20276 L:      linux-usb@vger.kernel.org
20277 S:      Supported
20278 F:      drivers/usb/host/pci-quirks*
20279 F:      drivers/usb/host/xhci*
20280
20281 USB ZD1201 DRIVER
20282 L:      linux-wireless@vger.kernel.org
20283 S:      Orphan
20284 W:      http://linux-lc100020.sourceforge.net
20285 F:      drivers/net/wireless/zydas/zd1201.*
20286
20287 USB ZR364XX DRIVER
20288 M:      Antoine Jacquet <royale@zerezo.com>
20289 L:      linux-usb@vger.kernel.org
20290 L:      linux-media@vger.kernel.org
20291 S:      Maintained
20292 W:      http://royale.zerezo.com/zr364xx/
20293 T:      git git://linuxtv.org/media_tree.git
20294 F:      Documentation/admin-guide/media/zr364xx*
20295 F:      drivers/media/usb/zr364xx/
20296
20297 USER-MODE LINUX (UML)
20298 M:      Jeff Dike <jdike@addtoit.com>
20299 M:      Richard Weinberger <richard@nod.at>
20300 M:      Anton Ivanov <anton.ivanov@cambridgegreys.com>
20301 L:      linux-um@lists.infradead.org
20302 S:      Maintained
20303 W:      http://user-mode-linux.sourceforge.net
20304 Q:      https://patchwork.ozlabs.org/project/linux-um/list/
20305 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/uml.git
20306 F:      Documentation/virt/uml/
20307 F:      arch/um/
20308 F:      arch/x86/um/
20309 F:      fs/hostfs/
20310
20311 USERSPACE COPYIN/COPYOUT (UIOVEC)
20312 M:      Alexander Viro <viro@zeniv.linux.org.uk>
20313 S:      Maintained
20314 F:      include/linux/uio.h
20315 F:      lib/iov_iter.c
20316
20317 USERSPACE DMA BUFFER DRIVER
20318 M:      Gerd Hoffmann <kraxel@redhat.com>
20319 L:      dri-devel@lists.freedesktop.org
20320 S:      Maintained
20321 T:      git git://anongit.freedesktop.org/drm/drm-misc
20322 F:      drivers/dma-buf/udmabuf.c
20323 F:      include/uapi/linux/udmabuf.h
20324
20325 USERSPACE I/O (UIO)
20326 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
20327 S:      Maintained
20328 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
20329 F:      Documentation/driver-api/uio-howto.rst
20330 F:      drivers/uio/
20331 F:      include/linux/uio_driver.h
20332
20333 UTIL-LINUX PACKAGE
20334 M:      Karel Zak <kzak@redhat.com>
20335 L:      util-linux@vger.kernel.org
20336 S:      Maintained
20337 W:      http://en.wikipedia.org/wiki/Util-linux
20338 T:      git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
20339
20340 UUID HELPERS
20341 M:      Christoph Hellwig <hch@lst.de>
20342 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
20343 L:      linux-kernel@vger.kernel.org
20344 S:      Maintained
20345 T:      git git://git.infradead.org/users/hch/uuid.git
20346 F:      include/linux/uuid.h
20347 F:      include/uapi/linux/uuid.h
20348 F:      lib/test_uuid.c
20349 F:      lib/uuid.c
20350
20351 UV SYSFS DRIVER
20352 M:      Justin Ernst <justin.ernst@hpe.com>
20353 L:      platform-driver-x86@vger.kernel.org
20354 S:      Maintained
20355 F:      drivers/platform/x86/uv_sysfs.c
20356
20357 UVESAFB DRIVER
20358 M:      Michal Januszewski <spock@gentoo.org>
20359 L:      linux-fbdev@vger.kernel.org
20360 S:      Maintained
20361 W:      https://github.com/mjanusz/v86d
20362 F:      Documentation/fb/uvesafb.rst
20363 F:      drivers/video/fbdev/uvesafb.*
20364
20365 Ux500 CLOCK DRIVERS
20366 M:      Ulf Hansson <ulf.hansson@linaro.org>
20367 L:      linux-clk@vger.kernel.org
20368 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
20369 S:      Maintained
20370 F:      drivers/clk/ux500/
20371
20372 VF610 NAND DRIVER
20373 M:      Stefan Agner <stefan@agner.ch>
20374 L:      linux-mtd@lists.infradead.org
20375 S:      Supported
20376 F:      drivers/mtd/nand/raw/vf610_nfc.c
20377
20378 VFAT/FAT/MSDOS FILESYSTEM
20379 M:      OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
20380 S:      Maintained
20381 F:      Documentation/filesystems/vfat.rst
20382 F:      fs/fat/
20383
20384 VFIO DRIVER
20385 M:      Alex Williamson <alex.williamson@redhat.com>
20386 R:      Cornelia Huck <cohuck@redhat.com>
20387 L:      kvm@vger.kernel.org
20388 S:      Maintained
20389 T:      git git://github.com/awilliam/linux-vfio.git
20390 F:      Documentation/driver-api/vfio.rst
20391 F:      drivers/vfio/
20392 F:      include/linux/vfio.h
20393 F:      include/linux/vfio_pci_core.h
20394 F:      include/uapi/linux/vfio.h
20395
20396 VFIO FSL-MC DRIVER
20397 M:      Diana Craciun <diana.craciun@oss.nxp.com>
20398 L:      kvm@vger.kernel.org
20399 S:      Maintained
20400 F:      drivers/vfio/fsl-mc/
20401
20402 VFIO MEDIATED DEVICE DRIVERS
20403 M:      Kirti Wankhede <kwankhede@nvidia.com>
20404 L:      kvm@vger.kernel.org
20405 S:      Maintained
20406 F:      Documentation/driver-api/vfio-mediated-device.rst
20407 F:      drivers/vfio/mdev/
20408 F:      include/linux/mdev.h
20409 F:      samples/vfio-mdev/
20410
20411 VFIO PLATFORM DRIVER
20412 M:      Eric Auger <eric.auger@redhat.com>
20413 L:      kvm@vger.kernel.org
20414 S:      Maintained
20415 F:      drivers/vfio/platform/
20416
20417 VGA_SWITCHEROO
20418 R:      Lukas Wunner <lukas@wunner.de>
20419 S:      Maintained
20420 T:      git git://anongit.freedesktop.org/drm/drm-misc
20421 F:      Documentation/gpu/vga-switcheroo.rst
20422 F:      drivers/gpu/vga/vga_switcheroo.c
20423 F:      include/linux/vga_switcheroo.h
20424
20425 VIA RHINE NETWORK DRIVER
20426 S:      Maintained
20427 M:      Kevin Brace <kevinbrace@bracecomputerlab.com>
20428 F:      drivers/net/ethernet/via/via-rhine.c
20429
20430 VIA SD/MMC CARD CONTROLLER DRIVER
20431 M:      Bruce Chang <brucechang@via.com.tw>
20432 M:      Harald Welte <HaraldWelte@viatech.com>
20433 S:      Maintained
20434 F:      drivers/mmc/host/via-sdmmc.c
20435
20436 VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
20437 M:      Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
20438 L:      linux-fbdev@vger.kernel.org
20439 S:      Maintained
20440 F:      drivers/video/fbdev/via/
20441 F:      include/linux/via-core.h
20442 F:      include/linux/via-gpio.h
20443 F:      include/linux/via_i2c.h
20444
20445 VIA VELOCITY NETWORK DRIVER
20446 M:      Francois Romieu <romieu@fr.zoreil.com>
20447 L:      netdev@vger.kernel.org
20448 S:      Maintained
20449 F:      drivers/net/ethernet/via/via-velocity.*
20450
20451 VICODEC VIRTUAL CODEC DRIVER
20452 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
20453 L:      linux-media@vger.kernel.org
20454 S:      Maintained
20455 W:      https://linuxtv.org
20456 T:      git git://linuxtv.org/media_tree.git
20457 F:      drivers/media/test-drivers/vicodec/*
20458
20459 VIDEO I2C POLLING DRIVER
20460 M:      Matt Ranostay <matt.ranostay@konsulko.com>
20461 L:      linux-media@vger.kernel.org
20462 S:      Maintained
20463 F:      drivers/media/i2c/video-i2c.c
20464
20465 VIDEO MULTIPLEXER DRIVER
20466 M:      Philipp Zabel <p.zabel@pengutronix.de>
20467 L:      linux-media@vger.kernel.org
20468 S:      Maintained
20469 F:      drivers/media/platform/video-mux.c
20470
20471 VIDEOBUF2 FRAMEWORK
20472 M:      Tomasz Figa <tfiga@chromium.org>
20473 M:      Marek Szyprowski <m.szyprowski@samsung.com>
20474 L:      linux-media@vger.kernel.org
20475 S:      Maintained
20476 F:      drivers/media/common/videobuf2/*
20477 F:      include/media/videobuf2-*
20478
20479 VIMC VIRTUAL MEDIA CONTROLLER DRIVER
20480 M:      Shuah Khan <skhan@linuxfoundation.org>
20481 R:      Kieran Bingham <kieran.bingham@ideasonboard.com>
20482 L:      linux-media@vger.kernel.org
20483 S:      Maintained
20484 W:      https://linuxtv.org
20485 T:      git git://linuxtv.org/media_tree.git
20486 F:      drivers/media/test-drivers/vimc/*
20487
20488 VIRT LIB
20489 M:      Alex Williamson <alex.williamson@redhat.com>
20490 M:      Paolo Bonzini <pbonzini@redhat.com>
20491 L:      kvm@vger.kernel.org
20492 S:      Supported
20493 F:      virt/lib/
20494
20495 VIRTIO AND VHOST VSOCK DRIVER
20496 M:      Stefan Hajnoczi <stefanha@redhat.com>
20497 M:      Stefano Garzarella <sgarzare@redhat.com>
20498 L:      kvm@vger.kernel.org
20499 L:      virtualization@lists.linux-foundation.org
20500 L:      netdev@vger.kernel.org
20501 S:      Maintained
20502 F:      drivers/vhost/vsock.c
20503 F:      include/linux/virtio_vsock.h
20504 F:      include/uapi/linux/virtio_vsock.h
20505 F:      net/vmw_vsock/virtio_transport.c
20506 F:      net/vmw_vsock/virtio_transport_common.c
20507
20508 VIRTIO BLOCK AND SCSI DRIVERS
20509 M:      "Michael S. Tsirkin" <mst@redhat.com>
20510 M:      Jason Wang <jasowang@redhat.com>
20511 R:      Paolo Bonzini <pbonzini@redhat.com>
20512 R:      Stefan Hajnoczi <stefanha@redhat.com>
20513 L:      virtualization@lists.linux-foundation.org
20514 S:      Maintained
20515 F:      drivers/block/virtio_blk.c
20516 F:      drivers/scsi/virtio_scsi.c
20517 F:      drivers/vhost/scsi.c
20518 F:      include/uapi/linux/virtio_blk.h
20519 F:      include/uapi/linux/virtio_scsi.h
20520
20521 VIRTIO CONSOLE DRIVER
20522 M:      Amit Shah <amit@kernel.org>
20523 L:      virtualization@lists.linux-foundation.org
20524 S:      Maintained
20525 F:      drivers/char/virtio_console.c
20526 F:      include/linux/virtio_console.h
20527 F:      include/uapi/linux/virtio_console.h
20528
20529 VIRTIO CORE AND NET DRIVERS
20530 M:      "Michael S. Tsirkin" <mst@redhat.com>
20531 M:      Jason Wang <jasowang@redhat.com>
20532 L:      virtualization@lists.linux-foundation.org
20533 S:      Maintained
20534 F:      Documentation/ABI/testing/sysfs-bus-vdpa
20535 F:      Documentation/devicetree/bindings/virtio/
20536 F:      drivers/block/virtio_blk.c
20537 F:      drivers/crypto/virtio/
20538 F:      drivers/net/virtio_net.c
20539 F:      drivers/vdpa/
20540 F:      drivers/virtio/
20541 F:      include/linux/vdpa.h
20542 F:      include/linux/virtio*.h
20543 F:      include/uapi/linux/virtio_*.h
20544 F:      tools/virtio/
20545
20546 VIRTIO BALLOON
20547 M:      "Michael S. Tsirkin" <mst@redhat.com>
20548 M:      David Hildenbrand <david@redhat.com>
20549 L:      virtualization@lists.linux-foundation.org
20550 S:      Maintained
20551 F:      drivers/virtio/virtio_balloon.c
20552 F:      include/uapi/linux/virtio_balloon.h
20553 F:      include/linux/balloon_compaction.h
20554 F:      mm/balloon_compaction.c
20555
20556 VIRTIO CRYPTO DRIVER
20557 M:      Gonglei <arei.gonglei@huawei.com>
20558 L:      virtualization@lists.linux-foundation.org
20559 L:      linux-crypto@vger.kernel.org
20560 S:      Maintained
20561 F:      drivers/crypto/virtio/
20562 F:      include/uapi/linux/virtio_crypto.h
20563
20564 VIRTIO DRIVERS FOR S390
20565 M:      Cornelia Huck <cohuck@redhat.com>
20566 M:      Halil Pasic <pasic@linux.ibm.com>
20567 L:      linux-s390@vger.kernel.org
20568 L:      virtualization@lists.linux-foundation.org
20569 L:      kvm@vger.kernel.org
20570 S:      Supported
20571 F:      arch/s390/include/uapi/asm/virtio-ccw.h
20572 F:      drivers/s390/virtio/
20573
20574 VIRTIO FILE SYSTEM
20575 M:      Vivek Goyal <vgoyal@redhat.com>
20576 M:      Stefan Hajnoczi <stefanha@redhat.com>
20577 M:      Miklos Szeredi <miklos@szeredi.hu>
20578 L:      virtualization@lists.linux-foundation.org
20579 L:      linux-fsdevel@vger.kernel.org
20580 S:      Supported
20581 W:      https://virtio-fs.gitlab.io/
20582 F:      Documentation/filesystems/virtiofs.rst
20583 F:      fs/fuse/virtio_fs.c
20584 F:      include/uapi/linux/virtio_fs.h
20585
20586 VIRTIO GPIO DRIVER
20587 M:      Enrico Weigelt, metux IT consult <info@metux.net>
20588 M:      Viresh Kumar <vireshk@kernel.org>
20589 L:      linux-gpio@vger.kernel.org
20590 L:      virtualization@lists.linux-foundation.org
20591 S:      Maintained
20592 F:      drivers/gpio/gpio-virtio.c
20593 F:      include/uapi/linux/virtio_gpio.h
20594
20595 VIRTIO GPU DRIVER
20596 M:      David Airlie <airlied@linux.ie>
20597 M:      Gerd Hoffmann <kraxel@redhat.com>
20598 R:      Gurchetan Singh <gurchetansingh@chromium.org>
20599 R:      Chia-I Wu <olvaffe@gmail.com>
20600 L:      dri-devel@lists.freedesktop.org
20601 L:      virtualization@lists.linux-foundation.org
20602 S:      Maintained
20603 T:      git git://anongit.freedesktop.org/drm/drm-misc
20604 F:      drivers/gpu/drm/virtio/
20605 F:      include/uapi/linux/virtio_gpu.h
20606
20607 VIRTIO HOST (VHOST)
20608 M:      "Michael S. Tsirkin" <mst@redhat.com>
20609 M:      Jason Wang <jasowang@redhat.com>
20610 L:      kvm@vger.kernel.org
20611 L:      virtualization@lists.linux-foundation.org
20612 L:      netdev@vger.kernel.org
20613 S:      Maintained
20614 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost.git
20615 F:      drivers/vhost/
20616 F:      include/linux/vhost_iotlb.h
20617 F:      include/uapi/linux/vhost.h
20618
20619 VIRTIO INPUT DRIVER
20620 M:      Gerd Hoffmann <kraxel@redhat.com>
20621 S:      Maintained
20622 F:      drivers/virtio/virtio_input.c
20623 F:      include/uapi/linux/virtio_input.h
20624
20625 VIRTIO IOMMU DRIVER
20626 M:      Jean-Philippe Brucker <jean-philippe@linaro.org>
20627 L:      virtualization@lists.linux-foundation.org
20628 S:      Maintained
20629 F:      drivers/iommu/virtio-iommu.c
20630 F:      include/uapi/linux/virtio_iommu.h
20631
20632 VIRTIO MEM DRIVER
20633 M:      David Hildenbrand <david@redhat.com>
20634 L:      virtualization@lists.linux-foundation.org
20635 S:      Maintained
20636 W:      https://virtio-mem.gitlab.io/
20637 F:      drivers/virtio/virtio_mem.c
20638 F:      include/uapi/linux/virtio_mem.h
20639
20640 VIRTIO SOUND DRIVER
20641 M:      Anton Yakovlev <anton.yakovlev@opensynergy.com>
20642 M:      "Michael S. Tsirkin" <mst@redhat.com>
20643 L:      virtualization@lists.linux-foundation.org
20644 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
20645 S:      Maintained
20646 F:      include/uapi/linux/virtio_snd.h
20647 F:      sound/virtio/*
20648
20649 VIRTIO I2C DRIVER
20650 M:      Conghui Chen <conghui.chen@intel.com>
20651 M:      Viresh Kumar <viresh.kumar@linaro.org>
20652 L:      linux-i2c@vger.kernel.org
20653 L:      virtualization@lists.linux-foundation.org
20654 S:      Maintained
20655 F:      drivers/i2c/busses/i2c-virtio.c
20656 F:      include/uapi/linux/virtio_i2c.h
20657
20658 VIRTIO PMEM DRIVER
20659 M:      Pankaj Gupta <pankaj.gupta.linux@gmail.com>
20660 L:      virtualization@lists.linux-foundation.org
20661 S:      Maintained
20662 F:      drivers/nvdimm/virtio_pmem.c
20663 F:      drivers/nvdimm/nd_virtio.c
20664
20665 VIRTUAL BOX GUEST DEVICE DRIVER
20666 M:      Hans de Goede <hdegoede@redhat.com>
20667 M:      Arnd Bergmann <arnd@arndb.de>
20668 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
20669 S:      Maintained
20670 F:      drivers/virt/vboxguest/
20671 F:      include/linux/vbox_utils.h
20672 F:      include/uapi/linux/vbox*.h
20673
20674 VIRTUAL BOX SHARED FOLDER VFS DRIVER
20675 M:      Hans de Goede <hdegoede@redhat.com>
20676 L:      linux-fsdevel@vger.kernel.org
20677 S:      Maintained
20678 F:      fs/vboxsf/*
20679
20680 VIRTUAL SERIO DEVICE DRIVER
20681 M:      Stephen Chandler Paul <thatslyude@gmail.com>
20682 S:      Maintained
20683 F:      drivers/input/serio/userio.c
20684 F:      include/uapi/linux/userio.h
20685
20686 VIVID VIRTUAL VIDEO DRIVER
20687 M:      Hans Verkuil <hverkuil@xs4all.nl>
20688 L:      linux-media@vger.kernel.org
20689 S:      Maintained
20690 W:      https://linuxtv.org
20691 T:      git git://linuxtv.org/media_tree.git
20692 F:      drivers/media/test-drivers/vivid/*
20693
20694 VIDTV VIRTUAL DIGITAL TV DRIVER
20695 M:      Daniel W. S. Almeida <dwlsalmeida@gmail.com>
20696 L:      linux-media@vger.kernel.org
20697 S:      Maintained
20698 W:      https://linuxtv.org
20699 T:      git git://linuxtv.org/media_tree.git
20700 F:      drivers/media/test-drivers/vidtv/*
20701
20702 VLYNQ BUS
20703 M:      Florian Fainelli <f.fainelli@gmail.com>
20704 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
20705 S:      Maintained
20706 F:      drivers/vlynq/vlynq.c
20707 F:      include/linux/vlynq.h
20708
20709 VME SUBSYSTEM
20710 M:      Martyn Welch <martyn@welchs.me.uk>
20711 M:      Manohar Vanga <manohar.vanga@gmail.com>
20712 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
20713 L:      linux-kernel@vger.kernel.org
20714 S:      Maintained
20715 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
20716 F:      Documentation/driver-api/vme.rst
20717 F:      drivers/staging/vme/
20718 F:      drivers/vme/
20719 F:      include/linux/vme*
20720
20721 VM SOCKETS (AF_VSOCK)
20722 M:      Stefano Garzarella <sgarzare@redhat.com>
20723 L:      virtualization@lists.linux-foundation.org
20724 L:      netdev@vger.kernel.org
20725 S:      Maintained
20726 F:      drivers/net/vsockmon.c
20727 F:      include/net/af_vsock.h
20728 F:      include/uapi/linux/vm_sockets.h
20729 F:      include/uapi/linux/vm_sockets_diag.h
20730 F:      include/uapi/linux/vsockmon.h
20731 F:      net/vmw_vsock/
20732 F:      tools/testing/vsock/
20733
20734 VMWARE BALLOON DRIVER
20735 M:      Nadav Amit <namit@vmware.com>
20736 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
20737 L:      linux-kernel@vger.kernel.org
20738 S:      Maintained
20739 F:      drivers/misc/vmw_balloon.c
20740
20741 VMWARE HYPERVISOR INTERFACE
20742 M:      Srivatsa S. Bhat (VMware) <srivatsa@csail.mit.edu>
20743 M:      Alexey Makhalov <amakhalov@vmware.com>
20744 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
20745 L:      virtualization@lists.linux-foundation.org
20746 L:      x86@kernel.org
20747 S:      Supported
20748 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vmware
20749 F:      arch/x86/include/asm/vmware.h
20750 F:      arch/x86/kernel/cpu/vmware.c
20751
20752 VMWARE PVRDMA DRIVER
20753 M:      Bryan Tan <bryantan@vmware.com>
20754 M:      Vishnu Dasa <vdasa@vmware.com>
20755 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
20756 L:      linux-rdma@vger.kernel.org
20757 S:      Maintained
20758 F:      drivers/infiniband/hw/vmw_pvrdma/
20759
20760 VMware PVSCSI driver
20761 M:      Vishal Bhakta <vbhakta@vmware.com>
20762 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
20763 L:      linux-scsi@vger.kernel.org
20764 S:      Maintained
20765 F:      drivers/scsi/vmw_pvscsi.c
20766 F:      drivers/scsi/vmw_pvscsi.h
20767
20768 VMWARE VIRTUAL PTP CLOCK DRIVER
20769 M:      Vivek Thampi <vithampi@vmware.com>
20770 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
20771 L:      netdev@vger.kernel.org
20772 S:      Supported
20773 F:      drivers/ptp/ptp_vmw.c
20774
20775 VMWARE VMCI DRIVER
20776 M:      Jorgen Hansen <jhansen@vmware.com>
20777 M:      Vishnu Dasa <vdasa@vmware.com>
20778 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
20779 L:      linux-kernel@vger.kernel.org
20780 S:      Maintained
20781 F:      drivers/misc/vmw_vmci/
20782
20783 VMWARE VMMOUSE SUBDRIVER
20784 M:      Zack Rusin <zackr@vmware.com>
20785 R:      VMware Graphics Reviewers <linux-graphics-maintainer@vmware.com>
20786 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
20787 L:      linux-input@vger.kernel.org
20788 S:      Maintained
20789 F:      drivers/input/mouse/vmmouse.c
20790 F:      drivers/input/mouse/vmmouse.h
20791
20792 VMWARE VMXNET3 ETHERNET DRIVER
20793 M:      Ronak Doshi <doshir@vmware.com>
20794 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
20795 L:      netdev@vger.kernel.org
20796 S:      Maintained
20797 F:      drivers/net/vmxnet3/
20798
20799 VOCORE VOCORE2 BOARD
20800 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
20801 L:      linux-mips@vger.kernel.org
20802 S:      Maintained
20803 F:      arch/mips/boot/dts/ralink/vocore2.dts
20804
20805 VOLTAGE AND CURRENT REGULATOR FRAMEWORK
20806 M:      Liam Girdwood <lgirdwood@gmail.com>
20807 M:      Mark Brown <broonie@kernel.org>
20808 L:      linux-kernel@vger.kernel.org
20809 S:      Supported
20810 W:      http://www.slimlogic.co.uk/?p=48
20811 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git
20812 F:      Documentation/devicetree/bindings/regulator/
20813 F:      Documentation/power/regulator/
20814 F:      drivers/regulator/
20815 F:      include/dt-bindings/regulator/
20816 F:      include/linux/regulator/
20817 K:      regulator_get_optional
20818
20819 VOLTAGE AND CURRENT REGULATOR IRQ HELPERS
20820 R:      Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
20821 F:      drivers/regulator/irq_helpers.c
20822
20823 VRF
20824 M:      David Ahern <dsahern@kernel.org>
20825 L:      netdev@vger.kernel.org
20826 S:      Maintained
20827 F:      Documentation/networking/vrf.rst
20828 F:      drivers/net/vrf.c
20829
20830 VSPRINTF
20831 M:      Petr Mladek <pmladek@suse.com>
20832 M:      Steven Rostedt <rostedt@goodmis.org>
20833 M:      Sergey Senozhatsky <senozhatsky@chromium.org>
20834 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
20835 R:      Rasmus Villemoes <linux@rasmusvillemoes.dk>
20836 S:      Maintained
20837 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/printk/linux.git
20838 F:      Documentation/core-api/printk-formats.rst
20839 F:      lib/test_printf.c
20840 F:      lib/test_scanf.c
20841 F:      lib/vsprintf.c
20842
20843 VT1211 HARDWARE MONITOR DRIVER
20844 M:      Juerg Haefliger <juergh@gmail.com>
20845 L:      linux-hwmon@vger.kernel.org
20846 S:      Maintained
20847 F:      Documentation/hwmon/vt1211.rst
20848 F:      drivers/hwmon/vt1211.c
20849
20850 VT8231 HARDWARE MONITOR DRIVER
20851 M:      Roger Lucas <vt8231@hiddenengine.co.uk>
20852 L:      linux-hwmon@vger.kernel.org
20853 S:      Maintained
20854 F:      drivers/hwmon/vt8231.c
20855
20856 VUB300 USB to SDIO/SD/MMC bridge chip
20857 L:      linux-mmc@vger.kernel.org
20858 S:      Orphan
20859 F:      drivers/mmc/host/vub300.c
20860
20861 W1 DALLAS'S 1-WIRE BUS
20862 M:      Evgeniy Polyakov <zbr@ioremap.net>
20863 S:      Maintained
20864 F:      Documentation/devicetree/bindings/w1/
20865 F:      Documentation/w1/
20866 F:      drivers/w1/
20867 F:      include/linux/w1.h
20868
20869 W83791D HARDWARE MONITORING DRIVER
20870 M:      Marc Hulsman <m.hulsman@tudelft.nl>
20871 L:      linux-hwmon@vger.kernel.org
20872 S:      Maintained
20873 F:      Documentation/hwmon/w83791d.rst
20874 F:      drivers/hwmon/w83791d.c
20875
20876 W83793 HARDWARE MONITORING DRIVER
20877 M:      Rudolf Marek <r.marek@assembler.cz>
20878 L:      linux-hwmon@vger.kernel.org
20879 S:      Maintained
20880 F:      Documentation/hwmon/w83793.rst
20881 F:      drivers/hwmon/w83793.c
20882
20883 W83795 HARDWARE MONITORING DRIVER
20884 M:      Jean Delvare <jdelvare@suse.com>
20885 L:      linux-hwmon@vger.kernel.org
20886 S:      Maintained
20887 F:      drivers/hwmon/w83795.c
20888
20889 W83L51xD SD/MMC CARD INTERFACE DRIVER
20890 M:      Pierre Ossman <pierre@ossman.eu>
20891 S:      Maintained
20892 F:      drivers/mmc/host/wbsd.*
20893
20894 WACOM PROTOCOL 4 SERIAL TABLETS
20895 M:      Julian Squires <julian@cipht.net>
20896 M:      Hans de Goede <hdegoede@redhat.com>
20897 L:      linux-input@vger.kernel.org
20898 S:      Maintained
20899 F:      drivers/input/tablet/wacom_serial4.c
20900
20901 WATCHDOG DEVICE DRIVERS
20902 M:      Wim Van Sebroeck <wim@linux-watchdog.org>
20903 M:      Guenter Roeck <linux@roeck-us.net>
20904 L:      linux-watchdog@vger.kernel.org
20905 S:      Maintained
20906 W:      http://www.linux-watchdog.org/
20907 T:      git git://www.linux-watchdog.org/linux-watchdog.git
20908 F:      Documentation/devicetree/bindings/watchdog/
20909 F:      Documentation/watchdog/
20910 F:      drivers/watchdog/
20911 F:      include/linux/watchdog.h
20912 F:      include/uapi/linux/watchdog.h
20913
20914 WHISKEYCOVE PMIC GPIO DRIVER
20915 M:      Kuppuswamy Sathyanarayanan <sathyanarayanan.kuppuswamy@linux.intel.com>
20916 L:      linux-gpio@vger.kernel.org
20917 S:      Maintained
20918 F:      drivers/gpio/gpio-wcove.c
20919
20920 WHWAVE RTC DRIVER
20921 M:      Dianlong Li <long17.cool@163.com>
20922 L:      linux-rtc@vger.kernel.org
20923 S:      Maintained
20924 F:      drivers/rtc/rtc-sd3078.c
20925
20926 WIIMOTE HID DRIVER
20927 M:      David Rheinsberg <david.rheinsberg@gmail.com>
20928 L:      linux-input@vger.kernel.org
20929 S:      Maintained
20930 F:      drivers/hid/hid-wiimote*
20931
20932 WILOCITY WIL6210 WIRELESS DRIVER
20933 M:      Maya Erez <merez@codeaurora.org>
20934 L:      linux-wireless@vger.kernel.org
20935 L:      wil6210@qti.qualcomm.com
20936 S:      Supported
20937 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wil6210
20938 F:      drivers/net/wireless/ath/wil6210/
20939
20940 WINBOND CIR DRIVER
20941 M:      David Härdeman <david@hardeman.nu>
20942 S:      Maintained
20943 F:      drivers/media/rc/winbond-cir.c
20944
20945 WINSYSTEMS EBC-C384 WATCHDOG DRIVER
20946 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
20947 L:      linux-watchdog@vger.kernel.org
20948 S:      Maintained
20949 F:      drivers/watchdog/ebc-c384_wdt.c
20950
20951 WINSYSTEMS WS16C48 GPIO DRIVER
20952 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
20953 L:      linux-gpio@vger.kernel.org
20954 S:      Maintained
20955 F:      drivers/gpio/gpio-ws16c48.c
20956
20957 WIREGUARD SECURE NETWORK TUNNEL
20958 M:      Jason A. Donenfeld <Jason@zx2c4.com>
20959 L:      wireguard@lists.zx2c4.com
20960 L:      netdev@vger.kernel.org
20961 S:      Maintained
20962 F:      drivers/net/wireguard/
20963 F:      tools/testing/selftests/wireguard/
20964
20965 WISTRON LAPTOP BUTTON DRIVER
20966 M:      Miloslav Trmac <mitr@volny.cz>
20967 S:      Maintained
20968 F:      drivers/input/misc/wistron_btns.c
20969
20970 WL3501 WIRELESS PCMCIA CARD DRIVER
20971 L:      linux-wireless@vger.kernel.org
20972 S:      Odd fixes
20973 F:      drivers/net/wireless/wl3501*
20974
20975 WOLFSON MICROELECTRONICS DRIVERS
20976 L:      patches@opensource.cirrus.com
20977 S:      Supported
20978 W:      https://github.com/CirrusLogic/linux-drivers/wiki
20979 T:      git https://github.com/CirrusLogic/linux-drivers.git
20980 F:      Documentation/devicetree/bindings/extcon/wlf,arizona.yaml
20981 F:      Documentation/devicetree/bindings/mfd/wlf,arizona.yaml
20982 F:      Documentation/devicetree/bindings/mfd/wm831x.txt
20983 F:      Documentation/devicetree/bindings/regulator/wlf,arizona.yaml
20984 F:      Documentation/devicetree/bindings/sound/wlf,*.yaml
20985 F:      Documentation/devicetree/bindings/sound/wm*
20986 F:      Documentation/hwmon/wm83??.rst
20987 F:      arch/arm/mach-s3c/mach-crag6410*
20988 F:      drivers/clk/clk-wm83*.c
20989 F:      drivers/gpio/gpio-*wm*.c
20990 F:      drivers/gpio/gpio-arizona.c
20991 F:      drivers/hwmon/wm83??-hwmon.c
20992 F:      drivers/input/misc/wm831x-on.c
20993 F:      drivers/input/touchscreen/wm831x-ts.c
20994 F:      drivers/input/touchscreen/wm97*.c
20995 F:      drivers/leds/leds-wm83*.c
20996 F:      drivers/mfd/arizona*
20997 F:      drivers/mfd/cs47l24*
20998 F:      drivers/mfd/wm*.c
20999 F:      drivers/power/supply/wm83*.c
21000 F:      drivers/regulator/arizona*
21001 F:      drivers/regulator/wm8*.c
21002 F:      drivers/rtc/rtc-wm83*.c
21003 F:      drivers/video/backlight/wm83*_bl.c
21004 F:      drivers/watchdog/wm83*_wdt.c
21005 F:      include/linux/mfd/arizona/
21006 F:      include/linux/mfd/wm831x/
21007 F:      include/linux/mfd/wm8350/
21008 F:      include/linux/mfd/wm8400*
21009 F:      include/linux/regulator/arizona*
21010 F:      include/linux/wm97xx.h
21011 F:      include/sound/wm????.h
21012 F:      sound/soc/codecs/arizona*
21013 F:      sound/soc/codecs/cs47l24*
21014 F:      sound/soc/codecs/wm*
21015
21016 WORKQUEUE
21017 M:      Tejun Heo <tj@kernel.org>
21018 R:      Lai Jiangshan <jiangshanlai@gmail.com>
21019 S:      Maintained
21020 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
21021 F:      Documentation/core-api/workqueue.rst
21022 F:      include/linux/workqueue.h
21023 F:      kernel/workqueue.c
21024
21025 WWAN DRIVERS
21026 M:      Loic Poulain <loic.poulain@linaro.org>
21027 M:      Sergey Ryazanov <ryazanov.s.a@gmail.com>
21028 R:      Johannes Berg <johannes@sipsolutions.net>
21029 L:      netdev@vger.kernel.org
21030 S:      Maintained
21031 F:      drivers/net/wwan/
21032 F:      include/linux/wwan.h
21033 F:      include/uapi/linux/wwan.h
21034
21035 X-POWERS AXP288 PMIC DRIVERS
21036 M:      Hans de Goede <hdegoede@redhat.com>
21037 S:      Maintained
21038 F:      drivers/acpi/pmic/intel_pmic_xpower.c
21039 N:      axp288
21040
21041 X-POWERS MULTIFUNCTION PMIC DEVICE DRIVERS
21042 M:      Chen-Yu Tsai <wens@csie.org>
21043 L:      linux-kernel@vger.kernel.org
21044 S:      Maintained
21045 N:      axp[128]
21046
21047 X.25 STACK
21048 M:      Martin Schiller <ms@dev.tdt.de>
21049 L:      linux-x25@vger.kernel.org
21050 S:      Maintained
21051 F:      Documentation/networking/lapb-module.rst
21052 F:      Documentation/networking/x25*
21053 F:      drivers/net/wan/hdlc_x25.c
21054 F:      drivers/net/wan/lapbether.c
21055 F:      include/*/lapb.h
21056 F:      include/net/x25*
21057 F:      include/uapi/linux/x25.h
21058 F:      net/lapb/
21059 F:      net/x25/
21060
21061 X86 ARCHITECTURE (32-BIT AND 64-BIT)
21062 M:      Thomas Gleixner <tglx@linutronix.de>
21063 M:      Ingo Molnar <mingo@redhat.com>
21064 M:      Borislav Petkov <bp@alien8.de>
21065 M:      Dave Hansen <dave.hansen@linux.intel.com>
21066 M:      x86@kernel.org
21067 R:      "H. Peter Anvin" <hpa@zytor.com>
21068 L:      linux-kernel@vger.kernel.org
21069 S:      Maintained
21070 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
21071 F:      Documentation/devicetree/bindings/x86/
21072 F:      Documentation/x86/
21073 F:      arch/x86/
21074
21075 X86 ENTRY CODE
21076 M:      Andy Lutomirski <luto@kernel.org>
21077 L:      linux-kernel@vger.kernel.org
21078 S:      Maintained
21079 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/asm
21080 F:      arch/x86/entry/
21081
21082 X86 MCE INFRASTRUCTURE
21083 M:      Tony Luck <tony.luck@intel.com>
21084 M:      Borislav Petkov <bp@alien8.de>
21085 L:      linux-edac@vger.kernel.org
21086 S:      Maintained
21087 F:      Documentation/ABI/testing/sysfs-mce
21088 F:      Documentation/x86/x86_64/machinecheck.rst
21089 F:      arch/x86/kernel/cpu/mce/*
21090
21091 X86 MICROCODE UPDATE SUPPORT
21092 M:      Borislav Petkov <bp@alien8.de>
21093 S:      Maintained
21094 F:      arch/x86/kernel/cpu/microcode/*
21095
21096 X86 MM
21097 M:      Dave Hansen <dave.hansen@linux.intel.com>
21098 M:      Andy Lutomirski <luto@kernel.org>
21099 M:      Peter Zijlstra <peterz@infradead.org>
21100 L:      linux-kernel@vger.kernel.org
21101 S:      Maintained
21102 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/mm
21103 F:      arch/x86/mm/
21104
21105 X86 PLATFORM ANDROID TABLETS DSDT FIXUP DRIVER
21106 M:      Hans de Goede <hdegoede@redhat.com>
21107 L:      platform-driver-x86@vger.kernel.org
21108 S:      Maintained
21109 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
21110 F:      drivers/platform/x86/x86-android-tablets.c
21111
21112 X86 PLATFORM DRIVERS
21113 M:      Hans de Goede <hdegoede@redhat.com>
21114 M:      Mark Gross <markgross@kernel.org>
21115 L:      platform-driver-x86@vger.kernel.org
21116 S:      Maintained
21117 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
21118 F:      drivers/platform/olpc/
21119 F:      drivers/platform/x86/
21120
21121 X86 PLATFORM DRIVERS - ARCH
21122 R:      Darren Hart <dvhart@infradead.org>
21123 R:      Andy Shevchenko <andy@infradead.org>
21124 L:      platform-driver-x86@vger.kernel.org
21125 L:      x86@kernel.org
21126 S:      Maintained
21127 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
21128 F:      arch/x86/platform
21129
21130 X86 PLATFORM UV HPE SUPERDOME FLEX
21131 M:      Steve Wahl <steve.wahl@hpe.com>
21132 R:      Mike Travis <mike.travis@hpe.com>
21133 R:      Dimitri Sivanich <dimitri.sivanich@hpe.com>
21134 R:      Russ Anderson <russ.anderson@hpe.com>
21135 S:      Supported
21136 F:      arch/x86/include/asm/uv/
21137 F:      arch/x86/kernel/apic/x2apic_uv_x.c
21138 F:      arch/x86/platform/uv/
21139
21140 X86 VDSO
21141 M:      Andy Lutomirski <luto@kernel.org>
21142 L:      linux-kernel@vger.kernel.org
21143 S:      Maintained
21144 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso
21145 F:      arch/x86/entry/vdso/
21146
21147 XARRAY
21148 M:      Matthew Wilcox <willy@infradead.org>
21149 L:      linux-fsdevel@vger.kernel.org
21150 S:      Supported
21151 F:      Documentation/core-api/xarray.rst
21152 F:      include/linux/idr.h
21153 F:      include/linux/xarray.h
21154 F:      lib/idr.c
21155 F:      lib/xarray.c
21156 F:      tools/testing/radix-tree
21157
21158 XBOX DVD IR REMOTE
21159 M:      Benjamin Valentin <benpicco@googlemail.com>
21160 S:      Maintained
21161 F:      drivers/media/rc/keymaps/rc-xbox-dvd.c
21162 F:      drivers/media/rc/xbox_remote.c
21163
21164 XC2028/3028 TUNER DRIVER
21165 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
21166 L:      linux-media@vger.kernel.org
21167 S:      Maintained
21168 W:      https://linuxtv.org
21169 T:      git git://linuxtv.org/media_tree.git
21170 F:      drivers/media/tuners/xc2028.*
21171
21172 XDP (eXpress Data Path)
21173 M:      Alexei Starovoitov <ast@kernel.org>
21174 M:      Daniel Borkmann <daniel@iogearbox.net>
21175 M:      David S. Miller <davem@davemloft.net>
21176 M:      Jakub Kicinski <kuba@kernel.org>
21177 M:      Jesper Dangaard Brouer <hawk@kernel.org>
21178 M:      John Fastabend <john.fastabend@gmail.com>
21179 L:      netdev@vger.kernel.org
21180 L:      bpf@vger.kernel.org
21181 S:      Supported
21182 F:      include/net/xdp.h
21183 F:      include/net/xdp_priv.h
21184 F:      include/trace/events/xdp.h
21185 F:      kernel/bpf/cpumap.c
21186 F:      kernel/bpf/devmap.c
21187 F:      net/core/xdp.c
21188 F:      samples/bpf/xdp*
21189 F:      tools/testing/selftests/bpf/*xdp*
21190 F:      tools/testing/selftests/bpf/*/*xdp*
21191 F:      drivers/net/ethernet/*/*/*/*/*xdp*
21192 F:      drivers/net/ethernet/*/*/*xdp*
21193 K:      (?:\b|_)xdp(?:\b|_)
21194
21195 XDP SOCKETS (AF_XDP)
21196 M:      Björn Töpel <bjorn@kernel.org>
21197 M:      Magnus Karlsson <magnus.karlsson@intel.com>
21198 R:      Jonathan Lemon <jonathan.lemon@gmail.com>
21199 L:      netdev@vger.kernel.org
21200 L:      bpf@vger.kernel.org
21201 S:      Maintained
21202 F:      Documentation/networking/af_xdp.rst
21203 F:      include/net/xdp_sock*
21204 F:      include/net/xsk_buff_pool.h
21205 F:      include/uapi/linux/if_xdp.h
21206 F:      include/uapi/linux/xdp_diag.h
21207 F:      include/net/netns/xdp.h
21208 F:      net/xdp/
21209 F:      samples/bpf/xdpsock*
21210 F:      tools/lib/bpf/xsk*
21211
21212 XEN BLOCK SUBSYSTEM
21213 M:      Roger Pau Monné <roger.pau@citrix.com>
21214 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
21215 S:      Supported
21216 F:      drivers/block/xen*
21217 F:      drivers/block/xen-blkback/*
21218
21219 XEN HYPERVISOR ARM
21220 M:      Stefano Stabellini <sstabellini@kernel.org>
21221 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
21222 S:      Maintained
21223 F:      arch/arm/include/asm/xen/
21224 F:      arch/arm/xen/
21225
21226 XEN HYPERVISOR ARM64
21227 M:      Stefano Stabellini <sstabellini@kernel.org>
21228 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
21229 S:      Maintained
21230 F:      arch/arm64/include/asm/xen/
21231 F:      arch/arm64/xen/
21232
21233 XEN HYPERVISOR INTERFACE
21234 M:      Boris Ostrovsky <boris.ostrovsky@oracle.com>
21235 M:      Juergen Gross <jgross@suse.com>
21236 R:      Stefano Stabellini <sstabellini@kernel.org>
21237 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
21238 S:      Supported
21239 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git
21240 F:      Documentation/ABI/stable/sysfs-hypervisor-xen
21241 F:      Documentation/ABI/testing/sysfs-hypervisor-xen
21242 F:      arch/x86/include/asm/pvclock-abi.h
21243 F:      arch/x86/include/asm/xen/
21244 F:      arch/x86/platform/pvh/
21245 F:      arch/x86/xen/
21246 F:      drivers/*/xen-*front.c
21247 F:      drivers/xen/
21248 F:      include/uapi/xen/
21249 F:      include/xen/
21250
21251 XEN NETWORK BACKEND DRIVER
21252 M:      Wei Liu <wei.liu@kernel.org>
21253 M:      Paul Durrant <paul@xen.org>
21254 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
21255 L:      netdev@vger.kernel.org
21256 S:      Supported
21257 F:      drivers/net/xen-netback/*
21258
21259 XEN PCI SUBSYSTEM
21260 M:      Juergen Gross <jgross@suse.com>
21261 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
21262 S:      Supported
21263 F:      arch/x86/pci/*xen*
21264 F:      drivers/pci/*xen*
21265
21266 XEN PVSCSI DRIVERS
21267 M:      Juergen Gross <jgross@suse.com>
21268 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
21269 L:      linux-scsi@vger.kernel.org
21270 S:      Supported
21271 F:      drivers/scsi/xen-scsifront.c
21272 F:      drivers/xen/xen-scsiback.c
21273 F:      include/xen/interface/io/vscsiif.h
21274
21275 XEN PVUSB DRIVER
21276 M:      Juergen Gross <jgross@suse.com>
21277 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
21278 L:      linux-usb@vger.kernel.org
21279 S:      Supported
21280 F:      drivers/usb/host/xen*
21281 F:      include/xen/interface/io/usbif.h
21282
21283 XEN SOUND FRONTEND DRIVER
21284 M:      Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
21285 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
21286 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
21287 S:      Supported
21288 F:      sound/xen/*
21289
21290 XEN SWIOTLB SUBSYSTEM
21291 M:      Juergen Gross <jgross@suse.com>
21292 M:      Stefano Stabellini <sstabellini@kernel.org>
21293 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
21294 L:      iommu@lists.linux-foundation.org
21295 S:      Supported
21296 F:      arch/x86/xen/*swiotlb*
21297 F:      drivers/xen/*swiotlb*
21298
21299 XFS FILESYSTEM
21300 C:      irc://irc.oftc.net/xfs
21301 M:      Darrick J. Wong <djwong@kernel.org>
21302 M:      linux-xfs@vger.kernel.org
21303 L:      linux-xfs@vger.kernel.org
21304 S:      Supported
21305 W:      http://xfs.org/
21306 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
21307 F:      Documentation/ABI/testing/sysfs-fs-xfs
21308 F:      Documentation/admin-guide/xfs.rst
21309 F:      Documentation/filesystems/xfs-delayed-logging-design.rst
21310 F:      Documentation/filesystems/xfs-self-describing-metadata.rst
21311 F:      fs/xfs/
21312 F:      include/uapi/linux/dqblk_xfs.h
21313 F:      include/uapi/linux/fsmap.h
21314
21315 XILINX AMS DRIVER
21316 M:      Anand Ashok Dumbre <anand.ashok.dumbre@xilinx.com>
21317 L:      linux-iio@vger.kernel.org
21318 S:      Maintained
21319 F:      Documentation/devicetree/bindings/iio/adc/xlnx,zynqmp-ams.yaml
21320 F:      drivers/iio/adc/xilinx-ams.c
21321
21322 XILINX AXI ETHERNET DRIVER
21323 M:      Radhey Shyam Pandey <radhey.shyam.pandey@xilinx.com>
21324 S:      Maintained
21325 F:      drivers/net/ethernet/xilinx/xilinx_axienet*
21326
21327 XILINX CAN DRIVER
21328 M:      Appana Durga Kedareswara rao <appana.durga.rao@xilinx.com>
21329 R:      Naga Sureshkumar Relli <naga.sureshkumar.relli@xilinx.com>
21330 L:      linux-can@vger.kernel.org
21331 S:      Maintained
21332 F:      Documentation/devicetree/bindings/net/can/xilinx_can.txt
21333 F:      drivers/net/can/xilinx_can.c
21334
21335 XILINX GPIO DRIVER
21336 M:      Shubhrajyoti Datta <shubhrajyoti.datta@xilinx.com>
21337 R:      Srinivas Neeli <srinivas.neeli@xilinx.com>
21338 R:      Michal Simek <michal.simek@xilinx.com>
21339 S:      Maintained
21340 F:      Documentation/devicetree/bindings/gpio/gpio-xilinx.txt
21341 F:      Documentation/devicetree/bindings/gpio/gpio-zynq.yaml
21342 F:      drivers/gpio/gpio-xilinx.c
21343 F:      drivers/gpio/gpio-zynq.c
21344
21345 XILINX SD-FEC IP CORES
21346 M:      Derek Kiernan <derek.kiernan@xilinx.com>
21347 M:      Dragan Cvetic <dragan.cvetic@xilinx.com>
21348 S:      Maintained
21349 F:      Documentation/devicetree/bindings/misc/xlnx,sd-fec.txt
21350 F:      Documentation/misc-devices/xilinx_sdfec.rst
21351 F:      drivers/misc/Kconfig
21352 F:      drivers/misc/Makefile
21353 F:      drivers/misc/xilinx_sdfec.c
21354 F:      include/uapi/misc/xilinx_sdfec.h
21355
21356 XILINX UARTLITE SERIAL DRIVER
21357 M:      Peter Korsgaard <jacmet@sunsite.dk>
21358 L:      linux-serial@vger.kernel.org
21359 S:      Maintained
21360 F:      drivers/tty/serial/uartlite.c
21361
21362 XILINX VIDEO IP CORES
21363 M:      Hyun Kwon <hyun.kwon@xilinx.com>
21364 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
21365 L:      linux-media@vger.kernel.org
21366 S:      Supported
21367 T:      git git://linuxtv.org/media_tree.git
21368 F:      Documentation/devicetree/bindings/media/xilinx/
21369 F:      drivers/media/platform/xilinx/
21370 F:      include/uapi/linux/xilinx-v4l2-controls.h
21371
21372 XILINX ZYNQMP DPDMA DRIVER
21373 M:      Hyun Kwon <hyun.kwon@xilinx.com>
21374 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
21375 L:      dmaengine@vger.kernel.org
21376 S:      Supported
21377 F:      Documentation/devicetree/bindings/dma/xilinx/xlnx,zynqmp-dpdma.yaml
21378 F:      drivers/dma/xilinx/xilinx_dpdma.c
21379 F:      include/dt-bindings/dma/xlnx-zynqmp-dpdma.h
21380
21381 XILINX ZYNQMP PSGTR PHY DRIVER
21382 M:      Anurag Kumar Vulisha <anurag.kumar.vulisha@xilinx.com>
21383 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
21384 L:      linux-kernel@vger.kernel.org
21385 S:      Supported
21386 T:      git https://github.com/Xilinx/linux-xlnx.git
21387 F:      Documentation/devicetree/bindings/phy/xlnx,zynqmp-psgtr.yaml
21388 F:      drivers/phy/xilinx/phy-zynqmp.c
21389
21390 XILINX ZYNQMP SHA3 DRIVER
21391 M:      Harsha <harsha.harsha@xilinx.com>
21392 S:      Maintained
21393 F:      drivers/crypto/xilinx/zynqmp-sha.c
21394
21395 XILINX EVENT MANAGEMENT DRIVER
21396 M:      Abhyuday Godhasara <abhyuday.godhasara@xilinx.com>
21397 S:      Maintained
21398 F:      drivers/soc/xilinx/xlnx_event_manager.c
21399 F:      include/linux/firmware/xlnx-event-manager.h
21400
21401 XILLYBUS DRIVER
21402 M:      Eli Billauer <eli.billauer@gmail.com>
21403 L:      linux-kernel@vger.kernel.org
21404 S:      Supported
21405 F:      drivers/char/xillybus/
21406
21407 XLP9XX I2C DRIVER
21408 M:      George Cherian <gcherian@marvell.com>
21409 L:      linux-i2c@vger.kernel.org
21410 S:      Supported
21411 W:      http://www.marvell.com
21412 F:      Documentation/devicetree/bindings/i2c/i2c-xlp9xx.txt
21413 F:      drivers/i2c/busses/i2c-xlp9xx.c
21414
21415 XRA1403 GPIO EXPANDER
21416 M:      Nandor Han <nandor.han@ge.com>
21417 M:      Semi Malinen <semi.malinen@ge.com>
21418 L:      linux-gpio@vger.kernel.org
21419 S:      Maintained
21420 F:      Documentation/devicetree/bindings/gpio/gpio-xra1403.txt
21421 F:      drivers/gpio/gpio-xra1403.c
21422
21423 XTENSA XTFPGA PLATFORM SUPPORT
21424 M:      Max Filippov <jcmvbkbc@gmail.com>
21425 L:      linux-xtensa@linux-xtensa.org
21426 S:      Maintained
21427 F:      drivers/spi/spi-xtensa-xtfpga.c
21428 F:      sound/soc/xtensa/xtfpga-i2s.c
21429
21430 YAM DRIVER FOR AX.25
21431 M:      Jean-Paul Roubelat <jpr@f6fbb.org>
21432 L:      linux-hams@vger.kernel.org
21433 S:      Maintained
21434 F:      drivers/net/hamradio/yam*
21435 F:      include/linux/yam.h
21436
21437 YAMA SECURITY MODULE
21438 M:      Kees Cook <keescook@chromium.org>
21439 S:      Supported
21440 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git yama/tip
21441 F:      Documentation/admin-guide/LSM/Yama.rst
21442 F:      security/yama/
21443
21444 YEALINK PHONE DRIVER
21445 M:      Henk Vergonet <Henk.Vergonet@gmail.com>
21446 L:      usbb2k-api-dev@nongnu.org
21447 S:      Maintained
21448 F:      Documentation/input/devices/yealink.rst
21449 F:      drivers/input/misc/yealink.*
21450
21451 Z8530 DRIVER FOR AX.25
21452 M:      Joerg Reuter <jreuter@yaina.de>
21453 L:      linux-hams@vger.kernel.org
21454 S:      Maintained
21455 W:      http://yaina.de/jreuter/
21456 W:      http://www.qsl.net/dl1bke/
21457 F:      Documentation/networking/device_drivers/hamradio/z8530drv.rst
21458 F:      drivers/net/hamradio/*scc.c
21459 F:      drivers/net/hamradio/z8530.h
21460
21461 ZBUD COMPRESSED PAGE ALLOCATOR
21462 M:      Seth Jennings <sjenning@redhat.com>
21463 M:      Dan Streetman <ddstreet@ieee.org>
21464 L:      linux-mm@kvack.org
21465 S:      Maintained
21466 F:      mm/zbud.c
21467
21468 ZD1211RW WIRELESS DRIVER
21469 M:      Ulrich Kunitz <kune@deine-taler.de>
21470 L:      linux-wireless@vger.kernel.org
21471 L:      zd1211-devs@lists.sourceforge.net (subscribers-only)
21472 S:      Maintained
21473 W:      http://zd1211.ath.cx/wiki/DriverRewrite
21474 F:      drivers/net/wireless/zydas/zd1211rw/
21475
21476 ZD1301 MEDIA DRIVER
21477 M:      Antti Palosaari <crope@iki.fi>
21478 L:      linux-media@vger.kernel.org
21479 S:      Maintained
21480 W:      https://linuxtv.org/
21481 W:      http://palosaari.fi/linux/
21482 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
21483 F:      drivers/media/usb/dvb-usb-v2/zd1301*
21484
21485 ZD1301_DEMOD MEDIA DRIVER
21486 M:      Antti Palosaari <crope@iki.fi>
21487 L:      linux-media@vger.kernel.org
21488 S:      Maintained
21489 W:      https://linuxtv.org/
21490 W:      http://palosaari.fi/linux/
21491 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
21492 F:      drivers/media/dvb-frontends/zd1301_demod*
21493
21494 ZHAOXIN PROCESSOR SUPPORT
21495 M:      Tony W Wang-oc <TonyWWang-oc@zhaoxin.com>
21496 L:      linux-kernel@vger.kernel.org
21497 S:      Maintained
21498 F:      arch/x86/kernel/cpu/zhaoxin.c
21499
21500 ZONEFS FILESYSTEM
21501 M:      Damien Le Moal <damien.lemoal@opensource.wdc.com>
21502 M:      Naohiro Aota <naohiro.aota@wdc.com>
21503 R:      Johannes Thumshirn <jth@kernel.org>
21504 L:      linux-fsdevel@vger.kernel.org
21505 S:      Maintained
21506 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dlemoal/zonefs.git
21507 F:      Documentation/filesystems/zonefs.rst
21508 F:      fs/zonefs/
21509
21510 ZPOOL COMPRESSED PAGE STORAGE API
21511 M:      Dan Streetman <ddstreet@ieee.org>
21512 L:      linux-mm@kvack.org
21513 S:      Maintained
21514 F:      include/linux/zpool.h
21515 F:      mm/zpool.c
21516
21517 ZR36067 VIDEO FOR LINUX DRIVER
21518 M:      Corentin Labbe <clabbe@baylibre.com>
21519 L:      mjpeg-users@lists.sourceforge.net
21520 L:      linux-media@vger.kernel.org
21521 S:      Maintained
21522 W:      http://mjpeg.sourceforge.net/driver-zoran/
21523 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
21524 F:      Documentation/driver-api/media/drivers/zoran.rst
21525 F:      drivers/staging/media/zoran/
21526
21527 ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER
21528 M:      Minchan Kim <minchan@kernel.org>
21529 M:      Nitin Gupta <ngupta@vflare.org>
21530 R:      Sergey Senozhatsky <senozhatsky@chromium.org>
21531 L:      linux-kernel@vger.kernel.org
21532 S:      Maintained
21533 F:      Documentation/admin-guide/blockdev/zram.rst
21534 F:      drivers/block/zram/
21535
21536 ZS DECSTATION Z85C30 SERIAL DRIVER
21537 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
21538 S:      Maintained
21539 F:      drivers/tty/serial/zs.*
21540
21541 ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR
21542 M:      Minchan Kim <minchan@kernel.org>
21543 M:      Nitin Gupta <ngupta@vflare.org>
21544 R:      Sergey Senozhatsky <senozhatsky@chromium.org>
21545 L:      linux-mm@kvack.org
21546 S:      Maintained
21547 F:      Documentation/vm/zsmalloc.rst
21548 F:      include/linux/zsmalloc.h
21549 F:      mm/zsmalloc.c
21550
21551 ZSTD
21552 M:      Nick Terrell <terrelln@fb.com>
21553 S:      Maintained
21554 B:      https://github.com/facebook/zstd/issues
21555 T:      git git://github.com/terrelln/linux.git
21556 F:      include/linux/zstd*
21557 F:      lib/zstd/
21558 F:      lib/decompress_unzstd.c
21559 F:      crypto/zstd.c
21560 N:      zstd
21561 K:      zstd
21562
21563 ZSWAP COMPRESSED SWAP CACHING
21564 M:      Seth Jennings <sjenning@redhat.com>
21565 M:      Dan Streetman <ddstreet@ieee.org>
21566 M:      Vitaly Wool <vitaly.wool@konsulko.com>
21567 L:      linux-mm@kvack.org
21568 S:      Maintained
21569 F:      mm/zswap.c
21570
21571 THE REST
21572 M:      Linus Torvalds <torvalds@linux-foundation.org>
21573 L:      linux-kernel@vger.kernel.org
21574 S:      Buried alive in reporters
21575 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
21576 F:      *
21577 F:      */