Merge tag 'xfs-5.19-for-linus' of git://git.kernel.org/pub/scm/fs/xfs/xfs-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:      include/uapi/linux/wireless.h
205 F:      net/wireless/
206
207 8169 10/100/1000 GIGABIT ETHERNET DRIVER
208 M:      Heiner Kallweit <hkallweit1@gmail.com>
209 M:      nic_swsd@realtek.com
210 L:      netdev@vger.kernel.org
211 S:      Maintained
212 F:      drivers/net/ethernet/realtek/r8169*
213
214 8250/16?50 (AND CLONE UARTS) SERIAL DRIVER
215 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
216 L:      linux-serial@vger.kernel.org
217 S:      Maintained
218 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
219 F:      drivers/tty/serial/8250*
220 F:      include/linux/serial_8250.h
221
222 8390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.]
223 L:      netdev@vger.kernel.org
224 S:      Orphan / Obsolete
225 F:      drivers/net/ethernet/8390/
226
227 9P FILE SYSTEM
228 M:      Eric Van Hensbergen <ericvh@gmail.com>
229 M:      Latchesar Ionkov <lucho@ionkov.net>
230 M:      Dominique Martinet <asmadeus@codewreck.org>
231 R:      Christian Schoenebeck <linux_oss@crudebyte.com>
232 L:      v9fs-developer@lists.sourceforge.net
233 S:      Maintained
234 W:      http://swik.net/v9fs
235 Q:      http://patchwork.kernel.org/project/v9fs-devel/list/
236 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs.git
237 T:      git git://github.com/martinetd/linux.git
238 F:      Documentation/filesystems/9p.rst
239 F:      fs/9p/
240 F:      include/net/9p/
241 F:      include/trace/events/9p.h
242 F:      include/uapi/linux/virtio_9p.h
243 F:      net/9p/
244
245 A8293 MEDIA DRIVER
246 M:      Antti Palosaari <crope@iki.fi>
247 L:      linux-media@vger.kernel.org
248 S:      Maintained
249 W:      https://linuxtv.org
250 W:      http://palosaari.fi/linux/
251 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
252 T:      git git://linuxtv.org/anttip/media_tree.git
253 F:      drivers/media/dvb-frontends/a8293*
254
255 AACRAID SCSI RAID DRIVER
256 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
257 L:      linux-scsi@vger.kernel.org
258 S:      Supported
259 W:      http://www.adaptec.com/
260 F:      Documentation/scsi/aacraid.rst
261 F:      drivers/scsi/aacraid/
262
263 ABI/API
264 L:      linux-api@vger.kernel.org
265 F:      include/linux/syscalls.h
266 F:      kernel/sys_ni.c
267 X:      include/uapi/
268 X:      arch/*/include/uapi/
269
270 ABIT UGURU 1,2 HARDWARE MONITOR DRIVER
271 M:      Hans de Goede <hdegoede@redhat.com>
272 L:      linux-hwmon@vger.kernel.org
273 S:      Maintained
274 F:      drivers/hwmon/abituguru.c
275
276 ABIT UGURU 3 HARDWARE MONITOR DRIVER
277 M:      Alistair John Strachan <alistair@devzero.co.uk>
278 L:      linux-hwmon@vger.kernel.org
279 S:      Maintained
280 F:      drivers/hwmon/abituguru3.c
281
282 ACCES 104-DIO-48E GPIO DRIVER
283 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
284 L:      linux-gpio@vger.kernel.org
285 S:      Maintained
286 F:      drivers/gpio/gpio-104-dio-48e.c
287
288 ACCES 104-IDI-48 GPIO DRIVER
289 M:      "William Breathitt Gray" <vilhelm.gray@gmail.com>
290 L:      linux-gpio@vger.kernel.org
291 S:      Maintained
292 F:      drivers/gpio/gpio-104-idi-48.c
293
294 ACCES 104-IDIO-16 GPIO DRIVER
295 M:      "William Breathitt Gray" <vilhelm.gray@gmail.com>
296 L:      linux-gpio@vger.kernel.org
297 S:      Maintained
298 F:      drivers/gpio/gpio-104-idio-16.c
299
300 ACCES 104-QUAD-8 DRIVER
301 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
302 M:      Syed Nayyar Waris <syednwaris@gmail.com>
303 L:      linux-iio@vger.kernel.org
304 S:      Maintained
305 F:      drivers/counter/104-quad-8.c
306
307 ACCES PCI-IDIO-16 GPIO DRIVER
308 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
309 L:      linux-gpio@vger.kernel.org
310 S:      Maintained
311 F:      drivers/gpio/gpio-pci-idio-16.c
312
313 ACCES PCIe-IDIO-24 GPIO DRIVER
314 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
315 L:      linux-gpio@vger.kernel.org
316 S:      Maintained
317 F:      drivers/gpio/gpio-pcie-idio-24.c
318
319 ACENIC DRIVER
320 M:      Jes Sorensen <jes@trained-monkey.org>
321 L:      linux-acenic@sunsite.dk
322 S:      Maintained
323 F:      drivers/net/ethernet/alteon/acenic*
324
325 ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER
326 M:      Peter Kaestle <peter@piie.net>
327 L:      platform-driver-x86@vger.kernel.org
328 S:      Maintained
329 W:      http://piie.net/?section=acerhdf
330 F:      drivers/platform/x86/acerhdf.c
331
332 ACER WMI LAPTOP EXTRAS
333 M:      "Lee, Chun-Yi" <jlee@suse.com>
334 L:      platform-driver-x86@vger.kernel.org
335 S:      Maintained
336 F:      drivers/platform/x86/acer-wmi.c
337
338 ACPI
339 M:      "Rafael J. Wysocki" <rafael@kernel.org>
340 R:      Len Brown <lenb@kernel.org>
341 L:      linux-acpi@vger.kernel.org
342 S:      Supported
343 W:      https://01.org/linux-acpi
344 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
345 B:      https://bugzilla.kernel.org
346 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
347 F:      Documentation/ABI/testing/configfs-acpi
348 F:      Documentation/ABI/testing/sysfs-bus-acpi
349 F:      Documentation/firmware-guide/acpi/
350 F:      drivers/acpi/
351 F:      drivers/pci/*/*acpi*
352 F:      drivers/pci/*acpi*
353 F:      drivers/pnp/pnpacpi/
354 F:      include/acpi/
355 F:      include/linux/acpi.h
356 F:      include/linux/fwnode.h
357 F:      tools/power/acpi/
358
359 ACPI APEI
360 M:      "Rafael J. Wysocki" <rafael@kernel.org>
361 R:      Len Brown <lenb@kernel.org>
362 R:      James Morse <james.morse@arm.com>
363 R:      Tony Luck <tony.luck@intel.com>
364 R:      Borislav Petkov <bp@alien8.de>
365 L:      linux-acpi@vger.kernel.org
366 F:      drivers/acpi/apei/
367
368 ACPI COMPONENT ARCHITECTURE (ACPICA)
369 M:      Robert Moore <robert.moore@intel.com>
370 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
371 L:      linux-acpi@vger.kernel.org
372 L:      devel@acpica.org
373 S:      Supported
374 W:      https://acpica.org/
375 W:      https://github.com/acpica/acpica/
376 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
377 B:      https://bugzilla.kernel.org
378 B:      https://bugs.acpica.org
379 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
380 F:      drivers/acpi/acpica/
381 F:      include/acpi/
382 F:      tools/power/acpi/
383
384 ACPI FOR ARM64 (ACPI/arm64)
385 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
386 M:      Hanjun Guo <guohanjun@huawei.com>
387 M:      Sudeep Holla <sudeep.holla@arm.com>
388 L:      linux-acpi@vger.kernel.org
389 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
390 S:      Maintained
391 F:      drivers/acpi/arm64
392
393 ACPI SERIAL MULTI INSTANTIATE DRIVER
394 M:      Hans de Goede <hdegoede@redhat.com>
395 L:      platform-driver-x86@vger.kernel.org
396 S:      Maintained
397 F:      drivers/platform/x86/serial-multi-instantiate.c
398
399 ACPI PCC(Platform Communication Channel) MAILBOX DRIVER
400 M:      Sudeep Holla <sudeep.holla@arm.com>
401 L:      linux-acpi@vger.kernel.org
402 S:      Supported
403 F:      drivers/mailbox/pcc.c
404
405 ACPI PMIC DRIVERS
406 M:      "Rafael J. Wysocki" <rafael@kernel.org>
407 M:      Len Brown <lenb@kernel.org>
408 R:      Andy Shevchenko <andy@kernel.org>
409 R:      Mika Westerberg <mika.westerberg@linux.intel.com>
410 L:      linux-acpi@vger.kernel.org
411 S:      Supported
412 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
413 B:      https://bugzilla.kernel.org
414 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
415 F:      drivers/acpi/pmic/
416
417 ACPI THERMAL DRIVER
418 M:      Rafael J. Wysocki <rafael@kernel.org>
419 R:      Zhang Rui <rui.zhang@intel.com>
420 L:      linux-acpi@vger.kernel.org
421 S:      Supported
422 W:      https://01.org/linux-acpi
423 B:      https://bugzilla.kernel.org
424 F:      drivers/acpi/*thermal*
425
426 ACPI VIOT DRIVER
427 M:      Jean-Philippe Brucker <jean-philippe@linaro.org>
428 L:      linux-acpi@vger.kernel.org
429 L:      iommu@lists.linux-foundation.org
430 S:      Maintained
431 F:      drivers/acpi/viot.c
432 F:      include/linux/acpi_viot.h
433
434 ACPI WMI DRIVER
435 L:      platform-driver-x86@vger.kernel.org
436 S:      Orphan
437 F:      drivers/platform/x86/wmi.c
438 F:      include/uapi/linux/wmi.h
439
440 ACRN HYPERVISOR SERVICE MODULE
441 M:      Fei Li <fei1.li@intel.com>
442 L:      acrn-dev@lists.projectacrn.org (subscribers-only)
443 S:      Supported
444 W:      https://projectacrn.org
445 F:      Documentation/virt/acrn/
446 F:      drivers/virt/acrn/
447 F:      include/uapi/linux/acrn.h
448
449 AD1889 ALSA SOUND DRIVER
450 L:      linux-parisc@vger.kernel.org
451 S:      Maintained
452 W:      https://parisc.wiki.kernel.org/index.php/AD1889
453 F:      sound/pci/ad1889.*
454
455 AD5110 ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
456 M:      Mugilraj Dhavachelvan <dmugil2000@gmail.com>
457 L:      linux-iio@vger.kernel.org
458 S:      Supported
459 F:      drivers/iio/potentiometer/ad5110.c
460
461 AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
462 M:      Michael Hennerich <michael.hennerich@analog.com>
463 S:      Supported
464 W:      http://wiki.analog.com/AD5254
465 W:      https://ez.analog.com/linux-software-drivers
466 F:      drivers/misc/ad525x_dpot.c
467
468 AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821)
469 M:      Michael Hennerich <michael.hennerich@analog.com>
470 S:      Supported
471 W:      http://wiki.analog.com/AD5398
472 W:      https://ez.analog.com/linux-software-drivers
473 F:      drivers/regulator/ad5398.c
474
475 AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A)
476 M:      Michael Hennerich <michael.hennerich@analog.com>
477 S:      Supported
478 W:      http://wiki.analog.com/AD7142
479 W:      https://ez.analog.com/linux-software-drivers
480 F:      drivers/input/misc/ad714x.c
481
482 AD7877 TOUCHSCREEN DRIVER
483 M:      Michael Hennerich <michael.hennerich@analog.com>
484 S:      Supported
485 W:      http://wiki.analog.com/AD7877
486 W:      https://ez.analog.com/linux-software-drivers
487 F:      drivers/input/touchscreen/ad7877.c
488
489 AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889)
490 M:      Michael Hennerich <michael.hennerich@analog.com>
491 S:      Supported
492 W:      http://wiki.analog.com/AD7879
493 W:      https://ez.analog.com/linux-software-drivers
494 F:      drivers/input/touchscreen/ad7879.c
495
496 ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR)
497 M:      Jiri Kosina <jikos@kernel.org>
498 S:      Maintained
499
500 ADF7242 IEEE 802.15.4 RADIO DRIVER
501 M:      Michael Hennerich <michael.hennerich@analog.com>
502 L:      linux-wpan@vger.kernel.org
503 S:      Supported
504 W:      https://wiki.analog.com/ADF7242
505 W:      https://ez.analog.com/linux-software-drivers
506 F:      Documentation/devicetree/bindings/net/ieee802154/adf7242.txt
507 F:      drivers/net/ieee802154/adf7242.c
508
509 ADM1025 HARDWARE MONITOR DRIVER
510 M:      Jean Delvare <jdelvare@suse.com>
511 L:      linux-hwmon@vger.kernel.org
512 S:      Maintained
513 F:      Documentation/hwmon/adm1025.rst
514 F:      drivers/hwmon/adm1025.c
515
516 ADM1029 HARDWARE MONITOR DRIVER
517 M:      Corentin Labbe <clabbe.montjoie@gmail.com>
518 L:      linux-hwmon@vger.kernel.org
519 S:      Maintained
520 F:      drivers/hwmon/adm1029.c
521
522 ADM8211 WIRELESS DRIVER
523 L:      linux-wireless@vger.kernel.org
524 S:      Orphan
525 W:      https://wireless.wiki.kernel.org/
526 F:      drivers/net/wireless/admtek/adm8211.*
527
528 ADP1653 FLASH CONTROLLER DRIVER
529 M:      Sakari Ailus <sakari.ailus@iki.fi>
530 L:      linux-media@vger.kernel.org
531 S:      Maintained
532 F:      drivers/media/i2c/adp1653.c
533 F:      include/media/i2c/adp1653.h
534
535 ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501)
536 M:      Michael Hennerich <michael.hennerich@analog.com>
537 S:      Supported
538 W:      http://wiki.analog.com/ADP5520
539 W:      https://ez.analog.com/linux-software-drivers
540 F:      drivers/gpio/gpio-adp5520.c
541 F:      drivers/input/keyboard/adp5520-keys.c
542 F:      drivers/leds/leds-adp5520.c
543 F:      drivers/mfd/adp5520.c
544 F:      drivers/video/backlight/adp5520_bl.c
545
546 ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587)
547 M:      Michael Hennerich <michael.hennerich@analog.com>
548 S:      Supported
549 W:      http://wiki.analog.com/ADP5588
550 W:      https://ez.analog.com/linux-software-drivers
551 F:      drivers/gpio/gpio-adp5588.c
552 F:      drivers/input/keyboard/adp5588-keys.c
553
554 ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863)
555 M:      Michael Hennerich <michael.hennerich@analog.com>
556 S:      Supported
557 W:      http://wiki.analog.com/ADP8860
558 W:      https://ez.analog.com/linux-software-drivers
559 F:      drivers/video/backlight/adp8860_bl.c
560
561 ADT746X FAN DRIVER
562 M:      Colin Leroy <colin@colino.net>
563 S:      Maintained
564 F:      drivers/macintosh/therm_adt746x.c
565
566 ADT7475 HARDWARE MONITOR DRIVER
567 M:      Jean Delvare <jdelvare@suse.com>
568 L:      linux-hwmon@vger.kernel.org
569 S:      Maintained
570 F:      Documentation/hwmon/adt7475.rst
571 F:      drivers/hwmon/adt7475.c
572
573 ADVANSYS SCSI DRIVER
574 M:      Matthew Wilcox <willy@infradead.org>
575 M:      Hannes Reinecke <hare@suse.com>
576 L:      linux-scsi@vger.kernel.org
577 S:      Maintained
578 F:      Documentation/scsi/advansys.rst
579 F:      drivers/scsi/advansys.c
580
581 ADVANTECH SWBTN DRIVER
582 M:      Andrea Ho <Andrea.Ho@advantech.com.tw>
583 L:      platform-driver-x86@vger.kernel.org
584 S:      Maintained
585 F:      drivers/platform/x86/adv_swbutton.c
586
587 ADXL313 THREE-AXIS DIGITAL ACCELEROMETER DRIVER
588 M:      Lucas Stankus <lucas.p.stankus@gmail.com>
589 S:      Supported
590 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl313.yaml
591 F:      drivers/iio/accel/adxl313*
592
593 ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346)
594 M:      Michael Hennerich <michael.hennerich@analog.com>
595 S:      Supported
596 W:      http://wiki.analog.com/ADXL345
597 W:      https://ez.analog.com/linux-software-drivers
598 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl345.yaml
599 F:      drivers/input/misc/adxl34x.c
600
601 ADXL355 THREE-AXIS DIGITAL ACCELEROMETER DRIVER
602 M:      Puranjay Mohan <puranjay12@gmail.com>
603 L:      linux-iio@vger.kernel.org
604 S:      Supported
605 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl355.yaml
606 F:      drivers/iio/accel/adxl355.h
607 F:      drivers/iio/accel/adxl355_core.c
608 F:      drivers/iio/accel/adxl355_i2c.c
609 F:      drivers/iio/accel/adxl355_spi.c
610
611 ADXL367 THREE-AXIS DIGITAL ACCELEROMETER DRIVER
612 M:      Cosmin Tanislav <cosmin.tanislav@analog.com>
613 L:      linux-iio@vger.kernel.org
614 S:      Supported
615 W:      http://ez.analog.com/community/linux-device-drivers
616 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl367.yaml
617 F:      drivers/iio/accel/adxl367*
618
619 ADXL372 THREE-AXIS DIGITAL ACCELEROMETER DRIVER
620 M:      Michael Hennerich <michael.hennerich@analog.com>
621 S:      Supported
622 W:      https://ez.analog.com/linux-software-drivers
623 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl372.yaml
624 F:      drivers/iio/accel/adxl372.c
625 F:      drivers/iio/accel/adxl372_i2c.c
626 F:      drivers/iio/accel/adxl372_spi.c
627
628 AF9013 MEDIA DRIVER
629 M:      Antti Palosaari <crope@iki.fi>
630 L:      linux-media@vger.kernel.org
631 S:      Maintained
632 W:      https://linuxtv.org
633 W:      http://palosaari.fi/linux/
634 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
635 T:      git git://linuxtv.org/anttip/media_tree.git
636 F:      drivers/media/dvb-frontends/af9013*
637
638 AF9033 MEDIA DRIVER
639 M:      Antti Palosaari <crope@iki.fi>
640 L:      linux-media@vger.kernel.org
641 S:      Maintained
642 W:      https://linuxtv.org
643 W:      http://palosaari.fi/linux/
644 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
645 T:      git git://linuxtv.org/anttip/media_tree.git
646 F:      drivers/media/dvb-frontends/af9033*
647
648 AFFS FILE SYSTEM
649 M:      David Sterba <dsterba@suse.com>
650 L:      linux-fsdevel@vger.kernel.org
651 S:      Odd Fixes
652 F:      Documentation/filesystems/affs.rst
653 F:      fs/affs/
654
655 AFS FILESYSTEM
656 M:      David Howells <dhowells@redhat.com>
657 M:      Marc Dionne <marc.dionne@auristor.com>
658 L:      linux-afs@lists.infradead.org
659 S:      Supported
660 W:      https://www.infradead.org/~dhowells/kafs/
661 F:      Documentation/filesystems/afs.rst
662 F:      fs/afs/
663 F:      include/trace/events/afs.h
664
665 AGPGART DRIVER
666 M:      David Airlie <airlied@linux.ie>
667 S:      Maintained
668 T:      git git://anongit.freedesktop.org/drm/drm
669 F:      drivers/char/agp/
670 F:      include/linux/agp*
671 F:      include/uapi/linux/agp*
672
673 AHA152X SCSI DRIVER
674 M:      "Juergen E. Fischer" <fischer@norbit.de>
675 L:      linux-scsi@vger.kernel.org
676 S:      Maintained
677 F:      drivers/scsi/aha152x*
678 F:      drivers/scsi/pcmcia/aha152x*
679
680 AIC7XXX / AIC79XX SCSI DRIVER
681 M:      Hannes Reinecke <hare@suse.com>
682 L:      linux-scsi@vger.kernel.org
683 S:      Maintained
684 F:      drivers/scsi/aic7xxx/
685
686 AIMSLAB FM RADIO RECEIVER DRIVER
687 M:      Hans Verkuil <hverkuil@xs4all.nl>
688 L:      linux-media@vger.kernel.org
689 S:      Maintained
690 W:      https://linuxtv.org
691 T:      git git://linuxtv.org/media_tree.git
692 F:      drivers/media/radio/radio-aimslab*
693
694 AIO
695 M:      Benjamin LaHaise <bcrl@kvack.org>
696 L:      linux-aio@kvack.org
697 S:      Supported
698 F:      fs/aio.c
699 F:      include/linux/*aio*.h
700
701 AIRSPY MEDIA DRIVER
702 M:      Antti Palosaari <crope@iki.fi>
703 L:      linux-media@vger.kernel.org
704 S:      Maintained
705 W:      https://linuxtv.org
706 W:      http://palosaari.fi/linux/
707 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
708 T:      git git://linuxtv.org/anttip/media_tree.git
709 F:      drivers/media/usb/airspy/
710
711 ALACRITECH GIGABIT ETHERNET DRIVER
712 M:      Lino Sanfilippo <LinoSanfilippo@gmx.de>
713 S:      Maintained
714 F:      drivers/net/ethernet/alacritech/*
715
716 ALCATEL SPEEDTOUCH USB DRIVER
717 M:      Duncan Sands <duncan.sands@free.fr>
718 L:      linux-usb@vger.kernel.org
719 S:      Maintained
720 W:      http://www.linux-usb.org/SpeedTouch/
721 F:      drivers/usb/atm/speedtch.c
722 F:      drivers/usb/atm/usbatm.c
723
724 ALCHEMY AU1XX0 MMC DRIVER
725 M:      Manuel Lauss <manuel.lauss@gmail.com>
726 S:      Maintained
727 F:      drivers/mmc/host/au1xmmc.c
728
729 ALI1563 I2C DRIVER
730 M:      Rudolf Marek <r.marek@assembler.cz>
731 L:      linux-i2c@vger.kernel.org
732 S:      Maintained
733 F:      Documentation/i2c/busses/i2c-ali1563.rst
734 F:      drivers/i2c/busses/i2c-ali1563.c
735
736 ALIENWARE WMI DRIVER
737 L:      Dell.Client.Kernel@dell.com
738 S:      Maintained
739 F:      drivers/platform/x86/dell/alienware-wmi.c
740
741 ALL SENSORS DLH SERIES PRESSURE SENSORS DRIVER
742 M:      Tomislav Denis <tomislav.denis@avl.com>
743 L:      linux-iio@vger.kernel.org
744 S:      Maintained
745 W:      http://www.allsensors.com/
746 F:      Documentation/devicetree/bindings/iio/pressure/asc,dlhl60d.yaml
747 F:      drivers/iio/pressure/dlhl60d.c
748
749 ALLEGRO DVT VIDEO IP CORE DRIVER
750 M:      Michael Tretter <m.tretter@pengutronix.de>
751 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
752 L:      linux-media@vger.kernel.org
753 S:      Maintained
754 F:      Documentation/devicetree/bindings/media/allegro,al5e.yaml
755 F:      drivers/media/platform/allegro-dvt/
756
757 ALLWINNER A10 CSI DRIVER
758 M:      Maxime Ripard <mripard@kernel.org>
759 L:      linux-media@vger.kernel.org
760 S:      Maintained
761 T:      git git://linuxtv.org/media_tree.git
762 F:      Documentation/devicetree/bindings/media/allwinner,sun4i-a10-csi.yaml
763 F:      drivers/media/platform/sunxi/sun4i-csi/
764
765 ALLWINNER CPUFREQ DRIVER
766 M:      Yangtao Li <tiny.windzz@gmail.com>
767 L:      linux-pm@vger.kernel.org
768 S:      Maintained
769 F:      Documentation/devicetree/bindings/opp/allwinner,sun50i-h6-operating-points.yaml
770 F:      drivers/cpufreq/sun50i-cpufreq-nvmem.c
771
772 ALLWINNER CRYPTO DRIVERS
773 M:      Corentin Labbe <clabbe.montjoie@gmail.com>
774 L:      linux-crypto@vger.kernel.org
775 S:      Maintained
776 F:      drivers/crypto/allwinner/
777
778 ALLWINNER HARDWARE SPINLOCK SUPPORT
779 M:      Wilken Gottwalt <wilken.gottwalt@posteo.net>
780 S:      Maintained
781 F:      Documentation/devicetree/bindings/hwlock/allwinner,sun6i-a31-hwspinlock.yaml
782 F:      drivers/hwspinlock/sun6i_hwspinlock.c
783
784 ALLWINNER THERMAL DRIVER
785 M:      Vasily Khoruzhick <anarsoul@gmail.com>
786 M:      Yangtao Li <tiny.windzz@gmail.com>
787 L:      linux-pm@vger.kernel.org
788 S:      Maintained
789 F:      Documentation/devicetree/bindings/thermal/allwinner,sun8i-a83t-ths.yaml
790 F:      drivers/thermal/sun8i_thermal.c
791
792 ALLWINNER VPU DRIVER
793 M:      Maxime Ripard <mripard@kernel.org>
794 M:      Paul Kocialkowski <paul.kocialkowski@bootlin.com>
795 L:      linux-media@vger.kernel.org
796 S:      Maintained
797 F:      drivers/staging/media/sunxi/cedrus/
798
799 ALPHA PORT
800 M:      Richard Henderson <rth@twiddle.net>
801 M:      Ivan Kokshaysky <ink@jurassic.park.msu.ru>
802 M:      Matt Turner <mattst88@gmail.com>
803 L:      linux-alpha@vger.kernel.org
804 S:      Odd Fixes
805 F:      arch/alpha/
806
807 ALPS PS/2 TOUCHPAD DRIVER
808 R:      Pali Rohár <pali@kernel.org>
809 F:      drivers/input/mouse/alps.*
810
811 ALTERA I2C CONTROLLER DRIVER
812 M:      Thor Thayer <thor.thayer@linux.intel.com>
813 S:      Maintained
814 F:      Documentation/devicetree/bindings/i2c/i2c-altera.txt
815 F:      drivers/i2c/busses/i2c-altera.c
816
817 ALTERA MAILBOX DRIVER
818 M:      Mun Yew Tham <mun.yew.tham@intel.com>
819 S:      Maintained
820 F:      drivers/mailbox/mailbox-altera.c
821
822 ALTERA MSGDMA IP CORE DRIVER
823 M:      Olivier Dautricourt <olivier.dautricourt@orolia.com>
824 R:      Stefan Roese <sr@denx.de>
825 L:      dmaengine@vger.kernel.org
826 S:      Odd Fixes
827 F:      Documentation/devicetree/bindings/dma/altr,msgdma.yaml
828 F:      drivers/dma/altera-msgdma.c
829
830 ALTERA PIO DRIVER
831 M:      Mun Yew Tham <mun.yew.tham@intel.com>
832 L:      linux-gpio@vger.kernel.org
833 S:      Maintained
834 F:      drivers/gpio/gpio-altera.c
835
836 ALTERA SYSTEM MANAGER DRIVER
837 M:      Thor Thayer <thor.thayer@linux.intel.com>
838 S:      Maintained
839 F:      drivers/mfd/altera-sysmgr.c
840 F:      include/linux/mfd/altera-sysmgr.h
841
842 ALTERA SYSTEM RESOURCE DRIVER FOR ARRIA10 DEVKIT
843 M:      Thor Thayer <thor.thayer@linux.intel.com>
844 S:      Maintained
845 F:      drivers/gpio/gpio-altera-a10sr.c
846 F:      drivers/mfd/altera-a10sr.c
847 F:      drivers/reset/reset-a10sr.c
848 F:      include/dt-bindings/reset/altr,rst-mgr-a10sr.h
849 F:      include/linux/mfd/altera-a10sr.h
850
851 ALTERA TRIPLE SPEED ETHERNET DRIVER
852 M:      Joyce Ooi <joyce.ooi@intel.com>
853 L:      netdev@vger.kernel.org
854 S:      Maintained
855 F:      drivers/net/ethernet/altera/
856
857 ALTERA UART/JTAG UART SERIAL DRIVERS
858 M:      Tobias Klauser <tklauser@distanz.ch>
859 L:      linux-serial@vger.kernel.org
860 S:      Maintained
861 F:      drivers/tty/serial/altera_jtaguart.c
862 F:      drivers/tty/serial/altera_uart.c
863 F:      include/linux/altera_jtaguart.h
864 F:      include/linux/altera_uart.h
865
866 AMAZON ANNAPURNA LABS FIC DRIVER
867 M:      Talel Shenhar <talel@amazon.com>
868 S:      Maintained
869 F:      Documentation/devicetree/bindings/interrupt-controller/amazon,al-fic.txt
870 F:      drivers/irqchip/irq-al-fic.c
871
872 AMAZON ANNAPURNA LABS MEMORY CONTROLLER EDAC
873 M:      Talel Shenhar <talel@amazon.com>
874 M:      Talel Shenhar <talelshenhar@gmail.com>
875 S:      Maintained
876 F:      Documentation/devicetree/bindings/edac/amazon,al-mc-edac.yaml
877 F:      drivers/edac/al_mc_edac.c
878
879 AMAZON ANNAPURNA LABS THERMAL MMIO DRIVER
880 M:      Talel Shenhar <talel@amazon.com>
881 S:      Maintained
882 F:      Documentation/devicetree/bindings/thermal/amazon,al-thermal.txt
883 F:      drivers/thermal/thermal_mmio.c
884
885 AMAZON ETHERNET DRIVERS
886 M:      Shay Agroskin <shayagr@amazon.com>
887 M:      Arthur Kiyanovski <akiyano@amazon.com>
888 R:      David Arinzon <darinzon@amazon.com>
889 R:      Noam Dagan <ndagan@amazon.com>
890 R:      Saeed Bishara <saeedb@amazon.com>
891 L:      netdev@vger.kernel.org
892 S:      Supported
893 F:      Documentation/networking/device_drivers/ethernet/amazon/ena.rst
894 F:      drivers/net/ethernet/amazon/
895
896 AMAZON RDMA EFA DRIVER
897 M:      Gal Pressman <galpress@amazon.com>
898 R:      Yossi Leybovich <sleybo@amazon.com>
899 L:      linux-rdma@vger.kernel.org
900 S:      Supported
901 Q:      https://patchwork.kernel.org/project/linux-rdma/list/
902 F:      drivers/infiniband/hw/efa/
903 F:      include/uapi/rdma/efa-abi.h
904
905 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER
906 M:      Tom Lendacky <thomas.lendacky@amd.com>
907 M:      John Allen <john.allen@amd.com>
908 L:      linux-crypto@vger.kernel.org
909 S:      Supported
910 F:      drivers/crypto/ccp/
911 F:      include/linux/ccp.h
912
913 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER - SEV SUPPORT
914 M:      Brijesh Singh <brijesh.singh@amd.com>
915 M:      Tom Lendacky <thomas.lendacky@amd.com>
916 L:      linux-crypto@vger.kernel.org
917 S:      Supported
918 F:      drivers/crypto/ccp/sev*
919 F:      include/uapi/linux/psp-sev.h
920
921 AMD DISPLAY CORE
922 M:      Harry Wentland <harry.wentland@amd.com>
923 M:      Leo Li <sunpeng.li@amd.com>
924 M:      Rodrigo Siqueira <Rodrigo.Siqueira@amd.com>
925 L:      amd-gfx@lists.freedesktop.org
926 S:      Supported
927 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
928 F:      drivers/gpu/drm/amd/display/
929
930 AMD FAM15H PROCESSOR POWER MONITORING DRIVER
931 M:      Huang Rui <ray.huang@amd.com>
932 L:      linux-hwmon@vger.kernel.org
933 S:      Supported
934 F:      Documentation/hwmon/fam15h_power.rst
935 F:      drivers/hwmon/fam15h_power.c
936
937 AMD FCH GPIO DRIVER
938 M:      Enrico Weigelt, metux IT consult <info@metux.net>
939 L:      linux-gpio@vger.kernel.org
940 S:      Maintained
941 F:      drivers/gpio/gpio-amd-fch.c
942 F:      include/linux/platform_data/gpio/gpio-amd-fch.h
943
944 AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
945 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
946 S:      Orphan
947 F:      drivers/usb/gadget/udc/amd5536udc.*
948
949 AMD GEODE PROCESSOR/CHIPSET SUPPORT
950 M:      Andres Salomon <dilinger@queued.net>
951 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
952 S:      Supported
953 W:      http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
954 F:      arch/x86/include/asm/geode.h
955 F:      drivers/char/hw_random/geode-rng.c
956 F:      drivers/crypto/geode*
957 F:      drivers/video/fbdev/geode/
958
959 AMD IOMMU (AMD-VI)
960 M:      Joerg Roedel <joro@8bytes.org>
961 R:      Suravee Suthikulpanit <suravee.suthikulpanit@amd.com>
962 L:      iommu@lists.linux-foundation.org
963 S:      Maintained
964 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
965 F:      drivers/iommu/amd/
966 F:      include/linux/amd-iommu.h
967
968 AMD KFD
969 M:      Felix Kuehling <Felix.Kuehling@amd.com>
970 L:      amd-gfx@lists.freedesktop.org
971 S:      Supported
972 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
973 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd*.[ch]
974 F:      drivers/gpu/drm/amd/amdkfd/
975 F:      drivers/gpu/drm/amd/include/cik_structs.h
976 F:      drivers/gpu/drm/amd/include/kgd_kfd_interface.h
977 F:      drivers/gpu/drm/amd/include/v9_structs.h
978 F:      drivers/gpu/drm/amd/include/vi_structs.h
979 F:      include/uapi/linux/kfd_ioctl.h
980 F:      include/uapi/linux/kfd_sysfs.h
981
982 AMD SPI DRIVER
983 M:      Sanjay R Mehta <sanju.mehta@amd.com>
984 S:      Maintained
985 F:      drivers/spi/spi-amd.c
986
987 AMD MP2 I2C DRIVER
988 M:      Elie Morisse <syniurge@gmail.com>
989 M:      Nehal Shah <nehal-bakulchandra.shah@amd.com>
990 M:      Shyam Sundar S K <shyam-sundar.s-k@amd.com>
991 L:      linux-i2c@vger.kernel.org
992 S:      Maintained
993 F:      drivers/i2c/busses/i2c-amd-mp2*
994
995 AMD PMC DRIVER
996 M:      Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
997 L:      platform-driver-x86@vger.kernel.org
998 S:      Maintained
999 F:      drivers/platform/x86/amd-pmc.*
1000
1001 AMD HSMP DRIVER
1002 M:      Naveen Krishna Chatradhi <naveenkrishna.chatradhi@amd.com>
1003 R:      Carlos Bilbao <carlos.bilbao@amd.com>
1004 L:      platform-driver-x86@vger.kernel.org
1005 S:      Maintained
1006 F:      Documentation/x86/amd_hsmp.rst
1007 F:      arch/x86/include/asm/amd_hsmp.h
1008 F:      arch/x86/include/uapi/asm/amd_hsmp.h
1009 F:      drivers/platform/x86/amd_hsmp.c
1010
1011 AMD POWERPLAY AND SWSMU
1012 M:      Evan Quan <evan.quan@amd.com>
1013 L:      amd-gfx@lists.freedesktop.org
1014 S:      Supported
1015 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
1016 F:      drivers/gpu/drm/amd/pm/
1017
1018 AMD PSTATE DRIVER
1019 M:      Huang Rui <ray.huang@amd.com>
1020 L:      linux-pm@vger.kernel.org
1021 S:      Supported
1022 F:      Documentation/admin-guide/pm/amd-pstate.rst
1023 F:      drivers/cpufreq/amd-pstate*
1024 F:      tools/power/x86/amd_pstate_tracer/amd_pstate_trace.py
1025
1026 AMD PTDMA DRIVER
1027 M:      Sanjay R Mehta <sanju.mehta@amd.com>
1028 L:      dmaengine@vger.kernel.org
1029 S:      Maintained
1030 F:      drivers/dma/ptdma/
1031
1032 AMD SEATTLE DEVICE TREE SUPPORT
1033 M:      Brijesh Singh <brijeshkumar.singh@amd.com>
1034 M:      Suravee Suthikulpanit <suravee.suthikulpanit@amd.com>
1035 M:      Tom Lendacky <thomas.lendacky@amd.com>
1036 S:      Supported
1037 F:      arch/arm64/boot/dts/amd/
1038
1039 AMD XGBE DRIVER
1040 M:      Tom Lendacky <thomas.lendacky@amd.com>
1041 L:      netdev@vger.kernel.org
1042 S:      Supported
1043 F:      arch/arm64/boot/dts/amd/amd-seattle-xgbe*.dtsi
1044 F:      drivers/net/ethernet/amd/xgbe/
1045
1046 AMD SENSOR FUSION HUB DRIVER
1047 M:      Basavaraj Natikar <basavaraj.natikar@amd.com>
1048 L:      linux-input@vger.kernel.org
1049 S:      Maintained
1050 F:      Documentation/hid/amd-sfh*
1051 F:      drivers/hid/amd-sfh-hid/
1052
1053 AMPHION VPU CODEC V4L2 DRIVER
1054 M:      Ming Qian <ming.qian@nxp.com>
1055 M:      Shijie Qin <shijie.qin@nxp.com>
1056 M:      Zhou Peng <eagle.zhou@nxp.com>
1057 L:      linux-media@vger.kernel.org
1058 S:      Maintained
1059 F:      Documentation/devicetree/bindings/media/amphion,vpu.yaml
1060 F:      drivers/media/platform/amphion/
1061
1062 AMS AS73211 DRIVER
1063 M:      Christian Eggers <ceggers@arri.de>
1064 L:      linux-iio@vger.kernel.org
1065 S:      Maintained
1066 F:      Documentation/devicetree/bindings/iio/light/ams,as73211.yaml
1067 F:      drivers/iio/light/as73211.c
1068
1069 AMT (Automatic Multicast Tunneling)
1070 M:      Taehee Yoo <ap420073@gmail.com>
1071 L:      netdev@vger.kernel.org
1072 S:      Maintained
1073 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
1074 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
1075 F:      drivers/net/amt.c
1076
1077 ANALOG DEVICES INC AD7192 DRIVER
1078 M:      Alexandru Tachici <alexandru.tachici@analog.com>
1079 L:      linux-iio@vger.kernel.org
1080 S:      Supported
1081 W:      https://ez.analog.com/linux-software-drivers
1082 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7192.yaml
1083 F:      drivers/iio/adc/ad7192.c
1084
1085 ANALOG DEVICES INC AD7292 DRIVER
1086 M:      Marcelo Schmitt <marcelo.schmitt1@gmail.com>
1087 L:      linux-iio@vger.kernel.org
1088 S:      Supported
1089 W:      https://ez.analog.com/linux-software-drivers
1090 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7292.yaml
1091 F:      drivers/iio/adc/ad7292.c
1092
1093 ANALOG DEVICES INC AD7293 DRIVER
1094 M:      Antoniu Miclaus <antoniu.miclaus@analog.com>
1095 L:      linux-iio@vger.kernel.org
1096 S:      Supported
1097 W:      https://ez.analog.com/linux-software-drivers
1098 F:      Documentation/devicetree/bindings/iio/dac/adi,ad7293.yaml
1099 F:      drivers/iio/dac/ad7293.c
1100
1101 ANALOG DEVICES INC AD7768-1 DRIVER
1102 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1103 L:      linux-iio@vger.kernel.org
1104 S:      Supported
1105 W:      https://ez.analog.com/linux-software-drivers
1106 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7768-1.yaml
1107 F:      drivers/iio/adc/ad7768-1.c
1108
1109 ANALOG DEVICES INC AD7780 DRIVER
1110 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1111 M:      Renato Lui Geh <renatogeh@gmail.com>
1112 L:      linux-iio@vger.kernel.org
1113 S:      Supported
1114 W:      https://ez.analog.com/linux-software-drivers
1115 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7780.yaml
1116 F:      drivers/iio/adc/ad7780.c
1117
1118 ANALOG DEVICES INC AD74413R DRIVER
1119 M:      Cosmin Tanislav <cosmin.tanislav@analog.com>
1120 L:      linux-iio@vger.kernel.org
1121 S:      Supported
1122 W:      http://ez.analog.com/community/linux-device-drivers
1123 F:      Documentation/devicetree/bindings/iio/addac/adi,ad74413r.yaml
1124 F:      drivers/iio/addac/ad74413r.c
1125 F:      include/dt-bindings/iio/addac/adi,ad74413r.h
1126
1127 ANALOG DEVICES INC AD9389B DRIVER
1128 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1129 L:      linux-media@vger.kernel.org
1130 S:      Maintained
1131 F:      drivers/media/i2c/ad9389b*
1132
1133 ANALOG DEVICES INC ADA4250 DRIVER
1134 M:      Antoniu Miclaus <antoniu.miclaus@analog.com>
1135 L:      linux-iio@vger.kernel.org
1136 S:      Supported
1137 W:      https://ez.analog.com/linux-software-drivers
1138 F:      Documentation/devicetree/bindings/iio/amplifiers/adi,ada4250.yaml
1139 F:      drivers/iio/amplifiers/ada4250.c
1140
1141 ANALOG DEVICES INC ADGS1408 DRIVER
1142 M:      Mircea Caprioru <mircea.caprioru@analog.com>
1143 S:      Supported
1144 F:      Documentation/devicetree/bindings/mux/adi,adgs1408.txt
1145 F:      drivers/mux/adgs1408.c
1146
1147 ANALOG DEVICES INC ADIN DRIVER
1148 M:      Michael Hennerich <michael.hennerich@analog.com>
1149 L:      netdev@vger.kernel.org
1150 S:      Supported
1151 W:      https://ez.analog.com/linux-software-drivers
1152 F:      Documentation/devicetree/bindings/net/adi,adin.yaml
1153 F:      drivers/net/phy/adin.c
1154
1155 ANALOG DEVICES INC ADIS DRIVER LIBRARY
1156 M:      Nuno Sa <nuno.sa@analog.com>
1157 L:      linux-iio@vger.kernel.org
1158 S:      Supported
1159 F:      drivers/iio/imu/adis.c
1160 F:      drivers/iio/imu/adis_buffer.c
1161 F:      drivers/iio/imu/adis_trigger.c
1162 F:      include/linux/iio/imu/adis.h
1163
1164 ANALOG DEVICES INC ADIS16460 DRIVER
1165 M:      Dragos Bogdan <dragos.bogdan@analog.com>
1166 L:      linux-iio@vger.kernel.org
1167 S:      Supported
1168 W:      https://ez.analog.com/linux-software-drivers
1169 F:      Documentation/devicetree/bindings/iio/imu/adi,adis16460.yaml
1170 F:      drivers/iio/imu/adis16460.c
1171
1172 ANALOG DEVICES INC ADIS16475 DRIVER
1173 M:      Nuno Sa <nuno.sa@analog.com>
1174 L:      linux-iio@vger.kernel.org
1175 W:      https://ez.analog.com/linux-software-drivers
1176 S:      Supported
1177 F:      drivers/iio/imu/adis16475.c
1178 F:      Documentation/devicetree/bindings/iio/imu/adi,adis16475.yaml
1179
1180 ANALOG DEVICES INC ADM1177 DRIVER
1181 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1182 L:      linux-hwmon@vger.kernel.org
1183 S:      Supported
1184 W:      https://ez.analog.com/linux-software-drivers
1185 F:      Documentation/devicetree/bindings/hwmon/adi,adm1177.yaml
1186 F:      drivers/hwmon/adm1177.c
1187
1188 ANALOG DEVICES INC ADMV1013 DRIVER
1189 M:      Antoniu Miclaus <antoniu.miclaus@analog.com>
1190 L:      linux-iio@vger.kernel.org
1191 S:      Supported
1192 W:      https://ez.analog.com/linux-software-drivers
1193 F:      Documentation/devicetree/bindings/iio/frequency/adi,admv1013.yaml
1194 F:      drivers/iio/frequency/admv1013.c
1195
1196 ANALOG DEVICES INC ADMV8818 DRIVER
1197 M:      Antoniu Miclaus <antoniu.miclaus@analog.com>
1198 L:      linux-iio@vger.kernel.org
1199 S:      Supported
1200 W:      https://ez.analog.com/linux-software-drivers
1201 F:      Documentation/devicetree/bindings/iio/filter/adi,admv8818.yaml
1202 F:      drivers/iio/filter/admv8818.c
1203
1204 ANALOG DEVICES INC ADMV1014 DRIVER
1205 M:      Antoniu Miclaus <antoniu.miclaus@analog.com>
1206 L:      linux-iio@vger.kernel.org
1207 S:      Supported
1208 W:      https://ez.analog.com/linux-software-drivers
1209 F:      Documentation/devicetree/bindings/iio/frequency/adi,admv1014.yaml
1210 F:      drivers/iio/frequency/admv1014.c
1211
1212 ANALOG DEVICES INC ADP5061 DRIVER
1213 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1214 L:      linux-pm@vger.kernel.org
1215 S:      Supported
1216 W:      https://ez.analog.com/linux-software-drivers
1217 F:      drivers/power/supply/adp5061.c
1218
1219 ANALOG DEVICES INC ADRF6780 DRIVER
1220 M:      Antoniu Miclaus <antoniu.miclaus@analog.com>
1221 L:      linux-iio@vger.kernel.org
1222 S:      Supported
1223 W:      https://ez.analog.com/linux-software-drivers
1224 F:      Documentation/devicetree/bindings/iio/frequency/adi,adrf6780.yaml
1225 F:      drivers/iio/frequency/adrf6780.c
1226
1227 ANALOG DEVICES INC ADV7180 DRIVER
1228 M:      Lars-Peter Clausen <lars@metafoo.de>
1229 L:      linux-media@vger.kernel.org
1230 S:      Supported
1231 W:      https://ez.analog.com/linux-software-drivers
1232 F:      drivers/media/i2c/adv7180.c
1233 F:      Documentation/devicetree/bindings/media/i2c/adv7180.yaml
1234
1235 ANALOG DEVICES INC ADV748X DRIVER
1236 M:      Kieran Bingham <kieran.bingham@ideasonboard.com>
1237 L:      linux-media@vger.kernel.org
1238 S:      Maintained
1239 F:      Documentation/devicetree/bindings/media/i2c/adv748x.yaml
1240 F:      drivers/media/i2c/adv748x/*
1241
1242 ANALOG DEVICES INC ADV7511 DRIVER
1243 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1244 L:      linux-media@vger.kernel.org
1245 S:      Maintained
1246 F:      drivers/media/i2c/adv7511*
1247
1248 ANALOG DEVICES INC ADV7604 DRIVER
1249 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1250 L:      linux-media@vger.kernel.org
1251 S:      Maintained
1252 F:      drivers/media/i2c/adv7604*
1253 F:      Documentation/devicetree/bindings/media/i2c/adv7604.yaml
1254
1255 ANALOG DEVICES INC ADV7842 DRIVER
1256 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1257 L:      linux-media@vger.kernel.org
1258 S:      Maintained
1259 F:      drivers/media/i2c/adv7842*
1260
1261 ANALOG DEVICES INC ADXRS290 DRIVER
1262 M:      Nishant Malpani <nish.malpani25@gmail.com>
1263 L:      linux-iio@vger.kernel.org
1264 S:      Supported
1265 F:      drivers/iio/gyro/adxrs290.c
1266 F:      Documentation/devicetree/bindings/iio/gyroscope/adi,adxrs290.yaml
1267
1268 ANALOG DEVICES INC ASOC CODEC DRIVERS
1269 M:      Lars-Peter Clausen <lars@metafoo.de>
1270 M:      Nuno Sá <nuno.sa@analog.com>
1271 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1272 S:      Supported
1273 W:      http://wiki.analog.com/
1274 W:      https://ez.analog.com/linux-software-drivers
1275 F:      sound/soc/codecs/ad1*
1276 F:      sound/soc/codecs/ad7*
1277 F:      sound/soc/codecs/adau*
1278 F:      sound/soc/codecs/adav*
1279 F:      sound/soc/codecs/sigmadsp.*
1280 F:      sound/soc/codecs/ssm*
1281
1282 ANALOG DEVICES INC DMA DRIVERS
1283 M:      Lars-Peter Clausen <lars@metafoo.de>
1284 S:      Supported
1285 W:      https://ez.analog.com/linux-software-drivers
1286 F:      drivers/dma/dma-axi-dmac.c
1287
1288 ANALOG DEVICES INC IIO DRIVERS
1289 M:      Lars-Peter Clausen <lars@metafoo.de>
1290 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1291 S:      Supported
1292 W:      http://wiki.analog.com/
1293 W:      https://ez.analog.com/linux-software-drivers
1294 F:      Documentation/ABI/testing/sysfs-bus-iio-frequency-ad9523
1295 F:      Documentation/ABI/testing/sysfs-bus-iio-frequency-adf4350
1296 F:      Documentation/devicetree/bindings/iio/*/adi,*
1297 F:      Documentation/devicetree/bindings/iio/dac/adi,ad5758.yaml
1298 F:      drivers/iio/*/ad*
1299 F:      drivers/iio/adc/ltc249*
1300 F:      drivers/iio/amplifiers/hmc425a.c
1301 F:      drivers/staging/iio/*/ad*
1302 X:      drivers/iio/*/adjd*
1303
1304 ANALOGBITS PLL LIBRARIES
1305 M:      Paul Walmsley <paul.walmsley@sifive.com>
1306 S:      Supported
1307 F:      drivers/clk/analogbits/*
1308 F:      include/linux/clk/analogbits*
1309
1310 ANDROID CONFIG FRAGMENTS
1311 M:      Rob Herring <robh@kernel.org>
1312 S:      Supported
1313 F:      kernel/configs/android*
1314
1315 ANDROID DRIVERS
1316 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
1317 M:      Arve Hjønnevåg <arve@android.com>
1318 M:      Todd Kjos <tkjos@android.com>
1319 M:      Martijn Coenen <maco@android.com>
1320 M:      Joel Fernandes <joel@joelfernandes.org>
1321 M:      Christian Brauner <christian@brauner.io>
1322 M:      Hridya Valsaraju <hridya@google.com>
1323 M:      Suren Baghdasaryan <surenb@google.com>
1324 L:      linux-kernel@vger.kernel.org
1325 S:      Supported
1326 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
1327 F:      drivers/android/
1328
1329 ANDROID GOLDFISH PIC DRIVER
1330 M:      Miodrag Dinic <miodrag.dinic@mips.com>
1331 S:      Supported
1332 F:      Documentation/devicetree/bindings/interrupt-controller/google,goldfish-pic.txt
1333 F:      drivers/irqchip/irq-goldfish-pic.c
1334
1335 ANDROID GOLDFISH RTC DRIVER
1336 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
1337 S:      Supported
1338 F:      Documentation/devicetree/bindings/rtc/google,goldfish-rtc.txt
1339 F:      drivers/rtc/rtc-goldfish.c
1340
1341 AOA (Apple Onboard Audio) ALSA DRIVER
1342 M:      Johannes Berg <johannes@sipsolutions.net>
1343 L:      linuxppc-dev@lists.ozlabs.org
1344 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1345 S:      Maintained
1346 F:      sound/aoa/
1347
1348 APEX EMBEDDED SYSTEMS STX104 IIO DRIVER
1349 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
1350 L:      linux-iio@vger.kernel.org
1351 S:      Maintained
1352 F:      drivers/iio/adc/stx104.c
1353
1354 APM DRIVER
1355 M:      Jiri Kosina <jikos@kernel.org>
1356 S:      Odd fixes
1357 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/apm.git
1358 F:      arch/x86/kernel/apm_32.c
1359 F:      drivers/char/apm-emulation.c
1360 F:      include/linux/apm_bios.h
1361 F:      include/uapi/linux/apm_bios.h
1362
1363 APPARMOR SECURITY MODULE
1364 M:      John Johansen <john.johansen@canonical.com>
1365 L:      apparmor@lists.ubuntu.com (subscribers-only, general discussion)
1366 S:      Supported
1367 W:      wiki.apparmor.net
1368 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jj/linux-apparmor
1369 F:      Documentation/admin-guide/LSM/apparmor.rst
1370 F:      security/apparmor/
1371
1372 APPLE BCM5974 MULTITOUCH DRIVER
1373 M:      Henrik Rydberg <rydberg@bitmath.org>
1374 L:      linux-input@vger.kernel.org
1375 S:      Odd fixes
1376 F:      drivers/input/mouse/bcm5974.c
1377
1378 APPLE DART IOMMU DRIVER
1379 M:      Sven Peter <sven@svenpeter.dev>
1380 R:      Alyssa Rosenzweig <alyssa@rosenzweig.io>
1381 L:      iommu@lists.linux-foundation.org
1382 S:      Maintained
1383 F:      Documentation/devicetree/bindings/iommu/apple,dart.yaml
1384 F:      drivers/iommu/apple-dart.c
1385
1386 APPLE PCIE CONTROLLER DRIVER
1387 M:      Alyssa Rosenzweig <alyssa@rosenzweig.io>
1388 M:      Marc Zyngier <maz@kernel.org>
1389 L:      linux-pci@vger.kernel.org
1390 S:      Maintained
1391 F:      drivers/pci/controller/pcie-apple.c
1392
1393 APPLE SMC DRIVER
1394 M:      Henrik Rydberg <rydberg@bitmath.org>
1395 L:      linux-hwmon@vger.kernel.org
1396 S:      Odd fixes
1397 F:      drivers/hwmon/applesmc.c
1398
1399 APPLETALK NETWORK LAYER
1400 L:      netdev@vger.kernel.org
1401 S:      Odd fixes
1402 F:      drivers/net/appletalk/
1403 F:      include/linux/atalk.h
1404 F:      include/uapi/linux/atalk.h
1405 F:      net/appletalk/
1406
1407 APPLIED MICRO (APM) X-GENE DEVICE TREE SUPPORT
1408 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1409 S:      Supported
1410 F:      arch/arm64/boot/dts/apm/
1411
1412 APPLIED MICRO (APM) X-GENE SOC EDAC
1413 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1414 S:      Supported
1415 F:      Documentation/devicetree/bindings/edac/apm-xgene-edac.txt
1416 F:      drivers/edac/xgene_edac.c
1417
1418 APPLIED MICRO (APM) X-GENE SOC ETHERNET (V2) DRIVER
1419 M:      Iyappan Subramanian <iyappan@os.amperecomputing.com>
1420 M:      Keyur Chudgar <keyur@os.amperecomputing.com>
1421 S:      Supported
1422 F:      drivers/net/ethernet/apm/xgene-v2/
1423
1424 APPLIED MICRO (APM) X-GENE SOC ETHERNET DRIVER
1425 M:      Iyappan Subramanian <iyappan@os.amperecomputing.com>
1426 M:      Keyur Chudgar <keyur@os.amperecomputing.com>
1427 M:      Quan Nguyen <quan@os.amperecomputing.com>
1428 S:      Supported
1429 F:      Documentation/devicetree/bindings/net/apm-xgene-enet.txt
1430 F:      Documentation/devicetree/bindings/net/apm-xgene-mdio.txt
1431 F:      drivers/net/ethernet/apm/xgene/
1432 F:      drivers/net/mdio/mdio-xgene.c
1433
1434 APPLIED MICRO (APM) X-GENE SOC PMU
1435 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1436 S:      Supported
1437 F:      Documentation/admin-guide/perf/xgene-pmu.rst
1438 F:      Documentation/devicetree/bindings/perf/apm-xgene-pmu.txt
1439 F:      drivers/perf/xgene_pmu.c
1440
1441 APTINA CAMERA SENSOR PLL
1442 M:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
1443 L:      linux-media@vger.kernel.org
1444 S:      Maintained
1445 F:      drivers/media/i2c/aptina-pll.*
1446
1447 AQUACOMPUTER D5 NEXT PUMP SENSOR DRIVER
1448 M:      Aleksa Savic <savicaleksa83@gmail.com>
1449 M:      Jack Doan <me@jackdoan.com>
1450 L:      linux-hwmon@vger.kernel.org
1451 S:      Maintained
1452 F:      Documentation/hwmon/aquacomputer_d5next.rst
1453 F:      drivers/hwmon/aquacomputer_d5next.c
1454
1455 AQUANTIA ETHERNET DRIVER (atlantic)
1456 M:      Igor Russkikh <irusskikh@marvell.com>
1457 L:      netdev@vger.kernel.org
1458 S:      Supported
1459 W:      https://www.marvell.com/
1460 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
1461 F:      Documentation/networking/device_drivers/ethernet/aquantia/atlantic.rst
1462 F:      drivers/net/ethernet/aquantia/atlantic/
1463
1464 AQUANTIA ETHERNET DRIVER PTP SUBSYSTEM
1465 M:      Egor Pomozov <epomozov@marvell.com>
1466 L:      netdev@vger.kernel.org
1467 S:      Supported
1468 W:      http://www.aquantia.com
1469 F:      drivers/net/ethernet/aquantia/atlantic/aq_ptp*
1470
1471 ARASAN NAND CONTROLLER DRIVER
1472 M:      Miquel Raynal <miquel.raynal@bootlin.com>
1473 M:      Naga Sureshkumar Relli <nagasure@xilinx.com>
1474 L:      linux-mtd@lists.infradead.org
1475 S:      Maintained
1476 F:      Documentation/devicetree/bindings/mtd/arasan,nand-controller.yaml
1477 F:      drivers/mtd/nand/raw/arasan-nand-controller.c
1478
1479 ARC FRAMEBUFFER DRIVER
1480 M:      Jaya Kumar <jayalk@intworks.biz>
1481 S:      Maintained
1482 F:      drivers/video/fbdev/arcfb.c
1483 F:      drivers/video/fbdev/core/fb_defio.c
1484
1485 ARC PGU DRM DRIVER
1486 M:      Alexey Brodkin <abrodkin@synopsys.com>
1487 S:      Supported
1488 F:      Documentation/devicetree/bindings/display/snps,arcpgu.txt
1489 F:      drivers/gpu/drm/tiny/arcpgu.c
1490
1491 ARCNET NETWORK LAYER
1492 M:      Michael Grzeschik <m.grzeschik@pengutronix.de>
1493 L:      netdev@vger.kernel.org
1494 S:      Maintained
1495 F:      drivers/net/arcnet/
1496 F:      include/uapi/linux/if_arcnet.h
1497
1498 ARM ARCHITECTED TIMER DRIVER
1499 M:      Mark Rutland <mark.rutland@arm.com>
1500 M:      Marc Zyngier <maz@kernel.org>
1501 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1502 S:      Maintained
1503 F:      arch/arm/include/asm/arch_timer.h
1504 F:      arch/arm64/include/asm/arch_timer.h
1505 F:      drivers/clocksource/arm_arch_timer.c
1506
1507 ARM HDLCD DRM DRIVER
1508 M:      Liviu Dudau <liviu.dudau@arm.com>
1509 S:      Supported
1510 F:      Documentation/devicetree/bindings/display/arm,hdlcd.txt
1511 F:      drivers/gpu/drm/arm/hdlcd_*
1512
1513 ARM INTEGRATOR, VERSATILE AND REALVIEW SUPPORT
1514 M:      Linus Walleij <linus.walleij@linaro.org>
1515 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1516 S:      Maintained
1517 F:      Documentation/devicetree/bindings/arm/arm,integrator.yaml
1518 F:      Documentation/devicetree/bindings/arm/arm,realview.yaml
1519 F:      Documentation/devicetree/bindings/arm/arm,versatile.yaml
1520 F:      Documentation/devicetree/bindings/arm/arm,vexpress-juno.yaml
1521 F:      Documentation/devicetree/bindings/auxdisplay/arm,versatile-lcd.yaml
1522 F:      Documentation/devicetree/bindings/clock/arm,syscon-icst.yaml
1523 F:      Documentation/devicetree/bindings/i2c/i2c-versatile.txt
1524 F:      Documentation/devicetree/bindings/interrupt-controller/arm,versatile-fpga-irq.txt
1525 F:      Documentation/devicetree/bindings/mtd/mtd-physmap.yaml
1526 F:      arch/arm/boot/dts/arm-realview-*
1527 F:      arch/arm/boot/dts/integrator*
1528 F:      arch/arm/boot/dts/versatile*
1529 F:      arch/arm/mach-integrator/
1530 F:      arch/arm/mach-realview/
1531 F:      arch/arm/mach-versatile/
1532 F:      arch/arm/plat-versatile/
1533 F:      drivers/bus/arm-integrator-lm.c
1534 F:      drivers/clk/versatile/
1535 F:      drivers/i2c/busses/i2c-versatile.c
1536 F:      drivers/irqchip/irq-versatile-fpga.c
1537 F:      drivers/mtd/maps/physmap-versatile.*
1538 F:      drivers/power/reset/arm-versatile-reboot.c
1539 F:      drivers/soc/versatile/
1540
1541 ARM KOMEDA DRM-KMS DRIVER
1542 M:      James (Qian) Wang <james.qian.wang@arm.com>
1543 M:      Liviu Dudau <liviu.dudau@arm.com>
1544 M:      Mihail Atanassov <mihail.atanassov@arm.com>
1545 L:      Mali DP Maintainers <malidp@foss.arm.com>
1546 S:      Supported
1547 T:      git git://anongit.freedesktop.org/drm/drm-misc
1548 F:      Documentation/devicetree/bindings/display/arm,komeda.txt
1549 F:      Documentation/gpu/komeda-kms.rst
1550 F:      drivers/gpu/drm/arm/display/include/
1551 F:      drivers/gpu/drm/arm/display/komeda/
1552
1553 ARM MALI PANFROST DRM DRIVER
1554 M:      Rob Herring <robh@kernel.org>
1555 M:      Tomeu Vizoso <tomeu.vizoso@collabora.com>
1556 R:      Steven Price <steven.price@arm.com>
1557 R:      Alyssa Rosenzweig <alyssa.rosenzweig@collabora.com>
1558 L:      dri-devel@lists.freedesktop.org
1559 S:      Supported
1560 T:      git git://anongit.freedesktop.org/drm/drm-misc
1561 F:      drivers/gpu/drm/panfrost/
1562 F:      include/uapi/drm/panfrost_drm.h
1563
1564 ARM MALI-DP DRM DRIVER
1565 M:      Liviu Dudau <liviu.dudau@arm.com>
1566 M:      Brian Starkey <brian.starkey@arm.com>
1567 L:      Mali DP Maintainers <malidp@foss.arm.com>
1568 S:      Supported
1569 T:      git git://anongit.freedesktop.org/drm/drm-misc
1570 F:      Documentation/devicetree/bindings/display/arm,malidp.txt
1571 F:      Documentation/gpu/afbc.rst
1572 F:      drivers/gpu/drm/arm/
1573
1574 ARM MFM AND FLOPPY DRIVERS
1575 M:      Ian Molton <spyro@f2s.com>
1576 S:      Maintained
1577 F:      arch/arm/include/asm/floppy.h
1578 F:      arch/arm/mach-rpc/floppydma.S
1579
1580 ARM PMU PROFILING AND DEBUGGING
1581 M:      Will Deacon <will@kernel.org>
1582 M:      Mark Rutland <mark.rutland@arm.com>
1583 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1584 S:      Maintained
1585 F:      Documentation/devicetree/bindings/arm/pmu.yaml
1586 F:      Documentation/devicetree/bindings/perf/
1587 F:      arch/arm*/include/asm/hw_breakpoint.h
1588 F:      arch/arm*/include/asm/perf_event.h
1589 F:      arch/arm*/kernel/hw_breakpoint.c
1590 F:      arch/arm*/kernel/perf_*
1591 F:      drivers/perf/
1592 F:      include/linux/perf/arm_pmu.h
1593
1594 ARM PORT
1595 M:      Russell King <linux@armlinux.org.uk>
1596 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1597 S:      Odd Fixes
1598 W:      http://www.armlinux.org.uk/
1599 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git
1600 F:      arch/arm/
1601 X:      arch/arm/boot/dts/
1602
1603 ARM PRIMECELL AACI PL041 DRIVER
1604 M:      Russell King <linux@armlinux.org.uk>
1605 S:      Odd Fixes
1606 F:      sound/arm/aaci.*
1607
1608 ARM PRIMECELL BUS SUPPORT
1609 M:      Russell King <linux@armlinux.org.uk>
1610 S:      Odd Fixes
1611 F:      drivers/amba/
1612 F:      include/linux/amba/bus.h
1613
1614 ARM PRIMECELL PL35X NAND CONTROLLER DRIVER
1615 M:      Miquel Raynal <miquel.raynal@bootlin.com>
1616 M:      Naga Sureshkumar Relli <nagasure@xilinx.com>
1617 L:      linux-mtd@lists.infradead.org
1618 S:      Maintained
1619 F:      Documentation/devicetree/bindings/mtd/arm,pl353-nand-r2p1.yaml
1620 F:      drivers/mtd/nand/raw/pl35x-nand-controller.c
1621
1622 ARM PRIMECELL PL35X SMC DRIVER
1623 M:      Miquel Raynal <miquel.raynal@bootlin.com>
1624 M:      Naga Sureshkumar Relli <nagasure@xilinx.com>
1625 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1626 S:      Maintained
1627 F:      Documentation/devicetree/bindings/memory-controllers/arm,pl353-smc.yaml
1628 F:      drivers/memory/pl353-smc.c
1629
1630 ARM PRIMECELL CLCD PL110 DRIVER
1631 M:      Russell King <linux@armlinux.org.uk>
1632 S:      Odd Fixes
1633 F:      drivers/video/fbdev/amba-clcd.*
1634
1635 ARM PRIMECELL KMI PL050 DRIVER
1636 M:      Russell King <linux@armlinux.org.uk>
1637 S:      Odd Fixes
1638 F:      drivers/input/serio/ambakmi.*
1639 F:      include/linux/amba/kmi.h
1640
1641 ARM PRIMECELL MMCI PL180/1 DRIVER
1642 M:      Russell King <linux@armlinux.org.uk>
1643 S:      Odd Fixes
1644 F:      drivers/mmc/host/mmci.*
1645 F:      include/linux/amba/mmci.h
1646
1647 ARM PRIMECELL SSP PL022 SPI DRIVER
1648 M:      Linus Walleij <linus.walleij@linaro.org>
1649 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1650 S:      Maintained
1651 F:      Documentation/devicetree/bindings/spi/spi-pl022.yaml
1652 F:      drivers/spi/spi-pl022.c
1653
1654 ARM PRIMECELL UART PL010 AND PL011 DRIVERS
1655 M:      Russell King <linux@armlinux.org.uk>
1656 S:      Odd Fixes
1657 F:      drivers/tty/serial/amba-pl01*.c
1658 F:      include/linux/amba/serial.h
1659
1660 ARM PRIMECELL VIC PL190/PL192 DRIVER
1661 M:      Linus Walleij <linus.walleij@linaro.org>
1662 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1663 S:      Maintained
1664 F:      Documentation/devicetree/bindings/interrupt-controller/arm,vic.yaml
1665 F:      drivers/irqchip/irq-vic.c
1666
1667 ARM SMC WATCHDOG DRIVER
1668 M:      Julius Werner <jwerner@chromium.org>
1669 R:      Evan Benn <evanbenn@chromium.org>
1670 S:      Maintained
1671 F:      Documentation/devicetree/bindings/watchdog/arm-smc-wdt.yaml
1672 F:      drivers/watchdog/arm_smc_wdt.c
1673
1674 ARM SMMU DRIVERS
1675 M:      Will Deacon <will@kernel.org>
1676 R:      Robin Murphy <robin.murphy@arm.com>
1677 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1678 S:      Maintained
1679 F:      Documentation/devicetree/bindings/iommu/arm,smmu*
1680 F:      drivers/iommu/arm/
1681 F:      drivers/iommu/io-pgtable-arm*
1682
1683 ARM AND ARM64 SoC SUB-ARCHITECTURES (COMMON PARTS)
1684 M:      Arnd Bergmann <arnd@arndb.de>
1685 M:      Olof Johansson <olof@lixom.net>
1686 M:      soc@kernel.org
1687 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1688 S:      Maintained
1689 C:      irc://irc.libera.chat/armlinux
1690 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/soc/soc.git
1691 F:      arch/arm/boot/dts/Makefile
1692 F:      arch/arm64/boot/dts/Makefile
1693
1694 ARM SUB-ARCHITECTURES
1695 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1696 S:      Maintained
1697 C:      irc://irc.libera.chat/armlinux
1698 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/soc/soc.git
1699 F:      arch/arm/mach-*/
1700 F:      arch/arm/plat-*/
1701
1702 ARM/ACTIONS SEMI ARCHITECTURE
1703 M:      Andreas Färber <afaerber@suse.de>
1704 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
1705 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1706 L:      linux-actions@lists.infradead.org (moderated for non-subscribers)
1707 S:      Maintained
1708 F:      Documentation/devicetree/bindings/arm/actions.yaml
1709 F:      Documentation/devicetree/bindings/clock/actions,owl-cmu.txt
1710 F:      Documentation/devicetree/bindings/dma/owl-dma.yaml
1711 F:      Documentation/devicetree/bindings/i2c/i2c-owl.yaml
1712 F:      Documentation/devicetree/bindings/interrupt-controller/actions,owl-sirq.yaml
1713 F:      Documentation/devicetree/bindings/mmc/owl-mmc.yaml
1714 F:      Documentation/devicetree/bindings/net/actions,owl-emac.yaml
1715 F:      Documentation/devicetree/bindings/pinctrl/actions,*
1716 F:      Documentation/devicetree/bindings/power/actions,owl-sps.txt
1717 F:      Documentation/devicetree/bindings/timer/actions,owl-timer.txt
1718 F:      arch/arm/boot/dts/owl-*
1719 F:      arch/arm/mach-actions/
1720 F:      arch/arm64/boot/dts/actions/
1721 F:      drivers/clk/actions/
1722 F:      drivers/clocksource/timer-owl*
1723 F:      drivers/dma/owl-dma.c
1724 F:      drivers/i2c/busses/i2c-owl.c
1725 F:      drivers/irqchip/irq-owl-sirq.c
1726 F:      drivers/mmc/host/owl-mmc.c
1727 F:      drivers/net/ethernet/actions/
1728 F:      drivers/pinctrl/actions/*
1729 F:      drivers/soc/actions/
1730 F:      include/dt-bindings/power/owl-*
1731 F:      include/dt-bindings/reset/actions,*
1732 F:      include/linux/soc/actions/
1733 N:      owl
1734
1735 ARM/ADS SPHERE MACHINE SUPPORT
1736 M:      Lennert Buytenhek <kernel@wantstofly.org>
1737 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1738 S:      Maintained
1739
1740 ARM/AFEB9260 MACHINE SUPPORT
1741 M:      Sergey Lapin <slapin@ossfans.org>
1742 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1743 S:      Maintained
1744
1745 ARM/AJECO 1ARM MACHINE SUPPORT
1746 M:      Lennert Buytenhek <kernel@wantstofly.org>
1747 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1748 S:      Maintained
1749
1750 ARM/Allwinner SoC Clock Support
1751 M:      Emilio López <emilio@elopez.com.ar>
1752 S:      Maintained
1753 F:      drivers/clk/sunxi/
1754
1755 ARM/Allwinner sunXi SoC support
1756 M:      Chen-Yu Tsai <wens@csie.org>
1757 M:      Jernej Skrabec <jernej.skrabec@gmail.com>
1758 M:      Samuel Holland <samuel@sholland.org>
1759 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1760 S:      Maintained
1761 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sunxi/linux.git
1762 L:      linux-sunxi@lists.linux.dev
1763 F:      arch/arm/mach-sunxi/
1764 F:      arch/arm64/boot/dts/allwinner/
1765 F:      drivers/clk/sunxi-ng/
1766 F:      drivers/pinctrl/sunxi/
1767 F:      drivers/soc/sunxi/
1768 N:      allwinner
1769 N:      sun[x456789]i
1770 N:      sun50i
1771
1772 ARM/Amlogic Meson SoC CLOCK FRAMEWORK
1773 M:      Neil Armstrong <narmstrong@baylibre.com>
1774 M:      Jerome Brunet <jbrunet@baylibre.com>
1775 L:      linux-amlogic@lists.infradead.org
1776 S:      Maintained
1777 F:      Documentation/devicetree/bindings/clock/amlogic*
1778 F:      drivers/clk/meson/
1779 F:      include/dt-bindings/clock/gxbb*
1780 F:      include/dt-bindings/clock/meson*
1781
1782 ARM/Amlogic Meson SoC Crypto Drivers
1783 M:      Corentin Labbe <clabbe@baylibre.com>
1784 L:      linux-crypto@vger.kernel.org
1785 L:      linux-amlogic@lists.infradead.org
1786 S:      Maintained
1787 F:      Documentation/devicetree/bindings/crypto/amlogic*
1788 F:      drivers/crypto/amlogic/
1789
1790 ARM/Amlogic Meson SoC Sound Drivers
1791 M:      Jerome Brunet <jbrunet@baylibre.com>
1792 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1793 S:      Maintained
1794 F:      Documentation/devicetree/bindings/sound/amlogic*
1795 F:      sound/soc/meson/
1796
1797 ARM/Amlogic Meson SoC support
1798 M:      Neil Armstrong <narmstrong@baylibre.com>
1799 M:      Kevin Hilman <khilman@baylibre.com>
1800 R:      Jerome Brunet <jbrunet@baylibre.com>
1801 R:      Martin Blumenstingl <martin.blumenstingl@googlemail.com>
1802 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1803 L:      linux-amlogic@lists.infradead.org
1804 S:      Maintained
1805 W:      http://linux-meson.com/
1806 F:      arch/arm/boot/dts/meson*
1807 F:      arch/arm/mach-meson/
1808 F:      arch/arm64/boot/dts/amlogic/
1809 F:      drivers/mmc/host/meson*
1810 F:      drivers/pinctrl/meson/
1811 F:      drivers/rtc/rtc-meson*
1812 F:      drivers/soc/amlogic/
1813 N:      meson
1814
1815 ARM/Annapurna Labs ALPINE ARCHITECTURE
1816 M:      Tsahee Zidenberg <tsahee@annapurnalabs.com>
1817 M:      Antoine Tenart <atenart@kernel.org>
1818 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1819 S:      Maintained
1820 F:      arch/arm/boot/dts/alpine*
1821 F:      arch/arm/mach-alpine/
1822 F:      arch/arm64/boot/dts/amazon/
1823 F:      drivers/*/*alpine*
1824
1825 ARM/APPLE MACHINE SUPPORT
1826 M:      Hector Martin <marcan@marcan.st>
1827 M:      Sven Peter <sven@svenpeter.dev>
1828 R:      Alyssa Rosenzweig <alyssa@rosenzweig.io>
1829 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1830 S:      Maintained
1831 W:      https://asahilinux.org
1832 B:      https://github.com/AsahiLinux/linux/issues
1833 C:      irc://irc.oftc.net/asahi-dev
1834 T:      git https://github.com/AsahiLinux/linux.git
1835 F:      Documentation/devicetree/bindings/arm/apple.yaml
1836 F:      Documentation/devicetree/bindings/arm/apple/*
1837 F:      Documentation/devicetree/bindings/clock/apple,nco.yaml
1838 F:      Documentation/devicetree/bindings/i2c/apple,i2c.yaml
1839 F:      Documentation/devicetree/bindings/interrupt-controller/apple,*
1840 F:      Documentation/devicetree/bindings/mailbox/apple,mailbox.yaml
1841 F:      Documentation/devicetree/bindings/pci/apple,pcie.yaml
1842 F:      Documentation/devicetree/bindings/pinctrl/apple,pinctrl.yaml
1843 F:      Documentation/devicetree/bindings/power/apple*
1844 F:      Documentation/devicetree/bindings/watchdog/apple,wdt.yaml
1845 F:      arch/arm64/boot/dts/apple/
1846 F:      drivers/clk/clk-apple-nco.c
1847 F:      drivers/i2c/busses/i2c-pasemi-core.c
1848 F:      drivers/i2c/busses/i2c-pasemi-platform.c
1849 F:      drivers/irqchip/irq-apple-aic.c
1850 F:      drivers/mailbox/apple-mailbox.c
1851 F:      drivers/pinctrl/pinctrl-apple-gpio.c
1852 F:      drivers/soc/apple/*
1853 F:      drivers/watchdog/apple_wdt.c
1854 F:      include/dt-bindings/interrupt-controller/apple-aic.h
1855 F:      include/dt-bindings/pinctrl/apple.h
1856 F:      include/linux/apple-mailbox.h
1857
1858 ARM/ARTPEC MACHINE SUPPORT
1859 M:      Jesper Nilsson <jesper.nilsson@axis.com>
1860 M:      Lars Persson <lars.persson@axis.com>
1861 L:      linux-arm-kernel@axis.com
1862 S:      Maintained
1863 F:      Documentation/devicetree/bindings/pinctrl/axis,artpec6-pinctrl.txt
1864 F:      arch/arm/boot/dts/artpec6*
1865 F:      arch/arm/mach-artpec
1866 F:      drivers/clk/axis
1867 F:      drivers/crypto/axis
1868 F:      drivers/mmc/host/usdhi6rol0.c
1869 F:      drivers/pinctrl/pinctrl-artpec*
1870
1871 ARM/ASPEED I2C DRIVER
1872 M:      Brendan Higgins <brendanhiggins@google.com>
1873 R:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
1874 R:      Joel Stanley <joel@jms.id.au>
1875 L:      linux-i2c@vger.kernel.org
1876 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
1877 S:      Maintained
1878 F:      Documentation/devicetree/bindings/i2c/aspeed,i2c.yaml
1879 F:      Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2400-i2c-ic.txt
1880 F:      drivers/i2c/busses/i2c-aspeed.c
1881 F:      drivers/irqchip/irq-aspeed-i2c-ic.c
1882
1883 ARM/ASPEED MACHINE SUPPORT
1884 M:      Joel Stanley <joel@jms.id.au>
1885 R:      Andrew Jeffery <andrew@aj.id.au>
1886 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1887 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
1888 S:      Supported
1889 Q:      https://patchwork.ozlabs.org/project/linux-aspeed/list/
1890 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joel/aspeed.git
1891 F:      arch/arm/boot/dts/aspeed-*
1892 F:      arch/arm/mach-aspeed/
1893 N:      aspeed
1894
1895 ARM/BITMAIN ARCHITECTURE
1896 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
1897 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1898 S:      Maintained
1899 F:      Documentation/devicetree/bindings/arm/bitmain.yaml
1900 F:      Documentation/devicetree/bindings/clock/bitmain,bm1880-clk.yaml
1901 F:      Documentation/devicetree/bindings/pinctrl/bitmain,bm1880-pinctrl.txt
1902 F:      arch/arm64/boot/dts/bitmain/
1903 F:      drivers/clk/clk-bm1880.c
1904 F:      drivers/pinctrl/pinctrl-bm1880.c
1905
1906 ARM/CALXEDA HIGHBANK ARCHITECTURE
1907 M:      Andre Przywara <andre.przywara@arm.com>
1908 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1909 S:      Maintained
1910 F:      arch/arm/boot/dts/ecx-*.dts*
1911 F:      arch/arm/boot/dts/highbank.dts
1912 F:      arch/arm/mach-highbank/
1913
1914 ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
1915 M:      Krzysztof Halasa <khalasa@piap.pl>
1916 S:      Maintained
1917 F:      arch/arm/mach-cns3xxx/
1918
1919 ARM/CAVIUM THUNDER NETWORK DRIVER
1920 M:      Sunil Goutham <sgoutham@marvell.com>
1921 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1922 S:      Supported
1923 F:      drivers/net/ethernet/cavium/thunder/
1924
1925 ARM/CIRRUS LOGIC BK3 MACHINE SUPPORT
1926 M:      Lukasz Majewski <lukma@denx.de>
1927 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1928 S:      Maintained
1929 F:      arch/arm/mach-ep93xx/ts72xx.c
1930
1931 ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
1932 M:      Alexander Shiyan <shc_work@mail.ru>
1933 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1934 S:      Odd Fixes
1935 N:      clps711x
1936
1937 ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
1938 M:      Lennert Buytenhek <kernel@wantstofly.org>
1939 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1940 S:      Maintained
1941
1942 ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
1943 M:      Hartley Sweeten <hsweeten@visionengravers.com>
1944 M:      Alexander Sverdlin <alexander.sverdlin@gmail.com>
1945 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1946 S:      Maintained
1947 F:      arch/arm/mach-ep93xx/
1948 F:      arch/arm/mach-ep93xx/include/mach/
1949
1950 ARM/CLKDEV SUPPORT
1951 M:      Russell King <linux@armlinux.org.uk>
1952 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1953 S:      Maintained
1954 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git clkdev
1955 F:      drivers/clk/clkdev.c
1956
1957 ARM/CONEXANT DIGICOLOR MACHINE SUPPORT
1958 M:      Baruch Siach <baruch@tkos.co.il>
1959 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1960 S:      Maintained
1961 F:      arch/arm/boot/dts/cx92755*
1962 N:      digicolor
1963
1964 ARM/CONTEC MICRO9 MACHINE SUPPORT
1965 M:      Hubert Feurstein <hubert.feurstein@contec.at>
1966 S:      Maintained
1967 F:      arch/arm/mach-ep93xx/micro9.c
1968
1969 ARM/CORESIGHT FRAMEWORK AND DRIVERS
1970 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
1971 M:      Suzuki K Poulose <suzuki.poulose@arm.com>
1972 R:      Mike Leach <mike.leach@linaro.org>
1973 R:      Leo Yan <leo.yan@linaro.org>
1974 L:      coresight@lists.linaro.org (moderated for non-subscribers)
1975 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1976 S:      Maintained
1977 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/coresight/linux.git
1978 F:      Documentation/ABI/testing/sysfs-bus-coresight-devices-*
1979 F:      Documentation/devicetree/bindings/arm/coresight-cpu-debug.txt
1980 F:      Documentation/devicetree/bindings/arm/coresight-cti.yaml
1981 F:      Documentation/devicetree/bindings/arm/coresight.txt
1982 F:      Documentation/devicetree/bindings/arm/ete.yaml
1983 F:      Documentation/devicetree/bindings/arm/trbe.yaml
1984 F:      Documentation/trace/coresight/*
1985 F:      drivers/hwtracing/coresight/*
1986 F:      include/dt-bindings/arm/coresight-cti-dt.h
1987 F:      include/linux/coresight*
1988 F:      samples/coresight/*
1989 F:      tools/perf/arch/arm/util/auxtrace.c
1990 F:      tools/perf/arch/arm/util/cs-etm.c
1991 F:      tools/perf/arch/arm/util/cs-etm.h
1992 F:      tools/perf/arch/arm/util/pmu.c
1993 F:      tools/perf/util/cs-etm-decoder/*
1994 F:      tools/perf/util/cs-etm.*
1995
1996 ARM/CORGI MACHINE SUPPORT
1997 M:      Richard Purdie <rpurdie@rpsys.net>
1998 S:      Maintained
1999
2000 ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
2001 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
2002 M:      Linus Walleij <linus.walleij@linaro.org>
2003 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2004 S:      Maintained
2005 T:      git git://github.com/ulli-kroll/linux.git
2006 F:      Documentation/devicetree/bindings/arm/gemini.yaml
2007 F:      Documentation/devicetree/bindings/net/cortina,gemini-ethernet.txt
2008 F:      Documentation/devicetree/bindings/pinctrl/cortina,gemini-pinctrl.txt
2009 F:      Documentation/devicetree/bindings/rtc/faraday,ftrtc010.yaml
2010 F:      arch/arm/boot/dts/gemini*
2011 F:      arch/arm/mach-gemini/
2012 F:      drivers/crypto/gemini/
2013 F:      drivers/net/ethernet/cortina/
2014 F:      drivers/pinctrl/pinctrl-gemini.c
2015 F:      drivers/rtc/rtc-ftrtc010.c
2016
2017 ARM/CZ.NIC TURRIS SUPPORT
2018 M:      Marek Behún <kabel@kernel.org>
2019 S:      Maintained
2020 W:      https://www.turris.cz/
2021 F:      Documentation/ABI/testing/debugfs-moxtet
2022 F:      Documentation/ABI/testing/sysfs-bus-moxtet-devices
2023 F:      Documentation/ABI/testing/sysfs-firmware-turris-mox-rwtm
2024 F:      Documentation/devicetree/bindings/bus/moxtet.txt
2025 F:      Documentation/devicetree/bindings/firmware/cznic,turris-mox-rwtm.txt
2026 F:      Documentation/devicetree/bindings/gpio/gpio-moxtet.txt
2027 F:      Documentation/devicetree/bindings/leds/cznic,turris-omnia-leds.yaml
2028 F:      Documentation/devicetree/bindings/watchdog/armada-37xx-wdt.txt
2029 F:      drivers/bus/moxtet.c
2030 F:      drivers/firmware/turris-mox-rwtm.c
2031 F:      drivers/leds/leds-turris-omnia.c
2032 F:      drivers/mailbox/armada-37xx-rwtm-mailbox.c
2033 F:      drivers/gpio/gpio-moxtet.c
2034 F:      drivers/watchdog/armada_37xx_wdt.c
2035 F:      include/dt-bindings/bus/moxtet.h
2036 F:      include/linux/armada-37xx-rwtm-mailbox.h
2037 F:      include/linux/moxtet.h
2038
2039 ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
2040 M:      Robert Jarzmik <robert.jarzmik@free.fr>
2041 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2042 S:      Maintained
2043 F:      arch/arm/mach-pxa/ezx.c
2044
2045 ARM/FARADAY FA526 PORT
2046 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
2047 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2048 S:      Maintained
2049 T:      git git://git.berlios.de/gemini-board
2050 F:      arch/arm/mm/*-fa*
2051
2052 ARM/FOOTBRIDGE ARCHITECTURE
2053 M:      Russell King <linux@armlinux.org.uk>
2054 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2055 S:      Maintained
2056 W:      http://www.armlinux.org.uk/
2057 F:      arch/arm/include/asm/hardware/dec21285.h
2058 F:      arch/arm/mach-footbridge/
2059
2060 ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
2061 M:      Shawn Guo <shawnguo@kernel.org>
2062 M:      Sascha Hauer <s.hauer@pengutronix.de>
2063 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
2064 R:      Fabio Estevam <festevam@gmail.com>
2065 R:      NXP Linux Team <linux-imx@nxp.com>
2066 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2067 S:      Maintained
2068 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
2069 X:      drivers/media/i2c/
2070 N:      imx
2071 N:      mxs
2072
2073 ARM/FREESCALE LAYERSCAPE ARM ARCHITECTURE
2074 M:      Shawn Guo <shawnguo@kernel.org>
2075 M:      Li Yang <leoyang.li@nxp.com>
2076 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2077 S:      Maintained
2078 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
2079 F:      arch/arm/boot/dts/ls1021a*
2080 F:      arch/arm64/boot/dts/freescale/fsl-*
2081 F:      arch/arm64/boot/dts/freescale/qoriq-*
2082
2083 ARM/FREESCALE VYBRID ARM ARCHITECTURE
2084 M:      Shawn Guo <shawnguo@kernel.org>
2085 M:      Sascha Hauer <s.hauer@pengutronix.de>
2086 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
2087 R:      Stefan Agner <stefan@agner.ch>
2088 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2089 S:      Maintained
2090 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
2091 F:      arch/arm/boot/dts/vf*
2092 F:      arch/arm/mach-imx/*vf610*
2093
2094 ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
2095 M:      Lennert Buytenhek <kernel@wantstofly.org>
2096 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2097 S:      Maintained
2098
2099 ARM/GUMSTIX MACHINE SUPPORT
2100 M:      Steve Sakoman <sakoman@gmail.com>
2101 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2102 S:      Maintained
2103
2104 ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
2105 M:      Philipp Zabel <philipp.zabel@gmail.com>
2106 M:      Paul Parsons <lost.distance@yahoo.com>
2107 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2108 S:      Maintained
2109 F:      arch/arm/mach-pxa/hx4700.c
2110 F:      arch/arm/mach-pxa/include/mach/hx4700.h
2111 F:      sound/soc/pxa/hx4700.c
2112
2113 ARM/HISILICON SOC SUPPORT
2114 M:      Wei Xu <xuwei5@hisilicon.com>
2115 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2116 S:      Supported
2117 W:      http://www.hisilicon.com
2118 T:      git git://github.com/hisilicon/linux-hisi.git
2119 F:      arch/arm/boot/dts/hi3*
2120 F:      arch/arm/boot/dts/hip*
2121 F:      arch/arm/boot/dts/hisi*
2122 F:      arch/arm/mach-hisi/
2123 F:      arch/arm64/boot/dts/hisilicon/
2124
2125 ARM/HP JORNADA 7XX MACHINE SUPPORT
2126 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
2127 S:      Maintained
2128 W:      www.jlime.com
2129 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
2130 F:      arch/arm/mach-sa1100/include/mach/jornada720.h
2131 F:      arch/arm/mach-sa1100/jornada720.c
2132
2133 ARM/IGEP MACHINE SUPPORT
2134 M:      Enric Balletbo i Serra <eballetbo@gmail.com>
2135 M:      Javier Martinez Canillas <javier@dowhile0.org>
2136 L:      linux-omap@vger.kernel.org
2137 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2138 S:      Maintained
2139 F:      arch/arm/boot/dts/omap3-igep*
2140
2141 ARM/INCOME PXA270 SUPPORT
2142 M:      Marek Vasut <marek.vasut@gmail.com>
2143 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2144 S:      Maintained
2145 F:      arch/arm/mach-pxa/colibri-pxa270-income.c
2146
2147 ARM/INTEL IOP32X ARM ARCHITECTURE
2148 M:      Lennert Buytenhek <kernel@wantstofly.org>
2149 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2150 S:      Maintained
2151
2152 ARM/INTEL IQ81342EX MACHINE SUPPORT
2153 M:      Lennert Buytenhek <kernel@wantstofly.org>
2154 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2155 S:      Maintained
2156
2157 ARM/INTEL IXDP2850 MACHINE SUPPORT
2158 M:      Lennert Buytenhek <kernel@wantstofly.org>
2159 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2160 S:      Maintained
2161
2162 ARM/INTEL IXP4XX ARM ARCHITECTURE
2163 M:      Linus Walleij <linusw@kernel.org>
2164 M:      Imre Kaloz <kaloz@openwrt.org>
2165 M:      Krzysztof Halasa <khalasa@piap.pl>
2166 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2167 S:      Maintained
2168 F:      Documentation/devicetree/bindings/arm/intel-ixp4xx.yaml
2169 F:      Documentation/devicetree/bindings/bus/intel,ixp4xx-expansion-bus-controller.yaml
2170 F:      Documentation/devicetree/bindings/gpio/intel,ixp4xx-gpio.txt
2171 F:      Documentation/devicetree/bindings/interrupt-controller/intel,ixp4xx-interrupt.yaml
2172 F:      Documentation/devicetree/bindings/timer/intel,ixp4xx-timer.yaml
2173 F:      arch/arm/mach-ixp4xx/
2174 F:      drivers/bus/intel-ixp4xx-eb.c
2175 F:      drivers/clocksource/timer-ixp4xx.c
2176 F:      drivers/crypto/ixp4xx_crypto.c
2177 F:      drivers/gpio/gpio-ixp4xx.c
2178 F:      drivers/irqchip/irq-ixp4xx.c
2179 F:      include/linux/irqchip/irq-ixp4xx.h
2180 F:      include/linux/platform_data/timer-ixp4xx.h
2181
2182 ARM/INTEL KEEMBAY ARCHITECTURE
2183 M:      Paul J. Murphy <paul.j.murphy@intel.com>
2184 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
2185 S:      Maintained
2186 F:      Documentation/devicetree/bindings/arm/intel,keembay.yaml
2187 F:      arch/arm64/boot/dts/intel/keembay-evm.dts
2188 F:      arch/arm64/boot/dts/intel/keembay-soc.dtsi
2189
2190 ARM/INTEL XSC3 (MANZANO) ARM CORE
2191 M:      Lennert Buytenhek <kernel@wantstofly.org>
2192 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2193 S:      Maintained
2194
2195 ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
2196 M:      Lennert Buytenhek <kernel@wantstofly.org>
2197 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2198 S:      Maintained
2199
2200 ARM/LG1K ARCHITECTURE
2201 M:      Chanho Min <chanho.min@lge.com>
2202 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2203 S:      Maintained
2204 F:      arch/arm64/boot/dts/lg/
2205
2206 ARM/LOGICPD PXA270 MACHINE SUPPORT
2207 M:      Lennert Buytenhek <kernel@wantstofly.org>
2208 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2209 S:      Maintained
2210
2211 ARM/LPC18XX ARCHITECTURE
2212 M:      Vladimir Zapolskiy <vz@mleia.com>
2213 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2214 S:      Maintained
2215 F:      Documentation/devicetree/bindings/i2c/i2c-lpc2k.txt
2216 F:      arch/arm/boot/dts/lpc43*
2217 F:      drivers/i2c/busses/i2c-lpc2k.c
2218 F:      drivers/memory/pl172.c
2219 F:      drivers/mtd/spi-nor/controllers/nxp-spifi.c
2220 F:      drivers/rtc/rtc-lpc24xx.c
2221 N:      lpc18xx
2222
2223 ARM/LPC32XX SOC SUPPORT
2224 M:      Vladimir Zapolskiy <vz@mleia.com>
2225 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2226 S:      Maintained
2227 T:      git git://github.com/vzapolskiy/linux-lpc32xx.git
2228 F:      Documentation/devicetree/bindings/i2c/i2c-pnx.txt
2229 F:      arch/arm/boot/dts/lpc32*
2230 F:      arch/arm/mach-lpc32xx/
2231 F:      drivers/i2c/busses/i2c-pnx.c
2232 F:      drivers/net/ethernet/nxp/lpc_eth.c
2233 F:      drivers/usb/host/ohci-nxp.c
2234 F:      drivers/watchdog/pnx4008_wdt.c
2235 N:      lpc32xx
2236
2237 ARM/MAGICIAN MACHINE SUPPORT
2238 M:      Philipp Zabel <philipp.zabel@gmail.com>
2239 S:      Maintained
2240
2241 ARM/Marvell Dove/MV78xx0/Orion SOC support
2242 M:      Andrew Lunn <andrew@lunn.ch>
2243 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2244 M:      Gregory Clement <gregory.clement@bootlin.com>
2245 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2246 S:      Maintained
2247 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gclement/mvebu.git
2248 F:      Documentation/devicetree/bindings/soc/dove/
2249 F:      arch/arm/boot/dts/dove*
2250 F:      arch/arm/boot/dts/orion5x*
2251 F:      arch/arm/mach-dove/
2252 F:      arch/arm/mach-mv78xx0/
2253 F:      arch/arm/mach-orion5x/
2254 F:      arch/arm/plat-orion/
2255 F:      drivers/soc/dove/
2256
2257 ARM/Marvell Kirkwood and Armada 370, 375, 38x, 39x, XP, 3700, 7K/8K, CN9130 SOC support
2258 M:      Andrew Lunn <andrew@lunn.ch>
2259 M:      Gregory Clement <gregory.clement@bootlin.com>
2260 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2261 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2262 S:      Maintained
2263 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gclement/mvebu.git
2264 F:      arch/arm/boot/dts/armada*
2265 F:      arch/arm/boot/dts/kirkwood*
2266 F:      arch/arm/configs/mvebu_*_defconfig
2267 F:      arch/arm/mach-mvebu/
2268 F:      arch/arm64/boot/dts/marvell/armada*
2269 F:      arch/arm64/boot/dts/marvell/cn913*
2270 F:      drivers/cpufreq/armada-37xx-cpufreq.c
2271 F:      drivers/cpufreq/armada-8k-cpufreq.c
2272 F:      drivers/cpufreq/mvebu-cpufreq.c
2273 F:      drivers/irqchip/irq-armada-370-xp.c
2274 F:      drivers/irqchip/irq-mvebu-*
2275 F:      drivers/pinctrl/mvebu/
2276 F:      drivers/rtc/rtc-armada38x.c
2277
2278 ARM/Mediatek RTC DRIVER
2279 M:      Eddie Huang <eddie.huang@mediatek.com>
2280 M:      Sean Wang <sean.wang@mediatek.com>
2281 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2282 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2283 S:      Maintained
2284 F:      Documentation/devicetree/bindings/rtc/rtc-mt2712.txt
2285 F:      Documentation/devicetree/bindings/rtc/rtc-mt7622.txt
2286 F:      drivers/rtc/rtc-mt2712.c
2287 F:      drivers/rtc/rtc-mt6397.c
2288 F:      drivers/rtc/rtc-mt7622.c
2289
2290 ARM/Mediatek SoC support
2291 M:      Matthias Brugger <matthias.bgg@gmail.com>
2292 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2293 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2294 S:      Maintained
2295 W:      https://mtk.wiki.kernel.org/
2296 C:      irc://chat.freenode.net/linux-mediatek
2297 F:      arch/arm/boot/dts/mt6*
2298 F:      arch/arm/boot/dts/mt7*
2299 F:      arch/arm/boot/dts/mt8*
2300 F:      arch/arm/mach-mediatek/
2301 F:      arch/arm64/boot/dts/mediatek/
2302 F:      drivers/soc/mediatek/
2303 N:      mtk
2304 N:      mt[678]
2305 K:      mediatek
2306
2307 ARM/Mediatek USB3 PHY DRIVER
2308 M:      Chunfeng Yun <chunfeng.yun@mediatek.com>
2309 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2310 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2311 S:      Maintained
2312 F:      Documentation/devicetree/bindings/phy/mediatek,*
2313 F:      drivers/phy/mediatek/
2314
2315 ARM/Microchip (AT91) SoC support
2316 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
2317 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
2318 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
2319 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2320 S:      Supported
2321 W:      http://www.linux4sam.org
2322 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/at91/linux.git
2323 F:      arch/arm/boot/dts/at91*.dts
2324 F:      arch/arm/boot/dts/at91*.dtsi
2325 F:      arch/arm/boot/dts/sama*.dts
2326 F:      arch/arm/boot/dts/sama*.dtsi
2327 F:      arch/arm/include/debug/at91.S
2328 F:      arch/arm/mach-at91/
2329 F:      drivers/memory/atmel*
2330 F:      drivers/watchdog/sama5d4_wdt.c
2331 F:      include/soc/at91/
2332 X:      drivers/input/touchscreen/atmel_mxt_ts.c
2333 X:      drivers/net/wireless/atmel/
2334 N:      at91
2335 N:      atmel
2336
2337 ARM/Microchip Sparx5 SoC support
2338 M:      Lars Povlsen <lars.povlsen@microchip.com>
2339 M:      Steen Hegelund <Steen.Hegelund@microchip.com>
2340 M:      UNGLinuxDriver@microchip.com
2341 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2342 S:      Supported
2343 T:      git git://github.com/microchip-ung/linux-upstream.git
2344 F:      arch/arm64/boot/dts/microchip/
2345 F:      drivers/pinctrl/pinctrl-microchip-sgpio.c
2346 N:      sparx5
2347
2348 Microchip Timer Counter Block (TCB) Capture Driver
2349 M:      Kamel Bouhara <kamel.bouhara@bootlin.com>
2350 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2351 L:      linux-iio@vger.kernel.org
2352 S:      Maintained
2353 F:      drivers/counter/microchip-tcb-capture.c
2354
2355 ARM/MILBEAUT ARCHITECTURE
2356 M:      Taichi Sugaya <sugaya.taichi@socionext.com>
2357 M:      Takao Orito <orito.takao@socionext.com>
2358 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2359 S:      Maintained
2360 F:      arch/arm/boot/dts/milbeaut*
2361 F:      arch/arm/mach-milbeaut/
2362 N:      milbeaut
2363
2364 ARM/MIOA701 MACHINE SUPPORT
2365 M:      Robert Jarzmik <robert.jarzmik@free.fr>
2366 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2367 S:      Maintained
2368 F:      arch/arm/mach-pxa/mioa701.c
2369
2370 ARM/MStar/Sigmastar Armv7 SoC support
2371 M:      Daniel Palmer <daniel@thingy.jp>
2372 M:      Romain Perier <romain.perier@gmail.com>
2373 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2374 S:      Maintained
2375 W:      http://linux-chenxing.org/
2376 T:      git git://github.com/linux-chenxing/linux.git
2377 F:      Documentation/devicetree/bindings/arm/mstar/*
2378 F:      Documentation/devicetree/bindings/clock/mstar,msc313-mpll.yaml
2379 F:      Documentation/devicetree/bindings/gpio/mstar,msc313-gpio.yaml
2380 F:      arch/arm/boot/dts/mstar-*
2381 F:      arch/arm/mach-mstar/
2382 F:      drivers/clk/mstar/
2383 F:      drivers/clocksource/timer-msc313e.c
2384 F:      drivers/gpio/gpio-msc313.c
2385 F:      drivers/rtc/rtc-msc313.c
2386 F:      drivers/watchdog/msc313e_wdt.c
2387 F:      include/dt-bindings/clock/mstar-*
2388 F:      include/dt-bindings/gpio/msc313-gpio.h
2389
2390 ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
2391 M:      Michael Petchkovsky <mkpetch@internode.on.net>
2392 S:      Maintained
2393
2394 ARM/NOMADIK/Ux500 ARCHITECTURES
2395 M:      Linus Walleij <linus.walleij@linaro.org>
2396 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2397 S:      Maintained
2398 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
2399 F:      Documentation/devicetree/bindings/arm/ste-*
2400 F:      Documentation/devicetree/bindings/arm/ux500.yaml
2401 F:      Documentation/devicetree/bindings/arm/ux500/
2402 F:      Documentation/devicetree/bindings/i2c/i2c-nomadik.txt
2403 F:      arch/arm/boot/dts/ste-*
2404 F:      arch/arm/mach-nomadik/
2405 F:      arch/arm/mach-ux500/
2406 F:      drivers/clk/clk-nomadik.c
2407 F:      drivers/clocksource/clksrc-dbx500-prcmu.c
2408 F:      drivers/dma/ste_dma40*
2409 F:      drivers/hwspinlock/u8500_hsem.c
2410 F:      drivers/i2c/busses/i2c-nomadik.c
2411 F:      drivers/iio/adc/ab8500-gpadc.c
2412 F:      drivers/mfd/ab8500*
2413 F:      drivers/mfd/abx500*
2414 F:      drivers/mfd/db8500*
2415 F:      drivers/pinctrl/nomadik/
2416 F:      drivers/rtc/rtc-ab8500.c
2417 F:      drivers/rtc/rtc-pl031.c
2418 F:      drivers/soc/ux500/
2419
2420 ARM/NUVOTON NPCM ARCHITECTURE
2421 M:      Avi Fishman <avifishman70@gmail.com>
2422 M:      Tomer Maimon <tmaimon77@gmail.com>
2423 M:      Tali Perry <tali.perry1@gmail.com>
2424 R:      Patrick Venture <venture@google.com>
2425 R:      Nancy Yuen <yuenn@google.com>
2426 R:      Benjamin Fair <benjaminfair@google.com>
2427 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2428 S:      Supported
2429 F:      Documentation/devicetree/bindings/*/*/*npcm*
2430 F:      Documentation/devicetree/bindings/*/*npcm*
2431 F:      Documentation/devicetree/bindings/arm/npcm/*
2432 F:      arch/arm/boot/dts/nuvoton-npcm*
2433 F:      arch/arm/mach-npcm/
2434 F:      drivers/*/*npcm*
2435 F:      drivers/*/*/*npcm*
2436 F:      include/dt-bindings/clock/nuvoton,npcm7xx-clock.h
2437
2438 ARM/NUVOTON WPCM450 ARCHITECTURE
2439 M:      Jonathan Neuschäfer <j.neuschaefer@gmx.net>
2440 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2441 S:      Maintained
2442 W:      https://github.com/neuschaefer/wpcm450/wiki
2443 F:      Documentation/devicetree/bindings/*/*wpcm*
2444 F:      arch/arm/boot/dts/nuvoton-wpcm450*
2445 F:      arch/arm/mach-npcm/wpcm450.c
2446 F:      drivers/*/*/*wpcm*
2447 F:      drivers/*/*wpcm*
2448
2449 ARM/NXP S32G ARCHITECTURE
2450 M:      Chester Lin <clin@suse.com>
2451 R:      Andreas Färber <afaerber@suse.de>
2452 R:      Matthias Brugger <mbrugger@suse.com>
2453 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2454 S:      Maintained
2455 F:      arch/arm64/boot/dts/freescale/s32g*.dts*
2456
2457 ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
2458 L:      openmoko-kernel@lists.openmoko.org (subscribers-only)
2459 S:      Orphan
2460 W:      http://wiki.openmoko.org/wiki/Neo_FreeRunner
2461 F:      arch/arm/mach-s3c/gta02.h
2462 F:      arch/arm/mach-s3c/mach-gta02.c
2463
2464 ARM/Orion SoC/Technologic Systems TS-78xx platform support
2465 M:      Alexander Clouter <alex@digriz.org.uk>
2466 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2467 S:      Maintained
2468 W:      http://www.digriz.org.uk/ts78xx/kernel
2469 F:      arch/arm/mach-orion5x/ts78xx-*
2470
2471 ARM/OXNAS platform support
2472 M:      Neil Armstrong <narmstrong@baylibre.com>
2473 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2474 L:      linux-oxnas@groups.io (moderated for non-subscribers)
2475 S:      Maintained
2476 F:      arch/arm/boot/dts/ox8*.dts*
2477 F:      arch/arm/mach-oxnas/
2478 F:      drivers/power/reset/oxnas-restart.c
2479 N:      oxnas
2480
2481 ARM/PALM TREO SUPPORT
2482 M:      Tomas Cech <sleep_walker@suse.com>
2483 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2484 S:      Maintained
2485 W:      http://hackndev.com
2486 F:      arch/arm/mach-pxa/palmtreo.*
2487
2488 ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
2489 M:      Marek Vasut <marek.vasut@gmail.com>
2490 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2491 S:      Maintained
2492 W:      http://hackndev.com
2493 F:      arch/arm/mach-pxa/include/mach/palmld.h
2494 F:      arch/arm/mach-pxa/include/mach/palmtc.h
2495 F:      arch/arm/mach-pxa/include/mach/palmtx.h
2496 F:      arch/arm/mach-pxa/palmld.c
2497 F:      arch/arm/mach-pxa/palmt5.*
2498 F:      arch/arm/mach-pxa/palmtc.c
2499 F:      arch/arm/mach-pxa/palmte2.*
2500 F:      arch/arm/mach-pxa/palmtx.c
2501
2502 ARM/PALMZ72 SUPPORT
2503 M:      Sergey Lapin <slapin@ossfans.org>
2504 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2505 S:      Maintained
2506 W:      http://hackndev.com
2507 F:      arch/arm/mach-pxa/palmz72.*
2508
2509 ARM/PLEB SUPPORT
2510 M:      Peter Chubb <pleb@gelato.unsw.edu.au>
2511 S:      Maintained
2512 W:      http://www.disy.cse.unsw.edu.au/Hardware/PLEB
2513
2514 ARM/PT DIGITAL BOARD PORT
2515 M:      Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
2516 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2517 S:      Maintained
2518 W:      http://www.armlinux.org.uk/
2519
2520 ARM/QUALCOMM SUPPORT
2521 M:      Andy Gross <agross@kernel.org>
2522 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
2523 L:      linux-arm-msm@vger.kernel.org
2524 S:      Maintained
2525 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/qcom/linux.git
2526 F:      Documentation/devicetree/bindings/*/qcom*
2527 F:      Documentation/devicetree/bindings/soc/qcom/
2528 F:      arch/arm/boot/dts/qcom-*.dts
2529 F:      arch/arm/boot/dts/qcom-*.dtsi
2530 F:      arch/arm/mach-qcom/
2531 F:      arch/arm64/boot/dts/qcom/
2532 F:      drivers/*/*/qcom*
2533 F:      drivers/*/*/qcom/
2534 F:      drivers/*/pm8???-*
2535 F:      drivers/*/qcom*
2536 F:      drivers/*/qcom/
2537 F:      drivers/bluetooth/btqcomsmd.c
2538 F:      drivers/clocksource/timer-qcom.c
2539 F:      drivers/cpuidle/cpuidle-qcom-spm.c
2540 F:      drivers/extcon/extcon-qcom*
2541 F:      drivers/i2c/busses/i2c-qcom-geni.c
2542 F:      drivers/i2c/busses/i2c-qup.c
2543 F:      drivers/iommu/msm*
2544 F:      drivers/mfd/ssbi.c
2545 F:      drivers/mmc/host/mmci_qcom*
2546 F:      drivers/mmc/host/sdhci-msm.c
2547 F:      drivers/pci/controller/dwc/pcie-qcom.c
2548 F:      drivers/phy/qualcomm/
2549 F:      drivers/power/*/msm*
2550 F:      drivers/reset/reset-qcom-*
2551 F:      drivers/scsi/ufs/ufs-qcom*
2552 F:      drivers/spi/spi-geni-qcom.c
2553 F:      drivers/spi/spi-qcom-qspi.c
2554 F:      drivers/spi/spi-qup.c
2555 F:      drivers/tty/serial/msm_serial.c
2556 F:      drivers/usb/dwc3/dwc3-qcom.c
2557 F:      include/dt-bindings/*/qcom*
2558 F:      include/linux/*/qcom*
2559 F:      include/linux/soc/qcom/
2560
2561 ARM/RADISYS ENP2611 MACHINE SUPPORT
2562 M:      Lennert Buytenhek <kernel@wantstofly.org>
2563 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2564 S:      Maintained
2565
2566 ARM/RDA MICRO ARCHITECTURE
2567 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
2568 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2569 L:      linux-unisoc@lists.infradead.org (moderated for non-subscribers)
2570 S:      Maintained
2571 F:      Documentation/devicetree/bindings/arm/rda.yaml
2572 F:      Documentation/devicetree/bindings/gpio/gpio-rda.yaml
2573 F:      Documentation/devicetree/bindings/interrupt-controller/rda,8810pl-intc.txt
2574 F:      Documentation/devicetree/bindings/serial/rda,8810pl-uart.yaml
2575 F:      Documentation/devicetree/bindings/timer/rda,8810pl-timer.yaml
2576 F:      arch/arm/boot/dts/rda8810pl-*
2577 F:      drivers/clocksource/timer-rda.c
2578 F:      drivers/gpio/gpio-rda.c
2579 F:      drivers/irqchip/irq-rda-intc.c
2580 F:      drivers/tty/serial/rda-uart.c
2581
2582 ARM/REALTEK ARCHITECTURE
2583 M:      Andreas Färber <afaerber@suse.de>
2584 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2585 L:      linux-realtek-soc@lists.infradead.org (moderated for non-subscribers)
2586 S:      Maintained
2587 F:      Documentation/devicetree/bindings/arm/realtek.yaml
2588 F:      arch/arm/boot/dts/rtd*
2589 F:      arch/arm/mach-realtek/
2590 F:      arch/arm64/boot/dts/realtek/
2591
2592 ARM/RENESAS ARM64 ARCHITECTURE
2593 M:      Geert Uytterhoeven <geert+renesas@glider.be>
2594 M:      Magnus Damm <magnus.damm@gmail.com>
2595 L:      linux-renesas-soc@vger.kernel.org
2596 S:      Supported
2597 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
2598 C:      irc://irc.libera.chat/renesas-soc
2599 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git next
2600 F:      Documentation/devicetree/bindings/arm/renesas.yaml
2601 F:      arch/arm64/boot/dts/renesas/
2602 F:      drivers/soc/renesas/
2603 F:      include/linux/soc/renesas/
2604
2605 ARM/RISCPC ARCHITECTURE
2606 M:      Russell King <linux@armlinux.org.uk>
2607 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2608 S:      Maintained
2609 W:      http://www.armlinux.org.uk/
2610 F:      arch/arm/include/asm/hardware/entry-macro-iomd.S
2611 F:      arch/arm/include/asm/hardware/ioc.h
2612 F:      arch/arm/include/asm/hardware/iomd.h
2613 F:      arch/arm/include/asm/hardware/memc.h
2614 F:      arch/arm/mach-rpc/
2615 F:      drivers/net/ethernet/8390/etherh.c
2616 F:      drivers/net/ethernet/i825xx/ether1*
2617 F:      drivers/net/ethernet/seeq/ether3*
2618 F:      drivers/scsi/arm/
2619
2620 ARM/Rockchip SoC support
2621 M:      Heiko Stuebner <heiko@sntech.de>
2622 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2623 L:      linux-rockchip@lists.infradead.org
2624 S:      Maintained
2625 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmind/linux-rockchip.git
2626 F:      Documentation/devicetree/bindings/i2c/i2c-rk3x.yaml
2627 F:      Documentation/devicetree/bindings/mmc/rockchip-dw-mshc.yaml
2628 F:      Documentation/devicetree/bindings/spi/spi-rockchip.yaml
2629 F:      arch/arm/boot/dts/rk3*
2630 F:      arch/arm/boot/dts/rv1108*
2631 F:      arch/arm/mach-rockchip/
2632 F:      drivers/*/*/*rockchip*
2633 F:      drivers/*/*rockchip*
2634 F:      drivers/clk/rockchip/
2635 F:      drivers/i2c/busses/i2c-rk3x.c
2636 F:      sound/soc/rockchip/
2637 N:      rockchip
2638
2639 ARM/SAMSUNG S3C, S5P AND EXYNOS ARM ARCHITECTURES
2640 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
2641 R:      Alim Akhtar <alim.akhtar@samsung.com>
2642 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2643 L:      linux-samsung-soc@vger.kernel.org
2644 S:      Maintained
2645 C:      irc://irc.libera.chat/linux-exynos
2646 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
2647 B:      mailto:linux-samsung-soc@vger.kernel.org
2648 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/krzk/linux.git
2649 F:      Documentation/arm/samsung/
2650 F:      Documentation/devicetree/bindings/arm/samsung/
2651 F:      Documentation/devicetree/bindings/power/pd-samsung.yaml
2652 F:      Documentation/devicetree/bindings/soc/samsung/
2653 F:      arch/arm/boot/dts/exynos*
2654 F:      arch/arm/boot/dts/s3c*
2655 F:      arch/arm/boot/dts/s5p*
2656 F:      arch/arm/mach-exynos*/
2657 F:      arch/arm/mach-s3c/
2658 F:      arch/arm/mach-s5p*/
2659 F:      arch/arm64/boot/dts/exynos/
2660 F:      drivers/*/*/*s3c24*
2661 F:      drivers/*/*s3c24*
2662 F:      drivers/*/*s3c64xx*
2663 F:      drivers/*/*s5pv210*
2664 F:      drivers/clocksource/samsung_pwm_timer.c
2665 F:      drivers/memory/samsung/
2666 F:      drivers/pwm/pwm-samsung.c
2667 F:      drivers/soc/samsung/
2668 F:      drivers/tty/serial/samsung*
2669 F:      include/clocksource/samsung_pwm.h
2670 F:      include/linux/platform_data/*s3c*
2671 F:      include/linux/serial_s3c.h
2672 F:      include/linux/soc/samsung/
2673 N:      exynos
2674 N:      s3c2410
2675 N:      s3c64xx
2676 N:      s5pv210
2677
2678 ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT
2679 M:      Łukasz Stelmach <l.stelmach@samsung.com>
2680 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2681 L:      linux-media@vger.kernel.org
2682 S:      Maintained
2683 F:      drivers/media/platform/samsung/s5p-g2d/
2684
2685 ARM/SAMSUNG S5P SERIES HDMI CEC SUBSYSTEM SUPPORT
2686 M:      Marek Szyprowski <m.szyprowski@samsung.com>
2687 L:      linux-samsung-soc@vger.kernel.org
2688 L:      linux-media@vger.kernel.org
2689 S:      Maintained
2690 F:      Documentation/devicetree/bindings/media/s5p-cec.txt
2691 F:      drivers/media/cec/platform/s5p/
2692
2693 ARM/SAMSUNG S5P SERIES JPEG CODEC SUPPORT
2694 M:      Andrzej Pietrasiewicz <andrzejtp2010@gmail.com>
2695 M:      Jacek Anaszewski <jacek.anaszewski@gmail.com>
2696 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
2697 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2698 L:      linux-media@vger.kernel.org
2699 S:      Maintained
2700 F:      drivers/media/platform/samsung/s5p-jpeg/
2701
2702 ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
2703 M:      Marek Szyprowski <m.szyprowski@samsung.com>
2704 M:      Andrzej Hajda <andrzej.hajda@intel.com>
2705 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2706 L:      linux-media@vger.kernel.org
2707 S:      Maintained
2708 F:      drivers/media/platform/samsung/s5p-mfc/
2709
2710 ARM/SHMOBILE ARM ARCHITECTURE
2711 M:      Geert Uytterhoeven <geert+renesas@glider.be>
2712 M:      Magnus Damm <magnus.damm@gmail.com>
2713 L:      linux-renesas-soc@vger.kernel.org
2714 S:      Supported
2715 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
2716 C:      irc://irc.libera.chat/renesas-soc
2717 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git next
2718 F:      Documentation/devicetree/bindings/arm/renesas.yaml
2719 F:      arch/arm/boot/dts/emev2*
2720 F:      arch/arm/boot/dts/gr-peach*
2721 F:      arch/arm/boot/dts/iwg20d-q7*
2722 F:      arch/arm/boot/dts/r7s*
2723 F:      arch/arm/boot/dts/r8a*
2724 F:      arch/arm/boot/dts/r9a*
2725 F:      arch/arm/boot/dts/sh*
2726 F:      arch/arm/configs/shmobile_defconfig
2727 F:      arch/arm/include/debug/renesas-scif.S
2728 F:      arch/arm/mach-shmobile/
2729 F:      drivers/soc/renesas/
2730 F:      include/linux/soc/renesas/
2731
2732 ARM/SOCFPGA ARCHITECTURE
2733 M:      Dinh Nguyen <dinguyen@kernel.org>
2734 S:      Maintained
2735 W:      http://www.rocketboards.org
2736 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
2737 F:      arch/arm/boot/dts/socfpga*
2738 F:      arch/arm/configs/socfpga_defconfig
2739 F:      arch/arm/mach-socfpga/
2740 F:      arch/arm64/boot/dts/altera/
2741 F:      arch/arm64/boot/dts/intel/
2742
2743 ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
2744 M:      Dinh Nguyen <dinguyen@kernel.org>
2745 S:      Maintained
2746 F:      drivers/clk/socfpga/
2747
2748 ARM/SOCFPGA EDAC SUPPORT
2749 M:      Dinh Nguyen <dinguyen@kernel.org>
2750 S:      Maintained
2751 F:      drivers/edac/altera_edac.[ch]
2752
2753 ARM/SPREADTRUM SoC SUPPORT
2754 M:      Orson Zhai <orsonzhai@gmail.com>
2755 M:      Baolin Wang <baolin.wang7@gmail.com>
2756 M:      Chunyan Zhang <zhang.lyra@gmail.com>
2757 S:      Maintained
2758 F:      arch/arm64/boot/dts/sprd
2759 N:      sprd
2760 N:      sc27xx
2761 N:      sc2731
2762
2763 ARM/STI ARCHITECTURE
2764 M:      Patrice Chotard <patrice.chotard@foss.st.com>
2765 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2766 S:      Maintained
2767 W:      http://www.stlinux.com
2768 F:      Documentation/devicetree/bindings/i2c/i2c-st.txt
2769 F:      arch/arm/boot/dts/sti*
2770 F:      arch/arm/mach-sti/
2771 F:      drivers/ata/ahci_st.c
2772 F:      drivers/char/hw_random/st-rng.c
2773 F:      drivers/clocksource/arm_global_timer.c
2774 F:      drivers/clocksource/clksrc_st_lpc.c
2775 F:      drivers/cpufreq/sti-cpufreq.c
2776 F:      drivers/dma/st_fdma*
2777 F:      drivers/i2c/busses/i2c-st.c
2778 F:      drivers/media/platform/st/sti/c8sectpfe/
2779 F:      drivers/media/rc/st_rc.c
2780 F:      drivers/mmc/host/sdhci-st.c
2781 F:      drivers/phy/st/phy-miphy28lp.c
2782 F:      drivers/phy/st/phy-stih407-usb.c
2783 F:      drivers/pinctrl/pinctrl-st.c
2784 F:      drivers/remoteproc/st_remoteproc.c
2785 F:      drivers/remoteproc/st_slim_rproc.c
2786 F:      drivers/reset/sti/
2787 F:      drivers/rtc/rtc-st-lpc.c
2788 F:      drivers/tty/serial/st-asc.c
2789 F:      drivers/usb/dwc3/dwc3-st.c
2790 F:      drivers/usb/host/ehci-st.c
2791 F:      drivers/usb/host/ohci-st.c
2792 F:      drivers/watchdog/st_lpc_wdt.c
2793 F:      include/linux/remoteproc/st_slim_rproc.h
2794
2795 ARM/STM32 ARCHITECTURE
2796 M:      Maxime Coquelin <mcoquelin.stm32@gmail.com>
2797 M:      Alexandre Torgue <alexandre.torgue@foss.st.com>
2798 L:      linux-stm32@st-md-mailman.stormreply.com (moderated for non-subscribers)
2799 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2800 S:      Maintained
2801 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/atorgue/stm32.git stm32-next
2802 F:      arch/arm/boot/dts/stm32*
2803 F:      arch/arm/mach-stm32/
2804 F:      drivers/clocksource/armv7m_systick.c
2805 N:      stm32
2806 N:      stm
2807
2808 ARM/Synaptics SoC support
2809 M:      Jisheng Zhang <jszhang@kernel.org>
2810 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2811 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2812 S:      Maintained
2813 F:      arch/arm/boot/dts/berlin*
2814 F:      arch/arm/mach-berlin/
2815 F:      arch/arm64/boot/dts/synaptics/
2816
2817 ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
2818 M:      Lennert Buytenhek <kernel@wantstofly.org>
2819 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2820 S:      Maintained
2821
2822 ARM/TEGRA HDMI CEC SUBSYSTEM SUPPORT
2823 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
2824 L:      linux-tegra@vger.kernel.org
2825 L:      linux-media@vger.kernel.org
2826 S:      Maintained
2827 F:      Documentation/devicetree/bindings/media/tegra-cec.txt
2828 F:      drivers/media/cec/platform/tegra/
2829
2830 ARM/TESLA FSD SoC SUPPORT
2831 M:      Alim Akhtar <alim.akhtar@samsung.com>
2832 M:      linux-fsd@tesla.com
2833 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2834 L:      linux-samsung-soc@vger.kernel.org
2835 S:      Maintained
2836 F:      arch/arm64/boot/dts/tesla*
2837
2838 ARM/TETON BGA MACHINE SUPPORT
2839 M:      "Mark F. Brown" <mark.brown314@gmail.com>
2840 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2841 S:      Maintained
2842
2843 ARM/TEXAS INSTRUMENT AEMIF/EMIF DRIVERS
2844 M:      Santosh Shilimkar <ssantosh@kernel.org>
2845 L:      linux-kernel@vger.kernel.org
2846 S:      Maintained
2847 F:      drivers/memory/*emif*
2848
2849 ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE
2850 M:      Nishanth Menon <nm@ti.com>
2851 M:      Santosh Shilimkar <ssantosh@kernel.org>
2852 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2853 S:      Maintained
2854 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ti/linux.git
2855 F:      arch/arm/boot/dts/keystone-*
2856 F:      arch/arm/mach-keystone/
2857
2858 ARM/TEXAS INSTRUMENT KEYSTONE CLOCK FRAMEWORK
2859 M:      Santosh Shilimkar <ssantosh@kernel.org>
2860 L:      linux-kernel@vger.kernel.org
2861 S:      Maintained
2862 F:      drivers/clk/keystone/
2863
2864 ARM/TEXAS INSTRUMENT KEYSTONE CLOCKSOURCE
2865 M:      Santosh Shilimkar <ssantosh@kernel.org>
2866 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2867 L:      linux-kernel@vger.kernel.org
2868 S:      Maintained
2869 F:      drivers/clocksource/timer-keystone.c
2870
2871 ARM/TEXAS INSTRUMENT KEYSTONE RESET DRIVER
2872 M:      Santosh Shilimkar <ssantosh@kernel.org>
2873 L:      linux-kernel@vger.kernel.org
2874 S:      Maintained
2875 F:      drivers/power/reset/keystone-reset.c
2876
2877 ARM/TEXAS INSTRUMENTS K3 ARCHITECTURE
2878 M:      Nishanth Menon <nm@ti.com>
2879 M:      Vignesh Raghavendra <vigneshr@ti.com>
2880 M:      Tero Kristo <kristo@kernel.org>
2881 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2882 S:      Supported
2883 F:      Documentation/devicetree/bindings/arm/ti/k3.yaml
2884 F:      arch/arm64/boot/dts/ti/Makefile
2885 F:      arch/arm64/boot/dts/ti/k3-*
2886 F:      include/dt-bindings/pinctrl/k3.h
2887
2888 ARM/THECUS N2100 MACHINE SUPPORT
2889 M:      Lennert Buytenhek <kernel@wantstofly.org>
2890 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2891 S:      Maintained
2892
2893 ARM/TOSA MACHINE SUPPORT
2894 M:      Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
2895 M:      Dirk Opfer <dirk@opfer-online.de>
2896 S:      Maintained
2897
2898 ARM/TOSHIBA VISCONTI ARCHITECTURE
2899 M:      Nobuhiro Iwamatsu <nobuhiro1.iwamatsu@toshiba.co.jp>
2900 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2901 S:      Supported
2902 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwamatsu/linux-visconti.git
2903 F:      Documentation/devicetree/bindings/arm/toshiba.yaml
2904 F:      Documentation/devicetree/bindings/clock/toshiba,tmpv770x-pipllct.yaml
2905 F:      Documentation/devicetree/bindings/clock/toshiba,tmpv770x-pismu.yaml
2906 F:      Documentation/devicetree/bindings/net/toshiba,visconti-dwmac.yaml
2907 F:      Documentation/devicetree/bindings/gpio/toshiba,gpio-visconti.yaml
2908 F:      Documentation/devicetree/bindings/pci/toshiba,visconti-pcie.yaml
2909 F:      Documentation/devicetree/bindings/pinctrl/toshiba,visconti-pinctrl.yaml
2910 F:      Documentation/devicetree/bindings/watchdog/toshiba,visconti-wdt.yaml
2911 F:      arch/arm64/boot/dts/toshiba/
2912 F:      drivers/clk/visconti/
2913 F:      drivers/net/ethernet/stmicro/stmmac/dwmac-visconti.c
2914 F:      drivers/gpio/gpio-visconti.c
2915 F:      drivers/pci/controller/dwc/pcie-visconti.c
2916 F:      drivers/pinctrl/visconti/
2917 F:      drivers/watchdog/visconti_wdt.c
2918 N:      visconti
2919
2920 ARM/UNIPHIER ARCHITECTURE
2921 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
2922 M:      Masami Hiramatsu <mhiramat@kernel.org>
2923 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2924 S:      Maintained
2925 F:      Documentation/devicetree/bindings/arm/socionext/uniphier.yaml
2926 F:      Documentation/devicetree/bindings/gpio/socionext,uniphier-gpio.yaml
2927 F:      Documentation/devicetree/bindings/pinctrl/socionext,uniphier-pinctrl.yaml
2928 F:      arch/arm/boot/dts/uniphier*
2929 F:      arch/arm/include/asm/hardware/cache-uniphier.h
2930 F:      arch/arm/mach-uniphier/
2931 F:      arch/arm/mm/cache-uniphier.c
2932 F:      arch/arm64/boot/dts/socionext/uniphier*
2933 F:      drivers/bus/uniphier-system-bus.c
2934 F:      drivers/clk/uniphier/
2935 F:      drivers/dma/uniphier-mdmac.c
2936 F:      drivers/gpio/gpio-uniphier.c
2937 F:      drivers/i2c/busses/i2c-uniphier*
2938 F:      drivers/irqchip/irq-uniphier-aidet.c
2939 F:      drivers/mmc/host/uniphier-sd.c
2940 F:      drivers/pinctrl/uniphier/
2941 F:      drivers/reset/reset-uniphier.c
2942 F:      drivers/tty/serial/8250/8250_uniphier.c
2943 N:      uniphier
2944
2945 ARM/VERSATILE EXPRESS PLATFORM
2946 M:      Liviu Dudau <liviu.dudau@arm.com>
2947 M:      Sudeep Holla <sudeep.holla@arm.com>
2948 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
2949 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2950 S:      Maintained
2951 F:      */*/*/vexpress*
2952 F:      */*/vexpress*
2953 F:      arch/arm/boot/dts/vexpress*
2954 F:      arch/arm/mach-vexpress/
2955 F:      arch/arm64/boot/dts/arm/
2956 F:      drivers/clk/versatile/clk-vexpress-osc.c
2957 F:      drivers/clocksource/timer-versatile.c
2958 N:      mps2
2959
2960 ARM/VFP SUPPORT
2961 M:      Russell King <linux@armlinux.org.uk>
2962 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2963 S:      Maintained
2964 W:      http://www.armlinux.org.uk/
2965 F:      arch/arm/vfp/
2966
2967 ARM/VOIPAC PXA270 SUPPORT
2968 M:      Marek Vasut <marek.vasut@gmail.com>
2969 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2970 S:      Maintained
2971 F:      arch/arm/mach-pxa/include/mach/vpac270.h
2972 F:      arch/arm/mach-pxa/vpac270.c
2973
2974 ARM/VT8500 ARM ARCHITECTURE
2975 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2976 S:      Orphan
2977 F:      Documentation/devicetree/bindings/i2c/i2c-wmt.txt
2978 F:      arch/arm/mach-vt8500/
2979 F:      drivers/clocksource/timer-vt8500.c
2980 F:      drivers/i2c/busses/i2c-wmt.c
2981 F:      drivers/mmc/host/wmt-sdmmc.c
2982 F:      drivers/pwm/pwm-vt8500.c
2983 F:      drivers/rtc/rtc-vt8500.c
2984 F:      drivers/tty/serial/vt8500_serial.c
2985 F:      drivers/usb/host/ehci-platform.c
2986 F:      drivers/usb/host/uhci-platform.c
2987 F:      drivers/video/fbdev/vt8500lcdfb.*
2988 F:      drivers/video/fbdev/wm8505fb*
2989 F:      drivers/video/fbdev/wmt_ge_rops.*
2990
2991 ARM/ZIPIT Z2 SUPPORT
2992 M:      Marek Vasut <marek.vasut@gmail.com>
2993 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2994 S:      Maintained
2995 F:      arch/arm/mach-pxa/include/mach/z2.h
2996 F:      arch/arm/mach-pxa/z2.c
2997
2998 ARM/ZYNQ ARCHITECTURE
2999 M:      Michal Simek <michal.simek@xilinx.com>
3000 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3001 S:      Supported
3002 W:      http://wiki.xilinx.com
3003 T:      git https://github.com/Xilinx/linux-xlnx.git
3004 F:      Documentation/devicetree/bindings/i2c/cdns,i2c-r1p10.yaml
3005 F:      Documentation/devicetree/bindings/i2c/xlnx,xps-iic-2.00.a.yaml
3006 F:      Documentation/devicetree/bindings/spi/xlnx,zynq-qspi.yaml
3007 F:      arch/arm/mach-zynq/
3008 F:      drivers/clocksource/timer-cadence-ttc.c
3009 F:      drivers/cpuidle/cpuidle-zynq.c
3010 F:      drivers/edac/synopsys_edac.c
3011 F:      drivers/i2c/busses/i2c-cadence.c
3012 F:      drivers/i2c/busses/i2c-xiic.c
3013 F:      drivers/mmc/host/sdhci-of-arasan.c
3014 N:      zynq
3015 N:      xilinx
3016
3017 ARM64 PORT (AARCH64 ARCHITECTURE)
3018 M:      Catalin Marinas <catalin.marinas@arm.com>
3019 M:      Will Deacon <will@kernel.org>
3020 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3021 S:      Maintained
3022 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux.git
3023 F:      Documentation/arm64/
3024 F:      arch/arm64/
3025 F:      tools/testing/selftests/arm64/
3026 X:      arch/arm64/boot/dts/
3027
3028 ARROW SPEEDCHIPS XRS7000 SERIES ETHERNET SWITCH DRIVER
3029 M:      George McCollister <george.mccollister@gmail.com>
3030 L:      netdev@vger.kernel.org
3031 S:      Maintained
3032 F:      Documentation/devicetree/bindings/net/dsa/arrow,xrs700x.yaml
3033 F:      drivers/net/dsa/xrs700x/*
3034 F:      net/dsa/tag_xrs700x.c
3035
3036 AS3645A LED FLASH CONTROLLER DRIVER
3037 M:      Sakari Ailus <sakari.ailus@iki.fi>
3038 L:      linux-leds@vger.kernel.org
3039 S:      Maintained
3040 F:      drivers/leds/flash/leds-as3645a.c
3041
3042 ASAHI KASEI AK7375 LENS VOICE COIL DRIVER
3043 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
3044 L:      linux-media@vger.kernel.org
3045 S:      Maintained
3046 T:      git git://linuxtv.org/media_tree.git
3047 F:      Documentation/devicetree/bindings/media/i2c/ak7375.txt
3048 F:      drivers/media/i2c/ak7375.c
3049
3050 ASAHI KASEI AK8974 DRIVER
3051 M:      Linus Walleij <linus.walleij@linaro.org>
3052 L:      linux-iio@vger.kernel.org
3053 S:      Supported
3054 W:      http://www.akm.com/
3055 F:      drivers/iio/magnetometer/ak8974.c
3056
3057 ASC7621 HARDWARE MONITOR DRIVER
3058 M:      George Joseph <george.joseph@fairview5.com>
3059 L:      linux-hwmon@vger.kernel.org
3060 S:      Maintained
3061 F:      Documentation/hwmon/asc7621.rst
3062 F:      drivers/hwmon/asc7621.c
3063
3064 ASIX AX88796C SPI ETHERNET ADAPTER
3065 M:      Łukasz Stelmach <l.stelmach@samsung.com>
3066 S:      Maintained
3067 F:      Documentation/devicetree/bindings/net/asix,ax88796c.yaml
3068 F:      drivers/net/ethernet/asix/ax88796c_*
3069
3070 ASPEED PECI CONTROLLER
3071 M:      Iwona Winiarska <iwona.winiarska@intel.com>
3072 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
3073 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
3074 S:      Supported
3075 F:      Documentation/devicetree/bindings/peci/peci-aspeed.yaml
3076 F:      drivers/peci/controller/peci-aspeed.c
3077
3078 ASPEED PINCTRL DRIVERS
3079 M:      Andrew Jeffery <andrew@aj.id.au>
3080 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
3081 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
3082 L:      linux-gpio@vger.kernel.org
3083 S:      Maintained
3084 F:      Documentation/devicetree/bindings/pinctrl/aspeed,*
3085 F:      drivers/pinctrl/aspeed/
3086
3087 ASPEED SCU INTERRUPT CONTROLLER DRIVER
3088 M:      Eddie James <eajames@linux.ibm.com>
3089 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
3090 S:      Maintained
3091 F:      Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2xxx-scu-ic.txt
3092 F:      drivers/irqchip/irq-aspeed-scu-ic.c
3093 F:      include/dt-bindings/interrupt-controller/aspeed-scu-ic.h
3094
3095 ASPEED SD/MMC DRIVER
3096 M:      Andrew Jeffery <andrew@aj.id.au>
3097 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
3098 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
3099 L:      linux-mmc@vger.kernel.org
3100 S:      Maintained
3101 F:      Documentation/devicetree/bindings/mmc/aspeed,sdhci.yaml
3102 F:      drivers/mmc/host/sdhci-of-aspeed*
3103
3104 ASPEED SMC SPI DRIVER
3105 M:      Chin-Ting Kuo <chin-ting_kuo@aspeedtech.com>
3106 M:      Cédric Le Goater <clg@kaod.org>
3107 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
3108 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
3109 L:      linux-spi@vger.kernel.org
3110 S:      Maintained
3111 F:      Documentation/devicetree/bindings/spi/aspeed,ast2600-fmc.yaml
3112 F:      drivers/spi/spi-aspeed-smc.c
3113
3114 ASPEED VIDEO ENGINE DRIVER
3115 M:      Eddie James <eajames@linux.ibm.com>
3116 L:      linux-media@vger.kernel.org
3117 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
3118 S:      Maintained
3119 F:      Documentation/devicetree/bindings/media/aspeed-video.txt
3120 F:      drivers/media/platform/aspeed/
3121
3122 ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
3123 M:      Corentin Chary <corentin.chary@gmail.com>
3124 L:      acpi4asus-user@lists.sourceforge.net
3125 L:      platform-driver-x86@vger.kernel.org
3126 S:      Maintained
3127 W:      http://acpi4asus.sf.net
3128 F:      drivers/platform/x86/asus*.c
3129 F:      drivers/platform/x86/eeepc*.c
3130
3131 ASUS TF103C DOCK DRIVER
3132 M:      Hans de Goede <hdegoede@redhat.com>
3133 L:      platform-driver-x86@vger.kernel.org
3134 S:      Maintained
3135 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
3136 F:      drivers/platform/x86/asus-tf103c-dock.c
3137
3138 ASUS WMI HARDWARE MONITOR DRIVER
3139 M:      Ed Brindley <kernel@maidavale.org>
3140 M:      Denis Pauk <pauk.denis@gmail.com>
3141 L:      linux-hwmon@vger.kernel.org
3142 S:      Maintained
3143 F:      drivers/hwmon/asus_wmi_sensors.c
3144
3145 ASUS WMI EC HARDWARE MONITOR DRIVER
3146 M:      Eugene Shalygin <eugene.shalygin@gmail.com>
3147 M:      Denis Pauk <pauk.denis@gmail.com>
3148 L:      linux-hwmon@vger.kernel.org
3149 S:      Maintained
3150 F:      drivers/hwmon/asus_wmi_ec_sensors.c
3151
3152 ASUS EC HARDWARE MONITOR DRIVER
3153 M:      Eugene Shalygin <eugene.shalygin@gmail.com>
3154 L:      linux-hwmon@vger.kernel.org
3155 S:      Maintained
3156 F:      drivers/hwmon/asus-ec-sensors.c
3157
3158 ASUS WIRELESS RADIO CONTROL DRIVER
3159 M:      João Paulo Rechi Vita <jprvita@gmail.com>
3160 L:      platform-driver-x86@vger.kernel.org
3161 S:      Maintained
3162 F:      drivers/platform/x86/asus-wireless.c
3163
3164 ASYMMETRIC KEYS
3165 M:      David Howells <dhowells@redhat.com>
3166 L:      keyrings@vger.kernel.org
3167 S:      Maintained
3168 F:      Documentation/crypto/asymmetric-keys.rst
3169 F:      crypto/asymmetric_keys/
3170 F:      include/crypto/pkcs7.h
3171 F:      include/crypto/public_key.h
3172 F:      include/linux/verification.h
3173
3174 ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
3175 R:      Dan Williams <dan.j.williams@intel.com>
3176 S:      Odd fixes
3177 W:      http://sourceforge.net/projects/xscaleiop
3178 F:      Documentation/crypto/async-tx-api.rst
3179 F:      crypto/async_tx/
3180 F:      include/linux/async_tx.h
3181
3182 AT24 EEPROM DRIVER
3183 M:      Bartosz Golaszewski <brgl@bgdev.pl>
3184 L:      linux-i2c@vger.kernel.org
3185 S:      Maintained
3186 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux.git
3187 F:      Documentation/devicetree/bindings/eeprom/at24.yaml
3188 F:      drivers/misc/eeprom/at24.c
3189
3190 ATA OVER ETHERNET (AOE) DRIVER
3191 M:      "Justin Sanders" <justin@coraid.com>
3192 S:      Supported
3193 W:      http://www.openaoe.org/
3194 F:      Documentation/admin-guide/aoe/
3195 F:      drivers/block/aoe/
3196
3197 ATC260X PMIC MFD DRIVER
3198 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
3199 M:      Cristian Ciocaltea <cristian.ciocaltea@gmail.com>
3200 L:      linux-actions@lists.infradead.org
3201 S:      Maintained
3202 F:      Documentation/devicetree/bindings/mfd/actions,atc260x.yaml
3203 F:      drivers/input/misc/atc260x-onkey.c
3204 F:      drivers/mfd/atc260*
3205 F:      drivers/power/reset/atc260x-poweroff.c
3206 F:      drivers/regulator/atc260x-regulator.c
3207 F:      include/linux/mfd/atc260x/*
3208
3209 ATHEROS 71XX/9XXX GPIO DRIVER
3210 M:      Alban Bedel <albeu@free.fr>
3211 S:      Maintained
3212 W:      https://github.com/AlbanBedel/linux
3213 T:      git git://github.com/AlbanBedel/linux
3214 F:      Documentation/devicetree/bindings/gpio/gpio-ath79.txt
3215 F:      drivers/gpio/gpio-ath79.c
3216
3217 ATHEROS 71XX/9XXX USB PHY DRIVER
3218 M:      Alban Bedel <albeu@free.fr>
3219 S:      Maintained
3220 W:      https://github.com/AlbanBedel/linux
3221 T:      git git://github.com/AlbanBedel/linux
3222 F:      Documentation/devicetree/bindings/phy/phy-ath79-usb.txt
3223 F:      drivers/phy/qualcomm/phy-ath79-usb.c
3224
3225 ATHEROS ATH GENERIC UTILITIES
3226 M:      Kalle Valo <kvalo@kernel.org>
3227 L:      linux-wireless@vger.kernel.org
3228 S:      Supported
3229 F:      drivers/net/wireless/ath/*
3230
3231 ATHEROS ATH5K WIRELESS DRIVER
3232 M:      Jiri Slaby <jirislaby@kernel.org>
3233 M:      Nick Kossifidis <mickflemm@gmail.com>
3234 M:      Luis Chamberlain <mcgrof@kernel.org>
3235 L:      linux-wireless@vger.kernel.org
3236 S:      Maintained
3237 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath5k
3238 F:      drivers/net/wireless/ath/ath5k/
3239
3240 ATHEROS ATH6KL WIRELESS DRIVER
3241 L:      linux-wireless@vger.kernel.org
3242 S:      Orphan
3243 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath6kl
3244 F:      drivers/net/wireless/ath/ath6kl/
3245
3246 ATI_REMOTE2 DRIVER
3247 M:      Ville Syrjala <syrjala@sci.fi>
3248 S:      Maintained
3249 F:      drivers/input/misc/ati_remote2.c
3250
3251 ATK0110 HWMON DRIVER
3252 M:      Luca Tettamanti <kronos.it@gmail.com>
3253 L:      linux-hwmon@vger.kernel.org
3254 S:      Maintained
3255 F:      drivers/hwmon/asus_atk0110.c
3256
3257 ATLX ETHERNET DRIVERS
3258 M:      Chris Snook <chris.snook@gmail.com>
3259 L:      netdev@vger.kernel.org
3260 S:      Maintained
3261 W:      http://sourceforge.net/projects/atl1
3262 W:      http://atl1.sourceforge.net
3263 F:      drivers/net/ethernet/atheros/
3264
3265 ATM
3266 M:      Chas Williams <3chas3@gmail.com>
3267 L:      linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
3268 L:      netdev@vger.kernel.org
3269 S:      Maintained
3270 W:      http://linux-atm.sourceforge.net
3271 F:      drivers/atm/
3272 F:      include/linux/atm*
3273 F:      include/uapi/linux/atm*
3274
3275 ATMEL MACB ETHERNET DRIVER
3276 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
3277 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
3278 S:      Supported
3279 F:      drivers/net/ethernet/cadence/
3280
3281 ATMEL MAXTOUCH DRIVER
3282 M:      Nick Dyer <nick@shmanahar.org>
3283 S:      Maintained
3284 T:      git git://github.com/ndyer/linux.git
3285 F:      Documentation/devicetree/bindings/input/atmel,maxtouch.yaml
3286 F:      drivers/input/touchscreen/atmel_mxt_ts.c
3287
3288 ATMEL WIRELESS DRIVER
3289 M:      Simon Kelley <simon@thekelleys.org.uk>
3290 L:      linux-wireless@vger.kernel.org
3291 S:      Maintained
3292 W:      http://www.thekelleys.org.uk/atmel
3293 W:      http://atmelwlandriver.sourceforge.net/
3294 F:      drivers/net/wireless/atmel/atmel*
3295
3296 ATOMIC INFRASTRUCTURE
3297 M:      Will Deacon <will@kernel.org>
3298 M:      Peter Zijlstra <peterz@infradead.org>
3299 R:      Boqun Feng <boqun.feng@gmail.com>
3300 R:      Mark Rutland <mark.rutland@arm.com>
3301 L:      linux-kernel@vger.kernel.org
3302 S:      Maintained
3303 F:      arch/*/include/asm/atomic*.h
3304 F:      include/*/atomic*.h
3305 F:      include/linux/refcount.h
3306 F:      Documentation/atomic_*.txt
3307 F:      scripts/atomic/
3308
3309 ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER
3310 M:      Bradley Grove <linuxdrivers@attotech.com>
3311 L:      linux-scsi@vger.kernel.org
3312 S:      Supported
3313 W:      http://www.attotech.com
3314 F:      drivers/scsi/esas2r
3315
3316 ATUSB IEEE 802.15.4 RADIO DRIVER
3317 M:      Stefan Schmidt <stefan@datenfreihafen.org>
3318 L:      linux-wpan@vger.kernel.org
3319 S:      Maintained
3320 F:      drivers/net/ieee802154/at86rf230.h
3321 F:      drivers/net/ieee802154/atusb.c
3322 F:      drivers/net/ieee802154/atusb.h
3323
3324 AUDIT SUBSYSTEM
3325 M:      Paul Moore <paul@paul-moore.com>
3326 M:      Eric Paris <eparis@redhat.com>
3327 L:      linux-audit@redhat.com (moderated for non-subscribers)
3328 S:      Supported
3329 W:      https://github.com/linux-audit
3330 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/audit.git
3331 F:      include/asm-generic/audit_*.h
3332 F:      include/linux/audit.h
3333 F:      include/linux/audit_arch.h
3334 F:      include/uapi/linux/audit.h
3335 F:      kernel/audit*
3336 F:      lib/*audit.c
3337
3338 AUXILIARY DISPLAY DRIVERS
3339 M:      Miguel Ojeda <ojeda@kernel.org>
3340 S:      Maintained
3341 F:      Documentation/devicetree/bindings/auxdisplay/
3342 F:      drivers/auxdisplay/
3343 F:      include/linux/cfag12864b.h
3344
3345 AVIA HX711 ANALOG DIGITAL CONVERTER IIO DRIVER
3346 M:      Andreas Klinger <ak@it-klinger.de>
3347 L:      linux-iio@vger.kernel.org
3348 S:      Maintained
3349 F:      Documentation/devicetree/bindings/iio/adc/avia-hx711.yaml
3350 F:      drivers/iio/adc/hx711.c
3351
3352 AX.25 NETWORK LAYER
3353 M:      Ralf Baechle <ralf@linux-mips.org>
3354 L:      linux-hams@vger.kernel.org
3355 S:      Maintained
3356 W:      http://www.linux-ax25.org/
3357 F:      include/net/ax25.h
3358 F:      include/uapi/linux/ax25.h
3359 F:      net/ax25/
3360
3361 AXENTIA ARM DEVICES
3362 M:      Peter Rosin <peda@axentia.se>
3363 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3364 S:      Maintained
3365 F:      arch/arm/boot/dts/at91-linea.dtsi
3366 F:      arch/arm/boot/dts/at91-natte.dtsi
3367 F:      arch/arm/boot/dts/at91-nattis-2-natte-2.dts
3368 F:      arch/arm/boot/dts/at91-tse850-3.dts
3369
3370 AXENTIA ASOC DRIVERS
3371 M:      Peter Rosin <peda@axentia.se>
3372 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3373 S:      Maintained
3374 F:      Documentation/devicetree/bindings/sound/axentia,*
3375 F:      sound/soc/atmel/tse850-pcm5142.c
3376
3377 AXI-FAN-CONTROL HARDWARE MONITOR DRIVER
3378 M:      Nuno Sá <nuno.sa@analog.com>
3379 L:      linux-hwmon@vger.kernel.org
3380 S:      Supported
3381 W:      https://ez.analog.com/linux-software-drivers
3382 F:      Documentation/devicetree/bindings/hwmon/adi,axi-fan-control.yaml
3383 F:      drivers/hwmon/axi-fan-control.c
3384
3385 AXXIA I2C CONTROLLER
3386 M:      Krzysztof Adamski <krzysztof.adamski@nokia.com>
3387 L:      linux-i2c@vger.kernel.org
3388 S:      Maintained
3389 F:      Documentation/devicetree/bindings/i2c/i2c-axxia.txt
3390 F:      drivers/i2c/busses/i2c-axxia.c
3391
3392 AZ6007 DVB DRIVER
3393 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
3394 L:      linux-media@vger.kernel.org
3395 S:      Maintained
3396 W:      https://linuxtv.org
3397 T:      git git://linuxtv.org/media_tree.git
3398 F:      drivers/media/usb/dvb-usb-v2/az6007.c
3399
3400 AZTECH FM RADIO RECEIVER DRIVER
3401 M:      Hans Verkuil <hverkuil@xs4all.nl>
3402 L:      linux-media@vger.kernel.org
3403 S:      Maintained
3404 W:      https://linuxtv.org
3405 T:      git git://linuxtv.org/media_tree.git
3406 F:      drivers/media/radio/radio-aztech*
3407
3408 B43 WIRELESS DRIVER
3409 L:      linux-wireless@vger.kernel.org
3410 L:      b43-dev@lists.infradead.org
3411 S:      Odd Fixes
3412 W:      https://wireless.wiki.kernel.org/en/users/Drivers/b43
3413 F:      drivers/net/wireless/broadcom/b43/
3414
3415 B43LEGACY WIRELESS DRIVER
3416 M:      Larry Finger <Larry.Finger@lwfinger.net>
3417 L:      linux-wireless@vger.kernel.org
3418 L:      b43-dev@lists.infradead.org
3419 S:      Maintained
3420 W:      https://wireless.wiki.kernel.org/en/users/Drivers/b43
3421 F:      drivers/net/wireless/broadcom/b43legacy/
3422
3423 BACKLIGHT CLASS/SUBSYSTEM
3424 M:      Lee Jones <lee.jones@linaro.org>
3425 M:      Daniel Thompson <daniel.thompson@linaro.org>
3426 M:      Jingoo Han <jingoohan1@gmail.com>
3427 L:      dri-devel@lists.freedesktop.org
3428 S:      Maintained
3429 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/backlight.git
3430 F:      Documentation/ABI/stable/sysfs-class-backlight
3431 F:      Documentation/ABI/testing/sysfs-class-backlight
3432 F:      Documentation/devicetree/bindings/leds/backlight
3433 F:      drivers/video/backlight/
3434 F:      include/linux/backlight.h
3435 F:      include/linux/pwm_backlight.h
3436
3437 BARCO P50 GPIO DRIVER
3438 M:      Santosh Kumar Yadav <santoshkumar.yadav@barco.com>
3439 M:      Peter Korsgaard <peter.korsgaard@barco.com>
3440 S:      Maintained
3441 F:      drivers/platform/x86/barco-p50-gpio.c
3442
3443 BATMAN ADVANCED
3444 M:      Marek Lindner <mareklindner@neomailbox.ch>
3445 M:      Simon Wunderlich <sw@simonwunderlich.de>
3446 M:      Antonio Quartulli <a@unstable.cc>
3447 M:      Sven Eckelmann <sven@narfation.org>
3448 L:      b.a.t.m.a.n@lists.open-mesh.org (moderated for non-subscribers)
3449 S:      Maintained
3450 W:      https://www.open-mesh.org/
3451 Q:      https://patchwork.open-mesh.org/project/batman/list/
3452 B:      https://www.open-mesh.org/projects/batman-adv/issues
3453 C:      ircs://irc.hackint.org/batadv
3454 T:      git https://git.open-mesh.org/linux-merge.git
3455 F:      Documentation/networking/batman-adv.rst
3456 F:      include/uapi/linux/batadv_packet.h
3457 F:      include/uapi/linux/batman_adv.h
3458 F:      net/batman-adv/
3459
3460 BAYCOM/HDLCDRV DRIVERS FOR AX.25
3461 M:      Thomas Sailer <t.sailer@alumni.ethz.ch>
3462 L:      linux-hams@vger.kernel.org
3463 S:      Maintained
3464 W:      http://www.baycom.org/~tom/ham/ham.html
3465 F:      drivers/net/hamradio/baycom*
3466
3467 BCACHE (BLOCK LAYER CACHE)
3468 M:      Coly Li <colyli@suse.de>
3469 M:      Kent Overstreet <kent.overstreet@gmail.com>
3470 L:      linux-bcache@vger.kernel.org
3471 S:      Maintained
3472 W:      http://bcache.evilpiepirate.org
3473 C:      irc://irc.oftc.net/bcache
3474 F:      drivers/md/bcache/
3475
3476 BDISP ST MEDIA DRIVER
3477 M:      Fabien Dessenne <fabien.dessenne@foss.st.com>
3478 L:      linux-media@vger.kernel.org
3479 S:      Supported
3480 W:      https://linuxtv.org
3481 T:      git git://linuxtv.org/media_tree.git
3482 F:      drivers/media/platform/st/sti/bdisp
3483
3484 BECKHOFF CX5020 ETHERCAT MASTER DRIVER
3485 M:      Dariusz Marcinkiewicz <reksio@newterm.pl>
3486 L:      netdev@vger.kernel.org
3487 S:      Maintained
3488 F:      drivers/net/ethernet/ec_bhf.c
3489
3490 BEFS FILE SYSTEM
3491 M:      Luis de Bethencourt <luisbg@kernel.org>
3492 M:      Salah Triki <salah.triki@gmail.com>
3493 S:      Maintained
3494 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luisbg/linux-befs.git
3495 F:      Documentation/filesystems/befs.rst
3496 F:      fs/befs/
3497
3498 BFQ I/O SCHEDULER
3499 M:      Paolo Valente <paolo.valente@linaro.org>
3500 M:      Jens Axboe <axboe@kernel.dk>
3501 L:      linux-block@vger.kernel.org
3502 S:      Maintained
3503 F:      Documentation/block/bfq-iosched.rst
3504 F:      block/bfq-*
3505
3506 BFS FILE SYSTEM
3507 M:      "Tigran A. Aivazian" <aivazian.tigran@gmail.com>
3508 S:      Maintained
3509 F:      Documentation/filesystems/bfs.rst
3510 F:      fs/bfs/
3511 F:      include/uapi/linux/bfs_fs.h
3512
3513 BITMAP API
3514 M:      Yury Norov <yury.norov@gmail.com>
3515 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
3516 R:      Rasmus Villemoes <linux@rasmusvillemoes.dk>
3517 S:      Maintained
3518 F:      include/linux/bitmap.h
3519 F:      include/linux/find.h
3520 F:      lib/bitmap.c
3521 F:      lib/find_bit.c
3522 F:      lib/find_bit_benchmark.c
3523 F:      lib/test_bitmap.c
3524 F:      tools/include/linux/bitmap.h
3525 F:      tools/include/linux/find.h
3526 F:      tools/lib/bitmap.c
3527 F:      tools/lib/find_bit.c
3528
3529 BLINKM RGB LED DRIVER
3530 M:      Jan-Simon Moeller <jansimon.moeller@gmx.de>
3531 S:      Maintained
3532 F:      drivers/leds/leds-blinkm.c
3533
3534 BLOCK LAYER
3535 M:      Jens Axboe <axboe@kernel.dk>
3536 L:      linux-block@vger.kernel.org
3537 S:      Maintained
3538 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
3539 F:      Documentation/ABI/stable/sysfs-block
3540 F:      Documentation/block/
3541 F:      block/
3542 F:      drivers/block/
3543 F:      include/linux/bio.h
3544 F:      include/linux/blk*
3545 F:      kernel/trace/blktrace.c
3546 F:      lib/sbitmap.c
3547
3548 BLOCK2MTD DRIVER
3549 M:      Joern Engel <joern@lazybastard.org>
3550 L:      linux-mtd@lists.infradead.org
3551 S:      Maintained
3552 F:      drivers/mtd/devices/block2mtd.c
3553
3554 BLUETOOTH DRIVERS
3555 M:      Marcel Holtmann <marcel@holtmann.org>
3556 M:      Johan Hedberg <johan.hedberg@gmail.com>
3557 M:      Luiz Augusto von Dentz <luiz.dentz@gmail.com>
3558 L:      linux-bluetooth@vger.kernel.org
3559 S:      Supported
3560 W:      http://www.bluez.org/
3561 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3562 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3563 F:      drivers/bluetooth/
3564
3565 BLUETOOTH SUBSYSTEM
3566 M:      Marcel Holtmann <marcel@holtmann.org>
3567 M:      Johan Hedberg <johan.hedberg@gmail.com>
3568 M:      Luiz Augusto von Dentz <luiz.dentz@gmail.com>
3569 L:      linux-bluetooth@vger.kernel.org
3570 S:      Supported
3571 W:      http://www.bluez.org/
3572 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3573 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3574 F:      include/net/bluetooth/
3575 F:      net/bluetooth/
3576
3577 BONDING DRIVER
3578 M:      Jay Vosburgh <j.vosburgh@gmail.com>
3579 M:      Veaceslav Falico <vfalico@gmail.com>
3580 M:      Andy Gospodarek <andy@greyhouse.net>
3581 L:      netdev@vger.kernel.org
3582 S:      Supported
3583 W:      http://sourceforge.net/projects/bonding/
3584 F:      Documentation/networking/bonding.rst
3585 F:      drivers/net/bonding/
3586 F:      include/net/bond*
3587 F:      include/uapi/linux/if_bonding.h
3588
3589 BOSCH SENSORTEC BMA400 ACCELEROMETER IIO DRIVER
3590 M:      Dan Robertson <dan@dlrobertson.com>
3591 L:      linux-iio@vger.kernel.org
3592 S:      Maintained
3593 F:      Documentation/devicetree/bindings/iio/accel/bosch,bma400.yaml
3594 F:      drivers/iio/accel/bma400*
3595
3596 BPF (Safe dynamic programs and tools)
3597 M:      Alexei Starovoitov <ast@kernel.org>
3598 M:      Daniel Borkmann <daniel@iogearbox.net>
3599 M:      Andrii Nakryiko <andrii@kernel.org>
3600 R:      Martin KaFai Lau <kafai@fb.com>
3601 R:      Song Liu <songliubraving@fb.com>
3602 R:      Yonghong Song <yhs@fb.com>
3603 R:      John Fastabend <john.fastabend@gmail.com>
3604 R:      KP Singh <kpsingh@kernel.org>
3605 L:      netdev@vger.kernel.org
3606 L:      bpf@vger.kernel.org
3607 S:      Supported
3608 W:      https://bpf.io/
3609 Q:      https://patchwork.kernel.org/project/netdevbpf/list/?delegate=121173
3610 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf.git
3611 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-next.git
3612 F:      Documentation/bpf/
3613 F:      Documentation/networking/filter.rst
3614 F:      Documentation/userspace-api/ebpf/
3615 F:      arch/*/net/*
3616 F:      include/linux/bpf*
3617 F:      include/linux/btf*
3618 F:      include/linux/filter.h
3619 F:      include/trace/events/xdp.h
3620 F:      include/uapi/linux/bpf*
3621 F:      include/uapi/linux/btf*
3622 F:      include/uapi/linux/filter.h
3623 F:      kernel/bpf/
3624 F:      kernel/trace/bpf_trace.c
3625 F:      lib/test_bpf.c
3626 F:      net/bpf/
3627 F:      net/core/filter.c
3628 F:      net/sched/act_bpf.c
3629 F:      net/sched/cls_bpf.c
3630 F:      samples/bpf/
3631 F:      scripts/bpf_doc.py
3632 F:      scripts/pahole-flags.sh
3633 F:      scripts/pahole-version.sh
3634 F:      tools/bpf/
3635 F:      tools/lib/bpf/
3636 F:      tools/testing/selftests/bpf/
3637 N:      bpf
3638 K:      bpf
3639
3640 BPF JIT for ARM
3641 M:      Shubham Bansal <illusionist.neo@gmail.com>
3642 L:      netdev@vger.kernel.org
3643 L:      bpf@vger.kernel.org
3644 S:      Maintained
3645 F:      arch/arm/net/
3646
3647 BPF JIT for ARM64
3648 M:      Daniel Borkmann <daniel@iogearbox.net>
3649 M:      Alexei Starovoitov <ast@kernel.org>
3650 M:      Zi Shen Lim <zlim.lnx@gmail.com>
3651 L:      netdev@vger.kernel.org
3652 L:      bpf@vger.kernel.org
3653 S:      Supported
3654 F:      arch/arm64/net/
3655
3656 BPF JIT for MIPS (32-BIT AND 64-BIT)
3657 M:      Johan Almbladh <johan.almbladh@anyfinetworks.com>
3658 M:      Paul Burton <paulburton@kernel.org>
3659 L:      netdev@vger.kernel.org
3660 L:      bpf@vger.kernel.org
3661 S:      Maintained
3662 F:      arch/mips/net/
3663
3664 BPF JIT for NFP NICs
3665 M:      Jakub Kicinski <kuba@kernel.org>
3666 L:      netdev@vger.kernel.org
3667 L:      bpf@vger.kernel.org
3668 S:      Supported
3669 F:      drivers/net/ethernet/netronome/nfp/bpf/
3670
3671 BPF JIT for POWERPC (32-BIT AND 64-BIT)
3672 M:      Naveen N. Rao <naveen.n.rao@linux.ibm.com>
3673 L:      netdev@vger.kernel.org
3674 L:      bpf@vger.kernel.org
3675 S:      Maintained
3676 F:      arch/powerpc/net/
3677
3678 BPF JIT for RISC-V (32-bit)
3679 M:      Luke Nelson <luke.r.nels@gmail.com>
3680 M:      Xi Wang <xi.wang@gmail.com>
3681 L:      netdev@vger.kernel.org
3682 L:      bpf@vger.kernel.org
3683 S:      Maintained
3684 F:      arch/riscv/net/
3685 X:      arch/riscv/net/bpf_jit_comp64.c
3686
3687 BPF JIT for RISC-V (64-bit)
3688 M:      Björn Töpel <bjorn@kernel.org>
3689 L:      netdev@vger.kernel.org
3690 L:      bpf@vger.kernel.org
3691 S:      Maintained
3692 F:      arch/riscv/net/
3693 X:      arch/riscv/net/bpf_jit_comp32.c
3694
3695 BPF JIT for S390
3696 M:      Ilya Leoshkevich <iii@linux.ibm.com>
3697 M:      Heiko Carstens <hca@linux.ibm.com>
3698 M:      Vasily Gorbik <gor@linux.ibm.com>
3699 L:      netdev@vger.kernel.org
3700 L:      bpf@vger.kernel.org
3701 S:      Maintained
3702 F:      arch/s390/net/
3703 X:      arch/s390/net/pnet.c
3704
3705 BPF JIT for SPARC (32-BIT AND 64-BIT)
3706 M:      David S. Miller <davem@davemloft.net>
3707 L:      netdev@vger.kernel.org
3708 L:      bpf@vger.kernel.org
3709 S:      Maintained
3710 F:      arch/sparc/net/
3711
3712 BPF JIT for X86 32-BIT
3713 M:      Wang YanQing <udknight@gmail.com>
3714 L:      netdev@vger.kernel.org
3715 L:      bpf@vger.kernel.org
3716 S:      Maintained
3717 F:      arch/x86/net/bpf_jit_comp32.c
3718
3719 BPF JIT for X86 64-BIT
3720 M:      Alexei Starovoitov <ast@kernel.org>
3721 M:      Daniel Borkmann <daniel@iogearbox.net>
3722 L:      netdev@vger.kernel.org
3723 L:      bpf@vger.kernel.org
3724 S:      Supported
3725 F:      arch/x86/net/
3726 X:      arch/x86/net/bpf_jit_comp32.c
3727
3728 BPF LSM (Security Audit and Enforcement using BPF)
3729 M:      KP Singh <kpsingh@kernel.org>
3730 R:      Florent Revest <revest@chromium.org>
3731 R:      Brendan Jackman <jackmanb@chromium.org>
3732 L:      bpf@vger.kernel.org
3733 S:      Maintained
3734 F:      Documentation/bpf/prog_lsm.rst
3735 F:      include/linux/bpf_lsm.h
3736 F:      kernel/bpf/bpf_lsm.c
3737 F:      security/bpf/
3738
3739 BROADCOM B44 10/100 ETHERNET DRIVER
3740 M:      Michael Chan <michael.chan@broadcom.com>
3741 L:      netdev@vger.kernel.org
3742 S:      Supported
3743 F:      drivers/net/ethernet/broadcom/b44.*
3744
3745 BROADCOM B53/SF2 ETHERNET SWITCH DRIVER
3746 M:      Florian Fainelli <f.fainelli@gmail.com>
3747 L:      netdev@vger.kernel.org
3748 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
3749 S:      Supported
3750 F:      Documentation/devicetree/bindings/net/dsa/brcm,b53.yaml
3751 F:      drivers/net/dsa/b53/*
3752 F:      drivers/net/dsa/bcm_sf2*
3753 F:      include/linux/dsa/brcm.h
3754 F:      include/linux/platform_data/b53.h
3755
3756 BROADCOM BCM2711/BCM2835 ARM ARCHITECTURE
3757 M:      Nicolas Saenz Julienne <nsaenz@kernel.org>
3758 R:      Broadcom Kernel Team <bcm-kernel-feedback-list@broadcom.com>
3759 L:      linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
3760 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3761 S:      Maintained
3762 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nsaenz/linux-rpi.git
3763 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3764 F:      drivers/pci/controller/pcie-brcmstb.c
3765 F:      drivers/staging/vc04_services
3766 N:      bcm2711
3767 N:      bcm283*
3768
3769 BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE
3770 M:      Florian Fainelli <f.fainelli@gmail.com>
3771 M:      Ray Jui <rjui@broadcom.com>
3772 M:      Scott Branden <sbranden@broadcom.com>
3773 R:      Broadcom Kernel Team <bcm-kernel-feedback-list@broadcom.com>
3774 S:      Maintained
3775 T:      git git://github.com/broadcom/mach-bcm
3776 F:      arch/arm/mach-bcm/
3777 N:      bcm281*
3778 N:      bcm113*
3779 N:      bcm216*
3780 N:      kona
3781
3782 BROADCOM BCM47XX MIPS ARCHITECTURE
3783 M:      Hauke Mehrtens <hauke@hauke-m.de>
3784 M:      Rafał Miłecki <zajec5@gmail.com>
3785 L:      linux-mips@vger.kernel.org
3786 S:      Maintained
3787 F:      Documentation/devicetree/bindings/mips/brcm/
3788 F:      arch/mips/bcm47xx/*
3789 F:      arch/mips/include/asm/mach-bcm47xx/*
3790
3791 BROADCOM BCM4908 ETHERNET DRIVER
3792 M:      Rafał Miłecki <rafal@milecki.pl>
3793 R:      Broadcom Kernel Team <bcm-kernel-feedback-list@broadcom.com>
3794 L:      netdev@vger.kernel.org
3795 S:      Maintained
3796 F:      Documentation/devicetree/bindings/net/brcm,bcm4908-enet.yaml
3797 F:      drivers/net/ethernet/broadcom/bcm4908_enet.*
3798 F:      drivers/net/ethernet/broadcom/unimac.h
3799
3800 BROADCOM BCM4908 PINMUX DRIVER
3801 M:      Rafał Miłecki <rafal@milecki.pl>
3802 R:      Broadcom Kernel Team <bcm-kernel-feedback-list@broadcom.com>
3803 L:      linux-gpio@vger.kernel.org
3804 S:      Maintained
3805 F:      Documentation/devicetree/bindings/pinctrl/brcm,bcm4908-pinctrl.yaml
3806 F:      drivers/pinctrl/bcm/pinctrl-bcm4908.c
3807
3808 BROADCOM BCM5301X ARM ARCHITECTURE
3809 M:      Florian Fainelli <f.fainelli@gmail.com>
3810 M:      Hauke Mehrtens <hauke@hauke-m.de>
3811 M:      Rafał Miłecki <zajec5@gmail.com>
3812 R:      Broadcom Kernel Team <bcm-kernel-feedback-list@broadcom.com>
3813 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3814 S:      Maintained
3815 F:      arch/arm/boot/dts/bcm470*
3816 F:      arch/arm/boot/dts/bcm5301*
3817 F:      arch/arm/boot/dts/bcm953012*
3818 F:      arch/arm/mach-bcm/bcm_5301x.c
3819
3820 BROADCOM BCM53573 ARM ARCHITECTURE
3821 M:      Florian Fainelli <f.fainelli@gmail.com>
3822 M:      Rafał Miłecki <rafal@milecki.pl>
3823 R:      Broadcom Kernel Team <bcm-kernel-feedback-list@broadcom.com>
3824 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3825 S:      Maintained
3826 F:      arch/arm/boot/dts/bcm47189*
3827 F:      arch/arm/boot/dts/bcm53573*
3828
3829 BROADCOM BCM63XX ARM ARCHITECTURE
3830 M:      Florian Fainelli <f.fainelli@gmail.com>
3831 R:      Broadcom Kernel Team <bcm-kernel-feedback-list@broadcom.com>
3832 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3833 S:      Maintained
3834 T:      git git://github.com/broadcom/stblinux.git
3835 N:      bcm63xx
3836
3837 BROADCOM BCM63XX/BCM33XX UDC DRIVER
3838 M:      Kevin Cernekee <cernekee@gmail.com>
3839 L:      linux-usb@vger.kernel.org
3840 S:      Maintained
3841 F:      drivers/usb/gadget/udc/bcm63xx_udc.*
3842
3843 BROADCOM BCM7XXX ARM ARCHITECTURE
3844 M:      Florian Fainelli <f.fainelli@gmail.com>
3845 R:      Broadcom Kernel Team <bcm-kernel-feedback-list@broadcom.com>
3846 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3847 S:      Maintained
3848 T:      git git://github.com/broadcom/stblinux.git
3849 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3850 F:      arch/arm/boot/dts/bcm7*.dts*
3851 F:      arch/arm/include/asm/hardware/cache-b15-rac.h
3852 F:      arch/arm/mach-bcm/*brcmstb*
3853 F:      arch/arm/mm/cache-b15-rac.c
3854 F:      drivers/bus/brcmstb_gisb.c
3855 F:      drivers/pci/controller/pcie-brcmstb.c
3856 N:      brcmstb
3857 N:      bcm7038
3858 N:      bcm7120
3859
3860 BROADCOM BDC DRIVER
3861 M:      Al Cooper <alcooperx@gmail.com>
3862 L:      linux-usb@vger.kernel.org
3863 R:      Broadcom Kernel Team <bcm-kernel-feedback-list@broadcom.com>
3864 S:      Maintained
3865 F:      Documentation/devicetree/bindings/usb/brcm,bdc.yaml
3866 F:      drivers/usb/gadget/udc/bdc/
3867
3868 BROADCOM BMIPS CPUFREQ DRIVER
3869 M:      Markus Mayer <mmayer@broadcom.com>
3870 R:      Broadcom Kernel Team <bcm-kernel-feedback-list@broadcom.com>
3871 L:      linux-pm@vger.kernel.org
3872 S:      Maintained
3873 F:      drivers/cpufreq/bmips-cpufreq.c
3874
3875 BROADCOM BMIPS MIPS ARCHITECTURE
3876 M:      Florian Fainelli <f.fainelli@gmail.com>
3877 R:      Broadcom Kernel Team <bcm-kernel-feedback-list@broadcom.com>
3878 L:      linux-mips@vger.kernel.org
3879 S:      Maintained
3880 T:      git git://github.com/broadcom/stblinux.git
3881 F:      arch/mips/bmips/*
3882 F:      arch/mips/boot/dts/brcm/bcm*.dts*
3883 F:      arch/mips/include/asm/mach-bmips/*
3884 F:      arch/mips/kernel/*bmips*
3885 F:      drivers/soc/bcm/bcm63xx
3886 F:      drivers/irqchip/irq-bcm63*
3887 F:      drivers/irqchip/irq-bcm7*
3888 F:      drivers/irqchip/irq-brcmstb*
3889 F:      include/linux/bcm963xx_nvram.h
3890 F:      include/linux/bcm963xx_tag.h
3891
3892 BROADCOM BNX2 GIGABIT ETHERNET DRIVER
3893 M:      Rasesh Mody <rmody@marvell.com>
3894 M:      GR-Linux-NIC-Dev@marvell.com
3895 L:      netdev@vger.kernel.org
3896 S:      Supported
3897 F:      drivers/net/ethernet/broadcom/bnx2.*
3898 F:      drivers/net/ethernet/broadcom/bnx2_*
3899
3900 BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
3901 M:      Saurav Kashyap <skashyap@marvell.com>
3902 M:      Javed Hasan <jhasan@marvell.com>
3903 M:      GR-QLogic-Storage-Upstream@marvell.com
3904 L:      linux-scsi@vger.kernel.org
3905 S:      Supported
3906 F:      drivers/scsi/bnx2fc/
3907
3908 BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER
3909 M:      Nilesh Javali <njavali@marvell.com>
3910 M:      Manish Rangankar <mrangankar@marvell.com>
3911 M:      GR-QLogic-Storage-Upstream@marvell.com
3912 L:      linux-scsi@vger.kernel.org
3913 S:      Supported
3914 F:      drivers/scsi/bnx2i/
3915
3916 BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
3917 M:      Ariel Elior <aelior@marvell.com>
3918 M:      Sudarsana Kalluru <skalluru@marvell.com>
3919 M:      Manish Chopra <manishc@marvell.com>
3920 L:      netdev@vger.kernel.org
3921 S:      Supported
3922 F:      drivers/net/ethernet/broadcom/bnx2x/
3923
3924 BROADCOM BNXT_EN 50 GIGABIT ETHERNET DRIVER
3925 M:      Michael Chan <michael.chan@broadcom.com>
3926 L:      netdev@vger.kernel.org
3927 S:      Supported
3928 F:      drivers/firmware/broadcom/tee_bnxt_fw.c
3929 F:      drivers/net/ethernet/broadcom/bnxt/
3930 F:      include/linux/firmware/broadcom/tee_bnxt_fw.h
3931
3932 BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
3933 M:      Arend van Spriel <aspriel@gmail.com>
3934 M:      Franky Lin <franky.lin@broadcom.com>
3935 M:      Hante Meuleman <hante.meuleman@broadcom.com>
3936 L:      linux-wireless@vger.kernel.org
3937 L:      brcm80211-dev-list.pdl@broadcom.com
3938 L:      SHA-cyfmac-dev-list@infineon.com
3939 S:      Supported
3940 F:      drivers/net/wireless/broadcom/brcm80211/
3941
3942 BROADCOM BRCMSTB GPIO DRIVER
3943 M:      Doug Berger <opendmb@gmail.com>
3944 M:      Florian Fainelli <f.fainelli@gmail.com>
3945 R:      Broadcom Kernel Team <bcm-kernel-feedback-list@broadcom.com>
3946 S:      Supported
3947 F:      Documentation/devicetree/bindings/gpio/brcm,brcmstb-gpio.yaml
3948 F:      drivers/gpio/gpio-brcmstb.c
3949
3950 BROADCOM BRCMSTB I2C DRIVER
3951 M:      Kamal Dasu <kdasu.kdev@gmail.com>
3952 R:      Broadcom Kernel Team <bcm-kernel-feedback-list@broadcom.com>
3953 L:      linux-i2c@vger.kernel.org
3954 S:      Supported
3955 F:      Documentation/devicetree/bindings/i2c/brcm,brcmstb-i2c.yaml
3956 F:      drivers/i2c/busses/i2c-brcmstb.c
3957
3958 BROADCOM BRCMSTB UART DRIVER
3959 M:      Al Cooper <alcooperx@gmail.com>
3960 R:      Broadcom Kernel Team <bcm-kernel-feedback-list@broadcom.com>
3961 L:      linux-serial@vger.kernel.org
3962 S:      Maintained
3963 F:      Documentation/devicetree/bindings/serial/brcm,bcm7271-uart.yaml
3964 F:      drivers/tty/serial/8250/8250_bcm7271.c
3965
3966 BROADCOM BRCMSTB USB EHCI DRIVER
3967 M:      Al Cooper <alcooperx@gmail.com>
3968 R:      Broadcom Kernel Team <bcm-kernel-feedback-list@broadcom.com>
3969 L:      linux-usb@vger.kernel.org
3970 S:      Maintained
3971 F:      Documentation/devicetree/bindings/usb/brcm,bcm7445-ehci.yaml
3972 F:      drivers/usb/host/ehci-brcm.*
3973
3974 BROADCOM BRCMSTB USB PIN MAP DRIVER
3975 M:      Al Cooper <alcooperx@gmail.com>
3976 R:      Broadcom Kernel Team <bcm-kernel-feedback-list@broadcom.com>
3977 L:      linux-usb@vger.kernel.org
3978 S:      Maintained
3979 F:      Documentation/devicetree/bindings/usb/brcm,usb-pinmap.yaml
3980 F:      drivers/usb/misc/brcmstb-usb-pinmap.c
3981
3982 BROADCOM BRCMSTB USB2 and USB3 PHY DRIVER
3983 M:      Al Cooper <alcooperx@gmail.com>
3984 R:      Broadcom Kernel Team <bcm-kernel-feedback-list@broadcom.com>
3985 L:      linux-kernel@vger.kernel.org
3986 S:      Maintained
3987 F:      drivers/phy/broadcom/phy-brcm-usb*
3988
3989 BROADCOM ETHERNET PHY DRIVERS
3990 M:      Florian Fainelli <f.fainelli@gmail.com>
3991 R:      Broadcom Kernel Team <bcm-kernel-feedback-list@broadcom.com>
3992 L:      netdev@vger.kernel.org
3993 S:      Supported
3994 F:      Documentation/devicetree/bindings/net/broadcom-bcm87xx.txt
3995 F:      drivers/net/phy/bcm*.[ch]
3996 F:      drivers/net/phy/broadcom.c
3997 F:      include/linux/brcmphy.h
3998
3999 BROADCOM GENET ETHERNET DRIVER
4000 M:      Doug Berger <opendmb@gmail.com>
4001 M:      Florian Fainelli <f.fainelli@gmail.com>
4002 R:      Broadcom Kernel Team <bcm-kernel-feedback-list@broadcom.com>
4003 L:      netdev@vger.kernel.org
4004 S:      Supported
4005 F:      Documentation/devicetree/bindings/net/brcm,bcmgenet.yaml
4006 F:      Documentation/devicetree/bindings/net/brcm,unimac-mdio.yaml
4007 F:      drivers/net/ethernet/broadcom/genet/
4008 F:      drivers/net/ethernet/broadcom/unimac.h
4009 F:      drivers/net/mdio/mdio-bcm-unimac.c
4010 F:      include/linux/platform_data/bcmgenet.h
4011 F:      include/linux/platform_data/mdio-bcm-unimac.h
4012
4013 BROADCOM IPROC ARM ARCHITECTURE
4014 M:      Ray Jui <rjui@broadcom.com>
4015 M:      Scott Branden <sbranden@broadcom.com>
4016 R:      Broadcom Kernel Team <bcm-kernel-feedback-list@broadcom.com>
4017 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4018 S:      Maintained
4019 T:      git git://github.com/broadcom/stblinux.git
4020 F:      arch/arm64/boot/dts/broadcom/northstar2/*
4021 F:      arch/arm64/boot/dts/broadcom/stingray/*
4022 F:      drivers/clk/bcm/clk-ns*
4023 F:      drivers/clk/bcm/clk-sr*
4024 F:      drivers/pinctrl/bcm/pinctrl-ns*
4025 F:      include/dt-bindings/clock/bcm-sr*
4026 N:      iproc
4027 N:      cygnus
4028 N:      bcm[-_]nsp
4029 N:      bcm9113*
4030 N:      bcm9583*
4031 N:      bcm9585*
4032 N:      bcm9586*
4033 N:      bcm988312
4034 N:      bcm113*
4035 N:      bcm583*
4036 N:      bcm585*
4037 N:      bcm586*
4038 N:      bcm88312
4039 N:      hr2
4040 N:      stingray
4041
4042 BROADCOM IPROC GBIT ETHERNET DRIVER
4043 M:      Rafał Miłecki <rafal@milecki.pl>
4044 R:      Broadcom Kernel Team <bcm-kernel-feedback-list@broadcom.com>
4045 L:      netdev@vger.kernel.org
4046 S:      Maintained
4047 F:      Documentation/devicetree/bindings/net/brcm,amac.yaml
4048 F:      drivers/net/ethernet/broadcom/bgmac*
4049 F:      drivers/net/ethernet/broadcom/unimac.h
4050
4051 BROADCOM KONA GPIO DRIVER
4052 M:      Ray Jui <rjui@broadcom.com>
4053 R:      Broadcom Kernel Team <bcm-kernel-feedback-list@broadcom.com>
4054 S:      Supported
4055 F:      Documentation/devicetree/bindings/gpio/brcm,kona-gpio.txt
4056 F:      drivers/gpio/gpio-bcm-kona.c
4057
4058 BROADCOM MPI3 STORAGE CONTROLLER DRIVER
4059 M:      Sathya Prakash Veerichetty <sathya.prakash@broadcom.com>
4060 M:      Kashyap Desai <kashyap.desai@broadcom.com>
4061 M:      Sumit Saxena <sumit.saxena@broadcom.com>
4062 M:      Sreekanth Reddy <sreekanth.reddy@broadcom.com>
4063 L:      mpi3mr-linuxdrv.pdl@broadcom.com
4064 L:      linux-scsi@vger.kernel.org
4065 S:      Supported
4066 W:      https://www.broadcom.com/support/storage
4067 F:      drivers/scsi/mpi3mr/
4068
4069 BROADCOM NETXTREME-E ROCE DRIVER
4070 M:      Selvin Xavier <selvin.xavier@broadcom.com>
4071 L:      linux-rdma@vger.kernel.org
4072 S:      Supported
4073 W:      http://www.broadcom.com
4074 F:      drivers/infiniband/hw/bnxt_re/
4075 F:      include/uapi/rdma/bnxt_re-abi.h
4076
4077 BROADCOM NVRAM DRIVER
4078 M:      Rafał Miłecki <zajec5@gmail.com>
4079 L:      linux-mips@vger.kernel.org
4080 S:      Maintained
4081 F:      drivers/firmware/broadcom/*
4082
4083 BROADCOM PMB (POWER MANAGEMENT BUS) DRIVER
4084 M:      Rafał Miłecki <rafal@milecki.pl>
4085 M:      Florian Fainelli <f.fainelli@gmail.com>
4086 R:      Broadcom Kernel Team <bcm-kernel-feedback-list@broadcom.com>
4087 L:      linux-pm@vger.kernel.org
4088 S:      Maintained
4089 T:      git git://github.com/broadcom/stblinux.git
4090 F:      drivers/soc/bcm/bcm63xx/bcm-pmb.c
4091 F:      include/dt-bindings/soc/bcm-pmb.h
4092
4093 BROADCOM SPECIFIC AMBA DRIVER (BCMA)
4094 M:      Rafał Miłecki <zajec5@gmail.com>
4095 L:      linux-wireless@vger.kernel.org
4096 S:      Maintained
4097 F:      drivers/bcma/
4098 F:      include/linux/bcma/
4099
4100 BROADCOM SPI DRIVER
4101 M:      Kamal Dasu <kdasu.kdev@gmail.com>
4102 R:      Broadcom Kernel Team <bcm-kernel-feedback-list@broadcom.com>
4103 S:      Maintained
4104 F:      Documentation/devicetree/bindings/spi/brcm,spi-bcm-qspi.yaml
4105 F:      drivers/spi/spi-bcm-qspi.*
4106 F:      drivers/spi/spi-brcmstb-qspi.c
4107 F:      drivers/spi/spi-iproc-qspi.c
4108
4109 BROADCOM STB AVS CPUFREQ DRIVER
4110 M:      Markus Mayer <mmayer@broadcom.com>
4111 R:      Broadcom Kernel Team <bcm-kernel-feedback-list@broadcom.com>
4112 L:      linux-pm@vger.kernel.org
4113 S:      Maintained
4114 F:      Documentation/devicetree/bindings/cpufreq/brcm,stb-avs-cpu-freq.txt
4115 F:      drivers/cpufreq/brcmstb*
4116
4117 BROADCOM STB AVS TMON DRIVER
4118 M:      Markus Mayer <mmayer@broadcom.com>
4119 R:      Broadcom Kernel Team <bcm-kernel-feedback-list@broadcom.com>
4120 L:      linux-pm@vger.kernel.org
4121 S:      Maintained
4122 F:      Documentation/devicetree/bindings/thermal/brcm,avs-tmon.yaml
4123 F:      drivers/thermal/broadcom/brcmstb*
4124
4125 BROADCOM STB DPFE DRIVER
4126 M:      Markus Mayer <mmayer@broadcom.com>
4127 R:      Broadcom Kernel Team <bcm-kernel-feedback-list@broadcom.com>
4128 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4129 S:      Maintained
4130 F:      Documentation/devicetree/bindings/memory-controllers/brcm,dpfe-cpu.yaml
4131 F:      drivers/memory/brcmstb_dpfe.c
4132
4133 BROADCOM STB NAND FLASH DRIVER
4134 M:      Brian Norris <computersforpeace@gmail.com>
4135 M:      Kamal Dasu <kdasu.kdev@gmail.com>
4136 R:      Broadcom Kernel Team <bcm-kernel-feedback-list@broadcom.com>
4137 L:      linux-mtd@lists.infradead.org
4138 S:      Maintained
4139 F:      drivers/mtd/nand/raw/brcmnand/
4140 F:      include/linux/platform_data/brcmnand.h
4141
4142 BROADCOM STB PCIE DRIVER
4143 M:      Jim Quinlan <jim2101024@gmail.com>
4144 M:      Nicolas Saenz Julienne <nsaenz@kernel.org>
4145 M:      Florian Fainelli <f.fainelli@gmail.com>
4146 R:      Broadcom Kernel Team <bcm-kernel-feedback-list@broadcom.com>
4147 L:      linux-pci@vger.kernel.org
4148 S:      Maintained
4149 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
4150 F:      drivers/pci/controller/pcie-brcmstb.c
4151
4152 BROADCOM SYSTEMPORT ETHERNET DRIVER
4153 M:      Florian Fainelli <f.fainelli@gmail.com>
4154 R:      Broadcom Kernel Team <bcm-kernel-feedback-list@broadcom.com>
4155 L:      netdev@vger.kernel.org
4156 S:      Supported
4157 F:      drivers/net/ethernet/broadcom/bcmsysport.*
4158 F:      drivers/net/ethernet/broadcom/unimac.h
4159 F:      Documentation/devicetree/bindings/net/brcm,systemport.yaml
4160
4161 BROADCOM TG3 GIGABIT ETHERNET DRIVER
4162 M:      Siva Reddy Kallam <siva.kallam@broadcom.com>
4163 M:      Prashant Sreedharan <prashant@broadcom.com>
4164 M:      Michael Chan <mchan@broadcom.com>
4165 L:      netdev@vger.kernel.org
4166 S:      Supported
4167 F:      drivers/net/ethernet/broadcom/tg3.*
4168
4169 BROADCOM VK DRIVER
4170 M:      Scott Branden <scott.branden@broadcom.com>
4171 R:      Broadcom Kernel Team <bcm-kernel-feedback-list@broadcom.com>
4172 S:      Supported
4173 F:      drivers/misc/bcm-vk/
4174 F:      include/uapi/linux/misc/bcm_vk.h
4175
4176 BROCADE BFA FC SCSI DRIVER
4177 M:      Anil Gurumurthy <anil.gurumurthy@qlogic.com>
4178 M:      Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
4179 L:      linux-scsi@vger.kernel.org
4180 S:      Supported
4181 F:      drivers/scsi/bfa/
4182
4183 BROCADE BNA 10 GIGABIT ETHERNET DRIVER
4184 M:      Rasesh Mody <rmody@marvell.com>
4185 M:      Sudarsana Kalluru <skalluru@marvell.com>
4186 M:      GR-Linux-NIC-Dev@marvell.com
4187 L:      netdev@vger.kernel.org
4188 S:      Supported
4189 F:      drivers/net/ethernet/brocade/bna/
4190
4191 BSG (block layer generic sg v4 driver)
4192 M:      FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
4193 L:      linux-scsi@vger.kernel.org
4194 S:      Supported
4195 F:      block/bsg.c
4196 F:      include/linux/bsg.h
4197 F:      include/uapi/linux/bsg.h
4198
4199 BT87X AUDIO DRIVER
4200 M:      Clemens Ladisch <clemens@ladisch.de>
4201 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4202 S:      Maintained
4203 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
4204 F:      Documentation/sound/cards/bt87x.rst
4205 F:      sound/pci/bt87x.c
4206
4207 BT8XXGPIO DRIVER
4208 M:      Michael Buesch <m@bues.ch>
4209 S:      Maintained
4210 W:      http://bu3sch.de/btgpio.php
4211 F:      drivers/gpio/gpio-bt8xx.c
4212
4213 BTRFS FILE SYSTEM
4214 M:      Chris Mason <clm@fb.com>
4215 M:      Josef Bacik <josef@toxicpanda.com>
4216 M:      David Sterba <dsterba@suse.com>
4217 L:      linux-btrfs@vger.kernel.org
4218 S:      Maintained
4219 W:      http://btrfs.wiki.kernel.org/
4220 Q:      http://patchwork.kernel.org/project/linux-btrfs/list/
4221 C:      irc://irc.libera.chat/btrfs
4222 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kdave/linux.git
4223 F:      Documentation/filesystems/btrfs.rst
4224 F:      fs/btrfs/
4225 F:      include/linux/btrfs*
4226 F:      include/uapi/linux/btrfs*
4227
4228 BTTV VIDEO4LINUX DRIVER
4229 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
4230 L:      linux-media@vger.kernel.org
4231 S:      Odd fixes
4232 W:      https://linuxtv.org
4233 T:      git git://linuxtv.org/media_tree.git
4234 F:      Documentation/driver-api/media/drivers/bttv*
4235 F:      drivers/media/pci/bt8xx/bttv*
4236
4237 BUS FREQUENCY DRIVER FOR SAMSUNG EXYNOS
4238 M:      Chanwoo Choi <cw00.choi@samsung.com>
4239 L:      linux-pm@vger.kernel.org
4240 L:      linux-samsung-soc@vger.kernel.org
4241 S:      Maintained
4242 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
4243 F:      Documentation/devicetree/bindings/devfreq/exynos-bus.txt
4244 F:      drivers/devfreq/exynos-bus.c
4245
4246 BUSLOGIC SCSI DRIVER
4247 M:      Khalid Aziz <khalid@gonehiking.org>
4248 L:      linux-scsi@vger.kernel.org
4249 S:      Maintained
4250 F:      drivers/scsi/BusLogic.*
4251 F:      drivers/scsi/FlashPoint.*
4252
4253 C-MEDIA CMI8788 DRIVER
4254 M:      Clemens Ladisch <clemens@ladisch.de>
4255 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4256 S:      Maintained
4257 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
4258 F:      sound/pci/oxygen/
4259
4260 C-SKY ARCHITECTURE
4261 M:      Guo Ren <guoren@kernel.org>
4262 L:      linux-csky@vger.kernel.org
4263 S:      Supported
4264 T:      git https://github.com/c-sky/csky-linux.git
4265 F:      Documentation/devicetree/bindings/csky/
4266 F:      Documentation/devicetree/bindings/interrupt-controller/csky,*
4267 F:      Documentation/devicetree/bindings/timer/csky,*
4268 F:      arch/csky/
4269 F:      drivers/clocksource/timer-gx6605s.c
4270 F:      drivers/clocksource/timer-mp-csky.c
4271 F:      drivers/irqchip/irq-csky-*
4272 N:      csky
4273 K:      csky
4274
4275 CA8210 IEEE-802.15.4 RADIO DRIVER
4276 L:      linux-wpan@vger.kernel.org
4277 S:      Orphan
4278 W:      https://github.com/Cascoda/ca8210-linux.git
4279 F:      Documentation/devicetree/bindings/net/ieee802154/ca8210.txt
4280 F:      drivers/net/ieee802154/ca8210.c
4281
4282 CANAAN/KENDRYTE K210 SOC FPIOA DRIVER
4283 M:      Damien Le Moal <damien.lemoal@wdc.com>
4284 L:      linux-riscv@lists.infradead.org
4285 L:      linux-gpio@vger.kernel.org (pinctrl driver)
4286 F:      Documentation/devicetree/bindings/pinctrl/canaan,k210-fpioa.yaml
4287 F:      drivers/pinctrl/pinctrl-k210.c
4288
4289 CANAAN/KENDRYTE K210 SOC RESET CONTROLLER DRIVER
4290 M:      Damien Le Moal <damien.lemoal@wdc.com>
4291 L:      linux-kernel@vger.kernel.org
4292 L:      linux-riscv@lists.infradead.org
4293 S:      Maintained
4294 F:      Documentation/devicetree/bindings/reset/canaan,k210-rst.yaml
4295 F:      drivers/reset/reset-k210.c
4296
4297 CANAAN/KENDRYTE K210 SOC SYSTEM CONTROLLER DRIVER
4298 M:      Damien Le Moal <damien.lemoal@wdc.com>
4299 L:      linux-riscv@lists.infradead.org
4300 S:      Maintained
4301 F:      Documentation/devicetree/bindings/mfd/canaan,k210-sysctl.yaml
4302 F:      drivers/soc/canaan/
4303 F:      include/soc/canaan/
4304
4305 CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
4306 M:      David Howells <dhowells@redhat.com>
4307 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
4308 S:      Supported
4309 F:      Documentation/filesystems/caching/cachefiles.rst
4310 F:      fs/cachefiles/
4311
4312 CADENCE MIPI-CSI2 BRIDGES
4313 M:      Maxime Ripard <mripard@kernel.org>
4314 L:      linux-media@vger.kernel.org
4315 S:      Maintained
4316 F:      Documentation/devicetree/bindings/media/cdns,*.txt
4317 F:      drivers/media/platform/cadence/cdns-csi2*
4318
4319 CADENCE NAND DRIVER
4320 L:      linux-mtd@lists.infradead.org
4321 S:      Orphan
4322 F:      Documentation/devicetree/bindings/mtd/cadence-nand-controller.txt
4323 F:      drivers/mtd/nand/raw/cadence-nand-controller.c
4324
4325 CADENCE USB3 DRD IP DRIVER
4326 M:      Peter Chen <peter.chen@kernel.org>
4327 M:      Pawel Laszczak <pawell@cadence.com>
4328 R:      Roger Quadros <rogerq@kernel.org>
4329 R:      Aswath Govindraju <a-govindraju@ti.com>
4330 L:      linux-usb@vger.kernel.org
4331 S:      Maintained
4332 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4333 F:      Documentation/devicetree/bindings/usb/cdns,usb3.yaml
4334 F:      drivers/usb/cdns3/
4335 X:      drivers/usb/cdns3/cdnsp*
4336
4337 CADENCE USBSSP DRD IP DRIVER
4338 M:      Pawel Laszczak <pawell@cadence.com>
4339 L:      linux-usb@vger.kernel.org
4340 S:      Maintained
4341 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4342 F:      drivers/usb/cdns3/
4343 X:      drivers/usb/cdns3/cdns3*
4344
4345 CADET FM/AM RADIO RECEIVER DRIVER
4346 M:      Hans Verkuil <hverkuil@xs4all.nl>
4347 L:      linux-media@vger.kernel.org
4348 S:      Maintained
4349 W:      https://linuxtv.org
4350 T:      git git://linuxtv.org/media_tree.git
4351 F:      drivers/media/radio/radio-cadet*
4352
4353 CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
4354 L:      linux-media@vger.kernel.org
4355 S:      Orphan
4356 T:      git git://linuxtv.org/media_tree.git
4357 F:      Documentation/admin-guide/media/cafe_ccic*
4358 F:      drivers/media/platform/marvell/
4359
4360 CAIF NETWORK LAYER
4361 L:      netdev@vger.kernel.org
4362 S:      Orphan
4363 F:      Documentation/networking/caif/
4364 F:      drivers/net/caif/
4365 F:      include/net/caif/
4366 F:      include/uapi/linux/caif/
4367 F:      net/caif/
4368
4369 CAKE QDISC
4370 M:      Toke Høiland-Jørgensen <toke@toke.dk>
4371 L:      cake@lists.bufferbloat.net (moderated for non-subscribers)
4372 S:      Maintained
4373 F:      net/sched/sch_cake.c
4374
4375 CAN NETWORK DRIVERS
4376 M:      Wolfgang Grandegger <wg@grandegger.com>
4377 M:      Marc Kleine-Budde <mkl@pengutronix.de>
4378 L:      linux-can@vger.kernel.org
4379 S:      Maintained
4380 W:      https://github.com/linux-can
4381 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
4382 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
4383 F:      Documentation/devicetree/bindings/net/can/
4384 F:      Documentation/devicetree/bindings/phy/ti,tcan104x-can.yaml
4385 F:      drivers/net/can/
4386 F:      drivers/phy/phy-can-transceiver.c
4387 F:      include/linux/can/bittiming.h
4388 F:      include/linux/can/dev.h
4389 F:      include/linux/can/length.h
4390 F:      include/linux/can/platform/
4391 F:      include/linux/can/rx-offload.h
4392 F:      include/uapi/linux/can/error.h
4393 F:      include/uapi/linux/can/netlink.h
4394 F:      include/uapi/linux/can/vxcan.h
4395
4396 CAN NETWORK LAYER
4397 M:      Oliver Hartkopp <socketcan@hartkopp.net>
4398 M:      Marc Kleine-Budde <mkl@pengutronix.de>
4399 L:      linux-can@vger.kernel.org
4400 S:      Maintained
4401 W:      https://github.com/linux-can
4402 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
4403 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
4404 F:      Documentation/networking/can.rst
4405 F:      include/linux/can/can-ml.h
4406 F:      include/linux/can/core.h
4407 F:      include/linux/can/skb.h
4408 F:      include/net/netns/can.h
4409 F:      include/uapi/linux/can.h
4410 F:      include/uapi/linux/can/bcm.h
4411 F:      include/uapi/linux/can/gw.h
4412 F:      include/uapi/linux/can/isotp.h
4413 F:      include/uapi/linux/can/raw.h
4414 F:      net/can/
4415
4416 CAN-J1939 NETWORK LAYER
4417 M:      Robin van der Gracht <robin@protonic.nl>
4418 M:      Oleksij Rempel <o.rempel@pengutronix.de>
4419 R:      kernel@pengutronix.de
4420 L:      linux-can@vger.kernel.org
4421 S:      Maintained
4422 F:      Documentation/networking/j1939.rst
4423 F:      include/uapi/linux/can/j1939.h
4424 F:      net/can/j1939/
4425
4426 CAPABILITIES
4427 M:      Serge Hallyn <serge@hallyn.com>
4428 L:      linux-security-module@vger.kernel.org
4429 S:      Supported
4430 F:      include/linux/capability.h
4431 F:      include/uapi/linux/capability.h
4432 F:      kernel/capability.c
4433 F:      security/commoncap.c
4434
4435 CAPELLA MICROSYSTEMS LIGHT SENSOR DRIVER
4436 M:      Kevin Tsai <ktsai@capellamicro.com>
4437 S:      Maintained
4438 F:      drivers/iio/light/cm*
4439
4440 CARL9170 LINUX COMMUNITY WIRELESS DRIVER
4441 M:      Christian Lamparter <chunkeey@googlemail.com>
4442 L:      linux-wireless@vger.kernel.org
4443 S:      Maintained
4444 W:      https://wireless.wiki.kernel.org/en/users/Drivers/carl9170
4445 F:      drivers/net/wireless/ath/carl9170/
4446
4447 CAVIUM I2C DRIVER
4448 M:      Robert Richter <rric@kernel.org>
4449 S:      Odd Fixes
4450 W:      http://www.marvell.com
4451 F:      drivers/i2c/busses/i2c-octeon*
4452 F:      drivers/i2c/busses/i2c-thunderx*
4453
4454 CAVIUM LIQUIDIO NETWORK DRIVER
4455 M:      Derek Chickles <dchickles@marvell.com>
4456 M:      Satanand Burla <sburla@marvell.com>
4457 M:      Felix Manlunas <fmanlunas@marvell.com>
4458 L:      netdev@vger.kernel.org
4459 S:      Supported
4460 W:      http://www.marvell.com
4461 F:      drivers/net/ethernet/cavium/liquidio/
4462
4463 CAVIUM MMC DRIVER
4464 M:      Robert Richter <rric@kernel.org>
4465 S:      Odd Fixes
4466 W:      http://www.marvell.com
4467 F:      drivers/mmc/host/cavium*
4468
4469 CAVIUM OCTEON-TX CRYPTO DRIVER
4470 M:      George Cherian <gcherian@marvell.com>
4471 L:      linux-crypto@vger.kernel.org
4472 S:      Supported
4473 W:      http://www.marvell.com
4474 F:      drivers/crypto/cavium/cpt/
4475
4476 CAVIUM THUNDERX2 ARM64 SOC
4477 M:      Robert Richter <rric@kernel.org>
4478 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4479 S:      Odd Fixes
4480 F:      Documentation/devicetree/bindings/arm/cavium-thunder2.txt
4481 F:      arch/arm64/boot/dts/cavium/thunder2-99xx*
4482
4483 CBS/ETF/TAPRIO QDISCS
4484 M:      Vinicius Costa Gomes <vinicius.gomes@intel.com>
4485 S:      Maintained
4486 L:      netdev@vger.kernel.org
4487 F:      net/sched/sch_cbs.c
4488 F:      net/sched/sch_etf.c
4489 F:      net/sched/sch_taprio.c
4490
4491 CC2520 IEEE-802.15.4 RADIO DRIVER
4492 M:      Varka Bhadram <varkabhadram@gmail.com>
4493 L:      linux-wpan@vger.kernel.org
4494 S:      Maintained
4495 F:      Documentation/devicetree/bindings/net/ieee802154/cc2520.txt
4496 F:      drivers/net/ieee802154/cc2520.c
4497 F:      include/linux/spi/cc2520.h
4498
4499 CCREE ARM TRUSTZONE CRYPTOCELL REE DRIVER
4500 M:      Gilad Ben-Yossef <gilad@benyossef.com>
4501 L:      linux-crypto@vger.kernel.org
4502 S:      Supported
4503 W:      https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
4504 F:      drivers/crypto/ccree/
4505
4506 CCTRNG ARM TRUSTZONE CRYPTOCELL TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
4507 M:      Hadar Gat <hadar.gat@arm.com>
4508 L:      linux-crypto@vger.kernel.org
4509 S:      Supported
4510 F:      drivers/char/hw_random/cctrng.c
4511 F:      drivers/char/hw_random/cctrng.h
4512 F:      Documentation/devicetree/bindings/rng/arm-cctrng.yaml
4513 W:      https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
4514
4515 CEC FRAMEWORK
4516 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
4517 L:      linux-media@vger.kernel.org
4518 S:      Supported
4519 W:      http://linuxtv.org
4520 T:      git git://linuxtv.org/media_tree.git
4521 F:      Documentation/ABI/testing/debugfs-cec-error-inj
4522 F:      Documentation/devicetree/bindings/media/cec.txt
4523 F:      Documentation/driver-api/media/cec-core.rst
4524 F:      Documentation/userspace-api/media/cec
4525 F:      drivers/media/cec/
4526 F:      drivers/media/rc/keymaps/rc-cec.c
4527 F:      include/media/cec-notifier.h
4528 F:      include/media/cec.h
4529 F:      include/uapi/linux/cec-funcs.h
4530 F:      include/uapi/linux/cec.h
4531
4532 CEC GPIO DRIVER
4533 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
4534 L:      linux-media@vger.kernel.org
4535 S:      Supported
4536 W:      http://linuxtv.org
4537 T:      git git://linuxtv.org/media_tree.git
4538 F:      Documentation/devicetree/bindings/media/cec-gpio.txt
4539 F:      drivers/media/cec/platform/cec-gpio/
4540
4541 CELL BROADBAND ENGINE ARCHITECTURE
4542 M:      Arnd Bergmann <arnd@arndb.de>
4543 L:      linuxppc-dev@lists.ozlabs.org
4544 S:      Supported
4545 W:      http://www.ibm.com/developerworks/power/cell/
4546 F:      arch/powerpc/include/asm/cell*.h
4547 F:      arch/powerpc/include/asm/spu*.h
4548 F:      arch/powerpc/include/uapi/asm/spu*.h
4549 F:      arch/powerpc/platforms/cell/
4550
4551 CELLWISE CW2015 BATTERY DRIVER
4552 M:      Tobias Schrammm <t.schramm@manjaro.org>
4553 S:      Maintained
4554 F:      Documentation/devicetree/bindings/power/supply/cw2015_battery.yaml
4555 F:      drivers/power/supply/cw2015_battery.c
4556
4557 CEPH COMMON CODE (LIBCEPH)
4558 M:      Ilya Dryomov <idryomov@gmail.com>
4559 M:      Jeff Layton <jlayton@kernel.org>
4560 M:      Xiubo Li <xiubli@redhat.com>
4561 L:      ceph-devel@vger.kernel.org
4562 S:      Supported
4563 W:      http://ceph.com/
4564 T:      git git://github.com/ceph/ceph-client.git
4565 F:      include/linux/ceph/
4566 F:      include/linux/crush/
4567 F:      net/ceph/
4568
4569 CEPH DISTRIBUTED FILE SYSTEM CLIENT (CEPH)
4570 M:      Jeff Layton <jlayton@kernel.org>
4571 M:      Xiubo Li <xiubli@redhat.com>
4572 M:      Ilya Dryomov <idryomov@gmail.com>
4573 L:      ceph-devel@vger.kernel.org
4574 S:      Supported
4575 W:      http://ceph.com/
4576 T:      git git://github.com/ceph/ceph-client.git
4577 F:      Documentation/filesystems/ceph.rst
4578 F:      fs/ceph/
4579
4580 CERTIFICATE HANDLING
4581 M:      David Howells <dhowells@redhat.com>
4582 M:      David Woodhouse <dwmw2@infradead.org>
4583 L:      keyrings@vger.kernel.org
4584 S:      Maintained
4585 F:      Documentation/admin-guide/module-signing.rst
4586 F:      certs/
4587 F:      scripts/check-blacklist-hashes.awk
4588 F:      scripts/sign-file.c
4589 F:      tools/certs/
4590
4591 CFAG12864B LCD DRIVER
4592 M:      Miguel Ojeda <ojeda@kernel.org>
4593 S:      Maintained
4594 F:      drivers/auxdisplay/cfag12864b.c
4595 F:      include/linux/cfag12864b.h
4596
4597 CFAG12864BFB LCD FRAMEBUFFER DRIVER
4598 M:      Miguel Ojeda <ojeda@kernel.org>
4599 S:      Maintained
4600 F:      drivers/auxdisplay/cfag12864bfb.c
4601 F:      include/linux/cfag12864b.h
4602
4603 CHAR and MISC DRIVERS
4604 M:      Arnd Bergmann <arnd@arndb.de>
4605 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4606 S:      Supported
4607 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
4608 F:      drivers/char/
4609 F:      drivers/misc/
4610 F:      include/linux/miscdevice.h
4611 X:      drivers/char/agp/
4612 X:      drivers/char/hw_random/
4613 X:      drivers/char/ipmi/
4614 X:      drivers/char/random.c
4615 X:      drivers/char/tpm/
4616
4617 CHECKPATCH
4618 M:      Andy Whitcroft <apw@canonical.com>
4619 M:      Joe Perches <joe@perches.com>
4620 R:      Dwaipayan Ray <dwaipayanray1@gmail.com>
4621 R:      Lukas Bulwahn <lukas.bulwahn@gmail.com>
4622 S:      Maintained
4623 F:      scripts/checkpatch.pl
4624
4625 CHECKPATCH DOCUMENTATION
4626 M:      Dwaipayan Ray <dwaipayanray1@gmail.com>
4627 M:      Lukas Bulwahn <lukas.bulwahn@gmail.com>
4628 R:      Joe Perches <joe@perches.com>
4629 S:      Maintained
4630 F:      Documentation/dev-tools/checkpatch.rst
4631
4632 CHINESE DOCUMENTATION
4633 M:      Alex Shi <alexs@kernel.org>
4634 M:      Yanteng Si <siyanteng@loongson.cn>
4635 S:      Maintained
4636 F:      Documentation/translations/zh_CN/
4637
4638 CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
4639 M:      Peter Chen <peter.chen@kernel.org>
4640 L:      linux-usb@vger.kernel.org
4641 S:      Maintained
4642 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4643 F:      drivers/usb/chipidea/
4644
4645 CHIPONE ICN8318 I2C TOUCHSCREEN DRIVER
4646 M:      Hans de Goede <hdegoede@redhat.com>
4647 L:      linux-input@vger.kernel.org
4648 S:      Maintained
4649 F:      Documentation/devicetree/bindings/input/touchscreen/chipone,icn8318.yaml
4650 F:      drivers/input/touchscreen/chipone_icn8318.c
4651
4652 CHIPONE ICN8505 I2C TOUCHSCREEN DRIVER
4653 M:      Hans de Goede <hdegoede@redhat.com>
4654 L:      linux-input@vger.kernel.org
4655 S:      Maintained
4656 F:      drivers/input/touchscreen/chipone_icn8505.c
4657
4658 CHROME HARDWARE PLATFORM SUPPORT
4659 M:      Benson Leung <bleung@chromium.org>
4660 L:      chrome-platform@lists.linux.dev
4661 S:      Maintained
4662 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chrome-platform/linux.git
4663 F:      drivers/platform/chrome/
4664
4665 CHROMEOS EC CODEC DRIVER
4666 M:      Cheng-Yi Chiang <cychiang@chromium.org>
4667 M:      Tzung-Bi Shih <tzungbi@google.com>
4668 R:      Guenter Roeck <groeck@chromium.org>
4669 L:      chrome-platform@lists.linux.dev
4670 S:      Maintained
4671 F:      Documentation/devicetree/bindings/sound/google,cros-ec-codec.yaml
4672 F:      sound/soc/codecs/cros_ec_codec.*
4673
4674 CHROMEOS EC SUBDRIVERS
4675 M:      Benson Leung <bleung@chromium.org>
4676 R:      Guenter Roeck <groeck@chromium.org>
4677 L:      chrome-platform@lists.linux.dev
4678 S:      Maintained
4679 F:      drivers/power/supply/cros_usbpd-charger.c
4680 N:      cros_ec
4681 N:      cros-ec
4682
4683 CHROMEOS EC USB TYPE-C DRIVER
4684 M:      Prashant Malani <pmalani@chromium.org>
4685 L:      chrome-platform@lists.linux.dev
4686 S:      Maintained
4687 F:      drivers/platform/chrome/cros_ec_typec.c
4688
4689 CHROMEOS EC USB PD NOTIFY DRIVER
4690 M:      Prashant Malani <pmalani@chromium.org>
4691 L:      chrome-platform@lists.linux.dev
4692 S:      Maintained
4693 F:      drivers/platform/chrome/cros_usbpd_notify.c
4694 F:      include/linux/platform_data/cros_usbpd_notify.h
4695
4696 CHRONTEL CH7322 CEC DRIVER
4697 M:      Joe Tessler <jrt@google.com>
4698 L:      linux-media@vger.kernel.org
4699 S:      Maintained
4700 T:      git git://linuxtv.org/media_tree.git
4701 F:      Documentation/devicetree/bindings/media/i2c/chrontel,ch7322.yaml
4702 F:      drivers/media/cec/i2c/ch7322.c
4703
4704 CIRRUS LOGIC AUDIO CODEC DRIVERS
4705 M:      James Schulman <james.schulman@cirrus.com>
4706 M:      David Rhodes <david.rhodes@cirrus.com>
4707 M:      Lucas Tanure <tanureal@opensource.cirrus.com>
4708 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4709 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4710 L:      patches@opensource.cirrus.com
4711 S:      Maintained
4712 F:      Documentation/devicetree/bindings/sound/cirrus,cs*
4713 F:      include/dt-bindings/sound/cs*
4714 F:      sound/pci/hda/cs*
4715 F:      sound/soc/codecs/cs*
4716
4717 CIRRUS LOGIC DSP FIRMWARE DRIVER
4718 M:      Simon Trimmer <simont@opensource.cirrus.com>
4719 M:      Charles Keepax <ckeepax@opensource.cirrus.com>
4720 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4721 L:      patches@opensource.cirrus.com
4722 S:      Supported
4723 W:      https://github.com/CirrusLogic/linux-drivers/wiki
4724 T:      git https://github.com/CirrusLogic/linux-drivers.git
4725 F:      drivers/firmware/cirrus/*
4726 F:      include/linux/firmware/cirrus/*
4727
4728 CIRRUS LOGIC EP93XX ETHERNET DRIVER
4729 M:      Hartley Sweeten <hsweeten@visionengravers.com>
4730 L:      netdev@vger.kernel.org
4731 S:      Maintained
4732 F:      drivers/net/ethernet/cirrus/ep93xx_eth.c
4733
4734 CIRRUS LOGIC LOCHNAGAR DRIVER
4735 M:      Charles Keepax <ckeepax@opensource.cirrus.com>
4736 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4737 L:      patches@opensource.cirrus.com
4738 S:      Supported
4739 F:      Documentation/devicetree/bindings/clock/cirrus,lochnagar.yaml
4740 F:      Documentation/devicetree/bindings/hwmon/cirrus,lochnagar.yaml
4741 F:      Documentation/devicetree/bindings/mfd/cirrus,lochnagar.yaml
4742 F:      Documentation/devicetree/bindings/pinctrl/cirrus,lochnagar.yaml
4743 F:      Documentation/devicetree/bindings/sound/cirrus,lochnagar.yaml
4744 F:      Documentation/hwmon/lochnagar.rst
4745 F:      drivers/clk/clk-lochnagar.c
4746 F:      drivers/hwmon/lochnagar-hwmon.c
4747 F:      drivers/mfd/lochnagar-i2c.c
4748 F:      drivers/pinctrl/cirrus/pinctrl-lochnagar.c
4749 F:      drivers/regulator/lochnagar-regulator.c
4750 F:      include/dt-bindings/clk/lochnagar.h
4751 F:      include/dt-bindings/pinctrl/lochnagar.h
4752 F:      include/linux/mfd/lochnagar*
4753 F:      sound/soc/codecs/lochnagar-sc.c
4754
4755 CIRRUS LOGIC MADERA CODEC DRIVERS
4756 M:      Charles Keepax <ckeepax@opensource.cirrus.com>
4757 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4758 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4759 L:      patches@opensource.cirrus.com
4760 S:      Supported
4761 W:      https://github.com/CirrusLogic/linux-drivers/wiki
4762 T:      git https://github.com/CirrusLogic/linux-drivers.git
4763 F:      Documentation/devicetree/bindings/mfd/cirrus,madera.yaml
4764 F:      Documentation/devicetree/bindings/pinctrl/cirrus,madera.yaml
4765 F:      Documentation/devicetree/bindings/sound/cirrus,madera.yaml
4766 F:      drivers/gpio/gpio-madera*
4767 F:      drivers/irqchip/irq-madera*
4768 F:      drivers/mfd/cs47l*
4769 F:      drivers/mfd/madera*
4770 F:      drivers/pinctrl/cirrus/*
4771 F:      include/dt-bindings/sound/madera*
4772 F:      include/linux/irqchip/irq-madera*
4773 F:      include/linux/mfd/madera/*
4774 F:      include/sound/madera*
4775 F:      sound/soc/codecs/cs47l*
4776 F:      sound/soc/codecs/madera*
4777
4778 CISCO FCOE HBA DRIVER
4779 M:      Satish Kharat <satishkh@cisco.com>
4780 M:      Sesidhar Baddela <sebaddel@cisco.com>
4781 M:      Karan Tilak Kumar <kartilak@cisco.com>
4782 L:      linux-scsi@vger.kernel.org
4783 S:      Supported
4784 F:      drivers/scsi/fnic/
4785
4786 CISCO SCSI HBA DRIVER
4787 M:      Karan Tilak Kumar <kartilak@cisco.com>
4788 M:      Sesidhar Baddela <sebaddel@cisco.com>
4789 L:      linux-scsi@vger.kernel.org
4790 S:      Supported
4791 F:      drivers/scsi/snic/
4792
4793 CISCO VIC ETHERNET NIC DRIVER
4794 M:      Christian Benvenuti <benve@cisco.com>
4795 M:      Govindarajulu Varadarajan <_govind@gmx.com>
4796 S:      Supported
4797 F:      drivers/net/ethernet/cisco/enic/
4798
4799 CISCO VIC LOW LATENCY NIC DRIVER
4800 M:      Christian Benvenuti <benve@cisco.com>
4801 M:      Nelson Escobar <neescoba@cisco.com>
4802 S:      Supported
4803 F:      drivers/infiniband/hw/usnic/
4804
4805 CLANG-FORMAT FILE
4806 M:      Miguel Ojeda <ojeda@kernel.org>
4807 S:      Maintained
4808 F:      .clang-format
4809
4810 CLANG/LLVM BUILD SUPPORT
4811 M:      Nathan Chancellor <nathan@kernel.org>
4812 M:      Nick Desaulniers <ndesaulniers@google.com>
4813 R:      Tom Rix <trix@redhat.com>
4814 L:      llvm@lists.linux.dev
4815 S:      Supported
4816 W:      https://clangbuiltlinux.github.io/
4817 B:      https://github.com/ClangBuiltLinux/linux/issues
4818 C:      irc://irc.libera.chat/clangbuiltlinux
4819 F:      Documentation/kbuild/llvm.rst
4820 F:      include/linux/compiler-clang.h
4821 F:      scripts/Makefile.clang
4822 F:      scripts/clang-tools/
4823 K:      \b(?i:clang|llvm)\b
4824
4825 CLANG CONTROL FLOW INTEGRITY SUPPORT
4826 M:      Sami Tolvanen <samitolvanen@google.com>
4827 M:      Kees Cook <keescook@chromium.org>
4828 R:      Nathan Chancellor <nathan@kernel.org>
4829 R:      Nick Desaulniers <ndesaulniers@google.com>
4830 L:      llvm@lists.linux.dev
4831 S:      Supported
4832 B:      https://github.com/ClangBuiltLinux/linux/issues
4833 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/clang/features
4834 F:      include/linux/cfi.h
4835 F:      kernel/cfi.c
4836
4837 CLK API
4838 M:      Russell King <linux@armlinux.org.uk>
4839 L:      linux-clk@vger.kernel.org
4840 S:      Maintained
4841 F:      include/linux/clk.h
4842
4843 CLOCKSOURCE, CLOCKEVENT DRIVERS
4844 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4845 M:      Thomas Gleixner <tglx@linutronix.de>
4846 L:      linux-kernel@vger.kernel.org
4847 S:      Supported
4848 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
4849 F:      Documentation/devicetree/bindings/timer/
4850 F:      drivers/clocksource/
4851
4852 CMPC ACPI DRIVER
4853 M:      Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
4854 M:      Daniel Oliveira Nascimento <don@syst.com.br>
4855 L:      platform-driver-x86@vger.kernel.org
4856 S:      Supported
4857 F:      drivers/platform/x86/classmate-laptop.c
4858
4859 COBALT MEDIA DRIVER
4860 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
4861 L:      linux-media@vger.kernel.org
4862 S:      Supported
4863 W:      https://linuxtv.org
4864 T:      git git://linuxtv.org/media_tree.git
4865 F:      drivers/media/pci/cobalt/
4866
4867 COCCINELLE/Semantic Patches (SmPL)
4868 M:      Julia Lawall <Julia.Lawall@inria.fr>
4869 M:      Nicolas Palix <nicolas.palix@imag.fr>
4870 L:      cocci@inria.fr (moderated for non-subscribers)
4871 S:      Supported
4872 W:      https://coccinelle.gitlabpages.inria.fr/website/
4873 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jlawall/linux.git
4874 F:      Documentation/dev-tools/coccinelle.rst
4875 F:      scripts/coccicheck
4876 F:      scripts/coccinelle/
4877
4878 CODA FILE SYSTEM
4879 M:      Jan Harkes <jaharkes@cs.cmu.edu>
4880 M:      coda@cs.cmu.edu
4881 L:      codalist@coda.cs.cmu.edu
4882 S:      Maintained
4883 W:      http://www.coda.cs.cmu.edu/
4884 F:      Documentation/filesystems/coda.rst
4885 F:      fs/coda/
4886 F:      include/linux/coda*.h
4887 F:      include/uapi/linux/coda*.h
4888
4889 CODA V4L2 MEM2MEM DRIVER
4890 M:      Philipp Zabel <p.zabel@pengutronix.de>
4891 L:      linux-media@vger.kernel.org
4892 S:      Maintained
4893 F:      Documentation/devicetree/bindings/media/coda.yaml
4894 F:      drivers/media/platform/chips-media/
4895
4896 CODE OF CONDUCT
4897 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4898 S:      Supported
4899 F:      Documentation/process/code-of-conduct-interpretation.rst
4900 F:      Documentation/process/code-of-conduct.rst
4901
4902 COMEDI DRIVERS
4903 M:      Ian Abbott <abbotti@mev.co.uk>
4904 M:      H Hartley Sweeten <hsweeten@visionengravers.com>
4905 S:      Odd Fixes
4906 F:      drivers/comedi/
4907 F:      include/linux/comedi/
4908 F:      include/uapi/linux/comedi.h
4909
4910 COMMON CLK FRAMEWORK
4911 M:      Michael Turquette <mturquette@baylibre.com>
4912 M:      Stephen Boyd <sboyd@kernel.org>
4913 L:      linux-clk@vger.kernel.org
4914 S:      Maintained
4915 Q:      http://patchwork.kernel.org/project/linux-clk/list/
4916 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git
4917 F:      Documentation/devicetree/bindings/clock/
4918 F:      drivers/clk/
4919 F:      include/linux/clk-pr*
4920 F:      include/linux/clk/
4921 F:      include/linux/of_clk.h
4922 X:      drivers/clk/clkdev.c
4923
4924 COMMON INTERNET FILE SYSTEM CLIENT (CIFS)
4925 M:      Steve French <sfrench@samba.org>
4926 L:      linux-cifs@vger.kernel.org
4927 L:      samba-technical@lists.samba.org (moderated for non-subscribers)
4928 S:      Supported
4929 W:      http://linux-cifs.samba.org/
4930 T:      git git://git.samba.org/sfrench/cifs-2.6.git
4931 F:      Documentation/admin-guide/cifs/
4932 F:      fs/cifs/
4933 F:      fs/smbfs_common/
4934
4935 COMPACTPCI HOTPLUG CORE
4936 M:      Scott Murray <scott@spiteful.org>
4937 L:      linux-pci@vger.kernel.org
4938 S:      Maintained
4939 F:      drivers/pci/hotplug/cpci_hotplug*
4940
4941 COMPACTPCI HOTPLUG GENERIC DRIVER
4942 M:      Scott Murray <scott@spiteful.org>
4943 L:      linux-pci@vger.kernel.org
4944 S:      Maintained
4945 F:      drivers/pci/hotplug/cpcihp_generic.c
4946
4947 COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
4948 M:      Scott Murray <scott@spiteful.org>
4949 L:      linux-pci@vger.kernel.org
4950 S:      Maintained
4951 F:      drivers/pci/hotplug/cpcihp_zt5550.*
4952
4953 COMPAL LAPTOP SUPPORT
4954 M:      Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
4955 L:      platform-driver-x86@vger.kernel.org
4956 S:      Maintained
4957 F:      drivers/platform/x86/compal-laptop.c
4958
4959 COMPILER ATTRIBUTES
4960 M:      Miguel Ojeda <ojeda@kernel.org>
4961 R:      Nick Desaulniers <ndesaulniers@google.com>
4962 S:      Maintained
4963 F:      include/linux/compiler_attributes.h
4964
4965 COMPUTE EXPRESS LINK (CXL)
4966 M:      Alison Schofield <alison.schofield@intel.com>
4967 M:      Vishal Verma <vishal.l.verma@intel.com>
4968 M:      Ira Weiny <ira.weiny@intel.com>
4969 M:      Ben Widawsky <ben.widawsky@intel.com>
4970 M:      Dan Williams <dan.j.williams@intel.com>
4971 L:      linux-cxl@vger.kernel.org
4972 S:      Maintained
4973 F:      drivers/cxl/
4974 F:      include/uapi/linux/cxl_mem.h
4975
4976 CONEXANT ACCESSRUNNER USB DRIVER
4977 L:      accessrunner-general@lists.sourceforge.net
4978 S:      Orphan
4979 W:      http://accessrunner.sourceforge.net/
4980 F:      drivers/usb/atm/cxacru.c
4981
4982 CONFIGFS
4983 M:      Joel Becker <jlbec@evilplan.org>
4984 M:      Christoph Hellwig <hch@lst.de>
4985 S:      Supported
4986 T:      git git://git.infradead.org/users/hch/configfs.git
4987 F:      fs/configfs/
4988 F:      include/linux/configfs.h
4989 F:      samples/configfs/
4990
4991 CONSOLE SUBSYSTEM
4992 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4993 S:      Supported
4994 F:      drivers/video/console/
4995 F:      include/linux/console*
4996
4997 CONTEXT TRACKING
4998 M:      Frederic Weisbecker <frederic@kernel.org>
4999 S:      Maintained
5000 F:      kernel/context_tracking.c
5001 F:      include/linux/context_tracking*
5002
5003 CONTROL GROUP (CGROUP)
5004 M:      Tejun Heo <tj@kernel.org>
5005 M:      Zefan Li <lizefan.x@bytedance.com>
5006 M:      Johannes Weiner <hannes@cmpxchg.org>
5007 L:      cgroups@vger.kernel.org
5008 S:      Maintained
5009 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
5010 F:      Documentation/admin-guide/cgroup-v1/
5011 F:      Documentation/admin-guide/cgroup-v2.rst
5012 F:      include/linux/cgroup*
5013 F:      kernel/cgroup/
5014
5015 CONTROL GROUP - BLOCK IO CONTROLLER (BLKIO)
5016 M:      Tejun Heo <tj@kernel.org>
5017 M:      Jens Axboe <axboe@kernel.dk>
5018 L:      cgroups@vger.kernel.org
5019 L:      linux-block@vger.kernel.org
5020 T:      git git://git.kernel.dk/linux-block
5021 F:      Documentation/admin-guide/cgroup-v1/blkio-controller.rst
5022 F:      block/bfq-cgroup.c
5023 F:      block/blk-cgroup.c
5024 F:      block/blk-iolatency.c
5025 F:      block/blk-throttle.c
5026 F:      include/linux/blk-cgroup.h
5027
5028 CONTROL GROUP - CPUSET
5029 M:      Zefan Li <lizefan.x@bytedance.com>
5030 L:      cgroups@vger.kernel.org
5031 S:      Maintained
5032 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
5033 F:      Documentation/admin-guide/cgroup-v1/cpusets.rst
5034 F:      include/linux/cpuset.h
5035 F:      kernel/cgroup/cpuset.c
5036
5037 CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG)
5038 M:      Johannes Weiner <hannes@cmpxchg.org>
5039 M:      Michal Hocko <mhocko@kernel.org>
5040 M:      Roman Gushchin <roman.gushchin@linux.dev>
5041 M:      Shakeel Butt <shakeelb@google.com>
5042 L:      cgroups@vger.kernel.org
5043 L:      linux-mm@kvack.org
5044 S:      Maintained
5045 F:      mm/memcontrol.c
5046 F:      mm/swap_cgroup.c
5047
5048 CORETEMP HARDWARE MONITORING DRIVER
5049 M:      Fenghua Yu <fenghua.yu@intel.com>
5050 L:      linux-hwmon@vger.kernel.org
5051 S:      Maintained
5052 F:      Documentation/hwmon/coretemp.rst
5053 F:      drivers/hwmon/coretemp.c
5054
5055 CORSAIR-CPRO HARDWARE MONITOR DRIVER
5056 M:      Marius Zachmann <mail@mariuszachmann.de>
5057 L:      linux-hwmon@vger.kernel.org
5058 S:      Maintained
5059 F:      drivers/hwmon/corsair-cpro.c
5060
5061 CORSAIR-PSU HARDWARE MONITOR DRIVER
5062 M:      Wilken Gottwalt <wilken.gottwalt@posteo.net>
5063 L:      linux-hwmon@vger.kernel.org
5064 S:      Maintained
5065 F:      Documentation/hwmon/corsair-psu.rst
5066 F:      drivers/hwmon/corsair-psu.c
5067
5068 COUNTER SUBSYSTEM
5069 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
5070 L:      linux-iio@vger.kernel.org
5071 S:      Maintained
5072 T:      git git@gitlab.com:vilhelmgray/counter.git
5073 F:      Documentation/ABI/testing/sysfs-bus-counter
5074 F:      Documentation/driver-api/generic-counter.rst
5075 F:      drivers/counter/
5076 F:      include/linux/counter.h
5077 F:      include/uapi/linux/counter.h
5078 F:      tools/counter/
5079
5080 CP2615 I2C DRIVER
5081 M:      Bence Csókás <bence98@sch.bme.hu>
5082 S:      Maintained
5083 F:      drivers/i2c/busses/i2c-cp2615.c
5084
5085 CPMAC ETHERNET DRIVER
5086 M:      Florian Fainelli <f.fainelli@gmail.com>
5087 L:      netdev@vger.kernel.org
5088 S:      Maintained
5089 F:      drivers/net/ethernet/ti/cpmac.c
5090
5091 CPU FREQUENCY DRIVERS - VEXPRESS SPC ARM BIG LITTLE
5092 M:      Viresh Kumar <viresh.kumar@linaro.org>
5093 M:      Sudeep Holla <sudeep.holla@arm.com>
5094 L:      linux-pm@vger.kernel.org
5095 S:      Maintained
5096 W:      http://www.arm.com/products/processors/technologies/biglittleprocessing.php
5097 F:      drivers/cpufreq/vexpress-spc-cpufreq.c
5098
5099 CPU FREQUENCY SCALING FRAMEWORK
5100 M:      "Rafael J. Wysocki" <rafael@kernel.org>
5101 M:      Viresh Kumar <viresh.kumar@linaro.org>
5102 L:      linux-pm@vger.kernel.org
5103 S:      Maintained
5104 B:      https://bugzilla.kernel.org
5105 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
5106 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git (For ARM Updates)
5107 F:      Documentation/admin-guide/pm/cpufreq.rst
5108 F:      Documentation/admin-guide/pm/intel_pstate.rst
5109 F:      Documentation/cpu-freq/
5110 F:      Documentation/devicetree/bindings/cpufreq/
5111 F:      drivers/cpufreq/
5112 F:      include/linux/cpufreq.h
5113 F:      include/linux/sched/cpufreq.h
5114 F:      kernel/sched/cpufreq*.c
5115 F:      tools/testing/selftests/cpufreq/
5116
5117 CPU IDLE TIME MANAGEMENT FRAMEWORK
5118 M:      "Rafael J. Wysocki" <rafael@kernel.org>
5119 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
5120 L:      linux-pm@vger.kernel.org
5121 S:      Maintained
5122 B:      https://bugzilla.kernel.org
5123 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
5124 F:      Documentation/admin-guide/pm/cpuidle.rst
5125 F:      Documentation/driver-api/pm/cpuidle.rst
5126 F:      drivers/cpuidle/
5127 F:      include/linux/cpuidle.h
5128
5129 CPU POWER MONITORING SUBSYSTEM
5130 M:      Thomas Renninger <trenn@suse.com>
5131 M:      Shuah Khan <shuah@kernel.org>
5132 M:      Shuah Khan <skhan@linuxfoundation.org>
5133 L:      linux-pm@vger.kernel.org
5134 S:      Maintained
5135 F:      tools/power/cpupower/
5136
5137 CPUID/MSR DRIVER
5138 M:      "H. Peter Anvin" <hpa@zytor.com>
5139 S:      Maintained
5140 F:      arch/x86/kernel/cpuid.c
5141 F:      arch/x86/kernel/msr.c
5142
5143 CPUIDLE DRIVER - ARM BIG LITTLE
5144 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
5145 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
5146 L:      linux-pm@vger.kernel.org
5147 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5148 S:      Maintained
5149 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
5150 F:      drivers/cpuidle/cpuidle-big_little.c
5151
5152 CPUIDLE DRIVER - ARM EXYNOS
5153 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
5154 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
5155 M:      Kukjin Kim <kgene@kernel.org>
5156 L:      linux-pm@vger.kernel.org
5157 L:      linux-samsung-soc@vger.kernel.org
5158 S:      Supported
5159 F:      arch/arm/mach-exynos/pm.c
5160 F:      drivers/cpuidle/cpuidle-exynos.c
5161 F:      include/linux/platform_data/cpuidle-exynos.h
5162
5163 CPUIDLE DRIVER - ARM PSCI
5164 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
5165 M:      Sudeep Holla <sudeep.holla@arm.com>
5166 L:      linux-pm@vger.kernel.org
5167 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5168 S:      Supported
5169 F:      drivers/cpuidle/cpuidle-psci.c
5170
5171 CPUIDLE DRIVER - ARM PSCI PM DOMAIN
5172 M:      Ulf Hansson <ulf.hansson@linaro.org>
5173 L:      linux-pm@vger.kernel.org
5174 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5175 S:      Supported
5176 F:      drivers/cpuidle/cpuidle-psci.h
5177 F:      drivers/cpuidle/cpuidle-psci-domain.c
5178
5179 CPUIDLE DRIVER - DT IDLE PM DOMAIN
5180 M:      Ulf Hansson <ulf.hansson@linaro.org>
5181 L:      linux-pm@vger.kernel.org
5182 S:      Supported
5183 F:      drivers/cpuidle/dt_idle_genpd.c
5184 F:      drivers/cpuidle/dt_idle_genpd.h
5185
5186 CPUIDLE DRIVER - RISC-V SBI
5187 M:      Anup Patel <anup@brainfault.org>
5188 L:      linux-pm@vger.kernel.org
5189 L:      linux-riscv@lists.infradead.org
5190 S:      Maintained
5191 F:      drivers/cpuidle/cpuidle-riscv-sbi.c
5192
5193 CRAMFS FILESYSTEM
5194 M:      Nicolas Pitre <nico@fluxnic.net>
5195 S:      Maintained
5196 F:      Documentation/filesystems/cramfs.rst
5197 F:      fs/cramfs/
5198
5199 CREATIVE SB0540
5200 M:      Bastien Nocera <hadess@hadess.net>
5201 L:      linux-input@vger.kernel.org
5202 S:      Maintained
5203 F:      drivers/hid/hid-creative-sb0540.c
5204
5205 CRYPTO API
5206 M:      Herbert Xu <herbert@gondor.apana.org.au>
5207 M:      "David S. Miller" <davem@davemloft.net>
5208 L:      linux-crypto@vger.kernel.org
5209 S:      Maintained
5210 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
5211 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
5212 F:      Documentation/crypto/
5213 F:      Documentation/devicetree/bindings/crypto/
5214 F:      arch/*/crypto/
5215 F:      crypto/
5216 F:      drivers/crypto/
5217 F:      include/crypto/
5218 F:      include/linux/crypto*
5219 F:      lib/crypto/
5220
5221 CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
5222 M:      Neil Horman <nhorman@tuxdriver.com>
5223 L:      linux-crypto@vger.kernel.org
5224 S:      Maintained
5225 F:      crypto/ansi_cprng.c
5226 F:      crypto/rng.c
5227
5228 CS3308 MEDIA DRIVER
5229 M:      Hans Verkuil <hverkuil@xs4all.nl>
5230 L:      linux-media@vger.kernel.org
5231 S:      Odd Fixes
5232 W:      http://linuxtv.org
5233 T:      git git://linuxtv.org/media_tree.git
5234 F:      drivers/media/i2c/cs3308.c
5235
5236 CS5535 Audio ALSA driver
5237 M:      Jaya Kumar <jayakumar.alsa@gmail.com>
5238 S:      Maintained
5239 F:      sound/pci/cs5535audio/
5240
5241 CSI DRIVERS FOR ALLWINNER V3s
5242 M:      Yong Deng <yong.deng@magewell.com>
5243 L:      linux-media@vger.kernel.org
5244 S:      Maintained
5245 T:      git git://linuxtv.org/media_tree.git
5246 F:      Documentation/devicetree/bindings/media/allwinner,sun6i-a31-csi.yaml
5247 F:      drivers/media/platform/sunxi/sun6i-csi/
5248
5249 CTU CAN FD DRIVER
5250 M:      Pavel Pisa <pisa@cmp.felk.cvut.cz>
5251 M:      Ondrej Ille <ondrej.ille@gmail.com>
5252 L:      linux-can@vger.kernel.org
5253 S:      Maintained
5254 F:      Documentation/devicetree/bindings/net/can/ctu,ctucanfd.yaml
5255 F:      drivers/net/can/ctucanfd/
5256
5257 CW1200 WLAN driver
5258 M:      Solomon Peachy <pizza@shaftnet.org>
5259 S:      Maintained
5260 F:      drivers/net/wireless/st/cw1200/
5261
5262 CX18 VIDEO4LINUX DRIVER
5263 M:      Andy Walls <awalls@md.metrocast.net>
5264 L:      linux-media@vger.kernel.org
5265 S:      Maintained
5266 W:      https://linuxtv.org
5267 T:      git git://linuxtv.org/media_tree.git
5268 F:      drivers/media/pci/cx18/
5269 F:      include/uapi/linux/ivtv*
5270
5271 CX2341X MPEG ENCODER HELPER MODULE
5272 M:      Hans Verkuil <hverkuil@xs4all.nl>
5273 L:      linux-media@vger.kernel.org
5274 S:      Maintained
5275 W:      https://linuxtv.org
5276 T:      git git://linuxtv.org/media_tree.git
5277 F:      drivers/media/common/cx2341x*
5278 F:      include/media/drv-intf/cx2341x.h
5279
5280 CX24120 MEDIA DRIVER
5281 M:      Jemma Denson <jdenson@gmail.com>
5282 M:      Patrick Boettcher <patrick.boettcher@posteo.de>
5283 L:      linux-media@vger.kernel.org
5284 S:      Maintained
5285 W:      https://linuxtv.org
5286 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5287 F:      drivers/media/dvb-frontends/cx24120*
5288
5289 CX88 VIDEO4LINUX DRIVER
5290 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
5291 L:      linux-media@vger.kernel.org
5292 S:      Odd fixes
5293 W:      https://linuxtv.org
5294 T:      git git://linuxtv.org/media_tree.git
5295 F:      Documentation/driver-api/media/drivers/cx88*
5296 F:      drivers/media/pci/cx88/
5297
5298 CXD2820R MEDIA DRIVER
5299 M:      Antti Palosaari <crope@iki.fi>
5300 L:      linux-media@vger.kernel.org
5301 S:      Maintained
5302 W:      https://linuxtv.org
5303 W:      http://palosaari.fi/linux/
5304 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5305 T:      git git://linuxtv.org/anttip/media_tree.git
5306 F:      drivers/media/dvb-frontends/cxd2820r*
5307
5308 CXGB3 ETHERNET DRIVER (CXGB3)
5309 M:      Raju Rangoju <rajur@chelsio.com>
5310 L:      netdev@vger.kernel.org
5311 S:      Supported
5312 W:      http://www.chelsio.com
5313 F:      drivers/net/ethernet/chelsio/cxgb3/
5314
5315 CXGB3 ISCSI DRIVER (CXGB3I)
5316 M:      Karen Xie <kxie@chelsio.com>
5317 L:      linux-scsi@vger.kernel.org
5318 S:      Supported
5319 W:      http://www.chelsio.com
5320 F:      drivers/scsi/cxgbi/cxgb3i
5321
5322 CXGB4 CRYPTO DRIVER (chcr)
5323 M:      Ayush Sawal <ayush.sawal@chelsio.com>
5324 M:      Vinay Kumar Yadav <vinay.yadav@chelsio.com>
5325 M:      Rohit Maheshwari <rohitm@chelsio.com>
5326 L:      linux-crypto@vger.kernel.org
5327 S:      Supported
5328 W:      http://www.chelsio.com
5329 F:      drivers/crypto/chelsio
5330
5331 CXGB4 INLINE CRYPTO DRIVER
5332 M:      Ayush Sawal <ayush.sawal@chelsio.com>
5333 M:      Vinay Kumar Yadav <vinay.yadav@chelsio.com>
5334 M:      Rohit Maheshwari <rohitm@chelsio.com>
5335 L:      netdev@vger.kernel.org
5336 S:      Supported
5337 W:      http://www.chelsio.com
5338 F:      drivers/net/ethernet/chelsio/inline_crypto/
5339
5340 CXGB4 ETHERNET DRIVER (CXGB4)
5341 M:      Raju Rangoju <rajur@chelsio.com>
5342 L:      netdev@vger.kernel.org
5343 S:      Supported
5344 W:      http://www.chelsio.com
5345 F:      drivers/net/ethernet/chelsio/cxgb4/
5346
5347 CXGB4 ISCSI DRIVER (CXGB4I)
5348 M:      Karen Xie <kxie@chelsio.com>
5349 L:      linux-scsi@vger.kernel.org
5350 S:      Supported
5351 W:      http://www.chelsio.com
5352 F:      drivers/scsi/cxgbi/cxgb4i
5353
5354 CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
5355 M:      Potnuri Bharat Teja <bharat@chelsio.com>
5356 L:      linux-rdma@vger.kernel.org
5357 S:      Supported
5358 W:      http://www.openfabrics.org
5359 F:      drivers/infiniband/hw/cxgb4/
5360 F:      include/uapi/rdma/cxgb4-abi.h
5361
5362 CXGB4VF ETHERNET DRIVER (CXGB4VF)
5363 M:      Raju Rangoju <rajur@chelsio.com>
5364 L:      netdev@vger.kernel.org
5365 S:      Supported
5366 W:      http://www.chelsio.com
5367 F:      drivers/net/ethernet/chelsio/cxgb4vf/
5368
5369 CXL (IBM Coherent Accelerator Processor Interface CAPI) DRIVER
5370 M:      Frederic Barrat <fbarrat@linux.ibm.com>
5371 M:      Andrew Donnellan <ajd@linux.ibm.com>
5372 L:      linuxppc-dev@lists.ozlabs.org
5373 S:      Supported
5374 F:      Documentation/ABI/testing/sysfs-class-cxl
5375 F:      Documentation/powerpc/cxl.rst
5376 F:      arch/powerpc/platforms/powernv/pci-cxl.c
5377 F:      drivers/misc/cxl/
5378 F:      include/misc/cxl*
5379 F:      include/uapi/misc/cxl.h
5380
5381 CXLFLASH (IBM Coherent Accelerator Processor Interface CAPI Flash) SCSI DRIVER
5382 M:      Manoj N. Kumar <manoj@linux.ibm.com>
5383 M:      Matthew R. Ochs <mrochs@linux.ibm.com>
5384 M:      Uma Krishnan <ukrishn@linux.ibm.com>
5385 L:      linux-scsi@vger.kernel.org
5386 S:      Supported
5387 F:      Documentation/powerpc/cxlflash.rst
5388 F:      drivers/scsi/cxlflash/
5389 F:      include/uapi/scsi/cxlflash_ioctl.h
5390
5391 CYBERPRO FB DRIVER
5392 M:      Russell King <linux@armlinux.org.uk>
5393 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5394 S:      Maintained
5395 W:      http://www.armlinux.org.uk/
5396 F:      drivers/video/fbdev/cyber2000fb.*
5397
5398 CYCLADES PC300 DRIVER
5399 S:      Orphan
5400 F:      drivers/net/wan/pc300*
5401
5402 CYPRESS_FIRMWARE MEDIA DRIVER
5403 M:      Antti Palosaari <crope@iki.fi>
5404 L:      linux-media@vger.kernel.org
5405 S:      Maintained
5406 W:      https://linuxtv.org
5407 W:      http://palosaari.fi/linux/
5408 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5409 T:      git git://linuxtv.org/anttip/media_tree.git
5410 F:      drivers/media/common/cypress_firmware*
5411
5412 CYPRESS CY8CTMA140 TOUCHSCREEN DRIVER
5413 M:      Linus Walleij <linus.walleij@linaro.org>
5414 L:      linux-input@vger.kernel.org
5415 S:      Maintained
5416 F:      drivers/input/touchscreen/cy8ctma140.c
5417
5418 CYPRESS STREETFIGHTER TOUCHKEYS DRIVER
5419 M:      Yassine Oudjana <y.oudjana@protonmail.com>
5420 L:      linux-input@vger.kernel.org
5421 S:      Maintained
5422 F:      Documentation/devicetree/bindings/input/cypress-sf.yaml
5423 F:      drivers/input/keyboard/cypress-sf.c
5424
5425 CYTTSP TOUCHSCREEN DRIVER
5426 M:      Linus Walleij <linus.walleij@linaro.org>
5427 L:      linux-input@vger.kernel.org
5428 S:      Maintained
5429 F:      drivers/input/touchscreen/cyttsp*
5430
5431 D-LINK DIR-685 TOUCHKEYS DRIVER
5432 M:      Linus Walleij <linus.walleij@linaro.org>
5433 L:      linux-input@vger.kernel.org
5434 S:      Supported
5435 F:      drivers/input/keyboard/dlink-dir685-touchkeys.c
5436
5437 DALLAS/MAXIM DS1685-FAMILY REAL TIME CLOCK
5438 M:      Joshua Kinard <kumba@gentoo.org>
5439 S:      Maintained
5440 F:      drivers/rtc/rtc-ds1685.c
5441 F:      include/linux/rtc/ds1685.h
5442
5443 DAMA SLAVE for AX.25
5444 M:      Joerg Reuter <jreuter@yaina.de>
5445 L:      linux-hams@vger.kernel.org
5446 S:      Maintained
5447 W:      http://yaina.de/jreuter/
5448 W:      http://www.qsl.net/dl1bke/
5449 F:      net/ax25/af_ax25.c
5450 F:      net/ax25/ax25_dev.c
5451 F:      net/ax25/ax25_ds_*
5452 F:      net/ax25/ax25_in.c
5453 F:      net/ax25/ax25_out.c
5454 F:      net/ax25/ax25_timer.c
5455 F:      net/ax25/sysctl_net_ax25.c
5456
5457 DATA ACCESS MONITOR
5458 M:      SeongJae Park <sj@kernel.org>
5459 L:      damon@lists.linux.dev
5460 L:      linux-mm@kvack.org
5461 S:      Maintained
5462 F:      Documentation/ABI/testing/sysfs-kernel-mm-damon
5463 F:      Documentation/admin-guide/mm/damon/
5464 F:      Documentation/vm/damon/
5465 F:      include/linux/damon.h
5466 F:      include/trace/events/damon.h
5467 F:      mm/damon/
5468 F:      tools/testing/selftests/damon/
5469
5470 DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
5471 L:      netdev@vger.kernel.org
5472 S:      Orphan
5473 F:      Documentation/networking/device_drivers/ethernet/dec/dmfe.rst
5474 F:      drivers/net/ethernet/dec/tulip/dmfe.c
5475
5476 DC390/AM53C974 SCSI driver
5477 M:      Hannes Reinecke <hare@suse.com>
5478 L:      linux-scsi@vger.kernel.org
5479 S:      Maintained
5480 F:      drivers/scsi/am53c974.c
5481
5482 DC395x SCSI driver
5483 M:      Oliver Neukum <oliver@neukum.org>
5484 M:      Ali Akcaagac <aliakc@web.de>
5485 M:      Jamie Lenehan <lenehan@twibble.org>
5486 L:      dc395x@twibble.org
5487 S:      Maintained
5488 W:      http://twibble.org/dist/dc395x/
5489 W:      http://lists.twibble.org/mailman/listinfo/dc395x/
5490 F:      Documentation/scsi/dc395x.rst
5491 F:      drivers/scsi/dc395x.*
5492
5493 DCCP PROTOCOL
5494 L:      dccp@vger.kernel.org
5495 S:      Orphan
5496 W:      http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
5497 F:      include/linux/dccp.h
5498 F:      include/linux/tfrc.h
5499 F:      include/uapi/linux/dccp.h
5500 F:      net/dccp/
5501
5502 DECnet NETWORK LAYER
5503 L:      linux-decnet-user@lists.sourceforge.net
5504 S:      Orphan
5505 W:      http://linux-decnet.sourceforge.net
5506 F:      Documentation/networking/decnet.rst
5507 F:      net/decnet/
5508
5509 DECSTATION PLATFORM SUPPORT
5510 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
5511 L:      linux-mips@vger.kernel.org
5512 S:      Maintained
5513 W:      http://www.linux-mips.org/wiki/DECstation
5514 F:      arch/mips/dec/
5515 F:      arch/mips/include/asm/dec/
5516 F:      arch/mips/include/asm/mach-dec/
5517
5518 DEFXX FDDI NETWORK DRIVER
5519 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
5520 S:      Maintained
5521 F:      drivers/net/fddi/defxx.*
5522
5523 DEFZA FDDI NETWORK DRIVER
5524 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
5525 S:      Maintained
5526 F:      drivers/net/fddi/defza.*
5527
5528 DEINTERLACE DRIVERS FOR ALLWINNER H3
5529 M:      Jernej Skrabec <jernej.skrabec@gmail.com>
5530 L:      linux-media@vger.kernel.org
5531 S:      Maintained
5532 T:      git git://linuxtv.org/media_tree.git
5533 F:      Documentation/devicetree/bindings/media/allwinner,sun8i-h3-deinterlace.yaml
5534 F:      drivers/media/platform/sunxi/sun8i-di/
5535
5536 DELL LAPTOP DRIVER
5537 M:      Matthew Garrett <mjg59@srcf.ucam.org>
5538 M:      Pali Rohár <pali@kernel.org>
5539 L:      platform-driver-x86@vger.kernel.org
5540 S:      Maintained
5541 F:      drivers/platform/x86/dell/dell-laptop.c
5542
5543 DELL LAPTOP FREEFALL DRIVER
5544 M:      Pali Rohár <pali@kernel.org>
5545 S:      Maintained
5546 F:      drivers/platform/x86/dell/dell-smo8800.c
5547
5548 DELL LAPTOP RBTN DRIVER
5549 M:      Pali Rohár <pali@kernel.org>
5550 S:      Maintained
5551 F:      drivers/platform/x86/dell/dell-rbtn.*
5552
5553 DELL LAPTOP SMM DRIVER
5554 M:      Pali Rohár <pali@kernel.org>
5555 S:      Maintained
5556 F:      Documentation/ABI/obsolete/procfs-i8k
5557 F:      drivers/hwmon/dell-smm-hwmon.c
5558 F:      include/uapi/linux/i8k.h
5559
5560 DELL REMOTE BIOS UPDATE DRIVER
5561 M:      Stuart Hayes <stuart.w.hayes@gmail.com>
5562 L:      platform-driver-x86@vger.kernel.org
5563 S:      Maintained
5564 F:      drivers/platform/x86/dell/dell_rbu.c
5565
5566 DELL SMBIOS DRIVER
5567 M:      Pali Rohár <pali@kernel.org>
5568 L:      Dell.Client.Kernel@dell.com
5569 L:      platform-driver-x86@vger.kernel.org
5570 S:      Maintained
5571 F:      drivers/platform/x86/dell/dell-smbios.*
5572
5573 DELL SMBIOS SMM DRIVER
5574 L:      Dell.Client.Kernel@dell.com
5575 L:      platform-driver-x86@vger.kernel.org
5576 S:      Maintained
5577 F:      drivers/platform/x86/dell/dell-smbios-smm.c
5578
5579 DELL SMBIOS WMI DRIVER
5580 L:      Dell.Client.Kernel@dell.com
5581 L:      platform-driver-x86@vger.kernel.org
5582 S:      Maintained
5583 F:      drivers/platform/x86/dell/dell-smbios-wmi.c
5584 F:      tools/wmi/dell-smbios-example.c
5585
5586 DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
5587 M:      Stuart Hayes <stuart.w.hayes@gmail.com>
5588 L:      platform-driver-x86@vger.kernel.org
5589 S:      Maintained
5590 F:      Documentation/driver-api/dcdbas.rst
5591 F:      drivers/platform/x86/dell/dcdbas.*
5592
5593 DELL WMI DESCRIPTOR DRIVER
5594 L:      Dell.Client.Kernel@dell.com
5595 S:      Maintained
5596 F:      drivers/platform/x86/dell/dell-wmi-descriptor.c
5597
5598 DELL WMI SYSMAN DRIVER
5599 M:      Divya Bharathi <divya.bharathi@dell.com>
5600 M:      Prasanth Ksr <prasanth.ksr@dell.com>
5601 L:      Dell.Client.Kernel@dell.com
5602 L:      platform-driver-x86@vger.kernel.org
5603 S:      Maintained
5604 F:      Documentation/ABI/testing/sysfs-class-firmware-attributes
5605 F:      drivers/platform/x86/dell/dell-wmi-sysman/
5606
5607 DELL WMI NOTIFICATIONS DRIVER
5608 M:      Matthew Garrett <mjg59@srcf.ucam.org>
5609 M:      Pali Rohár <pali@kernel.org>
5610 S:      Maintained
5611 F:      drivers/platform/x86/dell/dell-wmi-base.c
5612
5613 DELL WMI HARDWARE PRIVACY SUPPORT
5614 M:      Perry Yuan <Perry.Yuan@dell.com>
5615 L:      Dell.Client.Kernel@dell.com
5616 L:      platform-driver-x86@vger.kernel.org
5617 S:      Maintained
5618 F:      drivers/platform/x86/dell/dell-wmi-privacy.c
5619
5620 DELTA ST MEDIA DRIVER
5621 M:      Hugues Fruchet <hugues.fruchet@foss.st.com>
5622 L:      linux-media@vger.kernel.org
5623 S:      Supported
5624 W:      https://linuxtv.org
5625 T:      git git://linuxtv.org/media_tree.git
5626 F:      drivers/media/platform/st/sti/delta
5627
5628 DELTA AHE-50DC FAN CONTROL MODULE DRIVER
5629 M:      Zev Weiss <zev@bewilderbeest.net>
5630 L:      linux-hwmon@vger.kernel.org
5631 S:      Maintained
5632 F:      drivers/hwmon/pmbus/delta-ahe50dc-fan.c
5633
5634 DELTA DPS920AB PSU DRIVER
5635 M:      Robert Marko <robert.marko@sartura.hr>
5636 L:      linux-hwmon@vger.kernel.org
5637 S:      Maintained
5638 F:      Documentation/hwmon/dps920ab.rst
5639 F:      drivers/hwmon/pmbus/dps920ab.c
5640
5641 DELTA NETWORKS TN48M CPLD DRIVERS
5642 M:      Robert Marko <robert.marko@sartura.hr>
5643 S:      Maintained
5644 F:      Documentation/devicetree/bindings/gpio/delta,tn48m-gpio.yaml
5645 F:      Documentation/devicetree/bindings/mfd/delta,tn48m-cpld.yaml
5646 F:      Documentation/devicetree/bindings/reset/delta,tn48m-reset.yaml
5647 F:      drivers/gpio/gpio-tn48m.c
5648 F:      include/dt-bindings/reset/delta,tn48m-reset.h
5649
5650 DENALI NAND DRIVER
5651 L:      linux-mtd@lists.infradead.org
5652 S:      Orphan
5653 F:      drivers/mtd/nand/raw/denali*
5654
5655 DESIGNWARE EDMA CORE IP DRIVER
5656 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
5657 L:      dmaengine@vger.kernel.org
5658 S:      Maintained
5659 F:      drivers/dma/dw-edma/
5660 F:      include/linux/dma/edma.h
5661
5662 DESIGNWARE XDATA IP DRIVER
5663 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
5664 L:      linux-pci@vger.kernel.org
5665 S:      Maintained
5666 F:      Documentation/misc-devices/dw-xdata-pcie.rst
5667 F:      drivers/misc/dw-xdata-pcie.c
5668
5669 DESIGNWARE USB2 DRD IP DRIVER
5670 M:      Minas Harutyunyan <hminas@synopsys.com>
5671 L:      linux-usb@vger.kernel.org
5672 S:      Maintained
5673 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
5674 F:      drivers/usb/dwc2/
5675
5676 DESIGNWARE USB3 DRD IP DRIVER
5677 M:      Felipe Balbi <balbi@kernel.org>
5678 L:      linux-usb@vger.kernel.org
5679 S:      Maintained
5680 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
5681 F:      drivers/usb/dwc3/
5682
5683 DEVANTECH SRF ULTRASONIC RANGER IIO DRIVER
5684 M:      Andreas Klinger <ak@it-klinger.de>
5685 L:      linux-iio@vger.kernel.org
5686 S:      Maintained
5687 F:      Documentation/ABI/testing/sysfs-bus-iio-distance-srf08
5688 F:      drivers/iio/proximity/srf*.c
5689
5690 DEVICE COREDUMP (DEV_COREDUMP)
5691 M:      Johannes Berg <johannes@sipsolutions.net>
5692 L:      linux-kernel@vger.kernel.org
5693 S:      Maintained
5694 F:      drivers/base/devcoredump.c
5695 F:      include/linux/devcoredump.h
5696
5697 DEVICE DEPENDENCY HELPER SCRIPT
5698 M:      Saravana Kannan <saravanak@google.com>
5699 L:      linux-kernel@vger.kernel.org
5700 S:      Maintained
5701 F:      scripts/dev-needs.sh
5702
5703 DEVICE DIRECT ACCESS (DAX)
5704 M:      Dan Williams <dan.j.williams@intel.com>
5705 M:      Vishal Verma <vishal.l.verma@intel.com>
5706 M:      Dave Jiang <dave.jiang@intel.com>
5707 L:      nvdimm@lists.linux.dev
5708 S:      Supported
5709 F:      drivers/dax/
5710
5711 DEVICE FREQUENCY (DEVFREQ)
5712 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
5713 M:      Kyungmin Park <kyungmin.park@samsung.com>
5714 M:      Chanwoo Choi <cw00.choi@samsung.com>
5715 L:      linux-pm@vger.kernel.org
5716 S:      Maintained
5717 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
5718 F:      Documentation/devicetree/bindings/devfreq/
5719 F:      drivers/devfreq/
5720 F:      include/linux/devfreq.h
5721 F:      include/trace/events/devfreq.h
5722
5723 DEVICE FREQUENCY EVENT (DEVFREQ-EVENT)
5724 M:      Chanwoo Choi <cw00.choi@samsung.com>
5725 L:      linux-pm@vger.kernel.org
5726 S:      Supported
5727 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
5728 F:      Documentation/devicetree/bindings/devfreq/event/
5729 F:      drivers/devfreq/devfreq-event.c
5730 F:      drivers/devfreq/event/
5731 F:      include/dt-bindings/pmu/exynos_ppmu.h
5732 F:      include/linux/devfreq-event.h
5733
5734 DEVICE NUMBER REGISTRY
5735 M:      Torben Mathiasen <device@lanana.org>
5736 S:      Maintained
5737 W:      http://lanana.org/docs/device-list/index.html
5738
5739 DEVICE RESOURCE MANAGEMENT HELPERS
5740 M:      Hans de Goede <hdegoede@redhat.com>
5741 R:      Matti Vaittinen <mazziesaccount@gmail.com>
5742 S:      Maintained
5743 F:      include/linux/devm-helpers.h
5744
5745 DEVICE-MAPPER  (LVM)
5746 M:      Alasdair Kergon <agk@redhat.com>
5747 M:      Mike Snitzer <snitzer@kernel.org>
5748 M:      dm-devel@redhat.com
5749 L:      dm-devel@redhat.com
5750 S:      Maintained
5751 W:      http://sources.redhat.com/dm
5752 Q:      http://patchwork.kernel.org/project/dm-devel/list/
5753 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git
5754 T:      quilt http://people.redhat.com/agk/patches/linux/editing/
5755 F:      Documentation/admin-guide/device-mapper/
5756 F:      drivers/md/Kconfig
5757 F:      drivers/md/Makefile
5758 F:      drivers/md/dm*
5759 F:      drivers/md/persistent-data/
5760 F:      include/linux/device-mapper.h
5761 F:      include/linux/dm-*.h
5762 F:      include/uapi/linux/dm-*.h
5763
5764 DEVLINK
5765 M:      Jiri Pirko <jiri@nvidia.com>
5766 L:      netdev@vger.kernel.org
5767 S:      Supported
5768 F:      Documentation/networking/devlink
5769 F:      include/net/devlink.h
5770 F:      include/uapi/linux/devlink.h
5771 F:      net/core/devlink.c
5772
5773 DH ELECTRONICS IMX6 DHCOM BOARD SUPPORT
5774 M:      Christoph Niedermaier <cniedermaier@dh-electronics.com>
5775 L:      kernel@dh-electronics.com
5776 S:      Maintained
5777 F:      arch/arm/boot/dts/imx6*-dhcom-*
5778
5779 DH ELECTRONICS STM32MP1 DHCOM/DHCOR BOARD SUPPORT
5780 M:      Marek Vasut <marex@denx.de>
5781 L:      kernel@dh-electronics.com
5782 S:      Maintained
5783 F:      arch/arm/boot/dts/stm32mp1*-dhcom-*
5784 F:      arch/arm/boot/dts/stm32mp1*-dhcor-*
5785
5786 DIALOG SEMICONDUCTOR DRIVERS
5787 M:      Support Opensource <support.opensource@diasemi.com>
5788 S:      Supported
5789 W:      http://www.dialog-semiconductor.com/products
5790 F:      Documentation/devicetree/bindings/input/da90??-onkey.txt
5791 F:      Documentation/devicetree/bindings/input/dlg,da72??.txt
5792 F:      Documentation/devicetree/bindings/mfd/da90*.txt
5793 F:      Documentation/devicetree/bindings/regulator/dlg,da9*.yaml
5794 F:      Documentation/devicetree/bindings/regulator/da92*.txt
5795 F:      Documentation/devicetree/bindings/regulator/slg51000.txt
5796 F:      Documentation/devicetree/bindings/sound/da[79]*.txt
5797 F:      Documentation/devicetree/bindings/thermal/da90??-thermal.txt
5798 F:      Documentation/devicetree/bindings/watchdog/da90??-wdt.txt
5799 F:      Documentation/hwmon/da90??.rst
5800 F:      drivers/gpio/gpio-da90??.c
5801 F:      drivers/hwmon/da90??-hwmon.c
5802 F:      drivers/iio/adc/da91??-*.c
5803 F:      drivers/input/misc/da72??.[ch]
5804 F:      drivers/input/misc/da90??_onkey.c
5805 F:      drivers/input/touchscreen/da9052_tsi.c
5806 F:      drivers/leds/leds-da90??.c
5807 F:      drivers/mfd/da903x.c
5808 F:      drivers/mfd/da90??-*.c
5809 F:      drivers/mfd/da91??-*.c
5810 F:      drivers/pinctrl/pinctrl-da90??.c
5811 F:      drivers/power/supply/da9052-battery.c
5812 F:      drivers/power/supply/da91??-*.c
5813 F:      drivers/regulator/da9???-regulator.[ch]
5814 F:      drivers/regulator/slg51000-regulator.[ch]
5815 F:      drivers/rtc/rtc-da90??.c
5816 F:      drivers/thermal/da90??-thermal.c
5817 F:      drivers/video/backlight/da90??_bl.c
5818 F:      drivers/watchdog/da90??_wdt.c
5819 F:      include/dt-bindings/regulator/dlg,da9*-regulator.h
5820 F:      include/linux/mfd/da903x.h
5821 F:      include/linux/mfd/da9052/
5822 F:      include/linux/mfd/da9055/
5823 F:      include/linux/mfd/da9062/
5824 F:      include/linux/mfd/da9063/
5825 F:      include/linux/mfd/da9150/
5826 F:      include/linux/regulator/da9211.h
5827 F:      include/sound/da[79]*.h
5828 F:      sound/soc/codecs/da[79]*.[ch]
5829
5830 DIAMOND SYSTEMS GPIO-MM GPIO DRIVER
5831 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
5832 L:      linux-gpio@vger.kernel.org
5833 S:      Maintained
5834 F:      drivers/gpio/gpio-gpio-mm.c
5835
5836 DIOLAN U2C-12 I2C DRIVER
5837 M:      Guenter Roeck <linux@roeck-us.net>
5838 L:      linux-i2c@vger.kernel.org
5839 S:      Maintained
5840 F:      drivers/i2c/busses/i2c-diolan-u2c.c
5841
5842 DIRECTORY NOTIFICATION (DNOTIFY)
5843 M:      Jan Kara <jack@suse.cz>
5844 R:      Amir Goldstein <amir73il@gmail.com>
5845 L:      linux-fsdevel@vger.kernel.org
5846 S:      Maintained
5847 F:      Documentation/filesystems/dnotify.rst
5848 F:      fs/notify/dnotify/
5849 F:      include/linux/dnotify.h
5850
5851 DISK GEOMETRY AND PARTITION HANDLING
5852 M:      Andries Brouwer <aeb@cwi.nl>
5853 S:      Maintained
5854 W:      http://www.win.tue.nl/~aeb/linux/Large-Disk.html
5855 W:      http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
5856 W:      http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
5857
5858 DISKQUOTA
5859 M:      Jan Kara <jack@suse.com>
5860 S:      Maintained
5861 F:      Documentation/filesystems/quota.rst
5862 F:      fs/quota/
5863 F:      include/linux/quota*.h
5864 F:      include/uapi/linux/quota*.h
5865
5866 DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
5867 M:      Bernie Thompson <bernie@plugable.com>
5868 L:      linux-fbdev@vger.kernel.org
5869 S:      Maintained
5870 W:      http://plugable.com/category/projects/udlfb/
5871 F:      Documentation/fb/udlfb.rst
5872 F:      drivers/video/fbdev/udlfb.c
5873 F:      include/video/udlfb.h
5874
5875 DISTRIBUTED LOCK MANAGER (DLM)
5876 M:      Christine Caulfield <ccaulfie@redhat.com>
5877 M:      David Teigland <teigland@redhat.com>
5878 L:      cluster-devel@redhat.com
5879 S:      Supported
5880 W:      http://sources.redhat.com/cluster/
5881 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/linux-dlm.git
5882 F:      fs/dlm/
5883
5884 DMA BUFFER SHARING FRAMEWORK
5885 M:      Sumit Semwal <sumit.semwal@linaro.org>
5886 M:      Christian König <christian.koenig@amd.com>
5887 L:      linux-media@vger.kernel.org
5888 L:      dri-devel@lists.freedesktop.org
5889 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
5890 S:      Maintained
5891 T:      git git://anongit.freedesktop.org/drm/drm-misc
5892 F:      Documentation/driver-api/dma-buf.rst
5893 F:      drivers/dma-buf/
5894 F:      include/linux/*fence.h
5895 F:      include/linux/dma-buf.h
5896 F:      include/linux/dma-resv.h
5897 K:      \bdma_(?:buf|fence|resv)\b
5898
5899 DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
5900 M:      Vinod Koul <vkoul@kernel.org>
5901 L:      dmaengine@vger.kernel.org
5902 S:      Maintained
5903 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
5904 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vkoul/dmaengine.git
5905 F:      Documentation/devicetree/bindings/dma/
5906 F:      Documentation/driver-api/dmaengine/
5907 F:      drivers/dma/
5908 F:      include/linux/dma/
5909 F:      include/linux/dmaengine.h
5910 F:      include/linux/of_dma.h
5911
5912 DMA MAPPING HELPERS
5913 M:      Christoph Hellwig <hch@lst.de>
5914 M:      Marek Szyprowski <m.szyprowski@samsung.com>
5915 R:      Robin Murphy <robin.murphy@arm.com>
5916 L:      iommu@lists.linux-foundation.org
5917 S:      Supported
5918 W:      http://git.infradead.org/users/hch/dma-mapping.git
5919 T:      git git://git.infradead.org/users/hch/dma-mapping.git
5920 F:      include/asm-generic/dma-mapping.h
5921 F:      include/linux/dma-direct.h
5922 F:      include/linux/dma-mapping.h
5923 F:      include/linux/dma-map-ops.h
5924 F:      kernel/dma/
5925
5926 DMA MAPPING BENCHMARK
5927 M:      Xiang Chen <chenxiang66@hisilicon.com>
5928 L:      iommu@lists.linux-foundation.org
5929 F:      kernel/dma/map_benchmark.c
5930 F:      tools/testing/selftests/dma/
5931
5932 DMA-BUF HEAPS FRAMEWORK
5933 M:      Sumit Semwal <sumit.semwal@linaro.org>
5934 R:      Benjamin Gaignard <benjamin.gaignard@collabora.com>
5935 R:      Liam Mark <lmark@codeaurora.org>
5936 R:      Laura Abbott <labbott@redhat.com>
5937 R:      Brian Starkey <Brian.Starkey@arm.com>
5938 R:      John Stultz <jstultz@google.com>
5939 L:      linux-media@vger.kernel.org
5940 L:      dri-devel@lists.freedesktop.org
5941 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
5942 S:      Maintained
5943 T:      git git://anongit.freedesktop.org/drm/drm-misc
5944 F:      drivers/dma-buf/dma-heap.c
5945 F:      drivers/dma-buf/heaps/*
5946 F:      include/linux/dma-heap.h
5947 F:      include/uapi/linux/dma-heap.h
5948
5949 DMC FREQUENCY DRIVER FOR SAMSUNG EXYNOS5422
5950 M:      Lukasz Luba <lukasz.luba@arm.com>
5951 L:      linux-pm@vger.kernel.org
5952 L:      linux-samsung-soc@vger.kernel.org
5953 S:      Maintained
5954 F:      Documentation/devicetree/bindings/memory-controllers/samsung,exynos5422-dmc.yaml
5955 F:      drivers/memory/samsung/exynos5422-dmc.c
5956
5957 DME1737 HARDWARE MONITOR DRIVER
5958 M:      Juerg Haefliger <juergh@gmail.com>
5959 L:      linux-hwmon@vger.kernel.org
5960 S:      Maintained
5961 F:      Documentation/hwmon/dme1737.rst
5962 F:      drivers/hwmon/dme1737.c
5963
5964 DMI/SMBIOS SUPPORT
5965 M:      Jean Delvare <jdelvare@suse.com>
5966 S:      Maintained
5967 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jdelvare/staging.git dmi-for-next
5968 F:      Documentation/ABI/testing/sysfs-firmware-dmi-tables
5969 F:      drivers/firmware/dmi-id.c
5970 F:      drivers/firmware/dmi_scan.c
5971 F:      include/linux/dmi.h
5972
5973 DOCUMENTATION
5974 M:      Jonathan Corbet <corbet@lwn.net>
5975 L:      linux-doc@vger.kernel.org
5976 S:      Maintained
5977 P:      Documentation/doc-guide/maintainer-profile.rst
5978 T:      git git://git.lwn.net/linux.git docs-next
5979 F:      Documentation/
5980 F:      scripts/documentation-file-ref-check
5981 F:      scripts/kernel-doc
5982 F:      scripts/sphinx-pre-install
5983 X:      Documentation/ABI/
5984 X:      Documentation/admin-guide/media/
5985 X:      Documentation/devicetree/
5986 X:      Documentation/driver-api/media/
5987 X:      Documentation/firmware-guide/acpi/
5988 X:      Documentation/i2c/
5989 X:      Documentation/power/
5990 X:      Documentation/spi/
5991 X:      Documentation/userspace-api/media/
5992
5993 DOCUMENTATION REPORTING ISSUES
5994 M:      Thorsten Leemhuis <linux@leemhuis.info>
5995 L:      linux-doc@vger.kernel.org
5996 S:      Maintained
5997 F:      Documentation/admin-guide/reporting-issues.rst
5998
5999 DOCUMENTATION SCRIPTS
6000 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6001 L:      linux-doc@vger.kernel.org
6002 S:      Maintained
6003 F:      Documentation/sphinx/parse-headers.pl
6004 F:      scripts/documentation-file-ref-check
6005 F:      scripts/sphinx-pre-install
6006
6007 DOCUMENTATION/ITALIAN
6008 M:      Federico Vaga <federico.vaga@vaga.pv.it>
6009 L:      linux-doc@vger.kernel.org
6010 S:      Maintained
6011 F:      Documentation/translations/it_IT
6012
6013 DOCUMENTATION/JAPANESE
6014 R:      Akira Yokosawa <akiyks@gmail.com>
6015 L:      linux-doc@vger.kernel.org
6016 S:      Maintained
6017 F:      Documentation/translations/ja_JP
6018
6019 DONGWOON DW9714 LENS VOICE COIL DRIVER
6020 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
6021 L:      linux-media@vger.kernel.org
6022 S:      Maintained
6023 T:      git git://linuxtv.org/media_tree.git
6024 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9714.txt
6025 F:      drivers/media/i2c/dw9714.c
6026
6027 DONGWOON DW9768 LENS VOICE COIL DRIVER
6028 M:      Dongchun Zhu <dongchun.zhu@mediatek.com>
6029 L:      linux-media@vger.kernel.org
6030 S:      Maintained
6031 T:      git git://linuxtv.org/media_tree.git
6032 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9768.yaml
6033 F:      drivers/media/i2c/dw9768.c
6034
6035 DONGWOON DW9807 LENS VOICE COIL DRIVER
6036 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
6037 L:      linux-media@vger.kernel.org
6038 S:      Maintained
6039 T:      git git://linuxtv.org/media_tree.git
6040 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9807-vcm.txt
6041 F:      drivers/media/i2c/dw9807-vcm.c
6042
6043 DOUBLETALK DRIVER
6044 M:      "James R. Van Zandt" <jrv@vanzandt.mv.com>
6045 L:      blinux-list@redhat.com
6046 S:      Maintained
6047 F:      drivers/char/dtlk.c
6048 F:      include/linux/dtlk.h
6049
6050 DPAA2 DATAPATH I/O (DPIO) DRIVER
6051 M:      Roy Pledge <Roy.Pledge@nxp.com>
6052 L:      linux-kernel@vger.kernel.org
6053 S:      Maintained
6054 F:      drivers/soc/fsl/dpio
6055
6056 DPAA2 ETHERNET DRIVER
6057 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
6058 L:      netdev@vger.kernel.org
6059 S:      Maintained
6060 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/ethernet-driver.rst
6061 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/mac-phy-support.rst
6062 F:      drivers/net/ethernet/freescale/dpaa2/Kconfig
6063 F:      drivers/net/ethernet/freescale/dpaa2/Makefile
6064 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-eth*
6065 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-mac*
6066 F:      drivers/net/ethernet/freescale/dpaa2/dpkg.h
6067 F:      drivers/net/ethernet/freescale/dpaa2/dpmac*
6068 F:      drivers/net/ethernet/freescale/dpaa2/dpni*
6069
6070 DPAA2 ETHERNET SWITCH DRIVER
6071 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
6072 L:      netdev@vger.kernel.org
6073 S:      Maintained
6074 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/switch-driver.rst
6075 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-switch*
6076 F:      drivers/net/ethernet/freescale/dpaa2/dpsw*
6077
6078 DPT_I2O SCSI RAID DRIVER
6079 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
6080 L:      linux-scsi@vger.kernel.org
6081 S:      Maintained
6082 W:      http://www.adaptec.com/
6083 F:      drivers/scsi/dpt*
6084 F:      drivers/scsi/dpt/
6085
6086 DRBD DRIVER
6087 M:      Philipp Reisner <philipp.reisner@linbit.com>
6088 M:      Lars Ellenberg <lars.ellenberg@linbit.com>
6089 M:      Christoph Böhmwalder <christoph.boehmwalder@linbit.com>
6090 L:      drbd-dev@lists.linbit.com
6091 S:      Supported
6092 W:      http://www.drbd.org
6093 T:      git git://git.linbit.com/linux-drbd.git
6094 T:      git git://git.linbit.com/drbd-8.4.git
6095 F:      Documentation/admin-guide/blockdev/
6096 F:      drivers/block/drbd/
6097 F:      lib/lru_cache.c
6098
6099 DRIVER COMPONENT FRAMEWORK
6100 L:      dri-devel@lists.freedesktop.org
6101 F:      drivers/base/component.c
6102 F:      include/linux/component.h
6103
6104 DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS
6105 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
6106 R:      "Rafael J. Wysocki" <rafael@kernel.org>
6107 S:      Supported
6108 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
6109 F:      Documentation/core-api/kobject.rst
6110 F:      drivers/base/
6111 F:      fs/debugfs/
6112 F:      fs/sysfs/
6113 F:      include/linux/debugfs.h
6114 F:      include/linux/kobj*
6115 F:      lib/kobj*
6116
6117 DRIVERS FOR OMAP ADAPTIVE VOLTAGE SCALING (AVS)
6118 M:      Nishanth Menon <nm@ti.com>
6119 L:      linux-pm@vger.kernel.org
6120 S:      Maintained
6121 F:      drivers/soc/ti/smartreflex.c
6122 F:      include/linux/power/smartreflex.h
6123
6124 DRM DRIVER FOR ALLWINNER DE2 AND DE3 ENGINE
6125 M:      Maxime Ripard <mripard@kernel.org>
6126 M:      Chen-Yu Tsai <wens@csie.org>
6127 R:      Jernej Skrabec <jernej.skrabec@gmail.com>
6128 L:      dri-devel@lists.freedesktop.org
6129 S:      Supported
6130 T:      git git://anongit.freedesktop.org/drm/drm-misc
6131 F:      drivers/gpu/drm/sun4i/sun8i*
6132
6133 DRM DRIVER FOR ARM PL111 CLCD
6134 M:      Emma Anholt <emma@anholt.net>
6135 S:      Supported
6136 T:      git git://anongit.freedesktop.org/drm/drm-misc
6137 F:      drivers/gpu/drm/pl111/
6138
6139 DRM DRIVER FOR ARM VERSATILE TFT PANELS
6140 M:      Linus Walleij <linus.walleij@linaro.org>
6141 S:      Maintained
6142 T:      git git://anongit.freedesktop.org/drm/drm-misc
6143 F:      Documentation/devicetree/bindings/display/panel/arm,versatile-tft-panel.yaml
6144 F:      drivers/gpu/drm/panel/panel-arm-versatile.c
6145
6146 DRM DRIVER FOR ASPEED BMC GFX
6147 M:      Joel Stanley <joel@jms.id.au>
6148 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
6149 S:      Supported
6150 T:      git git://anongit.freedesktop.org/drm/drm-misc
6151 F:      Documentation/devicetree/bindings/gpu/aspeed-gfx.txt
6152 F:      drivers/gpu/drm/aspeed/
6153
6154 DRM DRIVER FOR AST SERVER GRAPHICS CHIPS
6155 M:      Dave Airlie <airlied@redhat.com>
6156 R:      Thomas Zimmermann <tzimmermann@suse.de>
6157 L:      dri-devel@lists.freedesktop.org
6158 S:      Supported
6159 T:      git git://anongit.freedesktop.org/drm/drm-misc
6160 F:      drivers/gpu/drm/ast/
6161
6162 DRM DRIVER FOR BOCHS VIRTUAL GPU
6163 M:      Gerd Hoffmann <kraxel@redhat.com>
6164 L:      virtualization@lists.linux-foundation.org
6165 S:      Maintained
6166 T:      git git://anongit.freedesktop.org/drm/drm-misc
6167 F:      drivers/gpu/drm/tiny/bochs.c
6168
6169 DRM DRIVER FOR BOE HIMAX8279D PANELS
6170 M:      Jerry Han <hanxu5@huaqin.corp-partner.google.com>
6171 S:      Maintained
6172 F:      Documentation/devicetree/bindings/display/panel/boe,himax8279d.yaml
6173 F:      drivers/gpu/drm/panel/panel-boe-himax8279d.c
6174
6175 DRM DRIVER FOR CHIPONE ICN6211 MIPI-DSI to RGB CONVERTER BRIDGE
6176 M:      Jagan Teki <jagan@amarulasolutions.com>
6177 S:      Maintained
6178 F:      Documentation/devicetree/bindings/display/bridge/chipone,icn6211.yaml
6179 F:      drivers/gpu/drm/bridge/chipone-icn6211.c
6180
6181 DRM DRIVER FOR FARADAY TVE200 TV ENCODER
6182 M:      Linus Walleij <linus.walleij@linaro.org>
6183 S:      Maintained
6184 T:      git git://anongit.freedesktop.org/drm/drm-misc
6185 F:      drivers/gpu/drm/tve200/
6186
6187 DRM DRIVER FOR FEIXIN K101 IM2BA02 MIPI-DSI LCD PANELS
6188 M:      Icenowy Zheng <icenowy@aosc.io>
6189 S:      Maintained
6190 F:      Documentation/devicetree/bindings/display/panel/feixin,k101-im2ba02.yaml
6191 F:      drivers/gpu/drm/panel/panel-feixin-k101-im2ba02.c
6192
6193 DRM DRIVER FOR FEIYANG FY07024DI26A30-D MIPI-DSI LCD PANELS
6194 M:      Jagan Teki <jagan@amarulasolutions.com>
6195 S:      Maintained
6196 F:      Documentation/devicetree/bindings/display/panel/feiyang,fy07024di26a30d.yaml
6197 F:      drivers/gpu/drm/panel/panel-feiyang-fy07024di26a30d.c
6198
6199 DRM DRIVER FOR GENERIC USB DISPLAY
6200 M:      Noralf Trønnes <noralf@tronnes.org>
6201 S:      Maintained
6202 W:      https://github.com/notro/gud/wiki
6203 T:      git git://anongit.freedesktop.org/drm/drm-misc
6204 F:      drivers/gpu/drm/gud/
6205 F:      include/drm/gud.h
6206
6207 DRM DRIVER FOR GRAIN MEDIA GM12U320 PROJECTORS
6208 M:      Hans de Goede <hdegoede@redhat.com>
6209 S:      Maintained
6210 T:      git git://anongit.freedesktop.org/drm/drm-misc
6211 F:      drivers/gpu/drm/tiny/gm12u320.c
6212
6213 DRM DRIVER FOR HX8357D PANELS
6214 M:      Emma Anholt <emma@anholt.net>
6215 S:      Maintained
6216 T:      git git://anongit.freedesktop.org/drm/drm-misc
6217 F:      Documentation/devicetree/bindings/display/himax,hx8357d.txt
6218 F:      drivers/gpu/drm/tiny/hx8357d.c
6219
6220 DRM DRIVER FOR ILITEK ILI9225 PANELS
6221 M:      David Lechner <david@lechnology.com>
6222 S:      Maintained
6223 T:      git git://anongit.freedesktop.org/drm/drm-misc
6224 F:      Documentation/devicetree/bindings/display/ilitek,ili9225.txt
6225 F:      drivers/gpu/drm/tiny/ili9225.c
6226
6227 DRM DRIVER FOR ILITEK ILI9486 PANELS
6228 M:      Kamlesh Gurudasani <kamlesh.gurudasani@gmail.com>
6229 S:      Maintained
6230 T:      git git://anongit.freedesktop.org/drm/drm-misc
6231 F:      Documentation/devicetree/bindings/display/ilitek,ili9486.yaml
6232 F:      drivers/gpu/drm/tiny/ili9486.c
6233
6234 DRM DRIVER FOR INTEL I810 VIDEO CARDS
6235 S:      Orphan / Obsolete
6236 F:      drivers/gpu/drm/i810/
6237 F:      include/uapi/drm/i810_drm.h
6238
6239 DRM DRIVER FOR LVDS PANELS
6240 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6241 L:      dri-devel@lists.freedesktop.org
6242 T:      git git://anongit.freedesktop.org/drm/drm-misc
6243 S:      Maintained
6244 F:      drivers/gpu/drm/panel/panel-lvds.c
6245 F:      Documentation/devicetree/bindings/display/lvds.yaml
6246 F:      Documentation/devicetree/bindings/display/panel/panel-lvds.yaml
6247
6248 DRM DRIVER FOR MANTIX MLAF057WE51 PANELS
6249 M:      Guido Günther <agx@sigxcpu.org>
6250 R:      Purism Kernel Team <kernel@puri.sm>
6251 S:      Maintained
6252 F:      Documentation/devicetree/bindings/display/panel/mantix,mlaf057we51-x.yaml
6253 F:      drivers/gpu/drm/panel/panel-mantix-mlaf057we51.c
6254
6255 DRM DRIVER FOR MATROX G200/G400 GRAPHICS CARDS
6256 S:      Orphan / Obsolete
6257 F:      drivers/gpu/drm/mga/
6258 F:      include/uapi/drm/mga_drm.h
6259
6260 DRM DRIVER FOR MGA G200 GRAPHICS CHIPS
6261 M:      Dave Airlie <airlied@redhat.com>
6262 R:      Thomas Zimmermann <tzimmermann@suse.de>
6263 L:      dri-devel@lists.freedesktop.org
6264 S:      Supported
6265 T:      git git://anongit.freedesktop.org/drm/drm-misc
6266 F:      drivers/gpu/drm/mgag200/
6267
6268 DRM DRIVER FOR MI0283QT
6269 M:      Noralf Trønnes <noralf@tronnes.org>
6270 S:      Maintained
6271 T:      git git://anongit.freedesktop.org/drm/drm-misc
6272 F:      Documentation/devicetree/bindings/display/multi-inno,mi0283qt.txt
6273 F:      drivers/gpu/drm/tiny/mi0283qt.c
6274
6275 DRM DRIVER FOR MIPI DBI compatible panels
6276 M:      Noralf Trønnes <noralf@tronnes.org>
6277 S:      Maintained
6278 W:      https://github.com/notro/panel-mipi-dbi/wiki
6279 T:      git git://anongit.freedesktop.org/drm/drm-misc
6280 F:      Documentation/devicetree/bindings/display/panel/panel-mipi-dbi-spi.yaml
6281 F:      drivers/gpu/drm/tiny/panel-mipi-dbi.c
6282
6283 DRM DRIVER FOR MSM ADRENO GPU
6284 M:      Rob Clark <robdclark@gmail.com>
6285 M:      Abhinav Kumar <quic_abhinavk@quicinc.com>
6286 M:      Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
6287 R:      Sean Paul <sean@poorly.run>
6288 L:      linux-arm-msm@vger.kernel.org
6289 L:      dri-devel@lists.freedesktop.org
6290 L:      freedreno@lists.freedesktop.org
6291 S:      Maintained
6292 T:      git https://gitlab.freedesktop.org/drm/msm.git
6293 F:      Documentation/devicetree/bindings/display/msm/
6294 F:      drivers/gpu/drm/msm/
6295 F:      include/uapi/drm/msm_drm.h
6296
6297 DRM DRIVER FOR NOVATEK NT35510 PANELS
6298 M:      Linus Walleij <linus.walleij@linaro.org>
6299 S:      Maintained
6300 T:      git git://anongit.freedesktop.org/drm/drm-misc
6301 F:      Documentation/devicetree/bindings/display/panel/novatek,nt35510.yaml
6302 F:      drivers/gpu/drm/panel/panel-novatek-nt35510.c
6303
6304 DRM DRIVER FOR NOVATEK NT35560 PANELS
6305 M:      Linus Walleij <linus.walleij@linaro.org>
6306 S:      Maintained
6307 T:      git git://anongit.freedesktop.org/drm/drm-misc
6308 F:      Documentation/devicetree/bindings/display/panel/sony,acx424akp.yaml
6309 F:      drivers/gpu/drm/panel/panel-novatek-nt35560.c
6310
6311 DRM DRIVER FOR NOVATEK NT36672A PANELS
6312 M:      Sumit Semwal <sumit.semwal@linaro.org>
6313 S:      Maintained
6314 T:      git git://anongit.freedesktop.org/drm/drm-misc
6315 F:      Documentation/devicetree/bindings/display/panel/novatek,nt36672a.yaml
6316 F:      drivers/gpu/drm/panel/panel-novatek-nt36672a.c
6317
6318 DRM DRIVER FOR NVIDIA GEFORCE/QUADRO GPUS
6319 M:      Ben Skeggs <bskeggs@redhat.com>
6320 M:      Karol Herbst <kherbst@redhat.com>
6321 M:      Lyude Paul <lyude@redhat.com>
6322 L:      dri-devel@lists.freedesktop.org
6323 L:      nouveau@lists.freedesktop.org
6324 S:      Supported
6325 W:      https://nouveau.freedesktop.org/
6326 Q:      https://patchwork.freedesktop.org/project/nouveau/
6327 Q:      https://gitlab.freedesktop.org/drm/nouveau/-/merge_requests
6328 B:      https://gitlab.freedesktop.org/drm/nouveau/-/issues
6329 C:      irc://irc.oftc.net/nouveau
6330 T:      git https://gitlab.freedesktop.org/drm/nouveau.git
6331 F:      drivers/gpu/drm/nouveau/
6332 F:      include/uapi/drm/nouveau_drm.h
6333
6334 DRM DRIVER FOR OLIMEX LCD-OLINUXINO PANELS
6335 M:      Stefan Mavrodiev <stefan@olimex.com>
6336 S:      Maintained
6337 F:      Documentation/devicetree/bindings/display/panel/olimex,lcd-olinuxino.yaml
6338 F:      drivers/gpu/drm/panel/panel-olimex-lcd-olinuxino.c
6339
6340 DRM DRIVER FOR PARADE PS8640 BRIDGE CHIP
6341 R:      Douglas Anderson <dianders@chromium.org>
6342 F:      Documentation/devicetree/bindings/display/bridge/ps8640.yaml
6343 F:      drivers/gpu/drm/bridge/parade-ps8640.c
6344
6345 DRM DRIVER FOR PERVASIVE DISPLAYS REPAPER PANELS
6346 M:      Noralf Trønnes <noralf@tronnes.org>
6347 S:      Maintained
6348 T:      git git://anongit.freedesktop.org/drm/drm-misc
6349 F:      Documentation/devicetree/bindings/display/repaper.txt
6350 F:      drivers/gpu/drm/tiny/repaper.c
6351
6352 DRM DRIVER FOR SOLOMON SSD130X OLED DISPLAYS
6353 M:      Javier Martinez Canillas <javierm@redhat.com>
6354 S:      Maintained
6355 T:      git git://anongit.freedesktop.org/drm/drm-misc
6356 F:      Documentation/devicetree/bindings/display/solomon,ssd1307fb.yaml
6357 F:      drivers/gpu/drm/solomon/ssd130x*
6358
6359 DRM DRIVER FOR QEMU'S CIRRUS DEVICE
6360 M:      Dave Airlie <airlied@redhat.com>
6361 M:      Gerd Hoffmann <kraxel@redhat.com>
6362 L:      virtualization@lists.linux-foundation.org
6363 S:      Obsolete
6364 W:      https://www.kraxel.org/blog/2014/10/qemu-using-cirrus-considered-harmful/
6365 T:      git git://anongit.freedesktop.org/drm/drm-misc
6366 F:      drivers/gpu/drm/tiny/cirrus.c
6367
6368 DRM DRIVER FOR QXL VIRTUAL GPU
6369 M:      Dave Airlie <airlied@redhat.com>
6370 M:      Gerd Hoffmann <kraxel@redhat.com>
6371 L:      virtualization@lists.linux-foundation.org
6372 L:      spice-devel@lists.freedesktop.org
6373 S:      Maintained
6374 T:      git git://anongit.freedesktop.org/drm/drm-misc
6375 F:      drivers/gpu/drm/qxl/
6376 F:      include/uapi/drm/qxl_drm.h
6377
6378 DRM DRIVER FOR RAGE 128 VIDEO CARDS
6379 S:      Orphan / Obsolete
6380 F:      drivers/gpu/drm/r128/
6381 F:      include/uapi/drm/r128_drm.h
6382
6383 DRM DRIVER FOR RAYDIUM RM67191 PANELS
6384 M:      Robert Chiras <robert.chiras@nxp.com>
6385 S:      Maintained
6386 F:      Documentation/devicetree/bindings/display/panel/raydium,rm67191.yaml
6387 F:      drivers/gpu/drm/panel/panel-raydium-rm67191.c
6388
6389 DRM DRIVER FOR SAMSUNG DB7430 PANELS
6390 M:      Linus Walleij <linus.walleij@linaro.org>
6391 S:      Maintained
6392 T:      git git://anongit.freedesktop.org/drm/drm-misc
6393 F:      Documentation/devicetree/bindings/display/panel/samsung,lms397kf04.yaml
6394 F:      drivers/gpu/drm/panel/panel-samsung-db7430.c
6395
6396 DRM DRIVER FOR SAMSUNG S6D27A1 PANELS
6397 M:      Markuss Broks <markuss.broks@gmail.com>
6398 S:      Maintained
6399 F:      Documentation/devicetree/bindings/display/panel/samsung,s6d27a1.yaml
6400 F:      drivers/gpu/drm/panel/panel-samsung-s6d27a1.c
6401
6402 DRM DRIVER FOR SITRONIX ST7703 PANELS
6403 M:      Guido Günther <agx@sigxcpu.org>
6404 R:      Purism Kernel Team <kernel@puri.sm>
6405 R:      Ondrej Jirman <megous@megous.com>
6406 S:      Maintained
6407 F:      Documentation/devicetree/bindings/display/panel/rocktech,jh057n00900.yaml
6408 F:      drivers/gpu/drm/panel/panel-sitronix-st7703.c
6409
6410 DRM DRIVER FOR SAVAGE VIDEO CARDS
6411 S:      Orphan / Obsolete
6412 F:      drivers/gpu/drm/savage/
6413 F:      include/uapi/drm/savage_drm.h
6414
6415 DRM DRIVER FOR SIMPLE FRAMEBUFFERS
6416 M:      Thomas Zimmermann <tzimmermann@suse.de>
6417 L:      dri-devel@lists.freedesktop.org
6418 S:      Maintained
6419 T:      git git://anongit.freedesktop.org/drm/drm-misc
6420 F:      drivers/gpu/drm/tiny/simpledrm.c
6421
6422 DRM DRIVER FOR SIS VIDEO CARDS
6423 S:      Orphan / Obsolete
6424 F:      drivers/gpu/drm/sis/
6425 F:      include/uapi/drm/sis_drm.h
6426
6427 DRM DRIVER FOR SITRONIX ST7586 PANELS
6428 M:      David Lechner <david@lechnology.com>
6429 S:      Maintained
6430 T:      git git://anongit.freedesktop.org/drm/drm-misc
6431 F:      Documentation/devicetree/bindings/display/sitronix,st7586.txt
6432 F:      drivers/gpu/drm/tiny/st7586.c
6433
6434 DRM DRIVER FOR SITRONIX ST7701 PANELS
6435 M:      Jagan Teki <jagan@amarulasolutions.com>
6436 S:      Maintained
6437 F:      Documentation/devicetree/bindings/display/panel/sitronix,st7701.yaml
6438 F:      drivers/gpu/drm/panel/panel-sitronix-st7701.c
6439
6440 DRM DRIVER FOR SITRONIX ST7735R PANELS
6441 M:      David Lechner <david@lechnology.com>
6442 S:      Maintained
6443 T:      git git://anongit.freedesktop.org/drm/drm-misc
6444 F:      Documentation/devicetree/bindings/display/sitronix,st7735r.yaml
6445 F:      drivers/gpu/drm/tiny/st7735r.c
6446
6447 DRM DRIVER FOR ST-ERICSSON MCDE
6448 M:      Linus Walleij <linus.walleij@linaro.org>
6449 S:      Maintained
6450 T:      git git://anongit.freedesktop.org/drm/drm-misc
6451 F:      Documentation/devicetree/bindings/display/ste,mcde.yaml
6452 F:      drivers/gpu/drm/mcde/
6453
6454 DRM DRIVER FOR TDFX VIDEO CARDS
6455 S:      Orphan / Obsolete
6456 F:      drivers/gpu/drm/tdfx/
6457
6458 DRM DRIVER FOR TI SN65DSI86 BRIDGE CHIP
6459 R:      Douglas Anderson <dianders@chromium.org>
6460 F:      Documentation/devicetree/bindings/display/bridge/ti,sn65dsi86.yaml
6461 F:      drivers/gpu/drm/bridge/ti-sn65dsi86.c
6462
6463 DRM DRIVER FOR TPO TPG110 PANELS
6464 M:      Linus Walleij <linus.walleij@linaro.org>
6465 S:      Maintained
6466 T:      git git://anongit.freedesktop.org/drm/drm-misc
6467 F:      Documentation/devicetree/bindings/display/panel/tpo,tpg110.yaml
6468 F:      drivers/gpu/drm/panel/panel-tpo-tpg110.c
6469
6470 DRM DRIVER FOR USB DISPLAYLINK VIDEO ADAPTERS
6471 M:      Dave Airlie <airlied@redhat.com>
6472 R:      Sean Paul <sean@poorly.run>
6473 R:      Thomas Zimmermann <tzimmermann@suse.de>
6474 L:      dri-devel@lists.freedesktop.org
6475 S:      Supported
6476 T:      git git://anongit.freedesktop.org/drm/drm-misc
6477 F:      drivers/gpu/drm/udl/
6478
6479 DRM DRIVER FOR VIRTUAL KERNEL MODESETTING (VKMS)
6480 M:      Rodrigo Siqueira <rodrigosiqueiramelo@gmail.com>
6481 M:      Melissa Wen <melissa.srw@gmail.com>
6482 R:      Haneen Mohammed <hamohammed.sa@gmail.com>
6483 R:      Daniel Vetter <daniel@ffwll.ch>
6484 L:      dri-devel@lists.freedesktop.org
6485 S:      Maintained
6486 T:      git git://anongit.freedesktop.org/drm/drm-misc
6487 F:      Documentation/gpu/vkms.rst
6488 F:      drivers/gpu/drm/vkms/
6489
6490 DRM DRIVER FOR VIRTUALBOX VIRTUAL GPU
6491 M:      Hans de Goede <hdegoede@redhat.com>
6492 L:      dri-devel@lists.freedesktop.org
6493 S:      Maintained
6494 T:      git git://anongit.freedesktop.org/drm/drm-misc
6495 F:      drivers/gpu/drm/vboxvideo/
6496
6497 DRM DRIVER FOR VMWARE VIRTUAL GPU
6498 M:      Zack Rusin <zackr@vmware.com>
6499 R:      VMware Graphics Reviewers <linux-graphics-maintainer@vmware.com>
6500 L:      dri-devel@lists.freedesktop.org
6501 S:      Supported
6502 T:      git git://anongit.freedesktop.org/drm/drm-misc
6503 F:      drivers/gpu/drm/vmwgfx/
6504 F:      include/uapi/drm/vmwgfx_drm.h
6505
6506 DRM DRIVER FOR WIDECHIPS WS2401 PANELS
6507 M:      Linus Walleij <linus.walleij@linaro.org>
6508 S:      Maintained
6509 T:      git git://anongit.freedesktop.org/drm/drm-misc
6510 F:      Documentation/devicetree/bindings/display/panel/samsung,lms380kf01.yaml
6511 F:      drivers/gpu/drm/panel/panel-widechips-ws2401.c
6512
6513 DRM DRIVERS
6514 M:      David Airlie <airlied@linux.ie>
6515 M:      Daniel Vetter <daniel@ffwll.ch>
6516 L:      dri-devel@lists.freedesktop.org
6517 S:      Maintained
6518 B:      https://gitlab.freedesktop.org/drm
6519 C:      irc://irc.oftc.net/dri-devel
6520 T:      git git://anongit.freedesktop.org/drm/drm
6521 F:      Documentation/devicetree/bindings/display/
6522 F:      Documentation/devicetree/bindings/gpu/
6523 F:      Documentation/gpu/
6524 F:      drivers/gpu/
6525 F:      include/drm/
6526 F:      include/linux/vga*
6527 F:      include/uapi/drm/
6528
6529 DRM DRIVERS AND MISC GPU PATCHES
6530 M:      Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
6531 M:      Maxime Ripard <mripard@kernel.org>
6532 M:      Thomas Zimmermann <tzimmermann@suse.de>
6533 S:      Maintained
6534 W:      https://01.org/linuxgraphics/gfx-docs/maintainer-tools/drm-misc.html
6535 T:      git git://anongit.freedesktop.org/drm/drm-misc
6536 F:      Documentation/gpu/
6537 F:      drivers/gpu/drm/*
6538 F:      drivers/gpu/vga/
6539 F:      include/drm/drm*
6540 F:      include/linux/vga*
6541 F:      include/uapi/drm/drm*
6542
6543 DRM DRIVERS FOR ALLWINNER A10
6544 M:      Maxime Ripard <mripard@kernel.org>
6545 M:      Chen-Yu Tsai <wens@csie.org>
6546 L:      dri-devel@lists.freedesktop.org
6547 S:      Supported
6548 T:      git git://anongit.freedesktop.org/drm/drm-misc
6549 F:      Documentation/devicetree/bindings/display/allwinner*
6550 F:      drivers/gpu/drm/sun4i/
6551
6552 DRM DRIVERS FOR AMLOGIC SOCS
6553 M:      Neil Armstrong <narmstrong@baylibre.com>
6554 L:      dri-devel@lists.freedesktop.org
6555 L:      linux-amlogic@lists.infradead.org
6556 S:      Supported
6557 W:      http://linux-meson.com/
6558 T:      git git://anongit.freedesktop.org/drm/drm-misc
6559 F:      Documentation/devicetree/bindings/display/amlogic,meson-dw-hdmi.yaml
6560 F:      Documentation/devicetree/bindings/display/amlogic,meson-vpu.yaml
6561 F:      Documentation/gpu/meson.rst
6562 F:      drivers/gpu/drm/meson/
6563
6564 DRM DRIVERS FOR ATMEL HLCDC
6565 M:      Sam Ravnborg <sam@ravnborg.org>
6566 M:      Boris Brezillon <bbrezillon@kernel.org>
6567 L:      dri-devel@lists.freedesktop.org
6568 S:      Supported
6569 T:      git git://anongit.freedesktop.org/drm/drm-misc
6570 F:      Documentation/devicetree/bindings/display/atmel/
6571 F:      drivers/gpu/drm/atmel-hlcdc/
6572
6573 DRM DRIVERS FOR BRIDGE CHIPS
6574 M:      Andrzej Hajda <andrzej.hajda@intel.com>
6575 M:      Neil Armstrong <narmstrong@baylibre.com>
6576 M:      Robert Foss <robert.foss@linaro.org>
6577 R:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
6578 R:      Jonas Karlman <jonas@kwiboo.se>
6579 R:      Jernej Skrabec <jernej.skrabec@gmail.com>
6580 S:      Maintained
6581 T:      git git://anongit.freedesktop.org/drm/drm-misc
6582 F:      Documentation/devicetree/bindings/display/bridge/
6583 F:      drivers/gpu/drm/bridge/
6584
6585 DRM DRIVERS FOR EXYNOS
6586 M:      Inki Dae <inki.dae@samsung.com>
6587 M:      Joonyoung Shim <jy0922.shim@samsung.com>
6588 M:      Seung-Woo Kim <sw0312.kim@samsung.com>
6589 M:      Kyungmin Park <kyungmin.park@samsung.com>
6590 L:      dri-devel@lists.freedesktop.org
6591 S:      Supported
6592 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
6593 F:      Documentation/devicetree/bindings/display/exynos/
6594 F:      Documentation/devicetree/bindings/display/samsung/
6595 F:      drivers/gpu/drm/exynos/
6596 F:      include/uapi/drm/exynos_drm.h
6597
6598 DRM DRIVERS FOR FREESCALE DCU
6599 M:      Stefan Agner <stefan@agner.ch>
6600 M:      Alison Wang <alison.wang@nxp.com>
6601 L:      dri-devel@lists.freedesktop.org
6602 S:      Supported
6603 T:      git git://anongit.freedesktop.org/drm/drm-misc
6604 F:      Documentation/devicetree/bindings/display/fsl,dcu.txt
6605 F:      Documentation/devicetree/bindings/display/fsl,tcon.txt
6606 F:      drivers/gpu/drm/fsl-dcu/
6607
6608 DRM DRIVERS FOR FREESCALE IMX
6609 M:      Philipp Zabel <p.zabel@pengutronix.de>
6610 L:      dri-devel@lists.freedesktop.org
6611 S:      Maintained
6612 F:      Documentation/devicetree/bindings/display/imx/
6613 F:      drivers/gpu/drm/imx/
6614 F:      drivers/gpu/ipu-v3/
6615
6616 DRM DRIVERS FOR GMA500 (Poulsbo, Moorestown and derivative chipsets)
6617 M:      Patrik Jakobsson <patrik.r.jakobsson@gmail.com>
6618 L:      dri-devel@lists.freedesktop.org
6619 S:      Maintained
6620 T:      git git://github.com/patjak/drm-gma500
6621 F:      drivers/gpu/drm/gma500/
6622
6623 DRM DRIVERS FOR HISILICON
6624 M:      Xinliang Liu <xinliang.liu@linaro.org>
6625 M:      Tian Tao  <tiantao6@hisilicon.com>
6626 R:      John Stultz <jstultz@google.com>
6627 R:      Xinwei Kong <kong.kongxinwei@hisilicon.com>
6628 R:      Chen Feng <puck.chen@hisilicon.com>
6629 L:      dri-devel@lists.freedesktop.org
6630 S:      Maintained
6631 T:      git git://anongit.freedesktop.org/drm/drm-misc
6632 F:      Documentation/devicetree/bindings/display/hisilicon/
6633 F:      drivers/gpu/drm/hisilicon/
6634
6635 DRM DRIVER FOR HYPERV SYNTHETIC VIDEO DEVICE
6636 M:      Deepak Rawat <drawat.floss@gmail.com>
6637 L:      linux-hyperv@vger.kernel.org
6638 L:      dri-devel@lists.freedesktop.org
6639 S:      Maintained
6640 T:      git git://anongit.freedesktop.org/drm/drm-misc
6641 F:      drivers/gpu/drm/hyperv
6642
6643 DRM DRIVERS FOR LIMA
6644 M:      Qiang Yu <yuq825@gmail.com>
6645 L:      dri-devel@lists.freedesktop.org
6646 L:      lima@lists.freedesktop.org (moderated for non-subscribers)
6647 S:      Maintained
6648 T:      git git://anongit.freedesktop.org/drm/drm-misc
6649 F:      drivers/gpu/drm/lima/
6650 F:      include/uapi/drm/lima_drm.h
6651
6652 DRM DRIVERS FOR MEDIATEK
6653 M:      Chun-Kuang Hu <chunkuang.hu@kernel.org>
6654 M:      Philipp Zabel <p.zabel@pengutronix.de>
6655 L:      dri-devel@lists.freedesktop.org
6656 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
6657 S:      Supported
6658 F:      Documentation/devicetree/bindings/display/mediatek/
6659 F:      drivers/gpu/drm/mediatek/
6660 F:      drivers/phy/mediatek/phy-mtk-hdmi*
6661 F:      drivers/phy/mediatek/phy-mtk-mipi*
6662
6663 DRM DRIVERS FOR NVIDIA TEGRA
6664 M:      Thierry Reding <thierry.reding@gmail.com>
6665 L:      dri-devel@lists.freedesktop.org
6666 L:      linux-tegra@vger.kernel.org
6667 S:      Supported
6668 T:      git git://anongit.freedesktop.org/tegra/linux.git
6669 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
6670 F:      Documentation/devicetree/bindings/gpu/host1x/
6671 F:      drivers/gpu/drm/tegra/
6672 F:      drivers/gpu/host1x/
6673 F:      include/linux/host1x.h
6674 F:      include/uapi/drm/tegra_drm.h
6675
6676 DRM DRIVERS FOR RENESAS
6677 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6678 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
6679 L:      dri-devel@lists.freedesktop.org
6680 L:      linux-renesas-soc@vger.kernel.org
6681 S:      Supported
6682 T:      git git://linuxtv.org/pinchartl/media drm/du/next
6683 F:      Documentation/devicetree/bindings/display/bridge/renesas,dsi-csi2-tx.yaml
6684 F:      Documentation/devicetree/bindings/display/bridge/renesas,dw-hdmi.yaml
6685 F:      Documentation/devicetree/bindings/display/bridge/renesas,lvds.yaml
6686 F:      Documentation/devicetree/bindings/display/renesas,du.yaml
6687 F:      drivers/gpu/drm/rcar-du/
6688 F:      drivers/gpu/drm/shmobile/
6689 F:      include/linux/platform_data/shmob_drm.h
6690
6691 DRM DRIVERS FOR ROCKCHIP
6692 M:      Sandy Huang <hjc@rock-chips.com>
6693 M:      Heiko Stübner <heiko@sntech.de>
6694 L:      dri-devel@lists.freedesktop.org
6695 S:      Maintained
6696 T:      git git://anongit.freedesktop.org/drm/drm-misc
6697 F:      Documentation/devicetree/bindings/display/rockchip/
6698 F:      drivers/gpu/drm/rockchip/
6699
6700 DRM DRIVERS FOR STI
6701 M:      Alain Volmat <alain.volmat@foss.st.com>
6702 L:      dri-devel@lists.freedesktop.org
6703 S:      Maintained
6704 T:      git git://anongit.freedesktop.org/drm/drm-misc
6705 F:      Documentation/devicetree/bindings/display/st,stih4xx.txt
6706 F:      drivers/gpu/drm/sti
6707
6708 DRM DRIVERS FOR STM
6709 M:      Yannick Fertre <yannick.fertre@foss.st.com>
6710 M:      Raphael Gallais-Pou <raphael.gallais-pou@foss.st.com>
6711 M:      Philippe Cornu <philippe.cornu@foss.st.com>
6712 L:      dri-devel@lists.freedesktop.org
6713 S:      Maintained
6714 T:      git git://anongit.freedesktop.org/drm/drm-misc
6715 F:      Documentation/devicetree/bindings/display/st,stm32-ltdc.yaml
6716 F:      drivers/gpu/drm/stm
6717
6718 DRM DRIVERS FOR TI KEYSTONE
6719 M:      Jyri Sarha <jyri.sarha@iki.fi>
6720 M:      Tomi Valkeinen <tomba@kernel.org>
6721 L:      dri-devel@lists.freedesktop.org
6722 S:      Maintained
6723 T:      git git://anongit.freedesktop.org/drm/drm-misc
6724 F:      Documentation/devicetree/bindings/display/ti/ti,am65x-dss.yaml
6725 F:      Documentation/devicetree/bindings/display/ti/ti,j721e-dss.yaml
6726 F:      Documentation/devicetree/bindings/display/ti/ti,k2g-dss.yaml
6727 F:      drivers/gpu/drm/tidss/
6728
6729 DRM DRIVERS FOR TI LCDC
6730 M:      Jyri Sarha <jyri.sarha@iki.fi>
6731 R:      Tomi Valkeinen <tomba@kernel.org>
6732 L:      dri-devel@lists.freedesktop.org
6733 S:      Maintained
6734 F:      Documentation/devicetree/bindings/display/tilcdc/
6735 F:      drivers/gpu/drm/tilcdc/
6736
6737 DRM DRIVERS FOR TI OMAP
6738 M:      Tomi Valkeinen <tomba@kernel.org>
6739 L:      dri-devel@lists.freedesktop.org
6740 S:      Maintained
6741 F:      Documentation/devicetree/bindings/display/ti/
6742 F:      drivers/gpu/drm/omapdrm/
6743
6744 DRM DRIVERS FOR V3D
6745 M:      Emma Anholt <emma@anholt.net>
6746 S:      Supported
6747 T:      git git://anongit.freedesktop.org/drm/drm-misc
6748 F:      Documentation/devicetree/bindings/gpu/brcm,bcm-v3d.yaml
6749 F:      drivers/gpu/drm/v3d/
6750 F:      include/uapi/drm/v3d_drm.h
6751
6752 DRM DRIVERS FOR VC4
6753 M:      Emma Anholt <emma@anholt.net>
6754 M:      Maxime Ripard <mripard@kernel.org>
6755 S:      Supported
6756 T:      git git://github.com/anholt/linux
6757 T:      git git://anongit.freedesktop.org/drm/drm-misc
6758 F:      Documentation/devicetree/bindings/display/brcm,bcm2835-*.yaml
6759 F:      drivers/gpu/drm/vc4/
6760 F:      include/uapi/drm/vc4_drm.h
6761
6762 DRM DRIVERS FOR VIVANTE GPU IP
6763 M:      Lucas Stach <l.stach@pengutronix.de>
6764 R:      Russell King <linux+etnaviv@armlinux.org.uk>
6765 R:      Christian Gmeiner <christian.gmeiner@gmail.com>
6766 L:      etnaviv@lists.freedesktop.org (moderated for non-subscribers)
6767 L:      dri-devel@lists.freedesktop.org
6768 S:      Maintained
6769 F:      Documentation/devicetree/bindings/gpu/vivante,gc.yaml
6770 F:      drivers/gpu/drm/etnaviv/
6771 F:      include/uapi/drm/etnaviv_drm.h
6772
6773 DRM DRIVERS FOR XEN
6774 M:      Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
6775 L:      dri-devel@lists.freedesktop.org
6776 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
6777 S:      Supported
6778 T:      git git://anongit.freedesktop.org/drm/drm-misc
6779 F:      Documentation/gpu/xen-front.rst
6780 F:      drivers/gpu/drm/xen/
6781
6782 DRM DRIVERS FOR XILINX
6783 M:      Hyun Kwon <hyun.kwon@xilinx.com>
6784 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6785 L:      dri-devel@lists.freedesktop.org
6786 S:      Maintained
6787 T:      git git://anongit.freedesktop.org/drm/drm-misc
6788 F:      Documentation/devicetree/bindings/display/xlnx/
6789 F:      drivers/gpu/drm/xlnx/
6790
6791 DRM PANEL DRIVERS
6792 M:      Thierry Reding <thierry.reding@gmail.com>
6793 R:      Sam Ravnborg <sam@ravnborg.org>
6794 L:      dri-devel@lists.freedesktop.org
6795 S:      Maintained
6796 T:      git git://anongit.freedesktop.org/drm/drm-misc
6797 F:      Documentation/devicetree/bindings/display/panel/
6798 F:      drivers/gpu/drm/drm_panel.c
6799 F:      drivers/gpu/drm/panel/
6800 F:      include/drm/drm_panel.h
6801
6802 DRM PRIVACY-SCREEN CLASS
6803 M:      Hans de Goede <hdegoede@redhat.com>
6804 L:      dri-devel@lists.freedesktop.org
6805 S:      Maintained
6806 T:      git git://anongit.freedesktop.org/drm/drm-misc
6807 F:      drivers/gpu/drm/drm_privacy_screen*
6808 F:      include/drm/drm_privacy_screen*
6809
6810 DRM TTM SUBSYSTEM
6811 M:      Christian Koenig <christian.koenig@amd.com>
6812 M:      Huang Rui <ray.huang@amd.com>
6813 L:      dri-devel@lists.freedesktop.org
6814 S:      Maintained
6815 T:      git git://anongit.freedesktop.org/drm/drm-misc
6816 F:      drivers/gpu/drm/ttm/
6817 F:      include/drm/ttm/
6818
6819 DRM GPU SCHEDULER
6820 M:      Andrey Grodzovsky <andrey.grodzovsky@amd.com>
6821 L:      dri-devel@lists.freedesktop.org
6822 S:      Maintained
6823 T:      git git://anongit.freedesktop.org/drm/drm-misc
6824 F:      drivers/gpu/drm/scheduler/
6825 F:      include/drm/gpu_scheduler.h
6826
6827 DSBR100 USB FM RADIO DRIVER
6828 M:      Alexey Klimov <klimov.linux@gmail.com>
6829 L:      linux-media@vger.kernel.org
6830 S:      Maintained
6831 T:      git git://linuxtv.org/media_tree.git
6832 F:      drivers/media/radio/dsbr100.c
6833
6834 DT3155 MEDIA DRIVER
6835 M:      Hans Verkuil <hverkuil@xs4all.nl>
6836 L:      linux-media@vger.kernel.org
6837 S:      Odd Fixes
6838 W:      https://linuxtv.org
6839 T:      git git://linuxtv.org/media_tree.git
6840 F:      drivers/media/pci/dt3155/
6841
6842 DVB_USB_AF9015 MEDIA DRIVER
6843 M:      Antti Palosaari <crope@iki.fi>
6844 L:      linux-media@vger.kernel.org
6845 S:      Maintained
6846 W:      https://linuxtv.org
6847 W:      http://palosaari.fi/linux/
6848 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6849 T:      git git://linuxtv.org/anttip/media_tree.git
6850 F:      drivers/media/usb/dvb-usb-v2/af9015*
6851
6852 DVB_USB_AF9035 MEDIA DRIVER
6853 M:      Antti Palosaari <crope@iki.fi>
6854 L:      linux-media@vger.kernel.org
6855 S:      Maintained
6856 W:      https://linuxtv.org
6857 W:      http://palosaari.fi/linux/
6858 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6859 T:      git git://linuxtv.org/anttip/media_tree.git
6860 F:      drivers/media/usb/dvb-usb-v2/af9035*
6861
6862 DVB_USB_ANYSEE MEDIA DRIVER
6863 M:      Antti Palosaari <crope@iki.fi>
6864 L:      linux-media@vger.kernel.org
6865 S:      Maintained
6866 W:      https://linuxtv.org
6867 W:      http://palosaari.fi/linux/
6868 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6869 T:      git git://linuxtv.org/anttip/media_tree.git
6870 F:      drivers/media/usb/dvb-usb-v2/anysee*
6871
6872 DVB_USB_AU6610 MEDIA DRIVER
6873 M:      Antti Palosaari <crope@iki.fi>
6874 L:      linux-media@vger.kernel.org
6875 S:      Maintained
6876 W:      https://linuxtv.org
6877 W:      http://palosaari.fi/linux/
6878 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6879 T:      git git://linuxtv.org/anttip/media_tree.git
6880 F:      drivers/media/usb/dvb-usb-v2/au6610*
6881
6882 DVB_USB_CE6230 MEDIA DRIVER
6883 M:      Antti Palosaari <crope@iki.fi>
6884 L:      linux-media@vger.kernel.org
6885 S:      Maintained
6886 W:      https://linuxtv.org
6887 W:      http://palosaari.fi/linux/
6888 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6889 T:      git git://linuxtv.org/anttip/media_tree.git
6890 F:      drivers/media/usb/dvb-usb-v2/ce6230*
6891
6892 DVB_USB_CXUSB MEDIA DRIVER
6893 M:      Michael Krufky <mkrufky@linuxtv.org>
6894 L:      linux-media@vger.kernel.org
6895 S:      Maintained
6896 W:      https://linuxtv.org
6897 W:      http://github.com/mkrufky
6898 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6899 T:      git git://linuxtv.org/media_tree.git
6900 F:      drivers/media/usb/dvb-usb/cxusb*
6901
6902 DVB_USB_EC168 MEDIA DRIVER
6903 M:      Antti Palosaari <crope@iki.fi>
6904 L:      linux-media@vger.kernel.org
6905 S:      Maintained
6906 W:      https://linuxtv.org
6907 W:      http://palosaari.fi/linux/
6908 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6909 T:      git git://linuxtv.org/anttip/media_tree.git
6910 F:      drivers/media/usb/dvb-usb-v2/ec168*
6911
6912 DVB_USB_GL861 MEDIA DRIVER
6913 M:      Antti Palosaari <crope@iki.fi>
6914 L:      linux-media@vger.kernel.org
6915 S:      Maintained
6916 W:      https://linuxtv.org
6917 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6918 T:      git git://linuxtv.org/anttip/media_tree.git
6919 F:      drivers/media/usb/dvb-usb-v2/gl861*
6920
6921 DVB_USB_MXL111SF MEDIA DRIVER
6922 M:      Michael Krufky <mkrufky@linuxtv.org>
6923 L:      linux-media@vger.kernel.org
6924 S:      Maintained
6925 W:      https://linuxtv.org
6926 W:      http://github.com/mkrufky
6927 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6928 T:      git git://linuxtv.org/mkrufky/mxl111sf.git
6929 F:      drivers/media/usb/dvb-usb-v2/mxl111sf*
6930
6931 DVB_USB_RTL28XXU MEDIA DRIVER
6932 M:      Antti Palosaari <crope@iki.fi>
6933 L:      linux-media@vger.kernel.org
6934 S:      Maintained
6935 W:      https://linuxtv.org
6936 W:      http://palosaari.fi/linux/
6937 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6938 T:      git git://linuxtv.org/anttip/media_tree.git
6939 F:      drivers/media/usb/dvb-usb-v2/rtl28xxu*
6940
6941 DVB_USB_V2 MEDIA DRIVER
6942 M:      Antti Palosaari <crope@iki.fi>
6943 L:      linux-media@vger.kernel.org
6944 S:      Maintained
6945 W:      https://linuxtv.org
6946 W:      http://palosaari.fi/linux/
6947 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6948 T:      git git://linuxtv.org/anttip/media_tree.git
6949 F:      drivers/media/usb/dvb-usb-v2/dvb_usb*
6950 F:      drivers/media/usb/dvb-usb-v2/usb_urb.c
6951
6952 DYNAMIC DEBUG
6953 M:      Jason Baron <jbaron@akamai.com>
6954 S:      Maintained
6955 F:      include/linux/dynamic_debug.h
6956 F:      lib/dynamic_debug.c
6957
6958 DYNAMIC INTERRUPT MODERATION
6959 M:      Tal Gilboa <talgi@nvidia.com>
6960 S:      Maintained
6961 F:      Documentation/networking/net_dim.rst
6962 F:      include/linux/dim.h
6963 F:      lib/dim/
6964
6965 DZ DECSTATION DZ11 SERIAL DRIVER
6966 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
6967 S:      Maintained
6968 F:      drivers/tty/serial/dz.*
6969
6970 E3X0 POWER BUTTON DRIVER
6971 M:      Moritz Fischer <moritz.fischer@ettus.com>
6972 L:      usrp-users@lists.ettus.com
6973 S:      Supported
6974 W:      http://www.ettus.com
6975 F:      Documentation/devicetree/bindings/input/e3x0-button.txt
6976 F:      drivers/input/misc/e3x0-button.c
6977
6978 E4000 MEDIA DRIVER
6979 M:      Antti Palosaari <crope@iki.fi>
6980 L:      linux-media@vger.kernel.org
6981 S:      Maintained
6982 W:      https://linuxtv.org
6983 W:      http://palosaari.fi/linux/
6984 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6985 T:      git git://linuxtv.org/anttip/media_tree.git
6986 F:      drivers/media/tuners/e4000*
6987
6988 EARTH_PT1 MEDIA DRIVER
6989 M:      Akihiro Tsukada <tskd08@gmail.com>
6990 L:      linux-media@vger.kernel.org
6991 S:      Odd Fixes
6992 F:      drivers/media/pci/pt1/
6993
6994 EARTH_PT3 MEDIA DRIVER
6995 M:      Akihiro Tsukada <tskd08@gmail.com>
6996 L:      linux-media@vger.kernel.org
6997 S:      Odd Fixes
6998 F:      drivers/media/pci/pt3/
6999
7000 EC100 MEDIA DRIVER
7001 M:      Antti Palosaari <crope@iki.fi>
7002 L:      linux-media@vger.kernel.org
7003 S:      Maintained
7004 W:      https://linuxtv.org
7005 W:      http://palosaari.fi/linux/
7006 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7007 T:      git git://linuxtv.org/anttip/media_tree.git
7008 F:      drivers/media/dvb-frontends/ec100*
7009
7010 ECRYPT FILE SYSTEM
7011 M:      Tyler Hicks <code@tyhicks.com>
7012 L:      ecryptfs@vger.kernel.org
7013 S:      Odd Fixes
7014 W:      http://ecryptfs.org
7015 W:      https://launchpad.net/ecryptfs
7016 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tyhicks/ecryptfs.git
7017 F:      Documentation/filesystems/ecryptfs.rst
7018 F:      fs/ecryptfs/
7019
7020 EDAC-AMD64
7021 M:      Yazen Ghannam <yazen.ghannam@amd.com>
7022 L:      linux-edac@vger.kernel.org
7023 S:      Supported
7024 F:      drivers/edac/amd64_edac*
7025 F:      drivers/edac/mce_amd*
7026
7027 EDAC-ARMADA
7028 M:      Jan Luebbe <jlu@pengutronix.de>
7029 L:      linux-edac@vger.kernel.org
7030 S:      Maintained
7031 F:      Documentation/devicetree/bindings/memory-controllers/marvell,mvebu-sdram-controller.yaml
7032 F:      drivers/edac/armada_xp_*
7033
7034 EDAC-AST2500
7035 M:      Stefan Schaeckeler <sschaeck@cisco.com>
7036 S:      Supported
7037 F:      Documentation/devicetree/bindings/edac/aspeed-sdram-edac.txt
7038 F:      drivers/edac/aspeed_edac.c
7039
7040 EDAC-BLUEFIELD
7041 M:      Shravan Kumar Ramani <shravankr@nvidia.com>
7042 S:      Supported
7043 F:      drivers/edac/bluefield_edac.c
7044
7045 EDAC-CALXEDA
7046 M:      Andre Przywara <andre.przywara@arm.com>
7047 L:      linux-edac@vger.kernel.org
7048 S:      Maintained
7049 F:      drivers/edac/highbank*
7050
7051 EDAC-CAVIUM OCTEON
7052 M:      Ralf Baechle <ralf@linux-mips.org>
7053 L:      linux-edac@vger.kernel.org
7054 L:      linux-mips@vger.kernel.org
7055 S:      Supported
7056 F:      drivers/edac/octeon_edac*
7057
7058 EDAC-CAVIUM THUNDERX
7059 M:      Robert Richter <rric@kernel.org>
7060 L:      linux-edac@vger.kernel.org
7061 S:      Odd Fixes
7062 F:      drivers/edac/thunderx_edac*
7063
7064 EDAC-CORE
7065 M:      Borislav Petkov <bp@alien8.de>
7066 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
7067 M:      Tony Luck <tony.luck@intel.com>
7068 R:      James Morse <james.morse@arm.com>
7069 R:      Robert Richter <rric@kernel.org>
7070 L:      linux-edac@vger.kernel.org
7071 S:      Supported
7072 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ras/ras.git edac-for-next
7073 F:      Documentation/admin-guide/ras.rst
7074 F:      Documentation/driver-api/edac.rst
7075 F:      drivers/edac/
7076 F:      include/linux/edac.h
7077
7078 EDAC-DMC520
7079 M:      Lei Wang <lewan@microsoft.com>
7080 L:      linux-edac@vger.kernel.org
7081 S:      Supported
7082 F:      drivers/edac/dmc520_edac.c
7083
7084 EDAC-E752X
7085 M:      Mark Gross <markgross@kernel.org>
7086 L:      linux-edac@vger.kernel.org
7087 S:      Maintained
7088 F:      drivers/edac/e752x_edac.c
7089
7090 EDAC-E7XXX
7091 L:      linux-edac@vger.kernel.org
7092 S:      Maintained
7093 F:      drivers/edac/e7xxx_edac.c
7094
7095 EDAC-FSL_DDR
7096 M:      York Sun <york.sun@nxp.com>
7097 L:      linux-edac@vger.kernel.org
7098 S:      Maintained
7099 F:      drivers/edac/fsl_ddr_edac.*
7100
7101 EDAC-GHES
7102 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
7103 L:      linux-edac@vger.kernel.org
7104 S:      Maintained
7105 F:      drivers/edac/ghes_edac.c
7106
7107 EDAC-I10NM
7108 M:      Tony Luck <tony.luck@intel.com>
7109 L:      linux-edac@vger.kernel.org
7110 S:      Maintained
7111 F:      drivers/edac/i10nm_base.c
7112
7113 EDAC-I3000
7114 L:      linux-edac@vger.kernel.org
7115 S:      Orphan
7116 F:      drivers/edac/i3000_edac.c
7117
7118 EDAC-I5000
7119 L:      linux-edac@vger.kernel.org
7120 S:      Maintained
7121 F:      drivers/edac/i5000_edac.c
7122
7123 EDAC-I5400
7124 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
7125 L:      linux-edac@vger.kernel.org
7126 S:      Maintained
7127 F:      drivers/edac/i5400_edac.c
7128
7129 EDAC-I7300
7130 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
7131 L:      linux-edac@vger.kernel.org
7132 S:      Maintained
7133 F:      drivers/edac/i7300_edac.c
7134
7135 EDAC-I7CORE
7136 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
7137 L:      linux-edac@vger.kernel.org
7138 S:      Maintained
7139 F:      drivers/edac/i7core_edac.c
7140
7141 EDAC-I82443BXGX
7142 M:      Tim Small <tim@buttersideup.com>
7143 L:      linux-edac@vger.kernel.org
7144 S:      Maintained
7145 F:      drivers/edac/i82443bxgx_edac.c
7146
7147 EDAC-I82975X
7148 M:      "Arvind R." <arvino55@gmail.com>
7149 L:      linux-edac@vger.kernel.org
7150 S:      Maintained
7151 F:      drivers/edac/i82975x_edac.c
7152
7153 EDAC-IE31200
7154 M:      Jason Baron <jbaron@akamai.com>
7155 L:      linux-edac@vger.kernel.org
7156 S:      Maintained
7157 F:      drivers/edac/ie31200_edac.c
7158
7159 EDAC-IGEN6
7160 M:      Tony Luck <tony.luck@intel.com>
7161 R:      Qiuxu Zhuo <qiuxu.zhuo@intel.com>
7162 L:      linux-edac@vger.kernel.org
7163 S:      Maintained
7164 F:      drivers/edac/igen6_edac.c
7165
7166 EDAC-MPC85XX
7167 M:      Johannes Thumshirn <morbidrsa@gmail.com>
7168 L:      linux-edac@vger.kernel.org
7169 S:      Maintained
7170 F:      drivers/edac/mpc85xx_edac.[ch]
7171
7172 EDAC-PASEMI
7173 M:      Egor Martovetsky <egor@pasemi.com>
7174 L:      linux-edac@vger.kernel.org
7175 S:      Maintained
7176 F:      drivers/edac/pasemi_edac.c
7177
7178 EDAC-PND2
7179 M:      Tony Luck <tony.luck@intel.com>
7180 L:      linux-edac@vger.kernel.org
7181 S:      Maintained
7182 F:      drivers/edac/pnd2_edac.[ch]
7183
7184 EDAC-QCOM
7185 M:      Channagoud Kadabi <ckadabi@codeaurora.org>
7186 M:      Venkata Narendra Kumar Gutta <vnkgutta@codeaurora.org>
7187 L:      linux-arm-msm@vger.kernel.org
7188 L:      linux-edac@vger.kernel.org
7189 S:      Maintained
7190 F:      drivers/edac/qcom_edac.c
7191
7192 EDAC-R82600
7193 M:      Tim Small <tim@buttersideup.com>
7194 L:      linux-edac@vger.kernel.org
7195 S:      Maintained
7196 F:      drivers/edac/r82600_edac.c
7197
7198 EDAC-SBRIDGE
7199 M:      Tony Luck <tony.luck@intel.com>
7200 R:      Qiuxu Zhuo <qiuxu.zhuo@intel.com>
7201 L:      linux-edac@vger.kernel.org
7202 S:      Maintained
7203 F:      drivers/edac/sb_edac.c
7204
7205 EDAC-SKYLAKE
7206 M:      Tony Luck <tony.luck@intel.com>
7207 L:      linux-edac@vger.kernel.org
7208 S:      Maintained
7209 F:      drivers/edac/skx_*.[ch]
7210
7211 EDAC-TI
7212 M:      Tero Kristo <kristo@kernel.org>
7213 L:      linux-edac@vger.kernel.org
7214 S:      Odd Fixes
7215 F:      drivers/edac/ti_edac.c
7216
7217 EDIROL UA-101/UA-1000 DRIVER
7218 M:      Clemens Ladisch <clemens@ladisch.de>
7219 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7220 S:      Maintained
7221 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
7222 F:      sound/usb/misc/ua101.c
7223
7224 EFI TEST DRIVER
7225 M:      Ivan Hu <ivan.hu@canonical.com>
7226 M:      Ard Biesheuvel <ardb@kernel.org>
7227 L:      linux-efi@vger.kernel.org
7228 S:      Maintained
7229 F:      drivers/firmware/efi/test/
7230
7231 EFI VARIABLE FILESYSTEM
7232 M:      Matthew Garrett <matthew.garrett@nebula.com>
7233 M:      Jeremy Kerr <jk@ozlabs.org>
7234 M:      Ard Biesheuvel <ardb@kernel.org>
7235 L:      linux-efi@vger.kernel.org
7236 S:      Maintained
7237 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
7238 F:      fs/efivarfs/
7239
7240 EFIFB FRAMEBUFFER DRIVER
7241 M:      Peter Jones <pjones@redhat.com>
7242 L:      linux-fbdev@vger.kernel.org
7243 S:      Maintained
7244 F:      drivers/video/fbdev/efifb.c
7245
7246 EFS FILESYSTEM
7247 S:      Orphan
7248 W:      http://aeschi.ch.eu.org/efs/
7249 F:      fs/efs/
7250
7251 EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
7252 M:      Douglas Miller <dougmill@linux.ibm.com>
7253 L:      netdev@vger.kernel.org
7254 S:      Maintained
7255 F:      drivers/net/ethernet/ibm/ehea/
7256
7257 EM28XX VIDEO4LINUX DRIVER
7258 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
7259 L:      linux-media@vger.kernel.org
7260 S:      Maintained
7261 W:      https://linuxtv.org
7262 T:      git git://linuxtv.org/media_tree.git
7263 F:      Documentation/admin-guide/media/em28xx*
7264 F:      drivers/media/usb/em28xx/
7265
7266 EMBEDDED LINUX
7267 M:      Matt Mackall <mpm@selenic.com>
7268 M:      David Woodhouse <dwmw2@infradead.org>
7269 L:      linux-embedded@vger.kernel.org
7270 S:      Maintained
7271
7272 EMMC CMDQ HOST CONTROLLER INTERFACE (CQHCI) DRIVER
7273 M:      Adrian Hunter <adrian.hunter@intel.com>
7274 M:      Ritesh Harjani <riteshh@codeaurora.org>
7275 M:      Asutosh Das <asutoshd@codeaurora.org>
7276 L:      linux-mmc@vger.kernel.org
7277 S:      Maintained
7278 F:      drivers/mmc/host/cqhci*
7279
7280 EMULEX 10Gbps iSCSI - OneConnect DRIVER
7281 M:      Ketan Mukadam <ketan.mukadam@broadcom.com>
7282 L:      linux-scsi@vger.kernel.org
7283 S:      Supported
7284 W:      http://www.broadcom.com
7285 F:      drivers/scsi/be2iscsi/
7286
7287 EMULEX 10Gbps NIC BE2, BE3-R, Lancer, Skyhawk-R DRIVER (be2net)
7288 M:      Ajit Khaparde <ajit.khaparde@broadcom.com>
7289 M:      Sriharsha Basavapatna <sriharsha.basavapatna@broadcom.com>
7290 M:      Somnath Kotur <somnath.kotur@broadcom.com>
7291 L:      netdev@vger.kernel.org
7292 S:      Supported
7293 W:      http://www.emulex.com
7294 F:      drivers/net/ethernet/emulex/benet/
7295
7296 EMULEX ONECONNECT ROCE DRIVER
7297 M:      Selvin Xavier <selvin.xavier@broadcom.com>
7298 L:      linux-rdma@vger.kernel.org
7299 S:      Odd Fixes
7300 W:      http://www.broadcom.com
7301 F:      drivers/infiniband/hw/ocrdma/
7302 F:      include/uapi/rdma/ocrdma-abi.h
7303
7304 EMULEX/BROADCOM LPFC FC/FCOE SCSI DRIVER
7305 M:      James Smart <james.smart@broadcom.com>
7306 M:      Dick Kennedy <dick.kennedy@broadcom.com>
7307 L:      linux-scsi@vger.kernel.org
7308 S:      Supported
7309 W:      http://www.broadcom.com
7310 F:      drivers/scsi/lpfc/
7311
7312 EMULEX/BROADCOM EFCT FC/FCOE SCSI TARGET DRIVER
7313 M:      James Smart <james.smart@broadcom.com>
7314 M:      Ram Vegesna <ram.vegesna@broadcom.com>
7315 L:      linux-scsi@vger.kernel.org
7316 L:      target-devel@vger.kernel.org
7317 S:      Supported
7318 W:      http://www.broadcom.com
7319 F:      drivers/scsi/elx/
7320
7321 ENE CB710 FLASH CARD READER DRIVER
7322 M:      Michał Mirosław <mirq-linux@rere.qmqm.pl>
7323 S:      Maintained
7324 F:      drivers/misc/cb710/
7325 F:      drivers/mmc/host/cb710-mmc.*
7326 F:      include/linux/cb710.h
7327
7328 ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
7329 M:      Maxim Levitsky <maximlevitsky@gmail.com>
7330 S:      Maintained
7331 F:      drivers/media/rc/ene_ir.*
7332
7333 EPAPR HYPERVISOR BYTE CHANNEL DEVICE DRIVER
7334 M:      Laurentiu Tudor <laurentiu.tudor@nxp.com>
7335 L:      linuxppc-dev@lists.ozlabs.org
7336 S:      Maintained
7337 F:      drivers/tty/ehv_bytechan.c
7338
7339 EPSON S1D13XXX FRAMEBUFFER DRIVER
7340 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
7341 S:      Maintained
7342 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
7343 F:      drivers/video/fbdev/s1d13xxxfb.c
7344 F:      include/video/s1d13xxxfb.h
7345
7346 EROFS FILE SYSTEM
7347 M:      Gao Xiang <xiang@kernel.org>
7348 M:      Chao Yu <chao@kernel.org>
7349 L:      linux-erofs@lists.ozlabs.org
7350 S:      Maintained
7351 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs.git
7352 F:      Documentation/filesystems/erofs.rst
7353 F:      fs/erofs/
7354 F:      include/trace/events/erofs.h
7355
7356 ERRSEQ ERROR TRACKING INFRASTRUCTURE
7357 M:      Jeff Layton <jlayton@kernel.org>
7358 S:      Maintained
7359 F:      include/linux/errseq.h
7360 F:      lib/errseq.c
7361
7362 ET131X NETWORK DRIVER
7363 M:      Mark Einon <mark.einon@gmail.com>
7364 S:      Odd Fixes
7365 F:      drivers/net/ethernet/agere/
7366
7367 ETAS ES58X CAN/USB DRIVER
7368 M:      Vincent Mailhol <mailhol.vincent@wanadoo.fr>
7369 L:      linux-can@vger.kernel.org
7370 S:      Maintained
7371 F:      drivers/net/can/usb/etas_es58x/
7372
7373 ETHERNET BRIDGE
7374 M:      Roopa Prabhu <roopa@nvidia.com>
7375 M:      Nikolay Aleksandrov <razor@blackwall.org>
7376 L:      bridge@lists.linux-foundation.org (moderated for non-subscribers)
7377 L:      netdev@vger.kernel.org
7378 S:      Maintained
7379 W:      http://www.linuxfoundation.org/en/Net:Bridge
7380 F:      include/linux/netfilter_bridge/
7381 F:      net/bridge/
7382
7383 ETHERNET PHY LIBRARY
7384 M:      Andrew Lunn <andrew@lunn.ch>
7385 M:      Heiner Kallweit <hkallweit1@gmail.com>
7386 R:      Russell King <linux@armlinux.org.uk>
7387 L:      netdev@vger.kernel.org
7388 S:      Maintained
7389 F:      Documentation/ABI/testing/sysfs-class-net-phydev
7390 F:      Documentation/devicetree/bindings/net/ethernet-phy.yaml
7391 F:      Documentation/devicetree/bindings/net/mdio*
7392 F:      Documentation/devicetree/bindings/net/qca,ar803x.yaml
7393 F:      Documentation/networking/phy.rst
7394 F:      drivers/net/mdio/
7395 F:      drivers/net/mdio/acpi_mdio.c
7396 F:      drivers/net/mdio/fwnode_mdio.c
7397 F:      drivers/net/mdio/of_mdio.c
7398 F:      drivers/net/pcs/
7399 F:      drivers/net/phy/
7400 F:      include/dt-bindings/net/qca-ar803x.h
7401 F:      include/linux/linkmode.h
7402 F:      include/linux/*mdio*.h
7403 F:      include/linux/mdio/*.h
7404 F:      include/linux/mii.h
7405 F:      include/linux/of_net.h
7406 F:      include/linux/phy.h
7407 F:      include/linux/phy_fixed.h
7408 F:      include/linux/platform_data/mdio-bcm-unimac.h
7409 F:      include/linux/platform_data/mdio-gpio.h
7410 F:      include/trace/events/mdio.h
7411 F:      include/uapi/linux/mdio.h
7412 F:      include/uapi/linux/mii.h
7413 F:      net/core/of_net.c
7414
7415 EXEC & BINFMT API
7416 R:      Eric Biederman <ebiederm@xmission.com>
7417 R:      Kees Cook <keescook@chromium.org>
7418 L:      linux-mm@kvack.org
7419 S:      Supported
7420 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/execve
7421 F:      arch/alpha/kernel/binfmt_loader.c
7422 F:      fs/*binfmt_*.c
7423 F:      fs/exec.c
7424 F:      include/linux/binfmts.h
7425 F:      include/linux/elf.h
7426 F:      include/uapi/linux/binfmts.h
7427 F:      include/uapi/linux/elf.h
7428 F:      tools/testing/selftests/exec/
7429 N:      asm/elf.h
7430 N:      binfmt
7431
7432 EXFAT FILE SYSTEM
7433 M:      Namjae Jeon <linkinjeon@kernel.org>
7434 M:      Sungjong Seo <sj1557.seo@samsung.com>
7435 L:      linux-fsdevel@vger.kernel.org
7436 S:      Maintained
7437 F:      fs/exfat/
7438
7439 EXT2 FILE SYSTEM
7440 M:      Jan Kara <jack@suse.com>
7441 L:      linux-ext4@vger.kernel.org
7442 S:      Maintained
7443 F:      Documentation/filesystems/ext2.rst
7444 F:      fs/ext2/
7445 F:      include/linux/ext2*
7446
7447 EXT4 FILE SYSTEM
7448 M:      "Theodore Ts'o" <tytso@mit.edu>
7449 M:      Andreas Dilger <adilger.kernel@dilger.ca>
7450 L:      linux-ext4@vger.kernel.org
7451 S:      Maintained
7452 W:      http://ext4.wiki.kernel.org
7453 Q:      http://patchwork.ozlabs.org/project/linux-ext4/list/
7454 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tytso/ext4.git
7455 F:      Documentation/filesystems/ext4/
7456 F:      fs/ext4/
7457 F:      include/trace/events/ext4.h
7458
7459 Extended Verification Module (EVM)
7460 M:      Mimi Zohar <zohar@linux.ibm.com>
7461 L:      linux-integrity@vger.kernel.org
7462 S:      Supported
7463 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/zohar/linux-integrity.git
7464 F:      security/integrity/evm/
7465 F:      security/integrity/
7466
7467 EXTENSIBLE FIRMWARE INTERFACE (EFI)
7468 M:      Ard Biesheuvel <ardb@kernel.org>
7469 L:      linux-efi@vger.kernel.org
7470 S:      Maintained
7471 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
7472 F:      Documentation/admin-guide/efi-stub.rst
7473 F:      arch/*/include/asm/efi.h
7474 F:      arch/*/kernel/efi.c
7475 F:      arch/arm/boot/compressed/efi-header.S
7476 F:      arch/arm64/kernel/efi-entry.S
7477 F:      arch/x86/platform/efi/
7478 F:      drivers/firmware/efi/
7479 F:      include/linux/efi*.h
7480
7481 EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
7482 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
7483 M:      Chanwoo Choi <cw00.choi@samsung.com>
7484 L:      linux-kernel@vger.kernel.org
7485 S:      Maintained
7486 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git
7487 F:      Documentation/devicetree/bindings/extcon/
7488 F:      Documentation/firmware-guide/acpi/extcon-intel-int3496.rst
7489 F:      drivers/extcon/
7490 F:      include/linux/extcon.h
7491 F:      include/linux/extcon/
7492
7493 EXTRA BOOT CONFIG
7494 M:      Masami Hiramatsu <mhiramat@kernel.org>
7495 S:      Maintained
7496 F:      Documentation/admin-guide/bootconfig.rst
7497 F:      fs/proc/bootconfig.c
7498 F:      include/linux/bootconfig.h
7499 F:      lib/bootconfig.c
7500 F:      tools/bootconfig/*
7501 F:      tools/bootconfig/scripts/*
7502
7503 EXYNOS DP DRIVER
7504 M:      Jingoo Han <jingoohan1@gmail.com>
7505 L:      dri-devel@lists.freedesktop.org
7506 S:      Maintained
7507 F:      drivers/gpu/drm/exynos/exynos_dp*
7508
7509 EXYNOS SYSMMU (IOMMU) driver
7510 M:      Marek Szyprowski <m.szyprowski@samsung.com>
7511 L:      iommu@lists.linux-foundation.org
7512 S:      Maintained
7513 F:      drivers/iommu/exynos-iommu.c
7514
7515 F2FS FILE SYSTEM
7516 M:      Jaegeuk Kim <jaegeuk@kernel.org>
7517 M:      Chao Yu <chao@kernel.org>
7518 L:      linux-f2fs-devel@lists.sourceforge.net
7519 S:      Maintained
7520 W:      https://f2fs.wiki.kernel.org/
7521 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
7522 F:      Documentation/ABI/testing/sysfs-fs-f2fs
7523 F:      Documentation/filesystems/f2fs.rst
7524 F:      fs/f2fs/
7525 F:      include/linux/f2fs_fs.h
7526 F:      include/trace/events/f2fs.h
7527 F:      include/uapi/linux/f2fs.h
7528
7529 F71805F HARDWARE MONITORING DRIVER
7530 M:      Jean Delvare <jdelvare@suse.com>
7531 L:      linux-hwmon@vger.kernel.org
7532 S:      Maintained
7533 F:      Documentation/hwmon/f71805f.rst
7534 F:      drivers/hwmon/f71805f.c
7535
7536 FADDR2LINE
7537 M:      Josh Poimboeuf <jpoimboe@kernel.org>
7538 S:      Maintained
7539 F:      scripts/faddr2line
7540
7541 FAILOVER MODULE
7542 M:      Sridhar Samudrala <sridhar.samudrala@intel.com>
7543 L:      netdev@vger.kernel.org
7544 S:      Supported
7545 F:      Documentation/networking/failover.rst
7546 F:      include/net/failover.h
7547 F:      net/core/failover.c
7548
7549 FANOTIFY
7550 M:      Jan Kara <jack@suse.cz>
7551 R:      Amir Goldstein <amir73il@gmail.com>
7552 R:      Matthew Bobrowski <repnop@google.com>
7553 L:      linux-fsdevel@vger.kernel.org
7554 S:      Maintained
7555 F:      fs/notify/fanotify/
7556 F:      include/linux/fanotify.h
7557 F:      include/uapi/linux/fanotify.h
7558
7559 FARSYNC SYNCHRONOUS DRIVER
7560 M:      Kevin Curtis <kevin.curtis@farsite.co.uk>
7561 S:      Supported
7562 W:      http://www.farsite.co.uk/
7563 F:      drivers/net/wan/farsync.*
7564
7565 FAULT INJECTION SUPPORT
7566 M:      Akinobu Mita <akinobu.mita@gmail.com>
7567 S:      Supported
7568 F:      Documentation/fault-injection/
7569 F:      lib/fault-inject.c
7570
7571 FBTFT Framebuffer drivers
7572 L:      dri-devel@lists.freedesktop.org
7573 L:      linux-fbdev@vger.kernel.org
7574 S:      Orphan
7575 F:      drivers/staging/fbtft/
7576
7577 FC0011 TUNER DRIVER
7578 M:      Michael Buesch <m@bues.ch>
7579 L:      linux-media@vger.kernel.org
7580 S:      Maintained
7581 F:      drivers/media/tuners/fc0011.c
7582 F:      drivers/media/tuners/fc0011.h
7583
7584 FC2580 MEDIA DRIVER
7585 M:      Antti Palosaari <crope@iki.fi>
7586 L:      linux-media@vger.kernel.org
7587 S:      Maintained
7588 W:      https://linuxtv.org
7589 W:      http://palosaari.fi/linux/
7590 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7591 T:      git git://linuxtv.org/anttip/media_tree.git
7592 F:      drivers/media/tuners/fc2580*
7593
7594 FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
7595 M:      Hannes Reinecke <hare@suse.de>
7596 L:      linux-scsi@vger.kernel.org
7597 S:      Supported
7598 W:      www.Open-FCoE.org
7599 F:      drivers/scsi/fcoe/
7600 F:      drivers/scsi/libfc/
7601 F:      include/scsi/fc/
7602 F:      include/scsi/libfc.h
7603 F:      include/scsi/libfcoe.h
7604 F:      include/uapi/scsi/fc/
7605
7606 FILE LOCKING (flock() and fcntl()/lockf())
7607 M:      Jeff Layton <jlayton@kernel.org>
7608 L:      linux-fsdevel@vger.kernel.org
7609 S:      Maintained
7610 F:      fs/fcntl.c
7611 F:      fs/locks.c
7612 F:      include/linux/fcntl.h
7613 F:      include/uapi/linux/fcntl.h
7614
7615 FILESYSTEM DIRECT ACCESS (DAX)
7616 M:      Dan Williams <dan.j.williams@intel.com>
7617 R:      Matthew Wilcox <willy@infradead.org>
7618 R:      Jan Kara <jack@suse.cz>
7619 L:      linux-fsdevel@vger.kernel.org
7620 L:      nvdimm@lists.linux.dev
7621 S:      Supported
7622 F:      fs/dax.c
7623 F:      include/linux/dax.h
7624 F:      include/trace/events/fs_dax.h
7625
7626 FILESYSTEMS (VFS and infrastructure)
7627 M:      Alexander Viro <viro@zeniv.linux.org.uk>
7628 L:      linux-fsdevel@vger.kernel.org
7629 S:      Maintained
7630 F:      fs/*
7631 F:      include/linux/fs.h
7632 F:      include/linux/fs_types.h
7633 F:      include/uapi/linux/fs.h
7634 F:      include/uapi/linux/openat2.h
7635 X:      fs/io-wq.c
7636 X:      fs/io-wq.h
7637 X:      fs/io_uring.c
7638
7639 FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
7640 M:      Riku Voipio <riku.voipio@iki.fi>
7641 L:      linux-hwmon@vger.kernel.org
7642 S:      Maintained
7643 F:      drivers/hwmon/f75375s.c
7644 F:      include/linux/f75375s.h
7645
7646 FIREWIRE AUDIO DRIVERS and IEC 61883-1/6 PACKET STREAMING ENGINE
7647 M:      Clemens Ladisch <clemens@ladisch.de>
7648 M:      Takashi Sakamoto <o-takashi@sakamocchi.jp>
7649 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7650 S:      Maintained
7651 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
7652 F:      include/uapi/sound/firewire.h
7653 F:      sound/firewire/
7654
7655 FIREWIRE MEDIA DRIVERS (firedtv)
7656 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
7657 L:      linux-media@vger.kernel.org
7658 L:      linux1394-devel@lists.sourceforge.net
7659 S:      Maintained
7660 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
7661 F:      drivers/media/firewire/
7662
7663 FIREWIRE SBP-2 TARGET
7664 M:      Chris Boot <bootc@bootc.net>
7665 L:      linux-scsi@vger.kernel.org
7666 L:      target-devel@vger.kernel.org
7667 L:      linux1394-devel@lists.sourceforge.net
7668 S:      Maintained
7669 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
7670 F:      drivers/target/sbp/
7671
7672 FIREWIRE SUBSYSTEM
7673 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
7674 L:      linux1394-devel@lists.sourceforge.net
7675 S:      Maintained
7676 W:      http://ieee1394.wiki.kernel.org/
7677 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
7678 F:      drivers/firewire/
7679 F:      include/linux/firewire.h
7680 F:      include/uapi/linux/firewire*.h
7681 F:      tools/firewire/
7682
7683 FIRMWARE FRAMEWORK FOR ARMV8-A
7684 M:      Sudeep Holla <sudeep.holla@arm.com>
7685 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7686 S:      Maintained
7687 F:      drivers/firmware/arm_ffa/
7688 F:      include/linux/arm_ffa.h
7689
7690 FIRMWARE LOADER (request_firmware)
7691 M:      Luis Chamberlain <mcgrof@kernel.org>
7692 L:      linux-kernel@vger.kernel.org
7693 S:      Maintained
7694 F:      Documentation/firmware_class/
7695 F:      drivers/base/firmware_loader/
7696 F:      include/linux/firmware.h
7697
7698 FLEXTIMER FTM-QUADDEC DRIVER
7699 M:      Patrick Havelange <patrick.havelange@essensium.com>
7700 L:      linux-iio@vger.kernel.org
7701 S:      Maintained
7702 F:      Documentation/devicetree/bindings/counter/ftm-quaddec.txt
7703 F:      drivers/counter/ftm-quaddec.c
7704
7705 FLOPPY DRIVER
7706 M:      Denis Efremov <efremov@linux.com>
7707 L:      linux-block@vger.kernel.org
7708 S:      Odd Fixes
7709 F:      drivers/block/floppy.c
7710
7711 FLYSKY FSIA6B RC RECEIVER
7712 M:      Markus Koch <markus@notsyncing.net>
7713 L:      linux-input@vger.kernel.org
7714 S:      Maintained
7715 F:      drivers/input/joystick/fsia6b.c
7716
7717 FOCUSRITE SCARLETT GEN 2/3 MIXER DRIVER
7718 M:      Geoffrey D. Bennett <g@b4.vu>
7719 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7720 S:      Maintained
7721 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
7722 F:      sound/usb/mixer_scarlett_gen2.c
7723
7724 FORCEDETH GIGABIT ETHERNET DRIVER
7725 M:      Rain River <rain.1986.08.12@gmail.com>
7726 M:      Zhu Yanjun <zyjzyj2000@gmail.com>
7727 L:      netdev@vger.kernel.org
7728 S:      Maintained
7729 F:      drivers/net/ethernet/nvidia/*
7730
7731 FORTIFY_SOURCE
7732 M:      Kees Cook <keescook@chromium.org>
7733 L:      linux-hardening@vger.kernel.org
7734 S:      Supported
7735 F:      include/linux/fortify-string.h
7736 F:      lib/test_fortify/*
7737 F:      scripts/test_fortify.sh
7738 K:      \b__NO_FORTIFY\b
7739
7740 FPGA DFL DRIVERS
7741 M:      Wu Hao <hao.wu@intel.com>
7742 R:      Tom Rix <trix@redhat.com>
7743 L:      linux-fpga@vger.kernel.org
7744 S:      Maintained
7745 F:      Documentation/ABI/testing/sysfs-bus-dfl*
7746 F:      Documentation/fpga/dfl.rst
7747 F:      drivers/fpga/dfl*
7748 F:      drivers/uio/uio_dfl.c
7749 F:      include/linux/dfl.h
7750 F:      include/uapi/linux/fpga-dfl.h
7751
7752 FPGA MANAGER FRAMEWORK
7753 M:      Moritz Fischer <mdf@kernel.org>
7754 M:      Wu Hao <hao.wu@intel.com>
7755 M:      Xu Yilun <yilun.xu@intel.com>
7756 R:      Tom Rix <trix@redhat.com>
7757 L:      linux-fpga@vger.kernel.org
7758 S:      Maintained
7759 Q:      http://patchwork.kernel.org/project/linux-fpga/list/
7760 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mdf/linux-fpga.git
7761 F:      Documentation/devicetree/bindings/fpga/
7762 F:      Documentation/driver-api/fpga/
7763 F:      Documentation/fpga/
7764 F:      drivers/fpga/
7765 F:      include/linux/fpga/
7766
7767 FPU EMULATOR
7768 M:      Bill Metzenthen <billm@melbpc.org.au>
7769 S:      Maintained
7770 W:      http://floatingpoint.sourceforge.net/emulator/index.html
7771 F:      arch/x86/math-emu/
7772
7773 FRAMEBUFFER CORE
7774 M:      Daniel Vetter <daniel@ffwll.ch>
7775 F:      drivers/video/fbdev/core/
7776 S:      Odd Fixes
7777 T:      git git://anongit.freedesktop.org/drm/drm-misc
7778
7779 FRAMEBUFFER LAYER
7780 M:      Helge Deller <deller@gmx.de>
7781 L:      linux-fbdev@vger.kernel.org
7782 L:      dri-devel@lists.freedesktop.org
7783 S:      Maintained
7784 Q:      http://patchwork.kernel.org/project/linux-fbdev/list/
7785 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/deller/linux-fbdev.git
7786 F:      Documentation/fb/
7787 F:      drivers/video/
7788 F:      include/linux/fb.h
7789 F:      include/uapi/linux/fb.h
7790 F:      include/uapi/video/
7791 F:      include/video/
7792
7793 FREESCALE CAAM (Cryptographic Acceleration and Assurance Module) DRIVER
7794 M:      Horia Geantă <horia.geanta@nxp.com>
7795 M:      Pankaj Gupta <pankaj.gupta@nxp.com>
7796 M:      Gaurav Jain <gaurav.jain@nxp.com>
7797 L:      linux-crypto@vger.kernel.org
7798 S:      Maintained
7799 F:      Documentation/devicetree/bindings/crypto/fsl-sec4.txt
7800 F:      drivers/crypto/caam/
7801
7802 FREESCALE COLDFIRE M5441X MMC DRIVER
7803 M:      Angelo Dureghello <angelo.dureghello@timesys.com>
7804 L:      linux-mmc@vger.kernel.org
7805 S:      Maintained
7806 F:      drivers/mmc/host/sdhci-esdhc-mcf.c
7807 F:      include/linux/platform_data/mmc-esdhc-mcf.h
7808
7809 FREESCALE DIU FRAMEBUFFER DRIVER
7810 M:      Timur Tabi <timur@kernel.org>
7811 L:      linux-fbdev@vger.kernel.org
7812 S:      Maintained
7813 F:      drivers/video/fbdev/fsl-diu-fb.*
7814
7815 FREESCALE DMA DRIVER
7816 M:      Li Yang <leoyang.li@nxp.com>
7817 M:      Zhang Wei <zw@zh-kernel.org>
7818 L:      linuxppc-dev@lists.ozlabs.org
7819 S:      Maintained
7820 F:      drivers/dma/fsldma.*
7821
7822 FREESCALE DSPI DRIVER
7823 M:      Vladimir Oltean <olteanv@gmail.com>
7824 L:      linux-spi@vger.kernel.org
7825 S:      Maintained
7826 F:      Documentation/devicetree/bindings/spi/spi-fsl-dspi.txt
7827 F:      drivers/spi/spi-fsl-dspi.c
7828 F:      include/linux/spi/spi-fsl-dspi.h
7829
7830 FREESCALE ENETC ETHERNET DRIVERS
7831 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
7832 L:      netdev@vger.kernel.org
7833 S:      Maintained
7834 F:      drivers/net/ethernet/freescale/enetc/
7835
7836 FREESCALE eTSEC ETHERNET DRIVER (GIANFAR)
7837 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
7838 L:      netdev@vger.kernel.org
7839 S:      Maintained
7840 F:      Documentation/devicetree/bindings/net/fsl-tsec-phy.txt
7841 F:      drivers/net/ethernet/freescale/gianfar*
7842
7843 FREESCALE GPMI NAND DRIVER
7844 M:      Han Xu <han.xu@nxp.com>
7845 L:      linux-mtd@lists.infradead.org
7846 S:      Maintained
7847 F:      drivers/mtd/nand/raw/gpmi-nand/*
7848
7849 FREESCALE I2C CPM DRIVER
7850 M:      Jochen Friedrich <jochen@scram.de>
7851 L:      linuxppc-dev@lists.ozlabs.org
7852 L:      linux-i2c@vger.kernel.org
7853 S:      Maintained
7854 F:      drivers/i2c/busses/i2c-cpm.c
7855
7856 FREESCALE IMX / MXC FEC DRIVER
7857 M:      Joakim Zhang <qiangqing.zhang@nxp.com>
7858 L:      netdev@vger.kernel.org
7859 S:      Maintained
7860 F:      Documentation/devicetree/bindings/net/fsl,fec.yaml
7861 F:      drivers/net/ethernet/freescale/fec.h
7862 F:      drivers/net/ethernet/freescale/fec_main.c
7863 F:      drivers/net/ethernet/freescale/fec_ptp.c
7864
7865 FREESCALE IMX / MXC FRAMEBUFFER DRIVER
7866 M:      Sascha Hauer <s.hauer@pengutronix.de>
7867 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
7868 L:      linux-fbdev@vger.kernel.org
7869 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7870 S:      Maintained
7871 F:      drivers/video/fbdev/imxfb.c
7872 F:      include/linux/platform_data/video-imxfb.h
7873
7874 FREESCALE IMX DDR PMU DRIVER
7875 M:      Frank Li <Frank.li@nxp.com>
7876 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7877 S:      Maintained
7878 F:      Documentation/admin-guide/perf/imx-ddr.rst
7879 F:      Documentation/devicetree/bindings/perf/fsl-imx-ddr.yaml
7880 F:      drivers/perf/fsl_imx8_ddr_perf.c
7881
7882 FREESCALE IMX I2C DRIVER
7883 M:      Oleksij Rempel <o.rempel@pengutronix.de>
7884 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
7885 L:      linux-i2c@vger.kernel.org
7886 S:      Maintained
7887 F:      Documentation/devicetree/bindings/i2c/i2c-imx.yaml
7888 F:      drivers/i2c/busses/i2c-imx.c
7889
7890 FREESCALE IMX LPI2C DRIVER
7891 M:      Dong Aisheng <aisheng.dong@nxp.com>
7892 L:      linux-i2c@vger.kernel.org
7893 L:      linux-imx@nxp.com
7894 S:      Maintained
7895 F:      Documentation/devicetree/bindings/i2c/i2c-imx-lpi2c.yaml
7896 F:      drivers/i2c/busses/i2c-imx-lpi2c.c
7897
7898 FREESCALE MPC I2C DRIVER
7899 M:      Chris Packham <chris.packham@alliedtelesis.co.nz>
7900 L:      linux-i2c@vger.kernel.org
7901 S:      Maintained
7902 F:      Documentation/devicetree/bindings/i2c/i2c-mpc.yaml
7903 F:      drivers/i2c/busses/i2c-mpc.c
7904
7905 FREESCALE QORIQ DPAA ETHERNET DRIVER
7906 M:      Madalin Bucur <madalin.bucur@nxp.com>
7907 L:      netdev@vger.kernel.org
7908 S:      Maintained
7909 F:      drivers/net/ethernet/freescale/dpaa
7910
7911 FREESCALE QORIQ DPAA FMAN DRIVER
7912 M:      Madalin Bucur <madalin.bucur@nxp.com>
7913 L:      netdev@vger.kernel.org
7914 S:      Maintained
7915 F:      Documentation/devicetree/bindings/net/fsl-fman.txt
7916 F:      drivers/net/ethernet/freescale/fman
7917
7918 FREESCALE QORIQ PTP CLOCK DRIVER
7919 M:      Yangbo Lu <yangbo.lu@nxp.com>
7920 L:      netdev@vger.kernel.org
7921 S:      Maintained
7922 F:      Documentation/devicetree/bindings/ptp/ptp-qoriq.txt
7923 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-ptp*
7924 F:      drivers/net/ethernet/freescale/dpaa2/dprtc*
7925 F:      drivers/net/ethernet/freescale/enetc/enetc_ptp.c
7926 F:      drivers/ptp/ptp_qoriq.c
7927 F:      drivers/ptp/ptp_qoriq_debugfs.c
7928 F:      include/linux/fsl/ptp_qoriq.h
7929
7930 FREESCALE QUAD SPI DRIVER
7931 M:      Han Xu <han.xu@nxp.com>
7932 L:      linux-spi@vger.kernel.org
7933 S:      Maintained
7934 F:      Documentation/devicetree/bindings/spi/fsl,spi-fsl-qspi.yaml
7935 F:      drivers/spi/spi-fsl-qspi.c
7936
7937 FREESCALE QUICC ENGINE LIBRARY
7938 M:      Qiang Zhao <qiang.zhao@nxp.com>
7939 L:      linuxppc-dev@lists.ozlabs.org
7940 S:      Maintained
7941 F:      drivers/soc/fsl/qe/
7942 F:      include/soc/fsl/qe/
7943
7944 FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
7945 M:      Li Yang <leoyang.li@nxp.com>
7946 L:      netdev@vger.kernel.org
7947 L:      linuxppc-dev@lists.ozlabs.org
7948 S:      Maintained
7949 F:      drivers/net/ethernet/freescale/ucc_geth*
7950
7951 FREESCALE QUICC ENGINE UCC HDLC DRIVER
7952 M:      Zhao Qiang <qiang.zhao@nxp.com>
7953 L:      netdev@vger.kernel.org
7954 L:      linuxppc-dev@lists.ozlabs.org
7955 S:      Maintained
7956 F:      drivers/net/wan/fsl_ucc_hdlc*
7957
7958 FREESCALE QUICC ENGINE UCC UART DRIVER
7959 M:      Timur Tabi <timur@kernel.org>
7960 L:      linuxppc-dev@lists.ozlabs.org
7961 S:      Maintained
7962 F:      drivers/tty/serial/ucc_uart.c
7963
7964 FREESCALE SOC DRIVERS
7965 M:      Li Yang <leoyang.li@nxp.com>
7966 L:      linuxppc-dev@lists.ozlabs.org
7967 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7968 S:      Maintained
7969 F:      Documentation/devicetree/bindings/misc/fsl,dpaa2-console.yaml
7970 F:      Documentation/devicetree/bindings/soc/fsl/
7971 F:      drivers/soc/fsl/
7972 F:      include/linux/fsl/
7973 F:      include/soc/fsl/
7974
7975 FREESCALE SOC FS_ENET DRIVER
7976 M:      Pantelis Antoniou <pantelis.antoniou@gmail.com>
7977 L:      linuxppc-dev@lists.ozlabs.org
7978 L:      netdev@vger.kernel.org
7979 S:      Maintained
7980 F:      drivers/net/ethernet/freescale/fs_enet/
7981 F:      include/linux/fs_enet_pd.h
7982
7983 FREESCALE SOC SOUND DRIVERS
7984 M:      Shengjiu Wang <shengjiu.wang@gmail.com>
7985 M:      Xiubo Li <Xiubo.Lee@gmail.com>
7986 R:      Fabio Estevam <festevam@gmail.com>
7987 R:      Nicolin Chen <nicoleotsuka@gmail.com>
7988 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7989 L:      linuxppc-dev@lists.ozlabs.org
7990 S:      Maintained
7991 F:      sound/soc/fsl/fsl*
7992 F:      sound/soc/fsl/imx*
7993 F:      sound/soc/fsl/mpc8610_hpcd.c
7994
7995 FREESCALE USB PERIPHERAL DRIVERS
7996 M:      Li Yang <leoyang.li@nxp.com>
7997 L:      linux-usb@vger.kernel.org
7998 L:      linuxppc-dev@lists.ozlabs.org
7999 S:      Maintained
8000 F:      drivers/usb/gadget/udc/fsl*
8001
8002 FREESCALE USB PHY DRIVER
8003 M:      Ran Wang <ran.wang_1@nxp.com>
8004 L:      linux-usb@vger.kernel.org
8005 L:      linuxppc-dev@lists.ozlabs.org
8006 S:      Maintained
8007 F:      drivers/usb/phy/phy-fsl-usb*
8008
8009 FREEVXFS FILESYSTEM
8010 M:      Christoph Hellwig <hch@infradead.org>
8011 S:      Maintained
8012 W:      ftp://ftp.openlinux.org/pub/people/hch/vxfs
8013 F:      fs/freevxfs/
8014
8015 FREEZER
8016 M:      "Rafael J. Wysocki" <rafael@kernel.org>
8017 M:      Pavel Machek <pavel@ucw.cz>
8018 L:      linux-pm@vger.kernel.org
8019 S:      Supported
8020 F:      Documentation/power/freezing-of-tasks.rst
8021 F:      include/linux/freezer.h
8022 F:      kernel/freezer.c
8023
8024 FRONTSWAP API
8025 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
8026 L:      linux-kernel@vger.kernel.org
8027 S:      Maintained
8028 F:      include/linux/frontswap.h
8029 F:      mm/frontswap.c
8030
8031 FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
8032 M:      David Howells <dhowells@redhat.com>
8033 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
8034 S:      Supported
8035 F:      Documentation/filesystems/caching/
8036 F:      fs/fscache/
8037 F:      include/linux/fscache*.h
8038
8039 FSCRYPT: FILE SYSTEM LEVEL ENCRYPTION SUPPORT
8040 M:      Theodore Y. Ts'o <tytso@mit.edu>
8041 M:      Jaegeuk Kim <jaegeuk@kernel.org>
8042 M:      Eric Biggers <ebiggers@kernel.org>
8043 L:      linux-fscrypt@vger.kernel.org
8044 S:      Supported
8045 Q:      https://patchwork.kernel.org/project/linux-fscrypt/list/
8046 T:      git git://git.kernel.org/pub/scm/fs/fscrypt/fscrypt.git
8047 F:      Documentation/filesystems/fscrypt.rst
8048 F:      fs/crypto/
8049 F:      include/linux/fscrypt*.h
8050 F:      include/uapi/linux/fscrypt.h
8051
8052 FSI SUBSYSTEM
8053 M:      Jeremy Kerr <jk@ozlabs.org>
8054 M:      Joel Stanley <joel@jms.id.au>
8055 R:      Alistar Popple <alistair@popple.id.au>
8056 R:      Eddie James <eajames@linux.ibm.com>
8057 L:      linux-fsi@lists.ozlabs.org
8058 S:      Supported
8059 Q:      http://patchwork.ozlabs.org/project/linux-fsi/list/
8060 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joel/fsi.git
8061 F:      drivers/fsi/
8062 F:      include/linux/fsi*.h
8063 F:      include/trace/events/fsi*.h
8064
8065 FSI-ATTACHED I2C DRIVER
8066 M:      Eddie James <eajames@linux.ibm.com>
8067 L:      linux-i2c@vger.kernel.org
8068 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
8069 S:      Maintained
8070 F:      Documentation/devicetree/bindings/i2c/i2c-fsi.txt
8071 F:      drivers/i2c/busses/i2c-fsi.c
8072
8073 FSI-ATTACHED SPI DRIVER
8074 M:      Eddie James <eajames@linux.ibm.com>
8075 L:      linux-spi@vger.kernel.org
8076 S:      Maintained
8077 F:      Documentation/devicetree/bindings/fsi/ibm,fsi2spi.yaml
8078 F:      drivers/spi/spi-fsi.c
8079
8080 FSNOTIFY: FILESYSTEM NOTIFICATION INFRASTRUCTURE
8081 M:      Jan Kara <jack@suse.cz>
8082 R:      Amir Goldstein <amir73il@gmail.com>
8083 L:      linux-fsdevel@vger.kernel.org
8084 S:      Maintained
8085 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jack/linux-fs.git fsnotify
8086 F:      fs/notify/
8087 F:      include/linux/fsnotify*.h
8088
8089 FSVERITY: READ-ONLY FILE-BASED AUTHENTICITY PROTECTION
8090 M:      Eric Biggers <ebiggers@kernel.org>
8091 M:      Theodore Y. Ts'o <tytso@mit.edu>
8092 L:      linux-fscrypt@vger.kernel.org
8093 S:      Supported
8094 Q:      https://patchwork.kernel.org/project/linux-fscrypt/list/
8095 T:      git git://git.kernel.org/pub/scm/fs/fscrypt/fscrypt.git fsverity
8096 F:      Documentation/filesystems/fsverity.rst
8097 F:      fs/verity/
8098 F:      include/linux/fsverity.h
8099 F:      include/uapi/linux/fsverity.h
8100
8101 FT260 FTDI USB-HID TO I2C BRIDGE DRIVER
8102 M:      Michael Zaidman <michael.zaidman@gmail.com>
8103 L:      linux-i2c@vger.kernel.org
8104 L:      linux-input@vger.kernel.org
8105 S:      Maintained
8106 F:      drivers/hid/hid-ft260.c
8107
8108 FUJITSU LAPTOP EXTRAS
8109 M:      Jonathan Woithe <jwoithe@just42.net>
8110 L:      platform-driver-x86@vger.kernel.org
8111 S:      Maintained
8112 F:      drivers/platform/x86/fujitsu-laptop.c
8113
8114 FUJITSU M-5MO LS CAMERA ISP DRIVER
8115 M:      Kyungmin Park <kyungmin.park@samsung.com>
8116 M:      Heungjun Kim <riverful.kim@samsung.com>
8117 L:      linux-media@vger.kernel.org
8118 S:      Maintained
8119 F:      drivers/media/i2c/m5mols/
8120 F:      include/media/i2c/m5mols.h
8121
8122 FUJITSU TABLET EXTRAS
8123 M:      Robert Gerlach <khnz@gmx.de>
8124 L:      platform-driver-x86@vger.kernel.org
8125 S:      Maintained
8126 F:      drivers/platform/x86/fujitsu-tablet.c
8127
8128 FUNGIBLE ETHERNET DRIVERS
8129 M:      Dimitris Michailidis <dmichail@fungible.com>
8130 L:      netdev@vger.kernel.org
8131 S:      Supported
8132 F:      drivers/net/ethernet/fungible/
8133
8134 FUSE: FILESYSTEM IN USERSPACE
8135 M:      Miklos Szeredi <miklos@szeredi.hu>
8136 L:      linux-fsdevel@vger.kernel.org
8137 S:      Maintained
8138 W:      https://github.com/libfuse/
8139 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse.git
8140 F:      Documentation/filesystems/fuse.rst
8141 F:      fs/fuse/
8142 F:      include/uapi/linux/fuse.h
8143
8144 FUTEX SUBSYSTEM
8145 M:      Thomas Gleixner <tglx@linutronix.de>
8146 M:      Ingo Molnar <mingo@redhat.com>
8147 R:      Peter Zijlstra <peterz@infradead.org>
8148 R:      Darren Hart <dvhart@infradead.org>
8149 R:      Davidlohr Bueso <dave@stgolabs.net>
8150 R:      André Almeida <andrealmeid@igalia.com>
8151 L:      linux-kernel@vger.kernel.org
8152 S:      Maintained
8153 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
8154 F:      Documentation/locking/*futex*
8155 F:      include/asm-generic/futex.h
8156 F:      include/linux/futex.h
8157 F:      include/uapi/linux/futex.h
8158 F:      kernel/futex/*
8159 F:      tools/perf/bench/futex*
8160 F:      tools/testing/selftests/futex/
8161
8162 GATEWORKS SYSTEM CONTROLLER (GSC) DRIVER
8163 M:      Tim Harvey <tharvey@gateworks.com>
8164 M:      Robert Jones <rjones@gateworks.com>
8165 S:      Maintained
8166 F:      Documentation/devicetree/bindings/mfd/gateworks-gsc.yaml
8167 F:      drivers/mfd/gateworks-gsc.c
8168 F:      include/linux/mfd/gsc.h
8169 F:      Documentation/hwmon/gsc-hwmon.rst
8170 F:      drivers/hwmon/gsc-hwmon.c
8171 F:      include/linux/platform_data/gsc_hwmon.h
8172
8173 GCC PLUGINS
8174 M:      Kees Cook <keescook@chromium.org>
8175 L:      linux-hardening@vger.kernel.org
8176 S:      Maintained
8177 F:      Documentation/kbuild/gcc-plugins.rst
8178 F:      scripts/Makefile.gcc-plugins
8179 F:      scripts/gcc-plugins/
8180
8181 GCOV BASED KERNEL PROFILING
8182 M:      Peter Oberparleiter <oberpar@linux.ibm.com>
8183 S:      Maintained
8184 F:      Documentation/dev-tools/gcov.rst
8185 F:      kernel/gcov/
8186
8187 GDB KERNEL DEBUGGING HELPER SCRIPTS
8188 M:      Jan Kiszka <jan.kiszka@siemens.com>
8189 M:      Kieran Bingham <kbingham@kernel.org>
8190 S:      Supported
8191 F:      scripts/gdb/
8192
8193 GEMINI CRYPTO DRIVER
8194 M:      Corentin Labbe <clabbe@baylibre.com>
8195 L:      linux-crypto@vger.kernel.org
8196 S:      Maintained
8197 F:      drivers/crypto/gemini/
8198
8199 GEMTEK FM RADIO RECEIVER DRIVER
8200 M:      Hans Verkuil <hverkuil@xs4all.nl>
8201 L:      linux-media@vger.kernel.org
8202 S:      Maintained
8203 W:      https://linuxtv.org
8204 T:      git git://linuxtv.org/media_tree.git
8205 F:      drivers/media/radio/radio-gemtek*
8206
8207 GENERIC ARCHITECTURE TOPOLOGY
8208 M:      Sudeep Holla <sudeep.holla@arm.com>
8209 L:      linux-kernel@vger.kernel.org
8210 S:      Maintained
8211 F:      drivers/base/arch_topology.c
8212 F:      include/linux/arch_topology.h
8213
8214 GENERIC ENTRY CODE
8215 M:      Thomas Gleixner <tglx@linutronix.de>
8216 M:      Peter Zijlstra <peterz@infradead.org>
8217 M:      Andy Lutomirski <luto@kernel.org>
8218 L:      linux-kernel@vger.kernel.org
8219 S:      Maintained
8220 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/entry
8221 F:      include/linux/entry-common.h
8222 F:      include/linux/entry-kvm.h
8223 F:      kernel/entry/
8224
8225 GENERIC GPIO I2C DRIVER
8226 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
8227 S:      Supported
8228 F:      drivers/i2c/busses/i2c-gpio.c
8229 F:      include/linux/platform_data/i2c-gpio.h
8230
8231 GENERIC GPIO I2C MULTIPLEXER DRIVER
8232 M:      Peter Korsgaard <peter.korsgaard@barco.com>
8233 L:      linux-i2c@vger.kernel.org
8234 S:      Supported
8235 F:      Documentation/i2c/muxes/i2c-mux-gpio.rst
8236 F:      drivers/i2c/muxes/i2c-mux-gpio.c
8237 F:      include/linux/platform_data/i2c-mux-gpio.h
8238
8239 GENERIC HDLC (WAN) DRIVERS
8240 M:      Krzysztof Halasa <khc@pm.waw.pl>
8241 S:      Maintained
8242 W:      http://www.kernel.org/pub/linux/utils/net/hdlc/
8243 F:      drivers/net/wan/c101.c
8244 F:      drivers/net/wan/hd6457*
8245 F:      drivers/net/wan/hdlc*
8246 F:      drivers/net/wan/n2.c
8247 F:      drivers/net/wan/pc300too.c
8248 F:      drivers/net/wan/pci200syn.c
8249 F:      drivers/net/wan/wanxl*
8250
8251 GENERIC INCLUDE/ASM HEADER FILES
8252 M:      Arnd Bergmann <arnd@arndb.de>
8253 L:      linux-arch@vger.kernel.org
8254 S:      Maintained
8255 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
8256 F:      include/asm-generic/
8257 F:      include/uapi/asm-generic/
8258
8259 GENERIC PHY FRAMEWORK
8260 M:      Kishon Vijay Abraham I <kishon@ti.com>
8261 M:      Vinod Koul <vkoul@kernel.org>
8262 L:      linux-phy@lists.infradead.org
8263 S:      Supported
8264 Q:      https://patchwork.kernel.org/project/linux-phy/list/
8265 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/phy/linux-phy.git
8266 F:      Documentation/devicetree/bindings/phy/
8267 F:      drivers/phy/
8268 F:      include/linux/phy/
8269
8270 GENERIC PINCTRL I2C DEMULTIPLEXER DRIVER
8271 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
8272 S:      Supported
8273 F:      drivers/i2c/muxes/i2c-demux-pinctrl.c
8274
8275 GENERIC PM DOMAINS
8276 M:      "Rafael J. Wysocki" <rafael@kernel.org>
8277 M:      Kevin Hilman <khilman@kernel.org>
8278 M:      Ulf Hansson <ulf.hansson@linaro.org>
8279 L:      linux-pm@vger.kernel.org
8280 S:      Supported
8281 F:      Documentation/devicetree/bindings/power/power?domain*
8282 F:      drivers/base/power/domain*.c
8283 F:      include/linux/pm_domain.h
8284
8285 GENERIC RESISTIVE TOUCHSCREEN ADC DRIVER
8286 M:      Eugen Hristev <eugen.hristev@microchip.com>
8287 L:      linux-input@vger.kernel.org
8288 S:      Maintained
8289 F:      drivers/input/touchscreen/resistive-adc-touch.c
8290
8291 GENERIC STRING LIBRARY
8292 R:      Andy Shevchenko <andy@kernel.org>
8293 S:      Maintained
8294 F:      lib/string.c
8295 F:      lib/string_helpers.c
8296 F:      lib/test_string.c
8297 F:      lib/test-string_helpers.c
8298
8299 GENERIC UIO DRIVER FOR PCI DEVICES
8300 M:      "Michael S. Tsirkin" <mst@redhat.com>
8301 L:      kvm@vger.kernel.org
8302 S:      Supported
8303 F:      drivers/uio/uio_pci_generic.c
8304
8305 GENERIC VDSO LIBRARY
8306 M:      Andy Lutomirski <luto@kernel.org>
8307 M:      Thomas Gleixner <tglx@linutronix.de>
8308 M:      Vincenzo Frascino <vincenzo.frascino@arm.com>
8309 L:      linux-kernel@vger.kernel.org
8310 S:      Maintained
8311 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/vdso
8312 F:      include/asm-generic/vdso/vsyscall.h
8313 F:      include/vdso/
8314 F:      kernel/time/vsyscall.c
8315 F:      lib/vdso/
8316
8317 GENWQE (IBM Generic Workqueue Card)
8318 M:      Frank Haverkamp <haver@linux.ibm.com>
8319 S:      Supported
8320 F:      drivers/misc/genwqe/
8321
8322 GET_MAINTAINER SCRIPT
8323 M:      Joe Perches <joe@perches.com>
8324 S:      Maintained
8325 F:      scripts/get_maintainer.pl
8326
8327 GFS2 FILE SYSTEM
8328 M:      Bob Peterson <rpeterso@redhat.com>
8329 M:      Andreas Gruenbacher <agruenba@redhat.com>
8330 L:      cluster-devel@redhat.com
8331 S:      Supported
8332 B:      https://bugzilla.kernel.org/enter_bug.cgi?product=File%20System&component=gfs2
8333 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git
8334 F:      Documentation/filesystems/gfs2*
8335 F:      fs/gfs2/
8336 F:      include/uapi/linux/gfs2_ondisk.h
8337
8338 GIGABYTE WMI DRIVER
8339 M:      Thomas Weißschuh <thomas@weissschuh.net>
8340 L:      platform-driver-x86@vger.kernel.org
8341 S:      Maintained
8342 F:      drivers/platform/x86/gigabyte-wmi.c
8343
8344 GNSS SUBSYSTEM
8345 M:      Johan Hovold <johan@kernel.org>
8346 S:      Maintained
8347 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/gnss.git
8348 F:      Documentation/ABI/testing/sysfs-class-gnss
8349 F:      Documentation/devicetree/bindings/gnss/
8350 F:      drivers/gnss/
8351 F:      include/linux/gnss.h
8352
8353 GO7007 MPEG CODEC
8354 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
8355 L:      linux-media@vger.kernel.org
8356 S:      Maintained
8357 F:      drivers/media/usb/go7007/
8358
8359 GOODIX TOUCHSCREEN
8360 M:      Bastien Nocera <hadess@hadess.net>
8361 M:      Hans de Goede <hdegoede@redhat.com>
8362 L:      linux-input@vger.kernel.org
8363 S:      Maintained
8364 F:      drivers/input/touchscreen/goodix*
8365
8366 GOOGLE ETHERNET DRIVERS
8367 M:      Jeroen de Borst <jeroendb@google.com>
8368 R:      Catherine Sullivan <csully@google.com>
8369 R:      David Awogbemila <awogbemila@google.com>
8370 L:      netdev@vger.kernel.org
8371 S:      Supported
8372 F:      Documentation/networking/device_drivers/ethernet/google/gve.rst
8373 F:      drivers/net/ethernet/google
8374
8375 GPD POCKET FAN DRIVER
8376 M:      Hans de Goede <hdegoede@redhat.com>
8377 L:      platform-driver-x86@vger.kernel.org
8378 S:      Maintained
8379 F:      drivers/platform/x86/gpd-pocket-fan.c
8380
8381 GPIO ACPI SUPPORT
8382 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
8383 M:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
8384 L:      linux-gpio@vger.kernel.org
8385 L:      linux-acpi@vger.kernel.org
8386 S:      Maintained
8387 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
8388 F:      Documentation/firmware-guide/acpi/gpio-properties.rst
8389 F:      drivers/gpio/gpiolib-acpi.c
8390 F:      drivers/gpio/gpiolib-acpi.h
8391
8392 GPIO AGGREGATOR
8393 M:      Geert Uytterhoeven <geert+renesas@glider.be>
8394 L:      linux-gpio@vger.kernel.org
8395 S:      Supported
8396 F:      Documentation/admin-guide/gpio/gpio-aggregator.rst
8397 F:      drivers/gpio/gpio-aggregator.c
8398
8399 GPIO IR Transmitter
8400 M:      Sean Young <sean@mess.org>
8401 L:      linux-media@vger.kernel.org
8402 S:      Maintained
8403 F:      drivers/media/rc/gpio-ir-tx.c
8404
8405 GPIO MOCKUP DRIVER
8406 M:      Bamvor Jian Zhang <bamv2005@gmail.com>
8407 L:      linux-gpio@vger.kernel.org
8408 S:      Maintained
8409 F:      drivers/gpio/gpio-mockup.c
8410 F:      tools/testing/selftests/gpio/
8411
8412 GPIO REGMAP
8413 R:      Michael Walle <michael@walle.cc>
8414 S:      Maintained
8415 F:      drivers/gpio/gpio-regmap.c
8416 F:      include/linux/gpio/regmap.h
8417
8418 GPIO SUBSYSTEM
8419 M:      Linus Walleij <linus.walleij@linaro.org>
8420 M:      Bartosz Golaszewski <brgl@bgdev.pl>
8421 L:      linux-gpio@vger.kernel.org
8422 S:      Maintained
8423 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux.git
8424 F:      Documentation/ABI/obsolete/sysfs-gpio
8425 F:      Documentation/ABI/testing/gpio-cdev
8426 F:      Documentation/admin-guide/gpio/
8427 F:      Documentation/devicetree/bindings/gpio/
8428 F:      Documentation/driver-api/gpio/
8429 F:      drivers/gpio/
8430 F:      include/asm-generic/gpio.h
8431 F:      include/linux/gpio.h
8432 F:      include/linux/gpio/
8433 F:      include/linux/of_gpio.h
8434 F:      include/uapi/linux/gpio.h
8435 F:      tools/gpio/
8436
8437 GRE DEMULTIPLEXER DRIVER
8438 M:      Dmitry Kozlov <xeb@mail.ru>
8439 L:      netdev@vger.kernel.org
8440 S:      Maintained
8441 F:      include/net/gre.h
8442 F:      net/ipv4/gre_demux.c
8443 F:      net/ipv4/gre_offload.c
8444
8445 GRETH 10/100/1G Ethernet MAC device driver
8446 M:      Andreas Larsson <andreas@gaisler.com>
8447 L:      netdev@vger.kernel.org
8448 S:      Maintained
8449 F:      drivers/net/ethernet/aeroflex/
8450
8451 GREYBUS AUDIO PROTOCOLS DRIVERS
8452 M:      Vaibhav Agarwal <vaibhav.sr@gmail.com>
8453 M:      Mark Greer <mgreer@animalcreek.com>
8454 S:      Maintained
8455 F:      drivers/staging/greybus/audio_apbridgea.c
8456 F:      drivers/staging/greybus/audio_apbridgea.h
8457 F:      drivers/staging/greybus/audio_codec.c
8458 F:      drivers/staging/greybus/audio_codec.h
8459 F:      drivers/staging/greybus/audio_gb.c
8460 F:      drivers/staging/greybus/audio_manager.c
8461 F:      drivers/staging/greybus/audio_manager.h
8462 F:      drivers/staging/greybus/audio_manager_module.c
8463 F:      drivers/staging/greybus/audio_manager_private.h
8464 F:      drivers/staging/greybus/audio_manager_sysfs.c
8465 F:      drivers/staging/greybus/audio_module.c
8466 F:      drivers/staging/greybus/audio_topology.c
8467
8468 GREYBUS FW/HID/SPI PROTOCOLS DRIVERS
8469 M:      Viresh Kumar <vireshk@kernel.org>
8470 S:      Maintained
8471 F:      drivers/staging/greybus/authentication.c
8472 F:      drivers/staging/greybus/bootrom.c
8473 F:      drivers/staging/greybus/firmware.h
8474 F:      drivers/staging/greybus/fw-core.c
8475 F:      drivers/staging/greybus/fw-download.c
8476 F:      drivers/staging/greybus/fw-management.c
8477 F:      drivers/staging/greybus/greybus_authentication.h
8478 F:      drivers/staging/greybus/greybus_firmware.h
8479 F:      drivers/staging/greybus/hid.c
8480 F:      drivers/staging/greybus/i2c.c
8481 F:      drivers/staging/greybus/spi.c
8482 F:      drivers/staging/greybus/spilib.c
8483 F:      drivers/staging/greybus/spilib.h
8484
8485 GREYBUS LOOPBACK DRIVER
8486 M:      Bryan O'Donoghue <pure.logic@nexus-software.ie>
8487 S:      Maintained
8488 F:      drivers/staging/greybus/loopback.c
8489
8490 GREYBUS PLATFORM DRIVERS
8491 M:      Vaibhav Hiremath <hvaibhav.linux@gmail.com>
8492 S:      Maintained
8493 F:      drivers/staging/greybus/arche-apb-ctrl.c
8494 F:      drivers/staging/greybus/arche-platform.c
8495 F:      drivers/staging/greybus/arche_platform.h
8496
8497 GREYBUS SDIO/GPIO/SPI PROTOCOLS DRIVERS
8498 M:      Rui Miguel Silva <rmfrfs@gmail.com>
8499 S:      Maintained
8500 F:      drivers/staging/greybus/gpio.c
8501 F:      drivers/staging/greybus/light.c
8502 F:      drivers/staging/greybus/power_supply.c
8503 F:      drivers/staging/greybus/sdio.c
8504 F:      drivers/staging/greybus/spi.c
8505 F:      drivers/staging/greybus/spilib.c
8506
8507 GREYBUS SUBSYSTEM
8508 M:      Johan Hovold <johan@kernel.org>
8509 M:      Alex Elder <elder@kernel.org>
8510 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
8511 L:      greybus-dev@lists.linaro.org (moderated for non-subscribers)
8512 S:      Maintained
8513 F:      drivers/greybus/
8514 F:      drivers/staging/greybus/
8515 F:      include/linux/greybus.h
8516 F:      include/linux/greybus/
8517
8518 GREYBUS UART PROTOCOLS DRIVERS
8519 M:      David Lin <dtwlin@gmail.com>
8520 S:      Maintained
8521 F:      drivers/staging/greybus/log.c
8522 F:      drivers/staging/greybus/uart.c
8523
8524 GS1662 VIDEO SERIALIZER
8525 M:      Charles-Antoine Couret <charles-antoine.couret@nexvision.fr>
8526 L:      linux-media@vger.kernel.org
8527 S:      Maintained
8528 T:      git git://linuxtv.org/media_tree.git
8529 F:      drivers/media/spi/gs1662.c
8530
8531 GSPCA FINEPIX SUBDRIVER
8532 M:      Frank Zago <frank@zago.net>
8533 L:      linux-media@vger.kernel.org
8534 S:      Maintained
8535 T:      git git://linuxtv.org/media_tree.git
8536 F:      drivers/media/usb/gspca/finepix.c
8537
8538 GSPCA GL860 SUBDRIVER
8539 M:      Olivier Lorin <o.lorin@laposte.net>
8540 L:      linux-media@vger.kernel.org
8541 S:      Maintained
8542 T:      git git://linuxtv.org/media_tree.git
8543 F:      drivers/media/usb/gspca/gl860/
8544
8545 GSPCA M5602 SUBDRIVER
8546 M:      Erik Andren <erik.andren@gmail.com>
8547 L:      linux-media@vger.kernel.org
8548 S:      Maintained
8549 T:      git git://linuxtv.org/media_tree.git
8550 F:      drivers/media/usb/gspca/m5602/
8551
8552 GSPCA PAC207 SONIXB SUBDRIVER
8553 M:      Hans Verkuil <hverkuil@xs4all.nl>
8554 L:      linux-media@vger.kernel.org
8555 S:      Odd Fixes
8556 T:      git git://linuxtv.org/media_tree.git
8557 F:      drivers/media/usb/gspca/pac207.c
8558
8559 GSPCA SN9C20X SUBDRIVER
8560 M:      Brian Johnson <brijohn@gmail.com>
8561 L:      linux-media@vger.kernel.org
8562 S:      Maintained
8563 T:      git git://linuxtv.org/media_tree.git
8564 F:      drivers/media/usb/gspca/sn9c20x.c
8565
8566 GSPCA T613 SUBDRIVER
8567 M:      Leandro Costantino <lcostantino@gmail.com>
8568 L:      linux-media@vger.kernel.org
8569 S:      Maintained
8570 T:      git git://linuxtv.org/media_tree.git
8571 F:      drivers/media/usb/gspca/t613.c
8572
8573 GSPCA USB WEBCAM DRIVER
8574 M:      Hans Verkuil <hverkuil@xs4all.nl>
8575 L:      linux-media@vger.kernel.org
8576 S:      Odd Fixes
8577 T:      git git://linuxtv.org/media_tree.git
8578 F:      drivers/media/usb/gspca/
8579
8580 GTP (GPRS Tunneling Protocol)
8581 M:      Pablo Neira Ayuso <pablo@netfilter.org>
8582 M:      Harald Welte <laforge@gnumonks.org>
8583 L:      osmocom-net-gprs@lists.osmocom.org
8584 S:      Maintained
8585 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/gtp.git
8586 F:      drivers/net/gtp.c
8587
8588 GUID PARTITION TABLE (GPT)
8589 M:      Davidlohr Bueso <dave@stgolabs.net>
8590 L:      linux-efi@vger.kernel.org
8591 S:      Maintained
8592 F:      block/partitions/efi.*
8593
8594 H8/300 ARCHITECTURE
8595 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
8596 L:      uclinux-h8-devel@lists.sourceforge.jp (moderated for non-subscribers)
8597 S:      Maintained
8598 W:      http://uclinux-h8.sourceforge.jp
8599 T:      git git://git.sourceforge.jp/gitroot/uclinux-h8/linux.git
8600 F:      arch/h8300/
8601 F:      drivers/clk/h8300/
8602 F:      drivers/clocksource/h8300_*.c
8603 F:      drivers/irqchip/irq-renesas-h8*.c
8604
8605 HABANALABS PCI DRIVER
8606 M:      Oded Gabbay <ogabbay@kernel.org>
8607 S:      Supported
8608 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/ogabbay/linux.git
8609 F:      Documentation/ABI/testing/debugfs-driver-habanalabs
8610 F:      Documentation/ABI/testing/sysfs-driver-habanalabs
8611 F:      drivers/misc/habanalabs/
8612 F:      include/uapi/misc/habanalabs.h
8613
8614 HACKRF MEDIA DRIVER
8615 M:      Antti Palosaari <crope@iki.fi>
8616 L:      linux-media@vger.kernel.org
8617 S:      Maintained
8618 W:      https://linuxtv.org
8619 W:      http://palosaari.fi/linux/
8620 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8621 T:      git git://linuxtv.org/anttip/media_tree.git
8622 F:      drivers/media/usb/hackrf/
8623
8624 HANTRO VPU CODEC DRIVER
8625 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
8626 M:      Philipp Zabel <p.zabel@pengutronix.de>
8627 L:      linux-media@vger.kernel.org
8628 L:      linux-rockchip@lists.infradead.org
8629 S:      Maintained
8630 F:      Documentation/devicetree/bindings/media/nxp,imx8mq-vpu.yaml
8631 F:      Documentation/devicetree/bindings/media/rockchip-vpu.yaml
8632 F:      drivers/staging/media/hantro/
8633
8634 HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
8635 M:      Frank Seidel <frank@f-seidel.de>
8636 L:      platform-driver-x86@vger.kernel.org
8637 S:      Maintained
8638 W:      http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
8639 F:      drivers/platform/x86/hdaps.c
8640
8641 HARDWARE MONITORING
8642 M:      Jean Delvare <jdelvare@suse.com>
8643 M:      Guenter Roeck <linux@roeck-us.net>
8644 L:      linux-hwmon@vger.kernel.org
8645 S:      Maintained
8646 W:      http://hwmon.wiki.kernel.org/
8647 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
8648 F:      Documentation/ABI/testing/sysfs-class-hwmon
8649 F:      Documentation/devicetree/bindings/hwmon/
8650 F:      Documentation/hwmon/
8651 F:      drivers/hwmon/
8652 F:      include/linux/hwmon*.h
8653 F:      include/trace/events/hwmon*.h
8654 K:      (devm_)?hwmon_device_(un)?register(|_with_groups|_with_info)
8655
8656 HARDWARE RANDOM NUMBER GENERATOR CORE
8657 M:      Matt Mackall <mpm@selenic.com>
8658 M:      Herbert Xu <herbert@gondor.apana.org.au>
8659 L:      linux-crypto@vger.kernel.org
8660 S:      Odd fixes
8661 F:      Documentation/admin-guide/hw_random.rst
8662 F:      Documentation/devicetree/bindings/rng/
8663 F:      drivers/char/hw_random/
8664 F:      include/linux/hw_random.h
8665
8666 HARDWARE SPINLOCK CORE
8667 M:      Ohad Ben-Cohen <ohad@wizery.com>
8668 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
8669 R:      Baolin Wang <baolin.wang7@gmail.com>
8670 L:      linux-remoteproc@vger.kernel.org
8671 S:      Maintained
8672 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git hwspinlock-next
8673 F:      Documentation/devicetree/bindings/hwlock/
8674 F:      Documentation/locking/hwspinlock.rst
8675 F:      drivers/hwspinlock/
8676 F:      include/linux/hwspinlock.h
8677
8678 HARDWARE TRACING FACILITIES
8679 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
8680 S:      Maintained
8681 F:      drivers/hwtracing/
8682
8683 HARMONY SOUND DRIVER
8684 L:      linux-parisc@vger.kernel.org
8685 S:      Maintained
8686 F:      sound/parisc/harmony.*
8687
8688 HDPVR USB VIDEO ENCODER DRIVER
8689 M:      Hans Verkuil <hverkuil@xs4all.nl>
8690 L:      linux-media@vger.kernel.org
8691 S:      Odd Fixes
8692 W:      https://linuxtv.org
8693 T:      git git://linuxtv.org/media_tree.git
8694 F:      drivers/media/usb/hdpvr/
8695
8696 HEWLETT PACKARD ENTERPRISE ILO CHIF DRIVER
8697 M:      Matt Hsiao <matt.hsiao@hpe.com>
8698 S:      Supported
8699 F:      drivers/misc/hpilo.[ch]
8700
8701 HEWLETT PACKARD ENTERPRISE ILO NMI WATCHDOG DRIVER
8702 M:      Jerry Hoemann <jerry.hoemann@hpe.com>
8703 S:      Supported
8704 F:      Documentation/watchdog/hpwdt.rst
8705 F:      drivers/watchdog/hpwdt.c
8706
8707 HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
8708 M:      Don Brace <don.brace@microchip.com>
8709 L:      storagedev@microchip.com
8710 L:      linux-scsi@vger.kernel.org
8711 S:      Supported
8712 F:      Documentation/scsi/hpsa.rst
8713 F:      drivers/scsi/hpsa*.[ch]
8714 F:      include/linux/cciss*.h
8715 F:      include/uapi/linux/cciss*.h
8716
8717 HFI1 DRIVER
8718 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
8719 L:      linux-rdma@vger.kernel.org
8720 S:      Supported
8721 F:      drivers/infiniband/hw/hfi1
8722
8723 HFS FILESYSTEM
8724 L:      linux-fsdevel@vger.kernel.org
8725 S:      Orphan
8726 F:      Documentation/filesystems/hfs.rst
8727 F:      fs/hfs/
8728
8729 HFSPLUS FILESYSTEM
8730 L:      linux-fsdevel@vger.kernel.org
8731 S:      Orphan
8732 F:      Documentation/filesystems/hfsplus.rst
8733 F:      fs/hfsplus/
8734
8735 HGA FRAMEBUFFER DRIVER
8736 M:      Ferenc Bakonyi <fero@drama.obuda.kando.hu>
8737 L:      linux-nvidia@lists.surfsouth.com
8738 S:      Maintained
8739 W:      http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
8740 F:      drivers/video/fbdev/hgafb.c
8741
8742 HIBERNATION (aka Software Suspend, aka swsusp)
8743 M:      "Rafael J. Wysocki" <rafael@kernel.org>
8744 M:      Pavel Machek <pavel@ucw.cz>
8745 L:      linux-pm@vger.kernel.org
8746 S:      Supported
8747 B:      https://bugzilla.kernel.org
8748 F:      arch/*/include/asm/suspend*.h
8749 F:      arch/x86/power/
8750 F:      drivers/base/power/
8751 F:      include/linux/freezer.h
8752 F:      include/linux/pm.h
8753 F:      include/linux/suspend.h
8754 F:      kernel/power/
8755
8756 HID CORE LAYER
8757 M:      Jiri Kosina <jikos@kernel.org>
8758 M:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
8759 L:      linux-input@vger.kernel.org
8760 S:      Maintained
8761 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
8762 F:      drivers/hid/
8763 F:      include/linux/hid*
8764 F:      include/uapi/linux/hid*
8765
8766 HID LOGITECH DRIVERS
8767 R:      Filipe Laíns <lains@riseup.net>
8768 L:      linux-input@vger.kernel.org
8769 S:      Maintained
8770 F:      drivers/hid/hid-logitech-*
8771
8772 HID PLAYSTATION DRIVER
8773 M:      Roderick Colenbrander <roderick.colenbrander@sony.com>
8774 L:      linux-input@vger.kernel.org
8775 S:      Supported
8776 F:      drivers/hid/hid-playstation.c
8777
8778 HID SENSOR HUB DRIVERS
8779 M:      Jiri Kosina <jikos@kernel.org>
8780 M:      Jonathan Cameron <jic23@kernel.org>
8781 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
8782 L:      linux-input@vger.kernel.org
8783 L:      linux-iio@vger.kernel.org
8784 S:      Maintained
8785 F:      Documentation/hid/hid-sensor*
8786 F:      drivers/hid/hid-sensor-*
8787 F:      drivers/iio/*/hid-*
8788 F:      include/linux/hid-sensor-*
8789
8790 HID WACOM DRIVER
8791 M:      Ping Cheng <ping.cheng@wacom.com>
8792 M:      Jason Gerecke  <jason.gerecke@wacom.com>
8793 L:      linux-input@vger.kernel.org
8794 S:      Maintained
8795 F:      drivers/hid/wacom.h
8796 F:      drivers/hid/wacom_*
8797
8798 HIGH-RESOLUTION TIMERS, CLOCKEVENTS
8799 M:      Thomas Gleixner <tglx@linutronix.de>
8800 L:      linux-kernel@vger.kernel.org
8801 S:      Maintained
8802 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
8803 F:      Documentation/timers/
8804 F:      include/linux/clockchips.h
8805 F:      include/linux/hrtimer.h
8806 F:      kernel/time/clockevents.c
8807 F:      kernel/time/hrtimer.c
8808 F:      kernel/time/timer_*.c
8809
8810 HIGH-SPEED SCC DRIVER FOR AX.25
8811 L:      linux-hams@vger.kernel.org
8812 S:      Orphan
8813 F:      drivers/net/hamradio/scc.c
8814
8815 HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
8816 M:      HighPoint Linux Team <linux@highpoint-tech.com>
8817 S:      Supported
8818 W:      http://www.highpoint-tech.com
8819 F:      Documentation/scsi/hptiop.rst
8820 F:      drivers/scsi/hptiop.c
8821
8822 HIPPI
8823 M:      Jes Sorensen <jes@trained-monkey.org>
8824 L:      linux-hippi@sunsite.dk
8825 S:      Maintained
8826 F:      drivers/net/hippi/
8827 F:      include/linux/hippidevice.h
8828 F:      include/uapi/linux/if_hippi.h
8829 F:      net/802/hippi.c
8830
8831 HIRSCHMANN HELLCREEK ETHERNET SWITCH DRIVER
8832 M:      Kurt Kanzenbach <kurt@linutronix.de>
8833 L:      netdev@vger.kernel.org
8834 S:      Maintained
8835 F:      Documentation/devicetree/bindings/net/dsa/hirschmann,hellcreek.yaml
8836 F:      drivers/net/dsa/hirschmann/*
8837 F:      include/linux/platform_data/hirschmann-hellcreek.h
8838 F:      net/dsa/tag_hellcreek.c
8839
8840 HISILICON DMA DRIVER
8841 M:      Zhou Wang <wangzhou1@hisilicon.com>
8842 L:      dmaengine@vger.kernel.org
8843 S:      Maintained
8844 F:      drivers/dma/hisi_dma.c
8845
8846 HISILICON GPIO DRIVER
8847 M:      Luo Jiaxing <luojiaxing@huawei.com>
8848 L:      linux-gpio@vger.kernel.org
8849 S:      Maintained
8850 F:      drivers/gpio/gpio-hisi.c
8851
8852 HISILICON HIGH PERFORMANCE RSA ENGINE DRIVER (HPRE)
8853 M:      Longfang Liu <liulongfang@huawei.com>
8854 L:      linux-crypto@vger.kernel.org
8855 S:      Maintained
8856 F:      Documentation/ABI/testing/debugfs-hisi-hpre
8857 F:      drivers/crypto/hisilicon/hpre/hpre.h
8858 F:      drivers/crypto/hisilicon/hpre/hpre_crypto.c
8859 F:      drivers/crypto/hisilicon/hpre/hpre_main.c
8860
8861 HISILICON I2C CONTROLLER DRIVER
8862 M:      Yicong Yang <yangyicong@hisilicon.com>
8863 L:      linux-i2c@vger.kernel.org
8864 S:      Maintained
8865 W:      https://www.hisilicon.com
8866 F:      drivers/i2c/busses/i2c-hisi.c
8867
8868 HISILICON LPC BUS DRIVER
8869 M:      john.garry@huawei.com
8870 S:      Maintained
8871 W:      http://www.hisilicon.com
8872 F:      Documentation/devicetree/bindings/arm/hisilicon/low-pin-count.yaml
8873 F:      drivers/bus/hisi_lpc.c
8874
8875 HISILICON NETWORK SUBSYSTEM 3 DRIVER (HNS3)
8876 M:      Yisen Zhuang <yisen.zhuang@huawei.com>
8877 M:      Salil Mehta <salil.mehta@huawei.com>
8878 L:      netdev@vger.kernel.org
8879 S:      Maintained
8880 W:      http://www.hisilicon.com
8881 F:      drivers/net/ethernet/hisilicon/hns3/
8882
8883 HISILICON NETWORK SUBSYSTEM DRIVER
8884 M:      Yisen Zhuang <yisen.zhuang@huawei.com>
8885 M:      Salil Mehta <salil.mehta@huawei.com>
8886 L:      netdev@vger.kernel.org
8887 S:      Maintained
8888 W:      http://www.hisilicon.com
8889 F:      Documentation/devicetree/bindings/net/hisilicon*.txt
8890 F:      drivers/net/ethernet/hisilicon/
8891
8892 HIKEY960 ONBOARD USB GPIO HUB DRIVER
8893 M:      John Stultz <jstultz@google.com>
8894 L:      linux-kernel@vger.kernel.org
8895 S:      Maintained
8896 F:      drivers/misc/hisi_hikey_usb.c
8897
8898 HISILICON PMU DRIVER
8899 M:      Shaokun Zhang <zhangshaokun@hisilicon.com>
8900 M:      Qi Liu <liuqi115@huawei.com>
8901 S:      Supported
8902 W:      http://www.hisilicon.com
8903 F:      Documentation/admin-guide/perf/hisi-pcie-pmu.rst
8904 F:      Documentation/admin-guide/perf/hisi-pmu.rst
8905 F:      drivers/perf/hisilicon
8906
8907 HISILICON QM AND ZIP Controller DRIVER
8908 M:      Zhou Wang <wangzhou1@hisilicon.com>
8909 L:      linux-crypto@vger.kernel.org
8910 S:      Maintained
8911 F:      Documentation/ABI/testing/debugfs-hisi-zip
8912 F:      drivers/crypto/hisilicon/qm.c
8913 F:      drivers/crypto/hisilicon/sgl.c
8914 F:      drivers/crypto/hisilicon/zip/
8915 F:      include/linux/hisi_acc_qm.h
8916
8917 HISILICON ROCE DRIVER
8918 M:      Wenpeng Liang <liangwenpeng@huawei.com>
8919 M:      Weihang Li <liweihang@huawei.com>
8920 L:      linux-rdma@vger.kernel.org
8921 S:      Maintained
8922 F:      Documentation/devicetree/bindings/infiniband/hisilicon-hns-roce.txt
8923 F:      drivers/infiniband/hw/hns/
8924
8925 HISILICON SAS Controller
8926 M:      John Garry <john.garry@huawei.com>
8927 S:      Supported
8928 W:      http://www.hisilicon.com
8929 F:      Documentation/devicetree/bindings/scsi/hisilicon-sas.txt
8930 F:      drivers/scsi/hisi_sas/
8931
8932 HISILICON SECURITY ENGINE V2 DRIVER (SEC2)
8933 M:      Kai Ye <yekai13@huawei.com>
8934 M:      Longfang Liu <liulongfang@huawei.com>
8935 L:      linux-crypto@vger.kernel.org
8936 S:      Maintained
8937 F:      Documentation/ABI/testing/debugfs-hisi-sec
8938 F:      drivers/crypto/hisilicon/sec2/sec.h
8939 F:      drivers/crypto/hisilicon/sec2/sec_crypto.c
8940 F:      drivers/crypto/hisilicon/sec2/sec_crypto.h
8941 F:      drivers/crypto/hisilicon/sec2/sec_main.c
8942
8943 HISILICON SPI Controller DRIVER FOR KUNPENG SOCS
8944 M:      Jay Fang <f.fangjian@huawei.com>
8945 L:      linux-spi@vger.kernel.org
8946 S:      Maintained
8947 W:      http://www.hisilicon.com
8948 F:      drivers/spi/spi-hisi-kunpeng.c
8949
8950 HISILICON SPMI CONTROLLER DRIVER FOR HIKEY 970
8951 M:      Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
8952 L:      linux-kernel@vger.kernel.org
8953 S:      Maintained
8954 F:      Documentation/devicetree/bindings/spmi/hisilicon,hisi-spmi-controller.yaml
8955 F:      drivers/spmi/hisi-spmi-controller.c
8956
8957 HISILICON SPMI PMIC DRIVER FOR HIKEY 6421v600
8958 M:      Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
8959 L:      linux-kernel@vger.kernel.org
8960 S:      Maintained
8961 F:      Documentation/devicetree/bindings/mfd/hisilicon,hi6421-spmi-pmic.yaml
8962 F:      drivers/mfd/hi6421-spmi-pmic.c
8963
8964 HISILICON TRUE RANDOM NUMBER GENERATOR V2 SUPPORT
8965 M:      Weili Qian <qianweili@huawei.com>
8966 S:      Maintained
8967 F:      drivers/crypto/hisilicon/trng/trng.c
8968
8969 HISILICON V3XX SPI NOR FLASH Controller Driver
8970 M:      John Garry <john.garry@huawei.com>
8971 S:      Maintained
8972 W:      http://www.hisilicon.com
8973 F:      drivers/spi/spi-hisi-sfc-v3xx.c
8974
8975 HMM - Heterogeneous Memory Management
8976 M:      Jérôme Glisse <jglisse@redhat.com>
8977 L:      linux-mm@kvack.org
8978 S:      Maintained
8979 F:      Documentation/vm/hmm.rst
8980 F:      include/linux/hmm*
8981 F:      lib/test_hmm*
8982 F:      mm/hmm*
8983 F:      tools/testing/selftests/vm/*hmm*
8984
8985 HOST AP DRIVER
8986 M:      Jouni Malinen <j@w1.fi>
8987 L:      linux-wireless@vger.kernel.org
8988 S:      Obsolete
8989 W:      http://w1.fi/hostap-driver.html
8990 F:      drivers/net/wireless/intersil/hostap/
8991
8992 HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
8993 L:      platform-driver-x86@vger.kernel.org
8994 S:      Orphan
8995 F:      drivers/platform/x86/tc1100-wmi.c
8996
8997 HPET:   High Precision Event Timers driver
8998 M:      Clemens Ladisch <clemens@ladisch.de>
8999 S:      Maintained
9000 F:      Documentation/timers/hpet.rst
9001 F:      drivers/char/hpet.c
9002 F:      include/linux/hpet.h
9003 F:      include/uapi/linux/hpet.h
9004
9005 HPET:   x86
9006 S:      Orphan
9007 F:      arch/x86/include/asm/hpet.h
9008 F:      arch/x86/kernel/hpet.c
9009
9010 HPFS FILESYSTEM
9011 M:      Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
9012 S:      Maintained
9013 W:      http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
9014 F:      fs/hpfs/
9015
9016 HSI SUBSYSTEM
9017 M:      Sebastian Reichel <sre@kernel.org>
9018 S:      Maintained
9019 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git
9020 F:      Documentation/ABI/testing/sysfs-bus-hsi
9021 F:      Documentation/driver-api/hsi.rst
9022 F:      drivers/hsi/
9023 F:      include/linux/hsi/
9024 F:      include/uapi/linux/hsi/
9025
9026 HSO 3G MODEM DRIVER
9027 L:      linux-usb@vger.kernel.org
9028 S:      Orphan
9029 F:      drivers/net/usb/hso.c
9030
9031 HSR NETWORK PROTOCOL
9032 L:      netdev@vger.kernel.org
9033 S:      Orphan
9034 F:      net/hsr/
9035
9036 HT16K33 LED CONTROLLER DRIVER
9037 M:      Robin van der Gracht <robin@protonic.nl>
9038 S:      Maintained
9039 F:      Documentation/devicetree/bindings/auxdisplay/holtek,ht16k33.yaml
9040 F:      drivers/auxdisplay/ht16k33.c
9041
9042 HTCPEN TOUCHSCREEN DRIVER
9043 M:      Pau Oliva Fora <pof@eslack.org>
9044 L:      linux-input@vger.kernel.org
9045 S:      Maintained
9046 F:      drivers/input/touchscreen/htcpen.c
9047
9048 HTS221 TEMPERATURE-HUMIDITY IIO DRIVER
9049 M:      Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
9050 L:      linux-iio@vger.kernel.org
9051 S:      Maintained
9052 W:      http://www.st.com/
9053 F:      Documentation/devicetree/bindings/iio/humidity/st,hts221.yaml
9054 F:      drivers/iio/humidity/hts221*
9055
9056 HUAWEI ETHERNET DRIVER
9057 L:      netdev@vger.kernel.org
9058 S:      Orphan
9059 F:      Documentation/networking/device_drivers/ethernet/huawei/hinic.rst
9060 F:      drivers/net/ethernet/huawei/hinic/
9061
9062 HUGETLB FILESYSTEM
9063 M:      Mike Kravetz <mike.kravetz@oracle.com>
9064 L:      linux-mm@kvack.org
9065 S:      Maintained
9066 F:      Documentation/ABI/testing/sysfs-kernel-mm-hugepages
9067 F:      Documentation/admin-guide/mm/hugetlbpage.rst
9068 F:      Documentation/vm/hugetlbfs_reserv.rst
9069 F:      fs/hugetlbfs/
9070 F:      include/linux/hugetlb.h
9071 F:      mm/hugetlb.c
9072
9073 HVA ST MEDIA DRIVER
9074 M:      Jean-Christophe Trotin <jean-christophe.trotin@foss.st.com>
9075 L:      linux-media@vger.kernel.org
9076 S:      Supported
9077 W:      https://linuxtv.org
9078 T:      git git://linuxtv.org/media_tree.git
9079 F:      drivers/media/platform/st/sti/hva
9080
9081 HWPOISON MEMORY FAILURE HANDLING
9082 M:      Naoya Horiguchi <naoya.horiguchi@nec.com>
9083 L:      linux-mm@kvack.org
9084 S:      Maintained
9085 F:      mm/hwpoison-inject.c
9086 F:      mm/memory-failure.c
9087
9088 HYCON HY46XX TOUCHSCREEN SUPPORT
9089 M:      Giulio Benetti <giulio.benetti@benettiengineering.com>
9090 L:      linux-input@vger.kernel.org
9091 S:      Maintained
9092 F:      Documentation/devicetree/bindings/input/touchscreen/hycon,hy46xx.yaml
9093 F:      drivers/input/touchscreen/hycon-hy46xx.c
9094
9095 HYGON PROCESSOR SUPPORT
9096 M:      Pu Wen <puwen@hygon.cn>
9097 L:      linux-kernel@vger.kernel.org
9098 S:      Maintained
9099 F:      arch/x86/kernel/cpu/hygon.c
9100
9101 HYNIX HI556 SENSOR DRIVER
9102 M:      Shawn Tu <shawnx.tu@intel.com>
9103 L:      linux-media@vger.kernel.org
9104 S:      Maintained
9105 T:      git git://linuxtv.org/media_tree.git
9106 F:      drivers/media/i2c/hi556.c
9107
9108 HYNIX HI846 SENSOR DRIVER
9109 M:      Martin Kepplinger <martin.kepplinger@puri.sm>
9110 L:      linux-media@vger.kernel.org
9111 S:      Maintained
9112 F:      drivers/media/i2c/hi846.c
9113
9114 HYNIX HI847 SENSOR DRIVER
9115 M:      Shawn Tu <shawnx.tu@intel.com>
9116 L:      linux-media@vger.kernel.org
9117 S:      Maintained
9118 F:      drivers/media/i2c/hi847.c
9119
9120 Hyper-V/Azure CORE AND DRIVERS
9121 M:      "K. Y. Srinivasan" <kys@microsoft.com>
9122 M:      Haiyang Zhang <haiyangz@microsoft.com>
9123 M:      Stephen Hemminger <sthemmin@microsoft.com>
9124 M:      Wei Liu <wei.liu@kernel.org>
9125 M:      Dexuan Cui <decui@microsoft.com>
9126 L:      linux-hyperv@vger.kernel.org
9127 S:      Supported
9128 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hyperv/linux.git
9129 F:      Documentation/ABI/stable/sysfs-bus-vmbus
9130 F:      Documentation/ABI/testing/debugfs-hyperv
9131 F:      Documentation/networking/device_drivers/ethernet/microsoft/netvsc.rst
9132 F:      arch/arm64/hyperv
9133 F:      arch/arm64/include/asm/hyperv-tlfs.h
9134 F:      arch/arm64/include/asm/mshyperv.h
9135 F:      arch/x86/hyperv
9136 F:      arch/x86/include/asm/hyperv-tlfs.h
9137 F:      arch/x86/include/asm/mshyperv.h
9138 F:      arch/x86/include/asm/trace/hyperv.h
9139 F:      arch/x86/kernel/cpu/mshyperv.c
9140 F:      drivers/clocksource/hyperv_timer.c
9141 F:      drivers/hid/hid-hyperv.c
9142 F:      drivers/hv/
9143 F:      drivers/input/serio/hyperv-keyboard.c
9144 F:      drivers/iommu/hyperv-iommu.c
9145 F:      drivers/net/ethernet/microsoft/
9146 F:      drivers/net/hyperv/
9147 F:      drivers/pci/controller/pci-hyperv-intf.c
9148 F:      drivers/pci/controller/pci-hyperv.c
9149 F:      drivers/scsi/storvsc_drv.c
9150 F:      drivers/uio/uio_hv_generic.c
9151 F:      drivers/video/fbdev/hyperv_fb.c
9152 F:      include/asm-generic/hyperv-tlfs.h
9153 F:      include/asm-generic/mshyperv.h
9154 F:      include/clocksource/hyperv_timer.h
9155 F:      include/linux/hyperv.h
9156 F:      include/uapi/linux/hyperv.h
9157 F:      net/vmw_vsock/hyperv_transport.c
9158 F:      tools/hv/
9159
9160 HYPERBUS SUPPORT
9161 M:      Vignesh Raghavendra <vigneshr@ti.com>
9162 L:      linux-mtd@lists.infradead.org
9163 S:      Supported
9164 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
9165 C:      irc://irc.oftc.net/mtd
9166 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git cfi/next
9167 F:      Documentation/devicetree/bindings/mtd/ti,am654-hbmc.yaml
9168 F:      drivers/mtd/hyperbus/
9169 F:      include/linux/mtd/hyperbus.h
9170
9171 HYPERVISOR VIRTUAL CONSOLE DRIVER
9172 L:      linuxppc-dev@lists.ozlabs.org
9173 S:      Odd Fixes
9174 F:      drivers/tty/hvc/
9175
9176 I2C ACPI SUPPORT
9177 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
9178 L:      linux-i2c@vger.kernel.org
9179 L:      linux-acpi@vger.kernel.org
9180 S:      Maintained
9181 F:      drivers/i2c/i2c-core-acpi.c
9182
9183 I2C CONTROLLER DRIVER FOR NVIDIA GPU
9184 M:      Ajay Gupta <ajayg@nvidia.com>
9185 L:      linux-i2c@vger.kernel.org
9186 S:      Maintained
9187 F:      Documentation/i2c/busses/i2c-nvidia-gpu.rst
9188 F:      drivers/i2c/busses/i2c-nvidia-gpu.c
9189
9190 I2C MUXES
9191 M:      Peter Rosin <peda@axentia.se>
9192 L:      linux-i2c@vger.kernel.org
9193 S:      Maintained
9194 F:      Documentation/devicetree/bindings/i2c/i2c-arb*
9195 F:      Documentation/devicetree/bindings/i2c/i2c-gate*
9196 F:      Documentation/devicetree/bindings/i2c/i2c-mux*
9197 F:      Documentation/i2c/i2c-topology.rst
9198 F:      Documentation/i2c/muxes/
9199 F:      drivers/i2c/i2c-mux.c
9200 F:      drivers/i2c/muxes/
9201 F:      include/linux/i2c-mux.h
9202
9203 I2C MV64XXX MARVELL AND ALLWINNER DRIVER
9204 M:      Gregory CLEMENT <gregory.clement@bootlin.com>
9205 L:      linux-i2c@vger.kernel.org
9206 S:      Maintained
9207 F:      Documentation/devicetree/bindings/i2c/marvell,mv64xxx-i2c.yaml
9208 F:      drivers/i2c/busses/i2c-mv64xxx.c
9209
9210 I2C OVER PARALLEL PORT
9211 M:      Jean Delvare <jdelvare@suse.com>
9212 L:      linux-i2c@vger.kernel.org
9213 S:      Maintained
9214 F:      Documentation/i2c/busses/i2c-parport.rst
9215 F:      drivers/i2c/busses/i2c-parport.c
9216
9217 I2C SUBSYSTEM
9218 M:      Wolfram Sang <wsa@kernel.org>
9219 L:      linux-i2c@vger.kernel.org
9220 S:      Maintained
9221 W:      https://i2c.wiki.kernel.org/
9222 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
9223 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
9224 F:      Documentation/devicetree/bindings/i2c/i2c.txt
9225 F:      Documentation/i2c/
9226 F:      drivers/i2c/*
9227 F:      include/linux/i2c-dev.h
9228 F:      include/linux/i2c-smbus.h
9229 F:      include/linux/i2c.h
9230 F:      include/uapi/linux/i2c-*.h
9231 F:      include/uapi/linux/i2c.h
9232
9233 I2C SUBSYSTEM HOST DRIVERS
9234 L:      linux-i2c@vger.kernel.org
9235 S:      Odd Fixes
9236 W:      https://i2c.wiki.kernel.org/
9237 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
9238 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
9239 F:      Documentation/devicetree/bindings/i2c/
9240 F:      drivers/i2c/algos/
9241 F:      drivers/i2c/busses/
9242
9243 I2C-TAOS-EVM DRIVER
9244 M:      Jean Delvare <jdelvare@suse.com>
9245 L:      linux-i2c@vger.kernel.org
9246 S:      Maintained
9247 F:      Documentation/i2c/busses/i2c-taos-evm.rst
9248 F:      drivers/i2c/busses/i2c-taos-evm.c
9249
9250 I2C-TINY-USB DRIVER
9251 M:      Till Harbaum <till@harbaum.org>
9252 L:      linux-i2c@vger.kernel.org
9253 S:      Maintained
9254 W:      http://www.harbaum.org/till/i2c_tiny_usb
9255 F:      drivers/i2c/busses/i2c-tiny-usb.c
9256
9257 I2C/SMBUS CONTROLLER DRIVERS FOR PC
9258 M:      Jean Delvare <jdelvare@suse.com>
9259 L:      linux-i2c@vger.kernel.org
9260 S:      Maintained
9261 F:      Documentation/i2c/busses/i2c-ali1535.rst
9262 F:      Documentation/i2c/busses/i2c-ali1563.rst
9263 F:      Documentation/i2c/busses/i2c-ali15x3.rst
9264 F:      Documentation/i2c/busses/i2c-amd756.rst
9265 F:      Documentation/i2c/busses/i2c-amd8111.rst
9266 F:      Documentation/i2c/busses/i2c-i801.rst
9267 F:      Documentation/i2c/busses/i2c-nforce2.rst
9268 F:      Documentation/i2c/busses/i2c-piix4.rst
9269 F:      Documentation/i2c/busses/i2c-sis5595.rst
9270 F:      Documentation/i2c/busses/i2c-sis630.rst
9271 F:      Documentation/i2c/busses/i2c-sis96x.rst
9272 F:      Documentation/i2c/busses/i2c-via.rst
9273 F:      Documentation/i2c/busses/i2c-viapro.rst
9274 F:      drivers/i2c/busses/i2c-ali1535.c
9275 F:      drivers/i2c/busses/i2c-ali1563.c
9276 F:      drivers/i2c/busses/i2c-ali15x3.c
9277 F:      drivers/i2c/busses/i2c-amd756-s4882.c
9278 F:      drivers/i2c/busses/i2c-amd756.c
9279 F:      drivers/i2c/busses/i2c-amd8111.c
9280 F:      drivers/i2c/busses/i2c-i801.c
9281 F:      drivers/i2c/busses/i2c-isch.c
9282 F:      drivers/i2c/busses/i2c-nforce2-s4985.c
9283 F:      drivers/i2c/busses/i2c-nforce2.c
9284 F:      drivers/i2c/busses/i2c-piix4.c
9285 F:      drivers/i2c/busses/i2c-sis5595.c
9286 F:      drivers/i2c/busses/i2c-sis630.c
9287 F:      drivers/i2c/busses/i2c-sis96x.c
9288 F:      drivers/i2c/busses/i2c-via.c
9289 F:      drivers/i2c/busses/i2c-viapro.c
9290
9291 I2C/SMBUS INTEL CHT WHISKEY COVE PMIC DRIVER
9292 M:      Hans de Goede <hdegoede@redhat.com>
9293 L:      linux-i2c@vger.kernel.org
9294 S:      Maintained
9295 F:      drivers/i2c/busses/i2c-cht-wc.c
9296
9297 I2C/SMBUS ISMT DRIVER
9298 M:      Seth Heasley <seth.heasley@intel.com>
9299 M:      Neil Horman <nhorman@tuxdriver.com>
9300 L:      linux-i2c@vger.kernel.org
9301 F:      Documentation/i2c/busses/i2c-ismt.rst
9302 F:      drivers/i2c/busses/i2c-ismt.c
9303
9304 I2C/SMBUS STUB DRIVER
9305 M:      Jean Delvare <jdelvare@suse.com>
9306 L:      linux-i2c@vger.kernel.org
9307 S:      Maintained
9308 F:      drivers/i2c/i2c-stub.c
9309
9310 I3C DRIVER FOR CADENCE I3C MASTER IP
9311 M:      Przemysław Gaj <pgaj@cadence.com>
9312 S:      Maintained
9313 F:      Documentation/devicetree/bindings/i3c/cdns,i3c-master.txt
9314 F:      drivers/i3c/master/i3c-master-cdns.c
9315
9316 I3C DRIVER FOR SYNOPSYS DESIGNWARE
9317 M:      Vitor Soares <vitor.soares@synopsys.com>
9318 S:      Maintained
9319 F:      Documentation/devicetree/bindings/i3c/snps,dw-i3c-master.txt
9320 F:      drivers/i3c/master/dw*
9321
9322 I3C SUBSYSTEM
9323 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
9324 L:      linux-i3c@lists.infradead.org (moderated for non-subscribers)
9325 S:      Maintained
9326 C:      irc://chat.freenode.net/linux-i3c
9327 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/i3c/linux.git
9328 F:      Documentation/ABI/testing/sysfs-bus-i3c
9329 F:      Documentation/devicetree/bindings/i3c/
9330 F:      Documentation/driver-api/i3c
9331 F:      drivers/i3c/
9332 F:      include/linux/i3c/
9333
9334 IA64 (Itanium) PLATFORM
9335 L:      linux-ia64@vger.kernel.org
9336 S:      Orphan
9337 F:      Documentation/ia64/
9338 F:      arch/ia64/
9339
9340 IBM Power 842 compression accelerator
9341 M:      Haren Myneni <haren@us.ibm.com>
9342 S:      Supported
9343 F:      crypto/842.c
9344 F:      drivers/crypto/nx/Kconfig
9345 F:      drivers/crypto/nx/Makefile
9346 F:      drivers/crypto/nx/nx-842*
9347 F:      include/linux/sw842.h
9348 F:      lib/842/
9349
9350 IBM Power in-Nest Crypto Acceleration
9351 M:      Breno Leitão <leitao@debian.org>
9352 M:      Nayna Jain <nayna@linux.ibm.com>
9353 M:      Paulo Flabiano Smorigo <pfsmorigo@gmail.com>
9354 L:      linux-crypto@vger.kernel.org
9355 S:      Supported
9356 F:      drivers/crypto/nx/Kconfig
9357 F:      drivers/crypto/nx/Makefile
9358 F:      drivers/crypto/nx/nx-aes*
9359 F:      drivers/crypto/nx/nx-sha*
9360 F:      drivers/crypto/nx/nx.*
9361 F:      drivers/crypto/nx/nx_csbcpb.h
9362 F:      drivers/crypto/nx/nx_debugfs.c
9363
9364 IBM Power IO DLPAR Driver for RPA-compliant PPC64 platform
9365 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
9366 L:      linux-pci@vger.kernel.org
9367 L:      linuxppc-dev@lists.ozlabs.org
9368 S:      Supported
9369 F:      drivers/pci/hotplug/rpadlpar*
9370
9371 IBM Power Linux RAID adapter
9372 M:      Brian King <brking@us.ibm.com>
9373 S:      Supported
9374 F:      drivers/scsi/ipr.*
9375
9376 IBM Power PCI Hotplug Driver for RPA-compliant PPC64 platform
9377 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
9378 L:      linux-pci@vger.kernel.org
9379 L:      linuxppc-dev@lists.ozlabs.org
9380 S:      Supported
9381 F:      drivers/pci/hotplug/rpaphp*
9382
9383 IBM Power SRIOV Virtual NIC Device Driver
9384 M:      Dany Madden <drt@linux.ibm.com>
9385 R:      Thomas Falcon <tlfalcon@linux.ibm.com>
9386 L:      netdev@vger.kernel.org
9387 S:      Supported
9388 F:      drivers/net/ethernet/ibm/ibmvnic.*
9389
9390 IBM Power Virtual Accelerator Switchboard
9391 L:      linuxppc-dev@lists.ozlabs.org
9392 S:      Supported
9393 F:      arch/powerpc/include/asm/vas.h
9394 F:      arch/powerpc/platforms/powernv/copy-paste.h
9395 F:      arch/powerpc/platforms/powernv/vas*
9396
9397 IBM Power Virtual Ethernet Device Driver
9398 M:      Cristobal Forno <cforno12@linux.ibm.com>
9399 L:      netdev@vger.kernel.org
9400 S:      Supported
9401 F:      drivers/net/ethernet/ibm/ibmveth.*
9402
9403 IBM Power Virtual FC Device Drivers
9404 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
9405 L:      linux-scsi@vger.kernel.org
9406 S:      Supported
9407 F:      drivers/scsi/ibmvscsi/ibmvfc*
9408
9409 IBM Power Virtual Management Channel Driver
9410 M:      Brad Warrum <bwarrum@linux.ibm.com>
9411 M:      Ritu Agarwal <rituagar@linux.ibm.com>
9412 S:      Supported
9413 F:      drivers/misc/ibmvmc.*
9414
9415 IBM Power Virtual SCSI Device Drivers
9416 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
9417 L:      linux-scsi@vger.kernel.org
9418 S:      Supported
9419 F:      drivers/scsi/ibmvscsi/ibmvscsi*
9420 F:      include/scsi/viosrp.h
9421
9422 IBM Power Virtual SCSI Device Target Driver
9423 M:      Michael Cyr <mikecyr@linux.ibm.com>
9424 L:      linux-scsi@vger.kernel.org
9425 L:      target-devel@vger.kernel.org
9426 S:      Supported
9427 F:      drivers/scsi/ibmvscsi_tgt/
9428
9429 IBM Power VMX Cryptographic instructions
9430 M:      Breno Leitão <leitao@debian.org>
9431 M:      Nayna Jain <nayna@linux.ibm.com>
9432 M:      Paulo Flabiano Smorigo <pfsmorigo@gmail.com>
9433 L:      linux-crypto@vger.kernel.org
9434 S:      Supported
9435 F:      drivers/crypto/vmx/Kconfig
9436 F:      drivers/crypto/vmx/Makefile
9437 F:      drivers/crypto/vmx/aes*
9438 F:      drivers/crypto/vmx/ghash*
9439 F:      drivers/crypto/vmx/ppc-xlate.pl
9440 F:      drivers/crypto/vmx/vmx.c
9441
9442 IBM ServeRAID RAID DRIVER
9443 S:      Orphan
9444 F:      drivers/scsi/ips.*
9445
9446 ICH LPC AND GPIO DRIVER
9447 M:      Peter Tyser <ptyser@xes-inc.com>
9448 S:      Maintained
9449 F:      drivers/gpio/gpio-ich.c
9450 F:      drivers/mfd/lpc_ich.c
9451
9452 ICY I2C DRIVER
9453 M:      Max Staudt <max@enpas.org>
9454 L:      linux-i2c@vger.kernel.org
9455 S:      Maintained
9456 F:      drivers/i2c/busses/i2c-icy.c
9457
9458 IDEAPAD LAPTOP EXTRAS DRIVER
9459 M:      Ike Panhc <ike.pan@canonical.com>
9460 L:      platform-driver-x86@vger.kernel.org
9461 S:      Maintained
9462 W:      http://launchpad.net/ideapad-laptop
9463 F:      drivers/platform/x86/ideapad-laptop.c
9464
9465 IDEAPAD LAPTOP SLIDEBAR DRIVER
9466 M:      Andrey Moiseev <o2g.org.ru@gmail.com>
9467 L:      linux-input@vger.kernel.org
9468 S:      Maintained
9469 W:      https://github.com/o2genum/ideapad-slidebar
9470 F:      drivers/input/misc/ideapad_slidebar.c
9471
9472 IDMAPPED MOUNTS
9473 M:      Christian Brauner <brauner@kernel.org>
9474 L:      linux-fsdevel@vger.kernel.org
9475 S:      Maintained
9476 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brauner/linux.git
9477 F:      Documentation/filesystems/idmappings.rst
9478 F:      tools/testing/selftests/mount_setattr/
9479 F:      include/linux/mnt_idmapping.h
9480
9481 IDT VersaClock 5 CLOCK DRIVER
9482 M:      Luca Ceresoli <luca@lucaceresoli.net>
9483 S:      Maintained
9484 F:      Documentation/devicetree/bindings/clock/idt,versaclock5.yaml
9485 F:      drivers/clk/clk-versaclock5.c
9486
9487 IEEE 802.15.4 SUBSYSTEM
9488 M:      Alexander Aring <alex.aring@gmail.com>
9489 M:      Stefan Schmidt <stefan@datenfreihafen.org>
9490 L:      linux-wpan@vger.kernel.org
9491 S:      Maintained
9492 W:      https://linux-wpan.org/
9493 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan.git
9494 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan-next.git
9495 F:      Documentation/networking/ieee802154.rst
9496 F:      drivers/net/ieee802154/
9497 F:      include/linux/ieee802154.h
9498 F:      include/linux/nl802154.h
9499 F:      include/net/af_ieee802154.h
9500 F:      include/net/cfg802154.h
9501 F:      include/net/ieee802154_netdev.h
9502 F:      include/net/mac802154.h
9503 F:      include/net/nl802154.h
9504 F:      net/ieee802154/
9505 F:      net/mac802154/
9506
9507 IFE PROTOCOL
9508 M:      Yotam Gigi <yotam.gi@gmail.com>
9509 M:      Jamal Hadi Salim <jhs@mojatatu.com>
9510 F:      include/net/ife.h
9511 F:      include/uapi/linux/ife.h
9512 F:      net/ife
9513
9514 IGORPLUG-USB IR RECEIVER
9515 M:      Sean Young <sean@mess.org>
9516 L:      linux-media@vger.kernel.org
9517 S:      Maintained
9518 F:      drivers/media/rc/igorplugusb.c
9519
9520 IGUANAWORKS USB IR TRANSCEIVER
9521 M:      Sean Young <sean@mess.org>
9522 L:      linux-media@vger.kernel.org
9523 S:      Maintained
9524 F:      drivers/media/rc/iguanair.c
9525
9526 IIO DIGITAL POTENTIOMETER DAC
9527 M:      Peter Rosin <peda@axentia.se>
9528 L:      linux-iio@vger.kernel.org
9529 S:      Maintained
9530 F:      Documentation/ABI/testing/sysfs-bus-iio-dac-dpot-dac
9531 F:      Documentation/devicetree/bindings/iio/dac/dpot-dac.yaml
9532 F:      drivers/iio/dac/dpot-dac.c
9533
9534 IIO ENVELOPE DETECTOR
9535 M:      Peter Rosin <peda@axentia.se>
9536 L:      linux-iio@vger.kernel.org
9537 S:      Maintained
9538 F:      Documentation/ABI/testing/sysfs-bus-iio-adc-envelope-detector
9539 F:      Documentation/devicetree/bindings/iio/adc/envelope-detector.yaml
9540 F:      drivers/iio/adc/envelope-detector.c
9541
9542 IIO MULTIPLEXER
9543 M:      Peter Rosin <peda@axentia.se>
9544 L:      linux-iio@vger.kernel.org
9545 S:      Maintained
9546 F:      Documentation/devicetree/bindings/iio/multiplexer/io-channel-mux.yaml
9547 F:      drivers/iio/multiplexer/iio-mux.c
9548
9549 IIO SCMI BASED DRIVER
9550 M:      Jyoti Bhayana <jbhayana@google.com>
9551 L:      linux-iio@vger.kernel.org
9552 S:      Maintained
9553 F:      drivers/iio/common/scmi_sensors/scmi_iio.c
9554
9555 IIO SUBSYSTEM AND DRIVERS
9556 M:      Jonathan Cameron <jic23@kernel.org>
9557 R:      Lars-Peter Clausen <lars@metafoo.de>
9558 L:      linux-iio@vger.kernel.org
9559 S:      Maintained
9560 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
9561 F:      Documentation/ABI/testing/configfs-iio*
9562 F:      Documentation/ABI/testing/sysfs-bus-iio*
9563 F:      Documentation/devicetree/bindings/iio/
9564 F:      drivers/iio/
9565 F:      drivers/staging/iio/
9566 F:      include/linux/iio/
9567 F:      tools/iio/
9568
9569 IIO UNIT CONVERTER
9570 M:      Peter Rosin <peda@axentia.se>
9571 L:      linux-iio@vger.kernel.org
9572 S:      Maintained
9573 F:      Documentation/devicetree/bindings/iio/afe/current-sense-amplifier.yaml
9574 F:      Documentation/devicetree/bindings/iio/afe/current-sense-shunt.yaml
9575 F:      Documentation/devicetree/bindings/iio/afe/voltage-divider.yaml
9576 F:      drivers/iio/afe/iio-rescale.c
9577
9578 IKANOS/ADI EAGLE ADSL USB DRIVER
9579 M:      Matthieu Castet <castet.matthieu@free.fr>
9580 M:      Stanislaw Gruszka <stf_xl@wp.pl>
9581 S:      Maintained
9582 F:      drivers/usb/atm/ueagle-atm.c
9583
9584 IMAGIS TOUCHSCREEN DRIVER
9585 M:      Markuss Broks <markuss.broks@gmail.com>
9586 S:      Maintained
9587 F:      Documentation/devicetree/bindings/input/touchscreen/imagis,ist3038c.yaml
9588 F:      drivers/input/touchscreen/imagis.c
9589
9590 IMGTEC ASCII LCD DRIVER
9591 M:      Paul Burton <paulburton@kernel.org>
9592 S:      Maintained
9593 F:      Documentation/devicetree/bindings/auxdisplay/img,ascii-lcd.yaml
9594 F:      drivers/auxdisplay/img-ascii-lcd.c
9595
9596 IMGTEC IR DECODER DRIVER
9597 S:      Orphan
9598 F:      drivers/media/rc/img-ir/
9599
9600 IMON SOUNDGRAPH USB IR RECEIVER
9601 M:      Sean Young <sean@mess.org>
9602 L:      linux-media@vger.kernel.org
9603 S:      Maintained
9604 F:      drivers/media/rc/imon.c
9605 F:      drivers/media/rc/imon_raw.c
9606
9607 IMS TWINTURBO FRAMEBUFFER DRIVER
9608 L:      linux-fbdev@vger.kernel.org
9609 S:      Orphan
9610 F:      drivers/video/fbdev/imsttfb.c
9611
9612 INA209 HARDWARE MONITOR DRIVER
9613 M:      Guenter Roeck <linux@roeck-us.net>
9614 L:      linux-hwmon@vger.kernel.org
9615 S:      Maintained
9616 F:      Documentation/devicetree/bindings/hwmon/ti,ina2xx.yaml
9617 F:      Documentation/hwmon/ina209.rst
9618 F:      drivers/hwmon/ina209.c
9619
9620 INA2XX HARDWARE MONITOR DRIVER
9621 M:      Guenter Roeck <linux@roeck-us.net>
9622 L:      linux-hwmon@vger.kernel.org
9623 S:      Maintained
9624 F:      Documentation/hwmon/ina2xx.rst
9625 F:      drivers/hwmon/ina2xx.c
9626 F:      include/linux/platform_data/ina2xx.h
9627
9628 INDUSTRY PACK SUBSYSTEM (IPACK)
9629 M:      Samuel Iglesias Gonsalvez <siglesias@igalia.com>
9630 M:      Jens Taprogge <jens.taprogge@taprogge.org>
9631 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
9632 L:      industrypack-devel@lists.sourceforge.net
9633 S:      Maintained
9634 W:      http://industrypack.sourceforge.net
9635 F:      drivers/ipack/
9636
9637 INFINEON DPS310 Driver
9638 M:      Eddie James <eajames@linux.ibm.com>
9639 L:      linux-iio@vger.kernel.org
9640 S:      Maintained
9641 F:      drivers/iio/pressure/dps310.c
9642
9643 INFINIBAND SUBSYSTEM
9644 M:      Jason Gunthorpe <jgg@nvidia.com>
9645 M:      Leon Romanovsky <leonro@nvidia.com>
9646 L:      linux-rdma@vger.kernel.org
9647 S:      Supported
9648 W:      https://github.com/linux-rdma/rdma-core
9649 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
9650 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rdma/rdma.git
9651 F:      Documentation/devicetree/bindings/infiniband/
9652 F:      Documentation/infiniband/
9653 F:      drivers/infiniband/
9654 F:      include/rdma/
9655 F:      include/trace/events/ib_mad.h
9656 F:      include/trace/events/ib_umad.h
9657 F:      include/uapi/linux/if_infiniband.h
9658 F:      include/uapi/rdma/
9659 F:      samples/bpf/ibumad_kern.c
9660 F:      samples/bpf/ibumad_user.c
9661
9662 INGENIC JZ4780 NAND DRIVER
9663 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
9664 L:      linux-mtd@lists.infradead.org
9665 L:      linux-mips@vger.kernel.org
9666 S:      Maintained
9667 F:      drivers/mtd/nand/raw/ingenic/
9668
9669 INGENIC JZ47xx SoCs
9670 M:      Paul Cercueil <paul@crapouillou.net>
9671 L:      linux-mips@vger.kernel.org
9672 S:      Maintained
9673 F:      arch/mips/boot/dts/ingenic/
9674 F:      arch/mips/generic/board-ingenic.c
9675 F:      arch/mips/include/asm/mach-ingenic/
9676 F:      arch/mips/ingenic/Kconfig
9677 F:      drivers/clk/ingenic/
9678 F:      drivers/dma/dma-jz4780.c
9679 F:      drivers/gpu/drm/ingenic/
9680 F:      drivers/i2c/busses/i2c-jz4780.c
9681 F:      drivers/iio/adc/ingenic-adc.c
9682 F:      drivers/irqchip/irq-ingenic.c
9683 F:      drivers/memory/jz4780-nemc.c
9684 F:      drivers/mmc/host/jz4740_mmc.c
9685 F:      drivers/mtd/nand/raw/ingenic/
9686 F:      drivers/pinctrl/pinctrl-ingenic.c
9687 F:      drivers/power/supply/ingenic-battery.c
9688 F:      drivers/pwm/pwm-jz4740.c
9689 F:      drivers/remoteproc/ingenic_rproc.c
9690 F:      drivers/rtc/rtc-jz4740.c
9691 F:      drivers/tty/serial/8250/8250_ingenic.c
9692 F:      drivers/usb/musb/jz4740.c
9693 F:      drivers/watchdog/jz4740_wdt.c
9694 F:      include/dt-bindings/iio/adc/ingenic,adc.h
9695 F:      include/linux/mfd/ingenic-tcu.h
9696 F:      sound/soc/codecs/jz47*
9697 F:      sound/soc/jz4740/
9698
9699 INJOINIC IP5xxx POWER BANK IC DRIVER
9700 M:      Samuel Holland <samuel@sholland.org>
9701 S:      Maintained
9702 F:      drivers/power/supply/ip5xxx_power.c
9703
9704 INOTIFY
9705 M:      Jan Kara <jack@suse.cz>
9706 R:      Amir Goldstein <amir73il@gmail.com>
9707 L:      linux-fsdevel@vger.kernel.org
9708 S:      Maintained
9709 F:      Documentation/filesystems/inotify.rst
9710 F:      fs/notify/inotify/
9711 F:      include/linux/inotify.h
9712 F:      include/uapi/linux/inotify.h
9713
9714 INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
9715 M:      Dmitry Torokhov <dmitry.torokhov@gmail.com>
9716 L:      linux-input@vger.kernel.org
9717 S:      Maintained
9718 Q:      http://patchwork.kernel.org/project/linux-input/list/
9719 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
9720 F:      Documentation/devicetree/bindings/input/
9721 F:      Documentation/devicetree/bindings/serio/
9722 F:      Documentation/input/
9723 F:      drivers/input/
9724 F:      include/linux/input.h
9725 F:      include/linux/input/
9726 F:      include/uapi/linux/input-event-codes.h
9727 F:      include/uapi/linux/input.h
9728
9729 INPUT MULTITOUCH (MT) PROTOCOL
9730 M:      Henrik Rydberg <rydberg@bitmath.org>
9731 L:      linux-input@vger.kernel.org
9732 S:      Odd fixes
9733 F:      Documentation/input/multi-touch-protocol.rst
9734 F:      drivers/input/input-mt.c
9735 K:      \b(ABS|SYN)_MT_
9736
9737 INSIDE SECURE CRYPTO DRIVER
9738 M:      Antoine Tenart <atenart@kernel.org>
9739 L:      linux-crypto@vger.kernel.org
9740 S:      Maintained
9741 F:      drivers/crypto/inside-secure/
9742
9743 INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
9744 M:      Mimi Zohar <zohar@linux.ibm.com>
9745 M:      Dmitry Kasatkin <dmitry.kasatkin@gmail.com>
9746 L:      linux-integrity@vger.kernel.org
9747 S:      Supported
9748 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/zohar/linux-integrity.git
9749 F:      security/integrity/ima/
9750 F:      security/integrity/
9751
9752 INTEL 810/815 FRAMEBUFFER DRIVER
9753 M:      Antonino Daplas <adaplas@gmail.com>
9754 L:      linux-fbdev@vger.kernel.org
9755 S:      Maintained
9756 F:      drivers/video/fbdev/i810/
9757
9758 INTEL ASoC DRIVERS
9759 M:      Cezary Rojewski <cezary.rojewski@intel.com>
9760 M:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
9761 M:      Liam Girdwood <liam.r.girdwood@linux.intel.com>
9762 M:      Jie Yang <yang.jie@linux.intel.com>
9763 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
9764 S:      Supported
9765 F:      sound/soc/intel/
9766
9767 INTEL ATOMISP2 DUMMY / POWER-MANAGEMENT DRIVER
9768 M:      Hans de Goede <hdegoede@redhat.com>
9769 L:      platform-driver-x86@vger.kernel.org
9770 S:      Maintained
9771 F:      drivers/platform/x86/intel/atomisp2/pm.c
9772
9773 INTEL ATOMISP2 LED DRIVER
9774 M:      Hans de Goede <hdegoede@redhat.com>
9775 L:      platform-driver-x86@vger.kernel.org
9776 S:      Maintained
9777 F:      drivers/platform/x86/intel/atomisp2/led.c
9778
9779 INTEL BIOS SAR INT1092 DRIVER
9780 M:      Shravan Sudhakar <s.shravan@intel.com>
9781 M:      Intel Corporation <linuxwwan@intel.com>
9782 L:      platform-driver-x86@vger.kernel.org
9783 S:      Maintained
9784 F:      drivers/platform/x86/intel/int1092/
9785
9786 INTEL BROXTON PMC DRIVER
9787 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
9788 M:      Zha Qipeng <qipeng.zha@intel.com>
9789 S:      Maintained
9790 F:      drivers/mfd/intel_pmc_bxt.c
9791 F:      include/linux/mfd/intel_pmc_bxt.h
9792
9793 INTEL C600 SERIES SAS CONTROLLER DRIVER
9794 M:      Artur Paszkiewicz <artur.paszkiewicz@intel.com>
9795 L:      linux-scsi@vger.kernel.org
9796 S:      Supported
9797 T:      git git://git.code.sf.net/p/intel-sas/isci
9798 F:      drivers/scsi/isci/
9799
9800 INTEL CPU family model numbers
9801 M:      Tony Luck <tony.luck@intel.com>
9802 M:      x86@kernel.org
9803 L:      linux-kernel@vger.kernel.org
9804 S:      Supported
9805 F:      arch/x86/include/asm/intel-family.h
9806
9807 INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
9808 M:      Jani Nikula <jani.nikula@linux.intel.com>
9809 M:      Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
9810 M:      Rodrigo Vivi <rodrigo.vivi@intel.com>
9811 M:      Tvrtko Ursulin <tvrtko.ursulin@linux.intel.com>
9812 L:      intel-gfx@lists.freedesktop.org
9813 S:      Supported
9814 W:      https://01.org/linuxgraphics/
9815 Q:      http://patchwork.freedesktop.org/project/intel-gfx/
9816 B:      https://gitlab.freedesktop.org/drm/intel/-/wikis/How-to-file-i915-bugs
9817 C:      irc://irc.oftc.net/intel-gfx
9818 T:      git git://anongit.freedesktop.org/drm-intel
9819 F:      Documentation/gpu/i915.rst
9820 F:      drivers/gpu/drm/i915/
9821 F:      include/drm/i915*
9822 F:      include/uapi/drm/i915_drm.h
9823
9824 INTEL ETHERNET DRIVERS
9825 M:      Jesse Brandeburg <jesse.brandeburg@intel.com>
9826 M:      Tony Nguyen <anthony.l.nguyen@intel.com>
9827 L:      intel-wired-lan@lists.osuosl.org (moderated for non-subscribers)
9828 S:      Supported
9829 W:      http://www.intel.com/support/feedback.htm
9830 W:      http://e1000.sourceforge.net/
9831 Q:      http://patchwork.ozlabs.org/project/intel-wired-lan/list/
9832 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tnguy/net-queue.git
9833 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tnguy/next-queue.git
9834 F:      Documentation/networking/device_drivers/ethernet/intel/
9835 F:      drivers/net/ethernet/intel/
9836 F:      drivers/net/ethernet/intel/*/
9837 F:      include/linux/avf/virtchnl.h
9838 F:      include/linux/net/intel/iidc.h
9839
9840 INTEL ETHERNET PROTOCOL DRIVER FOR RDMA
9841 M:      Mustafa Ismail <mustafa.ismail@intel.com>
9842 M:      Shiraz Saleem <shiraz.saleem@intel.com>
9843 L:      linux-rdma@vger.kernel.org
9844 S:      Supported
9845 F:      drivers/infiniband/hw/irdma/
9846 F:      include/uapi/rdma/irdma-abi.h
9847
9848 INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
9849 M:      Maik Broemme <mbroemme@libmpq.org>
9850 L:      linux-fbdev@vger.kernel.org
9851 S:      Maintained
9852 F:      Documentation/fb/intelfb.rst
9853 F:      drivers/video/fbdev/intelfb/
9854
9855 INTEL GPIO DRIVERS
9856 M:      Andy Shevchenko <andy@kernel.org>
9857 L:      linux-gpio@vger.kernel.org
9858 S:      Maintained
9859 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
9860 F:      drivers/gpio/gpio-ich.c
9861 F:      drivers/gpio/gpio-merrifield.c
9862 F:      drivers/gpio/gpio-ml-ioh.c
9863 F:      drivers/gpio/gpio-pch.c
9864 F:      drivers/gpio/gpio-sch.c
9865 F:      drivers/gpio/gpio-sodaville.c
9866
9867 INTEL GVT-g DRIVERS (Intel GPU Virtualization)
9868 M:      Zhenyu Wang <zhenyuw@linux.intel.com>
9869 M:      Zhi Wang <zhi.a.wang@intel.com>
9870 L:      intel-gvt-dev@lists.freedesktop.org
9871 L:      intel-gfx@lists.freedesktop.org
9872 S:      Supported
9873 W:      https://01.org/igvt-g
9874 T:      git https://github.com/intel/gvt-linux.git
9875 F:      drivers/gpu/drm/i915/gvt/
9876
9877 INTEL HID EVENT DRIVER
9878 M:      Alex Hung <alex.hung@canonical.com>
9879 L:      platform-driver-x86@vger.kernel.org
9880 S:      Maintained
9881 F:      drivers/platform/x86/intel/hid.c
9882
9883 INTEL I/OAT DMA DRIVER
9884 M:      Dave Jiang <dave.jiang@intel.com>
9885 R:      Dan Williams <dan.j.williams@intel.com>
9886 L:      dmaengine@vger.kernel.org
9887 S:      Supported
9888 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
9889 F:      drivers/dma/ioat*
9890
9891 INTEL IADX DRIVER
9892 M:      Dave Jiang <dave.jiang@intel.com>
9893 L:      dmaengine@vger.kernel.org
9894 S:      Supported
9895 F:      drivers/dma/idxd/*
9896 F:      include/uapi/linux/idxd.h
9897
9898 INTEL IDLE DRIVER
9899 M:      Jacob Pan <jacob.jun.pan@linux.intel.com>
9900 M:      Len Brown <lenb@kernel.org>
9901 L:      linux-pm@vger.kernel.org
9902 S:      Supported
9903 B:      https://bugzilla.kernel.org
9904 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
9905 F:      drivers/idle/intel_idle.c
9906
9907 INTEL IN FIELD SCAN (IFS) DEVICE
9908 M:      Jithu Joseph <jithu.joseph@intel.com>
9909 R:      Ashok Raj <ashok.raj@intel.com>
9910 R:      Tony Luck <tony.luck@intel.com>
9911 S:      Maintained
9912 F:      drivers/platform/x86/intel/ifs
9913 F:      include/trace/events/intel_ifs.h
9914
9915 INTEL INTEGRATED SENSOR HUB DRIVER
9916 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
9917 M:      Jiri Kosina <jikos@kernel.org>
9918 L:      linux-input@vger.kernel.org
9919 S:      Maintained
9920 F:      drivers/hid/intel-ish-hid/
9921
9922 INTEL IOMMU (VT-d)
9923 M:      David Woodhouse <dwmw2@infradead.org>
9924 M:      Lu Baolu <baolu.lu@linux.intel.com>
9925 L:      iommu@lists.linux-foundation.org
9926 S:      Supported
9927 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
9928 F:      drivers/iommu/intel/
9929 F:      include/linux/intel-iommu.h
9930 F:      include/linux/intel-svm.h
9931
9932 INTEL IOP-ADMA DMA DRIVER
9933 R:      Dan Williams <dan.j.williams@intel.com>
9934 S:      Odd fixes
9935 F:      drivers/dma/iop-adma.c
9936
9937 INTEL IPU3 CSI-2 CIO2 DRIVER
9938 M:      Yong Zhi <yong.zhi@intel.com>
9939 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
9940 M:      Bingbu Cao <bingbu.cao@intel.com>
9941 M:      Dan Scally <djrscally@gmail.com>
9942 R:      Tianshu Qiu <tian.shu.qiu@intel.com>
9943 L:      linux-media@vger.kernel.org
9944 S:      Maintained
9945 T:      git git://linuxtv.org/media_tree.git
9946 F:      Documentation/userspace-api/media/v4l/pixfmt-srggb10-ipu3.rst
9947 F:      drivers/media/pci/intel/ipu3/
9948
9949 INTEL IPU3 CSI-2 IMGU DRIVER
9950 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
9951 R:      Bingbu Cao <bingbu.cao@intel.com>
9952 R:      Tianshu Qiu <tian.shu.qiu@intel.com>
9953 L:      linux-media@vger.kernel.org
9954 S:      Maintained
9955 F:      Documentation/admin-guide/media/ipu3.rst
9956 F:      Documentation/admin-guide/media/ipu3_rcb.svg
9957 F:      Documentation/userspace-api/media/v4l/pixfmt-meta-intel-ipu3.rst
9958 F:      drivers/staging/media/ipu3/
9959
9960 INTEL IXP4XX CRYPTO SUPPORT
9961 M:      Corentin Labbe <clabbe@baylibre.com>
9962 L:      linux-crypto@vger.kernel.org
9963 S:      Maintained
9964 F:      drivers/crypto/ixp4xx_crypto.c
9965
9966 INTEL ISHTP ECLITE DRIVER
9967 M:      Sumesh K Naduvalath <sumesh.k.naduvalath@intel.com>
9968 L:      platform-driver-x86@vger.kernel.org
9969 S:      Supported
9970 F:      drivers/platform/x86/intel/ishtp_eclite.c
9971
9972 INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
9973 M:      Krzysztof Halasa <khalasa@piap.pl>
9974 S:      Maintained
9975 F:      drivers/net/ethernet/xscale/ixp4xx_eth.c
9976 F:      drivers/net/wan/ixp4xx_hss.c
9977 F:      drivers/soc/ixp4xx/ixp4xx-npe.c
9978 F:      drivers/soc/ixp4xx/ixp4xx-qmgr.c
9979 F:      include/linux/soc/ixp4xx/npe.h
9980 F:      include/linux/soc/ixp4xx/qmgr.h
9981
9982 INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
9983 M:      Deepak Saxena <dsaxena@plexity.net>
9984 S:      Maintained
9985 F:      Documentation/devicetree/bindings/rng/intel,ixp46x-rng.yaml
9986 F:      drivers/char/hw_random/ixp4xx-rng.c
9987
9988 INTEL KEEM BAY DRM DRIVER
9989 M:      Anitha Chrisanthus <anitha.chrisanthus@intel.com>
9990 M:      Edmund Dea <edmund.j.dea@intel.com>
9991 S:      Maintained
9992 F:      Documentation/devicetree/bindings/display/intel,keembay-display.yaml
9993 F:      drivers/gpu/drm/kmb/
9994
9995 INTEL KEEM BAY OCS AES/SM4 CRYPTO DRIVER
9996 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
9997 S:      Maintained
9998 F:      Documentation/devicetree/bindings/crypto/intel,keembay-ocs-aes.yaml
9999 F:      drivers/crypto/keembay/Kconfig
10000 F:      drivers/crypto/keembay/Makefile
10001 F:      drivers/crypto/keembay/keembay-ocs-aes-core.c
10002 F:      drivers/crypto/keembay/ocs-aes.c
10003 F:      drivers/crypto/keembay/ocs-aes.h
10004
10005 INTEL KEEM BAY OCS ECC CRYPTO DRIVER
10006 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
10007 M:      Prabhjot Khurana <prabhjot.khurana@intel.com>
10008 M:      Mark Gross <mgross@linux.intel.com>
10009 S:      Maintained
10010 F:      Documentation/devicetree/bindings/crypto/intel,keembay-ocs-ecc.yaml
10011 F:      drivers/crypto/keembay/Kconfig
10012 F:      drivers/crypto/keembay/Makefile
10013 F:      drivers/crypto/keembay/keembay-ocs-ecc.c
10014
10015 INTEL KEEM BAY OCS HCU CRYPTO DRIVER
10016 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
10017 M:      Declan Murphy <declan.murphy@intel.com>
10018 S:      Maintained
10019 F:      Documentation/devicetree/bindings/crypto/intel,keembay-ocs-hcu.yaml
10020 F:      drivers/crypto/keembay/Kconfig
10021 F:      drivers/crypto/keembay/Makefile
10022 F:      drivers/crypto/keembay/keembay-ocs-hcu-core.c
10023 F:      drivers/crypto/keembay/ocs-hcu.c
10024 F:      drivers/crypto/keembay/ocs-hcu.h
10025
10026 INTEL THUNDER BAY EMMC PHY DRIVER
10027 M:      Nandhini Srikandan <nandhini.srikandan@intel.com>
10028 M:      Rashmi A <rashmi.a@intel.com>
10029 S:      Maintained
10030 F:      Documentation/devicetree/bindings/phy/intel,phy-thunderbay-emmc.yaml
10031 F:      drivers/phy/intel/phy-intel-thunderbay-emmc.c
10032
10033 INTEL MANAGEMENT ENGINE (mei)
10034 M:      Tomas Winkler <tomas.winkler@intel.com>
10035 L:      linux-kernel@vger.kernel.org
10036 S:      Supported
10037 F:      Documentation/driver-api/mei/*
10038 F:      drivers/misc/mei/
10039 F:      drivers/watchdog/mei_wdt.c
10040 F:      include/linux/mei_aux.h
10041 F:      include/linux/mei_cl_bus.h
10042 F:      include/uapi/linux/mei.h
10043 F:      samples/mei/*
10044
10045 INTEL MAX 10 BMC MFD DRIVER
10046 M:      Xu Yilun <yilun.xu@intel.com>
10047 R:      Tom Rix <trix@redhat.com>
10048 S:      Maintained
10049 F:      Documentation/ABI/testing/sysfs-driver-intel-m10-bmc
10050 F:      Documentation/hwmon/intel-m10-bmc-hwmon.rst
10051 F:      drivers/hwmon/intel-m10-bmc-hwmon.c
10052 F:      drivers/mfd/intel-m10-bmc.c
10053 F:      include/linux/mfd/intel-m10-bmc.h
10054
10055 INTEL MENLOW THERMAL DRIVER
10056 M:      Sujith Thomas <sujith.thomas@intel.com>
10057 L:      linux-pm@vger.kernel.org
10058 S:      Supported
10059 W:      https://01.org/linux-acpi
10060 F:      drivers/thermal/intel/intel_menlow.c
10061
10062 INTEL P-Unit IPC DRIVER
10063 M:      Zha Qipeng <qipeng.zha@intel.com>
10064 L:      platform-driver-x86@vger.kernel.org
10065 S:      Maintained
10066 F:      arch/x86/include/asm/intel_punit_ipc.h
10067 F:      drivers/platform/x86/intel/punit_ipc.c
10068
10069 INTEL PMC CORE DRIVER
10070 M:      Rajneesh Bhardwaj <irenic.rajneesh@gmail.com>
10071 M:      David E Box <david.e.box@intel.com>
10072 L:      platform-driver-x86@vger.kernel.org
10073 S:      Maintained
10074 F:      Documentation/ABI/testing/sysfs-platform-intel-pmc
10075 F:      drivers/platform/x86/intel/pmc/
10076
10077 INTEL PMIC GPIO DRIVERS
10078 M:      Andy Shevchenko <andy@kernel.org>
10079 S:      Maintained
10080 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
10081 F:      drivers/gpio/gpio-*cove.c
10082
10083 INTEL PMIC MULTIFUNCTION DEVICE DRIVERS
10084 M:      Andy Shevchenko <andy@kernel.org>
10085 S:      Maintained
10086 F:      drivers/mfd/intel_soc_pmic*
10087 F:      include/linux/mfd/intel_soc_pmic*
10088
10089 INTEL PMT DRIVERS
10090 M:      David E. Box <david.e.box@linux.intel.com>
10091 S:      Supported
10092 F:      drivers/platform/x86/intel/pmt/
10093
10094 INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
10095 M:      Stanislav Yakovlev <stas.yakovlev@gmail.com>
10096 L:      linux-wireless@vger.kernel.org
10097 S:      Maintained
10098 F:      Documentation/networking/device_drivers/wifi/intel/ipw2100.rst
10099 F:      Documentation/networking/device_drivers/wifi/intel/ipw2200.rst
10100 F:      drivers/net/wireless/intel/ipw2x00/
10101
10102 INTEL PSTATE DRIVER
10103 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
10104 M:      Len Brown <lenb@kernel.org>
10105 L:      linux-pm@vger.kernel.org
10106 S:      Supported
10107 F:      drivers/cpufreq/intel_pstate.c
10108
10109 INTEL QUADRATURE ENCODER PERIPHERAL DRIVER
10110 M:      Jarkko Nikula <jarkko.nikula@linux.intel.com>
10111 L:      linux-iio@vger.kernel.org
10112 F:      drivers/counter/intel-qep.c
10113
10114 INTEL SCU DRIVERS
10115 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
10116 S:      Maintained
10117 F:      arch/x86/include/asm/intel_scu_ipc.h
10118 F:      drivers/platform/x86/intel_scu_*
10119
10120 INTEL SDSI DRIVER
10121 M:      David E. Box <david.e.box@linux.intel.com>
10122 S:      Supported
10123 F:      drivers/platform/x86/intel/sdsi.c
10124 F:      tools/arch/x86/intel_sdsi/
10125 F:      tools/testing/selftests/drivers/sdsi/
10126
10127 INTEL SKYLAKE INT3472 ACPI DEVICE DRIVER
10128 M:      Daniel Scally <djrscally@gmail.com>
10129 S:      Maintained
10130 F:      drivers/platform/x86/intel/int3472/
10131
10132 INTEL SPEED SELECT TECHNOLOGY
10133 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
10134 L:      platform-driver-x86@vger.kernel.org
10135 S:      Maintained
10136 F:      drivers/platform/x86/intel/speed_select_if/
10137 F:      include/uapi/linux/isst_if.h
10138 F:      tools/power/x86/intel-speed-select/
10139
10140 INTEL STRATIX10 FIRMWARE DRIVERS
10141 M:      Dinh Nguyen <dinguyen@kernel.org>
10142 L:      linux-kernel@vger.kernel.org
10143 S:      Maintained
10144 F:      Documentation/ABI/testing/sysfs-devices-platform-stratix10-rsu
10145 F:      Documentation/devicetree/bindings/firmware/intel,stratix10-svc.txt
10146 F:      drivers/firmware/stratix10-rsu.c
10147 F:      drivers/firmware/stratix10-svc.c
10148 F:      include/linux/firmware/intel/stratix10-smc.h
10149 F:      include/linux/firmware/intel/stratix10-svc-client.h
10150 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
10151
10152 INTEL TELEMETRY DRIVER
10153 M:      Rajneesh Bhardwaj <irenic.rajneesh@gmail.com>
10154 M:      "David E. Box" <david.e.box@linux.intel.com>
10155 L:      platform-driver-x86@vger.kernel.org
10156 S:      Maintained
10157 F:      arch/x86/include/asm/intel_telemetry.h
10158 F:      drivers/platform/x86/intel/telemetry/
10159
10160 INTEL UNCORE FREQUENCY CONTROL
10161 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
10162 L:      platform-driver-x86@vger.kernel.org
10163 S:      Maintained
10164 F:      Documentation/admin-guide/pm/intel_uncore_frequency_scaling.rst
10165 F:      drivers/platform/x86/intel/uncore-frequency/
10166
10167 INTEL VENDOR SPECIFIC EXTENDED CAPABILITIES DRIVER
10168 M:      David E. Box <david.e.box@linux.intel.com>
10169 S:      Supported
10170 F:      drivers/platform/x86/intel/vsec.*
10171
10172 INTEL VIRTUAL BUTTON DRIVER
10173 M:      AceLan Kao <acelan.kao@canonical.com>
10174 L:      platform-driver-x86@vger.kernel.org
10175 S:      Maintained
10176 F:      drivers/platform/x86/intel/vbtn.c
10177
10178 INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
10179 M:      Stanislaw Gruszka <stf_xl@wp.pl>
10180 L:      linux-wireless@vger.kernel.org
10181 S:      Supported
10182 F:      drivers/net/wireless/intel/iwlegacy/
10183
10184 INTEL WIRELESS WIFI LINK (iwlwifi)
10185 M:      Gregory Greenman <gregory.greenman@intel.com>
10186 L:      linux-wireless@vger.kernel.org
10187 S:      Supported
10188 W:      https://wireless.wiki.kernel.org/en/users/drivers/iwlwifi
10189 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
10190 F:      drivers/net/wireless/intel/iwlwifi/
10191
10192 INTEL WMI SLIM BOOTLOADER (SBL) FIRMWARE UPDATE DRIVER
10193 M:      Jithu Joseph <jithu.joseph@intel.com>
10194 R:      Maurice Ma <maurice.ma@intel.com>
10195 S:      Maintained
10196 W:      https://slimbootloader.github.io/security/firmware-update.html
10197 F:      drivers/platform/x86/intel/wmi/sbl-fw-update.c
10198
10199 INTEL WMI THUNDERBOLT FORCE POWER DRIVER
10200 L:      Dell.Client.Kernel@dell.com
10201 S:      Maintained
10202 F:      drivers/platform/x86/intel/wmi/thunderbolt.c
10203
10204 INTEL WWAN IOSM DRIVER
10205 M:      M Chetan Kumar <m.chetan.kumar@intel.com>
10206 M:      Intel Corporation <linuxwwan@intel.com>
10207 L:      netdev@vger.kernel.org
10208 S:      Maintained
10209 F:      drivers/net/wwan/iosm/
10210
10211 INTEL(R) TRACE HUB
10212 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
10213 S:      Supported
10214 F:      Documentation/trace/intel_th.rst
10215 F:      drivers/hwtracing/intel_th/
10216 F:      include/linux/intel_th.h
10217
10218 INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
10219 M:      Ning Sun <ning.sun@intel.com>
10220 L:      tboot-devel@lists.sourceforge.net
10221 S:      Supported
10222 W:      http://tboot.sourceforge.net
10223 T:      hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
10224 F:      Documentation/x86/intel_txt.rst
10225 F:      arch/x86/kernel/tboot.c
10226 F:      include/linux/tboot.h
10227
10228 INTEL SGX
10229 M:      Jarkko Sakkinen <jarkko@kernel.org>
10230 R:      Dave Hansen <dave.hansen@linux.intel.com>
10231 L:      linux-sgx@vger.kernel.org
10232 S:      Supported
10233 Q:      https://patchwork.kernel.org/project/intel-sgx/list/
10234 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/sgx
10235 F:      Documentation/x86/sgx.rst
10236 F:      arch/x86/entry/vdso/vsgx.S
10237 F:      arch/x86/include/asm/sgx.h
10238 F:      arch/x86/include/uapi/asm/sgx.h
10239 F:      arch/x86/kernel/cpu/sgx/*
10240 F:      tools/testing/selftests/sgx/*
10241 K:      \bSGX_
10242
10243 INTERCONNECT API
10244 M:      Georgi Djakov <djakov@kernel.org>
10245 L:      linux-pm@vger.kernel.org
10246 S:      Maintained
10247 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/djakov/icc.git
10248 F:      Documentation/devicetree/bindings/interconnect/
10249 F:      Documentation/driver-api/interconnect.rst
10250 F:      drivers/interconnect/
10251 F:      include/dt-bindings/interconnect/
10252 F:      include/linux/interconnect-provider.h
10253 F:      include/linux/interconnect.h
10254
10255 INTERRUPT COUNTER DRIVER
10256 M:      Oleksij Rempel <o.rempel@pengutronix.de>
10257 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
10258 L:      linux-iio@vger.kernel.org
10259 F:      Documentation/devicetree/bindings/counter/interrupt-counter.yaml
10260 F:      drivers/counter/interrupt-cnt.c
10261
10262 INTERSIL ISL7998X VIDEO DECODER DRIVER
10263 M:      Michael Tretter <m.tretter@pengutronix.de>
10264 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
10265 L:      linux-media@vger.kernel.org
10266 S:      Maintained
10267 F:      Documentation/devicetree/bindings/media/i2c/isil,isl79987.yaml
10268 F:      drivers/media/i2c/isl7998x.c
10269
10270 INVENSENSE ICM-426xx IMU DRIVER
10271 M:      Jean-Baptiste Maneyrol <jmaneyrol@invensense.com>
10272 L:      linux-iio@vger.kernel.org
10273 S:      Maintained
10274 W:      https://invensense.tdk.com/
10275 F:      Documentation/devicetree/bindings/iio/imu/invensense,icm42600.yaml
10276 F:      drivers/iio/imu/inv_icm42600/
10277
10278 INVENSENSE MPU-3050 GYROSCOPE DRIVER
10279 M:      Linus Walleij <linus.walleij@linaro.org>
10280 L:      linux-iio@vger.kernel.org
10281 S:      Maintained
10282 F:      Documentation/devicetree/bindings/iio/gyroscope/invensense,mpu3050.yaml
10283 F:      drivers/iio/gyro/mpu3050*
10284
10285 IOC3 ETHERNET DRIVER
10286 M:      Ralf Baechle <ralf@linux-mips.org>
10287 L:      linux-mips@vger.kernel.org
10288 S:      Maintained
10289 F:      drivers/net/ethernet/sgi/ioc3-eth.c
10290
10291 IOMAP FILESYSTEM LIBRARY
10292 M:      Christoph Hellwig <hch@infradead.org>
10293 M:      Darrick J. Wong <djwong@kernel.org>
10294 L:      linux-xfs@vger.kernel.org
10295 L:      linux-fsdevel@vger.kernel.org
10296 S:      Supported
10297 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
10298 F:      fs/iomap/
10299 F:      include/linux/iomap.h
10300
10301 IOMMU DRIVERS
10302 M:      Joerg Roedel <joro@8bytes.org>
10303 M:      Will Deacon <will@kernel.org>
10304 L:      iommu@lists.linux-foundation.org
10305 S:      Maintained
10306 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
10307 F:      Documentation/devicetree/bindings/iommu/
10308 F:      Documentation/userspace-api/iommu.rst
10309 F:      drivers/iommu/
10310 F:      include/linux/iommu.h
10311 F:      include/linux/iova.h
10312 F:      include/linux/of_iommu.h
10313 F:      include/uapi/linux/iommu.h
10314
10315 IOSYS-MAP HELPERS
10316 M:      Thomas Zimmermann <tzimmermann@suse.de>
10317 L:      dri-devel@lists.freedesktop.org
10318 S:      Maintained
10319 T:      git git://anongit.freedesktop.org/drm/drm-misc
10320 F:      include/linux/iosys-map.h
10321
10322 IO_URING
10323 M:      Jens Axboe <axboe@kernel.dk>
10324 R:      Pavel Begunkov <asml.silence@gmail.com>
10325 L:      io-uring@vger.kernel.org
10326 S:      Maintained
10327 T:      git git://git.kernel.dk/linux-block
10328 T:      git git://git.kernel.dk/liburing
10329 F:      fs/io-wq.c
10330 F:      fs/io-wq.h
10331 F:      fs/io_uring.c
10332 F:      include/linux/io_uring.h
10333 F:      include/uapi/linux/io_uring.h
10334 F:      tools/io_uring/
10335
10336 IPMI SUBSYSTEM
10337 M:      Corey Minyard <minyard@acm.org>
10338 L:      openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
10339 S:      Supported
10340 W:      http://openipmi.sourceforge.net/
10341 T:      git https://github.com/cminyard/linux-ipmi.git for-next
10342 F:      Documentation/driver-api/ipmi.rst
10343 F:      Documentation/devicetree/bindings/ipmi/
10344 F:      drivers/char/ipmi/
10345 F:      include/linux/ipmi*
10346 F:      include/uapi/linux/ipmi*
10347
10348 IPS SCSI RAID DRIVER
10349 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
10350 L:      linux-scsi@vger.kernel.org
10351 S:      Maintained
10352 W:      http://www.adaptec.com/
10353 F:      drivers/scsi/ips*
10354
10355 IPVS
10356 M:      Simon Horman <horms@verge.net.au>
10357 M:      Julian Anastasov <ja@ssi.bg>
10358 L:      netdev@vger.kernel.org
10359 L:      lvs-devel@vger.kernel.org
10360 S:      Maintained
10361 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs-next.git
10362 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs.git
10363 F:      Documentation/networking/ipvs-sysctl.rst
10364 F:      include/net/ip_vs.h
10365 F:      include/uapi/linux/ip_vs.h
10366 F:      net/netfilter/ipvs/
10367
10368 IPWIRELESS DRIVER
10369 M:      Jiri Kosina <jikos@kernel.org>
10370 M:      David Sterba <dsterba@suse.com>
10371 S:      Odd Fixes
10372 F:      drivers/tty/ipwireless/
10373
10374 IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
10375 M:      Marc Zyngier <maz@kernel.org>
10376 S:      Maintained
10377 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
10378 F:      Documentation/core-api/irq/irq-domain.rst
10379 F:      include/linux/irqdomain.h
10380 F:      kernel/irq/irqdomain.c
10381 F:      kernel/irq/msi.c
10382
10383 IRQ SUBSYSTEM
10384 M:      Thomas Gleixner <tglx@linutronix.de>
10385 L:      linux-kernel@vger.kernel.org
10386 S:      Maintained
10387 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
10388 F:      kernel/irq/
10389
10390 IRQCHIP DRIVERS
10391 M:      Thomas Gleixner <tglx@linutronix.de>
10392 M:      Marc Zyngier <maz@kernel.org>
10393 L:      linux-kernel@vger.kernel.org
10394 S:      Maintained
10395 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
10396 F:      Documentation/devicetree/bindings/interrupt-controller/
10397 F:      drivers/irqchip/
10398
10399 ISA
10400 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
10401 S:      Maintained
10402 F:      Documentation/driver-api/isa.rst
10403 F:      drivers/base/isa.c
10404 F:      include/linux/isa.h
10405
10406 ISA RADIO MODULE
10407 M:      Hans Verkuil <hverkuil@xs4all.nl>
10408 L:      linux-media@vger.kernel.org
10409 S:      Maintained
10410 W:      https://linuxtv.org
10411 T:      git git://linuxtv.org/media_tree.git
10412 F:      drivers/media/radio/radio-isa*
10413
10414 ISAPNP
10415 M:      Jaroslav Kysela <perex@perex.cz>
10416 S:      Maintained
10417 F:      Documentation/driver-api/isapnp.rst
10418 F:      drivers/pnp/isapnp/
10419 F:      include/linux/isapnp.h
10420
10421 ISCSI
10422 M:      Lee Duncan <lduncan@suse.com>
10423 M:      Chris Leech <cleech@redhat.com>
10424 M:      Mike Christie <michael.christie@oracle.com>
10425 L:      open-iscsi@googlegroups.com
10426 L:      linux-scsi@vger.kernel.org
10427 S:      Maintained
10428 W:      www.open-iscsi.com
10429 F:      drivers/scsi/*iscsi*
10430 F:      include/scsi/*iscsi*
10431
10432 iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
10433 M:      Peter Jones <pjones@redhat.com>
10434 M:      Konrad Rzeszutek Wilk <konrad@kernel.org>
10435 S:      Maintained
10436 F:      drivers/firmware/iscsi_ibft*
10437
10438 ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR
10439 M:      Sagi Grimberg <sagi@grimberg.me>
10440 M:      Max Gurtovoy <mgurtovoy@nvidia.com>
10441 L:      linux-rdma@vger.kernel.org
10442 S:      Supported
10443 W:      http://www.openfabrics.org
10444 W:      www.open-iscsi.org
10445 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
10446 F:      drivers/infiniband/ulp/iser/
10447
10448 ISCSI EXTENSIONS FOR RDMA (ISER) TARGET
10449 M:      Sagi Grimberg <sagi@grimberg.me>
10450 L:      linux-rdma@vger.kernel.org
10451 L:      target-devel@vger.kernel.org
10452 S:      Supported
10453 W:      http://www.linux-iscsi.org
10454 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
10455 F:      drivers/infiniband/ulp/isert
10456
10457 ISDN/CMTP OVER BLUETOOTH
10458 M:      Karsten Keil <isdn@linux-pingi.de>
10459 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
10460 L:      netdev@vger.kernel.org
10461 S:      Odd Fixes
10462 W:      http://www.isdn4linux.de
10463 F:      Documentation/isdn/
10464 F:      drivers/isdn/capi/
10465 F:      include/linux/isdn/
10466 F:      include/uapi/linux/isdn/
10467 F:      net/bluetooth/cmtp/
10468
10469 ISDN/mISDN SUBSYSTEM
10470 M:      Karsten Keil <isdn@linux-pingi.de>
10471 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
10472 L:      netdev@vger.kernel.org
10473 S:      Maintained
10474 W:      http://www.isdn4linux.de
10475 F:      drivers/isdn/Kconfig
10476 F:      drivers/isdn/Makefile
10477 F:      drivers/isdn/hardware/
10478 F:      drivers/isdn/mISDN/
10479
10480 IT87 HARDWARE MONITORING DRIVER
10481 M:      Jean Delvare <jdelvare@suse.com>
10482 L:      linux-hwmon@vger.kernel.org
10483 S:      Maintained
10484 F:      Documentation/hwmon/it87.rst
10485 F:      drivers/hwmon/it87.c
10486
10487 IT913X MEDIA DRIVER
10488 M:      Antti Palosaari <crope@iki.fi>
10489 L:      linux-media@vger.kernel.org
10490 S:      Maintained
10491 W:      https://linuxtv.org
10492 W:      http://palosaari.fi/linux/
10493 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10494 T:      git git://linuxtv.org/anttip/media_tree.git
10495 F:      drivers/media/tuners/it913x*
10496
10497 ITE IT66121 HDMI BRIDGE DRIVER
10498 M:      Phong LE <ple@baylibre.com>
10499 M:      Neil Armstrong <narmstrong@baylibre.com>
10500 S:      Maintained
10501 T:      git git://anongit.freedesktop.org/drm/drm-misc
10502 F:      Documentation/devicetree/bindings/display/bridge/ite,it66121.yaml
10503 F:      drivers/gpu/drm/bridge/ite-it66121.c
10504
10505 IVTV VIDEO4LINUX DRIVER
10506 M:      Andy Walls <awalls@md.metrocast.net>
10507 L:      linux-media@vger.kernel.org
10508 S:      Maintained
10509 W:      https://linuxtv.org
10510 T:      git git://linuxtv.org/media_tree.git
10511 F:      Documentation/admin-guide/media/ivtv*
10512 F:      drivers/media/pci/ivtv/
10513 F:      include/uapi/linux/ivtv*
10514
10515 IX2505V MEDIA DRIVER
10516 M:      Malcolm Priestley <tvboxspy@gmail.com>
10517 L:      linux-media@vger.kernel.org
10518 S:      Maintained
10519 W:      https://linuxtv.org
10520 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10521 F:      drivers/media/dvb-frontends/ix2505v*
10522
10523 JAILHOUSE HYPERVISOR INTERFACE
10524 M:      Jan Kiszka <jan.kiszka@siemens.com>
10525 L:      jailhouse-dev@googlegroups.com
10526 S:      Maintained
10527 F:      arch/x86/include/asm/jailhouse_para.h
10528 F:      arch/x86/kernel/jailhouse.c
10529
10530 JC42.4 TEMPERATURE SENSOR DRIVER
10531 M:      Guenter Roeck <linux@roeck-us.net>
10532 L:      linux-hwmon@vger.kernel.org
10533 S:      Maintained
10534 F:      Documentation/devicetree/bindings/hwmon/jedec,jc42.yaml
10535 F:      Documentation/hwmon/jc42.rst
10536 F:      drivers/hwmon/jc42.c
10537
10538 JFS FILESYSTEM
10539 M:      Dave Kleikamp <shaggy@kernel.org>
10540 L:      jfs-discussion@lists.sourceforge.net
10541 S:      Maintained
10542 W:      http://jfs.sourceforge.net/
10543 T:      git git://github.com/kleikamp/linux-shaggy.git
10544 F:      Documentation/admin-guide/jfs.rst
10545 F:      fs/jfs/
10546
10547 JME NETWORK DRIVER
10548 M:      Guo-Fu Tseng <cooldavid@cooldavid.org>
10549 L:      netdev@vger.kernel.org
10550 S:      Maintained
10551 F:      drivers/net/ethernet/jme.*
10552
10553 JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
10554 M:      David Woodhouse <dwmw2@infradead.org>
10555 M:      Richard Weinberger <richard@nod.at>
10556 L:      linux-mtd@lists.infradead.org
10557 S:      Odd Fixes
10558 W:      http://www.linux-mtd.infradead.org/doc/jffs2.html
10559 T:      git git://git.infradead.org/ubifs-2.6.git
10560 F:      fs/jffs2/
10561 F:      include/uapi/linux/jffs2.h
10562
10563 JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
10564 M:      "Theodore Ts'o" <tytso@mit.edu>
10565 M:      Jan Kara <jack@suse.com>
10566 L:      linux-ext4@vger.kernel.org
10567 S:      Maintained
10568 F:      fs/jbd2/
10569 F:      include/linux/jbd2.h
10570
10571 JPU V4L2 MEM2MEM DRIVER FOR RENESAS
10572 M:      Mikhail Ulyanov <mikhail.ulyanov@cogentembedded.com>
10573 L:      linux-media@vger.kernel.org
10574 L:      linux-renesas-soc@vger.kernel.org
10575 S:      Maintained
10576 F:      drivers/media/platform/renesas/rcar_jpu.c
10577
10578 JSM Neo PCI based serial card
10579 L:      linux-serial@vger.kernel.org
10580 S:      Orphan
10581 F:      drivers/tty/serial/jsm/
10582
10583 K10TEMP HARDWARE MONITORING DRIVER
10584 M:      Clemens Ladisch <clemens@ladisch.de>
10585 L:      linux-hwmon@vger.kernel.org
10586 S:      Maintained
10587 F:      Documentation/hwmon/k10temp.rst
10588 F:      drivers/hwmon/k10temp.c
10589
10590 K8TEMP HARDWARE MONITORING DRIVER
10591 M:      Rudolf Marek <r.marek@assembler.cz>
10592 L:      linux-hwmon@vger.kernel.org
10593 S:      Maintained
10594 F:      Documentation/hwmon/k8temp.rst
10595 F:      drivers/hwmon/k8temp.c
10596
10597 KASAN
10598 M:      Andrey Ryabinin <ryabinin.a.a@gmail.com>
10599 R:      Alexander Potapenko <glider@google.com>
10600 R:      Andrey Konovalov <andreyknvl@gmail.com>
10601 R:      Dmitry Vyukov <dvyukov@google.com>
10602 R:      Vincenzo Frascino <vincenzo.frascino@arm.com>
10603 L:      kasan-dev@googlegroups.com
10604 S:      Maintained
10605 F:      Documentation/dev-tools/kasan.rst
10606 F:      arch/*/include/asm/*kasan.h
10607 F:      arch/*/mm/kasan_init*
10608 F:      include/linux/kasan*.h
10609 F:      lib/Kconfig.kasan
10610 F:      lib/test_kasan*.c
10611 F:      mm/kasan/
10612 F:      scripts/Makefile.kasan
10613
10614 KCONFIG
10615 M:      Masahiro Yamada <masahiroy@kernel.org>
10616 L:      linux-kbuild@vger.kernel.org
10617 S:      Maintained
10618 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git kconfig
10619 F:      Documentation/kbuild/kconfig*
10620 F:      scripts/Kconfig.include
10621 F:      scripts/kconfig/
10622
10623 KCOV
10624 R:      Dmitry Vyukov <dvyukov@google.com>
10625 R:      Andrey Konovalov <andreyknvl@gmail.com>
10626 L:      kasan-dev@googlegroups.com
10627 S:      Maintained
10628 F:      Documentation/dev-tools/kcov.rst
10629 F:      include/linux/kcov.h
10630 F:      include/uapi/linux/kcov.h
10631 F:      kernel/kcov.c
10632 F:      scripts/Makefile.kcov
10633
10634 KCSAN
10635 M:      Marco Elver <elver@google.com>
10636 R:      Dmitry Vyukov <dvyukov@google.com>
10637 L:      kasan-dev@googlegroups.com
10638 S:      Maintained
10639 F:      Documentation/dev-tools/kcsan.rst
10640 F:      include/linux/kcsan*.h
10641 F:      kernel/kcsan/
10642 F:      lib/Kconfig.kcsan
10643 F:      scripts/Makefile.kcsan
10644
10645 KDUMP
10646 M:      Baoquan He <bhe@redhat.com>
10647 R:      Vivek Goyal <vgoyal@redhat.com>
10648 R:      Dave Young <dyoung@redhat.com>
10649 L:      kexec@lists.infradead.org
10650 S:      Maintained
10651 W:      http://lse.sourceforge.net/kdump/
10652 F:      Documentation/admin-guide/kdump/
10653 F:      fs/proc/vmcore.c
10654 F:      include/linux/crash_core.h
10655 F:      include/linux/crash_dump.h
10656 F:      include/uapi/linux/vmcore.h
10657 F:      kernel/crash_*.c
10658
10659 KEENE FM RADIO TRANSMITTER DRIVER
10660 M:      Hans Verkuil <hverkuil@xs4all.nl>
10661 L:      linux-media@vger.kernel.org
10662 S:      Maintained
10663 W:      https://linuxtv.org
10664 T:      git git://linuxtv.org/media_tree.git
10665 F:      drivers/media/radio/radio-keene*
10666
10667 KERNEL AUTOMOUNTER
10668 M:      Ian Kent <raven@themaw.net>
10669 L:      autofs@vger.kernel.org
10670 S:      Maintained
10671 F:      fs/autofs/
10672
10673 KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
10674 M:      Masahiro Yamada <masahiroy@kernel.org>
10675 M:      Michal Marek <michal.lkml@markovi.net>
10676 R:      Nick Desaulniers <ndesaulniers@google.com>
10677 L:      linux-kbuild@vger.kernel.org
10678 S:      Maintained
10679 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git
10680 F:      Documentation/kbuild/
10681 F:      Makefile
10682 F:      scripts/*vmlinux*
10683 F:      scripts/Kbuild*
10684 F:      scripts/Makefile*
10685 F:      scripts/basic/
10686 F:      scripts/dummy-tools/
10687 F:      scripts/mk*
10688 F:      scripts/mod/
10689 F:      scripts/package/
10690
10691 KERNEL JANITORS
10692 L:      kernel-janitors@vger.kernel.org
10693 S:      Odd Fixes
10694 W:      http://kernelnewbies.org/KernelJanitors
10695
10696 KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
10697 M:      Chuck Lever <chuck.lever@oracle.com>
10698 L:      linux-nfs@vger.kernel.org
10699 S:      Supported
10700 W:      http://nfs.sourceforge.net/
10701 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/cel/linux.git
10702 F:      fs/lockd/
10703 F:      fs/nfs_common/
10704 F:      fs/nfsd/
10705 F:      include/linux/lockd/
10706 F:      include/linux/sunrpc/
10707 F:      include/uapi/linux/nfsd/
10708 F:      include/uapi/linux/sunrpc/
10709 F:      net/sunrpc/
10710 F:      Documentation/filesystems/nfs/
10711
10712 KERNEL REGRESSIONS
10713 M:      Thorsten Leemhuis <linux@leemhuis.info>
10714 L:      regressions@lists.linux.dev
10715 S:      Supported
10716 F:      Documentation/admin-guide/reporting-regressions.rst
10717 F:      Documentation/process/handling-regressions.rst
10718
10719 KERNEL SELFTEST FRAMEWORK
10720 M:      Shuah Khan <shuah@kernel.org>
10721 M:      Shuah Khan <skhan@linuxfoundation.org>
10722 L:      linux-kselftest@vger.kernel.org
10723 S:      Maintained
10724 Q:      https://patchwork.kernel.org/project/linux-kselftest/list/
10725 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest.git
10726 F:      Documentation/dev-tools/kselftest*
10727 F:      tools/testing/selftests/
10728
10729 KERNEL SMB3 SERVER (KSMBD)
10730 M:      Namjae Jeon <linkinjeon@kernel.org>
10731 M:      Steve French <sfrench@samba.org>
10732 M:      Hyunchul Lee <hyc.lee@gmail.com>
10733 R:      Sergey Senozhatsky <senozhatsky@chromium.org>
10734 L:      linux-cifs@vger.kernel.org
10735 S:      Maintained
10736 T:      git git://git.samba.org/ksmbd.git
10737 F:      fs/ksmbd/
10738 F:      fs/smbfs_common/
10739
10740 KERNEL UNIT TESTING FRAMEWORK (KUnit)
10741 M:      Brendan Higgins <brendanhiggins@google.com>
10742 L:      linux-kselftest@vger.kernel.org
10743 L:      kunit-dev@googlegroups.com
10744 S:      Maintained
10745 W:      https://google.github.io/kunit-docs/third_party/kernel/docs/
10746 F:      Documentation/dev-tools/kunit/
10747 F:      include/kunit/
10748 F:      lib/kunit/
10749 F:      tools/testing/kunit/
10750
10751 KERNEL USERMODE HELPER
10752 M:      Luis Chamberlain <mcgrof@kernel.org>
10753 L:      linux-kernel@vger.kernel.org
10754 S:      Maintained
10755 F:      include/linux/umh.h
10756 F:      kernel/umh.c
10757
10758 KERNEL VIRTUAL MACHINE (KVM)
10759 M:      Paolo Bonzini <pbonzini@redhat.com>
10760 L:      kvm@vger.kernel.org
10761 S:      Supported
10762 W:      http://www.linux-kvm.org
10763 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
10764 F:      Documentation/virt/kvm/
10765 F:      include/asm-generic/kvm*
10766 F:      include/kvm/iodev.h
10767 F:      include/linux/kvm*
10768 F:      include/trace/events/kvm.h
10769 F:      include/uapi/asm-generic/kvm*
10770 F:      include/uapi/linux/kvm*
10771 F:      tools/kvm/
10772 F:      tools/testing/selftests/kvm/
10773 F:      virt/kvm/*
10774
10775 KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64)
10776 M:      Marc Zyngier <maz@kernel.org>
10777 R:      James Morse <james.morse@arm.com>
10778 R:      Alexandru Elisei <alexandru.elisei@arm.com>
10779 R:      Suzuki K Poulose <suzuki.poulose@arm.com>
10780 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10781 L:      kvmarm@lists.cs.columbia.edu (moderated for non-subscribers)
10782 S:      Maintained
10783 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvmarm/kvmarm.git
10784 F:      arch/arm64/include/asm/kvm*
10785 F:      arch/arm64/include/uapi/asm/kvm*
10786 F:      arch/arm64/kvm/
10787 F:      include/kvm/arm_*
10788 F:      tools/testing/selftests/kvm/*/aarch64/
10789 F:      tools/testing/selftests/kvm/aarch64/
10790
10791 KERNEL VIRTUAL MACHINE FOR MIPS (KVM/mips)
10792 M:      Huacai Chen <chenhuacai@kernel.org>
10793 M:      Aleksandar Markovic <aleksandar.qemu.devel@gmail.com>
10794 L:      linux-mips@vger.kernel.org
10795 L:      kvm@vger.kernel.org
10796 S:      Maintained
10797 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
10798 F:      arch/mips/include/asm/kvm*
10799 F:      arch/mips/include/uapi/asm/kvm*
10800 F:      arch/mips/kvm/
10801
10802 KERNEL VIRTUAL MACHINE FOR POWERPC (KVM/powerpc)
10803 L:      linuxppc-dev@lists.ozlabs.org
10804 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git topic/ppc-kvm
10805 F:      arch/powerpc/include/asm/kvm*
10806 F:      arch/powerpc/include/uapi/asm/kvm*
10807 F:      arch/powerpc/kernel/kvm*
10808 F:      arch/powerpc/kvm/
10809
10810 KERNEL VIRTUAL MACHINE FOR RISC-V (KVM/riscv)
10811 M:      Anup Patel <anup@brainfault.org>
10812 R:      Atish Patra <atishp@atishpatra.org>
10813 L:      kvm@vger.kernel.org
10814 L:      kvm-riscv@lists.infradead.org
10815 L:      linux-riscv@lists.infradead.org
10816 S:      Maintained
10817 T:      git git://github.com/kvm-riscv/linux.git
10818 F:      arch/riscv/include/asm/kvm*
10819 F:      arch/riscv/include/uapi/asm/kvm*
10820 F:      arch/riscv/kvm/
10821
10822 KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
10823 M:      Christian Borntraeger <borntraeger@linux.ibm.com>
10824 M:      Janosch Frank <frankja@linux.ibm.com>
10825 M:      Claudio Imbrenda <imbrenda@linux.ibm.com>
10826 R:      David Hildenbrand <david@redhat.com>
10827 L:      kvm@vger.kernel.org
10828 S:      Supported
10829 W:      http://www.ibm.com/developerworks/linux/linux390/
10830 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvms390/linux.git
10831 F:      Documentation/virt/kvm/s390*
10832 F:      arch/s390/include/asm/gmap.h
10833 F:      arch/s390/include/asm/kvm*
10834 F:      arch/s390/include/uapi/asm/kvm*
10835 F:      arch/s390/kernel/uv.c
10836 F:      arch/s390/kvm/
10837 F:      arch/s390/mm/gmap.c
10838 F:      tools/testing/selftests/kvm/*/s390x/
10839 F:      tools/testing/selftests/kvm/s390x/
10840
10841 KERNEL VIRTUAL MACHINE FOR X86 (KVM/x86)
10842 M:      Paolo Bonzini <pbonzini@redhat.com>
10843 R:      Sean Christopherson <seanjc@google.com>
10844 R:      Vitaly Kuznetsov <vkuznets@redhat.com>
10845 R:      Wanpeng Li <wanpengli@tencent.com>
10846 R:      Jim Mattson <jmattson@google.com>
10847 R:      Joerg Roedel <joro@8bytes.org>
10848 L:      kvm@vger.kernel.org
10849 S:      Supported
10850 W:      http://www.linux-kvm.org
10851 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
10852 F:      arch/x86/include/asm/kvm*
10853 F:      arch/x86/include/asm/pvclock-abi.h
10854 F:      arch/x86/include/asm/svm.h
10855 F:      arch/x86/include/asm/vmx*.h
10856 F:      arch/x86/include/uapi/asm/kvm*
10857 F:      arch/x86/include/uapi/asm/svm.h
10858 F:      arch/x86/include/uapi/asm/vmx.h
10859 F:      arch/x86/kernel/kvm.c
10860 F:      arch/x86/kernel/kvmclock.c
10861 F:      arch/x86/kvm/
10862 F:      arch/x86/kvm/*/
10863
10864 KERNFS
10865 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10866 M:      Tejun Heo <tj@kernel.org>
10867 S:      Supported
10868 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
10869 F:      fs/kernfs/
10870 F:      include/linux/kernfs.h
10871
10872 KEXEC
10873 M:      Eric Biederman <ebiederm@xmission.com>
10874 L:      kexec@lists.infradead.org
10875 S:      Maintained
10876 W:      http://kernel.org/pub/linux/utils/kernel/kexec/
10877 F:      include/linux/kexec.h
10878 F:      include/uapi/linux/kexec.h
10879 F:      kernel/kexec*
10880
10881 KEYS-ENCRYPTED
10882 M:      Mimi Zohar <zohar@linux.ibm.com>
10883 L:      linux-integrity@vger.kernel.org
10884 L:      keyrings@vger.kernel.org
10885 S:      Supported
10886 F:      Documentation/security/keys/trusted-encrypted.rst
10887 F:      include/keys/encrypted-type.h
10888 F:      security/keys/encrypted-keys/
10889
10890 KEYS-TRUSTED
10891 M:      James Bottomley <jejb@linux.ibm.com>
10892 M:      Jarkko Sakkinen <jarkko@kernel.org>
10893 M:      Mimi Zohar <zohar@linux.ibm.com>
10894 L:      linux-integrity@vger.kernel.org
10895 L:      keyrings@vger.kernel.org
10896 S:      Supported
10897 F:      Documentation/security/keys/trusted-encrypted.rst
10898 F:      include/keys/trusted-type.h
10899 F:      include/keys/trusted_tpm.h
10900 F:      security/keys/trusted-keys/
10901
10902 KEYS-TRUSTED-TEE
10903 M:      Sumit Garg <sumit.garg@linaro.org>
10904 L:      linux-integrity@vger.kernel.org
10905 L:      keyrings@vger.kernel.org
10906 S:      Supported
10907 F:      include/keys/trusted_tee.h
10908 F:      security/keys/trusted-keys/trusted_tee.c
10909
10910 KEYS-TRUSTED-CAAM
10911 M:      Ahmad Fatoum <a.fatoum@pengutronix.de>
10912 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
10913 L:      linux-integrity@vger.kernel.org
10914 L:      keyrings@vger.kernel.org
10915 S:      Maintained
10916 F:      include/keys/trusted_caam.h
10917 F:      security/keys/trusted-keys/trusted_caam.c
10918
10919 KEYS/KEYRINGS
10920 M:      David Howells <dhowells@redhat.com>
10921 M:      Jarkko Sakkinen <jarkko@kernel.org>
10922 L:      keyrings@vger.kernel.org
10923 S:      Maintained
10924 F:      Documentation/security/keys/core.rst
10925 F:      include/keys/
10926 F:      include/linux/key-type.h
10927 F:      include/linux/key.h
10928 F:      include/linux/keyctl.h
10929 F:      include/uapi/linux/keyctl.h
10930 F:      security/keys/
10931
10932 KEYS/KEYRINGS_INTEGRITY
10933 M:      Jarkko Sakkinen <jarkko@kernel.org>
10934 M:      Mimi Zohar <zohar@linux.ibm.com>
10935 L:      linux-integrity@vger.kernel.org
10936 L:      keyrings@vger.kernel.org
10937 S:      Supported
10938 F:      security/integrity/platform_certs
10939
10940 KFENCE
10941 M:      Alexander Potapenko <glider@google.com>
10942 M:      Marco Elver <elver@google.com>
10943 R:      Dmitry Vyukov <dvyukov@google.com>
10944 L:      kasan-dev@googlegroups.com
10945 S:      Maintained
10946 F:      Documentation/dev-tools/kfence.rst
10947 F:      arch/*/include/asm/kfence.h
10948 F:      include/linux/kfence.h
10949 F:      lib/Kconfig.kfence
10950 F:      mm/kfence/
10951
10952 KFIFO
10953 M:      Stefani Seibold <stefani@seibold.net>
10954 S:      Maintained
10955 F:      include/linux/kfifo.h
10956 F:      lib/kfifo.c
10957 F:      samples/kfifo/
10958
10959 KGDB / KDB /debug_core
10960 M:      Jason Wessel <jason.wessel@windriver.com>
10961 M:      Daniel Thompson <daniel.thompson@linaro.org>
10962 R:      Douglas Anderson <dianders@chromium.org>
10963 L:      kgdb-bugreport@lists.sourceforge.net
10964 S:      Maintained
10965 W:      http://kgdb.wiki.kernel.org/
10966 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jwessel/kgdb.git
10967 F:      Documentation/dev-tools/kgdb.rst
10968 F:      drivers/misc/kgdbts.c
10969 F:      drivers/tty/serial/kgdboc.c
10970 F:      include/linux/kdb.h
10971 F:      include/linux/kgdb.h
10972 F:      kernel/debug/
10973
10974 KHADAS MCU MFD DRIVER
10975 M:      Neil Armstrong <narmstrong@baylibre.com>
10976 L:      linux-amlogic@lists.infradead.org
10977 S:      Maintained
10978 F:      Documentation/devicetree/bindings/mfd/khadas,mcu.yaml
10979 F:      drivers/mfd/khadas-mcu.c
10980 F:      include/linux/mfd/khadas-mcu.h
10981 F:      drivers/thermal/khadas_mcu_fan.c
10982
10983 KMEMLEAK
10984 M:      Catalin Marinas <catalin.marinas@arm.com>
10985 S:      Maintained
10986 F:      Documentation/dev-tools/kmemleak.rst
10987 F:      include/linux/kmemleak.h
10988 F:      mm/kmemleak.c
10989 F:      samples/kmemleak/kmemleak-test.c
10990
10991 KMOD KERNEL MODULE LOADER - USERMODE HELPER
10992 M:      Luis Chamberlain <mcgrof@kernel.org>
10993 L:      linux-kernel@vger.kernel.org
10994 L:      linux-modules@vger.kernel.org
10995 S:      Maintained
10996 F:      include/linux/kmod.h
10997 F:      kernel/kmod.c
10998 F:      lib/test_kmod.c
10999 F:      tools/testing/selftests/kmod/
11000
11001 KPROBES
11002 M:      Naveen N. Rao <naveen.n.rao@linux.ibm.com>
11003 M:      Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
11004 M:      "David S. Miller" <davem@davemloft.net>
11005 M:      Masami Hiramatsu <mhiramat@kernel.org>
11006 S:      Maintained
11007 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rostedt/linux-trace.git
11008 F:      Documentation/trace/kprobes.rst
11009 F:      include/asm-generic/kprobes.h
11010 F:      include/linux/kprobes.h
11011 F:      kernel/kprobes.c
11012 F:      lib/test_kprobes.c
11013 F:      samples/kprobes
11014
11015 KS0108 LCD CONTROLLER DRIVER
11016 M:      Miguel Ojeda <ojeda@kernel.org>
11017 S:      Maintained
11018 F:      Documentation/admin-guide/auxdisplay/ks0108.rst
11019 F:      drivers/auxdisplay/ks0108.c
11020 F:      include/linux/ks0108.h
11021
11022 KTD253 BACKLIGHT DRIVER
11023 M:      Linus Walleij <linus.walleij@linaro.org>
11024 S:      Maintained
11025 F:      Documentation/devicetree/bindings/leds/backlight/kinetic,ktd253.yaml
11026 F:      drivers/video/backlight/ktd253-backlight.c
11027
11028 KTEST
11029 M:      Steven Rostedt <rostedt@goodmis.org>
11030 M:      John Hawley <warthog9@eaglescrag.net>
11031 S:      Maintained
11032 F:      tools/testing/ktest
11033
11034 L3MDEV
11035 M:      David Ahern <dsahern@kernel.org>
11036 L:      netdev@vger.kernel.org
11037 S:      Maintained
11038 F:      include/net/l3mdev.h
11039 F:      net/l3mdev
11040
11041 L7 BPF FRAMEWORK
11042 M:      John Fastabend <john.fastabend@gmail.com>
11043 M:      Daniel Borkmann <daniel@iogearbox.net>
11044 M:      Jakub Sitnicki <jakub@cloudflare.com>
11045 L:      netdev@vger.kernel.org
11046 L:      bpf@vger.kernel.org
11047 S:      Maintained
11048 F:      include/linux/skmsg.h
11049 F:      net/core/skmsg.c
11050 F:      net/core/sock_map.c
11051 F:      net/ipv4/tcp_bpf.c
11052 F:      net/ipv4/udp_bpf.c
11053 F:      net/unix/unix_bpf.c
11054
11055 LANDLOCK SECURITY MODULE
11056 M:      Mickaël Salaün <mic@digikod.net>
11057 L:      linux-security-module@vger.kernel.org
11058 S:      Supported
11059 W:      https://landlock.io
11060 T:      git https://github.com/landlock-lsm/linux.git
11061 F:      Documentation/security/landlock.rst
11062 F:      Documentation/userspace-api/landlock.rst
11063 F:      include/uapi/linux/landlock.h
11064 F:      samples/landlock/
11065 F:      security/landlock/
11066 F:      tools/testing/selftests/landlock/
11067 K:      landlock
11068 K:      LANDLOCK
11069
11070 LANTIQ / INTEL Ethernet drivers
11071 M:      Hauke Mehrtens <hauke@hauke-m.de>
11072 L:      netdev@vger.kernel.org
11073 S:      Maintained
11074 F:      drivers/net/dsa/lantiq_gswip.c
11075 F:      drivers/net/dsa/lantiq_pce.h
11076 F:      drivers/net/ethernet/lantiq_xrx200.c
11077 F:      net/dsa/tag_gswip.c
11078
11079 LANTIQ MIPS ARCHITECTURE
11080 M:      John Crispin <john@phrozen.org>
11081 L:      linux-mips@vger.kernel.org
11082 S:      Maintained
11083 F:      arch/mips/lantiq
11084 F:      drivers/soc/lantiq
11085
11086 LASI 53c700 driver for PARISC
11087 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
11088 L:      linux-scsi@vger.kernel.org
11089 S:      Maintained
11090 F:      Documentation/scsi/53c700.rst
11091 F:      drivers/scsi/53c700*
11092
11093 LEAKING_ADDRESSES
11094 M:      Tobin C. Harding <me@tobin.cc>
11095 M:      Tycho Andersen <tycho@tycho.pizza>
11096 L:      linux-hardening@vger.kernel.org
11097 S:      Maintained
11098 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tobin/leaks.git
11099 F:      scripts/leaking_addresses.pl
11100
11101 LED SUBSYSTEM
11102 M:      Pavel Machek <pavel@ucw.cz>
11103 L:      linux-leds@vger.kernel.org
11104 S:      Maintained
11105 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pavel/linux-leds.git
11106 F:      Documentation/devicetree/bindings/leds/
11107 F:      drivers/leds/
11108 F:      include/linux/leds.h
11109
11110 LEGACY EEPROM DRIVER
11111 M:      Jean Delvare <jdelvare@suse.com>
11112 S:      Maintained
11113 F:      Documentation/misc-devices/eeprom.rst
11114 F:      drivers/misc/eeprom/eeprom.c
11115
11116 LEGO MINDSTORMS EV3
11117 R:      David Lechner <david@lechnology.com>
11118 S:      Maintained
11119 F:      Documentation/devicetree/bindings/power/supply/lego,ev3-battery.yaml
11120 F:      arch/arm/boot/dts/da850-lego-ev3.dts
11121 F:      drivers/power/supply/lego_ev3_battery.c
11122
11123 LEGO USB Tower driver
11124 M:      Juergen Stuber <starblue@users.sourceforge.net>
11125 L:      legousb-devel@lists.sourceforge.net
11126 S:      Maintained
11127 W:      http://legousb.sourceforge.net/
11128 F:      drivers/usb/misc/legousbtower.c
11129
11130 LETSKETCH HID TABLET DRIVER
11131 M:      Hans de Goede <hdegoede@redhat.com>
11132 L:      linux-input@vger.kernel.org
11133 S:      Maintained
11134 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
11135 F:      drivers/hid/hid-letsketch.c
11136
11137 LG LAPTOP EXTRAS
11138 M:      Matan Ziv-Av <matan@svgalib.org>
11139 L:      platform-driver-x86@vger.kernel.org
11140 S:      Maintained
11141 F:      Documentation/ABI/testing/sysfs-platform-lg-laptop
11142 F:      Documentation/admin-guide/laptops/lg-laptop.rst
11143 F:      drivers/platform/x86/lg-laptop.c
11144
11145 LG2160 MEDIA DRIVER
11146 M:      Michael Krufky <mkrufky@linuxtv.org>
11147 L:      linux-media@vger.kernel.org
11148 S:      Maintained
11149 W:      https://linuxtv.org
11150 W:      http://github.com/mkrufky
11151 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11152 T:      git git://linuxtv.org/mkrufky/tuners.git
11153 F:      drivers/media/dvb-frontends/lg2160.*
11154
11155 LGDT3305 MEDIA DRIVER
11156 M:      Michael Krufky <mkrufky@linuxtv.org>
11157 L:      linux-media@vger.kernel.org
11158 S:      Maintained
11159 W:      https://linuxtv.org
11160 W:      http://github.com/mkrufky
11161 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11162 T:      git git://linuxtv.org/mkrufky/tuners.git
11163 F:      drivers/media/dvb-frontends/lgdt3305.*
11164
11165 LIBATA PATA ARASAN COMPACT FLASH CONTROLLER
11166 M:      Viresh Kumar <vireshk@kernel.org>
11167 L:      linux-ide@vger.kernel.org
11168 S:      Maintained
11169 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
11170 F:      drivers/ata/pata_arasan_cf.c
11171 F:      include/linux/pata_arasan_cf_data.h
11172
11173 LIBATA PATA DRIVERS
11174 R:      Sergey Shtylyov <s.shtylyov@omp.ru>
11175 L:      linux-ide@vger.kernel.org
11176 F:      drivers/ata/ata_*.c
11177 F:      drivers/ata/pata_*.c
11178
11179 LIBATA PATA FARADAY FTIDE010 AND GEMINI SATA BRIDGE DRIVERS
11180 M:      Linus Walleij <linus.walleij@linaro.org>
11181 L:      linux-ide@vger.kernel.org
11182 S:      Maintained
11183 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
11184 F:      drivers/ata/pata_ftide010.c
11185 F:      drivers/ata/sata_gemini.c
11186 F:      drivers/ata/sata_gemini.h
11187
11188 LIBATA SATA AHCI PLATFORM devices support
11189 M:      Hans de Goede <hdegoede@redhat.com>
11190 M:      Jens Axboe <axboe@kernel.dk>
11191 L:      linux-ide@vger.kernel.org
11192 S:      Maintained
11193 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
11194 F:      drivers/ata/ahci_platform.c
11195 F:      drivers/ata/libahci_platform.c
11196 F:      include/linux/ahci_platform.h
11197
11198 LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER
11199 M:      Mikael Pettersson <mikpelinux@gmail.com>
11200 L:      linux-ide@vger.kernel.org
11201 S:      Maintained
11202 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
11203 F:      drivers/ata/sata_promise.*
11204
11205 LIBATA SUBSYSTEM (Serial and Parallel ATA drivers)
11206 M:      Damien Le Moal <damien.lemoal@opensource.wdc.com>
11207 L:      linux-ide@vger.kernel.org
11208 S:      Maintained
11209 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dlemoal/libata.git
11210 F:      Documentation/devicetree/bindings/ata/
11211 F:      drivers/ata/
11212 F:      include/linux/ata.h
11213 F:      include/linux/libata.h
11214
11215 LIBNVDIMM BTT: BLOCK TRANSLATION TABLE
11216 M:      Vishal Verma <vishal.l.verma@intel.com>
11217 M:      Dan Williams <dan.j.williams@intel.com>
11218 M:      Dave Jiang <dave.jiang@intel.com>
11219 L:      nvdimm@lists.linux.dev
11220 S:      Supported
11221 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
11222 P:      Documentation/nvdimm/maintainer-entry-profile.rst
11223 F:      drivers/nvdimm/btt*
11224
11225 LIBNVDIMM PMEM: PERSISTENT MEMORY DRIVER
11226 M:      Dan Williams <dan.j.williams@intel.com>
11227 M:      Vishal Verma <vishal.l.verma@intel.com>
11228 M:      Dave Jiang <dave.jiang@intel.com>
11229 L:      nvdimm@lists.linux.dev
11230 S:      Supported
11231 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
11232 P:      Documentation/nvdimm/maintainer-entry-profile.rst
11233 F:      drivers/nvdimm/pmem*
11234
11235 LIBNVDIMM: DEVICETREE BINDINGS
11236 M:      Oliver O'Halloran <oohall@gmail.com>
11237 L:      nvdimm@lists.linux.dev
11238 S:      Supported
11239 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
11240 F:      Documentation/devicetree/bindings/pmem/pmem-region.txt
11241 F:      drivers/nvdimm/of_pmem.c
11242
11243 LIBNVDIMM: NON-VOLATILE MEMORY DEVICE SUBSYSTEM
11244 M:      Dan Williams <dan.j.williams@intel.com>
11245 M:      Vishal Verma <vishal.l.verma@intel.com>
11246 M:      Dave Jiang <dave.jiang@intel.com>
11247 M:      Ira Weiny <ira.weiny@intel.com>
11248 L:      nvdimm@lists.linux.dev
11249 S:      Supported
11250 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
11251 P:      Documentation/nvdimm/maintainer-entry-profile.rst
11252 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nvdimm/nvdimm.git
11253 F:      drivers/acpi/nfit/*
11254 F:      drivers/nvdimm/*
11255 F:      include/linux/libnvdimm.h
11256 F:      include/linux/nd.h
11257 F:      include/uapi/linux/ndctl.h
11258 F:      tools/testing/nvdimm/
11259
11260 LICENSES and SPDX stuff
11261 M:      Thomas Gleixner <tglx@linutronix.de>
11262 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
11263 L:      linux-spdx@vger.kernel.org
11264 S:      Maintained
11265 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/spdx.git
11266 F:      COPYING
11267 F:      Documentation/process/license-rules.rst
11268 F:      LICENSES/
11269 F:      scripts/spdxcheck-test.sh
11270 F:      scripts/spdxcheck.py
11271
11272 LINEAR RANGES HELPERS
11273 M:      Mark Brown <broonie@kernel.org>
11274 R:      Matti Vaittinen <mazziesaccount@gmail.com>
11275 F:      lib/linear_ranges.c
11276 F:      lib/test_linear_ranges.c
11277 F:      include/linux/linear_range.h
11278
11279 LINUX FOR POWER MACINTOSH
11280 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
11281 L:      linuxppc-dev@lists.ozlabs.org
11282 S:      Odd Fixes
11283 F:      arch/powerpc/platforms/powermac/
11284 F:      drivers/macintosh/
11285
11286 LINUX FOR POWERPC (32-BIT AND 64-BIT)
11287 M:      Michael Ellerman <mpe@ellerman.id.au>
11288 R:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
11289 R:      Paul Mackerras <paulus@samba.org>
11290 L:      linuxppc-dev@lists.ozlabs.org
11291 S:      Supported
11292 W:      https://github.com/linuxppc/wiki/wiki
11293 Q:      http://patchwork.ozlabs.org/project/linuxppc-dev/list/
11294 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git
11295 F:      Documentation/ABI/stable/sysfs-firmware-opal-*
11296 F:      Documentation/devicetree/bindings/i2c/i2c-opal.txt
11297 F:      Documentation/devicetree/bindings/powerpc/
11298 F:      Documentation/devicetree/bindings/rtc/rtc-opal.txt
11299 F:      Documentation/powerpc/
11300 F:      arch/powerpc/
11301 F:      drivers/*/*/*pasemi*
11302 F:      drivers/*/*pasemi*
11303 F:      drivers/char/tpm/tpm_ibmvtpm*
11304 F:      drivers/crypto/nx/
11305 F:      drivers/crypto/vmx/
11306 F:      drivers/i2c/busses/i2c-opal.c
11307 F:      drivers/net/ethernet/ibm/ibmveth.*
11308 F:      drivers/net/ethernet/ibm/ibmvnic.*
11309 F:      drivers/pci/hotplug/pnv_php.c
11310 F:      drivers/pci/hotplug/rpa*
11311 F:      drivers/rtc/rtc-opal.c
11312 F:      drivers/scsi/ibmvscsi/
11313 F:      drivers/tty/hvc/hvc_opal.c
11314 F:      drivers/watchdog/wdrtas.c
11315 F:      tools/testing/selftests/powerpc
11316 N:      /pmac
11317 N:      powermac
11318 N:      powernv
11319 N:      [^a-z0-9]ps3
11320 N:      pseries
11321
11322 LINUX FOR POWERPC EMBEDDED MPC5XXX
11323 M:      Anatolij Gustschin <agust@denx.de>
11324 L:      linuxppc-dev@lists.ozlabs.org
11325 S:      Odd Fixes
11326 F:      arch/powerpc/platforms/512x/
11327 F:      arch/powerpc/platforms/52xx/
11328
11329 LINUX FOR POWERPC EMBEDDED PPC4XX
11330 L:      linuxppc-dev@lists.ozlabs.org
11331 S:      Orphan
11332 F:      arch/powerpc/platforms/40x/
11333 F:      arch/powerpc/platforms/44x/
11334
11335 LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
11336 M:      Scott Wood <oss@buserror.net>
11337 L:      linuxppc-dev@lists.ozlabs.org
11338 S:      Odd fixes
11339 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git
11340 F:      Documentation/devicetree/bindings/powerpc/fsl/
11341 F:      arch/powerpc/platforms/83xx/
11342 F:      arch/powerpc/platforms/85xx/
11343
11344 LINUX FOR POWERPC EMBEDDED PPC8XX
11345 M:      Christophe Leroy <christophe.leroy@csgroup.eu>
11346 L:      linuxppc-dev@lists.ozlabs.org
11347 S:      Maintained
11348 F:      arch/powerpc/platforms/8xx/
11349
11350 LINUX KERNEL DUMP TEST MODULE (LKDTM)
11351 M:      Kees Cook <keescook@chromium.org>
11352 S:      Maintained
11353 F:      drivers/misc/lkdtm/*
11354 F:      tools/testing/selftests/lkdtm/*
11355
11356 LINUX KERNEL MEMORY CONSISTENCY MODEL (LKMM)
11357 M:      Alan Stern <stern@rowland.harvard.edu>
11358 M:      Andrea Parri <parri.andrea@gmail.com>
11359 M:      Will Deacon <will@kernel.org>
11360 M:      Peter Zijlstra <peterz@infradead.org>
11361 M:      Boqun Feng <boqun.feng@gmail.com>
11362 M:      Nicholas Piggin <npiggin@gmail.com>
11363 M:      David Howells <dhowells@redhat.com>
11364 M:      Jade Alglave <j.alglave@ucl.ac.uk>
11365 M:      Luc Maranget <luc.maranget@inria.fr>
11366 M:      "Paul E. McKenney" <paulmck@kernel.org>
11367 R:      Akira Yokosawa <akiyks@gmail.com>
11368 R:      Daniel Lustig <dlustig@nvidia.com>
11369 R:      Joel Fernandes <joel@joelfernandes.org>
11370 L:      linux-kernel@vger.kernel.org
11371 L:      linux-arch@vger.kernel.org
11372 S:      Supported
11373 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
11374 F:      Documentation/atomic_bitops.txt
11375 F:      Documentation/atomic_t.txt
11376 F:      Documentation/core-api/refcount-vs-atomic.rst
11377 F:      Documentation/litmus-tests/
11378 F:      Documentation/memory-barriers.txt
11379 F:      tools/memory-model/
11380
11381 LIS3LV02D ACCELEROMETER DRIVER
11382 M:      Eric Piel <eric.piel@tremplin-utc.net>
11383 S:      Maintained
11384 F:      Documentation/misc-devices/lis3lv02d.rst
11385 F:      drivers/misc/lis3lv02d/
11386 F:      drivers/platform/x86/hp_accel.c
11387
11388 LIST KUNIT TEST
11389 M:      David Gow <davidgow@google.com>
11390 L:      linux-kselftest@vger.kernel.org
11391 L:      kunit-dev@googlegroups.com
11392 S:      Maintained
11393 F:      lib/list-test.c
11394
11395 LITEX PLATFORM
11396 M:      Karol Gugala <kgugala@antmicro.com>
11397 M:      Mateusz Holenko <mholenko@antmicro.com>
11398 M:      Gabriel Somlo <gsomlo@gmail.com>
11399 M:      Joel Stanley <joel@jms.id.au>
11400 S:      Maintained
11401 F:      Documentation/devicetree/bindings/*/litex,*.yaml
11402 F:      arch/openrisc/boot/dts/or1klitex.dts
11403 F:      include/linux/litex.h
11404 F:      drivers/tty/serial/liteuart.c
11405 F:      drivers/soc/litex/*
11406 F:      drivers/net/ethernet/litex/*
11407 F:      drivers/mmc/host/litex_mmc.c
11408 N:      litex
11409
11410 LIVE PATCHING
11411 M:      Josh Poimboeuf <jpoimboe@kernel.org>
11412 M:      Jiri Kosina <jikos@kernel.org>
11413 M:      Miroslav Benes <mbenes@suse.cz>
11414 M:      Petr Mladek <pmladek@suse.com>
11415 R:      Joe Lawrence <joe.lawrence@redhat.com>
11416 L:      live-patching@vger.kernel.org
11417 S:      Maintained
11418 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/livepatching/livepatching.git
11419 F:      Documentation/ABI/testing/sysfs-kernel-livepatch
11420 F:      Documentation/livepatch/
11421 F:      arch/powerpc/include/asm/livepatch.h
11422 F:      arch/s390/include/asm/livepatch.h
11423 F:      arch/x86/include/asm/livepatch.h
11424 F:      include/linux/livepatch.h
11425 F:      kernel/livepatch/
11426 F:      lib/livepatch/
11427 F:      samples/livepatch/
11428 F:      tools/testing/selftests/livepatch/
11429
11430 LLC (802.2)
11431 L:      netdev@vger.kernel.org
11432 S:      Odd fixes
11433 F:      include/linux/llc.h
11434 F:      include/net/llc*
11435 F:      include/uapi/linux/llc.h
11436 F:      net/llc/
11437
11438 LM73 HARDWARE MONITOR DRIVER
11439 M:      Guillaume Ligneul <guillaume.ligneul@gmail.com>
11440 L:      linux-hwmon@vger.kernel.org
11441 S:      Maintained
11442 F:      drivers/hwmon/lm73.c
11443
11444 LM78 HARDWARE MONITOR DRIVER
11445 M:      Jean Delvare <jdelvare@suse.com>
11446 L:      linux-hwmon@vger.kernel.org
11447 S:      Maintained
11448 F:      Documentation/hwmon/lm78.rst
11449 F:      drivers/hwmon/lm78.c
11450
11451 LM83 HARDWARE MONITOR DRIVER
11452 M:      Jean Delvare <jdelvare@suse.com>
11453 L:      linux-hwmon@vger.kernel.org
11454 S:      Maintained
11455 F:      Documentation/hwmon/lm83.rst
11456 F:      drivers/hwmon/lm83.c
11457
11458 LM90 HARDWARE MONITOR DRIVER
11459 M:      Jean Delvare <jdelvare@suse.com>
11460 L:      linux-hwmon@vger.kernel.org
11461 S:      Maintained
11462 F:      Documentation/devicetree/bindings/hwmon/national,lm90.yaml
11463 F:      Documentation/hwmon/lm90.rst
11464 F:      drivers/hwmon/lm90.c
11465 F:      include/dt-bindings/thermal/lm90.h
11466
11467 LM95234 HARDWARE MONITOR DRIVER
11468 M:      Guenter Roeck <linux@roeck-us.net>
11469 L:      linux-hwmon@vger.kernel.org
11470 S:      Maintained
11471 F:      Documentation/hwmon/lm95234.rst
11472 F:      drivers/hwmon/lm95234.c
11473
11474 LME2510 MEDIA DRIVER
11475 M:      Malcolm Priestley <tvboxspy@gmail.com>
11476 L:      linux-media@vger.kernel.org
11477 S:      Maintained
11478 W:      https://linuxtv.org
11479 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11480 F:      drivers/media/usb/dvb-usb-v2/lmedm04*
11481
11482 LOADPIN SECURITY MODULE
11483 M:      Kees Cook <keescook@chromium.org>
11484 S:      Supported
11485 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git lsm/loadpin
11486 F:      Documentation/admin-guide/LSM/LoadPin.rst
11487 F:      security/loadpin/
11488
11489 LOCKING PRIMITIVES
11490 M:      Peter Zijlstra <peterz@infradead.org>
11491 M:      Ingo Molnar <mingo@redhat.com>
11492 M:      Will Deacon <will@kernel.org>
11493 R:      Waiman Long <longman@redhat.com>
11494 R:      Boqun Feng <boqun.feng@gmail.com> (LOCKDEP)
11495 L:      linux-kernel@vger.kernel.org
11496 S:      Maintained
11497 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
11498 F:      Documentation/locking/
11499 F:      arch/*/include/asm/spinlock*.h
11500 F:      include/linux/lockdep.h
11501 F:      include/linux/mutex*.h
11502 F:      include/linux/rwlock*.h
11503 F:      include/linux/rwsem*.h
11504 F:      include/linux/seqlock.h
11505 F:      include/linux/spinlock*.h
11506 F:      kernel/locking/
11507 F:      lib/locking*.[ch]
11508 X:      kernel/locking/locktorture.c
11509
11510 LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
11511 M:      "Richard Russon (FlatCap)" <ldm@flatcap.org>
11512 L:      linux-ntfs-dev@lists.sourceforge.net
11513 S:      Maintained
11514 W:      http://www.linux-ntfs.org/content/view/19/37/
11515 F:      Documentation/admin-guide/ldm.rst
11516 F:      block/partitions/ldm.*
11517
11518 LOGITECH HID GAMING KEYBOARDS
11519 M:      Hans de Goede <hdegoede@redhat.com>
11520 L:      linux-input@vger.kernel.org
11521 S:      Maintained
11522 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
11523 F:      drivers/hid/hid-lg-g15.c
11524
11525 LONTIUM LT8912B MIPI TO HDMI BRIDGE
11526 M:      Adrien Grassein <adrien.grassein@gmail.com>
11527 S:      Maintained
11528 F:      Documentation/devicetree/bindings/display/bridge/lontium,lt8912b.yaml
11529 F:      drivers/gpu/drm/bridge/lontium-lt8912b.c
11530
11531 LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
11532 M:      Sathya Prakash <sathya.prakash@broadcom.com>
11533 M:      Sreekanth Reddy <sreekanth.reddy@broadcom.com>
11534 M:      Suganath Prabu Subramani <suganath-prabu.subramani@broadcom.com>
11535 L:      MPT-FusionLinux.pdl@broadcom.com
11536 L:      linux-scsi@vger.kernel.org
11537 S:      Supported
11538 W:      http://www.avagotech.com/support/
11539 F:      drivers/message/fusion/
11540 F:      drivers/scsi/mpt3sas/
11541
11542 LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
11543 M:      Matthew Wilcox <willy@infradead.org>
11544 L:      linux-scsi@vger.kernel.org
11545 S:      Maintained
11546 F:      drivers/scsi/sym53c8xx_2/
11547
11548 LTC1660 DAC DRIVER
11549 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
11550 L:      linux-iio@vger.kernel.org
11551 S:      Maintained
11552 F:      Documentation/devicetree/bindings/iio/dac/lltc,ltc1660.yaml
11553 F:      drivers/iio/dac/ltc1660.c
11554
11555 LTC2688 IIO DAC DRIVER
11556 M:      Nuno Sá <nuno.sa@analog.com>
11557 L:      linux-iio@vger.kernel.org
11558 S:      Supported
11559 W:      http://ez.analog.com/community/linux-device-drivers
11560 F:      Documentation/ABI/testing/sysfs-bus-iio-dac-ltc2688
11561 F:      Documentation/devicetree/bindings/iio/dac/adi,ltc2688.yaml
11562 F:      drivers/iio/dac/ltc2688.c
11563
11564 LTC2947 HARDWARE MONITOR DRIVER
11565 M:      Nuno Sá <nuno.sa@analog.com>
11566 L:      linux-hwmon@vger.kernel.org
11567 S:      Supported
11568 W:      https://ez.analog.com/linux-software-drivers
11569 F:      Documentation/devicetree/bindings/hwmon/adi,ltc2947.yaml
11570 F:      drivers/hwmon/ltc2947-core.c
11571 F:      drivers/hwmon/ltc2947-i2c.c
11572 F:      drivers/hwmon/ltc2947-spi.c
11573 F:      drivers/hwmon/ltc2947.h
11574
11575 LTC2983 IIO TEMPERATURE DRIVER
11576 M:      Nuno Sá <nuno.sa@analog.com>
11577 L:      linux-iio@vger.kernel.org
11578 S:      Supported
11579 W:      https://ez.analog.com/linux-software-drivers
11580 F:      Documentation/devicetree/bindings/iio/temperature/adi,ltc2983.yaml
11581 F:      drivers/iio/temperature/ltc2983.c
11582
11583 LTC4261 HARDWARE MONITOR DRIVER
11584 M:      Guenter Roeck <linux@roeck-us.net>
11585 L:      linux-hwmon@vger.kernel.org
11586 S:      Maintained
11587 F:      Documentation/hwmon/ltc4261.rst
11588 F:      drivers/hwmon/ltc4261.c
11589
11590 LTC4306 I2C MULTIPLEXER DRIVER
11591 M:      Michael Hennerich <michael.hennerich@analog.com>
11592 L:      linux-i2c@vger.kernel.org
11593 S:      Supported
11594 W:      https://ez.analog.com/linux-software-drivers
11595 F:      Documentation/devicetree/bindings/i2c/i2c-mux-ltc4306.txt
11596 F:      drivers/i2c/muxes/i2c-mux-ltc4306.c
11597
11598 LTP (Linux Test Project)
11599 M:      Mike Frysinger <vapier@gentoo.org>
11600 M:      Cyril Hrubis <chrubis@suse.cz>
11601 M:      Wanlong Gao <wanlong.gao@gmail.com>
11602 M:      Jan Stancek <jstancek@redhat.com>
11603 M:      Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com>
11604 M:      Alexey Kodanev <alexey.kodanev@oracle.com>
11605 L:      ltp@lists.linux.it (subscribers-only)
11606 S:      Maintained
11607 W:      http://linux-test-project.github.io/
11608 T:      git git://github.com/linux-test-project/ltp.git
11609
11610 LYNX 28G SERDES PHY DRIVER
11611 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
11612 L:      netdev@vger.kernel.org
11613 S:      Supported
11614 F:      Documentation/devicetree/bindings/phy/fsl,lynx-28g.yaml
11615 F:      drivers/phy/freescale/phy-fsl-lynx-28g.c
11616
11617 LYNX PCS MODULE
11618 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
11619 L:      netdev@vger.kernel.org
11620 S:      Supported
11621 F:      drivers/net/pcs/pcs-lynx.c
11622 F:      include/linux/pcs-lynx.h
11623
11624 M68K ARCHITECTURE
11625 M:      Geert Uytterhoeven <geert@linux-m68k.org>
11626 L:      linux-m68k@lists.linux-m68k.org
11627 S:      Maintained
11628 W:      http://www.linux-m68k.org/
11629 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
11630 F:      arch/m68k/
11631 F:      drivers/zorro/
11632
11633 M68K ON APPLE MACINTOSH
11634 M:      Joshua Thompson <funaho@jurai.org>
11635 L:      linux-m68k@lists.linux-m68k.org
11636 S:      Maintained
11637 W:      http://www.mac.linux-m68k.org/
11638 F:      arch/m68k/mac/
11639 F:      drivers/macintosh/adb-iop.c
11640 F:      drivers/macintosh/via-macii.c
11641
11642 M68K ON HP9000/300
11643 M:      Philip Blundell <philb@gnu.org>
11644 S:      Maintained
11645 W:      http://www.tazenda.demon.co.uk/phil/linux-hp
11646 F:      arch/m68k/hp300/
11647
11648 M88DS3103 MEDIA DRIVER
11649 M:      Antti Palosaari <crope@iki.fi>
11650 L:      linux-media@vger.kernel.org
11651 S:      Maintained
11652 W:      https://linuxtv.org
11653 W:      http://palosaari.fi/linux/
11654 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11655 T:      git git://linuxtv.org/anttip/media_tree.git
11656 F:      drivers/media/dvb-frontends/m88ds3103*
11657
11658 M88RS2000 MEDIA DRIVER
11659 M:      Malcolm Priestley <tvboxspy@gmail.com>
11660 L:      linux-media@vger.kernel.org
11661 S:      Maintained
11662 W:      https://linuxtv.org
11663 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11664 F:      drivers/media/dvb-frontends/m88rs2000*
11665
11666 MA901 MASTERKIT USB FM RADIO DRIVER
11667 M:      Alexey Klimov <klimov.linux@gmail.com>
11668 L:      linux-media@vger.kernel.org
11669 S:      Maintained
11670 T:      git git://linuxtv.org/media_tree.git
11671 F:      drivers/media/radio/radio-ma901.c
11672
11673 MAC80211
11674 M:      Johannes Berg <johannes@sipsolutions.net>
11675 L:      linux-wireless@vger.kernel.org
11676 S:      Maintained
11677 W:      https://wireless.wiki.kernel.org/
11678 Q:      https://patchwork.kernel.org/project/linux-wireless/list/
11679 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless.git
11680 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless-next.git
11681 F:      Documentation/networking/mac80211-injection.rst
11682 F:      Documentation/networking/mac80211_hwsim/mac80211_hwsim.rst
11683 F:      drivers/net/wireless/mac80211_hwsim.[ch]
11684 F:      include/net/mac80211.h
11685 F:      net/mac80211/
11686
11687 MAILBOX API
11688 M:      Jassi Brar <jassisinghbrar@gmail.com>
11689 L:      linux-kernel@vger.kernel.org
11690 S:      Maintained
11691 F:      drivers/mailbox/
11692 F:      include/linux/mailbox_client.h
11693 F:      include/linux/mailbox_controller.h
11694 F:      include/dt-bindings/mailbox/
11695 F:      Documentation/devicetree/bindings/mailbox/
11696
11697 MAILBOX ARM MHUv2
11698 M:      Viresh Kumar <viresh.kumar@linaro.org>
11699 M:      Tushar Khandelwal <Tushar.Khandelwal@arm.com>
11700 L:      linux-kernel@vger.kernel.org
11701 S:      Maintained
11702 F:      drivers/mailbox/arm_mhuv2.c
11703 F:      include/linux/mailbox/arm_mhuv2_message.h
11704 F:      Documentation/devicetree/bindings/mailbox/arm,mhuv2.yaml
11705
11706 MANAGEMENT COMPONENT TRANSPORT PROTOCOL (MCTP)
11707 M:      Jeremy Kerr <jk@codeconstruct.com.au>
11708 M:      Matt Johnston <matt@codeconstruct.com.au>
11709 L:      netdev@vger.kernel.org
11710 S:      Maintained
11711 F:      Documentation/networking/mctp.rst
11712 F:      drivers/net/mctp/
11713 F:      include/net/mctp.h
11714 F:      include/net/mctpdevice.h
11715 F:      include/net/netns/mctp.h
11716 F:      net/mctp/
11717
11718 MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
11719 M:      Michael Kerrisk <mtk.manpages@gmail.com>
11720 L:      linux-man@vger.kernel.org
11721 S:      Maintained
11722 W:      http://www.kernel.org/doc/man-pages
11723
11724 MARDUK (CREATOR CI40) DEVICE TREE SUPPORT
11725 M:      Rahul Bedarkar <rahulbedarkar89@gmail.com>
11726 L:      linux-mips@vger.kernel.org
11727 S:      Maintained
11728 F:      arch/mips/boot/dts/img/pistachio*
11729
11730 MARVELL 88E6XXX ETHERNET SWITCH FABRIC DRIVER
11731 M:      Andrew Lunn <andrew@lunn.ch>
11732 M:      Vivien Didelot <vivien.didelot@gmail.com>
11733 L:      netdev@vger.kernel.org
11734 S:      Maintained
11735 F:      Documentation/devicetree/bindings/net/dsa/marvell.txt
11736 F:      Documentation/networking/devlink/mv88e6xxx.rst
11737 F:      drivers/net/dsa/mv88e6xxx/
11738 F:      include/linux/dsa/mv88e6xxx.h
11739 F:      include/linux/platform_data/mv88e6xxx.h
11740
11741 MARVELL ARMADA 3700 PHY DRIVERS
11742 M:      Miquel Raynal <miquel.raynal@bootlin.com>
11743 S:      Maintained
11744 F:      Documentation/devicetree/bindings/phy/phy-mvebu-comphy.txt
11745 F:      Documentation/devicetree/bindings/phy/marvell,armada-3700-utmi-phy.yaml
11746 F:      drivers/phy/marvell/phy-mvebu-a3700-comphy.c
11747 F:      drivers/phy/marvell/phy-mvebu-a3700-utmi.c
11748
11749 MARVELL ARMADA 3700 SERIAL DRIVER
11750 M:      Pali Rohár <pali@kernel.org>
11751 S:      Maintained
11752 F:      Documentation/devicetree/bindings/clock/marvell,armada-3700-uart-clock.yaml
11753 F:      Documentation/devicetree/bindings/serial/mvebu-uart.txt
11754 F:      drivers/tty/serial/mvebu-uart.c
11755
11756 MARVELL ARMADA DRM SUPPORT
11757 M:      Russell King <linux@armlinux.org.uk>
11758 S:      Maintained
11759 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-devel
11760 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-fixes
11761 F:      Documentation/devicetree/bindings/display/armada/
11762 F:      drivers/gpu/drm/armada/
11763 F:      include/uapi/drm/armada_drm.h
11764
11765 MARVELL CRYPTO DRIVER
11766 M:      Boris Brezillon <bbrezillon@kernel.org>
11767 M:      Arnaud Ebalard <arno@natisbad.org>
11768 M:      Srujana Challa <schalla@marvell.com>
11769 L:      linux-crypto@vger.kernel.org
11770 S:      Maintained
11771 F:      drivers/crypto/marvell/
11772 F:      include/linux/soc/marvell/octeontx2/
11773
11774 MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
11775 M:      Mirko Lindner <mlindner@marvell.com>
11776 M:      Stephen Hemminger <stephen@networkplumber.org>
11777 L:      netdev@vger.kernel.org
11778 S:      Maintained
11779 F:      drivers/net/ethernet/marvell/sk*
11780
11781 MARVELL LIBERTAS WIRELESS DRIVER
11782 L:      libertas-dev@lists.infradead.org
11783 S:      Orphan
11784 F:      drivers/net/wireless/marvell/libertas/
11785
11786 MARVELL MACCHIATOBIN SUPPORT
11787 M:      Russell King <linux@armlinux.org.uk>
11788 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11789 S:      Maintained
11790 F:      arch/arm64/boot/dts/marvell/armada-8040-mcbin.dts
11791
11792 MARVELL MV643XX ETHERNET DRIVER
11793 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
11794 L:      netdev@vger.kernel.org
11795 S:      Maintained
11796 F:      drivers/net/ethernet/marvell/mv643xx_eth.*
11797 F:      include/linux/mv643xx.h
11798
11799 MARVELL MV88X3310 PHY DRIVER
11800 M:      Russell King <linux@armlinux.org.uk>
11801 M:      Marek Behún <kabel@kernel.org>
11802 L:      netdev@vger.kernel.org
11803 S:      Maintained
11804 F:      drivers/net/phy/marvell10g.c
11805
11806 MARVELL MVEBU THERMAL DRIVER
11807 M:      Miquel Raynal <miquel.raynal@bootlin.com>
11808 S:      Maintained
11809 F:      drivers/thermal/armada_thermal.c
11810
11811 MARVELL MVNETA ETHERNET DRIVER
11812 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
11813 L:      netdev@vger.kernel.org
11814 S:      Maintained
11815 F:      drivers/net/ethernet/marvell/mvneta.*
11816
11817 MARVELL MVPP2 ETHERNET DRIVER
11818 M:      Marcin Wojtas <mw@semihalf.com>
11819 M:      Russell King <linux@armlinux.org.uk>
11820 L:      netdev@vger.kernel.org
11821 S:      Maintained
11822 F:      Documentation/devicetree/bindings/net/marvell-pp2.txt
11823 F:      drivers/net/ethernet/marvell/mvpp2/
11824
11825 MARVELL MWIFIEX WIRELESS DRIVER
11826 M:      Amitkumar Karwar <amitkarwar@gmail.com>
11827 M:      Ganapathi Bhat <ganapathi017@gmail.com>
11828 M:      Sharvari Harisangam <sharvari.harisangam@nxp.com>
11829 M:      Xinming Hu <huxinming820@gmail.com>
11830 L:      linux-wireless@vger.kernel.org
11831 S:      Maintained
11832 F:      drivers/net/wireless/marvell/mwifiex/
11833
11834 MARVELL MWL8K WIRELESS DRIVER
11835 M:      Lennert Buytenhek <buytenh@wantstofly.org>
11836 L:      linux-wireless@vger.kernel.org
11837 S:      Odd Fixes
11838 F:      drivers/net/wireless/marvell/mwl8k.c
11839
11840 MARVELL NAND CONTROLLER DRIVER
11841 M:      Miquel Raynal <miquel.raynal@bootlin.com>
11842 L:      linux-mtd@lists.infradead.org
11843 S:      Maintained
11844 F:      Documentation/devicetree/bindings/mtd/marvell-nand.txt
11845 F:      drivers/mtd/nand/raw/marvell_nand.c
11846
11847 MARVELL OCTEONTX2 PHYSICAL FUNCTION DRIVER
11848 M:      Sunil Goutham <sgoutham@marvell.com>
11849 M:      Geetha sowjanya <gakula@marvell.com>
11850 M:      Subbaraya Sundeep <sbhatta@marvell.com>
11851 M:      hariprasad <hkelam@marvell.com>
11852 L:      netdev@vger.kernel.org
11853 S:      Supported
11854 F:      drivers/net/ethernet/marvell/octeontx2/nic/
11855 F:      include/linux/soc/marvell/octeontx2/
11856
11857 MARVELL OCTEONTX2 RVU ADMIN FUNCTION DRIVER
11858 M:      Sunil Goutham <sgoutham@marvell.com>
11859 M:      Linu Cherian <lcherian@marvell.com>
11860 M:      Geetha sowjanya <gakula@marvell.com>
11861 M:      Jerin Jacob <jerinj@marvell.com>
11862 M:      hariprasad <hkelam@marvell.com>
11863 M:      Subbaraya Sundeep <sbhatta@marvell.com>
11864 L:      netdev@vger.kernel.org
11865 S:      Supported
11866 F:      Documentation/networking/device_drivers/ethernet/marvell/octeontx2.rst
11867 F:      drivers/net/ethernet/marvell/octeontx2/af/
11868
11869 MARVELL PRESTERA ETHERNET SWITCH DRIVER
11870 M:      Taras Chornyi <tchornyi@marvell.com>
11871 S:      Supported
11872 W:      https://github.com/Marvell-switching/switchdev-prestera
11873 F:      drivers/net/ethernet/marvell/prestera/
11874
11875 MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
11876 M:      Nicolas Pitre <nico@fluxnic.net>
11877 S:      Odd Fixes
11878 F:      drivers/mmc/host/mvsdio.*
11879
11880 MARVELL USB MDIO CONTROLLER DRIVER
11881 M:      Tobias Waldekranz <tobias@waldekranz.com>
11882 L:      netdev@vger.kernel.org
11883 S:      Maintained
11884 F:      Documentation/devicetree/bindings/net/marvell,mvusb.yaml
11885 F:      drivers/net/mdio/mdio-mvusb.c
11886
11887 MARVELL XENON MMC/SD/SDIO HOST CONTROLLER DRIVER
11888 M:      Hu Ziji <huziji@marvell.com>
11889 L:      linux-mmc@vger.kernel.org
11890 S:      Supported
11891 F:      Documentation/devicetree/bindings/mmc/marvell,xenon-sdhci.yaml
11892 F:      drivers/mmc/host/sdhci-xenon*
11893
11894 MARVELL OCTEON ENDPOINT DRIVER
11895 M:      Veerasenareddy Burru <vburru@marvell.com>
11896 M:      Abhijit Ayarekar <aayarekar@marvell.com>
11897 L:      netdev@vger.kernel.org
11898 S:      Supported
11899 F:      drivers/net/ethernet/marvell/octeon_ep
11900
11901 MATROX FRAMEBUFFER DRIVER
11902 L:      linux-fbdev@vger.kernel.org
11903 S:      Orphan
11904 F:      drivers/video/fbdev/matrox/matroxfb_*
11905 F:      include/uapi/linux/matroxfb.h
11906
11907 MAX15301 DRIVER
11908 M:      Daniel Nilsson <daniel.nilsson@flex.com>
11909 L:      linux-hwmon@vger.kernel.org
11910 S:      Maintained
11911 F:      Documentation/hwmon/max15301.rst
11912 F:      drivers/hwmon/pmbus/max15301.c
11913
11914 MAX16065 HARDWARE MONITOR DRIVER
11915 M:      Guenter Roeck <linux@roeck-us.net>
11916 L:      linux-hwmon@vger.kernel.org
11917 S:      Maintained
11918 F:      Documentation/hwmon/max16065.rst
11919 F:      drivers/hwmon/max16065.c
11920
11921 MAX2175 SDR TUNER DRIVER
11922 M:      Ramesh Shanmugasundaram <rashanmu@gmail.com>
11923 L:      linux-media@vger.kernel.org
11924 S:      Maintained
11925 T:      git git://linuxtv.org/media_tree.git
11926 F:      Documentation/devicetree/bindings/media/i2c/max2175.txt
11927 F:      Documentation/userspace-api/media/drivers/max2175.rst
11928 F:      drivers/media/i2c/max2175*
11929 F:      include/uapi/linux/max2175.h
11930
11931 MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
11932 L:      linux-hwmon@vger.kernel.org
11933 S:      Orphan
11934 F:      Documentation/hwmon/max6650.rst
11935 F:      drivers/hwmon/max6650.c
11936
11937 MAX6697 HARDWARE MONITOR DRIVER
11938 M:      Guenter Roeck <linux@roeck-us.net>
11939 L:      linux-hwmon@vger.kernel.org
11940 S:      Maintained
11941 F:      Documentation/devicetree/bindings/hwmon/max6697.txt
11942 F:      Documentation/hwmon/max6697.rst
11943 F:      drivers/hwmon/max6697.c
11944 F:      include/linux/platform_data/max6697.h
11945
11946 MAX9286 QUAD GMSL DESERIALIZER DRIVER
11947 M:      Jacopo Mondi <jacopo+renesas@jmondi.org>
11948 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
11949 M:      Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
11950 M:      Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
11951 L:      linux-media@vger.kernel.org
11952 S:      Maintained
11953 F:      Documentation/devicetree/bindings/media/i2c/maxim,max9286.yaml
11954 F:      drivers/media/i2c/max9286.c
11955
11956 MAX96712 QUAD GMSL2 DESERIALIZER DRIVER
11957 M:      Niklas Söderlund <niklas.soderlund@ragnatech.se>
11958 L:      linux-media@vger.kernel.org
11959 S:      Maintained
11960 F:      drivers/staging/media/max96712/max96712.c
11961
11962 MAX9860 MONO AUDIO VOICE CODEC DRIVER
11963 M:      Peter Rosin <peda@axentia.se>
11964 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
11965 S:      Maintained
11966 F:      Documentation/devicetree/bindings/sound/max9860.txt
11967 F:      sound/soc/codecs/max9860.*
11968
11969 MAXBOTIX ULTRASONIC RANGER IIO DRIVER
11970 M:      Andreas Klinger <ak@it-klinger.de>
11971 L:      linux-iio@vger.kernel.org
11972 S:      Maintained
11973 F:      Documentation/devicetree/bindings/iio/proximity/maxbotix,mb1232.yaml
11974 F:      drivers/iio/proximity/mb1232.c
11975
11976 MAXIM MAX17040 FAMILY FUEL GAUGE DRIVERS
11977 R:      Iskren Chernev <iskren.chernev@gmail.com>
11978 R:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
11979 R:      Marek Szyprowski <m.szyprowski@samsung.com>
11980 R:      Matheus Castello <matheus@castello.eng.br>
11981 L:      linux-pm@vger.kernel.org
11982 S:      Maintained
11983 F:      Documentation/devicetree/bindings/power/supply/maxim,max17040.yaml
11984 F:      drivers/power/supply/max17040_battery.c
11985
11986 MAXIM MAX17042 FAMILY FUEL GAUGE DRIVERS
11987 R:      Hans de Goede <hdegoede@redhat.com>
11988 R:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
11989 R:      Marek Szyprowski <m.szyprowski@samsung.com>
11990 R:      Sebastian Krzyszkowiak <sebastian.krzyszkowiak@puri.sm>
11991 R:      Purism Kernel Team <kernel@puri.sm>
11992 L:      linux-pm@vger.kernel.org
11993 S:      Maintained
11994 F:      Documentation/devicetree/bindings/power/supply/maxim,max17042.yaml
11995 F:      drivers/power/supply/max17042_battery.c
11996
11997 MAXIM MAX20086 CAMERA POWER PROTECTOR DRIVER
11998 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11999 L:      linux-kernel@vger.kernel.org
12000 S:      Maintained
12001 F:      Documentation/devicetree/bindings/regulator/maxim,max20086.yaml
12002 F:      drivers/regulator/max20086-regulator.c
12003
12004 MAXIM MAX77650 PMIC MFD DRIVER
12005 M:      Bartosz Golaszewski <brgl@bgdev.pl>
12006 L:      linux-kernel@vger.kernel.org
12007 S:      Maintained
12008 F:      Documentation/devicetree/bindings/*/*max77650.yaml
12009 F:      Documentation/devicetree/bindings/*/max77650*.yaml
12010 F:      drivers/gpio/gpio-max77650.c
12011 F:      drivers/input/misc/max77650-onkey.c
12012 F:      drivers/leds/leds-max77650.c
12013 F:      drivers/mfd/max77650.c
12014 F:      drivers/power/supply/max77650-charger.c
12015 F:      drivers/regulator/max77650-regulator.c
12016 F:      include/linux/mfd/max77650.h
12017
12018 MAXIM MAX77714 PMIC MFD DRIVER
12019 M:      Luca Ceresoli <luca@lucaceresoli.net>
12020 S:      Maintained
12021 F:      Documentation/devicetree/bindings/mfd/maxim,max77714.yaml
12022 F:      drivers/mfd/max77714.c
12023 F:      include/linux/mfd/max77714.h
12024
12025 MAXIM MAX77802 PMIC REGULATOR DEVICE DRIVER
12026 M:      Javier Martinez Canillas <javier@dowhile0.org>
12027 L:      linux-kernel@vger.kernel.org
12028 S:      Supported
12029 F:      Documentation/devicetree/bindings/*/*max77802.yaml
12030 F:      drivers/regulator/max77802-regulator.c
12031 F:      include/dt-bindings/*/*max77802.h
12032
12033 MAXIM MAX77976 BATTERY CHARGER
12034 M:      Luca Ceresoli <luca@lucaceresoli.net>
12035 S:      Supported
12036 F:      Documentation/devicetree/bindings/power/supply/maxim,max77976.yaml
12037 F:      drivers/power/supply/max77976_charger.c
12038
12039 MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS
12040 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
12041 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
12042 L:      linux-pm@vger.kernel.org
12043 S:      Supported
12044 B:      mailto:linux-samsung-soc@vger.kernel.org
12045 F:      Documentation/devicetree/bindings/power/supply/maxim,max14577.yaml
12046 F:      Documentation/devicetree/bindings/power/supply/maxim,max77693.yaml
12047 F:      drivers/power/supply/max14577_charger.c
12048 F:      drivers/power/supply/max77693_charger.c
12049
12050 MAXIM PMIC AND MUIC DRIVERS FOR EXYNOS BASED BOARDS
12051 M:      Chanwoo Choi <cw00.choi@samsung.com>
12052 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
12053 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
12054 L:      linux-kernel@vger.kernel.org
12055 S:      Supported
12056 B:      mailto:linux-samsung-soc@vger.kernel.org
12057 F:      Documentation/devicetree/bindings/*/maxim,max14577.yaml
12058 F:      Documentation/devicetree/bindings/*/maxim,max77686.yaml
12059 F:      Documentation/devicetree/bindings/*/maxim,max77693.yaml
12060 F:      Documentation/devicetree/bindings/*/maxim,max77843.yaml
12061 F:      Documentation/devicetree/bindings/clock/maxim,max77686.txt
12062 F:      Documentation/devicetree/bindings/mfd/max77693.txt
12063 F:      drivers/*/*max77843.c
12064 F:      drivers/*/max14577*.c
12065 F:      drivers/*/max77686*.c
12066 F:      drivers/*/max77693*.c
12067 F:      drivers/clk/clk-max77686.c
12068 F:      drivers/extcon/extcon-max14577.c
12069 F:      drivers/extcon/extcon-max77693.c
12070 F:      drivers/rtc/rtc-max77686.c
12071 F:      include/linux/mfd/max14577*.h
12072 F:      include/linux/mfd/max77686*.h
12073 F:      include/linux/mfd/max77693*.h
12074
12075 MAXIRADIO FM RADIO RECEIVER DRIVER
12076 M:      Hans Verkuil <hverkuil@xs4all.nl>
12077 L:      linux-media@vger.kernel.org
12078 S:      Maintained
12079 W:      https://linuxtv.org
12080 T:      git git://linuxtv.org/media_tree.git
12081 F:      drivers/media/radio/radio-maxiradio*
12082
12083 MAXLINEAR ETHERNET PHY DRIVER
12084 M:      Xu Liang <lxu@maxlinear.com>
12085 L:      netdev@vger.kernel.org
12086 S:      Supported
12087 F:      drivers/net/phy/mxl-gpy.c
12088
12089 MCBA MICROCHIP CAN BUS ANALYZER TOOL DRIVER
12090 R:      Yasushi SHOJI <yashi@spacecubics.com>
12091 L:      linux-can@vger.kernel.org
12092 S:      Maintained
12093 F:      drivers/net/can/usb/mcba_usb.c
12094
12095 MCAN MMIO DEVICE DRIVER
12096 M:      Chandrasekar Ramakrishnan <rcsekar@samsung.com>
12097 L:      linux-can@vger.kernel.org
12098 S:      Maintained
12099 F:      Documentation/devicetree/bindings/net/can/bosch,m_can.yaml
12100 F:      drivers/net/can/m_can/m_can.c
12101 F:      drivers/net/can/m_can/m_can.h
12102 F:      drivers/net/can/m_can/m_can_platform.c
12103
12104 MCP2221A MICROCHIP USB-HID TO I2C BRIDGE DRIVER
12105 M:      Rishi Gupta <gupt21@gmail.com>
12106 L:      linux-i2c@vger.kernel.org
12107 L:      linux-input@vger.kernel.org
12108 S:      Maintained
12109 F:      drivers/hid/hid-mcp2221.c
12110
12111 MCP251XFD SPI-CAN NETWORK DRIVER
12112 M:      Marc Kleine-Budde <mkl@pengutronix.de>
12113 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
12114 R:      Thomas Kopp <thomas.kopp@microchip.com>
12115 L:      linux-can@vger.kernel.org
12116 S:      Maintained
12117 F:      Documentation/devicetree/bindings/net/can/microchip,mcp251xfd.yaml
12118 F:      drivers/net/can/spi/mcp251xfd/
12119
12120 MCP4018 AND MCP4531 MICROCHIP DIGITAL POTENTIOMETER DRIVERS
12121 M:      Peter Rosin <peda@axentia.se>
12122 L:      linux-iio@vger.kernel.org
12123 S:      Maintained
12124 F:      Documentation/ABI/testing/sysfs-bus-iio-potentiometer-mcp4531
12125 F:      drivers/iio/potentiometer/mcp4018.c
12126 F:      drivers/iio/potentiometer/mcp4531.c
12127
12128 MCR20A IEEE-802.15.4 RADIO DRIVER
12129 M:      Xue Liu <liuxuenetmail@gmail.com>
12130 L:      linux-wpan@vger.kernel.org
12131 S:      Maintained
12132 W:      https://github.com/xueliu/mcr20a-linux
12133 F:      Documentation/devicetree/bindings/net/ieee802154/mcr20a.txt
12134 F:      drivers/net/ieee802154/mcr20a.c
12135 F:      drivers/net/ieee802154/mcr20a.h
12136
12137 MEASUREMENT COMPUTING CIO-DAC IIO DRIVER
12138 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
12139 L:      linux-iio@vger.kernel.org
12140 S:      Maintained
12141 F:      drivers/iio/dac/cio-dac.c
12142
12143 MEDIA CONTROLLER FRAMEWORK
12144 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
12145 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12146 L:      linux-media@vger.kernel.org
12147 S:      Supported
12148 W:      https://www.linuxtv.org
12149 T:      git git://linuxtv.org/media_tree.git
12150 F:      drivers/media/mc/
12151 F:      include/media/media-*.h
12152 F:      include/uapi/linux/media.h
12153
12154 MEDIA DRIVER FOR FREESCALE IMX PXP
12155 M:      Philipp Zabel <p.zabel@pengutronix.de>
12156 L:      linux-media@vger.kernel.org
12157 S:      Maintained
12158 T:      git git://linuxtv.org/media_tree.git
12159 F:      drivers/media/platform/nxp/imx-pxp.[ch]
12160
12161 MEDIA DRIVERS FOR ASCOT2E
12162 M:      Sergey Kozlov <serjk@netup.ru>
12163 M:      Abylay Ospan <aospan@netup.ru>
12164 L:      linux-media@vger.kernel.org
12165 S:      Supported
12166 W:      https://linuxtv.org
12167 W:      http://netup.tv/
12168 T:      git git://linuxtv.org/media_tree.git
12169 F:      drivers/media/dvb-frontends/ascot2e*
12170
12171 MEDIA DRIVERS FOR CXD2099AR CI CONTROLLERS
12172 M:      Jasmin Jessich <jasmin@anw.at>
12173 L:      linux-media@vger.kernel.org
12174 S:      Maintained
12175 W:      https://linuxtv.org
12176 T:      git git://linuxtv.org/media_tree.git
12177 F:      drivers/media/dvb-frontends/cxd2099*
12178
12179 MEDIA DRIVERS FOR CXD2841ER
12180 M:      Sergey Kozlov <serjk@netup.ru>
12181 M:      Abylay Ospan <aospan@netup.ru>
12182 L:      linux-media@vger.kernel.org
12183 S:      Supported
12184 W:      https://linuxtv.org
12185 W:      http://netup.tv/
12186 T:      git git://linuxtv.org/media_tree.git
12187 F:      drivers/media/dvb-frontends/cxd2841er*
12188
12189 MEDIA DRIVERS FOR CXD2880
12190 M:      Yasunari Takiguchi <Yasunari.Takiguchi@sony.com>
12191 L:      linux-media@vger.kernel.org
12192 S:      Supported
12193 W:      http://linuxtv.org/
12194 T:      git git://linuxtv.org/media_tree.git
12195 F:      drivers/media/dvb-frontends/cxd2880/*
12196 F:      drivers/media/spi/cxd2880*
12197
12198 MEDIA DRIVERS FOR DIGITAL DEVICES PCIE DEVICES
12199 L:      linux-media@vger.kernel.org
12200 S:      Orphan
12201 W:      https://linuxtv.org
12202 T:      git git://linuxtv.org/media_tree.git
12203 F:      drivers/media/pci/ddbridge/*
12204
12205 MEDIA DRIVERS FOR FREESCALE IMX
12206 M:      Steve Longerbeam <slongerbeam@gmail.com>
12207 M:      Philipp Zabel <p.zabel@pengutronix.de>
12208 L:      linux-media@vger.kernel.org
12209 S:      Maintained
12210 T:      git git://linuxtv.org/media_tree.git
12211 F:      Documentation/admin-guide/media/imx.rst
12212 F:      Documentation/devicetree/bindings/media/imx.txt
12213 F:      drivers/staging/media/imx/
12214 F:      include/linux/imx-media.h
12215 F:      include/media/imx.h
12216
12217 MEDIA DRIVERS FOR FREESCALE IMX7
12218 M:      Rui Miguel Silva <rmfrfs@gmail.com>
12219 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12220 L:      linux-media@vger.kernel.org
12221 S:      Maintained
12222 T:      git git://linuxtv.org/media_tree.git
12223 F:      Documentation/admin-guide/media/imx7.rst
12224 F:      Documentation/devicetree/bindings/media/nxp,imx-mipi-csi2.yaml
12225 F:      Documentation/devicetree/bindings/media/nxp,imx7-csi.yaml
12226 F:      drivers/media/platform/nxp/imx-mipi-csis.c
12227 F:      drivers/staging/media/imx/imx7-media-csi.c
12228
12229 MEDIA DRIVERS FOR HELENE
12230 M:      Abylay Ospan <aospan@netup.ru>
12231 L:      linux-media@vger.kernel.org
12232 S:      Supported
12233 W:      https://linuxtv.org
12234 W:      http://netup.tv/
12235 T:      git git://linuxtv.org/media_tree.git
12236 F:      drivers/media/dvb-frontends/helene*
12237
12238 MEDIA DRIVERS FOR HORUS3A
12239 M:      Sergey Kozlov <serjk@netup.ru>
12240 M:      Abylay Ospan <aospan@netup.ru>
12241 L:      linux-media@vger.kernel.org
12242 S:      Supported
12243 W:      https://linuxtv.org
12244 W:      http://netup.tv/
12245 T:      git git://linuxtv.org/media_tree.git
12246 F:      drivers/media/dvb-frontends/horus3a*
12247
12248 MEDIA DRIVERS FOR LNBH25
12249 M:      Sergey Kozlov <serjk@netup.ru>
12250 M:      Abylay Ospan <aospan@netup.ru>
12251 L:      linux-media@vger.kernel.org
12252 S:      Supported
12253 W:      https://linuxtv.org
12254 W:      http://netup.tv/
12255 T:      git git://linuxtv.org/media_tree.git
12256 F:      drivers/media/dvb-frontends/lnbh25*
12257
12258 MEDIA DRIVERS FOR MXL5XX TUNER DEMODULATORS
12259 L:      linux-media@vger.kernel.org
12260 S:      Orphan
12261 W:      https://linuxtv.org
12262 T:      git git://linuxtv.org/media_tree.git
12263 F:      drivers/media/dvb-frontends/mxl5xx*
12264
12265 MEDIA DRIVERS FOR NETUP PCI UNIVERSAL DVB devices
12266 M:      Sergey Kozlov <serjk@netup.ru>
12267 M:      Abylay Ospan <aospan@netup.ru>
12268 L:      linux-media@vger.kernel.org
12269 S:      Supported
12270 W:      https://linuxtv.org
12271 W:      http://netup.tv/
12272 T:      git git://linuxtv.org/media_tree.git
12273 F:      drivers/media/pci/netup_unidvb/*
12274
12275 MEDIA DRIVERS FOR NVIDIA TEGRA - VDE
12276 M:      Dmitry Osipenko <digetx@gmail.com>
12277 L:      linux-media@vger.kernel.org
12278 L:      linux-tegra@vger.kernel.org
12279 S:      Maintained
12280 T:      git git://linuxtv.org/media_tree.git
12281 F:      Documentation/devicetree/bindings/media/nvidia,tegra-vde.yaml
12282 F:      drivers/media/platform/nvidia/tegra-vde/
12283
12284 MEDIA DRIVERS FOR RENESAS - CEU
12285 M:      Jacopo Mondi <jacopo@jmondi.org>
12286 L:      linux-media@vger.kernel.org
12287 L:      linux-renesas-soc@vger.kernel.org
12288 S:      Supported
12289 T:      git git://linuxtv.org/media_tree.git
12290 F:      Documentation/devicetree/bindings/media/renesas,ceu.yaml
12291 F:      drivers/media/platform/renesas/renesas-ceu.c
12292 F:      include/media/drv-intf/renesas-ceu.h
12293
12294 MEDIA DRIVERS FOR RENESAS - DRIF
12295 M:      Fabrizio Castro <fabrizio.castro.jz@renesas.com>
12296 L:      linux-media@vger.kernel.org
12297 L:      linux-renesas-soc@vger.kernel.org
12298 S:      Supported
12299 T:      git git://linuxtv.org/media_tree.git
12300 F:      Documentation/devicetree/bindings/media/renesas,drif.yaml
12301 F:      drivers/media/platform/renesas/rcar_drif.c
12302
12303 MEDIA DRIVERS FOR RENESAS - FCP
12304 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12305 L:      linux-media@vger.kernel.org
12306 L:      linux-renesas-soc@vger.kernel.org
12307 S:      Supported
12308 T:      git git://linuxtv.org/media_tree.git
12309 F:      Documentation/devicetree/bindings/media/renesas,fcp.yaml
12310 F:      drivers/media/platform/renesas/rcar-fcp.c
12311 F:      include/media/rcar-fcp.h
12312
12313 MEDIA DRIVERS FOR RENESAS - FDP1
12314 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
12315 L:      linux-media@vger.kernel.org
12316 L:      linux-renesas-soc@vger.kernel.org
12317 S:      Supported
12318 T:      git git://linuxtv.org/media_tree.git
12319 F:      Documentation/devicetree/bindings/media/renesas,fdp1.yaml
12320 F:      drivers/media/platform/renesas/rcar_fdp1.c
12321
12322 MEDIA DRIVERS FOR RENESAS - VIN
12323 M:      Niklas Söderlund <niklas.soderlund@ragnatech.se>
12324 L:      linux-media@vger.kernel.org
12325 L:      linux-renesas-soc@vger.kernel.org
12326 S:      Supported
12327 T:      git git://linuxtv.org/media_tree.git
12328 F:      Documentation/devicetree/bindings/media/renesas,csi2.yaml
12329 F:      Documentation/devicetree/bindings/media/renesas,isp.yaml
12330 F:      Documentation/devicetree/bindings/media/renesas,vin.yaml
12331 F:      drivers/media/platform/renesas/rcar-isp.c
12332 F:      drivers/media/platform/renesas/rcar-vin/
12333
12334 MEDIA DRIVERS FOR RENESAS - VSP1
12335 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12336 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
12337 L:      linux-media@vger.kernel.org
12338 L:      linux-renesas-soc@vger.kernel.org
12339 S:      Supported
12340 T:      git git://linuxtv.org/media_tree.git
12341 F:      Documentation/devicetree/bindings/media/renesas,vsp1.yaml
12342 F:      drivers/media/platform/renesas/vsp1/
12343
12344 MEDIA DRIVERS FOR ST STV0910 DEMODULATOR ICs
12345 L:      linux-media@vger.kernel.org
12346 S:      Orphan
12347 W:      https://linuxtv.org
12348 T:      git git://linuxtv.org/media_tree.git
12349 F:      drivers/media/dvb-frontends/stv0910*
12350
12351 MEDIA DRIVERS FOR ST STV6111 TUNER ICs
12352 L:      linux-media@vger.kernel.org
12353 S:      Orphan
12354 W:      https://linuxtv.org
12355 T:      git git://linuxtv.org/media_tree.git
12356 F:      drivers/media/dvb-frontends/stv6111*
12357
12358 MEDIA DRIVERS FOR STM32 - DCMI
12359 M:      Hugues Fruchet <hugues.fruchet@foss.st.com>
12360 L:      linux-media@vger.kernel.org
12361 S:      Supported
12362 T:      git git://linuxtv.org/media_tree.git
12363 F:      Documentation/devicetree/bindings/media/st,stm32-dcmi.yaml
12364 F:      drivers/media/platform/st/stm32/stm32-dcmi.c
12365
12366 MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
12367 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
12368 L:      linux-media@vger.kernel.org
12369 S:      Maintained
12370 W:      https://linuxtv.org
12371 Q:      http://patchwork.kernel.org/project/linux-media/list/
12372 T:      git git://linuxtv.org/media_tree.git
12373 F:      Documentation/admin-guide/media/
12374 F:      Documentation/devicetree/bindings/media/
12375 F:      Documentation/driver-api/media/
12376 F:      Documentation/userspace-api/media/
12377 F:      drivers/media/
12378 F:      drivers/staging/media/
12379 F:      include/linux/platform_data/media/
12380 F:      include/media/
12381 F:      include/uapi/linux/dvb/
12382 F:      include/uapi/linux/ivtv*
12383 F:      include/uapi/linux/media.h
12384 F:      include/uapi/linux/meye.h
12385 F:      include/uapi/linux/uvcvideo.h
12386 F:      include/uapi/linux/v4l2-*
12387 F:      include/uapi/linux/videodev2.h
12388
12389 MEDIATEK BLUETOOTH DRIVER
12390 M:      Sean Wang <sean.wang@mediatek.com>
12391 L:      linux-bluetooth@vger.kernel.org
12392 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
12393 S:      Maintained
12394 F:      Documentation/devicetree/bindings/net/mediatek-bluetooth.txt
12395 F:      drivers/bluetooth/btmtkuart.c
12396
12397 MEDIATEK BOARD LEVEL SHUTDOWN DRIVERS
12398 M:      Sean Wang <sean.wang@mediatek.com>
12399 L:      linux-pm@vger.kernel.org
12400 S:      Maintained
12401 F:      Documentation/devicetree/bindings/power/reset/mt6323-poweroff.txt
12402 F:      drivers/power/reset/mt6323-poweroff.c
12403
12404 MEDIATEK CIR DRIVER
12405 M:      Sean Wang <sean.wang@mediatek.com>
12406 S:      Maintained
12407 F:      drivers/media/rc/mtk-cir.c
12408
12409 MEDIATEK DMA DRIVER
12410 M:      Sean Wang <sean.wang@mediatek.com>
12411 L:      dmaengine@vger.kernel.org
12412 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12413 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
12414 S:      Maintained
12415 F:      Documentation/devicetree/bindings/dma/mtk-*
12416 F:      drivers/dma/mediatek/
12417
12418 MEDIATEK ETHERNET DRIVER
12419 M:      Felix Fietkau <nbd@nbd.name>
12420 M:      John Crispin <john@phrozen.org>
12421 M:      Sean Wang <sean.wang@mediatek.com>
12422 M:      Mark Lee <Mark-MC.Lee@mediatek.com>
12423 L:      netdev@vger.kernel.org
12424 S:      Maintained
12425 F:      drivers/net/ethernet/mediatek/
12426
12427 MEDIATEK I2C CONTROLLER DRIVER
12428 M:      Qii Wang <qii.wang@mediatek.com>
12429 L:      linux-i2c@vger.kernel.org
12430 S:      Maintained
12431 F:      Documentation/devicetree/bindings/i2c/i2c-mt65xx.yaml
12432 F:      drivers/i2c/busses/i2c-mt65xx.c
12433
12434 MEDIATEK IOMMU DRIVER
12435 M:      Yong Wu <yong.wu@mediatek.com>
12436 L:      iommu@lists.linux-foundation.org
12437 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
12438 S:      Supported
12439 F:      Documentation/devicetree/bindings/iommu/mediatek*
12440 F:      drivers/iommu/mtk_iommu*
12441 F:      include/dt-bindings/memory/mt*-port.h
12442
12443 MEDIATEK JPEG DRIVER
12444 M:      Bin Liu <bin.liu@mediatek.com>
12445 S:      Supported
12446 F:      Documentation/devicetree/bindings/media/mediatek-jpeg-*.yaml
12447 F:      drivers/media/platform/mediatek/jpeg/
12448
12449 MEDIATEK MDP DRIVER
12450 M:      Minghsiu Tsai <minghsiu.tsai@mediatek.com>
12451 M:      Houlong Wei <houlong.wei@mediatek.com>
12452 M:      Andrew-CT Chen <andrew-ct.chen@mediatek.com>
12453 S:      Supported
12454 F:      Documentation/devicetree/bindings/media/mediatek-mdp.txt
12455 F:      drivers/media/platform/mediatek/mdp/
12456 F:      drivers/media/platform/mediatek/vpu/
12457
12458 MEDIATEK MEDIA DRIVER
12459 M:      Tiffany Lin <tiffany.lin@mediatek.com>
12460 M:      Andrew-CT Chen <andrew-ct.chen@mediatek.com>
12461 S:      Supported
12462 F:      Documentation/devicetree/bindings/media/mediatek,vcodec*.yaml
12463 F:      Documentation/devicetree/bindings/media/mediatek-vpu.txt
12464 F:      drivers/media/platform/mediatek/vcodec/
12465 F:      drivers/media/platform/mediatek/vpu/
12466
12467 MEDIATEK MMC/SD/SDIO DRIVER
12468 M:      Chaotian Jing <chaotian.jing@mediatek.com>
12469 S:      Maintained
12470 F:      Documentation/devicetree/bindings/mmc/mtk-sd.yaml
12471 F:      drivers/mmc/host/mtk-sd.c
12472
12473 MEDIATEK MT76 WIRELESS LAN DRIVER
12474 M:      Felix Fietkau <nbd@nbd.name>
12475 M:      Lorenzo Bianconi <lorenzo@kernel.org>
12476 M:      Ryder Lee <ryder.lee@mediatek.com>
12477 R:      Shayne Chen <shayne.chen@mediatek.com>
12478 R:      Sean Wang <sean.wang@mediatek.com>
12479 L:      linux-wireless@vger.kernel.org
12480 S:      Maintained
12481 F:      Documentation/devicetree/bindings/net/wireless/mediatek,mt76.yaml
12482 F:      drivers/net/wireless/mediatek/mt76/
12483
12484 MEDIATEK MT7601U WIRELESS LAN DRIVER
12485 M:      Jakub Kicinski <kubakici@wp.pl>
12486 L:      linux-wireless@vger.kernel.org
12487 S:      Maintained
12488 F:      drivers/net/wireless/mediatek/mt7601u/
12489
12490 MEDIATEK MT7621 CLOCK DRIVER
12491 M:      Sergio Paracuellos <sergio.paracuellos@gmail.com>
12492 S:      Maintained
12493 F:      Documentation/devicetree/bindings/clock/mediatek,mt7621-sysc.yaml
12494 F:      drivers/clk/ralink/clk-mt7621.c
12495
12496 MEDIATEK MT7621/28/88 I2C DRIVER
12497 M:      Stefan Roese <sr@denx.de>
12498 L:      linux-i2c@vger.kernel.org
12499 S:      Maintained
12500 F:      Documentation/devicetree/bindings/i2c/i2c-mt7621.txt
12501 F:      drivers/i2c/busses/i2c-mt7621.c
12502
12503 MEDIATEK MT7621 PCIE CONTROLLER DRIVER
12504 M:      Sergio Paracuellos <sergio.paracuellos@gmail.com>
12505 S:      Maintained
12506 F:      Documentation/devicetree/bindings/pci/mediatek,mt7621-pcie.yaml
12507 F:      drivers/pci/controller/pcie-mt7621.c
12508
12509 MEDIATEK MT7621 PHY PCI DRIVER
12510 M:      Sergio Paracuellos <sergio.paracuellos@gmail.com>
12511 S:      Maintained
12512 F:      Documentation/devicetree/bindings/phy/mediatek,mt7621-pci-phy.yaml
12513 F:      drivers/phy/ralink/phy-mt7621-pci.c
12514
12515 MEDIATEK NAND CONTROLLER DRIVER
12516 L:      linux-mtd@lists.infradead.org
12517 S:      Orphan
12518 F:      Documentation/devicetree/bindings/mtd/mtk-nand.txt
12519 F:      drivers/mtd/nand/raw/mtk_*
12520
12521 MEDIATEK PMIC LED DRIVER
12522 M:      Sean Wang <sean.wang@mediatek.com>
12523 S:      Maintained
12524 F:      Documentation/devicetree/bindings/leds/leds-mt6323.txt
12525 F:      drivers/leds/leds-mt6323.c
12526
12527 MEDIATEK RANDOM NUMBER GENERATOR SUPPORT
12528 M:      Sean Wang <sean.wang@mediatek.com>
12529 S:      Maintained
12530 F:      drivers/char/hw_random/mtk-rng.c
12531
12532 MEDIATEK SMI DRIVER
12533 M:      Yong Wu <yong.wu@mediatek.com>
12534 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
12535 S:      Supported
12536 F:      Documentation/devicetree/bindings/memory-controllers/mediatek,smi*
12537 F:      drivers/memory/mtk-smi.c
12538 F:      include/soc/mediatek/smi.h
12539
12540 MEDIATEK SWITCH DRIVER
12541 M:      Sean Wang <sean.wang@mediatek.com>
12542 M:      Landen Chao <Landen.Chao@mediatek.com>
12543 M:      DENG Qingfang <dqfext@gmail.com>
12544 L:      netdev@vger.kernel.org
12545 S:      Maintained
12546 F:      drivers/net/dsa/mt7530.*
12547 F:      net/dsa/tag_mtk.c
12548
12549 MEDIATEK T7XX 5G WWAN MODEM DRIVER
12550 M:      Chandrashekar Devegowda <chandrashekar.devegowda@intel.com>
12551 M:      Intel Corporation <linuxwwan@intel.com>
12552 R:      Chiranjeevi Rapolu <chiranjeevi.rapolu@linux.intel.com>
12553 R:      Liu Haijun <haijun.liu@mediatek.com>
12554 R:      M Chetan Kumar <m.chetan.kumar@linux.intel.com>
12555 R:      Ricardo Martinez <ricardo.martinez@linux.intel.com>
12556 L:      netdev@vger.kernel.org
12557 S:      Supported
12558 F:      drivers/net/wwan/t7xx/
12559
12560 MEDIATEK USB3 DRD IP DRIVER
12561 M:      Chunfeng Yun <chunfeng.yun@mediatek.com>
12562 L:      linux-usb@vger.kernel.org
12563 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12564 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
12565 S:      Maintained
12566 F:      Documentation/devicetree/bindings/usb/mediatek,*
12567 F:      drivers/usb/host/xhci-mtk*
12568 F:      drivers/usb/mtu3/
12569
12570 MEGACHIPS STDPXXXX-GE-B850V3-FW LVDS/DP++ BRIDGES
12571 M:      Peter Senna Tschudin <peter.senna@gmail.com>
12572 M:      Martin Donnelly <martin.donnelly@ge.com>
12573 M:      Martyn Welch <martyn.welch@collabora.co.uk>
12574 S:      Maintained
12575 F:      Documentation/devicetree/bindings/display/bridge/megachips-stdpxxxx-ge-b850v3-fw.txt
12576 F:      drivers/gpu/drm/bridge/megachips-stdpxxxx-ge-b850v3-fw.c
12577
12578 MEGARAID SCSI/SAS DRIVERS
12579 M:      Kashyap Desai <kashyap.desai@broadcom.com>
12580 M:      Sumit Saxena <sumit.saxena@broadcom.com>
12581 M:      Shivasharan S <shivasharan.srikanteshwara@broadcom.com>
12582 L:      megaraidlinux.pdl@broadcom.com
12583 L:      linux-scsi@vger.kernel.org
12584 S:      Maintained
12585 W:      http://www.avagotech.com/support/
12586 F:      Documentation/scsi/megaraid.rst
12587 F:      drivers/scsi/megaraid.*
12588 F:      drivers/scsi/megaraid/
12589
12590 MELEXIS MLX90614 DRIVER
12591 M:      Crt Mori <cmo@melexis.com>
12592 L:      linux-iio@vger.kernel.org
12593 S:      Supported
12594 W:      http://www.melexis.com
12595 F:      drivers/iio/temperature/mlx90614.c
12596
12597 MELEXIS MLX90632 DRIVER
12598 M:      Crt Mori <cmo@melexis.com>
12599 L:      linux-iio@vger.kernel.org
12600 S:      Supported
12601 W:      http://www.melexis.com
12602 F:      drivers/iio/temperature/mlx90632.c
12603
12604 MELFAS MIP4 TOUCHSCREEN DRIVER
12605 M:      Sangwon Jee <jeesw@melfas.com>
12606 S:      Supported
12607 W:      http://www.melfas.com
12608 F:      Documentation/devicetree/bindings/input/touchscreen/melfas_mip4.txt
12609 F:      drivers/input/touchscreen/melfas_mip4.c
12610
12611 MELLANOX BLUEFIELD I2C DRIVER
12612 M:      Khalil Blaiech <kblaiech@nvidia.com>
12613 L:      linux-i2c@vger.kernel.org
12614 S:      Supported
12615 F:      Documentation/devicetree/bindings/i2c/mellanox,i2c-mlxbf.yaml
12616 F:      drivers/i2c/busses/i2c-mlxbf.c
12617
12618 MELLANOX ETHERNET DRIVER (mlx4_en)
12619 M:      Tariq Toukan <tariqt@nvidia.com>
12620 L:      netdev@vger.kernel.org
12621 S:      Supported
12622 W:      http://www.mellanox.com
12623 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12624 F:      drivers/net/ethernet/mellanox/mlx4/en_*
12625
12626 MELLANOX ETHERNET DRIVER (mlx5e)
12627 M:      Saeed Mahameed <saeedm@nvidia.com>
12628 L:      netdev@vger.kernel.org
12629 S:      Supported
12630 W:      http://www.mellanox.com
12631 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12632 F:      drivers/net/ethernet/mellanox/mlx5/core/en_*
12633
12634 MELLANOX ETHERNET INNOVA DRIVERS
12635 R:      Boris Pismenny <borisp@nvidia.com>
12636 L:      netdev@vger.kernel.org
12637 S:      Supported
12638 W:      http://www.mellanox.com
12639 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12640 F:      drivers/net/ethernet/mellanox/mlx5/core/accel/*
12641 F:      drivers/net/ethernet/mellanox/mlx5/core/en_accel/*
12642 F:      drivers/net/ethernet/mellanox/mlx5/core/fpga/*
12643 F:      include/linux/mlx5/mlx5_ifc_fpga.h
12644
12645 MELLANOX ETHERNET SWITCH DRIVERS
12646 M:      Ido Schimmel <idosch@nvidia.com>
12647 M:      Petr Machata <petrm@nvidia.com>
12648 L:      netdev@vger.kernel.org
12649 S:      Supported
12650 W:      http://www.mellanox.com
12651 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12652 F:      drivers/net/ethernet/mellanox/mlxsw/
12653 F:      tools/testing/selftests/drivers/net/mlxsw/
12654
12655 MELLANOX FIRMWARE FLASH LIBRARY (mlxfw)
12656 M:      mlxsw@nvidia.com
12657 L:      netdev@vger.kernel.org
12658 S:      Supported
12659 W:      http://www.mellanox.com
12660 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12661 F:      drivers/net/ethernet/mellanox/mlxfw/
12662
12663 MELLANOX HARDWARE PLATFORM SUPPORT
12664 M:      Hans de Goede <hdegoede@redhat.com>
12665 M:      Mark Gross <markgross@kernel.org>
12666 M:      Vadim Pasternak <vadimp@nvidia.com>
12667 L:      platform-driver-x86@vger.kernel.org
12668 S:      Supported
12669 F:      Documentation/ABI/testing/sysfs-platform-mellanox-bootctl
12670 F:      drivers/platform/mellanox/
12671 F:      include/linux/platform_data/mlxreg.h
12672
12673 MELLANOX MLX4 core VPI driver
12674 M:      Tariq Toukan <tariqt@nvidia.com>
12675 L:      netdev@vger.kernel.org
12676 L:      linux-rdma@vger.kernel.org
12677 S:      Supported
12678 W:      http://www.mellanox.com
12679 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12680 F:      drivers/net/ethernet/mellanox/mlx4/
12681 F:      include/linux/mlx4/
12682
12683 MELLANOX MLX4 IB driver
12684 M:      Yishai Hadas <yishaih@nvidia.com>
12685 L:      linux-rdma@vger.kernel.org
12686 S:      Supported
12687 W:      http://www.mellanox.com
12688 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
12689 F:      drivers/infiniband/hw/mlx4/
12690 F:      include/linux/mlx4/
12691 F:      include/uapi/rdma/mlx4-abi.h
12692
12693 MELLANOX MLX5 core VPI driver
12694 M:      Saeed Mahameed <saeedm@nvidia.com>
12695 M:      Leon Romanovsky <leonro@nvidia.com>
12696 L:      netdev@vger.kernel.org
12697 L:      linux-rdma@vger.kernel.org
12698 S:      Supported
12699 W:      http://www.mellanox.com
12700 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12701 F:      Documentation/networking/device_drivers/ethernet/mellanox/
12702 F:      drivers/net/ethernet/mellanox/mlx5/core/
12703 F:      include/linux/mlx5/
12704
12705 MELLANOX MLX5 IB driver
12706 M:      Leon Romanovsky <leonro@nvidia.com>
12707 L:      linux-rdma@vger.kernel.org
12708 S:      Supported
12709 W:      http://www.mellanox.com
12710 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
12711 F:      drivers/infiniband/hw/mlx5/
12712 F:      include/linux/mlx5/
12713 F:      include/uapi/rdma/mlx5-abi.h
12714
12715 MELLANOX MLXCPLD I2C AND MUX DRIVER
12716 M:      Vadim Pasternak <vadimp@nvidia.com>
12717 M:      Michael Shych <michaelsh@nvidia.com>
12718 L:      linux-i2c@vger.kernel.org
12719 S:      Supported
12720 F:      Documentation/i2c/busses/i2c-mlxcpld.rst
12721 F:      drivers/i2c/busses/i2c-mlxcpld.c
12722 F:      drivers/i2c/muxes/i2c-mux-mlxcpld.c
12723
12724 MELLANOX MLXCPLD LED DRIVER
12725 M:      Vadim Pasternak <vadimp@nvidia.com>
12726 L:      linux-leds@vger.kernel.org
12727 S:      Supported
12728 F:      Documentation/leds/leds-mlxcpld.rst
12729 F:      drivers/leds/leds-mlxcpld.c
12730 F:      drivers/leds/leds-mlxreg.c
12731
12732 MELLANOX PLATFORM DRIVER
12733 M:      Vadim Pasternak <vadimp@nvidia.com>
12734 L:      platform-driver-x86@vger.kernel.org
12735 S:      Supported
12736 F:      drivers/platform/x86/mlx-platform.c
12737
12738 MEMBARRIER SUPPORT
12739 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
12740 M:      "Paul E. McKenney" <paulmck@kernel.org>
12741 L:      linux-kernel@vger.kernel.org
12742 S:      Supported
12743 F:      arch/powerpc/include/asm/membarrier.h
12744 F:      include/uapi/linux/membarrier.h
12745 F:      kernel/sched/membarrier.c
12746
12747 MEMBLOCK
12748 M:      Mike Rapoport <rppt@kernel.org>
12749 L:      linux-mm@kvack.org
12750 S:      Maintained
12751 F:      Documentation/core-api/boot-time-mm.rst
12752 F:      include/linux/memblock.h
12753 F:      mm/memblock.c
12754 F:      tools/testing/memblock/
12755
12756 MEMORY CONTROLLER DRIVERS
12757 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
12758 L:      linux-kernel@vger.kernel.org
12759 S:      Maintained
12760 B:      mailto:krzysztof.kozlowski@linaro.org
12761 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/krzk/linux-mem-ctrl.git
12762 F:      Documentation/devicetree/bindings/memory-controllers/
12763 F:      drivers/memory/
12764 F:      include/dt-bindings/memory/
12765 F:      include/memory/
12766
12767 MEMORY FREQUENCY SCALING DRIVERS FOR NVIDIA TEGRA
12768 M:      Dmitry Osipenko <digetx@gmail.com>
12769 L:      linux-pm@vger.kernel.org
12770 L:      linux-tegra@vger.kernel.org
12771 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
12772 S:      Maintained
12773 F:      drivers/devfreq/tegra30-devfreq.c
12774
12775 MEMORY MANAGEMENT
12776 M:      Andrew Morton <akpm@linux-foundation.org>
12777 L:      linux-mm@kvack.org
12778 S:      Maintained
12779 W:      http://www.linux-mm.org
12780 T:      quilt https://ozlabs.org/~akpm/mmotm/
12781 T:      quilt https://ozlabs.org/~akpm/mmots/
12782 T:      git git://github.com/hnaz/linux-mm.git
12783 F:      include/linux/gfp.h
12784 F:      include/linux/memory_hotplug.h
12785 F:      include/linux/mm.h
12786 F:      include/linux/mmzone.h
12787 F:      include/linux/pagewalk.h
12788 F:      include/linux/vmalloc.h
12789 F:      mm/
12790 F:      tools/testing/selftests/vm/
12791
12792 MEMORY TECHNOLOGY DEVICES (MTD)
12793 M:      Miquel Raynal <miquel.raynal@bootlin.com>
12794 M:      Richard Weinberger <richard@nod.at>
12795 M:      Vignesh Raghavendra <vigneshr@ti.com>
12796 L:      linux-mtd@lists.infradead.org
12797 S:      Maintained
12798 W:      http://www.linux-mtd.infradead.org/
12799 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
12800 C:      irc://irc.oftc.net/mtd
12801 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/fixes
12802 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/next
12803 F:      Documentation/devicetree/bindings/mtd/
12804 F:      drivers/mtd/
12805 F:      include/linux/mtd/
12806 F:      include/uapi/mtd/
12807
12808 MEN A21 WATCHDOG DRIVER
12809 M:      Johannes Thumshirn <morbidrsa@gmail.com>
12810 L:      linux-watchdog@vger.kernel.org
12811 S:      Maintained
12812 F:      drivers/watchdog/mena21_wdt.c
12813
12814 MEN CHAMELEON BUS (mcb)
12815 M:      Johannes Thumshirn <morbidrsa@gmail.com>
12816 S:      Maintained
12817 F:      Documentation/driver-api/men-chameleon-bus.rst
12818 F:      drivers/mcb/
12819 F:      include/linux/mcb.h
12820
12821 MEN F21BMC (Board Management Controller)
12822 M:      Andreas Werner <andreas.werner@men.de>
12823 S:      Supported
12824 F:      Documentation/hwmon/menf21bmc.rst
12825 F:      drivers/hwmon/menf21bmc_hwmon.c
12826 F:      drivers/leds/leds-menf21bmc.c
12827 F:      drivers/mfd/menf21bmc.c
12828 F:      drivers/watchdog/menf21bmc_wdt.c
12829
12830 MEN Z069 WATCHDOG DRIVER
12831 M:      Johannes Thumshirn <jth@kernel.org>
12832 L:      linux-watchdog@vger.kernel.org
12833 S:      Maintained
12834 F:      drivers/watchdog/menz69_wdt.c
12835
12836 MESON AO CEC DRIVER FOR AMLOGIC SOCS
12837 M:      Neil Armstrong <narmstrong@baylibre.com>
12838 L:      linux-media@vger.kernel.org
12839 L:      linux-amlogic@lists.infradead.org
12840 S:      Supported
12841 W:      http://linux-meson.com/
12842 T:      git git://linuxtv.org/media_tree.git
12843 F:      Documentation/devicetree/bindings/media/amlogic,meson-gx-ao-cec.yaml
12844 F:      drivers/media/cec/platform/meson/ao-cec-g12a.c
12845 F:      drivers/media/cec/platform/meson/ao-cec.c
12846
12847 MESON GE2D DRIVER FOR AMLOGIC SOCS
12848 M:      Neil Armstrong <narmstrong@baylibre.com>
12849 L:      linux-media@vger.kernel.org
12850 L:      linux-amlogic@lists.infradead.org
12851 S:      Supported
12852 T:      git git://linuxtv.org/media_tree.git
12853 F:      Documentation/devicetree/bindings/media/amlogic,axg-ge2d.yaml
12854 F:      drivers/media/platform/amlogic/meson-ge2d/
12855
12856 MESON NAND CONTROLLER DRIVER FOR AMLOGIC SOCS
12857 M:      Liang Yang <liang.yang@amlogic.com>
12858 L:      linux-mtd@lists.infradead.org
12859 S:      Maintained
12860 F:      Documentation/devicetree/bindings/mtd/amlogic,meson-nand.txt
12861 F:      drivers/mtd/nand/raw/meson_*
12862
12863 MESON VIDEO DECODER DRIVER FOR AMLOGIC SOCS
12864 M:      Neil Armstrong <narmstrong@baylibre.com>
12865 L:      linux-media@vger.kernel.org
12866 L:      linux-amlogic@lists.infradead.org
12867 S:      Supported
12868 T:      git git://linuxtv.org/media_tree.git
12869 F:      Documentation/devicetree/bindings/media/amlogic,gx-vdec.yaml
12870 F:      drivers/staging/media/meson/vdec/
12871
12872 METHODE UDPU SUPPORT
12873 M:      Vladimir Vid <vladimir.vid@sartura.hr>
12874 S:      Maintained
12875 F:      arch/arm64/boot/dts/marvell/armada-3720-uDPU.dts
12876
12877 MHI BUS
12878 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
12879 R:      Hemant Kumar <hemantk@codeaurora.org>
12880 L:      mhi@lists.linux.dev
12881 L:      linux-arm-msm@vger.kernel.org
12882 S:      Maintained
12883 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mani/mhi.git
12884 F:      Documentation/ABI/stable/sysfs-bus-mhi
12885 F:      Documentation/mhi/
12886 F:      drivers/bus/mhi/
12887 F:      include/linux/mhi.h
12888
12889 MICROBLAZE ARCHITECTURE
12890 M:      Michal Simek <monstr@monstr.eu>
12891 S:      Supported
12892 W:      http://www.monstr.eu/fdt/
12893 T:      git git://git.monstr.eu/linux-2.6-microblaze.git
12894 F:      arch/microblaze/
12895
12896 MICROCHIP AT91 DMA DRIVERS
12897 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
12898 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
12899 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12900 L:      dmaengine@vger.kernel.org
12901 S:      Supported
12902 F:      Documentation/devicetree/bindings/dma/atmel-dma.txt
12903 F:      drivers/dma/at_hdmac.c
12904 F:      drivers/dma/at_hdmac_regs.h
12905 F:      drivers/dma/at_xdmac.c
12906 F:      include/dt-bindings/dma/at91.h
12907
12908 MICROCHIP AT91 SERIAL DRIVER
12909 M:      Richard Genoud <richard.genoud@gmail.com>
12910 S:      Maintained
12911 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
12912 F:      drivers/tty/serial/atmel_serial.c
12913 F:      drivers/tty/serial/atmel_serial.h
12914
12915 MICROCHIP AT91 USART MFD DRIVER
12916 M:      Radu Pirea <radu_nicolae.pirea@upb.ro>
12917 L:      linux-kernel@vger.kernel.org
12918 S:      Supported
12919 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
12920 F:      drivers/mfd/at91-usart.c
12921 F:      include/dt-bindings/mfd/at91-usart.h
12922
12923 MICROCHIP AT91 USART SPI DRIVER
12924 M:      Radu Pirea <radu_nicolae.pirea@upb.ro>
12925 L:      linux-spi@vger.kernel.org
12926 S:      Supported
12927 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
12928 F:      drivers/spi/spi-at91-usart.c
12929
12930 MICROCHIP AUDIO ASOC DRIVERS
12931 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
12932 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12933 S:      Supported
12934 F:      sound/soc/atmel
12935
12936 MICROCHIP CSI2DC DRIVER
12937 M:      Eugen Hristev <eugen.hristev@microchip.com>
12938 L:      linux-media@vger.kernel.org
12939 S:      Supported
12940 F:      Documentation/devicetree/bindings/media/microchip,csi2dc.yaml
12941 F:      drivers/media/platform/atmel/microchip-csi2dc.c
12942
12943 MICROCHIP ECC DRIVER
12944 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
12945 L:      linux-crypto@vger.kernel.org
12946 S:      Maintained
12947 F:      drivers/crypto/atmel-ecc.*
12948
12949 MICROCHIP EIC DRIVER
12950 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
12951 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12952 S:      Supported
12953 F:      drivers/irqchip/irq-mchp-eic.c
12954
12955 MICROCHIP I2C DRIVER
12956 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
12957 L:      linux-i2c@vger.kernel.org
12958 S:      Supported
12959 F:      drivers/i2c/busses/i2c-at91-*.c
12960 F:      drivers/i2c/busses/i2c-at91.h
12961
12962 MICROCHIP ISC DRIVER
12963 M:      Eugen Hristev <eugen.hristev@microchip.com>
12964 L:      linux-media@vger.kernel.org
12965 S:      Supported
12966 F:      Documentation/devicetree/bindings/media/atmel,isc.yaml
12967 F:      Documentation/devicetree/bindings/media/microchip,xisc.yaml
12968 F:      drivers/media/platform/atmel/atmel-isc*
12969 F:      drivers/media/platform/atmel/atmel-sama*-isc*
12970 F:      include/linux/atmel-isc-media.h
12971
12972 MICROCHIP ISI DRIVER
12973 M:      Eugen Hristev <eugen.hristev@microchip.com>
12974 L:      linux-media@vger.kernel.org
12975 S:      Supported
12976 F:      drivers/media/platform/atmel/atmel-isi.c
12977 F:      drivers/media/platform/atmel/atmel-isi.h
12978
12979 MICROCHIP KSZ SERIES ETHERNET SWITCH DRIVER
12980 M:      Woojung Huh <woojung.huh@microchip.com>
12981 M:      UNGLinuxDriver@microchip.com
12982 L:      netdev@vger.kernel.org
12983 S:      Maintained
12984 F:      Documentation/devicetree/bindings/net/dsa/microchip,ksz.yaml
12985 F:      drivers/net/dsa/microchip/*
12986 F:      include/linux/platform_data/microchip-ksz.h
12987 F:      net/dsa/tag_ksz.c
12988
12989 MICROCHIP LAN87xx/LAN937x T1 PHY DRIVER
12990 M:      Arun Ramadoss <arun.ramadoss@microchip.com>
12991 R:      UNGLinuxDriver@microchip.com
12992 L:      netdev@vger.kernel.org
12993 S:      Maintained
12994 F:      drivers/net/phy/microchip_t1.c
12995
12996 MICROCHIP LAN743X ETHERNET DRIVER
12997 M:      Bryan Whitehead <bryan.whitehead@microchip.com>
12998 M:      UNGLinuxDriver@microchip.com
12999 L:      netdev@vger.kernel.org
13000 S:      Maintained
13001 F:      drivers/net/ethernet/microchip/lan743x_*
13002
13003 MICROCHIP LAN966X ETHERNET DRIVER
13004 M:      Horatiu Vultur <horatiu.vultur@microchip.com>
13005 M:      UNGLinuxDriver@microchip.com
13006 L:      netdev@vger.kernel.org
13007 S:      Maintained
13008 F:      drivers/net/ethernet/microchip/lan966x/*
13009
13010 MICROCHIP LCDFB DRIVER
13011 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
13012 L:      linux-fbdev@vger.kernel.org
13013 S:      Maintained
13014 F:      drivers/video/fbdev/atmel_lcdfb.c
13015 F:      include/video/atmel_lcdc.h
13016
13017 MICROCHIP MCP16502 PMIC DRIVER
13018 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
13019 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13020 S:      Supported
13021 F:      Documentation/devicetree/bindings/regulator/mcp16502-regulator.txt
13022 F:      drivers/regulator/mcp16502.c
13023
13024 MICROCHIP MCP3911 ADC DRIVER
13025 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
13026 M:      Kent Gustavsson <kent@minoris.se>
13027 L:      linux-iio@vger.kernel.org
13028 S:      Supported
13029 F:      Documentation/devicetree/bindings/iio/adc/microchip,mcp3911.yaml
13030 F:      drivers/iio/adc/mcp3911.c
13031
13032 MICROCHIP MMC/SD/SDIO MCI DRIVER
13033 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
13034 S:      Maintained
13035 F:      drivers/mmc/host/atmel-mci.c
13036
13037 MICROCHIP NAND DRIVER
13038 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
13039 L:      linux-mtd@lists.infradead.org
13040 S:      Supported
13041 F:      Documentation/devicetree/bindings/mtd/atmel-nand.txt
13042 F:      drivers/mtd/nand/raw/atmel/*
13043
13044 MICROCHIP PWM DRIVER
13045 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
13046 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13047 L:      linux-pwm@vger.kernel.org
13048 S:      Supported
13049 F:      Documentation/devicetree/bindings/pwm/atmel-pwm.txt
13050 F:      drivers/pwm/pwm-atmel.c
13051
13052 MICROCHIP SAMA5D2-COMPATIBLE ADC DRIVER
13053 M:      Eugen Hristev <eugen.hristev@microchip.com>
13054 L:      linux-iio@vger.kernel.org
13055 S:      Supported
13056 F:      Documentation/devicetree/bindings/iio/adc/atmel,sama5d2-adc.yaml
13057 F:      drivers/iio/adc/at91-sama5d2_adc.c
13058 F:      include/dt-bindings/iio/adc/at91-sama5d2_adc.h
13059
13060 MICROCHIP SAMA5D2-COMPATIBLE SHUTDOWN CONTROLLER
13061 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
13062 S:      Supported
13063 F:      drivers/power/reset/at91-sama5d2_shdwc.c
13064
13065 MICROCHIP SPI DRIVER
13066 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
13067 S:      Supported
13068 F:      drivers/spi/spi-atmel.*
13069
13070 MICROCHIP SSC DRIVER
13071 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
13072 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13073 S:      Supported
13074 F:      drivers/misc/atmel-ssc.c
13075 F:      include/linux/atmel-ssc.h
13076
13077 MICROCHIP USB251XB DRIVER
13078 M:      Richard Leitner <richard.leitner@skidata.com>
13079 L:      linux-usb@vger.kernel.org
13080 S:      Maintained
13081 F:      Documentation/devicetree/bindings/usb/usb251xb.txt
13082 F:      drivers/usb/misc/usb251xb.c
13083
13084 MICROCHIP USBA UDC DRIVER
13085 M:      Cristian Birsan <cristian.birsan@microchip.com>
13086 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13087 S:      Supported
13088 F:      drivers/usb/gadget/udc/atmel_usba_udc.*
13089
13090 MICROCHIP WILC1000 WIFI DRIVER
13091 M:      Ajay Singh <ajay.kathat@microchip.com>
13092 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
13093 L:      linux-wireless@vger.kernel.org
13094 S:      Supported
13095 F:      drivers/net/wireless/microchip/wilc1000/
13096
13097 MICROSEMI MIPS SOCS
13098 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
13099 M:      UNGLinuxDriver@microchip.com
13100 L:      linux-mips@vger.kernel.org
13101 S:      Supported
13102 F:      Documentation/devicetree/bindings/mips/mscc.txt
13103 F:      Documentation/devicetree/bindings/power/reset/ocelot-reset.txt
13104 F:      arch/mips/boot/dts/mscc/
13105 F:      arch/mips/configs/generic/board-ocelot.config
13106 F:      arch/mips/generic/board-ocelot.c
13107
13108 MICROSEMI SMART ARRAY SMARTPQI DRIVER (smartpqi)
13109 M:      Don Brace <don.brace@microchip.com>
13110 L:      storagedev@microchip.com
13111 L:      linux-scsi@vger.kernel.org
13112 S:      Supported
13113 F:      Documentation/scsi/smartpqi.rst
13114 F:      drivers/scsi/smartpqi/Kconfig
13115 F:      drivers/scsi/smartpqi/Makefile
13116 F:      drivers/scsi/smartpqi/smartpqi*.[ch]
13117 F:      include/linux/cciss*.h
13118 F:      include/uapi/linux/cciss*.h
13119
13120 MICROSOFT SURFACE BATTERY AND AC DRIVERS
13121 M:      Maximilian Luz <luzmaximilian@gmail.com>
13122 L:      linux-pm@vger.kernel.org
13123 L:      platform-driver-x86@vger.kernel.org
13124 S:      Maintained
13125 F:      drivers/power/supply/surface_battery.c
13126 F:      drivers/power/supply/surface_charger.c
13127
13128 MICROSOFT SURFACE DTX DRIVER
13129 M:      Maximilian Luz <luzmaximilian@gmail.com>
13130 L:      platform-driver-x86@vger.kernel.org
13131 S:      Maintained
13132 F:      Documentation/driver-api/surface_aggregator/clients/dtx.rst
13133 F:      drivers/platform/surface/surface_dtx.c
13134 F:      include/uapi/linux/surface_aggregator/dtx.h
13135
13136 MICROSOFT SURFACE GPE LID SUPPORT DRIVER
13137 M:      Maximilian Luz <luzmaximilian@gmail.com>
13138 L:      platform-driver-x86@vger.kernel.org
13139 S:      Maintained
13140 F:      drivers/platform/surface/surface_gpe.c
13141
13142 MICROSOFT SURFACE HARDWARE PLATFORM SUPPORT
13143 M:      Hans de Goede <hdegoede@redhat.com>
13144 M:      Mark Gross <markgross@kernel.org>
13145 M:      Maximilian Luz <luzmaximilian@gmail.com>
13146 L:      platform-driver-x86@vger.kernel.org
13147 S:      Maintained
13148 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
13149 F:      drivers/platform/surface/
13150
13151 MICROSOFT SURFACE HID TRANSPORT DRIVER
13152 M:      Maximilian Luz <luzmaximilian@gmail.com>
13153 L:      linux-input@vger.kernel.org
13154 L:      platform-driver-x86@vger.kernel.org
13155 S:      Maintained
13156 F:      drivers/hid/surface-hid/
13157
13158 MICROSOFT SURFACE HOT-PLUG DRIVER
13159 M:      Maximilian Luz <luzmaximilian@gmail.com>
13160 L:      platform-driver-x86@vger.kernel.org
13161 S:      Maintained
13162 F:      drivers/platform/surface/surface_hotplug.c
13163
13164 MICROSOFT SURFACE PLATFORM PROFILE DRIVER
13165 M:      Maximilian Luz <luzmaximilian@gmail.com>
13166 L:      platform-driver-x86@vger.kernel.org
13167 S:      Maintained
13168 F:      drivers/platform/surface/surface_platform_profile.c
13169
13170 MICROSOFT SURFACE PRO 3 BUTTON DRIVER
13171 M:      Chen Yu <yu.c.chen@intel.com>
13172 L:      platform-driver-x86@vger.kernel.org
13173 S:      Supported
13174 F:      drivers/platform/surface/surfacepro3_button.c
13175
13176 MICROSOFT SURFACE SYSTEM AGGREGATOR SUBSYSTEM
13177 M:      Maximilian Luz <luzmaximilian@gmail.com>
13178 L:      platform-driver-x86@vger.kernel.org
13179 S:      Maintained
13180 W:      https://github.com/linux-surface/surface-aggregator-module
13181 C:      irc://irc.libera.chat/linux-surface
13182 F:      Documentation/driver-api/surface_aggregator/
13183 F:      drivers/platform/surface/aggregator/
13184 F:      drivers/platform/surface/surface_acpi_notify.c
13185 F:      drivers/platform/surface/surface_aggregator_cdev.c
13186 F:      drivers/platform/surface/surface_aggregator_registry.c
13187 F:      include/linux/surface_acpi_notify.h
13188 F:      include/linux/surface_aggregator/
13189 F:      include/uapi/linux/surface_aggregator/
13190
13191 MICROTEK X6 SCANNER
13192 M:      Oliver Neukum <oliver@neukum.org>
13193 S:      Maintained
13194 F:      drivers/usb/image/microtek.*
13195
13196 MIKROTIK CRS3XX 98DX3236 BOARD SUPPORT
13197 M:      Luka Kovacic <luka.kovacic@sartura.hr>
13198 M:      Luka Perkov <luka.perkov@sartura.hr>
13199 S:      Maintained
13200 F:      arch/arm/boot/dts/armada-xp-crs305-1g-4s-bit.dts
13201 F:      arch/arm/boot/dts/armada-xp-crs305-1g-4s.dts
13202 F:      arch/arm/boot/dts/armada-xp-crs326-24g-2s-bit.dts
13203 F:      arch/arm/boot/dts/armada-xp-crs326-24g-2s.dts
13204 F:      arch/arm/boot/dts/armada-xp-crs328-4c-20s-4s-bit.dts
13205 F:      arch/arm/boot/dts/armada-xp-crs328-4c-20s-4s.dts
13206
13207 MIPI CCS, SMIA AND SMIA++ IMAGE SENSOR DRIVER
13208 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
13209 L:      linux-media@vger.kernel.org
13210 S:      Maintained
13211 F:      Documentation/devicetree/bindings/media/i2c/mipi-ccs.yaml
13212 F:      Documentation/driver-api/media/drivers/ccs/
13213 F:      Documentation/userspace-api/media/drivers/ccs.rst
13214 F:      drivers/media/i2c/ccs-pll.c
13215 F:      drivers/media/i2c/ccs-pll.h
13216 F:      drivers/media/i2c/ccs/
13217 F:      include/uapi/linux/ccs.h
13218 F:      include/uapi/linux/smiapp.h
13219
13220 MIPS
13221 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
13222 L:      linux-mips@vger.kernel.org
13223 S:      Maintained
13224 W:      http://www.linux-mips.org/
13225 Q:      https://patchwork.kernel.org/project/linux-mips/list/
13226 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mips/linux.git
13227 F:      Documentation/devicetree/bindings/mips/
13228 F:      Documentation/mips/
13229 F:      arch/mips/
13230 F:      drivers/platform/mips/
13231
13232 MIPS BOSTON DEVELOPMENT BOARD
13233 M:      Paul Burton <paulburton@kernel.org>
13234 L:      linux-mips@vger.kernel.org
13235 S:      Maintained
13236 F:      Documentation/devicetree/bindings/clock/img,boston-clock.txt
13237 F:      arch/mips/boot/dts/img/boston.dts
13238 F:      arch/mips/configs/generic/board-boston.config
13239 F:      drivers/clk/imgtec/clk-boston.c
13240 F:      include/dt-bindings/clock/boston-clock.h
13241
13242 MIPS CORE DRIVERS
13243 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
13244 M:      Serge Semin <fancer.lancer@gmail.com>
13245 L:      linux-mips@vger.kernel.org
13246 S:      Supported
13247 F:      drivers/bus/mips_cdmm.c
13248 F:      drivers/clocksource/mips-gic-timer.c
13249 F:      drivers/cpuidle/cpuidle-cps.c
13250 F:      drivers/irqchip/irq-mips-cpu.c
13251 F:      drivers/irqchip/irq-mips-gic.c
13252
13253 MIPS GENERIC PLATFORM
13254 M:      Paul Burton <paulburton@kernel.org>
13255 L:      linux-mips@vger.kernel.org
13256 S:      Supported
13257 F:      Documentation/devicetree/bindings/power/mti,mips-cpc.yaml
13258 F:      arch/mips/generic/
13259 F:      arch/mips/tools/generic-board-config.sh
13260
13261 MIPS RINT INSTRUCTION EMULATION
13262 M:      Aleksandar Markovic <aleksandar.markovic@mips.com>
13263 L:      linux-mips@vger.kernel.org
13264 S:      Supported
13265 F:      arch/mips/math-emu/dp_rint.c
13266 F:      arch/mips/math-emu/sp_rint.c
13267
13268 MIPS/LOONGSON1 ARCHITECTURE
13269 M:      Keguang Zhang <keguang.zhang@gmail.com>
13270 L:      linux-mips@vger.kernel.org
13271 S:      Maintained
13272 F:      arch/mips/include/asm/mach-loongson32/
13273 F:      arch/mips/loongson32/
13274 F:      drivers/*/*/*loongson1*
13275 F:      drivers/*/*loongson1*
13276
13277 MIPS/LOONGSON2EF ARCHITECTURE
13278 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
13279 L:      linux-mips@vger.kernel.org
13280 S:      Maintained
13281 F:      arch/mips/include/asm/mach-loongson2ef/
13282 F:      arch/mips/loongson2ef/
13283 F:      drivers/cpufreq/loongson2_cpufreq.c
13284
13285 MIPS/LOONGSON64 ARCHITECTURE
13286 M:      Huacai Chen <chenhuacai@kernel.org>
13287 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
13288 L:      linux-mips@vger.kernel.org
13289 S:      Maintained
13290 F:      arch/mips/include/asm/mach-loongson64/
13291 F:      arch/mips/loongson64/
13292 F:      drivers/irqchip/irq-loongson*
13293 F:      drivers/platform/mips/cpu_hwmon.c
13294
13295 MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
13296 M:      Hans Verkuil <hverkuil@xs4all.nl>
13297 L:      linux-media@vger.kernel.org
13298 S:      Odd Fixes
13299 W:      https://linuxtv.org
13300 T:      git git://linuxtv.org/media_tree.git
13301 F:      drivers/media/radio/radio-miropcm20*
13302
13303 MMP SUPPORT
13304 R:      Lubomir Rintel <lkundrak@v3.sk>
13305 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13306 S:      Odd Fixes
13307 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lkundrak/linux-mmp.git
13308 F:      arch/arm/boot/dts/mmp*
13309 F:      arch/arm/mach-mmp/
13310 F:      include/linux/soc/mmp/
13311
13312 MMP USB PHY DRIVERS
13313 R:      Lubomir Rintel <lkundrak@v3.sk>
13314 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13315 S:      Maintained
13316 F:      drivers/phy/marvell/phy-mmp3-usb.c
13317 F:      drivers/phy/marvell/phy-pxa-usb.c
13318
13319 MMU GATHER AND TLB INVALIDATION
13320 M:      Will Deacon <will@kernel.org>
13321 M:      "Aneesh Kumar K.V" <aneesh.kumar@linux.ibm.com>
13322 M:      Andrew Morton <akpm@linux-foundation.org>
13323 M:      Nick Piggin <npiggin@gmail.com>
13324 M:      Peter Zijlstra <peterz@infradead.org>
13325 L:      linux-arch@vger.kernel.org
13326 L:      linux-mm@kvack.org
13327 S:      Maintained
13328 F:      arch/*/include/asm/tlb.h
13329 F:      include/asm-generic/tlb.h
13330 F:      mm/mmu_gather.c
13331
13332 MN88472 MEDIA DRIVER
13333 M:      Antti Palosaari <crope@iki.fi>
13334 L:      linux-media@vger.kernel.org
13335 S:      Maintained
13336 W:      https://linuxtv.org
13337 W:      http://palosaari.fi/linux/
13338 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13339 F:      drivers/media/dvb-frontends/mn88472*
13340
13341 MN88473 MEDIA DRIVER
13342 M:      Antti Palosaari <crope@iki.fi>
13343 L:      linux-media@vger.kernel.org
13344 S:      Maintained
13345 W:      https://linuxtv.org
13346 W:      http://palosaari.fi/linux/
13347 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13348 F:      drivers/media/dvb-frontends/mn88473*
13349
13350 MODULE SUPPORT
13351 M:      Luis Chamberlain <mcgrof@kernel.org>
13352 L:      linux-modules@vger.kernel.org
13353 L:      linux-kernel@vger.kernel.org
13354 S:      Maintained
13355 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mcgrof/linux.git modules-next
13356 F:      include/linux/module.h
13357 F:      kernel/module.c
13358
13359 MONOLITHIC POWER SYSTEM PMIC DRIVER
13360 M:      Saravanan Sekar <sravanhome@gmail.com>
13361 S:      Maintained
13362 F:      Documentation/devicetree/bindings/mfd/mps,mp2629.yaml
13363 F:      Documentation/devicetree/bindings/regulator/mps,mp*.yaml
13364 F:      drivers/iio/adc/mp2629_adc.c
13365 F:      drivers/mfd/mp2629.c
13366 F:      drivers/power/supply/mp2629_charger.c
13367 F:      drivers/regulator/mp5416.c
13368 F:      drivers/regulator/mpq7920.c
13369 F:      drivers/regulator/mpq7920.h
13370 F:      include/linux/mfd/mp2629.h
13371
13372 MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
13373 S:      Orphan
13374 W:      http://popies.net/meye/
13375 F:      Documentation/userspace-api/media/drivers/meye*
13376 F:      drivers/media/pci/meye/
13377 F:      include/uapi/linux/meye.h
13378
13379 MOTORCOMM PHY DRIVER
13380 M:      Peter Geis <pgwipeout@gmail.com>
13381 L:      netdev@vger.kernel.org
13382 S:      Maintained
13383 F:      drivers/net/phy/motorcomm.c
13384
13385 MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
13386 M:      Jiri Slaby <jirislaby@kernel.org>
13387 S:      Maintained
13388 F:      Documentation/driver-api/serial/moxa-smartio.rst
13389 F:      drivers/tty/mxser.*
13390
13391 MR800 AVERMEDIA USB FM RADIO DRIVER
13392 M:      Alexey Klimov <klimov.linux@gmail.com>
13393 L:      linux-media@vger.kernel.org
13394 S:      Maintained
13395 T:      git git://linuxtv.org/media_tree.git
13396 F:      drivers/media/radio/radio-mr800.c
13397
13398 MRF24J40 IEEE 802.15.4 RADIO DRIVER
13399 M:      Alan Ott <alan@signal11.us>
13400 L:      linux-wpan@vger.kernel.org
13401 S:      Maintained
13402 F:      Documentation/devicetree/bindings/net/ieee802154/mrf24j40.txt
13403 F:      drivers/net/ieee802154/mrf24j40.c
13404
13405 MSI LAPTOP SUPPORT
13406 M:      "Lee, Chun-Yi" <jlee@suse.com>
13407 L:      platform-driver-x86@vger.kernel.org
13408 S:      Maintained
13409 F:      drivers/platform/x86/msi-laptop.c
13410
13411 MSI WMI SUPPORT
13412 L:      platform-driver-x86@vger.kernel.org
13413 S:      Orphan
13414 F:      drivers/platform/x86/msi-wmi.c
13415
13416 MSI001 MEDIA DRIVER
13417 M:      Antti Palosaari <crope@iki.fi>
13418 L:      linux-media@vger.kernel.org
13419 S:      Maintained
13420 W:      https://linuxtv.org
13421 W:      http://palosaari.fi/linux/
13422 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13423 T:      git git://linuxtv.org/anttip/media_tree.git
13424 F:      drivers/media/tuners/msi001*
13425
13426 MSI2500 MEDIA DRIVER
13427 M:      Antti Palosaari <crope@iki.fi>
13428 L:      linux-media@vger.kernel.org
13429 S:      Maintained
13430 W:      https://linuxtv.org
13431 W:      http://palosaari.fi/linux/
13432 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13433 T:      git git://linuxtv.org/anttip/media_tree.git
13434 F:      drivers/media/usb/msi2500/
13435
13436 MSTAR INTERRUPT CONTROLLER DRIVER
13437 M:      Mark-PK Tsai <mark-pk.tsai@mediatek.com>
13438 M:      Daniel Palmer <daniel@thingy.jp>
13439 S:      Maintained
13440 F:      Documentation/devicetree/bindings/interrupt-controller/mstar,mst-intc.yaml
13441 F:      drivers/irqchip/irq-mst-intc.c
13442
13443 MSYSTEMS DISKONCHIP G3 MTD DRIVER
13444 M:      Robert Jarzmik <robert.jarzmik@free.fr>
13445 L:      linux-mtd@lists.infradead.org
13446 S:      Maintained
13447 F:      drivers/mtd/devices/docg3*
13448
13449 MT9M032 APTINA SENSOR DRIVER
13450 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
13451 L:      linux-media@vger.kernel.org
13452 S:      Maintained
13453 T:      git git://linuxtv.org/media_tree.git
13454 F:      drivers/media/i2c/mt9m032.c
13455 F:      include/media/i2c/mt9m032.h
13456
13457 MT9P031 APTINA CAMERA SENSOR
13458 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
13459 L:      linux-media@vger.kernel.org
13460 S:      Maintained
13461 T:      git git://linuxtv.org/media_tree.git
13462 F:      Documentation/devicetree/bindings/media/i2c/aptina,mt9p031.yaml
13463 F:      drivers/media/i2c/mt9p031.c
13464 F:      include/media/i2c/mt9p031.h
13465
13466 MT9T001 APTINA CAMERA SENSOR
13467 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
13468 L:      linux-media@vger.kernel.org
13469 S:      Maintained
13470 T:      git git://linuxtv.org/media_tree.git
13471 F:      drivers/media/i2c/mt9t001.c
13472 F:      include/media/i2c/mt9t001.h
13473
13474 MT9T112 APTINA CAMERA SENSOR
13475 M:      Jacopo Mondi <jacopo@jmondi.org>
13476 L:      linux-media@vger.kernel.org
13477 S:      Odd Fixes
13478 T:      git git://linuxtv.org/media_tree.git
13479 F:      drivers/media/i2c/mt9t112.c
13480 F:      include/media/i2c/mt9t112.h
13481
13482 MT9V032 APTINA CAMERA SENSOR
13483 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
13484 L:      linux-media@vger.kernel.org
13485 S:      Maintained
13486 T:      git git://linuxtv.org/media_tree.git
13487 F:      Documentation/devicetree/bindings/media/i2c/mt9v032.txt
13488 F:      drivers/media/i2c/mt9v032.c
13489 F:      include/media/i2c/mt9v032.h
13490
13491 MT9V111 APTINA CAMERA SENSOR
13492 M:      Jacopo Mondi <jacopo@jmondi.org>
13493 L:      linux-media@vger.kernel.org
13494 S:      Maintained
13495 T:      git git://linuxtv.org/media_tree.git
13496 F:      Documentation/devicetree/bindings/media/i2c/aptina,mt9v111.yaml
13497 F:      drivers/media/i2c/mt9v111.c
13498
13499 MULTIFUNCTION DEVICES (MFD)
13500 M:      Lee Jones <lee.jones@linaro.org>
13501 S:      Supported
13502 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
13503 F:      Documentation/devicetree/bindings/mfd/
13504 F:      drivers/mfd/
13505 F:      include/dt-bindings/mfd/
13506 F:      include/linux/mfd/
13507
13508 MULTIMEDIA CARD (MMC) ETC. OVER SPI
13509 S:      Orphan
13510 F:      drivers/mmc/host/mmc_spi.c
13511 F:      include/linux/spi/mmc_spi.h
13512
13513 MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
13514 M:      Ulf Hansson <ulf.hansson@linaro.org>
13515 L:      linux-mmc@vger.kernel.org
13516 S:      Maintained
13517 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
13518 F:      Documentation/devicetree/bindings/mmc/
13519 F:      drivers/mmc/
13520 F:      include/linux/mmc/
13521 F:      include/uapi/linux/mmc/
13522
13523 MULTIPLEXER SUBSYSTEM
13524 M:      Peter Rosin <peda@axentia.se>
13525 S:      Maintained
13526 F:      Documentation/ABI/testing/sysfs-class-mux*
13527 F:      Documentation/devicetree/bindings/mux/
13528 F:      drivers/mux/
13529 F:      include/dt-bindings/mux/
13530 F:      include/linux/mux/
13531
13532 MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
13533 M:      Bin Liu <b-liu@ti.com>
13534 L:      linux-usb@vger.kernel.org
13535 S:      Maintained
13536 F:      drivers/usb/musb/
13537
13538 MXL301RF MEDIA DRIVER
13539 M:      Akihiro Tsukada <tskd08@gmail.com>
13540 L:      linux-media@vger.kernel.org
13541 S:      Odd Fixes
13542 F:      drivers/media/tuners/mxl301rf*
13543
13544 MXL5007T MEDIA DRIVER
13545 M:      Michael Krufky <mkrufky@linuxtv.org>
13546 L:      linux-media@vger.kernel.org
13547 S:      Maintained
13548 W:      https://linuxtv.org
13549 W:      http://github.com/mkrufky
13550 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13551 T:      git git://linuxtv.org/mkrufky/tuners.git
13552 F:      drivers/media/tuners/mxl5007t.*
13553
13554 MXSFB DRM DRIVER
13555 M:      Marek Vasut <marex@denx.de>
13556 M:      Stefan Agner <stefan@agner.ch>
13557 L:      dri-devel@lists.freedesktop.org
13558 S:      Supported
13559 T:      git git://anongit.freedesktop.org/drm/drm-misc
13560 F:      Documentation/devicetree/bindings/display/fsl,lcdif.yaml
13561 F:      drivers/gpu/drm/mxsfb/
13562
13563 MYLEX DAC960 PCI RAID Controller
13564 M:      Hannes Reinecke <hare@kernel.org>
13565 L:      linux-scsi@vger.kernel.org
13566 S:      Supported
13567 F:      drivers/scsi/myrb.*
13568 F:      drivers/scsi/myrs.*
13569
13570 MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
13571 M:      Chris Lee <christopher.lee@cspi.com>
13572 L:      netdev@vger.kernel.org
13573 S:      Supported
13574 W:      https://www.cspi.com/ethernet-products/support/downloads/
13575 F:      drivers/net/ethernet/myricom/myri10ge/
13576
13577 NAND FLASH SUBSYSTEM
13578 M:      Miquel Raynal <miquel.raynal@bootlin.com>
13579 R:      Richard Weinberger <richard@nod.at>
13580 L:      linux-mtd@lists.infradead.org
13581 S:      Maintained
13582 W:      http://www.linux-mtd.infradead.org/
13583 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
13584 C:      irc://irc.oftc.net/mtd
13585 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git nand/next
13586 F:      drivers/mtd/nand/
13587 F:      include/linux/mtd/*nand*.h
13588
13589 NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
13590 M:      Daniel Mack <zonque@gmail.com>
13591 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
13592 S:      Maintained
13593 W:      http://www.native-instruments.com
13594 F:      sound/usb/caiaq/
13595
13596 NATSEMI ETHERNET DRIVER (DP8381x)
13597 S:      Orphan
13598 F:      drivers/net/ethernet/natsemi/natsemi.c
13599
13600 NCR 5380 SCSI DRIVERS
13601 M:      Finn Thain <fthain@linux-m68k.org>
13602 M:      Michael Schmitz <schmitzmic@gmail.com>
13603 L:      linux-scsi@vger.kernel.org
13604 S:      Maintained
13605 F:      Documentation/scsi/g_NCR5380.rst
13606 F:      drivers/scsi/NCR5380.*
13607 F:      drivers/scsi/arm/cumana_1.c
13608 F:      drivers/scsi/arm/oak.c
13609 F:      drivers/scsi/atari_scsi.*
13610 F:      drivers/scsi/dmx3191d.c
13611 F:      drivers/scsi/g_NCR5380.*
13612 F:      drivers/scsi/mac_scsi.*
13613 F:      drivers/scsi/sun3_scsi.*
13614 F:      drivers/scsi/sun3_scsi_vme.c
13615
13616 NCSI LIBRARY
13617 M:      Samuel Mendoza-Jonas <sam@mendozajonas.com>
13618 S:      Maintained
13619 F:      net/ncsi/
13620
13621 NCT6775 HARDWARE MONITOR DRIVER - CORE & PLATFORM DRIVER
13622 M:      Guenter Roeck <linux@roeck-us.net>
13623 L:      linux-hwmon@vger.kernel.org
13624 S:      Maintained
13625 F:      Documentation/hwmon/nct6775.rst
13626 F:      drivers/hwmon/nct6775-core.c
13627 F:      drivers/hwmon/nct6775-platform.c
13628 F:      drivers/hwmon/nct6775.h
13629
13630 NCT6775 HARDWARE MONITOR DRIVER - I2C DRIVER
13631 M:      Zev Weiss <zev@bewilderbeest.net>
13632 L:      linux-hwmon@vger.kernel.org
13633 S:      Maintained
13634 F:      Documentation/devicetree/bindings/hwmon/nuvoton,nct6775.yaml
13635 F:      drivers/hwmon/nct6775-i2c.c
13636
13637 NETDEVSIM
13638 M:      Jakub Kicinski <kuba@kernel.org>
13639 S:      Maintained
13640 F:      drivers/net/netdevsim/*
13641
13642 NETEM NETWORK EMULATOR
13643 M:      Stephen Hemminger <stephen@networkplumber.org>
13644 L:      netdev@vger.kernel.org
13645 S:      Maintained
13646 F:      net/sched/sch_netem.c
13647
13648 NETERION 10GbE DRIVERS (s2io/vxge)
13649 M:      Jon Mason <jdmason@kudzu.us>
13650 L:      netdev@vger.kernel.org
13651 S:      Supported
13652 F:      Documentation/networking/device_drivers/ethernet/neterion/s2io.rst
13653 F:      Documentation/networking/device_drivers/ethernet/neterion/vxge.rst
13654 F:      drivers/net/ethernet/neterion/
13655
13656 NETFILTER
13657 M:      Pablo Neira Ayuso <pablo@netfilter.org>
13658 M:      Jozsef Kadlecsik <kadlec@netfilter.org>
13659 M:      Florian Westphal <fw@strlen.de>
13660 L:      netfilter-devel@vger.kernel.org
13661 L:      coreteam@netfilter.org
13662 S:      Maintained
13663 W:      http://www.netfilter.org/
13664 W:      http://www.iptables.org/
13665 W:      http://www.nftables.org/
13666 Q:      http://patchwork.ozlabs.org/project/netfilter-devel/list/
13667 C:      irc://irc.libera.chat/netfilter
13668 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netfilter/nf.git
13669 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netfilter/nf-next.git
13670 F:      include/linux/netfilter*
13671 F:      include/linux/netfilter/
13672 F:      include/net/netfilter/
13673 F:      include/uapi/linux/netfilter*
13674 F:      include/uapi/linux/netfilter/
13675 F:      net/*/netfilter.c
13676 F:      net/*/netfilter/
13677 F:      net/bridge/br_netfilter*.c
13678 F:      net/netfilter/
13679
13680 NETROM NETWORK LAYER
13681 M:      Ralf Baechle <ralf@linux-mips.org>
13682 L:      linux-hams@vger.kernel.org
13683 S:      Maintained
13684 W:      http://www.linux-ax25.org/
13685 F:      include/net/netrom.h
13686 F:      include/uapi/linux/netrom.h
13687 F:      net/netrom/
13688
13689 NETRONIX EMBEDDED CONTROLLER
13690 M:      Jonathan Neuschäfer <j.neuschaefer@gmx.net>
13691 S:      Maintained
13692 F:      Documentation/devicetree/bindings/mfd/netronix,ntxec.yaml
13693 F:      drivers/mfd/ntxec.c
13694 F:      drivers/pwm/pwm-ntxec.c
13695 F:      drivers/rtc/rtc-ntxec.c
13696 F:      include/linux/mfd/ntxec.h
13697
13698 NETRONOME ETHERNET DRIVERS
13699 M:      Simon Horman <simon.horman@corigine.com>
13700 R:      Jakub Kicinski <kuba@kernel.org>
13701 L:      oss-drivers@corigine.com
13702 S:      Maintained
13703 F:      drivers/net/ethernet/netronome/
13704
13705 NETWORK BLOCK DEVICE (NBD)
13706 M:      Josef Bacik <josef@toxicpanda.com>
13707 L:      linux-block@vger.kernel.org
13708 L:      nbd@other.debian.org
13709 S:      Maintained
13710 F:      Documentation/admin-guide/blockdev/nbd.rst
13711 F:      drivers/block/nbd.c
13712 F:      include/trace/events/nbd.h
13713 F:      include/uapi/linux/nbd.h
13714
13715 NETWORK DROP MONITOR
13716 M:      Neil Horman <nhorman@tuxdriver.com>
13717 L:      netdev@vger.kernel.org
13718 S:      Maintained
13719 W:      https://fedorahosted.org/dropwatch/
13720 F:      include/uapi/linux/net_dropmon.h
13721 F:      net/core/drop_monitor.c
13722
13723 NETWORKING DRIVERS
13724 M:      "David S. Miller" <davem@davemloft.net>
13725 M:      Eric Dumazet <edumazet@google.com>
13726 M:      Jakub Kicinski <kuba@kernel.org>
13727 M:      Paolo Abeni <pabeni@redhat.com>
13728 L:      netdev@vger.kernel.org
13729 S:      Maintained
13730 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
13731 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
13732 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
13733 F:      Documentation/devicetree/bindings/net/
13734 F:      drivers/connector/
13735 F:      drivers/net/
13736 F:      include/linux/etherdevice.h
13737 F:      include/linux/fcdevice.h
13738 F:      include/linux/fddidevice.h
13739 F:      include/linux/hippidevice.h
13740 F:      include/linux/if_*
13741 F:      include/linux/inetdevice.h
13742 F:      include/linux/netdevice.h
13743 F:      include/uapi/linux/if_*
13744 F:      include/uapi/linux/netdevice.h
13745
13746 NETWORKING DRIVERS (WIRELESS)
13747 M:      Kalle Valo <kvalo@kernel.org>
13748 L:      linux-wireless@vger.kernel.org
13749 S:      Maintained
13750 W:      https://wireless.wiki.kernel.org/
13751 Q:      https://patchwork.kernel.org/project/linux-wireless/list/
13752 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless.git
13753 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless-next.git
13754 F:      Documentation/devicetree/bindings/net/wireless/
13755 F:      drivers/net/wireless/
13756
13757 NETWORKING [DSA]
13758 M:      Andrew Lunn <andrew@lunn.ch>
13759 M:      Vivien Didelot <vivien.didelot@gmail.com>
13760 M:      Florian Fainelli <f.fainelli@gmail.com>
13761 M:      Vladimir Oltean <olteanv@gmail.com>
13762 S:      Maintained
13763 F:      Documentation/devicetree/bindings/net/dsa/
13764 F:      drivers/net/dsa/
13765 F:      include/linux/dsa/
13766 F:      include/linux/platform_data/dsa.h
13767 F:      include/net/dsa.h
13768 F:      net/dsa/
13769 F:      tools/testing/selftests/drivers/net/dsa/
13770
13771 NETWORKING [GENERAL]
13772 M:      "David S. Miller" <davem@davemloft.net>
13773 M:      Eric Dumazet <edumazet@google.com>
13774 M:      Jakub Kicinski <kuba@kernel.org>
13775 M:      Paolo Abeni <pabeni@redhat.com>
13776 L:      netdev@vger.kernel.org
13777 S:      Maintained
13778 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
13779 B:      mailto:netdev@vger.kernel.org
13780 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
13781 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
13782 F:      Documentation/networking/
13783 F:      Documentation/process/maintainer-netdev.rst
13784 F:      include/linux/in.h
13785 F:      include/linux/net.h
13786 F:      include/linux/netdevice.h
13787 F:      include/net/
13788 F:      include/uapi/linux/in.h
13789 F:      include/uapi/linux/net.h
13790 F:      include/uapi/linux/net_namespace.h
13791 F:      include/uapi/linux/netdevice.h
13792 F:      lib/net_utils.c
13793 F:      lib/random32.c
13794 F:      net/
13795 F:      tools/testing/selftests/net/
13796
13797 NETWORKING [IPSEC]
13798 M:      Steffen Klassert <steffen.klassert@secunet.com>
13799 M:      Herbert Xu <herbert@gondor.apana.org.au>
13800 M:      "David S. Miller" <davem@davemloft.net>
13801 L:      netdev@vger.kernel.org
13802 S:      Maintained
13803 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git
13804 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git
13805 F:      include/net/xfrm.h
13806 F:      include/uapi/linux/xfrm.h
13807 F:      net/ipv4/ah4.c
13808 F:      net/ipv4/esp4*
13809 F:      net/ipv4/ip_vti.c
13810 F:      net/ipv4/ipcomp.c
13811 F:      net/ipv4/xfrm*
13812 F:      net/ipv6/ah6.c
13813 F:      net/ipv6/esp6*
13814 F:      net/ipv6/ip6_vti.c
13815 F:      net/ipv6/ipcomp6.c
13816 F:      net/ipv6/xfrm*
13817 F:      net/key/
13818 F:      net/xfrm/
13819 F:      tools/testing/selftests/net/ipsec.c
13820
13821 NETWORKING [IPv4/IPv6]
13822 M:      "David S. Miller" <davem@davemloft.net>
13823 M:      Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
13824 M:      David Ahern <dsahern@kernel.org>
13825 L:      netdev@vger.kernel.org
13826 S:      Maintained
13827 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
13828 F:      arch/x86/net/*
13829 F:      include/linux/ip.h
13830 F:      include/linux/ipv6*
13831 F:      include/net/fib*
13832 F:      include/net/ip*
13833 F:      include/net/route.h
13834 F:      net/ipv4/
13835 F:      net/ipv6/
13836
13837 NETWORKING [LABELED] (NetLabel, Labeled IPsec, SECMARK)
13838 M:      Paul Moore <paul@paul-moore.com>
13839 L:      netdev@vger.kernel.org
13840 L:      linux-security-module@vger.kernel.org
13841 S:      Maintained
13842 W:      https://github.com/netlabel
13843 F:      Documentation/netlabel/
13844 F:      include/net/calipso.h
13845 F:      include/net/cipso_ipv4.h
13846 F:      include/net/netlabel.h
13847 F:      include/uapi/linux/netfilter/xt_CONNSECMARK.h
13848 F:      include/uapi/linux/netfilter/xt_SECMARK.h
13849 F:      net/ipv4/cipso_ipv4.c
13850 F:      net/ipv6/calipso.c
13851 F:      net/netfilter/xt_CONNSECMARK.c
13852 F:      net/netfilter/xt_SECMARK.c
13853 F:      net/netlabel/
13854
13855 NETWORKING [MPTCP]
13856 M:      Mat Martineau <mathew.j.martineau@linux.intel.com>
13857 M:      Matthieu Baerts <matthieu.baerts@tessares.net>
13858 L:      netdev@vger.kernel.org
13859 L:      mptcp@lists.linux.dev
13860 S:      Maintained
13861 W:      https://github.com/multipath-tcp/mptcp_net-next/wiki
13862 B:      https://github.com/multipath-tcp/mptcp_net-next/issues
13863 F:      Documentation/networking/mptcp-sysctl.rst
13864 F:      include/net/mptcp.h
13865 F:      include/trace/events/mptcp.h
13866 F:      include/uapi/linux/mptcp.h
13867 F:      net/mptcp/
13868 F:      tools/testing/selftests/bpf/*/*mptcp*.c
13869 F:      tools/testing/selftests/net/mptcp/
13870
13871 NETWORKING [TCP]
13872 M:      Eric Dumazet <edumazet@google.com>
13873 L:      netdev@vger.kernel.org
13874 S:      Maintained
13875 F:      include/linux/tcp.h
13876 F:      include/net/tcp.h
13877 F:      include/trace/events/tcp.h
13878 F:      include/uapi/linux/tcp.h
13879 F:      net/ipv4/syncookies.c
13880 F:      net/ipv4/tcp*.c
13881 F:      net/ipv6/syncookies.c
13882 F:      net/ipv6/tcp*.c
13883
13884 NETWORKING [TLS]
13885 M:      Boris Pismenny <borisp@nvidia.com>
13886 M:      John Fastabend <john.fastabend@gmail.com>
13887 M:      Daniel Borkmann <daniel@iogearbox.net>
13888 M:      Jakub Kicinski <kuba@kernel.org>
13889 L:      netdev@vger.kernel.org
13890 S:      Maintained
13891 F:      include/net/tls.h
13892 F:      include/uapi/linux/tls.h
13893 F:      net/tls/*
13894
13895 NETXEN (1/10) GbE SUPPORT
13896 M:      Manish Chopra <manishc@marvell.com>
13897 M:      Rahul Verma <rahulv@marvell.com>
13898 M:      GR-Linux-NIC-Dev@marvell.com
13899 L:      netdev@vger.kernel.org
13900 S:      Supported
13901 F:      drivers/net/ethernet/qlogic/netxen/
13902
13903 NET_FAILOVER MODULE
13904 M:      Sridhar Samudrala <sridhar.samudrala@intel.com>
13905 L:      netdev@vger.kernel.org
13906 S:      Supported
13907 F:      Documentation/networking/net_failover.rst
13908 F:      drivers/net/net_failover.c
13909 F:      include/net/net_failover.h
13910
13911 NEXTHOP
13912 M:      David Ahern <dsahern@kernel.org>
13913 L:      netdev@vger.kernel.org
13914 S:      Maintained
13915 F:      include/net/netns/nexthop.h
13916 F:      include/net/nexthop.h
13917 F:      include/uapi/linux/nexthop.h
13918 F:      net/ipv4/nexthop.c
13919
13920 NFC SUBSYSTEM
13921 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
13922 L:      linux-nfc@lists.01.org (subscribers-only)
13923 L:      netdev@vger.kernel.org
13924 S:      Maintained
13925 B:      mailto:linux-nfc@lists.01.org
13926 F:      Documentation/devicetree/bindings/net/nfc/
13927 F:      drivers/nfc/
13928 F:      include/linux/platform_data/nfcmrvl.h
13929 F:      include/net/nfc/
13930 F:      include/uapi/linux/nfc.h
13931 F:      net/nfc/
13932
13933 NFC VIRTUAL NCI DEVICE DRIVER
13934 M:      Bongsu Jeon <bongsu.jeon@samsung.com>
13935 L:      netdev@vger.kernel.org
13936 L:      linux-nfc@lists.01.org (subscribers-only)
13937 S:      Supported
13938 F:      drivers/nfc/virtual_ncidev.c
13939 F:      tools/testing/selftests/nci/
13940
13941 NFS, SUNRPC, AND LOCKD CLIENTS
13942 M:      Trond Myklebust <trond.myklebust@hammerspace.com>
13943 M:      Anna Schumaker <anna@kernel.org>
13944 L:      linux-nfs@vger.kernel.org
13945 S:      Maintained
13946 W:      http://client.linux-nfs.org
13947 T:      git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git
13948 F:      fs/lockd/
13949 F:      fs/nfs/
13950 F:      fs/nfs_common/
13951 F:      include/linux/lockd/
13952 F:      include/linux/nfs*
13953 F:      include/linux/sunrpc/
13954 F:      include/uapi/linux/nfs*
13955 F:      include/uapi/linux/sunrpc/
13956 F:      net/sunrpc/
13957 F:      Documentation/filesystems/nfs/
13958
13959 NILFS2 FILESYSTEM
13960 M:      Ryusuke Konishi <konishi.ryusuke@gmail.com>
13961 L:      linux-nilfs@vger.kernel.org
13962 S:      Supported
13963 W:      https://nilfs.sourceforge.io/
13964 W:      https://nilfs.osdn.jp/
13965 T:      git git://github.com/konis/nilfs2.git
13966 F:      Documentation/filesystems/nilfs2.rst
13967 F:      fs/nilfs2/
13968 F:      include/trace/events/nilfs2.h
13969 F:      include/uapi/linux/nilfs2_api.h
13970 F:      include/uapi/linux/nilfs2_ondisk.h
13971
13972 NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
13973 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
13974 S:      Maintained
13975 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
13976 F:      Documentation/scsi/NinjaSCSI.rst
13977 F:      drivers/scsi/pcmcia/nsp_*
13978
13979 NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
13980 M:      GOTO Masanori <gotom@debian.or.jp>
13981 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
13982 S:      Maintained
13983 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
13984 F:      Documentation/scsi/NinjaSCSI.rst
13985 F:      drivers/scsi/nsp32*
13986
13987 NINTENDO HID DRIVER
13988 M:      Daniel J. Ogorchock <djogorchock@gmail.com>
13989 L:      linux-input@vger.kernel.org
13990 S:      Maintained
13991 F:      drivers/hid/hid-nintendo*
13992
13993 NIOS2 ARCHITECTURE
13994 M:      Dinh Nguyen <dinguyen@kernel.org>
13995 S:      Maintained
13996 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
13997 F:      arch/nios2/
13998
13999 NITRO ENCLAVES (NE)
14000 M:      Andra Paraschiv <andraprs@amazon.com>
14001 M:      Alexandru Vasile <lexnv@amazon.com>
14002 M:      Alexandru Ciobotaru <alcioa@amazon.com>
14003 L:      linux-kernel@vger.kernel.org
14004 S:      Supported
14005 W:      https://aws.amazon.com/ec2/nitro/nitro-enclaves/
14006 F:      Documentation/virt/ne_overview.rst
14007 F:      drivers/virt/nitro_enclaves/
14008 F:      include/linux/nitro_enclaves.h
14009 F:      include/uapi/linux/nitro_enclaves.h
14010 F:      samples/nitro_enclaves/
14011
14012 NOHZ, DYNTICKS SUPPORT
14013 M:      Frederic Weisbecker <fweisbec@gmail.com>
14014 M:      Thomas Gleixner <tglx@linutronix.de>
14015 M:      Ingo Molnar <mingo@kernel.org>
14016 L:      linux-kernel@vger.kernel.org
14017 S:      Maintained
14018 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/nohz
14019 F:      include/linux/sched/nohz.h
14020 F:      include/linux/tick.h
14021 F:      kernel/time/tick*.*
14022
14023 NOKIA N900 CAMERA SUPPORT (ET8EK8 SENSOR, AD5820 FOCUS)
14024 M:      Pavel Machek <pavel@ucw.cz>
14025 M:      Sakari Ailus <sakari.ailus@iki.fi>
14026 L:      linux-media@vger.kernel.org
14027 S:      Maintained
14028 F:      drivers/media/i2c/ad5820.c
14029 F:      drivers/media/i2c/et8ek8
14030
14031 NOKIA N900 POWER SUPPLY DRIVERS
14032 R:      Pali Rohár <pali@kernel.org>
14033 F:      drivers/power/supply/bq2415x_charger.c
14034 F:      drivers/power/supply/bq27xxx_battery.c
14035 F:      drivers/power/supply/bq27xxx_battery_i2c.c
14036 F:      drivers/power/supply/isp1704_charger.c
14037 F:      drivers/power/supply/rx51_battery.c
14038 F:      include/linux/power/bq2415x_charger.h
14039 F:      include/linux/power/bq27xxx_battery.h
14040
14041 NOLIBC HEADER FILE
14042 M:      Willy Tarreau <w@1wt.eu>
14043 S:      Maintained
14044 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wtarreau/nolibc.git
14045 F:      tools/include/nolibc/
14046
14047 NSDEPS
14048 M:      Matthias Maennich <maennich@google.com>
14049 S:      Maintained
14050 F:      Documentation/core-api/symbol-namespaces.rst
14051 F:      scripts/nsdeps
14052
14053 NTB AMD DRIVER
14054 M:      Sanjay R Mehta <sanju.mehta@amd.com>
14055 M:      Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
14056 L:      ntb@lists.linux.dev
14057 S:      Supported
14058 F:      drivers/ntb/hw/amd/
14059
14060 NTB DRIVER CORE
14061 M:      Jon Mason <jdmason@kudzu.us>
14062 M:      Dave Jiang <dave.jiang@intel.com>
14063 M:      Allen Hubbe <allenbh@gmail.com>
14064 L:      ntb@lists.linux.dev
14065 S:      Supported
14066 W:      https://github.com/jonmason/ntb/wiki
14067 T:      git git://github.com/jonmason/ntb.git
14068 F:      drivers/net/ntb_netdev.c
14069 F:      drivers/ntb/
14070 F:      include/linux/ntb.h
14071 F:      include/linux/ntb_transport.h
14072 F:      tools/testing/selftests/ntb/
14073
14074 NTB IDT DRIVER
14075 M:      Serge Semin <fancer.lancer@gmail.com>
14076 L:      ntb@lists.linux.dev
14077 S:      Supported
14078 F:      drivers/ntb/hw/idt/
14079
14080 NTB INTEL DRIVER
14081 M:      Dave Jiang <dave.jiang@intel.com>
14082 L:      ntb@lists.linux.dev
14083 S:      Supported
14084 W:      https://github.com/davejiang/linux/wiki
14085 T:      git https://github.com/davejiang/linux.git
14086 F:      drivers/ntb/hw/intel/
14087
14088 NTFS FILESYSTEM
14089 M:      Anton Altaparmakov <anton@tuxera.com>
14090 L:      linux-ntfs-dev@lists.sourceforge.net
14091 S:      Supported
14092 W:      http://www.tuxera.com/
14093 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
14094 F:      Documentation/filesystems/ntfs.rst
14095 F:      fs/ntfs/
14096
14097 NTFS3 FILESYSTEM
14098 M:      Konstantin Komarov <almaz.alexandrovich@paragon-software.com>
14099 L:      ntfs3@lists.linux.dev
14100 S:      Supported
14101 W:      http://www.paragon-software.com/
14102 T:      git https://github.com/Paragon-Software-Group/linux-ntfs3.git
14103 F:      Documentation/filesystems/ntfs3.rst
14104 F:      fs/ntfs3/
14105
14106 NUBUS SUBSYSTEM
14107 M:      Finn Thain <fthain@linux-m68k.org>
14108 L:      linux-m68k@lists.linux-m68k.org
14109 S:      Maintained
14110 F:      arch/*/include/asm/nubus.h
14111 F:      drivers/nubus/
14112 F:      include/linux/nubus.h
14113 F:      include/uapi/linux/nubus.h
14114
14115 NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
14116 M:      Antonino Daplas <adaplas@gmail.com>
14117 L:      linux-fbdev@vger.kernel.org
14118 S:      Maintained
14119 F:      drivers/video/fbdev/nvidia/
14120 F:      drivers/video/fbdev/riva/
14121
14122 NVIDIA WMI EC BACKLIGHT DRIVER
14123 M:      Daniel Dadap <ddadap@nvidia.com>
14124 L:      platform-driver-x86@vger.kernel.org
14125 S:      Supported
14126 F:      drivers/platform/x86/nvidia-wmi-ec-backlight.c
14127
14128 NVM EXPRESS DRIVER
14129 M:      Keith Busch <kbusch@kernel.org>
14130 M:      Jens Axboe <axboe@fb.com>
14131 M:      Christoph Hellwig <hch@lst.de>
14132 M:      Sagi Grimberg <sagi@grimberg.me>
14133 L:      linux-nvme@lists.infradead.org
14134 S:      Supported
14135 W:      http://git.infradead.org/nvme.git
14136 T:      git://git.infradead.org/nvme.git
14137 F:      drivers/nvme/host/
14138 F:      include/linux/nvme.h
14139 F:      include/uapi/linux/nvme_ioctl.h
14140
14141 NVM EXPRESS FC TRANSPORT DRIVERS
14142 M:      James Smart <james.smart@broadcom.com>
14143 L:      linux-nvme@lists.infradead.org
14144 S:      Supported
14145 F:      drivers/nvme/host/fc.c
14146 F:      drivers/nvme/target/fc.c
14147 F:      drivers/nvme/target/fcloop.c
14148 F:      include/linux/nvme-fc-driver.h
14149 F:      include/linux/nvme-fc.h
14150
14151 NVM EXPRESS TARGET DRIVER
14152 M:      Christoph Hellwig <hch@lst.de>
14153 M:      Sagi Grimberg <sagi@grimberg.me>
14154 M:      Chaitanya Kulkarni <kch@nvidia.com>
14155 L:      linux-nvme@lists.infradead.org
14156 S:      Supported
14157 W:      http://git.infradead.org/nvme.git
14158 T:      git://git.infradead.org/nvme.git
14159 F:      drivers/nvme/target/
14160
14161 NVMEM FRAMEWORK
14162 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
14163 S:      Maintained
14164 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/srini/nvmem.git
14165 F:      Documentation/ABI/stable/sysfs-bus-nvmem
14166 F:      Documentation/devicetree/bindings/nvmem/
14167 F:      drivers/nvmem/
14168 F:      include/linux/nvmem-consumer.h
14169 F:      include/linux/nvmem-provider.h
14170
14171 NXP C45 TJA11XX PHY DRIVER
14172 M:      Radu Pirea <radu-nicolae.pirea@oss.nxp.com>
14173 L:      netdev@vger.kernel.org
14174 S:      Maintained
14175 F:      drivers/net/phy/nxp-c45-tja11xx.c
14176
14177 NXP FSPI DRIVER
14178 M:      Ashish Kumar <ashish.kumar@nxp.com>
14179 R:      Yogesh Gaur <yogeshgaur.83@gmail.com>
14180 L:      linux-spi@vger.kernel.org
14181 S:      Maintained
14182 F:      Documentation/devicetree/bindings/spi/spi-nxp-fspi.yaml
14183 F:      drivers/spi/spi-nxp-fspi.c
14184
14185 NXP FXAS21002C DRIVER
14186 M:      Rui Miguel Silva <rmfrfs@gmail.com>
14187 L:      linux-iio@vger.kernel.org
14188 S:      Maintained
14189 F:      Documentation/devicetree/bindings/iio/gyroscope/nxp,fxas21002c.yaml
14190 F:      drivers/iio/gyro/fxas21002c.h
14191 F:      drivers/iio/gyro/fxas21002c_core.c
14192 F:      drivers/iio/gyro/fxas21002c_i2c.c
14193 F:      drivers/iio/gyro/fxas21002c_spi.c
14194
14195 NXP i.MX CLOCK DRIVERS
14196 M:      Abel Vesa <abel.vesa@nxp.com>
14197 L:      linux-clk@vger.kernel.org
14198 L:      linux-imx@nxp.com
14199 S:      Maintained
14200 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/abelvesa/linux.git clk/imx
14201 F:      Documentation/devicetree/bindings/clock/imx*
14202 F:      drivers/clk/imx/
14203 F:      include/dt-bindings/clock/imx*
14204
14205 NXP i.MX 8MQ DCSS DRIVER
14206 M:      Laurentiu Palcu <laurentiu.palcu@oss.nxp.com>
14207 R:      Lucas Stach <l.stach@pengutronix.de>
14208 L:      dri-devel@lists.freedesktop.org
14209 S:      Maintained
14210 F:      Documentation/devicetree/bindings/display/imx/nxp,imx8mq-dcss.yaml
14211 F:      drivers/gpu/drm/imx/dcss/
14212
14213 NXP i.MX 8QXP ADC DRIVER
14214 M:      Cai Huoqing <cai.huoqing@linux.dev>
14215 M:      Haibo Chen <haibo.chen@nxp.com>
14216 L:      linux-imx@nxp.com
14217 L:      linux-iio@vger.kernel.org
14218 S:      Maintained
14219 F:      Documentation/devicetree/bindings/iio/adc/nxp,imx8qxp-adc.yaml
14220 F:      drivers/iio/adc/imx8qxp-adc.c
14221
14222 NXP i.MX 7D/6SX/6UL AND VF610 ADC DRIVER
14223 M:      Haibo Chen <haibo.chen@nxp.com>
14224 L:      linux-iio@vger.kernel.org
14225 L:      linux-imx@nxp.com
14226 S:      Maintained
14227 F:      Documentation/devicetree/bindings/iio/adc/fsl,imx7d-adc.yaml
14228 F:      Documentation/devicetree/bindings/iio/adc/fsl,vf610-adc.yaml
14229 F:      drivers/iio/adc/imx7d_adc.c
14230 F:      drivers/iio/adc/vf610_adc.c
14231
14232 NXP PF8100/PF8121A/PF8200 PMIC REGULATOR DEVICE DRIVER
14233 M:      Jagan Teki <jagan@amarulasolutions.com>
14234 S:      Maintained
14235 F:      Documentation/devicetree/bindings/regulator/nxp,pf8x00-regulator.yaml
14236 F:      drivers/regulator/pf8x00-regulator.c
14237
14238 NXP PTN5150A CC LOGIC AND EXTCON DRIVER
14239 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
14240 L:      linux-kernel@vger.kernel.org
14241 S:      Maintained
14242 F:      Documentation/devicetree/bindings/extcon/extcon-ptn5150.yaml
14243 F:      drivers/extcon/extcon-ptn5150.c
14244
14245 NXP SGTL5000 DRIVER
14246 M:      Fabio Estevam <festevam@gmail.com>
14247 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
14248 S:      Maintained
14249 F:      Documentation/devicetree/bindings/sound/sgtl5000.yaml
14250 F:      sound/soc/codecs/sgtl5000*
14251
14252 NXP SJA1105 ETHERNET SWITCH DRIVER
14253 M:      Vladimir Oltean <olteanv@gmail.com>
14254 L:      linux-kernel@vger.kernel.org
14255 S:      Maintained
14256 F:      drivers/net/dsa/sja1105
14257 F:      drivers/net/pcs/pcs-xpcs-nxp.c
14258
14259 NXP TDA998X DRM DRIVER
14260 M:      Russell King <linux@armlinux.org.uk>
14261 S:      Maintained
14262 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-devel
14263 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-fixes
14264 F:      drivers/gpu/drm/i2c/tda998x_drv.c
14265 F:      include/drm/i2c/tda998x.h
14266 F:      include/dt-bindings/display/tda998x.h
14267 K:      "nxp,tda998x"
14268
14269 NXP TFA9879 DRIVER
14270 M:      Peter Rosin <peda@axentia.se>
14271 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
14272 S:      Maintained
14273 F:      Documentation/devicetree/bindings/sound/tfa9879.txt
14274 F:      sound/soc/codecs/tfa9879*
14275
14276 NXP/Goodix TFA989X (TFA1) DRIVER
14277 M:      Stephan Gerhold <stephan@gerhold.net>
14278 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
14279 S:      Maintained
14280 F:      Documentation/devicetree/bindings/sound/nxp,tfa989x.yaml
14281 F:      sound/soc/codecs/tfa989x.c
14282
14283 NXP-NCI NFC DRIVER
14284 R:      Charles Gorand <charles.gorand@effinnov.com>
14285 L:      linux-nfc@lists.01.org (subscribers-only)
14286 S:      Supported
14287 F:      Documentation/devicetree/bindings/net/nfc/nxp,nci.yaml
14288 F:      drivers/nfc/nxp-nci
14289
14290 NXP i.MX 8QXP/8QM JPEG V4L2 DRIVER
14291 M:      Mirela Rabulea <mirela.rabulea@nxp.com>
14292 R:      NXP Linux Team <linux-imx@nxp.com>
14293 L:      linux-media@vger.kernel.org
14294 S:      Maintained
14295 F:      Documentation/devicetree/bindings/media/nxp,imx8-jpeg.yaml
14296 F:      drivers/media/platform/nxp/imx-jpeg
14297
14298 NZXT-KRAKEN2 HARDWARE MONITORING DRIVER
14299 M:      Jonas Malaco <jonas@protocubo.io>
14300 L:      linux-hwmon@vger.kernel.org
14301 S:      Maintained
14302 F:      Documentation/hwmon/nzxt-kraken2.rst
14303 F:      drivers/hwmon/nzxt-kraken2.c
14304
14305 NZXT-SMART2 HARDWARE MONITORING DRIVER
14306 M:      Aleksandr Mezin <mezin.alexander@gmail.com>
14307 L:      linux-hwmon@vger.kernel.org
14308 S:      Maintained
14309 F:      Documentation/hwmon/nzxt-smart2.rst
14310 F:      drivers/hwmon/nzxt-smart2.c
14311
14312 OBJAGG
14313 M:      Jiri Pirko <jiri@nvidia.com>
14314 L:      netdev@vger.kernel.org
14315 S:      Supported
14316 F:      include/linux/objagg.h
14317 F:      lib/objagg.c
14318 F:      lib/test_objagg.c
14319
14320 OBJTOOL
14321 M:      Josh Poimboeuf <jpoimboe@kernel.org>
14322 M:      Peter Zijlstra <peterz@infradead.org>
14323 S:      Supported
14324 F:      tools/objtool/
14325 F:      include/linux/objtool.h
14326
14327 OCELOT ETHERNET SWITCH DRIVER
14328 M:      Vladimir Oltean <vladimir.oltean@nxp.com>
14329 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
14330 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
14331 M:      UNGLinuxDriver@microchip.com
14332 L:      netdev@vger.kernel.org
14333 S:      Supported
14334 F:      drivers/net/dsa/ocelot/*
14335 F:      drivers/net/ethernet/mscc/
14336 F:      include/soc/mscc/ocelot*
14337 F:      net/dsa/tag_ocelot.c
14338 F:      net/dsa/tag_ocelot_8021q.c
14339 F:      tools/testing/selftests/drivers/net/ocelot/*
14340
14341 OCXL (Open Coherent Accelerator Processor Interface OpenCAPI) DRIVER
14342 M:      Frederic Barrat <fbarrat@linux.ibm.com>
14343 M:      Andrew Donnellan <ajd@linux.ibm.com>
14344 L:      linuxppc-dev@lists.ozlabs.org
14345 S:      Supported
14346 F:      Documentation/userspace-api/accelerators/ocxl.rst
14347 F:      arch/powerpc/include/asm/pnv-ocxl.h
14348 F:      arch/powerpc/platforms/powernv/ocxl.c
14349 F:      drivers/misc/ocxl/
14350 F:      include/misc/ocxl*
14351 F:      include/uapi/misc/ocxl.h
14352
14353 OMAP AUDIO SUPPORT
14354 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
14355 M:      Jarkko Nikula <jarkko.nikula@bitmer.com>
14356 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
14357 L:      linux-omap@vger.kernel.org
14358 S:      Maintained
14359 F:      sound/soc/ti/n810.c
14360 F:      sound/soc/ti/omap*
14361 F:      sound/soc/ti/rx51.c
14362 F:      sound/soc/ti/sdma-pcm.*
14363
14364 OMAP CLOCK FRAMEWORK SUPPORT
14365 M:      Paul Walmsley <paul@pwsan.com>
14366 L:      linux-omap@vger.kernel.org
14367 S:      Maintained
14368 F:      arch/arm/*omap*/*clock*
14369
14370 OMAP DEVICE TREE SUPPORT
14371 M:      Benoît Cousson <bcousson@baylibre.com>
14372 M:      Tony Lindgren <tony@atomide.com>
14373 L:      linux-omap@vger.kernel.org
14374 L:      devicetree@vger.kernel.org
14375 S:      Maintained
14376 F:      arch/arm/boot/dts/*am3*
14377 F:      arch/arm/boot/dts/*am4*
14378 F:      arch/arm/boot/dts/*am5*
14379 F:      arch/arm/boot/dts/*dra7*
14380 F:      arch/arm/boot/dts/*omap*
14381 F:      arch/arm/boot/dts/logicpd-som-lv*
14382 F:      arch/arm/boot/dts/logicpd-torpedo*
14383
14384 OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
14385 L:      linux-omap@vger.kernel.org
14386 L:      linux-fbdev@vger.kernel.org
14387 S:      Orphan
14388 F:      Documentation/arm/omap/dss.rst
14389 F:      drivers/video/fbdev/omap2/
14390
14391 OMAP FRAMEBUFFER SUPPORT
14392 L:      linux-fbdev@vger.kernel.org
14393 L:      linux-omap@vger.kernel.org
14394 S:      Orphan
14395 F:      drivers/video/fbdev/omap/
14396
14397 OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT
14398 M:      Roger Quadros <rogerq@kernel.org>
14399 M:      Tony Lindgren <tony@atomide.com>
14400 L:      linux-omap@vger.kernel.org
14401 S:      Maintained
14402 F:      arch/arm/mach-omap2/*gpmc*
14403 F:      drivers/memory/omap-gpmc.c
14404
14405 OMAP GPIO DRIVER
14406 M:      Grygorii Strashko <grygorii.strashko@ti.com>
14407 M:      Santosh Shilimkar <ssantosh@kernel.org>
14408 M:      Kevin Hilman <khilman@kernel.org>
14409 L:      linux-omap@vger.kernel.org
14410 S:      Maintained
14411 F:      Documentation/devicetree/bindings/gpio/ti,omap-gpio.yaml
14412 F:      drivers/gpio/gpio-omap.c
14413
14414 OMAP HARDWARE SPINLOCK SUPPORT
14415 M:      Ohad Ben-Cohen <ohad@wizery.com>
14416 L:      linux-omap@vger.kernel.org
14417 S:      Maintained
14418 F:      drivers/hwspinlock/omap_hwspinlock.c
14419
14420 OMAP HS MMC SUPPORT
14421 L:      linux-mmc@vger.kernel.org
14422 L:      linux-omap@vger.kernel.org
14423 S:      Orphan
14424 F:      drivers/mmc/host/omap_hsmmc.c
14425
14426 OMAP HWMOD DATA
14427 M:      Paul Walmsley <paul@pwsan.com>
14428 L:      linux-omap@vger.kernel.org
14429 S:      Maintained
14430 F:      arch/arm/mach-omap2/omap_hwmod*data*
14431
14432 OMAP HWMOD SUPPORT
14433 M:      Benoît Cousson <bcousson@baylibre.com>
14434 M:      Paul Walmsley <paul@pwsan.com>
14435 L:      linux-omap@vger.kernel.org
14436 S:      Maintained
14437 F:      arch/arm/mach-omap2/omap_hwmod.*
14438
14439 OMAP I2C DRIVER
14440 M:      Vignesh R <vigneshr@ti.com>
14441 L:      linux-omap@vger.kernel.org
14442 L:      linux-i2c@vger.kernel.org
14443 S:      Maintained
14444 F:      Documentation/devicetree/bindings/i2c/ti,omap4-i2c.yaml
14445 F:      drivers/i2c/busses/i2c-omap.c
14446
14447 OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS)
14448 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
14449 L:      linux-media@vger.kernel.org
14450 S:      Maintained
14451 F:      Documentation/devicetree/bindings/media/ti,omap3isp.txt
14452 F:      drivers/media/platform/ti/omap3isp/
14453 F:      drivers/staging/media/omap4iss/
14454
14455 OMAP MMC SUPPORT
14456 M:      Aaro Koskinen <aaro.koskinen@iki.fi>
14457 L:      linux-omap@vger.kernel.org
14458 S:      Odd Fixes
14459 F:      drivers/mmc/host/omap.c
14460
14461 OMAP POWER MANAGEMENT SUPPORT
14462 M:      Kevin Hilman <khilman@kernel.org>
14463 L:      linux-omap@vger.kernel.org
14464 S:      Maintained
14465 F:      arch/arm/*omap*/*pm*
14466 F:      drivers/cpufreq/omap-cpufreq.c
14467
14468 OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT
14469 M:      Paul Walmsley <paul@pwsan.com>
14470 L:      linux-omap@vger.kernel.org
14471 S:      Maintained
14472 F:      arch/arm/mach-omap2/prm*
14473
14474 OMAP RANDOM NUMBER GENERATOR SUPPORT
14475 M:      Deepak Saxena <dsaxena@plexity.net>
14476 S:      Maintained
14477 F:      drivers/char/hw_random/omap-rng.c
14478
14479 OMAP USB SUPPORT
14480 L:      linux-usb@vger.kernel.org
14481 L:      linux-omap@vger.kernel.org
14482 S:      Orphan
14483 F:      arch/arm/*omap*/usb*
14484 F:      drivers/usb/*/*omap*
14485
14486 OMAP/NEWFLOW NANOBONE MACHINE SUPPORT
14487 M:      Mark Jackson <mpfj@newflow.co.uk>
14488 L:      linux-omap@vger.kernel.org
14489 S:      Maintained
14490 F:      arch/arm/boot/dts/am335x-nano.dts
14491
14492 OMAP1 SUPPORT
14493 M:      Aaro Koskinen <aaro.koskinen@iki.fi>
14494 M:      Tony Lindgren <tony@atomide.com>
14495 L:      linux-omap@vger.kernel.org
14496 S:      Maintained
14497 Q:      http://patchwork.kernel.org/project/linux-omap/list/
14498 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
14499 F:      arch/arm/configs/omap1_defconfig
14500 F:      arch/arm/mach-omap1/
14501 F:      arch/arm/plat-omap/
14502 F:      drivers/i2c/busses/i2c-omap.c
14503 F:      include/linux/platform_data/ams-delta-fiq.h
14504 F:      include/linux/platform_data/i2c-omap.h
14505
14506 OMAP2+ SUPPORT
14507 M:      Tony Lindgren <tony@atomide.com>
14508 L:      linux-omap@vger.kernel.org
14509 S:      Maintained
14510 W:      http://www.muru.com/linux/omap/
14511 W:      http://linux.omap.com/
14512 Q:      http://patchwork.kernel.org/project/linux-omap/list/
14513 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
14514 F:      arch/arm/configs/omap2plus_defconfig
14515 F:      arch/arm/mach-omap2/
14516 F:      arch/arm/plat-omap/
14517 F:      drivers/bus/ti-sysc.c
14518 F:      drivers/i2c/busses/i2c-omap.c
14519 F:      drivers/irqchip/irq-omap-intc.c
14520 F:      drivers/mfd/*omap*.c
14521 F:      drivers/mfd/menelaus.c
14522 F:      drivers/mfd/palmas.c
14523 F:      drivers/mfd/tps65217.c
14524 F:      drivers/mfd/tps65218.c
14525 F:      drivers/mfd/tps65910.c
14526 F:      drivers/mfd/twl-core.[ch]
14527 F:      drivers/mfd/twl4030*.c
14528 F:      drivers/mfd/twl6030*.c
14529 F:      drivers/mfd/twl6040*.c
14530 F:      drivers/regulator/palmas-regulator*.c
14531 F:      drivers/regulator/pbias-regulator.c
14532 F:      drivers/regulator/tps65217-regulator.c
14533 F:      drivers/regulator/tps65218-regulator.c
14534 F:      drivers/regulator/tps65910-regulator.c
14535 F:      drivers/regulator/twl-regulator.c
14536 F:      drivers/regulator/twl6030-regulator.c
14537 F:      include/linux/platform_data/i2c-omap.h
14538 F:      include/linux/platform_data/ti-sysc.h
14539
14540 OMFS FILESYSTEM
14541 M:      Bob Copeland <me@bobcopeland.com>
14542 L:      linux-karma-devel@lists.sourceforge.net
14543 S:      Maintained
14544 F:      Documentation/filesystems/omfs.rst
14545 F:      fs/omfs/
14546
14547 OMNIKEY CARDMAN 4000 DRIVER
14548 M:      Harald Welte <laforge@gnumonks.org>
14549 S:      Maintained
14550 F:      drivers/char/pcmcia/cm4000_cs.c
14551 F:      include/linux/cm4000_cs.h
14552 F:      include/uapi/linux/cm4000_cs.h
14553
14554 OMNIKEY CARDMAN 4040 DRIVER
14555 M:      Harald Welte <laforge@gnumonks.org>
14556 S:      Maintained
14557 F:      drivers/char/pcmcia/cm4040_cs.*
14558
14559 OMNIVISION OG01A1B SENSOR DRIVER
14560 M:      Shawn Tu <shawnx.tu@intel.com>
14561 L:      linux-media@vger.kernel.org
14562 S:      Maintained
14563 F:      drivers/media/i2c/og01a1b.c
14564
14565 OMNIVISION OV02A10 SENSOR DRIVER
14566 M:      Dongchun Zhu <dongchun.zhu@mediatek.com>
14567 L:      linux-media@vger.kernel.org
14568 S:      Maintained
14569 T:      git git://linuxtv.org/media_tree.git
14570 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov02a10.yaml
14571 F:      drivers/media/i2c/ov02a10.c
14572
14573 OMNIVISION OV08D10 SENSOR DRIVER
14574 M:      Jimmy Su <jimmy.su@intel.com>
14575 L:      linux-media@vger.kernel.org
14576 S:      Maintained
14577 T:      git git://linuxtv.org/media_tree.git
14578 F:      drivers/media/i2c/ov08d10.c
14579
14580 OMNIVISION OV13858 SENSOR DRIVER
14581 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
14582 L:      linux-media@vger.kernel.org
14583 S:      Maintained
14584 T:      git git://linuxtv.org/media_tree.git
14585 F:      drivers/media/i2c/ov13858.c
14586
14587 OMNIVISION OV13B10 SENSOR DRIVER
14588 M:      Arec Kao <arec.kao@intel.com>
14589 L:      linux-media@vger.kernel.org
14590 S:      Maintained
14591 T:      git git://linuxtv.org/media_tree.git
14592 F:      drivers/media/i2c/ov13b10.c
14593
14594 OMNIVISION OV2680 SENSOR DRIVER
14595 M:      Rui Miguel Silva <rmfrfs@gmail.com>
14596 L:      linux-media@vger.kernel.org
14597 S:      Maintained
14598 T:      git git://linuxtv.org/media_tree.git
14599 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov2680.yaml
14600 F:      drivers/media/i2c/ov2680.c
14601
14602 OMNIVISION OV2685 SENSOR DRIVER
14603 M:      Shunqian Zheng <zhengsq@rock-chips.com>
14604 L:      linux-media@vger.kernel.org
14605 S:      Maintained
14606 T:      git git://linuxtv.org/media_tree.git
14607 F:      drivers/media/i2c/ov2685.c
14608
14609 OMNIVISION OV2740 SENSOR DRIVER
14610 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
14611 R:      Shawn Tu <shawnx.tu@intel.com>
14612 R:      Bingbu Cao <bingbu.cao@intel.com>
14613 L:      linux-media@vger.kernel.org
14614 S:      Maintained
14615 T:      git git://linuxtv.org/media_tree.git
14616 F:      drivers/media/i2c/ov2740.c
14617
14618 OMNIVISION OV5640 SENSOR DRIVER
14619 M:      Steve Longerbeam <slongerbeam@gmail.com>
14620 L:      linux-media@vger.kernel.org
14621 S:      Maintained
14622 T:      git git://linuxtv.org/media_tree.git
14623 F:      drivers/media/i2c/ov5640.c
14624
14625 OMNIVISION OV5647 SENSOR DRIVER
14626 M:      Dave Stevenson <dave.stevenson@raspberrypi.com>
14627 M:      Jacopo Mondi <jacopo@jmondi.org>
14628 L:      linux-media@vger.kernel.org
14629 S:      Maintained
14630 T:      git git://linuxtv.org/media_tree.git
14631 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov5647.yaml
14632 F:      drivers/media/i2c/ov5647.c
14633
14634 OMNIVISION OV5670 SENSOR DRIVER
14635 M:      Chiranjeevi Rapolu <chiranjeevi.rapolu@intel.com>
14636 L:      linux-media@vger.kernel.org
14637 S:      Maintained
14638 T:      git git://linuxtv.org/media_tree.git
14639 F:      drivers/media/i2c/ov5670.c
14640
14641 OMNIVISION OV5675 SENSOR DRIVER
14642 M:      Shawn Tu <shawnx.tu@intel.com>
14643 L:      linux-media@vger.kernel.org
14644 S:      Maintained
14645 T:      git git://linuxtv.org/media_tree.git
14646 F:      drivers/media/i2c/ov5675.c
14647
14648 OMNIVISION OV5693 SENSOR DRIVER
14649 M:      Daniel Scally <djrscally@gmail.com>
14650 L:      linux-media@vger.kernel.org
14651 S:      Maintained
14652 T:      git git://linuxtv.org/media_tree.git
14653 F:      drivers/media/i2c/ov5693.c
14654
14655 OMNIVISION OV5695 SENSOR DRIVER
14656 M:      Shunqian Zheng <zhengsq@rock-chips.com>
14657 L:      linux-media@vger.kernel.org
14658 S:      Maintained
14659 T:      git git://linuxtv.org/media_tree.git
14660 F:      drivers/media/i2c/ov5695.c
14661
14662 OMNIVISION OV7670 SENSOR DRIVER
14663 L:      linux-media@vger.kernel.org
14664 S:      Orphan
14665 T:      git git://linuxtv.org/media_tree.git
14666 F:      Documentation/devicetree/bindings/media/i2c/ov7670.txt
14667 F:      drivers/media/i2c/ov7670.c
14668
14669 OMNIVISION OV772x SENSOR DRIVER
14670 M:      Jacopo Mondi <jacopo@jmondi.org>
14671 L:      linux-media@vger.kernel.org
14672 S:      Odd fixes
14673 T:      git git://linuxtv.org/media_tree.git
14674 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov772x.yaml
14675 F:      drivers/media/i2c/ov772x.c
14676 F:      include/media/i2c/ov772x.h
14677
14678 OMNIVISION OV7740 SENSOR DRIVER
14679 M:      Wenyou Yang <wenyou.yang@microchip.com>
14680 L:      linux-media@vger.kernel.org
14681 S:      Maintained
14682 T:      git git://linuxtv.org/media_tree.git
14683 F:      Documentation/devicetree/bindings/media/i2c/ov7740.txt
14684 F:      drivers/media/i2c/ov7740.c
14685
14686 OMNIVISION OV8856 SENSOR DRIVER
14687 M:      Dongchun Zhu <dongchun.zhu@mediatek.com>
14688 L:      linux-media@vger.kernel.org
14689 S:      Maintained
14690 T:      git git://linuxtv.org/media_tree.git
14691 F:      Documentation/devicetree/bindings/media/i2c/ov8856.yaml
14692 F:      drivers/media/i2c/ov8856.c
14693
14694 OMNIVISION OV9282 SENSOR DRIVER
14695 M:      Paul J. Murphy <paul.j.murphy@intel.com>
14696 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
14697 L:      linux-media@vger.kernel.org
14698 S:      Maintained
14699 T:      git git://linuxtv.org/media_tree.git
14700 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov9282.yaml
14701 F:      drivers/media/i2c/ov9282.c
14702
14703 OMNIVISION OV9640 SENSOR DRIVER
14704 M:      Petr Cvek <petrcvekcz@gmail.com>
14705 L:      linux-media@vger.kernel.org
14706 S:      Maintained
14707 F:      drivers/media/i2c/ov9640.*
14708
14709 OMNIVISION OV9650 SENSOR DRIVER
14710 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
14711 R:      Akinobu Mita <akinobu.mita@gmail.com>
14712 R:      Sylwester Nawrocki <s.nawrocki@samsung.com>
14713 L:      linux-media@vger.kernel.org
14714 S:      Maintained
14715 T:      git git://linuxtv.org/media_tree.git
14716 F:      Documentation/devicetree/bindings/media/i2c/ov9650.txt
14717 F:      drivers/media/i2c/ov9650.c
14718
14719 OMNIVISION OV9734 SENSOR DRIVER
14720 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
14721 R:      Bingbu Cao <bingbu.cao@intel.com>
14722 L:      linux-media@vger.kernel.org
14723 S:      Maintained
14724 T:      git git://linuxtv.org/media_tree.git
14725 F:      drivers/media/i2c/ov9734.c
14726
14727 ONENAND FLASH DRIVER
14728 M:      Kyungmin Park <kyungmin.park@samsung.com>
14729 L:      linux-mtd@lists.infradead.org
14730 S:      Maintained
14731 F:      drivers/mtd/nand/onenand/
14732 F:      include/linux/mtd/onenand*.h
14733
14734 ONION OMEGA2+ BOARD
14735 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
14736 L:      linux-mips@vger.kernel.org
14737 S:      Maintained
14738 F:      arch/mips/boot/dts/ralink/omega2p.dts
14739
14740 OP-TEE DRIVER
14741 M:      Jens Wiklander <jens.wiklander@linaro.org>
14742 L:      op-tee@lists.trustedfirmware.org
14743 S:      Maintained
14744 F:      Documentation/ABI/testing/sysfs-bus-optee-devices
14745 F:      drivers/tee/optee/
14746
14747 OP-TEE RANDOM NUMBER GENERATOR (RNG) DRIVER
14748 M:      Sumit Garg <sumit.garg@linaro.org>
14749 L:      op-tee@lists.trustedfirmware.org
14750 S:      Maintained
14751 F:      drivers/char/hw_random/optee-rng.c
14752
14753 OP-TEE RTC DRIVER
14754 M:      Clément Léger <clement.leger@bootlin.com>
14755 L:      linux-rtc@vger.kernel.org
14756 S:      Maintained
14757 F:      drivers/rtc/rtc-optee.c
14758
14759 OPA-VNIC DRIVER
14760 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
14761 L:      linux-rdma@vger.kernel.org
14762 S:      Supported
14763 F:      drivers/infiniband/ulp/opa_vnic
14764
14765 OPEN FIRMWARE AND DEVICE TREE OVERLAYS
14766 M:      Pantelis Antoniou <pantelis.antoniou@konsulko.com>
14767 M:      Frank Rowand <frowand.list@gmail.com>
14768 L:      devicetree@vger.kernel.org
14769 S:      Maintained
14770 F:      Documentation/devicetree/dynamic-resolution-notes.rst
14771 F:      Documentation/devicetree/overlay-notes.rst
14772 F:      drivers/of/overlay.c
14773 F:      drivers/of/resolver.c
14774 K:      of_overlay_notifier_
14775
14776 OPEN FIRMWARE AND FLATTENED DEVICE TREE
14777 M:      Rob Herring <robh+dt@kernel.org>
14778 M:      Frank Rowand <frowand.list@gmail.com>
14779 L:      devicetree@vger.kernel.org
14780 S:      Maintained
14781 C:      irc://irc.libera.chat/devicetree
14782 W:      http://www.devicetree.org/
14783 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
14784 F:      Documentation/ABI/testing/sysfs-firmware-ofw
14785 F:      drivers/of/
14786 F:      include/linux/of*.h
14787 F:      scripts/dtc/
14788
14789 OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
14790 M:      Rob Herring <robh+dt@kernel.org>
14791 M:      Krzysztof Kozlowski <krzysztof.kozlowski+dt@linaro.org>
14792 L:      devicetree@vger.kernel.org
14793 S:      Maintained
14794 C:      irc://irc.libera.chat/devicetree
14795 Q:      http://patchwork.ozlabs.org/project/devicetree-bindings/list/
14796 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
14797 F:      Documentation/devicetree/
14798 F:      arch/*/boot/dts/
14799 F:      include/dt-bindings/
14800
14801 OPENCOMPUTE PTP CLOCK DRIVER
14802 M:      Jonathan Lemon <jonathan.lemon@gmail.com>
14803 L:      netdev@vger.kernel.org
14804 S:      Maintained
14805 F:      drivers/ptp/ptp_ocp.c
14806
14807 OPENCORES I2C BUS DRIVER
14808 M:      Peter Korsgaard <peter@korsgaard.com>
14809 M:      Andrew Lunn <andrew@lunn.ch>
14810 L:      linux-i2c@vger.kernel.org
14811 S:      Maintained
14812 F:      Documentation/devicetree/bindings/i2c/i2c-ocores.txt
14813 F:      Documentation/i2c/busses/i2c-ocores.rst
14814 F:      drivers/i2c/busses/i2c-ocores.c
14815 F:      include/linux/platform_data/i2c-ocores.h
14816
14817 OPENRISC ARCHITECTURE
14818 M:      Jonas Bonn <jonas@southpole.se>
14819 M:      Stefan Kristiansson <stefan.kristiansson@saunalahti.fi>
14820 M:      Stafford Horne <shorne@gmail.com>
14821 L:      openrisc@lists.librecores.org
14822 S:      Maintained
14823 W:      http://openrisc.io
14824 T:      git git://github.com/openrisc/linux.git
14825 F:      Documentation/devicetree/bindings/openrisc/
14826 F:      Documentation/openrisc/
14827 F:      arch/openrisc/
14828 F:      drivers/irqchip/irq-ompic.c
14829 F:      drivers/irqchip/irq-or1k-*
14830
14831 OPENVSWITCH
14832 M:      Pravin B Shelar <pshelar@ovn.org>
14833 L:      netdev@vger.kernel.org
14834 L:      dev@openvswitch.org
14835 S:      Maintained
14836 W:      http://openvswitch.org
14837 F:      include/uapi/linux/openvswitch.h
14838 F:      net/openvswitch/
14839
14840 OPERATING PERFORMANCE POINTS (OPP)
14841 M:      Viresh Kumar <vireshk@kernel.org>
14842 M:      Nishanth Menon <nm@ti.com>
14843 M:      Stephen Boyd <sboyd@kernel.org>
14844 L:      linux-pm@vger.kernel.org
14845 S:      Maintained
14846 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git
14847 F:      Documentation/devicetree/bindings/opp/
14848 F:      Documentation/power/opp.rst
14849 F:      drivers/opp/
14850 F:      include/linux/pm_opp.h
14851
14852 OPL4 DRIVER
14853 M:      Clemens Ladisch <clemens@ladisch.de>
14854 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
14855 S:      Maintained
14856 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
14857 F:      sound/drivers/opl4/
14858
14859 ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
14860 M:      Mark Fasheh <mark@fasheh.com>
14861 M:      Joel Becker <jlbec@evilplan.org>
14862 M:      Joseph Qi <joseph.qi@linux.alibaba.com>
14863 L:      ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
14864 S:      Supported
14865 W:      http://ocfs2.wiki.kernel.org
14866 F:      Documentation/filesystems/dlmfs.rst
14867 F:      Documentation/filesystems/ocfs2.rst
14868 F:      fs/ocfs2/
14869
14870 ORANGEFS FILESYSTEM
14871 M:      Mike Marshall <hubcap@omnibond.com>
14872 R:      Martin Brandenburg <martin@omnibond.com>
14873 L:      devel@lists.orangefs.org
14874 S:      Supported
14875 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hubcap/linux.git
14876 F:      Documentation/filesystems/orangefs.rst
14877 F:      fs/orangefs/
14878
14879 ORINOCO DRIVER
14880 L:      linux-wireless@vger.kernel.org
14881 S:      Orphan
14882 W:      https://wireless.wiki.kernel.org/en/users/Drivers/orinoco
14883 W:      http://www.nongnu.org/orinoco/
14884 F:      drivers/net/wireless/intersil/orinoco/
14885
14886 OV2659 OMNIVISION SENSOR DRIVER
14887 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
14888 L:      linux-media@vger.kernel.org
14889 S:      Maintained
14890 W:      https://linuxtv.org
14891 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14892 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
14893 F:      drivers/media/i2c/ov2659.c
14894 F:      include/media/i2c/ov2659.h
14895
14896 OVERLAY FILESYSTEM
14897 M:      Miklos Szeredi <miklos@szeredi.hu>
14898 L:      linux-unionfs@vger.kernel.org
14899 S:      Supported
14900 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git
14901 F:      Documentation/filesystems/overlayfs.rst
14902 F:      fs/overlayfs/
14903
14904 P54 WIRELESS DRIVER
14905 M:      Christian Lamparter <chunkeey@googlemail.com>
14906 L:      linux-wireless@vger.kernel.org
14907 S:      Maintained
14908 W:      https://wireless.wiki.kernel.org/en/users/Drivers/p54
14909 F:      drivers/net/wireless/intersil/p54/
14910
14911 PACKING
14912 M:      Vladimir Oltean <olteanv@gmail.com>
14913 L:      netdev@vger.kernel.org
14914 S:      Supported
14915 F:      Documentation/core-api/packing.rst
14916 F:      include/linux/packing.h
14917 F:      lib/packing.c
14918
14919 PADATA PARALLEL EXECUTION MECHANISM
14920 M:      Steffen Klassert <steffen.klassert@secunet.com>
14921 M:      Daniel Jordan <daniel.m.jordan@oracle.com>
14922 L:      linux-crypto@vger.kernel.org
14923 L:      linux-kernel@vger.kernel.org
14924 S:      Maintained
14925 F:      Documentation/core-api/padata.rst
14926 F:      include/linux/padata.h
14927 F:      kernel/padata.c
14928
14929 PAGE CACHE
14930 M:      Matthew Wilcox (Oracle) <willy@infradead.org>
14931 L:      linux-fsdevel@vger.kernel.org
14932 S:      Supported
14933 T:      git git://git.infradead.org/users/willy/pagecache.git
14934 F:      Documentation/filesystems/locking.rst
14935 F:      Documentation/filesystems/vfs.rst
14936 F:      include/linux/pagemap.h
14937 F:      mm/filemap.c
14938 F:      mm/page-writeback.c
14939 F:      mm/readahead.c
14940 F:      mm/truncate.c
14941
14942 PAGE POOL
14943 M:      Jesper Dangaard Brouer <hawk@kernel.org>
14944 M:      Ilias Apalodimas <ilias.apalodimas@linaro.org>
14945 L:      netdev@vger.kernel.org
14946 S:      Supported
14947 F:      Documentation/networking/page_pool.rst
14948 F:      include/net/page_pool.h
14949 F:      include/trace/events/page_pool.h
14950 F:      net/core/page_pool.c
14951
14952 PAGE TABLE CHECK
14953 M:      Pasha Tatashin <pasha.tatashin@soleen.com>
14954 M:      Andrew Morton <akpm@linux-foundation.org>
14955 L:      linux-mm@kvack.org
14956 S:      Maintained
14957 F:      Documentation/vm/page_table_check.rst
14958 F:      include/linux/page_table_check.h
14959 F:      mm/page_table_check.c
14960
14961 PANASONIC LAPTOP ACPI EXTRAS DRIVER
14962 M:      Kenneth Chan <kenneth.t.chan@gmail.com>
14963 L:      platform-driver-x86@vger.kernel.org
14964 S:      Maintained
14965 F:      drivers/platform/x86/panasonic-laptop.c
14966
14967 PARALLAX PING IIO SENSOR DRIVER
14968 M:      Andreas Klinger <ak@it-klinger.de>
14969 L:      linux-iio@vger.kernel.org
14970 S:      Maintained
14971 F:      Documentation/devicetree/bindings/iio/proximity/parallax-ping.yaml
14972 F:      drivers/iio/proximity/ping.c
14973
14974 PARALLEL LCD/KEYPAD PANEL DRIVER
14975 M:      Willy Tarreau <willy@haproxy.com>
14976 M:      Ksenija Stanojevic <ksenija.stanojevic@gmail.com>
14977 S:      Odd Fixes
14978 F:      Documentation/admin-guide/lcd-panel-cgram.rst
14979 F:      drivers/auxdisplay/panel.c
14980
14981 PARALLEL PORT SUBSYSTEM
14982 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
14983 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
14984 L:      linux-parport@lists.infradead.org (subscribers-only)
14985 S:      Maintained
14986 F:      Documentation/driver-api/parport*.rst
14987 F:      drivers/char/ppdev.c
14988 F:      drivers/parport/
14989 F:      include/linux/parport*.h
14990 F:      include/uapi/linux/ppdev.h
14991
14992 PARAVIRT_OPS INTERFACE
14993 M:      Juergen Gross <jgross@suse.com>
14994 M:      Srivatsa S. Bhat (VMware) <srivatsa@csail.mit.edu>
14995 R:      Alexey Makhalov <amakhalov@vmware.com>
14996 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
14997 L:      virtualization@lists.linux-foundation.org
14998 L:      x86@kernel.org
14999 S:      Supported
15000 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
15001 F:      Documentation/virt/paravirt_ops.rst
15002 F:      arch/*/include/asm/paravirt*.h
15003 F:      arch/*/kernel/paravirt*
15004 F:      include/linux/hypervisor.h
15005
15006 PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
15007 M:      Tim Waugh <tim@cyberelk.net>
15008 L:      linux-parport@lists.infradead.org (subscribers-only)
15009 S:      Maintained
15010 F:      Documentation/admin-guide/blockdev/paride.rst
15011 F:      drivers/block/paride/
15012
15013 PARISC ARCHITECTURE
15014 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
15015 M:      Helge Deller <deller@gmx.de>
15016 L:      linux-parisc@vger.kernel.org
15017 S:      Maintained
15018 W:      https://parisc.wiki.kernel.org
15019 Q:      http://patchwork.kernel.org/project/linux-parisc/list/
15020 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
15021 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git
15022 F:      Documentation/parisc/
15023 F:      arch/parisc/
15024 F:      drivers/char/agp/parisc-agp.c
15025 F:      drivers/input/misc/hp_sdc_rtc.c
15026 F:      drivers/input/serio/gscps2.c
15027 F:      drivers/input/serio/hp_sdc*
15028 F:      drivers/parisc/
15029 F:      drivers/parport/parport_gsc.*
15030 F:      drivers/tty/serial/8250/8250_gsc.c
15031 F:      drivers/video/console/sti*
15032 F:      drivers/video/fbdev/sti*
15033 F:      drivers/video/logo/logo_parisc*
15034 F:      include/linux/hp_sdc.h
15035
15036 PARMAN
15037 M:      Jiri Pirko <jiri@nvidia.com>
15038 L:      netdev@vger.kernel.org
15039 S:      Supported
15040 F:      include/linux/parman.h
15041 F:      lib/parman.c
15042 F:      lib/test_parman.c
15043
15044 PC ENGINES APU BOARD DRIVER
15045 M:      Enrico Weigelt, metux IT consult <info@metux.net>
15046 S:      Maintained
15047 F:      drivers/platform/x86/pcengines-apuv2.c
15048
15049 PC87360 HARDWARE MONITORING DRIVER
15050 M:      Jim Cromie <jim.cromie@gmail.com>
15051 L:      linux-hwmon@vger.kernel.org
15052 S:      Maintained
15053 F:      Documentation/hwmon/pc87360.rst
15054 F:      drivers/hwmon/pc87360.c
15055
15056 PC8736x GPIO DRIVER
15057 M:      Jim Cromie <jim.cromie@gmail.com>
15058 S:      Maintained
15059 F:      drivers/char/pc8736x_gpio.c
15060
15061 PC87427 HARDWARE MONITORING DRIVER
15062 M:      Jean Delvare <jdelvare@suse.com>
15063 L:      linux-hwmon@vger.kernel.org
15064 S:      Maintained
15065 F:      Documentation/hwmon/pc87427.rst
15066 F:      drivers/hwmon/pc87427.c
15067
15068 PCA9532 LED DRIVER
15069 M:      Riku Voipio <riku.voipio@iki.fi>
15070 S:      Maintained
15071 F:      drivers/leds/leds-pca9532.c
15072 F:      include/linux/leds-pca9532.h
15073
15074 PCA9541 I2C BUS MASTER SELECTOR DRIVER
15075 M:      Guenter Roeck <linux@roeck-us.net>
15076 L:      linux-i2c@vger.kernel.org
15077 S:      Maintained
15078 F:      drivers/i2c/muxes/i2c-mux-pca9541.c
15079
15080 PCDP - PRIMARY CONSOLE AND DEBUG PORT
15081 M:      Khalid Aziz <khalid@gonehiking.org>
15082 S:      Maintained
15083 F:      drivers/firmware/pcdp.*
15084
15085 PCI DRIVER FOR AARDVARK (Marvell Armada 3700)
15086 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
15087 M:      Pali Rohár <pali@kernel.org>
15088 L:      linux-pci@vger.kernel.org
15089 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15090 S:      Maintained
15091 F:      Documentation/devicetree/bindings/pci/aardvark-pci.txt
15092 F:      drivers/pci/controller/pci-aardvark.c
15093
15094 PCI DRIVER FOR ALTERA PCIE IP
15095 M:      Joyce Ooi <joyce.ooi@intel.com>
15096 L:      linux-pci@vger.kernel.org
15097 S:      Supported
15098 F:      Documentation/devicetree/bindings/pci/altera-pcie.txt
15099 F:      drivers/pci/controller/pcie-altera.c
15100
15101 PCI DRIVER FOR APPLIEDMICRO XGENE
15102 M:      Toan Le <toan@os.amperecomputing.com>
15103 L:      linux-pci@vger.kernel.org
15104 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15105 S:      Maintained
15106 F:      Documentation/devicetree/bindings/pci/xgene-pci.txt
15107 F:      drivers/pci/controller/pci-xgene.c
15108
15109 PCI DRIVER FOR ARM VERSATILE PLATFORM
15110 M:      Rob Herring <robh@kernel.org>
15111 L:      linux-pci@vger.kernel.org
15112 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15113 S:      Maintained
15114 F:      Documentation/devicetree/bindings/pci/versatile.yaml
15115 F:      drivers/pci/controller/pci-versatile.c
15116
15117 PCI DRIVER FOR ARMADA 8K
15118 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
15119 L:      linux-pci@vger.kernel.org
15120 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15121 S:      Maintained
15122 F:      Documentation/devicetree/bindings/pci/pci-armada8k.txt
15123 F:      drivers/pci/controller/dwc/pcie-armada8k.c
15124
15125 PCI DRIVER FOR CADENCE PCIE IP
15126 M:      Tom Joseph <tjoseph@cadence.com>
15127 L:      linux-pci@vger.kernel.org
15128 S:      Maintained
15129 F:      Documentation/devicetree/bindings/pci/cdns,*
15130 F:      drivers/pci/controller/cadence/
15131
15132 PCI DRIVER FOR FREESCALE LAYERSCAPE
15133 M:      Minghuan Lian <minghuan.Lian@nxp.com>
15134 M:      Mingkai Hu <mingkai.hu@nxp.com>
15135 M:      Roy Zang <roy.zang@nxp.com>
15136 L:      linuxppc-dev@lists.ozlabs.org
15137 L:      linux-pci@vger.kernel.org
15138 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15139 S:      Maintained
15140 F:      drivers/pci/controller/dwc/*layerscape*
15141
15142 PCI DRIVER FOR GENERIC OF HOSTS
15143 M:      Will Deacon <will@kernel.org>
15144 L:      linux-pci@vger.kernel.org
15145 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15146 S:      Maintained
15147 F:      Documentation/devicetree/bindings/pci/host-generic-pci.yaml
15148 F:      drivers/pci/controller/pci-host-common.c
15149 F:      drivers/pci/controller/pci-host-generic.c
15150
15151 PCI DRIVER FOR IMX6
15152 M:      Richard Zhu <hongxing.zhu@nxp.com>
15153 M:      Lucas Stach <l.stach@pengutronix.de>
15154 L:      linux-pci@vger.kernel.org
15155 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15156 S:      Maintained
15157 F:      Documentation/devicetree/bindings/pci/fsl,imx6q-pcie.yaml
15158 F:      drivers/pci/controller/dwc/*imx6*
15159
15160 PCI DRIVER FOR FU740
15161 M:      Paul Walmsley <paul.walmsley@sifive.com>
15162 M:      Greentime Hu <greentime.hu@sifive.com>
15163 L:      linux-pci@vger.kernel.org
15164 S:      Maintained
15165 F:      Documentation/devicetree/bindings/pci/sifive,fu740-pcie.yaml
15166 F:      drivers/pci/controller/dwc/pcie-fu740.c
15167
15168 PCI DRIVER FOR INTEL IXP4XX
15169 M:      Linus Walleij <linus.walleij@linaro.org>
15170 S:      Maintained
15171 F:      Documentation/devicetree/bindings/pci/intel,ixp4xx-pci.yaml
15172 F:      drivers/pci/controller/pci-ixp4xx.c
15173
15174 PCI DRIVER FOR INTEL VOLUME MANAGEMENT DEVICE (VMD)
15175 M:      Nirmal Patel <nirmal.patel@linux.intel.com>
15176 R:      Jonathan Derrick <jonathan.derrick@linux.dev>
15177 L:      linux-pci@vger.kernel.org
15178 S:      Supported
15179 F:      drivers/pci/controller/vmd.c
15180
15181 PCI DRIVER FOR MICROSEMI SWITCHTEC
15182 M:      Kurt Schwemmer <kurt.schwemmer@microsemi.com>
15183 M:      Logan Gunthorpe <logang@deltatee.com>
15184 L:      linux-pci@vger.kernel.org
15185 S:      Maintained
15186 F:      Documentation/ABI/testing/sysfs-class-switchtec
15187 F:      Documentation/driver-api/switchtec.rst
15188 F:      drivers/ntb/hw/mscc/
15189 F:      drivers/pci/switch/switchtec*
15190 F:      include/linux/switchtec.h
15191 F:      include/uapi/linux/switchtec_ioctl.h
15192
15193 PCI DRIVER FOR MOBIVEIL PCIE IP
15194 M:      Karthikeyan Mitran <m.karthikeyan@mobiveil.co.in>
15195 M:      Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
15196 L:      linux-pci@vger.kernel.org
15197 S:      Supported
15198 F:      Documentation/devicetree/bindings/pci/mobiveil-pcie.txt
15199 F:      drivers/pci/controller/mobiveil/pcie-mobiveil*
15200
15201 PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support)
15202 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
15203 M:      Pali Rohár <pali@kernel.org>
15204 L:      linux-pci@vger.kernel.org
15205 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15206 S:      Maintained
15207 F:      drivers/pci/controller/*mvebu*
15208
15209 PCI DRIVER FOR NVIDIA TEGRA
15210 M:      Thierry Reding <thierry.reding@gmail.com>
15211 L:      linux-tegra@vger.kernel.org
15212 L:      linux-pci@vger.kernel.org
15213 S:      Supported
15214 F:      Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt
15215 F:      drivers/pci/controller/pci-tegra.c
15216
15217 PCI DRIVER FOR NXP LAYERSCAPE GEN4 CONTROLLER
15218 M:      Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
15219 L:      linux-pci@vger.kernel.org
15220 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15221 S:      Maintained
15222 F:      Documentation/devicetree/bindings/pci/layerscape-pcie-gen4.txt
15223 F:      drivers/pci/controller/mobiveil/pcie-layerscape-gen4.c
15224
15225 PCI DRIVER FOR RENESAS R-CAR
15226 M:      Marek Vasut <marek.vasut+renesas@gmail.com>
15227 M:      Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
15228 L:      linux-pci@vger.kernel.org
15229 L:      linux-renesas-soc@vger.kernel.org
15230 S:      Maintained
15231 F:      Documentation/devicetree/bindings/pci/*rcar*
15232 F:      drivers/pci/controller/*rcar*
15233
15234 PCI DRIVER FOR SAMSUNG EXYNOS
15235 M:      Jingoo Han <jingoohan1@gmail.com>
15236 L:      linux-pci@vger.kernel.org
15237 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15238 L:      linux-samsung-soc@vger.kernel.org
15239 S:      Maintained
15240 F:      drivers/pci/controller/dwc/pci-exynos.c
15241
15242 PCI DRIVER FOR SYNOPSYS DESIGNWARE
15243 M:      Jingoo Han <jingoohan1@gmail.com>
15244 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
15245 L:      linux-pci@vger.kernel.org
15246 S:      Maintained
15247 F:      Documentation/devicetree/bindings/pci/snps,dw-pcie.yaml
15248 F:      Documentation/devicetree/bindings/pci/snps,dw-pcie-ep.yaml
15249 F:      drivers/pci/controller/dwc/*designware*
15250
15251 PCI DRIVER FOR TI DRA7XX/J721E
15252 M:      Kishon Vijay Abraham I <kishon@ti.com>
15253 L:      linux-omap@vger.kernel.org
15254 L:      linux-pci@vger.kernel.org
15255 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15256 S:      Supported
15257 F:      Documentation/devicetree/bindings/pci/ti-pci.txt
15258 F:      drivers/pci/controller/cadence/pci-j721e.c
15259 F:      drivers/pci/controller/dwc/pci-dra7xx.c
15260
15261 PCI DRIVER FOR V3 SEMICONDUCTOR V360EPC
15262 M:      Linus Walleij <linus.walleij@linaro.org>
15263 L:      linux-pci@vger.kernel.org
15264 S:      Maintained
15265 F:      Documentation/devicetree/bindings/pci/v3-v360epc-pci.txt
15266 F:      drivers/pci/controller/pci-v3-semi.c
15267
15268 PCI ENDPOINT SUBSYSTEM
15269 M:      Kishon Vijay Abraham I <kishon@ti.com>
15270 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
15271 R:      Krzysztof Wilczyński <kw@linux.com>
15272 L:      linux-pci@vger.kernel.org
15273 S:      Supported
15274 Q:      https://patchwork.kernel.org/project/linux-pci/list/
15275 B:      https://bugzilla.kernel.org
15276 C:      irc://irc.oftc.net/linux-pci
15277 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lpieralisi/pci.git
15278 F:      Documentation/PCI/endpoint/*
15279 F:      Documentation/misc-devices/pci-endpoint-test.rst
15280 F:      drivers/misc/pci_endpoint_test.c
15281 F:      drivers/pci/endpoint/
15282 F:      tools/pci/
15283
15284 PCI ENHANCED ERROR HANDLING (EEH) FOR POWERPC
15285 M:      Russell Currey <ruscur@russell.cc>
15286 M:      Oliver O'Halloran <oohall@gmail.com>
15287 L:      linuxppc-dev@lists.ozlabs.org
15288 S:      Supported
15289 F:      Documentation/PCI/pci-error-recovery.rst
15290 F:      Documentation/powerpc/eeh-pci-error-recovery.rst
15291 F:      arch/powerpc/include/*/eeh*.h
15292 F:      arch/powerpc/kernel/eeh*.c
15293 F:      arch/powerpc/platforms/*/eeh*.c
15294 F:      drivers/pci/pcie/aer.c
15295 F:      drivers/pci/pcie/dpc.c
15296 F:      drivers/pci/pcie/err.c
15297
15298 PCI ERROR RECOVERY
15299 M:      Linas Vepstas <linasvepstas@gmail.com>
15300 L:      linux-pci@vger.kernel.org
15301 S:      Supported
15302 F:      Documentation/PCI/pci-error-recovery.rst
15303
15304 PCI PEER-TO-PEER DMA (P2PDMA)
15305 M:      Bjorn Helgaas <bhelgaas@google.com>
15306 M:      Logan Gunthorpe <logang@deltatee.com>
15307 L:      linux-pci@vger.kernel.org
15308 S:      Supported
15309 Q:      https://patchwork.kernel.org/project/linux-pci/list/
15310 B:      https://bugzilla.kernel.org
15311 C:      irc://irc.oftc.net/linux-pci
15312 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
15313 F:      Documentation/driver-api/pci/p2pdma.rst
15314 F:      drivers/pci/p2pdma.c
15315 F:      include/linux/pci-p2pdma.h
15316
15317 PCI MSI DRIVER FOR ALTERA MSI IP
15318 M:      Joyce Ooi <joyce.ooi@intel.com>
15319 L:      linux-pci@vger.kernel.org
15320 S:      Supported
15321 F:      Documentation/devicetree/bindings/pci/altera-pcie-msi.txt
15322 F:      drivers/pci/controller/pcie-altera-msi.c
15323
15324 PCI MSI DRIVER FOR APPLIEDMICRO XGENE
15325 M:      Toan Le <toan@os.amperecomputing.com>
15326 L:      linux-pci@vger.kernel.org
15327 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15328 S:      Maintained
15329 F:      Documentation/devicetree/bindings/pci/xgene-pci-msi.txt
15330 F:      drivers/pci/controller/pci-xgene-msi.c
15331
15332 PCI NATIVE HOST BRIDGE AND ENDPOINT DRIVERS
15333 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
15334 R:      Rob Herring <robh@kernel.org>
15335 R:      Krzysztof Wilczyński <kw@linux.com>
15336 L:      linux-pci@vger.kernel.org
15337 S:      Supported
15338 Q:      https://patchwork.kernel.org/project/linux-pci/list/
15339 B:      https://bugzilla.kernel.org
15340 C:      irc://irc.oftc.net/linux-pci
15341 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lpieralisi/pci.git
15342 F:      drivers/pci/controller/
15343 F:      drivers/pci/pci-bridge-emul.c
15344 F:      drivers/pci/pci-bridge-emul.h
15345
15346 PCI SUBSYSTEM
15347 M:      Bjorn Helgaas <bhelgaas@google.com>
15348 L:      linux-pci@vger.kernel.org
15349 S:      Supported
15350 Q:      https://patchwork.kernel.org/project/linux-pci/list/
15351 B:      https://bugzilla.kernel.org
15352 C:      irc://irc.oftc.net/linux-pci
15353 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
15354 F:      Documentation/PCI/
15355 F:      Documentation/devicetree/bindings/pci/
15356 F:      arch/x86/kernel/early-quirks.c
15357 F:      arch/x86/kernel/quirks.c
15358 F:      arch/x86/pci/
15359 F:      drivers/acpi/pci*
15360 F:      drivers/pci/
15361 F:      include/asm-generic/pci*
15362 F:      include/linux/of_pci.h
15363 F:      include/linux/pci*
15364 F:      include/uapi/linux/pci*
15365 F:      lib/pci*
15366
15367 PCIE DRIVER FOR AMAZON ANNAPURNA LABS
15368 M:      Jonathan Chocron <jonnyc@amazon.com>
15369 L:      linux-pci@vger.kernel.org
15370 S:      Maintained
15371 F:      Documentation/devicetree/bindings/pci/pcie-al.txt
15372 F:      drivers/pci/controller/dwc/pcie-al.c
15373
15374 PCIE DRIVER FOR AMLOGIC MESON
15375 M:      Yue Wang <yue.wang@Amlogic.com>
15376 L:      linux-pci@vger.kernel.org
15377 L:      linux-amlogic@lists.infradead.org
15378 S:      Maintained
15379 F:      drivers/pci/controller/dwc/pci-meson.c
15380
15381 PCIE DRIVER FOR AXIS ARTPEC
15382 M:      Jesper Nilsson <jesper.nilsson@axis.com>
15383 L:      linux-arm-kernel@axis.com
15384 L:      linux-pci@vger.kernel.org
15385 S:      Maintained
15386 F:      Documentation/devicetree/bindings/pci/axis,artpec*
15387 F:      drivers/pci/controller/dwc/*artpec*
15388
15389 PCIE DRIVER FOR CAVIUM THUNDERX
15390 M:      Robert Richter <rric@kernel.org>
15391 L:      linux-pci@vger.kernel.org
15392 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15393 S:      Odd Fixes
15394 F:      drivers/pci/controller/pci-thunder-*
15395
15396 PCIE DRIVER FOR HISILICON
15397 M:      Zhou Wang <wangzhou1@hisilicon.com>
15398 L:      linux-pci@vger.kernel.org
15399 S:      Maintained
15400 F:      drivers/pci/controller/dwc/pcie-hisi.c
15401
15402 PCIE DRIVER FOR HISILICON KIRIN
15403 M:      Xiaowei Song <songxiaowei@hisilicon.com>
15404 M:      Binghui Wang <wangbinghui@hisilicon.com>
15405 L:      linux-pci@vger.kernel.org
15406 S:      Maintained
15407 F:      Documentation/devicetree/bindings/pci/hisilicon,kirin-pcie.yaml
15408 F:      drivers/pci/controller/dwc/pcie-kirin.c
15409
15410 PCIE DRIVER FOR HISILICON STB
15411 M:      Shawn Guo <shawn.guo@linaro.org>
15412 L:      linux-pci@vger.kernel.org
15413 S:      Maintained
15414 F:      Documentation/devicetree/bindings/pci/hisilicon-histb-pcie.txt
15415 F:      drivers/pci/controller/dwc/pcie-histb.c
15416
15417 PCIE DRIVER FOR INTEL KEEM BAY
15418 M:      Srikanth Thokala <srikanth.thokala@intel.com>
15419 L:      linux-pci@vger.kernel.org
15420 S:      Supported
15421 F:      Documentation/devicetree/bindings/pci/intel,keembay-pcie*
15422 F:      drivers/pci/controller/dwc/pcie-keembay.c
15423
15424 PCIE DRIVER FOR INTEL LGM GW SOC
15425 M:      Rahul Tanwar <rtanwar@maxlinear.com>
15426 L:      linux-pci@vger.kernel.org
15427 S:      Maintained
15428 F:      Documentation/devicetree/bindings/pci/intel-gw-pcie.yaml
15429 F:      drivers/pci/controller/dwc/pcie-intel-gw.c
15430
15431 PCIE DRIVER FOR MEDIATEK
15432 M:      Ryder Lee <ryder.lee@mediatek.com>
15433 M:      Jianjun Wang <jianjun.wang@mediatek.com>
15434 L:      linux-pci@vger.kernel.org
15435 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
15436 S:      Supported
15437 F:      Documentation/devicetree/bindings/pci/mediatek*
15438 F:      drivers/pci/controller/*mediatek*
15439
15440 PCIE DRIVER FOR MICROCHIP
15441 M:      Daire McNamara <daire.mcnamara@microchip.com>
15442 L:      linux-pci@vger.kernel.org
15443 S:      Supported
15444 F:      Documentation/devicetree/bindings/pci/microchip*
15445 F:      drivers/pci/controller/*microchip*
15446
15447 PCIE DRIVER FOR QUALCOMM MSM
15448 M:      Stanimir Varbanov <svarbanov@mm-sol.com>
15449 L:      linux-pci@vger.kernel.org
15450 L:      linux-arm-msm@vger.kernel.org
15451 S:      Maintained
15452 F:      drivers/pci/controller/dwc/pcie-qcom.c
15453
15454 PCIE ENDPOINT DRIVER FOR QUALCOMM
15455 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
15456 L:      linux-pci@vger.kernel.org
15457 L:      linux-arm-msm@vger.kernel.org
15458 S:      Maintained
15459 F:      Documentation/devicetree/bindings/pci/qcom,pcie-ep.yaml
15460 F:      drivers/pci/controller/dwc/pcie-qcom-ep.c
15461
15462 PCIE DRIVER FOR ROCKCHIP
15463 M:      Shawn Lin <shawn.lin@rock-chips.com>
15464 L:      linux-pci@vger.kernel.org
15465 L:      linux-rockchip@lists.infradead.org
15466 S:      Maintained
15467 F:      Documentation/devicetree/bindings/pci/rockchip-pcie*
15468 F:      drivers/pci/controller/pcie-rockchip*
15469
15470 PCIE DRIVER FOR SOCIONEXT UNIPHIER
15471 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
15472 L:      linux-pci@vger.kernel.org
15473 S:      Maintained
15474 F:      Documentation/devicetree/bindings/pci/socionext,uniphier-pcie*
15475 F:      drivers/pci/controller/dwc/pcie-uniphier*
15476
15477 PCIE DRIVER FOR ST SPEAR13XX
15478 M:      Pratyush Anand <pratyush.anand@gmail.com>
15479 L:      linux-pci@vger.kernel.org
15480 S:      Maintained
15481 F:      drivers/pci/controller/dwc/*spear*
15482
15483 PCMCIA SUBSYSTEM
15484 M:      Dominik Brodowski <linux@dominikbrodowski.net>
15485 S:      Odd Fixes
15486 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/linux.git
15487 F:      Documentation/pcmcia/
15488 F:      drivers/pcmcia/
15489 F:      include/pcmcia/
15490 F:      tools/pcmcia/
15491
15492 PCNET32 NETWORK DRIVER
15493 M:      Don Fry <pcnet32@frontier.com>
15494 L:      netdev@vger.kernel.org
15495 S:      Maintained
15496 F:      drivers/net/ethernet/amd/pcnet32.c
15497
15498 PCRYPT PARALLEL CRYPTO ENGINE
15499 M:      Steffen Klassert <steffen.klassert@secunet.com>
15500 L:      linux-crypto@vger.kernel.org
15501 S:      Maintained
15502 F:      crypto/pcrypt.c
15503 F:      include/crypto/pcrypt.h
15504
15505 PEAQ WMI HOTKEYS DRIVER
15506 M:      Hans de Goede <hdegoede@redhat.com>
15507 L:      platform-driver-x86@vger.kernel.org
15508 S:      Maintained
15509 F:      drivers/platform/x86/peaq-wmi.c
15510
15511 PECI HARDWARE MONITORING DRIVERS
15512 M:      Iwona Winiarska <iwona.winiarska@intel.com>
15513 L:      linux-hwmon@vger.kernel.org
15514 S:      Supported
15515 F:      Documentation/hwmon/peci-cputemp.rst
15516 F:      Documentation/hwmon/peci-dimmtemp.rst
15517 F:      drivers/hwmon/peci/
15518
15519 PECI SUBSYSTEM
15520 M:      Iwona Winiarska <iwona.winiarska@intel.com>
15521 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
15522 S:      Supported
15523 F:      Documentation/devicetree/bindings/peci/
15524 F:      Documentation/peci/
15525 F:      drivers/peci/
15526 F:      include/linux/peci-cpu.h
15527 F:      include/linux/peci.h
15528
15529 PENSANDO ETHERNET DRIVERS
15530 M:      Shannon Nelson <snelson@pensando.io>
15531 M:      drivers@pensando.io
15532 L:      netdev@vger.kernel.org
15533 S:      Supported
15534 F:      Documentation/networking/device_drivers/ethernet/pensando/ionic.rst
15535 F:      drivers/net/ethernet/pensando/
15536
15537 PER-CPU MEMORY ALLOCATOR
15538 M:      Dennis Zhou <dennis@kernel.org>
15539 M:      Tejun Heo <tj@kernel.org>
15540 M:      Christoph Lameter <cl@linux.com>
15541 L:      linux-mm@kvack.org
15542 S:      Maintained
15543 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dennis/percpu.git
15544 F:      arch/*/include/asm/percpu.h
15545 F:      include/linux/percpu*.h
15546 F:      lib/percpu*.c
15547 F:      mm/percpu*.c
15548
15549 PER-TASK DELAY ACCOUNTING
15550 M:      Balbir Singh <bsingharora@gmail.com>
15551 S:      Maintained
15552 F:      include/linux/delayacct.h
15553 F:      kernel/delayacct.c
15554
15555 PERFORMANCE EVENTS SUBSYSTEM
15556 M:      Peter Zijlstra <peterz@infradead.org>
15557 M:      Ingo Molnar <mingo@redhat.com>
15558 M:      Arnaldo Carvalho de Melo <acme@kernel.org>
15559 R:      Mark Rutland <mark.rutland@arm.com>
15560 R:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
15561 R:      Jiri Olsa <jolsa@kernel.org>
15562 R:      Namhyung Kim <namhyung@kernel.org>
15563 L:      linux-perf-users@vger.kernel.org
15564 L:      linux-kernel@vger.kernel.org
15565 S:      Supported
15566 W:      https://perf.wiki.kernel.org/
15567 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
15568 F:      arch/*/events/*
15569 F:      arch/*/events/*/*
15570 F:      arch/*/include/asm/perf_event.h
15571 F:      arch/*/kernel/*/*/perf_event*.c
15572 F:      arch/*/kernel/*/perf_event*.c
15573 F:      arch/*/kernel/perf_callchain.c
15574 F:      arch/*/kernel/perf_event*.c
15575 F:      include/linux/perf_event.h
15576 F:      include/uapi/linux/perf_event.h
15577 F:      kernel/events/*
15578 F:      tools/lib/perf/
15579 F:      tools/perf/
15580
15581 PERFORMANCE EVENTS TOOLING ARM64
15582 R:      John Garry <john.garry@huawei.com>
15583 R:      Will Deacon <will@kernel.org>
15584 R:      James Clark <james.clark@arm.com>
15585 R:      Mike Leach <mike.leach@linaro.org>
15586 R:      Leo Yan <leo.yan@linaro.org>
15587 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15588 S:      Supported
15589 F:      tools/build/feature/test-libopencsd.c
15590 F:      tools/perf/arch/arm*/
15591 F:      tools/perf/pmu-events/arch/arm64/
15592 F:      tools/perf/util/arm-spe*
15593 F:      tools/perf/util/cs-etm*
15594
15595 PERSONALITY HANDLING
15596 M:      Christoph Hellwig <hch@infradead.org>
15597 L:      linux-abi-devel@lists.sourceforge.net
15598 S:      Maintained
15599 F:      include/linux/personality.h
15600 F:      include/uapi/linux/personality.h
15601
15602 PHOENIX RC FLIGHT CONTROLLER ADAPTER
15603 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
15604 L:      linux-input@vger.kernel.org
15605 S:      Maintained
15606 F:      Documentation/input/devices/pxrc.rst
15607 F:      drivers/input/joystick/pxrc.c
15608
15609 PHONET PROTOCOL
15610 M:      Remi Denis-Courmont <courmisch@gmail.com>
15611 S:      Supported
15612 F:      Documentation/networking/phonet.rst
15613 F:      include/linux/phonet.h
15614 F:      include/net/phonet/
15615 F:      include/uapi/linux/phonet.h
15616 F:      net/phonet/
15617
15618 PHRAM MTD DRIVER
15619 M:      Joern Engel <joern@lazybastard.org>
15620 L:      linux-mtd@lists.infradead.org
15621 S:      Maintained
15622 F:      drivers/mtd/devices/phram.c
15623
15624 PICOLCD HID DRIVER
15625 M:      Bruno Prémont <bonbons@linux-vserver.org>
15626 L:      linux-input@vger.kernel.org
15627 S:      Maintained
15628 F:      drivers/hid/hid-picolcd*
15629
15630 PIDFD API
15631 M:      Christian Brauner <christian@brauner.io>
15632 L:      linux-kernel@vger.kernel.org
15633 S:      Maintained
15634 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brauner/linux.git
15635 F:      samples/pidfd/
15636 F:      tools/testing/selftests/clone3/
15637 F:      tools/testing/selftests/pid_namespace/
15638 F:      tools/testing/selftests/pidfd/
15639 K:      (?i)pidfd
15640 K:      (?i)clone3
15641 K:      \b(clone_args|kernel_clone_args)\b
15642
15643 PIN CONTROL SUBSYSTEM
15644 M:      Linus Walleij <linus.walleij@linaro.org>
15645 L:      linux-gpio@vger.kernel.org
15646 S:      Maintained
15647 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git
15648 F:      Documentation/devicetree/bindings/pinctrl/
15649 F:      Documentation/driver-api/pin-control.rst
15650 F:      drivers/pinctrl/
15651 F:      include/linux/pinctrl/
15652
15653 PIN CONTROLLER - AMD
15654 M:      Basavaraj Natikar <Basavaraj.Natikar@amd.com>
15655 M:      Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
15656 S:      Maintained
15657 F:      drivers/pinctrl/pinctrl-amd.c
15658
15659 PIN CONTROLLER - FREESCALE
15660 M:      Dong Aisheng <aisheng.dong@nxp.com>
15661 M:      Fabio Estevam <festevam@gmail.com>
15662 M:      Shawn Guo <shawnguo@kernel.org>
15663 M:      Stefan Agner <stefan@agner.ch>
15664 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
15665 L:      linux-gpio@vger.kernel.org
15666 S:      Maintained
15667 F:      Documentation/devicetree/bindings/pinctrl/fsl,*
15668 F:      drivers/pinctrl/freescale/
15669
15670 PIN CONTROLLER - INTEL
15671 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
15672 M:      Andy Shevchenko <andy@kernel.org>
15673 S:      Maintained
15674 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/intel.git
15675 F:      drivers/pinctrl/intel/
15676
15677 PIN CONTROLLER - KEEMBAY
15678 M:      Lakshmi Sowjanya D <lakshmi.sowjanya.d@intel.com>
15679 S:      Supported
15680 F:      drivers/pinctrl/pinctrl-keembay*
15681
15682 PIN CONTROLLER - MEDIATEK
15683 M:      Sean Wang <sean.wang@kernel.org>
15684 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
15685 S:      Maintained
15686 F:      Documentation/devicetree/bindings/pinctrl/mediatek,mt65xx-pinctrl.yaml
15687 F:      Documentation/devicetree/bindings/pinctrl/mediatek,mt6797-pinctrl.yaml
15688 F:      Documentation/devicetree/bindings/pinctrl/mediatek,mt7622-pinctrl.yaml
15689 F:      Documentation/devicetree/bindings/pinctrl/mediatek,mt8183-pinctrl.yaml
15690 F:      drivers/pinctrl/mediatek/
15691
15692 PIN CONTROLLER - MICROCHIP AT91
15693 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
15694 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15695 L:      linux-gpio@vger.kernel.org
15696 S:      Supported
15697 F:      drivers/gpio/gpio-sama5d2-piobu.c
15698 F:      drivers/pinctrl/pinctrl-at91*
15699
15700 PIN CONTROLLER - QUALCOMM
15701 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
15702 L:      linux-arm-msm@vger.kernel.org
15703 S:      Maintained
15704 F:      Documentation/devicetree/bindings/pinctrl/qcom,*.txt
15705 F:      drivers/pinctrl/qcom/
15706
15707 PIN CONTROLLER - RENESAS
15708 M:      Geert Uytterhoeven <geert+renesas@glider.be>
15709 L:      linux-renesas-soc@vger.kernel.org
15710 S:      Supported
15711 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git renesas-pinctrl
15712 F:      Documentation/devicetree/bindings/pinctrl/renesas,*
15713 F:      drivers/pinctrl/renesas/
15714
15715 PIN CONTROLLER - SAMSUNG
15716 M:      Tomasz Figa <tomasz.figa@gmail.com>
15717 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
15718 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
15719 R:      Alim Akhtar <alim.akhtar@samsung.com>
15720 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15721 L:      linux-samsung-soc@vger.kernel.org
15722 S:      Maintained
15723 C:      irc://irc.libera.chat/linux-exynos
15724 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
15725 B:      mailto:linux-samsung-soc@vger.kernel.org
15726 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/samsung.git
15727 F:      Documentation/devicetree/bindings/pinctrl/samsung,pinctrl*yaml
15728 F:      drivers/pinctrl/samsung/
15729 F:      include/dt-bindings/pinctrl/samsung.h
15730
15731 PIN CONTROLLER - SINGLE
15732 M:      Tony Lindgren <tony@atomide.com>
15733 M:      Haojian Zhuang <haojian.zhuang@linaro.org>
15734 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15735 L:      linux-omap@vger.kernel.org
15736 S:      Maintained
15737 F:      drivers/pinctrl/pinctrl-single.c
15738
15739 PIN CONTROLLER - THUNDERBAY
15740 M:      Lakshmi Sowjanya D <lakshmi.sowjanya.d@intel.com>
15741 S:      Supported
15742 F:      drivers/pinctrl/pinctrl-thunderbay.c
15743
15744 PIN CONTROLLER - SUNPLUS / TIBBO
15745 M:      Dvorkin Dmitry <dvorkin@tibbo.com>
15746 M:      Wells Lu <wellslutw@gmail.com>
15747 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15748 S:      Maintained
15749 W:      https://sunplus.atlassian.net/wiki/spaces/doc/overview
15750 F:      Documentation/devicetree/bindings/pinctrl/sunplus,*
15751 F:      drivers/pinctrl/sunplus/
15752 F:      include/dt-bindings/pinctrl/sppctl*.h
15753
15754 PKTCDVD DRIVER
15755 M:      linux-block@vger.kernel.org
15756 S:      Orphan
15757 F:      drivers/block/pktcdvd.c
15758 F:      include/linux/pktcdvd.h
15759 F:      include/uapi/linux/pktcdvd.h
15760
15761 PLANTOWER PMS7003 AIR POLLUTION SENSOR DRIVER
15762 M:      Tomasz Duszynski <tduszyns@gmail.com>
15763 S:      Maintained
15764 F:      Documentation/devicetree/bindings/iio/chemical/plantower,pms7003.yaml
15765 F:      drivers/iio/chemical/pms7003.c
15766
15767 PLDMFW LIBRARY
15768 M:      Jacob Keller <jacob.e.keller@intel.com>
15769 S:      Maintained
15770 F:      Documentation/driver-api/pldmfw/
15771 F:      include/linux/pldmfw.h
15772 F:      lib/pldmfw/
15773
15774 PLX DMA DRIVER
15775 M:      Logan Gunthorpe <logang@deltatee.com>
15776 S:      Maintained
15777 F:      drivers/dma/plx_dma.c
15778
15779 PM6764TR DRIVER
15780 M:      Charles Hsu     <hsu.yungteng@gmail.com>
15781 L:      linux-hwmon@vger.kernel.org
15782 S:      Maintained
15783 F:      Documentation/hwmon/pm6764tr.rst
15784 F:      drivers/hwmon/pmbus/pm6764tr.c
15785
15786 PM-GRAPH UTILITY
15787 M:      "Todd E Brandt" <todd.e.brandt@linux.intel.com>
15788 L:      linux-pm@vger.kernel.org
15789 S:      Supported
15790 W:      https://01.org/pm-graph
15791 B:      https://bugzilla.kernel.org/buglist.cgi?component=pm-graph&product=Tools
15792 T:      git git://github.com/intel/pm-graph
15793 F:      tools/power/pm-graph
15794
15795 PMBUS HARDWARE MONITORING DRIVERS
15796 M:      Guenter Roeck <linux@roeck-us.net>
15797 L:      linux-hwmon@vger.kernel.org
15798 S:      Maintained
15799 W:      http://hwmon.wiki.kernel.org/
15800 W:      http://www.roeck-us.net/linux/drivers/
15801 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
15802 F:      Documentation/devicetree/bindings/hwmon/ltc2978.txt
15803 F:      Documentation/devicetree/bindings/hwmon/max31785.txt
15804 F:      Documentation/hwmon/adm1275.rst
15805 F:      Documentation/hwmon/ibm-cffps.rst
15806 F:      Documentation/hwmon/ir35221.rst
15807 F:      Documentation/hwmon/lm25066.rst
15808 F:      Documentation/hwmon/ltc2978.rst
15809 F:      Documentation/hwmon/ltc3815.rst
15810 F:      Documentation/hwmon/max16064.rst
15811 F:      Documentation/hwmon/max20751.rst
15812 F:      Documentation/hwmon/max31785.rst
15813 F:      Documentation/hwmon/max34440.rst
15814 F:      Documentation/hwmon/max8688.rst
15815 F:      Documentation/hwmon/pmbus-core.rst
15816 F:      Documentation/hwmon/pmbus.rst
15817 F:      Documentation/hwmon/tps40422.rst
15818 F:      Documentation/hwmon/ucd9000.rst
15819 F:      Documentation/hwmon/ucd9200.rst
15820 F:      Documentation/hwmon/zl6100.rst
15821 F:      drivers/hwmon/pmbus/
15822 F:      include/linux/pmbus.h
15823
15824 PMC SIERRA MaxRAID DRIVER
15825 L:      linux-scsi@vger.kernel.org
15826 S:      Orphan
15827 W:      http://www.pmc-sierra.com/
15828 F:      drivers/scsi/pmcraid.*
15829
15830 PMC SIERRA PM8001 DRIVER
15831 M:      Jack Wang <jinpu.wang@cloud.ionos.com>
15832 L:      linux-scsi@vger.kernel.org
15833 S:      Supported
15834 F:      drivers/scsi/pm8001/
15835
15836 PNI RM3100 IIO DRIVER
15837 M:      Song Qiang <songqiang1304521@gmail.com>
15838 L:      linux-iio@vger.kernel.org
15839 S:      Maintained
15840 F:      Documentation/devicetree/bindings/iio/magnetometer/pni,rm3100.yaml
15841 F:      drivers/iio/magnetometer/rm3100*
15842
15843 PNP SUPPORT
15844 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
15845 L:      linux-acpi@vger.kernel.org
15846 S:      Maintained
15847 F:      drivers/pnp/
15848 F:      include/linux/pnp.h
15849
15850 POSIX CLOCKS and TIMERS
15851 M:      Thomas Gleixner <tglx@linutronix.de>
15852 L:      linux-kernel@vger.kernel.org
15853 S:      Maintained
15854 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
15855 F:      fs/timerfd.c
15856 F:      include/linux/time_namespace.h
15857 F:      include/linux/timer*
15858 F:      kernel/time/*timer*
15859 F:      kernel/time/namespace.c
15860
15861 POWER MANAGEMENT CORE
15862 M:      "Rafael J. Wysocki" <rafael@kernel.org>
15863 L:      linux-pm@vger.kernel.org
15864 S:      Supported
15865 B:      https://bugzilla.kernel.org
15866 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
15867 F:      drivers/base/power/
15868 F:      drivers/powercap/
15869 F:      include/linux/intel_rapl.h
15870 F:      include/linux/pm.h
15871 F:      include/linux/pm_*
15872 F:      include/linux/powercap.h
15873 F:      kernel/configs/nopm.config
15874
15875 DYNAMIC THERMAL POWER MANAGEMENT (DTPM)
15876 M:      Daniel Lezcano <daniel.lezcano@kernel.org>
15877 L:      linux-pm@vger.kernel.org
15878 S:      Supported
15879 B:      https://bugzilla.kernel.org
15880 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
15881 F:      drivers/powercap/dtpm*
15882 F:      include/linux/dtpm.h
15883
15884 POWER STATE COORDINATION INTERFACE (PSCI)
15885 M:      Mark Rutland <mark.rutland@arm.com>
15886 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
15887 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15888 S:      Maintained
15889 F:      drivers/firmware/psci/
15890 F:      include/linux/psci.h
15891 F:      include/uapi/linux/psci.h
15892
15893 POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
15894 M:      Sebastian Reichel <sre@kernel.org>
15895 L:      linux-pm@vger.kernel.org
15896 S:      Maintained
15897 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
15898 F:      Documentation/ABI/testing/sysfs-class-power
15899 F:      Documentation/devicetree/bindings/power/supply/
15900 F:      drivers/power/supply/
15901 F:      include/linux/power/
15902 F:      include/linux/power_supply.h
15903
15904 POWERNV OPERATOR PANEL LCD DISPLAY DRIVER
15905 M:      Suraj Jitindar Singh <sjitindarsingh@gmail.com>
15906 L:      linuxppc-dev@lists.ozlabs.org
15907 S:      Maintained
15908 F:      drivers/char/powernv-op-panel.c
15909
15910 PPP OVER ATM (RFC 2364)
15911 M:      Mitchell Blank Jr <mitch@sfgoth.com>
15912 S:      Maintained
15913 F:      include/uapi/linux/atmppp.h
15914 F:      net/atm/pppoatm.c
15915
15916 PPP OVER ETHERNET
15917 M:      Michal Ostrowski <mostrows@earthlink.net>
15918 S:      Maintained
15919 F:      drivers/net/ppp/pppoe.c
15920 F:      drivers/net/ppp/pppox.c
15921
15922 PPP OVER L2TP
15923 M:      James Chapman <jchapman@katalix.com>
15924 S:      Maintained
15925 F:      include/linux/if_pppol2tp.h
15926 F:      include/uapi/linux/if_pppol2tp.h
15927 F:      net/l2tp/l2tp_ppp.c
15928
15929 PPP PROTOCOL DRIVERS AND COMPRESSORS
15930 M:      Paul Mackerras <paulus@samba.org>
15931 L:      linux-ppp@vger.kernel.org
15932 S:      Maintained
15933 F:      drivers/net/ppp/ppp_*
15934
15935 PPS SUPPORT
15936 M:      Rodolfo Giometti <giometti@enneenne.com>
15937 L:      linuxpps@ml.enneenne.com (subscribers-only)
15938 S:      Maintained
15939 W:      http://wiki.enneenne.com/index.php/LinuxPPS_support
15940 F:      Documentation/ABI/testing/sysfs-pps
15941 F:      Documentation/devicetree/bindings/pps/pps-gpio.txt
15942 F:      Documentation/driver-api/pps.rst
15943 F:      drivers/pps/
15944 F:      include/linux/pps*.h
15945 F:      include/uapi/linux/pps.h
15946
15947 PPTP DRIVER
15948 M:      Dmitry Kozlov <xeb@mail.ru>
15949 L:      netdev@vger.kernel.org
15950 S:      Maintained
15951 W:      http://sourceforge.net/projects/accel-pptp
15952 F:      drivers/net/ppp/pptp.c
15953
15954 PRESSURE STALL INFORMATION (PSI)
15955 M:      Johannes Weiner <hannes@cmpxchg.org>
15956 M:      Suren Baghdasaryan <surenb@google.com>
15957 S:      Maintained
15958 F:      include/linux/psi*
15959 F:      kernel/sched/psi.c
15960
15961 PRINTK
15962 M:      Petr Mladek <pmladek@suse.com>
15963 M:      Sergey Senozhatsky <senozhatsky@chromium.org>
15964 R:      Steven Rostedt <rostedt@goodmis.org>
15965 R:      John Ogness <john.ogness@linutronix.de>
15966 S:      Maintained
15967 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/printk/linux.git
15968 F:      include/linux/printk.h
15969 F:      kernel/printk/
15970
15971 PRINTK INDEXING
15972 R:      Chris Down <chris@chrisdown.name>
15973 S:      Maintained
15974 F:      Documentation/core-api/printk-index.rst
15975 F:      kernel/printk/index.c
15976 K:      printk_index
15977
15978 PROC FILESYSTEM
15979 L:      linux-kernel@vger.kernel.org
15980 L:      linux-fsdevel@vger.kernel.org
15981 S:      Maintained
15982 F:      Documentation/filesystems/proc.rst
15983 F:      fs/proc/
15984 F:      include/linux/proc_fs.h
15985 F:      tools/testing/selftests/proc/
15986
15987 PROC SYSCTL
15988 M:      Luis Chamberlain <mcgrof@kernel.org>
15989 M:      Kees Cook <keescook@chromium.org>
15990 M:      Iurii Zaikin <yzaikin@google.com>
15991 L:      linux-kernel@vger.kernel.org
15992 L:      linux-fsdevel@vger.kernel.org
15993 S:      Maintained
15994 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mcgrof/linux.git sysctl-next
15995 F:      fs/proc/proc_sysctl.c
15996 F:      include/linux/sysctl.h
15997 F:      kernel/sysctl-test.c
15998 F:      kernel/sysctl.c
15999 F:      tools/testing/selftests/sysctl/
16000
16001 PS3 NETWORK SUPPORT
16002 M:      Geoff Levand <geoff@infradead.org>
16003 L:      netdev@vger.kernel.org
16004 L:      linuxppc-dev@lists.ozlabs.org
16005 S:      Maintained
16006 F:      drivers/net/ethernet/toshiba/ps3_gelic_net.*
16007
16008 PS3 PLATFORM SUPPORT
16009 M:      Geoff Levand <geoff@infradead.org>
16010 L:      linuxppc-dev@lists.ozlabs.org
16011 S:      Maintained
16012 F:      arch/powerpc/boot/ps3*
16013 F:      arch/powerpc/include/asm/lv1call.h
16014 F:      arch/powerpc/include/asm/ps3*.h
16015 F:      arch/powerpc/platforms/ps3/
16016 F:      drivers/*/ps3*
16017 F:      drivers/ps3/
16018 F:      drivers/rtc/rtc-ps3.c
16019 F:      drivers/usb/host/*ps3.c
16020 F:      sound/ppc/snd_ps3*
16021
16022 PS3VRAM DRIVER
16023 M:      Jim Paris <jim@jtan.com>
16024 M:      Geoff Levand <geoff@infradead.org>
16025 L:      linuxppc-dev@lists.ozlabs.org
16026 S:      Maintained
16027 F:      drivers/block/ps3vram.c
16028
16029 PSAMPLE PACKET SAMPLING SUPPORT
16030 M:      Yotam Gigi <yotam.gi@gmail.com>
16031 S:      Maintained
16032 F:      include/net/psample.h
16033 F:      include/uapi/linux/psample.h
16034 F:      net/psample
16035
16036 PSTORE FILESYSTEM
16037 M:      Kees Cook <keescook@chromium.org>
16038 M:      Anton Vorontsov <anton@enomsg.org>
16039 M:      Colin Cross <ccross@android.com>
16040 M:      Tony Luck <tony.luck@intel.com>
16041 S:      Maintained
16042 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/pstore
16043 F:      Documentation/admin-guide/ramoops.rst
16044 F:      Documentation/admin-guide/pstore-blk.rst
16045 F:      Documentation/devicetree/bindings/reserved-memory/ramoops.yaml
16046 F:      drivers/acpi/apei/erst.c
16047 F:      drivers/firmware/efi/efi-pstore.c
16048 F:      fs/pstore/
16049 F:      include/linux/pstore*
16050 K:      \b(pstore|ramoops)
16051
16052 PTP HARDWARE CLOCK SUPPORT
16053 M:      Richard Cochran <richardcochran@gmail.com>
16054 L:      netdev@vger.kernel.org
16055 S:      Maintained
16056 W:      http://linuxptp.sourceforge.net/
16057 F:      Documentation/ABI/testing/sysfs-ptp
16058 F:      Documentation/driver-api/ptp.rst
16059 F:      drivers/net/phy/dp83640*
16060 F:      drivers/ptp/*
16061 F:      include/linux/ptp_cl*
16062
16063 PTP VIRTUAL CLOCK SUPPORT
16064 M:      Yangbo Lu <yangbo.lu@nxp.com>
16065 L:      netdev@vger.kernel.org
16066 S:      Maintained
16067 F:      drivers/ptp/ptp_vclock.c
16068 F:      net/ethtool/phc_vclocks.c
16069
16070 PTRACE SUPPORT
16071 M:      Oleg Nesterov <oleg@redhat.com>
16072 S:      Maintained
16073 F:      arch/*/*/ptrace*.c
16074 F:      arch/*/include/asm/ptrace*.h
16075 F:      arch/*/ptrace*.c
16076 F:      include/asm-generic/syscall.h
16077 F:      include/linux/ptrace.h
16078 F:      include/linux/regset.h
16079 F:      include/uapi/linux/ptrace.h
16080 F:      include/uapi/linux/ptrace.h
16081 F:      kernel/ptrace.c
16082
16083 PULSE8-CEC DRIVER
16084 M:      Hans Verkuil <hverkuil@xs4all.nl>
16085 L:      linux-media@vger.kernel.org
16086 S:      Maintained
16087 T:      git git://linuxtv.org/media_tree.git
16088 F:      Documentation/admin-guide/media/pulse8-cec.rst
16089 F:      drivers/media/cec/usb/pulse8/
16090
16091 PURELIFI PLFXLC DRIVER
16092 M:      Srinivasan Raju <srini.raju@purelifi.com>
16093 L:      linux-wireless@vger.kernel.org
16094 S:      Supported
16095 F:      drivers/net/wireless/purelifi/plfxlc/
16096
16097 PVRUSB2 VIDEO4LINUX DRIVER
16098 M:      Mike Isely <isely@pobox.com>
16099 L:      pvrusb2@isely.net       (subscribers-only)
16100 L:      linux-media@vger.kernel.org
16101 S:      Maintained
16102 W:      http://www.isely.net/pvrusb2/
16103 T:      git git://linuxtv.org/media_tree.git
16104 F:      Documentation/driver-api/media/drivers/pvrusb2*
16105 F:      drivers/media/usb/pvrusb2/
16106
16107 PWC WEBCAM DRIVER
16108 M:      Hans Verkuil <hverkuil@xs4all.nl>
16109 L:      linux-media@vger.kernel.org
16110 S:      Odd Fixes
16111 T:      git git://linuxtv.org/media_tree.git
16112 F:      drivers/media/usb/pwc/*
16113 F:      include/trace/events/pwc.h
16114
16115 PWM FAN DRIVER
16116 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
16117 L:      linux-hwmon@vger.kernel.org
16118 S:      Supported
16119 F:      Documentation/devicetree/bindings/hwmon/pwm-fan.txt
16120 F:      Documentation/hwmon/pwm-fan.rst
16121 F:      drivers/hwmon/pwm-fan.c
16122
16123 PWM IR Transmitter
16124 M:      Sean Young <sean@mess.org>
16125 L:      linux-media@vger.kernel.org
16126 S:      Maintained
16127 F:      drivers/media/rc/pwm-ir-tx.c
16128
16129 PWM SUBSYSTEM
16130 M:      Thierry Reding <thierry.reding@gmail.com>
16131 R:      Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
16132 M:      Lee Jones <lee.jones@linaro.org>
16133 L:      linux-pwm@vger.kernel.org
16134 S:      Maintained
16135 Q:      https://patchwork.ozlabs.org/project/linux-pwm/list/
16136 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git
16137 F:      Documentation/devicetree/bindings/gpio/gpio-mvebu.txt
16138 F:      Documentation/devicetree/bindings/pwm/
16139 F:      Documentation/driver-api/pwm.rst
16140 F:      drivers/gpio/gpio-mvebu.c
16141 F:      drivers/pwm/
16142 F:      drivers/video/backlight/pwm_bl.c
16143 F:      include/linux/pwm.h
16144 F:      include/linux/pwm_backlight.h
16145 K:      pwm_(config|apply_state|ops)
16146
16147 PXA GPIO DRIVER
16148 M:      Robert Jarzmik <robert.jarzmik@free.fr>
16149 L:      linux-gpio@vger.kernel.org
16150 S:      Maintained
16151 F:      drivers/gpio/gpio-pxa.c
16152
16153 PXA MMCI DRIVER
16154 S:      Orphan
16155
16156 PXA RTC DRIVER
16157 M:      Robert Jarzmik <robert.jarzmik@free.fr>
16158 L:      linux-rtc@vger.kernel.org
16159 S:      Maintained
16160
16161 PXA2xx/PXA3xx SUPPORT
16162 M:      Daniel Mack <daniel@zonque.org>
16163 M:      Haojian Zhuang <haojian.zhuang@gmail.com>
16164 M:      Robert Jarzmik <robert.jarzmik@free.fr>
16165 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16166 S:      Maintained
16167 T:      git git://github.com/hzhuang1/linux.git
16168 T:      git git://github.com/rjarzmik/linux.git
16169 F:      arch/arm/boot/dts/pxa*
16170 F:      arch/arm/mach-pxa/
16171 F:      drivers/dma/pxa*
16172 F:      drivers/pcmcia/pxa2xx*
16173 F:      drivers/pinctrl/pxa/
16174 F:      drivers/spi/spi-pxa2xx*
16175 F:      drivers/usb/gadget/udc/pxa2*
16176 F:      include/sound/pxa2xx-lib.h
16177 F:      sound/arm/pxa*
16178 F:      sound/soc/pxa/
16179
16180 QAT DRIVER
16181 M:      Giovanni Cabiddu <giovanni.cabiddu@intel.com>
16182 L:      qat-linux@intel.com
16183 S:      Supported
16184 F:      drivers/crypto/qat/
16185
16186 QCOM AUDIO (ASoC) DRIVERS
16187 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
16188 M:      Banajit Goswami <bgoswami@codeaurora.org>
16189 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16190 S:      Supported
16191 F:      sound/soc/codecs/lpass-va-macro.c
16192 F:      sound/soc/codecs/lpass-wsa-macro.*
16193 F:      sound/soc/codecs/msm8916-wcd-analog.c
16194 F:      sound/soc/codecs/msm8916-wcd-digital.c
16195 F:      sound/soc/codecs/wcd9335.*
16196 F:      sound/soc/codecs/wcd934x.c
16197 F:      sound/soc/codecs/wcd-clsh-v2.*
16198 F:      sound/soc/codecs/wsa881x.c
16199 F:      sound/soc/qcom/
16200
16201 QCOM EMBEDDED USB DEBUGGER (EUD)
16202 M:      Souradeep Chowdhury <quic_schowdhu@quicinc.com>
16203 L:      linux-arm-msm@vger.kernel.org
16204 S:      Maintained
16205 F:      Documentation/ABI/testing/sysfs-driver-eud
16206 F:      Documentation/devicetree/bindings/soc/qcom/qcom,eud.yaml
16207 F:      drivers/usb/misc/qcom_eud.c
16208
16209 QCOM IPA DRIVER
16210 M:      Alex Elder <elder@kernel.org>
16211 L:      netdev@vger.kernel.org
16212 S:      Supported
16213 F:      drivers/net/ipa/
16214
16215 QEMU MACHINE EMULATOR AND VIRTUALIZER SUPPORT
16216 M:      Gabriel Somlo <somlo@cmu.edu>
16217 M:      "Michael S. Tsirkin" <mst@redhat.com>
16218 L:      qemu-devel@nongnu.org
16219 S:      Maintained
16220 F:      drivers/firmware/qemu_fw_cfg.c
16221 F:      include/uapi/linux/qemu_fw_cfg.h
16222
16223 QIB DRIVER
16224 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
16225 L:      linux-rdma@vger.kernel.org
16226 S:      Supported
16227 F:      drivers/infiniband/hw/qib/
16228
16229 QLOGIC QL41xxx FCOE DRIVER
16230 M:      Saurav Kashyap <skashyap@marvell.com>
16231 M:      Javed Hasan <jhasan@marvell.com>
16232 M:      GR-QLogic-Storage-Upstream@marvell.com
16233 L:      linux-scsi@vger.kernel.org
16234 S:      Supported
16235 F:      drivers/scsi/qedf/
16236
16237 QLOGIC QL41xxx ISCSI DRIVER
16238 M:      Nilesh Javali <njavali@marvell.com>
16239 M:      Manish Rangankar <mrangankar@marvell.com>
16240 M:      GR-QLogic-Storage-Upstream@marvell.com
16241 L:      linux-scsi@vger.kernel.org
16242 S:      Supported
16243 F:      drivers/scsi/qedi/
16244
16245 QLOGIC QL4xxx ETHERNET DRIVER
16246 M:      Ariel Elior <aelior@marvell.com>
16247 M:      Manish Chopra <manishc@marvell.com>
16248 L:      netdev@vger.kernel.org
16249 S:      Supported
16250 F:      drivers/net/ethernet/qlogic/qed/
16251 F:      drivers/net/ethernet/qlogic/qede/
16252 F:      include/linux/qed/
16253
16254 QLOGIC QL4xxx RDMA DRIVER
16255 M:      Michal Kalderon <mkalderon@marvell.com>
16256 M:      Ariel Elior <aelior@marvell.com>
16257 L:      linux-rdma@vger.kernel.org
16258 S:      Supported
16259 F:      drivers/infiniband/hw/qedr/
16260 F:      include/uapi/rdma/qedr-abi.h
16261
16262 QLOGIC QLA1280 SCSI DRIVER
16263 M:      Michael Reed <mdr@sgi.com>
16264 L:      linux-scsi@vger.kernel.org
16265 S:      Maintained
16266 F:      drivers/scsi/qla1280.[ch]
16267
16268 QLOGIC QLA2XXX FC-SCSI DRIVER
16269 M:      Nilesh Javali <njavali@marvell.com>
16270 M:      GR-QLogic-Storage-Upstream@marvell.com
16271 L:      linux-scsi@vger.kernel.org
16272 S:      Supported
16273 F:      drivers/scsi/qla2xxx/
16274
16275 QLOGIC QLA3XXX NETWORK DRIVER
16276 M:      GR-Linux-NIC-Dev@marvell.com
16277 L:      netdev@vger.kernel.org
16278 S:      Supported
16279 F:      drivers/net/ethernet/qlogic/qla3xxx.*
16280
16281 QLOGIC QLA4XXX iSCSI DRIVER
16282 M:      Nilesh Javali <njavali@marvell.com>
16283 M:      Manish Rangankar <mrangankar@marvell.com>
16284 M:      GR-QLogic-Storage-Upstream@marvell.com
16285 L:      linux-scsi@vger.kernel.org
16286 S:      Supported
16287 F:      drivers/scsi/qla4xxx/
16288
16289 QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
16290 M:      Shahed Shaikh <shshaikh@marvell.com>
16291 M:      Manish Chopra <manishc@marvell.com>
16292 M:      GR-Linux-NIC-Dev@marvell.com
16293 L:      netdev@vger.kernel.org
16294 S:      Supported
16295 F:      drivers/net/ethernet/qlogic/qlcnic/
16296
16297 QLOGIC QLGE 10Gb ETHERNET DRIVER
16298 M:      Manish Chopra <manishc@marvell.com>
16299 M:      GR-Linux-NIC-Dev@marvell.com
16300 M:      Coiby Xu <coiby.xu@gmail.com>
16301 L:      netdev@vger.kernel.org
16302 S:      Supported
16303 F:      Documentation/networking/device_drivers/qlogic/qlge.rst
16304 F:      drivers/staging/qlge/
16305
16306 QM1D1B0004 MEDIA DRIVER
16307 M:      Akihiro Tsukada <tskd08@gmail.com>
16308 L:      linux-media@vger.kernel.org
16309 S:      Odd Fixes
16310 F:      drivers/media/tuners/qm1d1b0004*
16311
16312 QM1D1C0042 MEDIA DRIVER
16313 M:      Akihiro Tsukada <tskd08@gmail.com>
16314 L:      linux-media@vger.kernel.org
16315 S:      Odd Fixes
16316 F:      drivers/media/tuners/qm1d1c0042*
16317
16318 QNX4 FILESYSTEM
16319 M:      Anders Larsen <al@alarsen.net>
16320 S:      Maintained
16321 W:      http://www.alarsen.net/linux/qnx4fs/
16322 F:      fs/qnx4/
16323 F:      include/uapi/linux/qnx4_fs.h
16324 F:      include/uapi/linux/qnxtypes.h
16325
16326 QORIQ DPAA2 FSL-MC BUS DRIVER
16327 M:      Stuart Yoder <stuyoder@gmail.com>
16328 M:      Laurentiu Tudor <laurentiu.tudor@nxp.com>
16329 L:      linux-kernel@vger.kernel.org
16330 S:      Maintained
16331 F:      Documentation/ABI/stable/sysfs-bus-fsl-mc
16332 F:      Documentation/devicetree/bindings/misc/fsl,qoriq-mc.txt
16333 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/overview.rst
16334 F:      drivers/bus/fsl-mc/
16335 F:      include/uapi/linux/fsl_mc.h
16336
16337 QT1010 MEDIA DRIVER
16338 M:      Antti Palosaari <crope@iki.fi>
16339 L:      linux-media@vger.kernel.org
16340 S:      Maintained
16341 W:      https://linuxtv.org
16342 W:      http://palosaari.fi/linux/
16343 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16344 T:      git git://linuxtv.org/anttip/media_tree.git
16345 F:      drivers/media/tuners/qt1010*
16346
16347 QUALCOMM ATHEROS ATH10K WIRELESS DRIVER
16348 M:      Kalle Valo <kvalo@kernel.org>
16349 L:      ath10k@lists.infradead.org
16350 S:      Supported
16351 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath10k
16352 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
16353 F:      drivers/net/wireless/ath/ath10k/
16354 F:      Documentation/devicetree/bindings/net/wireless/qcom,ath10k.txt
16355
16356 QUALCOMM ATHEROS ATH11K WIRELESS DRIVER
16357 M:      Kalle Valo <kvalo@kernel.org>
16358 L:      ath11k@lists.infradead.org
16359 S:      Supported
16360 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
16361 F:      Documentation/devicetree/bindings/net/wireless/qcom,ath11k.yaml
16362 F:      drivers/net/wireless/ath/ath11k/
16363
16364 QUALCOMM ATHEROS ATH9K WIRELESS DRIVER
16365 M:      Toke Høiland-Jørgensen <toke@toke.dk>
16366 L:      linux-wireless@vger.kernel.org
16367 S:      Maintained
16368 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath9k
16369 F:      Documentation/devicetree/bindings/net/wireless/qca,ath9k.yaml
16370 F:      drivers/net/wireless/ath/ath9k/
16371
16372 QUALCOMM BAM-DMUX WWAN NETWORK DRIVER
16373 M:      Stephan Gerhold <stephan@gerhold.net>
16374 L:      netdev@vger.kernel.org
16375 L:      linux-arm-msm@vger.kernel.org
16376 S:      Maintained
16377 F:      Documentation/devicetree/bindings/net/qcom,bam-dmux.yaml
16378 F:      drivers/net/wwan/qcom_bam_dmux.c
16379
16380 QUALCOMM CAMERA SUBSYSTEM DRIVER
16381 M:      Robert Foss <robert.foss@linaro.org>
16382 M:      Todor Tomov <todor.too@gmail.com>
16383 L:      linux-media@vger.kernel.org
16384 S:      Maintained
16385 F:      Documentation/admin-guide/media/qcom_camss.rst
16386 F:      Documentation/devicetree/bindings/media/*camss*
16387 F:      drivers/media/platform/qcom/camss/
16388
16389 QUALCOMM CLOCK DRIVERS
16390 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
16391 L:      linux-arm-msm@vger.kernel.org
16392 S:      Supported
16393 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/qcom/linux.git
16394 F:      Documentation/devicetree/bindings/clock/qcom,*
16395 F:      drivers/clk/qcom/
16396 F:      include/dt-bindings/clock/qcom,*
16397
16398 QUALCOMM CORE POWER REDUCTION (CPR) AVS DRIVER
16399 M:      Niklas Cassel <nks@flawful.org>
16400 L:      linux-pm@vger.kernel.org
16401 L:      linux-arm-msm@vger.kernel.org
16402 S:      Maintained
16403 F:      Documentation/devicetree/bindings/power/avs/qcom,cpr.yaml
16404 F:      drivers/soc/qcom/cpr.c
16405
16406 QUALCOMM CPUFREQ DRIVER MSM8996/APQ8096
16407 M:      Ilia Lin <ilia.lin@kernel.org>
16408 L:      linux-pm@vger.kernel.org
16409 S:      Maintained
16410 F:      Documentation/devicetree/bindings/cpufreq/qcom-cpufreq-nvmem.yaml
16411 F:      Documentation/devicetree/bindings/opp/opp-v2-kryo-cpu.yaml
16412 F:      drivers/cpufreq/qcom-cpufreq-nvmem.c
16413
16414 QUALCOMM CRYPTO DRIVERS
16415 M:      Thara Gopinath <thara.gopinath@linaro.org>
16416 L:      linux-crypto@vger.kernel.org
16417 L:      linux-arm-msm@vger.kernel.org
16418 S:      Maintained
16419 F:      drivers/crypto/qce/
16420
16421 QUALCOMM EMAC GIGABIT ETHERNET DRIVER
16422 M:      Timur Tabi <timur@kernel.org>
16423 L:      netdev@vger.kernel.org
16424 S:      Maintained
16425 F:      drivers/net/ethernet/qualcomm/emac/
16426
16427 QUALCOMM ETHQOS ETHERNET DRIVER
16428 M:      Vinod Koul <vkoul@kernel.org>
16429 L:      netdev@vger.kernel.org
16430 S:      Maintained
16431 F:      Documentation/devicetree/bindings/net/qcom,ethqos.txt
16432 F:      drivers/net/ethernet/stmicro/stmmac/dwmac-qcom-ethqos.c
16433
16434 QUALCOMM FASTRPC DRIVER
16435 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
16436 M:      Amol Maheshwari <amahesh@qti.qualcomm.com>
16437 L:      linux-arm-msm@vger.kernel.org
16438 S:      Maintained
16439 F:      Documentation/devicetree/bindings/misc/qcom,fastrpc.txt
16440 F:      drivers/misc/fastrpc.c
16441 F:      include/uapi/misc/fastrpc.h
16442
16443 QUALCOMM HEXAGON ARCHITECTURE
16444 M:      Brian Cain <bcain@quicinc.com>
16445 L:      linux-hexagon@vger.kernel.org
16446 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bcain/linux.git
16447 S:      Supported
16448 F:      arch/hexagon/
16449
16450 QUALCOMM HIDMA DRIVER
16451 M:      Sinan Kaya <okaya@kernel.org>
16452 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16453 L:      linux-arm-msm@vger.kernel.org
16454 L:      dmaengine@vger.kernel.org
16455 S:      Supported
16456 F:      drivers/dma/qcom/hidma*
16457
16458 QUALCOMM I2C CCI DRIVER
16459 M:      Loic Poulain <loic.poulain@linaro.org>
16460 M:      Robert Foss <robert.foss@linaro.org>
16461 L:      linux-i2c@vger.kernel.org
16462 L:      linux-arm-msm@vger.kernel.org
16463 S:      Maintained
16464 F:      Documentation/devicetree/bindings/i2c/i2c-qcom-cci.txt
16465 F:      drivers/i2c/busses/i2c-qcom-cci.c
16466
16467 QUALCOMM IOMMU
16468 M:      Rob Clark <robdclark@gmail.com>
16469 L:      iommu@lists.linux-foundation.org
16470 L:      linux-arm-msm@vger.kernel.org
16471 S:      Maintained
16472 F:      drivers/iommu/arm/arm-smmu/qcom_iommu.c
16473
16474 QUALCOMM IPC ROUTER (QRTR) DRIVER
16475 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
16476 L:      linux-arm-msm@vger.kernel.org
16477 S:      Maintained
16478 F:      include/trace/events/qrtr.h
16479 F:      include/uapi/linux/qrtr.h
16480 F:      net/qrtr/
16481
16482 QUALCOMM IPCC MAILBOX DRIVER
16483 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
16484 L:      linux-arm-msm@vger.kernel.org
16485 S:      Supported
16486 F:      Documentation/devicetree/bindings/mailbox/qcom-ipcc.yaml
16487 F:      drivers/mailbox/qcom-ipcc.c
16488 F:      include/dt-bindings/mailbox/qcom-ipcc.h
16489
16490 QUALCOMM IPQ4019 USB PHY DRIVER
16491 M:      Robert Marko <robert.marko@sartura.hr>
16492 M:      Luka Perkov <luka.perkov@sartura.hr>
16493 L:      linux-arm-msm@vger.kernel.org
16494 S:      Maintained
16495 F:      Documentation/devicetree/bindings/phy/qcom-usb-ipq4019-phy.yaml
16496 F:      drivers/phy/qualcomm/phy-qcom-ipq4019-usb.c
16497
16498 QUALCOMM IPQ4019 VQMMC REGULATOR DRIVER
16499 M:      Robert Marko <robert.marko@sartura.hr>
16500 M:      Luka Perkov <luka.perkov@sartura.hr>
16501 L:      linux-arm-msm@vger.kernel.org
16502 S:      Maintained
16503 F:      Documentation/devicetree/bindings/regulator/vqmmc-ipq4019-regulator.yaml
16504 F:      drivers/regulator/vqmmc-ipq4019-regulator.c
16505
16506 QUALCOMM NAND CONTROLLER DRIVER
16507 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
16508 L:      linux-mtd@lists.infradead.org
16509 L:      linux-arm-msm@vger.kernel.org
16510 S:      Maintained
16511 F:      Documentation/devicetree/bindings/mtd/qcom,nandc.yaml
16512 F:      drivers/mtd/nand/raw/qcom_nandc.c
16513
16514 QUALCOMM RMNET DRIVER
16515 M:      Subash Abhinov Kasiviswanathan <quic_subashab@quicinc.com>
16516 M:      Sean Tranchetti <quic_stranche@quicinc.com>
16517 L:      netdev@vger.kernel.org
16518 S:      Maintained
16519 F:      Documentation/networking/device_drivers/cellular/qualcomm/rmnet.rst
16520 F:      drivers/net/ethernet/qualcomm/rmnet/
16521 F:      include/linux/if_rmnet.h
16522
16523 QUALCOMM TSENS THERMAL DRIVER
16524 M:      Amit Kucheria <amitk@kernel.org>
16525 M:      Thara Gopinath <thara.gopinath@linaro.org>
16526 L:      linux-pm@vger.kernel.org
16527 L:      linux-arm-msm@vger.kernel.org
16528 S:      Maintained
16529 F:      Documentation/devicetree/bindings/thermal/qcom-tsens.yaml
16530 F:      drivers/thermal/qcom/
16531
16532 QUALCOMM VENUS VIDEO ACCELERATOR DRIVER
16533 M:      Stanimir Varbanov <stanimir.varbanov@linaro.org>
16534 L:      linux-media@vger.kernel.org
16535 L:      linux-arm-msm@vger.kernel.org
16536 S:      Maintained
16537 T:      git git://linuxtv.org/media_tree.git
16538 F:      Documentation/devicetree/bindings/media/*venus*
16539 F:      drivers/media/platform/qcom/venus/
16540
16541 QUALCOMM WCN36XX WIRELESS DRIVER
16542 M:      Loic Poulain <loic.poulain@linaro.org>
16543 L:      wcn36xx@lists.infradead.org
16544 S:      Supported
16545 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wcn36xx
16546 F:      drivers/net/wireless/ath/wcn36xx/
16547
16548 QUANTENNA QTNFMAC WIRELESS DRIVER
16549 M:      Igor Mitsyanko <imitsyanko@quantenna.com>
16550 R:      Sergey Matyukevich <geomatsi@gmail.com>
16551 L:      linux-wireless@vger.kernel.org
16552 S:      Maintained
16553 F:      drivers/net/wireless/quantenna
16554
16555 RADEON and AMDGPU DRM DRIVERS
16556 M:      Alex Deucher <alexander.deucher@amd.com>
16557 M:      Christian König <christian.koenig@amd.com>
16558 M:      Pan, Xinhui <Xinhui.Pan@amd.com>
16559 L:      amd-gfx@lists.freedesktop.org
16560 S:      Supported
16561 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
16562 B:      https://gitlab.freedesktop.org/drm/amd/-/issues
16563 C:      irc://irc.oftc.net/radeon
16564 F:      Documentation/gpu/amdgpu/
16565 F:      drivers/gpu/drm/amd/
16566 F:      drivers/gpu/drm/radeon/
16567 F:      include/uapi/drm/amdgpu_drm.h
16568 F:      include/uapi/drm/radeon_drm.h
16569
16570 RADEON FRAMEBUFFER DISPLAY DRIVER
16571 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
16572 L:      linux-fbdev@vger.kernel.org
16573 S:      Maintained
16574 F:      drivers/video/fbdev/aty/radeon*
16575 F:      include/uapi/linux/radeonfb.h
16576
16577 RADIOSHARK RADIO DRIVER
16578 M:      Hans Verkuil <hverkuil@xs4all.nl>
16579 L:      linux-media@vger.kernel.org
16580 S:      Maintained
16581 T:      git git://linuxtv.org/media_tree.git
16582 F:      drivers/media/radio/radio-shark.c
16583
16584 RADIOSHARK2 RADIO DRIVER
16585 M:      Hans Verkuil <hverkuil@xs4all.nl>
16586 L:      linux-media@vger.kernel.org
16587 S:      Maintained
16588 T:      git git://linuxtv.org/media_tree.git
16589 F:      drivers/media/radio/radio-shark2.c
16590 F:      drivers/media/radio/radio-tea5777.c
16591
16592 RADOS BLOCK DEVICE (RBD)
16593 M:      Ilya Dryomov <idryomov@gmail.com>
16594 R:      Dongsheng Yang <dongsheng.yang@easystack.cn>
16595 L:      ceph-devel@vger.kernel.org
16596 S:      Supported
16597 W:      http://ceph.com/
16598 T:      git git://github.com/ceph/ceph-client.git
16599 F:      Documentation/ABI/testing/sysfs-bus-rbd
16600 F:      drivers/block/rbd.c
16601 F:      drivers/block/rbd_types.h
16602
16603 RAGE128 FRAMEBUFFER DISPLAY DRIVER
16604 M:      Paul Mackerras <paulus@samba.org>
16605 L:      linux-fbdev@vger.kernel.org
16606 S:      Maintained
16607 F:      drivers/video/fbdev/aty/aty128fb.c
16608
16609 RAINSHADOW-CEC DRIVER
16610 M:      Hans Verkuil <hverkuil@xs4all.nl>
16611 L:      linux-media@vger.kernel.org
16612 S:      Maintained
16613 T:      git git://linuxtv.org/media_tree.git
16614 F:      drivers/media/cec/usb/rainshadow/
16615
16616 RALINK MIPS ARCHITECTURE
16617 M:      John Crispin <john@phrozen.org>
16618 L:      linux-mips@vger.kernel.org
16619 S:      Maintained
16620 F:      arch/mips/ralink
16621
16622 RALINK MT7621 MIPS ARCHITECTURE
16623 M:      Arınç ÜNAL <arinc.unal@arinc9.com>
16624 M:      Sergio Paracuellos <sergio.paracuellos@gmail.com>
16625 L:      linux-mips@vger.kernel.org
16626 S:      Maintained
16627 F:      arch/mips/boot/dts/ralink/mt7621*
16628
16629 RALINK RT2X00 WIRELESS LAN DRIVER
16630 M:      Stanislaw Gruszka <stf_xl@wp.pl>
16631 M:      Helmut Schaa <helmut.schaa@googlemail.com>
16632 L:      linux-wireless@vger.kernel.org
16633 S:      Maintained
16634 F:      drivers/net/wireless/ralink/rt2x00/
16635
16636 RAMDISK RAM BLOCK DEVICE DRIVER
16637 M:      Jens Axboe <axboe@kernel.dk>
16638 S:      Maintained
16639 F:      Documentation/admin-guide/blockdev/ramdisk.rst
16640 F:      drivers/block/brd.c
16641
16642 RANCHU VIRTUAL BOARD FOR MIPS
16643 M:      Miodrag Dinic <miodrag.dinic@mips.com>
16644 L:      linux-mips@vger.kernel.org
16645 S:      Supported
16646 F:      arch/mips/configs/generic/board-ranchu.config
16647 F:      arch/mips/generic/board-ranchu.c
16648
16649 RANDOM NUMBER DRIVER
16650 M:      "Theodore Ts'o" <tytso@mit.edu>
16651 M:      Jason A. Donenfeld <Jason@zx2c4.com>
16652 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/crng/random.git
16653 S:      Maintained
16654 F:      drivers/char/random.c
16655 F:      drivers/virt/vmgenid.c
16656
16657 RAPIDIO SUBSYSTEM
16658 M:      Matt Porter <mporter@kernel.crashing.org>
16659 M:      Alexandre Bounine <alex.bou9@gmail.com>
16660 S:      Maintained
16661 F:      drivers/rapidio/
16662
16663 RAS INFRASTRUCTURE
16664 M:      Tony Luck <tony.luck@intel.com>
16665 M:      Borislav Petkov <bp@alien8.de>
16666 L:      linux-edac@vger.kernel.org
16667 S:      Maintained
16668 F:      Documentation/admin-guide/ras.rst
16669 F:      drivers/ras/
16670 F:      include/linux/ras.h
16671 F:      include/ras/ras_event.h
16672
16673 RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
16674 L:      linux-wireless@vger.kernel.org
16675 S:      Orphan
16676 F:      drivers/net/wireless/ray*
16677
16678 RC-CORE / LIRC FRAMEWORK
16679 M:      Sean Young <sean@mess.org>
16680 L:      linux-media@vger.kernel.org
16681 S:      Maintained
16682 W:      http://linuxtv.org
16683 T:      git git://linuxtv.org/media_tree.git
16684 F:      Documentation/driver-api/media/rc-core.rst
16685 F:      Documentation/userspace-api/media/rc/
16686 F:      drivers/media/rc/
16687 F:      include/media/rc-map.h
16688 F:      include/media/rc-core.h
16689 F:      include/uapi/linux/lirc.h
16690
16691 RCMM REMOTE CONTROLS DECODER
16692 M:      Patrick Lerda <patrick9876@free.fr>
16693 S:      Maintained
16694 F:      drivers/media/rc/ir-rcmm-decoder.c
16695
16696 RCUTORTURE TEST FRAMEWORK
16697 M:      "Paul E. McKenney" <paulmck@kernel.org>
16698 M:      Josh Triplett <josh@joshtriplett.org>
16699 R:      Steven Rostedt <rostedt@goodmis.org>
16700 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
16701 R:      Lai Jiangshan <jiangshanlai@gmail.com>
16702 L:      rcu@vger.kernel.org
16703 S:      Supported
16704 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
16705 F:      tools/testing/selftests/rcutorture
16706
16707 RDACM20 Camera Sensor
16708 M:      Jacopo Mondi <jacopo+renesas@jmondi.org>
16709 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
16710 M:      Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
16711 M:      Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
16712 L:      linux-media@vger.kernel.org
16713 S:      Maintained
16714 F:      Documentation/devicetree/bindings/media/i2c/imi,rdacm2x-gmsl.yaml
16715 F:      drivers/media/i2c/max9271.c
16716 F:      drivers/media/i2c/max9271.h
16717 F:      drivers/media/i2c/rdacm20.c
16718
16719 RDACM21 Camera Sensor
16720 M:      Jacopo Mondi <jacopo+renesas@jmondi.org>
16721 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
16722 M:      Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
16723 M:      Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
16724 L:      linux-media@vger.kernel.org
16725 S:      Maintained
16726 F:      Documentation/devicetree/bindings/media/i2c/imi,rdacm2x-gmsl.yaml
16727 F:      drivers/media/i2c/max9271.c
16728 F:      drivers/media/i2c/max9271.h
16729 F:      drivers/media/i2c/rdacm21.c
16730
16731 RDC R-321X SoC
16732 M:      Florian Fainelli <florian@openwrt.org>
16733 S:      Maintained
16734
16735 RDC R6040 FAST ETHERNET DRIVER
16736 M:      Florian Fainelli <f.fainelli@gmail.com>
16737 L:      netdev@vger.kernel.org
16738 S:      Maintained
16739 F:      drivers/net/ethernet/rdc/r6040.c
16740
16741 RDMAVT - RDMA verbs software
16742 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
16743 L:      linux-rdma@vger.kernel.org
16744 S:      Supported
16745 F:      drivers/infiniband/sw/rdmavt
16746
16747 RDS - RELIABLE DATAGRAM SOCKETS
16748 M:      Santosh Shilimkar <santosh.shilimkar@oracle.com>
16749 L:      netdev@vger.kernel.org
16750 L:      linux-rdma@vger.kernel.org
16751 L:      rds-devel@oss.oracle.com (moderated for non-subscribers)
16752 S:      Supported
16753 W:      https://oss.oracle.com/projects/rds/
16754 F:      Documentation/networking/rds.rst
16755 F:      net/rds/
16756
16757 RDT - RESOURCE ALLOCATION
16758 M:      Fenghua Yu <fenghua.yu@intel.com>
16759 M:      Reinette Chatre <reinette.chatre@intel.com>
16760 L:      linux-kernel@vger.kernel.org
16761 S:      Supported
16762 F:      Documentation/x86/resctrl*
16763 F:      arch/x86/include/asm/resctrl.h
16764 F:      arch/x86/kernel/cpu/resctrl/
16765 F:      tools/testing/selftests/resctrl/
16766
16767 READ-COPY UPDATE (RCU)
16768 M:      "Paul E. McKenney" <paulmck@kernel.org>
16769 M:      Frederic Weisbecker <frederic@kernel.org> (kernel/rcu/tree_nocb.h)
16770 M:      Neeraj Upadhyay <quic_neeraju@quicinc.com> (kernel/rcu/tasks.h)
16771 M:      Josh Triplett <josh@joshtriplett.org>
16772 R:      Steven Rostedt <rostedt@goodmis.org>
16773 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
16774 R:      Lai Jiangshan <jiangshanlai@gmail.com>
16775 R:      Joel Fernandes <joel@joelfernandes.org>
16776 L:      rcu@vger.kernel.org
16777 S:      Supported
16778 W:      http://www.rdrop.com/users/paulmck/RCU/
16779 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
16780 F:      Documentation/RCU/
16781 F:      include/linux/rcu*
16782 F:      kernel/rcu/
16783 X:      Documentation/RCU/torture.rst
16784 X:      include/linux/srcu*.h
16785 X:      kernel/rcu/srcu*.c
16786
16787 REAL TIME CLOCK (RTC) SUBSYSTEM
16788 M:      Alessandro Zummo <a.zummo@towertech.it>
16789 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
16790 L:      linux-rtc@vger.kernel.org
16791 S:      Maintained
16792 Q:      http://patchwork.ozlabs.org/project/rtc-linux/list/
16793 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git
16794 F:      Documentation/admin-guide/rtc.rst
16795 F:      Documentation/devicetree/bindings/rtc/
16796 F:      drivers/rtc/
16797 F:      include/linux/platform_data/rtc-*
16798 F:      include/linux/rtc.h
16799 F:      include/linux/rtc/
16800 F:      include/uapi/linux/rtc.h
16801 F:      tools/testing/selftests/rtc/
16802
16803 REALTEK AUDIO CODECS
16804 M:      Oder Chiou <oder_chiou@realtek.com>
16805 S:      Maintained
16806 F:      include/sound/rt*.h
16807 F:      sound/soc/codecs/rt*
16808
16809 REALTEK OTTO WATCHDOG
16810 M:      Sander Vanheule <sander@svanheule.net>
16811 L:      linux-watchdog@vger.kernel.org
16812 S:      Maintained
16813 F:      Documentation/devicetree/bindings/watchdog/realtek,otto-wdt.yaml
16814 F:      drivers/watchdog/realtek_otto_wdt.c
16815
16816 REALTEK RTL83xx SMI DSA ROUTER CHIPS
16817 M:      Linus Walleij <linus.walleij@linaro.org>
16818 M:      Alvin Šipraga <alsi@bang-olufsen.dk>
16819 S:      Maintained
16820 F:      Documentation/devicetree/bindings/net/dsa/realtek.yaml
16821 F:      drivers/net/dsa/realtek/*
16822
16823 REALTEK WIRELESS DRIVER (rtlwifi family)
16824 M:      Ping-Ke Shih <pkshih@realtek.com>
16825 L:      linux-wireless@vger.kernel.org
16826 S:      Maintained
16827 W:      https://wireless.wiki.kernel.org/
16828 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
16829 F:      drivers/net/wireless/realtek/rtlwifi/
16830
16831 REALTEK WIRELESS DRIVER (rtw88)
16832 M:      Yan-Hsuan Chuang <tony0620emma@gmail.com>
16833 L:      linux-wireless@vger.kernel.org
16834 S:      Maintained
16835 F:      drivers/net/wireless/realtek/rtw88/
16836
16837 REALTEK WIRELESS DRIVER (rtw89)
16838 M:      Ping-Ke Shih <pkshih@realtek.com>
16839 L:      linux-wireless@vger.kernel.org
16840 S:      Maintained
16841 F:      drivers/net/wireless/realtek/rtw89/
16842
16843 REDPINE WIRELESS DRIVER
16844 M:      Amitkumar Karwar <amitkarwar@gmail.com>
16845 M:      Siva Rebbagondla <siva8118@gmail.com>
16846 L:      linux-wireless@vger.kernel.org
16847 S:      Maintained
16848 F:      drivers/net/wireless/rsi/
16849
16850 REGISTER MAP ABSTRACTION
16851 M:      Mark Brown <broonie@kernel.org>
16852 L:      linux-kernel@vger.kernel.org
16853 S:      Supported
16854 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
16855 F:      Documentation/devicetree/bindings/regmap/
16856 F:      drivers/base/regmap/
16857 F:      include/linux/regmap.h
16858
16859 REISERFS FILE SYSTEM
16860 L:      reiserfs-devel@vger.kernel.org
16861 S:      Supported
16862 F:      fs/reiserfs/
16863
16864 REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
16865 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
16866 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
16867 L:      linux-remoteproc@vger.kernel.org
16868 S:      Maintained
16869 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/remoteproc/linux.git rproc-next
16870 F:      Documentation/ABI/testing/sysfs-class-remoteproc
16871 F:      Documentation/devicetree/bindings/remoteproc/
16872 F:      Documentation/staging/remoteproc.rst
16873 F:      drivers/remoteproc/
16874 F:      include/linux/remoteproc.h
16875 F:      include/linux/remoteproc/
16876
16877 REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM
16878 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
16879 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
16880 L:      linux-remoteproc@vger.kernel.org
16881 S:      Maintained
16882 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/remoteproc/linux.git rpmsg-next
16883 F:      Documentation/ABI/testing/sysfs-bus-rpmsg
16884 F:      Documentation/staging/rpmsg.rst
16885 F:      drivers/rpmsg/
16886 F:      include/linux/rpmsg.h
16887 F:      include/linux/rpmsg/
16888 F:      include/uapi/linux/rpmsg.h
16889 F:      samples/rpmsg/
16890
16891 REMOTE PROCESSOR MESSAGING (RPMSG) WWAN CONTROL DRIVER
16892 M:      Stephan Gerhold <stephan@gerhold.net>
16893 L:      netdev@vger.kernel.org
16894 L:      linux-remoteproc@vger.kernel.org
16895 S:      Maintained
16896 F:      drivers/net/wwan/rpmsg_wwan_ctrl.c
16897
16898 RENESAS CLOCK DRIVERS
16899 M:      Geert Uytterhoeven <geert+renesas@glider.be>
16900 L:      linux-renesas-soc@vger.kernel.org
16901 S:      Supported
16902 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git renesas-clk
16903 F:      Documentation/devicetree/bindings/clock/renesas,*
16904 F:      drivers/clk/renesas/
16905
16906 RENESAS EMEV2 I2C DRIVER
16907 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
16908 L:      linux-renesas-soc@vger.kernel.org
16909 S:      Supported
16910 F:      Documentation/devicetree/bindings/i2c/renesas,iic-emev2.yaml
16911 F:      drivers/i2c/busses/i2c-emev2.c
16912
16913 RENESAS ETHERNET DRIVERS
16914 R:      Sergey Shtylyov <s.shtylyov@omp.ru>
16915 L:      netdev@vger.kernel.org
16916 L:      linux-renesas-soc@vger.kernel.org
16917 F:      Documentation/devicetree/bindings/net/renesas,*.yaml
16918 F:      drivers/net/ethernet/renesas/
16919 F:      include/linux/sh_eth.h
16920
16921 RENESAS R-CAR GYROADC DRIVER
16922 M:      Marek Vasut <marek.vasut@gmail.com>
16923 L:      linux-iio@vger.kernel.org
16924 S:      Supported
16925 F:      Documentation/devicetree/bindings/iio/adc/renesas,rcar-gyroadc.yaml
16926 F:      drivers/iio/adc/rcar-gyroadc.c
16927
16928 RENESAS R-CAR I2C DRIVERS
16929 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
16930 L:      linux-renesas-soc@vger.kernel.org
16931 S:      Supported
16932 F:      Documentation/devicetree/bindings/i2c/renesas,rcar-i2c.yaml
16933 F:      Documentation/devicetree/bindings/i2c/renesas,rmobile-iic.yaml
16934 F:      drivers/i2c/busses/i2c-rcar.c
16935 F:      drivers/i2c/busses/i2c-sh_mobile.c
16936
16937 RENESAS R-CAR SATA DRIVER
16938 R:      Sergey Shtylyov <s.shtylyov@omp.ru>
16939 S:      Supported
16940 L:      linux-ide@vger.kernel.org
16941 L:      linux-renesas-soc@vger.kernel.org
16942 F:      Documentation/devicetree/bindings/ata/renesas,rcar-sata.yaml
16943 F:      drivers/ata/sata_rcar.c
16944
16945 RENESAS R-CAR THERMAL DRIVERS
16946 M:      Niklas Söderlund <niklas.soderlund@ragnatech.se>
16947 L:      linux-renesas-soc@vger.kernel.org
16948 S:      Supported
16949 F:      Documentation/devicetree/bindings/thermal/rcar-gen3-thermal.yaml
16950 F:      Documentation/devicetree/bindings/thermal/rcar-thermal.yaml
16951 F:      drivers/thermal/rcar_gen3_thermal.c
16952 F:      drivers/thermal/rcar_thermal.c
16953
16954 RENESAS RIIC DRIVER
16955 M:      Chris Brandt <chris.brandt@renesas.com>
16956 L:      linux-renesas-soc@vger.kernel.org
16957 S:      Supported
16958 F:      Documentation/devicetree/bindings/i2c/renesas,riic.yaml
16959 F:      drivers/i2c/busses/i2c-riic.c
16960
16961 RENESAS USB PHY DRIVER
16962 M:      Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
16963 L:      linux-renesas-soc@vger.kernel.org
16964 S:      Maintained
16965 F:      drivers/phy/renesas/phy-rcar-gen3-usb*.c
16966
16967 RENESAS RZ/G2L A/D DRIVER
16968 M:      Lad Prabhakar <prabhakar.mahadev-lad.rj@bp.renesas.com>
16969 L:      linux-iio@vger.kernel.org
16970 L:      linux-renesas-soc@vger.kernel.org
16971 S:      Supported
16972 F:      Documentation/devicetree/bindings/iio/adc/renesas,rzg2l-adc.yaml
16973 F:      drivers/iio/adc/rzg2l_adc.c
16974
16975 RENESAS R-CAR GEN3 & RZ/N1 NAND CONTROLLER DRIVER
16976 M:      Miquel Raynal <miquel.raynal@bootlin.com>
16977 L:      linux-mtd@lists.infradead.org
16978 L:      linux-renesas-soc@vger.kernel.org
16979 S:      Maintained
16980 F:      Documentation/devicetree/bindings/mtd/renesas-nandc.yaml
16981 F:      drivers/mtd/nand/raw/renesas-nand-controller.c
16982
16983 RESET CONTROLLER FRAMEWORK
16984 M:      Philipp Zabel <p.zabel@pengutronix.de>
16985 S:      Maintained
16986 T:      git git://git.pengutronix.de/git/pza/linux
16987 F:      Documentation/devicetree/bindings/reset/
16988 F:      Documentation/driver-api/reset.rst
16989 F:      drivers/reset/
16990 F:      include/dt-bindings/reset/
16991 F:      include/linux/reset-controller.h
16992 F:      include/linux/reset.h
16993 F:      include/linux/reset/
16994 K:      \b(?:devm_|of_)?reset_control(?:ler_[a-z]+|_[a-z_]+)?\b
16995
16996 RESTARTABLE SEQUENCES SUPPORT
16997 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
16998 M:      Peter Zijlstra <peterz@infradead.org>
16999 M:      "Paul E. McKenney" <paulmck@kernel.org>
17000 M:      Boqun Feng <boqun.feng@gmail.com>
17001 L:      linux-kernel@vger.kernel.org
17002 S:      Supported
17003 F:      include/trace/events/rseq.h
17004 F:      include/uapi/linux/rseq.h
17005 F:      kernel/rseq.c
17006 F:      tools/testing/selftests/rseq/
17007
17008 RFKILL
17009 M:      Johannes Berg <johannes@sipsolutions.net>
17010 L:      linux-wireless@vger.kernel.org
17011 S:      Maintained
17012 W:      https://wireless.wiki.kernel.org/
17013 Q:      https://patchwork.kernel.org/project/linux-wireless/list/
17014 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless.git
17015 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless-next.git
17016 F:      Documentation/ABI/stable/sysfs-class-rfkill
17017 F:      Documentation/driver-api/rfkill.rst
17018 F:      include/linux/rfkill.h
17019 F:      include/uapi/linux/rfkill.h
17020 F:      net/rfkill/
17021
17022 RHASHTABLE
17023 M:      Thomas Graf <tgraf@suug.ch>
17024 M:      Herbert Xu <herbert@gondor.apana.org.au>
17025 L:      netdev@vger.kernel.org
17026 S:      Maintained
17027 F:      include/linux/rhashtable-types.h
17028 F:      include/linux/rhashtable.h
17029 F:      lib/rhashtable.c
17030 F:      lib/test_rhashtable.c
17031
17032 RICOH R5C592 MEMORYSTICK DRIVER
17033 M:      Maxim Levitsky <maximlevitsky@gmail.com>
17034 S:      Maintained
17035 F:      drivers/memstick/host/r592.*
17036
17037 RICOH SMARTMEDIA/XD DRIVER
17038 M:      Maxim Levitsky <maximlevitsky@gmail.com>
17039 S:      Maintained
17040 F:      drivers/mtd/nand/raw/r852.c
17041 F:      drivers/mtd/nand/raw/r852.h
17042
17043 RISC-V PMU DRIVERS
17044 M:      Atish Patra <atishp@atishpatra.org>
17045 R:      Anup Patel <anup@brainfault.org>
17046 L:      linux-riscv@lists.infradead.org
17047 S:      Supported
17048 F:      drivers/perf/riscv_pmu.c
17049 F:      drivers/perf/riscv_pmu_legacy.c
17050 F:      drivers/perf/riscv_pmu_sbi.c
17051
17052 RISC-V ARCHITECTURE
17053 M:      Paul Walmsley <paul.walmsley@sifive.com>
17054 M:      Palmer Dabbelt <palmer@dabbelt.com>
17055 M:      Albert Ou <aou@eecs.berkeley.edu>
17056 L:      linux-riscv@lists.infradead.org
17057 S:      Supported
17058 P:      Documentation/riscv/patch-acceptance.rst
17059 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/riscv/linux.git
17060 F:      arch/riscv/
17061 N:      riscv
17062 K:      riscv
17063
17064 RISC-V/MICROCHIP POLARFIRE SOC SUPPORT
17065 M:      Lewis Hanly <lewis.hanly@microchip.com>
17066 M:      Conor Dooley <conor.dooley@microchip.com>
17067 L:      linux-riscv@lists.infradead.org
17068 S:      Supported
17069 F:      arch/riscv/boot/dts/microchip/
17070 F:      drivers/mailbox/mailbox-mpfs.c
17071 F:      drivers/soc/microchip/
17072 F:      include/soc/microchip/mpfs.h
17073
17074 RNBD BLOCK DRIVERS
17075 M:      Md. Haris Iqbal <haris.iqbal@ionos.com>
17076 M:      Jack Wang <jinpu.wang@ionos.com>
17077 L:      linux-block@vger.kernel.org
17078 S:      Maintained
17079 F:      drivers/block/rnbd/
17080
17081 ROCCAT DRIVERS
17082 M:      Stefan Achatz <erazor_de@users.sourceforge.net>
17083 S:      Maintained
17084 W:      http://sourceforge.net/projects/roccat/
17085 F:      Documentation/ABI/*/sysfs-driver-hid-roccat*
17086 F:      drivers/hid/hid-roccat*
17087 F:      include/linux/hid-roccat*
17088
17089 ROCKCHIP I2S TDM DRIVER
17090 M:      Nicolas Frattaroli <frattaroli.nicolas@gmail.com>
17091 L:      linux-rockchip@lists.infradead.org
17092 S:      Maintained
17093 F:      Documentation/devicetree/bindings/sound/rockchip,i2s-tdm.yaml
17094 F:      sound/soc/rockchip/rockchip_i2s_tdm.*
17095
17096 ROCKCHIP ISP V1 DRIVER
17097 M:      Dafna Hirschfeld <dafna@fastmail.com>
17098 L:      linux-media@vger.kernel.org
17099 L:      linux-rockchip@lists.infradead.org
17100 S:      Maintained
17101 F:      Documentation/admin-guide/media/rkisp1.rst
17102 F:      Documentation/devicetree/bindings/media/rockchip-isp1.yaml
17103 F:      Documentation/userspace-api/media/v4l/pixfmt-meta-rkisp1.rst
17104 F:      drivers/media/platform/rockchip/rkisp1
17105 F:      include/uapi/linux/rkisp1-config.h
17106
17107 ROCKCHIP RASTER 2D GRAPHIC ACCELERATION UNIT DRIVER
17108 M:      Jacob Chen <jacob-chen@iotwrt.com>
17109 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
17110 L:      linux-media@vger.kernel.org
17111 L:      linux-rockchip@lists.infradead.org
17112 S:      Maintained
17113 F:      Documentation/devicetree/bindings/media/rockchip-rga.yaml
17114 F:      drivers/media/platform/rockchip/rga/
17115
17116 ROCKCHIP VIDEO DECODER DRIVER
17117 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
17118 L:      linux-media@vger.kernel.org
17119 L:      linux-rockchip@lists.infradead.org
17120 S:      Maintained
17121 F:      Documentation/devicetree/bindings/media/rockchip,vdec.yaml
17122 F:      drivers/staging/media/rkvdec/
17123
17124 ROCKER DRIVER
17125 M:      Jiri Pirko <jiri@resnulli.us>
17126 L:      netdev@vger.kernel.org
17127 S:      Supported
17128 F:      drivers/net/ethernet/rocker/
17129
17130 ROCKETPORT EXPRESS/INFINITY DRIVER
17131 M:      Kevin Cernekee <cernekee@gmail.com>
17132 L:      linux-serial@vger.kernel.org
17133 S:      Odd Fixes
17134 F:      drivers/tty/serial/rp2.*
17135
17136 ROHM BD99954 CHARGER IC
17137 R:      Matti Vaittinen <mazziesaccount@gmail.com>
17138 S:      Supported
17139 F:      drivers/power/supply/bd99954-charger.c
17140 F:      drivers/power/supply/bd99954-charger.h
17141
17142 ROHM BH1750 AMBIENT LIGHT SENSOR DRIVER
17143 M:      Tomasz Duszynski <tduszyns@gmail.com>
17144 S:      Maintained
17145 F:      Documentation/devicetree/bindings/iio/light/bh1750.yaml
17146 F:      drivers/iio/light/bh1750.c
17147
17148 ROHM MULTIFUNCTION BD9571MWV-M PMIC DEVICE DRIVERS
17149 M:      Marek Vasut <marek.vasut+renesas@gmail.com>
17150 L:      linux-kernel@vger.kernel.org
17151 L:      linux-renesas-soc@vger.kernel.org
17152 S:      Supported
17153 F:      Documentation/devicetree/bindings/mfd/rohm,bd9571mwv.yaml
17154 F:      drivers/gpio/gpio-bd9571mwv.c
17155 F:      drivers/mfd/bd9571mwv.c
17156 F:      drivers/regulator/bd9571mwv-regulator.c
17157 F:      include/linux/mfd/bd9571mwv.h
17158
17159 ROHM POWER MANAGEMENT IC DEVICE DRIVERS
17160 R:      Matti Vaittinen <mazziesaccount@gmail.com>
17161 S:      Supported
17162 F:      drivers/clk/clk-bd718x7.c
17163 F:      drivers/gpio/gpio-bd71815.c
17164 F:      drivers/gpio/gpio-bd71828.c
17165 F:      drivers/mfd/rohm-bd71828.c
17166 F:      drivers/mfd/rohm-bd718x7.c
17167 F:      drivers/mfd/rohm-bd9576.c
17168 F:      drivers/regulator/bd71815-regulator.c
17169 F:      drivers/regulator/bd71828-regulator.c
17170 F:      drivers/regulator/bd718x7-regulator.c
17171 F:      drivers/regulator/bd9576-regulator.c
17172 F:      drivers/regulator/rohm-regulator.c
17173 F:      drivers/rtc/rtc-bd70528.c
17174 F:      drivers/watchdog/bd9576_wdt.c
17175 F:      include/linux/mfd/rohm-bd71815.h
17176 F:      include/linux/mfd/rohm-bd71828.h
17177 F:      include/linux/mfd/rohm-bd718x7.h
17178 F:      include/linux/mfd/rohm-bd957x.h
17179 F:      include/linux/mfd/rohm-generic.h
17180 F:      include/linux/mfd/rohm-shared.h
17181
17182 ROSE NETWORK LAYER
17183 M:      Ralf Baechle <ralf@linux-mips.org>
17184 L:      linux-hams@vger.kernel.org
17185 S:      Maintained
17186 W:      http://www.linux-ax25.org/
17187 F:      include/net/rose.h
17188 F:      include/uapi/linux/rose.h
17189 F:      net/rose/
17190
17191 ROTATION DRIVER FOR ALLWINNER A83T
17192 M:      Jernej Skrabec <jernej.skrabec@gmail.com>
17193 L:      linux-media@vger.kernel.org
17194 S:      Maintained
17195 T:      git git://linuxtv.org/media_tree.git
17196 F:      Documentation/devicetree/bindings/media/allwinner,sun8i-a83t-de2-rotate.yaml
17197 F:      drivers/media/platform/sunxi/sun8i-rotate/
17198
17199 RPMSG TTY DRIVER
17200 M:      Arnaud Pouliquen <arnaud.pouliquen@foss.st.com>
17201 L:      linux-remoteproc@vger.kernel.org
17202 S:      Maintained
17203 F:      drivers/tty/rpmsg_tty.c
17204
17205 RTL2830 MEDIA DRIVER
17206 M:      Antti Palosaari <crope@iki.fi>
17207 L:      linux-media@vger.kernel.org
17208 S:      Maintained
17209 W:      https://linuxtv.org
17210 W:      http://palosaari.fi/linux/
17211 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17212 T:      git git://linuxtv.org/anttip/media_tree.git
17213 F:      drivers/media/dvb-frontends/rtl2830*
17214
17215 RTL2832 MEDIA DRIVER
17216 M:      Antti Palosaari <crope@iki.fi>
17217 L:      linux-media@vger.kernel.org
17218 S:      Maintained
17219 W:      https://linuxtv.org
17220 W:      http://palosaari.fi/linux/
17221 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17222 T:      git git://linuxtv.org/anttip/media_tree.git
17223 F:      drivers/media/dvb-frontends/rtl2832*
17224
17225 RTL2832_SDR MEDIA DRIVER
17226 M:      Antti Palosaari <crope@iki.fi>
17227 L:      linux-media@vger.kernel.org
17228 S:      Maintained
17229 W:      https://linuxtv.org
17230 W:      http://palosaari.fi/linux/
17231 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17232 T:      git git://linuxtv.org/anttip/media_tree.git
17233 F:      drivers/media/dvb-frontends/rtl2832_sdr*
17234
17235 RTL8180 WIRELESS DRIVER
17236 L:      linux-wireless@vger.kernel.org
17237 S:      Orphan
17238 W:      https://wireless.wiki.kernel.org/
17239 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
17240 F:      drivers/net/wireless/realtek/rtl818x/rtl8180/
17241
17242 RTL8187 WIRELESS DRIVER
17243 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
17244 M:      Hin-Tak Leung <htl10@users.sourceforge.net>
17245 M:      Larry Finger <Larry.Finger@lwfinger.net>
17246 L:      linux-wireless@vger.kernel.org
17247 S:      Maintained
17248 W:      https://wireless.wiki.kernel.org/
17249 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
17250 F:      drivers/net/wireless/realtek/rtl818x/rtl8187/
17251
17252 RTL8XXXU WIRELESS DRIVER (rtl8xxxu)
17253 M:      Jes Sorensen <Jes.Sorensen@gmail.com>
17254 L:      linux-wireless@vger.kernel.org
17255 S:      Maintained
17256 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jes/linux.git rtl8xxxu-devel
17257 F:      drivers/net/wireless/realtek/rtl8xxxu/
17258
17259 RTRS TRANSPORT DRIVERS
17260 M:      Md. Haris Iqbal <haris.iqbal@ionos.com>
17261 M:      Jack Wang <jinpu.wang@ionos.com>
17262 L:      linux-rdma@vger.kernel.org
17263 S:      Maintained
17264 F:      drivers/infiniband/ulp/rtrs/
17265
17266 RXRPC SOCKETS (AF_RXRPC)
17267 M:      David Howells <dhowells@redhat.com>
17268 M:      Marc Dionne <marc.dionne@auristor.com>
17269 L:      linux-afs@lists.infradead.org
17270 S:      Supported
17271 W:      https://www.infradead.org/~dhowells/kafs/
17272 F:      Documentation/networking/rxrpc.rst
17273 F:      include/keys/rxrpc-type.h
17274 F:      include/net/af_rxrpc.h
17275 F:      include/trace/events/rxrpc.h
17276 F:      include/uapi/linux/rxrpc.h
17277 F:      net/rxrpc/
17278
17279 S3 SAVAGE FRAMEBUFFER DRIVER
17280 M:      Antonino Daplas <adaplas@gmail.com>
17281 L:      linux-fbdev@vger.kernel.org
17282 S:      Maintained
17283 F:      drivers/video/fbdev/savage/
17284
17285 S390
17286 M:      Heiko Carstens <hca@linux.ibm.com>
17287 M:      Vasily Gorbik <gor@linux.ibm.com>
17288 M:      Alexander Gordeev <agordeev@linux.ibm.com>
17289 R:      Christian Borntraeger <borntraeger@linux.ibm.com>
17290 R:      Sven Schnelle <svens@linux.ibm.com>
17291 L:      linux-s390@vger.kernel.org
17292 S:      Supported
17293 W:      http://www.ibm.com/developerworks/linux/linux390/
17294 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux.git
17295 F:      Documentation/driver-api/s390-drivers.rst
17296 F:      Documentation/s390/
17297 F:      arch/s390/
17298 F:      drivers/s390/
17299
17300 S390 COMMON I/O LAYER
17301 M:      Vineeth Vijayan <vneethv@linux.ibm.com>
17302 M:      Peter Oberparleiter <oberpar@linux.ibm.com>
17303 L:      linux-s390@vger.kernel.org
17304 S:      Supported
17305 W:      http://www.ibm.com/developerworks/linux/linux390/
17306 F:      drivers/s390/cio/
17307
17308 S390 DASD DRIVER
17309 M:      Stefan Haberland <sth@linux.ibm.com>
17310 M:      Jan Hoeppner <hoeppner@linux.ibm.com>
17311 L:      linux-s390@vger.kernel.org
17312 S:      Supported
17313 W:      http://www.ibm.com/developerworks/linux/linux390/
17314 F:      block/partitions/ibm.c
17315 F:      drivers/s390/block/dasd*
17316 F:      include/linux/dasd_mod.h
17317
17318 S390 IOMMU (PCI)
17319 M:      Matthew Rosato <mjrosato@linux.ibm.com>
17320 M:      Gerald Schaefer <gerald.schaefer@linux.ibm.com>
17321 L:      linux-s390@vger.kernel.org
17322 S:      Supported
17323 W:      http://www.ibm.com/developerworks/linux/linux390/
17324 F:      drivers/iommu/s390-iommu.c
17325
17326 S390 IUCV NETWORK LAYER
17327 M:      Alexandra Winter <wintera@linux.ibm.com>
17328 M:      Wenjia Zhang <wenjia@linux.ibm.com>
17329 L:      linux-s390@vger.kernel.org
17330 L:      netdev@vger.kernel.org
17331 S:      Supported
17332 W:      http://www.ibm.com/developerworks/linux/linux390/
17333 F:      drivers/s390/net/*iucv*
17334 F:      include/net/iucv/
17335 F:      net/iucv/
17336
17337 S390 NETWORK DRIVERS
17338 M:      Alexandra Winter <wintera@linux.ibm.com>
17339 M:      Wenjia Zhang <wenjia@linux.ibm.com>
17340 L:      linux-s390@vger.kernel.org
17341 L:      netdev@vger.kernel.org
17342 S:      Supported
17343 W:      http://www.ibm.com/developerworks/linux/linux390/
17344 F:      drivers/s390/net/
17345
17346 S390 PCI SUBSYSTEM
17347 M:      Niklas Schnelle <schnelle@linux.ibm.com>
17348 M:      Gerald Schaefer <gerald.schaefer@linux.ibm.com>
17349 L:      linux-s390@vger.kernel.org
17350 S:      Supported
17351 W:      http://www.ibm.com/developerworks/linux/linux390/
17352 F:      arch/s390/pci/
17353 F:      drivers/pci/hotplug/s390_pci_hpc.c
17354 F:      Documentation/s390/pci.rst
17355
17356 S390 VFIO AP DRIVER
17357 M:      Tony Krowiak <akrowiak@linux.ibm.com>
17358 M:      Halil Pasic <pasic@linux.ibm.com>
17359 M:      Jason Herne <jjherne@linux.ibm.com>
17360 L:      linux-s390@vger.kernel.org
17361 S:      Supported
17362 W:      http://www.ibm.com/developerworks/linux/linux390/
17363 F:      Documentation/s390/vfio-ap.rst
17364 F:      drivers/s390/crypto/vfio_ap*
17365
17366 S390 VFIO-CCW DRIVER
17367 M:      Eric Farman <farman@linux.ibm.com>
17368 M:      Matthew Rosato <mjrosato@linux.ibm.com>
17369 R:      Halil Pasic <pasic@linux.ibm.com>
17370 L:      linux-s390@vger.kernel.org
17371 L:      kvm@vger.kernel.org
17372 S:      Supported
17373 F:      Documentation/s390/vfio-ccw.rst
17374 F:      drivers/s390/cio/vfio_ccw*
17375 F:      include/uapi/linux/vfio_ccw.h
17376
17377 S390 VFIO-PCI DRIVER
17378 M:      Matthew Rosato <mjrosato@linux.ibm.com>
17379 M:      Eric Farman <farman@linux.ibm.com>
17380 L:      linux-s390@vger.kernel.org
17381 L:      kvm@vger.kernel.org
17382 S:      Supported
17383 F:      drivers/vfio/pci/vfio_pci_zdev.c
17384 F:      include/uapi/linux/vfio_zdev.h
17385
17386 S390 ZCRYPT DRIVER
17387 M:      Harald Freudenberger <freude@linux.ibm.com>
17388 L:      linux-s390@vger.kernel.org
17389 S:      Supported
17390 W:      http://www.ibm.com/developerworks/linux/linux390/
17391 F:      drivers/s390/crypto/
17392
17393 S390 ZFCP DRIVER
17394 M:      Steffen Maier <maier@linux.ibm.com>
17395 M:      Benjamin Block <bblock@linux.ibm.com>
17396 L:      linux-s390@vger.kernel.org
17397 S:      Supported
17398 W:      http://www.ibm.com/developerworks/linux/linux390/
17399 F:      drivers/s390/scsi/zfcp_*
17400
17401 S3C ADC BATTERY DRIVER
17402 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
17403 L:      linux-samsung-soc@vger.kernel.org
17404 S:      Odd Fixes
17405 F:      drivers/power/supply/s3c_adc_battery.c
17406 F:      include/linux/s3c_adc_battery.h
17407
17408 S3C24XX SD/MMC Driver
17409 M:      Ben Dooks <ben-linux@fluff.org>
17410 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
17411 S:      Supported
17412 F:      drivers/mmc/host/s3cmci.*
17413
17414 SAA6588 RDS RECEIVER DRIVER
17415 M:      Hans Verkuil <hverkuil@xs4all.nl>
17416 L:      linux-media@vger.kernel.org
17417 S:      Odd Fixes
17418 W:      https://linuxtv.org
17419 T:      git git://linuxtv.org/media_tree.git
17420 F:      drivers/media/i2c/saa6588*
17421
17422 SAA7134 VIDEO4LINUX DRIVER
17423 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
17424 L:      linux-media@vger.kernel.org
17425 S:      Odd fixes
17426 W:      https://linuxtv.org
17427 T:      git git://linuxtv.org/media_tree.git
17428 F:      Documentation/driver-api/media/drivers/saa7134*
17429 F:      drivers/media/pci/saa7134/
17430
17431 SAA7146 VIDEO4LINUX-2 DRIVER
17432 M:      Hans Verkuil <hverkuil@xs4all.nl>
17433 L:      linux-media@vger.kernel.org
17434 S:      Maintained
17435 T:      git git://linuxtv.org/media_tree.git
17436 F:      drivers/media/common/saa7146/
17437 F:      drivers/media/pci/saa7146/
17438 F:      include/media/drv-intf/saa7146*
17439
17440 SAFESETID SECURITY MODULE
17441 M:      Micah Morton <mortonm@chromium.org>
17442 S:      Supported
17443 F:      Documentation/admin-guide/LSM/SafeSetID.rst
17444 F:      security/safesetid/
17445
17446 SAMSUNG AUDIO (ASoC) DRIVERS
17447 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
17448 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
17449 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17450 S:      Supported
17451 B:      mailto:linux-samsung-soc@vger.kernel.org
17452 F:      Documentation/devicetree/bindings/sound/samsung*
17453 F:      sound/soc/samsung/
17454
17455 SAMSUNG EXYNOS PSEUDO RANDOM NUMBER GENERATOR (RNG) DRIVER
17456 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
17457 L:      linux-crypto@vger.kernel.org
17458 L:      linux-samsung-soc@vger.kernel.org
17459 S:      Maintained
17460 F:      Documentation/devicetree/bindings/rng/samsung,exynos4-rng.yaml
17461 F:      drivers/crypto/exynos-rng.c
17462
17463 SAMSUNG EXYNOS TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
17464 M:      Łukasz Stelmach <l.stelmach@samsung.com>
17465 L:      linux-samsung-soc@vger.kernel.org
17466 S:      Maintained
17467 F:      Documentation/devicetree/bindings/rng/samsung,exynos5250-trng.yaml
17468 F:      drivers/char/hw_random/exynos-trng.c
17469
17470 SAMSUNG FRAMEBUFFER DRIVER
17471 M:      Jingoo Han <jingoohan1@gmail.com>
17472 L:      linux-fbdev@vger.kernel.org
17473 S:      Maintained
17474 F:      drivers/video/fbdev/s3c-fb.c
17475
17476 SAMSUNG INTERCONNECT DRIVERS
17477 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
17478 M:      Artur Świgoń <a.swigon@samsung.com>
17479 L:      linux-pm@vger.kernel.org
17480 L:      linux-samsung-soc@vger.kernel.org
17481 S:      Supported
17482 F:      drivers/interconnect/samsung/
17483
17484 SAMSUNG LAPTOP DRIVER
17485 M:      Corentin Chary <corentin.chary@gmail.com>
17486 L:      platform-driver-x86@vger.kernel.org
17487 S:      Maintained
17488 F:      drivers/platform/x86/samsung-laptop.c
17489
17490 SAMSUNG MULTIFUNCTION PMIC DEVICE DRIVERS
17491 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
17492 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
17493 L:      linux-kernel@vger.kernel.org
17494 L:      linux-samsung-soc@vger.kernel.org
17495 S:      Supported
17496 B:      mailto:linux-samsung-soc@vger.kernel.org
17497 F:      Documentation/devicetree/bindings/clock/samsung,s2mps11.yaml
17498 F:      Documentation/devicetree/bindings/mfd/samsung,s2m*.yaml
17499 F:      Documentation/devicetree/bindings/mfd/samsung,s5m*.yaml
17500 F:      Documentation/devicetree/bindings/regulator/samsung,s2m*.yaml
17501 F:      Documentation/devicetree/bindings/regulator/samsung,s5m*.yaml
17502 F:      drivers/clk/clk-s2mps11.c
17503 F:      drivers/mfd/sec*.c
17504 F:      drivers/regulator/s2m*.c
17505 F:      drivers/regulator/s5m*.c
17506 F:      drivers/rtc/rtc-s5m.c
17507 F:      include/linux/mfd/samsung/
17508
17509 SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
17510 M:      Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
17511 L:      linux-media@vger.kernel.org
17512 L:      linux-samsung-soc@vger.kernel.org
17513 S:      Maintained
17514 F:      drivers/media/platform/samsung/s3c-camif/
17515 F:      include/media/drv-intf/s3c_camif.h
17516
17517 SAMSUNG S3FWRN5 NFC DRIVER
17518 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
17519 M:      Krzysztof Opasiak <k.opasiak@samsung.com>
17520 L:      linux-nfc@lists.01.org (subscribers-only)
17521 S:      Maintained
17522 F:      Documentation/devicetree/bindings/net/nfc/samsung,s3fwrn5.yaml
17523 F:      drivers/nfc/s3fwrn5
17524
17525 SAMSUNG S5C73M3 CAMERA DRIVER
17526 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
17527 M:      Andrzej Hajda <andrzej.hajda@intel.com>
17528 L:      linux-media@vger.kernel.org
17529 S:      Supported
17530 F:      drivers/media/i2c/s5c73m3/*
17531
17532 SAMSUNG S5K5BAF CAMERA DRIVER
17533 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
17534 M:      Andrzej Hajda <andrzej.hajda@intel.com>
17535 L:      linux-media@vger.kernel.org
17536 S:      Supported
17537 F:      drivers/media/i2c/s5k5baf.c
17538
17539 SAMSUNG S5P Security SubSystem (SSS) DRIVER
17540 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
17541 M:      Vladimir Zapolskiy <vz@mleia.com>
17542 L:      linux-crypto@vger.kernel.org
17543 L:      linux-samsung-soc@vger.kernel.org
17544 S:      Maintained
17545 F:      Documentation/devicetree/bindings/crypto/samsung-slimsss.yaml
17546 F:      Documentation/devicetree/bindings/crypto/samsung-sss.yaml
17547 F:      drivers/crypto/s5p-sss.c
17548
17549 SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS
17550 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
17551 L:      linux-media@vger.kernel.org
17552 S:      Supported
17553 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
17554 F:      drivers/media/platform/samsung/exynos4-is/
17555
17556 SAMSUNG SOC CLOCK DRIVERS
17557 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
17558 M:      Tomasz Figa <tomasz.figa@gmail.com>
17559 M:      Chanwoo Choi <cw00.choi@samsung.com>
17560 R:      Alim Akhtar <alim.akhtar@samsung.com>
17561 L:      linux-samsung-soc@vger.kernel.org
17562 S:      Supported
17563 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/snawrocki/clk.git
17564 F:      Documentation/devicetree/bindings/clock/samsung,*.yaml
17565 F:      Documentation/devicetree/bindings/clock/samsung,s3c*
17566 F:      drivers/clk/samsung/
17567 F:      include/dt-bindings/clock/exynos*.h
17568 F:      include/dt-bindings/clock/s3c*.h
17569 F:      include/dt-bindings/clock/s5p*.h
17570 F:      include/dt-bindings/clock/samsung,*.h
17571 F:      include/linux/clk/samsung.h
17572 F:      include/linux/platform_data/clk-s3c2410.h
17573
17574 SAMSUNG SPI DRIVERS
17575 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
17576 M:      Andi Shyti <andi@etezian.org>
17577 L:      linux-spi@vger.kernel.org
17578 L:      linux-samsung-soc@vger.kernel.org
17579 S:      Maintained
17580 F:      Documentation/devicetree/bindings/spi/samsung,spi*.yaml
17581 F:      drivers/spi/spi-s3c*
17582 F:      include/linux/platform_data/spi-s3c64xx.h
17583 F:      include/linux/spi/s3c24xx-fiq.h
17584
17585 SAMSUNG SXGBE DRIVERS
17586 M:      Byungho An <bh74.an@samsung.com>
17587 L:      netdev@vger.kernel.org
17588 S:      Supported
17589 F:      drivers/net/ethernet/samsung/sxgbe/
17590
17591 SAMSUNG THERMAL DRIVER
17592 M:      Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
17593 M:      Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
17594 L:      linux-pm@vger.kernel.org
17595 L:      linux-samsung-soc@vger.kernel.org
17596 S:      Maintained
17597 F:      Documentation/devicetree/bindings/thermal/samsung,exynos-thermal.yaml
17598 F:      drivers/thermal/samsung/
17599
17600 SAMSUNG USB2 PHY DRIVER
17601 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
17602 L:      linux-kernel@vger.kernel.org
17603 S:      Supported
17604 F:      Documentation/devicetree/bindings/phy/samsung,usb2-phy.yaml
17605 F:      Documentation/driver-api/phy/samsung-usb2.rst
17606 F:      drivers/phy/samsung/phy-exynos4210-usb2.c
17607 F:      drivers/phy/samsung/phy-exynos4x12-usb2.c
17608 F:      drivers/phy/samsung/phy-exynos5250-usb2.c
17609 F:      drivers/phy/samsung/phy-s5pv210-usb2.c
17610 F:      drivers/phy/samsung/phy-samsung-usb2.c
17611 F:      drivers/phy/samsung/phy-samsung-usb2.h
17612
17613 SANCLOUD BEAGLEBONE ENHANCED DEVICE TREE
17614 M:      Paul Barker <paul.barker@sancloud.com>
17615 R:      Marc Murphy <marc.murphy@sancloud.com>
17616 S:      Supported
17617 F:      arch/arm/boot/dts/am335x-sancloud*
17618
17619 SC1200 WDT DRIVER
17620 M:      Zwane Mwaikambo <zwanem@gmail.com>
17621 S:      Maintained
17622 F:      drivers/watchdog/sc1200wdt.c
17623
17624 SCHEDULER
17625 M:      Ingo Molnar <mingo@redhat.com>
17626 M:      Peter Zijlstra <peterz@infradead.org>
17627 M:      Juri Lelli <juri.lelli@redhat.com> (SCHED_DEADLINE)
17628 M:      Vincent Guittot <vincent.guittot@linaro.org> (SCHED_NORMAL)
17629 R:      Dietmar Eggemann <dietmar.eggemann@arm.com> (SCHED_NORMAL)
17630 R:      Steven Rostedt <rostedt@goodmis.org> (SCHED_FIFO/SCHED_RR)
17631 R:      Ben Segall <bsegall@google.com> (CONFIG_CFS_BANDWIDTH)
17632 R:      Mel Gorman <mgorman@suse.de> (CONFIG_NUMA_BALANCING)
17633 R:      Daniel Bristot de Oliveira <bristot@redhat.com> (SCHED_DEADLINE)
17634 R:      Valentin Schneider <vschneid@redhat.com> (TOPOLOGY)
17635 L:      linux-kernel@vger.kernel.org
17636 S:      Maintained
17637 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
17638 F:      include/linux/preempt.h
17639 F:      include/linux/sched.h
17640 F:      include/linux/wait.h
17641 F:      include/uapi/linux/sched.h
17642 F:      kernel/sched/
17643
17644 SCR24X CHIP CARD INTERFACE DRIVER
17645 M:      Lubomir Rintel <lkundrak@v3.sk>
17646 S:      Supported
17647 F:      drivers/char/pcmcia/scr24x_cs.c
17648
17649 SCSI RDMA PROTOCOL (SRP) INITIATOR
17650 M:      Bart Van Assche <bvanassche@acm.org>
17651 L:      linux-rdma@vger.kernel.org
17652 S:      Supported
17653 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
17654 F:      drivers/infiniband/ulp/srp/
17655 F:      include/scsi/srp.h
17656
17657 SCSI RDMA PROTOCOL (SRP) TARGET
17658 M:      Bart Van Assche <bvanassche@acm.org>
17659 L:      linux-rdma@vger.kernel.org
17660 L:      target-devel@vger.kernel.org
17661 S:      Supported
17662 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
17663 F:      drivers/infiniband/ulp/srpt/
17664
17665 SCSI SG DRIVER
17666 M:      Doug Gilbert <dgilbert@interlog.com>
17667 L:      linux-scsi@vger.kernel.org
17668 S:      Maintained
17669 W:      http://sg.danny.cz/sg
17670 F:      Documentation/scsi/scsi-generic.rst
17671 F:      drivers/scsi/sg.c
17672 F:      include/scsi/sg.h
17673
17674 SCSI SUBSYSTEM
17675 M:      "James E.J. Bottomley" <jejb@linux.ibm.com>
17676 M:      "Martin K. Petersen" <martin.petersen@oracle.com>
17677 L:      linux-scsi@vger.kernel.org
17678 S:      Maintained
17679 Q:      https://patchwork.kernel.org/project/linux-scsi/list/
17680 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git
17681 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
17682 F:      Documentation/devicetree/bindings/scsi/
17683 F:      drivers/scsi/
17684 F:      include/scsi/
17685
17686 SCSI TAPE DRIVER
17687 M:      Kai Mäkisara <Kai.Makisara@kolumbus.fi>
17688 L:      linux-scsi@vger.kernel.org
17689 S:      Maintained
17690 F:      Documentation/scsi/st.rst
17691 F:      drivers/scsi/st.*
17692 F:      drivers/scsi/st_*.h
17693
17694 SCSI TARGET CORE USER DRIVER
17695 M:      Bodo Stroesser <bostroesser@gmail.com>
17696 L:      linux-scsi@vger.kernel.org
17697 L:      target-devel@vger.kernel.org
17698 S:      Supported
17699 F:      Documentation/target/tcmu-design.rst
17700 F:      drivers/target/target_core_user.c
17701 F:      include/uapi/linux/target_core_user.h
17702
17703 SCSI TARGET SUBSYSTEM
17704 M:      "Martin K. Petersen" <martin.petersen@oracle.com>
17705 L:      linux-scsi@vger.kernel.org
17706 L:      target-devel@vger.kernel.org
17707 S:      Supported
17708 W:      http://www.linux-iscsi.org
17709 Q:      https://patchwork.kernel.org/project/target-devel/list/
17710 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
17711 F:      Documentation/target/
17712 F:      drivers/target/
17713 F:      include/target/
17714
17715 SCTP PROTOCOL
17716 M:      Vlad Yasevich <vyasevich@gmail.com>
17717 M:      Neil Horman <nhorman@tuxdriver.com>
17718 M:      Marcelo Ricardo Leitner <marcelo.leitner@gmail.com>
17719 L:      linux-sctp@vger.kernel.org
17720 S:      Maintained
17721 W:      http://lksctp.sourceforge.net
17722 F:      Documentation/networking/sctp.rst
17723 F:      include/linux/sctp.h
17724 F:      include/net/sctp/
17725 F:      include/uapi/linux/sctp.h
17726 F:      net/sctp/
17727
17728 SCx200 CPU SUPPORT
17729 M:      Jim Cromie <jim.cromie@gmail.com>
17730 S:      Odd Fixes
17731 F:      Documentation/i2c/busses/scx200_acb.rst
17732 F:      arch/x86/platform/scx200/
17733 F:      drivers/i2c/busses/scx200*
17734 F:      drivers/mtd/maps/scx200_docflash.c
17735 F:      drivers/watchdog/scx200_wdt.c
17736 F:      include/linux/scx200.h
17737
17738 SCx200 GPIO DRIVER
17739 M:      Jim Cromie <jim.cromie@gmail.com>
17740 S:      Maintained
17741 F:      drivers/char/scx200_gpio.c
17742 F:      include/linux/scx200_gpio.h
17743
17744 SCx200 HRT CLOCKSOURCE DRIVER
17745 M:      Jim Cromie <jim.cromie@gmail.com>
17746 S:      Maintained
17747 F:      drivers/clocksource/scx200_hrt.c
17748
17749 SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
17750 M:      Sascha Sommer <saschasommer@freenet.de>
17751 L:      sdricohcs-devel@lists.sourceforge.net (subscribers-only)
17752 S:      Maintained
17753 F:      drivers/mmc/host/sdricoh_cs.c
17754
17755 SECO BOARDS CEC DRIVER
17756 M:      Ettore Chimenti <ek5.chimenti@gmail.com>
17757 S:      Maintained
17758 F:      drivers/media/cec/platform/seco/seco-cec.c
17759 F:      drivers/media/cec/platform/seco/seco-cec.h
17760
17761 SECURE COMPUTING
17762 M:      Kees Cook <keescook@chromium.org>
17763 R:      Andy Lutomirski <luto@amacapital.net>
17764 R:      Will Drewry <wad@chromium.org>
17765 S:      Supported
17766 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git seccomp
17767 F:      Documentation/userspace-api/seccomp_filter.rst
17768 F:      include/linux/seccomp.h
17769 F:      include/uapi/linux/seccomp.h
17770 F:      kernel/seccomp.c
17771 F:      tools/testing/selftests/kselftest_harness.h
17772 F:      tools/testing/selftests/seccomp/*
17773 K:      \bsecure_computing
17774 K:      \bTIF_SECCOMP\b
17775
17776 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) Broadcom BRCMSTB DRIVER
17777 M:      Al Cooper <alcooperx@gmail.com>
17778 R:      Broadcom Kernel Team <bcm-kernel-feedback-list@broadcom.com>
17779 L:      linux-mmc@vger.kernel.org
17780 S:      Maintained
17781 F:      drivers/mmc/host/sdhci-brcmstb*
17782
17783 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
17784 M:      Adrian Hunter <adrian.hunter@intel.com>
17785 L:      linux-mmc@vger.kernel.org
17786 S:      Maintained
17787 F:      drivers/mmc/host/sdhci*
17788
17789 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) MICROCHIP DRIVER
17790 M:      Eugen Hristev <eugen.hristev@microchip.com>
17791 L:      linux-mmc@vger.kernel.org
17792 S:      Supported
17793 F:      drivers/mmc/host/sdhci-of-at91.c
17794
17795 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
17796 M:      Ben Dooks <ben-linux@fluff.org>
17797 M:      Jaehoon Chung <jh80.chung@samsung.com>
17798 L:      linux-mmc@vger.kernel.org
17799 S:      Maintained
17800 F:      drivers/mmc/host/sdhci-s3c*
17801
17802 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
17803 M:      Viresh Kumar <vireshk@kernel.org>
17804 L:      linux-mmc@vger.kernel.org
17805 S:      Maintained
17806 F:      drivers/mmc/host/sdhci-spear.c
17807
17808 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) TI OMAP DRIVER
17809 M:      Kishon Vijay Abraham I <kishon@ti.com>
17810 L:      linux-mmc@vger.kernel.org
17811 S:      Maintained
17812 F:      drivers/mmc/host/sdhci-omap.c
17813
17814 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) NXP i.MX DRIVER
17815 M:      Haibo Chen <haibo.chen@nxp.com>
17816 L:      linux-imx@nxp.com
17817 L:      linux-mmc@vger.kernel.org
17818 S:      Maintained
17819 F:      drivers/mmc/host/sdhci-esdhc-imx.c
17820
17821 SECURE ENCRYPTING DEVICE (SED) OPAL DRIVER
17822 M:      Jonathan Derrick <jonathan.derrick@intel.com>
17823 M:      Revanth Rajashekar <revanth.rajashekar@intel.com>
17824 L:      linux-block@vger.kernel.org
17825 S:      Supported
17826 F:      block/opal_proto.h
17827 F:      block/sed*
17828 F:      include/linux/sed*
17829 F:      include/uapi/linux/sed*
17830
17831 SECURITY CONTACT
17832 M:      Security Officers <security@kernel.org>
17833 S:      Supported
17834 F:      Documentation/admin-guide/security-bugs.rst
17835
17836 SECURITY SUBSYSTEM
17837 M:      James Morris <jmorris@namei.org>
17838 M:      "Serge E. Hallyn" <serge@hallyn.com>
17839 L:      linux-security-module@vger.kernel.org (suggested Cc:)
17840 S:      Supported
17841 W:      http://kernsec.org/
17842 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
17843 F:      security/
17844 X:      security/selinux/
17845
17846 SELINUX SECURITY MODULE
17847 M:      Paul Moore <paul@paul-moore.com>
17848 M:      Stephen Smalley <stephen.smalley.work@gmail.com>
17849 M:      Eric Paris <eparis@parisplace.org>
17850 L:      selinux@vger.kernel.org
17851 S:      Supported
17852 W:      https://selinuxproject.org
17853 W:      https://github.com/SELinuxProject
17854 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/selinux.git
17855 F:      Documentation/ABI/obsolete/sysfs-selinux-checkreqprot
17856 F:      Documentation/ABI/obsolete/sysfs-selinux-disable
17857 F:      Documentation/admin-guide/LSM/SELinux.rst
17858 F:      include/trace/events/avc.h
17859 F:      include/uapi/linux/selinux_netlink.h
17860 F:      scripts/selinux/
17861 F:      security/selinux/
17862
17863 SENSABLE PHANTOM
17864 M:      Jiri Slaby <jirislaby@kernel.org>
17865 S:      Maintained
17866 F:      drivers/misc/phantom.c
17867 F:      include/uapi/linux/phantom.h
17868
17869 SENSEAIR SUNRISE 006-0-0007
17870 M:      Jacopo Mondi <jacopo@jmondi.org>
17871 S:      Maintained
17872 F:      Documentation/ABI/testing/sysfs-bus-iio-chemical-sunrise-co2
17873 F:      Documentation/devicetree/bindings/iio/chemical/senseair,sunrise.yaml
17874 F:      drivers/iio/chemical/sunrise_co2.c
17875
17876 SENSIRION SCD30 CARBON DIOXIDE SENSOR DRIVER
17877 M:      Tomasz Duszynski <tomasz.duszynski@octakon.com>
17878 S:      Maintained
17879 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,scd30.yaml
17880 F:      drivers/iio/chemical/scd30.h
17881 F:      drivers/iio/chemical/scd30_core.c
17882 F:      drivers/iio/chemical/scd30_i2c.c
17883 F:      drivers/iio/chemical/scd30_serial.c
17884
17885 SENSIRION SCD4X CARBON DIOXIDE SENSOR DRIVER
17886 M:      Roan van Dijk <roan@protonic.nl>
17887 S:      Maintained
17888 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,scd4x.yaml
17889 F:      drivers/iio/chemical/scd4x.c
17890
17891 SENSIRION SGP40 GAS SENSOR DRIVER
17892 M:      Andreas Klinger <ak@it-klinger.de>
17893 S:      Maintained
17894 F:      Documentation/ABI/testing/sysfs-bus-iio-chemical-sgp40
17895 F:      drivers/iio/chemical/sgp40.c
17896
17897 SENSIRION SPS30 AIR POLLUTION SENSOR DRIVER
17898 M:      Tomasz Duszynski <tduszyns@gmail.com>
17899 S:      Maintained
17900 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,sps30.yaml
17901 F:      drivers/iio/chemical/sps30.c
17902 F:      drivers/iio/chemical/sps30_i2c.c
17903 F:      drivers/iio/chemical/sps30_serial.c
17904
17905 SERIAL DEVICE BUS
17906 M:      Rob Herring <robh@kernel.org>
17907 L:      linux-serial@vger.kernel.org
17908 S:      Maintained
17909 F:      Documentation/devicetree/bindings/serial/serial.yaml
17910 F:      drivers/tty/serdev/
17911 F:      include/linux/serdev.h
17912
17913 SERIAL DRIVERS
17914 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
17915 L:      linux-serial@vger.kernel.org
17916 S:      Maintained
17917 F:      Documentation/devicetree/bindings/serial/
17918 F:      drivers/tty/serial/
17919
17920 SERIAL IR RECEIVER
17921 M:      Sean Young <sean@mess.org>
17922 L:      linux-media@vger.kernel.org
17923 S:      Maintained
17924 F:      drivers/media/rc/serial_ir.c
17925
17926 SERIAL LOW-POWER INTER-CHIP MEDIA BUS (SLIMbus)
17927 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
17928 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17929 S:      Maintained
17930 F:      Documentation/devicetree/bindings/slimbus/
17931 F:      drivers/slimbus/
17932 F:      include/linux/slimbus.h
17933
17934 SFC NETWORK DRIVER
17935 M:      Edward Cree <ecree.xilinx@gmail.com>
17936 M:      Martin Habets <habetsm.xilinx@gmail.com>
17937 L:      netdev@vger.kernel.org
17938 S:      Supported
17939 F:      drivers/net/ethernet/sfc/
17940
17941 SFF/SFP/SFP+ MODULE SUPPORT
17942 M:      Russell King <linux@armlinux.org.uk>
17943 L:      netdev@vger.kernel.org
17944 S:      Maintained
17945 F:      drivers/net/phy/phylink.c
17946 F:      drivers/net/phy/sfp*
17947 F:      include/linux/mdio/mdio-i2c.h
17948 F:      include/linux/phylink.h
17949 F:      include/linux/sfp.h
17950 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)
17951
17952 SGI GRU DRIVER
17953 M:      Dimitri Sivanich <dimitri.sivanich@hpe.com>
17954 S:      Maintained
17955 F:      drivers/misc/sgi-gru/
17956
17957 SGI XP/XPC/XPNET DRIVER
17958 M:      Robin Holt <robinmholt@gmail.com>
17959 M:      Steve Wahl <steve.wahl@hpe.com>
17960 R:      Mike Travis <mike.travis@hpe.com>
17961 S:      Maintained
17962 F:      drivers/misc/sgi-xp/
17963
17964 SHARED MEMORY COMMUNICATIONS (SMC) SOCKETS
17965 M:      Karsten Graul <kgraul@linux.ibm.com>
17966 L:      linux-s390@vger.kernel.org
17967 S:      Supported
17968 W:      http://www.ibm.com/developerworks/linux/linux390/
17969 F:      net/smc/
17970
17971 SHARP GP2AP002A00F/GP2AP002S00F SENSOR DRIVER
17972 M:      Linus Walleij <linus.walleij@linaro.org>
17973 L:      linux-iio@vger.kernel.org
17974 S:      Maintained
17975 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
17976 F:      Documentation/devicetree/bindings/iio/light/sharp,gp2ap002.yaml
17977 F:      drivers/iio/light/gp2ap002.c
17978
17979 SHARP RJ54N1CB0C SENSOR DRIVER
17980 M:      Jacopo Mondi <jacopo@jmondi.org>
17981 L:      linux-media@vger.kernel.org
17982 S:      Odd fixes
17983 T:      git git://linuxtv.org/media_tree.git
17984 F:      drivers/media/i2c/rj54n1cb0c.c
17985 F:      include/media/i2c/rj54n1cb0c.h
17986
17987 SH_VOU V4L2 OUTPUT DRIVER
17988 L:      linux-media@vger.kernel.org
17989 S:      Orphan
17990 F:      drivers/media/platform/renesas/sh_vou.c
17991 F:      include/media/drv-intf/sh_vou.h
17992
17993 SI2157 MEDIA DRIVER
17994 M:      Antti Palosaari <crope@iki.fi>
17995 L:      linux-media@vger.kernel.org
17996 S:      Maintained
17997 W:      https://linuxtv.org
17998 W:      http://palosaari.fi/linux/
17999 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18000 T:      git git://linuxtv.org/anttip/media_tree.git
18001 F:      drivers/media/tuners/si2157*
18002
18003 SI2165 MEDIA DRIVER
18004 M:      Matthias Schwarzott <zzam@gentoo.org>
18005 L:      linux-media@vger.kernel.org
18006 S:      Maintained
18007 W:      https://linuxtv.org
18008 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18009 F:      drivers/media/dvb-frontends/si2165*
18010
18011 SI2168 MEDIA DRIVER
18012 M:      Antti Palosaari <crope@iki.fi>
18013 L:      linux-media@vger.kernel.org
18014 S:      Maintained
18015 W:      https://linuxtv.org
18016 W:      http://palosaari.fi/linux/
18017 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18018 T:      git git://linuxtv.org/anttip/media_tree.git
18019 F:      drivers/media/dvb-frontends/si2168*
18020
18021 SI470X FM RADIO RECEIVER I2C DRIVER
18022 M:      Hans Verkuil <hverkuil@xs4all.nl>
18023 L:      linux-media@vger.kernel.org
18024 S:      Odd Fixes
18025 W:      https://linuxtv.org
18026 T:      git git://linuxtv.org/media_tree.git
18027 F:      drivers/media/radio/si470x/radio-si470x-i2c.c
18028
18029 SI470X FM RADIO RECEIVER USB DRIVER
18030 M:      Hans Verkuil <hverkuil@xs4all.nl>
18031 L:      linux-media@vger.kernel.org
18032 S:      Maintained
18033 W:      https://linuxtv.org
18034 T:      git git://linuxtv.org/media_tree.git
18035 F:      drivers/media/radio/si470x/radio-si470x-common.c
18036 F:      drivers/media/radio/si470x/radio-si470x-usb.c
18037 F:      drivers/media/radio/si470x/radio-si470x.h
18038
18039 SI4713 FM RADIO TRANSMITTER I2C DRIVER
18040 M:      Eduardo Valentin <edubezval@gmail.com>
18041 L:      linux-media@vger.kernel.org
18042 S:      Odd Fixes
18043 W:      https://linuxtv.org
18044 T:      git git://linuxtv.org/media_tree.git
18045 F:      drivers/media/radio/si4713/si4713.?
18046
18047 SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
18048 M:      Eduardo Valentin <edubezval@gmail.com>
18049 L:      linux-media@vger.kernel.org
18050 S:      Odd Fixes
18051 W:      https://linuxtv.org
18052 T:      git git://linuxtv.org/media_tree.git
18053 F:      drivers/media/radio/si4713/radio-platform-si4713.c
18054
18055 SI4713 FM RADIO TRANSMITTER USB DRIVER
18056 M:      Hans Verkuil <hverkuil@xs4all.nl>
18057 L:      linux-media@vger.kernel.org
18058 S:      Maintained
18059 W:      https://linuxtv.org
18060 T:      git git://linuxtv.org/media_tree.git
18061 F:      drivers/media/radio/si4713/radio-usb-si4713.c
18062
18063 SIANO DVB DRIVER
18064 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
18065 L:      linux-media@vger.kernel.org
18066 S:      Odd fixes
18067 W:      https://linuxtv.org
18068 T:      git git://linuxtv.org/media_tree.git
18069 F:      drivers/media/common/siano/
18070 F:      drivers/media/mmc/siano/
18071 F:      drivers/media/usb/siano/
18072 F:      drivers/media/usb/siano/
18073
18074 SIFIVE DRIVERS
18075 M:      Palmer Dabbelt <palmer@dabbelt.com>
18076 M:      Paul Walmsley <paul.walmsley@sifive.com>
18077 L:      linux-riscv@lists.infradead.org
18078 S:      Supported
18079 T:      git git://github.com/sifive/riscv-linux.git
18080 N:      sifive
18081 K:      [^@]sifive
18082
18083 SIFIVE FU540 SYSTEM-ON-CHIP
18084 M:      Paul Walmsley <paul.walmsley@sifive.com>
18085 M:      Palmer Dabbelt <palmer@dabbelt.com>
18086 L:      linux-riscv@lists.infradead.org
18087 S:      Supported
18088 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pjw/sifive.git
18089 N:      fu540
18090 K:      fu540
18091
18092 SIFIVE PDMA DRIVER
18093 M:      Green Wan <green.wan@sifive.com>
18094 S:      Maintained
18095 F:      Documentation/devicetree/bindings/dma/sifive,fu540-c000-pdma.yaml
18096 F:      drivers/dma/sf-pdma/
18097
18098 SILEAD TOUCHSCREEN DRIVER
18099 M:      Hans de Goede <hdegoede@redhat.com>
18100 L:      linux-input@vger.kernel.org
18101 L:      platform-driver-x86@vger.kernel.org
18102 S:      Maintained
18103 F:      drivers/input/touchscreen/silead.c
18104 F:      drivers/platform/x86/touchscreen_dmi.c
18105
18106 SILICON LABS WIRELESS DRIVERS (for WFxxx series)
18107 M:      Jérôme Pouiller <jerome.pouiller@silabs.com>
18108 S:      Supported
18109 F:      Documentation/devicetree/bindings/net/wireless/silabs,wfx.yaml
18110 F:      drivers/net/wireless/silabs/wfx/
18111
18112 SILICON MOTION SM712 FRAME BUFFER DRIVER
18113 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
18114 M:      Teddy Wang <teddy.wang@siliconmotion.com>
18115 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
18116 L:      linux-fbdev@vger.kernel.org
18117 S:      Maintained
18118 F:      Documentation/fb/sm712fb.rst
18119 F:      drivers/video/fbdev/sm712*
18120
18121 SILVACO I3C DUAL-ROLE MASTER
18122 M:      Miquel Raynal <miquel.raynal@bootlin.com>
18123 M:      Conor Culhane <conor.culhane@silvaco.com>
18124 L:      linux-i3c@lists.infradead.org (moderated for non-subscribers)
18125 S:      Maintained
18126 F:      Documentation/devicetree/bindings/i3c/silvaco,i3c-master.yaml
18127 F:      drivers/i3c/master/svc-i3c-master.c
18128
18129 SIMPLEFB FB DRIVER
18130 M:      Hans de Goede <hdegoede@redhat.com>
18131 L:      linux-fbdev@vger.kernel.org
18132 S:      Maintained
18133 F:      Documentation/devicetree/bindings/display/simple-framebuffer.yaml
18134 F:      drivers/video/fbdev/simplefb.c
18135 F:      include/linux/platform_data/simplefb.h
18136
18137 SIMTEC EB110ATX (Chalice CATS)
18138 M:      Simtec Linux Team <linux@simtec.co.uk>
18139 S:      Supported
18140 W:      http://www.simtec.co.uk/products/EB110ATX/
18141
18142 SIMTEC EB2410ITX (BAST)
18143 M:      Simtec Linux Team <linux@simtec.co.uk>
18144 S:      Supported
18145 W:      http://www.simtec.co.uk/products/EB2410ITX/
18146 F:      arch/arm/mach-s3c/bast-ide.c
18147 F:      arch/arm/mach-s3c/bast-irq.c
18148 F:      arch/arm/mach-s3c/mach-bast.c
18149
18150 SIOX
18151 M:      Thorsten Scherer <t.scherer@eckelmann.de>
18152 M:      Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
18153 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
18154 S:      Supported
18155 F:      drivers/gpio/gpio-siox.c
18156 F:      drivers/siox/*
18157 F:      include/trace/events/siox.h
18158
18159 SIPHASH PRF ROUTINES
18160 M:      Jason A. Donenfeld <Jason@zx2c4.com>
18161 S:      Maintained
18162 F:      include/linux/siphash.h
18163 F:      lib/siphash.c
18164 F:      lib/test_siphash.c
18165
18166 SIS 190 ETHERNET DRIVER
18167 M:      Francois Romieu <romieu@fr.zoreil.com>
18168 L:      netdev@vger.kernel.org
18169 S:      Maintained
18170 F:      drivers/net/ethernet/sis/sis190.c
18171
18172 SIS 900/7016 FAST ETHERNET DRIVER
18173 M:      Daniele Venzano <venza@brownhat.org>
18174 L:      netdev@vger.kernel.org
18175 S:      Maintained
18176 W:      http://www.brownhat.org/sis900.html
18177 F:      drivers/net/ethernet/sis/sis900.*
18178
18179 SIS FRAMEBUFFER DRIVER
18180 M:      Thomas Winischhofer <thomas@winischhofer.net>
18181 S:      Maintained
18182 W:      http://www.winischhofer.net/linuxsisvga.shtml
18183 F:      Documentation/fb/sisfb.rst
18184 F:      drivers/video/fbdev/sis/
18185 F:      include/video/sisfb.h
18186
18187 SIS I2C TOUCHSCREEN DRIVER
18188 M:      Mika Penttilä <mika.penttila@nextfour.com>
18189 L:      linux-input@vger.kernel.org
18190 S:      Maintained
18191 F:      Documentation/devicetree/bindings/input/touchscreen/sis_i2c.txt
18192 F:      drivers/input/touchscreen/sis_i2c.c
18193
18194 SIS USB2VGA DRIVER
18195 M:      Thomas Winischhofer <thomas@winischhofer.net>
18196 S:      Maintained
18197 W:      http://www.winischhofer.at/linuxsisusbvga.shtml
18198 F:      drivers/usb/misc/sisusbvga/
18199
18200 SL28 CPLD MFD DRIVER
18201 M:      Michael Walle <michael@walle.cc>
18202 S:      Maintained
18203 F:      Documentation/devicetree/bindings/gpio/kontron,sl28cpld-gpio.yaml
18204 F:      Documentation/devicetree/bindings/hwmon/kontron,sl28cpld-hwmon.yaml
18205 F:      Documentation/devicetree/bindings/interrupt-controller/kontron,sl28cpld-intc.yaml
18206 F:      Documentation/devicetree/bindings/mfd/kontron,sl28cpld.yaml
18207 F:      Documentation/devicetree/bindings/pwm/kontron,sl28cpld-pwm.yaml
18208 F:      Documentation/devicetree/bindings/watchdog/kontron,sl28cpld-wdt.yaml
18209 F:      drivers/gpio/gpio-sl28cpld.c
18210 F:      drivers/hwmon/sl28cpld-hwmon.c
18211 F:      drivers/irqchip/irq-sl28cpld.c
18212 F:      drivers/pwm/pwm-sl28cpld.c
18213 F:      drivers/watchdog/sl28cpld_wdt.c
18214
18215 SLAB ALLOCATOR
18216 M:      Christoph Lameter <cl@linux.com>
18217 M:      Pekka Enberg <penberg@kernel.org>
18218 M:      David Rientjes <rientjes@google.com>
18219 M:      Joonsoo Kim <iamjoonsoo.kim@lge.com>
18220 M:      Andrew Morton <akpm@linux-foundation.org>
18221 M:      Vlastimil Babka <vbabka@suse.cz>
18222 R:      Roman Gushchin <roman.gushchin@linux.dev>
18223 R:      Hyeonggon Yoo <42.hyeyoo@gmail.com>
18224 L:      linux-mm@kvack.org
18225 S:      Maintained
18226 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vbabka/slab.git
18227 F:      include/linux/sl?b*.h
18228 F:      mm/sl?b*
18229
18230 SLEEPABLE READ-COPY UPDATE (SRCU)
18231 M:      Lai Jiangshan <jiangshanlai@gmail.com>
18232 M:      "Paul E. McKenney" <paulmck@kernel.org>
18233 M:      Josh Triplett <josh@joshtriplett.org>
18234 R:      Steven Rostedt <rostedt@goodmis.org>
18235 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
18236 L:      rcu@vger.kernel.org
18237 S:      Supported
18238 W:      http://www.rdrop.com/users/paulmck/RCU/
18239 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
18240 F:      include/linux/srcu*.h
18241 F:      kernel/rcu/srcu*.c
18242
18243 SMACK SECURITY MODULE
18244 M:      Casey Schaufler <casey@schaufler-ca.com>
18245 L:      linux-security-module@vger.kernel.org
18246 S:      Maintained
18247 W:      http://schaufler-ca.com
18248 T:      git git://github.com/cschaufler/smack-next
18249 F:      Documentation/admin-guide/LSM/Smack.rst
18250 F:      security/smack/
18251
18252 SMC91x ETHERNET DRIVER
18253 M:      Nicolas Pitre <nico@fluxnic.net>
18254 S:      Odd Fixes
18255 F:      drivers/net/ethernet/smsc/smc91x.*
18256
18257 SECURE MONITOR CALL(SMC) CALLING CONVENTION (SMCCC)
18258 M:      Mark Rutland <mark.rutland@arm.com>
18259 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
18260 M:      Sudeep Holla <sudeep.holla@arm.com>
18261 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
18262 S:      Maintained
18263 F:      drivers/firmware/smccc/
18264 F:      include/linux/arm-smccc.h
18265
18266 SMM665 HARDWARE MONITOR DRIVER
18267 M:      Guenter Roeck <linux@roeck-us.net>
18268 L:      linux-hwmon@vger.kernel.org
18269 S:      Maintained
18270 F:      Documentation/hwmon/smm665.rst
18271 F:      drivers/hwmon/smm665.c
18272
18273 SMSC EMC2103 HARDWARE MONITOR DRIVER
18274 M:      Steve Glendinning <steve.glendinning@shawell.net>
18275 L:      linux-hwmon@vger.kernel.org
18276 S:      Maintained
18277 F:      Documentation/hwmon/emc2103.rst
18278 F:      drivers/hwmon/emc2103.c
18279
18280 SMSC SCH5627 HARDWARE MONITOR DRIVER
18281 M:      Hans de Goede <hdegoede@redhat.com>
18282 L:      linux-hwmon@vger.kernel.org
18283 S:      Supported
18284 F:      Documentation/hwmon/sch5627.rst
18285 F:      drivers/hwmon/sch5627.c
18286
18287 SMSC UFX6000 and UFX7000 USB to VGA DRIVER
18288 M:      Steve Glendinning <steve.glendinning@shawell.net>
18289 L:      linux-fbdev@vger.kernel.org
18290 S:      Maintained
18291 F:      drivers/video/fbdev/smscufx.c
18292
18293 SMSC47B397 HARDWARE MONITOR DRIVER
18294 M:      Jean Delvare <jdelvare@suse.com>
18295 L:      linux-hwmon@vger.kernel.org
18296 S:      Maintained
18297 F:      Documentation/hwmon/smsc47b397.rst
18298 F:      drivers/hwmon/smsc47b397.c
18299
18300 SMSC911x ETHERNET DRIVER
18301 M:      Steve Glendinning <steve.glendinning@shawell.net>
18302 L:      netdev@vger.kernel.org
18303 S:      Maintained
18304 F:      drivers/net/ethernet/smsc/smsc911x.*
18305 F:      include/linux/smsc911x.h
18306
18307 SMSC9420 PCI ETHERNET DRIVER
18308 M:      Steve Glendinning <steve.glendinning@shawell.net>
18309 L:      netdev@vger.kernel.org
18310 S:      Maintained
18311 F:      drivers/net/ethernet/smsc/smsc9420.*
18312
18313 SOCIONEXT (SNI) AVE NETWORK DRIVER
18314 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
18315 L:      netdev@vger.kernel.org
18316 S:      Maintained
18317 F:      Documentation/devicetree/bindings/net/socionext,uniphier-ave4.yaml
18318 F:      drivers/net/ethernet/socionext/sni_ave.c
18319
18320 SOCIONEXT (SNI) NETSEC NETWORK DRIVER
18321 M:      Jassi Brar <jaswinder.singh@linaro.org>
18322 M:      Ilias Apalodimas <ilias.apalodimas@linaro.org>
18323 L:      netdev@vger.kernel.org
18324 S:      Maintained
18325 F:      Documentation/devicetree/bindings/net/socionext-netsec.txt
18326 F:      drivers/net/ethernet/socionext/netsec.c
18327
18328 SOCIONEXT (SNI) Synquacer SPI DRIVER
18329 M:      Masahisa Kojima <masahisa.kojima@linaro.org>
18330 M:      Jassi Brar <jaswinder.singh@linaro.org>
18331 L:      linux-spi@vger.kernel.org
18332 S:      Maintained
18333 F:      Documentation/devicetree/bindings/spi/spi-synquacer.txt
18334 F:      drivers/spi/spi-synquacer.c
18335
18336 SOCIONEXT SYNQUACER I2C DRIVER
18337 M:      Ard Biesheuvel <ardb@kernel.org>
18338 L:      linux-i2c@vger.kernel.org
18339 S:      Maintained
18340 F:      Documentation/devicetree/bindings/i2c/i2c-synquacer.txt
18341 F:      drivers/i2c/busses/i2c-synquacer.c
18342
18343 SOCIONEXT UNIPHIER SOUND DRIVER
18344 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18345 S:      Orphan
18346 F:      sound/soc/uniphier/
18347
18348 SOEKRIS NET48XX LED SUPPORT
18349 M:      Chris Boot <bootc@bootc.net>
18350 S:      Maintained
18351 F:      drivers/leds/leds-net48xx.c
18352
18353 SOFT-IWARP DRIVER (siw)
18354 M:      Bernard Metzler <bmt@zurich.ibm.com>
18355 L:      linux-rdma@vger.kernel.org
18356 S:      Supported
18357 F:      drivers/infiniband/sw/siw/
18358 F:      include/uapi/rdma/siw-abi.h
18359
18360 SOFT-ROCE DRIVER (rxe)
18361 M:      Zhu Yanjun <zyjzyj2000@gmail.com>
18362 L:      linux-rdma@vger.kernel.org
18363 S:      Supported
18364 F:      drivers/infiniband/sw/rxe/
18365 F:      include/uapi/rdma/rdma_user_rxe.h
18366
18367 SOFTLOGIC 6x10 MPEG CODEC
18368 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
18369 M:      Anton Sviridenko <anton@corp.bluecherry.net>
18370 M:      Andrey Utkin <andrey_utkin@fastmail.com>
18371 M:      Ismael Luceno <ismael@iodev.co.uk>
18372 L:      linux-media@vger.kernel.org
18373 S:      Supported
18374 F:      drivers/media/pci/solo6x10/
18375
18376 SOFTWARE DELEGATED EXCEPTION INTERFACE (SDEI)
18377 M:      James Morse <james.morse@arm.com>
18378 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
18379 S:      Maintained
18380 F:      Documentation/devicetree/bindings/arm/firmware/sdei.txt
18381 F:      drivers/firmware/arm_sdei.c
18382 F:      include/linux/arm_sdei.h
18383 F:      include/uapi/linux/arm_sdei.h
18384
18385 SOFTWARE NODES AND DEVICE PROPERTIES
18386 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
18387 R:      Daniel Scally <djrscally@gmail.com>
18388 R:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
18389 R:      Sakari Ailus <sakari.ailus@linux.intel.com>
18390 L:      linux-acpi@vger.kernel.org
18391 S:      Maintained
18392 F:      drivers/base/property.c
18393 F:      drivers/base/swnode.c
18394 F:      include/linux/fwnode.h
18395 F:      include/linux/property.h
18396
18397 SOFTWARE RAID (Multiple Disks) SUPPORT
18398 M:      Song Liu <song@kernel.org>
18399 L:      linux-raid@vger.kernel.org
18400 S:      Supported
18401 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/song/md.git
18402 F:      drivers/md/Kconfig
18403 F:      drivers/md/Makefile
18404 F:      drivers/md/md*
18405 F:      drivers/md/raid*
18406 F:      include/linux/raid/
18407 F:      include/uapi/linux/raid/
18408
18409 SOLIDRUN CLEARFOG SUPPORT
18410 M:      Russell King <linux@armlinux.org.uk>
18411 S:      Maintained
18412 F:      arch/arm/boot/dts/armada-388-clearfog*
18413 F:      arch/arm/boot/dts/armada-38x-solidrun-*
18414
18415 SOLIDRUN CUBOX-I/HUMMINGBOARD SUPPORT
18416 M:      Russell King <linux@armlinux.org.uk>
18417 S:      Maintained
18418 F:      arch/arm/boot/dts/imx6*-cubox-i*
18419 F:      arch/arm/boot/dts/imx6*-hummingboard*
18420 F:      arch/arm/boot/dts/imx6*-sr-*
18421
18422 SONIC NETWORK DRIVER
18423 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
18424 L:      netdev@vger.kernel.org
18425 S:      Maintained
18426 F:      drivers/net/ethernet/natsemi/sonic.*
18427
18428 SONICS SILICON BACKPLANE DRIVER (SSB)
18429 M:      Michael Buesch <m@bues.ch>
18430 L:      linux-wireless@vger.kernel.org
18431 S:      Maintained
18432 F:      drivers/ssb/
18433 F:      include/linux/ssb/
18434
18435 SONY IMX208 SENSOR DRIVER
18436 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
18437 L:      linux-media@vger.kernel.org
18438 S:      Maintained
18439 T:      git git://linuxtv.org/media_tree.git
18440 F:      drivers/media/i2c/imx208.c
18441
18442 SONY IMX214 SENSOR DRIVER
18443 M:      Ricardo Ribalda <ribalda@kernel.org>
18444 L:      linux-media@vger.kernel.org
18445 S:      Maintained
18446 T:      git git://linuxtv.org/media_tree.git
18447 F:      Documentation/devicetree/bindings/media/i2c/sony,imx214.yaml
18448 F:      drivers/media/i2c/imx214.c
18449
18450 SONY IMX219 SENSOR DRIVER
18451 M:      Dave Stevenson <dave.stevenson@raspberrypi.com>
18452 L:      linux-media@vger.kernel.org
18453 S:      Maintained
18454 T:      git git://linuxtv.org/media_tree.git
18455 F:      Documentation/devicetree/bindings/media/i2c/imx219.yaml
18456 F:      drivers/media/i2c/imx219.c
18457
18458 SONY IMX258 SENSOR DRIVER
18459 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
18460 L:      linux-media@vger.kernel.org
18461 S:      Maintained
18462 T:      git git://linuxtv.org/media_tree.git
18463 F:      Documentation/devicetree/bindings/media/i2c/imx258.yaml
18464 F:      drivers/media/i2c/imx258.c
18465
18466 SONY IMX274 SENSOR DRIVER
18467 M:      Leon Luo <leonl@leopardimaging.com>
18468 L:      linux-media@vger.kernel.org
18469 S:      Maintained
18470 T:      git git://linuxtv.org/media_tree.git
18471 F:      Documentation/devicetree/bindings/media/i2c/sony,imx274.yaml
18472 F:      drivers/media/i2c/imx274.c
18473
18474 SONY IMX290 SENSOR DRIVER
18475 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
18476 L:      linux-media@vger.kernel.org
18477 S:      Maintained
18478 T:      git git://linuxtv.org/media_tree.git
18479 F:      Documentation/devicetree/bindings/media/i2c/imx290.txt
18480 F:      drivers/media/i2c/imx290.c
18481
18482 SONY IMX319 SENSOR DRIVER
18483 M:      Bingbu Cao <bingbu.cao@intel.com>
18484 L:      linux-media@vger.kernel.org
18485 S:      Maintained
18486 T:      git git://linuxtv.org/media_tree.git
18487 F:      drivers/media/i2c/imx319.c
18488
18489 SONY IMX334 SENSOR DRIVER
18490 M:      Paul J. Murphy <paul.j.murphy@intel.com>
18491 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
18492 L:      linux-media@vger.kernel.org
18493 S:      Maintained
18494 T:      git git://linuxtv.org/media_tree.git
18495 F:      Documentation/devicetree/bindings/media/i2c/sony,imx334.yaml
18496 F:      drivers/media/i2c/imx334.c
18497
18498 SONY IMX335 SENSOR DRIVER
18499 M:      Paul J. Murphy <paul.j.murphy@intel.com>
18500 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
18501 L:      linux-media@vger.kernel.org
18502 S:      Maintained
18503 T:      git git://linuxtv.org/media_tree.git
18504 F:      Documentation/devicetree/bindings/media/i2c/sony,imx335.yaml
18505 F:      drivers/media/i2c/imx335.c
18506
18507 SONY IMX355 SENSOR DRIVER
18508 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
18509 L:      linux-media@vger.kernel.org
18510 S:      Maintained
18511 T:      git git://linuxtv.org/media_tree.git
18512 F:      drivers/media/i2c/imx355.c
18513
18514 SONY IMX412 SENSOR DRIVER
18515 M:      Paul J. Murphy <paul.j.murphy@intel.com>
18516 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
18517 L:      linux-media@vger.kernel.org
18518 S:      Maintained
18519 T:      git git://linuxtv.org/media_tree.git
18520 F:      Documentation/devicetree/bindings/media/i2c/sony,imx412.yaml
18521 F:      drivers/media/i2c/imx412.c
18522
18523 SONY MEMORYSTICK SUBSYSTEM
18524 M:      Maxim Levitsky <maximlevitsky@gmail.com>
18525 M:      Alex Dubov <oakad@yahoo.com>
18526 M:      Ulf Hansson <ulf.hansson@linaro.org>
18527 L:      linux-mmc@vger.kernel.org
18528 S:      Maintained
18529 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
18530 F:      drivers/memstick/
18531 F:      include/linux/memstick.h
18532
18533 SONY VAIO CONTROL DEVICE DRIVER
18534 M:      Mattia Dongili <malattia@linux.it>
18535 L:      platform-driver-x86@vger.kernel.org
18536 S:      Maintained
18537 W:      http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
18538 F:      Documentation/admin-guide/laptops/sony-laptop.rst
18539 F:      drivers/char/sonypi.c
18540 F:      drivers/platform/x86/sony-laptop.c
18541 F:      include/linux/sony-laptop.h
18542
18543 SOUND
18544 M:      Jaroslav Kysela <perex@perex.cz>
18545 M:      Takashi Iwai <tiwai@suse.com>
18546 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18547 S:      Maintained
18548 W:      http://www.alsa-project.org/
18549 Q:      http://patchwork.kernel.org/project/alsa-devel/list/
18550 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
18551 F:      Documentation/sound/
18552 F:      include/sound/
18553 F:      include/uapi/sound/
18554 F:      sound/
18555 F:      tools/testing/selftests/alsa
18556
18557 SOUND - COMPRESSED AUDIO
18558 M:      Vinod Koul <vkoul@kernel.org>
18559 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18560 S:      Supported
18561 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
18562 F:      Documentation/sound/designs/compress-offload.rst
18563 F:      include/sound/compress_driver.h
18564 F:      include/uapi/sound/compress_*
18565 F:      sound/core/compress_offload.c
18566 F:      sound/soc/soc-compress.c
18567
18568 SOUND - DMAENGINE HELPERS
18569 M:      Lars-Peter Clausen <lars@metafoo.de>
18570 S:      Supported
18571 F:      include/sound/dmaengine_pcm.h
18572 F:      sound/core/pcm_dmaengine.c
18573 F:      sound/soc/soc-generic-dmaengine-pcm.c
18574
18575 SOUND - ALSA SELFTESTS
18576 M:      Mark Brown <broonie@kernel.org>
18577 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18578 L:      linux-kselftest@vger.kernel.org
18579 S:      Supported
18580 F:      tools/testing/selftests/alsa
18581
18582 SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
18583 M:      Liam Girdwood <lgirdwood@gmail.com>
18584 M:      Mark Brown <broonie@kernel.org>
18585 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18586 S:      Supported
18587 W:      http://alsa-project.org/main/index.php/ASoC
18588 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
18589 F:      Documentation/devicetree/bindings/sound/
18590 F:      Documentation/sound/soc/
18591 F:      include/dt-bindings/sound/
18592 F:      include/sound/soc*
18593 F:      sound/soc/
18594
18595 SOUND - SOUND OPEN FIRMWARE (SOF) DRIVERS
18596 M:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
18597 M:      Liam Girdwood <lgirdwood@gmail.com>
18598 M:      Ranjani Sridharan <ranjani.sridharan@linux.intel.com>
18599 M:      Kai Vehmanen <kai.vehmanen@linux.intel.com>
18600 M:      Daniel Baluta <daniel.baluta@nxp.com>
18601 L:      sound-open-firmware@alsa-project.org (moderated for non-subscribers)
18602 S:      Supported
18603 W:      https://github.com/thesofproject/linux/
18604 F:      sound/soc/sof/
18605
18606 SOUNDWIRE SUBSYSTEM
18607 M:      Vinod Koul <vkoul@kernel.org>
18608 M:      Bard Liao <yung-chuan.liao@linux.intel.com>
18609 R:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
18610 R:      Sanyog Kale <sanyog.r.kale@intel.com>
18611 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18612 S:      Supported
18613 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vkoul/soundwire.git
18614 F:      Documentation/driver-api/soundwire/
18615 F:      drivers/soundwire/
18616 F:      include/linux/soundwire/
18617
18618 SP2 MEDIA DRIVER
18619 M:      Olli Salonen <olli.salonen@iki.fi>
18620 L:      linux-media@vger.kernel.org
18621 S:      Maintained
18622 W:      https://linuxtv.org
18623 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18624 F:      drivers/media/dvb-frontends/sp2*
18625
18626 SPARC + UltraSPARC (sparc/sparc64)
18627 M:      "David S. Miller" <davem@davemloft.net>
18628 L:      sparclinux@vger.kernel.org
18629 S:      Maintained
18630 Q:      http://patchwork.ozlabs.org/project/sparclinux/list/
18631 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
18632 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
18633 F:      arch/sparc/
18634 F:      drivers/sbus/
18635
18636 SPARC SERIAL DRIVERS
18637 M:      "David S. Miller" <davem@davemloft.net>
18638 L:      sparclinux@vger.kernel.org
18639 S:      Maintained
18640 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
18641 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
18642 F:      drivers/tty/serial/suncore.c
18643 F:      drivers/tty/serial/sunhv.c
18644 F:      drivers/tty/serial/sunsab.c
18645 F:      drivers/tty/serial/sunsab.h
18646 F:      drivers/tty/serial/sunsu.c
18647 F:      drivers/tty/serial/sunzilog.c
18648 F:      drivers/tty/serial/sunzilog.h
18649 F:      drivers/tty/vcc.c
18650 F:      include/linux/sunserialcore.h
18651
18652 SPARSE CHECKER
18653 M:      "Luc Van Oostenryck" <luc.vanoostenryck@gmail.com>
18654 L:      linux-sparse@vger.kernel.org
18655 S:      Maintained
18656 W:      https://sparse.docs.kernel.org/
18657 T:      git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
18658 Q:      https://patchwork.kernel.org/project/linux-sparse/list/
18659 B:      https://bugzilla.kernel.org/enter_bug.cgi?component=Sparse&product=Tools
18660 F:      include/linux/compiler.h
18661
18662 SPEAKUP CONSOLE SPEECH DRIVER
18663 M:      William Hubbs <w.d.hubbs@gmail.com>
18664 M:      Chris Brannon <chris@the-brannons.com>
18665 M:      Kirk Reiser <kirk@reisers.ca>
18666 M:      Samuel Thibault <samuel.thibault@ens-lyon.org>
18667 L:      speakup@linux-speakup.org
18668 S:      Odd Fixes
18669 W:      http://www.linux-speakup.org/
18670 W:      https://github.com/linux-speakup/speakup
18671 B:      https://github.com/linux-speakup/speakup/issues
18672 F:      drivers/accessibility/speakup/
18673
18674 SPEAR PLATFORM/CLOCK/PINCTRL SUPPORT
18675 M:      Viresh Kumar <vireshk@kernel.org>
18676 M:      Shiraz Hashim <shiraz.linux.kernel@gmail.com>
18677 M:      soc@kernel.org
18678 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
18679 S:      Maintained
18680 W:      http://www.st.com/spear
18681 F:      arch/arm/boot/dts/spear*
18682 F:      arch/arm/mach-spear/
18683 F:      drivers/clk/spear/
18684 F:      drivers/pinctrl/spear/
18685
18686 SPI NOR SUBSYSTEM
18687 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
18688 M:      Pratyush Yadav <p.yadav@ti.com>
18689 R:      Michael Walle <michael@walle.cc>
18690 L:      linux-mtd@lists.infradead.org
18691 S:      Maintained
18692 W:      http://www.linux-mtd.infradead.org/
18693 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
18694 C:      irc://irc.oftc.net/mtd
18695 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git spi-nor/next
18696 F:      Documentation/devicetree/bindings/mtd/jedec,spi-nor.yaml
18697 F:      drivers/mtd/spi-nor/
18698 F:      include/linux/mtd/spi-nor.h
18699
18700 SPI SUBSYSTEM
18701 M:      Mark Brown <broonie@kernel.org>
18702 L:      linux-spi@vger.kernel.org
18703 S:      Maintained
18704 Q:      http://patchwork.kernel.org/project/spi-devel-general/list/
18705 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
18706 F:      Documentation/devicetree/bindings/spi/
18707 F:      Documentation/spi/
18708 F:      drivers/spi/
18709 F:      include/linux/spi/
18710 F:      include/uapi/linux/spi/
18711 F:      tools/spi/
18712
18713 SPIDERNET NETWORK DRIVER for CELL
18714 M:      Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
18715 M:      Geoff Levand <geoff@infradead.org>
18716 L:      netdev@vger.kernel.org
18717 L:      linuxppc-dev@lists.ozlabs.org
18718 S:      Maintained
18719 F:      Documentation/networking/device_drivers/ethernet/toshiba/spider_net.rst
18720 F:      drivers/net/ethernet/toshiba/spider_net*
18721
18722 SPMI SUBSYSTEM
18723 M:      Stephen Boyd <sboyd@kernel.org>
18724 L:      linux-kernel@vger.kernel.org
18725 S:      Maintained
18726 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sboyd/spmi.git
18727 F:      Documentation/devicetree/bindings/spmi/
18728 F:      drivers/spmi/
18729 F:      include/dt-bindings/spmi/spmi.h
18730 F:      include/linux/spmi.h
18731 F:      include/trace/events/spmi.h
18732
18733 SPU FILE SYSTEM
18734 M:      Jeremy Kerr <jk@ozlabs.org>
18735 L:      linuxppc-dev@lists.ozlabs.org
18736 S:      Supported
18737 W:      http://www.ibm.com/developerworks/power/cell/
18738 F:      Documentation/filesystems/spufs/spufs.rst
18739 F:      arch/powerpc/platforms/cell/spufs/
18740
18741 SQUASHFS FILE SYSTEM
18742 M:      Phillip Lougher <phillip@squashfs.org.uk>
18743 L:      squashfs-devel@lists.sourceforge.net (subscribers-only)
18744 S:      Maintained
18745 W:      http://squashfs.org.uk
18746 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pkl/squashfs-next.git
18747 F:      Documentation/filesystems/squashfs.rst
18748 F:      fs/squashfs/
18749
18750 SRM (Alpha) environment access
18751 M:      Jan-Benedict Glaw <jbglaw@lug-owl.de>
18752 S:      Maintained
18753 F:      arch/alpha/kernel/srm_env.c
18754
18755 ST LSM6DSx IMU IIO DRIVER
18756 M:      Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
18757 L:      linux-iio@vger.kernel.org
18758 S:      Maintained
18759 W:      http://www.st.com/
18760 F:      Documentation/devicetree/bindings/iio/imu/st,lsm6dsx.yaml
18761 F:      drivers/iio/imu/st_lsm6dsx/
18762
18763 ST MIPID02 CSI-2 TO PARALLEL BRIDGE DRIVER
18764 M:      Benjamin Mugnier <benjamin.mugnier@foss.st.com>
18765 M:      Sylvain Petinot <sylvain.petinot@foss.st.com>
18766 L:      linux-media@vger.kernel.org
18767 S:      Maintained
18768 T:      git git://linuxtv.org/media_tree.git
18769 F:      Documentation/devicetree/bindings/media/i2c/st,st-mipid02.txt
18770 F:      drivers/media/i2c/st-mipid02.c
18771
18772 ST STM32 I2C/SMBUS DRIVER
18773 M:      Pierre-Yves MORDRET <pierre-yves.mordret@foss.st.com>
18774 M:      Alain Volmat <alain.volmat@foss.st.com>
18775 L:      linux-i2c@vger.kernel.org
18776 S:      Maintained
18777 F:      drivers/i2c/busses/i2c-stm32*
18778
18779 ST STM32 SPI DRIVER
18780 M:      Alain Volmat <alain.volmat@foss.st.com>
18781 L:      linux-spi@vger.kernel.org
18782 S:      Maintained
18783 F:      drivers/spi/spi-stm32.c
18784
18785 ST STPDDC60 DRIVER
18786 M:      Daniel Nilsson <daniel.nilsson@flex.com>
18787 L:      linux-hwmon@vger.kernel.org
18788 S:      Maintained
18789 F:      Documentation/hwmon/stpddc60.rst
18790 F:      drivers/hwmon/pmbus/stpddc60.c
18791
18792 ST VL53L0X ToF RANGER(I2C) IIO DRIVER
18793 M:      Song Qiang <songqiang1304521@gmail.com>
18794 L:      linux-iio@vger.kernel.org
18795 S:      Maintained
18796 F:      Documentation/devicetree/bindings/iio/proximity/st,vl53l0x.yaml
18797 F:      drivers/iio/proximity/vl53l0x-i2c.c
18798
18799 STABLE BRANCH
18800 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
18801 M:      Sasha Levin <sashal@kernel.org>
18802 L:      stable@vger.kernel.org
18803 S:      Supported
18804 F:      Documentation/process/stable-kernel-rules.rst
18805
18806 STAGING - ATOMISP DRIVER
18807 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
18808 R:      Sakari Ailus <sakari.ailus@linux.intel.com>
18809 L:      linux-media@vger.kernel.org
18810 S:      Maintained
18811 F:      drivers/staging/media/atomisp/
18812
18813 STAGING - FIELDBUS SUBSYSTEM
18814 M:      Sven Van Asbroeck <TheSven73@gmail.com>
18815 S:      Maintained
18816 F:      drivers/staging/fieldbus/*
18817 F:      drivers/staging/fieldbus/Documentation/
18818
18819 STAGING - HMS ANYBUS-S BUS
18820 M:      Sven Van Asbroeck <TheSven73@gmail.com>
18821 S:      Maintained
18822 F:      drivers/staging/fieldbus/anybuss/
18823
18824 STAGING - INDUSTRIAL IO
18825 M:      Jonathan Cameron <jic23@kernel.org>
18826 L:      linux-iio@vger.kernel.org
18827 S:      Odd Fixes
18828 F:      Documentation/devicetree/bindings/staging/iio/
18829 F:      drivers/staging/iio/
18830
18831 STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
18832 M:      Marc Dietrich <marvin24@gmx.de>
18833 L:      ac100@lists.launchpad.net (moderated for non-subscribers)
18834 L:      linux-tegra@vger.kernel.org
18835 S:      Maintained
18836 F:      drivers/staging/nvec/
18837
18838 STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
18839 M:      Jens Frederich <jfrederich@gmail.com>
18840 M:      Jon Nettleton <jon.nettleton@gmail.com>
18841 S:      Maintained
18842 W:      http://wiki.laptop.org/go/DCON
18843 F:      drivers/staging/olpc_dcon/
18844
18845 STAGING - REALTEK RTL8188EU DRIVERS
18846 M:      Larry Finger <Larry.Finger@lwfinger.net>
18847 M:      Phillip Potter <phil@philpotter.co.uk>
18848 S:      Supported
18849 F:      drivers/staging/r8188eu/
18850
18851 STAGING - REALTEK RTL8712U DRIVERS
18852 M:      Larry Finger <Larry.Finger@lwfinger.net>
18853 M:      Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
18854 S:      Odd Fixes
18855 F:      drivers/staging/rtl8712/
18856
18857 STAGING - SEPS525 LCD CONTROLLER DRIVERS
18858 M:      Michael Hennerich <michael.hennerich@analog.com>
18859 L:      linux-fbdev@vger.kernel.org
18860 S:      Supported
18861 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7606.yaml
18862 F:      drivers/staging/fbtft/fb_seps525.c
18863
18864 STAGING - SILICON MOTION SM750 FRAME BUFFER DRIVER
18865 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
18866 M:      Teddy Wang <teddy.wang@siliconmotion.com>
18867 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
18868 L:      linux-fbdev@vger.kernel.org
18869 S:      Maintained
18870 F:      drivers/staging/sm750fb/
18871
18872 STAGING - VIA VT665X DRIVERS
18873 M:      Forest Bond <forest@alittletooquiet.net>
18874 S:      Odd Fixes
18875 F:      drivers/staging/vt665?/
18876
18877 STAGING SUBSYSTEM
18878 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
18879 L:      linux-staging@lists.linux.dev
18880 S:      Supported
18881 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
18882 F:      drivers/staging/
18883
18884 STARFIRE/DURALAN NETWORK DRIVER
18885 M:      Ion Badulescu <ionut@badula.org>
18886 S:      Odd Fixes
18887 F:      drivers/net/ethernet/adaptec/starfire*
18888
18889 STARFIVE JH7100 CLOCK DRIVERS
18890 M:      Emil Renner Berthing <kernel@esmil.dk>
18891 S:      Maintained
18892 F:      Documentation/devicetree/bindings/clock/starfive,jh7100-*.yaml
18893 F:      drivers/clk/starfive/clk-starfive-jh7100*
18894 F:      include/dt-bindings/clock/starfive-jh7100*.h
18895
18896 STARFIVE JH7100 PINCTRL DRIVER
18897 M:      Emil Renner Berthing <kernel@esmil.dk>
18898 L:      linux-gpio@vger.kernel.org
18899 S:      Maintained
18900 F:      Documentation/devicetree/bindings/pinctrl/starfive,jh7100-pinctrl.yaml
18901 F:      drivers/pinctrl/pinctrl-starfive.c
18902 F:      include/dt-bindings/pinctrl/pinctrl-starfive.h
18903
18904 STARFIVE JH7100 RESET CONTROLLER DRIVER
18905 M:      Emil Renner Berthing <kernel@esmil.dk>
18906 S:      Maintained
18907 F:      Documentation/devicetree/bindings/reset/starfive,jh7100-reset.yaml
18908 F:      drivers/reset/reset-starfive-jh7100.c
18909 F:      include/dt-bindings/reset/starfive-jh7100.h
18910
18911 STATIC BRANCH/CALL
18912 M:      Peter Zijlstra <peterz@infradead.org>
18913 M:      Josh Poimboeuf <jpoimboe@kernel.org>
18914 M:      Jason Baron <jbaron@akamai.com>
18915 R:      Steven Rostedt <rostedt@goodmis.org>
18916 R:      Ard Biesheuvel <ardb@kernel.org>
18917 S:      Supported
18918 F:      arch/*/include/asm/jump_label*.h
18919 F:      arch/*/include/asm/static_call*.h
18920 F:      arch/*/kernel/jump_label.c
18921 F:      arch/*/kernel/static_call.c
18922 F:      include/linux/jump_label*.h
18923 F:      include/linux/static_call*.h
18924 F:      kernel/jump_label.c
18925 F:      kernel/static_call.c
18926
18927 STI AUDIO (ASoC) DRIVERS
18928 M:      Arnaud Pouliquen <arnaud.pouliquen@foss.st.com>
18929 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18930 S:      Maintained
18931 F:      Documentation/devicetree/bindings/sound/st,sti-asoc-card.txt
18932 F:      sound/soc/sti/
18933
18934 STI CEC DRIVER
18935 M:      Alain Volmat <alain.volmat@foss.st.com>
18936 S:      Maintained
18937 F:      Documentation/devicetree/bindings/media/stih-cec.txt
18938 F:      drivers/media/cec/platform/sti/
18939
18940 STK1160 USB VIDEO CAPTURE DRIVER
18941 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
18942 L:      linux-media@vger.kernel.org
18943 S:      Maintained
18944 T:      git git://linuxtv.org/media_tree.git
18945 F:      drivers/media/usb/stk1160/
18946
18947 STM32 AUDIO (ASoC) DRIVERS
18948 M:      Olivier Moysan <olivier.moysan@foss.st.com>
18949 M:      Arnaud Pouliquen <arnaud.pouliquen@foss.st.com>
18950 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18951 S:      Maintained
18952 F:      Documentation/devicetree/bindings/iio/adc/st,stm32-dfsdm-adc.yaml
18953 F:      Documentation/devicetree/bindings/sound/st,stm32-*.yaml
18954 F:      sound/soc/stm/
18955
18956 STM32 TIMER/LPTIMER DRIVERS
18957 M:      Fabrice Gasnier <fabrice.gasnier@foss.st.com>
18958 S:      Maintained
18959 F:      Documentation/ABI/testing/*timer-stm32
18960 F:      Documentation/devicetree/bindings/*/*stm32-*timer*
18961 F:      drivers/*/stm32-*timer*
18962 F:      drivers/pwm/pwm-stm32*
18963 F:      include/linux/*/stm32-*tim*
18964
18965 STMMAC ETHERNET DRIVER
18966 M:      Giuseppe Cavallaro <peppe.cavallaro@st.com>
18967 M:      Alexandre Torgue <alexandre.torgue@foss.st.com>
18968 M:      Jose Abreu <joabreu@synopsys.com>
18969 L:      netdev@vger.kernel.org
18970 S:      Supported
18971 W:      http://www.stlinux.com
18972 F:      Documentation/networking/device_drivers/ethernet/stmicro/
18973 F:      drivers/net/ethernet/stmicro/stmmac/
18974
18975 SUN3/3X
18976 M:      Sam Creasey <sammy@sammy.net>
18977 S:      Maintained
18978 W:      http://sammy.net/sun3/
18979 F:      arch/m68k/include/asm/sun3*
18980 F:      arch/m68k/kernel/*sun3*
18981 F:      arch/m68k/sun3*/
18982 F:      drivers/net/ethernet/i825xx/sun3*
18983
18984 SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER
18985 M:      Hans de Goede <hdegoede@redhat.com>
18986 L:      linux-input@vger.kernel.org
18987 S:      Maintained
18988 F:      Documentation/devicetree/bindings/input/allwinner,sun4i-a10-lradc-keys.yaml
18989 F:      drivers/input/keyboard/sun4i-lradc-keys.c
18990
18991 SUNDANCE NETWORK DRIVER
18992 M:      Denis Kirjanov <kda@linux-powerpc.org>
18993 L:      netdev@vger.kernel.org
18994 S:      Maintained
18995 F:      drivers/net/ethernet/dlink/sundance.c
18996
18997 SUNPLUS ETHERNET DRIVER
18998 M:      Wells Lu <wellslutw@gmail.com>
18999 L:      netdev@vger.kernel.org
19000 S:      Maintained
19001 W:      https://sunplus.atlassian.net/wiki/spaces/doc/overview
19002 F:      Documentation/devicetree/bindings/net/sunplus,sp7021-emac.yaml
19003 F:      drivers/net/ethernet/sunplus/
19004
19005 SUNPLUS OCOTP DRIVER
19006 M:      Vincent Shih <vincent.sunplus@gmail.com>
19007 S:      Maintained
19008 F:      Documentation/devicetree/bindings/nvmem/sunplus,sp7021-ocotp.yaml
19009 F:      drivers/nvmem/sunplus-ocotp.c
19010
19011 SUNPLUS RTC DRIVER
19012 M:      Vincent Shih <vincent.sunplus@gmail.com>
19013 L:      linux-rtc@vger.kernel.org
19014 S:      Maintained
19015 F:      Documentation/devicetree/bindings/rtc/sunplus,sp7021-rtc.yaml
19016 F:      drivers/rtc/rtc-sunplus.c
19017
19018 SUNPLUS SPI CONTROLLER INTERFACE DRIVER
19019 M:      Li-hao Kuo <lhjeff911@gmail.com>
19020 L:      linux-spi@vger.kernel.org
19021 S:      Maintained
19022 F:      Documentation/devicetree/bindings/spi/spi-sunplus-sp7021.yaml
19023 F:      drivers/spi/spi-sunplus-sp7021.c
19024
19025 SUNPLUS UART DRIVER
19026 M:      Hammer Hsieh <hammerh0314@gmail.com>
19027 S:      Maintained
19028 F:      Documentation/devicetree/bindings/serial/sunplus,sp7021-uart.yaml
19029 F:      drivers/tty/serial/sunplus-uart.c
19030
19031 SUPERH
19032 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
19033 M:      Rich Felker <dalias@libc.org>
19034 L:      linux-sh@vger.kernel.org
19035 S:      Maintained
19036 Q:      http://patchwork.kernel.org/project/linux-sh/list/
19037 F:      Documentation/sh/
19038 F:      arch/sh/
19039 F:      drivers/sh/
19040
19041 SUSPEND TO RAM
19042 M:      "Rafael J. Wysocki" <rafael@kernel.org>
19043 M:      Len Brown <len.brown@intel.com>
19044 M:      Pavel Machek <pavel@ucw.cz>
19045 L:      linux-pm@vger.kernel.org
19046 S:      Supported
19047 B:      https://bugzilla.kernel.org
19048 F:      Documentation/power/
19049 F:      arch/x86/kernel/acpi/
19050 F:      drivers/base/power/
19051 F:      include/linux/freezer.h
19052 F:      include/linux/pm.h
19053 F:      include/linux/suspend.h
19054 F:      kernel/power/
19055
19056 SVGA HANDLING
19057 M:      Martin Mares <mj@ucw.cz>
19058 L:      linux-video@atrey.karlin.mff.cuni.cz
19059 S:      Maintained
19060 F:      Documentation/admin-guide/svga.rst
19061 F:      arch/x86/boot/video*
19062
19063 SWIOTLB SUBSYSTEM
19064 M:      Christoph Hellwig <hch@infradead.org>
19065 L:      iommu@lists.linux-foundation.org
19066 S:      Supported
19067 W:      http://git.infradead.org/users/hch/dma-mapping.git
19068 T:      git git://git.infradead.org/users/hch/dma-mapping.git
19069 F:      arch/*/kernel/pci-swiotlb.c
19070 F:      include/linux/swiotlb.h
19071 F:      kernel/dma/swiotlb.c
19072
19073 SWITCHDEV
19074 M:      Jiri Pirko <jiri@resnulli.us>
19075 M:      Ivan Vecera <ivecera@redhat.com>
19076 L:      netdev@vger.kernel.org
19077 S:      Supported
19078 F:      include/net/switchdev.h
19079 F:      net/switchdev/
19080
19081 SY8106A REGULATOR DRIVER
19082 M:      Icenowy Zheng <icenowy@aosc.io>
19083 S:      Maintained
19084 F:      Documentation/devicetree/bindings/regulator/silergy,sy8106a.yaml
19085 F:      drivers/regulator/sy8106a-regulator.c
19086
19087 SYNC FILE FRAMEWORK
19088 M:      Sumit Semwal <sumit.semwal@linaro.org>
19089 R:      Gustavo Padovan <gustavo@padovan.org>
19090 L:      linux-media@vger.kernel.org
19091 L:      dri-devel@lists.freedesktop.org
19092 S:      Maintained
19093 T:      git git://anongit.freedesktop.org/drm/drm-misc
19094 F:      Documentation/driver-api/sync_file.rst
19095 F:      drivers/dma-buf/dma-fence*
19096 F:      drivers/dma-buf/sw_sync.c
19097 F:      drivers/dma-buf/sync_*
19098 F:      include/linux/sync_file.h
19099 F:      include/uapi/linux/sync_file.h
19100
19101 SYNOPSYS ARC ARCHITECTURE
19102 M:      Vineet Gupta <vgupta@kernel.org>
19103 L:      linux-snps-arc@lists.infradead.org
19104 S:      Supported
19105 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc.git
19106 F:      Documentation/arc/
19107 F:      Documentation/devicetree/bindings/arc/*
19108 F:      Documentation/devicetree/bindings/interrupt-controller/snps,arc*
19109 F:      arch/arc/
19110 F:      drivers/clocksource/arc_timer.c
19111 F:      drivers/tty/serial/arc_uart.c
19112
19113 SYNOPSYS ARC HSDK SDP pll clock driver
19114 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
19115 S:      Supported
19116 F:      Documentation/devicetree/bindings/clock/snps,hsdk-pll-clock.txt
19117 F:      drivers/clk/clk-hsdk-pll.c
19118
19119 SYNOPSYS ARC SDP clock driver
19120 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
19121 S:      Supported
19122 F:      Documentation/devicetree/bindings/clock/snps,pll-clock.txt
19123 F:      drivers/clk/axs10x/*
19124
19125 SYNOPSYS ARC SDP platform support
19126 M:      Alexey Brodkin <abrodkin@synopsys.com>
19127 S:      Supported
19128 F:      Documentation/devicetree/bindings/arc/axs10*
19129 F:      arch/arc/boot/dts/ax*
19130 F:      arch/arc/plat-axs10x
19131
19132 SYNOPSYS AXS10x RESET CONTROLLER DRIVER
19133 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
19134 S:      Supported
19135 F:      Documentation/devicetree/bindings/reset/snps,axs10x-reset.txt
19136 F:      drivers/reset/reset-axs10x.c
19137
19138 SYNOPSYS CREG GPIO DRIVER
19139 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
19140 S:      Maintained
19141 F:      Documentation/devicetree/bindings/gpio/snps,creg-gpio.txt
19142 F:      drivers/gpio/gpio-creg-snps.c
19143
19144 SYNOPSYS DESIGNWARE 8250 UART DRIVER
19145 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
19146 S:      Maintained
19147 F:      drivers/tty/serial/8250/8250_dw.c
19148 F:      drivers/tty/serial/8250/8250_dwlib.*
19149 F:      drivers/tty/serial/8250/8250_lpss.c
19150
19151 SYNOPSYS DESIGNWARE APB GPIO DRIVER
19152 M:      Hoan Tran <hoan@os.amperecomputing.com>
19153 M:      Serge Semin <fancer.lancer@gmail.com>
19154 L:      linux-gpio@vger.kernel.org
19155 S:      Maintained
19156 F:      Documentation/devicetree/bindings/gpio/snps,dw-apb-gpio.yaml
19157 F:      drivers/gpio/gpio-dwapb.c
19158
19159 SYNOPSYS DESIGNWARE APB SSI DRIVER
19160 M:      Serge Semin <fancer.lancer@gmail.com>
19161 L:      linux-spi@vger.kernel.org
19162 S:      Supported
19163 F:      Documentation/devicetree/bindings/spi/snps,dw-apb-ssi.yaml
19164 F:      drivers/spi/spi-dw*
19165
19166 SYNOPSYS DESIGNWARE AXI DMAC DRIVER
19167 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
19168 S:      Maintained
19169 F:      Documentation/devicetree/bindings/dma/snps,dw-axi-dmac.yaml
19170 F:      drivers/dma/dw-axi-dmac/
19171
19172 SYNOPSYS DESIGNWARE DMAC DRIVER
19173 M:      Viresh Kumar <vireshk@kernel.org>
19174 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
19175 S:      Maintained
19176 F:      Documentation/devicetree/bindings/dma/snps,dma-spear1340.yaml
19177 F:      drivers/dma/dw/
19178 F:      include/dt-bindings/dma/dw-dmac.h
19179 F:      include/linux/dma/dw.h
19180 F:      include/linux/platform_data/dma-dw.h
19181
19182 SYNOPSYS DESIGNWARE ENTERPRISE ETHERNET DRIVER
19183 M:      Jose Abreu <Jose.Abreu@synopsys.com>
19184 L:      netdev@vger.kernel.org
19185 S:      Supported
19186 F:      drivers/net/ethernet/synopsys/
19187
19188 SYNOPSYS DESIGNWARE ETHERNET XPCS DRIVER
19189 M:      Jose Abreu <Jose.Abreu@synopsys.com>
19190 L:      netdev@vger.kernel.org
19191 S:      Supported
19192 F:      drivers/net/pcs/pcs-xpcs.c
19193 F:      drivers/net/pcs/pcs-xpcs.h
19194 F:      include/linux/pcs/pcs-xpcs.h
19195
19196 SYNOPSYS DESIGNWARE I2C DRIVER
19197 M:      Jarkko Nikula <jarkko.nikula@linux.intel.com>
19198 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
19199 R:      Mika Westerberg <mika.westerberg@linux.intel.com>
19200 R:      Jan Dabros <jsd@semihalf.com>
19201 L:      linux-i2c@vger.kernel.org
19202 S:      Maintained
19203 F:      drivers/i2c/busses/i2c-designware-*
19204
19205 SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
19206 M:      Jaehoon Chung <jh80.chung@samsung.com>
19207 L:      linux-mmc@vger.kernel.org
19208 S:      Maintained
19209 F:      drivers/mmc/host/dw_mmc*
19210
19211 SYNOPSYS HSDK RESET CONTROLLER DRIVER
19212 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
19213 S:      Supported
19214 F:      Documentation/devicetree/bindings/reset/snps,hsdk-reset.txt
19215 F:      drivers/reset/reset-hsdk.c
19216 F:      include/dt-bindings/reset/snps,hsdk-reset.h
19217
19218 SYNOPSYS SDHCI COMPLIANT DWC MSHC DRIVER
19219 M:      Prabu Thangamuthu <prabu.t@synopsys.com>
19220 M:      Manjunath M B <manjumb@synopsys.com>
19221 L:      linux-mmc@vger.kernel.org
19222 S:      Maintained
19223 F:      drivers/mmc/host/sdhci-pci-dwc-mshc.c
19224
19225 SYSTEM CONFIGURATION (SYSCON)
19226 M:      Lee Jones <lee.jones@linaro.org>
19227 M:      Arnd Bergmann <arnd@arndb.de>
19228 S:      Supported
19229 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
19230 F:      drivers/mfd/syscon.c
19231
19232 SYSTEM CONTROL & POWER/MANAGEMENT INTERFACE (SCPI/SCMI) Message Protocol drivers
19233 M:      Sudeep Holla <sudeep.holla@arm.com>
19234 R:      Cristian Marussi <cristian.marussi@arm.com>
19235 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
19236 S:      Maintained
19237 F:      Documentation/devicetree/bindings/firmware/arm,sc[mp]i.yaml
19238 F:      drivers/clk/clk-sc[mp]i.c
19239 F:      drivers/cpufreq/sc[mp]i-cpufreq.c
19240 F:      drivers/firmware/arm_scmi/
19241 F:      drivers/firmware/arm_scpi.c
19242 F:      drivers/regulator/scmi-regulator.c
19243 F:      drivers/reset/reset-scmi.c
19244 F:      include/linux/sc[mp]i_protocol.h
19245 F:      include/trace/events/scmi.h
19246 F:      include/uapi/linux/virtio_scmi.h
19247
19248 SYSTEM RESET/SHUTDOWN DRIVERS
19249 M:      Sebastian Reichel <sre@kernel.org>
19250 L:      linux-pm@vger.kernel.org
19251 S:      Maintained
19252 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
19253 F:      Documentation/devicetree/bindings/power/reset/
19254 F:      drivers/power/reset/
19255
19256 SYSTEM TRACE MODULE CLASS
19257 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
19258 S:      Maintained
19259 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ash/stm.git
19260 F:      Documentation/trace/stm.rst
19261 F:      drivers/hwtracing/stm/
19262 F:      include/linux/stm.h
19263 F:      include/uapi/linux/stm.h
19264
19265 SYSTEM76 ACPI DRIVER
19266 M:      Jeremy Soller <jeremy@system76.com>
19267 M:      System76 Product Development <productdev@system76.com>
19268 L:      platform-driver-x86@vger.kernel.org
19269 S:      Maintained
19270 F:      drivers/platform/x86/system76_acpi.c
19271
19272 SYSV FILESYSTEM
19273 M:      Christoph Hellwig <hch@infradead.org>
19274 S:      Maintained
19275 F:      Documentation/filesystems/sysv-fs.rst
19276 F:      fs/sysv/
19277 F:      include/linux/sysv_fs.h
19278
19279 TASKSTATS STATISTICS INTERFACE
19280 M:      Balbir Singh <bsingharora@gmail.com>
19281 S:      Maintained
19282 F:      Documentation/accounting/taskstats*
19283 F:      include/linux/taskstats*
19284 F:      kernel/taskstats.c
19285
19286 TC subsystem
19287 M:      Jamal Hadi Salim <jhs@mojatatu.com>
19288 M:      Cong Wang <xiyou.wangcong@gmail.com>
19289 M:      Jiri Pirko <jiri@resnulli.us>
19290 L:      netdev@vger.kernel.org
19291 S:      Maintained
19292 F:      include/net/pkt_cls.h
19293 F:      include/net/pkt_sched.h
19294 F:      include/net/tc_act/
19295 F:      include/uapi/linux/pkt_cls.h
19296 F:      include/uapi/linux/pkt_sched.h
19297 F:      include/uapi/linux/tc_act/
19298 F:      include/uapi/linux/tc_ematch/
19299 F:      net/sched/
19300 F:      tools/testing/selftests/tc-testing
19301
19302 TC90522 MEDIA DRIVER
19303 M:      Akihiro Tsukada <tskd08@gmail.com>
19304 L:      linux-media@vger.kernel.org
19305 S:      Odd Fixes
19306 F:      drivers/media/dvb-frontends/tc90522*
19307
19308 TCP LOW PRIORITY MODULE
19309 M:      "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
19310 M:      "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
19311 S:      Maintained
19312 W:      http://tcp-lp-mod.sourceforge.net/
19313 F:      net/ipv4/tcp_lp.c
19314
19315 TDA10071 MEDIA DRIVER
19316 M:      Antti Palosaari <crope@iki.fi>
19317 L:      linux-media@vger.kernel.org
19318 S:      Maintained
19319 W:      https://linuxtv.org
19320 W:      http://palosaari.fi/linux/
19321 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19322 T:      git git://linuxtv.org/anttip/media_tree.git
19323 F:      drivers/media/dvb-frontends/tda10071*
19324
19325 TDA18212 MEDIA DRIVER
19326 M:      Antti Palosaari <crope@iki.fi>
19327 L:      linux-media@vger.kernel.org
19328 S:      Maintained
19329 W:      https://linuxtv.org
19330 W:      http://palosaari.fi/linux/
19331 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19332 T:      git git://linuxtv.org/anttip/media_tree.git
19333 F:      drivers/media/tuners/tda18212*
19334
19335 TDA18218 MEDIA DRIVER
19336 M:      Antti Palosaari <crope@iki.fi>
19337 L:      linux-media@vger.kernel.org
19338 S:      Maintained
19339 W:      https://linuxtv.org
19340 W:      http://palosaari.fi/linux/
19341 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19342 T:      git git://linuxtv.org/anttip/media_tree.git
19343 F:      drivers/media/tuners/tda18218*
19344
19345 TDA18250 MEDIA DRIVER
19346 M:      Olli Salonen <olli.salonen@iki.fi>
19347 L:      linux-media@vger.kernel.org
19348 S:      Maintained
19349 W:      https://linuxtv.org
19350 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19351 T:      git git://linuxtv.org/media_tree.git
19352 F:      drivers/media/tuners/tda18250*
19353
19354 TDA18271 MEDIA DRIVER
19355 M:      Michael Krufky <mkrufky@linuxtv.org>
19356 L:      linux-media@vger.kernel.org
19357 S:      Maintained
19358 W:      https://linuxtv.org
19359 W:      http://github.com/mkrufky
19360 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19361 T:      git git://linuxtv.org/mkrufky/tuners.git
19362 F:      drivers/media/tuners/tda18271*
19363
19364 TDA1997x MEDIA DRIVER
19365 M:      Tim Harvey <tharvey@gateworks.com>
19366 L:      linux-media@vger.kernel.org
19367 S:      Maintained
19368 W:      https://linuxtv.org
19369 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19370 F:      drivers/media/i2c/tda1997x.*
19371
19372 TDA827x MEDIA DRIVER
19373 M:      Michael Krufky <mkrufky@linuxtv.org>
19374 L:      linux-media@vger.kernel.org
19375 S:      Maintained
19376 W:      https://linuxtv.org
19377 W:      http://github.com/mkrufky
19378 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19379 T:      git git://linuxtv.org/mkrufky/tuners.git
19380 F:      drivers/media/tuners/tda8290.*
19381
19382 TDA8290 MEDIA DRIVER
19383 M:      Michael Krufky <mkrufky@linuxtv.org>
19384 L:      linux-media@vger.kernel.org
19385 S:      Maintained
19386 W:      https://linuxtv.org
19387 W:      http://github.com/mkrufky
19388 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19389 T:      git git://linuxtv.org/mkrufky/tuners.git
19390 F:      drivers/media/tuners/tda8290.*
19391
19392 TDA9840 MEDIA DRIVER
19393 M:      Hans Verkuil <hverkuil@xs4all.nl>
19394 L:      linux-media@vger.kernel.org
19395 S:      Maintained
19396 W:      https://linuxtv.org
19397 T:      git git://linuxtv.org/media_tree.git
19398 F:      drivers/media/i2c/tda9840*
19399
19400 TEA5761 TUNER DRIVER
19401 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
19402 L:      linux-media@vger.kernel.org
19403 S:      Odd fixes
19404 W:      https://linuxtv.org
19405 T:      git git://linuxtv.org/media_tree.git
19406 F:      drivers/media/tuners/tea5761.*
19407
19408 TEA5767 TUNER DRIVER
19409 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
19410 L:      linux-media@vger.kernel.org
19411 S:      Maintained
19412 W:      https://linuxtv.org
19413 T:      git git://linuxtv.org/media_tree.git
19414 F:      drivers/media/tuners/tea5767.*
19415
19416 TEA6415C MEDIA DRIVER
19417 M:      Hans Verkuil <hverkuil@xs4all.nl>
19418 L:      linux-media@vger.kernel.org
19419 S:      Maintained
19420 W:      https://linuxtv.org
19421 T:      git git://linuxtv.org/media_tree.git
19422 F:      drivers/media/i2c/tea6415c*
19423
19424 TEA6420 MEDIA DRIVER
19425 M:      Hans Verkuil <hverkuil@xs4all.nl>
19426 L:      linux-media@vger.kernel.org
19427 S:      Maintained
19428 W:      https://linuxtv.org
19429 T:      git git://linuxtv.org/media_tree.git
19430 F:      drivers/media/i2c/tea6420*
19431
19432 TEAM DRIVER
19433 M:      Jiri Pirko <jiri@resnulli.us>
19434 L:      netdev@vger.kernel.org
19435 S:      Supported
19436 F:      drivers/net/team/
19437 F:      include/linux/if_team.h
19438 F:      include/uapi/linux/if_team.h
19439
19440 TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
19441 M:      "Savoir-faire Linux Inc." <kernel@savoirfairelinux.com>
19442 S:      Maintained
19443 F:      arch/x86/platform/ts5500/
19444
19445 TECHNOTREND USB IR RECEIVER
19446 M:      Sean Young <sean@mess.org>
19447 L:      linux-media@vger.kernel.org
19448 S:      Maintained
19449 F:      drivers/media/rc/ttusbir.c
19450
19451 TECHWELL TW9910 VIDEO DECODER
19452 L:      linux-media@vger.kernel.org
19453 S:      Orphan
19454 F:      drivers/media/i2c/tw9910.c
19455 F:      include/media/i2c/tw9910.h
19456
19457 TEE SUBSYSTEM
19458 M:      Jens Wiklander <jens.wiklander@linaro.org>
19459 R:      Sumit Garg <sumit.garg@linaro.org>
19460 L:      op-tee@lists.trustedfirmware.org
19461 S:      Maintained
19462 F:      Documentation/staging/tee.rst
19463 F:      drivers/tee/
19464 F:      include/linux/tee_drv.h
19465 F:      include/uapi/linux/tee.h
19466
19467 TEGRA ARCHITECTURE SUPPORT
19468 M:      Thierry Reding <thierry.reding@gmail.com>
19469 M:      Jonathan Hunter <jonathanh@nvidia.com>
19470 L:      linux-tegra@vger.kernel.org
19471 S:      Supported
19472 Q:      http://patchwork.ozlabs.org/project/linux-tegra/list/
19473 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git
19474 N:      [^a-z]tegra
19475
19476 TEGRA CLOCK DRIVER
19477 M:      Peter De Schrijver <pdeschrijver@nvidia.com>
19478 M:      Prashant Gaikwad <pgaikwad@nvidia.com>
19479 S:      Supported
19480 F:      drivers/clk/tegra/
19481
19482 TEGRA DMA DRIVERS
19483 M:      Laxman Dewangan <ldewangan@nvidia.com>
19484 M:      Jon Hunter <jonathanh@nvidia.com>
19485 S:      Supported
19486 F:      drivers/dma/tegra*
19487
19488 TEGRA I2C DRIVER
19489 M:      Laxman Dewangan <ldewangan@nvidia.com>
19490 R:      Dmitry Osipenko <digetx@gmail.com>
19491 S:      Supported
19492 F:      drivers/i2c/busses/i2c-tegra.c
19493
19494 TEGRA IOMMU DRIVERS
19495 M:      Thierry Reding <thierry.reding@gmail.com>
19496 R:      Krishna Reddy <vdumpa@nvidia.com>
19497 L:      linux-tegra@vger.kernel.org
19498 S:      Supported
19499 F:      drivers/iommu/arm/arm-smmu/arm-smmu-nvidia.c
19500 F:      drivers/iommu/tegra*
19501
19502 TEGRA KBC DRIVER
19503 M:      Laxman Dewangan <ldewangan@nvidia.com>
19504 S:      Supported
19505 F:      drivers/input/keyboard/tegra-kbc.c
19506
19507 TEGRA NAND DRIVER
19508 M:      Stefan Agner <stefan@agner.ch>
19509 M:      Lucas Stach <dev@lynxeye.de>
19510 S:      Maintained
19511 F:      Documentation/devicetree/bindings/mtd/nvidia-tegra20-nand.txt
19512 F:      drivers/mtd/nand/raw/tegra_nand.c
19513
19514 TEGRA PWM DRIVER
19515 M:      Thierry Reding <thierry.reding@gmail.com>
19516 S:      Supported
19517 F:      drivers/pwm/pwm-tegra.c
19518
19519 TEGRA SERIAL DRIVER
19520 M:      Laxman Dewangan <ldewangan@nvidia.com>
19521 S:      Supported
19522 F:      drivers/tty/serial/serial-tegra.c
19523
19524 TEGRA SPI DRIVER
19525 M:      Laxman Dewangan <ldewangan@nvidia.com>
19526 S:      Supported
19527 F:      drivers/spi/spi-tegra*
19528
19529 TEGRA QUAD SPI DRIVER
19530 M:      Thierry Reding <thierry.reding@gmail.com>
19531 M:      Jonathan Hunter <jonathanh@nvidia.com>
19532 M:      Sowjanya Komatineni <skomatineni@nvidia.com>
19533 L:      linux-tegra@vger.kernel.org
19534 S:      Maintained
19535 F:      drivers/spi/spi-tegra210-quad.c
19536
19537 TEGRA VIDEO DRIVER
19538 M:      Thierry Reding <thierry.reding@gmail.com>
19539 M:      Jonathan Hunter <jonathanh@nvidia.com>
19540 M:      Sowjanya Komatineni <skomatineni@nvidia.com>
19541 L:      linux-media@vger.kernel.org
19542 L:      linux-tegra@vger.kernel.org
19543 S:      Maintained
19544 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
19545 F:      drivers/staging/media/tegra-video/
19546
19547 TEGRA XUSB PADCTL DRIVER
19548 M:      JC Kuo <jckuo@nvidia.com>
19549 S:      Supported
19550 F:      drivers/phy/tegra/xusb*
19551
19552 TEHUTI ETHERNET DRIVER
19553 M:      Andy Gospodarek <andy@greyhouse.net>
19554 L:      netdev@vger.kernel.org
19555 S:      Supported
19556 F:      drivers/net/ethernet/tehuti/*
19557
19558 TELECOM CLOCK DRIVER FOR MCPL0010
19559 M:      Mark Gross <markgross@kernel.org>
19560 S:      Supported
19561 F:      drivers/char/tlclk.c
19562
19563 TEMPO SEMICONDUCTOR DRIVERS
19564 M:      Steven Eckhoff <steven.eckhoff.opensource@gmail.com>
19565 S:      Maintained
19566 F:      Documentation/devicetree/bindings/sound/tscs*.txt
19567 F:      sound/soc/codecs/tscs*.c
19568 F:      sound/soc/codecs/tscs*.h
19569
19570 TENSILICA XTENSA PORT (xtensa)
19571 M:      Chris Zankel <chris@zankel.net>
19572 M:      Max Filippov <jcmvbkbc@gmail.com>
19573 L:      linux-xtensa@linux-xtensa.org
19574 S:      Maintained
19575 T:      git git://github.com/czankel/xtensa-linux.git
19576 F:      arch/xtensa/
19577 F:      drivers/irqchip/irq-xtensa-*
19578
19579 TEXAS INSTRUMENTS ASoC DRIVERS
19580 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
19581 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19582 S:      Maintained
19583 F:      Documentation/devicetree/bindings/sound/davinci-mcasp-audio.yaml
19584 F:      sound/soc/ti/
19585
19586 TEXAS INSTRUMENTS' DAC7612 DAC DRIVER
19587 M:      Ricardo Ribalda <ribalda@kernel.org>
19588 L:      linux-iio@vger.kernel.org
19589 S:      Supported
19590 F:      Documentation/devicetree/bindings/iio/dac/ti,dac7612.yaml
19591 F:      drivers/iio/dac/ti-dac7612.c
19592
19593 TEXAS INSTRUMENTS DMA DRIVERS
19594 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
19595 L:      dmaengine@vger.kernel.org
19596 S:      Maintained
19597 F:      Documentation/devicetree/bindings/dma/ti-dma-crossbar.txt
19598 F:      Documentation/devicetree/bindings/dma/ti-edma.txt
19599 F:      Documentation/devicetree/bindings/dma/ti/
19600 F:      drivers/dma/ti/
19601 X:      drivers/dma/ti/cppi41.c
19602 F:      include/linux/dma/k3-udma-glue.h
19603 F:      include/linux/dma/ti-cppi5.h
19604 F:      include/linux/dma/k3-psil.h
19605
19606 TEXAS INSTRUMENTS' SYSTEM CONTROL INTERFACE (TISCI) PROTOCOL DRIVER
19607 M:      Nishanth Menon <nm@ti.com>
19608 M:      Tero Kristo <kristo@kernel.org>
19609 M:      Santosh Shilimkar <ssantosh@kernel.org>
19610 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
19611 S:      Maintained
19612 F:      Documentation/devicetree/bindings/arm/keystone/ti,k3-sci-common.yaml
19613 F:      Documentation/devicetree/bindings/arm/keystone/ti,sci.yaml
19614 F:      Documentation/devicetree/bindings/clock/ti,sci-clk.yaml
19615 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-inta.yaml
19616 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-intr.yaml
19617 F:      Documentation/devicetree/bindings/reset/ti,sci-reset.yaml
19618 F:      Documentation/devicetree/bindings/soc/ti/sci-pm-domain.yaml
19619 F:      drivers/clk/keystone/sci-clk.c
19620 F:      drivers/firmware/ti_sci*
19621 F:      drivers/irqchip/irq-ti-sci-inta.c
19622 F:      drivers/irqchip/irq-ti-sci-intr.c
19623 F:      drivers/reset/reset-ti-sci.c
19624 F:      drivers/soc/ti/ti_sci_inta_msi.c
19625 F:      drivers/soc/ti/ti_sci_pm_domains.c
19626 F:      include/dt-bindings/soc/ti,sci_pm_domain.h
19627 F:      include/linux/soc/ti/ti_sci_inta_msi.h
19628 F:      include/linux/soc/ti/ti_sci_protocol.h
19629
19630 TEXAS INSTRUMENTS TPS23861 PoE PSE DRIVER
19631 M:      Robert Marko <robert.marko@sartura.hr>
19632 M:      Luka Perkov <luka.perkov@sartura.hr>
19633 L:      linux-hwmon@vger.kernel.org
19634 S:      Maintained
19635 F:      Documentation/devicetree/bindings/hwmon/ti,tps23861.yaml
19636 F:      Documentation/hwmon/tps23861.rst
19637 F:      drivers/hwmon/tps23861.c
19638
19639 TEXAS INSTRUMENTS' TMP117 TEMPERATURE SENSOR DRIVER
19640 M:      Puranjay Mohan <puranjay12@gmail.com>
19641 L:      linux-iio@vger.kernel.org
19642 S:      Supported
19643 F:      Documentation/devicetree/bindings/iio/temperature/ti,tmp117.yaml
19644 F:      drivers/iio/temperature/tmp117.c
19645
19646 THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER
19647 M:      Hans Verkuil <hverkuil@xs4all.nl>
19648 L:      linux-media@vger.kernel.org
19649 S:      Maintained
19650 W:      https://linuxtv.org
19651 T:      git git://linuxtv.org/media_tree.git
19652 F:      drivers/media/radio/radio-raremono.c
19653
19654 THERMAL
19655 M:      Rafael J. Wysocki <rafael@kernel.org>
19656 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
19657 R:      Amit Kucheria <amitk@kernel.org>
19658 R:      Zhang Rui <rui.zhang@intel.com>
19659 L:      linux-pm@vger.kernel.org
19660 S:      Supported
19661 Q:      https://patchwork.kernel.org/project/linux-pm/list/
19662 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git thermal
19663 F:      Documentation/ABI/testing/sysfs-class-thermal
19664 F:      Documentation/devicetree/bindings/thermal/
19665 F:      Documentation/driver-api/thermal/
19666 F:      drivers/thermal/
19667 F:      include/linux/cpu_cooling.h
19668 F:      include/linux/thermal.h
19669 F:      include/uapi/linux/thermal.h
19670 F:      tools/lib/thermal/
19671 F:      tools/thermal/
19672
19673 THERMAL DRIVER FOR AMLOGIC SOCS
19674 M:      Guillaume La Roque <glaroque@baylibre.com>
19675 L:      linux-pm@vger.kernel.org
19676 L:      linux-amlogic@lists.infradead.org
19677 S:      Supported
19678 W:      http://linux-meson.com/
19679 F:      Documentation/devicetree/bindings/thermal/amlogic,thermal.yaml
19680 F:      drivers/thermal/amlogic_thermal.c
19681
19682 THERMAL/CPU_COOLING
19683 M:      Amit Daniel Kachhap <amit.kachhap@gmail.com>
19684 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
19685 M:      Viresh Kumar <viresh.kumar@linaro.org>
19686 R:      Lukasz Luba <lukasz.luba@arm.com>
19687 L:      linux-pm@vger.kernel.org
19688 S:      Supported
19689 F:      Documentation/driver-api/thermal/cpu-cooling-api.rst
19690 F:      Documentation/driver-api/thermal/cpu-idle-cooling.rst
19691 F:      drivers/thermal/cpufreq_cooling.c
19692 F:      drivers/thermal/cpuidle_cooling.c
19693 F:      include/linux/cpu_cooling.h
19694
19695 THERMAL/POWER_ALLOCATOR
19696 M:      Lukasz Luba <lukasz.luba@arm.com>
19697 L:      linux-pm@vger.kernel.org
19698 S:      Maintained
19699 F:      Documentation/driver-api/thermal/power_allocator.rst
19700 F:      drivers/thermal/gov_power_allocator.c
19701 F:      include/trace/events/thermal_power_allocator.h
19702
19703 THINKPAD ACPI EXTRAS DRIVER
19704 M:      Henrique de Moraes Holschuh <hmh@hmh.eng.br>
19705 L:      ibm-acpi-devel@lists.sourceforge.net
19706 L:      platform-driver-x86@vger.kernel.org
19707 S:      Maintained
19708 W:      http://ibm-acpi.sourceforge.net
19709 W:      http://thinkwiki.org/wiki/Ibm-acpi
19710 T:      git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
19711 F:      drivers/platform/x86/thinkpad_acpi.c
19712
19713 THINKPAD LMI DRIVER
19714 M:      Mark Pearson <markpearson@lenovo.com>
19715 L:      platform-driver-x86@vger.kernel.org
19716 S:      Maintained
19717 F:      Documentation/ABI/testing/sysfs-class-firmware-attributes
19718 F:      drivers/platform/x86/think-lmi.?
19719
19720 THUNDERBOLT DMA TRAFFIC TEST DRIVER
19721 M:      Isaac Hazan <isaac.hazan@intel.com>
19722 L:      linux-usb@vger.kernel.org
19723 S:      Maintained
19724 F:      drivers/thunderbolt/dma_test.c
19725
19726 THUNDERBOLT DRIVER
19727 M:      Andreas Noever <andreas.noever@gmail.com>
19728 M:      Michael Jamet <michael.jamet@intel.com>
19729 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
19730 M:      Yehezkel Bernat <YehezkelShB@gmail.com>
19731 L:      linux-usb@vger.kernel.org
19732 S:      Maintained
19733 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/westeri/thunderbolt.git
19734 F:      Documentation/admin-guide/thunderbolt.rst
19735 F:      drivers/thunderbolt/
19736 F:      include/linux/thunderbolt.h
19737
19738 THUNDERBOLT NETWORK DRIVER
19739 M:      Michael Jamet <michael.jamet@intel.com>
19740 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
19741 M:      Yehezkel Bernat <YehezkelShB@gmail.com>
19742 L:      netdev@vger.kernel.org
19743 S:      Maintained
19744 F:      drivers/net/thunderbolt.c
19745
19746 THUNDERX GPIO DRIVER
19747 M:      Robert Richter <rric@kernel.org>
19748 S:      Odd Fixes
19749 F:      drivers/gpio/gpio-thunderx.c
19750
19751 TI ADS131E0X ADC SERIES DRIVER
19752 M:      Tomislav Denis <tomislav.denis@avl.com>
19753 L:      linux-iio@vger.kernel.org
19754 S:      Maintained
19755 F:      Documentation/devicetree/bindings/iio/adc/ti,ads131e08.yaml
19756 F:      drivers/iio/adc/ti-ads131e08.c
19757
19758 TI AM437X VPFE DRIVER
19759 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
19760 L:      linux-media@vger.kernel.org
19761 S:      Maintained
19762 W:      https://linuxtv.org
19763 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19764 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
19765 F:      drivers/media/platform/ti/am437x/
19766
19767 TI BANDGAP AND THERMAL DRIVER
19768 M:      Eduardo Valentin <edubezval@gmail.com>
19769 M:      Keerthy <j-keerthy@ti.com>
19770 L:      linux-pm@vger.kernel.org
19771 L:      linux-omap@vger.kernel.org
19772 S:      Maintained
19773 F:      drivers/thermal/ti-soc-thermal/
19774
19775 TI BQ27XXX POWER SUPPLY DRIVER
19776 F:      drivers/power/supply/bq27xxx_battery.c
19777 F:      drivers/power/supply/bq27xxx_battery_i2c.c
19778 F:      include/linux/power/bq27xxx_battery.h
19779
19780 TI CDCE706 CLOCK DRIVER
19781 M:      Max Filippov <jcmvbkbc@gmail.com>
19782 S:      Maintained
19783 F:      drivers/clk/clk-cdce706.c
19784
19785 TI CLOCK DRIVER
19786 M:      Tero Kristo <kristo@kernel.org>
19787 L:      linux-omap@vger.kernel.org
19788 S:      Odd Fixes
19789 F:      drivers/clk/ti/
19790 F:      include/linux/clk/ti.h
19791
19792 TI DAVINCI MACHINE SUPPORT
19793 M:      Sekhar Nori <nsekhar@ti.com>
19794 R:      Bartosz Golaszewski <brgl@bgdev.pl>
19795 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
19796 S:      Supported
19797 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nsekhar/linux-davinci.git
19798 F:      Documentation/devicetree/bindings/i2c/i2c-davinci.txt
19799 F:      arch/arm/boot/dts/da850*
19800 F:      arch/arm/mach-davinci/
19801 F:      drivers/i2c/busses/i2c-davinci.c
19802
19803 TI DAVINCI SERIES CLOCK DRIVER
19804 M:      David Lechner <david@lechnology.com>
19805 R:      Sekhar Nori <nsekhar@ti.com>
19806 S:      Maintained
19807 F:      Documentation/devicetree/bindings/clock/ti/davinci/
19808 F:      drivers/clk/davinci/
19809
19810 TI DAVINCI SERIES GPIO DRIVER
19811 M:      Keerthy <j-keerthy@ti.com>
19812 L:      linux-gpio@vger.kernel.org
19813 S:      Maintained
19814 F:      Documentation/devicetree/bindings/gpio/gpio-davinci.yaml
19815 F:      drivers/gpio/gpio-davinci.c
19816
19817 TI DAVINCI SERIES MEDIA DRIVER
19818 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
19819 L:      linux-media@vger.kernel.org
19820 S:      Maintained
19821 W:      https://linuxtv.org
19822 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19823 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
19824 F:      drivers/media/platform/ti/davinci/
19825 F:      include/media/davinci/
19826
19827 TI ENHANCED QUADRATURE ENCODER PULSE (eQEP) DRIVER
19828 R:      David Lechner <david@lechnology.com>
19829 L:      linux-iio@vger.kernel.org
19830 F:      Documentation/devicetree/bindings/counter/ti-eqep.yaml
19831 F:      drivers/counter/ti-eqep.c
19832
19833 TI ETHERNET SWITCH DRIVER (CPSW)
19834 R:      Grygorii Strashko <grygorii.strashko@ti.com>
19835 L:      linux-omap@vger.kernel.org
19836 L:      netdev@vger.kernel.org
19837 S:      Maintained
19838 F:      drivers/net/ethernet/ti/cpsw*
19839 F:      drivers/net/ethernet/ti/davinci*
19840
19841 TI FLASH MEDIA MEMORYSTICK/MMC DRIVERS
19842 M:      Alex Dubov <oakad@yahoo.com>
19843 S:      Maintained
19844 W:      http://tifmxx.berlios.de/
19845 F:      drivers/memstick/host/tifm_ms.c
19846 F:      drivers/misc/tifm*
19847 F:      drivers/mmc/host/tifm_sd.c
19848 F:      include/linux/tifm.h
19849
19850 TI KEYSTONE MULTICORE NAVIGATOR DRIVERS
19851 M:      Nishanth Menon <nm@ti.com>
19852 M:      Santosh Shilimkar <ssantosh@kernel.org>
19853 L:      linux-kernel@vger.kernel.org
19854 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
19855 S:      Maintained
19856 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ti/linux.git
19857 F:      drivers/soc/ti/*
19858
19859 TI LM49xxx FAMILY ASoC CODEC DRIVERS
19860 M:      M R Swami Reddy <mr.swami.reddy@ti.com>
19861 M:      Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
19862 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19863 S:      Maintained
19864 F:      sound/soc/codecs/isabelle*
19865 F:      sound/soc/codecs/lm49453*
19866
19867 TI PCM3060 ASoC CODEC DRIVER
19868 M:      Kirill Marinushkin <kmarinushkin@birdec.com>
19869 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19870 S:      Maintained
19871 F:      Documentation/devicetree/bindings/sound/pcm3060.txt
19872 F:      sound/soc/codecs/pcm3060*
19873
19874 TI TAS571X FAMILY ASoC CODEC DRIVER
19875 M:      Kevin Cernekee <cernekee@chromium.org>
19876 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19877 S:      Odd Fixes
19878 F:      sound/soc/codecs/tas571x*
19879
19880 TI TRF7970A NFC DRIVER
19881 M:      Mark Greer <mgreer@animalcreek.com>
19882 L:      linux-wireless@vger.kernel.org
19883 L:      linux-nfc@lists.01.org (subscribers-only)
19884 S:      Supported
19885 F:      Documentation/devicetree/bindings/net/nfc/ti,trf7970a.yaml
19886 F:      drivers/nfc/trf7970a.c
19887
19888 TI TSC2046 ADC DRIVER
19889 M:      Oleksij Rempel <o.rempel@pengutronix.de>
19890 R:      kernel@pengutronix.de
19891 L:      linux-iio@vger.kernel.org
19892 S:      Maintained
19893 F:      Documentation/devicetree/bindings/iio/adc/ti,tsc2046.yaml
19894 F:      drivers/iio/adc/ti-tsc2046.c
19895
19896 TI TWL4030 SERIES SOC CODEC DRIVER
19897 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
19898 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19899 S:      Maintained
19900 F:      sound/soc/codecs/twl4030*
19901
19902 TI VPE/CAL DRIVERS
19903 M:      Benoit Parrot <bparrot@ti.com>
19904 L:      linux-media@vger.kernel.org
19905 S:      Maintained
19906 W:      http://linuxtv.org/
19907 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19908 F:      Documentation/devicetree/bindings/media/ti,cal.yaml
19909 F:      Documentation/devicetree/bindings/media/ti,vpe.yaml
19910 F:      drivers/media/platform/ti/cal/
19911 F:      drivers/media/platform/ti/vpe/
19912
19913 TI WILINK WIRELESS DRIVERS
19914 L:      linux-wireless@vger.kernel.org
19915 S:      Orphan
19916 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wl12xx
19917 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wl1251
19918 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
19919 F:      drivers/net/wireless/ti/
19920 F:      include/linux/wl12xx.h
19921
19922 TIMEKEEPING, CLOCKSOURCE CORE, NTP, ALARMTIMER
19923 M:      John Stultz <jstultz@google.com>
19924 M:      Thomas Gleixner <tglx@linutronix.de>
19925 R:      Stephen Boyd <sboyd@kernel.org>
19926 L:      linux-kernel@vger.kernel.org
19927 S:      Supported
19928 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
19929 F:      include/linux/clocksource.h
19930 F:      include/linux/time.h
19931 F:      include/linux/timex.h
19932 F:      include/uapi/linux/time.h
19933 F:      include/uapi/linux/timex.h
19934 F:      kernel/time/alarmtimer.c
19935 F:      kernel/time/clocksource.c
19936 F:      kernel/time/ntp.c
19937 F:      kernel/time/time*.c
19938 F:      tools/testing/selftests/timers/
19939
19940 TIPC NETWORK LAYER
19941 M:      Jon Maloy <jmaloy@redhat.com>
19942 M:      Ying Xue <ying.xue@windriver.com>
19943 L:      netdev@vger.kernel.org (core kernel code)
19944 L:      tipc-discussion@lists.sourceforge.net (user apps, general discussion)
19945 S:      Maintained
19946 W:      http://tipc.sourceforge.net/
19947 F:      include/uapi/linux/tipc*.h
19948 F:      net/tipc/
19949
19950 TLAN NETWORK DRIVER
19951 M:      Samuel Chessman <chessman@tux.org>
19952 L:      tlan-devel@lists.sourceforge.net (subscribers-only)
19953 S:      Maintained
19954 W:      http://sourceforge.net/projects/tlan/
19955 F:      Documentation/networking/device_drivers/ethernet/ti/tlan.rst
19956 F:      drivers/net/ethernet/ti/tlan.*
19957
19958 TM6000 VIDEO4LINUX DRIVER
19959 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
19960 L:      linux-media@vger.kernel.org
19961 S:      Odd fixes
19962 W:      https://linuxtv.org
19963 T:      git git://linuxtv.org/media_tree.git
19964 F:      Documentation/admin-guide/media/tm6000*
19965 F:      drivers/media/usb/tm6000/
19966
19967 TMIO/SDHI MMC DRIVER
19968 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
19969 L:      linux-mmc@vger.kernel.org
19970 L:      linux-renesas-soc@vger.kernel.org
19971 S:      Supported
19972 F:      drivers/mmc/host/renesas_sdhi*
19973 F:      drivers/mmc/host/tmio_mmc*
19974 F:      include/linux/mfd/tmio.h
19975
19976 TMP401 HARDWARE MONITOR DRIVER
19977 M:      Guenter Roeck <linux@roeck-us.net>
19978 L:      linux-hwmon@vger.kernel.org
19979 S:      Maintained
19980 F:      Documentation/devicetree/bindings/hwmon/ti,tmp401.yaml
19981 F:      Documentation/hwmon/tmp401.rst
19982 F:      drivers/hwmon/tmp401.c
19983
19984 TMP464 HARDWARE MONITOR DRIVER
19985 M:      Agathe Porte <agathe.porte@nokia.com>
19986 M:      Guenter Roeck <linux@roeck-us.net>
19987 L:      linux-hwmon@vger.kernel.org
19988 S:      Maintained
19989 F:      Documentation/devicetree/bindings/hwmon/ti,tmp464.yaml
19990 F:      Documentation/hwmon/tmp464.rst
19991 F:      drivers/hwmon/tmp464.c
19992
19993 TMP513 HARDWARE MONITOR DRIVER
19994 M:      Eric Tremblay <etremblay@distech-controls.com>
19995 L:      linux-hwmon@vger.kernel.org
19996 S:      Maintained
19997 F:      Documentation/hwmon/tmp513.rst
19998 F:      drivers/hwmon/tmp513.c
19999
20000 TMPFS (SHMEM FILESYSTEM)
20001 M:      Hugh Dickins <hughd@google.com>
20002 L:      linux-mm@kvack.org
20003 S:      Maintained
20004 F:      include/linux/shmem_fs.h
20005 F:      mm/shmem.c
20006
20007 TOMOYO SECURITY MODULE
20008 M:      Kentaro Takeda <takedakn@nttdata.co.jp>
20009 M:      Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
20010 L:      tomoyo-dev-en@lists.osdn.me (subscribers-only, for developers in English)
20011 L:      tomoyo-users-en@lists.osdn.me (subscribers-only, for users in English)
20012 L:      tomoyo-dev@lists.osdn.me (subscribers-only, for developers in Japanese)
20013 L:      tomoyo-users@lists.osdn.me (subscribers-only, for users in Japanese)
20014 S:      Maintained
20015 W:      https://tomoyo.osdn.jp/
20016 F:      security/tomoyo/
20017
20018 TOPSTAR LAPTOP EXTRAS DRIVER
20019 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
20020 L:      platform-driver-x86@vger.kernel.org
20021 S:      Maintained
20022 F:      drivers/platform/x86/topstar-laptop.c
20023
20024 TORTURE-TEST MODULES
20025 M:      Davidlohr Bueso <dave@stgolabs.net>
20026 M:      "Paul E. McKenney" <paulmck@kernel.org>
20027 M:      Josh Triplett <josh@joshtriplett.org>
20028 L:      linux-kernel@vger.kernel.org
20029 S:      Supported
20030 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
20031 F:      Documentation/RCU/torture.rst
20032 F:      kernel/locking/locktorture.c
20033 F:      kernel/rcu/rcuscale.c
20034 F:      kernel/rcu/rcutorture.c
20035 F:      kernel/rcu/refscale.c
20036 F:      kernel/torture.c
20037
20038 TOSHIBA ACPI EXTRAS DRIVER
20039 M:      Azael Avalos <coproscefalo@gmail.com>
20040 L:      platform-driver-x86@vger.kernel.org
20041 S:      Maintained
20042 F:      drivers/platform/x86/toshiba_acpi.c
20043
20044 TOSHIBA BLUETOOTH DRIVER
20045 M:      Azael Avalos <coproscefalo@gmail.com>
20046 L:      platform-driver-x86@vger.kernel.org
20047 S:      Maintained
20048 F:      drivers/platform/x86/toshiba_bluetooth.c
20049
20050 TOSHIBA HDD ACTIVE PROTECTION SENSOR DRIVER
20051 M:      Azael Avalos <coproscefalo@gmail.com>
20052 L:      platform-driver-x86@vger.kernel.org
20053 S:      Maintained
20054 F:      drivers/platform/x86/toshiba_haps.c
20055
20056 TOSHIBA SMM DRIVER
20057 M:      Jonathan Buzzard <jonathan@buzzard.org.uk>
20058 S:      Maintained
20059 W:      http://www.buzzard.org.uk/toshiba/
20060 F:      drivers/char/toshiba.c
20061 F:      include/linux/toshiba.h
20062 F:      include/uapi/linux/toshiba.h
20063
20064 TOSHIBA TC358743 DRIVER
20065 M:      Mats Randgaard <matrandg@cisco.com>
20066 L:      linux-media@vger.kernel.org
20067 S:      Maintained
20068 F:      drivers/media/i2c/tc358743*
20069 F:      include/media/i2c/tc358743.h
20070
20071 TOSHIBA WMI HOTKEYS DRIVER
20072 M:      Azael Avalos <coproscefalo@gmail.com>
20073 L:      platform-driver-x86@vger.kernel.org
20074 S:      Maintained
20075 F:      drivers/platform/x86/toshiba-wmi.c
20076
20077 TPM DEVICE DRIVER
20078 M:      Peter Huewe <peterhuewe@gmx.de>
20079 M:      Jarkko Sakkinen <jarkko@kernel.org>
20080 R:      Jason Gunthorpe <jgg@ziepe.ca>
20081 L:      linux-integrity@vger.kernel.org
20082 S:      Maintained
20083 W:      https://kernsec.org/wiki/index.php/Linux_Kernel_Integrity
20084 Q:      https://patchwork.kernel.org/project/linux-integrity/list/
20085 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jarkko/linux-tpmdd.git
20086 F:      drivers/char/tpm/
20087
20088 TRACING
20089 M:      Steven Rostedt <rostedt@goodmis.org>
20090 M:      Ingo Molnar <mingo@redhat.com>
20091 S:      Maintained
20092 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rostedt/linux-trace.git
20093 F:      Documentation/trace/ftrace.rst
20094 F:      arch/*/*/*/ftrace.h
20095 F:      arch/*/kernel/ftrace.c
20096 F:      fs/tracefs/
20097 F:      include/*/ftrace.h
20098 F:      include/linux/trace*.h
20099 F:      include/trace/
20100 F:      kernel/trace/
20101 F:      tools/testing/selftests/ftrace/
20102
20103 TRACING MMIO ACCESSES (MMIOTRACE)
20104 M:      Steven Rostedt <rostedt@goodmis.org>
20105 M:      Ingo Molnar <mingo@kernel.org>
20106 R:      Karol Herbst <karolherbst@gmail.com>
20107 R:      Pekka Paalanen <ppaalanen@gmail.com>
20108 L:      linux-kernel@vger.kernel.org
20109 L:      nouveau@lists.freedesktop.org
20110 S:      Maintained
20111 F:      arch/x86/mm/kmmio.c
20112 F:      arch/x86/mm/mmio-mod.c
20113 F:      arch/x86/mm/testmmiotrace.c
20114 F:      include/linux/mmiotrace.h
20115 F:      kernel/trace/trace_mmiotrace.c
20116
20117 TRACING OS NOISE / LATENCY TRACERS
20118 M:      Steven Rostedt <rostedt@goodmis.org>
20119 M:      Daniel Bristot de Oliveira <bristot@kernel.org>
20120 S:      Maintained
20121 F:      kernel/trace/trace_osnoise.c
20122 F:      include/trace/events/osnoise.h
20123 F:      kernel/trace/trace_hwlat.c
20124 F:      kernel/trace/trace_irqsoff.c
20125 F:      kernel/trace/trace_sched_wakeup.c
20126 F:      Documentation/trace/osnoise-tracer.rst
20127 F:      Documentation/trace/timerlat-tracer.rst
20128 F:      Documentation/trace/hwlat_detector.rst
20129 F:      arch/*/kernel/trace.c
20130
20131 Real-time Linux Analysis (RTLA) tools
20132 M:      Daniel Bristot de Oliveira <bristot@kernel.org>
20133 M:      Steven Rostedt <rostedt@goodmis.org>
20134 L:      linux-trace-devel@vger.kernel.org
20135 S:      Maintained
20136 F:      Documentation/tools/rtla/
20137 F:      tools/tracing/rtla/
20138
20139 TRADITIONAL CHINESE DOCUMENTATION
20140 M:      Hu Haowen <src.res@email.cn>
20141 L:      linux-doc-tw-discuss@lists.sourceforge.net
20142 S:      Maintained
20143 W:      https://github.com/srcres258/linux-doc
20144 T:      git git://github.com/srcres258/linux-doc.git doc-zh-tw
20145 F:      Documentation/translations/zh_TW/
20146
20147 TTY LAYER
20148 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
20149 M:      Jiri Slaby <jirislaby@kernel.org>
20150 S:      Supported
20151 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
20152 F:      Documentation/driver-api/serial/
20153 F:      drivers/tty/
20154 F:      drivers/tty/serial/serial_core.c
20155 F:      include/linux/selection.h
20156 F:      include/linux/serial.h
20157 F:      include/linux/serial_core.h
20158 F:      include/linux/sysrq.h
20159 F:      include/linux/tty*.h
20160 F:      include/linux/vt.h
20161 F:      include/linux/vt_*.h
20162 F:      include/uapi/linux/serial.h
20163 F:      include/uapi/linux/serial_core.h
20164 F:      include/uapi/linux/tty.h
20165
20166 TUA9001 MEDIA DRIVER
20167 M:      Antti Palosaari <crope@iki.fi>
20168 L:      linux-media@vger.kernel.org
20169 S:      Maintained
20170 W:      https://linuxtv.org
20171 W:      http://palosaari.fi/linux/
20172 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
20173 T:      git git://linuxtv.org/anttip/media_tree.git
20174 F:      drivers/media/tuners/tua9001*
20175
20176 TULIP NETWORK DRIVERS
20177 L:      netdev@vger.kernel.org
20178 L:      linux-parisc@vger.kernel.org
20179 S:      Orphan
20180 F:      drivers/net/ethernet/dec/tulip/
20181
20182 TUN/TAP driver
20183 M:      Maxim Krasnyansky <maxk@qti.qualcomm.com>
20184 S:      Maintained
20185 W:      http://vtun.sourceforge.net/tun
20186 F:      Documentation/networking/tuntap.rst
20187 F:      arch/um/os-Linux/drivers/
20188
20189 TURBOCHANNEL SUBSYSTEM
20190 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
20191 M:      Ralf Baechle <ralf@linux-mips.org>
20192 L:      linux-mips@vger.kernel.org
20193 S:      Maintained
20194 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
20195 F:      drivers/tc/
20196 F:      include/linux/tc.h
20197
20198 TURBOSTAT UTILITY
20199 M:      "Len Brown" <lenb@kernel.org>
20200 L:      linux-pm@vger.kernel.org
20201 S:      Supported
20202 Q:      https://patchwork.kernel.org/project/linux-pm/list/
20203 B:      https://bugzilla.kernel.org
20204 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git turbostat
20205 F:      tools/power/x86/turbostat/
20206
20207 TW5864 VIDEO4LINUX DRIVER
20208 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
20209 M:      Anton Sviridenko <anton@corp.bluecherry.net>
20210 M:      Andrey Utkin <andrey.utkin@corp.bluecherry.net>
20211 M:      Andrey Utkin <andrey_utkin@fastmail.com>
20212 L:      linux-media@vger.kernel.org
20213 S:      Supported
20214 F:      drivers/media/pci/tw5864/
20215
20216 TW68 VIDEO4LINUX DRIVER
20217 M:      Hans Verkuil <hverkuil@xs4all.nl>
20218 L:      linux-media@vger.kernel.org
20219 S:      Odd Fixes
20220 W:      https://linuxtv.org
20221 T:      git git://linuxtv.org/media_tree.git
20222 F:      drivers/media/pci/tw68/
20223
20224 TW686X VIDEO4LINUX DRIVER
20225 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
20226 L:      linux-media@vger.kernel.org
20227 S:      Maintained
20228 W:      http://linuxtv.org
20229 T:      git git://linuxtv.org/media_tree.git
20230 F:      drivers/media/pci/tw686x/
20231
20232 U-BOOT ENVIRONMENT VARIABLES
20233 M:      Rafał Miłecki <rafal@milecki.pl>
20234 S:      Maintained
20235 F:      Documentation/devicetree/bindings/nvmem/u-boot,env.yaml
20236
20237 UACCE ACCELERATOR FRAMEWORK
20238 M:      Zhangfei Gao <zhangfei.gao@linaro.org>
20239 M:      Zhou Wang <wangzhou1@hisilicon.com>
20240 L:      linux-accelerators@lists.ozlabs.org
20241 L:      linux-kernel@vger.kernel.org
20242 S:      Maintained
20243 F:      Documentation/ABI/testing/sysfs-driver-uacce
20244 F:      Documentation/misc-devices/uacce.rst
20245 F:      drivers/misc/uacce/
20246 F:      include/linux/uacce.h
20247 F:      include/uapi/misc/uacce/
20248
20249 UBI FILE SYSTEM (UBIFS)
20250 M:      Richard Weinberger <richard@nod.at>
20251 L:      linux-mtd@lists.infradead.org
20252 S:      Supported
20253 W:      http://www.linux-mtd.infradead.org/doc/ubifs.html
20254 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
20255 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
20256 F:      Documentation/ABI/testing/sysfs-fs-ubifs
20257 F:      Documentation/filesystems/ubifs-authentication.rst
20258 F:      Documentation/filesystems/ubifs.rst
20259 F:      fs/ubifs/
20260
20261 UCLINUX (M68KNOMMU AND COLDFIRE)
20262 M:      Greg Ungerer <gerg@linux-m68k.org>
20263 L:      linux-m68k@lists.linux-m68k.org
20264 L:      uclinux-dev@uclinux.org  (subscribers-only)
20265 S:      Maintained
20266 W:      http://www.linux-m68k.org/
20267 W:      http://www.uclinux.org/
20268 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git
20269 F:      arch/m68k/*/*_no.*
20270 F:      arch/m68k/68*/
20271 F:      arch/m68k/coldfire/
20272 F:      arch/m68k/include/asm/*_no.*
20273
20274 UDF FILESYSTEM
20275 M:      Jan Kara <jack@suse.com>
20276 S:      Maintained
20277 F:      Documentation/filesystems/udf.rst
20278 F:      fs/udf/
20279
20280 UDRAW TABLET
20281 M:      Bastien Nocera <hadess@hadess.net>
20282 L:      linux-input@vger.kernel.org
20283 S:      Maintained
20284 F:      drivers/hid/hid-udraw-ps3.c
20285
20286 UFS FILESYSTEM
20287 M:      Evgeniy Dushistov <dushistov@mail.ru>
20288 S:      Maintained
20289 F:      Documentation/admin-guide/ufs.rst
20290 F:      fs/ufs/
20291
20292 UHID USERSPACE HID IO DRIVER
20293 M:      David Rheinsberg <david.rheinsberg@gmail.com>
20294 L:      linux-input@vger.kernel.org
20295 S:      Maintained
20296 F:      drivers/hid/uhid.c
20297 F:      include/uapi/linux/uhid.h
20298
20299 ULPI BUS
20300 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
20301 L:      linux-usb@vger.kernel.org
20302 S:      Maintained
20303 F:      drivers/usb/common/ulpi.c
20304 F:      include/linux/ulpi/
20305
20306 UNICODE SUBSYSTEM
20307 M:      Gabriel Krisman Bertazi <krisman@collabora.com>
20308 L:      linux-fsdevel@vger.kernel.org
20309 S:      Supported
20310 F:      fs/unicode/
20311
20312 UNIFDEF
20313 M:      Tony Finch <dot@dotat.at>
20314 S:      Maintained
20315 W:      http://dotat.at/prog/unifdef
20316 F:      scripts/unifdef.c
20317
20318 UNIFORM CDROM DRIVER
20319 M:      Phillip Potter <phil@philpotter.co.uk>
20320 S:      Maintained
20321 F:      Documentation/cdrom/
20322 F:      drivers/cdrom/cdrom.c
20323 F:      include/linux/cdrom.h
20324 F:      include/uapi/linux/cdrom.h
20325
20326 UNISYS S-PAR DRIVERS
20327 M:      David Kershner <david.kershner@unisys.com>
20328 L:      sparmaintainer@unisys.com (Unisys internal)
20329 S:      Supported
20330 F:      drivers/staging/unisys/
20331 F:      drivers/visorbus/
20332 F:      include/linux/visorbus.h
20333
20334 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
20335 R:      Alim Akhtar <alim.akhtar@samsung.com>
20336 R:      Avri Altman <avri.altman@wdc.com>
20337 L:      linux-scsi@vger.kernel.org
20338 S:      Supported
20339 F:      Documentation/devicetree/bindings/ufs/
20340 F:      Documentation/scsi/ufs.rst
20341 F:      drivers/scsi/ufs/
20342
20343 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER DWC HOOKS
20344 M:      Pedro Sousa <pedrom.sousa@synopsys.com>
20345 L:      linux-scsi@vger.kernel.org
20346 S:      Supported
20347 F:      drivers/scsi/ufs/*dwc*
20348
20349 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER MEDIATEK HOOKS
20350 M:      Stanley Chu <stanley.chu@mediatek.com>
20351 L:      linux-scsi@vger.kernel.org
20352 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
20353 S:      Maintained
20354 F:      drivers/scsi/ufs/ufs-mediatek*
20355
20356 UNSORTED BLOCK IMAGES (UBI)
20357 M:      Richard Weinberger <richard@nod.at>
20358 L:      linux-mtd@lists.infradead.org
20359 S:      Supported
20360 W:      http://www.linux-mtd.infradead.org/
20361 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
20362 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
20363 F:      drivers/mtd/ubi/
20364 F:      include/linux/mtd/ubi.h
20365 F:      include/uapi/mtd/ubi-user.h
20366
20367 USB "USBNET" DRIVER FRAMEWORK
20368 M:      Oliver Neukum <oneukum@suse.com>
20369 L:      netdev@vger.kernel.org
20370 S:      Maintained
20371 W:      http://www.linux-usb.org/usbnet
20372 F:      drivers/net/usb/usbnet.c
20373 F:      include/linux/usb/usbnet.h
20374
20375 USB ACM DRIVER
20376 M:      Oliver Neukum <oneukum@suse.com>
20377 L:      linux-usb@vger.kernel.org
20378 S:      Maintained
20379 F:      Documentation/usb/acm.rst
20380 F:      drivers/usb/class/cdc-acm.*
20381
20382 USB APPLE MFI FASTCHARGE DRIVER
20383 M:      Bastien Nocera <hadess@hadess.net>
20384 L:      linux-usb@vger.kernel.org
20385 S:      Maintained
20386 F:      drivers/usb/misc/apple-mfi-fastcharge.c
20387
20388 USB AR5523 WIRELESS DRIVER
20389 M:      Pontus Fuchs <pontus.fuchs@gmail.com>
20390 L:      linux-wireless@vger.kernel.org
20391 S:      Maintained
20392 F:      drivers/net/wireless/ath/ar5523/
20393
20394 USB ATTACHED SCSI
20395 M:      Oliver Neukum <oneukum@suse.com>
20396 L:      linux-usb@vger.kernel.org
20397 L:      linux-scsi@vger.kernel.org
20398 S:      Maintained
20399 F:      drivers/usb/storage/uas.c
20400
20401 USB CDC ETHERNET DRIVER
20402 M:      Oliver Neukum <oliver@neukum.org>
20403 L:      linux-usb@vger.kernel.org
20404 S:      Maintained
20405 F:      drivers/net/usb/cdc_*.c
20406 F:      include/uapi/linux/usb/cdc.h
20407
20408 USB CHAOSKEY DRIVER
20409 M:      Keith Packard <keithp@keithp.com>
20410 L:      linux-usb@vger.kernel.org
20411 S:      Maintained
20412 F:      drivers/usb/misc/chaoskey.c
20413
20414 USB CYPRESS C67X00 DRIVER
20415 L:      linux-usb@vger.kernel.org
20416 S:      Orphan
20417 F:      drivers/usb/c67x00/
20418
20419 USB DAVICOM DM9601 DRIVER
20420 M:      Peter Korsgaard <peter@korsgaard.com>
20421 L:      netdev@vger.kernel.org
20422 S:      Maintained
20423 W:      http://www.linux-usb.org/usbnet
20424 F:      drivers/net/usb/dm9601.c
20425
20426 USB EHCI DRIVER
20427 M:      Alan Stern <stern@rowland.harvard.edu>
20428 L:      linux-usb@vger.kernel.org
20429 S:      Maintained
20430 F:      Documentation/usb/ehci.rst
20431 F:      drivers/usb/host/ehci*
20432
20433 USB GADGET/PERIPHERAL SUBSYSTEM
20434 M:      Felipe Balbi <balbi@kernel.org>
20435 L:      linux-usb@vger.kernel.org
20436 S:      Maintained
20437 W:      http://www.linux-usb.org/gadget
20438 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
20439 F:      drivers/usb/gadget/
20440 F:      include/linux/usb/gadget*
20441
20442 USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
20443 M:      Jiri Kosina <jikos@kernel.org>
20444 M:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
20445 L:      linux-usb@vger.kernel.org
20446 S:      Maintained
20447 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
20448 F:      Documentation/hid/hiddev.rst
20449 F:      drivers/hid/usbhid/
20450
20451 USB INTEL XHCI ROLE MUX DRIVER
20452 M:      Hans de Goede <hdegoede@redhat.com>
20453 L:      linux-usb@vger.kernel.org
20454 S:      Maintained
20455 F:      drivers/usb/roles/intel-xhci-usb-role-switch.c
20456
20457 USB IP DRIVER FOR HISILICON KIRIN 960
20458 M:      Yu Chen <chenyu56@huawei.com>
20459 M:      Binghui Wang <wangbinghui@hisilicon.com>
20460 L:      linux-usb@vger.kernel.org
20461 S:      Maintained
20462 F:      Documentation/devicetree/bindings/phy/hisilicon,hi3660-usb3.yaml
20463 F:      drivers/phy/hisilicon/phy-hi3660-usb3.c
20464
20465 USB IP DRIVER FOR HISILICON KIRIN 970
20466 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
20467 L:      linux-usb@vger.kernel.org
20468 S:      Maintained
20469 F:      Documentation/devicetree/bindings/phy/hisilicon,hi3670-usb3.yaml
20470 F:      drivers/phy/hisilicon/phy-hi3670-usb3.c
20471
20472 USB ISP116X DRIVER
20473 M:      Olav Kongas <ok@artecdesign.ee>
20474 L:      linux-usb@vger.kernel.org
20475 S:      Maintained
20476 F:      drivers/usb/host/isp116x*
20477 F:      include/linux/usb/isp116x.h
20478
20479 USB ISP1760 DRIVER
20480 M:      Rui Miguel Silva <rui.silva@linaro.org>
20481 L:      linux-usb@vger.kernel.org
20482 S:      Maintained
20483 F:      drivers/usb/isp1760/*
20484 F:      Documentation/devicetree/bindings/usb/nxp,isp1760.yaml
20485
20486 USB LAN78XX ETHERNET DRIVER
20487 M:      Woojung Huh <woojung.huh@microchip.com>
20488 M:      UNGLinuxDriver@microchip.com
20489 L:      netdev@vger.kernel.org
20490 S:      Maintained
20491 F:      Documentation/devicetree/bindings/net/microchip,lan78xx.txt
20492 F:      drivers/net/usb/lan78xx.*
20493 F:      include/dt-bindings/net/microchip-lan78xx.h
20494
20495 USB MASS STORAGE DRIVER
20496 M:      Alan Stern <stern@rowland.harvard.edu>
20497 L:      linux-usb@vger.kernel.org
20498 L:      usb-storage@lists.one-eyed-alien.net
20499 S:      Maintained
20500 F:      drivers/usb/storage/
20501
20502 USB MIDI DRIVER
20503 M:      Clemens Ladisch <clemens@ladisch.de>
20504 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
20505 S:      Maintained
20506 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
20507 F:      sound/usb/midi.*
20508
20509 USB NETWORKING DRIVERS
20510 L:      linux-usb@vger.kernel.org
20511 S:      Odd Fixes
20512 F:      drivers/net/usb/
20513
20514 USB OHCI DRIVER
20515 M:      Alan Stern <stern@rowland.harvard.edu>
20516 L:      linux-usb@vger.kernel.org
20517 S:      Maintained
20518 F:      Documentation/usb/ohci.rst
20519 F:      drivers/usb/host/ohci*
20520
20521 USB OTG FSM (Finite State Machine)
20522 M:      Peter Chen <peter.chen@kernel.org>
20523 L:      linux-usb@vger.kernel.org
20524 S:      Maintained
20525 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
20526 F:      drivers/usb/common/usb-otg-fsm.c
20527
20528 USB OVER IP DRIVER
20529 M:      Valentina Manea <valentina.manea.m@gmail.com>
20530 M:      Shuah Khan <shuah@kernel.org>
20531 M:      Shuah Khan <skhan@linuxfoundation.org>
20532 L:      linux-usb@vger.kernel.org
20533 S:      Maintained
20534 F:      Documentation/usb/usbip_protocol.rst
20535 F:      drivers/usb/usbip/
20536 F:      tools/testing/selftests/drivers/usb/usbip/
20537 F:      tools/usb/usbip/
20538
20539 USB PEGASUS DRIVER
20540 M:      Petko Manolov <petkan@nucleusys.com>
20541 L:      linux-usb@vger.kernel.org
20542 L:      netdev@vger.kernel.org
20543 S:      Maintained
20544 W:      https://github.com/petkan/pegasus
20545 T:      git git://github.com/petkan/pegasus.git
20546 F:      drivers/net/usb/pegasus.*
20547
20548 USB PHY LAYER
20549 M:      Felipe Balbi <balbi@kernel.org>
20550 L:      linux-usb@vger.kernel.org
20551 S:      Maintained
20552 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
20553 F:      drivers/usb/phy/
20554
20555 USB PRINTER DRIVER (usblp)
20556 M:      Pete Zaitcev <zaitcev@redhat.com>
20557 L:      linux-usb@vger.kernel.org
20558 S:      Supported
20559 F:      drivers/usb/class/usblp.c
20560
20561 USB RAW GADGET DRIVER
20562 R:      Andrey Konovalov <andreyknvl@gmail.com>
20563 L:      linux-usb@vger.kernel.org
20564 S:      Maintained
20565 F:      Documentation/usb/raw-gadget.rst
20566 F:      drivers/usb/gadget/legacy/raw_gadget.c
20567 F:      include/uapi/linux/usb/raw_gadget.h
20568
20569 USB QMI WWAN NETWORK DRIVER
20570 M:      Bjørn Mork <bjorn@mork.no>
20571 L:      netdev@vger.kernel.org
20572 S:      Maintained
20573 F:      Documentation/ABI/testing/sysfs-class-net-qmi
20574 F:      drivers/net/usb/qmi_wwan.c
20575
20576 USB RTL8150 DRIVER
20577 M:      Petko Manolov <petkan@nucleusys.com>
20578 L:      linux-usb@vger.kernel.org
20579 L:      netdev@vger.kernel.org
20580 S:      Maintained
20581 W:      https://github.com/petkan/rtl8150
20582 T:      git git://github.com/petkan/rtl8150.git
20583 F:      drivers/net/usb/rtl8150.c
20584
20585 USB SERIAL SUBSYSTEM
20586 M:      Johan Hovold <johan@kernel.org>
20587 L:      linux-usb@vger.kernel.org
20588 S:      Maintained
20589 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/usb-serial.git
20590 F:      Documentation/usb/usb-serial.rst
20591 F:      drivers/usb/serial/
20592 F:      include/linux/usb/serial.h
20593
20594 USB SMSC75XX ETHERNET DRIVER
20595 M:      Steve Glendinning <steve.glendinning@shawell.net>
20596 L:      netdev@vger.kernel.org
20597 S:      Maintained
20598 F:      drivers/net/usb/smsc75xx.*
20599
20600 USB SMSC95XX ETHERNET DRIVER
20601 M:      Steve Glendinning <steve.glendinning@shawell.net>
20602 M:      UNGLinuxDriver@microchip.com
20603 L:      netdev@vger.kernel.org
20604 S:      Maintained
20605 F:      drivers/net/usb/smsc95xx.*
20606
20607 USB SUBSYSTEM
20608 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
20609 L:      linux-usb@vger.kernel.org
20610 S:      Supported
20611 W:      http://www.linux-usb.org
20612 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
20613 F:      Documentation/devicetree/bindings/usb/
20614 F:      Documentation/usb/
20615 F:      drivers/usb/
20616 F:      include/linux/usb.h
20617 F:      include/linux/usb/
20618
20619 USB TYPEC BUS FOR ALTERNATE MODES
20620 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
20621 L:      linux-usb@vger.kernel.org
20622 S:      Maintained
20623 F:      Documentation/ABI/testing/sysfs-bus-typec
20624 F:      Documentation/driver-api/usb/typec_bus.rst
20625 F:      drivers/usb/typec/altmodes/
20626 F:      include/linux/usb/typec_altmode.h
20627
20628 USB TYPEC CLASS
20629 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
20630 L:      linux-usb@vger.kernel.org
20631 S:      Maintained
20632 F:      Documentation/ABI/testing/sysfs-class-typec
20633 F:      Documentation/driver-api/usb/typec.rst
20634 F:      drivers/usb/typec/
20635 F:      include/linux/usb/typec.h
20636
20637 USB TYPEC INTEL PMC MUX DRIVER
20638 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
20639 L:      linux-usb@vger.kernel.org
20640 S:      Maintained
20641 F:      Documentation/firmware-guide/acpi/intel-pmc-mux.rst
20642 F:      drivers/usb/typec/mux/intel_pmc_mux.c
20643
20644 USB TYPEC PI3USB30532 MUX DRIVER
20645 M:      Hans de Goede <hdegoede@redhat.com>
20646 L:      linux-usb@vger.kernel.org
20647 S:      Maintained
20648 F:      drivers/usb/typec/mux/pi3usb30532.c
20649
20650 USB TYPEC PORT CONTROLLER DRIVERS
20651 M:      Guenter Roeck <linux@roeck-us.net>
20652 L:      linux-usb@vger.kernel.org
20653 S:      Maintained
20654 F:      drivers/usb/typec/tcpm/
20655
20656 USB UHCI DRIVER
20657 M:      Alan Stern <stern@rowland.harvard.edu>
20658 L:      linux-usb@vger.kernel.org
20659 S:      Maintained
20660 F:      drivers/usb/host/uhci*
20661
20662 USB VIDEO CLASS
20663 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
20664 L:      linux-media@vger.kernel.org
20665 S:      Maintained
20666 W:      http://www.ideasonboard.org/uvc/
20667 T:      git git://linuxtv.org/media_tree.git
20668 F:      drivers/media/usb/uvc/
20669 F:      include/uapi/linux/uvcvideo.h
20670
20671 USB WEBCAM GADGET
20672 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
20673 L:      linux-usb@vger.kernel.org
20674 S:      Maintained
20675 F:      drivers/usb/gadget/function/*uvc*
20676 F:      drivers/usb/gadget/legacy/webcam.c
20677 F:      include/uapi/linux/usb/g_uvc.h
20678
20679 USB WIRELESS RNDIS DRIVER (rndis_wlan)
20680 M:      Jussi Kivilinna <jussi.kivilinna@iki.fi>
20681 L:      linux-wireless@vger.kernel.org
20682 S:      Maintained
20683 F:      drivers/net/wireless/rndis_wlan.c
20684
20685 USB XHCI DRIVER
20686 M:      Mathias Nyman <mathias.nyman@intel.com>
20687 L:      linux-usb@vger.kernel.org
20688 S:      Supported
20689 F:      drivers/usb/host/pci-quirks*
20690 F:      drivers/usb/host/xhci*
20691
20692 USB ZD1201 DRIVER
20693 L:      linux-wireless@vger.kernel.org
20694 S:      Orphan
20695 W:      http://linux-lc100020.sourceforge.net
20696 F:      drivers/net/wireless/zydas/zd1201.*
20697
20698 USB ZR364XX DRIVER
20699 M:      Antoine Jacquet <royale@zerezo.com>
20700 L:      linux-usb@vger.kernel.org
20701 L:      linux-media@vger.kernel.org
20702 S:      Maintained
20703 W:      http://royale.zerezo.com/zr364xx/
20704 T:      git git://linuxtv.org/media_tree.git
20705 F:      Documentation/admin-guide/media/zr364xx*
20706 F:      drivers/media/usb/zr364xx/
20707
20708 USER-MODE LINUX (UML)
20709 M:      Richard Weinberger <richard@nod.at>
20710 M:      Anton Ivanov <anton.ivanov@cambridgegreys.com>
20711 M:      Johannes Berg <johannes@sipsolutions.net>
20712 L:      linux-um@lists.infradead.org
20713 S:      Maintained
20714 W:      http://user-mode-linux.sourceforge.net
20715 Q:      https://patchwork.ozlabs.org/project/linux-um/list/
20716 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/uml/linux.git next
20717 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/uml/linux.git fixes
20718 F:      Documentation/virt/uml/
20719 F:      arch/um/
20720 F:      arch/x86/um/
20721 F:      fs/hostfs/
20722
20723 USERSPACE COPYIN/COPYOUT (UIOVEC)
20724 M:      Alexander Viro <viro@zeniv.linux.org.uk>
20725 S:      Maintained
20726 F:      include/linux/uio.h
20727 F:      lib/iov_iter.c
20728
20729 USERSPACE DMA BUFFER DRIVER
20730 M:      Gerd Hoffmann <kraxel@redhat.com>
20731 L:      dri-devel@lists.freedesktop.org
20732 S:      Maintained
20733 T:      git git://anongit.freedesktop.org/drm/drm-misc
20734 F:      drivers/dma-buf/udmabuf.c
20735 F:      include/uapi/linux/udmabuf.h
20736
20737 USERSPACE I/O (UIO)
20738 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
20739 S:      Maintained
20740 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
20741 F:      Documentation/driver-api/uio-howto.rst
20742 F:      drivers/uio/
20743 F:      include/linux/uio_driver.h
20744
20745 UTIL-LINUX PACKAGE
20746 M:      Karel Zak <kzak@redhat.com>
20747 L:      util-linux@vger.kernel.org
20748 S:      Maintained
20749 W:      http://en.wikipedia.org/wiki/Util-linux
20750 T:      git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
20751
20752 UUID HELPERS
20753 M:      Christoph Hellwig <hch@lst.de>
20754 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
20755 L:      linux-kernel@vger.kernel.org
20756 S:      Maintained
20757 T:      git git://git.infradead.org/users/hch/uuid.git
20758 F:      include/linux/uuid.h
20759 F:      include/uapi/linux/uuid.h
20760 F:      lib/test_uuid.c
20761 F:      lib/uuid.c
20762
20763 UV SYSFS DRIVER
20764 M:      Justin Ernst <justin.ernst@hpe.com>
20765 L:      platform-driver-x86@vger.kernel.org
20766 S:      Maintained
20767 F:      drivers/platform/x86/uv_sysfs.c
20768
20769 UVESAFB DRIVER
20770 M:      Michal Januszewski <spock@gentoo.org>
20771 L:      linux-fbdev@vger.kernel.org
20772 S:      Maintained
20773 W:      https://github.com/mjanusz/v86d
20774 F:      Documentation/fb/uvesafb.rst
20775 F:      drivers/video/fbdev/uvesafb.*
20776
20777 Ux500 CLOCK DRIVERS
20778 M:      Ulf Hansson <ulf.hansson@linaro.org>
20779 L:      linux-clk@vger.kernel.org
20780 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
20781 S:      Maintained
20782 F:      drivers/clk/ux500/
20783
20784 VF610 NAND DRIVER
20785 M:      Stefan Agner <stefan@agner.ch>
20786 L:      linux-mtd@lists.infradead.org
20787 S:      Supported
20788 F:      drivers/mtd/nand/raw/vf610_nfc.c
20789
20790 VFAT/FAT/MSDOS FILESYSTEM
20791 M:      OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
20792 S:      Maintained
20793 F:      Documentation/filesystems/vfat.rst
20794 F:      fs/fat/
20795
20796 VFIO DRIVER
20797 M:      Alex Williamson <alex.williamson@redhat.com>
20798 R:      Cornelia Huck <cohuck@redhat.com>
20799 L:      kvm@vger.kernel.org
20800 S:      Maintained
20801 T:      git git://github.com/awilliam/linux-vfio.git
20802 F:      Documentation/driver-api/vfio.rst
20803 F:      drivers/vfio/
20804 F:      include/linux/vfio.h
20805 F:      include/linux/vfio_pci_core.h
20806 F:      include/uapi/linux/vfio.h
20807
20808 VFIO FSL-MC DRIVER
20809 M:      Diana Craciun <diana.craciun@oss.nxp.com>
20810 L:      kvm@vger.kernel.org
20811 S:      Maintained
20812 F:      drivers/vfio/fsl-mc/
20813
20814 VFIO HISILICON PCI DRIVER
20815 M:      Longfang Liu <liulongfang@huawei.com>
20816 M:      Shameer Kolothum <shameerali.kolothum.thodi@huawei.com>
20817 L:      kvm@vger.kernel.org
20818 S:      Maintained
20819 F:      drivers/vfio/pci/hisilicon/
20820
20821 VFIO MEDIATED DEVICE DRIVERS
20822 M:      Kirti Wankhede <kwankhede@nvidia.com>
20823 L:      kvm@vger.kernel.org
20824 S:      Maintained
20825 F:      Documentation/driver-api/vfio-mediated-device.rst
20826 F:      drivers/vfio/mdev/
20827 F:      include/linux/mdev.h
20828 F:      samples/vfio-mdev/
20829
20830 VFIO PCI DEVICE SPECIFIC DRIVERS
20831 R:      Jason Gunthorpe <jgg@nvidia.com>
20832 R:      Yishai Hadas <yishaih@nvidia.com>
20833 R:      Shameer Kolothum <shameerali.kolothum.thodi@huawei.com>
20834 R:      Kevin Tian <kevin.tian@intel.com>
20835 L:      kvm@vger.kernel.org
20836 S:      Maintained
20837 P:      Documentation/driver-api/vfio-pci-device-specific-driver-acceptance.rst
20838 F:      drivers/vfio/pci/*/
20839
20840 VFIO PLATFORM DRIVER
20841 M:      Eric Auger <eric.auger@redhat.com>
20842 L:      kvm@vger.kernel.org
20843 S:      Maintained
20844 F:      drivers/vfio/platform/
20845
20846 VFIO MLX5 PCI DRIVER
20847 M:      Yishai Hadas <yishaih@nvidia.com>
20848 L:      kvm@vger.kernel.org
20849 S:      Maintained
20850 F:      drivers/vfio/pci/mlx5/
20851
20852 VGA_SWITCHEROO
20853 R:      Lukas Wunner <lukas@wunner.de>
20854 S:      Maintained
20855 T:      git git://anongit.freedesktop.org/drm/drm-misc
20856 F:      Documentation/gpu/vga-switcheroo.rst
20857 F:      drivers/gpu/vga/vga_switcheroo.c
20858 F:      include/linux/vga_switcheroo.h
20859
20860 VIA RHINE NETWORK DRIVER
20861 S:      Maintained
20862 M:      Kevin Brace <kevinbrace@bracecomputerlab.com>
20863 F:      drivers/net/ethernet/via/via-rhine.c
20864
20865 VIA SD/MMC CARD CONTROLLER DRIVER
20866 M:      Bruce Chang <brucechang@via.com.tw>
20867 M:      Harald Welte <HaraldWelte@viatech.com>
20868 S:      Maintained
20869 F:      drivers/mmc/host/via-sdmmc.c
20870
20871 VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
20872 M:      Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
20873 L:      linux-fbdev@vger.kernel.org
20874 S:      Maintained
20875 F:      drivers/video/fbdev/via/
20876 F:      include/linux/via-core.h
20877 F:      include/linux/via-gpio.h
20878 F:      include/linux/via_i2c.h
20879
20880 VIA VELOCITY NETWORK DRIVER
20881 M:      Francois Romieu <romieu@fr.zoreil.com>
20882 L:      netdev@vger.kernel.org
20883 S:      Maintained
20884 F:      drivers/net/ethernet/via/via-velocity.*
20885
20886 VICODEC VIRTUAL CODEC DRIVER
20887 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
20888 L:      linux-media@vger.kernel.org
20889 S:      Maintained
20890 W:      https://linuxtv.org
20891 T:      git git://linuxtv.org/media_tree.git
20892 F:      drivers/media/test-drivers/vicodec/*
20893
20894 VIDEO I2C POLLING DRIVER
20895 M:      Matt Ranostay <matt.ranostay@konsulko.com>
20896 L:      linux-media@vger.kernel.org
20897 S:      Maintained
20898 F:      drivers/media/i2c/video-i2c.c
20899
20900 VIDEO MULTIPLEXER DRIVER
20901 M:      Philipp Zabel <p.zabel@pengutronix.de>
20902 L:      linux-media@vger.kernel.org
20903 S:      Maintained
20904 F:      drivers/media/platform/video-mux.c
20905
20906 VIDEOBUF2 FRAMEWORK
20907 M:      Tomasz Figa <tfiga@chromium.org>
20908 M:      Marek Szyprowski <m.szyprowski@samsung.com>
20909 L:      linux-media@vger.kernel.org
20910 S:      Maintained
20911 F:      drivers/media/common/videobuf2/*
20912 F:      include/media/videobuf2-*
20913
20914 VIMC VIRTUAL MEDIA CONTROLLER DRIVER
20915 M:      Shuah Khan <skhan@linuxfoundation.org>
20916 R:      Kieran Bingham <kieran.bingham@ideasonboard.com>
20917 L:      linux-media@vger.kernel.org
20918 S:      Maintained
20919 W:      https://linuxtv.org
20920 T:      git git://linuxtv.org/media_tree.git
20921 F:      drivers/media/test-drivers/vimc/*
20922
20923 VIRT LIB
20924 M:      Alex Williamson <alex.williamson@redhat.com>
20925 M:      Paolo Bonzini <pbonzini@redhat.com>
20926 L:      kvm@vger.kernel.org
20927 S:      Supported
20928 F:      virt/lib/
20929
20930 VIRTIO AND VHOST VSOCK DRIVER
20931 M:      Stefan Hajnoczi <stefanha@redhat.com>
20932 M:      Stefano Garzarella <sgarzare@redhat.com>
20933 L:      kvm@vger.kernel.org
20934 L:      virtualization@lists.linux-foundation.org
20935 L:      netdev@vger.kernel.org
20936 S:      Maintained
20937 F:      drivers/vhost/vsock.c
20938 F:      include/linux/virtio_vsock.h
20939 F:      include/uapi/linux/virtio_vsock.h
20940 F:      net/vmw_vsock/virtio_transport.c
20941 F:      net/vmw_vsock/virtio_transport_common.c
20942
20943 VIRTIO BLOCK AND SCSI DRIVERS
20944 M:      "Michael S. Tsirkin" <mst@redhat.com>
20945 M:      Jason Wang <jasowang@redhat.com>
20946 R:      Paolo Bonzini <pbonzini@redhat.com>
20947 R:      Stefan Hajnoczi <stefanha@redhat.com>
20948 L:      virtualization@lists.linux-foundation.org
20949 S:      Maintained
20950 F:      drivers/block/virtio_blk.c
20951 F:      drivers/scsi/virtio_scsi.c
20952 F:      drivers/vhost/scsi.c
20953 F:      include/uapi/linux/virtio_blk.h
20954 F:      include/uapi/linux/virtio_scsi.h
20955
20956 VIRTIO CONSOLE DRIVER
20957 M:      Amit Shah <amit@kernel.org>
20958 L:      virtualization@lists.linux-foundation.org
20959 S:      Maintained
20960 F:      drivers/char/virtio_console.c
20961 F:      include/linux/virtio_console.h
20962 F:      include/uapi/linux/virtio_console.h
20963
20964 VIRTIO CORE AND NET DRIVERS
20965 M:      "Michael S. Tsirkin" <mst@redhat.com>
20966 M:      Jason Wang <jasowang@redhat.com>
20967 L:      virtualization@lists.linux-foundation.org
20968 S:      Maintained
20969 F:      Documentation/ABI/testing/sysfs-bus-vdpa
20970 F:      Documentation/devicetree/bindings/virtio/
20971 F:      drivers/block/virtio_blk.c
20972 F:      drivers/crypto/virtio/
20973 F:      drivers/net/virtio_net.c
20974 F:      drivers/vdpa/
20975 F:      drivers/virtio/
20976 F:      include/linux/vdpa.h
20977 F:      include/linux/virtio*.h
20978 F:      include/uapi/linux/virtio_*.h
20979 F:      tools/virtio/
20980
20981 VIRTIO BALLOON
20982 M:      "Michael S. Tsirkin" <mst@redhat.com>
20983 M:      David Hildenbrand <david@redhat.com>
20984 L:      virtualization@lists.linux-foundation.org
20985 S:      Maintained
20986 F:      drivers/virtio/virtio_balloon.c
20987 F:      include/uapi/linux/virtio_balloon.h
20988 F:      include/linux/balloon_compaction.h
20989 F:      mm/balloon_compaction.c
20990
20991 VIRTIO CRYPTO DRIVER
20992 M:      Gonglei <arei.gonglei@huawei.com>
20993 L:      virtualization@lists.linux-foundation.org
20994 L:      linux-crypto@vger.kernel.org
20995 S:      Maintained
20996 F:      drivers/crypto/virtio/
20997 F:      include/uapi/linux/virtio_crypto.h
20998
20999 VIRTIO DRIVERS FOR S390
21000 M:      Cornelia Huck <cohuck@redhat.com>
21001 M:      Halil Pasic <pasic@linux.ibm.com>
21002 L:      linux-s390@vger.kernel.org
21003 L:      virtualization@lists.linux-foundation.org
21004 L:      kvm@vger.kernel.org
21005 S:      Supported
21006 F:      arch/s390/include/uapi/asm/virtio-ccw.h
21007 F:      drivers/s390/virtio/
21008
21009 VIRTIO FILE SYSTEM
21010 M:      Vivek Goyal <vgoyal@redhat.com>
21011 M:      Stefan Hajnoczi <stefanha@redhat.com>
21012 M:      Miklos Szeredi <miklos@szeredi.hu>
21013 L:      virtualization@lists.linux-foundation.org
21014 L:      linux-fsdevel@vger.kernel.org
21015 S:      Supported
21016 W:      https://virtio-fs.gitlab.io/
21017 F:      Documentation/filesystems/virtiofs.rst
21018 F:      fs/fuse/virtio_fs.c
21019 F:      include/uapi/linux/virtio_fs.h
21020
21021 VIRTIO GPIO DRIVER
21022 M:      Enrico Weigelt, metux IT consult <info@metux.net>
21023 M:      Viresh Kumar <vireshk@kernel.org>
21024 L:      linux-gpio@vger.kernel.org
21025 L:      virtualization@lists.linux-foundation.org
21026 S:      Maintained
21027 F:      drivers/gpio/gpio-virtio.c
21028 F:      include/uapi/linux/virtio_gpio.h
21029
21030 VIRTIO GPU DRIVER
21031 M:      David Airlie <airlied@linux.ie>
21032 M:      Gerd Hoffmann <kraxel@redhat.com>
21033 R:      Gurchetan Singh <gurchetansingh@chromium.org>
21034 R:      Chia-I Wu <olvaffe@gmail.com>
21035 L:      dri-devel@lists.freedesktop.org
21036 L:      virtualization@lists.linux-foundation.org
21037 S:      Maintained
21038 T:      git git://anongit.freedesktop.org/drm/drm-misc
21039 F:      drivers/gpu/drm/virtio/
21040 F:      include/uapi/linux/virtio_gpu.h
21041
21042 VIRTIO HOST (VHOST)
21043 M:      "Michael S. Tsirkin" <mst@redhat.com>
21044 M:      Jason Wang <jasowang@redhat.com>
21045 L:      kvm@vger.kernel.org
21046 L:      virtualization@lists.linux-foundation.org
21047 L:      netdev@vger.kernel.org
21048 S:      Maintained
21049 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost.git
21050 F:      drivers/vhost/
21051 F:      include/linux/vhost_iotlb.h
21052 F:      include/uapi/linux/vhost.h
21053
21054 VIRTIO INPUT DRIVER
21055 M:      Gerd Hoffmann <kraxel@redhat.com>
21056 S:      Maintained
21057 F:      drivers/virtio/virtio_input.c
21058 F:      include/uapi/linux/virtio_input.h
21059
21060 VIRTIO IOMMU DRIVER
21061 M:      Jean-Philippe Brucker <jean-philippe@linaro.org>
21062 L:      virtualization@lists.linux-foundation.org
21063 S:      Maintained
21064 F:      drivers/iommu/virtio-iommu.c
21065 F:      include/uapi/linux/virtio_iommu.h
21066
21067 VIRTIO MEM DRIVER
21068 M:      David Hildenbrand <david@redhat.com>
21069 L:      virtualization@lists.linux-foundation.org
21070 S:      Maintained
21071 W:      https://virtio-mem.gitlab.io/
21072 F:      drivers/virtio/virtio_mem.c
21073 F:      include/uapi/linux/virtio_mem.h
21074
21075 VIRTIO SOUND DRIVER
21076 M:      Anton Yakovlev <anton.yakovlev@opensynergy.com>
21077 M:      "Michael S. Tsirkin" <mst@redhat.com>
21078 L:      virtualization@lists.linux-foundation.org
21079 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
21080 S:      Maintained
21081 F:      include/uapi/linux/virtio_snd.h
21082 F:      sound/virtio/*
21083
21084 VIRTIO I2C DRIVER
21085 M:      Conghui Chen <conghui.chen@intel.com>
21086 M:      Viresh Kumar <viresh.kumar@linaro.org>
21087 L:      linux-i2c@vger.kernel.org
21088 L:      virtualization@lists.linux-foundation.org
21089 S:      Maintained
21090 F:      drivers/i2c/busses/i2c-virtio.c
21091 F:      include/uapi/linux/virtio_i2c.h
21092
21093 VIRTIO PMEM DRIVER
21094 M:      Pankaj Gupta <pankaj.gupta.linux@gmail.com>
21095 L:      virtualization@lists.linux-foundation.org
21096 S:      Maintained
21097 F:      drivers/nvdimm/virtio_pmem.c
21098 F:      drivers/nvdimm/nd_virtio.c
21099
21100 VIRTUAL BOX GUEST DEVICE DRIVER
21101 M:      Hans de Goede <hdegoede@redhat.com>
21102 M:      Arnd Bergmann <arnd@arndb.de>
21103 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
21104 S:      Maintained
21105 F:      drivers/virt/vboxguest/
21106 F:      include/linux/vbox_utils.h
21107 F:      include/uapi/linux/vbox*.h
21108
21109 VIRTUAL BOX SHARED FOLDER VFS DRIVER
21110 M:      Hans de Goede <hdegoede@redhat.com>
21111 L:      linux-fsdevel@vger.kernel.org
21112 S:      Maintained
21113 F:      fs/vboxsf/*
21114
21115 VIRTUAL SERIO DEVICE DRIVER
21116 M:      Stephen Chandler Paul <thatslyude@gmail.com>
21117 S:      Maintained
21118 F:      drivers/input/serio/userio.c
21119 F:      include/uapi/linux/userio.h
21120
21121 VIVID VIRTUAL VIDEO DRIVER
21122 M:      Hans Verkuil <hverkuil@xs4all.nl>
21123 L:      linux-media@vger.kernel.org
21124 S:      Maintained
21125 W:      https://linuxtv.org
21126 T:      git git://linuxtv.org/media_tree.git
21127 F:      drivers/media/test-drivers/vivid/*
21128
21129 VIDTV VIRTUAL DIGITAL TV DRIVER
21130 M:      Daniel W. S. Almeida <dwlsalmeida@gmail.com>
21131 L:      linux-media@vger.kernel.org
21132 S:      Maintained
21133 W:      https://linuxtv.org
21134 T:      git git://linuxtv.org/media_tree.git
21135 F:      drivers/media/test-drivers/vidtv/*
21136
21137 VLYNQ BUS
21138 M:      Florian Fainelli <f.fainelli@gmail.com>
21139 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
21140 S:      Maintained
21141 F:      drivers/vlynq/vlynq.c
21142 F:      include/linux/vlynq.h
21143
21144 VME SUBSYSTEM
21145 M:      Martyn Welch <martyn@welchs.me.uk>
21146 M:      Manohar Vanga <manohar.vanga@gmail.com>
21147 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
21148 L:      linux-kernel@vger.kernel.org
21149 S:      Maintained
21150 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
21151 F:      Documentation/driver-api/vme.rst
21152 F:      drivers/staging/vme/
21153 F:      drivers/vme/
21154 F:      include/linux/vme*
21155
21156 VM SOCKETS (AF_VSOCK)
21157 M:      Stefano Garzarella <sgarzare@redhat.com>
21158 L:      virtualization@lists.linux-foundation.org
21159 L:      netdev@vger.kernel.org
21160 S:      Maintained
21161 F:      drivers/net/vsockmon.c
21162 F:      include/net/af_vsock.h
21163 F:      include/uapi/linux/vm_sockets.h
21164 F:      include/uapi/linux/vm_sockets_diag.h
21165 F:      include/uapi/linux/vsockmon.h
21166 F:      net/vmw_vsock/
21167 F:      tools/testing/vsock/
21168
21169 VMWARE BALLOON DRIVER
21170 M:      Nadav Amit <namit@vmware.com>
21171 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
21172 L:      linux-kernel@vger.kernel.org
21173 S:      Maintained
21174 F:      drivers/misc/vmw_balloon.c
21175
21176 VMWARE HYPERVISOR INTERFACE
21177 M:      Srivatsa S. Bhat (VMware) <srivatsa@csail.mit.edu>
21178 M:      Alexey Makhalov <amakhalov@vmware.com>
21179 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
21180 L:      virtualization@lists.linux-foundation.org
21181 L:      x86@kernel.org
21182 S:      Supported
21183 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vmware
21184 F:      arch/x86/include/asm/vmware.h
21185 F:      arch/x86/kernel/cpu/vmware.c
21186
21187 VMWARE PVRDMA DRIVER
21188 M:      Bryan Tan <bryantan@vmware.com>
21189 M:      Vishnu Dasa <vdasa@vmware.com>
21190 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
21191 L:      linux-rdma@vger.kernel.org
21192 S:      Maintained
21193 F:      drivers/infiniband/hw/vmw_pvrdma/
21194
21195 VMware PVSCSI driver
21196 M:      Vishal Bhakta <vbhakta@vmware.com>
21197 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
21198 L:      linux-scsi@vger.kernel.org
21199 S:      Maintained
21200 F:      drivers/scsi/vmw_pvscsi.c
21201 F:      drivers/scsi/vmw_pvscsi.h
21202
21203 VMWARE VIRTUAL PTP CLOCK DRIVER
21204 M:      Vivek Thampi <vithampi@vmware.com>
21205 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
21206 L:      netdev@vger.kernel.org
21207 S:      Supported
21208 F:      drivers/ptp/ptp_vmw.c
21209
21210 VMWARE VMCI DRIVER
21211 M:      Bryan Tan <bryantan@vmware.com>
21212 M:      Rajesh Jalisatgi <rjalisatgi@vmware.com>
21213 M:      Vishnu Dasa <vdasa@vmware.com>
21214 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
21215 L:      linux-kernel@vger.kernel.org
21216 S:      Maintained
21217 F:      drivers/misc/vmw_vmci/
21218
21219 VMWARE VMMOUSE SUBDRIVER
21220 M:      Zack Rusin <zackr@vmware.com>
21221 R:      VMware Graphics Reviewers <linux-graphics-maintainer@vmware.com>
21222 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
21223 L:      linux-input@vger.kernel.org
21224 S:      Maintained
21225 F:      drivers/input/mouse/vmmouse.c
21226 F:      drivers/input/mouse/vmmouse.h
21227
21228 VMWARE VMXNET3 ETHERNET DRIVER
21229 M:      Ronak Doshi <doshir@vmware.com>
21230 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
21231 L:      netdev@vger.kernel.org
21232 S:      Maintained
21233 F:      drivers/net/vmxnet3/
21234
21235 VOCORE VOCORE2 BOARD
21236 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
21237 L:      linux-mips@vger.kernel.org
21238 S:      Maintained
21239 F:      arch/mips/boot/dts/ralink/vocore2.dts
21240
21241 VOLTAGE AND CURRENT REGULATOR FRAMEWORK
21242 M:      Liam Girdwood <lgirdwood@gmail.com>
21243 M:      Mark Brown <broonie@kernel.org>
21244 L:      linux-kernel@vger.kernel.org
21245 S:      Supported
21246 W:      http://www.slimlogic.co.uk/?p=48
21247 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git
21248 F:      Documentation/devicetree/bindings/regulator/
21249 F:      Documentation/power/regulator/
21250 F:      drivers/regulator/
21251 F:      include/dt-bindings/regulator/
21252 F:      include/linux/regulator/
21253 K:      regulator_get_optional
21254
21255 VOLTAGE AND CURRENT REGULATOR IRQ HELPERS
21256 R:      Matti Vaittinen <mazziesaccount@gmail.com>
21257 F:      drivers/regulator/irq_helpers.c
21258
21259 VRF
21260 M:      David Ahern <dsahern@kernel.org>
21261 L:      netdev@vger.kernel.org
21262 S:      Maintained
21263 F:      Documentation/networking/vrf.rst
21264 F:      drivers/net/vrf.c
21265
21266 VSPRINTF
21267 M:      Petr Mladek <pmladek@suse.com>
21268 M:      Steven Rostedt <rostedt@goodmis.org>
21269 M:      Sergey Senozhatsky <senozhatsky@chromium.org>
21270 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
21271 R:      Rasmus Villemoes <linux@rasmusvillemoes.dk>
21272 S:      Maintained
21273 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/printk/linux.git
21274 F:      Documentation/core-api/printk-formats.rst
21275 F:      lib/test_printf.c
21276 F:      lib/test_scanf.c
21277 F:      lib/vsprintf.c
21278
21279 VT1211 HARDWARE MONITOR DRIVER
21280 M:      Juerg Haefliger <juergh@gmail.com>
21281 L:      linux-hwmon@vger.kernel.org
21282 S:      Maintained
21283 F:      Documentation/hwmon/vt1211.rst
21284 F:      drivers/hwmon/vt1211.c
21285
21286 VT8231 HARDWARE MONITOR DRIVER
21287 M:      Roger Lucas <vt8231@hiddenengine.co.uk>
21288 L:      linux-hwmon@vger.kernel.org
21289 S:      Maintained
21290 F:      drivers/hwmon/vt8231.c
21291
21292 VUB300 USB to SDIO/SD/MMC bridge chip
21293 L:      linux-mmc@vger.kernel.org
21294 S:      Orphan
21295 F:      drivers/mmc/host/vub300.c
21296
21297 W1 DALLAS'S 1-WIRE BUS
21298 M:      Evgeniy Polyakov <zbr@ioremap.net>
21299 S:      Maintained
21300 F:      Documentation/devicetree/bindings/w1/
21301 F:      Documentation/w1/
21302 F:      drivers/w1/
21303 F:      include/linux/w1.h
21304
21305 W83791D HARDWARE MONITORING DRIVER
21306 M:      Marc Hulsman <m.hulsman@tudelft.nl>
21307 L:      linux-hwmon@vger.kernel.org
21308 S:      Maintained
21309 F:      Documentation/hwmon/w83791d.rst
21310 F:      drivers/hwmon/w83791d.c
21311
21312 W83793 HARDWARE MONITORING DRIVER
21313 M:      Rudolf Marek <r.marek@assembler.cz>
21314 L:      linux-hwmon@vger.kernel.org
21315 S:      Maintained
21316 F:      Documentation/hwmon/w83793.rst
21317 F:      drivers/hwmon/w83793.c
21318
21319 W83795 HARDWARE MONITORING DRIVER
21320 M:      Jean Delvare <jdelvare@suse.com>
21321 L:      linux-hwmon@vger.kernel.org
21322 S:      Maintained
21323 F:      drivers/hwmon/w83795.c
21324
21325 W83L51xD SD/MMC CARD INTERFACE DRIVER
21326 M:      Pierre Ossman <pierre@ossman.eu>
21327 S:      Maintained
21328 F:      drivers/mmc/host/wbsd.*
21329
21330 WACOM PROTOCOL 4 SERIAL TABLETS
21331 M:      Julian Squires <julian@cipht.net>
21332 M:      Hans de Goede <hdegoede@redhat.com>
21333 L:      linux-input@vger.kernel.org
21334 S:      Maintained
21335 F:      drivers/input/tablet/wacom_serial4.c
21336
21337 WATCHDOG DEVICE DRIVERS
21338 M:      Wim Van Sebroeck <wim@linux-watchdog.org>
21339 M:      Guenter Roeck <linux@roeck-us.net>
21340 L:      linux-watchdog@vger.kernel.org
21341 S:      Maintained
21342 W:      http://www.linux-watchdog.org/
21343 T:      git git://www.linux-watchdog.org/linux-watchdog.git
21344 F:      Documentation/devicetree/bindings/watchdog/
21345 F:      Documentation/watchdog/
21346 F:      drivers/watchdog/
21347 F:      include/linux/watchdog.h
21348 F:      include/uapi/linux/watchdog.h
21349
21350 WHISKEYCOVE PMIC GPIO DRIVER
21351 M:      Kuppuswamy Sathyanarayanan <sathyanarayanan.kuppuswamy@linux.intel.com>
21352 L:      linux-gpio@vger.kernel.org
21353 S:      Maintained
21354 F:      drivers/gpio/gpio-wcove.c
21355
21356 WHWAVE RTC DRIVER
21357 M:      Dianlong Li <long17.cool@163.com>
21358 L:      linux-rtc@vger.kernel.org
21359 S:      Maintained
21360 F:      drivers/rtc/rtc-sd3078.c
21361
21362 WIIMOTE HID DRIVER
21363 M:      David Rheinsberg <david.rheinsberg@gmail.com>
21364 L:      linux-input@vger.kernel.org
21365 S:      Maintained
21366 F:      drivers/hid/hid-wiimote*
21367
21368 WILOCITY WIL6210 WIRELESS DRIVER
21369 L:      linux-wireless@vger.kernel.org
21370 S:      Orphan
21371 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wil6210
21372 F:      drivers/net/wireless/ath/wil6210/
21373
21374 WINBOND CIR DRIVER
21375 M:      David Härdeman <david@hardeman.nu>
21376 S:      Maintained
21377 F:      drivers/media/rc/winbond-cir.c
21378
21379 WINSYSTEMS EBC-C384 WATCHDOG DRIVER
21380 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
21381 L:      linux-watchdog@vger.kernel.org
21382 S:      Maintained
21383 F:      drivers/watchdog/ebc-c384_wdt.c
21384
21385 WINSYSTEMS WS16C48 GPIO DRIVER
21386 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
21387 L:      linux-gpio@vger.kernel.org
21388 S:      Maintained
21389 F:      drivers/gpio/gpio-ws16c48.c
21390
21391 WIREGUARD SECURE NETWORK TUNNEL
21392 M:      Jason A. Donenfeld <Jason@zx2c4.com>
21393 L:      wireguard@lists.zx2c4.com
21394 L:      netdev@vger.kernel.org
21395 S:      Maintained
21396 F:      drivers/net/wireguard/
21397 F:      tools/testing/selftests/wireguard/
21398
21399 WISTRON LAPTOP BUTTON DRIVER
21400 M:      Miloslav Trmac <mitr@volny.cz>
21401 S:      Maintained
21402 F:      drivers/input/misc/wistron_btns.c
21403
21404 WL3501 WIRELESS PCMCIA CARD DRIVER
21405 L:      linux-wireless@vger.kernel.org
21406 S:      Odd fixes
21407 F:      drivers/net/wireless/wl3501*
21408
21409 WOLFSON MICROELECTRONICS DRIVERS
21410 L:      patches@opensource.cirrus.com
21411 S:      Supported
21412 W:      https://github.com/CirrusLogic/linux-drivers/wiki
21413 T:      git https://github.com/CirrusLogic/linux-drivers.git
21414 F:      Documentation/devicetree/bindings/extcon/wlf,arizona.yaml
21415 F:      Documentation/devicetree/bindings/mfd/wlf,arizona.yaml
21416 F:      Documentation/devicetree/bindings/mfd/wm831x.txt
21417 F:      Documentation/devicetree/bindings/regulator/wlf,arizona.yaml
21418 F:      Documentation/devicetree/bindings/sound/wlf,*.yaml
21419 F:      Documentation/devicetree/bindings/sound/wm*
21420 F:      Documentation/hwmon/wm83??.rst
21421 F:      arch/arm/mach-s3c/mach-crag6410*
21422 F:      drivers/clk/clk-wm83*.c
21423 F:      drivers/gpio/gpio-*wm*.c
21424 F:      drivers/gpio/gpio-arizona.c
21425 F:      drivers/hwmon/wm83??-hwmon.c
21426 F:      drivers/input/misc/wm831x-on.c
21427 F:      drivers/input/touchscreen/wm831x-ts.c
21428 F:      drivers/input/touchscreen/wm97*.c
21429 F:      drivers/leds/leds-wm83*.c
21430 F:      drivers/mfd/arizona*
21431 F:      drivers/mfd/cs47l24*
21432 F:      drivers/mfd/wm*.c
21433 F:      drivers/power/supply/wm83*.c
21434 F:      drivers/regulator/arizona*
21435 F:      drivers/regulator/wm8*.c
21436 F:      drivers/rtc/rtc-wm83*.c
21437 F:      drivers/video/backlight/wm83*_bl.c
21438 F:      drivers/watchdog/wm83*_wdt.c
21439 F:      include/linux/mfd/arizona/
21440 F:      include/linux/mfd/wm831x/
21441 F:      include/linux/mfd/wm8350/
21442 F:      include/linux/mfd/wm8400*
21443 F:      include/linux/regulator/arizona*
21444 F:      include/linux/wm97xx.h
21445 F:      include/sound/wm????.h
21446 F:      sound/soc/codecs/arizona*
21447 F:      sound/soc/codecs/cs47l24*
21448 F:      sound/soc/codecs/wm*
21449
21450 WORKQUEUE
21451 M:      Tejun Heo <tj@kernel.org>
21452 R:      Lai Jiangshan <jiangshanlai@gmail.com>
21453 S:      Maintained
21454 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
21455 F:      Documentation/core-api/workqueue.rst
21456 F:      include/linux/workqueue.h
21457 F:      kernel/workqueue.c
21458
21459 WWAN DRIVERS
21460 M:      Loic Poulain <loic.poulain@linaro.org>
21461 M:      Sergey Ryazanov <ryazanov.s.a@gmail.com>
21462 R:      Johannes Berg <johannes@sipsolutions.net>
21463 L:      netdev@vger.kernel.org
21464 S:      Maintained
21465 F:      drivers/net/wwan/
21466 F:      include/linux/wwan.h
21467 F:      include/uapi/linux/wwan.h
21468
21469 X-POWERS AXP288 PMIC DRIVERS
21470 M:      Hans de Goede <hdegoede@redhat.com>
21471 S:      Maintained
21472 F:      drivers/acpi/pmic/intel_pmic_xpower.c
21473 N:      axp288
21474
21475 X-POWERS MULTIFUNCTION PMIC DEVICE DRIVERS
21476 M:      Chen-Yu Tsai <wens@csie.org>
21477 L:      linux-kernel@vger.kernel.org
21478 S:      Maintained
21479 N:      axp[128]
21480
21481 X.25 STACK
21482 M:      Martin Schiller <ms@dev.tdt.de>
21483 L:      linux-x25@vger.kernel.org
21484 S:      Maintained
21485 F:      Documentation/networking/lapb-module.rst
21486 F:      Documentation/networking/x25*
21487 F:      drivers/net/wan/hdlc_x25.c
21488 F:      drivers/net/wan/lapbether.c
21489 F:      include/*/lapb.h
21490 F:      include/net/x25*
21491 F:      include/uapi/linux/x25.h
21492 F:      net/lapb/
21493 F:      net/x25/
21494
21495 X86 ARCHITECTURE (32-BIT AND 64-BIT)
21496 M:      Thomas Gleixner <tglx@linutronix.de>
21497 M:      Ingo Molnar <mingo@redhat.com>
21498 M:      Borislav Petkov <bp@alien8.de>
21499 M:      Dave Hansen <dave.hansen@linux.intel.com>
21500 M:      x86@kernel.org
21501 R:      "H. Peter Anvin" <hpa@zytor.com>
21502 L:      linux-kernel@vger.kernel.org
21503 S:      Maintained
21504 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
21505 F:      Documentation/devicetree/bindings/x86/
21506 F:      Documentation/x86/
21507 F:      arch/x86/
21508
21509 X86 ENTRY CODE
21510 M:      Andy Lutomirski <luto@kernel.org>
21511 L:      linux-kernel@vger.kernel.org
21512 S:      Maintained
21513 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/asm
21514 F:      arch/x86/entry/
21515
21516 X86 MCE INFRASTRUCTURE
21517 M:      Tony Luck <tony.luck@intel.com>
21518 M:      Borislav Petkov <bp@alien8.de>
21519 L:      linux-edac@vger.kernel.org
21520 S:      Maintained
21521 F:      Documentation/ABI/testing/sysfs-mce
21522 F:      Documentation/x86/x86_64/machinecheck.rst
21523 F:      arch/x86/kernel/cpu/mce/*
21524
21525 X86 MICROCODE UPDATE SUPPORT
21526 M:      Borislav Petkov <bp@alien8.de>
21527 S:      Maintained
21528 F:      arch/x86/kernel/cpu/microcode/*
21529
21530 X86 MM
21531 M:      Dave Hansen <dave.hansen@linux.intel.com>
21532 M:      Andy Lutomirski <luto@kernel.org>
21533 M:      Peter Zijlstra <peterz@infradead.org>
21534 L:      linux-kernel@vger.kernel.org
21535 S:      Maintained
21536 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/mm
21537 F:      arch/x86/mm/
21538
21539 X86 PLATFORM ANDROID TABLETS DSDT FIXUP DRIVER
21540 M:      Hans de Goede <hdegoede@redhat.com>
21541 L:      platform-driver-x86@vger.kernel.org
21542 S:      Maintained
21543 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
21544 F:      drivers/platform/x86/x86-android-tablets.c
21545
21546 X86 PLATFORM DRIVERS
21547 M:      Hans de Goede <hdegoede@redhat.com>
21548 M:      Mark Gross <markgross@kernel.org>
21549 L:      platform-driver-x86@vger.kernel.org
21550 S:      Maintained
21551 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
21552 F:      drivers/platform/olpc/
21553 F:      drivers/platform/x86/
21554
21555 X86 PLATFORM DRIVERS - ARCH
21556 R:      Darren Hart <dvhart@infradead.org>
21557 R:      Andy Shevchenko <andy@infradead.org>
21558 L:      platform-driver-x86@vger.kernel.org
21559 L:      x86@kernel.org
21560 S:      Maintained
21561 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
21562 F:      arch/x86/platform
21563
21564 X86 PLATFORM UV HPE SUPERDOME FLEX
21565 M:      Steve Wahl <steve.wahl@hpe.com>
21566 R:      Mike Travis <mike.travis@hpe.com>
21567 R:      Dimitri Sivanich <dimitri.sivanich@hpe.com>
21568 R:      Russ Anderson <russ.anderson@hpe.com>
21569 S:      Supported
21570 F:      arch/x86/include/asm/uv/
21571 F:      arch/x86/kernel/apic/x2apic_uv_x.c
21572 F:      arch/x86/platform/uv/
21573
21574 X86 STACK UNWINDING
21575 M:      Josh Poimboeuf <jpoimboe@kernel.org>
21576 M:      Peter Zijlstra <peterz@infradead.org>
21577 S:      Supported
21578 F:      arch/x86/include/asm/unwind*.h
21579 F:      arch/x86/kernel/dumpstack.c
21580 F:      arch/x86/kernel/stacktrace.c
21581 F:      arch/x86/kernel/unwind_*.c
21582
21583 X86 VDSO
21584 M:      Andy Lutomirski <luto@kernel.org>
21585 L:      linux-kernel@vger.kernel.org
21586 S:      Maintained
21587 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso
21588 F:      arch/x86/entry/vdso/
21589
21590 XARRAY
21591 M:      Matthew Wilcox <willy@infradead.org>
21592 L:      linux-fsdevel@vger.kernel.org
21593 S:      Supported
21594 F:      Documentation/core-api/xarray.rst
21595 F:      include/linux/idr.h
21596 F:      include/linux/xarray.h
21597 F:      lib/idr.c
21598 F:      lib/xarray.c
21599 F:      tools/testing/radix-tree
21600
21601 XBOX DVD IR REMOTE
21602 M:      Benjamin Valentin <benpicco@googlemail.com>
21603 S:      Maintained
21604 F:      drivers/media/rc/keymaps/rc-xbox-dvd.c
21605 F:      drivers/media/rc/xbox_remote.c
21606
21607 XC2028/3028 TUNER DRIVER
21608 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
21609 L:      linux-media@vger.kernel.org
21610 S:      Maintained
21611 W:      https://linuxtv.org
21612 T:      git git://linuxtv.org/media_tree.git
21613 F:      drivers/media/tuners/xc2028.*
21614
21615 XDP (eXpress Data Path)
21616 M:      Alexei Starovoitov <ast@kernel.org>
21617 M:      Daniel Borkmann <daniel@iogearbox.net>
21618 M:      David S. Miller <davem@davemloft.net>
21619 M:      Jakub Kicinski <kuba@kernel.org>
21620 M:      Jesper Dangaard Brouer <hawk@kernel.org>
21621 M:      John Fastabend <john.fastabend@gmail.com>
21622 L:      netdev@vger.kernel.org
21623 L:      bpf@vger.kernel.org
21624 S:      Supported
21625 F:      include/net/xdp.h
21626 F:      include/net/xdp_priv.h
21627 F:      include/trace/events/xdp.h
21628 F:      kernel/bpf/cpumap.c
21629 F:      kernel/bpf/devmap.c
21630 F:      net/core/xdp.c
21631 F:      samples/bpf/xdp*
21632 F:      tools/testing/selftests/bpf/*xdp*
21633 F:      tools/testing/selftests/bpf/*/*xdp*
21634 F:      drivers/net/ethernet/*/*/*/*/*xdp*
21635 F:      drivers/net/ethernet/*/*/*xdp*
21636 K:      (?:\b|_)xdp(?:\b|_)
21637
21638 XDP SOCKETS (AF_XDP)
21639 M:      Björn Töpel <bjorn@kernel.org>
21640 M:      Magnus Karlsson <magnus.karlsson@intel.com>
21641 M:      Maciej Fijalkowski <maciej.fijalkowski@intel.com>
21642 R:      Jonathan Lemon <jonathan.lemon@gmail.com>
21643 L:      netdev@vger.kernel.org
21644 L:      bpf@vger.kernel.org
21645 S:      Maintained
21646 F:      Documentation/networking/af_xdp.rst
21647 F:      include/net/xdp_sock*
21648 F:      include/net/xsk_buff_pool.h
21649 F:      include/uapi/linux/if_xdp.h
21650 F:      include/uapi/linux/xdp_diag.h
21651 F:      include/net/netns/xdp.h
21652 F:      net/xdp/
21653 F:      samples/bpf/xdpsock*
21654 F:      tools/lib/bpf/xsk*
21655
21656 XEN BLOCK SUBSYSTEM
21657 M:      Roger Pau Monné <roger.pau@citrix.com>
21658 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
21659 S:      Supported
21660 F:      drivers/block/xen*
21661 F:      drivers/block/xen-blkback/*
21662
21663 XEN HYPERVISOR ARM
21664 M:      Stefano Stabellini <sstabellini@kernel.org>
21665 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
21666 S:      Maintained
21667 F:      arch/arm/include/asm/xen/
21668 F:      arch/arm/xen/
21669
21670 XEN HYPERVISOR ARM64
21671 M:      Stefano Stabellini <sstabellini@kernel.org>
21672 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
21673 S:      Maintained
21674 F:      arch/arm64/include/asm/xen/
21675 F:      arch/arm64/xen/
21676
21677 XEN HYPERVISOR INTERFACE
21678 M:      Boris Ostrovsky <boris.ostrovsky@oracle.com>
21679 M:      Juergen Gross <jgross@suse.com>
21680 R:      Stefano Stabellini <sstabellini@kernel.org>
21681 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
21682 S:      Supported
21683 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git
21684 F:      Documentation/ABI/stable/sysfs-hypervisor-xen
21685 F:      Documentation/ABI/testing/sysfs-hypervisor-xen
21686 F:      arch/x86/include/asm/pvclock-abi.h
21687 F:      arch/x86/include/asm/xen/
21688 F:      arch/x86/platform/pvh/
21689 F:      arch/x86/xen/
21690 F:      drivers/*/xen-*front.c
21691 F:      drivers/xen/
21692 F:      include/uapi/xen/
21693 F:      include/xen/
21694
21695 XEN NETWORK BACKEND DRIVER
21696 M:      Wei Liu <wei.liu@kernel.org>
21697 M:      Paul Durrant <paul@xen.org>
21698 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
21699 L:      netdev@vger.kernel.org
21700 S:      Supported
21701 F:      drivers/net/xen-netback/*
21702
21703 XEN PCI SUBSYSTEM
21704 M:      Juergen Gross <jgross@suse.com>
21705 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
21706 S:      Supported
21707 F:      arch/x86/pci/*xen*
21708 F:      drivers/pci/*xen*
21709
21710 XEN PVSCSI DRIVERS
21711 M:      Juergen Gross <jgross@suse.com>
21712 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
21713 L:      linux-scsi@vger.kernel.org
21714 S:      Supported
21715 F:      drivers/scsi/xen-scsifront.c
21716 F:      drivers/xen/xen-scsiback.c
21717 F:      include/xen/interface/io/vscsiif.h
21718
21719 XEN PVUSB DRIVER
21720 M:      Juergen Gross <jgross@suse.com>
21721 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
21722 L:      linux-usb@vger.kernel.org
21723 S:      Supported
21724 F:      drivers/usb/host/xen*
21725 F:      include/xen/interface/io/usbif.h
21726
21727 XEN SOUND FRONTEND DRIVER
21728 M:      Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
21729 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
21730 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
21731 S:      Supported
21732 F:      sound/xen/*
21733
21734 XEN SWIOTLB SUBSYSTEM
21735 M:      Juergen Gross <jgross@suse.com>
21736 M:      Stefano Stabellini <sstabellini@kernel.org>
21737 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
21738 L:      iommu@lists.linux-foundation.org
21739 S:      Supported
21740 F:      arch/x86/xen/*swiotlb*
21741 F:      drivers/xen/*swiotlb*
21742
21743 XFS FILESYSTEM
21744 C:      irc://irc.oftc.net/xfs
21745 M:      Darrick J. Wong <djwong@kernel.org>
21746 L:      linux-xfs@vger.kernel.org
21747 S:      Supported
21748 W:      http://xfs.org/
21749 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
21750 F:      Documentation/ABI/testing/sysfs-fs-xfs
21751 F:      Documentation/admin-guide/xfs.rst
21752 F:      Documentation/filesystems/xfs-delayed-logging-design.rst
21753 F:      Documentation/filesystems/xfs-self-describing-metadata.rst
21754 F:      fs/xfs/
21755 F:      include/uapi/linux/dqblk_xfs.h
21756 F:      include/uapi/linux/fsmap.h
21757
21758 XILINX AMS DRIVER
21759 M:      Anand Ashok Dumbre <anand.ashok.dumbre@xilinx.com>
21760 L:      linux-iio@vger.kernel.org
21761 S:      Maintained
21762 F:      Documentation/devicetree/bindings/iio/adc/xlnx,zynqmp-ams.yaml
21763 F:      drivers/iio/adc/xilinx-ams.c
21764
21765 XILINX AXI ETHERNET DRIVER
21766 M:      Radhey Shyam Pandey <radhey.shyam.pandey@xilinx.com>
21767 S:      Maintained
21768 F:      drivers/net/ethernet/xilinx/xilinx_axienet*
21769
21770 XILINX CAN DRIVER
21771 M:      Appana Durga Kedareswara rao <appana.durga.rao@xilinx.com>
21772 R:      Naga Sureshkumar Relli <naga.sureshkumar.relli@xilinx.com>
21773 L:      linux-can@vger.kernel.org
21774 S:      Maintained
21775 F:      Documentation/devicetree/bindings/net/can/xilinx,can.yaml
21776 F:      drivers/net/can/xilinx_can.c
21777
21778 XILINX GPIO DRIVER
21779 M:      Shubhrajyoti Datta <shubhrajyoti.datta@xilinx.com>
21780 R:      Srinivas Neeli <srinivas.neeli@xilinx.com>
21781 R:      Michal Simek <michal.simek@xilinx.com>
21782 S:      Maintained
21783 F:      Documentation/devicetree/bindings/gpio/gpio-xilinx.txt
21784 F:      Documentation/devicetree/bindings/gpio/gpio-zynq.yaml
21785 F:      drivers/gpio/gpio-xilinx.c
21786 F:      drivers/gpio/gpio-zynq.c
21787
21788 XILINX SD-FEC IP CORES
21789 M:      Derek Kiernan <derek.kiernan@xilinx.com>
21790 M:      Dragan Cvetic <dragan.cvetic@xilinx.com>
21791 S:      Maintained
21792 F:      Documentation/devicetree/bindings/misc/xlnx,sd-fec.txt
21793 F:      Documentation/misc-devices/xilinx_sdfec.rst
21794 F:      drivers/misc/Kconfig
21795 F:      drivers/misc/Makefile
21796 F:      drivers/misc/xilinx_sdfec.c
21797 F:      include/uapi/misc/xilinx_sdfec.h
21798
21799 XILINX UARTLITE SERIAL DRIVER
21800 M:      Peter Korsgaard <jacmet@sunsite.dk>
21801 L:      linux-serial@vger.kernel.org
21802 S:      Maintained
21803 F:      drivers/tty/serial/uartlite.c
21804
21805 XILINX VIDEO IP CORES
21806 M:      Hyun Kwon <hyun.kwon@xilinx.com>
21807 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
21808 L:      linux-media@vger.kernel.org
21809 S:      Supported
21810 T:      git git://linuxtv.org/media_tree.git
21811 F:      Documentation/devicetree/bindings/media/xilinx/
21812 F:      drivers/media/platform/xilinx/
21813 F:      include/uapi/linux/xilinx-v4l2-controls.h
21814
21815 XILINX ZYNQMP DPDMA DRIVER
21816 M:      Hyun Kwon <hyun.kwon@xilinx.com>
21817 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
21818 L:      dmaengine@vger.kernel.org
21819 S:      Supported
21820 F:      Documentation/devicetree/bindings/dma/xilinx/xlnx,zynqmp-dpdma.yaml
21821 F:      drivers/dma/xilinx/xilinx_dpdma.c
21822 F:      include/dt-bindings/dma/xlnx-zynqmp-dpdma.h
21823
21824 XILINX ZYNQMP PSGTR PHY DRIVER
21825 M:      Anurag Kumar Vulisha <anurag.kumar.vulisha@xilinx.com>
21826 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
21827 L:      linux-kernel@vger.kernel.org
21828 S:      Supported
21829 T:      git https://github.com/Xilinx/linux-xlnx.git
21830 F:      Documentation/devicetree/bindings/phy/xlnx,zynqmp-psgtr.yaml
21831 F:      drivers/phy/xilinx/phy-zynqmp.c
21832
21833 XILINX ZYNQMP SHA3 DRIVER
21834 M:      Harsha <harsha.harsha@xilinx.com>
21835 S:      Maintained
21836 F:      drivers/crypto/xilinx/zynqmp-sha.c
21837
21838 XILINX EVENT MANAGEMENT DRIVER
21839 M:      Abhyuday Godhasara <abhyuday.godhasara@xilinx.com>
21840 S:      Maintained
21841 F:      drivers/soc/xilinx/xlnx_event_manager.c
21842 F:      include/linux/firmware/xlnx-event-manager.h
21843
21844 XILLYBUS DRIVER
21845 M:      Eli Billauer <eli.billauer@gmail.com>
21846 L:      linux-kernel@vger.kernel.org
21847 S:      Supported
21848 F:      drivers/char/xillybus/
21849
21850 XLP9XX I2C DRIVER
21851 M:      George Cherian <gcherian@marvell.com>
21852 L:      linux-i2c@vger.kernel.org
21853 S:      Supported
21854 W:      http://www.marvell.com
21855 F:      drivers/i2c/busses/i2c-xlp9xx.c
21856
21857 XRA1403 GPIO EXPANDER
21858 M:      Nandor Han <nandor.han@ge.com>
21859 M:      Semi Malinen <semi.malinen@ge.com>
21860 L:      linux-gpio@vger.kernel.org
21861 S:      Maintained
21862 F:      Documentation/devicetree/bindings/gpio/gpio-xra1403.txt
21863 F:      drivers/gpio/gpio-xra1403.c
21864
21865 XTENSA XTFPGA PLATFORM SUPPORT
21866 M:      Max Filippov <jcmvbkbc@gmail.com>
21867 L:      linux-xtensa@linux-xtensa.org
21868 S:      Maintained
21869 F:      drivers/spi/spi-xtensa-xtfpga.c
21870 F:      sound/soc/xtensa/xtfpga-i2s.c
21871
21872 YAM DRIVER FOR AX.25
21873 M:      Jean-Paul Roubelat <jpr@f6fbb.org>
21874 L:      linux-hams@vger.kernel.org
21875 S:      Maintained
21876 F:      drivers/net/hamradio/yam*
21877 F:      include/linux/yam.h
21878
21879 YAMA SECURITY MODULE
21880 M:      Kees Cook <keescook@chromium.org>
21881 S:      Supported
21882 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git yama/tip
21883 F:      Documentation/admin-guide/LSM/Yama.rst
21884 F:      security/yama/
21885
21886 YEALINK PHONE DRIVER
21887 M:      Henk Vergonet <Henk.Vergonet@gmail.com>
21888 L:      usbb2k-api-dev@nongnu.org
21889 S:      Maintained
21890 F:      Documentation/input/devices/yealink.rst
21891 F:      drivers/input/misc/yealink.*
21892
21893 Z8530 DRIVER FOR AX.25
21894 M:      Joerg Reuter <jreuter@yaina.de>
21895 L:      linux-hams@vger.kernel.org
21896 S:      Maintained
21897 W:      http://yaina.de/jreuter/
21898 W:      http://www.qsl.net/dl1bke/
21899 F:      Documentation/networking/device_drivers/hamradio/z8530drv.rst
21900 F:      drivers/net/hamradio/*scc.c
21901 F:      drivers/net/hamradio/z8530.h
21902
21903 ZBUD COMPRESSED PAGE ALLOCATOR
21904 M:      Seth Jennings <sjenning@redhat.com>
21905 M:      Dan Streetman <ddstreet@ieee.org>
21906 L:      linux-mm@kvack.org
21907 S:      Maintained
21908 F:      mm/zbud.c
21909
21910 ZD1211RW WIRELESS DRIVER
21911 M:      Ulrich Kunitz <kune@deine-taler.de>
21912 L:      linux-wireless@vger.kernel.org
21913 L:      zd1211-devs@lists.sourceforge.net (subscribers-only)
21914 S:      Maintained
21915 W:      http://zd1211.ath.cx/wiki/DriverRewrite
21916 F:      drivers/net/wireless/zydas/zd1211rw/
21917
21918 ZD1301 MEDIA DRIVER
21919 M:      Antti Palosaari <crope@iki.fi>
21920 L:      linux-media@vger.kernel.org
21921 S:      Maintained
21922 W:      https://linuxtv.org/
21923 W:      http://palosaari.fi/linux/
21924 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
21925 F:      drivers/media/usb/dvb-usb-v2/zd1301*
21926
21927 ZD1301_DEMOD MEDIA DRIVER
21928 M:      Antti Palosaari <crope@iki.fi>
21929 L:      linux-media@vger.kernel.org
21930 S:      Maintained
21931 W:      https://linuxtv.org/
21932 W:      http://palosaari.fi/linux/
21933 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
21934 F:      drivers/media/dvb-frontends/zd1301_demod*
21935
21936 ZHAOXIN PROCESSOR SUPPORT
21937 M:      Tony W Wang-oc <TonyWWang-oc@zhaoxin.com>
21938 L:      linux-kernel@vger.kernel.org
21939 S:      Maintained
21940 F:      arch/x86/kernel/cpu/zhaoxin.c
21941
21942 ZONEFS FILESYSTEM
21943 M:      Damien Le Moal <damien.lemoal@opensource.wdc.com>
21944 M:      Naohiro Aota <naohiro.aota@wdc.com>
21945 R:      Johannes Thumshirn <jth@kernel.org>
21946 L:      linux-fsdevel@vger.kernel.org
21947 S:      Maintained
21948 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dlemoal/zonefs.git
21949 F:      Documentation/filesystems/zonefs.rst
21950 F:      fs/zonefs/
21951
21952 ZPOOL COMPRESSED PAGE STORAGE API
21953 M:      Dan Streetman <ddstreet@ieee.org>
21954 L:      linux-mm@kvack.org
21955 S:      Maintained
21956 F:      include/linux/zpool.h
21957 F:      mm/zpool.c
21958
21959 ZR36067 VIDEO FOR LINUX DRIVER
21960 M:      Corentin Labbe <clabbe@baylibre.com>
21961 L:      mjpeg-users@lists.sourceforge.net
21962 L:      linux-media@vger.kernel.org
21963 S:      Maintained
21964 W:      http://mjpeg.sourceforge.net/driver-zoran/
21965 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
21966 F:      Documentation/driver-api/media/drivers/zoran.rst
21967 F:      drivers/staging/media/zoran/
21968
21969 ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER
21970 M:      Minchan Kim <minchan@kernel.org>
21971 M:      Nitin Gupta <ngupta@vflare.org>
21972 R:      Sergey Senozhatsky <senozhatsky@chromium.org>
21973 L:      linux-kernel@vger.kernel.org
21974 S:      Maintained
21975 F:      Documentation/admin-guide/blockdev/zram.rst
21976 F:      drivers/block/zram/
21977
21978 ZS DECSTATION Z85C30 SERIAL DRIVER
21979 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
21980 S:      Maintained
21981 F:      drivers/tty/serial/zs.*
21982
21983 ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR
21984 M:      Minchan Kim <minchan@kernel.org>
21985 M:      Nitin Gupta <ngupta@vflare.org>
21986 R:      Sergey Senozhatsky <senozhatsky@chromium.org>
21987 L:      linux-mm@kvack.org
21988 S:      Maintained
21989 F:      Documentation/vm/zsmalloc.rst
21990 F:      include/linux/zsmalloc.h
21991 F:      mm/zsmalloc.c
21992
21993 ZSTD
21994 M:      Nick Terrell <terrelln@fb.com>
21995 S:      Maintained
21996 B:      https://github.com/facebook/zstd/issues
21997 T:      git git://github.com/terrelln/linux.git
21998 F:      include/linux/zstd*
21999 F:      lib/zstd/
22000 F:      lib/decompress_unzstd.c
22001 F:      crypto/zstd.c
22002 N:      zstd
22003 K:      zstd
22004
22005 ZSWAP COMPRESSED SWAP CACHING
22006 M:      Seth Jennings <sjenning@redhat.com>
22007 M:      Dan Streetman <ddstreet@ieee.org>
22008 M:      Vitaly Wool <vitaly.wool@konsulko.com>
22009 L:      linux-mm@kvack.org
22010 S:      Maintained
22011 F:      mm/zswap.c
22012
22013 THE REST
22014 M:      Linus Torvalds <torvalds@linux-foundation.org>
22015 L:      linux-kernel@vger.kernel.org
22016 S:      Buried alive in reporters
22017 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
22018 F:      *
22019 F:      */