Merge tag 'char-misc-5.18-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/gregk...
[platform/kernel/linux-starfive.git] / MAINTAINERS
1 List of maintainers and how to submit kernel changes
2 ====================================================
3
4 Please try to follow the guidelines below.  This will make things
5 easier on the maintainers.  Not all of these guidelines matter for every
6 trivial patch so apply some common sense.
7
8 Tips for patch submitters
9 -------------------------
10
11 1.      Always *test* your changes, however small, on at least 4 or
12         5 people, preferably many more.
13
14 2.      Try to release a few ALPHA test versions to the net. Announce
15         them onto the kernel channel and await results. This is especially
16         important for device drivers, because often that's the only way
17         you will find things like the fact version 3 firmware needs
18         a magic fix you didn't know about, or some clown changed the
19         chips on a board and not its name.  (Don't laugh!  Look at the
20         SMC etherpower for that.)
21
22 3.      Make sure your changes compile correctly in multiple
23         configurations. In particular check that changes work both as a
24         module and built into the kernel.
25
26 4.      When you are happy with a change make it generally available for
27         testing and await feedback.
28
29 5.      Make a patch available to the relevant maintainer in the list. Use
30         ``diff -u`` to make the patch easy to merge. Be prepared to get your
31         changes sent back with seemingly silly requests about formatting
32         and variable names.  These aren't as silly as they seem. One
33         job the maintainers (and especially Linus) do is to keep things
34         looking the same. Sometimes this means that the clever hack in
35         your driver to get around a problem actually needs to become a
36         generalized kernel feature ready for next time.
37
38         PLEASE check your patch with the automated style checker
39         (scripts/checkpatch.pl) to catch trivial style violations.
40         See Documentation/process/coding-style.rst for guidance here.
41
42         PLEASE CC: the maintainers and mailing lists that are generated
43         by ``scripts/get_maintainer.pl.`` The results returned by the
44         script will be best if you have git installed and are making
45         your changes in a branch derived from Linus' latest git tree.
46         See Documentation/process/submitting-patches.rst for details.
47
48         PLEASE try to include any credit lines you want added with the
49         patch. It avoids people being missed off by mistake and makes
50         it easier to know who wants adding and who doesn't.
51
52         PLEASE document known bugs. If it doesn't work for everything
53         or does something very odd once a month document it.
54
55         PLEASE remember that submissions must be made under the terms
56         of the Linux Foundation certificate of contribution and should
57         include a Signed-off-by: line.  The current version of this
58         "Developer's Certificate of Origin" (DCO) is listed in the file
59         Documentation/process/submitting-patches.rst.
60
61 6.      Make sure you have the right to send any changes you make. If you
62         do changes at work you may find your employer owns the patch
63         not you.
64
65 7.      When sending security related changes or reports to a maintainer
66         please Cc: security@kernel.org, especially if the maintainer
67         does not respond. Please keep in mind that the security team is
68         a small set of people who can be efficient only when working on
69         verified bugs. Please only Cc: this list when you have identified
70         that the bug would present a short-term risk to other users if it
71         were publicly disclosed. For example, reports of address leaks do
72         not represent an immediate threat and are better handled publicly,
73         and ideally, should come with a patch proposal. Please do not send
74         automated reports to this list either. Such bugs will be handled
75         better and faster in the usual public places. See
76         Documentation/admin-guide/security-bugs.rst for details.
77
78 8.      Happy hacking.
79
80 Descriptions of section entries and preferred order
81 ---------------------------------------------------
82
83         M: *Mail* patches to: FullName <address@domain>
84         R: Designated *Reviewer*: FullName <address@domain>
85            These reviewers should be CCed on patches.
86         L: *Mailing list* that is relevant to this area
87         S: *Status*, one of the following:
88            Supported:   Someone is actually paid to look after this.
89            Maintained:  Someone actually looks after it.
90            Odd Fixes:   It has a maintainer but they don't have time to do
91                         much other than throw the odd patch in. See below..
92            Orphan:      No current maintainer [but maybe you could take the
93                         role as you write your new code].
94            Obsolete:    Old code. Something tagged obsolete generally means
95                         it has been replaced by a better system and you
96                         should be using that.
97         W: *Web-page* with status/info
98         Q: *Patchwork* web based patch tracking system site
99         B: URI for where to file *bugs*. A web-page with detailed bug
100            filing info, a direct bug tracker link, or a mailto: URI.
101         C: URI for *chat* protocol, server and channel where developers
102            usually hang out, for example irc://server/channel.
103         P: Subsystem Profile document for more details submitting
104            patches to the given subsystem. This is either an in-tree file,
105            or a URI. See Documentation/maintainer/maintainer-entry-profile.rst
106            for details.
107         T: *SCM* tree type and location.
108            Type is one of: git, hg, quilt, stgit, topgit
109         F: *Files* and directories wildcard patterns.
110            A trailing slash includes all files and subdirectory files.
111            F:   drivers/net/    all files in and below drivers/net
112            F:   drivers/net/*   all files in drivers/net, but not below
113            F:   */net/*         all files in "any top level directory"/net
114            One pattern per line.  Multiple F: lines acceptable.
115         X: *Excluded* files and directories that are NOT maintained, same
116            rules as F:. Files exclusions are tested before file matches.
117            Can be useful for excluding a specific subdirectory, for instance:
118            F:   net/
119            X:   net/ipv6/
120            matches all files in and below net excluding net/ipv6/
121         N: Files and directories *Regex* patterns.
122            N:   [^a-z]tegra     all files whose path contains tegra
123                                 (not including files like integrator)
124            One pattern per line.  Multiple N: lines acceptable.
125            scripts/get_maintainer.pl has different behavior for files that
126            match F: pattern and matches of N: patterns.  By default,
127            get_maintainer will not look at git log history when an F: pattern
128            match occurs.  When an N: match occurs, git log history is used
129            to also notify the people that have git commit signatures.
130         K: *Content regex* (perl extended) pattern match in a patch or file.
131            For instance:
132            K: of_get_profile
133               matches patches or files that contain "of_get_profile"
134            K: \b(printk|pr_(info|err))\b
135               matches patches or files that contain one or more of the words
136               printk, pr_info or pr_err
137            One regex pattern per line.  Multiple K: lines acceptable.
138
139 Maintainers List
140 ----------------
141
142 .. note:: When reading this list, please look for the most precise areas
143           first. When adding to this list, please keep the entries in
144           alphabetical order.
145
146 3C59X NETWORK DRIVER
147 M:      Steffen Klassert <klassert@kernel.org>
148 L:      netdev@vger.kernel.org
149 S:      Odd Fixes
150 F:      Documentation/networking/device_drivers/ethernet/3com/vortex.rst
151 F:      drivers/net/ethernet/3com/3c59x.c
152
153 3CR990 NETWORK DRIVER
154 M:      David Dillow <dave@thedillows.org>
155 L:      netdev@vger.kernel.org
156 S:      Maintained
157 F:      drivers/net/ethernet/3com/typhoon*
158
159 3WARE SAS/SATA-RAID SCSI DRIVERS (3W-XXXX, 3W-9XXX, 3W-SAS)
160 M:      Adam Radford <aradford@gmail.com>
161 L:      linux-scsi@vger.kernel.org
162 S:      Supported
163 W:      http://www.lsi.com
164 F:      drivers/scsi/3w-*
165
166 53C700 AND 53C700-66 SCSI DRIVER
167 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
168 L:      linux-scsi@vger.kernel.org
169 S:      Maintained
170 F:      drivers/scsi/53c700*
171
172 6LOWPAN GENERIC (BTLE/IEEE 802.15.4)
173 M:      Alexander Aring <alex.aring@gmail.com>
174 M:      Jukka Rissanen <jukka.rissanen@linux.intel.com>
175 L:      linux-bluetooth@vger.kernel.org
176 L:      linux-wpan@vger.kernel.org
177 S:      Maintained
178 F:      Documentation/networking/6lowpan.rst
179 F:      include/net/6lowpan.h
180 F:      net/6lowpan/
181
182 6PACK NETWORK DRIVER FOR AX.25
183 M:      Andreas Koensgen <ajk@comnets.uni-bremen.de>
184 L:      linux-hams@vger.kernel.org
185 S:      Maintained
186 F:      drivers/net/hamradio/6pack.c
187
188 802.11 (including CFG80211/NL80211)
189 M:      Johannes Berg <johannes@sipsolutions.net>
190 L:      linux-wireless@vger.kernel.org
191 S:      Maintained
192 W:      https://wireless.wiki.kernel.org/
193 Q:      https://patchwork.kernel.org/project/linux-wireless/list/
194 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless.git
195 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless-next.git
196 F:      Documentation/driver-api/80211/cfg80211.rst
197 F:      Documentation/networking/regulatory.rst
198 F:      include/linux/ieee80211.h
199 F:      include/net/cfg80211.h
200 F:      include/net/ieee80211_radiotap.h
201 F:      include/net/iw_handler.h
202 F:      include/net/wext.h
203 F:      include/uapi/linux/nl80211.h
204 F:      net/wireless/
205
206 8169 10/100/1000 GIGABIT ETHERNET DRIVER
207 M:      Heiner Kallweit <hkallweit1@gmail.com>
208 M:      nic_swsd@realtek.com
209 L:      netdev@vger.kernel.org
210 S:      Maintained
211 F:      drivers/net/ethernet/realtek/r8169*
212
213 8250/16?50 (AND CLONE UARTS) SERIAL DRIVER
214 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
215 L:      linux-serial@vger.kernel.org
216 S:      Maintained
217 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
218 F:      drivers/tty/serial/8250*
219 F:      include/linux/serial_8250.h
220
221 8390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.]
222 L:      netdev@vger.kernel.org
223 S:      Orphan / Obsolete
224 F:      drivers/net/ethernet/8390/
225
226 9P FILE SYSTEM
227 M:      Eric Van Hensbergen <ericvh@gmail.com>
228 M:      Latchesar Ionkov <lucho@ionkov.net>
229 M:      Dominique Martinet <asmadeus@codewreck.org>
230 R:      Christian Schoenebeck <linux_oss@crudebyte.com>
231 L:      v9fs-developer@lists.sourceforge.net
232 S:      Maintained
233 W:      http://swik.net/v9fs
234 Q:      http://patchwork.kernel.org/project/v9fs-devel/list/
235 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs.git
236 T:      git git://github.com/martinetd/linux.git
237 F:      Documentation/filesystems/9p.rst
238 F:      fs/9p/
239 F:      include/net/9p/
240 F:      include/trace/events/9p.h
241 F:      include/uapi/linux/virtio_9p.h
242 F:      net/9p/
243
244 A8293 MEDIA DRIVER
245 M:      Antti Palosaari <crope@iki.fi>
246 L:      linux-media@vger.kernel.org
247 S:      Maintained
248 W:      https://linuxtv.org
249 W:      http://palosaari.fi/linux/
250 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
251 T:      git git://linuxtv.org/anttip/media_tree.git
252 F:      drivers/media/dvb-frontends/a8293*
253
254 AACRAID SCSI RAID DRIVER
255 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
256 L:      linux-scsi@vger.kernel.org
257 S:      Supported
258 W:      http://www.adaptec.com/
259 F:      Documentation/scsi/aacraid.rst
260 F:      drivers/scsi/aacraid/
261
262 ABI/API
263 L:      linux-api@vger.kernel.org
264 F:      include/linux/syscalls.h
265 F:      kernel/sys_ni.c
266 X:      include/uapi/
267 X:      arch/*/include/uapi/
268
269 ABIT UGURU 1,2 HARDWARE MONITOR DRIVER
270 M:      Hans de Goede <hdegoede@redhat.com>
271 L:      linux-hwmon@vger.kernel.org
272 S:      Maintained
273 F:      drivers/hwmon/abituguru.c
274
275 ABIT UGURU 3 HARDWARE MONITOR DRIVER
276 M:      Alistair John Strachan <alistair@devzero.co.uk>
277 L:      linux-hwmon@vger.kernel.org
278 S:      Maintained
279 F:      drivers/hwmon/abituguru3.c
280
281 ACCES 104-DIO-48E GPIO DRIVER
282 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
283 L:      linux-gpio@vger.kernel.org
284 S:      Maintained
285 F:      drivers/gpio/gpio-104-dio-48e.c
286
287 ACCES 104-IDI-48 GPIO DRIVER
288 M:      "William Breathitt Gray" <vilhelm.gray@gmail.com>
289 L:      linux-gpio@vger.kernel.org
290 S:      Maintained
291 F:      drivers/gpio/gpio-104-idi-48.c
292
293 ACCES 104-IDIO-16 GPIO DRIVER
294 M:      "William Breathitt Gray" <vilhelm.gray@gmail.com>
295 L:      linux-gpio@vger.kernel.org
296 S:      Maintained
297 F:      drivers/gpio/gpio-104-idio-16.c
298
299 ACCES 104-QUAD-8 DRIVER
300 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
301 M:      Syed Nayyar Waris <syednwaris@gmail.com>
302 L:      linux-iio@vger.kernel.org
303 S:      Maintained
304 F:      drivers/counter/104-quad-8.c
305
306 ACCES PCI-IDIO-16 GPIO DRIVER
307 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
308 L:      linux-gpio@vger.kernel.org
309 S:      Maintained
310 F:      drivers/gpio/gpio-pci-idio-16.c
311
312 ACCES PCIe-IDIO-24 GPIO DRIVER
313 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
314 L:      linux-gpio@vger.kernel.org
315 S:      Maintained
316 F:      drivers/gpio/gpio-pcie-idio-24.c
317
318 ACENIC DRIVER
319 M:      Jes Sorensen <jes@trained-monkey.org>
320 L:      linux-acenic@sunsite.dk
321 S:      Maintained
322 F:      drivers/net/ethernet/alteon/acenic*
323
324 ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER
325 M:      Peter Kaestle <peter@piie.net>
326 L:      platform-driver-x86@vger.kernel.org
327 S:      Maintained
328 W:      http://piie.net/?section=acerhdf
329 F:      drivers/platform/x86/acerhdf.c
330
331 ACER WMI LAPTOP EXTRAS
332 M:      "Lee, Chun-Yi" <jlee@suse.com>
333 L:      platform-driver-x86@vger.kernel.org
334 S:      Maintained
335 F:      drivers/platform/x86/acer-wmi.c
336
337 ACPI
338 M:      "Rafael J. Wysocki" <rafael@kernel.org>
339 R:      Len Brown <lenb@kernel.org>
340 L:      linux-acpi@vger.kernel.org
341 S:      Supported
342 W:      https://01.org/linux-acpi
343 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
344 B:      https://bugzilla.kernel.org
345 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
346 F:      Documentation/ABI/testing/configfs-acpi
347 F:      Documentation/ABI/testing/sysfs-bus-acpi
348 F:      Documentation/firmware-guide/acpi/
349 F:      drivers/acpi/
350 F:      drivers/pci/*/*acpi*
351 F:      drivers/pci/*acpi*
352 F:      drivers/pnp/pnpacpi/
353 F:      include/acpi/
354 F:      include/linux/acpi.h
355 F:      include/linux/fwnode.h
356 F:      tools/power/acpi/
357
358 ACPI APEI
359 M:      "Rafael J. Wysocki" <rafael@kernel.org>
360 R:      Len Brown <lenb@kernel.org>
361 R:      James Morse <james.morse@arm.com>
362 R:      Tony Luck <tony.luck@intel.com>
363 R:      Borislav Petkov <bp@alien8.de>
364 L:      linux-acpi@vger.kernel.org
365 F:      drivers/acpi/apei/
366
367 ACPI COMPONENT ARCHITECTURE (ACPICA)
368 M:      Robert Moore <robert.moore@intel.com>
369 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
370 L:      linux-acpi@vger.kernel.org
371 L:      devel@acpica.org
372 S:      Supported
373 W:      https://acpica.org/
374 W:      https://github.com/acpica/acpica/
375 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
376 B:      https://bugzilla.kernel.org
377 B:      https://bugs.acpica.org
378 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
379 F:      drivers/acpi/acpica/
380 F:      include/acpi/
381 F:      tools/power/acpi/
382
383 ACPI FOR ARM64 (ACPI/arm64)
384 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
385 M:      Hanjun Guo <guohanjun@huawei.com>
386 M:      Sudeep Holla <sudeep.holla@arm.com>
387 L:      linux-acpi@vger.kernel.org
388 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
389 S:      Maintained
390 F:      drivers/acpi/arm64
391
392 ACPI SERIAL MULTI INSTANTIATE DRIVER
393 M:      Hans de Goede <hdegoede@redhat.com>
394 L:      platform-driver-x86@vger.kernel.org
395 S:      Maintained
396 F:      drivers/platform/x86/serial-multi-instantiate.c
397
398 ACPI PCC(Platform Communication Channel) MAILBOX DRIVER
399 M:      Sudeep Holla <sudeep.holla@arm.com>
400 L:      linux-acpi@vger.kernel.org
401 S:      Supported
402 F:      drivers/mailbox/pcc.c
403
404 ACPI PMIC DRIVERS
405 M:      "Rafael J. Wysocki" <rafael@kernel.org>
406 M:      Len Brown <lenb@kernel.org>
407 R:      Andy Shevchenko <andy@kernel.org>
408 R:      Mika Westerberg <mika.westerberg@linux.intel.com>
409 L:      linux-acpi@vger.kernel.org
410 S:      Supported
411 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
412 B:      https://bugzilla.kernel.org
413 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
414 F:      drivers/acpi/pmic/
415
416 ACPI THERMAL DRIVER
417 M:      Rafael J. Wysocki <rafael@kernel.org>
418 R:      Zhang Rui <rui.zhang@intel.com>
419 L:      linux-acpi@vger.kernel.org
420 S:      Supported
421 W:      https://01.org/linux-acpi
422 B:      https://bugzilla.kernel.org
423 F:      drivers/acpi/*thermal*
424
425 ACPI VIOT DRIVER
426 M:      Jean-Philippe Brucker <jean-philippe@linaro.org>
427 L:      linux-acpi@vger.kernel.org
428 L:      iommu@lists.linux-foundation.org
429 S:      Maintained
430 F:      drivers/acpi/viot.c
431 F:      include/linux/acpi_viot.h
432
433 ACPI WMI DRIVER
434 L:      platform-driver-x86@vger.kernel.org
435 S:      Orphan
436 F:      drivers/platform/x86/wmi.c
437 F:      include/uapi/linux/wmi.h
438
439 ACRN HYPERVISOR SERVICE MODULE
440 M:      Fei Li <fei1.li@intel.com>
441 L:      acrn-dev@lists.projectacrn.org (subscribers-only)
442 S:      Supported
443 W:      https://projectacrn.org
444 F:      Documentation/virt/acrn/
445 F:      drivers/virt/acrn/
446 F:      include/uapi/linux/acrn.h
447
448 AD1889 ALSA SOUND DRIVER
449 L:      linux-parisc@vger.kernel.org
450 S:      Maintained
451 W:      https://parisc.wiki.kernel.org/index.php/AD1889
452 F:      sound/pci/ad1889.*
453
454 AD5110 ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
455 M:      Mugilraj Dhavachelvan <dmugil2000@gmail.com>
456 L:      linux-iio@vger.kernel.org
457 S:      Supported
458 F:      drivers/iio/potentiometer/ad5110.c
459
460 AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
461 M:      Michael Hennerich <michael.hennerich@analog.com>
462 S:      Supported
463 W:      http://wiki.analog.com/AD5254
464 W:      https://ez.analog.com/linux-software-drivers
465 F:      drivers/misc/ad525x_dpot.c
466
467 AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821)
468 M:      Michael Hennerich <michael.hennerich@analog.com>
469 S:      Supported
470 W:      http://wiki.analog.com/AD5398
471 W:      https://ez.analog.com/linux-software-drivers
472 F:      drivers/regulator/ad5398.c
473
474 AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A)
475 M:      Michael Hennerich <michael.hennerich@analog.com>
476 S:      Supported
477 W:      http://wiki.analog.com/AD7142
478 W:      https://ez.analog.com/linux-software-drivers
479 F:      drivers/input/misc/ad714x.c
480
481 AD7877 TOUCHSCREEN DRIVER
482 M:      Michael Hennerich <michael.hennerich@analog.com>
483 S:      Supported
484 W:      http://wiki.analog.com/AD7877
485 W:      https://ez.analog.com/linux-software-drivers
486 F:      drivers/input/touchscreen/ad7877.c
487
488 AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889)
489 M:      Michael Hennerich <michael.hennerich@analog.com>
490 S:      Supported
491 W:      http://wiki.analog.com/AD7879
492 W:      https://ez.analog.com/linux-software-drivers
493 F:      drivers/input/touchscreen/ad7879.c
494
495 ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR)
496 M:      Jiri Kosina <jikos@kernel.org>
497 S:      Maintained
498
499 ADF7242 IEEE 802.15.4 RADIO DRIVER
500 M:      Michael Hennerich <michael.hennerich@analog.com>
501 L:      linux-wpan@vger.kernel.org
502 S:      Supported
503 W:      https://wiki.analog.com/ADF7242
504 W:      https://ez.analog.com/linux-software-drivers
505 F:      Documentation/devicetree/bindings/net/ieee802154/adf7242.txt
506 F:      drivers/net/ieee802154/adf7242.c
507
508 ADM1025 HARDWARE MONITOR DRIVER
509 M:      Jean Delvare <jdelvare@suse.com>
510 L:      linux-hwmon@vger.kernel.org
511 S:      Maintained
512 F:      Documentation/hwmon/adm1025.rst
513 F:      drivers/hwmon/adm1025.c
514
515 ADM1029 HARDWARE MONITOR DRIVER
516 M:      Corentin Labbe <clabbe.montjoie@gmail.com>
517 L:      linux-hwmon@vger.kernel.org
518 S:      Maintained
519 F:      drivers/hwmon/adm1029.c
520
521 ADM8211 WIRELESS DRIVER
522 L:      linux-wireless@vger.kernel.org
523 S:      Orphan
524 W:      https://wireless.wiki.kernel.org/
525 F:      drivers/net/wireless/admtek/adm8211.*
526
527 ADP1653 FLASH CONTROLLER DRIVER
528 M:      Sakari Ailus <sakari.ailus@iki.fi>
529 L:      linux-media@vger.kernel.org
530 S:      Maintained
531 F:      drivers/media/i2c/adp1653.c
532 F:      include/media/i2c/adp1653.h
533
534 ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501)
535 M:      Michael Hennerich <michael.hennerich@analog.com>
536 S:      Supported
537 W:      http://wiki.analog.com/ADP5520
538 W:      https://ez.analog.com/linux-software-drivers
539 F:      drivers/gpio/gpio-adp5520.c
540 F:      drivers/input/keyboard/adp5520-keys.c
541 F:      drivers/leds/leds-adp5520.c
542 F:      drivers/mfd/adp5520.c
543 F:      drivers/video/backlight/adp5520_bl.c
544
545 ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587)
546 M:      Michael Hennerich <michael.hennerich@analog.com>
547 S:      Supported
548 W:      http://wiki.analog.com/ADP5588
549 W:      https://ez.analog.com/linux-software-drivers
550 F:      drivers/gpio/gpio-adp5588.c
551 F:      drivers/input/keyboard/adp5588-keys.c
552
553 ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863)
554 M:      Michael Hennerich <michael.hennerich@analog.com>
555 S:      Supported
556 W:      http://wiki.analog.com/ADP8860
557 W:      https://ez.analog.com/linux-software-drivers
558 F:      drivers/video/backlight/adp8860_bl.c
559
560 ADT746X FAN DRIVER
561 M:      Colin Leroy <colin@colino.net>
562 S:      Maintained
563 F:      drivers/macintosh/therm_adt746x.c
564
565 ADT7475 HARDWARE MONITOR DRIVER
566 M:      Jean Delvare <jdelvare@suse.com>
567 L:      linux-hwmon@vger.kernel.org
568 S:      Maintained
569 F:      Documentation/hwmon/adt7475.rst
570 F:      drivers/hwmon/adt7475.c
571
572 ADVANSYS SCSI DRIVER
573 M:      Matthew Wilcox <willy@infradead.org>
574 M:      Hannes Reinecke <hare@suse.com>
575 L:      linux-scsi@vger.kernel.org
576 S:      Maintained
577 F:      Documentation/scsi/advansys.rst
578 F:      drivers/scsi/advansys.c
579
580 ADVANTECH SWBTN DRIVER
581 M:      Andrea Ho <Andrea.Ho@advantech.com.tw>
582 L:      platform-driver-x86@vger.kernel.org
583 S:      Maintained
584 F:      drivers/platform/x86/adv_swbutton.c
585
586 ADXL313 THREE-AXIS DIGITAL ACCELEROMETER DRIVER
587 M:      Lucas Stankus <lucas.p.stankus@gmail.com>
588 S:      Supported
589 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl313.yaml
590 F:      drivers/iio/accel/adxl313*
591
592 ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346)
593 M:      Michael Hennerich <michael.hennerich@analog.com>
594 S:      Supported
595 W:      http://wiki.analog.com/ADXL345
596 W:      https://ez.analog.com/linux-software-drivers
597 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl345.yaml
598 F:      drivers/input/misc/adxl34x.c
599
600 ADXL355 THREE-AXIS DIGITAL ACCELEROMETER DRIVER
601 M:      Puranjay Mohan <puranjay12@gmail.com>
602 L:      linux-iio@vger.kernel.org
603 S:      Supported
604 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl355.yaml
605 F:      drivers/iio/accel/adxl355.h
606 F:      drivers/iio/accel/adxl355_core.c
607 F:      drivers/iio/accel/adxl355_i2c.c
608 F:      drivers/iio/accel/adxl355_spi.c
609
610 ADXL367 THREE-AXIS DIGITAL ACCELEROMETER DRIVER
611 M:      Cosmin Tanislav <cosmin.tanislav@analog.com>
612 L:      linux-iio@vger.kernel.org
613 S:      Supported
614 W:      http://ez.analog.com/community/linux-device-drivers
615 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl367.yaml
616 F:      drivers/iio/accel/adxl367*
617
618 ADXL372 THREE-AXIS DIGITAL ACCELEROMETER DRIVER
619 M:      Michael Hennerich <michael.hennerich@analog.com>
620 S:      Supported
621 W:      https://ez.analog.com/linux-software-drivers
622 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl372.yaml
623 F:      drivers/iio/accel/adxl372.c
624 F:      drivers/iio/accel/adxl372_i2c.c
625 F:      drivers/iio/accel/adxl372_spi.c
626
627 AF9013 MEDIA DRIVER
628 M:      Antti Palosaari <crope@iki.fi>
629 L:      linux-media@vger.kernel.org
630 S:      Maintained
631 W:      https://linuxtv.org
632 W:      http://palosaari.fi/linux/
633 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
634 T:      git git://linuxtv.org/anttip/media_tree.git
635 F:      drivers/media/dvb-frontends/af9013*
636
637 AF9033 MEDIA DRIVER
638 M:      Antti Palosaari <crope@iki.fi>
639 L:      linux-media@vger.kernel.org
640 S:      Maintained
641 W:      https://linuxtv.org
642 W:      http://palosaari.fi/linux/
643 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
644 T:      git git://linuxtv.org/anttip/media_tree.git
645 F:      drivers/media/dvb-frontends/af9033*
646
647 AFFS FILE SYSTEM
648 M:      David Sterba <dsterba@suse.com>
649 L:      linux-fsdevel@vger.kernel.org
650 S:      Odd Fixes
651 F:      Documentation/filesystems/affs.rst
652 F:      fs/affs/
653
654 AFS FILESYSTEM
655 M:      David Howells <dhowells@redhat.com>
656 M:      Marc Dionne <marc.dionne@auristor.com>
657 L:      linux-afs@lists.infradead.org
658 S:      Supported
659 W:      https://www.infradead.org/~dhowells/kafs/
660 F:      Documentation/filesystems/afs.rst
661 F:      fs/afs/
662 F:      include/trace/events/afs.h
663
664 AGPGART DRIVER
665 M:      David Airlie <airlied@linux.ie>
666 S:      Maintained
667 T:      git git://anongit.freedesktop.org/drm/drm
668 F:      drivers/char/agp/
669 F:      include/linux/agp*
670 F:      include/uapi/linux/agp*
671
672 AHA152X SCSI DRIVER
673 M:      "Juergen E. Fischer" <fischer@norbit.de>
674 L:      linux-scsi@vger.kernel.org
675 S:      Maintained
676 F:      drivers/scsi/aha152x*
677 F:      drivers/scsi/pcmcia/aha152x*
678
679 AIC7XXX / AIC79XX SCSI DRIVER
680 M:      Hannes Reinecke <hare@suse.com>
681 L:      linux-scsi@vger.kernel.org
682 S:      Maintained
683 F:      drivers/scsi/aic7xxx/
684
685 AIMSLAB FM RADIO RECEIVER DRIVER
686 M:      Hans Verkuil <hverkuil@xs4all.nl>
687 L:      linux-media@vger.kernel.org
688 S:      Maintained
689 W:      https://linuxtv.org
690 T:      git git://linuxtv.org/media_tree.git
691 F:      drivers/media/radio/radio-aimslab*
692
693 AIO
694 M:      Benjamin LaHaise <bcrl@kvack.org>
695 L:      linux-aio@kvack.org
696 S:      Supported
697 F:      fs/aio.c
698 F:      include/linux/*aio*.h
699
700 AIRSPY MEDIA DRIVER
701 M:      Antti Palosaari <crope@iki.fi>
702 L:      linux-media@vger.kernel.org
703 S:      Maintained
704 W:      https://linuxtv.org
705 W:      http://palosaari.fi/linux/
706 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
707 T:      git git://linuxtv.org/anttip/media_tree.git
708 F:      drivers/media/usb/airspy/
709
710 ALACRITECH GIGABIT ETHERNET DRIVER
711 M:      Lino Sanfilippo <LinoSanfilippo@gmx.de>
712 S:      Maintained
713 F:      drivers/net/ethernet/alacritech/*
714
715 ALCATEL SPEEDTOUCH USB DRIVER
716 M:      Duncan Sands <duncan.sands@free.fr>
717 L:      linux-usb@vger.kernel.org
718 S:      Maintained
719 W:      http://www.linux-usb.org/SpeedTouch/
720 F:      drivers/usb/atm/speedtch.c
721 F:      drivers/usb/atm/usbatm.c
722
723 ALCHEMY AU1XX0 MMC DRIVER
724 M:      Manuel Lauss <manuel.lauss@gmail.com>
725 S:      Maintained
726 F:      drivers/mmc/host/au1xmmc.c
727
728 ALI1563 I2C DRIVER
729 M:      Rudolf Marek <r.marek@assembler.cz>
730 L:      linux-i2c@vger.kernel.org
731 S:      Maintained
732 F:      Documentation/i2c/busses/i2c-ali1563.rst
733 F:      drivers/i2c/busses/i2c-ali1563.c
734
735 ALIENWARE WMI DRIVER
736 L:      Dell.Client.Kernel@dell.com
737 S:      Maintained
738 F:      drivers/platform/x86/dell/alienware-wmi.c
739
740 ALL SENSORS DLH SERIES PRESSURE SENSORS DRIVER
741 M:      Tomislav Denis <tomislav.denis@avl.com>
742 L:      linux-iio@vger.kernel.org
743 S:      Maintained
744 W:      http://www.allsensors.com/
745 F:      Documentation/devicetree/bindings/iio/pressure/asc,dlhl60d.yaml
746 F:      drivers/iio/pressure/dlhl60d.c
747
748 ALLEGRO DVT VIDEO IP CORE DRIVER
749 M:      Michael Tretter <m.tretter@pengutronix.de>
750 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
751 L:      linux-media@vger.kernel.org
752 S:      Maintained
753 F:      Documentation/devicetree/bindings/media/allegro,al5e.yaml
754 F:      drivers/media/platform/allegro-dvt/
755
756 ALLWINNER A10 CSI DRIVER
757 M:      Maxime Ripard <mripard@kernel.org>
758 L:      linux-media@vger.kernel.org
759 S:      Maintained
760 T:      git git://linuxtv.org/media_tree.git
761 F:      Documentation/devicetree/bindings/media/allwinner,sun4i-a10-csi.yaml
762 F:      drivers/media/platform/sunxi/sun4i-csi/
763
764 ALLWINNER CPUFREQ DRIVER
765 M:      Yangtao Li <tiny.windzz@gmail.com>
766 L:      linux-pm@vger.kernel.org
767 S:      Maintained
768 F:      Documentation/devicetree/bindings/opp/allwinner,sun50i-h6-operating-points.yaml
769 F:      drivers/cpufreq/sun50i-cpufreq-nvmem.c
770
771 ALLWINNER CRYPTO DRIVERS
772 M:      Corentin Labbe <clabbe.montjoie@gmail.com>
773 L:      linux-crypto@vger.kernel.org
774 S:      Maintained
775 F:      drivers/crypto/allwinner/
776
777 ALLWINNER HARDWARE SPINLOCK SUPPORT
778 M:      Wilken Gottwalt <wilken.gottwalt@posteo.net>
779 S:      Maintained
780 F:      Documentation/devicetree/bindings/hwlock/allwinner,sun6i-a31-hwspinlock.yaml
781 F:      drivers/hwspinlock/sun6i_hwspinlock.c
782
783 ALLWINNER THERMAL DRIVER
784 M:      Vasily Khoruzhick <anarsoul@gmail.com>
785 M:      Yangtao Li <tiny.windzz@gmail.com>
786 L:      linux-pm@vger.kernel.org
787 S:      Maintained
788 F:      Documentation/devicetree/bindings/thermal/allwinner,sun8i-a83t-ths.yaml
789 F:      drivers/thermal/sun8i_thermal.c
790
791 ALLWINNER VPU DRIVER
792 M:      Maxime Ripard <mripard@kernel.org>
793 M:      Paul Kocialkowski <paul.kocialkowski@bootlin.com>
794 L:      linux-media@vger.kernel.org
795 S:      Maintained
796 F:      drivers/staging/media/sunxi/cedrus/
797
798 ALPHA PORT
799 M:      Richard Henderson <rth@twiddle.net>
800 M:      Ivan Kokshaysky <ink@jurassic.park.msu.ru>
801 M:      Matt Turner <mattst88@gmail.com>
802 L:      linux-alpha@vger.kernel.org
803 S:      Odd Fixes
804 F:      arch/alpha/
805
806 ALPS PS/2 TOUCHPAD DRIVER
807 R:      Pali Rohár <pali@kernel.org>
808 F:      drivers/input/mouse/alps.*
809
810 ALTERA I2C CONTROLLER DRIVER
811 M:      Thor Thayer <thor.thayer@linux.intel.com>
812 S:      Maintained
813 F:      Documentation/devicetree/bindings/i2c/i2c-altera.txt
814 F:      drivers/i2c/busses/i2c-altera.c
815
816 ALTERA MAILBOX DRIVER
817 M:      Mun Yew Tham <mun.yew.tham@intel.com>
818 S:      Maintained
819 F:      drivers/mailbox/mailbox-altera.c
820
821 ALTERA MSGDMA IP CORE DRIVER
822 M:      Olivier Dautricourt <olivier.dautricourt@orolia.com>
823 R:      Stefan Roese <sr@denx.de>
824 L:      dmaengine@vger.kernel.org
825 S:      Odd Fixes
826 F:      Documentation/devicetree/bindings/dma/altr,msgdma.yaml
827 F:      drivers/dma/altera-msgdma.c
828
829 ALTERA PIO DRIVER
830 M:      Mun Yew Tham <mun.yew.tham@intel.com>
831 L:      linux-gpio@vger.kernel.org
832 S:      Maintained
833 F:      drivers/gpio/gpio-altera.c
834
835 ALTERA SYSTEM MANAGER DRIVER
836 M:      Thor Thayer <thor.thayer@linux.intel.com>
837 S:      Maintained
838 F:      drivers/mfd/altera-sysmgr.c
839 F:      include/linux/mfd/altera-sysmgr.h
840
841 ALTERA SYSTEM RESOURCE DRIVER FOR ARRIA10 DEVKIT
842 M:      Thor Thayer <thor.thayer@linux.intel.com>
843 S:      Maintained
844 F:      drivers/gpio/gpio-altera-a10sr.c
845 F:      drivers/mfd/altera-a10sr.c
846 F:      drivers/reset/reset-a10sr.c
847 F:      include/dt-bindings/reset/altr,rst-mgr-a10sr.h
848 F:      include/linux/mfd/altera-a10sr.h
849
850 ALTERA TRIPLE SPEED ETHERNET DRIVER
851 M:      Joyce Ooi <joyce.ooi@intel.com>
852 L:      netdev@vger.kernel.org
853 S:      Maintained
854 F:      drivers/net/ethernet/altera/
855
856 ALTERA UART/JTAG UART SERIAL DRIVERS
857 M:      Tobias Klauser <tklauser@distanz.ch>
858 L:      linux-serial@vger.kernel.org
859 S:      Maintained
860 F:      drivers/tty/serial/altera_jtaguart.c
861 F:      drivers/tty/serial/altera_uart.c
862 F:      include/linux/altera_jtaguart.h
863 F:      include/linux/altera_uart.h
864
865 AMAZON ANNAPURNA LABS FIC DRIVER
866 M:      Talel Shenhar <talel@amazon.com>
867 S:      Maintained
868 F:      Documentation/devicetree/bindings/interrupt-controller/amazon,al-fic.txt
869 F:      drivers/irqchip/irq-al-fic.c
870
871 AMAZON ANNAPURNA LABS MEMORY CONTROLLER EDAC
872 M:      Talel Shenhar <talel@amazon.com>
873 M:      Talel Shenhar <talelshenhar@gmail.com>
874 S:      Maintained
875 F:      Documentation/devicetree/bindings/edac/amazon,al-mc-edac.yaml
876 F:      drivers/edac/al_mc_edac.c
877
878 AMAZON ANNAPURNA LABS THERMAL MMIO DRIVER
879 M:      Talel Shenhar <talel@amazon.com>
880 S:      Maintained
881 F:      Documentation/devicetree/bindings/thermal/amazon,al-thermal.txt
882 F:      drivers/thermal/thermal_mmio.c
883
884 AMAZON ETHERNET DRIVERS
885 M:      Shay Agroskin <shayagr@amazon.com>
886 M:      Arthur Kiyanovski <akiyano@amazon.com>
887 R:      David Arinzon <darinzon@amazon.com>
888 R:      Noam Dagan <ndagan@amazon.com>
889 R:      Saeed Bishara <saeedb@amazon.com>
890 L:      netdev@vger.kernel.org
891 S:      Supported
892 F:      Documentation/networking/device_drivers/ethernet/amazon/ena.rst
893 F:      drivers/net/ethernet/amazon/
894
895 AMAZON RDMA EFA DRIVER
896 M:      Gal Pressman <galpress@amazon.com>
897 R:      Yossi Leybovich <sleybo@amazon.com>
898 L:      linux-rdma@vger.kernel.org
899 S:      Supported
900 Q:      https://patchwork.kernel.org/project/linux-rdma/list/
901 F:      drivers/infiniband/hw/efa/
902 F:      include/uapi/rdma/efa-abi.h
903
904 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER
905 M:      Tom Lendacky <thomas.lendacky@amd.com>
906 M:      John Allen <john.allen@amd.com>
907 L:      linux-crypto@vger.kernel.org
908 S:      Supported
909 F:      drivers/crypto/ccp/
910 F:      include/linux/ccp.h
911
912 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER - SEV SUPPORT
913 M:      Brijesh Singh <brijesh.singh@amd.com>
914 M:      Tom Lendacky <thomas.lendacky@amd.com>
915 L:      linux-crypto@vger.kernel.org
916 S:      Supported
917 F:      drivers/crypto/ccp/sev*
918 F:      include/uapi/linux/psp-sev.h
919
920 AMD DISPLAY CORE
921 M:      Harry Wentland <harry.wentland@amd.com>
922 M:      Leo Li <sunpeng.li@amd.com>
923 M:      Rodrigo Siqueira <Rodrigo.Siqueira@amd.com>
924 L:      amd-gfx@lists.freedesktop.org
925 S:      Supported
926 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
927 F:      drivers/gpu/drm/amd/display/
928
929 AMD FAM15H PROCESSOR POWER MONITORING DRIVER
930 M:      Huang Rui <ray.huang@amd.com>
931 L:      linux-hwmon@vger.kernel.org
932 S:      Supported
933 F:      Documentation/hwmon/fam15h_power.rst
934 F:      drivers/hwmon/fam15h_power.c
935
936 AMD FCH GPIO DRIVER
937 M:      Enrico Weigelt, metux IT consult <info@metux.net>
938 L:      linux-gpio@vger.kernel.org
939 S:      Maintained
940 F:      drivers/gpio/gpio-amd-fch.c
941 F:      include/linux/platform_data/gpio/gpio-amd-fch.h
942
943 AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
944 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
945 S:      Orphan
946 F:      drivers/usb/gadget/udc/amd5536udc.*
947
948 AMD GEODE PROCESSOR/CHIPSET SUPPORT
949 M:      Andres Salomon <dilinger@queued.net>
950 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
951 S:      Supported
952 W:      http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
953 F:      arch/x86/include/asm/geode.h
954 F:      drivers/char/hw_random/geode-rng.c
955 F:      drivers/crypto/geode*
956 F:      drivers/video/fbdev/geode/
957
958 AMD IOMMU (AMD-VI)
959 M:      Joerg Roedel <joro@8bytes.org>
960 R:      Suravee Suthikulpanit <suravee.suthikulpanit@amd.com>
961 L:      iommu@lists.linux-foundation.org
962 S:      Maintained
963 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
964 F:      drivers/iommu/amd/
965 F:      include/linux/amd-iommu.h
966
967 AMD KFD
968 M:      Felix Kuehling <Felix.Kuehling@amd.com>
969 L:      amd-gfx@lists.freedesktop.org
970 S:      Supported
971 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
972 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd*.[ch]
973 F:      drivers/gpu/drm/amd/amdkfd/
974 F:      drivers/gpu/drm/amd/include/cik_structs.h
975 F:      drivers/gpu/drm/amd/include/kgd_kfd_interface.h
976 F:      drivers/gpu/drm/amd/include/v9_structs.h
977 F:      drivers/gpu/drm/amd/include/vi_structs.h
978 F:      include/uapi/linux/kfd_ioctl.h
979 F:      include/uapi/linux/kfd_sysfs.h
980
981 AMD SPI DRIVER
982 M:      Sanjay R Mehta <sanju.mehta@amd.com>
983 S:      Maintained
984 F:      drivers/spi/spi-amd.c
985
986 AMD MP2 I2C DRIVER
987 M:      Elie Morisse <syniurge@gmail.com>
988 M:      Nehal Shah <nehal-bakulchandra.shah@amd.com>
989 M:      Shyam Sundar S K <shyam-sundar.s-k@amd.com>
990 L:      linux-i2c@vger.kernel.org
991 S:      Maintained
992 F:      drivers/i2c/busses/i2c-amd-mp2*
993
994 AMD PMC DRIVER
995 M:      Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
996 L:      platform-driver-x86@vger.kernel.org
997 S:      Maintained
998 F:      drivers/platform/x86/amd-pmc.*
999
1000 AMD HSMP DRIVER
1001 M:      Naveen Krishna Chatradhi <naveenkrishna.chatradhi@amd.com>
1002 R:      Carlos Bilbao <carlos.bilbao@amd.com>
1003 L:      platform-driver-x86@vger.kernel.org
1004 S:      Maintained
1005 F:      Documentation/x86/amd_hsmp.rst
1006 F:      arch/x86/include/asm/amd_hsmp.h
1007 F:      arch/x86/include/uapi/asm/amd_hsmp.h
1008 F:      drivers/platform/x86/amd_hsmp.c
1009
1010 AMD POWERPLAY AND SWSMU
1011 M:      Evan Quan <evan.quan@amd.com>
1012 L:      amd-gfx@lists.freedesktop.org
1013 S:      Supported
1014 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
1015 F:      drivers/gpu/drm/amd/pm/
1016
1017 AMD PSTATE DRIVER
1018 M:      Huang Rui <ray.huang@amd.com>
1019 L:      linux-pm@vger.kernel.org
1020 S:      Supported
1021 F:      Documentation/admin-guide/pm/amd-pstate.rst
1022 F:      drivers/cpufreq/amd-pstate*
1023 F:      tools/power/x86/amd_pstate_tracer/amd_pstate_trace.py
1024
1025 AMD PTDMA DRIVER
1026 M:      Sanjay R Mehta <sanju.mehta@amd.com>
1027 L:      dmaengine@vger.kernel.org
1028 S:      Maintained
1029 F:      drivers/dma/ptdma/
1030
1031 AMD SEATTLE DEVICE TREE SUPPORT
1032 M:      Brijesh Singh <brijeshkumar.singh@amd.com>
1033 M:      Suravee Suthikulpanit <suravee.suthikulpanit@amd.com>
1034 M:      Tom Lendacky <thomas.lendacky@amd.com>
1035 S:      Supported
1036 F:      arch/arm64/boot/dts/amd/
1037
1038 AMD XGBE DRIVER
1039 M:      Tom Lendacky <thomas.lendacky@amd.com>
1040 L:      netdev@vger.kernel.org
1041 S:      Supported
1042 F:      arch/arm64/boot/dts/amd/amd-seattle-xgbe*.dtsi
1043 F:      drivers/net/ethernet/amd/xgbe/
1044
1045 AMD SENSOR FUSION HUB DRIVER
1046 M:      Nehal Shah <nehal-bakulchandra.shah@amd.com>
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 F:      drivers/staging/android/
1329
1330 ANDROID GOLDFISH PIC DRIVER
1331 M:      Miodrag Dinic <miodrag.dinic@mips.com>
1332 S:      Supported
1333 F:      Documentation/devicetree/bindings/interrupt-controller/google,goldfish-pic.txt
1334 F:      drivers/irqchip/irq-goldfish-pic.c
1335
1336 ANDROID GOLDFISH RTC DRIVER
1337 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
1338 S:      Supported
1339 F:      Documentation/devicetree/bindings/rtc/google,goldfish-rtc.txt
1340 F:      drivers/rtc/rtc-goldfish.c
1341
1342 AOA (Apple Onboard Audio) ALSA DRIVER
1343 M:      Johannes Berg <johannes@sipsolutions.net>
1344 L:      linuxppc-dev@lists.ozlabs.org
1345 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1346 S:      Maintained
1347 F:      sound/aoa/
1348
1349 APEX EMBEDDED SYSTEMS STX104 IIO DRIVER
1350 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
1351 L:      linux-iio@vger.kernel.org
1352 S:      Maintained
1353 F:      drivers/iio/adc/stx104.c
1354
1355 APM DRIVER
1356 M:      Jiri Kosina <jikos@kernel.org>
1357 S:      Odd fixes
1358 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/apm.git
1359 F:      arch/x86/kernel/apm_32.c
1360 F:      drivers/char/apm-emulation.c
1361 F:      include/linux/apm_bios.h
1362 F:      include/uapi/linux/apm_bios.h
1363
1364 APPARMOR SECURITY MODULE
1365 M:      John Johansen <john.johansen@canonical.com>
1366 L:      apparmor@lists.ubuntu.com (subscribers-only, general discussion)
1367 S:      Supported
1368 W:      wiki.apparmor.net
1369 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jj/linux-apparmor
1370 F:      Documentation/admin-guide/LSM/apparmor.rst
1371 F:      security/apparmor/
1372
1373 APPLE BCM5974 MULTITOUCH DRIVER
1374 M:      Henrik Rydberg <rydberg@bitmath.org>
1375 L:      linux-input@vger.kernel.org
1376 S:      Odd fixes
1377 F:      drivers/input/mouse/bcm5974.c
1378
1379 APPLE DART IOMMU DRIVER
1380 M:      Sven Peter <sven@svenpeter.dev>
1381 R:      Alyssa Rosenzweig <alyssa@rosenzweig.io>
1382 L:      iommu@lists.linux-foundation.org
1383 S:      Maintained
1384 F:      Documentation/devicetree/bindings/iommu/apple,dart.yaml
1385 F:      drivers/iommu/apple-dart.c
1386
1387 APPLE PCIE CONTROLLER DRIVER
1388 M:      Alyssa Rosenzweig <alyssa@rosenzweig.io>
1389 M:      Marc Zyngier <maz@kernel.org>
1390 L:      linux-pci@vger.kernel.org
1391 S:      Maintained
1392 F:      drivers/pci/controller/pcie-apple.c
1393
1394 APPLE SMC DRIVER
1395 M:      Henrik Rydberg <rydberg@bitmath.org>
1396 L:      linux-hwmon@vger.kernel.org
1397 S:      Odd fixes
1398 F:      drivers/hwmon/applesmc.c
1399
1400 APPLETALK NETWORK LAYER
1401 L:      netdev@vger.kernel.org
1402 S:      Odd fixes
1403 F:      drivers/net/appletalk/
1404 F:      include/linux/atalk.h
1405 F:      include/uapi/linux/atalk.h
1406 F:      net/appletalk/
1407
1408 APPLIED MICRO (APM) X-GENE DEVICE TREE SUPPORT
1409 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1410 S:      Supported
1411 F:      arch/arm64/boot/dts/apm/
1412
1413 APPLIED MICRO (APM) X-GENE SOC EDAC
1414 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1415 S:      Supported
1416 F:      Documentation/devicetree/bindings/edac/apm-xgene-edac.txt
1417 F:      drivers/edac/xgene_edac.c
1418
1419 APPLIED MICRO (APM) X-GENE SOC ETHERNET (V2) DRIVER
1420 M:      Iyappan Subramanian <iyappan@os.amperecomputing.com>
1421 M:      Keyur Chudgar <keyur@os.amperecomputing.com>
1422 S:      Supported
1423 F:      drivers/net/ethernet/apm/xgene-v2/
1424
1425 APPLIED MICRO (APM) X-GENE SOC ETHERNET DRIVER
1426 M:      Iyappan Subramanian <iyappan@os.amperecomputing.com>
1427 M:      Keyur Chudgar <keyur@os.amperecomputing.com>
1428 M:      Quan Nguyen <quan@os.amperecomputing.com>
1429 S:      Supported
1430 F:      Documentation/devicetree/bindings/net/apm-xgene-enet.txt
1431 F:      Documentation/devicetree/bindings/net/apm-xgene-mdio.txt
1432 F:      drivers/net/ethernet/apm/xgene/
1433 F:      drivers/net/mdio/mdio-xgene.c
1434
1435 APPLIED MICRO (APM) X-GENE SOC PMU
1436 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1437 S:      Supported
1438 F:      Documentation/admin-guide/perf/xgene-pmu.rst
1439 F:      Documentation/devicetree/bindings/perf/apm-xgene-pmu.txt
1440 F:      drivers/perf/xgene_pmu.c
1441
1442 APTINA CAMERA SENSOR PLL
1443 M:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
1444 L:      linux-media@vger.kernel.org
1445 S:      Maintained
1446 F:      drivers/media/i2c/aptina-pll.*
1447
1448 AQUACOMPUTER D5 NEXT PUMP SENSOR DRIVER
1449 M:      Aleksa Savic <savicaleksa83@gmail.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/i2c/apple,i2c.yaml
1838 F:      Documentation/devicetree/bindings/interrupt-controller/apple,*
1839 F:      Documentation/devicetree/bindings/mailbox/apple,mailbox.yaml
1840 F:      Documentation/devicetree/bindings/pci/apple,pcie.yaml
1841 F:      Documentation/devicetree/bindings/pinctrl/apple,pinctrl.yaml
1842 F:      Documentation/devicetree/bindings/power/apple*
1843 F:      Documentation/devicetree/bindings/watchdog/apple,wdt.yaml
1844 F:      arch/arm64/boot/dts/apple/
1845 F:      drivers/i2c/busses/i2c-pasemi-core.c
1846 F:      drivers/i2c/busses/i2c-pasemi-platform.c
1847 F:      drivers/irqchip/irq-apple-aic.c
1848 F:      drivers/mailbox/apple-mailbox.c
1849 F:      drivers/pinctrl/pinctrl-apple-gpio.c
1850 F:      drivers/soc/apple/*
1851 F:      drivers/watchdog/apple_wdt.c
1852 F:      include/dt-bindings/interrupt-controller/apple-aic.h
1853 F:      include/dt-bindings/pinctrl/apple.h
1854 F:      include/linux/apple-mailbox.h
1855
1856 ARM/ARTPEC MACHINE SUPPORT
1857 M:      Jesper Nilsson <jesper.nilsson@axis.com>
1858 M:      Lars Persson <lars.persson@axis.com>
1859 L:      linux-arm-kernel@axis.com
1860 S:      Maintained
1861 F:      Documentation/devicetree/bindings/pinctrl/axis,artpec6-pinctrl.txt
1862 F:      arch/arm/boot/dts/artpec6*
1863 F:      arch/arm/mach-artpec
1864 F:      drivers/clk/axis
1865 F:      drivers/crypto/axis
1866 F:      drivers/mmc/host/usdhi6rol0.c
1867 F:      drivers/pinctrl/pinctrl-artpec*
1868
1869 ARM/ASPEED I2C DRIVER
1870 M:      Brendan Higgins <brendanhiggins@google.com>
1871 R:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
1872 R:      Joel Stanley <joel@jms.id.au>
1873 L:      linux-i2c@vger.kernel.org
1874 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
1875 S:      Maintained
1876 F:      Documentation/devicetree/bindings/i2c/aspeed,i2c.yaml
1877 F:      Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2400-i2c-ic.txt
1878 F:      drivers/i2c/busses/i2c-aspeed.c
1879 F:      drivers/irqchip/irq-aspeed-i2c-ic.c
1880
1881 ARM/ASPEED MACHINE SUPPORT
1882 M:      Joel Stanley <joel@jms.id.au>
1883 R:      Andrew Jeffery <andrew@aj.id.au>
1884 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1885 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
1886 S:      Supported
1887 Q:      https://patchwork.ozlabs.org/project/linux-aspeed/list/
1888 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joel/aspeed.git
1889 F:      arch/arm/boot/dts/aspeed-*
1890 F:      arch/arm/mach-aspeed/
1891 N:      aspeed
1892
1893 ARM/BITMAIN ARCHITECTURE
1894 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
1895 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1896 S:      Maintained
1897 F:      Documentation/devicetree/bindings/arm/bitmain.yaml
1898 F:      Documentation/devicetree/bindings/clock/bitmain,bm1880-clk.yaml
1899 F:      Documentation/devicetree/bindings/pinctrl/bitmain,bm1880-pinctrl.txt
1900 F:      arch/arm64/boot/dts/bitmain/
1901 F:      drivers/clk/clk-bm1880.c
1902 F:      drivers/pinctrl/pinctrl-bm1880.c
1903
1904 ARM/CALXEDA HIGHBANK ARCHITECTURE
1905 M:      Andre Przywara <andre.przywara@arm.com>
1906 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1907 S:      Maintained
1908 F:      arch/arm/boot/dts/ecx-*.dts*
1909 F:      arch/arm/boot/dts/highbank.dts
1910 F:      arch/arm/mach-highbank/
1911
1912 ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
1913 M:      Krzysztof Halasa <khalasa@piap.pl>
1914 S:      Maintained
1915 F:      arch/arm/mach-cns3xxx/
1916
1917 ARM/CAVIUM THUNDER NETWORK DRIVER
1918 M:      Sunil Goutham <sgoutham@marvell.com>
1919 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1920 S:      Supported
1921 F:      drivers/net/ethernet/cavium/thunder/
1922
1923 ARM/CIRRUS LOGIC BK3 MACHINE SUPPORT
1924 M:      Lukasz Majewski <lukma@denx.de>
1925 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1926 S:      Maintained
1927 F:      arch/arm/mach-ep93xx/ts72xx.c
1928
1929 ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
1930 M:      Alexander Shiyan <shc_work@mail.ru>
1931 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1932 S:      Odd Fixes
1933 N:      clps711x
1934
1935 ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
1936 M:      Lennert Buytenhek <kernel@wantstofly.org>
1937 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1938 S:      Maintained
1939
1940 ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
1941 M:      Hartley Sweeten <hsweeten@visionengravers.com>
1942 M:      Alexander Sverdlin <alexander.sverdlin@gmail.com>
1943 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1944 S:      Maintained
1945 F:      arch/arm/mach-ep93xx/
1946 F:      arch/arm/mach-ep93xx/include/mach/
1947
1948 ARM/CLKDEV SUPPORT
1949 M:      Russell King <linux@armlinux.org.uk>
1950 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1951 S:      Maintained
1952 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git clkdev
1953 F:      drivers/clk/clkdev.c
1954
1955 ARM/CONEXANT DIGICOLOR MACHINE SUPPORT
1956 M:      Baruch Siach <baruch@tkos.co.il>
1957 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1958 S:      Maintained
1959 F:      arch/arm/boot/dts/cx92755*
1960 N:      digicolor
1961
1962 ARM/CONTEC MICRO9 MACHINE SUPPORT
1963 M:      Hubert Feurstein <hubert.feurstein@contec.at>
1964 S:      Maintained
1965 F:      arch/arm/mach-ep93xx/micro9.c
1966
1967 ARM/CORESIGHT FRAMEWORK AND DRIVERS
1968 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
1969 M:      Suzuki K Poulose <suzuki.poulose@arm.com>
1970 R:      Mike Leach <mike.leach@linaro.org>
1971 R:      Leo Yan <leo.yan@linaro.org>
1972 L:      coresight@lists.linaro.org (moderated for non-subscribers)
1973 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1974 S:      Maintained
1975 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/coresight/linux.git
1976 F:      Documentation/ABI/testing/sysfs-bus-coresight-devices-*
1977 F:      Documentation/devicetree/bindings/arm/coresight-cpu-debug.txt
1978 F:      Documentation/devicetree/bindings/arm/coresight-cti.yaml
1979 F:      Documentation/devicetree/bindings/arm/coresight.txt
1980 F:      Documentation/devicetree/bindings/arm/ete.yaml
1981 F:      Documentation/devicetree/bindings/arm/trbe.yaml
1982 F:      Documentation/trace/coresight/*
1983 F:      drivers/hwtracing/coresight/*
1984 F:      include/dt-bindings/arm/coresight-cti-dt.h
1985 F:      include/linux/coresight*
1986 F:      samples/coresight/*
1987 F:      tools/perf/arch/arm/util/auxtrace.c
1988 F:      tools/perf/arch/arm/util/cs-etm.c
1989 F:      tools/perf/arch/arm/util/cs-etm.h
1990 F:      tools/perf/arch/arm/util/pmu.c
1991 F:      tools/perf/util/cs-etm-decoder/*
1992 F:      tools/perf/util/cs-etm.*
1993
1994 ARM/CORGI MACHINE SUPPORT
1995 M:      Richard Purdie <rpurdie@rpsys.net>
1996 S:      Maintained
1997
1998 ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
1999 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
2000 M:      Linus Walleij <linus.walleij@linaro.org>
2001 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2002 S:      Maintained
2003 T:      git git://github.com/ulli-kroll/linux.git
2004 F:      Documentation/devicetree/bindings/arm/gemini.yaml
2005 F:      Documentation/devicetree/bindings/net/cortina,gemini-ethernet.txt
2006 F:      Documentation/devicetree/bindings/pinctrl/cortina,gemini-pinctrl.txt
2007 F:      Documentation/devicetree/bindings/rtc/faraday,ftrtc010.yaml
2008 F:      arch/arm/boot/dts/gemini*
2009 F:      arch/arm/mach-gemini/
2010 F:      drivers/crypto/gemini/
2011 F:      drivers/net/ethernet/cortina/
2012 F:      drivers/pinctrl/pinctrl-gemini.c
2013 F:      drivers/rtc/rtc-ftrtc010.c
2014
2015 ARM/CZ.NIC TURRIS SUPPORT
2016 M:      Marek Behún <kabel@kernel.org>
2017 S:      Maintained
2018 W:      https://www.turris.cz/
2019 F:      Documentation/ABI/testing/debugfs-moxtet
2020 F:      Documentation/ABI/testing/sysfs-bus-moxtet-devices
2021 F:      Documentation/ABI/testing/sysfs-firmware-turris-mox-rwtm
2022 F:      Documentation/devicetree/bindings/bus/moxtet.txt
2023 F:      Documentation/devicetree/bindings/firmware/cznic,turris-mox-rwtm.txt
2024 F:      Documentation/devicetree/bindings/gpio/gpio-moxtet.txt
2025 F:      Documentation/devicetree/bindings/leds/cznic,turris-omnia-leds.yaml
2026 F:      Documentation/devicetree/bindings/watchdog/armada-37xx-wdt.txt
2027 F:      drivers/bus/moxtet.c
2028 F:      drivers/firmware/turris-mox-rwtm.c
2029 F:      drivers/leds/leds-turris-omnia.c
2030 F:      drivers/mailbox/armada-37xx-rwtm-mailbox.c
2031 F:      drivers/gpio/gpio-moxtet.c
2032 F:      drivers/watchdog/armada_37xx_wdt.c
2033 F:      include/dt-bindings/bus/moxtet.h
2034 F:      include/linux/armada-37xx-rwtm-mailbox.h
2035 F:      include/linux/moxtet.h
2036
2037 ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
2038 M:      Robert Jarzmik <robert.jarzmik@free.fr>
2039 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2040 S:      Maintained
2041 F:      arch/arm/mach-pxa/ezx.c
2042
2043 ARM/FARADAY FA526 PORT
2044 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
2045 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2046 S:      Maintained
2047 T:      git git://git.berlios.de/gemini-board
2048 F:      arch/arm/mm/*-fa*
2049
2050 ARM/FOOTBRIDGE ARCHITECTURE
2051 M:      Russell King <linux@armlinux.org.uk>
2052 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2053 S:      Maintained
2054 W:      http://www.armlinux.org.uk/
2055 F:      arch/arm/include/asm/hardware/dec21285.h
2056 F:      arch/arm/mach-footbridge/
2057
2058 ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
2059 M:      Shawn Guo <shawnguo@kernel.org>
2060 M:      Sascha Hauer <s.hauer@pengutronix.de>
2061 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
2062 R:      Fabio Estevam <festevam@gmail.com>
2063 R:      NXP Linux Team <linux-imx@nxp.com>
2064 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2065 S:      Maintained
2066 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
2067 X:      drivers/media/i2c/
2068 N:      imx
2069 N:      mxs
2070
2071 ARM/FREESCALE LAYERSCAPE ARM ARCHITECTURE
2072 M:      Shawn Guo <shawnguo@kernel.org>
2073 M:      Li Yang <leoyang.li@nxp.com>
2074 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2075 S:      Maintained
2076 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
2077 F:      arch/arm/boot/dts/ls1021a*
2078 F:      arch/arm64/boot/dts/freescale/fsl-*
2079 F:      arch/arm64/boot/dts/freescale/qoriq-*
2080
2081 ARM/FREESCALE VYBRID ARM ARCHITECTURE
2082 M:      Shawn Guo <shawnguo@kernel.org>
2083 M:      Sascha Hauer <s.hauer@pengutronix.de>
2084 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
2085 R:      Stefan Agner <stefan@agner.ch>
2086 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2087 S:      Maintained
2088 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
2089 F:      arch/arm/boot/dts/vf*
2090 F:      arch/arm/mach-imx/*vf610*
2091
2092 ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
2093 M:      Lennert Buytenhek <kernel@wantstofly.org>
2094 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2095 S:      Maintained
2096
2097 ARM/GUMSTIX MACHINE SUPPORT
2098 M:      Steve Sakoman <sakoman@gmail.com>
2099 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2100 S:      Maintained
2101
2102 ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
2103 M:      Philipp Zabel <philipp.zabel@gmail.com>
2104 M:      Paul Parsons <lost.distance@yahoo.com>
2105 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2106 S:      Maintained
2107 F:      arch/arm/mach-pxa/hx4700.c
2108 F:      arch/arm/mach-pxa/include/mach/hx4700.h
2109 F:      sound/soc/pxa/hx4700.c
2110
2111 ARM/HISILICON SOC SUPPORT
2112 M:      Wei Xu <xuwei5@hisilicon.com>
2113 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2114 S:      Supported
2115 W:      http://www.hisilicon.com
2116 T:      git git://github.com/hisilicon/linux-hisi.git
2117 F:      arch/arm/boot/dts/hi3*
2118 F:      arch/arm/boot/dts/hip*
2119 F:      arch/arm/boot/dts/hisi*
2120 F:      arch/arm/mach-hisi/
2121 F:      arch/arm64/boot/dts/hisilicon/
2122
2123 ARM/HP JORNADA 7XX MACHINE SUPPORT
2124 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
2125 S:      Maintained
2126 W:      www.jlime.com
2127 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
2128 F:      arch/arm/mach-sa1100/include/mach/jornada720.h
2129 F:      arch/arm/mach-sa1100/jornada720.c
2130
2131 ARM/IGEP MACHINE SUPPORT
2132 M:      Enric Balletbo i Serra <eballetbo@gmail.com>
2133 M:      Javier Martinez Canillas <javier@dowhile0.org>
2134 L:      linux-omap@vger.kernel.org
2135 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2136 S:      Maintained
2137 F:      arch/arm/boot/dts/omap3-igep*
2138
2139 ARM/INCOME PXA270 SUPPORT
2140 M:      Marek Vasut <marek.vasut@gmail.com>
2141 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2142 S:      Maintained
2143 F:      arch/arm/mach-pxa/colibri-pxa270-income.c
2144
2145 ARM/INTEL IOP32X ARM ARCHITECTURE
2146 M:      Lennert Buytenhek <kernel@wantstofly.org>
2147 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2148 S:      Maintained
2149
2150 ARM/INTEL IQ81342EX MACHINE SUPPORT
2151 M:      Lennert Buytenhek <kernel@wantstofly.org>
2152 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2153 S:      Maintained
2154
2155 ARM/INTEL IXDP2850 MACHINE SUPPORT
2156 M:      Lennert Buytenhek <kernel@wantstofly.org>
2157 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2158 S:      Maintained
2159
2160 ARM/INTEL IXP4XX ARM ARCHITECTURE
2161 M:      Linus Walleij <linusw@kernel.org>
2162 M:      Imre Kaloz <kaloz@openwrt.org>
2163 M:      Krzysztof Halasa <khalasa@piap.pl>
2164 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2165 S:      Maintained
2166 F:      Documentation/devicetree/bindings/arm/intel-ixp4xx.yaml
2167 F:      Documentation/devicetree/bindings/bus/intel,ixp4xx-expansion-bus-controller.yaml
2168 F:      Documentation/devicetree/bindings/gpio/intel,ixp4xx-gpio.txt
2169 F:      Documentation/devicetree/bindings/interrupt-controller/intel,ixp4xx-interrupt.yaml
2170 F:      Documentation/devicetree/bindings/timer/intel,ixp4xx-timer.yaml
2171 F:      arch/arm/mach-ixp4xx/
2172 F:      drivers/bus/intel-ixp4xx-eb.c
2173 F:      drivers/clocksource/timer-ixp4xx.c
2174 F:      drivers/crypto/ixp4xx_crypto.c
2175 F:      drivers/gpio/gpio-ixp4xx.c
2176 F:      drivers/irqchip/irq-ixp4xx.c
2177 F:      include/linux/irqchip/irq-ixp4xx.h
2178 F:      include/linux/platform_data/timer-ixp4xx.h
2179
2180 ARM/INTEL KEEMBAY ARCHITECTURE
2181 M:      Paul J. Murphy <paul.j.murphy@intel.com>
2182 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
2183 S:      Maintained
2184 F:      Documentation/devicetree/bindings/arm/intel,keembay.yaml
2185 F:      arch/arm64/boot/dts/intel/keembay-evm.dts
2186 F:      arch/arm64/boot/dts/intel/keembay-soc.dtsi
2187
2188 ARM/INTEL XSC3 (MANZANO) ARM CORE
2189 M:      Lennert Buytenhek <kernel@wantstofly.org>
2190 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2191 S:      Maintained
2192
2193 ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
2194 M:      Lennert Buytenhek <kernel@wantstofly.org>
2195 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2196 S:      Maintained
2197
2198 ARM/LG1K ARCHITECTURE
2199 M:      Chanho Min <chanho.min@lge.com>
2200 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2201 S:      Maintained
2202 F:      arch/arm64/boot/dts/lg/
2203
2204 ARM/LOGICPD PXA270 MACHINE SUPPORT
2205 M:      Lennert Buytenhek <kernel@wantstofly.org>
2206 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2207 S:      Maintained
2208
2209 ARM/LPC18XX ARCHITECTURE
2210 M:      Vladimir Zapolskiy <vz@mleia.com>
2211 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2212 S:      Maintained
2213 F:      Documentation/devicetree/bindings/i2c/i2c-lpc2k.txt
2214 F:      arch/arm/boot/dts/lpc43*
2215 F:      drivers/i2c/busses/i2c-lpc2k.c
2216 F:      drivers/memory/pl172.c
2217 F:      drivers/mtd/spi-nor/controllers/nxp-spifi.c
2218 F:      drivers/rtc/rtc-lpc24xx.c
2219 N:      lpc18xx
2220
2221 ARM/LPC32XX SOC SUPPORT
2222 M:      Vladimir Zapolskiy <vz@mleia.com>
2223 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2224 S:      Maintained
2225 T:      git git://github.com/vzapolskiy/linux-lpc32xx.git
2226 F:      Documentation/devicetree/bindings/i2c/i2c-pnx.txt
2227 F:      arch/arm/boot/dts/lpc32*
2228 F:      arch/arm/mach-lpc32xx/
2229 F:      drivers/i2c/busses/i2c-pnx.c
2230 F:      drivers/net/ethernet/nxp/lpc_eth.c
2231 F:      drivers/usb/host/ohci-nxp.c
2232 F:      drivers/watchdog/pnx4008_wdt.c
2233 N:      lpc32xx
2234
2235 ARM/MAGICIAN MACHINE SUPPORT
2236 M:      Philipp Zabel <philipp.zabel@gmail.com>
2237 S:      Maintained
2238
2239 ARM/Marvell Dove/MV78xx0/Orion SOC support
2240 M:      Andrew Lunn <andrew@lunn.ch>
2241 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2242 M:      Gregory Clement <gregory.clement@bootlin.com>
2243 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2244 S:      Maintained
2245 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gclement/mvebu.git
2246 F:      Documentation/devicetree/bindings/soc/dove/
2247 F:      arch/arm/boot/dts/dove*
2248 F:      arch/arm/boot/dts/orion5x*
2249 F:      arch/arm/mach-dove/
2250 F:      arch/arm/mach-mv78xx0/
2251 F:      arch/arm/mach-orion5x/
2252 F:      arch/arm/plat-orion/
2253 F:      drivers/soc/dove/
2254
2255 ARM/Marvell Kirkwood and Armada 370, 375, 38x, 39x, XP, 3700, 7K/8K, CN9130 SOC support
2256 M:      Andrew Lunn <andrew@lunn.ch>
2257 M:      Gregory Clement <gregory.clement@bootlin.com>
2258 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2259 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2260 S:      Maintained
2261 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gclement/mvebu.git
2262 F:      arch/arm/boot/dts/armada*
2263 F:      arch/arm/boot/dts/kirkwood*
2264 F:      arch/arm/configs/mvebu_*_defconfig
2265 F:      arch/arm/mach-mvebu/
2266 F:      arch/arm64/boot/dts/marvell/armada*
2267 F:      arch/arm64/boot/dts/marvell/cn913*
2268 F:      drivers/cpufreq/armada-37xx-cpufreq.c
2269 F:      drivers/cpufreq/armada-8k-cpufreq.c
2270 F:      drivers/cpufreq/mvebu-cpufreq.c
2271 F:      drivers/irqchip/irq-armada-370-xp.c
2272 F:      drivers/irqchip/irq-mvebu-*
2273 F:      drivers/pinctrl/mvebu/
2274 F:      drivers/rtc/rtc-armada38x.c
2275
2276 ARM/Mediatek RTC DRIVER
2277 M:      Eddie Huang <eddie.huang@mediatek.com>
2278 M:      Sean Wang <sean.wang@mediatek.com>
2279 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2280 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2281 S:      Maintained
2282 F:      Documentation/devicetree/bindings/rtc/rtc-mt2712.txt
2283 F:      Documentation/devicetree/bindings/rtc/rtc-mt7622.txt
2284 F:      drivers/rtc/rtc-mt2712.c
2285 F:      drivers/rtc/rtc-mt6397.c
2286 F:      drivers/rtc/rtc-mt7622.c
2287
2288 ARM/Mediatek SoC support
2289 M:      Matthias Brugger <matthias.bgg@gmail.com>
2290 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2291 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2292 S:      Maintained
2293 W:      https://mtk.wiki.kernel.org/
2294 C:      irc://chat.freenode.net/linux-mediatek
2295 F:      arch/arm/boot/dts/mt6*
2296 F:      arch/arm/boot/dts/mt7*
2297 F:      arch/arm/boot/dts/mt8*
2298 F:      arch/arm/mach-mediatek/
2299 F:      arch/arm64/boot/dts/mediatek/
2300 F:      drivers/soc/mediatek/
2301 N:      mtk
2302 N:      mt[678]
2303 K:      mediatek
2304
2305 ARM/Mediatek USB3 PHY DRIVER
2306 M:      Chunfeng Yun <chunfeng.yun@mediatek.com>
2307 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2308 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2309 S:      Maintained
2310 F:      Documentation/devicetree/bindings/phy/mediatek,*
2311 F:      drivers/phy/mediatek/
2312
2313 ARM/Microchip (AT91) SoC support
2314 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
2315 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
2316 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
2317 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2318 S:      Supported
2319 W:      http://www.linux4sam.org
2320 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/at91/linux.git
2321 F:      arch/arm/boot/dts/at91*.dts
2322 F:      arch/arm/boot/dts/at91*.dtsi
2323 F:      arch/arm/boot/dts/sama*.dts
2324 F:      arch/arm/boot/dts/sama*.dtsi
2325 F:      arch/arm/include/debug/at91.S
2326 F:      arch/arm/mach-at91/
2327 F:      drivers/memory/atmel*
2328 F:      drivers/watchdog/sama5d4_wdt.c
2329 F:      include/soc/at91/
2330 X:      drivers/input/touchscreen/atmel_mxt_ts.c
2331 X:      drivers/net/wireless/atmel/
2332 N:      at91
2333 N:      atmel
2334
2335 ARM/Microchip Sparx5 SoC support
2336 M:      Lars Povlsen <lars.povlsen@microchip.com>
2337 M:      Steen Hegelund <Steen.Hegelund@microchip.com>
2338 M:      UNGLinuxDriver@microchip.com
2339 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2340 S:      Supported
2341 T:      git git://github.com/microchip-ung/linux-upstream.git
2342 F:      arch/arm64/boot/dts/microchip/
2343 F:      drivers/pinctrl/pinctrl-microchip-sgpio.c
2344 N:      sparx5
2345
2346 Microchip Timer Counter Block (TCB) Capture Driver
2347 M:      Kamel Bouhara <kamel.bouhara@bootlin.com>
2348 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2349 L:      linux-iio@vger.kernel.org
2350 S:      Maintained
2351 F:      drivers/counter/microchip-tcb-capture.c
2352
2353 ARM/MILBEAUT ARCHITECTURE
2354 M:      Taichi Sugaya <sugaya.taichi@socionext.com>
2355 M:      Takao Orito <orito.takao@socionext.com>
2356 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2357 S:      Maintained
2358 F:      arch/arm/boot/dts/milbeaut*
2359 F:      arch/arm/mach-milbeaut/
2360 N:      milbeaut
2361
2362 ARM/MIOA701 MACHINE SUPPORT
2363 M:      Robert Jarzmik <robert.jarzmik@free.fr>
2364 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2365 S:      Maintained
2366 F:      arch/arm/mach-pxa/mioa701.c
2367
2368 ARM/MStar/Sigmastar Armv7 SoC support
2369 M:      Daniel Palmer <daniel@thingy.jp>
2370 M:      Romain Perier <romain.perier@gmail.com>
2371 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2372 S:      Maintained
2373 W:      http://linux-chenxing.org/
2374 T:      git git://github.com/linux-chenxing/linux.git
2375 F:      Documentation/devicetree/bindings/arm/mstar/*
2376 F:      Documentation/devicetree/bindings/clock/mstar,msc313-mpll.yaml
2377 F:      Documentation/devicetree/bindings/gpio/mstar,msc313-gpio.yaml
2378 F:      arch/arm/boot/dts/mstar-*
2379 F:      arch/arm/mach-mstar/
2380 F:      drivers/clk/mstar/
2381 F:      drivers/clocksource/timer-msc313e.c
2382 F:      drivers/gpio/gpio-msc313.c
2383 F:      drivers/rtc/rtc-msc313.c
2384 F:      drivers/watchdog/msc313e_wdt.c
2385 F:      include/dt-bindings/clock/mstar-*
2386 F:      include/dt-bindings/gpio/msc313-gpio.h
2387
2388 ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
2389 M:      Michael Petchkovsky <mkpetch@internode.on.net>
2390 S:      Maintained
2391
2392 ARM/NOMADIK/Ux500 ARCHITECTURES
2393 M:      Linus Walleij <linus.walleij@linaro.org>
2394 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2395 S:      Maintained
2396 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
2397 F:      Documentation/devicetree/bindings/arm/ste-*
2398 F:      Documentation/devicetree/bindings/arm/ux500.yaml
2399 F:      Documentation/devicetree/bindings/arm/ux500/
2400 F:      Documentation/devicetree/bindings/i2c/i2c-nomadik.txt
2401 F:      arch/arm/boot/dts/ste-*
2402 F:      arch/arm/mach-nomadik/
2403 F:      arch/arm/mach-ux500/
2404 F:      drivers/clk/clk-nomadik.c
2405 F:      drivers/clocksource/clksrc-dbx500-prcmu.c
2406 F:      drivers/dma/ste_dma40*
2407 F:      drivers/hwspinlock/u8500_hsem.c
2408 F:      drivers/i2c/busses/i2c-nomadik.c
2409 F:      drivers/iio/adc/ab8500-gpadc.c
2410 F:      drivers/mfd/ab8500*
2411 F:      drivers/mfd/abx500*
2412 F:      drivers/mfd/db8500*
2413 F:      drivers/pinctrl/nomadik/
2414 F:      drivers/rtc/rtc-ab8500.c
2415 F:      drivers/rtc/rtc-pl031.c
2416 F:      drivers/soc/ux500/
2417
2418 ARM/NUVOTON NPCM ARCHITECTURE
2419 M:      Avi Fishman <avifishman70@gmail.com>
2420 M:      Tomer Maimon <tmaimon77@gmail.com>
2421 M:      Tali Perry <tali.perry1@gmail.com>
2422 R:      Patrick Venture <venture@google.com>
2423 R:      Nancy Yuen <yuenn@google.com>
2424 R:      Benjamin Fair <benjaminfair@google.com>
2425 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2426 S:      Supported
2427 F:      Documentation/devicetree/bindings/*/*/*npcm*
2428 F:      Documentation/devicetree/bindings/*/*npcm*
2429 F:      Documentation/devicetree/bindings/arm/npcm/*
2430 F:      arch/arm/boot/dts/nuvoton-npcm*
2431 F:      arch/arm/mach-npcm/
2432 F:      drivers/*/*npcm*
2433 F:      drivers/*/*/*npcm*
2434 F:      include/dt-bindings/clock/nuvoton,npcm7xx-clock.h
2435
2436 ARM/NUVOTON WPCM450 ARCHITECTURE
2437 M:      Jonathan Neuschäfer <j.neuschaefer@gmx.net>
2438 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2439 S:      Maintained
2440 W:      https://github.com/neuschaefer/wpcm450/wiki
2441 F:      Documentation/devicetree/bindings/*/*wpcm*
2442 F:      arch/arm/boot/dts/nuvoton-wpcm450*
2443 F:      arch/arm/mach-npcm/wpcm450.c
2444 F:      drivers/*/*/*wpcm*
2445 F:      drivers/*/*wpcm*
2446
2447 ARM/NXP S32G ARCHITECTURE
2448 M:      Chester Lin <clin@suse.com>
2449 R:      Andreas Färber <afaerber@suse.de>
2450 R:      Matthias Brugger <mbrugger@suse.com>
2451 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2452 S:      Maintained
2453 F:      arch/arm64/boot/dts/freescale/s32g*.dts*
2454
2455 ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
2456 L:      openmoko-kernel@lists.openmoko.org (subscribers-only)
2457 S:      Orphan
2458 W:      http://wiki.openmoko.org/wiki/Neo_FreeRunner
2459 F:      arch/arm/mach-s3c/gta02.h
2460 F:      arch/arm/mach-s3c/mach-gta02.c
2461
2462 ARM/Orion SoC/Technologic Systems TS-78xx platform support
2463 M:      Alexander Clouter <alex@digriz.org.uk>
2464 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2465 S:      Maintained
2466 W:      http://www.digriz.org.uk/ts78xx/kernel
2467 F:      arch/arm/mach-orion5x/ts78xx-*
2468
2469 ARM/OXNAS platform support
2470 M:      Neil Armstrong <narmstrong@baylibre.com>
2471 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2472 L:      linux-oxnas@groups.io (moderated for non-subscribers)
2473 S:      Maintained
2474 F:      arch/arm/boot/dts/ox8*.dts*
2475 F:      arch/arm/mach-oxnas/
2476 F:      drivers/power/reset/oxnas-restart.c
2477 N:      oxnas
2478
2479 ARM/PALM TREO SUPPORT
2480 M:      Tomas Cech <sleep_walker@suse.com>
2481 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2482 S:      Maintained
2483 W:      http://hackndev.com
2484 F:      arch/arm/mach-pxa/palmtreo.*
2485
2486 ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
2487 M:      Marek Vasut <marek.vasut@gmail.com>
2488 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2489 S:      Maintained
2490 W:      http://hackndev.com
2491 F:      arch/arm/mach-pxa/include/mach/palmld.h
2492 F:      arch/arm/mach-pxa/include/mach/palmtc.h
2493 F:      arch/arm/mach-pxa/include/mach/palmtx.h
2494 F:      arch/arm/mach-pxa/palmld.c
2495 F:      arch/arm/mach-pxa/palmt5.*
2496 F:      arch/arm/mach-pxa/palmtc.c
2497 F:      arch/arm/mach-pxa/palmte2.*
2498 F:      arch/arm/mach-pxa/palmtx.c
2499
2500 ARM/PALMZ72 SUPPORT
2501 M:      Sergey Lapin <slapin@ossfans.org>
2502 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2503 S:      Maintained
2504 W:      http://hackndev.com
2505 F:      arch/arm/mach-pxa/palmz72.*
2506
2507 ARM/PLEB SUPPORT
2508 M:      Peter Chubb <pleb@gelato.unsw.edu.au>
2509 S:      Maintained
2510 W:      http://www.disy.cse.unsw.edu.au/Hardware/PLEB
2511
2512 ARM/PT DIGITAL BOARD PORT
2513 M:      Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
2514 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2515 S:      Maintained
2516 W:      http://www.armlinux.org.uk/
2517
2518 ARM/QUALCOMM SUPPORT
2519 M:      Andy Gross <agross@kernel.org>
2520 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
2521 L:      linux-arm-msm@vger.kernel.org
2522 S:      Maintained
2523 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/qcom/linux.git
2524 F:      Documentation/devicetree/bindings/*/qcom*
2525 F:      Documentation/devicetree/bindings/soc/qcom/
2526 F:      arch/arm/boot/dts/qcom-*.dts
2527 F:      arch/arm/boot/dts/qcom-*.dtsi
2528 F:      arch/arm/mach-qcom/
2529 F:      arch/arm64/boot/dts/qcom/
2530 F:      drivers/*/*/qcom*
2531 F:      drivers/*/*/qcom/
2532 F:      drivers/*/pm8???-*
2533 F:      drivers/*/qcom*
2534 F:      drivers/*/qcom/
2535 F:      drivers/bluetooth/btqcomsmd.c
2536 F:      drivers/clocksource/timer-qcom.c
2537 F:      drivers/cpuidle/cpuidle-qcom-spm.c
2538 F:      drivers/extcon/extcon-qcom*
2539 F:      drivers/i2c/busses/i2c-qcom-geni.c
2540 F:      drivers/i2c/busses/i2c-qup.c
2541 F:      drivers/iommu/msm*
2542 F:      drivers/mfd/ssbi.c
2543 F:      drivers/mmc/host/mmci_qcom*
2544 F:      drivers/mmc/host/sdhci-msm.c
2545 F:      drivers/pci/controller/dwc/pcie-qcom.c
2546 F:      drivers/phy/qualcomm/
2547 F:      drivers/power/*/msm*
2548 F:      drivers/reset/reset-qcom-*
2549 F:      drivers/scsi/ufs/ufs-qcom*
2550 F:      drivers/spi/spi-geni-qcom.c
2551 F:      drivers/spi/spi-qcom-qspi.c
2552 F:      drivers/spi/spi-qup.c
2553 F:      drivers/tty/serial/msm_serial.c
2554 F:      drivers/usb/dwc3/dwc3-qcom.c
2555 F:      include/dt-bindings/*/qcom*
2556 F:      include/linux/*/qcom*
2557 F:      include/linux/soc/qcom/
2558
2559 ARM/RADISYS ENP2611 MACHINE SUPPORT
2560 M:      Lennert Buytenhek <kernel@wantstofly.org>
2561 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2562 S:      Maintained
2563
2564 ARM/RDA MICRO ARCHITECTURE
2565 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
2566 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2567 L:      linux-unisoc@lists.infradead.org (moderated for non-subscribers)
2568 S:      Maintained
2569 F:      Documentation/devicetree/bindings/arm/rda.yaml
2570 F:      Documentation/devicetree/bindings/gpio/gpio-rda.yaml
2571 F:      Documentation/devicetree/bindings/interrupt-controller/rda,8810pl-intc.txt
2572 F:      Documentation/devicetree/bindings/serial/rda,8810pl-uart.yaml
2573 F:      Documentation/devicetree/bindings/timer/rda,8810pl-timer.txt
2574 F:      arch/arm/boot/dts/rda8810pl-*
2575 F:      drivers/clocksource/timer-rda.c
2576 F:      drivers/gpio/gpio-rda.c
2577 F:      drivers/irqchip/irq-rda-intc.c
2578 F:      drivers/tty/serial/rda-uart.c
2579
2580 ARM/REALTEK ARCHITECTURE
2581 M:      Andreas Färber <afaerber@suse.de>
2582 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2583 L:      linux-realtek-soc@lists.infradead.org (moderated for non-subscribers)
2584 S:      Maintained
2585 F:      Documentation/devicetree/bindings/arm/realtek.yaml
2586 F:      arch/arm/boot/dts/rtd*
2587 F:      arch/arm/mach-realtek/
2588 F:      arch/arm64/boot/dts/realtek/
2589
2590 ARM/RENESAS ARM64 ARCHITECTURE
2591 M:      Geert Uytterhoeven <geert+renesas@glider.be>
2592 M:      Magnus Damm <magnus.damm@gmail.com>
2593 L:      linux-renesas-soc@vger.kernel.org
2594 S:      Supported
2595 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
2596 C:      irc://irc.libera.chat/renesas-soc
2597 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git next
2598 F:      Documentation/devicetree/bindings/arm/renesas.yaml
2599 F:      arch/arm64/boot/dts/renesas/
2600 F:      drivers/soc/renesas/
2601 F:      include/linux/soc/renesas/
2602
2603 ARM/RISCPC ARCHITECTURE
2604 M:      Russell King <linux@armlinux.org.uk>
2605 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2606 S:      Maintained
2607 W:      http://www.armlinux.org.uk/
2608 F:      arch/arm/include/asm/hardware/entry-macro-iomd.S
2609 F:      arch/arm/include/asm/hardware/ioc.h
2610 F:      arch/arm/include/asm/hardware/iomd.h
2611 F:      arch/arm/include/asm/hardware/memc.h
2612 F:      arch/arm/mach-rpc/
2613 F:      drivers/net/ethernet/8390/etherh.c
2614 F:      drivers/net/ethernet/i825xx/ether1*
2615 F:      drivers/net/ethernet/seeq/ether3*
2616 F:      drivers/scsi/arm/
2617
2618 ARM/Rockchip SoC support
2619 M:      Heiko Stuebner <heiko@sntech.de>
2620 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2621 L:      linux-rockchip@lists.infradead.org
2622 S:      Maintained
2623 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmind/linux-rockchip.git
2624 F:      Documentation/devicetree/bindings/i2c/i2c-rk3x.yaml
2625 F:      Documentation/devicetree/bindings/mmc/rockchip-dw-mshc.yaml
2626 F:      Documentation/devicetree/bindings/spi/spi-rockchip.yaml
2627 F:      arch/arm/boot/dts/rk3*
2628 F:      arch/arm/boot/dts/rv1108*
2629 F:      arch/arm/mach-rockchip/
2630 F:      drivers/*/*/*rockchip*
2631 F:      drivers/*/*rockchip*
2632 F:      drivers/clk/rockchip/
2633 F:      drivers/i2c/busses/i2c-rk3x.c
2634 F:      sound/soc/rockchip/
2635 N:      rockchip
2636
2637 ARM/SAMSUNG S3C, S5P AND EXYNOS ARM ARCHITECTURES
2638 M:      Krzysztof Kozlowski <krzk@kernel.org>
2639 R:      Alim Akhtar <alim.akhtar@samsung.com>
2640 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2641 L:      linux-samsung-soc@vger.kernel.org
2642 S:      Maintained
2643 C:      irc://irc.libera.chat/linux-exynos
2644 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
2645 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/krzk/linux.git
2646 F:      Documentation/arm/samsung/
2647 F:      Documentation/devicetree/bindings/arm/samsung/
2648 F:      Documentation/devicetree/bindings/power/pd-samsung.yaml
2649 F:      Documentation/devicetree/bindings/soc/samsung/
2650 F:      arch/arm/boot/dts/exynos*
2651 F:      arch/arm/boot/dts/s3c*
2652 F:      arch/arm/boot/dts/s5p*
2653 F:      arch/arm/mach-exynos*/
2654 F:      arch/arm/mach-s3c/
2655 F:      arch/arm/mach-s5p*/
2656 F:      arch/arm64/boot/dts/exynos/
2657 F:      drivers/*/*/*s3c24*
2658 F:      drivers/*/*s3c24*
2659 F:      drivers/*/*s3c64xx*
2660 F:      drivers/*/*s5pv210*
2661 F:      drivers/clocksource/samsung_pwm_timer.c
2662 F:      drivers/memory/samsung/
2663 F:      drivers/pwm/pwm-samsung.c
2664 F:      drivers/soc/samsung/
2665 F:      drivers/tty/serial/samsung*
2666 F:      include/clocksource/samsung_pwm.h
2667 F:      include/linux/platform_data/*s3c*
2668 F:      include/linux/serial_s3c.h
2669 F:      include/linux/soc/samsung/
2670 N:      exynos
2671 N:      s3c2410
2672 N:      s3c64xx
2673 N:      s5pv210
2674
2675 ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT
2676 M:      Łukasz Stelmach <l.stelmach@samsung.com>
2677 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2678 L:      linux-media@vger.kernel.org
2679 S:      Maintained
2680 F:      drivers/media/platform/samsung/s5p-g2d/
2681
2682 ARM/SAMSUNG S5P SERIES HDMI CEC SUBSYSTEM SUPPORT
2683 M:      Marek Szyprowski <m.szyprowski@samsung.com>
2684 L:      linux-samsung-soc@vger.kernel.org
2685 L:      linux-media@vger.kernel.org
2686 S:      Maintained
2687 F:      Documentation/devicetree/bindings/media/s5p-cec.txt
2688 F:      drivers/media/cec/platform/s5p/
2689
2690 ARM/SAMSUNG S5P SERIES JPEG CODEC SUPPORT
2691 M:      Andrzej Pietrasiewicz <andrzejtp2010@gmail.com>
2692 M:      Jacek Anaszewski <jacek.anaszewski@gmail.com>
2693 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
2694 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2695 L:      linux-media@vger.kernel.org
2696 S:      Maintained
2697 F:      drivers/media/platform/samsung/s5p-jpeg/
2698
2699 ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
2700 M:      Marek Szyprowski <m.szyprowski@samsung.com>
2701 M:      Andrzej Hajda <andrzej.hajda@intel.com>
2702 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2703 L:      linux-media@vger.kernel.org
2704 S:      Maintained
2705 F:      drivers/media/platform/samsung/s5p-mfc/
2706
2707 ARM/SHMOBILE ARM ARCHITECTURE
2708 M:      Geert Uytterhoeven <geert+renesas@glider.be>
2709 M:      Magnus Damm <magnus.damm@gmail.com>
2710 L:      linux-renesas-soc@vger.kernel.org
2711 S:      Supported
2712 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
2713 C:      irc://irc.libera.chat/renesas-soc
2714 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git next
2715 F:      Documentation/devicetree/bindings/arm/renesas.yaml
2716 F:      arch/arm/boot/dts/emev2*
2717 F:      arch/arm/boot/dts/gr-peach*
2718 F:      arch/arm/boot/dts/iwg20d-q7*
2719 F:      arch/arm/boot/dts/r7s*
2720 F:      arch/arm/boot/dts/r8a*
2721 F:      arch/arm/boot/dts/r9a*
2722 F:      arch/arm/boot/dts/sh*
2723 F:      arch/arm/configs/shmobile_defconfig
2724 F:      arch/arm/include/debug/renesas-scif.S
2725 F:      arch/arm/mach-shmobile/
2726 F:      drivers/soc/renesas/
2727 F:      include/linux/soc/renesas/
2728
2729 ARM/SOCFPGA ARCHITECTURE
2730 M:      Dinh Nguyen <dinguyen@kernel.org>
2731 S:      Maintained
2732 W:      http://www.rocketboards.org
2733 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
2734 F:      arch/arm/boot/dts/socfpga*
2735 F:      arch/arm/configs/socfpga_defconfig
2736 F:      arch/arm/mach-socfpga/
2737 F:      arch/arm64/boot/dts/altera/
2738 F:      arch/arm64/boot/dts/intel/
2739
2740 ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
2741 M:      Dinh Nguyen <dinguyen@kernel.org>
2742 S:      Maintained
2743 F:      drivers/clk/socfpga/
2744
2745 ARM/SOCFPGA EDAC SUPPORT
2746 M:      Dinh Nguyen <dinguyen@kernel.org>
2747 S:      Maintained
2748 F:      drivers/edac/altera_edac.[ch]
2749
2750 ARM/SPREADTRUM SoC SUPPORT
2751 M:      Orson Zhai <orsonzhai@gmail.com>
2752 M:      Baolin Wang <baolin.wang7@gmail.com>
2753 M:      Chunyan Zhang <zhang.lyra@gmail.com>
2754 S:      Maintained
2755 F:      arch/arm64/boot/dts/sprd
2756 N:      sprd
2757 N:      sc27xx
2758 N:      sc2731
2759
2760 ARM/STI ARCHITECTURE
2761 M:      Patrice Chotard <patrice.chotard@foss.st.com>
2762 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2763 S:      Maintained
2764 W:      http://www.stlinux.com
2765 F:      Documentation/devicetree/bindings/i2c/i2c-st.txt
2766 F:      arch/arm/boot/dts/sti*
2767 F:      arch/arm/mach-sti/
2768 F:      drivers/ata/ahci_st.c
2769 F:      drivers/char/hw_random/st-rng.c
2770 F:      drivers/clocksource/arm_global_timer.c
2771 F:      drivers/clocksource/clksrc_st_lpc.c
2772 F:      drivers/cpufreq/sti-cpufreq.c
2773 F:      drivers/dma/st_fdma*
2774 F:      drivers/i2c/busses/i2c-st.c
2775 F:      drivers/media/platform/st/sti/c8sectpfe/
2776 F:      drivers/media/rc/st_rc.c
2777 F:      drivers/mmc/host/sdhci-st.c
2778 F:      drivers/phy/st/phy-miphy28lp.c
2779 F:      drivers/phy/st/phy-stih407-usb.c
2780 F:      drivers/pinctrl/pinctrl-st.c
2781 F:      drivers/remoteproc/st_remoteproc.c
2782 F:      drivers/remoteproc/st_slim_rproc.c
2783 F:      drivers/reset/sti/
2784 F:      drivers/rtc/rtc-st-lpc.c
2785 F:      drivers/tty/serial/st-asc.c
2786 F:      drivers/usb/dwc3/dwc3-st.c
2787 F:      drivers/usb/host/ehci-st.c
2788 F:      drivers/usb/host/ohci-st.c
2789 F:      drivers/watchdog/st_lpc_wdt.c
2790 F:      include/linux/remoteproc/st_slim_rproc.h
2791
2792 ARM/STM32 ARCHITECTURE
2793 M:      Maxime Coquelin <mcoquelin.stm32@gmail.com>
2794 M:      Alexandre Torgue <alexandre.torgue@foss.st.com>
2795 L:      linux-stm32@st-md-mailman.stormreply.com (moderated for non-subscribers)
2796 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2797 S:      Maintained
2798 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/atorgue/stm32.git stm32-next
2799 F:      arch/arm/boot/dts/stm32*
2800 F:      arch/arm/mach-stm32/
2801 F:      drivers/clocksource/armv7m_systick.c
2802 N:      stm32
2803 N:      stm
2804
2805 ARM/Synaptics SoC support
2806 M:      Jisheng Zhang <jszhang@kernel.org>
2807 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2808 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2809 S:      Maintained
2810 F:      arch/arm/boot/dts/berlin*
2811 F:      arch/arm/mach-berlin/
2812 F:      arch/arm64/boot/dts/synaptics/
2813
2814 ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
2815 M:      Lennert Buytenhek <kernel@wantstofly.org>
2816 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2817 S:      Maintained
2818
2819 ARM/TEGRA HDMI CEC SUBSYSTEM SUPPORT
2820 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
2821 L:      linux-tegra@vger.kernel.org
2822 L:      linux-media@vger.kernel.org
2823 S:      Maintained
2824 F:      Documentation/devicetree/bindings/media/tegra-cec.txt
2825 F:      drivers/media/cec/platform/tegra/
2826
2827 ARM/TESLA FSD SoC SUPPORT
2828 M:      Alim Akhtar <alim.akhtar@samsung.com>
2829 M:      linux-fsd@tesla.com
2830 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2831 L:      linux-samsung-soc@vger.kernel.org
2832 S:      Maintained
2833 F:      arch/arm64/boot/dts/tesla*
2834
2835 ARM/TETON BGA MACHINE SUPPORT
2836 M:      "Mark F. Brown" <mark.brown314@gmail.com>
2837 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2838 S:      Maintained
2839
2840 ARM/TEXAS INSTRUMENT AEMIF/EMIF DRIVERS
2841 M:      Santosh Shilimkar <ssantosh@kernel.org>
2842 L:      linux-kernel@vger.kernel.org
2843 S:      Maintained
2844 F:      drivers/memory/*emif*
2845
2846 ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE
2847 M:      Nishanth Menon <nm@ti.com>
2848 M:      Santosh Shilimkar <ssantosh@kernel.org>
2849 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2850 S:      Maintained
2851 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ti/linux.git
2852 F:      arch/arm/boot/dts/keystone-*
2853 F:      arch/arm/mach-keystone/
2854
2855 ARM/TEXAS INSTRUMENT KEYSTONE CLOCK FRAMEWORK
2856 M:      Santosh Shilimkar <ssantosh@kernel.org>
2857 L:      linux-kernel@vger.kernel.org
2858 S:      Maintained
2859 F:      drivers/clk/keystone/
2860
2861 ARM/TEXAS INSTRUMENT KEYSTONE CLOCKSOURCE
2862 M:      Santosh Shilimkar <ssantosh@kernel.org>
2863 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2864 L:      linux-kernel@vger.kernel.org
2865 S:      Maintained
2866 F:      drivers/clocksource/timer-keystone.c
2867
2868 ARM/TEXAS INSTRUMENT KEYSTONE RESET DRIVER
2869 M:      Santosh Shilimkar <ssantosh@kernel.org>
2870 L:      linux-kernel@vger.kernel.org
2871 S:      Maintained
2872 F:      drivers/power/reset/keystone-reset.c
2873
2874 ARM/TEXAS INSTRUMENTS K3 ARCHITECTURE
2875 M:      Nishanth Menon <nm@ti.com>
2876 M:      Vignesh Raghavendra <vigneshr@ti.com>
2877 M:      Tero Kristo <kristo@kernel.org>
2878 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2879 S:      Supported
2880 F:      Documentation/devicetree/bindings/arm/ti/k3.yaml
2881 F:      arch/arm64/boot/dts/ti/Makefile
2882 F:      arch/arm64/boot/dts/ti/k3-*
2883 F:      include/dt-bindings/pinctrl/k3.h
2884
2885 ARM/THECUS N2100 MACHINE SUPPORT
2886 M:      Lennert Buytenhek <kernel@wantstofly.org>
2887 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2888 S:      Maintained
2889
2890 ARM/TOSA MACHINE SUPPORT
2891 M:      Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
2892 M:      Dirk Opfer <dirk@opfer-online.de>
2893 S:      Maintained
2894
2895 ARM/TOSHIBA VISCONTI ARCHITECTURE
2896 M:      Nobuhiro Iwamatsu <nobuhiro1.iwamatsu@toshiba.co.jp>
2897 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2898 S:      Supported
2899 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwamatsu/linux-visconti.git
2900 F:      Documentation/devicetree/bindings/arm/toshiba.yaml
2901 F:      Documentation/devicetree/bindings/clock/toshiba,tmpv770x-pipllct.yaml
2902 F:      Documentation/devicetree/bindings/clock/toshiba,tmpv770x-pismu.yaml
2903 F:      Documentation/devicetree/bindings/net/toshiba,visconti-dwmac.yaml
2904 F:      Documentation/devicetree/bindings/gpio/toshiba,gpio-visconti.yaml
2905 F:      Documentation/devicetree/bindings/pci/toshiba,visconti-pcie.yaml
2906 F:      Documentation/devicetree/bindings/pinctrl/toshiba,visconti-pinctrl.yaml
2907 F:      Documentation/devicetree/bindings/watchdog/toshiba,visconti-wdt.yaml
2908 F:      arch/arm64/boot/dts/toshiba/
2909 F:      drivers/clk/visconti/
2910 F:      drivers/net/ethernet/stmicro/stmmac/dwmac-visconti.c
2911 F:      drivers/gpio/gpio-visconti.c
2912 F:      drivers/pci/controller/dwc/pcie-visconti.c
2913 F:      drivers/pinctrl/visconti/
2914 F:      drivers/watchdog/visconti_wdt.c
2915 N:      visconti
2916
2917 ARM/UNIPHIER ARCHITECTURE
2918 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
2919 M:      Masami Hiramatsu <mhiramat@kernel.org>
2920 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2921 S:      Maintained
2922 F:      Documentation/devicetree/bindings/arm/socionext/uniphier.yaml
2923 F:      Documentation/devicetree/bindings/gpio/socionext,uniphier-gpio.yaml
2924 F:      Documentation/devicetree/bindings/pinctrl/socionext,uniphier-pinctrl.yaml
2925 F:      arch/arm/boot/dts/uniphier*
2926 F:      arch/arm/include/asm/hardware/cache-uniphier.h
2927 F:      arch/arm/mach-uniphier/
2928 F:      arch/arm/mm/cache-uniphier.c
2929 F:      arch/arm64/boot/dts/socionext/uniphier*
2930 F:      drivers/bus/uniphier-system-bus.c
2931 F:      drivers/clk/uniphier/
2932 F:      drivers/dma/uniphier-mdmac.c
2933 F:      drivers/gpio/gpio-uniphier.c
2934 F:      drivers/i2c/busses/i2c-uniphier*
2935 F:      drivers/irqchip/irq-uniphier-aidet.c
2936 F:      drivers/mmc/host/uniphier-sd.c
2937 F:      drivers/pinctrl/uniphier/
2938 F:      drivers/reset/reset-uniphier.c
2939 F:      drivers/tty/serial/8250/8250_uniphier.c
2940 N:      uniphier
2941
2942 ARM/VERSATILE EXPRESS PLATFORM
2943 M:      Liviu Dudau <liviu.dudau@arm.com>
2944 M:      Sudeep Holla <sudeep.holla@arm.com>
2945 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
2946 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2947 S:      Maintained
2948 F:      */*/*/vexpress*
2949 F:      */*/vexpress*
2950 F:      arch/arm/boot/dts/vexpress*
2951 F:      arch/arm/mach-vexpress/
2952 F:      arch/arm64/boot/dts/arm/
2953 F:      drivers/clk/versatile/clk-vexpress-osc.c
2954 F:      drivers/clocksource/timer-versatile.c
2955 N:      mps2
2956
2957 ARM/VFP SUPPORT
2958 M:      Russell King <linux@armlinux.org.uk>
2959 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2960 S:      Maintained
2961 W:      http://www.armlinux.org.uk/
2962 F:      arch/arm/vfp/
2963
2964 ARM/VOIPAC PXA270 SUPPORT
2965 M:      Marek Vasut <marek.vasut@gmail.com>
2966 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2967 S:      Maintained
2968 F:      arch/arm/mach-pxa/include/mach/vpac270.h
2969 F:      arch/arm/mach-pxa/vpac270.c
2970
2971 ARM/VT8500 ARM ARCHITECTURE
2972 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2973 S:      Orphan
2974 F:      Documentation/devicetree/bindings/i2c/i2c-wmt.txt
2975 F:      arch/arm/mach-vt8500/
2976 F:      drivers/clocksource/timer-vt8500.c
2977 F:      drivers/i2c/busses/i2c-wmt.c
2978 F:      drivers/mmc/host/wmt-sdmmc.c
2979 F:      drivers/pwm/pwm-vt8500.c
2980 F:      drivers/rtc/rtc-vt8500.c
2981 F:      drivers/tty/serial/vt8500_serial.c
2982 F:      drivers/usb/host/ehci-platform.c
2983 F:      drivers/usb/host/uhci-platform.c
2984 F:      drivers/video/fbdev/vt8500lcdfb.*
2985 F:      drivers/video/fbdev/wm8505fb*
2986 F:      drivers/video/fbdev/wmt_ge_rops.*
2987
2988 ARM/ZIPIT Z2 SUPPORT
2989 M:      Marek Vasut <marek.vasut@gmail.com>
2990 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2991 S:      Maintained
2992 F:      arch/arm/mach-pxa/include/mach/z2.h
2993 F:      arch/arm/mach-pxa/z2.c
2994
2995 ARM/ZYNQ ARCHITECTURE
2996 M:      Michal Simek <michal.simek@xilinx.com>
2997 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2998 S:      Supported
2999 W:      http://wiki.xilinx.com
3000 T:      git https://github.com/Xilinx/linux-xlnx.git
3001 F:      Documentation/devicetree/bindings/i2c/cdns,i2c-r1p10.yaml
3002 F:      Documentation/devicetree/bindings/i2c/xlnx,xps-iic-2.00.a.yaml
3003 F:      Documentation/devicetree/bindings/spi/xlnx,zynq-qspi.yaml
3004 F:      arch/arm/mach-zynq/
3005 F:      drivers/clocksource/timer-cadence-ttc.c
3006 F:      drivers/cpuidle/cpuidle-zynq.c
3007 F:      drivers/edac/synopsys_edac.c
3008 F:      drivers/i2c/busses/i2c-cadence.c
3009 F:      drivers/i2c/busses/i2c-xiic.c
3010 F:      drivers/mmc/host/sdhci-of-arasan.c
3011 N:      zynq
3012 N:      xilinx
3013
3014 ARM64 PORT (AARCH64 ARCHITECTURE)
3015 M:      Catalin Marinas <catalin.marinas@arm.com>
3016 M:      Will Deacon <will@kernel.org>
3017 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3018 S:      Maintained
3019 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux.git
3020 F:      Documentation/arm64/
3021 F:      arch/arm64/
3022 F:      tools/testing/selftests/arm64/
3023 X:      arch/arm64/boot/dts/
3024
3025 ARROW SPEEDCHIPS XRS7000 SERIES ETHERNET SWITCH DRIVER
3026 M:      George McCollister <george.mccollister@gmail.com>
3027 L:      netdev@vger.kernel.org
3028 S:      Maintained
3029 F:      Documentation/devicetree/bindings/net/dsa/arrow,xrs700x.yaml
3030 F:      drivers/net/dsa/xrs700x/*
3031 F:      net/dsa/tag_xrs700x.c
3032
3033 AS3645A LED FLASH CONTROLLER DRIVER
3034 M:      Sakari Ailus <sakari.ailus@iki.fi>
3035 L:      linux-leds@vger.kernel.org
3036 S:      Maintained
3037 F:      drivers/leds/flash/leds-as3645a.c
3038
3039 ASAHI KASEI AK7375 LENS VOICE COIL DRIVER
3040 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
3041 L:      linux-media@vger.kernel.org
3042 S:      Maintained
3043 T:      git git://linuxtv.org/media_tree.git
3044 F:      Documentation/devicetree/bindings/media/i2c/ak7375.txt
3045 F:      drivers/media/i2c/ak7375.c
3046
3047 ASAHI KASEI AK8974 DRIVER
3048 M:      Linus Walleij <linus.walleij@linaro.org>
3049 L:      linux-iio@vger.kernel.org
3050 S:      Supported
3051 W:      http://www.akm.com/
3052 F:      drivers/iio/magnetometer/ak8974.c
3053
3054 ASC7621 HARDWARE MONITOR DRIVER
3055 M:      George Joseph <george.joseph@fairview5.com>
3056 L:      linux-hwmon@vger.kernel.org
3057 S:      Maintained
3058 F:      Documentation/hwmon/asc7621.rst
3059 F:      drivers/hwmon/asc7621.c
3060
3061 ASIX AX88796C SPI ETHERNET ADAPTER
3062 M:      Łukasz Stelmach <l.stelmach@samsung.com>
3063 S:      Maintained
3064 F:      Documentation/devicetree/bindings/net/asix,ax88796c.yaml
3065 F:      drivers/net/ethernet/asix/ax88796c_*
3066
3067 ASPEED PECI CONTROLLER
3068 M:      Iwona Winiarska <iwona.winiarska@intel.com>
3069 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
3070 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
3071 S:      Supported
3072 F:      Documentation/devicetree/bindings/peci/peci-aspeed.yaml
3073 F:      drivers/peci/controller/peci-aspeed.c
3074
3075 ASPEED PINCTRL DRIVERS
3076 M:      Andrew Jeffery <andrew@aj.id.au>
3077 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
3078 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
3079 L:      linux-gpio@vger.kernel.org
3080 S:      Maintained
3081 F:      Documentation/devicetree/bindings/pinctrl/aspeed,*
3082 F:      drivers/pinctrl/aspeed/
3083
3084 ASPEED SCU INTERRUPT CONTROLLER DRIVER
3085 M:      Eddie James <eajames@linux.ibm.com>
3086 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
3087 S:      Maintained
3088 F:      Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2xxx-scu-ic.txt
3089 F:      drivers/irqchip/irq-aspeed-scu-ic.c
3090 F:      include/dt-bindings/interrupt-controller/aspeed-scu-ic.h
3091
3092 ASPEED SD/MMC DRIVER
3093 M:      Andrew Jeffery <andrew@aj.id.au>
3094 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
3095 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
3096 L:      linux-mmc@vger.kernel.org
3097 S:      Maintained
3098 F:      Documentation/devicetree/bindings/mmc/aspeed,sdhci.yaml
3099 F:      drivers/mmc/host/sdhci-of-aspeed*
3100
3101 ASPEED VIDEO ENGINE DRIVER
3102 M:      Eddie James <eajames@linux.ibm.com>
3103 L:      linux-media@vger.kernel.org
3104 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
3105 S:      Maintained
3106 F:      Documentation/devicetree/bindings/media/aspeed-video.txt
3107 F:      drivers/media/platform/aspeed/
3108
3109 ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
3110 M:      Corentin Chary <corentin.chary@gmail.com>
3111 L:      acpi4asus-user@lists.sourceforge.net
3112 L:      platform-driver-x86@vger.kernel.org
3113 S:      Maintained
3114 W:      http://acpi4asus.sf.net
3115 F:      drivers/platform/x86/asus*.c
3116 F:      drivers/platform/x86/eeepc*.c
3117
3118 ASUS TF103C DOCK DRIVER
3119 M:      Hans de Goede <hdegoede@redhat.com>
3120 L:      platform-driver-x86@vger.kernel.org
3121 S:      Maintained
3122 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
3123 F:      drivers/platform/x86/asus-tf103c-dock.c
3124
3125 ASUS WMI HARDWARE MONITOR DRIVER
3126 M:      Ed Brindley <kernel@maidavale.org>
3127 M:      Denis Pauk <pauk.denis@gmail.com>
3128 L:      linux-hwmon@vger.kernel.org
3129 S:      Maintained
3130 F:      drivers/hwmon/asus_wmi_sensors.c
3131
3132 ASUS WMI EC HARDWARE MONITOR DRIVER
3133 M:      Eugene Shalygin <eugene.shalygin@gmail.com>
3134 M:      Denis Pauk <pauk.denis@gmail.com>
3135 L:      linux-hwmon@vger.kernel.org
3136 S:      Maintained
3137 F:      drivers/hwmon/asus_wmi_ec_sensors.c
3138
3139 ASUS EC HARDWARE MONITOR DRIVER
3140 M:      Eugene Shalygin <eugene.shalygin@gmail.com>
3141 L:      linux-hwmon@vger.kernel.org
3142 S:      Maintained
3143 F:      drivers/hwmon/asus-ec-sensors.c
3144
3145 ASUS WIRELESS RADIO CONTROL DRIVER
3146 M:      João Paulo Rechi Vita <jprvita@gmail.com>
3147 L:      platform-driver-x86@vger.kernel.org
3148 S:      Maintained
3149 F:      drivers/platform/x86/asus-wireless.c
3150
3151 ASYMMETRIC KEYS
3152 M:      David Howells <dhowells@redhat.com>
3153 L:      keyrings@vger.kernel.org
3154 S:      Maintained
3155 F:      Documentation/crypto/asymmetric-keys.rst
3156 F:      crypto/asymmetric_keys/
3157 F:      include/crypto/pkcs7.h
3158 F:      include/crypto/public_key.h
3159 F:      include/linux/verification.h
3160
3161 ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
3162 R:      Dan Williams <dan.j.williams@intel.com>
3163 S:      Odd fixes
3164 W:      http://sourceforge.net/projects/xscaleiop
3165 F:      Documentation/crypto/async-tx-api.rst
3166 F:      crypto/async_tx/
3167 F:      include/linux/async_tx.h
3168
3169 AT24 EEPROM DRIVER
3170 M:      Bartosz Golaszewski <brgl@bgdev.pl>
3171 L:      linux-i2c@vger.kernel.org
3172 S:      Maintained
3173 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux.git
3174 F:      Documentation/devicetree/bindings/eeprom/at24.yaml
3175 F:      drivers/misc/eeprom/at24.c
3176
3177 ATA OVER ETHERNET (AOE) DRIVER
3178 M:      "Justin Sanders" <justin@coraid.com>
3179 S:      Supported
3180 W:      http://www.openaoe.org/
3181 F:      Documentation/admin-guide/aoe/
3182 F:      drivers/block/aoe/
3183
3184 ATC260X PMIC MFD DRIVER
3185 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
3186 M:      Cristian Ciocaltea <cristian.ciocaltea@gmail.com>
3187 L:      linux-actions@lists.infradead.org
3188 S:      Maintained
3189 F:      Documentation/devicetree/bindings/mfd/actions,atc260x.yaml
3190 F:      drivers/input/misc/atc260x-onkey.c
3191 F:      drivers/mfd/atc260*
3192 F:      drivers/power/reset/atc260x-poweroff.c
3193 F:      drivers/regulator/atc260x-regulator.c
3194 F:      include/linux/mfd/atc260x/*
3195
3196 ATHEROS 71XX/9XXX GPIO DRIVER
3197 M:      Alban Bedel <albeu@free.fr>
3198 S:      Maintained
3199 W:      https://github.com/AlbanBedel/linux
3200 T:      git git://github.com/AlbanBedel/linux
3201 F:      Documentation/devicetree/bindings/gpio/gpio-ath79.txt
3202 F:      drivers/gpio/gpio-ath79.c
3203
3204 ATHEROS 71XX/9XXX USB PHY DRIVER
3205 M:      Alban Bedel <albeu@free.fr>
3206 S:      Maintained
3207 W:      https://github.com/AlbanBedel/linux
3208 T:      git git://github.com/AlbanBedel/linux
3209 F:      Documentation/devicetree/bindings/phy/phy-ath79-usb.txt
3210 F:      drivers/phy/qualcomm/phy-ath79-usb.c
3211
3212 ATHEROS ATH GENERIC UTILITIES
3213 M:      Kalle Valo <kvalo@kernel.org>
3214 L:      linux-wireless@vger.kernel.org
3215 S:      Supported
3216 F:      drivers/net/wireless/ath/*
3217
3218 ATHEROS ATH5K WIRELESS DRIVER
3219 M:      Jiri Slaby <jirislaby@kernel.org>
3220 M:      Nick Kossifidis <mickflemm@gmail.com>
3221 M:      Luis Chamberlain <mcgrof@kernel.org>
3222 L:      linux-wireless@vger.kernel.org
3223 S:      Maintained
3224 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath5k
3225 F:      drivers/net/wireless/ath/ath5k/
3226
3227 ATHEROS ATH6KL WIRELESS DRIVER
3228 L:      linux-wireless@vger.kernel.org
3229 S:      Orphan
3230 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath6kl
3231 F:      drivers/net/wireless/ath/ath6kl/
3232
3233 ATI_REMOTE2 DRIVER
3234 M:      Ville Syrjala <syrjala@sci.fi>
3235 S:      Maintained
3236 F:      drivers/input/misc/ati_remote2.c
3237
3238 ATK0110 HWMON DRIVER
3239 M:      Luca Tettamanti <kronos.it@gmail.com>
3240 L:      linux-hwmon@vger.kernel.org
3241 S:      Maintained
3242 F:      drivers/hwmon/asus_atk0110.c
3243
3244 ATLX ETHERNET DRIVERS
3245 M:      Chris Snook <chris.snook@gmail.com>
3246 L:      netdev@vger.kernel.org
3247 S:      Maintained
3248 W:      http://sourceforge.net/projects/atl1
3249 W:      http://atl1.sourceforge.net
3250 F:      drivers/net/ethernet/atheros/
3251
3252 ATM
3253 M:      Chas Williams <3chas3@gmail.com>
3254 L:      linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
3255 L:      netdev@vger.kernel.org
3256 S:      Maintained
3257 W:      http://linux-atm.sourceforge.net
3258 F:      drivers/atm/
3259 F:      include/linux/atm*
3260 F:      include/uapi/linux/atm*
3261
3262 ATMEL MACB ETHERNET DRIVER
3263 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
3264 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
3265 S:      Supported
3266 F:      drivers/net/ethernet/cadence/
3267
3268 ATMEL MAXTOUCH DRIVER
3269 M:      Nick Dyer <nick@shmanahar.org>
3270 S:      Maintained
3271 T:      git git://github.com/ndyer/linux.git
3272 F:      Documentation/devicetree/bindings/input/atmel,maxtouch.yaml
3273 F:      drivers/input/touchscreen/atmel_mxt_ts.c
3274
3275 ATMEL WIRELESS DRIVER
3276 M:      Simon Kelley <simon@thekelleys.org.uk>
3277 L:      linux-wireless@vger.kernel.org
3278 S:      Maintained
3279 W:      http://www.thekelleys.org.uk/atmel
3280 W:      http://atmelwlandriver.sourceforge.net/
3281 F:      drivers/net/wireless/atmel/atmel*
3282
3283 ATOMIC INFRASTRUCTURE
3284 M:      Will Deacon <will@kernel.org>
3285 M:      Peter Zijlstra <peterz@infradead.org>
3286 R:      Boqun Feng <boqun.feng@gmail.com>
3287 R:      Mark Rutland <mark.rutland@arm.com>
3288 L:      linux-kernel@vger.kernel.org
3289 S:      Maintained
3290 F:      arch/*/include/asm/atomic*.h
3291 F:      include/*/atomic*.h
3292 F:      include/linux/refcount.h
3293 F:      Documentation/atomic_*.txt
3294 F:      scripts/atomic/
3295
3296 ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER
3297 M:      Bradley Grove <linuxdrivers@attotech.com>
3298 L:      linux-scsi@vger.kernel.org
3299 S:      Supported
3300 W:      http://www.attotech.com
3301 F:      drivers/scsi/esas2r
3302
3303 ATUSB IEEE 802.15.4 RADIO DRIVER
3304 M:      Stefan Schmidt <stefan@datenfreihafen.org>
3305 L:      linux-wpan@vger.kernel.org
3306 S:      Maintained
3307 F:      drivers/net/ieee802154/at86rf230.h
3308 F:      drivers/net/ieee802154/atusb.c
3309 F:      drivers/net/ieee802154/atusb.h
3310
3311 AUDIT SUBSYSTEM
3312 M:      Paul Moore <paul@paul-moore.com>
3313 M:      Eric Paris <eparis@redhat.com>
3314 L:      linux-audit@redhat.com (moderated for non-subscribers)
3315 S:      Supported
3316 W:      https://github.com/linux-audit
3317 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/audit.git
3318 F:      include/asm-generic/audit_*.h
3319 F:      include/linux/audit.h
3320 F:      include/linux/audit_arch.h
3321 F:      include/uapi/linux/audit.h
3322 F:      kernel/audit*
3323 F:      lib/*audit.c
3324
3325 AUXILIARY DISPLAY DRIVERS
3326 M:      Miguel Ojeda <ojeda@kernel.org>
3327 S:      Maintained
3328 F:      Documentation/devicetree/bindings/auxdisplay/
3329 F:      drivers/auxdisplay/
3330 F:      include/linux/cfag12864b.h
3331
3332 AVIA HX711 ANALOG DIGITAL CONVERTER IIO DRIVER
3333 M:      Andreas Klinger <ak@it-klinger.de>
3334 L:      linux-iio@vger.kernel.org
3335 S:      Maintained
3336 F:      Documentation/devicetree/bindings/iio/adc/avia-hx711.yaml
3337 F:      drivers/iio/adc/hx711.c
3338
3339 AX.25 NETWORK LAYER
3340 M:      Ralf Baechle <ralf@linux-mips.org>
3341 L:      linux-hams@vger.kernel.org
3342 S:      Maintained
3343 W:      http://www.linux-ax25.org/
3344 F:      include/net/ax25.h
3345 F:      include/uapi/linux/ax25.h
3346 F:      net/ax25/
3347
3348 AXENTIA ARM DEVICES
3349 M:      Peter Rosin <peda@axentia.se>
3350 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3351 S:      Maintained
3352 F:      arch/arm/boot/dts/at91-linea.dtsi
3353 F:      arch/arm/boot/dts/at91-natte.dtsi
3354 F:      arch/arm/boot/dts/at91-nattis-2-natte-2.dts
3355 F:      arch/arm/boot/dts/at91-tse850-3.dts
3356
3357 AXENTIA ASOC DRIVERS
3358 M:      Peter Rosin <peda@axentia.se>
3359 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3360 S:      Maintained
3361 F:      Documentation/devicetree/bindings/sound/axentia,*
3362 F:      sound/soc/atmel/tse850-pcm5142.c
3363
3364 AXI-FAN-CONTROL HARDWARE MONITOR DRIVER
3365 M:      Nuno Sá <nuno.sa@analog.com>
3366 L:      linux-hwmon@vger.kernel.org
3367 S:      Supported
3368 W:      https://ez.analog.com/linux-software-drivers
3369 F:      Documentation/devicetree/bindings/hwmon/adi,axi-fan-control.yaml
3370 F:      drivers/hwmon/axi-fan-control.c
3371
3372 AXXIA I2C CONTROLLER
3373 M:      Krzysztof Adamski <krzysztof.adamski@nokia.com>
3374 L:      linux-i2c@vger.kernel.org
3375 S:      Maintained
3376 F:      Documentation/devicetree/bindings/i2c/i2c-axxia.txt
3377 F:      drivers/i2c/busses/i2c-axxia.c
3378
3379 AZ6007 DVB DRIVER
3380 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
3381 L:      linux-media@vger.kernel.org
3382 S:      Maintained
3383 W:      https://linuxtv.org
3384 T:      git git://linuxtv.org/media_tree.git
3385 F:      drivers/media/usb/dvb-usb-v2/az6007.c
3386
3387 AZTECH FM RADIO RECEIVER DRIVER
3388 M:      Hans Verkuil <hverkuil@xs4all.nl>
3389 L:      linux-media@vger.kernel.org
3390 S:      Maintained
3391 W:      https://linuxtv.org
3392 T:      git git://linuxtv.org/media_tree.git
3393 F:      drivers/media/radio/radio-aztech*
3394
3395 B43 WIRELESS DRIVER
3396 L:      linux-wireless@vger.kernel.org
3397 L:      b43-dev@lists.infradead.org
3398 S:      Odd Fixes
3399 W:      https://wireless.wiki.kernel.org/en/users/Drivers/b43
3400 F:      drivers/net/wireless/broadcom/b43/
3401
3402 B43LEGACY WIRELESS DRIVER
3403 M:      Larry Finger <Larry.Finger@lwfinger.net>
3404 L:      linux-wireless@vger.kernel.org
3405 L:      b43-dev@lists.infradead.org
3406 S:      Maintained
3407 W:      https://wireless.wiki.kernel.org/en/users/Drivers/b43
3408 F:      drivers/net/wireless/broadcom/b43legacy/
3409
3410 BACKLIGHT CLASS/SUBSYSTEM
3411 M:      Lee Jones <lee.jones@linaro.org>
3412 M:      Daniel Thompson <daniel.thompson@linaro.org>
3413 M:      Jingoo Han <jingoohan1@gmail.com>
3414 L:      dri-devel@lists.freedesktop.org
3415 S:      Maintained
3416 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/backlight.git
3417 F:      Documentation/ABI/stable/sysfs-class-backlight
3418 F:      Documentation/ABI/testing/sysfs-class-backlight
3419 F:      Documentation/devicetree/bindings/leds/backlight
3420 F:      drivers/video/backlight/
3421 F:      include/linux/backlight.h
3422 F:      include/linux/pwm_backlight.h
3423
3424 BARCO P50 GPIO DRIVER
3425 M:      Santosh Kumar Yadav <santoshkumar.yadav@barco.com>
3426 M:      Peter Korsgaard <peter.korsgaard@barco.com>
3427 S:      Maintained
3428 F:      drivers/platform/x86/barco-p50-gpio.c
3429
3430 BATMAN ADVANCED
3431 M:      Marek Lindner <mareklindner@neomailbox.ch>
3432 M:      Simon Wunderlich <sw@simonwunderlich.de>
3433 M:      Antonio Quartulli <a@unstable.cc>
3434 M:      Sven Eckelmann <sven@narfation.org>
3435 L:      b.a.t.m.a.n@lists.open-mesh.org (moderated for non-subscribers)
3436 S:      Maintained
3437 W:      https://www.open-mesh.org/
3438 Q:      https://patchwork.open-mesh.org/project/batman/list/
3439 B:      https://www.open-mesh.org/projects/batman-adv/issues
3440 C:      ircs://irc.hackint.org/batadv
3441 T:      git https://git.open-mesh.org/linux-merge.git
3442 F:      Documentation/networking/batman-adv.rst
3443 F:      include/uapi/linux/batadv_packet.h
3444 F:      include/uapi/linux/batman_adv.h
3445 F:      net/batman-adv/
3446
3447 BAYCOM/HDLCDRV DRIVERS FOR AX.25
3448 M:      Thomas Sailer <t.sailer@alumni.ethz.ch>
3449 L:      linux-hams@vger.kernel.org
3450 S:      Maintained
3451 W:      http://www.baycom.org/~tom/ham/ham.html
3452 F:      drivers/net/hamradio/baycom*
3453
3454 BCACHE (BLOCK LAYER CACHE)
3455 M:      Coly Li <colyli@suse.de>
3456 M:      Kent Overstreet <kent.overstreet@gmail.com>
3457 L:      linux-bcache@vger.kernel.org
3458 S:      Maintained
3459 W:      http://bcache.evilpiepirate.org
3460 C:      irc://irc.oftc.net/bcache
3461 F:      drivers/md/bcache/
3462
3463 BDISP ST MEDIA DRIVER
3464 M:      Fabien Dessenne <fabien.dessenne@foss.st.com>
3465 L:      linux-media@vger.kernel.org
3466 S:      Supported
3467 W:      https://linuxtv.org
3468 T:      git git://linuxtv.org/media_tree.git
3469 F:      drivers/media/platform/st/sti/bdisp
3470
3471 BECKHOFF CX5020 ETHERCAT MASTER DRIVER
3472 M:      Dariusz Marcinkiewicz <reksio@newterm.pl>
3473 L:      netdev@vger.kernel.org
3474 S:      Maintained
3475 F:      drivers/net/ethernet/ec_bhf.c
3476
3477 BEFS FILE SYSTEM
3478 M:      Luis de Bethencourt <luisbg@kernel.org>
3479 M:      Salah Triki <salah.triki@gmail.com>
3480 S:      Maintained
3481 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luisbg/linux-befs.git
3482 F:      Documentation/filesystems/befs.rst
3483 F:      fs/befs/
3484
3485 BFQ I/O SCHEDULER
3486 M:      Paolo Valente <paolo.valente@linaro.org>
3487 M:      Jens Axboe <axboe@kernel.dk>
3488 L:      linux-block@vger.kernel.org
3489 S:      Maintained
3490 F:      Documentation/block/bfq-iosched.rst
3491 F:      block/bfq-*
3492
3493 BFS FILE SYSTEM
3494 M:      "Tigran A. Aivazian" <aivazian.tigran@gmail.com>
3495 S:      Maintained
3496 F:      Documentation/filesystems/bfs.rst
3497 F:      fs/bfs/
3498 F:      include/uapi/linux/bfs_fs.h
3499
3500 BITMAP API
3501 M:      Yury Norov <yury.norov@gmail.com>
3502 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
3503 R:      Rasmus Villemoes <linux@rasmusvillemoes.dk>
3504 S:      Maintained
3505 F:      include/linux/bitmap.h
3506 F:      include/linux/find.h
3507 F:      lib/bitmap.c
3508 F:      lib/find_bit.c
3509 F:      lib/find_bit_benchmark.c
3510 F:      lib/test_bitmap.c
3511 F:      tools/include/linux/bitmap.h
3512 F:      tools/include/linux/find.h
3513 F:      tools/lib/bitmap.c
3514 F:      tools/lib/find_bit.c
3515
3516 BLINKM RGB LED DRIVER
3517 M:      Jan-Simon Moeller <jansimon.moeller@gmx.de>
3518 S:      Maintained
3519 F:      drivers/leds/leds-blinkm.c
3520
3521 BLOCK LAYER
3522 M:      Jens Axboe <axboe@kernel.dk>
3523 L:      linux-block@vger.kernel.org
3524 S:      Maintained
3525 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
3526 F:      Documentation/ABI/stable/sysfs-block
3527 F:      Documentation/block/
3528 F:      block/
3529 F:      drivers/block/
3530 F:      include/linux/bio.h
3531 F:      include/linux/blk*
3532 F:      kernel/trace/blktrace.c
3533 F:      lib/sbitmap.c
3534
3535 BLOCK2MTD DRIVER
3536 M:      Joern Engel <joern@lazybastard.org>
3537 L:      linux-mtd@lists.infradead.org
3538 S:      Maintained
3539 F:      drivers/mtd/devices/block2mtd.c
3540
3541 BLUETOOTH DRIVERS
3542 M:      Marcel Holtmann <marcel@holtmann.org>
3543 M:      Johan Hedberg <johan.hedberg@gmail.com>
3544 M:      Luiz Augusto von Dentz <luiz.dentz@gmail.com>
3545 L:      linux-bluetooth@vger.kernel.org
3546 S:      Supported
3547 W:      http://www.bluez.org/
3548 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3549 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3550 F:      drivers/bluetooth/
3551
3552 BLUETOOTH SUBSYSTEM
3553 M:      Marcel Holtmann <marcel@holtmann.org>
3554 M:      Johan Hedberg <johan.hedberg@gmail.com>
3555 M:      Luiz Augusto von Dentz <luiz.dentz@gmail.com>
3556 L:      linux-bluetooth@vger.kernel.org
3557 S:      Supported
3558 W:      http://www.bluez.org/
3559 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3560 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3561 F:      include/net/bluetooth/
3562 F:      net/bluetooth/
3563
3564 BONDING DRIVER
3565 M:      Jay Vosburgh <j.vosburgh@gmail.com>
3566 M:      Veaceslav Falico <vfalico@gmail.com>
3567 M:      Andy Gospodarek <andy@greyhouse.net>
3568 L:      netdev@vger.kernel.org
3569 S:      Supported
3570 W:      http://sourceforge.net/projects/bonding/
3571 F:      drivers/net/bonding/
3572 F:      include/net/bonding.h
3573 F:      include/uapi/linux/if_bonding.h
3574
3575 BOSCH SENSORTEC BMA400 ACCELEROMETER IIO DRIVER
3576 M:      Dan Robertson <dan@dlrobertson.com>
3577 L:      linux-iio@vger.kernel.org
3578 S:      Maintained
3579 F:      Documentation/devicetree/bindings/iio/accel/bosch,bma400.yaml
3580 F:      drivers/iio/accel/bma400*
3581
3582 BPF (Safe dynamic programs and tools)
3583 M:      Alexei Starovoitov <ast@kernel.org>
3584 M:      Daniel Borkmann <daniel@iogearbox.net>
3585 M:      Andrii Nakryiko <andrii@kernel.org>
3586 R:      Martin KaFai Lau <kafai@fb.com>
3587 R:      Song Liu <songliubraving@fb.com>
3588 R:      Yonghong Song <yhs@fb.com>
3589 R:      John Fastabend <john.fastabend@gmail.com>
3590 R:      KP Singh <kpsingh@kernel.org>
3591 L:      netdev@vger.kernel.org
3592 L:      bpf@vger.kernel.org
3593 S:      Supported
3594 W:      https://bpf.io/
3595 Q:      https://patchwork.kernel.org/project/netdevbpf/list/?delegate=121173
3596 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf.git
3597 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-next.git
3598 F:      Documentation/bpf/
3599 F:      Documentation/networking/filter.rst
3600 F:      Documentation/userspace-api/ebpf/
3601 F:      arch/*/net/*
3602 F:      include/linux/bpf*
3603 F:      include/linux/btf*
3604 F:      include/linux/filter.h
3605 F:      include/trace/events/xdp.h
3606 F:      include/uapi/linux/bpf*
3607 F:      include/uapi/linux/btf*
3608 F:      include/uapi/linux/filter.h
3609 F:      kernel/bpf/
3610 F:      kernel/trace/bpf_trace.c
3611 F:      lib/test_bpf.c
3612 F:      net/bpf/
3613 F:      net/core/filter.c
3614 F:      net/sched/act_bpf.c
3615 F:      net/sched/cls_bpf.c
3616 F:      samples/bpf/
3617 F:      scripts/bpf_doc.py
3618 F:      scripts/pahole-flags.sh
3619 F:      scripts/pahole-version.sh
3620 F:      tools/bpf/
3621 F:      tools/lib/bpf/
3622 F:      tools/testing/selftests/bpf/
3623 N:      bpf
3624 K:      bpf
3625
3626 BPF JIT for ARM
3627 M:      Shubham Bansal <illusionist.neo@gmail.com>
3628 L:      netdev@vger.kernel.org
3629 L:      bpf@vger.kernel.org
3630 S:      Maintained
3631 F:      arch/arm/net/
3632
3633 BPF JIT for ARM64
3634 M:      Daniel Borkmann <daniel@iogearbox.net>
3635 M:      Alexei Starovoitov <ast@kernel.org>
3636 M:      Zi Shen Lim <zlim.lnx@gmail.com>
3637 L:      netdev@vger.kernel.org
3638 L:      bpf@vger.kernel.org
3639 S:      Supported
3640 F:      arch/arm64/net/
3641
3642 BPF JIT for MIPS (32-BIT AND 64-BIT)
3643 M:      Johan Almbladh <johan.almbladh@anyfinetworks.com>
3644 M:      Paul Burton <paulburton@kernel.org>
3645 L:      netdev@vger.kernel.org
3646 L:      bpf@vger.kernel.org
3647 S:      Maintained
3648 F:      arch/mips/net/
3649
3650 BPF JIT for NFP NICs
3651 M:      Jakub Kicinski <kuba@kernel.org>
3652 L:      netdev@vger.kernel.org
3653 L:      bpf@vger.kernel.org
3654 S:      Supported
3655 F:      drivers/net/ethernet/netronome/nfp/bpf/
3656
3657 BPF JIT for POWERPC (32-BIT AND 64-BIT)
3658 M:      Naveen N. Rao <naveen.n.rao@linux.ibm.com>
3659 L:      netdev@vger.kernel.org
3660 L:      bpf@vger.kernel.org
3661 S:      Maintained
3662 F:      arch/powerpc/net/
3663
3664 BPF JIT for RISC-V (32-bit)
3665 M:      Luke Nelson <luke.r.nels@gmail.com>
3666 M:      Xi Wang <xi.wang@gmail.com>
3667 L:      netdev@vger.kernel.org
3668 L:      bpf@vger.kernel.org
3669 S:      Maintained
3670 F:      arch/riscv/net/
3671 X:      arch/riscv/net/bpf_jit_comp64.c
3672
3673 BPF JIT for RISC-V (64-bit)
3674 M:      Björn Töpel <bjorn@kernel.org>
3675 L:      netdev@vger.kernel.org
3676 L:      bpf@vger.kernel.org
3677 S:      Maintained
3678 F:      arch/riscv/net/
3679 X:      arch/riscv/net/bpf_jit_comp32.c
3680
3681 BPF JIT for S390
3682 M:      Ilya Leoshkevich <iii@linux.ibm.com>
3683 M:      Heiko Carstens <hca@linux.ibm.com>
3684 M:      Vasily Gorbik <gor@linux.ibm.com>
3685 L:      netdev@vger.kernel.org
3686 L:      bpf@vger.kernel.org
3687 S:      Maintained
3688 F:      arch/s390/net/
3689 X:      arch/s390/net/pnet.c
3690
3691 BPF JIT for SPARC (32-BIT AND 64-BIT)
3692 M:      David S. Miller <davem@davemloft.net>
3693 L:      netdev@vger.kernel.org
3694 L:      bpf@vger.kernel.org
3695 S:      Maintained
3696 F:      arch/sparc/net/
3697
3698 BPF JIT for X86 32-BIT
3699 M:      Wang YanQing <udknight@gmail.com>
3700 L:      netdev@vger.kernel.org
3701 L:      bpf@vger.kernel.org
3702 S:      Maintained
3703 F:      arch/x86/net/bpf_jit_comp32.c
3704
3705 BPF JIT for X86 64-BIT
3706 M:      Alexei Starovoitov <ast@kernel.org>
3707 M:      Daniel Borkmann <daniel@iogearbox.net>
3708 L:      netdev@vger.kernel.org
3709 L:      bpf@vger.kernel.org
3710 S:      Supported
3711 F:      arch/x86/net/
3712 X:      arch/x86/net/bpf_jit_comp32.c
3713
3714 BPF LSM (Security Audit and Enforcement using BPF)
3715 M:      KP Singh <kpsingh@kernel.org>
3716 R:      Florent Revest <revest@chromium.org>
3717 R:      Brendan Jackman <jackmanb@chromium.org>
3718 L:      bpf@vger.kernel.org
3719 S:      Maintained
3720 F:      Documentation/bpf/prog_lsm.rst
3721 F:      include/linux/bpf_lsm.h
3722 F:      kernel/bpf/bpf_lsm.c
3723 F:      security/bpf/
3724
3725 BROADCOM B44 10/100 ETHERNET DRIVER
3726 M:      Michael Chan <michael.chan@broadcom.com>
3727 L:      netdev@vger.kernel.org
3728 S:      Supported
3729 F:      drivers/net/ethernet/broadcom/b44.*
3730
3731 BROADCOM B53/SF2 ETHERNET SWITCH DRIVER
3732 M:      Florian Fainelli <f.fainelli@gmail.com>
3733 L:      netdev@vger.kernel.org
3734 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
3735 S:      Supported
3736 F:      Documentation/devicetree/bindings/net/dsa/brcm,b53.yaml
3737 F:      drivers/net/dsa/b53/*
3738 F:      drivers/net/dsa/bcm_sf2*
3739 F:      include/linux/dsa/brcm.h
3740 F:      include/linux/platform_data/b53.h
3741
3742 BROADCOM BCM2711/BCM2835 ARM ARCHITECTURE
3743 M:      Nicolas Saenz Julienne <nsaenz@kernel.org>
3744 L:      bcm-kernel-feedback-list@broadcom.com
3745 L:      linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
3746 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3747 S:      Maintained
3748 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nsaenz/linux-rpi.git
3749 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3750 F:      drivers/pci/controller/pcie-brcmstb.c
3751 F:      drivers/staging/vc04_services
3752 N:      bcm2711
3753 N:      bcm283*
3754
3755 BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE
3756 M:      Florian Fainelli <f.fainelli@gmail.com>
3757 M:      Ray Jui <rjui@broadcom.com>
3758 M:      Scott Branden <sbranden@broadcom.com>
3759 M:      bcm-kernel-feedback-list@broadcom.com
3760 S:      Maintained
3761 T:      git git://github.com/broadcom/mach-bcm
3762 F:      arch/arm/mach-bcm/
3763 N:      bcm281*
3764 N:      bcm113*
3765 N:      bcm216*
3766 N:      kona
3767
3768 BROADCOM BCM47XX MIPS ARCHITECTURE
3769 M:      Hauke Mehrtens <hauke@hauke-m.de>
3770 M:      Rafał Miłecki <zajec5@gmail.com>
3771 L:      linux-mips@vger.kernel.org
3772 S:      Maintained
3773 F:      Documentation/devicetree/bindings/mips/brcm/
3774 F:      arch/mips/bcm47xx/*
3775 F:      arch/mips/include/asm/mach-bcm47xx/*
3776
3777 BROADCOM BCM4908 ETHERNET DRIVER
3778 M:      Rafał Miłecki <rafal@milecki.pl>
3779 M:      bcm-kernel-feedback-list@broadcom.com
3780 L:      netdev@vger.kernel.org
3781 S:      Maintained
3782 F:      Documentation/devicetree/bindings/net/brcm,bcm4908-enet.yaml
3783 F:      drivers/net/ethernet/broadcom/bcm4908_enet.*
3784 F:      drivers/net/ethernet/broadcom/unimac.h
3785
3786 BROADCOM BCM4908 PINMUX DRIVER
3787 M:      Rafał Miłecki <rafal@milecki.pl>
3788 M:      bcm-kernel-feedback-list@broadcom.com
3789 L:      linux-gpio@vger.kernel.org
3790 S:      Maintained
3791 F:      Documentation/devicetree/bindings/pinctrl/brcm,bcm4908-pinctrl.yaml
3792 F:      drivers/pinctrl/bcm/pinctrl-bcm4908.c
3793
3794 BROADCOM BCM5301X ARM ARCHITECTURE
3795 M:      Florian Fainelli <f.fainelli@gmail.com>
3796 M:      Hauke Mehrtens <hauke@hauke-m.de>
3797 M:      Rafał Miłecki <zajec5@gmail.com>
3798 M:      bcm-kernel-feedback-list@broadcom.com
3799 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3800 S:      Maintained
3801 F:      arch/arm/boot/dts/bcm470*
3802 F:      arch/arm/boot/dts/bcm5301*
3803 F:      arch/arm/boot/dts/bcm953012*
3804 F:      arch/arm/mach-bcm/bcm_5301x.c
3805
3806 BROADCOM BCM53573 ARM ARCHITECTURE
3807 M:      Florian Fainelli <f.fainelli@gmail.com>
3808 M:      Rafał Miłecki <rafal@milecki.pl>
3809 L:      bcm-kernel-feedback-list@broadcom.com
3810 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3811 S:      Maintained
3812 F:      arch/arm/boot/dts/bcm47189*
3813 F:      arch/arm/boot/dts/bcm53573*
3814
3815 BROADCOM BCM63XX ARM ARCHITECTURE
3816 M:      Florian Fainelli <f.fainelli@gmail.com>
3817 M:      bcm-kernel-feedback-list@broadcom.com
3818 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3819 S:      Maintained
3820 T:      git git://github.com/broadcom/stblinux.git
3821 N:      bcm63xx
3822
3823 BROADCOM BCM63XX/BCM33XX UDC DRIVER
3824 M:      Kevin Cernekee <cernekee@gmail.com>
3825 L:      linux-usb@vger.kernel.org
3826 S:      Maintained
3827 F:      drivers/usb/gadget/udc/bcm63xx_udc.*
3828
3829 BROADCOM BCM7XXX ARM ARCHITECTURE
3830 M:      Florian Fainelli <f.fainelli@gmail.com>
3831 M:      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 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3836 F:      arch/arm/boot/dts/bcm7*.dts*
3837 F:      arch/arm/include/asm/hardware/cache-b15-rac.h
3838 F:      arch/arm/mach-bcm/*brcmstb*
3839 F:      arch/arm/mm/cache-b15-rac.c
3840 F:      drivers/bus/brcmstb_gisb.c
3841 F:      drivers/pci/controller/pcie-brcmstb.c
3842 N:      brcmstb
3843 N:      bcm7038
3844 N:      bcm7120
3845
3846 BROADCOM BDC DRIVER
3847 M:      Al Cooper <alcooperx@gmail.com>
3848 L:      linux-usb@vger.kernel.org
3849 L:      bcm-kernel-feedback-list@broadcom.com
3850 S:      Maintained
3851 F:      Documentation/devicetree/bindings/usb/brcm,bdc.yaml
3852 F:      drivers/usb/gadget/udc/bdc/
3853
3854 BROADCOM BMIPS CPUFREQ DRIVER
3855 M:      Markus Mayer <mmayer@broadcom.com>
3856 M:      bcm-kernel-feedback-list@broadcom.com
3857 L:      linux-pm@vger.kernel.org
3858 S:      Maintained
3859 F:      drivers/cpufreq/bmips-cpufreq.c
3860
3861 BROADCOM BMIPS MIPS ARCHITECTURE
3862 M:      Florian Fainelli <f.fainelli@gmail.com>
3863 L:      bcm-kernel-feedback-list@broadcom.com
3864 L:      linux-mips@vger.kernel.org
3865 S:      Maintained
3866 T:      git git://github.com/broadcom/stblinux.git
3867 F:      arch/mips/bmips/*
3868 F:      arch/mips/boot/dts/brcm/bcm*.dts*
3869 F:      arch/mips/include/asm/mach-bmips/*
3870 F:      arch/mips/kernel/*bmips*
3871 F:      drivers/soc/bcm/bcm63xx
3872 F:      drivers/irqchip/irq-bcm63*
3873 F:      drivers/irqchip/irq-bcm7*
3874 F:      drivers/irqchip/irq-brcmstb*
3875 F:      include/linux/bcm963xx_nvram.h
3876 F:      include/linux/bcm963xx_tag.h
3877
3878 BROADCOM BNX2 GIGABIT ETHERNET DRIVER
3879 M:      Rasesh Mody <rmody@marvell.com>
3880 M:      GR-Linux-NIC-Dev@marvell.com
3881 L:      netdev@vger.kernel.org
3882 S:      Supported
3883 F:      drivers/net/ethernet/broadcom/bnx2.*
3884 F:      drivers/net/ethernet/broadcom/bnx2_*
3885
3886 BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
3887 M:      Saurav Kashyap <skashyap@marvell.com>
3888 M:      Javed Hasan <jhasan@marvell.com>
3889 M:      GR-QLogic-Storage-Upstream@marvell.com
3890 L:      linux-scsi@vger.kernel.org
3891 S:      Supported
3892 F:      drivers/scsi/bnx2fc/
3893
3894 BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER
3895 M:      Nilesh Javali <njavali@marvell.com>
3896 M:      Manish Rangankar <mrangankar@marvell.com>
3897 M:      GR-QLogic-Storage-Upstream@marvell.com
3898 L:      linux-scsi@vger.kernel.org
3899 S:      Supported
3900 F:      drivers/scsi/bnx2i/
3901
3902 BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
3903 M:      Ariel Elior <aelior@marvell.com>
3904 M:      Sudarsana Kalluru <skalluru@marvell.com>
3905 M:      Manish Chopra <manishc@marvell.com>
3906 L:      netdev@vger.kernel.org
3907 S:      Supported
3908 F:      drivers/net/ethernet/broadcom/bnx2x/
3909
3910 BROADCOM BNXT_EN 50 GIGABIT ETHERNET DRIVER
3911 M:      Michael Chan <michael.chan@broadcom.com>
3912 L:      netdev@vger.kernel.org
3913 S:      Supported
3914 F:      drivers/net/ethernet/broadcom/bnxt/
3915
3916 BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
3917 M:      Arend van Spriel <aspriel@gmail.com>
3918 M:      Franky Lin <franky.lin@broadcom.com>
3919 M:      Hante Meuleman <hante.meuleman@broadcom.com>
3920 L:      linux-wireless@vger.kernel.org
3921 L:      brcm80211-dev-list.pdl@broadcom.com
3922 L:      SHA-cyfmac-dev-list@infineon.com
3923 S:      Supported
3924 F:      drivers/net/wireless/broadcom/brcm80211/
3925
3926 BROADCOM BRCMSTB GPIO DRIVER
3927 M:      Doug Berger <opendmb@gmail.com>
3928 M:      Florian Fainelli <f.fainelli@gmail.com>
3929 L:      bcm-kernel-feedback-list@broadcom.com
3930 S:      Supported
3931 F:      Documentation/devicetree/bindings/gpio/brcm,brcmstb-gpio.yaml
3932 F:      drivers/gpio/gpio-brcmstb.c
3933
3934 BROADCOM BRCMSTB I2C DRIVER
3935 M:      Kamal Dasu <kdasu.kdev@gmail.com>
3936 L:      linux-i2c@vger.kernel.org
3937 L:      bcm-kernel-feedback-list@broadcom.com
3938 S:      Supported
3939 F:      Documentation/devicetree/bindings/i2c/brcm,brcmstb-i2c.yaml
3940 F:      drivers/i2c/busses/i2c-brcmstb.c
3941
3942 BROADCOM BRCMSTB UART DRIVER
3943 M:      Al Cooper <alcooperx@gmail.com>
3944 L:      linux-serial@vger.kernel.org
3945 L:      bcm-kernel-feedback-list@broadcom.com
3946 S:      Maintained
3947 F:      Documentation/devicetree/bindings/serial/brcm,bcm7271-uart.yaml
3948 F:      drivers/tty/serial/8250/8250_bcm7271.c
3949
3950 BROADCOM BRCMSTB USB EHCI DRIVER
3951 M:      Al Cooper <alcooperx@gmail.com>
3952 L:      linux-usb@vger.kernel.org
3953 L:      bcm-kernel-feedback-list@broadcom.com
3954 S:      Maintained
3955 F:      Documentation/devicetree/bindings/usb/brcm,bcm7445-ehci.yaml
3956 F:      drivers/usb/host/ehci-brcm.*
3957
3958 BROADCOM BRCMSTB USB PIN MAP DRIVER
3959 M:      Al Cooper <alcooperx@gmail.com>
3960 L:      linux-usb@vger.kernel.org
3961 L:      bcm-kernel-feedback-list@broadcom.com
3962 S:      Maintained
3963 F:      Documentation/devicetree/bindings/usb/brcm,usb-pinmap.yaml
3964 F:      drivers/usb/misc/brcmstb-usb-pinmap.c
3965
3966 BROADCOM BRCMSTB USB2 and USB3 PHY DRIVER
3967 M:      Al Cooper <alcooperx@gmail.com>
3968 L:      linux-kernel@vger.kernel.org
3969 L:      bcm-kernel-feedback-list@broadcom.com
3970 S:      Maintained
3971 F:      drivers/phy/broadcom/phy-brcm-usb*
3972
3973 BROADCOM ETHERNET PHY DRIVERS
3974 M:      Florian Fainelli <f.fainelli@gmail.com>
3975 L:      bcm-kernel-feedback-list@broadcom.com
3976 L:      netdev@vger.kernel.org
3977 S:      Supported
3978 F:      Documentation/devicetree/bindings/net/broadcom-bcm87xx.txt
3979 F:      drivers/net/phy/bcm*.[ch]
3980 F:      drivers/net/phy/broadcom.c
3981 F:      include/linux/brcmphy.h
3982
3983 BROADCOM GENET ETHERNET DRIVER
3984 M:      Doug Berger <opendmb@gmail.com>
3985 M:      Florian Fainelli <f.fainelli@gmail.com>
3986 L:      bcm-kernel-feedback-list@broadcom.com
3987 L:      netdev@vger.kernel.org
3988 S:      Supported
3989 F:      Documentation/devicetree/bindings/net/brcm,bcmgenet.yaml
3990 F:      Documentation/devicetree/bindings/net/brcm,unimac-mdio.yaml
3991 F:      drivers/net/ethernet/broadcom/genet/
3992 F:      drivers/net/ethernet/broadcom/unimac.h
3993 F:      drivers/net/mdio/mdio-bcm-unimac.c
3994 F:      include/linux/platform_data/bcmgenet.h
3995 F:      include/linux/platform_data/mdio-bcm-unimac.h
3996
3997 BROADCOM IPROC ARM ARCHITECTURE
3998 M:      Ray Jui <rjui@broadcom.com>
3999 M:      Scott Branden <sbranden@broadcom.com>
4000 M:      bcm-kernel-feedback-list@broadcom.com
4001 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4002 S:      Maintained
4003 T:      git git://github.com/broadcom/stblinux.git
4004 F:      arch/arm64/boot/dts/broadcom/northstar2/*
4005 F:      arch/arm64/boot/dts/broadcom/stingray/*
4006 F:      drivers/clk/bcm/clk-ns*
4007 F:      drivers/clk/bcm/clk-sr*
4008 F:      drivers/pinctrl/bcm/pinctrl-ns*
4009 F:      include/dt-bindings/clock/bcm-sr*
4010 N:      iproc
4011 N:      cygnus
4012 N:      bcm[-_]nsp
4013 N:      bcm9113*
4014 N:      bcm9583*
4015 N:      bcm9585*
4016 N:      bcm9586*
4017 N:      bcm988312
4018 N:      bcm113*
4019 N:      bcm583*
4020 N:      bcm585*
4021 N:      bcm586*
4022 N:      bcm88312
4023 N:      hr2
4024 N:      stingray
4025
4026 BROADCOM IPROC GBIT ETHERNET DRIVER
4027 M:      Rafał Miłecki <rafal@milecki.pl>
4028 M:      bcm-kernel-feedback-list@broadcom.com
4029 L:      netdev@vger.kernel.org
4030 S:      Maintained
4031 F:      Documentation/devicetree/bindings/net/brcm,amac.yaml
4032 F:      drivers/net/ethernet/broadcom/bgmac*
4033 F:      drivers/net/ethernet/broadcom/unimac.h
4034
4035 BROADCOM KONA GPIO DRIVER
4036 M:      Ray Jui <rjui@broadcom.com>
4037 L:      bcm-kernel-feedback-list@broadcom.com
4038 S:      Supported
4039 F:      Documentation/devicetree/bindings/gpio/brcm,kona-gpio.txt
4040 F:      drivers/gpio/gpio-bcm-kona.c
4041
4042 BROADCOM MPI3 STORAGE CONTROLLER DRIVER
4043 M:      Sathya Prakash Veerichetty <sathya.prakash@broadcom.com>
4044 M:      Kashyap Desai <kashyap.desai@broadcom.com>
4045 M:      Sumit Saxena <sumit.saxena@broadcom.com>
4046 M:      Sreekanth Reddy <sreekanth.reddy@broadcom.com>
4047 L:      mpi3mr-linuxdrv.pdl@broadcom.com
4048 L:      linux-scsi@vger.kernel.org
4049 S:      Supported
4050 W:      https://www.broadcom.com/support/storage
4051 F:      drivers/scsi/mpi3mr/
4052
4053 BROADCOM NETXTREME-E ROCE DRIVER
4054 M:      Selvin Xavier <selvin.xavier@broadcom.com>
4055 L:      linux-rdma@vger.kernel.org
4056 S:      Supported
4057 W:      http://www.broadcom.com
4058 F:      drivers/infiniband/hw/bnxt_re/
4059 F:      include/uapi/rdma/bnxt_re-abi.h
4060
4061 BROADCOM NVRAM DRIVER
4062 M:      Rafał Miłecki <zajec5@gmail.com>
4063 L:      linux-mips@vger.kernel.org
4064 S:      Maintained
4065 F:      drivers/firmware/broadcom/*
4066
4067 BROADCOM PMB (POWER MANAGEMENT BUS) DRIVER
4068 M:      Rafał Miłecki <rafal@milecki.pl>
4069 M:      Florian Fainelli <f.fainelli@gmail.com>
4070 M:      bcm-kernel-feedback-list@broadcom.com
4071 L:      linux-pm@vger.kernel.org
4072 S:      Maintained
4073 T:      git git://github.com/broadcom/stblinux.git
4074 F:      drivers/soc/bcm/bcm63xx/bcm-pmb.c
4075 F:      include/dt-bindings/soc/bcm-pmb.h
4076
4077 BROADCOM SPECIFIC AMBA DRIVER (BCMA)
4078 M:      Rafał Miłecki <zajec5@gmail.com>
4079 L:      linux-wireless@vger.kernel.org
4080 S:      Maintained
4081 F:      drivers/bcma/
4082 F:      include/linux/bcma/
4083
4084 BROADCOM SPI DRIVER
4085 M:      Kamal Dasu <kdasu.kdev@gmail.com>
4086 M:      bcm-kernel-feedback-list@broadcom.com
4087 S:      Maintained
4088 F:      Documentation/devicetree/bindings/spi/brcm,spi-bcm-qspi.yaml
4089 F:      drivers/spi/spi-bcm-qspi.*
4090 F:      drivers/spi/spi-brcmstb-qspi.c
4091 F:      drivers/spi/spi-iproc-qspi.c
4092
4093 BROADCOM STB AVS CPUFREQ DRIVER
4094 M:      Markus Mayer <mmayer@broadcom.com>
4095 M:      bcm-kernel-feedback-list@broadcom.com
4096 L:      linux-pm@vger.kernel.org
4097 S:      Maintained
4098 F:      Documentation/devicetree/bindings/cpufreq/brcm,stb-avs-cpu-freq.txt
4099 F:      drivers/cpufreq/brcmstb*
4100
4101 BROADCOM STB AVS TMON DRIVER
4102 M:      Markus Mayer <mmayer@broadcom.com>
4103 M:      bcm-kernel-feedback-list@broadcom.com
4104 L:      linux-pm@vger.kernel.org
4105 S:      Maintained
4106 F:      Documentation/devicetree/bindings/thermal/brcm,avs-tmon.yaml
4107 F:      drivers/thermal/broadcom/brcmstb*
4108
4109 BROADCOM STB DPFE DRIVER
4110 M:      Markus Mayer <mmayer@broadcom.com>
4111 M:      bcm-kernel-feedback-list@broadcom.com
4112 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4113 S:      Maintained
4114 F:      Documentation/devicetree/bindings/memory-controllers/brcm,dpfe-cpu.yaml
4115 F:      drivers/memory/brcmstb_dpfe.c
4116
4117 BROADCOM STB NAND FLASH DRIVER
4118 M:      Brian Norris <computersforpeace@gmail.com>
4119 M:      Kamal Dasu <kdasu.kdev@gmail.com>
4120 L:      linux-mtd@lists.infradead.org
4121 L:      bcm-kernel-feedback-list@broadcom.com
4122 S:      Maintained
4123 F:      drivers/mtd/nand/raw/brcmnand/
4124 F:      include/linux/platform_data/brcmnand.h
4125
4126 BROADCOM STB PCIE DRIVER
4127 M:      Jim Quinlan <jim2101024@gmail.com>
4128 M:      Nicolas Saenz Julienne <nsaenz@kernel.org>
4129 M:      Florian Fainelli <f.fainelli@gmail.com>
4130 M:      bcm-kernel-feedback-list@broadcom.com
4131 L:      linux-pci@vger.kernel.org
4132 S:      Maintained
4133 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
4134 F:      drivers/pci/controller/pcie-brcmstb.c
4135
4136 BROADCOM SYSTEMPORT ETHERNET DRIVER
4137 M:      Florian Fainelli <f.fainelli@gmail.com>
4138 L:      bcm-kernel-feedback-list@broadcom.com
4139 L:      netdev@vger.kernel.org
4140 S:      Supported
4141 F:      drivers/net/ethernet/broadcom/bcmsysport.*
4142 F:      drivers/net/ethernet/broadcom/unimac.h
4143 F:      Documentation/devicetree/bindings/net/brcm,systemport.yaml
4144
4145 BROADCOM TG3 GIGABIT ETHERNET DRIVER
4146 M:      Siva Reddy Kallam <siva.kallam@broadcom.com>
4147 M:      Prashant Sreedharan <prashant@broadcom.com>
4148 M:      Michael Chan <mchan@broadcom.com>
4149 L:      netdev@vger.kernel.org
4150 S:      Supported
4151 F:      drivers/net/ethernet/broadcom/tg3.*
4152
4153 BROADCOM VK DRIVER
4154 M:      Scott Branden <scott.branden@broadcom.com>
4155 L:      bcm-kernel-feedback-list@broadcom.com
4156 S:      Supported
4157 F:      drivers/misc/bcm-vk/
4158 F:      include/uapi/linux/misc/bcm_vk.h
4159
4160 BROCADE BFA FC SCSI DRIVER
4161 M:      Anil Gurumurthy <anil.gurumurthy@qlogic.com>
4162 M:      Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
4163 L:      linux-scsi@vger.kernel.org
4164 S:      Supported
4165 F:      drivers/scsi/bfa/
4166
4167 BROCADE BNA 10 GIGABIT ETHERNET DRIVER
4168 M:      Rasesh Mody <rmody@marvell.com>
4169 M:      Sudarsana Kalluru <skalluru@marvell.com>
4170 M:      GR-Linux-NIC-Dev@marvell.com
4171 L:      netdev@vger.kernel.org
4172 S:      Supported
4173 F:      drivers/net/ethernet/brocade/bna/
4174
4175 BSG (block layer generic sg v4 driver)
4176 M:      FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
4177 L:      linux-scsi@vger.kernel.org
4178 S:      Supported
4179 F:      block/bsg.c
4180 F:      include/linux/bsg.h
4181 F:      include/uapi/linux/bsg.h
4182
4183 BT87X AUDIO DRIVER
4184 M:      Clemens Ladisch <clemens@ladisch.de>
4185 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4186 S:      Maintained
4187 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
4188 F:      Documentation/sound/cards/bt87x.rst
4189 F:      sound/pci/bt87x.c
4190
4191 BT8XXGPIO DRIVER
4192 M:      Michael Buesch <m@bues.ch>
4193 S:      Maintained
4194 W:      http://bu3sch.de/btgpio.php
4195 F:      drivers/gpio/gpio-bt8xx.c
4196
4197 BTRFS FILE SYSTEM
4198 M:      Chris Mason <clm@fb.com>
4199 M:      Josef Bacik <josef@toxicpanda.com>
4200 M:      David Sterba <dsterba@suse.com>
4201 L:      linux-btrfs@vger.kernel.org
4202 S:      Maintained
4203 W:      http://btrfs.wiki.kernel.org/
4204 Q:      http://patchwork.kernel.org/project/linux-btrfs/list/
4205 C:      irc://irc.libera.chat/btrfs
4206 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kdave/linux.git
4207 F:      Documentation/filesystems/btrfs.rst
4208 F:      fs/btrfs/
4209 F:      include/linux/btrfs*
4210 F:      include/uapi/linux/btrfs*
4211
4212 BTTV VIDEO4LINUX DRIVER
4213 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
4214 L:      linux-media@vger.kernel.org
4215 S:      Odd fixes
4216 W:      https://linuxtv.org
4217 T:      git git://linuxtv.org/media_tree.git
4218 F:      Documentation/driver-api/media/drivers/bttv*
4219 F:      drivers/media/pci/bt8xx/bttv*
4220
4221 BUS FREQUENCY DRIVER FOR SAMSUNG EXYNOS
4222 M:      Chanwoo Choi <cw00.choi@samsung.com>
4223 L:      linux-pm@vger.kernel.org
4224 L:      linux-samsung-soc@vger.kernel.org
4225 S:      Maintained
4226 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
4227 F:      Documentation/devicetree/bindings/devfreq/exynos-bus.txt
4228 F:      drivers/devfreq/exynos-bus.c
4229
4230 BUSLOGIC SCSI DRIVER
4231 M:      Khalid Aziz <khalid@gonehiking.org>
4232 L:      linux-scsi@vger.kernel.org
4233 S:      Maintained
4234 F:      drivers/scsi/BusLogic.*
4235 F:      drivers/scsi/FlashPoint.*
4236
4237 C-MEDIA CMI8788 DRIVER
4238 M:      Clemens Ladisch <clemens@ladisch.de>
4239 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4240 S:      Maintained
4241 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
4242 F:      sound/pci/oxygen/
4243
4244 C-SKY ARCHITECTURE
4245 M:      Guo Ren <guoren@kernel.org>
4246 L:      linux-csky@vger.kernel.org
4247 S:      Supported
4248 T:      git https://github.com/c-sky/csky-linux.git
4249 F:      Documentation/devicetree/bindings/csky/
4250 F:      Documentation/devicetree/bindings/interrupt-controller/csky,*
4251 F:      Documentation/devicetree/bindings/timer/csky,*
4252 F:      arch/csky/
4253 F:      drivers/clocksource/timer-gx6605s.c
4254 F:      drivers/clocksource/timer-mp-csky.c
4255 F:      drivers/irqchip/irq-csky-*
4256 N:      csky
4257 K:      csky
4258
4259 CA8210 IEEE-802.15.4 RADIO DRIVER
4260 L:      linux-wpan@vger.kernel.org
4261 S:      Orphan
4262 W:      https://github.com/Cascoda/ca8210-linux.git
4263 F:      Documentation/devicetree/bindings/net/ieee802154/ca8210.txt
4264 F:      drivers/net/ieee802154/ca8210.c
4265
4266 CANAAN/KENDRYTE K210 SOC FPIOA DRIVER
4267 M:      Damien Le Moal <damien.lemoal@wdc.com>
4268 L:      linux-riscv@lists.infradead.org
4269 L:      linux-gpio@vger.kernel.org (pinctrl driver)
4270 F:      Documentation/devicetree/bindings/pinctrl/canaan,k210-fpioa.yaml
4271 F:      drivers/pinctrl/pinctrl-k210.c
4272
4273 CANAAN/KENDRYTE K210 SOC RESET CONTROLLER DRIVER
4274 M:      Damien Le Moal <damien.lemoal@wdc.com>
4275 L:      linux-kernel@vger.kernel.org
4276 L:      linux-riscv@lists.infradead.org
4277 S:      Maintained
4278 F:      Documentation/devicetree/bindings/reset/canaan,k210-rst.yaml
4279 F:      drivers/reset/reset-k210.c
4280
4281 CANAAN/KENDRYTE K210 SOC SYSTEM CONTROLLER DRIVER
4282 M:      Damien Le Moal <damien.lemoal@wdc.com>
4283 L:      linux-riscv@lists.infradead.org
4284 S:      Maintained
4285 F:      Documentation/devicetree/bindings/mfd/canaan,k210-sysctl.yaml
4286 F:      drivers/soc/canaan/
4287 F:      include/soc/canaan/
4288
4289 CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
4290 M:      David Howells <dhowells@redhat.com>
4291 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
4292 S:      Supported
4293 F:      Documentation/filesystems/caching/cachefiles.rst
4294 F:      fs/cachefiles/
4295
4296 CADENCE MIPI-CSI2 BRIDGES
4297 M:      Maxime Ripard <mripard@kernel.org>
4298 L:      linux-media@vger.kernel.org
4299 S:      Maintained
4300 F:      Documentation/devicetree/bindings/media/cdns,*.txt
4301 F:      drivers/media/platform/cadence/cdns-csi2*
4302
4303 CADENCE NAND DRIVER
4304 L:      linux-mtd@lists.infradead.org
4305 S:      Orphan
4306 F:      Documentation/devicetree/bindings/mtd/cadence-nand-controller.txt
4307 F:      drivers/mtd/nand/raw/cadence-nand-controller.c
4308
4309 CADENCE USB3 DRD IP DRIVER
4310 M:      Peter Chen <peter.chen@kernel.org>
4311 M:      Pawel Laszczak <pawell@cadence.com>
4312 R:      Roger Quadros <rogerq@kernel.org>
4313 R:      Aswath Govindraju <a-govindraju@ti.com>
4314 L:      linux-usb@vger.kernel.org
4315 S:      Maintained
4316 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4317 F:      Documentation/devicetree/bindings/usb/cdns,usb3.yaml
4318 F:      drivers/usb/cdns3/
4319 X:      drivers/usb/cdns3/cdnsp*
4320
4321 CADENCE USBSSP DRD IP DRIVER
4322 M:      Pawel Laszczak <pawell@cadence.com>
4323 L:      linux-usb@vger.kernel.org
4324 S:      Maintained
4325 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4326 F:      drivers/usb/cdns3/
4327 X:      drivers/usb/cdns3/cdns3*
4328
4329 CADET FM/AM RADIO RECEIVER DRIVER
4330 M:      Hans Verkuil <hverkuil@xs4all.nl>
4331 L:      linux-media@vger.kernel.org
4332 S:      Maintained
4333 W:      https://linuxtv.org
4334 T:      git git://linuxtv.org/media_tree.git
4335 F:      drivers/media/radio/radio-cadet*
4336
4337 CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
4338 L:      linux-media@vger.kernel.org
4339 S:      Orphan
4340 T:      git git://linuxtv.org/media_tree.git
4341 F:      Documentation/admin-guide/media/cafe_ccic*
4342 F:      drivers/media/platform/marvell/
4343
4344 CAIF NETWORK LAYER
4345 L:      netdev@vger.kernel.org
4346 S:      Orphan
4347 F:      Documentation/networking/caif/
4348 F:      drivers/net/caif/
4349 F:      include/net/caif/
4350 F:      include/uapi/linux/caif/
4351 F:      net/caif/
4352
4353 CAKE QDISC
4354 M:      Toke Høiland-Jørgensen <toke@toke.dk>
4355 L:      cake@lists.bufferbloat.net (moderated for non-subscribers)
4356 S:      Maintained
4357 F:      net/sched/sch_cake.c
4358
4359 CAN NETWORK DRIVERS
4360 M:      Wolfgang Grandegger <wg@grandegger.com>
4361 M:      Marc Kleine-Budde <mkl@pengutronix.de>
4362 L:      linux-can@vger.kernel.org
4363 S:      Maintained
4364 W:      https://github.com/linux-can
4365 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
4366 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
4367 F:      Documentation/devicetree/bindings/net/can/
4368 F:      Documentation/devicetree/bindings/phy/ti,tcan104x-can.yaml
4369 F:      drivers/net/can/
4370 F:      drivers/phy/phy-can-transceiver.c
4371 F:      include/linux/can/bittiming.h
4372 F:      include/linux/can/dev.h
4373 F:      include/linux/can/led.h
4374 F:      include/linux/can/length.h
4375 F:      include/linux/can/platform/
4376 F:      include/linux/can/rx-offload.h
4377 F:      include/uapi/linux/can/error.h
4378 F:      include/uapi/linux/can/netlink.h
4379 F:      include/uapi/linux/can/vxcan.h
4380
4381 CAN NETWORK LAYER
4382 M:      Oliver Hartkopp <socketcan@hartkopp.net>
4383 M:      Marc Kleine-Budde <mkl@pengutronix.de>
4384 L:      linux-can@vger.kernel.org
4385 S:      Maintained
4386 W:      https://github.com/linux-can
4387 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
4388 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
4389 F:      Documentation/networking/can.rst
4390 F:      include/linux/can/can-ml.h
4391 F:      include/linux/can/core.h
4392 F:      include/linux/can/skb.h
4393 F:      include/net/netns/can.h
4394 F:      include/uapi/linux/can.h
4395 F:      include/uapi/linux/can/bcm.h
4396 F:      include/uapi/linux/can/gw.h
4397 F:      include/uapi/linux/can/isotp.h
4398 F:      include/uapi/linux/can/raw.h
4399 F:      net/can/
4400
4401 CAN-J1939 NETWORK LAYER
4402 M:      Robin van der Gracht <robin@protonic.nl>
4403 M:      Oleksij Rempel <o.rempel@pengutronix.de>
4404 R:      kernel@pengutronix.de
4405 L:      linux-can@vger.kernel.org
4406 S:      Maintained
4407 F:      Documentation/networking/j1939.rst
4408 F:      include/uapi/linux/can/j1939.h
4409 F:      net/can/j1939/
4410
4411 CAPABILITIES
4412 M:      Serge Hallyn <serge@hallyn.com>
4413 L:      linux-security-module@vger.kernel.org
4414 S:      Supported
4415 F:      include/linux/capability.h
4416 F:      include/uapi/linux/capability.h
4417 F:      kernel/capability.c
4418 F:      security/commoncap.c
4419
4420 CAPELLA MICROSYSTEMS LIGHT SENSOR DRIVER
4421 M:      Kevin Tsai <ktsai@capellamicro.com>
4422 S:      Maintained
4423 F:      drivers/iio/light/cm*
4424
4425 CARL9170 LINUX COMMUNITY WIRELESS DRIVER
4426 M:      Christian Lamparter <chunkeey@googlemail.com>
4427 L:      linux-wireless@vger.kernel.org
4428 S:      Maintained
4429 W:      https://wireless.wiki.kernel.org/en/users/Drivers/carl9170
4430 F:      drivers/net/wireless/ath/carl9170/
4431
4432 CAVIUM I2C DRIVER
4433 M:      Robert Richter <rric@kernel.org>
4434 S:      Odd Fixes
4435 W:      http://www.marvell.com
4436 F:      drivers/i2c/busses/i2c-octeon*
4437 F:      drivers/i2c/busses/i2c-thunderx*
4438
4439 CAVIUM LIQUIDIO NETWORK DRIVER
4440 M:      Derek Chickles <dchickles@marvell.com>
4441 M:      Satanand Burla <sburla@marvell.com>
4442 M:      Felix Manlunas <fmanlunas@marvell.com>
4443 L:      netdev@vger.kernel.org
4444 S:      Supported
4445 W:      http://www.marvell.com
4446 F:      drivers/net/ethernet/cavium/liquidio/
4447
4448 CAVIUM MMC DRIVER
4449 M:      Robert Richter <rric@kernel.org>
4450 S:      Odd Fixes
4451 W:      http://www.marvell.com
4452 F:      drivers/mmc/host/cavium*
4453
4454 CAVIUM OCTEON-TX CRYPTO DRIVER
4455 M:      George Cherian <gcherian@marvell.com>
4456 L:      linux-crypto@vger.kernel.org
4457 S:      Supported
4458 W:      http://www.marvell.com
4459 F:      drivers/crypto/cavium/cpt/
4460
4461 CAVIUM THUNDERX2 ARM64 SOC
4462 M:      Robert Richter <rric@kernel.org>
4463 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4464 S:      Odd Fixes
4465 F:      Documentation/devicetree/bindings/arm/cavium-thunder2.txt
4466 F:      arch/arm64/boot/dts/cavium/thunder2-99xx*
4467
4468 CBS/ETF/TAPRIO QDISCS
4469 M:      Vinicius Costa Gomes <vinicius.gomes@intel.com>
4470 S:      Maintained
4471 L:      netdev@vger.kernel.org
4472 F:      net/sched/sch_cbs.c
4473 F:      net/sched/sch_etf.c
4474 F:      net/sched/sch_taprio.c
4475
4476 CC2520 IEEE-802.15.4 RADIO DRIVER
4477 M:      Varka Bhadram <varkabhadram@gmail.com>
4478 L:      linux-wpan@vger.kernel.org
4479 S:      Maintained
4480 F:      Documentation/devicetree/bindings/net/ieee802154/cc2520.txt
4481 F:      drivers/net/ieee802154/cc2520.c
4482 F:      include/linux/spi/cc2520.h
4483
4484 CCREE ARM TRUSTZONE CRYPTOCELL REE DRIVER
4485 M:      Gilad Ben-Yossef <gilad@benyossef.com>
4486 L:      linux-crypto@vger.kernel.org
4487 S:      Supported
4488 W:      https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
4489 F:      drivers/crypto/ccree/
4490
4491 CCTRNG ARM TRUSTZONE CRYPTOCELL TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
4492 M:      Hadar Gat <hadar.gat@arm.com>
4493 L:      linux-crypto@vger.kernel.org
4494 S:      Supported
4495 F:      drivers/char/hw_random/cctrng.c
4496 F:      drivers/char/hw_random/cctrng.h
4497 F:      Documentation/devicetree/bindings/rng/arm-cctrng.yaml
4498 W:      https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
4499
4500 CEC FRAMEWORK
4501 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
4502 L:      linux-media@vger.kernel.org
4503 S:      Supported
4504 W:      http://linuxtv.org
4505 T:      git git://linuxtv.org/media_tree.git
4506 F:      Documentation/ABI/testing/debugfs-cec-error-inj
4507 F:      Documentation/devicetree/bindings/media/cec.txt
4508 F:      Documentation/driver-api/media/cec-core.rst
4509 F:      Documentation/userspace-api/media/cec
4510 F:      drivers/media/cec/
4511 F:      drivers/media/rc/keymaps/rc-cec.c
4512 F:      include/media/cec-notifier.h
4513 F:      include/media/cec.h
4514 F:      include/uapi/linux/cec-funcs.h
4515 F:      include/uapi/linux/cec.h
4516
4517 CEC GPIO DRIVER
4518 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
4519 L:      linux-media@vger.kernel.org
4520 S:      Supported
4521 W:      http://linuxtv.org
4522 T:      git git://linuxtv.org/media_tree.git
4523 F:      Documentation/devicetree/bindings/media/cec-gpio.txt
4524 F:      drivers/media/cec/platform/cec-gpio/
4525
4526 CELL BROADBAND ENGINE ARCHITECTURE
4527 M:      Arnd Bergmann <arnd@arndb.de>
4528 L:      linuxppc-dev@lists.ozlabs.org
4529 S:      Supported
4530 W:      http://www.ibm.com/developerworks/power/cell/
4531 F:      arch/powerpc/include/asm/cell*.h
4532 F:      arch/powerpc/include/asm/spu*.h
4533 F:      arch/powerpc/include/uapi/asm/spu*.h
4534 F:      arch/powerpc/platforms/cell/
4535
4536 CELLWISE CW2015 BATTERY DRIVER
4537 M:      Tobias Schrammm <t.schramm@manjaro.org>
4538 S:      Maintained
4539 F:      Documentation/devicetree/bindings/power/supply/cw2015_battery.yaml
4540 F:      drivers/power/supply/cw2015_battery.c
4541
4542 CEPH COMMON CODE (LIBCEPH)
4543 M:      Ilya Dryomov <idryomov@gmail.com>
4544 M:      Jeff Layton <jlayton@kernel.org>
4545 M:      Xiubo Li <xiubli@redhat.com>
4546 L:      ceph-devel@vger.kernel.org
4547 S:      Supported
4548 W:      http://ceph.com/
4549 T:      git git://github.com/ceph/ceph-client.git
4550 F:      include/linux/ceph/
4551 F:      include/linux/crush/
4552 F:      net/ceph/
4553
4554 CEPH DISTRIBUTED FILE SYSTEM CLIENT (CEPH)
4555 M:      Jeff Layton <jlayton@kernel.org>
4556 M:      Xiubo Li <xiubli@redhat.com>
4557 M:      Ilya Dryomov <idryomov@gmail.com>
4558 L:      ceph-devel@vger.kernel.org
4559 S:      Supported
4560 W:      http://ceph.com/
4561 T:      git git://github.com/ceph/ceph-client.git
4562 F:      Documentation/filesystems/ceph.rst
4563 F:      fs/ceph/
4564
4565 CERTIFICATE HANDLING
4566 M:      David Howells <dhowells@redhat.com>
4567 M:      David Woodhouse <dwmw2@infradead.org>
4568 L:      keyrings@vger.kernel.org
4569 S:      Maintained
4570 F:      Documentation/admin-guide/module-signing.rst
4571 F:      certs/
4572 F:      scripts/sign-file.c
4573
4574 CFAG12864B LCD DRIVER
4575 M:      Miguel Ojeda <ojeda@kernel.org>
4576 S:      Maintained
4577 F:      drivers/auxdisplay/cfag12864b.c
4578 F:      include/linux/cfag12864b.h
4579
4580 CFAG12864BFB LCD FRAMEBUFFER DRIVER
4581 M:      Miguel Ojeda <ojeda@kernel.org>
4582 S:      Maintained
4583 F:      drivers/auxdisplay/cfag12864bfb.c
4584 F:      include/linux/cfag12864b.h
4585
4586 CHAR and MISC DRIVERS
4587 M:      Arnd Bergmann <arnd@arndb.de>
4588 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4589 S:      Supported
4590 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
4591 F:      drivers/char/
4592 F:      drivers/misc/
4593 F:      include/linux/miscdevice.h
4594 X:      drivers/char/agp/
4595 X:      drivers/char/hw_random/
4596 X:      drivers/char/ipmi/
4597 X:      drivers/char/random.c
4598 X:      drivers/char/tpm/
4599
4600 CHECKPATCH
4601 M:      Andy Whitcroft <apw@canonical.com>
4602 M:      Joe Perches <joe@perches.com>
4603 R:      Dwaipayan Ray <dwaipayanray1@gmail.com>
4604 R:      Lukas Bulwahn <lukas.bulwahn@gmail.com>
4605 S:      Maintained
4606 F:      scripts/checkpatch.pl
4607
4608 CHECKPATCH DOCUMENTATION
4609 M:      Dwaipayan Ray <dwaipayanray1@gmail.com>
4610 M:      Lukas Bulwahn <lukas.bulwahn@gmail.com>
4611 R:      Joe Perches <joe@perches.com>
4612 S:      Maintained
4613 F:      Documentation/dev-tools/checkpatch.rst
4614
4615 CHINESE DOCUMENTATION
4616 M:      Alex Shi <alexs@kernel.org>
4617 S:      Maintained
4618 F:      Documentation/translations/zh_CN/
4619
4620 CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
4621 M:      Peter Chen <peter.chen@kernel.org>
4622 L:      linux-usb@vger.kernel.org
4623 S:      Maintained
4624 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4625 F:      drivers/usb/chipidea/
4626
4627 CHIPONE ICN8318 I2C TOUCHSCREEN DRIVER
4628 M:      Hans de Goede <hdegoede@redhat.com>
4629 L:      linux-input@vger.kernel.org
4630 S:      Maintained
4631 F:      Documentation/devicetree/bindings/input/touchscreen/chipone,icn8318.yaml
4632 F:      drivers/input/touchscreen/chipone_icn8318.c
4633
4634 CHIPONE ICN8505 I2C TOUCHSCREEN DRIVER
4635 M:      Hans de Goede <hdegoede@redhat.com>
4636 L:      linux-input@vger.kernel.org
4637 S:      Maintained
4638 F:      drivers/input/touchscreen/chipone_icn8505.c
4639
4640 CHROME HARDWARE PLATFORM SUPPORT
4641 M:      Benson Leung <bleung@chromium.org>
4642 S:      Maintained
4643 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chrome-platform/linux.git
4644 F:      drivers/platform/chrome/
4645
4646 CHROMEOS EC CODEC DRIVER
4647 M:      Cheng-Yi Chiang <cychiang@chromium.org>
4648 M:      Tzung-Bi Shih <tzungbi@google.com>
4649 R:      Guenter Roeck <groeck@chromium.org>
4650 S:      Maintained
4651 F:      Documentation/devicetree/bindings/sound/google,cros-ec-codec.yaml
4652 F:      sound/soc/codecs/cros_ec_codec.*
4653
4654 CHROMEOS EC SUBDRIVERS
4655 M:      Benson Leung <bleung@chromium.org>
4656 R:      Guenter Roeck <groeck@chromium.org>
4657 S:      Maintained
4658 F:      drivers/power/supply/cros_usbpd-charger.c
4659 N:      cros_ec
4660 N:      cros-ec
4661
4662 CHROMEOS EC USB TYPE-C DRIVER
4663 M:      Prashant Malani <pmalani@chromium.org>
4664 S:      Maintained
4665 F:      drivers/platform/chrome/cros_ec_typec.c
4666
4667 CHROMEOS EC USB PD NOTIFY DRIVER
4668 M:      Prashant Malani <pmalani@chromium.org>
4669 S:      Maintained
4670 F:      drivers/platform/chrome/cros_usbpd_notify.c
4671 F:      include/linux/platform_data/cros_usbpd_notify.h
4672
4673 CHRONTEL CH7322 CEC DRIVER
4674 M:      Joe Tessler <jrt@google.com>
4675 L:      linux-media@vger.kernel.org
4676 S:      Maintained
4677 T:      git git://linuxtv.org/media_tree.git
4678 F:      Documentation/devicetree/bindings/media/i2c/chrontel,ch7322.yaml
4679 F:      drivers/media/cec/i2c/ch7322.c
4680
4681 CIRRUS LOGIC AUDIO CODEC DRIVERS
4682 M:      James Schulman <james.schulman@cirrus.com>
4683 M:      David Rhodes <david.rhodes@cirrus.com>
4684 M:      Lucas Tanure <tanureal@opensource.cirrus.com>
4685 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4686 L:      patches@opensource.cirrus.com
4687 S:      Maintained
4688 F:      Documentation/devicetree/bindings/sound/cirrus,cs*
4689 F:      sound/pci/hda/cs*
4690 F:      sound/soc/codecs/cs*
4691
4692 CIRRUS LOGIC DSP FIRMWARE DRIVER
4693 M:      Simon Trimmer <simont@opensource.cirrus.com>
4694 M:      Charles Keepax <ckeepax@opensource.cirrus.com>
4695 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4696 L:      patches@opensource.cirrus.com
4697 S:      Supported
4698 W:      https://github.com/CirrusLogic/linux-drivers/wiki
4699 T:      git https://github.com/CirrusLogic/linux-drivers.git
4700 F:      drivers/firmware/cirrus/*
4701 F:      include/linux/firmware/cirrus/*
4702
4703 CIRRUS LOGIC EP93XX ETHERNET DRIVER
4704 M:      Hartley Sweeten <hsweeten@visionengravers.com>
4705 L:      netdev@vger.kernel.org
4706 S:      Maintained
4707 F:      drivers/net/ethernet/cirrus/ep93xx_eth.c
4708
4709 CIRRUS LOGIC LOCHNAGAR DRIVER
4710 M:      Charles Keepax <ckeepax@opensource.cirrus.com>
4711 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4712 L:      patches@opensource.cirrus.com
4713 S:      Supported
4714 F:      Documentation/devicetree/bindings/clock/cirrus,lochnagar.yaml
4715 F:      Documentation/devicetree/bindings/hwmon/cirrus,lochnagar.yaml
4716 F:      Documentation/devicetree/bindings/mfd/cirrus,lochnagar.yaml
4717 F:      Documentation/devicetree/bindings/pinctrl/cirrus,lochnagar.yaml
4718 F:      Documentation/devicetree/bindings/sound/cirrus,lochnagar.yaml
4719 F:      Documentation/hwmon/lochnagar.rst
4720 F:      drivers/clk/clk-lochnagar.c
4721 F:      drivers/hwmon/lochnagar-hwmon.c
4722 F:      drivers/mfd/lochnagar-i2c.c
4723 F:      drivers/pinctrl/cirrus/pinctrl-lochnagar.c
4724 F:      drivers/regulator/lochnagar-regulator.c
4725 F:      include/dt-bindings/clk/lochnagar.h
4726 F:      include/dt-bindings/pinctrl/lochnagar.h
4727 F:      include/linux/mfd/lochnagar*
4728 F:      sound/soc/codecs/lochnagar-sc.c
4729
4730 CIRRUS LOGIC MADERA CODEC DRIVERS
4731 M:      Charles Keepax <ckeepax@opensource.cirrus.com>
4732 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4733 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4734 L:      patches@opensource.cirrus.com
4735 S:      Supported
4736 W:      https://github.com/CirrusLogic/linux-drivers/wiki
4737 T:      git https://github.com/CirrusLogic/linux-drivers.git
4738 F:      Documentation/devicetree/bindings/mfd/cirrus,madera.yaml
4739 F:      Documentation/devicetree/bindings/pinctrl/cirrus,madera.yaml
4740 F:      Documentation/devicetree/bindings/sound/cirrus,madera.yaml
4741 F:      drivers/gpio/gpio-madera*
4742 F:      drivers/irqchip/irq-madera*
4743 F:      drivers/mfd/cs47l*
4744 F:      drivers/mfd/madera*
4745 F:      drivers/pinctrl/cirrus/*
4746 F:      include/dt-bindings/sound/madera*
4747 F:      include/linux/irqchip/irq-madera*
4748 F:      include/linux/mfd/madera/*
4749 F:      include/sound/madera*
4750 F:      sound/soc/codecs/cs47l*
4751 F:      sound/soc/codecs/madera*
4752
4753 CISCO FCOE HBA DRIVER
4754 M:      Satish Kharat <satishkh@cisco.com>
4755 M:      Sesidhar Baddela <sebaddel@cisco.com>
4756 M:      Karan Tilak Kumar <kartilak@cisco.com>
4757 L:      linux-scsi@vger.kernel.org
4758 S:      Supported
4759 F:      drivers/scsi/fnic/
4760
4761 CISCO SCSI HBA DRIVER
4762 M:      Karan Tilak Kumar <kartilak@cisco.com>
4763 M:      Sesidhar Baddela <sebaddel@cisco.com>
4764 L:      linux-scsi@vger.kernel.org
4765 S:      Supported
4766 F:      drivers/scsi/snic/
4767
4768 CISCO VIC ETHERNET NIC DRIVER
4769 M:      Christian Benvenuti <benve@cisco.com>
4770 M:      Govindarajulu Varadarajan <_govind@gmx.com>
4771 S:      Supported
4772 F:      drivers/net/ethernet/cisco/enic/
4773
4774 CISCO VIC LOW LATENCY NIC DRIVER
4775 M:      Christian Benvenuti <benve@cisco.com>
4776 M:      Nelson Escobar <neescoba@cisco.com>
4777 S:      Supported
4778 F:      drivers/infiniband/hw/usnic/
4779
4780 CLANG-FORMAT FILE
4781 M:      Miguel Ojeda <ojeda@kernel.org>
4782 S:      Maintained
4783 F:      .clang-format
4784
4785 CLANG/LLVM BUILD SUPPORT
4786 M:      Nathan Chancellor <nathan@kernel.org>
4787 M:      Nick Desaulniers <ndesaulniers@google.com>
4788 L:      llvm@lists.linux.dev
4789 S:      Supported
4790 W:      https://clangbuiltlinux.github.io/
4791 B:      https://github.com/ClangBuiltLinux/linux/issues
4792 C:      irc://irc.libera.chat/clangbuiltlinux
4793 F:      Documentation/kbuild/llvm.rst
4794 F:      include/linux/compiler-clang.h
4795 F:      scripts/Makefile.clang
4796 F:      scripts/clang-tools/
4797 K:      \b(?i:clang|llvm)\b
4798
4799 CLANG CONTROL FLOW INTEGRITY SUPPORT
4800 M:      Sami Tolvanen <samitolvanen@google.com>
4801 M:      Kees Cook <keescook@chromium.org>
4802 R:      Nathan Chancellor <nathan@kernel.org>
4803 R:      Nick Desaulniers <ndesaulniers@google.com>
4804 L:      llvm@lists.linux.dev
4805 S:      Supported
4806 B:      https://github.com/ClangBuiltLinux/linux/issues
4807 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/clang/features
4808 F:      include/linux/cfi.h
4809 F:      kernel/cfi.c
4810
4811 CLK API
4812 M:      Russell King <linux@armlinux.org.uk>
4813 L:      linux-clk@vger.kernel.org
4814 S:      Maintained
4815 F:      include/linux/clk.h
4816
4817 CLOCKSOURCE, CLOCKEVENT DRIVERS
4818 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4819 M:      Thomas Gleixner <tglx@linutronix.de>
4820 L:      linux-kernel@vger.kernel.org
4821 S:      Supported
4822 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
4823 F:      Documentation/devicetree/bindings/timer/
4824 F:      drivers/clocksource/
4825
4826 CMPC ACPI DRIVER
4827 M:      Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
4828 M:      Daniel Oliveira Nascimento <don@syst.com.br>
4829 L:      platform-driver-x86@vger.kernel.org
4830 S:      Supported
4831 F:      drivers/platform/x86/classmate-laptop.c
4832
4833 COBALT MEDIA DRIVER
4834 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
4835 L:      linux-media@vger.kernel.org
4836 S:      Supported
4837 W:      https://linuxtv.org
4838 T:      git git://linuxtv.org/media_tree.git
4839 F:      drivers/media/pci/cobalt/
4840
4841 COCCINELLE/Semantic Patches (SmPL)
4842 M:      Julia Lawall <Julia.Lawall@inria.fr>
4843 M:      Nicolas Palix <nicolas.palix@imag.fr>
4844 L:      cocci@inria.fr (moderated for non-subscribers)
4845 S:      Supported
4846 W:      https://coccinelle.gitlabpages.inria.fr/website/
4847 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jlawall/linux.git
4848 F:      Documentation/dev-tools/coccinelle.rst
4849 F:      scripts/coccicheck
4850 F:      scripts/coccinelle/
4851
4852 CODA FILE SYSTEM
4853 M:      Jan Harkes <jaharkes@cs.cmu.edu>
4854 M:      coda@cs.cmu.edu
4855 L:      codalist@coda.cs.cmu.edu
4856 S:      Maintained
4857 W:      http://www.coda.cs.cmu.edu/
4858 F:      Documentation/filesystems/coda.rst
4859 F:      fs/coda/
4860 F:      include/linux/coda*.h
4861 F:      include/uapi/linux/coda*.h
4862
4863 CODA V4L2 MEM2MEM DRIVER
4864 M:      Philipp Zabel <p.zabel@pengutronix.de>
4865 L:      linux-media@vger.kernel.org
4866 S:      Maintained
4867 F:      Documentation/devicetree/bindings/media/coda.yaml
4868 F:      drivers/media/platform/chips-media/
4869
4870 CODE OF CONDUCT
4871 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4872 S:      Supported
4873 F:      Documentation/process/code-of-conduct-interpretation.rst
4874 F:      Documentation/process/code-of-conduct.rst
4875
4876 COMEDI DRIVERS
4877 M:      Ian Abbott <abbotti@mev.co.uk>
4878 M:      H Hartley Sweeten <hsweeten@visionengravers.com>
4879 S:      Odd Fixes
4880 F:      drivers/comedi/
4881 F:      include/linux/comedi/
4882 F:      include/uapi/linux/comedi.h
4883
4884 COMMON CLK FRAMEWORK
4885 M:      Michael Turquette <mturquette@baylibre.com>
4886 M:      Stephen Boyd <sboyd@kernel.org>
4887 L:      linux-clk@vger.kernel.org
4888 S:      Maintained
4889 Q:      http://patchwork.kernel.org/project/linux-clk/list/
4890 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git
4891 F:      Documentation/devicetree/bindings/clock/
4892 F:      drivers/clk/
4893 F:      include/linux/clk-pr*
4894 F:      include/linux/clk/
4895 F:      include/linux/of_clk.h
4896 X:      drivers/clk/clkdev.c
4897
4898 COMMON INTERNET FILE SYSTEM CLIENT (CIFS)
4899 M:      Steve French <sfrench@samba.org>
4900 L:      linux-cifs@vger.kernel.org
4901 L:      samba-technical@lists.samba.org (moderated for non-subscribers)
4902 S:      Supported
4903 W:      http://linux-cifs.samba.org/
4904 T:      git git://git.samba.org/sfrench/cifs-2.6.git
4905 F:      Documentation/admin-guide/cifs/
4906 F:      fs/cifs/
4907 F:      fs/smbfs_common/
4908
4909 COMPACTPCI HOTPLUG CORE
4910 M:      Scott Murray <scott@spiteful.org>
4911 L:      linux-pci@vger.kernel.org
4912 S:      Maintained
4913 F:      drivers/pci/hotplug/cpci_hotplug*
4914
4915 COMPACTPCI HOTPLUG GENERIC DRIVER
4916 M:      Scott Murray <scott@spiteful.org>
4917 L:      linux-pci@vger.kernel.org
4918 S:      Maintained
4919 F:      drivers/pci/hotplug/cpcihp_generic.c
4920
4921 COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
4922 M:      Scott Murray <scott@spiteful.org>
4923 L:      linux-pci@vger.kernel.org
4924 S:      Maintained
4925 F:      drivers/pci/hotplug/cpcihp_zt5550.*
4926
4927 COMPAL LAPTOP SUPPORT
4928 M:      Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
4929 L:      platform-driver-x86@vger.kernel.org
4930 S:      Maintained
4931 F:      drivers/platform/x86/compal-laptop.c
4932
4933 COMPILER ATTRIBUTES
4934 M:      Miguel Ojeda <ojeda@kernel.org>
4935 R:      Nick Desaulniers <ndesaulniers@google.com>
4936 S:      Maintained
4937 F:      include/linux/compiler_attributes.h
4938
4939 COMPUTE EXPRESS LINK (CXL)
4940 M:      Alison Schofield <alison.schofield@intel.com>
4941 M:      Vishal Verma <vishal.l.verma@intel.com>
4942 M:      Ira Weiny <ira.weiny@intel.com>
4943 M:      Ben Widawsky <ben.widawsky@intel.com>
4944 M:      Dan Williams <dan.j.williams@intel.com>
4945 L:      linux-cxl@vger.kernel.org
4946 S:      Maintained
4947 F:      drivers/cxl/
4948 F:      include/uapi/linux/cxl_mem.h
4949
4950 CONEXANT ACCESSRUNNER USB DRIVER
4951 L:      accessrunner-general@lists.sourceforge.net
4952 S:      Orphan
4953 W:      http://accessrunner.sourceforge.net/
4954 F:      drivers/usb/atm/cxacru.c
4955
4956 CONFIGFS
4957 M:      Joel Becker <jlbec@evilplan.org>
4958 M:      Christoph Hellwig <hch@lst.de>
4959 S:      Supported
4960 T:      git git://git.infradead.org/users/hch/configfs.git
4961 F:      fs/configfs/
4962 F:      include/linux/configfs.h
4963 F:      samples/configfs/
4964
4965 CONSOLE SUBSYSTEM
4966 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4967 S:      Supported
4968 F:      drivers/video/console/
4969 F:      include/linux/console*
4970
4971 CONTEXT TRACKING
4972 M:      Frederic Weisbecker <frederic@kernel.org>
4973 S:      Maintained
4974 F:      kernel/context_tracking.c
4975 F:      include/linux/context_tracking*
4976
4977 CONTROL GROUP (CGROUP)
4978 M:      Tejun Heo <tj@kernel.org>
4979 M:      Zefan Li <lizefan.x@bytedance.com>
4980 M:      Johannes Weiner <hannes@cmpxchg.org>
4981 L:      cgroups@vger.kernel.org
4982 S:      Maintained
4983 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
4984 F:      Documentation/admin-guide/cgroup-v1/
4985 F:      Documentation/admin-guide/cgroup-v2.rst
4986 F:      include/linux/cgroup*
4987 F:      kernel/cgroup/
4988
4989 CONTROL GROUP - BLOCK IO CONTROLLER (BLKIO)
4990 M:      Tejun Heo <tj@kernel.org>
4991 M:      Jens Axboe <axboe@kernel.dk>
4992 L:      cgroups@vger.kernel.org
4993 L:      linux-block@vger.kernel.org
4994 T:      git git://git.kernel.dk/linux-block
4995 F:      Documentation/admin-guide/cgroup-v1/blkio-controller.rst
4996 F:      block/bfq-cgroup.c
4997 F:      block/blk-cgroup.c
4998 F:      block/blk-iolatency.c
4999 F:      block/blk-throttle.c
5000 F:      include/linux/blk-cgroup.h
5001
5002 CONTROL GROUP - CPUSET
5003 M:      Zefan Li <lizefan.x@bytedance.com>
5004 L:      cgroups@vger.kernel.org
5005 S:      Maintained
5006 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
5007 F:      Documentation/admin-guide/cgroup-v1/cpusets.rst
5008 F:      include/linux/cpuset.h
5009 F:      kernel/cgroup/cpuset.c
5010
5011 CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG)
5012 M:      Johannes Weiner <hannes@cmpxchg.org>
5013 M:      Michal Hocko <mhocko@kernel.org>
5014 M:      Roman Gushchin <roman.gushchin@linux.dev>
5015 M:      Shakeel Butt <shakeelb@google.com>
5016 L:      cgroups@vger.kernel.org
5017 L:      linux-mm@kvack.org
5018 S:      Maintained
5019 F:      mm/memcontrol.c
5020 F:      mm/swap_cgroup.c
5021
5022 CORETEMP HARDWARE MONITORING DRIVER
5023 M:      Fenghua Yu <fenghua.yu@intel.com>
5024 L:      linux-hwmon@vger.kernel.org
5025 S:      Maintained
5026 F:      Documentation/hwmon/coretemp.rst
5027 F:      drivers/hwmon/coretemp.c
5028
5029 CORSAIR-CPRO HARDWARE MONITOR DRIVER
5030 M:      Marius Zachmann <mail@mariuszachmann.de>
5031 L:      linux-hwmon@vger.kernel.org
5032 S:      Maintained
5033 F:      drivers/hwmon/corsair-cpro.c
5034
5035 CORSAIR-PSU HARDWARE MONITOR DRIVER
5036 M:      Wilken Gottwalt <wilken.gottwalt@posteo.net>
5037 L:      linux-hwmon@vger.kernel.org
5038 S:      Maintained
5039 F:      Documentation/hwmon/corsair-psu.rst
5040 F:      drivers/hwmon/corsair-psu.c
5041
5042 COSA/SRP SYNC SERIAL DRIVER
5043 M:      Jan "Yenya" Kasprzak <kas@fi.muni.cz>
5044 S:      Maintained
5045 W:      http://www.fi.muni.cz/~kas/cosa/
5046 F:      drivers/net/wan/cosa*
5047
5048 COUNTER SUBSYSTEM
5049 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
5050 L:      linux-iio@vger.kernel.org
5051 S:      Maintained
5052 T:      git git@gitlab.com:vilhelmgray/counter.git
5053 F:      Documentation/ABI/testing/sysfs-bus-counter
5054 F:      Documentation/driver-api/generic-counter.rst
5055 F:      drivers/counter/
5056 F:      include/linux/counter.h
5057 F:      include/uapi/linux/counter.h
5058 F:      tools/counter/
5059
5060 CP2615 I2C DRIVER
5061 M:      Bence Csókás <bence98@sch.bme.hu>
5062 S:      Maintained
5063 F:      drivers/i2c/busses/i2c-cp2615.c
5064
5065 CPMAC ETHERNET DRIVER
5066 M:      Florian Fainelli <f.fainelli@gmail.com>
5067 L:      netdev@vger.kernel.org
5068 S:      Maintained
5069 F:      drivers/net/ethernet/ti/cpmac.c
5070
5071 CPU FREQUENCY DRIVERS - VEXPRESS SPC ARM BIG LITTLE
5072 M:      Viresh Kumar <viresh.kumar@linaro.org>
5073 M:      Sudeep Holla <sudeep.holla@arm.com>
5074 L:      linux-pm@vger.kernel.org
5075 S:      Maintained
5076 W:      http://www.arm.com/products/processors/technologies/biglittleprocessing.php
5077 F:      drivers/cpufreq/vexpress-spc-cpufreq.c
5078
5079 CPU FREQUENCY SCALING FRAMEWORK
5080 M:      "Rafael J. Wysocki" <rafael@kernel.org>
5081 M:      Viresh Kumar <viresh.kumar@linaro.org>
5082 L:      linux-pm@vger.kernel.org
5083 S:      Maintained
5084 B:      https://bugzilla.kernel.org
5085 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
5086 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git (For ARM Updates)
5087 F:      Documentation/admin-guide/pm/cpufreq.rst
5088 F:      Documentation/admin-guide/pm/intel_pstate.rst
5089 F:      Documentation/cpu-freq/
5090 F:      Documentation/devicetree/bindings/cpufreq/
5091 F:      drivers/cpufreq/
5092 F:      include/linux/cpufreq.h
5093 F:      include/linux/sched/cpufreq.h
5094 F:      kernel/sched/cpufreq*.c
5095 F:      tools/testing/selftests/cpufreq/
5096
5097 CPU IDLE TIME MANAGEMENT FRAMEWORK
5098 M:      "Rafael J. Wysocki" <rafael@kernel.org>
5099 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
5100 L:      linux-pm@vger.kernel.org
5101 S:      Maintained
5102 B:      https://bugzilla.kernel.org
5103 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
5104 F:      Documentation/admin-guide/pm/cpuidle.rst
5105 F:      Documentation/driver-api/pm/cpuidle.rst
5106 F:      drivers/cpuidle/
5107 F:      include/linux/cpuidle.h
5108
5109 CPU POWER MONITORING SUBSYSTEM
5110 M:      Thomas Renninger <trenn@suse.com>
5111 M:      Shuah Khan <shuah@kernel.org>
5112 M:      Shuah Khan <skhan@linuxfoundation.org>
5113 L:      linux-pm@vger.kernel.org
5114 S:      Maintained
5115 F:      tools/power/cpupower/
5116
5117 CPUID/MSR DRIVER
5118 M:      "H. Peter Anvin" <hpa@zytor.com>
5119 S:      Maintained
5120 F:      arch/x86/kernel/cpuid.c
5121 F:      arch/x86/kernel/msr.c
5122
5123 CPUIDLE DRIVER - ARM BIG LITTLE
5124 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
5125 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
5126 L:      linux-pm@vger.kernel.org
5127 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5128 S:      Maintained
5129 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
5130 F:      drivers/cpuidle/cpuidle-big_little.c
5131
5132 CPUIDLE DRIVER - ARM EXYNOS
5133 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
5134 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
5135 M:      Kukjin Kim <kgene@kernel.org>
5136 L:      linux-pm@vger.kernel.org
5137 L:      linux-samsung-soc@vger.kernel.org
5138 S:      Supported
5139 F:      arch/arm/mach-exynos/pm.c
5140 F:      drivers/cpuidle/cpuidle-exynos.c
5141 F:      include/linux/platform_data/cpuidle-exynos.h
5142
5143 CPUIDLE DRIVER - ARM PSCI
5144 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
5145 M:      Sudeep Holla <sudeep.holla@arm.com>
5146 L:      linux-pm@vger.kernel.org
5147 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5148 S:      Supported
5149 F:      drivers/cpuidle/cpuidle-psci.c
5150
5151 CPUIDLE DRIVER - ARM PSCI PM DOMAIN
5152 M:      Ulf Hansson <ulf.hansson@linaro.org>
5153 L:      linux-pm@vger.kernel.org
5154 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5155 S:      Supported
5156 F:      drivers/cpuidle/cpuidle-psci.h
5157 F:      drivers/cpuidle/cpuidle-psci-domain.c
5158
5159 CRAMFS FILESYSTEM
5160 M:      Nicolas Pitre <nico@fluxnic.net>
5161 S:      Maintained
5162 F:      Documentation/filesystems/cramfs.rst
5163 F:      fs/cramfs/
5164
5165 CREATIVE SB0540
5166 M:      Bastien Nocera <hadess@hadess.net>
5167 L:      linux-input@vger.kernel.org
5168 S:      Maintained
5169 F:      drivers/hid/hid-creative-sb0540.c
5170
5171 CRYPTO API
5172 M:      Herbert Xu <herbert@gondor.apana.org.au>
5173 M:      "David S. Miller" <davem@davemloft.net>
5174 L:      linux-crypto@vger.kernel.org
5175 S:      Maintained
5176 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
5177 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
5178 F:      Documentation/crypto/
5179 F:      Documentation/devicetree/bindings/crypto/
5180 F:      arch/*/crypto/
5181 F:      crypto/
5182 F:      drivers/crypto/
5183 F:      include/crypto/
5184 F:      include/linux/crypto*
5185 F:      lib/crypto/
5186
5187 CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
5188 M:      Neil Horman <nhorman@tuxdriver.com>
5189 L:      linux-crypto@vger.kernel.org
5190 S:      Maintained
5191 F:      crypto/ansi_cprng.c
5192 F:      crypto/rng.c
5193
5194 CS3308 MEDIA DRIVER
5195 M:      Hans Verkuil <hverkuil@xs4all.nl>
5196 L:      linux-media@vger.kernel.org
5197 S:      Odd Fixes
5198 W:      http://linuxtv.org
5199 T:      git git://linuxtv.org/media_tree.git
5200 F:      drivers/media/i2c/cs3308.c
5201
5202 CS5535 Audio ALSA driver
5203 M:      Jaya Kumar <jayakumar.alsa@gmail.com>
5204 S:      Maintained
5205 F:      sound/pci/cs5535audio/
5206
5207 CSI DRIVERS FOR ALLWINNER V3s
5208 M:      Yong Deng <yong.deng@magewell.com>
5209 L:      linux-media@vger.kernel.org
5210 S:      Maintained
5211 T:      git git://linuxtv.org/media_tree.git
5212 F:      Documentation/devicetree/bindings/media/allwinner,sun6i-a31-csi.yaml
5213 F:      drivers/media/platform/sunxi/sun6i-csi/
5214
5215 CW1200 WLAN driver
5216 M:      Solomon Peachy <pizza@shaftnet.org>
5217 S:      Maintained
5218 F:      drivers/net/wireless/st/cw1200/
5219
5220 CX18 VIDEO4LINUX DRIVER
5221 M:      Andy Walls <awalls@md.metrocast.net>
5222 L:      linux-media@vger.kernel.org
5223 S:      Maintained
5224 W:      https://linuxtv.org
5225 T:      git git://linuxtv.org/media_tree.git
5226 F:      drivers/media/pci/cx18/
5227 F:      include/uapi/linux/ivtv*
5228
5229 CX2341X MPEG ENCODER HELPER MODULE
5230 M:      Hans Verkuil <hverkuil@xs4all.nl>
5231 L:      linux-media@vger.kernel.org
5232 S:      Maintained
5233 W:      https://linuxtv.org
5234 T:      git git://linuxtv.org/media_tree.git
5235 F:      drivers/media/common/cx2341x*
5236 F:      include/media/drv-intf/cx2341x.h
5237
5238 CX24120 MEDIA DRIVER
5239 M:      Jemma Denson <jdenson@gmail.com>
5240 M:      Patrick Boettcher <patrick.boettcher@posteo.de>
5241 L:      linux-media@vger.kernel.org
5242 S:      Maintained
5243 W:      https://linuxtv.org
5244 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5245 F:      drivers/media/dvb-frontends/cx24120*
5246
5247 CX88 VIDEO4LINUX DRIVER
5248 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
5249 L:      linux-media@vger.kernel.org
5250 S:      Odd fixes
5251 W:      https://linuxtv.org
5252 T:      git git://linuxtv.org/media_tree.git
5253 F:      Documentation/driver-api/media/drivers/cx88*
5254 F:      drivers/media/pci/cx88/
5255
5256 CXD2820R MEDIA DRIVER
5257 M:      Antti Palosaari <crope@iki.fi>
5258 L:      linux-media@vger.kernel.org
5259 S:      Maintained
5260 W:      https://linuxtv.org
5261 W:      http://palosaari.fi/linux/
5262 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5263 T:      git git://linuxtv.org/anttip/media_tree.git
5264 F:      drivers/media/dvb-frontends/cxd2820r*
5265
5266 CXGB3 ETHERNET DRIVER (CXGB3)
5267 M:      Raju Rangoju <rajur@chelsio.com>
5268 L:      netdev@vger.kernel.org
5269 S:      Supported
5270 W:      http://www.chelsio.com
5271 F:      drivers/net/ethernet/chelsio/cxgb3/
5272
5273 CXGB3 ISCSI DRIVER (CXGB3I)
5274 M:      Karen Xie <kxie@chelsio.com>
5275 L:      linux-scsi@vger.kernel.org
5276 S:      Supported
5277 W:      http://www.chelsio.com
5278 F:      drivers/scsi/cxgbi/cxgb3i
5279
5280 CXGB4 CRYPTO DRIVER (chcr)
5281 M:      Ayush Sawal <ayush.sawal@chelsio.com>
5282 M:      Vinay Kumar Yadav <vinay.yadav@chelsio.com>
5283 M:      Rohit Maheshwari <rohitm@chelsio.com>
5284 L:      linux-crypto@vger.kernel.org
5285 S:      Supported
5286 W:      http://www.chelsio.com
5287 F:      drivers/crypto/chelsio
5288
5289 CXGB4 INLINE CRYPTO DRIVER
5290 M:      Ayush Sawal <ayush.sawal@chelsio.com>
5291 M:      Vinay Kumar Yadav <vinay.yadav@chelsio.com>
5292 M:      Rohit Maheshwari <rohitm@chelsio.com>
5293 L:      netdev@vger.kernel.org
5294 S:      Supported
5295 W:      http://www.chelsio.com
5296 F:      drivers/net/ethernet/chelsio/inline_crypto/
5297
5298 CXGB4 ETHERNET DRIVER (CXGB4)
5299 M:      Raju Rangoju <rajur@chelsio.com>
5300 L:      netdev@vger.kernel.org
5301 S:      Supported
5302 W:      http://www.chelsio.com
5303 F:      drivers/net/ethernet/chelsio/cxgb4/
5304
5305 CXGB4 ISCSI DRIVER (CXGB4I)
5306 M:      Karen Xie <kxie@chelsio.com>
5307 L:      linux-scsi@vger.kernel.org
5308 S:      Supported
5309 W:      http://www.chelsio.com
5310 F:      drivers/scsi/cxgbi/cxgb4i
5311
5312 CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
5313 M:      Potnuri Bharat Teja <bharat@chelsio.com>
5314 L:      linux-rdma@vger.kernel.org
5315 S:      Supported
5316 W:      http://www.openfabrics.org
5317 F:      drivers/infiniband/hw/cxgb4/
5318 F:      include/uapi/rdma/cxgb4-abi.h
5319
5320 CXGB4VF ETHERNET DRIVER (CXGB4VF)
5321 M:      Raju Rangoju <rajur@chelsio.com>
5322 L:      netdev@vger.kernel.org
5323 S:      Supported
5324 W:      http://www.chelsio.com
5325 F:      drivers/net/ethernet/chelsio/cxgb4vf/
5326
5327 CXL (IBM Coherent Accelerator Processor Interface CAPI) DRIVER
5328 M:      Frederic Barrat <fbarrat@linux.ibm.com>
5329 M:      Andrew Donnellan <ajd@linux.ibm.com>
5330 L:      linuxppc-dev@lists.ozlabs.org
5331 S:      Supported
5332 F:      Documentation/ABI/testing/sysfs-class-cxl
5333 F:      Documentation/powerpc/cxl.rst
5334 F:      arch/powerpc/platforms/powernv/pci-cxl.c
5335 F:      drivers/misc/cxl/
5336 F:      include/misc/cxl*
5337 F:      include/uapi/misc/cxl.h
5338
5339 CXLFLASH (IBM Coherent Accelerator Processor Interface CAPI Flash) SCSI DRIVER
5340 M:      Manoj N. Kumar <manoj@linux.ibm.com>
5341 M:      Matthew R. Ochs <mrochs@linux.ibm.com>
5342 M:      Uma Krishnan <ukrishn@linux.ibm.com>
5343 L:      linux-scsi@vger.kernel.org
5344 S:      Supported
5345 F:      Documentation/powerpc/cxlflash.rst
5346 F:      drivers/scsi/cxlflash/
5347 F:      include/uapi/scsi/cxlflash_ioctl.h
5348
5349 CYBERPRO FB DRIVER
5350 M:      Russell King <linux@armlinux.org.uk>
5351 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5352 S:      Maintained
5353 W:      http://www.armlinux.org.uk/
5354 F:      drivers/video/fbdev/cyber2000fb.*
5355
5356 CYCLADES PC300 DRIVER
5357 S:      Orphan
5358 F:      drivers/net/wan/pc300*
5359
5360 CYPRESS_FIRMWARE MEDIA DRIVER
5361 M:      Antti Palosaari <crope@iki.fi>
5362 L:      linux-media@vger.kernel.org
5363 S:      Maintained
5364 W:      https://linuxtv.org
5365 W:      http://palosaari.fi/linux/
5366 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5367 T:      git git://linuxtv.org/anttip/media_tree.git
5368 F:      drivers/media/common/cypress_firmware*
5369
5370 CYPRESS CY8CTMA140 TOUCHSCREEN DRIVER
5371 M:      Linus Walleij <linus.walleij@linaro.org>
5372 L:      linux-input@vger.kernel.org
5373 S:      Maintained
5374 F:      drivers/input/touchscreen/cy8ctma140.c
5375
5376 CYPRESS STREETFIGHTER TOUCHKEYS DRIVER
5377 M:      Yassine Oudjana <y.oudjana@protonmail.com>
5378 L:      linux-input@vger.kernel.org
5379 S:      Maintained
5380 F:      Documentation/devicetree/bindings/input/cypress-sf.yaml
5381 F:      drivers/input/keyboard/cypress-sf.c
5382
5383 CYTTSP TOUCHSCREEN DRIVER
5384 M:      Linus Walleij <linus.walleij@linaro.org>
5385 L:      linux-input@vger.kernel.org
5386 S:      Maintained
5387 F:      drivers/input/touchscreen/cyttsp*
5388
5389 D-LINK DIR-685 TOUCHKEYS DRIVER
5390 M:      Linus Walleij <linus.walleij@linaro.org>
5391 L:      linux-input@vger.kernel.org
5392 S:      Supported
5393 F:      drivers/input/keyboard/dlink-dir685-touchkeys.c
5394
5395 DALLAS/MAXIM DS1685-FAMILY REAL TIME CLOCK
5396 M:      Joshua Kinard <kumba@gentoo.org>
5397 S:      Maintained
5398 F:      drivers/rtc/rtc-ds1685.c
5399 F:      include/linux/rtc/ds1685.h
5400
5401 DAMA SLAVE for AX.25
5402 M:      Joerg Reuter <jreuter@yaina.de>
5403 L:      linux-hams@vger.kernel.org
5404 S:      Maintained
5405 W:      http://yaina.de/jreuter/
5406 W:      http://www.qsl.net/dl1bke/
5407 F:      net/ax25/af_ax25.c
5408 F:      net/ax25/ax25_dev.c
5409 F:      net/ax25/ax25_ds_*
5410 F:      net/ax25/ax25_in.c
5411 F:      net/ax25/ax25_out.c
5412 F:      net/ax25/ax25_timer.c
5413 F:      net/ax25/sysctl_net_ax25.c
5414
5415 DATA ACCESS MONITOR
5416 M:      SeongJae Park <sj@kernel.org>
5417 L:      linux-mm@kvack.org
5418 S:      Maintained
5419 F:      Documentation/ABI/testing/sysfs-kernel-mm-damon
5420 F:      Documentation/admin-guide/mm/damon/
5421 F:      Documentation/vm/damon/
5422 F:      include/linux/damon.h
5423 F:      include/trace/events/damon.h
5424 F:      mm/damon/
5425 F:      tools/testing/selftests/damon/
5426
5427 DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
5428 L:      netdev@vger.kernel.org
5429 S:      Orphan
5430 F:      Documentation/networking/device_drivers/ethernet/dec/dmfe.rst
5431 F:      drivers/net/ethernet/dec/tulip/dmfe.c
5432
5433 DC390/AM53C974 SCSI driver
5434 M:      Hannes Reinecke <hare@suse.com>
5435 L:      linux-scsi@vger.kernel.org
5436 S:      Maintained
5437 F:      drivers/scsi/am53c974.c
5438
5439 DC395x SCSI driver
5440 M:      Oliver Neukum <oliver@neukum.org>
5441 M:      Ali Akcaagac <aliakc@web.de>
5442 M:      Jamie Lenehan <lenehan@twibble.org>
5443 L:      dc395x@twibble.org
5444 S:      Maintained
5445 W:      http://twibble.org/dist/dc395x/
5446 W:      http://lists.twibble.org/mailman/listinfo/dc395x/
5447 F:      Documentation/scsi/dc395x.rst
5448 F:      drivers/scsi/dc395x.*
5449
5450 DCCP PROTOCOL
5451 L:      dccp@vger.kernel.org
5452 S:      Orphan
5453 W:      http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
5454 F:      include/linux/dccp.h
5455 F:      include/linux/tfrc.h
5456 F:      include/uapi/linux/dccp.h
5457 F:      net/dccp/
5458
5459 DECnet NETWORK LAYER
5460 L:      linux-decnet-user@lists.sourceforge.net
5461 S:      Orphan
5462 W:      http://linux-decnet.sourceforge.net
5463 F:      Documentation/networking/decnet.rst
5464 F:      net/decnet/
5465
5466 DECSTATION PLATFORM SUPPORT
5467 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
5468 L:      linux-mips@vger.kernel.org
5469 S:      Maintained
5470 W:      http://www.linux-mips.org/wiki/DECstation
5471 F:      arch/mips/dec/
5472 F:      arch/mips/include/asm/dec/
5473 F:      arch/mips/include/asm/mach-dec/
5474
5475 DEFXX FDDI NETWORK DRIVER
5476 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
5477 S:      Maintained
5478 F:      drivers/net/fddi/defxx.*
5479
5480 DEFZA FDDI NETWORK DRIVER
5481 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
5482 S:      Maintained
5483 F:      drivers/net/fddi/defza.*
5484
5485 DEINTERLACE DRIVERS FOR ALLWINNER H3
5486 M:      Jernej Skrabec <jernej.skrabec@gmail.com>
5487 L:      linux-media@vger.kernel.org
5488 S:      Maintained
5489 T:      git git://linuxtv.org/media_tree.git
5490 F:      Documentation/devicetree/bindings/media/allwinner,sun8i-h3-deinterlace.yaml
5491 F:      drivers/media/platform/sunxi/sun8i-di/
5492
5493 DELL LAPTOP DRIVER
5494 M:      Matthew Garrett <mjg59@srcf.ucam.org>
5495 M:      Pali Rohár <pali@kernel.org>
5496 L:      platform-driver-x86@vger.kernel.org
5497 S:      Maintained
5498 F:      drivers/platform/x86/dell/dell-laptop.c
5499
5500 DELL LAPTOP FREEFALL DRIVER
5501 M:      Pali Rohár <pali@kernel.org>
5502 S:      Maintained
5503 F:      drivers/platform/x86/dell/dell-smo8800.c
5504
5505 DELL LAPTOP RBTN DRIVER
5506 M:      Pali Rohár <pali@kernel.org>
5507 S:      Maintained
5508 F:      drivers/platform/x86/dell/dell-rbtn.*
5509
5510 DELL LAPTOP SMM DRIVER
5511 M:      Pali Rohár <pali@kernel.org>
5512 S:      Maintained
5513 F:      Documentation/ABI/obsolete/procfs-i8k
5514 F:      drivers/hwmon/dell-smm-hwmon.c
5515 F:      include/uapi/linux/i8k.h
5516
5517 DELL REMOTE BIOS UPDATE DRIVER
5518 M:      Stuart Hayes <stuart.w.hayes@gmail.com>
5519 L:      platform-driver-x86@vger.kernel.org
5520 S:      Maintained
5521 F:      drivers/platform/x86/dell/dell_rbu.c
5522
5523 DELL SMBIOS DRIVER
5524 M:      Pali Rohár <pali@kernel.org>
5525 L:      Dell.Client.Kernel@dell.com
5526 L:      platform-driver-x86@vger.kernel.org
5527 S:      Maintained
5528 F:      drivers/platform/x86/dell/dell-smbios.*
5529
5530 DELL SMBIOS SMM DRIVER
5531 L:      Dell.Client.Kernel@dell.com
5532 L:      platform-driver-x86@vger.kernel.org
5533 S:      Maintained
5534 F:      drivers/platform/x86/dell/dell-smbios-smm.c
5535
5536 DELL SMBIOS WMI DRIVER
5537 L:      Dell.Client.Kernel@dell.com
5538 L:      platform-driver-x86@vger.kernel.org
5539 S:      Maintained
5540 F:      drivers/platform/x86/dell/dell-smbios-wmi.c
5541 F:      tools/wmi/dell-smbios-example.c
5542
5543 DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
5544 M:      Stuart Hayes <stuart.w.hayes@gmail.com>
5545 L:      platform-driver-x86@vger.kernel.org
5546 S:      Maintained
5547 F:      Documentation/driver-api/dcdbas.rst
5548 F:      drivers/platform/x86/dell/dcdbas.*
5549
5550 DELL WMI DESCRIPTOR DRIVER
5551 L:      Dell.Client.Kernel@dell.com
5552 S:      Maintained
5553 F:      drivers/platform/x86/dell/dell-wmi-descriptor.c
5554
5555 DELL WMI SYSMAN DRIVER
5556 M:      Divya Bharathi <divya.bharathi@dell.com>
5557 M:      Prasanth Ksr <prasanth.ksr@dell.com>
5558 L:      Dell.Client.Kernel@dell.com
5559 L:      platform-driver-x86@vger.kernel.org
5560 S:      Maintained
5561 F:      Documentation/ABI/testing/sysfs-class-firmware-attributes
5562 F:      drivers/platform/x86/dell/dell-wmi-sysman/
5563
5564 DELL WMI NOTIFICATIONS DRIVER
5565 M:      Matthew Garrett <mjg59@srcf.ucam.org>
5566 M:      Pali Rohár <pali@kernel.org>
5567 S:      Maintained
5568 F:      drivers/platform/x86/dell/dell-wmi-base.c
5569
5570 DELL WMI HARDWARE PRIVACY SUPPORT
5571 M:      Perry Yuan <Perry.Yuan@dell.com>
5572 L:      Dell.Client.Kernel@dell.com
5573 L:      platform-driver-x86@vger.kernel.org
5574 S:      Maintained
5575 F:      drivers/platform/x86/dell/dell-wmi-privacy.c
5576
5577 DELTA ST MEDIA DRIVER
5578 M:      Hugues Fruchet <hugues.fruchet@foss.st.com>
5579 L:      linux-media@vger.kernel.org
5580 S:      Supported
5581 W:      https://linuxtv.org
5582 T:      git git://linuxtv.org/media_tree.git
5583 F:      drivers/media/platform/st/sti/delta
5584
5585 DELTA AHE-50DC FAN CONTROL MODULE DRIVER
5586 M:      Zev Weiss <zev@bewilderbeest.net>
5587 L:      linux-hwmon@vger.kernel.org
5588 S:      Maintained
5589 F:      drivers/hwmon/pmbus/delta-ahe50dc-fan.c
5590
5591 DELTA DPS920AB PSU DRIVER
5592 M:      Robert Marko <robert.marko@sartura.hr>
5593 L:      linux-hwmon@vger.kernel.org
5594 S:      Maintained
5595 F:      Documentation/hwmon/dps920ab.rst
5596 F:      drivers/hwmon/pmbus/dps920ab.c
5597
5598 DELTA NETWORKS TN48M CPLD DRIVERS
5599 M:      Robert Marko <robert.marko@sartura.hr>
5600 S:      Maintained
5601 F:      Documentation/devicetree/bindings/gpio/delta,tn48m-gpio.yaml
5602 F:      Documentation/devicetree/bindings/mfd/delta,tn48m-cpld.yaml
5603 F:      Documentation/devicetree/bindings/reset/delta,tn48m-reset.yaml
5604 F:      drivers/gpio/gpio-tn48m.c
5605 F:      include/dt-bindings/reset/delta,tn48m-reset.h
5606
5607 DENALI NAND DRIVER
5608 L:      linux-mtd@lists.infradead.org
5609 S:      Orphan
5610 F:      drivers/mtd/nand/raw/denali*
5611
5612 DESIGNWARE EDMA CORE IP DRIVER
5613 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
5614 L:      dmaengine@vger.kernel.org
5615 S:      Maintained
5616 F:      drivers/dma/dw-edma/
5617 F:      include/linux/dma/edma.h
5618
5619 DESIGNWARE XDATA IP DRIVER
5620 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
5621 L:      linux-pci@vger.kernel.org
5622 S:      Maintained
5623 F:      Documentation/misc-devices/dw-xdata-pcie.rst
5624 F:      drivers/misc/dw-xdata-pcie.c
5625
5626 DESIGNWARE USB2 DRD IP DRIVER
5627 M:      Minas Harutyunyan <hminas@synopsys.com>
5628 L:      linux-usb@vger.kernel.org
5629 S:      Maintained
5630 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
5631 F:      drivers/usb/dwc2/
5632
5633 DESIGNWARE USB3 DRD IP DRIVER
5634 M:      Felipe Balbi <balbi@kernel.org>
5635 L:      linux-usb@vger.kernel.org
5636 S:      Maintained
5637 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
5638 F:      drivers/usb/dwc3/
5639
5640 DEVANTECH SRF ULTRASONIC RANGER IIO DRIVER
5641 M:      Andreas Klinger <ak@it-klinger.de>
5642 L:      linux-iio@vger.kernel.org
5643 S:      Maintained
5644 F:      Documentation/ABI/testing/sysfs-bus-iio-distance-srf08
5645 F:      drivers/iio/proximity/srf*.c
5646
5647 DEVICE COREDUMP (DEV_COREDUMP)
5648 M:      Johannes Berg <johannes@sipsolutions.net>
5649 L:      linux-kernel@vger.kernel.org
5650 S:      Maintained
5651 F:      drivers/base/devcoredump.c
5652 F:      include/linux/devcoredump.h
5653
5654 DEVICE DEPENDENCY HELPER SCRIPT
5655 M:      Saravana Kannan <saravanak@google.com>
5656 L:      linux-kernel@vger.kernel.org
5657 S:      Maintained
5658 F:      scripts/dev-needs.sh
5659
5660 DEVICE DIRECT ACCESS (DAX)
5661 M:      Dan Williams <dan.j.williams@intel.com>
5662 M:      Vishal Verma <vishal.l.verma@intel.com>
5663 M:      Dave Jiang <dave.jiang@intel.com>
5664 L:      nvdimm@lists.linux.dev
5665 S:      Supported
5666 F:      drivers/dax/
5667
5668 DEVICE FREQUENCY (DEVFREQ)
5669 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
5670 M:      Kyungmin Park <kyungmin.park@samsung.com>
5671 M:      Chanwoo Choi <cw00.choi@samsung.com>
5672 L:      linux-pm@vger.kernel.org
5673 S:      Maintained
5674 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
5675 F:      Documentation/devicetree/bindings/devfreq/
5676 F:      drivers/devfreq/
5677 F:      include/linux/devfreq.h
5678 F:      include/trace/events/devfreq.h
5679
5680 DEVICE FREQUENCY EVENT (DEVFREQ-EVENT)
5681 M:      Chanwoo Choi <cw00.choi@samsung.com>
5682 L:      linux-pm@vger.kernel.org
5683 S:      Supported
5684 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
5685 F:      Documentation/devicetree/bindings/devfreq/event/
5686 F:      drivers/devfreq/devfreq-event.c
5687 F:      drivers/devfreq/event/
5688 F:      include/dt-bindings/pmu/exynos_ppmu.h
5689 F:      include/linux/devfreq-event.h
5690
5691 DEVICE NUMBER REGISTRY
5692 M:      Torben Mathiasen <device@lanana.org>
5693 S:      Maintained
5694 W:      http://lanana.org/docs/device-list/index.html
5695
5696 DEVICE RESOURCE MANAGEMENT HELPERS
5697 M:      Hans de Goede <hdegoede@redhat.com>
5698 R:      Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
5699 S:      Maintained
5700 F:      include/linux/devm-helpers.h
5701
5702 DEVICE-MAPPER  (LVM)
5703 M:      Alasdair Kergon <agk@redhat.com>
5704 M:      Mike Snitzer <snitzer@kernel.org>
5705 M:      dm-devel@redhat.com
5706 L:      dm-devel@redhat.com
5707 S:      Maintained
5708 W:      http://sources.redhat.com/dm
5709 Q:      http://patchwork.kernel.org/project/dm-devel/list/
5710 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git
5711 T:      quilt http://people.redhat.com/agk/patches/linux/editing/
5712 F:      Documentation/admin-guide/device-mapper/
5713 F:      drivers/md/Kconfig
5714 F:      drivers/md/Makefile
5715 F:      drivers/md/dm*
5716 F:      drivers/md/persistent-data/
5717 F:      include/linux/device-mapper.h
5718 F:      include/linux/dm-*.h
5719 F:      include/uapi/linux/dm-*.h
5720
5721 DEVLINK
5722 M:      Jiri Pirko <jiri@nvidia.com>
5723 L:      netdev@vger.kernel.org
5724 S:      Supported
5725 F:      Documentation/networking/devlink
5726 F:      include/net/devlink.h
5727 F:      include/uapi/linux/devlink.h
5728 F:      net/core/devlink.c
5729
5730 DH ELECTRONICS IMX6 DHCOM BOARD SUPPORT
5731 M:      Christoph Niedermaier <cniedermaier@dh-electronics.com>
5732 L:      kernel@dh-electronics.com
5733 S:      Maintained
5734 F:      arch/arm/boot/dts/imx6*-dhcom-*
5735
5736 DH ELECTRONICS STM32MP1 DHCOM/DHCOR BOARD SUPPORT
5737 M:      Marek Vasut <marex@denx.de>
5738 L:      kernel@dh-electronics.com
5739 S:      Maintained
5740 F:      arch/arm/boot/dts/stm32mp1*-dhcom-*
5741 F:      arch/arm/boot/dts/stm32mp1*-dhcor-*
5742
5743 DIALOG SEMICONDUCTOR DRIVERS
5744 M:      Support Opensource <support.opensource@diasemi.com>
5745 S:      Supported
5746 W:      http://www.dialog-semiconductor.com/products
5747 F:      Documentation/devicetree/bindings/input/da90??-onkey.txt
5748 F:      Documentation/devicetree/bindings/input/dlg,da72??.txt
5749 F:      Documentation/devicetree/bindings/mfd/da90*.txt
5750 F:      Documentation/devicetree/bindings/regulator/dlg,da9*.yaml
5751 F:      Documentation/devicetree/bindings/regulator/da92*.txt
5752 F:      Documentation/devicetree/bindings/regulator/slg51000.txt
5753 F:      Documentation/devicetree/bindings/sound/da[79]*.txt
5754 F:      Documentation/devicetree/bindings/thermal/da90??-thermal.txt
5755 F:      Documentation/devicetree/bindings/watchdog/da90??-wdt.txt
5756 F:      Documentation/hwmon/da90??.rst
5757 F:      drivers/gpio/gpio-da90??.c
5758 F:      drivers/hwmon/da90??-hwmon.c
5759 F:      drivers/iio/adc/da91??-*.c
5760 F:      drivers/input/misc/da72??.[ch]
5761 F:      drivers/input/misc/da90??_onkey.c
5762 F:      drivers/input/touchscreen/da9052_tsi.c
5763 F:      drivers/leds/leds-da90??.c
5764 F:      drivers/mfd/da903x.c
5765 F:      drivers/mfd/da90??-*.c
5766 F:      drivers/mfd/da91??-*.c
5767 F:      drivers/pinctrl/pinctrl-da90??.c
5768 F:      drivers/power/supply/da9052-battery.c
5769 F:      drivers/power/supply/da91??-*.c
5770 F:      drivers/regulator/da9???-regulator.[ch]
5771 F:      drivers/regulator/slg51000-regulator.[ch]
5772 F:      drivers/rtc/rtc-da90??.c
5773 F:      drivers/thermal/da90??-thermal.c
5774 F:      drivers/video/backlight/da90??_bl.c
5775 F:      drivers/watchdog/da90??_wdt.c
5776 F:      include/dt-bindings/regulator/dlg,da9*-regulator.h
5777 F:      include/linux/mfd/da903x.h
5778 F:      include/linux/mfd/da9052/
5779 F:      include/linux/mfd/da9055/
5780 F:      include/linux/mfd/da9062/
5781 F:      include/linux/mfd/da9063/
5782 F:      include/linux/mfd/da9150/
5783 F:      include/linux/regulator/da9211.h
5784 F:      include/sound/da[79]*.h
5785 F:      sound/soc/codecs/da[79]*.[ch]
5786
5787 DIAMOND SYSTEMS GPIO-MM GPIO DRIVER
5788 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
5789 L:      linux-gpio@vger.kernel.org
5790 S:      Maintained
5791 F:      drivers/gpio/gpio-gpio-mm.c
5792
5793 DIOLAN U2C-12 I2C DRIVER
5794 M:      Guenter Roeck <linux@roeck-us.net>
5795 L:      linux-i2c@vger.kernel.org
5796 S:      Maintained
5797 F:      drivers/i2c/busses/i2c-diolan-u2c.c
5798
5799 DIRECTORY NOTIFICATION (DNOTIFY)
5800 M:      Jan Kara <jack@suse.cz>
5801 R:      Amir Goldstein <amir73il@gmail.com>
5802 L:      linux-fsdevel@vger.kernel.org
5803 S:      Maintained
5804 F:      Documentation/filesystems/dnotify.rst
5805 F:      fs/notify/dnotify/
5806 F:      include/linux/dnotify.h
5807
5808 DISK GEOMETRY AND PARTITION HANDLING
5809 M:      Andries Brouwer <aeb@cwi.nl>
5810 S:      Maintained
5811 W:      http://www.win.tue.nl/~aeb/linux/Large-Disk.html
5812 W:      http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
5813 W:      http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
5814
5815 DISKQUOTA
5816 M:      Jan Kara <jack@suse.com>
5817 S:      Maintained
5818 F:      Documentation/filesystems/quota.rst
5819 F:      fs/quota/
5820 F:      include/linux/quota*.h
5821 F:      include/uapi/linux/quota*.h
5822
5823 DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
5824 M:      Bernie Thompson <bernie@plugable.com>
5825 L:      linux-fbdev@vger.kernel.org
5826 S:      Maintained
5827 W:      http://plugable.com/category/projects/udlfb/
5828 F:      Documentation/fb/udlfb.rst
5829 F:      drivers/video/fbdev/udlfb.c
5830 F:      include/video/udlfb.h
5831
5832 DISTRIBUTED LOCK MANAGER (DLM)
5833 M:      Christine Caulfield <ccaulfie@redhat.com>
5834 M:      David Teigland <teigland@redhat.com>
5835 L:      cluster-devel@redhat.com
5836 S:      Supported
5837 W:      http://sources.redhat.com/cluster/
5838 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/linux-dlm.git
5839 F:      fs/dlm/
5840
5841 DMA BUFFER SHARING FRAMEWORK
5842 M:      Sumit Semwal <sumit.semwal@linaro.org>
5843 M:      Christian König <christian.koenig@amd.com>
5844 L:      linux-media@vger.kernel.org
5845 L:      dri-devel@lists.freedesktop.org
5846 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
5847 S:      Maintained
5848 T:      git git://anongit.freedesktop.org/drm/drm-misc
5849 F:      Documentation/driver-api/dma-buf.rst
5850 F:      drivers/dma-buf/
5851 F:      include/linux/*fence.h
5852 F:      include/linux/dma-buf.h
5853 F:      include/linux/dma-resv.h
5854 K:      \bdma_(?:buf|fence|resv)\b
5855
5856 DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
5857 M:      Vinod Koul <vkoul@kernel.org>
5858 L:      dmaengine@vger.kernel.org
5859 S:      Maintained
5860 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
5861 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vkoul/dmaengine.git
5862 F:      Documentation/devicetree/bindings/dma/
5863 F:      Documentation/driver-api/dmaengine/
5864 F:      drivers/dma/
5865 F:      include/linux/dma/
5866 F:      include/linux/dmaengine.h
5867 F:      include/linux/of_dma.h
5868
5869 DMA MAPPING HELPERS
5870 M:      Christoph Hellwig <hch@lst.de>
5871 M:      Marek Szyprowski <m.szyprowski@samsung.com>
5872 R:      Robin Murphy <robin.murphy@arm.com>
5873 L:      iommu@lists.linux-foundation.org
5874 S:      Supported
5875 W:      http://git.infradead.org/users/hch/dma-mapping.git
5876 T:      git git://git.infradead.org/users/hch/dma-mapping.git
5877 F:      include/asm-generic/dma-mapping.h
5878 F:      include/linux/dma-direct.h
5879 F:      include/linux/dma-mapping.h
5880 F:      include/linux/dma-map-ops.h
5881 F:      kernel/dma/
5882
5883 DMA MAPPING BENCHMARK
5884 M:      Barry Song <song.bao.hua@hisilicon.com>
5885 L:      iommu@lists.linux-foundation.org
5886 F:      kernel/dma/map_benchmark.c
5887 F:      tools/testing/selftests/dma/
5888
5889 DMA-BUF HEAPS FRAMEWORK
5890 M:      Sumit Semwal <sumit.semwal@linaro.org>
5891 R:      Benjamin Gaignard <benjamin.gaignard@collabora.com>
5892 R:      Liam Mark <lmark@codeaurora.org>
5893 R:      Laura Abbott <labbott@redhat.com>
5894 R:      Brian Starkey <Brian.Starkey@arm.com>
5895 R:      John Stultz <john.stultz@linaro.org>
5896 L:      linux-media@vger.kernel.org
5897 L:      dri-devel@lists.freedesktop.org
5898 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
5899 S:      Maintained
5900 T:      git git://anongit.freedesktop.org/drm/drm-misc
5901 F:      drivers/dma-buf/dma-heap.c
5902 F:      drivers/dma-buf/heaps/*
5903 F:      include/linux/dma-heap.h
5904 F:      include/uapi/linux/dma-heap.h
5905
5906 DMC FREQUENCY DRIVER FOR SAMSUNG EXYNOS5422
5907 M:      Lukasz Luba <lukasz.luba@arm.com>
5908 L:      linux-pm@vger.kernel.org
5909 L:      linux-samsung-soc@vger.kernel.org
5910 S:      Maintained
5911 F:      Documentation/devicetree/bindings/memory-controllers/samsung,exynos5422-dmc.yaml
5912 F:      drivers/memory/samsung/exynos5422-dmc.c
5913
5914 DME1737 HARDWARE MONITOR DRIVER
5915 M:      Juerg Haefliger <juergh@gmail.com>
5916 L:      linux-hwmon@vger.kernel.org
5917 S:      Maintained
5918 F:      Documentation/hwmon/dme1737.rst
5919 F:      drivers/hwmon/dme1737.c
5920
5921 DMI/SMBIOS SUPPORT
5922 M:      Jean Delvare <jdelvare@suse.com>
5923 S:      Maintained
5924 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jdelvare/staging.git dmi-for-next
5925 F:      Documentation/ABI/testing/sysfs-firmware-dmi-tables
5926 F:      drivers/firmware/dmi-id.c
5927 F:      drivers/firmware/dmi_scan.c
5928 F:      include/linux/dmi.h
5929
5930 DOCUMENTATION
5931 M:      Jonathan Corbet <corbet@lwn.net>
5932 L:      linux-doc@vger.kernel.org
5933 S:      Maintained
5934 P:      Documentation/doc-guide/maintainer-profile.rst
5935 T:      git git://git.lwn.net/linux.git docs-next
5936 F:      Documentation/
5937 F:      scripts/documentation-file-ref-check
5938 F:      scripts/kernel-doc
5939 F:      scripts/sphinx-pre-install
5940 X:      Documentation/ABI/
5941 X:      Documentation/admin-guide/media/
5942 X:      Documentation/devicetree/
5943 X:      Documentation/driver-api/media/
5944 X:      Documentation/firmware-guide/acpi/
5945 X:      Documentation/i2c/
5946 X:      Documentation/power/
5947 X:      Documentation/spi/
5948 X:      Documentation/userspace-api/media/
5949
5950 DOCUMENTATION REPORTING ISSUES
5951 M:      Thorsten Leemhuis <linux@leemhuis.info>
5952 L:      linux-doc@vger.kernel.org
5953 S:      Maintained
5954 F:      Documentation/admin-guide/reporting-issues.rst
5955
5956 DOCUMENTATION SCRIPTS
5957 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
5958 L:      linux-doc@vger.kernel.org
5959 S:      Maintained
5960 F:      Documentation/sphinx/parse-headers.pl
5961 F:      scripts/documentation-file-ref-check
5962 F:      scripts/sphinx-pre-install
5963
5964 DOCUMENTATION/ITALIAN
5965 M:      Federico Vaga <federico.vaga@vaga.pv.it>
5966 L:      linux-doc@vger.kernel.org
5967 S:      Maintained
5968 F:      Documentation/translations/it_IT
5969
5970 DONGWOON DW9714 LENS VOICE COIL DRIVER
5971 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
5972 L:      linux-media@vger.kernel.org
5973 S:      Maintained
5974 T:      git git://linuxtv.org/media_tree.git
5975 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9714.txt
5976 F:      drivers/media/i2c/dw9714.c
5977
5978 DONGWOON DW9768 LENS VOICE COIL DRIVER
5979 M:      Dongchun Zhu <dongchun.zhu@mediatek.com>
5980 L:      linux-media@vger.kernel.org
5981 S:      Maintained
5982 T:      git git://linuxtv.org/media_tree.git
5983 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9768.yaml
5984 F:      drivers/media/i2c/dw9768.c
5985
5986 DONGWOON DW9807 LENS VOICE COIL DRIVER
5987 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
5988 L:      linux-media@vger.kernel.org
5989 S:      Maintained
5990 T:      git git://linuxtv.org/media_tree.git
5991 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9807-vcm.txt
5992 F:      drivers/media/i2c/dw9807-vcm.c
5993
5994 DOUBLETALK DRIVER
5995 M:      "James R. Van Zandt" <jrv@vanzandt.mv.com>
5996 L:      blinux-list@redhat.com
5997 S:      Maintained
5998 F:      drivers/char/dtlk.c
5999 F:      include/linux/dtlk.h
6000
6001 DPAA2 DATAPATH I/O (DPIO) DRIVER
6002 M:      Roy Pledge <Roy.Pledge@nxp.com>
6003 L:      linux-kernel@vger.kernel.org
6004 S:      Maintained
6005 F:      drivers/soc/fsl/dpio
6006
6007 DPAA2 ETHERNET DRIVER
6008 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
6009 L:      netdev@vger.kernel.org
6010 S:      Maintained
6011 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/ethernet-driver.rst
6012 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/mac-phy-support.rst
6013 F:      drivers/net/ethernet/freescale/dpaa2/Kconfig
6014 F:      drivers/net/ethernet/freescale/dpaa2/Makefile
6015 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-eth*
6016 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-mac*
6017 F:      drivers/net/ethernet/freescale/dpaa2/dpkg.h
6018 F:      drivers/net/ethernet/freescale/dpaa2/dpmac*
6019 F:      drivers/net/ethernet/freescale/dpaa2/dpni*
6020
6021 DPAA2 ETHERNET SWITCH DRIVER
6022 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
6023 L:      netdev@vger.kernel.org
6024 S:      Maintained
6025 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/switch-driver.rst
6026 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-switch*
6027 F:      drivers/net/ethernet/freescale/dpaa2/dpsw*
6028
6029 DPT_I2O SCSI RAID DRIVER
6030 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
6031 L:      linux-scsi@vger.kernel.org
6032 S:      Maintained
6033 W:      http://www.adaptec.com/
6034 F:      drivers/scsi/dpt*
6035 F:      drivers/scsi/dpt/
6036
6037 DRBD DRIVER
6038 M:      Philipp Reisner <philipp.reisner@linbit.com>
6039 M:      Lars Ellenberg <lars.ellenberg@linbit.com>
6040 L:      drbd-dev@lists.linbit.com
6041 S:      Supported
6042 W:      http://www.drbd.org
6043 T:      git git://git.linbit.com/linux-drbd.git
6044 T:      git git://git.linbit.com/drbd-8.4.git
6045 F:      Documentation/admin-guide/blockdev/
6046 F:      drivers/block/drbd/
6047 F:      lib/lru_cache.c
6048
6049 DRIVER COMPONENT FRAMEWORK
6050 L:      dri-devel@lists.freedesktop.org
6051 F:      drivers/base/component.c
6052 F:      include/linux/component.h
6053
6054 DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS
6055 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
6056 R:      "Rafael J. Wysocki" <rafael@kernel.org>
6057 S:      Supported
6058 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
6059 F:      Documentation/core-api/kobject.rst
6060 F:      drivers/base/
6061 F:      fs/debugfs/
6062 F:      fs/sysfs/
6063 F:      include/linux/debugfs.h
6064 F:      include/linux/kobj*
6065 F:      lib/kobj*
6066
6067 DRIVERS FOR OMAP ADAPTIVE VOLTAGE SCALING (AVS)
6068 M:      Nishanth Menon <nm@ti.com>
6069 L:      linux-pm@vger.kernel.org
6070 S:      Maintained
6071 F:      drivers/soc/ti/smartreflex.c
6072 F:      include/linux/power/smartreflex.h
6073
6074 DRM DRIVER FOR ALLWINNER DE2 AND DE3 ENGINE
6075 M:      Maxime Ripard <mripard@kernel.org>
6076 M:      Chen-Yu Tsai <wens@csie.org>
6077 R:      Jernej Skrabec <jernej.skrabec@gmail.com>
6078 L:      dri-devel@lists.freedesktop.org
6079 S:      Supported
6080 T:      git git://anongit.freedesktop.org/drm/drm-misc
6081 F:      drivers/gpu/drm/sun4i/sun8i*
6082
6083 DRM DRIVER FOR ARM PL111 CLCD
6084 M:      Emma Anholt <emma@anholt.net>
6085 S:      Supported
6086 T:      git git://anongit.freedesktop.org/drm/drm-misc
6087 F:      drivers/gpu/drm/pl111/
6088
6089 DRM DRIVER FOR ARM VERSATILE TFT PANELS
6090 M:      Linus Walleij <linus.walleij@linaro.org>
6091 S:      Maintained
6092 T:      git git://anongit.freedesktop.org/drm/drm-misc
6093 F:      Documentation/devicetree/bindings/display/panel/arm,versatile-tft-panel.yaml
6094 F:      drivers/gpu/drm/panel/panel-arm-versatile.c
6095
6096 DRM DRIVER FOR ASPEED BMC GFX
6097 M:      Joel Stanley <joel@jms.id.au>
6098 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
6099 S:      Supported
6100 T:      git git://anongit.freedesktop.org/drm/drm-misc
6101 F:      Documentation/devicetree/bindings/gpu/aspeed-gfx.txt
6102 F:      drivers/gpu/drm/aspeed/
6103
6104 DRM DRIVER FOR AST SERVER GRAPHICS CHIPS
6105 M:      Dave Airlie <airlied@redhat.com>
6106 R:      Thomas Zimmermann <tzimmermann@suse.de>
6107 L:      dri-devel@lists.freedesktop.org
6108 S:      Supported
6109 T:      git git://anongit.freedesktop.org/drm/drm-misc
6110 F:      drivers/gpu/drm/ast/
6111
6112 DRM DRIVER FOR BOCHS VIRTUAL GPU
6113 M:      Gerd Hoffmann <kraxel@redhat.com>
6114 L:      virtualization@lists.linux-foundation.org
6115 S:      Maintained
6116 T:      git git://anongit.freedesktop.org/drm/drm-misc
6117 F:      drivers/gpu/drm/tiny/bochs.c
6118
6119 DRM DRIVER FOR BOE HIMAX8279D PANELS
6120 M:      Jerry Han <hanxu5@huaqin.corp-partner.google.com>
6121 S:      Maintained
6122 F:      Documentation/devicetree/bindings/display/panel/boe,himax8279d.yaml
6123 F:      drivers/gpu/drm/panel/panel-boe-himax8279d.c
6124
6125 DRM DRIVER FOR CHIPONE ICN6211 MIPI-DSI to RGB CONVERTER BRIDGE
6126 M:      Jagan Teki <jagan@amarulasolutions.com>
6127 S:      Maintained
6128 F:      Documentation/devicetree/bindings/display/bridge/chipone,icn6211.yaml
6129 F:      drivers/gpu/drm/bridge/chipone-icn6211.c
6130
6131 DRM DRIVER FOR FARADAY TVE200 TV ENCODER
6132 M:      Linus Walleij <linus.walleij@linaro.org>
6133 S:      Maintained
6134 T:      git git://anongit.freedesktop.org/drm/drm-misc
6135 F:      drivers/gpu/drm/tve200/
6136
6137 DRM DRIVER FOR FEIXIN K101 IM2BA02 MIPI-DSI LCD PANELS
6138 M:      Icenowy Zheng <icenowy@aosc.io>
6139 S:      Maintained
6140 F:      Documentation/devicetree/bindings/display/panel/feixin,k101-im2ba02.yaml
6141 F:      drivers/gpu/drm/panel/panel-feixin-k101-im2ba02.c
6142
6143 DRM DRIVER FOR FEIYANG FY07024DI26A30-D MIPI-DSI LCD PANELS
6144 M:      Jagan Teki <jagan@amarulasolutions.com>
6145 S:      Maintained
6146 F:      Documentation/devicetree/bindings/display/panel/feiyang,fy07024di26a30d.yaml
6147 F:      drivers/gpu/drm/panel/panel-feiyang-fy07024di26a30d.c
6148
6149 DRM DRIVER FOR GENERIC USB DISPLAY
6150 M:      Noralf Trønnes <noralf@tronnes.org>
6151 S:      Maintained
6152 W:      https://github.com/notro/gud/wiki
6153 T:      git git://anongit.freedesktop.org/drm/drm-misc
6154 F:      drivers/gpu/drm/gud/
6155 F:      include/drm/gud.h
6156
6157 DRM DRIVER FOR GRAIN MEDIA GM12U320 PROJECTORS
6158 M:      Hans de Goede <hdegoede@redhat.com>
6159 S:      Maintained
6160 T:      git git://anongit.freedesktop.org/drm/drm-misc
6161 F:      drivers/gpu/drm/tiny/gm12u320.c
6162
6163 DRM DRIVER FOR HX8357D PANELS
6164 M:      Emma Anholt <emma@anholt.net>
6165 S:      Maintained
6166 T:      git git://anongit.freedesktop.org/drm/drm-misc
6167 F:      Documentation/devicetree/bindings/display/himax,hx8357d.txt
6168 F:      drivers/gpu/drm/tiny/hx8357d.c
6169
6170 DRM DRIVER FOR ILITEK ILI9225 PANELS
6171 M:      David Lechner <david@lechnology.com>
6172 S:      Maintained
6173 T:      git git://anongit.freedesktop.org/drm/drm-misc
6174 F:      Documentation/devicetree/bindings/display/ilitek,ili9225.txt
6175 F:      drivers/gpu/drm/tiny/ili9225.c
6176
6177 DRM DRIVER FOR ILITEK ILI9486 PANELS
6178 M:      Kamlesh Gurudasani <kamlesh.gurudasani@gmail.com>
6179 S:      Maintained
6180 T:      git git://anongit.freedesktop.org/drm/drm-misc
6181 F:      Documentation/devicetree/bindings/display/ilitek,ili9486.yaml
6182 F:      drivers/gpu/drm/tiny/ili9486.c
6183
6184 DRM DRIVER FOR INTEL I810 VIDEO CARDS
6185 S:      Orphan / Obsolete
6186 F:      drivers/gpu/drm/i810/
6187 F:      include/uapi/drm/i810_drm.h
6188
6189 DRM DRIVER FOR LVDS PANELS
6190 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6191 L:      dri-devel@lists.freedesktop.org
6192 T:      git git://anongit.freedesktop.org/drm/drm-misc
6193 S:      Maintained
6194 F:      drivers/gpu/drm/panel/panel-lvds.c
6195 F:      Documentation/devicetree/bindings/display/lvds.yaml
6196 F:      Documentation/devicetree/bindings/display/panel/panel-lvds.yaml
6197
6198 DRM DRIVER FOR MANTIX MLAF057WE51 PANELS
6199 M:      Guido Günther <agx@sigxcpu.org>
6200 R:      Purism Kernel Team <kernel@puri.sm>
6201 S:      Maintained
6202 F:      Documentation/devicetree/bindings/display/panel/mantix,mlaf057we51-x.yaml
6203 F:      drivers/gpu/drm/panel/panel-mantix-mlaf057we51.c
6204
6205 DRM DRIVER FOR MATROX G200/G400 GRAPHICS CARDS
6206 S:      Orphan / Obsolete
6207 F:      drivers/gpu/drm/mga/
6208 F:      include/uapi/drm/mga_drm.h
6209
6210 DRM DRIVER FOR MGA G200 GRAPHICS CHIPS
6211 M:      Dave Airlie <airlied@redhat.com>
6212 R:      Thomas Zimmermann <tzimmermann@suse.de>
6213 L:      dri-devel@lists.freedesktop.org
6214 S:      Supported
6215 T:      git git://anongit.freedesktop.org/drm/drm-misc
6216 F:      drivers/gpu/drm/mgag200/
6217
6218 DRM DRIVER FOR MI0283QT
6219 M:      Noralf Trønnes <noralf@tronnes.org>
6220 S:      Maintained
6221 T:      git git://anongit.freedesktop.org/drm/drm-misc
6222 F:      Documentation/devicetree/bindings/display/multi-inno,mi0283qt.txt
6223 F:      drivers/gpu/drm/tiny/mi0283qt.c
6224
6225 DRM DRIVER FOR MIPI DBI compatible panels
6226 M:      Noralf Trønnes <noralf@tronnes.org>
6227 S:      Maintained
6228 W:      https://github.com/notro/panel-mipi-dbi/wiki
6229 T:      git git://anongit.freedesktop.org/drm/drm-misc
6230 F:      Documentation/devicetree/bindings/display/panel/panel-mipi-dbi-spi.yaml
6231 F:      drivers/gpu/drm/tiny/panel-mipi-dbi.c
6232
6233 DRM DRIVER FOR MSM ADRENO GPU
6234 M:      Rob Clark <robdclark@gmail.com>
6235 M:      Sean Paul <sean@poorly.run>
6236 R:      Abhinav Kumar <quic_abhinavk@quicinc.com>
6237 L:      linux-arm-msm@vger.kernel.org
6238 L:      dri-devel@lists.freedesktop.org
6239 L:      freedreno@lists.freedesktop.org
6240 S:      Maintained
6241 T:      git https://gitlab.freedesktop.org/drm/msm.git
6242 F:      Documentation/devicetree/bindings/display/msm/
6243 F:      drivers/gpu/drm/msm/
6244 F:      include/uapi/drm/msm_drm.h
6245
6246 DRM DRIVER FOR NOVATEK NT35510 PANELS
6247 M:      Linus Walleij <linus.walleij@linaro.org>
6248 S:      Maintained
6249 T:      git git://anongit.freedesktop.org/drm/drm-misc
6250 F:      Documentation/devicetree/bindings/display/panel/novatek,nt35510.yaml
6251 F:      drivers/gpu/drm/panel/panel-novatek-nt35510.c
6252
6253 DRM DRIVER FOR NOVATEK NT35560 PANELS
6254 M:      Linus Walleij <linus.walleij@linaro.org>
6255 S:      Maintained
6256 T:      git git://anongit.freedesktop.org/drm/drm-misc
6257 F:      Documentation/devicetree/bindings/display/panel/sony,acx424akp.yaml
6258 F:      drivers/gpu/drm/panel/panel-novatek-nt35560.c
6259
6260 DRM DRIVER FOR NOVATEK NT36672A PANELS
6261 M:      Sumit Semwal <sumit.semwal@linaro.org>
6262 S:      Maintained
6263 T:      git git://anongit.freedesktop.org/drm/drm-misc
6264 F:      Documentation/devicetree/bindings/display/panel/novatek,nt36672a.yaml
6265 F:      drivers/gpu/drm/panel/panel-novatek-nt36672a.c
6266
6267 DRM DRIVER FOR NVIDIA GEFORCE/QUADRO GPUS
6268 M:      Ben Skeggs <bskeggs@redhat.com>
6269 M:      Karol Herbst <kherbst@redhat.com>
6270 M:      Lyude Paul <lyude@redhat.com>
6271 L:      dri-devel@lists.freedesktop.org
6272 L:      nouveau@lists.freedesktop.org
6273 S:      Supported
6274 W:      https://nouveau.freedesktop.org/
6275 Q:      https://patchwork.freedesktop.org/project/nouveau/
6276 Q:      https://gitlab.freedesktop.org/drm/nouveau/-/merge_requests
6277 B:      https://gitlab.freedesktop.org/drm/nouveau/-/issues
6278 C:      irc://irc.oftc.net/nouveau
6279 T:      git https://gitlab.freedesktop.org/drm/nouveau.git
6280 F:      drivers/gpu/drm/nouveau/
6281 F:      include/uapi/drm/nouveau_drm.h
6282
6283 DRM DRIVER FOR OLIMEX LCD-OLINUXINO PANELS
6284 M:      Stefan Mavrodiev <stefan@olimex.com>
6285 S:      Maintained
6286 F:      Documentation/devicetree/bindings/display/panel/olimex,lcd-olinuxino.yaml
6287 F:      drivers/gpu/drm/panel/panel-olimex-lcd-olinuxino.c
6288
6289 DRM DRIVER FOR PERVASIVE DISPLAYS REPAPER PANELS
6290 M:      Noralf Trønnes <noralf@tronnes.org>
6291 S:      Maintained
6292 T:      git git://anongit.freedesktop.org/drm/drm-misc
6293 F:      Documentation/devicetree/bindings/display/repaper.txt
6294 F:      drivers/gpu/drm/tiny/repaper.c
6295
6296 DRM DRIVER FOR SOLOMON SSD130X OLED DISPLAYS
6297 M:      Javier Martinez Canillas <javierm@redhat.com>
6298 S:      Maintained
6299 T:      git git://anongit.freedesktop.org/drm/drm-misc
6300 F:      Documentation/devicetree/bindings/display/solomon,ssd1307fb.yaml
6301 F:      drivers/gpu/drm/solomon/ssd130x*
6302
6303 DRM DRIVER FOR QEMU'S CIRRUS DEVICE
6304 M:      Dave Airlie <airlied@redhat.com>
6305 M:      Gerd Hoffmann <kraxel@redhat.com>
6306 L:      virtualization@lists.linux-foundation.org
6307 S:      Obsolete
6308 W:      https://www.kraxel.org/blog/2014/10/qemu-using-cirrus-considered-harmful/
6309 T:      git git://anongit.freedesktop.org/drm/drm-misc
6310 F:      drivers/gpu/drm/tiny/cirrus.c
6311
6312 DRM DRIVER FOR QXL VIRTUAL GPU
6313 M:      Dave Airlie <airlied@redhat.com>
6314 M:      Gerd Hoffmann <kraxel@redhat.com>
6315 L:      virtualization@lists.linux-foundation.org
6316 L:      spice-devel@lists.freedesktop.org
6317 S:      Maintained
6318 T:      git git://anongit.freedesktop.org/drm/drm-misc
6319 F:      drivers/gpu/drm/qxl/
6320 F:      include/uapi/drm/qxl_drm.h
6321
6322 DRM DRIVER FOR RAGE 128 VIDEO CARDS
6323 S:      Orphan / Obsolete
6324 F:      drivers/gpu/drm/r128/
6325 F:      include/uapi/drm/r128_drm.h
6326
6327 DRM DRIVER FOR RAYDIUM RM67191 PANELS
6328 M:      Robert Chiras <robert.chiras@nxp.com>
6329 S:      Maintained
6330 F:      Documentation/devicetree/bindings/display/panel/raydium,rm67191.yaml
6331 F:      drivers/gpu/drm/panel/panel-raydium-rm67191.c
6332
6333 DRM DRIVER FOR SAMSUNG DB7430 PANELS
6334 M:      Linus Walleij <linus.walleij@linaro.org>
6335 S:      Maintained
6336 T:      git git://anongit.freedesktop.org/drm/drm-misc
6337 F:      Documentation/devicetree/bindings/display/panel/samsung,lms397kf04.yaml
6338 F:      drivers/gpu/drm/panel/panel-samsung-db7430.c
6339
6340 DRM DRIVER FOR SAMSUNG S6D27A1 PANELS
6341 M:      Markuss Broks <markuss.broks@gmail.com>
6342 S:      Maintained
6343 F:      Documentation/devicetree/bindings/display/panel/samsung,s6d27a1.yaml
6344 F:      drivers/gpu/drm/panel/panel-samsung-s6d27a1.c
6345
6346 DRM DRIVER FOR SITRONIX ST7703 PANELS
6347 M:      Guido Günther <agx@sigxcpu.org>
6348 R:      Purism Kernel Team <kernel@puri.sm>
6349 R:      Ondrej Jirman <megous@megous.com>
6350 S:      Maintained
6351 F:      Documentation/devicetree/bindings/display/panel/rocktech,jh057n00900.yaml
6352 F:      drivers/gpu/drm/panel/panel-sitronix-st7703.c
6353
6354 DRM DRIVER FOR SAVAGE VIDEO CARDS
6355 S:      Orphan / Obsolete
6356 F:      drivers/gpu/drm/savage/
6357 F:      include/uapi/drm/savage_drm.h
6358
6359 DRM DRIVER FOR SIMPLE FRAMEBUFFERS
6360 M:      Thomas Zimmermann <tzimmermann@suse.de>
6361 L:      dri-devel@lists.freedesktop.org
6362 S:      Maintained
6363 T:      git git://anongit.freedesktop.org/drm/drm-misc
6364 F:      drivers/gpu/drm/tiny/simpledrm.c
6365
6366 DRM DRIVER FOR SIS VIDEO CARDS
6367 S:      Orphan / Obsolete
6368 F:      drivers/gpu/drm/sis/
6369 F:      include/uapi/drm/sis_drm.h
6370
6371 DRM DRIVER FOR SITRONIX ST7586 PANELS
6372 M:      David Lechner <david@lechnology.com>
6373 S:      Maintained
6374 T:      git git://anongit.freedesktop.org/drm/drm-misc
6375 F:      Documentation/devicetree/bindings/display/sitronix,st7586.txt
6376 F:      drivers/gpu/drm/tiny/st7586.c
6377
6378 DRM DRIVER FOR SITRONIX ST7701 PANELS
6379 M:      Jagan Teki <jagan@amarulasolutions.com>
6380 S:      Maintained
6381 F:      Documentation/devicetree/bindings/display/panel/sitronix,st7701.yaml
6382 F:      drivers/gpu/drm/panel/panel-sitronix-st7701.c
6383
6384 DRM DRIVER FOR SITRONIX ST7735R PANELS
6385 M:      David Lechner <david@lechnology.com>
6386 S:      Maintained
6387 T:      git git://anongit.freedesktop.org/drm/drm-misc
6388 F:      Documentation/devicetree/bindings/display/sitronix,st7735r.yaml
6389 F:      drivers/gpu/drm/tiny/st7735r.c
6390
6391 DRM DRIVER FOR ST-ERICSSON MCDE
6392 M:      Linus Walleij <linus.walleij@linaro.org>
6393 S:      Maintained
6394 T:      git git://anongit.freedesktop.org/drm/drm-misc
6395 F:      Documentation/devicetree/bindings/display/ste,mcde.yaml
6396 F:      drivers/gpu/drm/mcde/
6397
6398 DRM DRIVER FOR TDFX VIDEO CARDS
6399 S:      Orphan / Obsolete
6400 F:      drivers/gpu/drm/tdfx/
6401
6402 DRM DRIVER FOR TPO TPG110 PANELS
6403 M:      Linus Walleij <linus.walleij@linaro.org>
6404 S:      Maintained
6405 T:      git git://anongit.freedesktop.org/drm/drm-misc
6406 F:      Documentation/devicetree/bindings/display/panel/tpo,tpg110.yaml
6407 F:      drivers/gpu/drm/panel/panel-tpo-tpg110.c
6408
6409 DRM DRIVER FOR USB DISPLAYLINK VIDEO ADAPTERS
6410 M:      Dave Airlie <airlied@redhat.com>
6411 R:      Sean Paul <sean@poorly.run>
6412 R:      Thomas Zimmermann <tzimmermann@suse.de>
6413 L:      dri-devel@lists.freedesktop.org
6414 S:      Supported
6415 T:      git git://anongit.freedesktop.org/drm/drm-misc
6416 F:      drivers/gpu/drm/udl/
6417
6418 DRM DRIVER FOR VIRTUAL KERNEL MODESETTING (VKMS)
6419 M:      Rodrigo Siqueira <rodrigosiqueiramelo@gmail.com>
6420 M:      Melissa Wen <melissa.srw@gmail.com>
6421 R:      Haneen Mohammed <hamohammed.sa@gmail.com>
6422 R:      Daniel Vetter <daniel@ffwll.ch>
6423 L:      dri-devel@lists.freedesktop.org
6424 S:      Maintained
6425 T:      git git://anongit.freedesktop.org/drm/drm-misc
6426 F:      Documentation/gpu/vkms.rst
6427 F:      drivers/gpu/drm/vkms/
6428
6429 DRM DRIVER FOR VIRTUALBOX VIRTUAL GPU
6430 M:      Hans de Goede <hdegoede@redhat.com>
6431 L:      dri-devel@lists.freedesktop.org
6432 S:      Maintained
6433 T:      git git://anongit.freedesktop.org/drm/drm-misc
6434 F:      drivers/gpu/drm/vboxvideo/
6435
6436 DRM DRIVER FOR VMWARE VIRTUAL GPU
6437 M:      Zack Rusin <zackr@vmware.com>
6438 R:      VMware Graphics Reviewers <linux-graphics-maintainer@vmware.com>
6439 L:      dri-devel@lists.freedesktop.org
6440 S:      Supported
6441 T:      git git://anongit.freedesktop.org/drm/drm-misc
6442 F:      drivers/gpu/drm/vmwgfx/
6443 F:      include/uapi/drm/vmwgfx_drm.h
6444
6445 DRM DRIVER FOR WIDECHIPS WS2401 PANELS
6446 M:      Linus Walleij <linus.walleij@linaro.org>
6447 S:      Maintained
6448 T:      git git://anongit.freedesktop.org/drm/drm-misc
6449 F:      Documentation/devicetree/bindings/display/panel/samsung,lms380kf01.yaml
6450 F:      drivers/gpu/drm/panel/panel-widechips-ws2401.c
6451
6452 DRM DRIVERS
6453 M:      David Airlie <airlied@linux.ie>
6454 M:      Daniel Vetter <daniel@ffwll.ch>
6455 L:      dri-devel@lists.freedesktop.org
6456 S:      Maintained
6457 B:      https://gitlab.freedesktop.org/drm
6458 C:      irc://irc.oftc.net/dri-devel
6459 T:      git git://anongit.freedesktop.org/drm/drm
6460 F:      Documentation/devicetree/bindings/display/
6461 F:      Documentation/devicetree/bindings/gpu/
6462 F:      Documentation/gpu/
6463 F:      drivers/gpu/
6464 F:      include/drm/
6465 F:      include/linux/vga*
6466 F:      include/uapi/drm/
6467
6468 DRM DRIVERS AND MISC GPU PATCHES
6469 M:      Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
6470 M:      Maxime Ripard <mripard@kernel.org>
6471 M:      Thomas Zimmermann <tzimmermann@suse.de>
6472 S:      Maintained
6473 W:      https://01.org/linuxgraphics/gfx-docs/maintainer-tools/drm-misc.html
6474 T:      git git://anongit.freedesktop.org/drm/drm-misc
6475 F:      Documentation/gpu/
6476 F:      drivers/gpu/drm/*
6477 F:      drivers/gpu/vga/
6478 F:      include/drm/drm*
6479 F:      include/linux/vga*
6480 F:      include/uapi/drm/drm*
6481
6482 DRM DRIVERS FOR ALLWINNER A10
6483 M:      Maxime Ripard <mripard@kernel.org>
6484 M:      Chen-Yu Tsai <wens@csie.org>
6485 L:      dri-devel@lists.freedesktop.org
6486 S:      Supported
6487 T:      git git://anongit.freedesktop.org/drm/drm-misc
6488 F:      Documentation/devicetree/bindings/display/allwinner*
6489 F:      drivers/gpu/drm/sun4i/
6490
6491 DRM DRIVERS FOR AMLOGIC SOCS
6492 M:      Neil Armstrong <narmstrong@baylibre.com>
6493 L:      dri-devel@lists.freedesktop.org
6494 L:      linux-amlogic@lists.infradead.org
6495 S:      Supported
6496 W:      http://linux-meson.com/
6497 T:      git git://anongit.freedesktop.org/drm/drm-misc
6498 F:      Documentation/devicetree/bindings/display/amlogic,meson-dw-hdmi.yaml
6499 F:      Documentation/devicetree/bindings/display/amlogic,meson-vpu.yaml
6500 F:      Documentation/gpu/meson.rst
6501 F:      drivers/gpu/drm/meson/
6502
6503 DRM DRIVERS FOR ATMEL HLCDC
6504 M:      Sam Ravnborg <sam@ravnborg.org>
6505 M:      Boris Brezillon <bbrezillon@kernel.org>
6506 L:      dri-devel@lists.freedesktop.org
6507 S:      Supported
6508 T:      git git://anongit.freedesktop.org/drm/drm-misc
6509 F:      Documentation/devicetree/bindings/display/atmel/
6510 F:      drivers/gpu/drm/atmel-hlcdc/
6511
6512 DRM DRIVERS FOR BRIDGE CHIPS
6513 M:      Andrzej Hajda <andrzej.hajda@intel.com>
6514 M:      Neil Armstrong <narmstrong@baylibre.com>
6515 M:      Robert Foss <robert.foss@linaro.org>
6516 R:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
6517 R:      Jonas Karlman <jonas@kwiboo.se>
6518 R:      Jernej Skrabec <jernej.skrabec@gmail.com>
6519 S:      Maintained
6520 T:      git git://anongit.freedesktop.org/drm/drm-misc
6521 F:      drivers/gpu/drm/bridge/
6522
6523 DRM DRIVERS FOR EXYNOS
6524 M:      Inki Dae <inki.dae@samsung.com>
6525 M:      Joonyoung Shim <jy0922.shim@samsung.com>
6526 M:      Seung-Woo Kim <sw0312.kim@samsung.com>
6527 M:      Kyungmin Park <kyungmin.park@samsung.com>
6528 L:      dri-devel@lists.freedesktop.org
6529 S:      Supported
6530 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
6531 F:      Documentation/devicetree/bindings/display/exynos/
6532 F:      Documentation/devicetree/bindings/display/samsung/
6533 F:      drivers/gpu/drm/exynos/
6534 F:      include/uapi/drm/exynos_drm.h
6535
6536 DRM DRIVERS FOR FREESCALE DCU
6537 M:      Stefan Agner <stefan@agner.ch>
6538 M:      Alison Wang <alison.wang@nxp.com>
6539 L:      dri-devel@lists.freedesktop.org
6540 S:      Supported
6541 T:      git git://anongit.freedesktop.org/drm/drm-misc
6542 F:      Documentation/devicetree/bindings/display/fsl,dcu.txt
6543 F:      Documentation/devicetree/bindings/display/fsl,tcon.txt
6544 F:      drivers/gpu/drm/fsl-dcu/
6545
6546 DRM DRIVERS FOR FREESCALE IMX
6547 M:      Philipp Zabel <p.zabel@pengutronix.de>
6548 L:      dri-devel@lists.freedesktop.org
6549 S:      Maintained
6550 F:      Documentation/devicetree/bindings/display/imx/
6551 F:      drivers/gpu/drm/imx/
6552 F:      drivers/gpu/ipu-v3/
6553
6554 DRM DRIVERS FOR GMA500 (Poulsbo, Moorestown and derivative chipsets)
6555 M:      Patrik Jakobsson <patrik.r.jakobsson@gmail.com>
6556 L:      dri-devel@lists.freedesktop.org
6557 S:      Maintained
6558 T:      git git://github.com/patjak/drm-gma500
6559 F:      drivers/gpu/drm/gma500/
6560
6561 DRM DRIVERS FOR HISILICON
6562 M:      Xinliang Liu <xinliang.liu@linaro.org>
6563 M:      Tian Tao  <tiantao6@hisilicon.com>
6564 R:      John Stultz <john.stultz@linaro.org>
6565 R:      Xinwei Kong <kong.kongxinwei@hisilicon.com>
6566 R:      Chen Feng <puck.chen@hisilicon.com>
6567 L:      dri-devel@lists.freedesktop.org
6568 S:      Maintained
6569 T:      git git://anongit.freedesktop.org/drm/drm-misc
6570 F:      Documentation/devicetree/bindings/display/hisilicon/
6571 F:      drivers/gpu/drm/hisilicon/
6572
6573 DRM DRIVER FOR HYPERV SYNTHETIC VIDEO DEVICE
6574 M:      Deepak Rawat <drawat.floss@gmail.com>
6575 L:      linux-hyperv@vger.kernel.org
6576 L:      dri-devel@lists.freedesktop.org
6577 S:      Maintained
6578 T:      git git://anongit.freedesktop.org/drm/drm-misc
6579 F:      drivers/gpu/drm/hyperv
6580
6581 DRM DRIVERS FOR LIMA
6582 M:      Qiang Yu <yuq825@gmail.com>
6583 L:      dri-devel@lists.freedesktop.org
6584 L:      lima@lists.freedesktop.org (moderated for non-subscribers)
6585 S:      Maintained
6586 T:      git git://anongit.freedesktop.org/drm/drm-misc
6587 F:      drivers/gpu/drm/lima/
6588 F:      include/uapi/drm/lima_drm.h
6589
6590 DRM DRIVERS FOR MEDIATEK
6591 M:      Chun-Kuang Hu <chunkuang.hu@kernel.org>
6592 M:      Philipp Zabel <p.zabel@pengutronix.de>
6593 L:      dri-devel@lists.freedesktop.org
6594 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
6595 S:      Supported
6596 F:      Documentation/devicetree/bindings/display/mediatek/
6597 F:      drivers/gpu/drm/mediatek/
6598 F:      drivers/phy/mediatek/phy-mtk-hdmi*
6599 F:      drivers/phy/mediatek/phy-mtk-mipi*
6600
6601 DRM DRIVERS FOR NVIDIA TEGRA
6602 M:      Thierry Reding <thierry.reding@gmail.com>
6603 L:      dri-devel@lists.freedesktop.org
6604 L:      linux-tegra@vger.kernel.org
6605 S:      Supported
6606 T:      git git://anongit.freedesktop.org/tegra/linux.git
6607 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
6608 F:      Documentation/devicetree/bindings/gpu/host1x/
6609 F:      drivers/gpu/drm/tegra/
6610 F:      drivers/gpu/host1x/
6611 F:      include/linux/host1x.h
6612 F:      include/uapi/drm/tegra_drm.h
6613
6614 DRM DRIVERS FOR RENESAS
6615 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6616 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
6617 L:      dri-devel@lists.freedesktop.org
6618 L:      linux-renesas-soc@vger.kernel.org
6619 S:      Supported
6620 T:      git git://linuxtv.org/pinchartl/media drm/du/next
6621 F:      Documentation/devicetree/bindings/display/bridge/renesas,dsi-csi2-tx.yaml
6622 F:      Documentation/devicetree/bindings/display/bridge/renesas,dw-hdmi.yaml
6623 F:      Documentation/devicetree/bindings/display/bridge/renesas,lvds.yaml
6624 F:      Documentation/devicetree/bindings/display/renesas,du.yaml
6625 F:      drivers/gpu/drm/rcar-du/
6626 F:      drivers/gpu/drm/shmobile/
6627 F:      include/linux/platform_data/shmob_drm.h
6628
6629 DRM DRIVERS FOR ROCKCHIP
6630 M:      Sandy Huang <hjc@rock-chips.com>
6631 M:      Heiko Stübner <heiko@sntech.de>
6632 L:      dri-devel@lists.freedesktop.org
6633 S:      Maintained
6634 T:      git git://anongit.freedesktop.org/drm/drm-misc
6635 F:      Documentation/devicetree/bindings/display/rockchip/
6636 F:      drivers/gpu/drm/rockchip/
6637
6638 DRM DRIVERS FOR STI
6639 M:      Alain Volmat <alain.volmat@foss.st.com>
6640 L:      dri-devel@lists.freedesktop.org
6641 S:      Maintained
6642 T:      git git://anongit.freedesktop.org/drm/drm-misc
6643 F:      Documentation/devicetree/bindings/display/st,stih4xx.txt
6644 F:      drivers/gpu/drm/sti
6645
6646 DRM DRIVERS FOR STM
6647 M:      Yannick Fertre <yannick.fertre@foss.st.com>
6648 M:      Raphael Gallais-Pou <raphael.gallais-pou@foss.st.com>
6649 M:      Philippe Cornu <philippe.cornu@foss.st.com>
6650 L:      dri-devel@lists.freedesktop.org
6651 S:      Maintained
6652 T:      git git://anongit.freedesktop.org/drm/drm-misc
6653 F:      Documentation/devicetree/bindings/display/st,stm32-ltdc.yaml
6654 F:      drivers/gpu/drm/stm
6655
6656 DRM DRIVERS FOR TI KEYSTONE
6657 M:      Jyri Sarha <jyri.sarha@iki.fi>
6658 M:      Tomi Valkeinen <tomba@kernel.org>
6659 L:      dri-devel@lists.freedesktop.org
6660 S:      Maintained
6661 T:      git git://anongit.freedesktop.org/drm/drm-misc
6662 F:      Documentation/devicetree/bindings/display/ti/ti,am65x-dss.yaml
6663 F:      Documentation/devicetree/bindings/display/ti/ti,j721e-dss.yaml
6664 F:      Documentation/devicetree/bindings/display/ti/ti,k2g-dss.yaml
6665 F:      drivers/gpu/drm/tidss/
6666
6667 DRM DRIVERS FOR TI LCDC
6668 M:      Jyri Sarha <jyri.sarha@iki.fi>
6669 R:      Tomi Valkeinen <tomba@kernel.org>
6670 L:      dri-devel@lists.freedesktop.org
6671 S:      Maintained
6672 F:      Documentation/devicetree/bindings/display/tilcdc/
6673 F:      drivers/gpu/drm/tilcdc/
6674
6675 DRM DRIVERS FOR TI OMAP
6676 M:      Tomi Valkeinen <tomba@kernel.org>
6677 L:      dri-devel@lists.freedesktop.org
6678 S:      Maintained
6679 F:      Documentation/devicetree/bindings/display/ti/
6680 F:      drivers/gpu/drm/omapdrm/
6681
6682 DRM DRIVERS FOR V3D
6683 M:      Emma Anholt <emma@anholt.net>
6684 S:      Supported
6685 T:      git git://anongit.freedesktop.org/drm/drm-misc
6686 F:      Documentation/devicetree/bindings/gpu/brcm,bcm-v3d.yaml
6687 F:      drivers/gpu/drm/v3d/
6688 F:      include/uapi/drm/v3d_drm.h
6689
6690 DRM DRIVERS FOR VC4
6691 M:      Emma Anholt <emma@anholt.net>
6692 M:      Maxime Ripard <mripard@kernel.org>
6693 S:      Supported
6694 T:      git git://github.com/anholt/linux
6695 T:      git git://anongit.freedesktop.org/drm/drm-misc
6696 F:      Documentation/devicetree/bindings/display/brcm,bcm2835-*.yaml
6697 F:      drivers/gpu/drm/vc4/
6698 F:      include/uapi/drm/vc4_drm.h
6699
6700 DRM DRIVERS FOR VIVANTE GPU IP
6701 M:      Lucas Stach <l.stach@pengutronix.de>
6702 R:      Russell King <linux+etnaviv@armlinux.org.uk>
6703 R:      Christian Gmeiner <christian.gmeiner@gmail.com>
6704 L:      etnaviv@lists.freedesktop.org (moderated for non-subscribers)
6705 L:      dri-devel@lists.freedesktop.org
6706 S:      Maintained
6707 F:      Documentation/devicetree/bindings/gpu/vivante,gc.yaml
6708 F:      drivers/gpu/drm/etnaviv/
6709 F:      include/uapi/drm/etnaviv_drm.h
6710
6711 DRM DRIVERS FOR XEN
6712 M:      Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
6713 L:      dri-devel@lists.freedesktop.org
6714 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
6715 S:      Supported
6716 T:      git git://anongit.freedesktop.org/drm/drm-misc
6717 F:      Documentation/gpu/xen-front.rst
6718 F:      drivers/gpu/drm/xen/
6719
6720 DRM DRIVERS FOR XILINX
6721 M:      Hyun Kwon <hyun.kwon@xilinx.com>
6722 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6723 L:      dri-devel@lists.freedesktop.org
6724 S:      Maintained
6725 T:      git git://anongit.freedesktop.org/drm/drm-misc
6726 F:      Documentation/devicetree/bindings/display/xlnx/
6727 F:      drivers/gpu/drm/xlnx/
6728
6729 DRM PANEL DRIVERS
6730 M:      Thierry Reding <thierry.reding@gmail.com>
6731 R:      Sam Ravnborg <sam@ravnborg.org>
6732 L:      dri-devel@lists.freedesktop.org
6733 S:      Maintained
6734 T:      git git://anongit.freedesktop.org/drm/drm-misc
6735 F:      Documentation/devicetree/bindings/display/panel/
6736 F:      drivers/gpu/drm/drm_panel.c
6737 F:      drivers/gpu/drm/panel/
6738 F:      include/drm/drm_panel.h
6739
6740 DRM PRIVACY-SCREEN CLASS
6741 M:      Hans de Goede <hdegoede@redhat.com>
6742 L:      dri-devel@lists.freedesktop.org
6743 S:      Maintained
6744 T:      git git://anongit.freedesktop.org/drm/drm-misc
6745 F:      drivers/gpu/drm/drm_privacy_screen*
6746 F:      include/drm/drm_privacy_screen*
6747
6748 DRM TTM SUBSYSTEM
6749 M:      Christian Koenig <christian.koenig@amd.com>
6750 M:      Huang Rui <ray.huang@amd.com>
6751 L:      dri-devel@lists.freedesktop.org
6752 S:      Maintained
6753 T:      git git://anongit.freedesktop.org/drm/drm-misc
6754 F:      drivers/gpu/drm/ttm/
6755 F:      include/drm/ttm/
6756
6757 DRM GPU SCHEDULER
6758 M:      Andrey Grodzovsky <andrey.grodzovsky@amd.com>
6759 L:      dri-devel@lists.freedesktop.org
6760 S:      Maintained
6761 T:      git git://anongit.freedesktop.org/drm/drm-misc
6762 F:      drivers/gpu/drm/scheduler/
6763 F:      include/drm/gpu_scheduler.h
6764
6765 DSBR100 USB FM RADIO DRIVER
6766 M:      Alexey Klimov <klimov.linux@gmail.com>
6767 L:      linux-media@vger.kernel.org
6768 S:      Maintained
6769 T:      git git://linuxtv.org/media_tree.git
6770 F:      drivers/media/radio/dsbr100.c
6771
6772 DT3155 MEDIA DRIVER
6773 M:      Hans Verkuil <hverkuil@xs4all.nl>
6774 L:      linux-media@vger.kernel.org
6775 S:      Odd Fixes
6776 W:      https://linuxtv.org
6777 T:      git git://linuxtv.org/media_tree.git
6778 F:      drivers/media/pci/dt3155/
6779
6780 DVB_USB_AF9015 MEDIA DRIVER
6781 M:      Antti Palosaari <crope@iki.fi>
6782 L:      linux-media@vger.kernel.org
6783 S:      Maintained
6784 W:      https://linuxtv.org
6785 W:      http://palosaari.fi/linux/
6786 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6787 T:      git git://linuxtv.org/anttip/media_tree.git
6788 F:      drivers/media/usb/dvb-usb-v2/af9015*
6789
6790 DVB_USB_AF9035 MEDIA DRIVER
6791 M:      Antti Palosaari <crope@iki.fi>
6792 L:      linux-media@vger.kernel.org
6793 S:      Maintained
6794 W:      https://linuxtv.org
6795 W:      http://palosaari.fi/linux/
6796 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6797 T:      git git://linuxtv.org/anttip/media_tree.git
6798 F:      drivers/media/usb/dvb-usb-v2/af9035*
6799
6800 DVB_USB_ANYSEE MEDIA DRIVER
6801 M:      Antti Palosaari <crope@iki.fi>
6802 L:      linux-media@vger.kernel.org
6803 S:      Maintained
6804 W:      https://linuxtv.org
6805 W:      http://palosaari.fi/linux/
6806 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6807 T:      git git://linuxtv.org/anttip/media_tree.git
6808 F:      drivers/media/usb/dvb-usb-v2/anysee*
6809
6810 DVB_USB_AU6610 MEDIA DRIVER
6811 M:      Antti Palosaari <crope@iki.fi>
6812 L:      linux-media@vger.kernel.org
6813 S:      Maintained
6814 W:      https://linuxtv.org
6815 W:      http://palosaari.fi/linux/
6816 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6817 T:      git git://linuxtv.org/anttip/media_tree.git
6818 F:      drivers/media/usb/dvb-usb-v2/au6610*
6819
6820 DVB_USB_CE6230 MEDIA DRIVER
6821 M:      Antti Palosaari <crope@iki.fi>
6822 L:      linux-media@vger.kernel.org
6823 S:      Maintained
6824 W:      https://linuxtv.org
6825 W:      http://palosaari.fi/linux/
6826 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6827 T:      git git://linuxtv.org/anttip/media_tree.git
6828 F:      drivers/media/usb/dvb-usb-v2/ce6230*
6829
6830 DVB_USB_CXUSB MEDIA DRIVER
6831 M:      Michael Krufky <mkrufky@linuxtv.org>
6832 L:      linux-media@vger.kernel.org
6833 S:      Maintained
6834 W:      https://linuxtv.org
6835 W:      http://github.com/mkrufky
6836 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6837 T:      git git://linuxtv.org/media_tree.git
6838 F:      drivers/media/usb/dvb-usb/cxusb*
6839
6840 DVB_USB_EC168 MEDIA DRIVER
6841 M:      Antti Palosaari <crope@iki.fi>
6842 L:      linux-media@vger.kernel.org
6843 S:      Maintained
6844 W:      https://linuxtv.org
6845 W:      http://palosaari.fi/linux/
6846 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6847 T:      git git://linuxtv.org/anttip/media_tree.git
6848 F:      drivers/media/usb/dvb-usb-v2/ec168*
6849
6850 DVB_USB_GL861 MEDIA DRIVER
6851 M:      Antti Palosaari <crope@iki.fi>
6852 L:      linux-media@vger.kernel.org
6853 S:      Maintained
6854 W:      https://linuxtv.org
6855 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6856 T:      git git://linuxtv.org/anttip/media_tree.git
6857 F:      drivers/media/usb/dvb-usb-v2/gl861*
6858
6859 DVB_USB_MXL111SF MEDIA DRIVER
6860 M:      Michael Krufky <mkrufky@linuxtv.org>
6861 L:      linux-media@vger.kernel.org
6862 S:      Maintained
6863 W:      https://linuxtv.org
6864 W:      http://github.com/mkrufky
6865 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6866 T:      git git://linuxtv.org/mkrufky/mxl111sf.git
6867 F:      drivers/media/usb/dvb-usb-v2/mxl111sf*
6868
6869 DVB_USB_RTL28XXU MEDIA DRIVER
6870 M:      Antti Palosaari <crope@iki.fi>
6871 L:      linux-media@vger.kernel.org
6872 S:      Maintained
6873 W:      https://linuxtv.org
6874 W:      http://palosaari.fi/linux/
6875 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6876 T:      git git://linuxtv.org/anttip/media_tree.git
6877 F:      drivers/media/usb/dvb-usb-v2/rtl28xxu*
6878
6879 DVB_USB_V2 MEDIA DRIVER
6880 M:      Antti Palosaari <crope@iki.fi>
6881 L:      linux-media@vger.kernel.org
6882 S:      Maintained
6883 W:      https://linuxtv.org
6884 W:      http://palosaari.fi/linux/
6885 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6886 T:      git git://linuxtv.org/anttip/media_tree.git
6887 F:      drivers/media/usb/dvb-usb-v2/dvb_usb*
6888 F:      drivers/media/usb/dvb-usb-v2/usb_urb.c
6889
6890 DYNAMIC DEBUG
6891 M:      Jason Baron <jbaron@akamai.com>
6892 S:      Maintained
6893 F:      include/linux/dynamic_debug.h
6894 F:      lib/dynamic_debug.c
6895
6896 DYNAMIC INTERRUPT MODERATION
6897 M:      Tal Gilboa <talgi@nvidia.com>
6898 S:      Maintained
6899 F:      Documentation/networking/net_dim.rst
6900 F:      include/linux/dim.h
6901 F:      lib/dim/
6902
6903 DZ DECSTATION DZ11 SERIAL DRIVER
6904 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
6905 S:      Maintained
6906 F:      drivers/tty/serial/dz.*
6907
6908 E3X0 POWER BUTTON DRIVER
6909 M:      Moritz Fischer <moritz.fischer@ettus.com>
6910 L:      usrp-users@lists.ettus.com
6911 S:      Supported
6912 W:      http://www.ettus.com
6913 F:      Documentation/devicetree/bindings/input/e3x0-button.txt
6914 F:      drivers/input/misc/e3x0-button.c
6915
6916 E4000 MEDIA DRIVER
6917 M:      Antti Palosaari <crope@iki.fi>
6918 L:      linux-media@vger.kernel.org
6919 S:      Maintained
6920 W:      https://linuxtv.org
6921 W:      http://palosaari.fi/linux/
6922 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6923 T:      git git://linuxtv.org/anttip/media_tree.git
6924 F:      drivers/media/tuners/e4000*
6925
6926 EARTH_PT1 MEDIA DRIVER
6927 M:      Akihiro Tsukada <tskd08@gmail.com>
6928 L:      linux-media@vger.kernel.org
6929 S:      Odd Fixes
6930 F:      drivers/media/pci/pt1/
6931
6932 EARTH_PT3 MEDIA DRIVER
6933 M:      Akihiro Tsukada <tskd08@gmail.com>
6934 L:      linux-media@vger.kernel.org
6935 S:      Odd Fixes
6936 F:      drivers/media/pci/pt3/
6937
6938 EC100 MEDIA DRIVER
6939 M:      Antti Palosaari <crope@iki.fi>
6940 L:      linux-media@vger.kernel.org
6941 S:      Maintained
6942 W:      https://linuxtv.org
6943 W:      http://palosaari.fi/linux/
6944 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6945 T:      git git://linuxtv.org/anttip/media_tree.git
6946 F:      drivers/media/dvb-frontends/ec100*
6947
6948 ECRYPT FILE SYSTEM
6949 M:      Tyler Hicks <code@tyhicks.com>
6950 L:      ecryptfs@vger.kernel.org
6951 S:      Odd Fixes
6952 W:      http://ecryptfs.org
6953 W:      https://launchpad.net/ecryptfs
6954 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tyhicks/ecryptfs.git
6955 F:      Documentation/filesystems/ecryptfs.rst
6956 F:      fs/ecryptfs/
6957
6958 EDAC-AMD64
6959 M:      Yazen Ghannam <yazen.ghannam@amd.com>
6960 L:      linux-edac@vger.kernel.org
6961 S:      Supported
6962 F:      drivers/edac/amd64_edac*
6963 F:      drivers/edac/mce_amd*
6964
6965 EDAC-ARMADA
6966 M:      Jan Luebbe <jlu@pengutronix.de>
6967 L:      linux-edac@vger.kernel.org
6968 S:      Maintained
6969 F:      Documentation/devicetree/bindings/memory-controllers/marvell,mvebu-sdram-controller.yaml
6970 F:      drivers/edac/armada_xp_*
6971
6972 EDAC-AST2500
6973 M:      Stefan Schaeckeler <sschaeck@cisco.com>
6974 S:      Supported
6975 F:      Documentation/devicetree/bindings/edac/aspeed-sdram-edac.txt
6976 F:      drivers/edac/aspeed_edac.c
6977
6978 EDAC-BLUEFIELD
6979 M:      Shravan Kumar Ramani <shravankr@nvidia.com>
6980 S:      Supported
6981 F:      drivers/edac/bluefield_edac.c
6982
6983 EDAC-CALXEDA
6984 M:      Andre Przywara <andre.przywara@arm.com>
6985 L:      linux-edac@vger.kernel.org
6986 S:      Maintained
6987 F:      drivers/edac/highbank*
6988
6989 EDAC-CAVIUM OCTEON
6990 M:      Ralf Baechle <ralf@linux-mips.org>
6991 L:      linux-edac@vger.kernel.org
6992 L:      linux-mips@vger.kernel.org
6993 S:      Supported
6994 F:      drivers/edac/octeon_edac*
6995
6996 EDAC-CAVIUM THUNDERX
6997 M:      Robert Richter <rric@kernel.org>
6998 L:      linux-edac@vger.kernel.org
6999 S:      Odd Fixes
7000 F:      drivers/edac/thunderx_edac*
7001
7002 EDAC-CORE
7003 M:      Borislav Petkov <bp@alien8.de>
7004 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
7005 M:      Tony Luck <tony.luck@intel.com>
7006 R:      James Morse <james.morse@arm.com>
7007 R:      Robert Richter <rric@kernel.org>
7008 L:      linux-edac@vger.kernel.org
7009 S:      Supported
7010 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ras/ras.git edac-for-next
7011 F:      Documentation/admin-guide/ras.rst
7012 F:      Documentation/driver-api/edac.rst
7013 F:      drivers/edac/
7014 F:      include/linux/edac.h
7015
7016 EDAC-DMC520
7017 M:      Lei Wang <lewan@microsoft.com>
7018 L:      linux-edac@vger.kernel.org
7019 S:      Supported
7020 F:      drivers/edac/dmc520_edac.c
7021
7022 EDAC-E752X
7023 M:      Mark Gross <markgross@kernel.org>
7024 L:      linux-edac@vger.kernel.org
7025 S:      Maintained
7026 F:      drivers/edac/e752x_edac.c
7027
7028 EDAC-E7XXX
7029 L:      linux-edac@vger.kernel.org
7030 S:      Maintained
7031 F:      drivers/edac/e7xxx_edac.c
7032
7033 EDAC-FSL_DDR
7034 M:      York Sun <york.sun@nxp.com>
7035 L:      linux-edac@vger.kernel.org
7036 S:      Maintained
7037 F:      drivers/edac/fsl_ddr_edac.*
7038
7039 EDAC-GHES
7040 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
7041 L:      linux-edac@vger.kernel.org
7042 S:      Maintained
7043 F:      drivers/edac/ghes_edac.c
7044
7045 EDAC-I10NM
7046 M:      Tony Luck <tony.luck@intel.com>
7047 L:      linux-edac@vger.kernel.org
7048 S:      Maintained
7049 F:      drivers/edac/i10nm_base.c
7050
7051 EDAC-I3000
7052 L:      linux-edac@vger.kernel.org
7053 S:      Orphan
7054 F:      drivers/edac/i3000_edac.c
7055
7056 EDAC-I5000
7057 L:      linux-edac@vger.kernel.org
7058 S:      Maintained
7059 F:      drivers/edac/i5000_edac.c
7060
7061 EDAC-I5400
7062 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
7063 L:      linux-edac@vger.kernel.org
7064 S:      Maintained
7065 F:      drivers/edac/i5400_edac.c
7066
7067 EDAC-I7300
7068 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
7069 L:      linux-edac@vger.kernel.org
7070 S:      Maintained
7071 F:      drivers/edac/i7300_edac.c
7072
7073 EDAC-I7CORE
7074 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
7075 L:      linux-edac@vger.kernel.org
7076 S:      Maintained
7077 F:      drivers/edac/i7core_edac.c
7078
7079 EDAC-I82443BXGX
7080 M:      Tim Small <tim@buttersideup.com>
7081 L:      linux-edac@vger.kernel.org
7082 S:      Maintained
7083 F:      drivers/edac/i82443bxgx_edac.c
7084
7085 EDAC-I82975X
7086 M:      "Arvind R." <arvino55@gmail.com>
7087 L:      linux-edac@vger.kernel.org
7088 S:      Maintained
7089 F:      drivers/edac/i82975x_edac.c
7090
7091 EDAC-IE31200
7092 M:      Jason Baron <jbaron@akamai.com>
7093 L:      linux-edac@vger.kernel.org
7094 S:      Maintained
7095 F:      drivers/edac/ie31200_edac.c
7096
7097 EDAC-IGEN6
7098 M:      Tony Luck <tony.luck@intel.com>
7099 R:      Qiuxu Zhuo <qiuxu.zhuo@intel.com>
7100 L:      linux-edac@vger.kernel.org
7101 S:      Maintained
7102 F:      drivers/edac/igen6_edac.c
7103
7104 EDAC-MPC85XX
7105 M:      Johannes Thumshirn <morbidrsa@gmail.com>
7106 L:      linux-edac@vger.kernel.org
7107 S:      Maintained
7108 F:      drivers/edac/mpc85xx_edac.[ch]
7109
7110 EDAC-PASEMI
7111 M:      Egor Martovetsky <egor@pasemi.com>
7112 L:      linux-edac@vger.kernel.org
7113 S:      Maintained
7114 F:      drivers/edac/pasemi_edac.c
7115
7116 EDAC-PND2
7117 M:      Tony Luck <tony.luck@intel.com>
7118 L:      linux-edac@vger.kernel.org
7119 S:      Maintained
7120 F:      drivers/edac/pnd2_edac.[ch]
7121
7122 EDAC-QCOM
7123 M:      Channagoud Kadabi <ckadabi@codeaurora.org>
7124 M:      Venkata Narendra Kumar Gutta <vnkgutta@codeaurora.org>
7125 L:      linux-arm-msm@vger.kernel.org
7126 L:      linux-edac@vger.kernel.org
7127 S:      Maintained
7128 F:      drivers/edac/qcom_edac.c
7129
7130 EDAC-R82600
7131 M:      Tim Small <tim@buttersideup.com>
7132 L:      linux-edac@vger.kernel.org
7133 S:      Maintained
7134 F:      drivers/edac/r82600_edac.c
7135
7136 EDAC-SBRIDGE
7137 M:      Tony Luck <tony.luck@intel.com>
7138 R:      Qiuxu Zhuo <qiuxu.zhuo@intel.com>
7139 L:      linux-edac@vger.kernel.org
7140 S:      Maintained
7141 F:      drivers/edac/sb_edac.c
7142
7143 EDAC-SKYLAKE
7144 M:      Tony Luck <tony.luck@intel.com>
7145 L:      linux-edac@vger.kernel.org
7146 S:      Maintained
7147 F:      drivers/edac/skx_*.[ch]
7148
7149 EDAC-TI
7150 M:      Tero Kristo <kristo@kernel.org>
7151 L:      linux-edac@vger.kernel.org
7152 S:      Odd Fixes
7153 F:      drivers/edac/ti_edac.c
7154
7155 EDIROL UA-101/UA-1000 DRIVER
7156 M:      Clemens Ladisch <clemens@ladisch.de>
7157 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7158 S:      Maintained
7159 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
7160 F:      sound/usb/misc/ua101.c
7161
7162 EFI TEST DRIVER
7163 M:      Ivan Hu <ivan.hu@canonical.com>
7164 M:      Ard Biesheuvel <ardb@kernel.org>
7165 L:      linux-efi@vger.kernel.org
7166 S:      Maintained
7167 F:      drivers/firmware/efi/test/
7168
7169 EFI VARIABLE FILESYSTEM
7170 M:      Matthew Garrett <matthew.garrett@nebula.com>
7171 M:      Jeremy Kerr <jk@ozlabs.org>
7172 M:      Ard Biesheuvel <ardb@kernel.org>
7173 L:      linux-efi@vger.kernel.org
7174 S:      Maintained
7175 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
7176 F:      fs/efivarfs/
7177
7178 EFIFB FRAMEBUFFER DRIVER
7179 M:      Peter Jones <pjones@redhat.com>
7180 L:      linux-fbdev@vger.kernel.org
7181 S:      Maintained
7182 F:      drivers/video/fbdev/efifb.c
7183
7184 EFS FILESYSTEM
7185 S:      Orphan
7186 W:      http://aeschi.ch.eu.org/efs/
7187 F:      fs/efs/
7188
7189 EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
7190 M:      Douglas Miller <dougmill@linux.ibm.com>
7191 L:      netdev@vger.kernel.org
7192 S:      Maintained
7193 F:      drivers/net/ethernet/ibm/ehea/
7194
7195 EM28XX VIDEO4LINUX DRIVER
7196 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
7197 L:      linux-media@vger.kernel.org
7198 S:      Maintained
7199 W:      https://linuxtv.org
7200 T:      git git://linuxtv.org/media_tree.git
7201 F:      Documentation/admin-guide/media/em28xx*
7202 F:      drivers/media/usb/em28xx/
7203
7204 EMBEDDED LINUX
7205 M:      Matt Mackall <mpm@selenic.com>
7206 M:      David Woodhouse <dwmw2@infradead.org>
7207 L:      linux-embedded@vger.kernel.org
7208 S:      Maintained
7209
7210 EMMC CMDQ HOST CONTROLLER INTERFACE (CQHCI) DRIVER
7211 M:      Adrian Hunter <adrian.hunter@intel.com>
7212 M:      Ritesh Harjani <riteshh@codeaurora.org>
7213 M:      Asutosh Das <asutoshd@codeaurora.org>
7214 L:      linux-mmc@vger.kernel.org
7215 S:      Maintained
7216 F:      drivers/mmc/host/cqhci*
7217
7218 EMULEX 10Gbps iSCSI - OneConnect DRIVER
7219 M:      Ketan Mukadam <ketan.mukadam@broadcom.com>
7220 L:      linux-scsi@vger.kernel.org
7221 S:      Supported
7222 W:      http://www.broadcom.com
7223 F:      drivers/scsi/be2iscsi/
7224
7225 EMULEX 10Gbps NIC BE2, BE3-R, Lancer, Skyhawk-R DRIVER (be2net)
7226 M:      Ajit Khaparde <ajit.khaparde@broadcom.com>
7227 M:      Sriharsha Basavapatna <sriharsha.basavapatna@broadcom.com>
7228 M:      Somnath Kotur <somnath.kotur@broadcom.com>
7229 L:      netdev@vger.kernel.org
7230 S:      Supported
7231 W:      http://www.emulex.com
7232 F:      drivers/net/ethernet/emulex/benet/
7233
7234 EMULEX ONECONNECT ROCE DRIVER
7235 M:      Selvin Xavier <selvin.xavier@broadcom.com>
7236 L:      linux-rdma@vger.kernel.org
7237 S:      Odd Fixes
7238 W:      http://www.broadcom.com
7239 F:      drivers/infiniband/hw/ocrdma/
7240 F:      include/uapi/rdma/ocrdma-abi.h
7241
7242 EMULEX/BROADCOM LPFC FC/FCOE SCSI DRIVER
7243 M:      James Smart <james.smart@broadcom.com>
7244 M:      Dick Kennedy <dick.kennedy@broadcom.com>
7245 L:      linux-scsi@vger.kernel.org
7246 S:      Supported
7247 W:      http://www.broadcom.com
7248 F:      drivers/scsi/lpfc/
7249
7250 EMULEX/BROADCOM EFCT FC/FCOE SCSI TARGET DRIVER
7251 M:      James Smart <james.smart@broadcom.com>
7252 M:      Ram Vegesna <ram.vegesna@broadcom.com>
7253 L:      linux-scsi@vger.kernel.org
7254 L:      target-devel@vger.kernel.org
7255 S:      Supported
7256 W:      http://www.broadcom.com
7257 F:      drivers/scsi/elx/
7258
7259 ENE CB710 FLASH CARD READER DRIVER
7260 M:      Michał Mirosław <mirq-linux@rere.qmqm.pl>
7261 S:      Maintained
7262 F:      drivers/misc/cb710/
7263 F:      drivers/mmc/host/cb710-mmc.*
7264 F:      include/linux/cb710.h
7265
7266 ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
7267 M:      Maxim Levitsky <maximlevitsky@gmail.com>
7268 S:      Maintained
7269 F:      drivers/media/rc/ene_ir.*
7270
7271 EPAPR HYPERVISOR BYTE CHANNEL DEVICE DRIVER
7272 M:      Laurentiu Tudor <laurentiu.tudor@nxp.com>
7273 L:      linuxppc-dev@lists.ozlabs.org
7274 S:      Maintained
7275 F:      drivers/tty/ehv_bytechan.c
7276
7277 EPSON S1D13XXX FRAMEBUFFER DRIVER
7278 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
7279 S:      Maintained
7280 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
7281 F:      drivers/video/fbdev/s1d13xxxfb.c
7282 F:      include/video/s1d13xxxfb.h
7283
7284 EROFS FILE SYSTEM
7285 M:      Gao Xiang <xiang@kernel.org>
7286 M:      Chao Yu <chao@kernel.org>
7287 L:      linux-erofs@lists.ozlabs.org
7288 S:      Maintained
7289 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs.git
7290 F:      Documentation/filesystems/erofs.rst
7291 F:      fs/erofs/
7292 F:      include/trace/events/erofs.h
7293
7294 ERRSEQ ERROR TRACKING INFRASTRUCTURE
7295 M:      Jeff Layton <jlayton@kernel.org>
7296 S:      Maintained
7297 F:      include/linux/errseq.h
7298 F:      lib/errseq.c
7299
7300 ET131X NETWORK DRIVER
7301 M:      Mark Einon <mark.einon@gmail.com>
7302 S:      Odd Fixes
7303 F:      drivers/net/ethernet/agere/
7304
7305 ETAS ES58X CAN/USB DRIVER
7306 M:      Vincent Mailhol <mailhol.vincent@wanadoo.fr>
7307 L:      linux-can@vger.kernel.org
7308 S:      Maintained
7309 F:      drivers/net/can/usb/etas_es58x/
7310
7311 ETHERNET BRIDGE
7312 M:      Roopa Prabhu <roopa@nvidia.com>
7313 M:      Nikolay Aleksandrov <razor@blackwall.org>
7314 L:      bridge@lists.linux-foundation.org (moderated for non-subscribers)
7315 L:      netdev@vger.kernel.org
7316 S:      Maintained
7317 W:      http://www.linuxfoundation.org/en/Net:Bridge
7318 F:      include/linux/netfilter_bridge/
7319 F:      net/bridge/
7320
7321 ETHERNET PHY LIBRARY
7322 M:      Andrew Lunn <andrew@lunn.ch>
7323 M:      Heiner Kallweit <hkallweit1@gmail.com>
7324 R:      Russell King <linux@armlinux.org.uk>
7325 L:      netdev@vger.kernel.org
7326 S:      Maintained
7327 F:      Documentation/ABI/testing/sysfs-class-net-phydev
7328 F:      Documentation/devicetree/bindings/net/ethernet-phy.yaml
7329 F:      Documentation/devicetree/bindings/net/mdio*
7330 F:      Documentation/devicetree/bindings/net/qca,ar803x.yaml
7331 F:      Documentation/networking/phy.rst
7332 F:      drivers/net/mdio/
7333 F:      drivers/net/mdio/acpi_mdio.c
7334 F:      drivers/net/mdio/fwnode_mdio.c
7335 F:      drivers/net/mdio/of_mdio.c
7336 F:      drivers/net/pcs/
7337 F:      drivers/net/phy/
7338 F:      include/dt-bindings/net/qca-ar803x.h
7339 F:      include/linux/linkmode.h
7340 F:      include/linux/*mdio*.h
7341 F:      include/linux/mdio/*.h
7342 F:      include/linux/mii.h
7343 F:      include/linux/of_net.h
7344 F:      include/linux/phy.h
7345 F:      include/linux/phy_fixed.h
7346 F:      include/linux/platform_data/mdio-bcm-unimac.h
7347 F:      include/linux/platform_data/mdio-gpio.h
7348 F:      include/trace/events/mdio.h
7349 F:      include/uapi/linux/mdio.h
7350 F:      include/uapi/linux/mii.h
7351 F:      net/core/of_net.c
7352
7353 EXEC & BINFMT API
7354 R:      Eric Biederman <ebiederm@xmission.com>
7355 R:      Kees Cook <keescook@chromium.org>
7356 L:      linux-mm@kvack.org
7357 S:      Supported
7358 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/execve
7359 F:      arch/alpha/kernel/binfmt_loader.c
7360 F:      arch/x86/ia32/ia32_aout.c
7361 F:      fs/*binfmt_*.c
7362 F:      fs/exec.c
7363 F:      include/linux/binfmts.h
7364 F:      include/linux/elf.h
7365 F:      include/uapi/linux/binfmts.h
7366 F:      include/uapi/linux/elf.h
7367 F:      tools/testing/selftests/exec/
7368 N:      asm/elf.h
7369 N:      binfmt
7370
7371 EXFAT FILE SYSTEM
7372 M:      Namjae Jeon <linkinjeon@kernel.org>
7373 M:      Sungjong Seo <sj1557.seo@samsung.com>
7374 L:      linux-fsdevel@vger.kernel.org
7375 S:      Maintained
7376 F:      fs/exfat/
7377
7378 EXT2 FILE SYSTEM
7379 M:      Jan Kara <jack@suse.com>
7380 L:      linux-ext4@vger.kernel.org
7381 S:      Maintained
7382 F:      Documentation/filesystems/ext2.rst
7383 F:      fs/ext2/
7384 F:      include/linux/ext2*
7385
7386 EXT4 FILE SYSTEM
7387 M:      "Theodore Ts'o" <tytso@mit.edu>
7388 M:      Andreas Dilger <adilger.kernel@dilger.ca>
7389 L:      linux-ext4@vger.kernel.org
7390 S:      Maintained
7391 W:      http://ext4.wiki.kernel.org
7392 Q:      http://patchwork.ozlabs.org/project/linux-ext4/list/
7393 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tytso/ext4.git
7394 F:      Documentation/filesystems/ext4/
7395 F:      fs/ext4/
7396 F:      include/trace/events/ext4.h
7397
7398 Extended Verification Module (EVM)
7399 M:      Mimi Zohar <zohar@linux.ibm.com>
7400 L:      linux-integrity@vger.kernel.org
7401 S:      Supported
7402 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/zohar/linux-integrity.git
7403 F:      security/integrity/evm/
7404 F:      security/integrity/
7405
7406 EXTENSIBLE FIRMWARE INTERFACE (EFI)
7407 M:      Ard Biesheuvel <ardb@kernel.org>
7408 L:      linux-efi@vger.kernel.org
7409 S:      Maintained
7410 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
7411 F:      Documentation/admin-guide/efi-stub.rst
7412 F:      arch/*/include/asm/efi.h
7413 F:      arch/*/kernel/efi.c
7414 F:      arch/arm/boot/compressed/efi-header.S
7415 F:      arch/arm64/kernel/efi-entry.S
7416 F:      arch/x86/platform/efi/
7417 F:      drivers/firmware/efi/
7418 F:      include/linux/efi*.h
7419
7420 EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
7421 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
7422 M:      Chanwoo Choi <cw00.choi@samsung.com>
7423 L:      linux-kernel@vger.kernel.org
7424 S:      Maintained
7425 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git
7426 F:      Documentation/devicetree/bindings/extcon/
7427 F:      Documentation/firmware-guide/acpi/extcon-intel-int3496.rst
7428 F:      drivers/extcon/
7429 F:      include/linux/extcon.h
7430 F:      include/linux/extcon/
7431
7432 EXTRA BOOT CONFIG
7433 M:      Masami Hiramatsu <mhiramat@kernel.org>
7434 S:      Maintained
7435 F:      Documentation/admin-guide/bootconfig.rst
7436 F:      fs/proc/bootconfig.c
7437 F:      include/linux/bootconfig.h
7438 F:      lib/bootconfig.c
7439 F:      tools/bootconfig/*
7440 F:      tools/bootconfig/scripts/*
7441
7442 EXYNOS DP DRIVER
7443 M:      Jingoo Han <jingoohan1@gmail.com>
7444 L:      dri-devel@lists.freedesktop.org
7445 S:      Maintained
7446 F:      drivers/gpu/drm/exynos/exynos_dp*
7447
7448 EXYNOS SYSMMU (IOMMU) driver
7449 M:      Marek Szyprowski <m.szyprowski@samsung.com>
7450 L:      iommu@lists.linux-foundation.org
7451 S:      Maintained
7452 F:      drivers/iommu/exynos-iommu.c
7453
7454 F2FS FILE SYSTEM
7455 M:      Jaegeuk Kim <jaegeuk@kernel.org>
7456 M:      Chao Yu <chao@kernel.org>
7457 L:      linux-f2fs-devel@lists.sourceforge.net
7458 S:      Maintained
7459 W:      https://f2fs.wiki.kernel.org/
7460 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
7461 F:      Documentation/ABI/testing/sysfs-fs-f2fs
7462 F:      Documentation/filesystems/f2fs.rst
7463 F:      fs/f2fs/
7464 F:      include/linux/f2fs_fs.h
7465 F:      include/trace/events/f2fs.h
7466 F:      include/uapi/linux/f2fs.h
7467
7468 F71805F HARDWARE MONITORING DRIVER
7469 M:      Jean Delvare <jdelvare@suse.com>
7470 L:      linux-hwmon@vger.kernel.org
7471 S:      Maintained
7472 F:      Documentation/hwmon/f71805f.rst
7473 F:      drivers/hwmon/f71805f.c
7474
7475 FADDR2LINE
7476 M:      Josh Poimboeuf <jpoimboe@redhat.com>
7477 S:      Maintained
7478 F:      scripts/faddr2line
7479
7480 FAILOVER MODULE
7481 M:      Sridhar Samudrala <sridhar.samudrala@intel.com>
7482 L:      netdev@vger.kernel.org
7483 S:      Supported
7484 F:      Documentation/networking/failover.rst
7485 F:      include/net/failover.h
7486 F:      net/core/failover.c
7487
7488 FANOTIFY
7489 M:      Jan Kara <jack@suse.cz>
7490 R:      Amir Goldstein <amir73il@gmail.com>
7491 R:      Matthew Bobrowski <repnop@google.com>
7492 L:      linux-fsdevel@vger.kernel.org
7493 S:      Maintained
7494 F:      fs/notify/fanotify/
7495 F:      include/linux/fanotify.h
7496 F:      include/uapi/linux/fanotify.h
7497
7498 FARSYNC SYNCHRONOUS DRIVER
7499 M:      Kevin Curtis <kevin.curtis@farsite.co.uk>
7500 S:      Supported
7501 W:      http://www.farsite.co.uk/
7502 F:      drivers/net/wan/farsync.*
7503
7504 FAULT INJECTION SUPPORT
7505 M:      Akinobu Mita <akinobu.mita@gmail.com>
7506 S:      Supported
7507 F:      Documentation/fault-injection/
7508 F:      lib/fault-inject.c
7509
7510 FBTFT Framebuffer drivers
7511 L:      dri-devel@lists.freedesktop.org
7512 L:      linux-fbdev@vger.kernel.org
7513 S:      Orphan
7514 F:      drivers/staging/fbtft/
7515
7516 FC0011 TUNER DRIVER
7517 M:      Michael Buesch <m@bues.ch>
7518 L:      linux-media@vger.kernel.org
7519 S:      Maintained
7520 F:      drivers/media/tuners/fc0011.c
7521 F:      drivers/media/tuners/fc0011.h
7522
7523 FC2580 MEDIA DRIVER
7524 M:      Antti Palosaari <crope@iki.fi>
7525 L:      linux-media@vger.kernel.org
7526 S:      Maintained
7527 W:      https://linuxtv.org
7528 W:      http://palosaari.fi/linux/
7529 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7530 T:      git git://linuxtv.org/anttip/media_tree.git
7531 F:      drivers/media/tuners/fc2580*
7532
7533 FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
7534 M:      Hannes Reinecke <hare@suse.de>
7535 L:      linux-scsi@vger.kernel.org
7536 S:      Supported
7537 W:      www.Open-FCoE.org
7538 F:      drivers/scsi/fcoe/
7539 F:      drivers/scsi/libfc/
7540 F:      include/scsi/fc/
7541 F:      include/scsi/libfc.h
7542 F:      include/scsi/libfcoe.h
7543 F:      include/uapi/scsi/fc/
7544
7545 FILE LOCKING (flock() and fcntl()/lockf())
7546 M:      Jeff Layton <jlayton@kernel.org>
7547 L:      linux-fsdevel@vger.kernel.org
7548 S:      Maintained
7549 F:      fs/fcntl.c
7550 F:      fs/locks.c
7551 F:      include/linux/fcntl.h
7552 F:      include/uapi/linux/fcntl.h
7553
7554 FILESYSTEM DIRECT ACCESS (DAX)
7555 M:      Dan Williams <dan.j.williams@intel.com>
7556 R:      Matthew Wilcox <willy@infradead.org>
7557 R:      Jan Kara <jack@suse.cz>
7558 L:      linux-fsdevel@vger.kernel.org
7559 L:      nvdimm@lists.linux.dev
7560 S:      Supported
7561 F:      fs/dax.c
7562 F:      include/linux/dax.h
7563 F:      include/trace/events/fs_dax.h
7564
7565 FILESYSTEMS (VFS and infrastructure)
7566 M:      Alexander Viro <viro@zeniv.linux.org.uk>
7567 L:      linux-fsdevel@vger.kernel.org
7568 S:      Maintained
7569 F:      fs/*
7570 F:      include/linux/fs.h
7571 F:      include/linux/fs_types.h
7572 F:      include/uapi/linux/fs.h
7573 F:      include/uapi/linux/openat2.h
7574 X:      fs/io-wq.c
7575 X:      fs/io-wq.h
7576 X:      fs/io_uring.c
7577
7578 FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
7579 M:      Riku Voipio <riku.voipio@iki.fi>
7580 L:      linux-hwmon@vger.kernel.org
7581 S:      Maintained
7582 F:      drivers/hwmon/f75375s.c
7583 F:      include/linux/f75375s.h
7584
7585 FIREWIRE AUDIO DRIVERS and IEC 61883-1/6 PACKET STREAMING ENGINE
7586 M:      Clemens Ladisch <clemens@ladisch.de>
7587 M:      Takashi Sakamoto <o-takashi@sakamocchi.jp>
7588 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7589 S:      Maintained
7590 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
7591 F:      include/uapi/sound/firewire.h
7592 F:      sound/firewire/
7593
7594 FIREWIRE MEDIA DRIVERS (firedtv)
7595 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
7596 L:      linux-media@vger.kernel.org
7597 L:      linux1394-devel@lists.sourceforge.net
7598 S:      Maintained
7599 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
7600 F:      drivers/media/firewire/
7601
7602 FIREWIRE SBP-2 TARGET
7603 M:      Chris Boot <bootc@bootc.net>
7604 L:      linux-scsi@vger.kernel.org
7605 L:      target-devel@vger.kernel.org
7606 L:      linux1394-devel@lists.sourceforge.net
7607 S:      Maintained
7608 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
7609 F:      drivers/target/sbp/
7610
7611 FIREWIRE SUBSYSTEM
7612 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
7613 L:      linux1394-devel@lists.sourceforge.net
7614 S:      Maintained
7615 W:      http://ieee1394.wiki.kernel.org/
7616 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
7617 F:      drivers/firewire/
7618 F:      include/linux/firewire.h
7619 F:      include/uapi/linux/firewire*.h
7620 F:      tools/firewire/
7621
7622 FIRMWARE FRAMEWORK FOR ARMV8-A
7623 M:      Sudeep Holla <sudeep.holla@arm.com>
7624 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7625 S:      Maintained
7626 F:      drivers/firmware/arm_ffa/
7627 F:      include/linux/arm_ffa.h
7628
7629 FIRMWARE LOADER (request_firmware)
7630 M:      Luis Chamberlain <mcgrof@kernel.org>
7631 L:      linux-kernel@vger.kernel.org
7632 S:      Maintained
7633 F:      Documentation/firmware_class/
7634 F:      drivers/base/firmware_loader/
7635 F:      include/linux/firmware.h
7636
7637 FLEXTIMER FTM-QUADDEC DRIVER
7638 M:      Patrick Havelange <patrick.havelange@essensium.com>
7639 L:      linux-iio@vger.kernel.org
7640 S:      Maintained
7641 F:      Documentation/devicetree/bindings/counter/ftm-quaddec.txt
7642 F:      drivers/counter/ftm-quaddec.c
7643
7644 FLOPPY DRIVER
7645 M:      Denis Efremov <efremov@linux.com>
7646 L:      linux-block@vger.kernel.org
7647 S:      Odd Fixes
7648 F:      drivers/block/floppy.c
7649
7650 FLYSKY FSIA6B RC RECEIVER
7651 M:      Markus Koch <markus@notsyncing.net>
7652 L:      linux-input@vger.kernel.org
7653 S:      Maintained
7654 F:      drivers/input/joystick/fsia6b.c
7655
7656 FOCUSRITE SCARLETT GEN 2/3 MIXER DRIVER
7657 M:      Geoffrey D. Bennett <g@b4.vu>
7658 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7659 S:      Maintained
7660 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
7661 F:      sound/usb/mixer_scarlett_gen2.c
7662
7663 FORCEDETH GIGABIT ETHERNET DRIVER
7664 M:      Rain River <rain.1986.08.12@gmail.com>
7665 M:      Zhu Yanjun <zyjzyj2000@gmail.com>
7666 L:      netdev@vger.kernel.org
7667 S:      Maintained
7668 F:      drivers/net/ethernet/nvidia/*
7669
7670 FORTIFY_SOURCE
7671 M:      Kees Cook <keescook@chromium.org>
7672 L:      linux-hardening@vger.kernel.org
7673 S:      Supported
7674 F:      include/linux/fortify-string.h
7675 F:      lib/test_fortify/*
7676 F:      scripts/test_fortify.sh
7677 K:      \b__NO_FORTIFY\b
7678
7679 FPGA DFL DRIVERS
7680 M:      Wu Hao <hao.wu@intel.com>
7681 R:      Tom Rix <trix@redhat.com>
7682 L:      linux-fpga@vger.kernel.org
7683 S:      Maintained
7684 F:      Documentation/ABI/testing/sysfs-bus-dfl*
7685 F:      Documentation/fpga/dfl.rst
7686 F:      drivers/fpga/dfl*
7687 F:      drivers/uio/uio_dfl.c
7688 F:      include/linux/dfl.h
7689 F:      include/uapi/linux/fpga-dfl.h
7690
7691 FPGA MANAGER FRAMEWORK
7692 M:      Moritz Fischer <mdf@kernel.org>
7693 M:      Wu Hao <hao.wu@intel.com>
7694 M:      Xu Yilun <yilun.xu@intel.com>
7695 R:      Tom Rix <trix@redhat.com>
7696 L:      linux-fpga@vger.kernel.org
7697 S:      Maintained
7698 Q:      http://patchwork.kernel.org/project/linux-fpga/list/
7699 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mdf/linux-fpga.git
7700 F:      Documentation/devicetree/bindings/fpga/
7701 F:      Documentation/driver-api/fpga/
7702 F:      Documentation/fpga/
7703 F:      drivers/fpga/
7704 F:      include/linux/fpga/
7705
7706 FPU EMULATOR
7707 M:      Bill Metzenthen <billm@melbpc.org.au>
7708 S:      Maintained
7709 W:      http://floatingpoint.sourceforge.net/emulator/index.html
7710 F:      arch/x86/math-emu/
7711
7712 FRAMEBUFFER CORE
7713 M:      Daniel Vetter <daniel@ffwll.ch>
7714 F:      drivers/video/fbdev/core/
7715 S:      Odd Fixes
7716 T:      git git://anongit.freedesktop.org/drm/drm-misc
7717
7718 FRAMEBUFFER LAYER
7719 M:      Helge Deller <deller@gmx.de>
7720 L:      linux-fbdev@vger.kernel.org
7721 L:      dri-devel@lists.freedesktop.org
7722 S:      Maintained
7723 Q:      http://patchwork.kernel.org/project/linux-fbdev/list/
7724 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/deller/linux-fbdev.git
7725 F:      Documentation/fb/
7726 F:      drivers/video/
7727 F:      include/linux/fb.h
7728 F:      include/uapi/linux/fb.h
7729 F:      include/uapi/video/
7730 F:      include/video/
7731
7732 FREESCALE CAAM (Cryptographic Acceleration and Assurance Module) DRIVER
7733 M:      Horia Geantă <horia.geanta@nxp.com>
7734 M:      Pankaj Gupta <pankaj.gupta@nxp.com>
7735 M:      Gaurav Jain <gaurav.jain@nxp.com>
7736 L:      linux-crypto@vger.kernel.org
7737 S:      Maintained
7738 F:      Documentation/devicetree/bindings/crypto/fsl-sec4.txt
7739 F:      drivers/crypto/caam/
7740
7741 FREESCALE COLDFIRE M5441X MMC DRIVER
7742 M:      Angelo Dureghello <angelo.dureghello@timesys.com>
7743 L:      linux-mmc@vger.kernel.org
7744 S:      Maintained
7745 F:      drivers/mmc/host/sdhci-esdhc-mcf.c
7746 F:      include/linux/platform_data/mmc-esdhc-mcf.h
7747
7748 FREESCALE DIU FRAMEBUFFER DRIVER
7749 M:      Timur Tabi <timur@kernel.org>
7750 L:      linux-fbdev@vger.kernel.org
7751 S:      Maintained
7752 F:      drivers/video/fbdev/fsl-diu-fb.*
7753
7754 FREESCALE DMA DRIVER
7755 M:      Li Yang <leoyang.li@nxp.com>
7756 M:      Zhang Wei <zw@zh-kernel.org>
7757 L:      linuxppc-dev@lists.ozlabs.org
7758 S:      Maintained
7759 F:      drivers/dma/fsldma.*
7760
7761 FREESCALE DSPI DRIVER
7762 M:      Vladimir Oltean <olteanv@gmail.com>
7763 L:      linux-spi@vger.kernel.org
7764 S:      Maintained
7765 F:      Documentation/devicetree/bindings/spi/spi-fsl-dspi.txt
7766 F:      drivers/spi/spi-fsl-dspi.c
7767 F:      include/linux/spi/spi-fsl-dspi.h
7768
7769 FREESCALE ENETC ETHERNET DRIVERS
7770 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
7771 L:      netdev@vger.kernel.org
7772 S:      Maintained
7773 F:      drivers/net/ethernet/freescale/enetc/
7774
7775 FREESCALE eTSEC ETHERNET DRIVER (GIANFAR)
7776 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
7777 L:      netdev@vger.kernel.org
7778 S:      Maintained
7779 F:      Documentation/devicetree/bindings/net/fsl-tsec-phy.txt
7780 F:      drivers/net/ethernet/freescale/gianfar*
7781
7782 FREESCALE GPMI NAND DRIVER
7783 M:      Han Xu <han.xu@nxp.com>
7784 L:      linux-mtd@lists.infradead.org
7785 S:      Maintained
7786 F:      drivers/mtd/nand/raw/gpmi-nand/*
7787
7788 FREESCALE I2C CPM DRIVER
7789 M:      Jochen Friedrich <jochen@scram.de>
7790 L:      linuxppc-dev@lists.ozlabs.org
7791 L:      linux-i2c@vger.kernel.org
7792 S:      Maintained
7793 F:      drivers/i2c/busses/i2c-cpm.c
7794
7795 FREESCALE IMX / MXC FEC DRIVER
7796 M:      Joakim Zhang <qiangqing.zhang@nxp.com>
7797 L:      netdev@vger.kernel.org
7798 S:      Maintained
7799 F:      Documentation/devicetree/bindings/net/fsl,fec.yaml
7800 F:      drivers/net/ethernet/freescale/fec.h
7801 F:      drivers/net/ethernet/freescale/fec_main.c
7802 F:      drivers/net/ethernet/freescale/fec_ptp.c
7803
7804 FREESCALE IMX / MXC FRAMEBUFFER DRIVER
7805 M:      Sascha Hauer <s.hauer@pengutronix.de>
7806 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
7807 L:      linux-fbdev@vger.kernel.org
7808 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7809 S:      Maintained
7810 F:      drivers/video/fbdev/imxfb.c
7811 F:      include/linux/platform_data/video-imxfb.h
7812
7813 FREESCALE IMX DDR PMU DRIVER
7814 M:      Frank Li <Frank.li@nxp.com>
7815 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7816 S:      Maintained
7817 F:      Documentation/admin-guide/perf/imx-ddr.rst
7818 F:      Documentation/devicetree/bindings/perf/fsl-imx-ddr.yaml
7819 F:      drivers/perf/fsl_imx8_ddr_perf.c
7820
7821 FREESCALE IMX I2C DRIVER
7822 M:      Oleksij Rempel <o.rempel@pengutronix.de>
7823 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
7824 L:      linux-i2c@vger.kernel.org
7825 S:      Maintained
7826 F:      Documentation/devicetree/bindings/i2c/i2c-imx.yaml
7827 F:      drivers/i2c/busses/i2c-imx.c
7828
7829 FREESCALE IMX LPI2C DRIVER
7830 M:      Dong Aisheng <aisheng.dong@nxp.com>
7831 L:      linux-i2c@vger.kernel.org
7832 L:      linux-imx@nxp.com
7833 S:      Maintained
7834 F:      Documentation/devicetree/bindings/i2c/i2c-imx-lpi2c.yaml
7835 F:      drivers/i2c/busses/i2c-imx-lpi2c.c
7836
7837 FREESCALE MPC I2C DRIVER
7838 M:      Chris Packham <chris.packham@alliedtelesis.co.nz>
7839 L:      linux-i2c@vger.kernel.org
7840 S:      Maintained
7841 F:      Documentation/devicetree/bindings/i2c/i2c-mpc.yaml
7842 F:      drivers/i2c/busses/i2c-mpc.c
7843
7844 FREESCALE QORIQ DPAA ETHERNET DRIVER
7845 M:      Madalin Bucur <madalin.bucur@nxp.com>
7846 L:      netdev@vger.kernel.org
7847 S:      Maintained
7848 F:      drivers/net/ethernet/freescale/dpaa
7849
7850 FREESCALE QORIQ DPAA FMAN DRIVER
7851 M:      Madalin Bucur <madalin.bucur@nxp.com>
7852 L:      netdev@vger.kernel.org
7853 S:      Maintained
7854 F:      Documentation/devicetree/bindings/net/fsl-fman.txt
7855 F:      drivers/net/ethernet/freescale/fman
7856
7857 FREESCALE QORIQ PTP CLOCK DRIVER
7858 M:      Yangbo Lu <yangbo.lu@nxp.com>
7859 L:      netdev@vger.kernel.org
7860 S:      Maintained
7861 F:      Documentation/devicetree/bindings/ptp/ptp-qoriq.txt
7862 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-ptp*
7863 F:      drivers/net/ethernet/freescale/dpaa2/dprtc*
7864 F:      drivers/net/ethernet/freescale/enetc/enetc_ptp.c
7865 F:      drivers/ptp/ptp_qoriq.c
7866 F:      drivers/ptp/ptp_qoriq_debugfs.c
7867 F:      include/linux/fsl/ptp_qoriq.h
7868
7869 FREESCALE QUAD SPI DRIVER
7870 M:      Han Xu <han.xu@nxp.com>
7871 L:      linux-spi@vger.kernel.org
7872 S:      Maintained
7873 F:      Documentation/devicetree/bindings/spi/fsl,spi-fsl-qspi.yaml
7874 F:      drivers/spi/spi-fsl-qspi.c
7875
7876 FREESCALE QUICC ENGINE LIBRARY
7877 M:      Qiang Zhao <qiang.zhao@nxp.com>
7878 L:      linuxppc-dev@lists.ozlabs.org
7879 S:      Maintained
7880 F:      drivers/soc/fsl/qe/
7881 F:      include/soc/fsl/qe/
7882
7883 FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
7884 M:      Li Yang <leoyang.li@nxp.com>
7885 L:      netdev@vger.kernel.org
7886 L:      linuxppc-dev@lists.ozlabs.org
7887 S:      Maintained
7888 F:      drivers/net/ethernet/freescale/ucc_geth*
7889
7890 FREESCALE QUICC ENGINE UCC HDLC DRIVER
7891 M:      Zhao Qiang <qiang.zhao@nxp.com>
7892 L:      netdev@vger.kernel.org
7893 L:      linuxppc-dev@lists.ozlabs.org
7894 S:      Maintained
7895 F:      drivers/net/wan/fsl_ucc_hdlc*
7896
7897 FREESCALE QUICC ENGINE UCC UART DRIVER
7898 M:      Timur Tabi <timur@kernel.org>
7899 L:      linuxppc-dev@lists.ozlabs.org
7900 S:      Maintained
7901 F:      drivers/tty/serial/ucc_uart.c
7902
7903 FREESCALE SOC DRIVERS
7904 M:      Li Yang <leoyang.li@nxp.com>
7905 L:      linuxppc-dev@lists.ozlabs.org
7906 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7907 S:      Maintained
7908 F:      Documentation/devicetree/bindings/misc/fsl,dpaa2-console.yaml
7909 F:      Documentation/devicetree/bindings/soc/fsl/
7910 F:      drivers/soc/fsl/
7911 F:      include/linux/fsl/
7912 F:      include/soc/fsl/
7913
7914 FREESCALE SOC FS_ENET DRIVER
7915 M:      Pantelis Antoniou <pantelis.antoniou@gmail.com>
7916 L:      linuxppc-dev@lists.ozlabs.org
7917 L:      netdev@vger.kernel.org
7918 S:      Maintained
7919 F:      drivers/net/ethernet/freescale/fs_enet/
7920 F:      include/linux/fs_enet_pd.h
7921
7922 FREESCALE SOC SOUND DRIVERS
7923 M:      Shengjiu Wang <shengjiu.wang@gmail.com>
7924 M:      Xiubo Li <Xiubo.Lee@gmail.com>
7925 R:      Fabio Estevam <festevam@gmail.com>
7926 R:      Nicolin Chen <nicoleotsuka@gmail.com>
7927 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7928 L:      linuxppc-dev@lists.ozlabs.org
7929 S:      Maintained
7930 F:      sound/soc/fsl/fsl*
7931 F:      sound/soc/fsl/imx*
7932 F:      sound/soc/fsl/mpc8610_hpcd.c
7933
7934 FREESCALE USB PERIPHERAL DRIVERS
7935 M:      Li Yang <leoyang.li@nxp.com>
7936 L:      linux-usb@vger.kernel.org
7937 L:      linuxppc-dev@lists.ozlabs.org
7938 S:      Maintained
7939 F:      drivers/usb/gadget/udc/fsl*
7940
7941 FREESCALE USB PHY DRIVER
7942 M:      Ran Wang <ran.wang_1@nxp.com>
7943 L:      linux-usb@vger.kernel.org
7944 L:      linuxppc-dev@lists.ozlabs.org
7945 S:      Maintained
7946 F:      drivers/usb/phy/phy-fsl-usb*
7947
7948 FREEVXFS FILESYSTEM
7949 M:      Christoph Hellwig <hch@infradead.org>
7950 S:      Maintained
7951 W:      ftp://ftp.openlinux.org/pub/people/hch/vxfs
7952 F:      fs/freevxfs/
7953
7954 FREEZER
7955 M:      "Rafael J. Wysocki" <rafael@kernel.org>
7956 M:      Pavel Machek <pavel@ucw.cz>
7957 L:      linux-pm@vger.kernel.org
7958 S:      Supported
7959 F:      Documentation/power/freezing-of-tasks.rst
7960 F:      include/linux/freezer.h
7961 F:      kernel/freezer.c
7962
7963 FRONTSWAP API
7964 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
7965 L:      linux-kernel@vger.kernel.org
7966 S:      Maintained
7967 F:      include/linux/frontswap.h
7968 F:      mm/frontswap.c
7969
7970 FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
7971 M:      David Howells <dhowells@redhat.com>
7972 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
7973 S:      Supported
7974 F:      Documentation/filesystems/caching/
7975 F:      fs/fscache/
7976 F:      include/linux/fscache*.h
7977
7978 FSCRYPT: FILE SYSTEM LEVEL ENCRYPTION SUPPORT
7979 M:      Theodore Y. Ts'o <tytso@mit.edu>
7980 M:      Jaegeuk Kim <jaegeuk@kernel.org>
7981 M:      Eric Biggers <ebiggers@kernel.org>
7982 L:      linux-fscrypt@vger.kernel.org
7983 S:      Supported
7984 Q:      https://patchwork.kernel.org/project/linux-fscrypt/list/
7985 T:      git git://git.kernel.org/pub/scm/fs/fscrypt/fscrypt.git
7986 F:      Documentation/filesystems/fscrypt.rst
7987 F:      fs/crypto/
7988 F:      include/linux/fscrypt*.h
7989 F:      include/uapi/linux/fscrypt.h
7990
7991 FSI SUBSYSTEM
7992 M:      Jeremy Kerr <jk@ozlabs.org>
7993 M:      Joel Stanley <joel@jms.id.au>
7994 R:      Alistar Popple <alistair@popple.id.au>
7995 R:      Eddie James <eajames@linux.ibm.com>
7996 L:      linux-fsi@lists.ozlabs.org
7997 S:      Supported
7998 Q:      http://patchwork.ozlabs.org/project/linux-fsi/list/
7999 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joel/fsi.git
8000 F:      drivers/fsi/
8001 F:      include/linux/fsi*.h
8002 F:      include/trace/events/fsi*.h
8003
8004 FSI-ATTACHED I2C DRIVER
8005 M:      Eddie James <eajames@linux.ibm.com>
8006 L:      linux-i2c@vger.kernel.org
8007 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
8008 S:      Maintained
8009 F:      Documentation/devicetree/bindings/i2c/i2c-fsi.txt
8010 F:      drivers/i2c/busses/i2c-fsi.c
8011
8012 FSI-ATTACHED SPI DRIVER
8013 M:      Eddie James <eajames@linux.ibm.com>
8014 L:      linux-spi@vger.kernel.org
8015 S:      Maintained
8016 F:      Documentation/devicetree/bindings/fsi/ibm,fsi2spi.yaml
8017 F:      drivers/spi/spi-fsi.c
8018
8019 FSNOTIFY: FILESYSTEM NOTIFICATION INFRASTRUCTURE
8020 M:      Jan Kara <jack@suse.cz>
8021 R:      Amir Goldstein <amir73il@gmail.com>
8022 L:      linux-fsdevel@vger.kernel.org
8023 S:      Maintained
8024 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jack/linux-fs.git fsnotify
8025 F:      fs/notify/
8026 F:      include/linux/fsnotify*.h
8027
8028 FSVERITY: READ-ONLY FILE-BASED AUTHENTICITY PROTECTION
8029 M:      Eric Biggers <ebiggers@kernel.org>
8030 M:      Theodore Y. Ts'o <tytso@mit.edu>
8031 L:      linux-fscrypt@vger.kernel.org
8032 S:      Supported
8033 Q:      https://patchwork.kernel.org/project/linux-fscrypt/list/
8034 T:      git git://git.kernel.org/pub/scm/fs/fscrypt/fscrypt.git fsverity
8035 F:      Documentation/filesystems/fsverity.rst
8036 F:      fs/verity/
8037 F:      include/linux/fsverity.h
8038 F:      include/uapi/linux/fsverity.h
8039
8040 FT260 FTDI USB-HID TO I2C BRIDGE DRIVER
8041 M:      Michael Zaidman <michael.zaidman@gmail.com>
8042 L:      linux-i2c@vger.kernel.org
8043 L:      linux-input@vger.kernel.org
8044 S:      Maintained
8045 F:      drivers/hid/hid-ft260.c
8046
8047 FUJITSU LAPTOP EXTRAS
8048 M:      Jonathan Woithe <jwoithe@just42.net>
8049 L:      platform-driver-x86@vger.kernel.org
8050 S:      Maintained
8051 F:      drivers/platform/x86/fujitsu-laptop.c
8052
8053 FUJITSU M-5MO LS CAMERA ISP DRIVER
8054 M:      Kyungmin Park <kyungmin.park@samsung.com>
8055 M:      Heungjun Kim <riverful.kim@samsung.com>
8056 L:      linux-media@vger.kernel.org
8057 S:      Maintained
8058 F:      drivers/media/i2c/m5mols/
8059 F:      include/media/i2c/m5mols.h
8060
8061 FUJITSU TABLET EXTRAS
8062 M:      Robert Gerlach <khnz@gmx.de>
8063 L:      platform-driver-x86@vger.kernel.org
8064 S:      Maintained
8065 F:      drivers/platform/x86/fujitsu-tablet.c
8066
8067 FUNGIBLE ETHERNET DRIVERS
8068 M:      Dimitris Michailidis <dmichail@fungible.com>
8069 L:      netdev@vger.kernel.org
8070 S:      Supported
8071 F:      drivers/net/ethernet/fungible/
8072
8073 FUSE: FILESYSTEM IN USERSPACE
8074 M:      Miklos Szeredi <miklos@szeredi.hu>
8075 L:      linux-fsdevel@vger.kernel.org
8076 S:      Maintained
8077 W:      https://github.com/libfuse/
8078 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse.git
8079 F:      Documentation/filesystems/fuse.rst
8080 F:      fs/fuse/
8081 F:      include/uapi/linux/fuse.h
8082
8083 FUTEX SUBSYSTEM
8084 M:      Thomas Gleixner <tglx@linutronix.de>
8085 M:      Ingo Molnar <mingo@redhat.com>
8086 R:      Peter Zijlstra <peterz@infradead.org>
8087 R:      Darren Hart <dvhart@infradead.org>
8088 R:      Davidlohr Bueso <dave@stgolabs.net>
8089 R:      André Almeida <andrealmeid@collabora.com>
8090 L:      linux-kernel@vger.kernel.org
8091 S:      Maintained
8092 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
8093 F:      Documentation/locking/*futex*
8094 F:      include/asm-generic/futex.h
8095 F:      include/linux/futex.h
8096 F:      include/uapi/linux/futex.h
8097 F:      kernel/futex/*
8098 F:      tools/perf/bench/futex*
8099 F:      tools/testing/selftests/futex/
8100
8101 GATEWORKS SYSTEM CONTROLLER (GSC) DRIVER
8102 M:      Tim Harvey <tharvey@gateworks.com>
8103 M:      Robert Jones <rjones@gateworks.com>
8104 S:      Maintained
8105 F:      Documentation/devicetree/bindings/mfd/gateworks-gsc.yaml
8106 F:      drivers/mfd/gateworks-gsc.c
8107 F:      include/linux/mfd/gsc.h
8108 F:      Documentation/hwmon/gsc-hwmon.rst
8109 F:      drivers/hwmon/gsc-hwmon.c
8110 F:      include/linux/platform_data/gsc_hwmon.h
8111
8112 GCC PLUGINS
8113 M:      Kees Cook <keescook@chromium.org>
8114 L:      linux-hardening@vger.kernel.org
8115 S:      Maintained
8116 F:      Documentation/kbuild/gcc-plugins.rst
8117 F:      scripts/Makefile.gcc-plugins
8118 F:      scripts/gcc-plugins/
8119
8120 GCOV BASED KERNEL PROFILING
8121 M:      Peter Oberparleiter <oberpar@linux.ibm.com>
8122 S:      Maintained
8123 F:      Documentation/dev-tools/gcov.rst
8124 F:      kernel/gcov/
8125
8126 GDB KERNEL DEBUGGING HELPER SCRIPTS
8127 M:      Jan Kiszka <jan.kiszka@siemens.com>
8128 M:      Kieran Bingham <kbingham@kernel.org>
8129 S:      Supported
8130 F:      scripts/gdb/
8131
8132 GEMINI CRYPTO DRIVER
8133 M:      Corentin Labbe <clabbe@baylibre.com>
8134 L:      linux-crypto@vger.kernel.org
8135 S:      Maintained
8136 F:      drivers/crypto/gemini/
8137
8138 GEMTEK FM RADIO RECEIVER DRIVER
8139 M:      Hans Verkuil <hverkuil@xs4all.nl>
8140 L:      linux-media@vger.kernel.org
8141 S:      Maintained
8142 W:      https://linuxtv.org
8143 T:      git git://linuxtv.org/media_tree.git
8144 F:      drivers/media/radio/radio-gemtek*
8145
8146 GENERIC ARCHITECTURE TOPOLOGY
8147 M:      Sudeep Holla <sudeep.holla@arm.com>
8148 L:      linux-kernel@vger.kernel.org
8149 S:      Maintained
8150 F:      drivers/base/arch_topology.c
8151 F:      include/linux/arch_topology.h
8152
8153 GENERIC ENTRY CODE
8154 M:      Thomas Gleixner <tglx@linutronix.de>
8155 M:      Peter Zijlstra <peterz@infradead.org>
8156 M:      Andy Lutomirski <luto@kernel.org>
8157 L:      linux-kernel@vger.kernel.org
8158 S:      Maintained
8159 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/entry
8160 F:      include/linux/entry-common.h
8161 F:      include/linux/entry-kvm.h
8162 F:      kernel/entry/
8163
8164 GENERIC GPIO I2C DRIVER
8165 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
8166 S:      Supported
8167 F:      drivers/i2c/busses/i2c-gpio.c
8168 F:      include/linux/platform_data/i2c-gpio.h
8169
8170 GENERIC GPIO I2C MULTIPLEXER DRIVER
8171 M:      Peter Korsgaard <peter.korsgaard@barco.com>
8172 L:      linux-i2c@vger.kernel.org
8173 S:      Supported
8174 F:      Documentation/i2c/muxes/i2c-mux-gpio.rst
8175 F:      drivers/i2c/muxes/i2c-mux-gpio.c
8176 F:      include/linux/platform_data/i2c-mux-gpio.h
8177
8178 GENERIC HDLC (WAN) DRIVERS
8179 M:      Krzysztof Halasa <khc@pm.waw.pl>
8180 S:      Maintained
8181 W:      http://www.kernel.org/pub/linux/utils/net/hdlc/
8182 F:      drivers/net/wan/c101.c
8183 F:      drivers/net/wan/hd6457*
8184 F:      drivers/net/wan/hdlc*
8185 F:      drivers/net/wan/n2.c
8186 F:      drivers/net/wan/pc300too.c
8187 F:      drivers/net/wan/pci200syn.c
8188 F:      drivers/net/wan/wanxl*
8189
8190 GENERIC INCLUDE/ASM HEADER FILES
8191 M:      Arnd Bergmann <arnd@arndb.de>
8192 L:      linux-arch@vger.kernel.org
8193 S:      Maintained
8194 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
8195 F:      include/asm-generic/
8196 F:      include/uapi/asm-generic/
8197
8198 GENERIC PHY FRAMEWORK
8199 M:      Kishon Vijay Abraham I <kishon@ti.com>
8200 M:      Vinod Koul <vkoul@kernel.org>
8201 L:      linux-phy@lists.infradead.org
8202 S:      Supported
8203 Q:      https://patchwork.kernel.org/project/linux-phy/list/
8204 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/phy/linux-phy.git
8205 F:      Documentation/devicetree/bindings/phy/
8206 F:      drivers/phy/
8207 F:      include/linux/phy/
8208
8209 GENERIC PINCTRL I2C DEMULTIPLEXER DRIVER
8210 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
8211 S:      Supported
8212 F:      drivers/i2c/muxes/i2c-demux-pinctrl.c
8213
8214 GENERIC PM DOMAINS
8215 M:      "Rafael J. Wysocki" <rafael@kernel.org>
8216 M:      Kevin Hilman <khilman@kernel.org>
8217 M:      Ulf Hansson <ulf.hansson@linaro.org>
8218 L:      linux-pm@vger.kernel.org
8219 S:      Supported
8220 F:      Documentation/devicetree/bindings/power/power?domain*
8221 F:      drivers/base/power/domain*.c
8222 F:      include/linux/pm_domain.h
8223
8224 GENERIC RESISTIVE TOUCHSCREEN ADC DRIVER
8225 M:      Eugen Hristev <eugen.hristev@microchip.com>
8226 L:      linux-input@vger.kernel.org
8227 S:      Maintained
8228 F:      drivers/input/touchscreen/resistive-adc-touch.c
8229
8230 GENERIC STRING LIBRARY
8231 R:      Andy Shevchenko <andy@kernel.org>
8232 S:      Maintained
8233 F:      lib/string.c
8234 F:      lib/string_helpers.c
8235 F:      lib/test_string.c
8236 F:      lib/test-string_helpers.c
8237
8238 GENERIC UIO DRIVER FOR PCI DEVICES
8239 M:      "Michael S. Tsirkin" <mst@redhat.com>
8240 L:      kvm@vger.kernel.org
8241 S:      Supported
8242 F:      drivers/uio/uio_pci_generic.c
8243
8244 GENERIC VDSO LIBRARY
8245 M:      Andy Lutomirski <luto@kernel.org>
8246 M:      Thomas Gleixner <tglx@linutronix.de>
8247 M:      Vincenzo Frascino <vincenzo.frascino@arm.com>
8248 L:      linux-kernel@vger.kernel.org
8249 S:      Maintained
8250 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/vdso
8251 F:      include/asm-generic/vdso/vsyscall.h
8252 F:      include/vdso/
8253 F:      kernel/time/vsyscall.c
8254 F:      lib/vdso/
8255
8256 GENWQE (IBM Generic Workqueue Card)
8257 M:      Frank Haverkamp <haver@linux.ibm.com>
8258 S:      Supported
8259 F:      drivers/misc/genwqe/
8260
8261 GET_MAINTAINER SCRIPT
8262 M:      Joe Perches <joe@perches.com>
8263 S:      Maintained
8264 F:      scripts/get_maintainer.pl
8265
8266 GFS2 FILE SYSTEM
8267 M:      Bob Peterson <rpeterso@redhat.com>
8268 M:      Andreas Gruenbacher <agruenba@redhat.com>
8269 L:      cluster-devel@redhat.com
8270 S:      Supported
8271 B:      https://bugzilla.kernel.org/enter_bug.cgi?product=File%20System&component=gfs2
8272 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git
8273 F:      Documentation/filesystems/gfs2*
8274 F:      fs/gfs2/
8275 F:      include/uapi/linux/gfs2_ondisk.h
8276
8277 GIGABYTE WMI DRIVER
8278 M:      Thomas Weißschuh <thomas@weissschuh.net>
8279 L:      platform-driver-x86@vger.kernel.org
8280 S:      Maintained
8281 F:      drivers/platform/x86/gigabyte-wmi.c
8282
8283 GNSS SUBSYSTEM
8284 M:      Johan Hovold <johan@kernel.org>
8285 S:      Maintained
8286 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/gnss.git
8287 F:      Documentation/ABI/testing/sysfs-class-gnss
8288 F:      Documentation/devicetree/bindings/gnss/
8289 F:      drivers/gnss/
8290 F:      include/linux/gnss.h
8291
8292 GO7007 MPEG CODEC
8293 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
8294 L:      linux-media@vger.kernel.org
8295 S:      Maintained
8296 F:      drivers/media/usb/go7007/
8297
8298 GOODIX TOUCHSCREEN
8299 M:      Bastien Nocera <hadess@hadess.net>
8300 M:      Hans de Goede <hdegoede@redhat.com>
8301 L:      linux-input@vger.kernel.org
8302 S:      Maintained
8303 F:      drivers/input/touchscreen/goodix*
8304
8305 GOOGLE ETHERNET DRIVERS
8306 M:      Jeroen de Borst <jeroendb@google.com>
8307 R:      Catherine Sullivan <csully@google.com>
8308 R:      David Awogbemila <awogbemila@google.com>
8309 L:      netdev@vger.kernel.org
8310 S:      Supported
8311 F:      Documentation/networking/device_drivers/ethernet/google/gve.rst
8312 F:      drivers/net/ethernet/google
8313
8314 GPD POCKET FAN DRIVER
8315 M:      Hans de Goede <hdegoede@redhat.com>
8316 L:      platform-driver-x86@vger.kernel.org
8317 S:      Maintained
8318 F:      drivers/platform/x86/gpd-pocket-fan.c
8319
8320 GPIO ACPI SUPPORT
8321 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
8322 M:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
8323 L:      linux-gpio@vger.kernel.org
8324 L:      linux-acpi@vger.kernel.org
8325 S:      Maintained
8326 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
8327 F:      Documentation/firmware-guide/acpi/gpio-properties.rst
8328 F:      drivers/gpio/gpiolib-acpi.c
8329 F:      drivers/gpio/gpiolib-acpi.h
8330
8331 GPIO AGGREGATOR
8332 M:      Geert Uytterhoeven <geert+renesas@glider.be>
8333 L:      linux-gpio@vger.kernel.org
8334 S:      Supported
8335 F:      Documentation/admin-guide/gpio/gpio-aggregator.rst
8336 F:      drivers/gpio/gpio-aggregator.c
8337
8338 GPIO IR Transmitter
8339 M:      Sean Young <sean@mess.org>
8340 L:      linux-media@vger.kernel.org
8341 S:      Maintained
8342 F:      drivers/media/rc/gpio-ir-tx.c
8343
8344 GPIO MOCKUP DRIVER
8345 M:      Bamvor Jian Zhang <bamv2005@gmail.com>
8346 L:      linux-gpio@vger.kernel.org
8347 S:      Maintained
8348 F:      drivers/gpio/gpio-mockup.c
8349 F:      tools/testing/selftests/gpio/
8350
8351 GPIO REGMAP
8352 R:      Michael Walle <michael@walle.cc>
8353 S:      Maintained
8354 F:      drivers/gpio/gpio-regmap.c
8355 F:      include/linux/gpio/regmap.h
8356
8357 GPIO SUBSYSTEM
8358 M:      Linus Walleij <linus.walleij@linaro.org>
8359 M:      Bartosz Golaszewski <brgl@bgdev.pl>
8360 L:      linux-gpio@vger.kernel.org
8361 S:      Maintained
8362 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio.git
8363 F:      Documentation/ABI/obsolete/sysfs-gpio
8364 F:      Documentation/ABI/testing/gpio-cdev
8365 F:      Documentation/admin-guide/gpio/
8366 F:      Documentation/devicetree/bindings/gpio/
8367 F:      Documentation/driver-api/gpio/
8368 F:      drivers/gpio/
8369 F:      include/asm-generic/gpio.h
8370 F:      include/linux/gpio.h
8371 F:      include/linux/gpio/
8372 F:      include/linux/of_gpio.h
8373 F:      include/uapi/linux/gpio.h
8374 F:      tools/gpio/
8375
8376 GRE DEMULTIPLEXER DRIVER
8377 M:      Dmitry Kozlov <xeb@mail.ru>
8378 L:      netdev@vger.kernel.org
8379 S:      Maintained
8380 F:      include/net/gre.h
8381 F:      net/ipv4/gre_demux.c
8382 F:      net/ipv4/gre_offload.c
8383
8384 GRETH 10/100/1G Ethernet MAC device driver
8385 M:      Andreas Larsson <andreas@gaisler.com>
8386 L:      netdev@vger.kernel.org
8387 S:      Maintained
8388 F:      drivers/net/ethernet/aeroflex/
8389
8390 GREYBUS AUDIO PROTOCOLS DRIVERS
8391 M:      Vaibhav Agarwal <vaibhav.sr@gmail.com>
8392 M:      Mark Greer <mgreer@animalcreek.com>
8393 S:      Maintained
8394 F:      drivers/staging/greybus/audio_apbridgea.c
8395 F:      drivers/staging/greybus/audio_apbridgea.h
8396 F:      drivers/staging/greybus/audio_codec.c
8397 F:      drivers/staging/greybus/audio_codec.h
8398 F:      drivers/staging/greybus/audio_gb.c
8399 F:      drivers/staging/greybus/audio_manager.c
8400 F:      drivers/staging/greybus/audio_manager.h
8401 F:      drivers/staging/greybus/audio_manager_module.c
8402 F:      drivers/staging/greybus/audio_manager_private.h
8403 F:      drivers/staging/greybus/audio_manager_sysfs.c
8404 F:      drivers/staging/greybus/audio_module.c
8405 F:      drivers/staging/greybus/audio_topology.c
8406
8407 GREYBUS FW/HID/SPI PROTOCOLS DRIVERS
8408 M:      Viresh Kumar <vireshk@kernel.org>
8409 S:      Maintained
8410 F:      drivers/staging/greybus/authentication.c
8411 F:      drivers/staging/greybus/bootrom.c
8412 F:      drivers/staging/greybus/firmware.h
8413 F:      drivers/staging/greybus/fw-core.c
8414 F:      drivers/staging/greybus/fw-download.c
8415 F:      drivers/staging/greybus/fw-management.c
8416 F:      drivers/staging/greybus/greybus_authentication.h
8417 F:      drivers/staging/greybus/greybus_firmware.h
8418 F:      drivers/staging/greybus/hid.c
8419 F:      drivers/staging/greybus/i2c.c
8420 F:      drivers/staging/greybus/spi.c
8421 F:      drivers/staging/greybus/spilib.c
8422 F:      drivers/staging/greybus/spilib.h
8423
8424 GREYBUS LOOPBACK DRIVER
8425 M:      Bryan O'Donoghue <pure.logic@nexus-software.ie>
8426 S:      Maintained
8427 F:      drivers/staging/greybus/loopback.c
8428
8429 GREYBUS PLATFORM DRIVERS
8430 M:      Vaibhav Hiremath <hvaibhav.linux@gmail.com>
8431 S:      Maintained
8432 F:      drivers/staging/greybus/arche-apb-ctrl.c
8433 F:      drivers/staging/greybus/arche-platform.c
8434 F:      drivers/staging/greybus/arche_platform.h
8435
8436 GREYBUS SDIO/GPIO/SPI PROTOCOLS DRIVERS
8437 M:      Rui Miguel Silva <rmfrfs@gmail.com>
8438 S:      Maintained
8439 F:      drivers/staging/greybus/gpio.c
8440 F:      drivers/staging/greybus/light.c
8441 F:      drivers/staging/greybus/power_supply.c
8442 F:      drivers/staging/greybus/sdio.c
8443 F:      drivers/staging/greybus/spi.c
8444 F:      drivers/staging/greybus/spilib.c
8445
8446 GREYBUS SUBSYSTEM
8447 M:      Johan Hovold <johan@kernel.org>
8448 M:      Alex Elder <elder@kernel.org>
8449 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
8450 L:      greybus-dev@lists.linaro.org (moderated for non-subscribers)
8451 S:      Maintained
8452 F:      drivers/greybus/
8453 F:      drivers/staging/greybus/
8454 F:      include/linux/greybus.h
8455 F:      include/linux/greybus/
8456
8457 GREYBUS UART PROTOCOLS DRIVERS
8458 M:      David Lin <dtwlin@gmail.com>
8459 S:      Maintained
8460 F:      drivers/staging/greybus/log.c
8461 F:      drivers/staging/greybus/uart.c
8462
8463 GS1662 VIDEO SERIALIZER
8464 M:      Charles-Antoine Couret <charles-antoine.couret@nexvision.fr>
8465 L:      linux-media@vger.kernel.org
8466 S:      Maintained
8467 T:      git git://linuxtv.org/media_tree.git
8468 F:      drivers/media/spi/gs1662.c
8469
8470 GSPCA FINEPIX SUBDRIVER
8471 M:      Frank Zago <frank@zago.net>
8472 L:      linux-media@vger.kernel.org
8473 S:      Maintained
8474 T:      git git://linuxtv.org/media_tree.git
8475 F:      drivers/media/usb/gspca/finepix.c
8476
8477 GSPCA GL860 SUBDRIVER
8478 M:      Olivier Lorin <o.lorin@laposte.net>
8479 L:      linux-media@vger.kernel.org
8480 S:      Maintained
8481 T:      git git://linuxtv.org/media_tree.git
8482 F:      drivers/media/usb/gspca/gl860/
8483
8484 GSPCA M5602 SUBDRIVER
8485 M:      Erik Andren <erik.andren@gmail.com>
8486 L:      linux-media@vger.kernel.org
8487 S:      Maintained
8488 T:      git git://linuxtv.org/media_tree.git
8489 F:      drivers/media/usb/gspca/m5602/
8490
8491 GSPCA PAC207 SONIXB SUBDRIVER
8492 M:      Hans Verkuil <hverkuil@xs4all.nl>
8493 L:      linux-media@vger.kernel.org
8494 S:      Odd Fixes
8495 T:      git git://linuxtv.org/media_tree.git
8496 F:      drivers/media/usb/gspca/pac207.c
8497
8498 GSPCA SN9C20X SUBDRIVER
8499 M:      Brian Johnson <brijohn@gmail.com>
8500 L:      linux-media@vger.kernel.org
8501 S:      Maintained
8502 T:      git git://linuxtv.org/media_tree.git
8503 F:      drivers/media/usb/gspca/sn9c20x.c
8504
8505 GSPCA T613 SUBDRIVER
8506 M:      Leandro Costantino <lcostantino@gmail.com>
8507 L:      linux-media@vger.kernel.org
8508 S:      Maintained
8509 T:      git git://linuxtv.org/media_tree.git
8510 F:      drivers/media/usb/gspca/t613.c
8511
8512 GSPCA USB WEBCAM DRIVER
8513 M:      Hans Verkuil <hverkuil@xs4all.nl>
8514 L:      linux-media@vger.kernel.org
8515 S:      Odd Fixes
8516 T:      git git://linuxtv.org/media_tree.git
8517 F:      drivers/media/usb/gspca/
8518
8519 GTP (GPRS Tunneling Protocol)
8520 M:      Pablo Neira Ayuso <pablo@netfilter.org>
8521 M:      Harald Welte <laforge@gnumonks.org>
8522 L:      osmocom-net-gprs@lists.osmocom.org
8523 S:      Maintained
8524 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/gtp.git
8525 F:      drivers/net/gtp.c
8526
8527 GUID PARTITION TABLE (GPT)
8528 M:      Davidlohr Bueso <dave@stgolabs.net>
8529 L:      linux-efi@vger.kernel.org
8530 S:      Maintained
8531 F:      block/partitions/efi.*
8532
8533 H8/300 ARCHITECTURE
8534 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
8535 L:      uclinux-h8-devel@lists.sourceforge.jp (moderated for non-subscribers)
8536 S:      Maintained
8537 W:      http://uclinux-h8.sourceforge.jp
8538 T:      git git://git.sourceforge.jp/gitroot/uclinux-h8/linux.git
8539 F:      arch/h8300/
8540 F:      drivers/clk/h8300/
8541 F:      drivers/clocksource/h8300_*.c
8542 F:      drivers/irqchip/irq-renesas-h8*.c
8543
8544 HABANALABS PCI DRIVER
8545 M:      Oded Gabbay <ogabbay@kernel.org>
8546 S:      Supported
8547 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/ogabbay/linux.git
8548 F:      Documentation/ABI/testing/debugfs-driver-habanalabs
8549 F:      Documentation/ABI/testing/sysfs-driver-habanalabs
8550 F:      drivers/misc/habanalabs/
8551 F:      include/uapi/misc/habanalabs.h
8552
8553 HACKRF MEDIA DRIVER
8554 M:      Antti Palosaari <crope@iki.fi>
8555 L:      linux-media@vger.kernel.org
8556 S:      Maintained
8557 W:      https://linuxtv.org
8558 W:      http://palosaari.fi/linux/
8559 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8560 T:      git git://linuxtv.org/anttip/media_tree.git
8561 F:      drivers/media/usb/hackrf/
8562
8563 HANTRO VPU CODEC DRIVER
8564 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
8565 M:      Philipp Zabel <p.zabel@pengutronix.de>
8566 L:      linux-media@vger.kernel.org
8567 L:      linux-rockchip@lists.infradead.org
8568 S:      Maintained
8569 F:      Documentation/devicetree/bindings/media/nxp,imx8mq-vpu.yaml
8570 F:      Documentation/devicetree/bindings/media/rockchip-vpu.yaml
8571 F:      drivers/staging/media/hantro/
8572
8573 HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
8574 M:      Frank Seidel <frank@f-seidel.de>
8575 L:      platform-driver-x86@vger.kernel.org
8576 S:      Maintained
8577 W:      http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
8578 F:      drivers/platform/x86/hdaps.c
8579
8580 HARDWARE MONITORING
8581 M:      Jean Delvare <jdelvare@suse.com>
8582 M:      Guenter Roeck <linux@roeck-us.net>
8583 L:      linux-hwmon@vger.kernel.org
8584 S:      Maintained
8585 W:      http://hwmon.wiki.kernel.org/
8586 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
8587 F:      Documentation/ABI/testing/sysfs-class-hwmon
8588 F:      Documentation/devicetree/bindings/hwmon/
8589 F:      Documentation/hwmon/
8590 F:      drivers/hwmon/
8591 F:      include/linux/hwmon*.h
8592 F:      include/trace/events/hwmon*.h
8593 K:      (devm_)?hwmon_device_(un)?register(|_with_groups|_with_info)
8594
8595 HARDWARE RANDOM NUMBER GENERATOR CORE
8596 M:      Matt Mackall <mpm@selenic.com>
8597 M:      Herbert Xu <herbert@gondor.apana.org.au>
8598 L:      linux-crypto@vger.kernel.org
8599 S:      Odd fixes
8600 F:      Documentation/admin-guide/hw_random.rst
8601 F:      Documentation/devicetree/bindings/rng/
8602 F:      drivers/char/hw_random/
8603 F:      include/linux/hw_random.h
8604
8605 HARDWARE SPINLOCK CORE
8606 M:      Ohad Ben-Cohen <ohad@wizery.com>
8607 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
8608 R:      Baolin Wang <baolin.wang7@gmail.com>
8609 L:      linux-remoteproc@vger.kernel.org
8610 S:      Maintained
8611 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git hwspinlock-next
8612 F:      Documentation/devicetree/bindings/hwlock/
8613 F:      Documentation/locking/hwspinlock.rst
8614 F:      drivers/hwspinlock/
8615 F:      include/linux/hwspinlock.h
8616
8617 HARDWARE TRACING FACILITIES
8618 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
8619 S:      Maintained
8620 F:      drivers/hwtracing/
8621
8622 HARMONY SOUND DRIVER
8623 L:      linux-parisc@vger.kernel.org
8624 S:      Maintained
8625 F:      sound/parisc/harmony.*
8626
8627 HDPVR USB VIDEO ENCODER DRIVER
8628 M:      Hans Verkuil <hverkuil@xs4all.nl>
8629 L:      linux-media@vger.kernel.org
8630 S:      Odd Fixes
8631 W:      https://linuxtv.org
8632 T:      git git://linuxtv.org/media_tree.git
8633 F:      drivers/media/usb/hdpvr/
8634
8635 HEWLETT PACKARD ENTERPRISE ILO CHIF DRIVER
8636 M:      Matt Hsiao <matt.hsiao@hpe.com>
8637 S:      Supported
8638 F:      drivers/misc/hpilo.[ch]
8639
8640 HEWLETT PACKARD ENTERPRISE ILO NMI WATCHDOG DRIVER
8641 M:      Jerry Hoemann <jerry.hoemann@hpe.com>
8642 S:      Supported
8643 F:      Documentation/watchdog/hpwdt.rst
8644 F:      drivers/watchdog/hpwdt.c
8645
8646 HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
8647 M:      Don Brace <don.brace@microchip.com>
8648 L:      storagedev@microchip.com
8649 L:      linux-scsi@vger.kernel.org
8650 S:      Supported
8651 F:      Documentation/scsi/hpsa.rst
8652 F:      drivers/scsi/hpsa*.[ch]
8653 F:      include/linux/cciss*.h
8654 F:      include/uapi/linux/cciss*.h
8655
8656 HFI1 DRIVER
8657 M:      Mike Marciniszyn <mike.marciniszyn@cornelisnetworks.com>
8658 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
8659 L:      linux-rdma@vger.kernel.org
8660 S:      Supported
8661 F:      drivers/infiniband/hw/hfi1
8662
8663 HFS FILESYSTEM
8664 L:      linux-fsdevel@vger.kernel.org
8665 S:      Orphan
8666 F:      Documentation/filesystems/hfs.rst
8667 F:      fs/hfs/
8668
8669 HFSPLUS FILESYSTEM
8670 L:      linux-fsdevel@vger.kernel.org
8671 S:      Orphan
8672 F:      Documentation/filesystems/hfsplus.rst
8673 F:      fs/hfsplus/
8674
8675 HGA FRAMEBUFFER DRIVER
8676 M:      Ferenc Bakonyi <fero@drama.obuda.kando.hu>
8677 L:      linux-nvidia@lists.surfsouth.com
8678 S:      Maintained
8679 W:      http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
8680 F:      drivers/video/fbdev/hgafb.c
8681
8682 HIBERNATION (aka Software Suspend, aka swsusp)
8683 M:      "Rafael J. Wysocki" <rafael@kernel.org>
8684 M:      Pavel Machek <pavel@ucw.cz>
8685 L:      linux-pm@vger.kernel.org
8686 S:      Supported
8687 B:      https://bugzilla.kernel.org
8688 F:      arch/*/include/asm/suspend*.h
8689 F:      arch/x86/power/
8690 F:      drivers/base/power/
8691 F:      include/linux/freezer.h
8692 F:      include/linux/pm.h
8693 F:      include/linux/suspend.h
8694 F:      kernel/power/
8695
8696 HID CORE LAYER
8697 M:      Jiri Kosina <jikos@kernel.org>
8698 M:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
8699 L:      linux-input@vger.kernel.org
8700 S:      Maintained
8701 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
8702 F:      drivers/hid/
8703 F:      include/linux/hid*
8704 F:      include/uapi/linux/hid*
8705
8706 HID LOGITECH DRIVERS
8707 R:      Filipe Laíns <lains@riseup.net>
8708 L:      linux-input@vger.kernel.org
8709 S:      Maintained
8710 F:      drivers/hid/hid-logitech-*
8711
8712 HID PLAYSTATION DRIVER
8713 M:      Roderick Colenbrander <roderick.colenbrander@sony.com>
8714 L:      linux-input@vger.kernel.org
8715 S:      Supported
8716 F:      drivers/hid/hid-playstation.c
8717
8718 HID SENSOR HUB DRIVERS
8719 M:      Jiri Kosina <jikos@kernel.org>
8720 M:      Jonathan Cameron <jic23@kernel.org>
8721 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
8722 L:      linux-input@vger.kernel.org
8723 L:      linux-iio@vger.kernel.org
8724 S:      Maintained
8725 F:      Documentation/hid/hid-sensor*
8726 F:      drivers/hid/hid-sensor-*
8727 F:      drivers/iio/*/hid-*
8728 F:      include/linux/hid-sensor-*
8729
8730 HIGH-RESOLUTION TIMERS, CLOCKEVENTS
8731 M:      Thomas Gleixner <tglx@linutronix.de>
8732 L:      linux-kernel@vger.kernel.org
8733 S:      Maintained
8734 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
8735 F:      Documentation/timers/
8736 F:      include/linux/clockchips.h
8737 F:      include/linux/hrtimer.h
8738 F:      kernel/time/clockevents.c
8739 F:      kernel/time/hrtimer.c
8740 F:      kernel/time/timer_*.c
8741
8742 HIGH-SPEED SCC DRIVER FOR AX.25
8743 L:      linux-hams@vger.kernel.org
8744 S:      Orphan
8745 F:      drivers/net/hamradio/dmascc.c
8746 F:      drivers/net/hamradio/scc.c
8747
8748 HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
8749 M:      HighPoint Linux Team <linux@highpoint-tech.com>
8750 S:      Supported
8751 W:      http://www.highpoint-tech.com
8752 F:      Documentation/scsi/hptiop.rst
8753 F:      drivers/scsi/hptiop.c
8754
8755 HIPPI
8756 M:      Jes Sorensen <jes@trained-monkey.org>
8757 L:      linux-hippi@sunsite.dk
8758 S:      Maintained
8759 F:      drivers/net/hippi/
8760 F:      include/linux/hippidevice.h
8761 F:      include/uapi/linux/if_hippi.h
8762 F:      net/802/hippi.c
8763
8764 HIRSCHMANN HELLCREEK ETHERNET SWITCH DRIVER
8765 M:      Kurt Kanzenbach <kurt@linutronix.de>
8766 L:      netdev@vger.kernel.org
8767 S:      Maintained
8768 F:      Documentation/devicetree/bindings/net/dsa/hirschmann,hellcreek.yaml
8769 F:      drivers/net/dsa/hirschmann/*
8770 F:      include/linux/platform_data/hirschmann-hellcreek.h
8771 F:      net/dsa/tag_hellcreek.c
8772
8773 HISILICON DMA DRIVER
8774 M:      Zhou Wang <wangzhou1@hisilicon.com>
8775 L:      dmaengine@vger.kernel.org
8776 S:      Maintained
8777 F:      drivers/dma/hisi_dma.c
8778
8779 HISILICON GPIO DRIVER
8780 M:      Luo Jiaxing <luojiaxing@huawei.com>
8781 L:      linux-gpio@vger.kernel.org
8782 S:      Maintained
8783 F:      drivers/gpio/gpio-hisi.c
8784
8785 HISILICON HIGH PERFORMANCE RSA ENGINE DRIVER (HPRE)
8786 M:      Longfang Liu <liulongfang@huawei.com>
8787 L:      linux-crypto@vger.kernel.org
8788 S:      Maintained
8789 F:      Documentation/ABI/testing/debugfs-hisi-hpre
8790 F:      drivers/crypto/hisilicon/hpre/hpre.h
8791 F:      drivers/crypto/hisilicon/hpre/hpre_crypto.c
8792 F:      drivers/crypto/hisilicon/hpre/hpre_main.c
8793
8794 HISILICON I2C CONTROLLER DRIVER
8795 M:      Yicong Yang <yangyicong@hisilicon.com>
8796 L:      linux-i2c@vger.kernel.org
8797 S:      Maintained
8798 W:      https://www.hisilicon.com
8799 F:      drivers/i2c/busses/i2c-hisi.c
8800
8801 HISILICON LPC BUS DRIVER
8802 M:      john.garry@huawei.com
8803 S:      Maintained
8804 W:      http://www.hisilicon.com
8805 F:      Documentation/devicetree/bindings/arm/hisilicon/low-pin-count.yaml
8806 F:      drivers/bus/hisi_lpc.c
8807
8808 HISILICON NETWORK SUBSYSTEM 3 DRIVER (HNS3)
8809 M:      Yisen Zhuang <yisen.zhuang@huawei.com>
8810 M:      Salil Mehta <salil.mehta@huawei.com>
8811 L:      netdev@vger.kernel.org
8812 S:      Maintained
8813 W:      http://www.hisilicon.com
8814 F:      drivers/net/ethernet/hisilicon/hns3/
8815
8816 HISILICON NETWORK SUBSYSTEM DRIVER
8817 M:      Yisen Zhuang <yisen.zhuang@huawei.com>
8818 M:      Salil Mehta <salil.mehta@huawei.com>
8819 L:      netdev@vger.kernel.org
8820 S:      Maintained
8821 W:      http://www.hisilicon.com
8822 F:      Documentation/devicetree/bindings/net/hisilicon*.txt
8823 F:      drivers/net/ethernet/hisilicon/
8824
8825 HIKEY960 ONBOARD USB GPIO HUB DRIVER
8826 M:      John Stultz <john.stultz@linaro.org>
8827 L:      linux-kernel@vger.kernel.org
8828 S:      Maintained
8829 F:      drivers/misc/hisi_hikey_usb.c
8830
8831 HISILICON PMU DRIVER
8832 M:      Shaokun Zhang <zhangshaokun@hisilicon.com>
8833 M:      Qi Liu <liuqi115@huawei.com>
8834 S:      Supported
8835 W:      http://www.hisilicon.com
8836 F:      Documentation/admin-guide/perf/hisi-pcie-pmu.rst
8837 F:      Documentation/admin-guide/perf/hisi-pmu.rst
8838 F:      drivers/perf/hisilicon
8839
8840 HISILICON QM AND ZIP Controller DRIVER
8841 M:      Zhou Wang <wangzhou1@hisilicon.com>
8842 L:      linux-crypto@vger.kernel.org
8843 S:      Maintained
8844 F:      Documentation/ABI/testing/debugfs-hisi-zip
8845 F:      drivers/crypto/hisilicon/qm.c
8846 F:      drivers/crypto/hisilicon/sgl.c
8847 F:      drivers/crypto/hisilicon/zip/
8848 F:      include/linux/hisi_acc_qm.h
8849
8850 HISILICON ROCE DRIVER
8851 M:      Wenpeng Liang <liangwenpeng@huawei.com>
8852 M:      Weihang Li <liweihang@huawei.com>
8853 L:      linux-rdma@vger.kernel.org
8854 S:      Maintained
8855 F:      Documentation/devicetree/bindings/infiniband/hisilicon-hns-roce.txt
8856 F:      drivers/infiniband/hw/hns/
8857
8858 HISILICON SAS Controller
8859 M:      John Garry <john.garry@huawei.com>
8860 S:      Supported
8861 W:      http://www.hisilicon.com
8862 F:      Documentation/devicetree/bindings/scsi/hisilicon-sas.txt
8863 F:      drivers/scsi/hisi_sas/
8864
8865 HISILICON SECURITY ENGINE V2 DRIVER (SEC2)
8866 M:      Kai Ye <yekai13@huawei.com>
8867 M:      Longfang Liu <liulongfang@huawei.com>
8868 L:      linux-crypto@vger.kernel.org
8869 S:      Maintained
8870 F:      Documentation/ABI/testing/debugfs-hisi-sec
8871 F:      drivers/crypto/hisilicon/sec2/sec.h
8872 F:      drivers/crypto/hisilicon/sec2/sec_crypto.c
8873 F:      drivers/crypto/hisilicon/sec2/sec_crypto.h
8874 F:      drivers/crypto/hisilicon/sec2/sec_main.c
8875
8876 HISILICON SPI Controller DRIVER FOR KUNPENG SOCS
8877 M:      Jay Fang <f.fangjian@huawei.com>
8878 L:      linux-spi@vger.kernel.org
8879 S:      Maintained
8880 W:      http://www.hisilicon.com
8881 F:      drivers/spi/spi-hisi-kunpeng.c
8882
8883 HISILICON SPMI CONTROLLER DRIVER FOR HIKEY 970
8884 M:      Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
8885 L:      linux-kernel@vger.kernel.org
8886 S:      Maintained
8887 F:      Documentation/devicetree/bindings/spmi/hisilicon,hisi-spmi-controller.yaml
8888 F:      drivers/spmi/hisi-spmi-controller.c
8889
8890 HISILICON SPMI PMIC DRIVER FOR HIKEY 6421v600
8891 M:      Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
8892 L:      linux-kernel@vger.kernel.org
8893 S:      Maintained
8894 F:      Documentation/devicetree/bindings/mfd/hisilicon,hi6421-spmi-pmic.yaml
8895 F:      drivers/mfd/hi6421-spmi-pmic.c
8896
8897 HISILICON TRUE RANDOM NUMBER GENERATOR V2 SUPPORT
8898 M:      Weili Qian <qianweili@huawei.com>
8899 S:      Maintained
8900 F:      drivers/crypto/hisilicon/trng/trng.c
8901
8902 HISILICON V3XX SPI NOR FLASH Controller Driver
8903 M:      John Garry <john.garry@huawei.com>
8904 S:      Maintained
8905 W:      http://www.hisilicon.com
8906 F:      drivers/spi/spi-hisi-sfc-v3xx.c
8907
8908 HMM - Heterogeneous Memory Management
8909 M:      Jérôme Glisse <jglisse@redhat.com>
8910 L:      linux-mm@kvack.org
8911 S:      Maintained
8912 F:      Documentation/vm/hmm.rst
8913 F:      include/linux/hmm*
8914 F:      lib/test_hmm*
8915 F:      mm/hmm*
8916 F:      tools/testing/selftests/vm/*hmm*
8917
8918 HOST AP DRIVER
8919 M:      Jouni Malinen <j@w1.fi>
8920 L:      linux-wireless@vger.kernel.org
8921 S:      Obsolete
8922 W:      http://w1.fi/hostap-driver.html
8923 F:      drivers/net/wireless/intersil/hostap/
8924
8925 HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
8926 L:      platform-driver-x86@vger.kernel.org
8927 S:      Orphan
8928 F:      drivers/platform/x86/tc1100-wmi.c
8929
8930 HPET:   High Precision Event Timers driver
8931 M:      Clemens Ladisch <clemens@ladisch.de>
8932 S:      Maintained
8933 F:      Documentation/timers/hpet.rst
8934 F:      drivers/char/hpet.c
8935 F:      include/linux/hpet.h
8936 F:      include/uapi/linux/hpet.h
8937
8938 HPET:   x86
8939 S:      Orphan
8940 F:      arch/x86/include/asm/hpet.h
8941 F:      arch/x86/kernel/hpet.c
8942
8943 HPFS FILESYSTEM
8944 M:      Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
8945 S:      Maintained
8946 W:      http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
8947 F:      fs/hpfs/
8948
8949 HSI SUBSYSTEM
8950 M:      Sebastian Reichel <sre@kernel.org>
8951 S:      Maintained
8952 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git
8953 F:      Documentation/ABI/testing/sysfs-bus-hsi
8954 F:      Documentation/driver-api/hsi.rst
8955 F:      drivers/hsi/
8956 F:      include/linux/hsi/
8957 F:      include/uapi/linux/hsi/
8958
8959 HSO 3G MODEM DRIVER
8960 L:      linux-usb@vger.kernel.org
8961 S:      Orphan
8962 F:      drivers/net/usb/hso.c
8963
8964 HSR NETWORK PROTOCOL
8965 L:      netdev@vger.kernel.org
8966 S:      Orphan
8967 F:      net/hsr/
8968
8969 HT16K33 LED CONTROLLER DRIVER
8970 M:      Robin van der Gracht <robin@protonic.nl>
8971 S:      Maintained
8972 F:      Documentation/devicetree/bindings/auxdisplay/holtek,ht16k33.yaml
8973 F:      drivers/auxdisplay/ht16k33.c
8974
8975 HTCPEN TOUCHSCREEN DRIVER
8976 M:      Pau Oliva Fora <pof@eslack.org>
8977 L:      linux-input@vger.kernel.org
8978 S:      Maintained
8979 F:      drivers/input/touchscreen/htcpen.c
8980
8981 HTS221 TEMPERATURE-HUMIDITY IIO DRIVER
8982 M:      Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
8983 L:      linux-iio@vger.kernel.org
8984 S:      Maintained
8985 W:      http://www.st.com/
8986 F:      Documentation/devicetree/bindings/iio/humidity/st,hts221.yaml
8987 F:      drivers/iio/humidity/hts221*
8988
8989 HUAWEI ETHERNET DRIVER
8990 L:      netdev@vger.kernel.org
8991 S:      Orphan
8992 F:      Documentation/networking/device_drivers/ethernet/huawei/hinic.rst
8993 F:      drivers/net/ethernet/huawei/hinic/
8994
8995 HUGETLB FILESYSTEM
8996 M:      Mike Kravetz <mike.kravetz@oracle.com>
8997 L:      linux-mm@kvack.org
8998 S:      Maintained
8999 F:      Documentation/ABI/testing/sysfs-kernel-mm-hugepages
9000 F:      Documentation/admin-guide/mm/hugetlbpage.rst
9001 F:      Documentation/vm/hugetlbfs_reserv.rst
9002 F:      fs/hugetlbfs/
9003 F:      include/linux/hugetlb.h
9004 F:      mm/hugetlb.c
9005
9006 HVA ST MEDIA DRIVER
9007 M:      Jean-Christophe Trotin <jean-christophe.trotin@foss.st.com>
9008 L:      linux-media@vger.kernel.org
9009 S:      Supported
9010 W:      https://linuxtv.org
9011 T:      git git://linuxtv.org/media_tree.git
9012 F:      drivers/media/platform/st/sti/hva
9013
9014 HWPOISON MEMORY FAILURE HANDLING
9015 M:      Naoya Horiguchi <naoya.horiguchi@nec.com>
9016 L:      linux-mm@kvack.org
9017 S:      Maintained
9018 F:      mm/hwpoison-inject.c
9019 F:      mm/memory-failure.c
9020
9021 HYCON HY46XX TOUCHSCREEN SUPPORT
9022 M:      Giulio Benetti <giulio.benetti@benettiengineering.com>
9023 L:      linux-input@vger.kernel.org
9024 S:      Maintained
9025 F:      Documentation/devicetree/bindings/input/touchscreen/hycon,hy46xx.yaml
9026 F:      drivers/input/touchscreen/hycon-hy46xx.c
9027
9028 HYGON PROCESSOR SUPPORT
9029 M:      Pu Wen <puwen@hygon.cn>
9030 L:      linux-kernel@vger.kernel.org
9031 S:      Maintained
9032 F:      arch/x86/kernel/cpu/hygon.c
9033
9034 HYNIX HI556 SENSOR DRIVER
9035 M:      Shawn Tu <shawnx.tu@intel.com>
9036 L:      linux-media@vger.kernel.org
9037 S:      Maintained
9038 T:      git git://linuxtv.org/media_tree.git
9039 F:      drivers/media/i2c/hi556.c
9040
9041 HYNIX HI846 SENSOR DRIVER
9042 M:      Martin Kepplinger <martin.kepplinger@puri.sm>
9043 L:      linux-media@vger.kernel.org
9044 S:      Maintained
9045 F:      drivers/media/i2c/hi846.c
9046
9047 HYNIX HI847 SENSOR DRIVER
9048 M:      Shawn Tu <shawnx.tu@intel.com>
9049 L:      linux-media@vger.kernel.org
9050 S:      Maintained
9051 F:      drivers/media/i2c/hi847.c
9052
9053 Hyper-V/Azure CORE AND DRIVERS
9054 M:      "K. Y. Srinivasan" <kys@microsoft.com>
9055 M:      Haiyang Zhang <haiyangz@microsoft.com>
9056 M:      Stephen Hemminger <sthemmin@microsoft.com>
9057 M:      Wei Liu <wei.liu@kernel.org>
9058 M:      Dexuan Cui <decui@microsoft.com>
9059 L:      linux-hyperv@vger.kernel.org
9060 S:      Supported
9061 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hyperv/linux.git
9062 F:      Documentation/ABI/stable/sysfs-bus-vmbus
9063 F:      Documentation/ABI/testing/debugfs-hyperv
9064 F:      Documentation/networking/device_drivers/ethernet/microsoft/netvsc.rst
9065 F:      arch/arm64/hyperv
9066 F:      arch/arm64/include/asm/hyperv-tlfs.h
9067 F:      arch/arm64/include/asm/mshyperv.h
9068 F:      arch/x86/hyperv
9069 F:      arch/x86/include/asm/hyperv-tlfs.h
9070 F:      arch/x86/include/asm/mshyperv.h
9071 F:      arch/x86/include/asm/trace/hyperv.h
9072 F:      arch/x86/kernel/cpu/mshyperv.c
9073 F:      drivers/clocksource/hyperv_timer.c
9074 F:      drivers/hid/hid-hyperv.c
9075 F:      drivers/hv/
9076 F:      drivers/input/serio/hyperv-keyboard.c
9077 F:      drivers/iommu/hyperv-iommu.c
9078 F:      drivers/net/ethernet/microsoft/
9079 F:      drivers/net/hyperv/
9080 F:      drivers/pci/controller/pci-hyperv-intf.c
9081 F:      drivers/pci/controller/pci-hyperv.c
9082 F:      drivers/scsi/storvsc_drv.c
9083 F:      drivers/uio/uio_hv_generic.c
9084 F:      drivers/video/fbdev/hyperv_fb.c
9085 F:      include/asm-generic/hyperv-tlfs.h
9086 F:      include/asm-generic/mshyperv.h
9087 F:      include/clocksource/hyperv_timer.h
9088 F:      include/linux/hyperv.h
9089 F:      include/uapi/linux/hyperv.h
9090 F:      net/vmw_vsock/hyperv_transport.c
9091 F:      tools/hv/
9092
9093 HYPERBUS SUPPORT
9094 M:      Vignesh Raghavendra <vigneshr@ti.com>
9095 L:      linux-mtd@lists.infradead.org
9096 S:      Supported
9097 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
9098 C:      irc://irc.oftc.net/mtd
9099 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git cfi/next
9100 F:      Documentation/devicetree/bindings/mtd/ti,am654-hbmc.yaml
9101 F:      drivers/mtd/hyperbus/
9102 F:      include/linux/mtd/hyperbus.h
9103
9104 HYPERVISOR VIRTUAL CONSOLE DRIVER
9105 L:      linuxppc-dev@lists.ozlabs.org
9106 S:      Odd Fixes
9107 F:      drivers/tty/hvc/
9108
9109 I2C ACPI SUPPORT
9110 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
9111 L:      linux-i2c@vger.kernel.org
9112 L:      linux-acpi@vger.kernel.org
9113 S:      Maintained
9114 F:      drivers/i2c/i2c-core-acpi.c
9115
9116 I2C CONTROLLER DRIVER FOR NVIDIA GPU
9117 M:      Ajay Gupta <ajayg@nvidia.com>
9118 L:      linux-i2c@vger.kernel.org
9119 S:      Maintained
9120 F:      Documentation/i2c/busses/i2c-nvidia-gpu.rst
9121 F:      drivers/i2c/busses/i2c-nvidia-gpu.c
9122
9123 I2C MUXES
9124 M:      Peter Rosin <peda@axentia.se>
9125 L:      linux-i2c@vger.kernel.org
9126 S:      Maintained
9127 F:      Documentation/devicetree/bindings/i2c/i2c-arb*
9128 F:      Documentation/devicetree/bindings/i2c/i2c-gate*
9129 F:      Documentation/devicetree/bindings/i2c/i2c-mux*
9130 F:      Documentation/i2c/i2c-topology.rst
9131 F:      Documentation/i2c/muxes/
9132 F:      drivers/i2c/i2c-mux.c
9133 F:      drivers/i2c/muxes/
9134 F:      include/linux/i2c-mux.h
9135
9136 I2C MV64XXX MARVELL AND ALLWINNER DRIVER
9137 M:      Gregory CLEMENT <gregory.clement@bootlin.com>
9138 L:      linux-i2c@vger.kernel.org
9139 S:      Maintained
9140 F:      Documentation/devicetree/bindings/i2c/marvell,mv64xxx-i2c.yaml
9141 F:      drivers/i2c/busses/i2c-mv64xxx.c
9142
9143 I2C OVER PARALLEL PORT
9144 M:      Jean Delvare <jdelvare@suse.com>
9145 L:      linux-i2c@vger.kernel.org
9146 S:      Maintained
9147 F:      Documentation/i2c/busses/i2c-parport.rst
9148 F:      drivers/i2c/busses/i2c-parport.c
9149
9150 I2C SUBSYSTEM
9151 M:      Wolfram Sang <wsa@kernel.org>
9152 L:      linux-i2c@vger.kernel.org
9153 S:      Maintained
9154 W:      https://i2c.wiki.kernel.org/
9155 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
9156 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
9157 F:      Documentation/devicetree/bindings/i2c/i2c.txt
9158 F:      Documentation/i2c/
9159 F:      drivers/i2c/*
9160 F:      include/linux/i2c-dev.h
9161 F:      include/linux/i2c-smbus.h
9162 F:      include/linux/i2c.h
9163 F:      include/uapi/linux/i2c-*.h
9164 F:      include/uapi/linux/i2c.h
9165
9166 I2C SUBSYSTEM HOST DRIVERS
9167 L:      linux-i2c@vger.kernel.org
9168 S:      Odd Fixes
9169 W:      https://i2c.wiki.kernel.org/
9170 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
9171 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
9172 F:      Documentation/devicetree/bindings/i2c/
9173 F:      drivers/i2c/algos/
9174 F:      drivers/i2c/busses/
9175
9176 I2C-TAOS-EVM DRIVER
9177 M:      Jean Delvare <jdelvare@suse.com>
9178 L:      linux-i2c@vger.kernel.org
9179 S:      Maintained
9180 F:      Documentation/i2c/busses/i2c-taos-evm.rst
9181 F:      drivers/i2c/busses/i2c-taos-evm.c
9182
9183 I2C-TINY-USB DRIVER
9184 M:      Till Harbaum <till@harbaum.org>
9185 L:      linux-i2c@vger.kernel.org
9186 S:      Maintained
9187 W:      http://www.harbaum.org/till/i2c_tiny_usb
9188 F:      drivers/i2c/busses/i2c-tiny-usb.c
9189
9190 I2C/SMBUS CONTROLLER DRIVERS FOR PC
9191 M:      Jean Delvare <jdelvare@suse.com>
9192 L:      linux-i2c@vger.kernel.org
9193 S:      Maintained
9194 F:      Documentation/i2c/busses/i2c-ali1535.rst
9195 F:      Documentation/i2c/busses/i2c-ali1563.rst
9196 F:      Documentation/i2c/busses/i2c-ali15x3.rst
9197 F:      Documentation/i2c/busses/i2c-amd756.rst
9198 F:      Documentation/i2c/busses/i2c-amd8111.rst
9199 F:      Documentation/i2c/busses/i2c-i801.rst
9200 F:      Documentation/i2c/busses/i2c-nforce2.rst
9201 F:      Documentation/i2c/busses/i2c-piix4.rst
9202 F:      Documentation/i2c/busses/i2c-sis5595.rst
9203 F:      Documentation/i2c/busses/i2c-sis630.rst
9204 F:      Documentation/i2c/busses/i2c-sis96x.rst
9205 F:      Documentation/i2c/busses/i2c-via.rst
9206 F:      Documentation/i2c/busses/i2c-viapro.rst
9207 F:      drivers/i2c/busses/i2c-ali1535.c
9208 F:      drivers/i2c/busses/i2c-ali1563.c
9209 F:      drivers/i2c/busses/i2c-ali15x3.c
9210 F:      drivers/i2c/busses/i2c-amd756-s4882.c
9211 F:      drivers/i2c/busses/i2c-amd756.c
9212 F:      drivers/i2c/busses/i2c-amd8111.c
9213 F:      drivers/i2c/busses/i2c-i801.c
9214 F:      drivers/i2c/busses/i2c-isch.c
9215 F:      drivers/i2c/busses/i2c-nforce2-s4985.c
9216 F:      drivers/i2c/busses/i2c-nforce2.c
9217 F:      drivers/i2c/busses/i2c-piix4.c
9218 F:      drivers/i2c/busses/i2c-sis5595.c
9219 F:      drivers/i2c/busses/i2c-sis630.c
9220 F:      drivers/i2c/busses/i2c-sis96x.c
9221 F:      drivers/i2c/busses/i2c-via.c
9222 F:      drivers/i2c/busses/i2c-viapro.c
9223
9224 I2C/SMBUS INTEL CHT WHISKEY COVE PMIC DRIVER
9225 M:      Hans de Goede <hdegoede@redhat.com>
9226 L:      linux-i2c@vger.kernel.org
9227 S:      Maintained
9228 F:      drivers/i2c/busses/i2c-cht-wc.c
9229
9230 I2C/SMBUS ISMT DRIVER
9231 M:      Seth Heasley <seth.heasley@intel.com>
9232 M:      Neil Horman <nhorman@tuxdriver.com>
9233 L:      linux-i2c@vger.kernel.org
9234 F:      Documentation/i2c/busses/i2c-ismt.rst
9235 F:      drivers/i2c/busses/i2c-ismt.c
9236
9237 I2C/SMBUS STUB DRIVER
9238 M:      Jean Delvare <jdelvare@suse.com>
9239 L:      linux-i2c@vger.kernel.org
9240 S:      Maintained
9241 F:      drivers/i2c/i2c-stub.c
9242
9243 I3C DRIVER FOR CADENCE I3C MASTER IP
9244 M:      Przemysław Gaj <pgaj@cadence.com>
9245 S:      Maintained
9246 F:      Documentation/devicetree/bindings/i3c/cdns,i3c-master.txt
9247 F:      drivers/i3c/master/i3c-master-cdns.c
9248
9249 I3C DRIVER FOR SYNOPSYS DESIGNWARE
9250 M:      Vitor Soares <vitor.soares@synopsys.com>
9251 S:      Maintained
9252 F:      Documentation/devicetree/bindings/i3c/snps,dw-i3c-master.txt
9253 F:      drivers/i3c/master/dw*
9254
9255 I3C SUBSYSTEM
9256 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
9257 L:      linux-i3c@lists.infradead.org (moderated for non-subscribers)
9258 S:      Maintained
9259 C:      irc://chat.freenode.net/linux-i3c
9260 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/i3c/linux.git
9261 F:      Documentation/ABI/testing/sysfs-bus-i3c
9262 F:      Documentation/devicetree/bindings/i3c/
9263 F:      Documentation/driver-api/i3c
9264 F:      drivers/i3c/
9265 F:      include/linux/i3c/
9266
9267 IA64 (Itanium) PLATFORM
9268 L:      linux-ia64@vger.kernel.org
9269 S:      Orphan
9270 F:      Documentation/ia64/
9271 F:      arch/ia64/
9272
9273 IBM Power 842 compression accelerator
9274 M:      Haren Myneni <haren@us.ibm.com>
9275 S:      Supported
9276 F:      crypto/842.c
9277 F:      drivers/crypto/nx/Kconfig
9278 F:      drivers/crypto/nx/Makefile
9279 F:      drivers/crypto/nx/nx-842*
9280 F:      include/linux/sw842.h
9281 F:      lib/842/
9282
9283 IBM Power in-Nest Crypto Acceleration
9284 M:      Breno Leitão <leitao@debian.org>
9285 M:      Nayna Jain <nayna@linux.ibm.com>
9286 M:      Paulo Flabiano Smorigo <pfsmorigo@gmail.com>
9287 L:      linux-crypto@vger.kernel.org
9288 S:      Supported
9289 F:      drivers/crypto/nx/Kconfig
9290 F:      drivers/crypto/nx/Makefile
9291 F:      drivers/crypto/nx/nx-aes*
9292 F:      drivers/crypto/nx/nx-sha*
9293 F:      drivers/crypto/nx/nx.*
9294 F:      drivers/crypto/nx/nx_csbcpb.h
9295 F:      drivers/crypto/nx/nx_debugfs.c
9296
9297 IBM Power IO DLPAR Driver for RPA-compliant PPC64 platform
9298 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
9299 L:      linux-pci@vger.kernel.org
9300 L:      linuxppc-dev@lists.ozlabs.org
9301 S:      Supported
9302 F:      drivers/pci/hotplug/rpadlpar*
9303
9304 IBM Power Linux RAID adapter
9305 M:      Brian King <brking@us.ibm.com>
9306 S:      Supported
9307 F:      drivers/scsi/ipr.*
9308
9309 IBM Power PCI Hotplug Driver for RPA-compliant PPC64 platform
9310 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
9311 L:      linux-pci@vger.kernel.org
9312 L:      linuxppc-dev@lists.ozlabs.org
9313 S:      Supported
9314 F:      drivers/pci/hotplug/rpaphp*
9315
9316 IBM Power SRIOV Virtual NIC Device Driver
9317 M:      Dany Madden <drt@linux.ibm.com>
9318 M:      Sukadev Bhattiprolu <sukadev@linux.ibm.com>
9319 R:      Thomas Falcon <tlfalcon@linux.ibm.com>
9320 L:      netdev@vger.kernel.org
9321 S:      Supported
9322 F:      drivers/net/ethernet/ibm/ibmvnic.*
9323
9324 IBM Power Virtual Accelerator Switchboard
9325 M:      Sukadev Bhattiprolu <sukadev@linux.ibm.com>
9326 L:      linuxppc-dev@lists.ozlabs.org
9327 S:      Supported
9328 F:      arch/powerpc/include/asm/vas.h
9329 F:      arch/powerpc/platforms/powernv/copy-paste.h
9330 F:      arch/powerpc/platforms/powernv/vas*
9331
9332 IBM Power Virtual Ethernet Device Driver
9333 M:      Cristobal Forno <cforno12@linux.ibm.com>
9334 L:      netdev@vger.kernel.org
9335 S:      Supported
9336 F:      drivers/net/ethernet/ibm/ibmveth.*
9337
9338 IBM Power Virtual FC Device Drivers
9339 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
9340 L:      linux-scsi@vger.kernel.org
9341 S:      Supported
9342 F:      drivers/scsi/ibmvscsi/ibmvfc*
9343
9344 IBM Power Virtual Management Channel Driver
9345 M:      Brad Warrum <bwarrum@linux.ibm.com>
9346 M:      Ritu Agarwal <rituagar@linux.ibm.com>
9347 S:      Supported
9348 F:      drivers/misc/ibmvmc.*
9349
9350 IBM Power Virtual SCSI Device Drivers
9351 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
9352 L:      linux-scsi@vger.kernel.org
9353 S:      Supported
9354 F:      drivers/scsi/ibmvscsi/ibmvscsi*
9355 F:      include/scsi/viosrp.h
9356
9357 IBM Power Virtual SCSI Device Target Driver
9358 M:      Michael Cyr <mikecyr@linux.ibm.com>
9359 L:      linux-scsi@vger.kernel.org
9360 L:      target-devel@vger.kernel.org
9361 S:      Supported
9362 F:      drivers/scsi/ibmvscsi_tgt/
9363
9364 IBM Power VMX Cryptographic instructions
9365 M:      Breno Leitão <leitao@debian.org>
9366 M:      Nayna Jain <nayna@linux.ibm.com>
9367 M:      Paulo Flabiano Smorigo <pfsmorigo@gmail.com>
9368 L:      linux-crypto@vger.kernel.org
9369 S:      Supported
9370 F:      drivers/crypto/vmx/Kconfig
9371 F:      drivers/crypto/vmx/Makefile
9372 F:      drivers/crypto/vmx/aes*
9373 F:      drivers/crypto/vmx/ghash*
9374 F:      drivers/crypto/vmx/ppc-xlate.pl
9375 F:      drivers/crypto/vmx/vmx.c
9376
9377 IBM ServeRAID RAID DRIVER
9378 S:      Orphan
9379 F:      drivers/scsi/ips.*
9380
9381 ICH LPC AND GPIO DRIVER
9382 M:      Peter Tyser <ptyser@xes-inc.com>
9383 S:      Maintained
9384 F:      drivers/gpio/gpio-ich.c
9385 F:      drivers/mfd/lpc_ich.c
9386
9387 ICY I2C DRIVER
9388 M:      Max Staudt <max@enpas.org>
9389 L:      linux-i2c@vger.kernel.org
9390 S:      Maintained
9391 F:      drivers/i2c/busses/i2c-icy.c
9392
9393 IDEAPAD LAPTOP EXTRAS DRIVER
9394 M:      Ike Panhc <ike.pan@canonical.com>
9395 L:      platform-driver-x86@vger.kernel.org
9396 S:      Maintained
9397 W:      http://launchpad.net/ideapad-laptop
9398 F:      drivers/platform/x86/ideapad-laptop.c
9399
9400 IDEAPAD LAPTOP SLIDEBAR DRIVER
9401 M:      Andrey Moiseev <o2g.org.ru@gmail.com>
9402 L:      linux-input@vger.kernel.org
9403 S:      Maintained
9404 W:      https://github.com/o2genum/ideapad-slidebar
9405 F:      drivers/input/misc/ideapad_slidebar.c
9406
9407 IDMAPPED MOUNTS
9408 M:      Christian Brauner <brauner@kernel.org>
9409 L:      linux-fsdevel@vger.kernel.org
9410 S:      Maintained
9411 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brauner/linux.git
9412 F:      Documentation/filesystems/idmappings.rst
9413 F:      tools/testing/selftests/mount_setattr/
9414 F:      include/linux/mnt_idmapping.h
9415
9416 IDT VersaClock 5 CLOCK DRIVER
9417 M:      Luca Ceresoli <luca@lucaceresoli.net>
9418 S:      Maintained
9419 F:      Documentation/devicetree/bindings/clock/idt,versaclock5.yaml
9420 F:      drivers/clk/clk-versaclock5.c
9421
9422 IEEE 802.15.4 SUBSYSTEM
9423 M:      Alexander Aring <alex.aring@gmail.com>
9424 M:      Stefan Schmidt <stefan@datenfreihafen.org>
9425 L:      linux-wpan@vger.kernel.org
9426 S:      Maintained
9427 W:      https://linux-wpan.org/
9428 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan.git
9429 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan-next.git
9430 F:      Documentation/networking/ieee802154.rst
9431 F:      drivers/net/ieee802154/
9432 F:      include/linux/ieee802154.h
9433 F:      include/linux/nl802154.h
9434 F:      include/net/af_ieee802154.h
9435 F:      include/net/cfg802154.h
9436 F:      include/net/ieee802154_netdev.h
9437 F:      include/net/mac802154.h
9438 F:      include/net/nl802154.h
9439 F:      net/ieee802154/
9440 F:      net/mac802154/
9441
9442 IFE PROTOCOL
9443 M:      Yotam Gigi <yotam.gi@gmail.com>
9444 M:      Jamal Hadi Salim <jhs@mojatatu.com>
9445 F:      include/net/ife.h
9446 F:      include/uapi/linux/ife.h
9447 F:      net/ife
9448
9449 IGORPLUG-USB IR RECEIVER
9450 M:      Sean Young <sean@mess.org>
9451 L:      linux-media@vger.kernel.org
9452 S:      Maintained
9453 F:      drivers/media/rc/igorplugusb.c
9454
9455 IGUANAWORKS USB IR TRANSCEIVER
9456 M:      Sean Young <sean@mess.org>
9457 L:      linux-media@vger.kernel.org
9458 S:      Maintained
9459 F:      drivers/media/rc/iguanair.c
9460
9461 IIO DIGITAL POTENTIOMETER DAC
9462 M:      Peter Rosin <peda@axentia.se>
9463 L:      linux-iio@vger.kernel.org
9464 S:      Maintained
9465 F:      Documentation/ABI/testing/sysfs-bus-iio-dac-dpot-dac
9466 F:      Documentation/devicetree/bindings/iio/dac/dpot-dac.yaml
9467 F:      drivers/iio/dac/dpot-dac.c
9468
9469 IIO ENVELOPE DETECTOR
9470 M:      Peter Rosin <peda@axentia.se>
9471 L:      linux-iio@vger.kernel.org
9472 S:      Maintained
9473 F:      Documentation/ABI/testing/sysfs-bus-iio-adc-envelope-detector
9474 F:      Documentation/devicetree/bindings/iio/adc/envelope-detector.yaml
9475 F:      drivers/iio/adc/envelope-detector.c
9476
9477 IIO MULTIPLEXER
9478 M:      Peter Rosin <peda@axentia.se>
9479 L:      linux-iio@vger.kernel.org
9480 S:      Maintained
9481 F:      Documentation/devicetree/bindings/iio/multiplexer/io-channel-mux.yaml
9482 F:      drivers/iio/multiplexer/iio-mux.c
9483
9484 IIO SCMI BASED DRIVER
9485 M:      Jyoti Bhayana <jbhayana@google.com>
9486 L:      linux-iio@vger.kernel.org
9487 S:      Maintained
9488 F:      drivers/iio/common/scmi_sensors/scmi_iio.c
9489
9490 IIO SUBSYSTEM AND DRIVERS
9491 M:      Jonathan Cameron <jic23@kernel.org>
9492 R:      Lars-Peter Clausen <lars@metafoo.de>
9493 L:      linux-iio@vger.kernel.org
9494 S:      Maintained
9495 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
9496 F:      Documentation/ABI/testing/configfs-iio*
9497 F:      Documentation/ABI/testing/sysfs-bus-iio*
9498 F:      Documentation/devicetree/bindings/iio/
9499 F:      drivers/iio/
9500 F:      drivers/staging/iio/
9501 F:      include/linux/iio/
9502 F:      tools/iio/
9503
9504 IIO UNIT CONVERTER
9505 M:      Peter Rosin <peda@axentia.se>
9506 L:      linux-iio@vger.kernel.org
9507 S:      Maintained
9508 F:      Documentation/devicetree/bindings/iio/afe/current-sense-amplifier.yaml
9509 F:      Documentation/devicetree/bindings/iio/afe/current-sense-shunt.yaml
9510 F:      Documentation/devicetree/bindings/iio/afe/voltage-divider.yaml
9511 F:      drivers/iio/afe/iio-rescale.c
9512
9513 IKANOS/ADI EAGLE ADSL USB DRIVER
9514 M:      Matthieu Castet <castet.matthieu@free.fr>
9515 M:      Stanislaw Gruszka <stf_xl@wp.pl>
9516 S:      Maintained
9517 F:      drivers/usb/atm/ueagle-atm.c
9518
9519 IMGTEC ASCII LCD DRIVER
9520 M:      Paul Burton <paulburton@kernel.org>
9521 S:      Maintained
9522 F:      Documentation/devicetree/bindings/auxdisplay/img,ascii-lcd.yaml
9523 F:      drivers/auxdisplay/img-ascii-lcd.c
9524
9525 IMGTEC IR DECODER DRIVER
9526 S:      Orphan
9527 F:      drivers/media/rc/img-ir/
9528
9529 IMON SOUNDGRAPH USB IR RECEIVER
9530 M:      Sean Young <sean@mess.org>
9531 L:      linux-media@vger.kernel.org
9532 S:      Maintained
9533 F:      drivers/media/rc/imon.c
9534 F:      drivers/media/rc/imon_raw.c
9535
9536 IMS TWINTURBO FRAMEBUFFER DRIVER
9537 L:      linux-fbdev@vger.kernel.org
9538 S:      Orphan
9539 F:      drivers/video/fbdev/imsttfb.c
9540
9541 INA209 HARDWARE MONITOR DRIVER
9542 M:      Guenter Roeck <linux@roeck-us.net>
9543 L:      linux-hwmon@vger.kernel.org
9544 S:      Maintained
9545 F:      Documentation/devicetree/bindings/hwmon/ti,ina2xx.yaml
9546 F:      Documentation/hwmon/ina209.rst
9547 F:      drivers/hwmon/ina209.c
9548
9549 INA2XX HARDWARE MONITOR DRIVER
9550 M:      Guenter Roeck <linux@roeck-us.net>
9551 L:      linux-hwmon@vger.kernel.org
9552 S:      Maintained
9553 F:      Documentation/hwmon/ina2xx.rst
9554 F:      drivers/hwmon/ina2xx.c
9555 F:      include/linux/platform_data/ina2xx.h
9556
9557 INDUSTRY PACK SUBSYSTEM (IPACK)
9558 M:      Samuel Iglesias Gonsalvez <siglesias@igalia.com>
9559 M:      Jens Taprogge <jens.taprogge@taprogge.org>
9560 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
9561 L:      industrypack-devel@lists.sourceforge.net
9562 S:      Maintained
9563 W:      http://industrypack.sourceforge.net
9564 F:      drivers/ipack/
9565
9566 INFINEON DPS310 Driver
9567 M:      Eddie James <eajames@linux.ibm.com>
9568 L:      linux-iio@vger.kernel.org
9569 S:      Maintained
9570 F:      drivers/iio/pressure/dps310.c
9571
9572 INFINIBAND SUBSYSTEM
9573 M:      Jason Gunthorpe <jgg@nvidia.com>
9574 L:      linux-rdma@vger.kernel.org
9575 S:      Supported
9576 W:      https://github.com/linux-rdma/rdma-core
9577 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
9578 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rdma/rdma.git
9579 F:      Documentation/devicetree/bindings/infiniband/
9580 F:      Documentation/infiniband/
9581 F:      drivers/infiniband/
9582 F:      include/rdma/
9583 F:      include/trace/events/ib_mad.h
9584 F:      include/trace/events/ib_umad.h
9585 F:      include/uapi/linux/if_infiniband.h
9586 F:      include/uapi/rdma/
9587 F:      samples/bpf/ibumad_kern.c
9588 F:      samples/bpf/ibumad_user.c
9589
9590 INGENIC JZ4780 NAND DRIVER
9591 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
9592 L:      linux-mtd@lists.infradead.org
9593 L:      linux-mips@vger.kernel.org
9594 S:      Maintained
9595 F:      drivers/mtd/nand/raw/ingenic/
9596
9597 INGENIC JZ47xx SoCs
9598 M:      Paul Cercueil <paul@crapouillou.net>
9599 L:      linux-mips@vger.kernel.org
9600 S:      Maintained
9601 F:      arch/mips/boot/dts/ingenic/
9602 F:      arch/mips/generic/board-ingenic.c
9603 F:      arch/mips/include/asm/mach-ingenic/
9604 F:      arch/mips/ingenic/Kconfig
9605 F:      drivers/clk/ingenic/
9606 F:      drivers/dma/dma-jz4780.c
9607 F:      drivers/gpu/drm/ingenic/
9608 F:      drivers/i2c/busses/i2c-jz4780.c
9609 F:      drivers/iio/adc/ingenic-adc.c
9610 F:      drivers/irqchip/irq-ingenic.c
9611 F:      drivers/memory/jz4780-nemc.c
9612 F:      drivers/mmc/host/jz4740_mmc.c
9613 F:      drivers/mtd/nand/raw/ingenic/
9614 F:      drivers/pinctrl/pinctrl-ingenic.c
9615 F:      drivers/power/supply/ingenic-battery.c
9616 F:      drivers/pwm/pwm-jz4740.c
9617 F:      drivers/remoteproc/ingenic_rproc.c
9618 F:      drivers/rtc/rtc-jz4740.c
9619 F:      drivers/tty/serial/8250/8250_ingenic.c
9620 F:      drivers/usb/musb/jz4740.c
9621 F:      drivers/watchdog/jz4740_wdt.c
9622 F:      include/dt-bindings/iio/adc/ingenic,adc.h
9623 F:      include/linux/mfd/ingenic-tcu.h
9624 F:      sound/soc/codecs/jz47*
9625 F:      sound/soc/jz4740/
9626
9627 INJOINIC IP5xxx POWER BANK IC DRIVER
9628 M:      Samuel Holland <samuel@sholland.org>
9629 S:      Maintained
9630 F:      drivers/power/supply/ip5xxx_power.c
9631
9632 INOTIFY
9633 M:      Jan Kara <jack@suse.cz>
9634 R:      Amir Goldstein <amir73il@gmail.com>
9635 L:      linux-fsdevel@vger.kernel.org
9636 S:      Maintained
9637 F:      Documentation/filesystems/inotify.rst
9638 F:      fs/notify/inotify/
9639 F:      include/linux/inotify.h
9640 F:      include/uapi/linux/inotify.h
9641
9642 INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
9643 M:      Dmitry Torokhov <dmitry.torokhov@gmail.com>
9644 L:      linux-input@vger.kernel.org
9645 S:      Maintained
9646 Q:      http://patchwork.kernel.org/project/linux-input/list/
9647 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
9648 F:      Documentation/devicetree/bindings/input/
9649 F:      Documentation/devicetree/bindings/serio/
9650 F:      Documentation/input/
9651 F:      drivers/input/
9652 F:      include/linux/input.h
9653 F:      include/linux/input/
9654 F:      include/uapi/linux/input-event-codes.h
9655 F:      include/uapi/linux/input.h
9656
9657 INPUT MULTITOUCH (MT) PROTOCOL
9658 M:      Henrik Rydberg <rydberg@bitmath.org>
9659 L:      linux-input@vger.kernel.org
9660 S:      Odd fixes
9661 F:      Documentation/input/multi-touch-protocol.rst
9662 F:      drivers/input/input-mt.c
9663 K:      \b(ABS|SYN)_MT_
9664
9665 INSIDE SECURE CRYPTO DRIVER
9666 M:      Antoine Tenart <atenart@kernel.org>
9667 L:      linux-crypto@vger.kernel.org
9668 S:      Maintained
9669 F:      drivers/crypto/inside-secure/
9670
9671 INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
9672 M:      Mimi Zohar <zohar@linux.ibm.com>
9673 M:      Dmitry Kasatkin <dmitry.kasatkin@gmail.com>
9674 L:      linux-integrity@vger.kernel.org
9675 S:      Supported
9676 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/zohar/linux-integrity.git
9677 F:      security/integrity/ima/
9678 F:      security/integrity/
9679
9680 INTEL 810/815 FRAMEBUFFER DRIVER
9681 M:      Antonino Daplas <adaplas@gmail.com>
9682 L:      linux-fbdev@vger.kernel.org
9683 S:      Maintained
9684 F:      drivers/video/fbdev/i810/
9685
9686 INTEL ASoC DRIVERS
9687 M:      Cezary Rojewski <cezary.rojewski@intel.com>
9688 M:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
9689 M:      Liam Girdwood <liam.r.girdwood@linux.intel.com>
9690 M:      Jie Yang <yang.jie@linux.intel.com>
9691 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
9692 S:      Supported
9693 F:      sound/soc/intel/
9694
9695 INTEL ATOMISP2 DUMMY / POWER-MANAGEMENT DRIVER
9696 M:      Hans de Goede <hdegoede@redhat.com>
9697 L:      platform-driver-x86@vger.kernel.org
9698 S:      Maintained
9699 F:      drivers/platform/x86/intel/atomisp2/pm.c
9700
9701 INTEL ATOMISP2 LED DRIVER
9702 M:      Hans de Goede <hdegoede@redhat.com>
9703 L:      platform-driver-x86@vger.kernel.org
9704 S:      Maintained
9705 F:      drivers/platform/x86/intel/atomisp2/led.c
9706
9707 INTEL BIOS SAR INT1092 DRIVER
9708 M:      Shravan Sudhakar <s.shravan@intel.com>
9709 M:      Intel Corporation <linuxwwan@intel.com>
9710 L:      platform-driver-x86@vger.kernel.org
9711 S:      Maintained
9712 F:      drivers/platform/x86/intel/int1092/
9713
9714 INTEL BROXTON PMC DRIVER
9715 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
9716 M:      Zha Qipeng <qipeng.zha@intel.com>
9717 S:      Maintained
9718 F:      drivers/mfd/intel_pmc_bxt.c
9719 F:      include/linux/mfd/intel_pmc_bxt.h
9720
9721 INTEL C600 SERIES SAS CONTROLLER DRIVER
9722 M:      Artur Paszkiewicz <artur.paszkiewicz@intel.com>
9723 L:      linux-scsi@vger.kernel.org
9724 S:      Supported
9725 T:      git git://git.code.sf.net/p/intel-sas/isci
9726 F:      drivers/scsi/isci/
9727
9728 INTEL CPU family model numbers
9729 M:      Tony Luck <tony.luck@intel.com>
9730 M:      x86@kernel.org
9731 L:      linux-kernel@vger.kernel.org
9732 S:      Supported
9733 F:      arch/x86/include/asm/intel-family.h
9734
9735 INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
9736 M:      Jani Nikula <jani.nikula@linux.intel.com>
9737 M:      Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
9738 M:      Rodrigo Vivi <rodrigo.vivi@intel.com>
9739 M:      Tvrtko Ursulin <tvrtko.ursulin@linux.intel.com>
9740 L:      intel-gfx@lists.freedesktop.org
9741 S:      Supported
9742 W:      https://01.org/linuxgraphics/
9743 Q:      http://patchwork.freedesktop.org/project/intel-gfx/
9744 B:      https://gitlab.freedesktop.org/drm/intel/-/wikis/How-to-file-i915-bugs
9745 C:      irc://irc.oftc.net/intel-gfx
9746 T:      git git://anongit.freedesktop.org/drm-intel
9747 F:      Documentation/gpu/i915.rst
9748 F:      drivers/gpu/drm/i915/
9749 F:      include/drm/i915*
9750 F:      include/uapi/drm/i915_drm.h
9751
9752 INTEL ETHERNET DRIVERS
9753 M:      Jesse Brandeburg <jesse.brandeburg@intel.com>
9754 M:      Tony Nguyen <anthony.l.nguyen@intel.com>
9755 L:      intel-wired-lan@lists.osuosl.org (moderated for non-subscribers)
9756 S:      Supported
9757 W:      http://www.intel.com/support/feedback.htm
9758 W:      http://e1000.sourceforge.net/
9759 Q:      http://patchwork.ozlabs.org/project/intel-wired-lan/list/
9760 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tnguy/net-queue.git
9761 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tnguy/next-queue.git
9762 F:      Documentation/networking/device_drivers/ethernet/intel/
9763 F:      drivers/net/ethernet/intel/
9764 F:      drivers/net/ethernet/intel/*/
9765 F:      include/linux/avf/virtchnl.h
9766 F:      include/linux/net/intel/iidc.h
9767
9768 INTEL ETHERNET PROTOCOL DRIVER FOR RDMA
9769 M:      Mustafa Ismail <mustafa.ismail@intel.com>
9770 M:      Shiraz Saleem <shiraz.saleem@intel.com>
9771 L:      linux-rdma@vger.kernel.org
9772 S:      Supported
9773 F:      drivers/infiniband/hw/irdma/
9774 F:      include/uapi/rdma/irdma-abi.h
9775
9776 INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
9777 M:      Maik Broemme <mbroemme@libmpq.org>
9778 L:      linux-fbdev@vger.kernel.org
9779 S:      Maintained
9780 F:      Documentation/fb/intelfb.rst
9781 F:      drivers/video/fbdev/intelfb/
9782
9783 INTEL GPIO DRIVERS
9784 M:      Andy Shevchenko <andy@kernel.org>
9785 L:      linux-gpio@vger.kernel.org
9786 S:      Maintained
9787 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
9788 F:      drivers/gpio/gpio-ich.c
9789 F:      drivers/gpio/gpio-merrifield.c
9790 F:      drivers/gpio/gpio-ml-ioh.c
9791 F:      drivers/gpio/gpio-pch.c
9792 F:      drivers/gpio/gpio-sch.c
9793 F:      drivers/gpio/gpio-sodaville.c
9794
9795 INTEL GVT-g DRIVERS (Intel GPU Virtualization)
9796 M:      Zhenyu Wang <zhenyuw@linux.intel.com>
9797 M:      Zhi Wang <zhi.a.wang@intel.com>
9798 L:      intel-gvt-dev@lists.freedesktop.org
9799 L:      intel-gfx@lists.freedesktop.org
9800 S:      Supported
9801 W:      https://01.org/igvt-g
9802 T:      git https://github.com/intel/gvt-linux.git
9803 F:      drivers/gpu/drm/i915/gvt/
9804
9805 INTEL HID EVENT DRIVER
9806 M:      Alex Hung <alex.hung@canonical.com>
9807 L:      platform-driver-x86@vger.kernel.org
9808 S:      Maintained
9809 F:      drivers/platform/x86/intel/hid.c
9810
9811 INTEL I/OAT DMA DRIVER
9812 M:      Dave Jiang <dave.jiang@intel.com>
9813 R:      Dan Williams <dan.j.williams@intel.com>
9814 L:      dmaengine@vger.kernel.org
9815 S:      Supported
9816 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
9817 F:      drivers/dma/ioat*
9818
9819 INTEL IADX DRIVER
9820 M:      Dave Jiang <dave.jiang@intel.com>
9821 L:      dmaengine@vger.kernel.org
9822 S:      Supported
9823 F:      drivers/dma/idxd/*
9824 F:      include/uapi/linux/idxd.h
9825
9826 INTEL IDLE DRIVER
9827 M:      Jacob Pan <jacob.jun.pan@linux.intel.com>
9828 M:      Len Brown <lenb@kernel.org>
9829 L:      linux-pm@vger.kernel.org
9830 S:      Supported
9831 B:      https://bugzilla.kernel.org
9832 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
9833 F:      drivers/idle/intel_idle.c
9834
9835 INTEL INTEGRATED SENSOR HUB DRIVER
9836 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
9837 M:      Jiri Kosina <jikos@kernel.org>
9838 L:      linux-input@vger.kernel.org
9839 S:      Maintained
9840 F:      drivers/hid/intel-ish-hid/
9841
9842 INTEL IOMMU (VT-d)
9843 M:      David Woodhouse <dwmw2@infradead.org>
9844 M:      Lu Baolu <baolu.lu@linux.intel.com>
9845 L:      iommu@lists.linux-foundation.org
9846 S:      Supported
9847 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
9848 F:      drivers/iommu/intel/
9849 F:      include/linux/intel-iommu.h
9850 F:      include/linux/intel-svm.h
9851
9852 INTEL IOP-ADMA DMA DRIVER
9853 R:      Dan Williams <dan.j.williams@intel.com>
9854 S:      Odd fixes
9855 F:      drivers/dma/iop-adma.c
9856
9857 INTEL IPU3 CSI-2 CIO2 DRIVER
9858 M:      Yong Zhi <yong.zhi@intel.com>
9859 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
9860 M:      Bingbu Cao <bingbu.cao@intel.com>
9861 M:      Dan Scally <djrscally@gmail.com>
9862 R:      Tianshu Qiu <tian.shu.qiu@intel.com>
9863 L:      linux-media@vger.kernel.org
9864 S:      Maintained
9865 T:      git git://linuxtv.org/media_tree.git
9866 F:      Documentation/userspace-api/media/v4l/pixfmt-srggb10-ipu3.rst
9867 F:      drivers/media/pci/intel/ipu3/
9868
9869 INTEL IPU3 CSI-2 IMGU DRIVER
9870 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
9871 R:      Bingbu Cao <bingbu.cao@intel.com>
9872 R:      Tianshu Qiu <tian.shu.qiu@intel.com>
9873 L:      linux-media@vger.kernel.org
9874 S:      Maintained
9875 F:      Documentation/admin-guide/media/ipu3.rst
9876 F:      Documentation/admin-guide/media/ipu3_rcb.svg
9877 F:      Documentation/userspace-api/media/v4l/pixfmt-meta-intel-ipu3.rst
9878 F:      drivers/staging/media/ipu3/
9879
9880 INTEL IXP4XX CRYPTO SUPPORT
9881 M:      Corentin Labbe <clabbe@baylibre.com>
9882 L:      linux-crypto@vger.kernel.org
9883 S:      Maintained
9884 F:      drivers/crypto/ixp4xx_crypto.c
9885
9886 INTEL ISHTP ECLITE DRIVER
9887 M:      Sumesh K Naduvalath <sumesh.k.naduvalath@intel.com>
9888 L:      platform-driver-x86@vger.kernel.org
9889 S:      Supported
9890 F:      drivers/platform/x86/intel/ishtp_eclite.c
9891
9892 INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
9893 M:      Krzysztof Halasa <khalasa@piap.pl>
9894 S:      Maintained
9895 F:      drivers/net/ethernet/xscale/ixp4xx_eth.c
9896 F:      drivers/net/wan/ixp4xx_hss.c
9897 F:      drivers/soc/ixp4xx/ixp4xx-npe.c
9898 F:      drivers/soc/ixp4xx/ixp4xx-qmgr.c
9899 F:      include/linux/soc/ixp4xx/npe.h
9900 F:      include/linux/soc/ixp4xx/qmgr.h
9901
9902 INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
9903 M:      Deepak Saxena <dsaxena@plexity.net>
9904 S:      Maintained
9905 F:      Documentation/devicetree/bindings/rng/intel,ixp46x-rng.yaml
9906 F:      drivers/char/hw_random/ixp4xx-rng.c
9907
9908 INTEL KEEM BAY DRM DRIVER
9909 M:      Anitha Chrisanthus <anitha.chrisanthus@intel.com>
9910 M:      Edmund Dea <edmund.j.dea@intel.com>
9911 S:      Maintained
9912 F:      Documentation/devicetree/bindings/display/intel,keembay-display.yaml
9913 F:      drivers/gpu/drm/kmb/
9914
9915 INTEL KEEM BAY OCS AES/SM4 CRYPTO DRIVER
9916 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
9917 S:      Maintained
9918 F:      Documentation/devicetree/bindings/crypto/intel,keembay-ocs-aes.yaml
9919 F:      drivers/crypto/keembay/Kconfig
9920 F:      drivers/crypto/keembay/Makefile
9921 F:      drivers/crypto/keembay/keembay-ocs-aes-core.c
9922 F:      drivers/crypto/keembay/ocs-aes.c
9923 F:      drivers/crypto/keembay/ocs-aes.h
9924
9925 INTEL KEEM BAY OCS ECC CRYPTO DRIVER
9926 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
9927 M:      Prabhjot Khurana <prabhjot.khurana@intel.com>
9928 M:      Mark Gross <mgross@linux.intel.com>
9929 S:      Maintained
9930 F:      Documentation/devicetree/bindings/crypto/intel,keembay-ocs-ecc.yaml
9931 F:      drivers/crypto/keembay/Kconfig
9932 F:      drivers/crypto/keembay/Makefile
9933 F:      drivers/crypto/keembay/keembay-ocs-ecc.c
9934
9935 INTEL KEEM BAY OCS HCU CRYPTO DRIVER
9936 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
9937 M:      Declan Murphy <declan.murphy@intel.com>
9938 S:      Maintained
9939 F:      Documentation/devicetree/bindings/crypto/intel,keembay-ocs-hcu.yaml
9940 F:      drivers/crypto/keembay/Kconfig
9941 F:      drivers/crypto/keembay/Makefile
9942 F:      drivers/crypto/keembay/keembay-ocs-hcu-core.c
9943 F:      drivers/crypto/keembay/ocs-hcu.c
9944 F:      drivers/crypto/keembay/ocs-hcu.h
9945
9946 INTEL THUNDER BAY EMMC PHY DRIVER
9947 M:      Nandhini Srikandan <nandhini.srikandan@intel.com>
9948 M:      Rashmi A <rashmi.a@intel.com>
9949 S:      Maintained
9950 F:      Documentation/devicetree/bindings/phy/intel,phy-thunderbay-emmc.yaml
9951 F:      drivers/phy/intel/phy-intel-thunderbay-emmc.c
9952
9953 INTEL MANAGEMENT ENGINE (mei)
9954 M:      Tomas Winkler <tomas.winkler@intel.com>
9955 L:      linux-kernel@vger.kernel.org
9956 S:      Supported
9957 F:      Documentation/driver-api/mei/*
9958 F:      drivers/misc/mei/
9959 F:      drivers/watchdog/mei_wdt.c
9960 F:      include/linux/mei_cl_bus.h
9961 F:      include/uapi/linux/mei.h
9962 F:      samples/mei/*
9963
9964 INTEL MAX 10 BMC MFD DRIVER
9965 M:      Xu Yilun <yilun.xu@intel.com>
9966 R:      Tom Rix <trix@redhat.com>
9967 S:      Maintained
9968 F:      Documentation/ABI/testing/sysfs-driver-intel-m10-bmc
9969 F:      Documentation/hwmon/intel-m10-bmc-hwmon.rst
9970 F:      drivers/hwmon/intel-m10-bmc-hwmon.c
9971 F:      drivers/mfd/intel-m10-bmc.c
9972 F:      include/linux/mfd/intel-m10-bmc.h
9973
9974 INTEL MENLOW THERMAL DRIVER
9975 M:      Sujith Thomas <sujith.thomas@intel.com>
9976 L:      linux-pm@vger.kernel.org
9977 S:      Supported
9978 W:      https://01.org/linux-acpi
9979 F:      drivers/thermal/intel/intel_menlow.c
9980
9981 INTEL P-Unit IPC DRIVER
9982 M:      Zha Qipeng <qipeng.zha@intel.com>
9983 L:      platform-driver-x86@vger.kernel.org
9984 S:      Maintained
9985 F:      arch/x86/include/asm/intel_punit_ipc.h
9986 F:      drivers/platform/x86/intel/punit_ipc.c
9987
9988 INTEL PMC CORE DRIVER
9989 M:      Rajneesh Bhardwaj <irenic.rajneesh@gmail.com>
9990 M:      David E Box <david.e.box@intel.com>
9991 L:      platform-driver-x86@vger.kernel.org
9992 S:      Maintained
9993 F:      Documentation/ABI/testing/sysfs-platform-intel-pmc
9994 F:      drivers/platform/x86/intel/pmc/
9995
9996 INTEL PMIC GPIO DRIVERS
9997 M:      Andy Shevchenko <andy@kernel.org>
9998 S:      Maintained
9999 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
10000 F:      drivers/gpio/gpio-*cove.c
10001
10002 INTEL PMIC MULTIFUNCTION DEVICE DRIVERS
10003 M:      Andy Shevchenko <andy@kernel.org>
10004 S:      Maintained
10005 F:      drivers/mfd/intel_soc_pmic*
10006 F:      include/linux/mfd/intel_soc_pmic*
10007
10008 INTEL PMT DRIVERS
10009 M:      David E. Box <david.e.box@linux.intel.com>
10010 S:      Supported
10011 F:      drivers/platform/x86/intel/pmt/
10012
10013 INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
10014 M:      Stanislav Yakovlev <stas.yakovlev@gmail.com>
10015 L:      linux-wireless@vger.kernel.org
10016 S:      Maintained
10017 F:      Documentation/networking/device_drivers/wifi/intel/ipw2100.rst
10018 F:      Documentation/networking/device_drivers/wifi/intel/ipw2200.rst
10019 F:      drivers/net/wireless/intel/ipw2x00/
10020
10021 INTEL PSTATE DRIVER
10022 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
10023 M:      Len Brown <lenb@kernel.org>
10024 L:      linux-pm@vger.kernel.org
10025 S:      Supported
10026 F:      drivers/cpufreq/intel_pstate.c
10027
10028 INTEL QUADRATURE ENCODER PERIPHERAL DRIVER
10029 M:      Jarkko Nikula <jarkko.nikula@linux.intel.com>
10030 L:      linux-iio@vger.kernel.org
10031 F:      drivers/counter/intel-qep.c
10032
10033 INTEL SCU DRIVERS
10034 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
10035 S:      Maintained
10036 F:      arch/x86/include/asm/intel_scu_ipc.h
10037 F:      drivers/platform/x86/intel_scu_*
10038
10039 INTEL SDSI DRIVER
10040 M:      David E. Box <david.e.box@linux.intel.com>
10041 S:      Supported
10042 F:      drivers/platform/x86/intel/sdsi.c
10043 F:      tools/arch/x86/intel_sdsi/
10044 F:      tools/testing/selftests/drivers/sdsi/
10045
10046 INTEL SKYLAKE INT3472 ACPI DEVICE DRIVER
10047 M:      Daniel Scally <djrscally@gmail.com>
10048 S:      Maintained
10049 F:      drivers/platform/x86/intel/int3472/
10050
10051 INTEL SPEED SELECT TECHNOLOGY
10052 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
10053 L:      platform-driver-x86@vger.kernel.org
10054 S:      Maintained
10055 F:      drivers/platform/x86/intel/speed_select_if/
10056 F:      include/uapi/linux/isst_if.h
10057 F:      tools/power/x86/intel-speed-select/
10058
10059 INTEL STRATIX10 FIRMWARE DRIVERS
10060 M:      Dinh Nguyen <dinguyen@kernel.org>
10061 L:      linux-kernel@vger.kernel.org
10062 S:      Maintained
10063 F:      Documentation/ABI/testing/sysfs-devices-platform-stratix10-rsu
10064 F:      Documentation/devicetree/bindings/firmware/intel,stratix10-svc.txt
10065 F:      drivers/firmware/stratix10-rsu.c
10066 F:      drivers/firmware/stratix10-svc.c
10067 F:      include/linux/firmware/intel/stratix10-smc.h
10068 F:      include/linux/firmware/intel/stratix10-svc-client.h
10069 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
10070
10071 INTEL TELEMETRY DRIVER
10072 M:      Rajneesh Bhardwaj <irenic.rajneesh@gmail.com>
10073 M:      "David E. Box" <david.e.box@linux.intel.com>
10074 L:      platform-driver-x86@vger.kernel.org
10075 S:      Maintained
10076 F:      arch/x86/include/asm/intel_telemetry.h
10077 F:      drivers/platform/x86/intel/telemetry/
10078
10079 INTEL UNCORE FREQUENCY CONTROL
10080 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
10081 L:      platform-driver-x86@vger.kernel.org
10082 S:      Maintained
10083 F:      drivers/platform/x86/intel/uncore-frequency/
10084
10085 INTEL VENDOR SPECIFIC EXTENDED CAPABILITIES DRIVER
10086 M:      David E. Box <david.e.box@linux.intel.com>
10087 S:      Supported
10088 F:      drivers/platform/x86/intel/vsec.*
10089
10090 INTEL VIRTUAL BUTTON DRIVER
10091 M:      AceLan Kao <acelan.kao@canonical.com>
10092 L:      platform-driver-x86@vger.kernel.org
10093 S:      Maintained
10094 F:      drivers/platform/x86/intel/vbtn.c
10095
10096 INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
10097 M:      Stanislaw Gruszka <stf_xl@wp.pl>
10098 L:      linux-wireless@vger.kernel.org
10099 S:      Supported
10100 F:      drivers/net/wireless/intel/iwlegacy/
10101
10102 INTEL WIRELESS WIFI LINK (iwlwifi)
10103 M:      Luca Coelho <luciano.coelho@intel.com>
10104 L:      linux-wireless@vger.kernel.org
10105 S:      Supported
10106 W:      https://wireless.wiki.kernel.org/en/users/drivers/iwlwifi
10107 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
10108 F:      drivers/net/wireless/intel/iwlwifi/
10109
10110 INTEL WMI SLIM BOOTLOADER (SBL) FIRMWARE UPDATE DRIVER
10111 M:      Jithu Joseph <jithu.joseph@intel.com>
10112 R:      Maurice Ma <maurice.ma@intel.com>
10113 S:      Maintained
10114 W:      https://slimbootloader.github.io/security/firmware-update.html
10115 F:      drivers/platform/x86/intel/wmi/sbl-fw-update.c
10116
10117 INTEL WMI THUNDERBOLT FORCE POWER DRIVER
10118 L:      Dell.Client.Kernel@dell.com
10119 S:      Maintained
10120 F:      drivers/platform/x86/intel/wmi/thunderbolt.c
10121
10122 INTEL WWAN IOSM DRIVER
10123 M:      M Chetan Kumar <m.chetan.kumar@intel.com>
10124 M:      Intel Corporation <linuxwwan@intel.com>
10125 L:      netdev@vger.kernel.org
10126 S:      Maintained
10127 F:      drivers/net/wwan/iosm/
10128
10129 INTEL(R) TRACE HUB
10130 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
10131 S:      Supported
10132 F:      Documentation/trace/intel_th.rst
10133 F:      drivers/hwtracing/intel_th/
10134 F:      include/linux/intel_th.h
10135
10136 INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
10137 M:      Ning Sun <ning.sun@intel.com>
10138 L:      tboot-devel@lists.sourceforge.net
10139 S:      Supported
10140 W:      http://tboot.sourceforge.net
10141 T:      hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
10142 F:      Documentation/x86/intel_txt.rst
10143 F:      arch/x86/kernel/tboot.c
10144 F:      include/linux/tboot.h
10145
10146 INTEL SGX
10147 M:      Jarkko Sakkinen <jarkko@kernel.org>
10148 R:      Dave Hansen <dave.hansen@linux.intel.com>
10149 L:      linux-sgx@vger.kernel.org
10150 S:      Supported
10151 Q:      https://patchwork.kernel.org/project/intel-sgx/list/
10152 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/sgx
10153 F:      Documentation/x86/sgx.rst
10154 F:      arch/x86/entry/vdso/vsgx.S
10155 F:      arch/x86/include/asm/sgx.h
10156 F:      arch/x86/include/uapi/asm/sgx.h
10157 F:      arch/x86/kernel/cpu/sgx/*
10158 F:      tools/testing/selftests/sgx/*
10159 K:      \bSGX_
10160
10161 INTERCONNECT API
10162 M:      Georgi Djakov <djakov@kernel.org>
10163 L:      linux-pm@vger.kernel.org
10164 S:      Maintained
10165 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/djakov/icc.git
10166 F:      Documentation/devicetree/bindings/interconnect/
10167 F:      Documentation/driver-api/interconnect.rst
10168 F:      drivers/interconnect/
10169 F:      include/dt-bindings/interconnect/
10170 F:      include/linux/interconnect-provider.h
10171 F:      include/linux/interconnect.h
10172
10173 INTERRUPT COUNTER DRIVER
10174 M:      Oleksij Rempel <o.rempel@pengutronix.de>
10175 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
10176 L:      linux-iio@vger.kernel.org
10177 F:      Documentation/devicetree/bindings/counter/interrupt-counter.yaml
10178 F:      drivers/counter/interrupt-cnt.c
10179
10180 INTERSIL ISL7998X VIDEO DECODER DRIVER
10181 M:      Michael Tretter <m.tretter@pengutronix.de>
10182 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
10183 L:      linux-media@vger.kernel.org
10184 S:      Maintained
10185 F:      Documentation/devicetree/bindings/media/i2c/isil,isl79987.yaml
10186 F:      drivers/media/i2c/isl7998x.c
10187
10188 INVENSENSE ICM-426xx IMU DRIVER
10189 M:      Jean-Baptiste Maneyrol <jmaneyrol@invensense.com>
10190 L:      linux-iio@vger.kernel.org
10191 S:      Maintained
10192 W:      https://invensense.tdk.com/
10193 F:      Documentation/devicetree/bindings/iio/imu/invensense,icm42600.yaml
10194 F:      drivers/iio/imu/inv_icm42600/
10195
10196 INVENSENSE MPU-3050 GYROSCOPE DRIVER
10197 M:      Linus Walleij <linus.walleij@linaro.org>
10198 L:      linux-iio@vger.kernel.org
10199 S:      Maintained
10200 F:      Documentation/devicetree/bindings/iio/gyroscope/invensense,mpu3050.yaml
10201 F:      drivers/iio/gyro/mpu3050*
10202
10203 IOC3 ETHERNET DRIVER
10204 M:      Ralf Baechle <ralf@linux-mips.org>
10205 L:      linux-mips@vger.kernel.org
10206 S:      Maintained
10207 F:      drivers/net/ethernet/sgi/ioc3-eth.c
10208
10209 IOMAP FILESYSTEM LIBRARY
10210 M:      Christoph Hellwig <hch@infradead.org>
10211 M:      Darrick J. Wong <djwong@kernel.org>
10212 M:      linux-xfs@vger.kernel.org
10213 M:      linux-fsdevel@vger.kernel.org
10214 L:      linux-xfs@vger.kernel.org
10215 L:      linux-fsdevel@vger.kernel.org
10216 S:      Supported
10217 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
10218 F:      fs/iomap/
10219 F:      include/linux/iomap.h
10220
10221 IOMMU DRIVERS
10222 M:      Joerg Roedel <joro@8bytes.org>
10223 M:      Will Deacon <will@kernel.org>
10224 L:      iommu@lists.linux-foundation.org
10225 S:      Maintained
10226 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
10227 F:      Documentation/devicetree/bindings/iommu/
10228 F:      Documentation/userspace-api/iommu.rst
10229 F:      drivers/iommu/
10230 F:      include/linux/iommu.h
10231 F:      include/linux/iova.h
10232 F:      include/linux/of_iommu.h
10233 F:      include/uapi/linux/iommu.h
10234
10235 IOSYS-MAP HELPERS
10236 M:      Thomas Zimmermann <tzimmermann@suse.de>
10237 L:      dri-devel@lists.freedesktop.org
10238 S:      Maintained
10239 T:      git git://anongit.freedesktop.org/drm/drm-misc
10240 F:      include/linux/iosys-map.h
10241
10242 IO_URING
10243 M:      Jens Axboe <axboe@kernel.dk>
10244 R:      Pavel Begunkov <asml.silence@gmail.com>
10245 L:      io-uring@vger.kernel.org
10246 S:      Maintained
10247 T:      git git://git.kernel.dk/linux-block
10248 T:      git git://git.kernel.dk/liburing
10249 F:      fs/io-wq.c
10250 F:      fs/io-wq.h
10251 F:      fs/io_uring.c
10252 F:      include/linux/io_uring.h
10253 F:      include/uapi/linux/io_uring.h
10254 F:      tools/io_uring/
10255
10256 IPMI SUBSYSTEM
10257 M:      Corey Minyard <minyard@acm.org>
10258 L:      openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
10259 S:      Supported
10260 W:      http://openipmi.sourceforge.net/
10261 T:      git https://github.com/cminyard/linux-ipmi.git for-next
10262 F:      Documentation/driver-api/ipmi.rst
10263 F:      Documentation/devicetree/bindings/ipmi/
10264 F:      drivers/char/ipmi/
10265 F:      include/linux/ipmi*
10266 F:      include/uapi/linux/ipmi*
10267
10268 IPS SCSI RAID DRIVER
10269 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
10270 L:      linux-scsi@vger.kernel.org
10271 S:      Maintained
10272 W:      http://www.adaptec.com/
10273 F:      drivers/scsi/ips*
10274
10275 IPVS
10276 M:      Simon Horman <horms@verge.net.au>
10277 M:      Julian Anastasov <ja@ssi.bg>
10278 L:      netdev@vger.kernel.org
10279 L:      lvs-devel@vger.kernel.org
10280 S:      Maintained
10281 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs-next.git
10282 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs.git
10283 F:      Documentation/networking/ipvs-sysctl.rst
10284 F:      include/net/ip_vs.h
10285 F:      include/uapi/linux/ip_vs.h
10286 F:      net/netfilter/ipvs/
10287
10288 IPWIRELESS DRIVER
10289 M:      Jiri Kosina <jikos@kernel.org>
10290 M:      David Sterba <dsterba@suse.com>
10291 S:      Odd Fixes
10292 F:      drivers/tty/ipwireless/
10293
10294 IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
10295 M:      Marc Zyngier <maz@kernel.org>
10296 S:      Maintained
10297 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
10298 F:      Documentation/core-api/irq/irq-domain.rst
10299 F:      include/linux/irqdomain.h
10300 F:      kernel/irq/irqdomain.c
10301 F:      kernel/irq/msi.c
10302
10303 IRQ SUBSYSTEM
10304 M:      Thomas Gleixner <tglx@linutronix.de>
10305 L:      linux-kernel@vger.kernel.org
10306 S:      Maintained
10307 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
10308 F:      kernel/irq/
10309
10310 IRQCHIP DRIVERS
10311 M:      Thomas Gleixner <tglx@linutronix.de>
10312 M:      Marc Zyngier <maz@kernel.org>
10313 L:      linux-kernel@vger.kernel.org
10314 S:      Maintained
10315 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
10316 F:      Documentation/devicetree/bindings/interrupt-controller/
10317 F:      drivers/irqchip/
10318
10319 ISA
10320 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
10321 S:      Maintained
10322 F:      Documentation/driver-api/isa.rst
10323 F:      drivers/base/isa.c
10324 F:      include/linux/isa.h
10325
10326 ISA RADIO MODULE
10327 M:      Hans Verkuil <hverkuil@xs4all.nl>
10328 L:      linux-media@vger.kernel.org
10329 S:      Maintained
10330 W:      https://linuxtv.org
10331 T:      git git://linuxtv.org/media_tree.git
10332 F:      drivers/media/radio/radio-isa*
10333
10334 ISAPNP
10335 M:      Jaroslav Kysela <perex@perex.cz>
10336 S:      Maintained
10337 F:      Documentation/driver-api/isapnp.rst
10338 F:      drivers/pnp/isapnp/
10339 F:      include/linux/isapnp.h
10340
10341 ISCSI
10342 M:      Lee Duncan <lduncan@suse.com>
10343 M:      Chris Leech <cleech@redhat.com>
10344 L:      open-iscsi@googlegroups.com
10345 L:      linux-scsi@vger.kernel.org
10346 S:      Maintained
10347 W:      www.open-iscsi.com
10348 F:      drivers/scsi/*iscsi*
10349 F:      include/scsi/*iscsi*
10350
10351 iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
10352 M:      Peter Jones <pjones@redhat.com>
10353 M:      Konrad Rzeszutek Wilk <konrad@kernel.org>
10354 S:      Maintained
10355 F:      drivers/firmware/iscsi_ibft*
10356
10357 ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR
10358 M:      Sagi Grimberg <sagi@grimberg.me>
10359 M:      Max Gurtovoy <mgurtovoy@nvidia.com>
10360 L:      linux-rdma@vger.kernel.org
10361 S:      Supported
10362 W:      http://www.openfabrics.org
10363 W:      www.open-iscsi.org
10364 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
10365 F:      drivers/infiniband/ulp/iser/
10366
10367 ISCSI EXTENSIONS FOR RDMA (ISER) TARGET
10368 M:      Sagi Grimberg <sagi@grimberg.me>
10369 L:      linux-rdma@vger.kernel.org
10370 L:      target-devel@vger.kernel.org
10371 S:      Supported
10372 W:      http://www.linux-iscsi.org
10373 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
10374 F:      drivers/infiniband/ulp/isert
10375
10376 ISDN/CMTP OVER BLUETOOTH
10377 M:      Karsten Keil <isdn@linux-pingi.de>
10378 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
10379 L:      netdev@vger.kernel.org
10380 S:      Odd Fixes
10381 W:      http://www.isdn4linux.de
10382 F:      Documentation/isdn/
10383 F:      drivers/isdn/capi/
10384 F:      include/linux/isdn/
10385 F:      include/uapi/linux/isdn/
10386 F:      net/bluetooth/cmtp/
10387
10388 ISDN/mISDN SUBSYSTEM
10389 M:      Karsten Keil <isdn@linux-pingi.de>
10390 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
10391 L:      netdev@vger.kernel.org
10392 S:      Maintained
10393 W:      http://www.isdn4linux.de
10394 F:      drivers/isdn/Kconfig
10395 F:      drivers/isdn/Makefile
10396 F:      drivers/isdn/hardware/
10397 F:      drivers/isdn/mISDN/
10398
10399 IT87 HARDWARE MONITORING DRIVER
10400 M:      Jean Delvare <jdelvare@suse.com>
10401 L:      linux-hwmon@vger.kernel.org
10402 S:      Maintained
10403 F:      Documentation/hwmon/it87.rst
10404 F:      drivers/hwmon/it87.c
10405
10406 IT913X MEDIA DRIVER
10407 M:      Antti Palosaari <crope@iki.fi>
10408 L:      linux-media@vger.kernel.org
10409 S:      Maintained
10410 W:      https://linuxtv.org
10411 W:      http://palosaari.fi/linux/
10412 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10413 T:      git git://linuxtv.org/anttip/media_tree.git
10414 F:      drivers/media/tuners/it913x*
10415
10416 ITE IT66121 HDMI BRIDGE DRIVER
10417 M:      Phong LE <ple@baylibre.com>
10418 M:      Neil Armstrong <narmstrong@baylibre.com>
10419 S:      Maintained
10420 T:      git git://anongit.freedesktop.org/drm/drm-misc
10421 F:      Documentation/devicetree/bindings/display/bridge/ite,it66121.yaml
10422 F:      drivers/gpu/drm/bridge/ite-it66121.c
10423
10424 IVTV VIDEO4LINUX DRIVER
10425 M:      Andy Walls <awalls@md.metrocast.net>
10426 L:      linux-media@vger.kernel.org
10427 S:      Maintained
10428 W:      https://linuxtv.org
10429 T:      git git://linuxtv.org/media_tree.git
10430 F:      Documentation/admin-guide/media/ivtv*
10431 F:      drivers/media/pci/ivtv/
10432 F:      include/uapi/linux/ivtv*
10433
10434 IX2505V MEDIA DRIVER
10435 M:      Malcolm Priestley <tvboxspy@gmail.com>
10436 L:      linux-media@vger.kernel.org
10437 S:      Maintained
10438 W:      https://linuxtv.org
10439 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10440 F:      drivers/media/dvb-frontends/ix2505v*
10441
10442 JAILHOUSE HYPERVISOR INTERFACE
10443 M:      Jan Kiszka <jan.kiszka@siemens.com>
10444 L:      jailhouse-dev@googlegroups.com
10445 S:      Maintained
10446 F:      arch/x86/include/asm/jailhouse_para.h
10447 F:      arch/x86/kernel/jailhouse.c
10448
10449 JC42.4 TEMPERATURE SENSOR DRIVER
10450 M:      Guenter Roeck <linux@roeck-us.net>
10451 L:      linux-hwmon@vger.kernel.org
10452 S:      Maintained
10453 F:      Documentation/devicetree/bindings/hwmon/jedec,jc42.yaml
10454 F:      Documentation/hwmon/jc42.rst
10455 F:      drivers/hwmon/jc42.c
10456
10457 JFS FILESYSTEM
10458 M:      Dave Kleikamp <shaggy@kernel.org>
10459 L:      jfs-discussion@lists.sourceforge.net
10460 S:      Maintained
10461 W:      http://jfs.sourceforge.net/
10462 T:      git git://github.com/kleikamp/linux-shaggy.git
10463 F:      Documentation/admin-guide/jfs.rst
10464 F:      fs/jfs/
10465
10466 JME NETWORK DRIVER
10467 M:      Guo-Fu Tseng <cooldavid@cooldavid.org>
10468 L:      netdev@vger.kernel.org
10469 S:      Maintained
10470 F:      drivers/net/ethernet/jme.*
10471
10472 JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
10473 M:      David Woodhouse <dwmw2@infradead.org>
10474 M:      Richard Weinberger <richard@nod.at>
10475 L:      linux-mtd@lists.infradead.org
10476 S:      Odd Fixes
10477 W:      http://www.linux-mtd.infradead.org/doc/jffs2.html
10478 T:      git git://git.infradead.org/ubifs-2.6.git
10479 F:      fs/jffs2/
10480 F:      include/uapi/linux/jffs2.h
10481
10482 JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
10483 M:      "Theodore Ts'o" <tytso@mit.edu>
10484 M:      Jan Kara <jack@suse.com>
10485 L:      linux-ext4@vger.kernel.org
10486 S:      Maintained
10487 F:      fs/jbd2/
10488 F:      include/linux/jbd2.h
10489
10490 JPU V4L2 MEM2MEM DRIVER FOR RENESAS
10491 M:      Mikhail Ulyanov <mikhail.ulyanov@cogentembedded.com>
10492 L:      linux-media@vger.kernel.org
10493 L:      linux-renesas-soc@vger.kernel.org
10494 S:      Maintained
10495 F:      drivers/media/platform/renesas/rcar_jpu.c
10496
10497 JSM Neo PCI based serial card
10498 L:      linux-serial@vger.kernel.org
10499 S:      Orphan
10500 F:      drivers/tty/serial/jsm/
10501
10502 K10TEMP HARDWARE MONITORING DRIVER
10503 M:      Clemens Ladisch <clemens@ladisch.de>
10504 L:      linux-hwmon@vger.kernel.org
10505 S:      Maintained
10506 F:      Documentation/hwmon/k10temp.rst
10507 F:      drivers/hwmon/k10temp.c
10508
10509 K8TEMP HARDWARE MONITORING DRIVER
10510 M:      Rudolf Marek <r.marek@assembler.cz>
10511 L:      linux-hwmon@vger.kernel.org
10512 S:      Maintained
10513 F:      Documentation/hwmon/k8temp.rst
10514 F:      drivers/hwmon/k8temp.c
10515
10516 KASAN
10517 M:      Andrey Ryabinin <ryabinin.a.a@gmail.com>
10518 R:      Alexander Potapenko <glider@google.com>
10519 R:      Andrey Konovalov <andreyknvl@gmail.com>
10520 R:      Dmitry Vyukov <dvyukov@google.com>
10521 L:      kasan-dev@googlegroups.com
10522 S:      Maintained
10523 F:      Documentation/dev-tools/kasan.rst
10524 F:      arch/*/include/asm/*kasan.h
10525 F:      arch/*/mm/kasan_init*
10526 F:      include/linux/kasan*.h
10527 F:      lib/Kconfig.kasan
10528 F:      lib/test_kasan*.c
10529 F:      mm/kasan/
10530 F:      scripts/Makefile.kasan
10531
10532 KCONFIG
10533 M:      Masahiro Yamada <masahiroy@kernel.org>
10534 L:      linux-kbuild@vger.kernel.org
10535 S:      Maintained
10536 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git kconfig
10537 F:      Documentation/kbuild/kconfig*
10538 F:      scripts/Kconfig.include
10539 F:      scripts/kconfig/
10540
10541 KCOV
10542 R:      Dmitry Vyukov <dvyukov@google.com>
10543 R:      Andrey Konovalov <andreyknvl@gmail.com>
10544 L:      kasan-dev@googlegroups.com
10545 S:      Maintained
10546 F:      Documentation/dev-tools/kcov.rst
10547 F:      include/linux/kcov.h
10548 F:      include/uapi/linux/kcov.h
10549 F:      kernel/kcov.c
10550 F:      scripts/Makefile.kcov
10551
10552 KCSAN
10553 M:      Marco Elver <elver@google.com>
10554 R:      Dmitry Vyukov <dvyukov@google.com>
10555 L:      kasan-dev@googlegroups.com
10556 S:      Maintained
10557 F:      Documentation/dev-tools/kcsan.rst
10558 F:      include/linux/kcsan*.h
10559 F:      kernel/kcsan/
10560 F:      lib/Kconfig.kcsan
10561 F:      scripts/Makefile.kcsan
10562
10563 KDUMP
10564 M:      Baoquan He <bhe@redhat.com>
10565 R:      Vivek Goyal <vgoyal@redhat.com>
10566 R:      Dave Young <dyoung@redhat.com>
10567 L:      kexec@lists.infradead.org
10568 S:      Maintained
10569 W:      http://lse.sourceforge.net/kdump/
10570 F:      Documentation/admin-guide/kdump/
10571 F:      fs/proc/vmcore.c
10572 F:      include/linux/crash_core.h
10573 F:      include/linux/crash_dump.h
10574 F:      include/uapi/linux/vmcore.h
10575 F:      kernel/crash_*.c
10576
10577 KEENE FM RADIO TRANSMITTER DRIVER
10578 M:      Hans Verkuil <hverkuil@xs4all.nl>
10579 L:      linux-media@vger.kernel.org
10580 S:      Maintained
10581 W:      https://linuxtv.org
10582 T:      git git://linuxtv.org/media_tree.git
10583 F:      drivers/media/radio/radio-keene*
10584
10585 KERNEL AUTOMOUNTER
10586 M:      Ian Kent <raven@themaw.net>
10587 L:      autofs@vger.kernel.org
10588 S:      Maintained
10589 F:      fs/autofs/
10590
10591 KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
10592 M:      Masahiro Yamada <masahiroy@kernel.org>
10593 M:      Michal Marek <michal.lkml@markovi.net>
10594 R:      Nick Desaulniers <ndesaulniers@google.com>
10595 L:      linux-kbuild@vger.kernel.org
10596 S:      Maintained
10597 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git
10598 F:      Documentation/kbuild/
10599 F:      Makefile
10600 F:      scripts/*vmlinux*
10601 F:      scripts/Kbuild*
10602 F:      scripts/Makefile*
10603 F:      scripts/basic/
10604 F:      scripts/dummy-tools/
10605 F:      scripts/mk*
10606 F:      scripts/mod/
10607 F:      scripts/package/
10608
10609 KERNEL JANITORS
10610 L:      kernel-janitors@vger.kernel.org
10611 S:      Odd Fixes
10612 W:      http://kernelnewbies.org/KernelJanitors
10613
10614 KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
10615 M:      Chuck Lever <chuck.lever@oracle.com>
10616 L:      linux-nfs@vger.kernel.org
10617 S:      Supported
10618 W:      http://nfs.sourceforge.net/
10619 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/cel/linux.git
10620 F:      fs/lockd/
10621 F:      fs/nfs_common/
10622 F:      fs/nfsd/
10623 F:      include/linux/lockd/
10624 F:      include/linux/sunrpc/
10625 F:      include/uapi/linux/nfsd/
10626 F:      include/uapi/linux/sunrpc/
10627 F:      net/sunrpc/
10628 F:      Documentation/filesystems/nfs/
10629
10630 KERNEL REGRESSIONS
10631 M:      Thorsten Leemhuis <linux@leemhuis.info>
10632 L:      regressions@lists.linux.dev
10633 S:      Supported
10634 F:      Documentation/admin-guide/reporting-regressions.rst
10635 F:      Documentation/process/handling-regressions.rst
10636
10637 KERNEL SELFTEST FRAMEWORK
10638 M:      Shuah Khan <shuah@kernel.org>
10639 M:      Shuah Khan <skhan@linuxfoundation.org>
10640 L:      linux-kselftest@vger.kernel.org
10641 S:      Maintained
10642 Q:      https://patchwork.kernel.org/project/linux-kselftest/list/
10643 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest.git
10644 F:      Documentation/dev-tools/kselftest*
10645 F:      tools/testing/selftests/
10646
10647 KERNEL SMB3 SERVER (KSMBD)
10648 M:      Namjae Jeon <linkinjeon@kernel.org>
10649 M:      Sergey Senozhatsky <senozhatsky@chromium.org>
10650 M:      Steve French <sfrench@samba.org>
10651 M:      Hyunchul Lee <hyc.lee@gmail.com>
10652 L:      linux-cifs@vger.kernel.org
10653 S:      Maintained
10654 T:      git git://git.samba.org/ksmbd.git
10655 F:      fs/ksmbd/
10656 F:      fs/smbfs_common/
10657
10658 KERNEL UNIT TESTING FRAMEWORK (KUnit)
10659 M:      Brendan Higgins <brendanhiggins@google.com>
10660 L:      linux-kselftest@vger.kernel.org
10661 L:      kunit-dev@googlegroups.com
10662 S:      Maintained
10663 W:      https://google.github.io/kunit-docs/third_party/kernel/docs/
10664 F:      Documentation/dev-tools/kunit/
10665 F:      include/kunit/
10666 F:      lib/kunit/
10667 F:      tools/testing/kunit/
10668
10669 KERNEL USERMODE HELPER
10670 M:      Luis Chamberlain <mcgrof@kernel.org>
10671 L:      linux-kernel@vger.kernel.org
10672 S:      Maintained
10673 F:      include/linux/umh.h
10674 F:      kernel/umh.c
10675
10676 KERNEL VIRTUAL MACHINE (KVM)
10677 M:      Paolo Bonzini <pbonzini@redhat.com>
10678 L:      kvm@vger.kernel.org
10679 S:      Supported
10680 W:      http://www.linux-kvm.org
10681 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
10682 F:      Documentation/virt/kvm/
10683 F:      include/asm-generic/kvm*
10684 F:      include/kvm/iodev.h
10685 F:      include/linux/kvm*
10686 F:      include/trace/events/kvm.h
10687 F:      include/uapi/asm-generic/kvm*
10688 F:      include/uapi/linux/kvm*
10689 F:      tools/kvm/
10690 F:      tools/testing/selftests/kvm/
10691 F:      virt/kvm/*
10692
10693 KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64)
10694 M:      Marc Zyngier <maz@kernel.org>
10695 R:      James Morse <james.morse@arm.com>
10696 R:      Alexandru Elisei <alexandru.elisei@arm.com>
10697 R:      Suzuki K Poulose <suzuki.poulose@arm.com>
10698 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10699 L:      kvmarm@lists.cs.columbia.edu (moderated for non-subscribers)
10700 S:      Maintained
10701 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvmarm/kvmarm.git
10702 F:      arch/arm64/include/asm/kvm*
10703 F:      arch/arm64/include/uapi/asm/kvm*
10704 F:      arch/arm64/kvm/
10705 F:      include/kvm/arm_*
10706 F:      tools/testing/selftests/kvm/*/aarch64/
10707 F:      tools/testing/selftests/kvm/aarch64/
10708
10709 KERNEL VIRTUAL MACHINE FOR MIPS (KVM/mips)
10710 M:      Huacai Chen <chenhuacai@kernel.org>
10711 M:      Aleksandar Markovic <aleksandar.qemu.devel@gmail.com>
10712 L:      linux-mips@vger.kernel.org
10713 L:      kvm@vger.kernel.org
10714 S:      Maintained
10715 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
10716 F:      arch/mips/include/asm/kvm*
10717 F:      arch/mips/include/uapi/asm/kvm*
10718 F:      arch/mips/kvm/
10719
10720 KERNEL VIRTUAL MACHINE FOR POWERPC (KVM/powerpc)
10721 L:      linuxppc-dev@lists.ozlabs.org
10722 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git topic/ppc-kvm
10723 F:      arch/powerpc/include/asm/kvm*
10724 F:      arch/powerpc/include/uapi/asm/kvm*
10725 F:      arch/powerpc/kernel/kvm*
10726 F:      arch/powerpc/kvm/
10727
10728 KERNEL VIRTUAL MACHINE FOR RISC-V (KVM/riscv)
10729 M:      Anup Patel <anup@brainfault.org>
10730 R:      Atish Patra <atishp@atishpatra.org>
10731 L:      kvm@vger.kernel.org
10732 L:      kvm-riscv@lists.infradead.org
10733 L:      linux-riscv@lists.infradead.org
10734 S:      Maintained
10735 T:      git git://github.com/kvm-riscv/linux.git
10736 F:      arch/riscv/include/asm/kvm*
10737 F:      arch/riscv/include/uapi/asm/kvm*
10738 F:      arch/riscv/kvm/
10739
10740 KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
10741 M:      Christian Borntraeger <borntraeger@linux.ibm.com>
10742 M:      Janosch Frank <frankja@linux.ibm.com>
10743 M:      Claudio Imbrenda <imbrenda@linux.ibm.com>
10744 R:      David Hildenbrand <david@redhat.com>
10745 L:      kvm@vger.kernel.org
10746 S:      Supported
10747 W:      http://www.ibm.com/developerworks/linux/linux390/
10748 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvms390/linux.git
10749 F:      Documentation/virt/kvm/s390*
10750 F:      arch/s390/include/asm/gmap.h
10751 F:      arch/s390/include/asm/kvm*
10752 F:      arch/s390/include/uapi/asm/kvm*
10753 F:      arch/s390/kernel/uv.c
10754 F:      arch/s390/kvm/
10755 F:      arch/s390/mm/gmap.c
10756 F:      tools/testing/selftests/kvm/*/s390x/
10757 F:      tools/testing/selftests/kvm/s390x/
10758
10759 KERNEL VIRTUAL MACHINE FOR X86 (KVM/x86)
10760 M:      Paolo Bonzini <pbonzini@redhat.com>
10761 R:      Sean Christopherson <seanjc@google.com>
10762 R:      Vitaly Kuznetsov <vkuznets@redhat.com>
10763 R:      Wanpeng Li <wanpengli@tencent.com>
10764 R:      Jim Mattson <jmattson@google.com>
10765 R:      Joerg Roedel <joro@8bytes.org>
10766 L:      kvm@vger.kernel.org
10767 S:      Supported
10768 W:      http://www.linux-kvm.org
10769 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
10770 F:      arch/x86/include/asm/kvm*
10771 F:      arch/x86/include/asm/pvclock-abi.h
10772 F:      arch/x86/include/asm/svm.h
10773 F:      arch/x86/include/asm/vmx*.h
10774 F:      arch/x86/include/uapi/asm/kvm*
10775 F:      arch/x86/include/uapi/asm/svm.h
10776 F:      arch/x86/include/uapi/asm/vmx.h
10777 F:      arch/x86/kernel/kvm.c
10778 F:      arch/x86/kernel/kvmclock.c
10779 F:      arch/x86/kvm/
10780 F:      arch/x86/kvm/*/
10781
10782 KERNFS
10783 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10784 M:      Tejun Heo <tj@kernel.org>
10785 S:      Supported
10786 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
10787 F:      fs/kernfs/
10788 F:      include/linux/kernfs.h
10789
10790 KEXEC
10791 M:      Eric Biederman <ebiederm@xmission.com>
10792 L:      kexec@lists.infradead.org
10793 S:      Maintained
10794 W:      http://kernel.org/pub/linux/utils/kernel/kexec/
10795 F:      include/linux/kexec.h
10796 F:      include/uapi/linux/kexec.h
10797 F:      kernel/kexec*
10798
10799 KEYS-ENCRYPTED
10800 M:      Mimi Zohar <zohar@linux.ibm.com>
10801 L:      linux-integrity@vger.kernel.org
10802 L:      keyrings@vger.kernel.org
10803 S:      Supported
10804 F:      Documentation/security/keys/trusted-encrypted.rst
10805 F:      include/keys/encrypted-type.h
10806 F:      security/keys/encrypted-keys/
10807
10808 KEYS-TRUSTED
10809 M:      James Bottomley <jejb@linux.ibm.com>
10810 M:      Jarkko Sakkinen <jarkko@kernel.org>
10811 M:      Mimi Zohar <zohar@linux.ibm.com>
10812 L:      linux-integrity@vger.kernel.org
10813 L:      keyrings@vger.kernel.org
10814 S:      Supported
10815 F:      Documentation/security/keys/trusted-encrypted.rst
10816 F:      include/keys/trusted-type.h
10817 F:      include/keys/trusted_tpm.h
10818 F:      security/keys/trusted-keys/
10819
10820 KEYS-TRUSTED-TEE
10821 M:      Sumit Garg <sumit.garg@linaro.org>
10822 L:      linux-integrity@vger.kernel.org
10823 L:      keyrings@vger.kernel.org
10824 S:      Supported
10825 F:      include/keys/trusted_tee.h
10826 F:      security/keys/trusted-keys/trusted_tee.c
10827
10828 KEYS/KEYRINGS
10829 M:      David Howells <dhowells@redhat.com>
10830 M:      Jarkko Sakkinen <jarkko@kernel.org>
10831 L:      keyrings@vger.kernel.org
10832 S:      Maintained
10833 F:      Documentation/security/keys/core.rst
10834 F:      include/keys/
10835 F:      include/linux/key-type.h
10836 F:      include/linux/key.h
10837 F:      include/linux/keyctl.h
10838 F:      include/uapi/linux/keyctl.h
10839 F:      security/keys/
10840
10841 KEYS/KEYRINGS_INTEGRITY
10842 M:      Jarkko Sakkinen <jarkko@kernel.org>
10843 M:      Mimi Zohar <zohar@linux.ibm.com>
10844 L:      linux-integrity@vger.kernel.org
10845 L:      keyrings@vger.kernel.org
10846 S:      Supported
10847 F:      security/integrity/platform_certs
10848
10849 KFENCE
10850 M:      Alexander Potapenko <glider@google.com>
10851 M:      Marco Elver <elver@google.com>
10852 R:      Dmitry Vyukov <dvyukov@google.com>
10853 L:      kasan-dev@googlegroups.com
10854 S:      Maintained
10855 F:      Documentation/dev-tools/kfence.rst
10856 F:      arch/*/include/asm/kfence.h
10857 F:      include/linux/kfence.h
10858 F:      lib/Kconfig.kfence
10859 F:      mm/kfence/
10860
10861 KFIFO
10862 M:      Stefani Seibold <stefani@seibold.net>
10863 S:      Maintained
10864 F:      include/linux/kfifo.h
10865 F:      lib/kfifo.c
10866 F:      samples/kfifo/
10867
10868 KGDB / KDB /debug_core
10869 M:      Jason Wessel <jason.wessel@windriver.com>
10870 M:      Daniel Thompson <daniel.thompson@linaro.org>
10871 R:      Douglas Anderson <dianders@chromium.org>
10872 L:      kgdb-bugreport@lists.sourceforge.net
10873 S:      Maintained
10874 W:      http://kgdb.wiki.kernel.org/
10875 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jwessel/kgdb.git
10876 F:      Documentation/dev-tools/kgdb.rst
10877 F:      drivers/misc/kgdbts.c
10878 F:      drivers/tty/serial/kgdboc.c
10879 F:      include/linux/kdb.h
10880 F:      include/linux/kgdb.h
10881 F:      kernel/debug/
10882
10883 KHADAS MCU MFD DRIVER
10884 M:      Neil Armstrong <narmstrong@baylibre.com>
10885 L:      linux-amlogic@lists.infradead.org
10886 S:      Maintained
10887 F:      Documentation/devicetree/bindings/mfd/khadas,mcu.yaml
10888 F:      drivers/mfd/khadas-mcu.c
10889 F:      include/linux/mfd/khadas-mcu.h
10890 F:      drivers/thermal/khadas_mcu_fan.c
10891
10892 KMEMLEAK
10893 M:      Catalin Marinas <catalin.marinas@arm.com>
10894 S:      Maintained
10895 F:      Documentation/dev-tools/kmemleak.rst
10896 F:      include/linux/kmemleak.h
10897 F:      mm/kmemleak.c
10898 F:      samples/kmemleak/kmemleak-test.c
10899
10900 KMOD KERNEL MODULE LOADER - USERMODE HELPER
10901 M:      Luis Chamberlain <mcgrof@kernel.org>
10902 L:      linux-kernel@vger.kernel.org
10903 L:      linux-modules@vger.kernel.org
10904 S:      Maintained
10905 F:      include/linux/kmod.h
10906 F:      kernel/kmod.c
10907 F:      lib/test_kmod.c
10908 F:      tools/testing/selftests/kmod/
10909
10910 KPROBES
10911 M:      Naveen N. Rao <naveen.n.rao@linux.ibm.com>
10912 M:      Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
10913 M:      "David S. Miller" <davem@davemloft.net>
10914 M:      Masami Hiramatsu <mhiramat@kernel.org>
10915 S:      Maintained
10916 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rostedt/linux-trace.git
10917 F:      Documentation/trace/kprobes.rst
10918 F:      include/asm-generic/kprobes.h
10919 F:      include/linux/kprobes.h
10920 F:      kernel/kprobes.c
10921 F:      lib/test_kprobes.c
10922 F:      samples/kprobes
10923
10924 KS0108 LCD CONTROLLER DRIVER
10925 M:      Miguel Ojeda <ojeda@kernel.org>
10926 S:      Maintained
10927 F:      Documentation/admin-guide/auxdisplay/ks0108.rst
10928 F:      drivers/auxdisplay/ks0108.c
10929 F:      include/linux/ks0108.h
10930
10931 KTD253 BACKLIGHT DRIVER
10932 M:      Linus Walleij <linus.walleij@linaro.org>
10933 S:      Maintained
10934 F:      Documentation/devicetree/bindings/leds/backlight/kinetic,ktd253.yaml
10935 F:      drivers/video/backlight/ktd253-backlight.c
10936
10937 KTEST
10938 M:      Steven Rostedt <rostedt@goodmis.org>
10939 M:      John Hawley <warthog9@eaglescrag.net>
10940 S:      Maintained
10941 F:      tools/testing/ktest
10942
10943 L3MDEV
10944 M:      David Ahern <dsahern@kernel.org>
10945 L:      netdev@vger.kernel.org
10946 S:      Maintained
10947 F:      include/net/l3mdev.h
10948 F:      net/l3mdev
10949
10950 L7 BPF FRAMEWORK
10951 M:      John Fastabend <john.fastabend@gmail.com>
10952 M:      Daniel Borkmann <daniel@iogearbox.net>
10953 M:      Jakub Sitnicki <jakub@cloudflare.com>
10954 L:      netdev@vger.kernel.org
10955 L:      bpf@vger.kernel.org
10956 S:      Maintained
10957 F:      include/linux/skmsg.h
10958 F:      net/core/skmsg.c
10959 F:      net/core/sock_map.c
10960 F:      net/ipv4/tcp_bpf.c
10961 F:      net/ipv4/udp_bpf.c
10962 F:      net/unix/unix_bpf.c
10963
10964 LANDLOCK SECURITY MODULE
10965 M:      Mickaël Salaün <mic@digikod.net>
10966 L:      linux-security-module@vger.kernel.org
10967 S:      Supported
10968 W:      https://landlock.io
10969 T:      git https://github.com/landlock-lsm/linux.git
10970 F:      Documentation/security/landlock.rst
10971 F:      Documentation/userspace-api/landlock.rst
10972 F:      include/uapi/linux/landlock.h
10973 F:      samples/landlock/
10974 F:      security/landlock/
10975 F:      tools/testing/selftests/landlock/
10976 K:      landlock
10977 K:      LANDLOCK
10978
10979 LANTIQ / INTEL Ethernet drivers
10980 M:      Hauke Mehrtens <hauke@hauke-m.de>
10981 L:      netdev@vger.kernel.org
10982 S:      Maintained
10983 F:      drivers/net/dsa/lantiq_gswip.c
10984 F:      drivers/net/dsa/lantiq_pce.h
10985 F:      drivers/net/ethernet/lantiq_xrx200.c
10986 F:      net/dsa/tag_gswip.c
10987
10988 LANTIQ MIPS ARCHITECTURE
10989 M:      John Crispin <john@phrozen.org>
10990 L:      linux-mips@vger.kernel.org
10991 S:      Maintained
10992 F:      arch/mips/lantiq
10993 F:      drivers/soc/lantiq
10994
10995 LASI 53c700 driver for PARISC
10996 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
10997 L:      linux-scsi@vger.kernel.org
10998 S:      Maintained
10999 F:      Documentation/scsi/53c700.rst
11000 F:      drivers/scsi/53c700*
11001
11002 LEAKING_ADDRESSES
11003 M:      Tobin C. Harding <me@tobin.cc>
11004 M:      Tycho Andersen <tycho@tycho.pizza>
11005 L:      linux-hardening@vger.kernel.org
11006 S:      Maintained
11007 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tobin/leaks.git
11008 F:      scripts/leaking_addresses.pl
11009
11010 LED SUBSYSTEM
11011 M:      Pavel Machek <pavel@ucw.cz>
11012 L:      linux-leds@vger.kernel.org
11013 S:      Maintained
11014 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pavel/linux-leds.git
11015 F:      Documentation/devicetree/bindings/leds/
11016 F:      drivers/leds/
11017 F:      include/linux/leds.h
11018
11019 LEGACY EEPROM DRIVER
11020 M:      Jean Delvare <jdelvare@suse.com>
11021 S:      Maintained
11022 F:      Documentation/misc-devices/eeprom.rst
11023 F:      drivers/misc/eeprom/eeprom.c
11024
11025 LEGO MINDSTORMS EV3
11026 R:      David Lechner <david@lechnology.com>
11027 S:      Maintained
11028 F:      Documentation/devicetree/bindings/power/supply/lego,ev3-battery.yaml
11029 F:      arch/arm/boot/dts/da850-lego-ev3.dts
11030 F:      drivers/power/supply/lego_ev3_battery.c
11031
11032 LEGO USB Tower driver
11033 M:      Juergen Stuber <starblue@users.sourceforge.net>
11034 L:      legousb-devel@lists.sourceforge.net
11035 S:      Maintained
11036 W:      http://legousb.sourceforge.net/
11037 F:      drivers/usb/misc/legousbtower.c
11038
11039 LETSKETCH HID TABLET DRIVER
11040 M:      Hans de Goede <hdegoede@redhat.com>
11041 L:      linux-input@vger.kernel.org
11042 S:      Maintained
11043 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
11044 F:      drivers/hid/hid-letsketch.c
11045
11046 LG LAPTOP EXTRAS
11047 M:      Matan Ziv-Av <matan@svgalib.org>
11048 L:      platform-driver-x86@vger.kernel.org
11049 S:      Maintained
11050 F:      Documentation/ABI/testing/sysfs-platform-lg-laptop
11051 F:      Documentation/admin-guide/laptops/lg-laptop.rst
11052 F:      drivers/platform/x86/lg-laptop.c
11053
11054 LG2160 MEDIA DRIVER
11055 M:      Michael Krufky <mkrufky@linuxtv.org>
11056 L:      linux-media@vger.kernel.org
11057 S:      Maintained
11058 W:      https://linuxtv.org
11059 W:      http://github.com/mkrufky
11060 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11061 T:      git git://linuxtv.org/mkrufky/tuners.git
11062 F:      drivers/media/dvb-frontends/lg2160.*
11063
11064 LGDT3305 MEDIA DRIVER
11065 M:      Michael Krufky <mkrufky@linuxtv.org>
11066 L:      linux-media@vger.kernel.org
11067 S:      Maintained
11068 W:      https://linuxtv.org
11069 W:      http://github.com/mkrufky
11070 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11071 T:      git git://linuxtv.org/mkrufky/tuners.git
11072 F:      drivers/media/dvb-frontends/lgdt3305.*
11073
11074 LIBATA PATA ARASAN COMPACT FLASH CONTROLLER
11075 M:      Viresh Kumar <vireshk@kernel.org>
11076 L:      linux-ide@vger.kernel.org
11077 S:      Maintained
11078 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
11079 F:      drivers/ata/pata_arasan_cf.c
11080 F:      include/linux/pata_arasan_cf_data.h
11081
11082 LIBATA PATA DRIVERS
11083 R:      Sergey Shtylyov <s.shtylyov@omp.ru>
11084 L:      linux-ide@vger.kernel.org
11085 F:      drivers/ata/ata_*.c
11086 F:      drivers/ata/pata_*.c
11087
11088 LIBATA PATA FARADAY FTIDE010 AND GEMINI SATA BRIDGE DRIVERS
11089 M:      Linus Walleij <linus.walleij@linaro.org>
11090 L:      linux-ide@vger.kernel.org
11091 S:      Maintained
11092 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
11093 F:      drivers/ata/pata_ftide010.c
11094 F:      drivers/ata/sata_gemini.c
11095 F:      drivers/ata/sata_gemini.h
11096
11097 LIBATA SATA AHCI PLATFORM devices support
11098 M:      Hans de Goede <hdegoede@redhat.com>
11099 M:      Jens Axboe <axboe@kernel.dk>
11100 L:      linux-ide@vger.kernel.org
11101 S:      Maintained
11102 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
11103 F:      drivers/ata/ahci_platform.c
11104 F:      drivers/ata/libahci_platform.c
11105 F:      include/linux/ahci_platform.h
11106
11107 LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER
11108 M:      Mikael Pettersson <mikpelinux@gmail.com>
11109 L:      linux-ide@vger.kernel.org
11110 S:      Maintained
11111 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
11112 F:      drivers/ata/sata_promise.*
11113
11114 LIBATA SUBSYSTEM (Serial and Parallel ATA drivers)
11115 M:      Damien Le Moal <damien.lemoal@opensource.wdc.com>
11116 L:      linux-ide@vger.kernel.org
11117 S:      Maintained
11118 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dlemoal/libata.git
11119 F:      Documentation/devicetree/bindings/ata/
11120 F:      drivers/ata/
11121 F:      include/linux/ata.h
11122 F:      include/linux/libata.h
11123
11124 LIBNVDIMM BLK: MMIO-APERTURE DRIVER
11125 M:      Dan Williams <dan.j.williams@intel.com>
11126 M:      Vishal Verma <vishal.l.verma@intel.com>
11127 M:      Dave Jiang <dave.jiang@intel.com>
11128 L:      nvdimm@lists.linux.dev
11129 S:      Supported
11130 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
11131 P:      Documentation/nvdimm/maintainer-entry-profile.rst
11132 F:      drivers/nvdimm/blk.c
11133 F:      drivers/nvdimm/region_devs.c
11134
11135 LIBNVDIMM BTT: BLOCK TRANSLATION TABLE
11136 M:      Vishal Verma <vishal.l.verma@intel.com>
11137 M:      Dan Williams <dan.j.williams@intel.com>
11138 M:      Dave Jiang <dave.jiang@intel.com>
11139 L:      nvdimm@lists.linux.dev
11140 S:      Supported
11141 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
11142 P:      Documentation/nvdimm/maintainer-entry-profile.rst
11143 F:      drivers/nvdimm/btt*
11144
11145 LIBNVDIMM PMEM: PERSISTENT MEMORY DRIVER
11146 M:      Dan Williams <dan.j.williams@intel.com>
11147 M:      Vishal Verma <vishal.l.verma@intel.com>
11148 M:      Dave Jiang <dave.jiang@intel.com>
11149 L:      nvdimm@lists.linux.dev
11150 S:      Supported
11151 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
11152 P:      Documentation/nvdimm/maintainer-entry-profile.rst
11153 F:      drivers/nvdimm/pmem*
11154
11155 LIBNVDIMM: DEVICETREE BINDINGS
11156 M:      Oliver O'Halloran <oohall@gmail.com>
11157 L:      nvdimm@lists.linux.dev
11158 S:      Supported
11159 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
11160 F:      Documentation/devicetree/bindings/pmem/pmem-region.txt
11161 F:      drivers/nvdimm/of_pmem.c
11162
11163 LIBNVDIMM: NON-VOLATILE MEMORY DEVICE SUBSYSTEM
11164 M:      Dan Williams <dan.j.williams@intel.com>
11165 M:      Vishal Verma <vishal.l.verma@intel.com>
11166 M:      Dave Jiang <dave.jiang@intel.com>
11167 M:      Ira Weiny <ira.weiny@intel.com>
11168 L:      nvdimm@lists.linux.dev
11169 S:      Supported
11170 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
11171 P:      Documentation/nvdimm/maintainer-entry-profile.rst
11172 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nvdimm/nvdimm.git
11173 F:      drivers/acpi/nfit/*
11174 F:      drivers/nvdimm/*
11175 F:      include/linux/libnvdimm.h
11176 F:      include/linux/nd.h
11177 F:      include/uapi/linux/ndctl.h
11178 F:      tools/testing/nvdimm/
11179
11180 LICENSES and SPDX stuff
11181 M:      Thomas Gleixner <tglx@linutronix.de>
11182 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
11183 L:      linux-spdx@vger.kernel.org
11184 S:      Maintained
11185 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/spdx.git
11186 F:      COPYING
11187 F:      Documentation/process/license-rules.rst
11188 F:      LICENSES/
11189 F:      scripts/spdxcheck-test.sh
11190 F:      scripts/spdxcheck.py
11191
11192 LINEAR RANGES HELPERS
11193 M:      Mark Brown <broonie@kernel.org>
11194 R:      Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
11195 F:      lib/linear_ranges.c
11196 F:      lib/test_linear_ranges.c
11197 F:      include/linux/linear_range.h
11198
11199 LINUX FOR POWER MACINTOSH
11200 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
11201 L:      linuxppc-dev@lists.ozlabs.org
11202 S:      Odd Fixes
11203 F:      arch/powerpc/platforms/powermac/
11204 F:      drivers/macintosh/
11205
11206 LINUX FOR POWERPC (32-BIT AND 64-BIT)
11207 M:      Michael Ellerman <mpe@ellerman.id.au>
11208 R:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
11209 R:      Paul Mackerras <paulus@samba.org>
11210 L:      linuxppc-dev@lists.ozlabs.org
11211 S:      Supported
11212 W:      https://github.com/linuxppc/wiki/wiki
11213 Q:      http://patchwork.ozlabs.org/project/linuxppc-dev/list/
11214 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git
11215 F:      Documentation/ABI/stable/sysfs-firmware-opal-*
11216 F:      Documentation/devicetree/bindings/i2c/i2c-opal.txt
11217 F:      Documentation/devicetree/bindings/powerpc/
11218 F:      Documentation/devicetree/bindings/rtc/rtc-opal.txt
11219 F:      Documentation/powerpc/
11220 F:      arch/powerpc/
11221 F:      drivers/*/*/*pasemi*
11222 F:      drivers/*/*pasemi*
11223 F:      drivers/char/tpm/tpm_ibmvtpm*
11224 F:      drivers/crypto/nx/
11225 F:      drivers/crypto/vmx/
11226 F:      drivers/i2c/busses/i2c-opal.c
11227 F:      drivers/net/ethernet/ibm/ibmveth.*
11228 F:      drivers/net/ethernet/ibm/ibmvnic.*
11229 F:      drivers/pci/hotplug/pnv_php.c
11230 F:      drivers/pci/hotplug/rpa*
11231 F:      drivers/rtc/rtc-opal.c
11232 F:      drivers/scsi/ibmvscsi/
11233 F:      drivers/tty/hvc/hvc_opal.c
11234 F:      drivers/watchdog/wdrtas.c
11235 F:      tools/testing/selftests/powerpc
11236 N:      /pmac
11237 N:      powermac
11238 N:      powernv
11239 N:      [^a-z0-9]ps3
11240 N:      pseries
11241
11242 LINUX FOR POWERPC EMBEDDED MPC5XXX
11243 M:      Anatolij Gustschin <agust@denx.de>
11244 L:      linuxppc-dev@lists.ozlabs.org
11245 S:      Odd Fixes
11246 F:      arch/powerpc/platforms/512x/
11247 F:      arch/powerpc/platforms/52xx/
11248
11249 LINUX FOR POWERPC EMBEDDED PPC4XX
11250 L:      linuxppc-dev@lists.ozlabs.org
11251 S:      Orphan
11252 F:      arch/powerpc/platforms/40x/
11253 F:      arch/powerpc/platforms/44x/
11254
11255 LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
11256 M:      Scott Wood <oss@buserror.net>
11257 L:      linuxppc-dev@lists.ozlabs.org
11258 S:      Odd fixes
11259 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git
11260 F:      Documentation/devicetree/bindings/powerpc/fsl/
11261 F:      arch/powerpc/platforms/83xx/
11262 F:      arch/powerpc/platforms/85xx/
11263
11264 LINUX FOR POWERPC EMBEDDED PPC8XX
11265 M:      Christophe Leroy <christophe.leroy@csgroup.eu>
11266 L:      linuxppc-dev@lists.ozlabs.org
11267 S:      Maintained
11268 F:      arch/powerpc/platforms/8xx/
11269
11270 LINUX KERNEL DUMP TEST MODULE (LKDTM)
11271 M:      Kees Cook <keescook@chromium.org>
11272 S:      Maintained
11273 F:      drivers/misc/lkdtm/*
11274 F:      tools/testing/selftests/lkdtm/*
11275
11276 LINUX KERNEL MEMORY CONSISTENCY MODEL (LKMM)
11277 M:      Alan Stern <stern@rowland.harvard.edu>
11278 M:      Andrea Parri <parri.andrea@gmail.com>
11279 M:      Will Deacon <will@kernel.org>
11280 M:      Peter Zijlstra <peterz@infradead.org>
11281 M:      Boqun Feng <boqun.feng@gmail.com>
11282 M:      Nicholas Piggin <npiggin@gmail.com>
11283 M:      David Howells <dhowells@redhat.com>
11284 M:      Jade Alglave <j.alglave@ucl.ac.uk>
11285 M:      Luc Maranget <luc.maranget@inria.fr>
11286 M:      "Paul E. McKenney" <paulmck@kernel.org>
11287 R:      Akira Yokosawa <akiyks@gmail.com>
11288 R:      Daniel Lustig <dlustig@nvidia.com>
11289 R:      Joel Fernandes <joel@joelfernandes.org>
11290 L:      linux-kernel@vger.kernel.org
11291 L:      linux-arch@vger.kernel.org
11292 S:      Supported
11293 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
11294 F:      Documentation/atomic_bitops.txt
11295 F:      Documentation/atomic_t.txt
11296 F:      Documentation/core-api/refcount-vs-atomic.rst
11297 F:      Documentation/litmus-tests/
11298 F:      Documentation/memory-barriers.txt
11299 F:      tools/memory-model/
11300
11301 LIS3LV02D ACCELEROMETER DRIVER
11302 M:      Eric Piel <eric.piel@tremplin-utc.net>
11303 S:      Maintained
11304 F:      Documentation/misc-devices/lis3lv02d.rst
11305 F:      drivers/misc/lis3lv02d/
11306 F:      drivers/platform/x86/hp_accel.c
11307
11308 LIST KUNIT TEST
11309 M:      David Gow <davidgow@google.com>
11310 L:      linux-kselftest@vger.kernel.org
11311 L:      kunit-dev@googlegroups.com
11312 S:      Maintained
11313 F:      lib/list-test.c
11314
11315 LITEX PLATFORM
11316 M:      Karol Gugala <kgugala@antmicro.com>
11317 M:      Mateusz Holenko <mholenko@antmicro.com>
11318 M:      Gabriel Somlo <gsomlo@gmail.com>
11319 M:      Joel Stanley <joel@jms.id.au>
11320 S:      Maintained
11321 F:      Documentation/devicetree/bindings/*/litex,*.yaml
11322 F:      arch/openrisc/boot/dts/or1klitex.dts
11323 F:      include/linux/litex.h
11324 F:      drivers/tty/serial/liteuart.c
11325 F:      drivers/soc/litex/*
11326 F:      drivers/net/ethernet/litex/*
11327 F:      drivers/mmc/host/litex_mmc.c
11328 N:      litex
11329
11330 LIVE PATCHING
11331 M:      Josh Poimboeuf <jpoimboe@redhat.com>
11332 M:      Jiri Kosina <jikos@kernel.org>
11333 M:      Miroslav Benes <mbenes@suse.cz>
11334 M:      Petr Mladek <pmladek@suse.com>
11335 R:      Joe Lawrence <joe.lawrence@redhat.com>
11336 L:      live-patching@vger.kernel.org
11337 S:      Maintained
11338 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/livepatching/livepatching.git
11339 F:      Documentation/ABI/testing/sysfs-kernel-livepatch
11340 F:      Documentation/livepatch/
11341 F:      arch/powerpc/include/asm/livepatch.h
11342 F:      arch/s390/include/asm/livepatch.h
11343 F:      arch/x86/include/asm/livepatch.h
11344 F:      include/linux/livepatch.h
11345 F:      kernel/livepatch/
11346 F:      lib/livepatch/
11347 F:      samples/livepatch/
11348 F:      tools/testing/selftests/livepatch/
11349
11350 LLC (802.2)
11351 L:      netdev@vger.kernel.org
11352 S:      Odd fixes
11353 F:      include/linux/llc.h
11354 F:      include/net/llc*
11355 F:      include/uapi/linux/llc.h
11356 F:      net/llc/
11357
11358 LM73 HARDWARE MONITOR DRIVER
11359 M:      Guillaume Ligneul <guillaume.ligneul@gmail.com>
11360 L:      linux-hwmon@vger.kernel.org
11361 S:      Maintained
11362 F:      drivers/hwmon/lm73.c
11363
11364 LM78 HARDWARE MONITOR DRIVER
11365 M:      Jean Delvare <jdelvare@suse.com>
11366 L:      linux-hwmon@vger.kernel.org
11367 S:      Maintained
11368 F:      Documentation/hwmon/lm78.rst
11369 F:      drivers/hwmon/lm78.c
11370
11371 LM83 HARDWARE MONITOR DRIVER
11372 M:      Jean Delvare <jdelvare@suse.com>
11373 L:      linux-hwmon@vger.kernel.org
11374 S:      Maintained
11375 F:      Documentation/hwmon/lm83.rst
11376 F:      drivers/hwmon/lm83.c
11377
11378 LM90 HARDWARE MONITOR DRIVER
11379 M:      Jean Delvare <jdelvare@suse.com>
11380 L:      linux-hwmon@vger.kernel.org
11381 S:      Maintained
11382 F:      Documentation/devicetree/bindings/hwmon/national,lm90.yaml
11383 F:      Documentation/hwmon/lm90.rst
11384 F:      drivers/hwmon/lm90.c
11385 F:      include/dt-bindings/thermal/lm90.h
11386
11387 LM95234 HARDWARE MONITOR DRIVER
11388 M:      Guenter Roeck <linux@roeck-us.net>
11389 L:      linux-hwmon@vger.kernel.org
11390 S:      Maintained
11391 F:      Documentation/hwmon/lm95234.rst
11392 F:      drivers/hwmon/lm95234.c
11393
11394 LME2510 MEDIA DRIVER
11395 M:      Malcolm Priestley <tvboxspy@gmail.com>
11396 L:      linux-media@vger.kernel.org
11397 S:      Maintained
11398 W:      https://linuxtv.org
11399 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11400 F:      drivers/media/usb/dvb-usb-v2/lmedm04*
11401
11402 LOADPIN SECURITY MODULE
11403 M:      Kees Cook <keescook@chromium.org>
11404 S:      Supported
11405 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git lsm/loadpin
11406 F:      Documentation/admin-guide/LSM/LoadPin.rst
11407 F:      security/loadpin/
11408
11409 LOCKING PRIMITIVES
11410 M:      Peter Zijlstra <peterz@infradead.org>
11411 M:      Ingo Molnar <mingo@redhat.com>
11412 M:      Will Deacon <will@kernel.org>
11413 R:      Waiman Long <longman@redhat.com>
11414 R:      Boqun Feng <boqun.feng@gmail.com> (LOCKDEP)
11415 L:      linux-kernel@vger.kernel.org
11416 S:      Maintained
11417 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
11418 F:      Documentation/locking/
11419 F:      arch/*/include/asm/spinlock*.h
11420 F:      include/linux/lockdep.h
11421 F:      include/linux/mutex*.h
11422 F:      include/linux/rwlock*.h
11423 F:      include/linux/rwsem*.h
11424 F:      include/linux/seqlock.h
11425 F:      include/linux/spinlock*.h
11426 F:      kernel/locking/
11427 F:      lib/locking*.[ch]
11428 X:      kernel/locking/locktorture.c
11429
11430 LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
11431 M:      "Richard Russon (FlatCap)" <ldm@flatcap.org>
11432 L:      linux-ntfs-dev@lists.sourceforge.net
11433 S:      Maintained
11434 W:      http://www.linux-ntfs.org/content/view/19/37/
11435 F:      Documentation/admin-guide/ldm.rst
11436 F:      block/partitions/ldm.*
11437
11438 LOGITECH HID GAMING KEYBOARDS
11439 M:      Hans de Goede <hdegoede@redhat.com>
11440 L:      linux-input@vger.kernel.org
11441 S:      Maintained
11442 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
11443 F:      drivers/hid/hid-lg-g15.c
11444
11445 LONTIUM LT8912B MIPI TO HDMI BRIDGE
11446 M:      Adrien Grassein <adrien.grassein@gmail.com>
11447 S:      Maintained
11448 F:      Documentation/devicetree/bindings/display/bridge/lontium,lt8912b.yaml
11449 F:      drivers/gpu/drm/bridge/lontium-lt8912b.c
11450
11451 LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
11452 M:      Sathya Prakash <sathya.prakash@broadcom.com>
11453 M:      Sreekanth Reddy <sreekanth.reddy@broadcom.com>
11454 M:      Suganath Prabu Subramani <suganath-prabu.subramani@broadcom.com>
11455 L:      MPT-FusionLinux.pdl@broadcom.com
11456 L:      linux-scsi@vger.kernel.org
11457 S:      Supported
11458 W:      http://www.avagotech.com/support/
11459 F:      drivers/message/fusion/
11460 F:      drivers/scsi/mpt3sas/
11461
11462 LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
11463 M:      Matthew Wilcox <willy@infradead.org>
11464 L:      linux-scsi@vger.kernel.org
11465 S:      Maintained
11466 F:      drivers/scsi/sym53c8xx_2/
11467
11468 LTC1660 DAC DRIVER
11469 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
11470 L:      linux-iio@vger.kernel.org
11471 S:      Maintained
11472 F:      Documentation/devicetree/bindings/iio/dac/lltc,ltc1660.yaml
11473 F:      drivers/iio/dac/ltc1660.c
11474
11475 LTC2688 IIO DAC DRIVER
11476 M:      Nuno Sá <nuno.sa@analog.com>
11477 L:      linux-iio@vger.kernel.org
11478 S:      Supported
11479 W:      http://ez.analog.com/community/linux-device-drivers
11480 F:      Documentation/ABI/testing/sysfs-bus-iio-dac-ltc2688
11481 F:      Documentation/devicetree/bindings/iio/dac/adi,ltc2688.yaml
11482 F:      drivers/iio/dac/ltc2688.c
11483
11484 LTC2947 HARDWARE MONITOR DRIVER
11485 M:      Nuno Sá <nuno.sa@analog.com>
11486 L:      linux-hwmon@vger.kernel.org
11487 S:      Supported
11488 W:      https://ez.analog.com/linux-software-drivers
11489 F:      Documentation/devicetree/bindings/hwmon/adi,ltc2947.yaml
11490 F:      drivers/hwmon/ltc2947-core.c
11491 F:      drivers/hwmon/ltc2947-i2c.c
11492 F:      drivers/hwmon/ltc2947-spi.c
11493 F:      drivers/hwmon/ltc2947.h
11494
11495 LTC2983 IIO TEMPERATURE DRIVER
11496 M:      Nuno Sá <nuno.sa@analog.com>
11497 L:      linux-iio@vger.kernel.org
11498 S:      Supported
11499 W:      https://ez.analog.com/linux-software-drivers
11500 F:      Documentation/devicetree/bindings/iio/temperature/adi,ltc2983.yaml
11501 F:      drivers/iio/temperature/ltc2983.c
11502
11503 LTC4261 HARDWARE MONITOR DRIVER
11504 M:      Guenter Roeck <linux@roeck-us.net>
11505 L:      linux-hwmon@vger.kernel.org
11506 S:      Maintained
11507 F:      Documentation/hwmon/ltc4261.rst
11508 F:      drivers/hwmon/ltc4261.c
11509
11510 LTC4306 I2C MULTIPLEXER DRIVER
11511 M:      Michael Hennerich <michael.hennerich@analog.com>
11512 L:      linux-i2c@vger.kernel.org
11513 S:      Supported
11514 W:      https://ez.analog.com/linux-software-drivers
11515 F:      Documentation/devicetree/bindings/i2c/i2c-mux-ltc4306.txt
11516 F:      drivers/i2c/muxes/i2c-mux-ltc4306.c
11517
11518 LTP (Linux Test Project)
11519 M:      Mike Frysinger <vapier@gentoo.org>
11520 M:      Cyril Hrubis <chrubis@suse.cz>
11521 M:      Wanlong Gao <wanlong.gao@gmail.com>
11522 M:      Jan Stancek <jstancek@redhat.com>
11523 M:      Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com>
11524 M:      Alexey Kodanev <alexey.kodanev@oracle.com>
11525 L:      ltp@lists.linux.it (subscribers-only)
11526 S:      Maintained
11527 W:      http://linux-test-project.github.io/
11528 T:      git git://github.com/linux-test-project/ltp.git
11529
11530 LYNX 28G SERDES PHY DRIVER
11531 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
11532 L:      netdev@vger.kernel.org
11533 S:      Supported
11534 F:      Documentation/devicetree/bindings/phy/fsl,lynx-28g.yaml
11535 F:      drivers/phy/freescale/phy-fsl-lynx-28g.c
11536
11537 LYNX PCS MODULE
11538 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
11539 L:      netdev@vger.kernel.org
11540 S:      Supported
11541 F:      drivers/net/pcs/pcs-lynx.c
11542 F:      include/linux/pcs-lynx.h
11543
11544 M68K ARCHITECTURE
11545 M:      Geert Uytterhoeven <geert@linux-m68k.org>
11546 L:      linux-m68k@lists.linux-m68k.org
11547 S:      Maintained
11548 W:      http://www.linux-m68k.org/
11549 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
11550 F:      arch/m68k/
11551 F:      drivers/zorro/
11552
11553 M68K ON APPLE MACINTOSH
11554 M:      Joshua Thompson <funaho@jurai.org>
11555 L:      linux-m68k@lists.linux-m68k.org
11556 S:      Maintained
11557 W:      http://www.mac.linux-m68k.org/
11558 F:      arch/m68k/mac/
11559 F:      drivers/macintosh/adb-iop.c
11560 F:      drivers/macintosh/via-macii.c
11561
11562 M68K ON HP9000/300
11563 M:      Philip Blundell <philb@gnu.org>
11564 S:      Maintained
11565 W:      http://www.tazenda.demon.co.uk/phil/linux-hp
11566 F:      arch/m68k/hp300/
11567
11568 M88DS3103 MEDIA DRIVER
11569 M:      Antti Palosaari <crope@iki.fi>
11570 L:      linux-media@vger.kernel.org
11571 S:      Maintained
11572 W:      https://linuxtv.org
11573 W:      http://palosaari.fi/linux/
11574 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11575 T:      git git://linuxtv.org/anttip/media_tree.git
11576 F:      drivers/media/dvb-frontends/m88ds3103*
11577
11578 M88RS2000 MEDIA DRIVER
11579 M:      Malcolm Priestley <tvboxspy@gmail.com>
11580 L:      linux-media@vger.kernel.org
11581 S:      Maintained
11582 W:      https://linuxtv.org
11583 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11584 F:      drivers/media/dvb-frontends/m88rs2000*
11585
11586 MA901 MASTERKIT USB FM RADIO DRIVER
11587 M:      Alexey Klimov <klimov.linux@gmail.com>
11588 L:      linux-media@vger.kernel.org
11589 S:      Maintained
11590 T:      git git://linuxtv.org/media_tree.git
11591 F:      drivers/media/radio/radio-ma901.c
11592
11593 MAC80211
11594 M:      Johannes Berg <johannes@sipsolutions.net>
11595 L:      linux-wireless@vger.kernel.org
11596 S:      Maintained
11597 W:      https://wireless.wiki.kernel.org/
11598 Q:      https://patchwork.kernel.org/project/linux-wireless/list/
11599 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless.git
11600 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless-next.git
11601 F:      Documentation/networking/mac80211-injection.rst
11602 F:      Documentation/networking/mac80211_hwsim/mac80211_hwsim.rst
11603 F:      drivers/net/wireless/mac80211_hwsim.[ch]
11604 F:      include/net/mac80211.h
11605 F:      net/mac80211/
11606
11607 MAILBOX API
11608 M:      Jassi Brar <jassisinghbrar@gmail.com>
11609 L:      linux-kernel@vger.kernel.org
11610 S:      Maintained
11611 F:      drivers/mailbox/
11612 F:      include/linux/mailbox_client.h
11613 F:      include/linux/mailbox_controller.h
11614 F:      include/dt-bindings/mailbox/
11615 F:      Documentation/devicetree/bindings/mailbox/
11616
11617 MAILBOX ARM MHUv2
11618 M:      Viresh Kumar <viresh.kumar@linaro.org>
11619 M:      Tushar Khandelwal <Tushar.Khandelwal@arm.com>
11620 L:      linux-kernel@vger.kernel.org
11621 S:      Maintained
11622 F:      drivers/mailbox/arm_mhuv2.c
11623 F:      include/linux/mailbox/arm_mhuv2_message.h
11624 F:      Documentation/devicetree/bindings/mailbox/arm,mhuv2.yaml
11625
11626 MANAGEMENT COMPONENT TRANSPORT PROTOCOL (MCTP)
11627 M:      Jeremy Kerr <jk@codeconstruct.com.au>
11628 M:      Matt Johnston <matt@codeconstruct.com.au>
11629 L:      netdev@vger.kernel.org
11630 S:      Maintained
11631 F:      Documentation/networking/mctp.rst
11632 F:      drivers/net/mctp/
11633 F:      include/net/mctp.h
11634 F:      include/net/mctpdevice.h
11635 F:      include/net/netns/mctp.h
11636 F:      net/mctp/
11637
11638 MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
11639 M:      Michael Kerrisk <mtk.manpages@gmail.com>
11640 L:      linux-man@vger.kernel.org
11641 S:      Maintained
11642 W:      http://www.kernel.org/doc/man-pages
11643
11644 MARDUK (CREATOR CI40) DEVICE TREE SUPPORT
11645 M:      Rahul Bedarkar <rahulbedarkar89@gmail.com>
11646 L:      linux-mips@vger.kernel.org
11647 S:      Maintained
11648 F:      arch/mips/boot/dts/img/pistachio*
11649
11650 MARVELL 88E6XXX ETHERNET SWITCH FABRIC DRIVER
11651 M:      Andrew Lunn <andrew@lunn.ch>
11652 M:      Vivien Didelot <vivien.didelot@gmail.com>
11653 L:      netdev@vger.kernel.org
11654 S:      Maintained
11655 F:      Documentation/devicetree/bindings/net/dsa/marvell.txt
11656 F:      Documentation/networking/devlink/mv88e6xxx.rst
11657 F:      drivers/net/dsa/mv88e6xxx/
11658 F:      include/linux/dsa/mv88e6xxx.h
11659 F:      include/linux/platform_data/mv88e6xxx.h
11660
11661 MARVELL ARMADA 3700 PHY DRIVERS
11662 M:      Miquel Raynal <miquel.raynal@bootlin.com>
11663 S:      Maintained
11664 F:      Documentation/devicetree/bindings/phy/phy-mvebu-comphy.txt
11665 F:      Documentation/devicetree/bindings/phy/marvell,armada-3700-utmi-phy.yaml
11666 F:      drivers/phy/marvell/phy-mvebu-a3700-comphy.c
11667 F:      drivers/phy/marvell/phy-mvebu-a3700-utmi.c
11668
11669 MARVELL ARMADA DRM SUPPORT
11670 M:      Russell King <linux@armlinux.org.uk>
11671 S:      Maintained
11672 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-devel
11673 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-fixes
11674 F:      Documentation/devicetree/bindings/display/armada/
11675 F:      drivers/gpu/drm/armada/
11676 F:      include/uapi/drm/armada_drm.h
11677
11678 MARVELL CRYPTO DRIVER
11679 M:      Boris Brezillon <bbrezillon@kernel.org>
11680 M:      Arnaud Ebalard <arno@natisbad.org>
11681 M:      Srujana Challa <schalla@marvell.com>
11682 L:      linux-crypto@vger.kernel.org
11683 S:      Maintained
11684 F:      drivers/crypto/marvell/
11685 F:      include/linux/soc/marvell/octeontx2/
11686
11687 MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
11688 M:      Mirko Lindner <mlindner@marvell.com>
11689 M:      Stephen Hemminger <stephen@networkplumber.org>
11690 L:      netdev@vger.kernel.org
11691 S:      Maintained
11692 F:      drivers/net/ethernet/marvell/sk*
11693
11694 MARVELL LIBERTAS WIRELESS DRIVER
11695 L:      libertas-dev@lists.infradead.org
11696 S:      Orphan
11697 F:      drivers/net/wireless/marvell/libertas/
11698
11699 MARVELL MACCHIATOBIN SUPPORT
11700 M:      Russell King <linux@armlinux.org.uk>
11701 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11702 S:      Maintained
11703 F:      arch/arm64/boot/dts/marvell/armada-8040-mcbin.dts
11704
11705 MARVELL MV643XX ETHERNET DRIVER
11706 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
11707 L:      netdev@vger.kernel.org
11708 S:      Maintained
11709 F:      drivers/net/ethernet/marvell/mv643xx_eth.*
11710 F:      include/linux/mv643xx.h
11711
11712 MARVELL MV88X3310 PHY DRIVER
11713 M:      Russell King <linux@armlinux.org.uk>
11714 M:      Marek Behún <kabel@kernel.org>
11715 L:      netdev@vger.kernel.org
11716 S:      Maintained
11717 F:      drivers/net/phy/marvell10g.c
11718
11719 MARVELL MVEBU THERMAL DRIVER
11720 M:      Miquel Raynal <miquel.raynal@bootlin.com>
11721 S:      Maintained
11722 F:      drivers/thermal/armada_thermal.c
11723
11724 MARVELL MVNETA ETHERNET DRIVER
11725 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
11726 L:      netdev@vger.kernel.org
11727 S:      Maintained
11728 F:      drivers/net/ethernet/marvell/mvneta.*
11729
11730 MARVELL MVPP2 ETHERNET DRIVER
11731 M:      Marcin Wojtas <mw@semihalf.com>
11732 M:      Russell King <linux@armlinux.org.uk>
11733 L:      netdev@vger.kernel.org
11734 S:      Maintained
11735 F:      Documentation/devicetree/bindings/net/marvell-pp2.txt
11736 F:      drivers/net/ethernet/marvell/mvpp2/
11737
11738 MARVELL MWIFIEX WIRELESS DRIVER
11739 M:      Amitkumar Karwar <amitkarwar@gmail.com>
11740 M:      Ganapathi Bhat <ganapathi017@gmail.com>
11741 M:      Sharvari Harisangam <sharvari.harisangam@nxp.com>
11742 M:      Xinming Hu <huxinming820@gmail.com>
11743 L:      linux-wireless@vger.kernel.org
11744 S:      Maintained
11745 F:      drivers/net/wireless/marvell/mwifiex/
11746
11747 MARVELL MWL8K WIRELESS DRIVER
11748 M:      Lennert Buytenhek <buytenh@wantstofly.org>
11749 L:      linux-wireless@vger.kernel.org
11750 S:      Odd Fixes
11751 F:      drivers/net/wireless/marvell/mwl8k.c
11752
11753 MARVELL NAND CONTROLLER DRIVER
11754 M:      Miquel Raynal <miquel.raynal@bootlin.com>
11755 L:      linux-mtd@lists.infradead.org
11756 S:      Maintained
11757 F:      Documentation/devicetree/bindings/mtd/marvell-nand.txt
11758 F:      drivers/mtd/nand/raw/marvell_nand.c
11759
11760 MARVELL OCTEONTX2 PHYSICAL FUNCTION DRIVER
11761 M:      Sunil Goutham <sgoutham@marvell.com>
11762 M:      Geetha sowjanya <gakula@marvell.com>
11763 M:      Subbaraya Sundeep <sbhatta@marvell.com>
11764 M:      hariprasad <hkelam@marvell.com>
11765 L:      netdev@vger.kernel.org
11766 S:      Supported
11767 F:      drivers/net/ethernet/marvell/octeontx2/nic/
11768 F:      include/linux/soc/marvell/octeontx2/
11769
11770 MARVELL OCTEONTX2 RVU ADMIN FUNCTION DRIVER
11771 M:      Sunil Goutham <sgoutham@marvell.com>
11772 M:      Linu Cherian <lcherian@marvell.com>
11773 M:      Geetha sowjanya <gakula@marvell.com>
11774 M:      Jerin Jacob <jerinj@marvell.com>
11775 M:      hariprasad <hkelam@marvell.com>
11776 M:      Subbaraya Sundeep <sbhatta@marvell.com>
11777 L:      netdev@vger.kernel.org
11778 S:      Supported
11779 F:      Documentation/networking/device_drivers/ethernet/marvell/octeontx2.rst
11780 F:      drivers/net/ethernet/marvell/octeontx2/af/
11781
11782 MARVELL PRESTERA ETHERNET SWITCH DRIVER
11783 M:      Taras Chornyi <tchornyi@marvell.com>
11784 S:      Supported
11785 W:      https://github.com/Marvell-switching/switchdev-prestera
11786 F:      drivers/net/ethernet/marvell/prestera/
11787
11788 MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
11789 M:      Nicolas Pitre <nico@fluxnic.net>
11790 S:      Odd Fixes
11791 F:      drivers/mmc/host/mvsdio.*
11792
11793 MARVELL USB MDIO CONTROLLER DRIVER
11794 M:      Tobias Waldekranz <tobias@waldekranz.com>
11795 L:      netdev@vger.kernel.org
11796 S:      Maintained
11797 F:      Documentation/devicetree/bindings/net/marvell,mvusb.yaml
11798 F:      drivers/net/mdio/mdio-mvusb.c
11799
11800 MARVELL XENON MMC/SD/SDIO HOST CONTROLLER DRIVER
11801 M:      Hu Ziji <huziji@marvell.com>
11802 L:      linux-mmc@vger.kernel.org
11803 S:      Supported
11804 F:      Documentation/devicetree/bindings/mmc/marvell,xenon-sdhci.txt
11805 F:      drivers/mmc/host/sdhci-xenon*
11806
11807 MATROX FRAMEBUFFER DRIVER
11808 L:      linux-fbdev@vger.kernel.org
11809 S:      Orphan
11810 F:      drivers/video/fbdev/matrox/matroxfb_*
11811 F:      include/uapi/linux/matroxfb.h
11812
11813 MAX15301 DRIVER
11814 M:      Daniel Nilsson <daniel.nilsson@flex.com>
11815 L:      linux-hwmon@vger.kernel.org
11816 S:      Maintained
11817 F:      Documentation/hwmon/max15301.rst
11818 F:      drivers/hwmon/pmbus/max15301.c
11819
11820 MAX16065 HARDWARE MONITOR DRIVER
11821 M:      Guenter Roeck <linux@roeck-us.net>
11822 L:      linux-hwmon@vger.kernel.org
11823 S:      Maintained
11824 F:      Documentation/hwmon/max16065.rst
11825 F:      drivers/hwmon/max16065.c
11826
11827 MAX2175 SDR TUNER DRIVER
11828 M:      Ramesh Shanmugasundaram <rashanmu@gmail.com>
11829 L:      linux-media@vger.kernel.org
11830 S:      Maintained
11831 T:      git git://linuxtv.org/media_tree.git
11832 F:      Documentation/devicetree/bindings/media/i2c/max2175.txt
11833 F:      Documentation/userspace-api/media/drivers/max2175.rst
11834 F:      drivers/media/i2c/max2175*
11835 F:      include/uapi/linux/max2175.h
11836
11837 MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
11838 L:      linux-hwmon@vger.kernel.org
11839 S:      Orphan
11840 F:      Documentation/hwmon/max6650.rst
11841 F:      drivers/hwmon/max6650.c
11842
11843 MAX6697 HARDWARE MONITOR DRIVER
11844 M:      Guenter Roeck <linux@roeck-us.net>
11845 L:      linux-hwmon@vger.kernel.org
11846 S:      Maintained
11847 F:      Documentation/devicetree/bindings/hwmon/max6697.txt
11848 F:      Documentation/hwmon/max6697.rst
11849 F:      drivers/hwmon/max6697.c
11850 F:      include/linux/platform_data/max6697.h
11851
11852 MAX9286 QUAD GMSL DESERIALIZER DRIVER
11853 M:      Jacopo Mondi <jacopo+renesas@jmondi.org>
11854 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
11855 M:      Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
11856 M:      Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
11857 L:      linux-media@vger.kernel.org
11858 S:      Maintained
11859 F:      Documentation/devicetree/bindings/media/i2c/maxim,max9286.yaml
11860 F:      drivers/media/i2c/max9286.c
11861
11862 MAX96712 QUAD GMSL2 DESERIALIZER DRIVER
11863 M:      Niklas Söderlund <niklas.soderlund@ragnatech.se>
11864 L:      linux-media@vger.kernel.org
11865 S:      Maintained
11866 F:      drivers/staging/media/max96712/max96712.c
11867
11868 MAX9860 MONO AUDIO VOICE CODEC DRIVER
11869 M:      Peter Rosin <peda@axentia.se>
11870 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
11871 S:      Maintained
11872 F:      Documentation/devicetree/bindings/sound/max9860.txt
11873 F:      sound/soc/codecs/max9860.*
11874
11875 MAXBOTIX ULTRASONIC RANGER IIO DRIVER
11876 M:      Andreas Klinger <ak@it-klinger.de>
11877 L:      linux-iio@vger.kernel.org
11878 S:      Maintained
11879 F:      Documentation/devicetree/bindings/iio/proximity/maxbotix,mb1232.yaml
11880 F:      drivers/iio/proximity/mb1232.c
11881
11882 MAXIM MAX17040 FAMILY FUEL GAUGE DRIVERS
11883 R:      Iskren Chernev <iskren.chernev@gmail.com>
11884 R:      Krzysztof Kozlowski <krzk@kernel.org>
11885 R:      Marek Szyprowski <m.szyprowski@samsung.com>
11886 R:      Matheus Castello <matheus@castello.eng.br>
11887 L:      linux-pm@vger.kernel.org
11888 S:      Maintained
11889 F:      Documentation/devicetree/bindings/power/supply/maxim,max17040.yaml
11890 F:      drivers/power/supply/max17040_battery.c
11891
11892 MAXIM MAX17042 FAMILY FUEL GAUGE DRIVERS
11893 R:      Hans de Goede <hdegoede@redhat.com>
11894 R:      Krzysztof Kozlowski <krzk@kernel.org>
11895 R:      Marek Szyprowski <m.szyprowski@samsung.com>
11896 R:      Sebastian Krzyszkowiak <sebastian.krzyszkowiak@puri.sm>
11897 R:      Purism Kernel Team <kernel@puri.sm>
11898 L:      linux-pm@vger.kernel.org
11899 S:      Maintained
11900 F:      Documentation/devicetree/bindings/power/supply/maxim,max17042.yaml
11901 F:      drivers/power/supply/max17042_battery.c
11902
11903 MAXIM MAX20086 CAMERA POWER PROTECTOR DRIVER
11904 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11905 L:      linux-kernel@vger.kernel.org
11906 S:      Maintained
11907 F:      Documentation/devicetree/bindings/regulator/maxim,max20086.yaml
11908 F:      drivers/regulator/max20086-regulator.c
11909
11910 MAXIM MAX77650 PMIC MFD DRIVER
11911 M:      Bartosz Golaszewski <brgl@bgdev.pl>
11912 L:      linux-kernel@vger.kernel.org
11913 S:      Maintained
11914 F:      Documentation/devicetree/bindings/*/*max77650.yaml
11915 F:      Documentation/devicetree/bindings/*/max77650*.yaml
11916 F:      drivers/gpio/gpio-max77650.c
11917 F:      drivers/input/misc/max77650-onkey.c
11918 F:      drivers/leds/leds-max77650.c
11919 F:      drivers/mfd/max77650.c
11920 F:      drivers/power/supply/max77650-charger.c
11921 F:      drivers/regulator/max77650-regulator.c
11922 F:      include/linux/mfd/max77650.h
11923
11924 MAXIM MAX77714 PMIC MFD DRIVER
11925 M:      Luca Ceresoli <luca@lucaceresoli.net>
11926 S:      Maintained
11927 F:      Documentation/devicetree/bindings/mfd/maxim,max77714.yaml
11928 F:      drivers/mfd/max77714.c
11929 F:      include/linux/mfd/max77714.h
11930
11931 MAXIM MAX77802 PMIC REGULATOR DEVICE DRIVER
11932 M:      Javier Martinez Canillas <javier@dowhile0.org>
11933 L:      linux-kernel@vger.kernel.org
11934 S:      Supported
11935 F:      Documentation/devicetree/bindings/*/*max77802.yaml
11936 F:      drivers/regulator/max77802-regulator.c
11937 F:      include/dt-bindings/*/*max77802.h
11938
11939 MAXIM MAX77976 BATTERY CHARGER
11940 M:      Luca Ceresoli <luca@lucaceresoli.net>
11941 S:      Supported
11942 F:      Documentation/devicetree/bindings/power/supply/maxim,max77976.yaml
11943 F:      drivers/power/supply/max77976_charger.c
11944
11945 MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS
11946 M:      Krzysztof Kozlowski <krzk@kernel.org>
11947 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
11948 L:      linux-pm@vger.kernel.org
11949 S:      Supported
11950 F:      Documentation/devicetree/bindings/power/supply/maxim,max14577.yaml
11951 F:      Documentation/devicetree/bindings/power/supply/maxim,max77693.yaml
11952 F:      drivers/power/supply/max14577_charger.c
11953 F:      drivers/power/supply/max77693_charger.c
11954
11955 MAXIM PMIC AND MUIC DRIVERS FOR EXYNOS BASED BOARDS
11956 M:      Chanwoo Choi <cw00.choi@samsung.com>
11957 M:      Krzysztof Kozlowski <krzk@kernel.org>
11958 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
11959 L:      linux-kernel@vger.kernel.org
11960 S:      Supported
11961 F:      Documentation/devicetree/bindings/*/maxim,max14577.yaml
11962 F:      Documentation/devicetree/bindings/*/maxim,max77686.yaml
11963 F:      Documentation/devicetree/bindings/*/maxim,max77693.yaml
11964 F:      Documentation/devicetree/bindings/*/maxim,max77843.yaml
11965 F:      Documentation/devicetree/bindings/clock/maxim,max77686.txt
11966 F:      Documentation/devicetree/bindings/mfd/max77693.txt
11967 F:      drivers/*/*max77843.c
11968 F:      drivers/*/max14577*.c
11969 F:      drivers/*/max77686*.c
11970 F:      drivers/*/max77693*.c
11971 F:      drivers/clk/clk-max77686.c
11972 F:      drivers/extcon/extcon-max14577.c
11973 F:      drivers/extcon/extcon-max77693.c
11974 F:      drivers/rtc/rtc-max77686.c
11975 F:      include/linux/mfd/max14577*.h
11976 F:      include/linux/mfd/max77686*.h
11977 F:      include/linux/mfd/max77693*.h
11978
11979 MAXIRADIO FM RADIO RECEIVER DRIVER
11980 M:      Hans Verkuil <hverkuil@xs4all.nl>
11981 L:      linux-media@vger.kernel.org
11982 S:      Maintained
11983 W:      https://linuxtv.org
11984 T:      git git://linuxtv.org/media_tree.git
11985 F:      drivers/media/radio/radio-maxiradio*
11986
11987 MAXLINEAR ETHERNET PHY DRIVER
11988 M:      Xu Liang <lxu@maxlinear.com>
11989 L:      netdev@vger.kernel.org
11990 S:      Supported
11991 F:      drivers/net/phy/mxl-gpy.c
11992
11993 MCBA MICROCHIP CAN BUS ANALYZER TOOL DRIVER
11994 R:      Yasushi SHOJI <yashi@spacecubics.com>
11995 L:      linux-can@vger.kernel.org
11996 S:      Maintained
11997 F:      drivers/net/can/usb/mcba_usb.c
11998
11999 MCAN MMIO DEVICE DRIVER
12000 M:      Chandrasekar Ramakrishnan <rcsekar@samsung.com>
12001 L:      linux-can@vger.kernel.org
12002 S:      Maintained
12003 F:      Documentation/devicetree/bindings/net/can/bosch,m_can.yaml
12004 F:      drivers/net/can/m_can/m_can.c
12005 F:      drivers/net/can/m_can/m_can.h
12006 F:      drivers/net/can/m_can/m_can_platform.c
12007
12008 MCP2221A MICROCHIP USB-HID TO I2C BRIDGE DRIVER
12009 M:      Rishi Gupta <gupt21@gmail.com>
12010 L:      linux-i2c@vger.kernel.org
12011 L:      linux-input@vger.kernel.org
12012 S:      Maintained
12013 F:      drivers/hid/hid-mcp2221.c
12014
12015 MCP251XFD SPI-CAN NETWORK DRIVER
12016 M:      Marc Kleine-Budde <mkl@pengutronix.de>
12017 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
12018 R:      Thomas Kopp <thomas.kopp@microchip.com>
12019 L:      linux-can@vger.kernel.org
12020 S:      Maintained
12021 F:      Documentation/devicetree/bindings/net/can/microchip,mcp251xfd.yaml
12022 F:      drivers/net/can/spi/mcp251xfd/
12023
12024 MCP4018 AND MCP4531 MICROCHIP DIGITAL POTENTIOMETER DRIVERS
12025 M:      Peter Rosin <peda@axentia.se>
12026 L:      linux-iio@vger.kernel.org
12027 S:      Maintained
12028 F:      Documentation/ABI/testing/sysfs-bus-iio-potentiometer-mcp4531
12029 F:      drivers/iio/potentiometer/mcp4018.c
12030 F:      drivers/iio/potentiometer/mcp4531.c
12031
12032 MCR20A IEEE-802.15.4 RADIO DRIVER
12033 M:      Xue Liu <liuxuenetmail@gmail.com>
12034 L:      linux-wpan@vger.kernel.org
12035 S:      Maintained
12036 W:      https://github.com/xueliu/mcr20a-linux
12037 F:      Documentation/devicetree/bindings/net/ieee802154/mcr20a.txt
12038 F:      drivers/net/ieee802154/mcr20a.c
12039 F:      drivers/net/ieee802154/mcr20a.h
12040
12041 MEASUREMENT COMPUTING CIO-DAC IIO DRIVER
12042 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
12043 L:      linux-iio@vger.kernel.org
12044 S:      Maintained
12045 F:      drivers/iio/dac/cio-dac.c
12046
12047 MEDIA CONTROLLER FRAMEWORK
12048 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
12049 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12050 L:      linux-media@vger.kernel.org
12051 S:      Supported
12052 W:      https://www.linuxtv.org
12053 T:      git git://linuxtv.org/media_tree.git
12054 F:      drivers/media/mc/
12055 F:      include/media/media-*.h
12056 F:      include/uapi/linux/media.h
12057
12058 MEDIA DRIVER FOR FREESCALE IMX PXP
12059 M:      Philipp Zabel <p.zabel@pengutronix.de>
12060 L:      linux-media@vger.kernel.org
12061 S:      Maintained
12062 T:      git git://linuxtv.org/media_tree.git
12063 F:      drivers/media/platform/nxp/imx-pxp.[ch]
12064
12065 MEDIA DRIVERS FOR ASCOT2E
12066 M:      Sergey Kozlov <serjk@netup.ru>
12067 M:      Abylay Ospan <aospan@netup.ru>
12068 L:      linux-media@vger.kernel.org
12069 S:      Supported
12070 W:      https://linuxtv.org
12071 W:      http://netup.tv/
12072 T:      git git://linuxtv.org/media_tree.git
12073 F:      drivers/media/dvb-frontends/ascot2e*
12074
12075 MEDIA DRIVERS FOR CXD2099AR CI CONTROLLERS
12076 M:      Jasmin Jessich <jasmin@anw.at>
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/dvb-frontends/cxd2099*
12082
12083 MEDIA DRIVERS FOR CXD2841ER
12084 M:      Sergey Kozlov <serjk@netup.ru>
12085 M:      Abylay Ospan <aospan@netup.ru>
12086 L:      linux-media@vger.kernel.org
12087 S:      Supported
12088 W:      https://linuxtv.org
12089 W:      http://netup.tv/
12090 T:      git git://linuxtv.org/media_tree.git
12091 F:      drivers/media/dvb-frontends/cxd2841er*
12092
12093 MEDIA DRIVERS FOR CXD2880
12094 M:      Yasunari Takiguchi <Yasunari.Takiguchi@sony.com>
12095 L:      linux-media@vger.kernel.org
12096 S:      Supported
12097 W:      http://linuxtv.org/
12098 T:      git git://linuxtv.org/media_tree.git
12099 F:      drivers/media/dvb-frontends/cxd2880/*
12100 F:      drivers/media/spi/cxd2880*
12101
12102 MEDIA DRIVERS FOR DIGITAL DEVICES PCIE DEVICES
12103 L:      linux-media@vger.kernel.org
12104 S:      Orphan
12105 W:      https://linuxtv.org
12106 T:      git git://linuxtv.org/media_tree.git
12107 F:      drivers/media/pci/ddbridge/*
12108
12109 MEDIA DRIVERS FOR FREESCALE IMX
12110 M:      Steve Longerbeam <slongerbeam@gmail.com>
12111 M:      Philipp Zabel <p.zabel@pengutronix.de>
12112 L:      linux-media@vger.kernel.org
12113 S:      Maintained
12114 T:      git git://linuxtv.org/media_tree.git
12115 F:      Documentation/admin-guide/media/imx.rst
12116 F:      Documentation/devicetree/bindings/media/imx.txt
12117 F:      drivers/staging/media/imx/
12118 F:      include/linux/imx-media.h
12119 F:      include/media/imx.h
12120
12121 MEDIA DRIVERS FOR FREESCALE IMX7
12122 M:      Rui Miguel Silva <rmfrfs@gmail.com>
12123 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12124 L:      linux-media@vger.kernel.org
12125 S:      Maintained
12126 T:      git git://linuxtv.org/media_tree.git
12127 F:      Documentation/admin-guide/media/imx7.rst
12128 F:      Documentation/devicetree/bindings/media/nxp,imx-mipi-csi2.yaml
12129 F:      Documentation/devicetree/bindings/media/nxp,imx7-csi.yaml
12130 F:      drivers/media/platform/imx/imx-mipi-csis.c
12131 F:      drivers/staging/media/imx/imx7-media-csi.c
12132
12133 MEDIA DRIVERS FOR HELENE
12134 M:      Abylay Ospan <aospan@netup.ru>
12135 L:      linux-media@vger.kernel.org
12136 S:      Supported
12137 W:      https://linuxtv.org
12138 W:      http://netup.tv/
12139 T:      git git://linuxtv.org/media_tree.git
12140 F:      drivers/media/dvb-frontends/helene*
12141
12142 MEDIA DRIVERS FOR HORUS3A
12143 M:      Sergey Kozlov <serjk@netup.ru>
12144 M:      Abylay Ospan <aospan@netup.ru>
12145 L:      linux-media@vger.kernel.org
12146 S:      Supported
12147 W:      https://linuxtv.org
12148 W:      http://netup.tv/
12149 T:      git git://linuxtv.org/media_tree.git
12150 F:      drivers/media/dvb-frontends/horus3a*
12151
12152 MEDIA DRIVERS FOR LNBH25
12153 M:      Sergey Kozlov <serjk@netup.ru>
12154 M:      Abylay Ospan <aospan@netup.ru>
12155 L:      linux-media@vger.kernel.org
12156 S:      Supported
12157 W:      https://linuxtv.org
12158 W:      http://netup.tv/
12159 T:      git git://linuxtv.org/media_tree.git
12160 F:      drivers/media/dvb-frontends/lnbh25*
12161
12162 MEDIA DRIVERS FOR MXL5XX TUNER DEMODULATORS
12163 L:      linux-media@vger.kernel.org
12164 S:      Orphan
12165 W:      https://linuxtv.org
12166 T:      git git://linuxtv.org/media_tree.git
12167 F:      drivers/media/dvb-frontends/mxl5xx*
12168
12169 MEDIA DRIVERS FOR NETUP PCI UNIVERSAL DVB devices
12170 M:      Sergey Kozlov <serjk@netup.ru>
12171 M:      Abylay Ospan <aospan@netup.ru>
12172 L:      linux-media@vger.kernel.org
12173 S:      Supported
12174 W:      https://linuxtv.org
12175 W:      http://netup.tv/
12176 T:      git git://linuxtv.org/media_tree.git
12177 F:      drivers/media/pci/netup_unidvb/*
12178
12179 MEDIA DRIVERS FOR NVIDIA TEGRA - VDE
12180 M:      Dmitry Osipenko <digetx@gmail.com>
12181 L:      linux-media@vger.kernel.org
12182 L:      linux-tegra@vger.kernel.org
12183 S:      Maintained
12184 T:      git git://linuxtv.org/media_tree.git
12185 F:      Documentation/devicetree/bindings/media/nvidia,tegra-vde.txt
12186 F:      drivers/media/platform/nvidia/tegra-vde/
12187
12188 MEDIA DRIVERS FOR RENESAS - CEU
12189 M:      Jacopo Mondi <jacopo@jmondi.org>
12190 L:      linux-media@vger.kernel.org
12191 L:      linux-renesas-soc@vger.kernel.org
12192 S:      Supported
12193 T:      git git://linuxtv.org/media_tree.git
12194 F:      Documentation/devicetree/bindings/media/renesas,ceu.yaml
12195 F:      drivers/media/platform/renesas/renesas-ceu.c
12196 F:      include/media/drv-intf/renesas-ceu.h
12197
12198 MEDIA DRIVERS FOR RENESAS - DRIF
12199 M:      Fabrizio Castro <fabrizio.castro.jz@renesas.com>
12200 L:      linux-media@vger.kernel.org
12201 L:      linux-renesas-soc@vger.kernel.org
12202 S:      Supported
12203 T:      git git://linuxtv.org/media_tree.git
12204 F:      Documentation/devicetree/bindings/media/renesas,drif.yaml
12205 F:      drivers/media/platform/renesas/rcar_drif.c
12206
12207 MEDIA DRIVERS FOR RENESAS - FCP
12208 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12209 L:      linux-media@vger.kernel.org
12210 L:      linux-renesas-soc@vger.kernel.org
12211 S:      Supported
12212 T:      git git://linuxtv.org/media_tree.git
12213 F:      Documentation/devicetree/bindings/media/renesas,fcp.yaml
12214 F:      drivers/media/platform/renesas/rcar-fcp.c
12215 F:      include/media/rcar-fcp.h
12216
12217 MEDIA DRIVERS FOR RENESAS - FDP1
12218 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
12219 L:      linux-media@vger.kernel.org
12220 L:      linux-renesas-soc@vger.kernel.org
12221 S:      Supported
12222 T:      git git://linuxtv.org/media_tree.git
12223 F:      Documentation/devicetree/bindings/media/renesas,fdp1.yaml
12224 F:      drivers/media/platform/renesas/rcar_fdp1.c
12225
12226 MEDIA DRIVERS FOR RENESAS - VIN
12227 M:      Niklas Söderlund <niklas.soderlund@ragnatech.se>
12228 L:      linux-media@vger.kernel.org
12229 L:      linux-renesas-soc@vger.kernel.org
12230 S:      Supported
12231 T:      git git://linuxtv.org/media_tree.git
12232 F:      Documentation/devicetree/bindings/media/renesas,csi2.yaml
12233 F:      Documentation/devicetree/bindings/media/renesas,isp.yaml
12234 F:      Documentation/devicetree/bindings/media/renesas,vin.yaml
12235 F:      drivers/media/platform/renesas/rcar-isp.c
12236 F:      drivers/media/platform/renesas/rcar-vin/
12237
12238 MEDIA DRIVERS FOR RENESAS - VSP1
12239 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12240 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
12241 L:      linux-media@vger.kernel.org
12242 L:      linux-renesas-soc@vger.kernel.org
12243 S:      Supported
12244 T:      git git://linuxtv.org/media_tree.git
12245 F:      Documentation/devicetree/bindings/media/renesas,vsp1.yaml
12246 F:      drivers/media/platform/renesas/vsp1/
12247
12248 MEDIA DRIVERS FOR ST STV0910 DEMODULATOR ICs
12249 L:      linux-media@vger.kernel.org
12250 S:      Orphan
12251 W:      https://linuxtv.org
12252 T:      git git://linuxtv.org/media_tree.git
12253 F:      drivers/media/dvb-frontends/stv0910*
12254
12255 MEDIA DRIVERS FOR ST STV6111 TUNER ICs
12256 L:      linux-media@vger.kernel.org
12257 S:      Orphan
12258 W:      https://linuxtv.org
12259 T:      git git://linuxtv.org/media_tree.git
12260 F:      drivers/media/dvb-frontends/stv6111*
12261
12262 MEDIA DRIVERS FOR STM32 - DCMI
12263 M:      Hugues Fruchet <hugues.fruchet@foss.st.com>
12264 L:      linux-media@vger.kernel.org
12265 S:      Supported
12266 T:      git git://linuxtv.org/media_tree.git
12267 F:      Documentation/devicetree/bindings/media/st,stm32-dcmi.yaml
12268 F:      drivers/media/platform/st/stm32/stm32-dcmi.c
12269
12270 MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
12271 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
12272 L:      linux-media@vger.kernel.org
12273 S:      Maintained
12274 W:      https://linuxtv.org
12275 Q:      http://patchwork.kernel.org/project/linux-media/list/
12276 T:      git git://linuxtv.org/media_tree.git
12277 F:      Documentation/admin-guide/media/
12278 F:      Documentation/devicetree/bindings/media/
12279 F:      Documentation/driver-api/media/
12280 F:      Documentation/userspace-api/media/
12281 F:      drivers/media/
12282 F:      drivers/staging/media/
12283 F:      include/linux/platform_data/media/
12284 F:      include/media/
12285 F:      include/uapi/linux/dvb/
12286 F:      include/uapi/linux/ivtv*
12287 F:      include/uapi/linux/media.h
12288 F:      include/uapi/linux/meye.h
12289 F:      include/uapi/linux/uvcvideo.h
12290 F:      include/uapi/linux/v4l2-*
12291 F:      include/uapi/linux/videodev2.h
12292
12293 MEDIATEK BLUETOOTH DRIVER
12294 M:      Sean Wang <sean.wang@mediatek.com>
12295 L:      linux-bluetooth@vger.kernel.org
12296 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
12297 S:      Maintained
12298 F:      Documentation/devicetree/bindings/net/mediatek-bluetooth.txt
12299 F:      drivers/bluetooth/btmtkuart.c
12300
12301 MEDIATEK BOARD LEVEL SHUTDOWN DRIVERS
12302 M:      Sean Wang <sean.wang@mediatek.com>
12303 L:      linux-pm@vger.kernel.org
12304 S:      Maintained
12305 F:      Documentation/devicetree/bindings/power/reset/mt6323-poweroff.txt
12306 F:      drivers/power/reset/mt6323-poweroff.c
12307
12308 MEDIATEK CIR DRIVER
12309 M:      Sean Wang <sean.wang@mediatek.com>
12310 S:      Maintained
12311 F:      drivers/media/rc/mtk-cir.c
12312
12313 MEDIATEK DMA DRIVER
12314 M:      Sean Wang <sean.wang@mediatek.com>
12315 L:      dmaengine@vger.kernel.org
12316 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12317 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
12318 S:      Maintained
12319 F:      Documentation/devicetree/bindings/dma/mtk-*
12320 F:      drivers/dma/mediatek/
12321
12322 MEDIATEK ETHERNET DRIVER
12323 M:      Felix Fietkau <nbd@nbd.name>
12324 M:      John Crispin <john@phrozen.org>
12325 M:      Sean Wang <sean.wang@mediatek.com>
12326 M:      Mark Lee <Mark-MC.Lee@mediatek.com>
12327 L:      netdev@vger.kernel.org
12328 S:      Maintained
12329 F:      drivers/net/ethernet/mediatek/
12330
12331 MEDIATEK I2C CONTROLLER DRIVER
12332 M:      Qii Wang <qii.wang@mediatek.com>
12333 L:      linux-i2c@vger.kernel.org
12334 S:      Maintained
12335 F:      Documentation/devicetree/bindings/i2c/i2c-mt65xx.txt
12336 F:      drivers/i2c/busses/i2c-mt65xx.c
12337
12338 MEDIATEK IOMMU DRIVER
12339 M:      Yong Wu <yong.wu@mediatek.com>
12340 L:      iommu@lists.linux-foundation.org
12341 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
12342 S:      Supported
12343 F:      Documentation/devicetree/bindings/iommu/mediatek*
12344 F:      drivers/iommu/mtk_iommu*
12345 F:      include/dt-bindings/memory/mt*-port.h
12346
12347 MEDIATEK JPEG DRIVER
12348 M:      Rick Chang <rick.chang@mediatek.com>
12349 M:      Bin Liu <bin.liu@mediatek.com>
12350 S:      Supported
12351 F:      Documentation/devicetree/bindings/media/mediatek-jpeg-decoder.txt
12352 F:      drivers/media/platform/mediatek/jpeg/
12353
12354 MEDIATEK MDP DRIVER
12355 M:      Minghsiu Tsai <minghsiu.tsai@mediatek.com>
12356 M:      Houlong Wei <houlong.wei@mediatek.com>
12357 M:      Andrew-CT Chen <andrew-ct.chen@mediatek.com>
12358 S:      Supported
12359 F:      Documentation/devicetree/bindings/media/mediatek-mdp.txt
12360 F:      drivers/media/platform/mediatek/mdp/
12361 F:      drivers/media/platform/mediatek/vpu/
12362
12363 MEDIATEK MEDIA DRIVER
12364 M:      Tiffany Lin <tiffany.lin@mediatek.com>
12365 M:      Andrew-CT Chen <andrew-ct.chen@mediatek.com>
12366 S:      Supported
12367 F:      Documentation/devicetree/bindings/media/mediatek-vcodec.txt
12368 F:      Documentation/devicetree/bindings/media/mediatek-vpu.txt
12369 F:      drivers/media/platform/mediatek/vcodec/
12370 F:      drivers/media/platform/mediatek/vpu/
12371
12372 MEDIATEK MMC/SD/SDIO DRIVER
12373 M:      Chaotian Jing <chaotian.jing@mediatek.com>
12374 S:      Maintained
12375 F:      Documentation/devicetree/bindings/mmc/mtk-sd.yaml
12376 F:      drivers/mmc/host/mtk-sd.c
12377
12378 MEDIATEK MT76 WIRELESS LAN DRIVER
12379 M:      Felix Fietkau <nbd@nbd.name>
12380 M:      Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
12381 M:      Ryder Lee <ryder.lee@mediatek.com>
12382 R:      Shayne Chen <shayne.chen@mediatek.com>
12383 R:      Sean Wang <sean.wang@mediatek.com>
12384 L:      linux-wireless@vger.kernel.org
12385 S:      Maintained
12386 F:      Documentation/devicetree/bindings/net/wireless/mediatek,mt76.yaml
12387 F:      drivers/net/wireless/mediatek/mt76/
12388
12389 MEDIATEK MT7601U WIRELESS LAN DRIVER
12390 M:      Jakub Kicinski <kubakici@wp.pl>
12391 L:      linux-wireless@vger.kernel.org
12392 S:      Maintained
12393 F:      drivers/net/wireless/mediatek/mt7601u/
12394
12395 MEDIATEK MT7621 CLOCK DRIVER
12396 M:      Sergio Paracuellos <sergio.paracuellos@gmail.com>
12397 S:      Maintained
12398 F:      Documentation/devicetree/bindings/clock/mediatek,mt7621-sysc.yaml
12399 F:      drivers/clk/ralink/clk-mt7621.c
12400
12401 MEDIATEK MT7621/28/88 I2C DRIVER
12402 M:      Stefan Roese <sr@denx.de>
12403 L:      linux-i2c@vger.kernel.org
12404 S:      Maintained
12405 F:      Documentation/devicetree/bindings/i2c/i2c-mt7621.txt
12406 F:      drivers/i2c/busses/i2c-mt7621.c
12407
12408 MEDIATEK MT7621 PCIE CONTROLLER DRIVER
12409 M:      Sergio Paracuellos <sergio.paracuellos@gmail.com>
12410 S:      Maintained
12411 F:      Documentation/devicetree/bindings/pci/mediatek,mt7621-pcie.yaml
12412 F:      drivers/pci/controller/pcie-mt7621.c
12413
12414 MEDIATEK MT7621 PHY PCI DRIVER
12415 M:      Sergio Paracuellos <sergio.paracuellos@gmail.com>
12416 S:      Maintained
12417 F:      Documentation/devicetree/bindings/phy/mediatek,mt7621-pci-phy.yaml
12418 F:      drivers/phy/ralink/phy-mt7621-pci.c
12419
12420 MEDIATEK NAND CONTROLLER DRIVER
12421 L:      linux-mtd@lists.infradead.org
12422 S:      Orphan
12423 F:      Documentation/devicetree/bindings/mtd/mtk-nand.txt
12424 F:      drivers/mtd/nand/raw/mtk_*
12425
12426 MEDIATEK PMIC LED DRIVER
12427 M:      Sean Wang <sean.wang@mediatek.com>
12428 S:      Maintained
12429 F:      Documentation/devicetree/bindings/leds/leds-mt6323.txt
12430 F:      drivers/leds/leds-mt6323.c
12431
12432 MEDIATEK RANDOM NUMBER GENERATOR SUPPORT
12433 M:      Sean Wang <sean.wang@mediatek.com>
12434 S:      Maintained
12435 F:      drivers/char/hw_random/mtk-rng.c
12436
12437 MEDIATEK SMI DRIVER
12438 M:      Yong Wu <yong.wu@mediatek.com>
12439 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
12440 S:      Supported
12441 F:      Documentation/devicetree/bindings/memory-controllers/mediatek,smi*
12442 F:      drivers/memory/mtk-smi.c
12443 F:      include/soc/mediatek/smi.h
12444
12445 MEDIATEK SWITCH DRIVER
12446 M:      Sean Wang <sean.wang@mediatek.com>
12447 M:      Landen Chao <Landen.Chao@mediatek.com>
12448 M:      DENG Qingfang <dqfext@gmail.com>
12449 L:      netdev@vger.kernel.org
12450 S:      Maintained
12451 F:      drivers/net/dsa/mt7530.*
12452 F:      net/dsa/tag_mtk.c
12453
12454 MEDIATEK USB3 DRD IP DRIVER
12455 M:      Chunfeng Yun <chunfeng.yun@mediatek.com>
12456 L:      linux-usb@vger.kernel.org
12457 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12458 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
12459 S:      Maintained
12460 F:      Documentation/devicetree/bindings/usb/mediatek,*
12461 F:      drivers/usb/host/xhci-mtk*
12462 F:      drivers/usb/mtu3/
12463
12464 MEGACHIPS STDPXXXX-GE-B850V3-FW LVDS/DP++ BRIDGES
12465 M:      Peter Senna Tschudin <peter.senna@gmail.com>
12466 M:      Martin Donnelly <martin.donnelly@ge.com>
12467 M:      Martyn Welch <martyn.welch@collabora.co.uk>
12468 S:      Maintained
12469 F:      Documentation/devicetree/bindings/display/bridge/megachips-stdpxxxx-ge-b850v3-fw.txt
12470 F:      drivers/gpu/drm/bridge/megachips-stdpxxxx-ge-b850v3-fw.c
12471
12472 MEGARAID SCSI/SAS DRIVERS
12473 M:      Kashyap Desai <kashyap.desai@broadcom.com>
12474 M:      Sumit Saxena <sumit.saxena@broadcom.com>
12475 M:      Shivasharan S <shivasharan.srikanteshwara@broadcom.com>
12476 L:      megaraidlinux.pdl@broadcom.com
12477 L:      linux-scsi@vger.kernel.org
12478 S:      Maintained
12479 W:      http://www.avagotech.com/support/
12480 F:      Documentation/scsi/megaraid.rst
12481 F:      drivers/scsi/megaraid.*
12482 F:      drivers/scsi/megaraid/
12483
12484 MELEXIS MLX90614 DRIVER
12485 M:      Crt Mori <cmo@melexis.com>
12486 L:      linux-iio@vger.kernel.org
12487 S:      Supported
12488 W:      http://www.melexis.com
12489 F:      drivers/iio/temperature/mlx90614.c
12490
12491 MELEXIS MLX90632 DRIVER
12492 M:      Crt Mori <cmo@melexis.com>
12493 L:      linux-iio@vger.kernel.org
12494 S:      Supported
12495 W:      http://www.melexis.com
12496 F:      drivers/iio/temperature/mlx90632.c
12497
12498 MELFAS MIP4 TOUCHSCREEN DRIVER
12499 M:      Sangwon Jee <jeesw@melfas.com>
12500 S:      Supported
12501 W:      http://www.melfas.com
12502 F:      Documentation/devicetree/bindings/input/touchscreen/melfas_mip4.txt
12503 F:      drivers/input/touchscreen/melfas_mip4.c
12504
12505 MELLANOX BLUEFIELD I2C DRIVER
12506 M:      Khalil Blaiech <kblaiech@nvidia.com>
12507 L:      linux-i2c@vger.kernel.org
12508 S:      Supported
12509 F:      Documentation/devicetree/bindings/i2c/mellanox,i2c-mlxbf.yaml
12510 F:      drivers/i2c/busses/i2c-mlxbf.c
12511
12512 MELLANOX ETHERNET DRIVER (mlx4_en)
12513 M:      Tariq Toukan <tariqt@nvidia.com>
12514 L:      netdev@vger.kernel.org
12515 S:      Supported
12516 W:      http://www.mellanox.com
12517 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12518 F:      drivers/net/ethernet/mellanox/mlx4/en_*
12519
12520 MELLANOX ETHERNET DRIVER (mlx5e)
12521 M:      Saeed Mahameed <saeedm@nvidia.com>
12522 L:      netdev@vger.kernel.org
12523 S:      Supported
12524 W:      http://www.mellanox.com
12525 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12526 F:      drivers/net/ethernet/mellanox/mlx5/core/en_*
12527
12528 MELLANOX ETHERNET INNOVA DRIVERS
12529 R:      Boris Pismenny <borisp@nvidia.com>
12530 L:      netdev@vger.kernel.org
12531 S:      Supported
12532 W:      http://www.mellanox.com
12533 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12534 F:      drivers/net/ethernet/mellanox/mlx5/core/accel/*
12535 F:      drivers/net/ethernet/mellanox/mlx5/core/en_accel/*
12536 F:      drivers/net/ethernet/mellanox/mlx5/core/fpga/*
12537 F:      include/linux/mlx5/mlx5_ifc_fpga.h
12538
12539 MELLANOX ETHERNET SWITCH DRIVERS
12540 M:      Ido Schimmel <idosch@nvidia.com>
12541 M:      Petr Machata <petrm@nvidia.com>
12542 L:      netdev@vger.kernel.org
12543 S:      Supported
12544 W:      http://www.mellanox.com
12545 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12546 F:      drivers/net/ethernet/mellanox/mlxsw/
12547 F:      tools/testing/selftests/drivers/net/mlxsw/
12548
12549 MELLANOX FIRMWARE FLASH LIBRARY (mlxfw)
12550 M:      mlxsw@nvidia.com
12551 L:      netdev@vger.kernel.org
12552 S:      Supported
12553 W:      http://www.mellanox.com
12554 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12555 F:      drivers/net/ethernet/mellanox/mlxfw/
12556
12557 MELLANOX HARDWARE PLATFORM SUPPORT
12558 M:      Hans de Goede <hdegoede@redhat.com>
12559 M:      Mark Gross <markgross@kernel.org>
12560 M:      Vadim Pasternak <vadimp@nvidia.com>
12561 L:      platform-driver-x86@vger.kernel.org
12562 S:      Supported
12563 F:      Documentation/ABI/testing/sysfs-platform-mellanox-bootctl
12564 F:      drivers/platform/mellanox/
12565 F:      include/linux/platform_data/mlxreg.h
12566
12567 MELLANOX MLX4 core VPI driver
12568 M:      Tariq Toukan <tariqt@nvidia.com>
12569 L:      netdev@vger.kernel.org
12570 L:      linux-rdma@vger.kernel.org
12571 S:      Supported
12572 W:      http://www.mellanox.com
12573 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12574 F:      drivers/net/ethernet/mellanox/mlx4/
12575 F:      include/linux/mlx4/
12576
12577 MELLANOX MLX4 IB driver
12578 M:      Yishai Hadas <yishaih@nvidia.com>
12579 L:      linux-rdma@vger.kernel.org
12580 S:      Supported
12581 W:      http://www.mellanox.com
12582 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
12583 F:      drivers/infiniband/hw/mlx4/
12584 F:      include/linux/mlx4/
12585 F:      include/uapi/rdma/mlx4-abi.h
12586
12587 MELLANOX MLX5 core VPI driver
12588 M:      Saeed Mahameed <saeedm@nvidia.com>
12589 M:      Leon Romanovsky <leonro@nvidia.com>
12590 L:      netdev@vger.kernel.org
12591 L:      linux-rdma@vger.kernel.org
12592 S:      Supported
12593 W:      http://www.mellanox.com
12594 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12595 F:      Documentation/networking/device_drivers/ethernet/mellanox/
12596 F:      drivers/net/ethernet/mellanox/mlx5/core/
12597 F:      include/linux/mlx5/
12598
12599 MELLANOX MLX5 IB driver
12600 M:      Leon Romanovsky <leonro@nvidia.com>
12601 L:      linux-rdma@vger.kernel.org
12602 S:      Supported
12603 W:      http://www.mellanox.com
12604 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
12605 F:      drivers/infiniband/hw/mlx5/
12606 F:      include/linux/mlx5/
12607 F:      include/uapi/rdma/mlx5-abi.h
12608
12609 MELLANOX MLXCPLD I2C AND MUX DRIVER
12610 M:      Vadim Pasternak <vadimp@nvidia.com>
12611 M:      Michael Shych <michaelsh@nvidia.com>
12612 L:      linux-i2c@vger.kernel.org
12613 S:      Supported
12614 F:      Documentation/i2c/busses/i2c-mlxcpld.rst
12615 F:      drivers/i2c/busses/i2c-mlxcpld.c
12616 F:      drivers/i2c/muxes/i2c-mux-mlxcpld.c
12617
12618 MELLANOX MLXCPLD LED DRIVER
12619 M:      Vadim Pasternak <vadimp@nvidia.com>
12620 L:      linux-leds@vger.kernel.org
12621 S:      Supported
12622 F:      Documentation/leds/leds-mlxcpld.rst
12623 F:      drivers/leds/leds-mlxcpld.c
12624 F:      drivers/leds/leds-mlxreg.c
12625
12626 MELLANOX PLATFORM DRIVER
12627 M:      Vadim Pasternak <vadimp@nvidia.com>
12628 L:      platform-driver-x86@vger.kernel.org
12629 S:      Supported
12630 F:      drivers/platform/x86/mlx-platform.c
12631
12632 MEMBARRIER SUPPORT
12633 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
12634 M:      "Paul E. McKenney" <paulmck@kernel.org>
12635 L:      linux-kernel@vger.kernel.org
12636 S:      Supported
12637 F:      arch/powerpc/include/asm/membarrier.h
12638 F:      include/uapi/linux/membarrier.h
12639 F:      kernel/sched/membarrier.c
12640
12641 MEMBLOCK
12642 M:      Mike Rapoport <rppt@kernel.org>
12643 L:      linux-mm@kvack.org
12644 S:      Maintained
12645 F:      Documentation/core-api/boot-time-mm.rst
12646 F:      include/linux/memblock.h
12647 F:      mm/memblock.c
12648 F:      tools/testing/memblock/
12649
12650 MEMORY CONTROLLER DRIVERS
12651 M:      Krzysztof Kozlowski <krzk@kernel.org>
12652 L:      linux-kernel@vger.kernel.org
12653 S:      Maintained
12654 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/krzk/linux-mem-ctrl.git
12655 F:      Documentation/devicetree/bindings/memory-controllers/
12656 F:      drivers/memory/
12657 F:      include/dt-bindings/memory/
12658 F:      include/memory/
12659
12660 MEMORY FREQUENCY SCALING DRIVERS FOR NVIDIA TEGRA
12661 M:      Dmitry Osipenko <digetx@gmail.com>
12662 L:      linux-pm@vger.kernel.org
12663 L:      linux-tegra@vger.kernel.org
12664 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
12665 S:      Maintained
12666 F:      drivers/devfreq/tegra30-devfreq.c
12667
12668 MEMORY MANAGEMENT
12669 M:      Andrew Morton <akpm@linux-foundation.org>
12670 L:      linux-mm@kvack.org
12671 S:      Maintained
12672 W:      http://www.linux-mm.org
12673 T:      quilt https://ozlabs.org/~akpm/mmotm/
12674 T:      quilt https://ozlabs.org/~akpm/mmots/
12675 T:      git git://github.com/hnaz/linux-mm.git
12676 F:      include/linux/gfp.h
12677 F:      include/linux/memory_hotplug.h
12678 F:      include/linux/mm.h
12679 F:      include/linux/mmzone.h
12680 F:      include/linux/pagewalk.h
12681 F:      include/linux/vmalloc.h
12682 F:      mm/
12683 F:      tools/testing/selftests/vm/
12684
12685 MEMORY TECHNOLOGY DEVICES (MTD)
12686 M:      Miquel Raynal <miquel.raynal@bootlin.com>
12687 M:      Richard Weinberger <richard@nod.at>
12688 M:      Vignesh Raghavendra <vigneshr@ti.com>
12689 L:      linux-mtd@lists.infradead.org
12690 S:      Maintained
12691 W:      http://www.linux-mtd.infradead.org/
12692 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
12693 C:      irc://irc.oftc.net/mtd
12694 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/fixes
12695 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/next
12696 F:      Documentation/devicetree/bindings/mtd/
12697 F:      drivers/mtd/
12698 F:      include/linux/mtd/
12699 F:      include/uapi/mtd/
12700
12701 MEN A21 WATCHDOG DRIVER
12702 M:      Johannes Thumshirn <morbidrsa@gmail.com>
12703 L:      linux-watchdog@vger.kernel.org
12704 S:      Maintained
12705 F:      drivers/watchdog/mena21_wdt.c
12706
12707 MEN CHAMELEON BUS (mcb)
12708 M:      Johannes Thumshirn <morbidrsa@gmail.com>
12709 S:      Maintained
12710 F:      Documentation/driver-api/men-chameleon-bus.rst
12711 F:      drivers/mcb/
12712 F:      include/linux/mcb.h
12713
12714 MEN F21BMC (Board Management Controller)
12715 M:      Andreas Werner <andreas.werner@men.de>
12716 S:      Supported
12717 F:      Documentation/hwmon/menf21bmc.rst
12718 F:      drivers/hwmon/menf21bmc_hwmon.c
12719 F:      drivers/leds/leds-menf21bmc.c
12720 F:      drivers/mfd/menf21bmc.c
12721 F:      drivers/watchdog/menf21bmc_wdt.c
12722
12723 MEN Z069 WATCHDOG DRIVER
12724 M:      Johannes Thumshirn <jth@kernel.org>
12725 L:      linux-watchdog@vger.kernel.org
12726 S:      Maintained
12727 F:      drivers/watchdog/menz69_wdt.c
12728
12729 MESON AO CEC DRIVER FOR AMLOGIC SOCS
12730 M:      Neil Armstrong <narmstrong@baylibre.com>
12731 L:      linux-media@vger.kernel.org
12732 L:      linux-amlogic@lists.infradead.org
12733 S:      Supported
12734 W:      http://linux-meson.com/
12735 T:      git git://linuxtv.org/media_tree.git
12736 F:      Documentation/devicetree/bindings/media/amlogic,meson-gx-ao-cec.yaml
12737 F:      drivers/media/cec/platform/meson/ao-cec-g12a.c
12738 F:      drivers/media/cec/platform/meson/ao-cec.c
12739
12740 MESON GE2D DRIVER FOR AMLOGIC SOCS
12741 M:      Neil Armstrong <narmstrong@baylibre.com>
12742 L:      linux-media@vger.kernel.org
12743 L:      linux-amlogic@lists.infradead.org
12744 S:      Supported
12745 T:      git git://linuxtv.org/media_tree.git
12746 F:      Documentation/devicetree/bindings/media/amlogic,axg-ge2d.yaml
12747 F:      drivers/media/platform/amlogic/meson-ge2d/
12748
12749 MESON NAND CONTROLLER DRIVER FOR AMLOGIC SOCS
12750 M:      Liang Yang <liang.yang@amlogic.com>
12751 L:      linux-mtd@lists.infradead.org
12752 S:      Maintained
12753 F:      Documentation/devicetree/bindings/mtd/amlogic,meson-nand.txt
12754 F:      drivers/mtd/nand/raw/meson_*
12755
12756 MESON VIDEO DECODER DRIVER FOR AMLOGIC SOCS
12757 M:      Neil Armstrong <narmstrong@baylibre.com>
12758 L:      linux-media@vger.kernel.org
12759 L:      linux-amlogic@lists.infradead.org
12760 S:      Supported
12761 T:      git git://linuxtv.org/media_tree.git
12762 F:      Documentation/devicetree/bindings/media/amlogic,gx-vdec.yaml
12763 F:      drivers/staging/media/meson/vdec/
12764
12765 METHODE UDPU SUPPORT
12766 M:      Vladimir Vid <vladimir.vid@sartura.hr>
12767 S:      Maintained
12768 F:      arch/arm64/boot/dts/marvell/armada-3720-uDPU.dts
12769
12770 MHI BUS
12771 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
12772 R:      Hemant Kumar <hemantk@codeaurora.org>
12773 L:      mhi@lists.linux.dev
12774 L:      linux-arm-msm@vger.kernel.org
12775 S:      Maintained
12776 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mani/mhi.git
12777 F:      Documentation/ABI/stable/sysfs-bus-mhi
12778 F:      Documentation/mhi/
12779 F:      drivers/bus/mhi/
12780 F:      include/linux/mhi.h
12781
12782 MICROBLAZE ARCHITECTURE
12783 M:      Michal Simek <monstr@monstr.eu>
12784 S:      Supported
12785 W:      http://www.monstr.eu/fdt/
12786 T:      git git://git.monstr.eu/linux-2.6-microblaze.git
12787 F:      arch/microblaze/
12788
12789 MICROCHIP AT91 DMA DRIVERS
12790 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
12791 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
12792 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12793 L:      dmaengine@vger.kernel.org
12794 S:      Supported
12795 F:      Documentation/devicetree/bindings/dma/atmel-dma.txt
12796 F:      drivers/dma/at_hdmac.c
12797 F:      drivers/dma/at_hdmac_regs.h
12798 F:      drivers/dma/at_xdmac.c
12799 F:      include/dt-bindings/dma/at91.h
12800
12801 MICROCHIP AT91 SERIAL DRIVER
12802 M:      Richard Genoud <richard.genoud@gmail.com>
12803 S:      Maintained
12804 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
12805 F:      drivers/tty/serial/atmel_serial.c
12806 F:      drivers/tty/serial/atmel_serial.h
12807
12808 MICROCHIP AT91 USART MFD DRIVER
12809 M:      Radu Pirea <radu_nicolae.pirea@upb.ro>
12810 L:      linux-kernel@vger.kernel.org
12811 S:      Supported
12812 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
12813 F:      drivers/mfd/at91-usart.c
12814 F:      include/dt-bindings/mfd/at91-usart.h
12815
12816 MICROCHIP AT91 USART SPI DRIVER
12817 M:      Radu Pirea <radu_nicolae.pirea@upb.ro>
12818 L:      linux-spi@vger.kernel.org
12819 S:      Supported
12820 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
12821 F:      drivers/spi/spi-at91-usart.c
12822
12823 MICROCHIP AUDIO ASOC DRIVERS
12824 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
12825 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12826 S:      Supported
12827 F:      sound/soc/atmel
12828
12829 MICROCHIP CSI2DC DRIVER
12830 M:      Eugen Hristev <eugen.hristev@microchip.com>
12831 L:      linux-media@vger.kernel.org
12832 S:      Supported
12833 F:      Documentation/devicetree/bindings/media/microchip,csi2dc.yaml
12834 F:      drivers/media/platform/atmel/microchip-csi2dc.c
12835
12836 MICROCHIP ECC DRIVER
12837 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
12838 L:      linux-crypto@vger.kernel.org
12839 S:      Maintained
12840 F:      drivers/crypto/atmel-ecc.*
12841
12842 MICROCHIP EIC DRIVER
12843 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
12844 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12845 S:      Supported
12846 F:      drivers/irqchip/irq-mchp-eic.c
12847
12848 MICROCHIP I2C DRIVER
12849 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
12850 L:      linux-i2c@vger.kernel.org
12851 S:      Supported
12852 F:      drivers/i2c/busses/i2c-at91-*.c
12853 F:      drivers/i2c/busses/i2c-at91.h
12854
12855 MICROCHIP ISC DRIVER
12856 M:      Eugen Hristev <eugen.hristev@microchip.com>
12857 L:      linux-media@vger.kernel.org
12858 S:      Supported
12859 F:      Documentation/devicetree/bindings/media/atmel,isc.yaml
12860 F:      Documentation/devicetree/bindings/media/microchip,xisc.yaml
12861 F:      drivers/media/platform/atmel/atmel-isc*
12862 F:      drivers/media/platform/atmel/atmel-sama*-isc*
12863 F:      include/linux/atmel-isc-media.h
12864
12865 MICROCHIP ISI DRIVER
12866 M:      Eugen Hristev <eugen.hristev@microchip.com>
12867 L:      linux-media@vger.kernel.org
12868 S:      Supported
12869 F:      drivers/media/platform/atmel/atmel-isi.c
12870 F:      drivers/media/platform/atmel/atmel-isi.h
12871
12872 MICROCHIP KSZ SERIES ETHERNET SWITCH DRIVER
12873 M:      Woojung Huh <woojung.huh@microchip.com>
12874 M:      UNGLinuxDriver@microchip.com
12875 L:      netdev@vger.kernel.org
12876 S:      Maintained
12877 F:      Documentation/devicetree/bindings/net/dsa/microchip,ksz.yaml
12878 F:      drivers/net/dsa/microchip/*
12879 F:      include/linux/platform_data/microchip-ksz.h
12880 F:      net/dsa/tag_ksz.c
12881
12882 MICROCHIP LAN743X ETHERNET DRIVER
12883 M:      Bryan Whitehead <bryan.whitehead@microchip.com>
12884 M:      UNGLinuxDriver@microchip.com
12885 L:      netdev@vger.kernel.org
12886 S:      Maintained
12887 F:      drivers/net/ethernet/microchip/lan743x_*
12888
12889 MICROCHIP LAN966X ETHERNET DRIVER
12890 M:      Horatiu Vultur <horatiu.vultur@microchip.com>
12891 M:      UNGLinuxDriver@microchip.com
12892 L:      netdev@vger.kernel.org
12893 S:      Maintained
12894 F:      drivers/net/ethernet/microchip/lan966x/*
12895
12896 MICROCHIP LCDFB DRIVER
12897 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
12898 L:      linux-fbdev@vger.kernel.org
12899 S:      Maintained
12900 F:      drivers/video/fbdev/atmel_lcdfb.c
12901 F:      include/video/atmel_lcdc.h
12902
12903 MICROCHIP MCP16502 PMIC DRIVER
12904 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
12905 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12906 S:      Supported
12907 F:      Documentation/devicetree/bindings/regulator/mcp16502-regulator.txt
12908 F:      drivers/regulator/mcp16502.c
12909
12910 MICROCHIP MCP3911 ADC DRIVER
12911 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
12912 M:      Kent Gustavsson <kent@minoris.se>
12913 L:      linux-iio@vger.kernel.org
12914 S:      Supported
12915 F:      Documentation/devicetree/bindings/iio/adc/microchip,mcp3911.yaml
12916 F:      drivers/iio/adc/mcp3911.c
12917
12918 MICROCHIP MMC/SD/SDIO MCI DRIVER
12919 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
12920 S:      Maintained
12921 F:      drivers/mmc/host/atmel-mci.c
12922
12923 MICROCHIP NAND DRIVER
12924 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
12925 L:      linux-mtd@lists.infradead.org
12926 S:      Supported
12927 F:      Documentation/devicetree/bindings/mtd/atmel-nand.txt
12928 F:      drivers/mtd/nand/raw/atmel/*
12929
12930 MICROCHIP PWM DRIVER
12931 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
12932 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12933 L:      linux-pwm@vger.kernel.org
12934 S:      Supported
12935 F:      Documentation/devicetree/bindings/pwm/atmel-pwm.txt
12936 F:      drivers/pwm/pwm-atmel.c
12937
12938 MICROCHIP SAMA5D2-COMPATIBLE ADC DRIVER
12939 M:      Eugen Hristev <eugen.hristev@microchip.com>
12940 L:      linux-iio@vger.kernel.org
12941 S:      Supported
12942 F:      Documentation/devicetree/bindings/iio/adc/atmel,sama5d2-adc.yaml
12943 F:      drivers/iio/adc/at91-sama5d2_adc.c
12944 F:      include/dt-bindings/iio/adc/at91-sama5d2_adc.h
12945
12946 MICROCHIP SAMA5D2-COMPATIBLE SHUTDOWN CONTROLLER
12947 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
12948 S:      Supported
12949 F:      drivers/power/reset/at91-sama5d2_shdwc.c
12950
12951 MICROCHIP SPI DRIVER
12952 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
12953 S:      Supported
12954 F:      drivers/spi/spi-atmel.*
12955
12956 MICROCHIP SSC DRIVER
12957 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
12958 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12959 S:      Supported
12960 F:      drivers/misc/atmel-ssc.c
12961 F:      include/linux/atmel-ssc.h
12962
12963 MICROCHIP USB251XB DRIVER
12964 M:      Richard Leitner <richard.leitner@skidata.com>
12965 L:      linux-usb@vger.kernel.org
12966 S:      Maintained
12967 F:      Documentation/devicetree/bindings/usb/usb251xb.txt
12968 F:      drivers/usb/misc/usb251xb.c
12969
12970 MICROCHIP USBA UDC DRIVER
12971 M:      Cristian Birsan <cristian.birsan@microchip.com>
12972 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12973 S:      Supported
12974 F:      drivers/usb/gadget/udc/atmel_usba_udc.*
12975
12976 MICROCHIP WILC1000 WIFI DRIVER
12977 M:      Ajay Singh <ajay.kathat@microchip.com>
12978 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
12979 L:      linux-wireless@vger.kernel.org
12980 S:      Supported
12981 F:      drivers/net/wireless/microchip/wilc1000/
12982
12983 MICROSEMI MIPS SOCS
12984 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
12985 M:      UNGLinuxDriver@microchip.com
12986 L:      linux-mips@vger.kernel.org
12987 S:      Supported
12988 F:      Documentation/devicetree/bindings/mips/mscc.txt
12989 F:      Documentation/devicetree/bindings/power/reset/ocelot-reset.txt
12990 F:      arch/mips/boot/dts/mscc/
12991 F:      arch/mips/configs/generic/board-ocelot.config
12992 F:      arch/mips/generic/board-ocelot.c
12993
12994 MICROSEMI SMART ARRAY SMARTPQI DRIVER (smartpqi)
12995 M:      Don Brace <don.brace@microchip.com>
12996 L:      storagedev@microchip.com
12997 L:      linux-scsi@vger.kernel.org
12998 S:      Supported
12999 F:      Documentation/scsi/smartpqi.rst
13000 F:      drivers/scsi/smartpqi/Kconfig
13001 F:      drivers/scsi/smartpqi/Makefile
13002 F:      drivers/scsi/smartpqi/smartpqi*.[ch]
13003 F:      include/linux/cciss*.h
13004 F:      include/uapi/linux/cciss*.h
13005
13006 MICROSOFT SURFACE BATTERY AND AC DRIVERS
13007 M:      Maximilian Luz <luzmaximilian@gmail.com>
13008 L:      linux-pm@vger.kernel.org
13009 L:      platform-driver-x86@vger.kernel.org
13010 S:      Maintained
13011 F:      drivers/power/supply/surface_battery.c
13012 F:      drivers/power/supply/surface_charger.c
13013
13014 MICROSOFT SURFACE DTX DRIVER
13015 M:      Maximilian Luz <luzmaximilian@gmail.com>
13016 L:      platform-driver-x86@vger.kernel.org
13017 S:      Maintained
13018 F:      Documentation/driver-api/surface_aggregator/clients/dtx.rst
13019 F:      drivers/platform/surface/surface_dtx.c
13020 F:      include/uapi/linux/surface_aggregator/dtx.h
13021
13022 MICROSOFT SURFACE GPE LID SUPPORT DRIVER
13023 M:      Maximilian Luz <luzmaximilian@gmail.com>
13024 L:      platform-driver-x86@vger.kernel.org
13025 S:      Maintained
13026 F:      drivers/platform/surface/surface_gpe.c
13027
13028 MICROSOFT SURFACE HARDWARE PLATFORM SUPPORT
13029 M:      Hans de Goede <hdegoede@redhat.com>
13030 M:      Mark Gross <markgross@kernel.org>
13031 M:      Maximilian Luz <luzmaximilian@gmail.com>
13032 L:      platform-driver-x86@vger.kernel.org
13033 S:      Maintained
13034 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
13035 F:      drivers/platform/surface/
13036
13037 MICROSOFT SURFACE HID TRANSPORT DRIVER
13038 M:      Maximilian Luz <luzmaximilian@gmail.com>
13039 L:      linux-input@vger.kernel.org
13040 L:      platform-driver-x86@vger.kernel.org
13041 S:      Maintained
13042 F:      drivers/hid/surface-hid/
13043
13044 MICROSOFT SURFACE HOT-PLUG DRIVER
13045 M:      Maximilian Luz <luzmaximilian@gmail.com>
13046 L:      platform-driver-x86@vger.kernel.org
13047 S:      Maintained
13048 F:      drivers/platform/surface/surface_hotplug.c
13049
13050 MICROSOFT SURFACE PLATFORM PROFILE DRIVER
13051 M:      Maximilian Luz <luzmaximilian@gmail.com>
13052 L:      platform-driver-x86@vger.kernel.org
13053 S:      Maintained
13054 F:      drivers/platform/surface/surface_platform_profile.c
13055
13056 MICROSOFT SURFACE PRO 3 BUTTON DRIVER
13057 M:      Chen Yu <yu.c.chen@intel.com>
13058 L:      platform-driver-x86@vger.kernel.org
13059 S:      Supported
13060 F:      drivers/platform/surface/surfacepro3_button.c
13061
13062 MICROSOFT SURFACE SYSTEM AGGREGATOR SUBSYSTEM
13063 M:      Maximilian Luz <luzmaximilian@gmail.com>
13064 L:      platform-driver-x86@vger.kernel.org
13065 S:      Maintained
13066 W:      https://github.com/linux-surface/surface-aggregator-module
13067 C:      irc://irc.libera.chat/linux-surface
13068 F:      Documentation/driver-api/surface_aggregator/
13069 F:      drivers/platform/surface/aggregator/
13070 F:      drivers/platform/surface/surface_acpi_notify.c
13071 F:      drivers/platform/surface/surface_aggregator_cdev.c
13072 F:      drivers/platform/surface/surface_aggregator_registry.c
13073 F:      include/linux/surface_acpi_notify.h
13074 F:      include/linux/surface_aggregator/
13075 F:      include/uapi/linux/surface_aggregator/
13076
13077 MICROTEK X6 SCANNER
13078 M:      Oliver Neukum <oliver@neukum.org>
13079 S:      Maintained
13080 F:      drivers/usb/image/microtek.*
13081
13082 MIKROTIK CRS3XX 98DX3236 BOARD SUPPORT
13083 M:      Luka Kovacic <luka.kovacic@sartura.hr>
13084 M:      Luka Perkov <luka.perkov@sartura.hr>
13085 S:      Maintained
13086 F:      arch/arm/boot/dts/armada-xp-crs305-1g-4s-bit.dts
13087 F:      arch/arm/boot/dts/armada-xp-crs305-1g-4s.dts
13088 F:      arch/arm/boot/dts/armada-xp-crs326-24g-2s-bit.dts
13089 F:      arch/arm/boot/dts/armada-xp-crs326-24g-2s.dts
13090 F:      arch/arm/boot/dts/armada-xp-crs328-4c-20s-4s-bit.dts
13091 F:      arch/arm/boot/dts/armada-xp-crs328-4c-20s-4s.dts
13092
13093 MIPI CCS, SMIA AND SMIA++ IMAGE SENSOR DRIVER
13094 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
13095 L:      linux-media@vger.kernel.org
13096 S:      Maintained
13097 F:      Documentation/devicetree/bindings/media/i2c/mipi-ccs.yaml
13098 F:      Documentation/driver-api/media/drivers/ccs/
13099 F:      Documentation/userspace-api/media/drivers/ccs.rst
13100 F:      drivers/media/i2c/ccs-pll.c
13101 F:      drivers/media/i2c/ccs-pll.h
13102 F:      drivers/media/i2c/ccs/
13103 F:      include/uapi/linux/ccs.h
13104 F:      include/uapi/linux/smiapp.h
13105
13106 MIPS
13107 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
13108 L:      linux-mips@vger.kernel.org
13109 S:      Maintained
13110 W:      http://www.linux-mips.org/
13111 Q:      https://patchwork.kernel.org/project/linux-mips/list/
13112 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mips/linux.git
13113 F:      Documentation/devicetree/bindings/mips/
13114 F:      Documentation/mips/
13115 F:      arch/mips/
13116 F:      drivers/platform/mips/
13117
13118 MIPS BOSTON DEVELOPMENT BOARD
13119 M:      Paul Burton <paulburton@kernel.org>
13120 L:      linux-mips@vger.kernel.org
13121 S:      Maintained
13122 F:      Documentation/devicetree/bindings/clock/img,boston-clock.txt
13123 F:      arch/mips/boot/dts/img/boston.dts
13124 F:      arch/mips/configs/generic/board-boston.config
13125 F:      drivers/clk/imgtec/clk-boston.c
13126 F:      include/dt-bindings/clock/boston-clock.h
13127
13128 MIPS CORE DRIVERS
13129 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
13130 M:      Serge Semin <fancer.lancer@gmail.com>
13131 L:      linux-mips@vger.kernel.org
13132 S:      Supported
13133 F:      drivers/bus/mips_cdmm.c
13134 F:      drivers/clocksource/mips-gic-timer.c
13135 F:      drivers/cpuidle/cpuidle-cps.c
13136 F:      drivers/irqchip/irq-mips-cpu.c
13137 F:      drivers/irqchip/irq-mips-gic.c
13138
13139 MIPS GENERIC PLATFORM
13140 M:      Paul Burton <paulburton@kernel.org>
13141 L:      linux-mips@vger.kernel.org
13142 S:      Supported
13143 F:      Documentation/devicetree/bindings/power/mti,mips-cpc.yaml
13144 F:      arch/mips/generic/
13145 F:      arch/mips/tools/generic-board-config.sh
13146
13147 MIPS RINT INSTRUCTION EMULATION
13148 M:      Aleksandar Markovic <aleksandar.markovic@mips.com>
13149 L:      linux-mips@vger.kernel.org
13150 S:      Supported
13151 F:      arch/mips/math-emu/dp_rint.c
13152 F:      arch/mips/math-emu/sp_rint.c
13153
13154 MIPS/LOONGSON1 ARCHITECTURE
13155 M:      Keguang Zhang <keguang.zhang@gmail.com>
13156 L:      linux-mips@vger.kernel.org
13157 S:      Maintained
13158 F:      arch/mips/include/asm/mach-loongson32/
13159 F:      arch/mips/loongson32/
13160 F:      drivers/*/*/*loongson1*
13161 F:      drivers/*/*loongson1*
13162
13163 MIPS/LOONGSON2EF ARCHITECTURE
13164 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
13165 L:      linux-mips@vger.kernel.org
13166 S:      Maintained
13167 F:      arch/mips/include/asm/mach-loongson2ef/
13168 F:      arch/mips/loongson2ef/
13169 F:      drivers/cpufreq/loongson2_cpufreq.c
13170
13171 MIPS/LOONGSON64 ARCHITECTURE
13172 M:      Huacai Chen <chenhuacai@kernel.org>
13173 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
13174 L:      linux-mips@vger.kernel.org
13175 S:      Maintained
13176 F:      arch/mips/include/asm/mach-loongson64/
13177 F:      arch/mips/loongson64/
13178 F:      drivers/irqchip/irq-loongson*
13179 F:      drivers/platform/mips/cpu_hwmon.c
13180
13181 MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
13182 M:      Hans Verkuil <hverkuil@xs4all.nl>
13183 L:      linux-media@vger.kernel.org
13184 S:      Odd Fixes
13185 W:      https://linuxtv.org
13186 T:      git git://linuxtv.org/media_tree.git
13187 F:      drivers/media/radio/radio-miropcm20*
13188
13189 MMP SUPPORT
13190 R:      Lubomir Rintel <lkundrak@v3.sk>
13191 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13192 S:      Odd Fixes
13193 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lkundrak/linux-mmp.git
13194 F:      arch/arm/boot/dts/mmp*
13195 F:      arch/arm/mach-mmp/
13196 F:      include/linux/soc/mmp/
13197
13198 MMP USB PHY DRIVERS
13199 R:      Lubomir Rintel <lkundrak@v3.sk>
13200 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
13201 S:      Maintained
13202 F:      drivers/phy/marvell/phy-mmp3-usb.c
13203 F:      drivers/phy/marvell/phy-pxa-usb.c
13204
13205 MMU GATHER AND TLB INVALIDATION
13206 M:      Will Deacon <will@kernel.org>
13207 M:      "Aneesh Kumar K.V" <aneesh.kumar@linux.ibm.com>
13208 M:      Andrew Morton <akpm@linux-foundation.org>
13209 M:      Nick Piggin <npiggin@gmail.com>
13210 M:      Peter Zijlstra <peterz@infradead.org>
13211 L:      linux-arch@vger.kernel.org
13212 L:      linux-mm@kvack.org
13213 S:      Maintained
13214 F:      arch/*/include/asm/tlb.h
13215 F:      include/asm-generic/tlb.h
13216 F:      mm/mmu_gather.c
13217
13218 MN88472 MEDIA DRIVER
13219 M:      Antti Palosaari <crope@iki.fi>
13220 L:      linux-media@vger.kernel.org
13221 S:      Maintained
13222 W:      https://linuxtv.org
13223 W:      http://palosaari.fi/linux/
13224 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13225 F:      drivers/media/dvb-frontends/mn88472*
13226
13227 MN88473 MEDIA DRIVER
13228 M:      Antti Palosaari <crope@iki.fi>
13229 L:      linux-media@vger.kernel.org
13230 S:      Maintained
13231 W:      https://linuxtv.org
13232 W:      http://palosaari.fi/linux/
13233 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13234 F:      drivers/media/dvb-frontends/mn88473*
13235
13236 MODULE SUPPORT
13237 M:      Luis Chamberlain <mcgrof@kernel.org>
13238 L:      linux-modules@vger.kernel.org
13239 L:      linux-kernel@vger.kernel.org
13240 S:      Maintained
13241 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mcgrof/linux.git modules-next
13242 F:      include/linux/module.h
13243 F:      kernel/module.c
13244
13245 MONOLITHIC POWER SYSTEM PMIC DRIVER
13246 M:      Saravanan Sekar <sravanhome@gmail.com>
13247 S:      Maintained
13248 F:      Documentation/devicetree/bindings/mfd/mps,mp2629.yaml
13249 F:      Documentation/devicetree/bindings/regulator/mps,mp*.yaml
13250 F:      drivers/iio/adc/mp2629_adc.c
13251 F:      drivers/mfd/mp2629.c
13252 F:      drivers/power/supply/mp2629_charger.c
13253 F:      drivers/regulator/mp5416.c
13254 F:      drivers/regulator/mpq7920.c
13255 F:      drivers/regulator/mpq7920.h
13256 F:      include/linux/mfd/mp2629.h
13257
13258 MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
13259 S:      Orphan
13260 W:      http://popies.net/meye/
13261 F:      Documentation/userspace-api/media/drivers/meye*
13262 F:      drivers/media/pci/meye/
13263 F:      include/uapi/linux/meye.h
13264
13265 MOTORCOMM PHY DRIVER
13266 M:      Peter Geis <pgwipeout@gmail.com>
13267 L:      netdev@vger.kernel.org
13268 S:      Maintained
13269 F:      drivers/net/phy/motorcomm.c
13270
13271 MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
13272 M:      Jiri Slaby <jirislaby@kernel.org>
13273 S:      Maintained
13274 F:      Documentation/driver-api/serial/moxa-smartio.rst
13275 F:      drivers/tty/mxser.*
13276
13277 MR800 AVERMEDIA USB FM RADIO DRIVER
13278 M:      Alexey Klimov <klimov.linux@gmail.com>
13279 L:      linux-media@vger.kernel.org
13280 S:      Maintained
13281 T:      git git://linuxtv.org/media_tree.git
13282 F:      drivers/media/radio/radio-mr800.c
13283
13284 MRF24J40 IEEE 802.15.4 RADIO DRIVER
13285 M:      Alan Ott <alan@signal11.us>
13286 L:      linux-wpan@vger.kernel.org
13287 S:      Maintained
13288 F:      Documentation/devicetree/bindings/net/ieee802154/mrf24j40.txt
13289 F:      drivers/net/ieee802154/mrf24j40.c
13290
13291 MSI LAPTOP SUPPORT
13292 M:      "Lee, Chun-Yi" <jlee@suse.com>
13293 L:      platform-driver-x86@vger.kernel.org
13294 S:      Maintained
13295 F:      drivers/platform/x86/msi-laptop.c
13296
13297 MSI WMI SUPPORT
13298 L:      platform-driver-x86@vger.kernel.org
13299 S:      Orphan
13300 F:      drivers/platform/x86/msi-wmi.c
13301
13302 MSI001 MEDIA DRIVER
13303 M:      Antti Palosaari <crope@iki.fi>
13304 L:      linux-media@vger.kernel.org
13305 S:      Maintained
13306 W:      https://linuxtv.org
13307 W:      http://palosaari.fi/linux/
13308 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13309 T:      git git://linuxtv.org/anttip/media_tree.git
13310 F:      drivers/media/tuners/msi001*
13311
13312 MSI2500 MEDIA DRIVER
13313 M:      Antti Palosaari <crope@iki.fi>
13314 L:      linux-media@vger.kernel.org
13315 S:      Maintained
13316 W:      https://linuxtv.org
13317 W:      http://palosaari.fi/linux/
13318 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13319 T:      git git://linuxtv.org/anttip/media_tree.git
13320 F:      drivers/media/usb/msi2500/
13321
13322 MSTAR INTERRUPT CONTROLLER DRIVER
13323 M:      Mark-PK Tsai <mark-pk.tsai@mediatek.com>
13324 M:      Daniel Palmer <daniel@thingy.jp>
13325 S:      Maintained
13326 F:      Documentation/devicetree/bindings/interrupt-controller/mstar,mst-intc.yaml
13327 F:      drivers/irqchip/irq-mst-intc.c
13328
13329 MSYSTEMS DISKONCHIP G3 MTD DRIVER
13330 M:      Robert Jarzmik <robert.jarzmik@free.fr>
13331 L:      linux-mtd@lists.infradead.org
13332 S:      Maintained
13333 F:      drivers/mtd/devices/docg3*
13334
13335 MT9M032 APTINA SENSOR DRIVER
13336 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
13337 L:      linux-media@vger.kernel.org
13338 S:      Maintained
13339 T:      git git://linuxtv.org/media_tree.git
13340 F:      drivers/media/i2c/mt9m032.c
13341 F:      include/media/i2c/mt9m032.h
13342
13343 MT9P031 APTINA CAMERA SENSOR
13344 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
13345 L:      linux-media@vger.kernel.org
13346 S:      Maintained
13347 T:      git git://linuxtv.org/media_tree.git
13348 F:      Documentation/devicetree/bindings/media/i2c/aptina,mt9p031.yaml
13349 F:      drivers/media/i2c/mt9p031.c
13350 F:      include/media/i2c/mt9p031.h
13351
13352 MT9T001 APTINA CAMERA SENSOR
13353 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
13354 L:      linux-media@vger.kernel.org
13355 S:      Maintained
13356 T:      git git://linuxtv.org/media_tree.git
13357 F:      drivers/media/i2c/mt9t001.c
13358 F:      include/media/i2c/mt9t001.h
13359
13360 MT9T112 APTINA CAMERA SENSOR
13361 M:      Jacopo Mondi <jacopo@jmondi.org>
13362 L:      linux-media@vger.kernel.org
13363 S:      Odd Fixes
13364 T:      git git://linuxtv.org/media_tree.git
13365 F:      drivers/media/i2c/mt9t112.c
13366 F:      include/media/i2c/mt9t112.h
13367
13368 MT9V032 APTINA CAMERA SENSOR
13369 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
13370 L:      linux-media@vger.kernel.org
13371 S:      Maintained
13372 T:      git git://linuxtv.org/media_tree.git
13373 F:      Documentation/devicetree/bindings/media/i2c/mt9v032.txt
13374 F:      drivers/media/i2c/mt9v032.c
13375 F:      include/media/i2c/mt9v032.h
13376
13377 MT9V111 APTINA CAMERA SENSOR
13378 M:      Jacopo Mondi <jacopo@jmondi.org>
13379 L:      linux-media@vger.kernel.org
13380 S:      Maintained
13381 T:      git git://linuxtv.org/media_tree.git
13382 F:      Documentation/devicetree/bindings/media/i2c/aptina,mt9v111.yaml
13383 F:      drivers/media/i2c/mt9v111.c
13384
13385 MULTIFUNCTION DEVICES (MFD)
13386 M:      Lee Jones <lee.jones@linaro.org>
13387 S:      Supported
13388 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
13389 F:      Documentation/devicetree/bindings/mfd/
13390 F:      drivers/mfd/
13391 F:      include/dt-bindings/mfd/
13392 F:      include/linux/mfd/
13393
13394 MULTIMEDIA CARD (MMC) ETC. OVER SPI
13395 S:      Orphan
13396 F:      drivers/mmc/host/mmc_spi.c
13397 F:      include/linux/spi/mmc_spi.h
13398
13399 MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
13400 M:      Ulf Hansson <ulf.hansson@linaro.org>
13401 L:      linux-mmc@vger.kernel.org
13402 S:      Maintained
13403 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
13404 F:      Documentation/devicetree/bindings/mmc/
13405 F:      drivers/mmc/
13406 F:      include/linux/mmc/
13407 F:      include/uapi/linux/mmc/
13408
13409 MULTIPLEXER SUBSYSTEM
13410 M:      Peter Rosin <peda@axentia.se>
13411 S:      Maintained
13412 F:      Documentation/ABI/testing/sysfs-class-mux*
13413 F:      Documentation/devicetree/bindings/mux/
13414 F:      drivers/mux/
13415 F:      include/dt-bindings/mux/
13416 F:      include/linux/mux/
13417
13418 MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
13419 M:      Bin Liu <b-liu@ti.com>
13420 L:      linux-usb@vger.kernel.org
13421 S:      Maintained
13422 F:      drivers/usb/musb/
13423
13424 MXL301RF MEDIA DRIVER
13425 M:      Akihiro Tsukada <tskd08@gmail.com>
13426 L:      linux-media@vger.kernel.org
13427 S:      Odd Fixes
13428 F:      drivers/media/tuners/mxl301rf*
13429
13430 MXL5007T MEDIA DRIVER
13431 M:      Michael Krufky <mkrufky@linuxtv.org>
13432 L:      linux-media@vger.kernel.org
13433 S:      Maintained
13434 W:      https://linuxtv.org
13435 W:      http://github.com/mkrufky
13436 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
13437 T:      git git://linuxtv.org/mkrufky/tuners.git
13438 F:      drivers/media/tuners/mxl5007t.*
13439
13440 MXSFB DRM DRIVER
13441 M:      Marek Vasut <marex@denx.de>
13442 M:      Stefan Agner <stefan@agner.ch>
13443 L:      dri-devel@lists.freedesktop.org
13444 S:      Supported
13445 T:      git git://anongit.freedesktop.org/drm/drm-misc
13446 F:      Documentation/devicetree/bindings/display/fsl,lcdif.yaml
13447 F:      drivers/gpu/drm/mxsfb/
13448
13449 MYLEX DAC960 PCI RAID Controller
13450 M:      Hannes Reinecke <hare@kernel.org>
13451 L:      linux-scsi@vger.kernel.org
13452 S:      Supported
13453 F:      drivers/scsi/myrb.*
13454 F:      drivers/scsi/myrs.*
13455
13456 MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
13457 M:      Chris Lee <christopher.lee@cspi.com>
13458 L:      netdev@vger.kernel.org
13459 S:      Supported
13460 W:      https://www.cspi.com/ethernet-products/support/downloads/
13461 F:      drivers/net/ethernet/myricom/myri10ge/
13462
13463 NAND FLASH SUBSYSTEM
13464 M:      Miquel Raynal <miquel.raynal@bootlin.com>
13465 R:      Richard Weinberger <richard@nod.at>
13466 L:      linux-mtd@lists.infradead.org
13467 S:      Maintained
13468 W:      http://www.linux-mtd.infradead.org/
13469 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
13470 C:      irc://irc.oftc.net/mtd
13471 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git nand/next
13472 F:      drivers/mtd/nand/
13473 F:      include/linux/mtd/*nand*.h
13474
13475 NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
13476 M:      Daniel Mack <zonque@gmail.com>
13477 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
13478 S:      Maintained
13479 W:      http://www.native-instruments.com
13480 F:      sound/usb/caiaq/
13481
13482 NATSEMI ETHERNET DRIVER (DP8381x)
13483 S:      Orphan
13484 F:      drivers/net/ethernet/natsemi/natsemi.c
13485
13486 NCR 5380 SCSI DRIVERS
13487 M:      Finn Thain <fthain@linux-m68k.org>
13488 M:      Michael Schmitz <schmitzmic@gmail.com>
13489 L:      linux-scsi@vger.kernel.org
13490 S:      Maintained
13491 F:      Documentation/scsi/g_NCR5380.rst
13492 F:      drivers/scsi/NCR5380.*
13493 F:      drivers/scsi/arm/cumana_1.c
13494 F:      drivers/scsi/arm/oak.c
13495 F:      drivers/scsi/atari_scsi.*
13496 F:      drivers/scsi/dmx3191d.c
13497 F:      drivers/scsi/g_NCR5380.*
13498 F:      drivers/scsi/mac_scsi.*
13499 F:      drivers/scsi/sun3_scsi.*
13500 F:      drivers/scsi/sun3_scsi_vme.c
13501
13502 NCSI LIBRARY
13503 M:      Samuel Mendoza-Jonas <sam@mendozajonas.com>
13504 S:      Maintained
13505 F:      net/ncsi/
13506
13507 NCT6775 HARDWARE MONITOR DRIVER
13508 M:      Guenter Roeck <linux@roeck-us.net>
13509 L:      linux-hwmon@vger.kernel.org
13510 S:      Maintained
13511 F:      Documentation/hwmon/nct6775.rst
13512 F:      drivers/hwmon/nct6775.c
13513
13514 NETDEVSIM
13515 M:      Jakub Kicinski <kuba@kernel.org>
13516 S:      Maintained
13517 F:      drivers/net/netdevsim/*
13518
13519 NETEM NETWORK EMULATOR
13520 M:      Stephen Hemminger <stephen@networkplumber.org>
13521 L:      netdev@vger.kernel.org
13522 S:      Maintained
13523 F:      net/sched/sch_netem.c
13524
13525 NETERION 10GbE DRIVERS (s2io/vxge)
13526 M:      Jon Mason <jdmason@kudzu.us>
13527 L:      netdev@vger.kernel.org
13528 S:      Supported
13529 F:      Documentation/networking/device_drivers/ethernet/neterion/s2io.rst
13530 F:      Documentation/networking/device_drivers/ethernet/neterion/vxge.rst
13531 F:      drivers/net/ethernet/neterion/
13532
13533 NETFILTER
13534 M:      Pablo Neira Ayuso <pablo@netfilter.org>
13535 M:      Jozsef Kadlecsik <kadlec@netfilter.org>
13536 M:      Florian Westphal <fw@strlen.de>
13537 L:      netfilter-devel@vger.kernel.org
13538 L:      coreteam@netfilter.org
13539 S:      Maintained
13540 W:      http://www.netfilter.org/
13541 W:      http://www.iptables.org/
13542 W:      http://www.nftables.org/
13543 Q:      http://patchwork.ozlabs.org/project/netfilter-devel/list/
13544 C:      irc://irc.libera.chat/netfilter
13545 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netfilter/nf.git
13546 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netfilter/nf-next.git
13547 F:      include/linux/netfilter*
13548 F:      include/linux/netfilter/
13549 F:      include/net/netfilter/
13550 F:      include/uapi/linux/netfilter*
13551 F:      include/uapi/linux/netfilter/
13552 F:      net/*/netfilter.c
13553 F:      net/*/netfilter/
13554 F:      net/bridge/br_netfilter*.c
13555 F:      net/netfilter/
13556
13557 NETROM NETWORK LAYER
13558 M:      Ralf Baechle <ralf@linux-mips.org>
13559 L:      linux-hams@vger.kernel.org
13560 S:      Maintained
13561 W:      http://www.linux-ax25.org/
13562 F:      include/net/netrom.h
13563 F:      include/uapi/linux/netrom.h
13564 F:      net/netrom/
13565
13566 NETRONIX EMBEDDED CONTROLLER
13567 M:      Jonathan Neuschäfer <j.neuschaefer@gmx.net>
13568 S:      Maintained
13569 F:      Documentation/devicetree/bindings/mfd/netronix,ntxec.yaml
13570 F:      drivers/mfd/ntxec.c
13571 F:      drivers/pwm/pwm-ntxec.c
13572 F:      drivers/rtc/rtc-ntxec.c
13573 F:      include/linux/mfd/ntxec.h
13574
13575 NETRONOME ETHERNET DRIVERS
13576 M:      Simon Horman <simon.horman@corigine.com>
13577 R:      Jakub Kicinski <kuba@kernel.org>
13578 L:      oss-drivers@corigine.com
13579 S:      Maintained
13580 F:      drivers/net/ethernet/netronome/
13581
13582 NETWORK BLOCK DEVICE (NBD)
13583 M:      Josef Bacik <josef@toxicpanda.com>
13584 L:      linux-block@vger.kernel.org
13585 L:      nbd@other.debian.org
13586 S:      Maintained
13587 F:      Documentation/admin-guide/blockdev/nbd.rst
13588 F:      drivers/block/nbd.c
13589 F:      include/trace/events/nbd.h
13590 F:      include/uapi/linux/nbd.h
13591
13592 NETWORK DROP MONITOR
13593 M:      Neil Horman <nhorman@tuxdriver.com>
13594 L:      netdev@vger.kernel.org
13595 S:      Maintained
13596 W:      https://fedorahosted.org/dropwatch/
13597 F:      include/uapi/linux/net_dropmon.h
13598 F:      net/core/drop_monitor.c
13599
13600 NETWORKING DRIVERS
13601 M:      "David S. Miller" <davem@davemloft.net>
13602 M:      Jakub Kicinski <kuba@kernel.org>
13603 M:      Paolo Abeni <pabeni@redhat.com>
13604 L:      netdev@vger.kernel.org
13605 S:      Maintained
13606 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
13607 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
13608 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
13609 F:      Documentation/devicetree/bindings/net/
13610 F:      drivers/connector/
13611 F:      drivers/net/
13612 F:      include/linux/etherdevice.h
13613 F:      include/linux/fcdevice.h
13614 F:      include/linux/fddidevice.h
13615 F:      include/linux/hippidevice.h
13616 F:      include/linux/if_*
13617 F:      include/linux/inetdevice.h
13618 F:      include/linux/netdevice.h
13619 F:      include/uapi/linux/if_*
13620 F:      include/uapi/linux/netdevice.h
13621
13622 NETWORKING DRIVERS (WIRELESS)
13623 M:      Kalle Valo <kvalo@kernel.org>
13624 L:      linux-wireless@vger.kernel.org
13625 S:      Maintained
13626 W:      https://wireless.wiki.kernel.org/
13627 Q:      https://patchwork.kernel.org/project/linux-wireless/list/
13628 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless.git
13629 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless-next.git
13630 F:      Documentation/devicetree/bindings/net/wireless/
13631 F:      drivers/net/wireless/
13632
13633 NETWORKING [DSA]
13634 M:      Andrew Lunn <andrew@lunn.ch>
13635 M:      Vivien Didelot <vivien.didelot@gmail.com>
13636 M:      Florian Fainelli <f.fainelli@gmail.com>
13637 M:      Vladimir Oltean <olteanv@gmail.com>
13638 S:      Maintained
13639 F:      Documentation/devicetree/bindings/net/dsa/
13640 F:      drivers/net/dsa/
13641 F:      include/linux/dsa/
13642 F:      include/linux/platform_data/dsa.h
13643 F:      include/net/dsa.h
13644 F:      net/dsa/
13645 F:      tools/testing/selftests/drivers/net/dsa/
13646
13647 NETWORKING [GENERAL]
13648 M:      "David S. Miller" <davem@davemloft.net>
13649 M:      Jakub Kicinski <kuba@kernel.org>
13650 M:      Paolo Abeni <pabeni@redhat.com>
13651 L:      netdev@vger.kernel.org
13652 S:      Maintained
13653 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
13654 B:      mailto:netdev@vger.kernel.org
13655 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
13656 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
13657 F:      Documentation/networking/
13658 F:      include/linux/in.h
13659 F:      include/linux/net.h
13660 F:      include/linux/netdevice.h
13661 F:      include/net/
13662 F:      include/uapi/linux/in.h
13663 F:      include/uapi/linux/net.h
13664 F:      include/uapi/linux/net_namespace.h
13665 F:      include/uapi/linux/netdevice.h
13666 F:      lib/net_utils.c
13667 F:      lib/random32.c
13668 F:      net/
13669 F:      tools/testing/selftests/net/
13670
13671 NETWORKING [IPSEC]
13672 M:      Steffen Klassert <steffen.klassert@secunet.com>
13673 M:      Herbert Xu <herbert@gondor.apana.org.au>
13674 M:      "David S. Miller" <davem@davemloft.net>
13675 L:      netdev@vger.kernel.org
13676 S:      Maintained
13677 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git
13678 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git
13679 F:      include/net/xfrm.h
13680 F:      include/uapi/linux/xfrm.h
13681 F:      net/ipv4/ah4.c
13682 F:      net/ipv4/esp4*
13683 F:      net/ipv4/ip_vti.c
13684 F:      net/ipv4/ipcomp.c
13685 F:      net/ipv4/xfrm*
13686 F:      net/ipv6/ah6.c
13687 F:      net/ipv6/esp6*
13688 F:      net/ipv6/ip6_vti.c
13689 F:      net/ipv6/ipcomp6.c
13690 F:      net/ipv6/xfrm*
13691 F:      net/key/
13692 F:      net/xfrm/
13693 F:      tools/testing/selftests/net/ipsec.c
13694
13695 NETWORKING [IPv4/IPv6]
13696 M:      "David S. Miller" <davem@davemloft.net>
13697 M:      Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
13698 M:      David Ahern <dsahern@kernel.org>
13699 L:      netdev@vger.kernel.org
13700 S:      Maintained
13701 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
13702 F:      arch/x86/net/*
13703 F:      include/linux/ip.h
13704 F:      include/linux/ipv6*
13705 F:      include/net/fib*
13706 F:      include/net/ip*
13707 F:      include/net/route.h
13708 F:      net/ipv4/
13709 F:      net/ipv6/
13710
13711 NETWORKING [LABELED] (NetLabel, Labeled IPsec, SECMARK)
13712 M:      Paul Moore <paul@paul-moore.com>
13713 L:      netdev@vger.kernel.org
13714 L:      linux-security-module@vger.kernel.org
13715 S:      Maintained
13716 W:      https://github.com/netlabel
13717 F:      Documentation/netlabel/
13718 F:      include/net/calipso.h
13719 F:      include/net/cipso_ipv4.h
13720 F:      include/net/netlabel.h
13721 F:      include/uapi/linux/netfilter/xt_CONNSECMARK.h
13722 F:      include/uapi/linux/netfilter/xt_SECMARK.h
13723 F:      net/ipv4/cipso_ipv4.c
13724 F:      net/ipv6/calipso.c
13725 F:      net/netfilter/xt_CONNSECMARK.c
13726 F:      net/netfilter/xt_SECMARK.c
13727 F:      net/netlabel/
13728
13729 NETWORKING [MPTCP]
13730 M:      Mat Martineau <mathew.j.martineau@linux.intel.com>
13731 M:      Matthieu Baerts <matthieu.baerts@tessares.net>
13732 L:      netdev@vger.kernel.org
13733 L:      mptcp@lists.linux.dev
13734 S:      Maintained
13735 W:      https://github.com/multipath-tcp/mptcp_net-next/wiki
13736 B:      https://github.com/multipath-tcp/mptcp_net-next/issues
13737 F:      Documentation/networking/mptcp-sysctl.rst
13738 F:      include/net/mptcp.h
13739 F:      include/trace/events/mptcp.h
13740 F:      include/uapi/linux/mptcp.h
13741 F:      net/mptcp/
13742 F:      tools/testing/selftests/net/mptcp/
13743
13744 NETWORKING [TCP]
13745 M:      Eric Dumazet <edumazet@google.com>
13746 L:      netdev@vger.kernel.org
13747 S:      Maintained
13748 F:      include/linux/tcp.h
13749 F:      include/net/tcp.h
13750 F:      include/trace/events/tcp.h
13751 F:      include/uapi/linux/tcp.h
13752 F:      net/ipv4/syncookies.c
13753 F:      net/ipv4/tcp*.c
13754 F:      net/ipv6/syncookies.c
13755 F:      net/ipv6/tcp*.c
13756
13757 NETWORKING [TLS]
13758 M:      Boris Pismenny <borisp@nvidia.com>
13759 M:      John Fastabend <john.fastabend@gmail.com>
13760 M:      Daniel Borkmann <daniel@iogearbox.net>
13761 M:      Jakub Kicinski <kuba@kernel.org>
13762 L:      netdev@vger.kernel.org
13763 S:      Maintained
13764 F:      include/net/tls.h
13765 F:      include/uapi/linux/tls.h
13766 F:      net/tls/*
13767
13768 NETXEN (1/10) GbE SUPPORT
13769 M:      Manish Chopra <manishc@marvell.com>
13770 M:      Rahul Verma <rahulv@marvell.com>
13771 M:      GR-Linux-NIC-Dev@marvell.com
13772 L:      netdev@vger.kernel.org
13773 S:      Supported
13774 F:      drivers/net/ethernet/qlogic/netxen/
13775
13776 NET_FAILOVER MODULE
13777 M:      Sridhar Samudrala <sridhar.samudrala@intel.com>
13778 L:      netdev@vger.kernel.org
13779 S:      Supported
13780 F:      Documentation/networking/net_failover.rst
13781 F:      drivers/net/net_failover.c
13782 F:      include/net/net_failover.h
13783
13784 NEXTHOP
13785 M:      David Ahern <dsahern@kernel.org>
13786 L:      netdev@vger.kernel.org
13787 S:      Maintained
13788 F:      include/net/netns/nexthop.h
13789 F:      include/net/nexthop.h
13790 F:      include/uapi/linux/nexthop.h
13791 F:      net/ipv4/nexthop.c
13792
13793 NFC SUBSYSTEM
13794 M:      Krzysztof Kozlowski <krzk@kernel.org>
13795 L:      linux-nfc@lists.01.org (subscribers-only)
13796 L:      netdev@vger.kernel.org
13797 S:      Maintained
13798 F:      Documentation/devicetree/bindings/net/nfc/
13799 F:      drivers/nfc/
13800 F:      include/linux/platform_data/nfcmrvl.h
13801 F:      include/net/nfc/
13802 F:      include/uapi/linux/nfc.h
13803 F:      net/nfc/
13804
13805 NFC VIRTUAL NCI DEVICE DRIVER
13806 M:      Bongsu Jeon <bongsu.jeon@samsung.com>
13807 L:      netdev@vger.kernel.org
13808 L:      linux-nfc@lists.01.org (subscribers-only)
13809 S:      Supported
13810 F:      drivers/nfc/virtual_ncidev.c
13811 F:      tools/testing/selftests/nci/
13812
13813 NFS, SUNRPC, AND LOCKD CLIENTS
13814 M:      Trond Myklebust <trond.myklebust@hammerspace.com>
13815 M:      Anna Schumaker <anna@kernel.org>
13816 L:      linux-nfs@vger.kernel.org
13817 S:      Maintained
13818 W:      http://client.linux-nfs.org
13819 T:      git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git
13820 F:      fs/lockd/
13821 F:      fs/nfs/
13822 F:      fs/nfs_common/
13823 F:      include/linux/lockd/
13824 F:      include/linux/nfs*
13825 F:      include/linux/sunrpc/
13826 F:      include/uapi/linux/nfs*
13827 F:      include/uapi/linux/sunrpc/
13828 F:      net/sunrpc/
13829 F:      Documentation/filesystems/nfs/
13830
13831 NILFS2 FILESYSTEM
13832 M:      Ryusuke Konishi <konishi.ryusuke@gmail.com>
13833 L:      linux-nilfs@vger.kernel.org
13834 S:      Supported
13835 W:      https://nilfs.sourceforge.io/
13836 W:      https://nilfs.osdn.jp/
13837 T:      git git://github.com/konis/nilfs2.git
13838 F:      Documentation/filesystems/nilfs2.rst
13839 F:      fs/nilfs2/
13840 F:      include/trace/events/nilfs2.h
13841 F:      include/uapi/linux/nilfs2_api.h
13842 F:      include/uapi/linux/nilfs2_ondisk.h
13843
13844 NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
13845 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
13846 S:      Maintained
13847 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
13848 F:      Documentation/scsi/NinjaSCSI.rst
13849 F:      drivers/scsi/pcmcia/nsp_*
13850
13851 NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
13852 M:      GOTO Masanori <gotom@debian.or.jp>
13853 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
13854 S:      Maintained
13855 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
13856 F:      Documentation/scsi/NinjaSCSI.rst
13857 F:      drivers/scsi/nsp32*
13858
13859 NINTENDO HID DRIVER
13860 M:      Daniel J. Ogorchock <djogorchock@gmail.com>
13861 L:      linux-input@vger.kernel.org
13862 S:      Maintained
13863 F:      drivers/hid/hid-nintendo*
13864
13865 NIOS2 ARCHITECTURE
13866 M:      Dinh Nguyen <dinguyen@kernel.org>
13867 S:      Maintained
13868 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
13869 F:      arch/nios2/
13870
13871 NITRO ENCLAVES (NE)
13872 M:      Andra Paraschiv <andraprs@amazon.com>
13873 M:      Alexandru Vasile <lexnv@amazon.com>
13874 M:      Alexandru Ciobotaru <alcioa@amazon.com>
13875 L:      linux-kernel@vger.kernel.org
13876 S:      Supported
13877 W:      https://aws.amazon.com/ec2/nitro/nitro-enclaves/
13878 F:      Documentation/virt/ne_overview.rst
13879 F:      drivers/virt/nitro_enclaves/
13880 F:      include/linux/nitro_enclaves.h
13881 F:      include/uapi/linux/nitro_enclaves.h
13882 F:      samples/nitro_enclaves/
13883
13884 NOHZ, DYNTICKS SUPPORT
13885 M:      Frederic Weisbecker <fweisbec@gmail.com>
13886 M:      Thomas Gleixner <tglx@linutronix.de>
13887 M:      Ingo Molnar <mingo@kernel.org>
13888 L:      linux-kernel@vger.kernel.org
13889 S:      Maintained
13890 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/nohz
13891 F:      include/linux/sched/nohz.h
13892 F:      include/linux/tick.h
13893 F:      kernel/time/tick*.*
13894
13895 NOKIA N900 CAMERA SUPPORT (ET8EK8 SENSOR, AD5820 FOCUS)
13896 M:      Pavel Machek <pavel@ucw.cz>
13897 M:      Sakari Ailus <sakari.ailus@iki.fi>
13898 L:      linux-media@vger.kernel.org
13899 S:      Maintained
13900 F:      drivers/media/i2c/ad5820.c
13901 F:      drivers/media/i2c/et8ek8
13902
13903 NOKIA N900 POWER SUPPLY DRIVERS
13904 R:      Pali Rohár <pali@kernel.org>
13905 F:      drivers/power/supply/bq2415x_charger.c
13906 F:      drivers/power/supply/bq27xxx_battery.c
13907 F:      drivers/power/supply/bq27xxx_battery_i2c.c
13908 F:      drivers/power/supply/isp1704_charger.c
13909 F:      drivers/power/supply/rx51_battery.c
13910 F:      include/linux/power/bq2415x_charger.h
13911 F:      include/linux/power/bq27xxx_battery.h
13912
13913 NOLIBC HEADER FILE
13914 M:      Willy Tarreau <w@1wt.eu>
13915 S:      Maintained
13916 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wtarreau/nolibc.git
13917 F:      tools/include/nolibc/
13918
13919 NSDEPS
13920 M:      Matthias Maennich <maennich@google.com>
13921 S:      Maintained
13922 F:      Documentation/core-api/symbol-namespaces.rst
13923 F:      scripts/nsdeps
13924
13925 NTB AMD DRIVER
13926 M:      Sanjay R Mehta <sanju.mehta@amd.com>
13927 M:      Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
13928 L:      ntb@lists.linux.dev
13929 S:      Supported
13930 F:      drivers/ntb/hw/amd/
13931
13932 NTB DRIVER CORE
13933 M:      Jon Mason <jdmason@kudzu.us>
13934 M:      Dave Jiang <dave.jiang@intel.com>
13935 M:      Allen Hubbe <allenbh@gmail.com>
13936 L:      ntb@lists.linux.dev
13937 S:      Supported
13938 W:      https://github.com/jonmason/ntb/wiki
13939 T:      git git://github.com/jonmason/ntb.git
13940 F:      drivers/net/ntb_netdev.c
13941 F:      drivers/ntb/
13942 F:      include/linux/ntb.h
13943 F:      include/linux/ntb_transport.h
13944 F:      tools/testing/selftests/ntb/
13945
13946 NTB IDT DRIVER
13947 M:      Serge Semin <fancer.lancer@gmail.com>
13948 L:      ntb@lists.linux.dev
13949 S:      Supported
13950 F:      drivers/ntb/hw/idt/
13951
13952 NTB INTEL DRIVER
13953 M:      Dave Jiang <dave.jiang@intel.com>
13954 L:      ntb@lists.linux.dev
13955 S:      Supported
13956 W:      https://github.com/davejiang/linux/wiki
13957 T:      git https://github.com/davejiang/linux.git
13958 F:      drivers/ntb/hw/intel/
13959
13960 NTFS FILESYSTEM
13961 M:      Anton Altaparmakov <anton@tuxera.com>
13962 L:      linux-ntfs-dev@lists.sourceforge.net
13963 S:      Supported
13964 W:      http://www.tuxera.com/
13965 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
13966 F:      Documentation/filesystems/ntfs.rst
13967 F:      fs/ntfs/
13968
13969 NTFS3 FILESYSTEM
13970 M:      Konstantin Komarov <almaz.alexandrovich@paragon-software.com>
13971 L:      ntfs3@lists.linux.dev
13972 S:      Supported
13973 W:      http://www.paragon-software.com/
13974 T:      git https://github.com/Paragon-Software-Group/linux-ntfs3.git
13975 F:      Documentation/filesystems/ntfs3.rst
13976 F:      fs/ntfs3/
13977
13978 NUBUS SUBSYSTEM
13979 M:      Finn Thain <fthain@linux-m68k.org>
13980 L:      linux-m68k@lists.linux-m68k.org
13981 S:      Maintained
13982 F:      arch/*/include/asm/nubus.h
13983 F:      drivers/nubus/
13984 F:      include/linux/nubus.h
13985 F:      include/uapi/linux/nubus.h
13986
13987 NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
13988 M:      Antonino Daplas <adaplas@gmail.com>
13989 L:      linux-fbdev@vger.kernel.org
13990 S:      Maintained
13991 F:      drivers/video/fbdev/nvidia/
13992 F:      drivers/video/fbdev/riva/
13993
13994 NVIDIA WMI EC BACKLIGHT DRIVER
13995 M:      Daniel Dadap <ddadap@nvidia.com>
13996 L:      platform-driver-x86@vger.kernel.org
13997 S:      Supported
13998 F:      drivers/platform/x86/nvidia-wmi-ec-backlight.c
13999
14000 NVM EXPRESS DRIVER
14001 M:      Keith Busch <kbusch@kernel.org>
14002 M:      Jens Axboe <axboe@fb.com>
14003 M:      Christoph Hellwig <hch@lst.de>
14004 M:      Sagi Grimberg <sagi@grimberg.me>
14005 L:      linux-nvme@lists.infradead.org
14006 S:      Supported
14007 W:      http://git.infradead.org/nvme.git
14008 T:      git://git.infradead.org/nvme.git
14009 F:      drivers/nvme/host/
14010 F:      include/linux/nvme.h
14011 F:      include/uapi/linux/nvme_ioctl.h
14012
14013 NVM EXPRESS FC TRANSPORT DRIVERS
14014 M:      James Smart <james.smart@broadcom.com>
14015 L:      linux-nvme@lists.infradead.org
14016 S:      Supported
14017 F:      drivers/nvme/host/fc.c
14018 F:      drivers/nvme/target/fc.c
14019 F:      drivers/nvme/target/fcloop.c
14020 F:      include/linux/nvme-fc-driver.h
14021 F:      include/linux/nvme-fc.h
14022
14023 NVM EXPRESS TARGET DRIVER
14024 M:      Christoph Hellwig <hch@lst.de>
14025 M:      Sagi Grimberg <sagi@grimberg.me>
14026 M:      Chaitanya Kulkarni <kch@nvidia.com>
14027 L:      linux-nvme@lists.infradead.org
14028 S:      Supported
14029 W:      http://git.infradead.org/nvme.git
14030 T:      git://git.infradead.org/nvme.git
14031 F:      drivers/nvme/target/
14032
14033 NVMEM FRAMEWORK
14034 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
14035 S:      Maintained
14036 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/srini/nvmem.git
14037 F:      Documentation/ABI/stable/sysfs-bus-nvmem
14038 F:      Documentation/devicetree/bindings/nvmem/
14039 F:      drivers/nvmem/
14040 F:      include/linux/nvmem-consumer.h
14041 F:      include/linux/nvmem-provider.h
14042
14043 NXP C45 TJA11XX PHY DRIVER
14044 M:      Radu Pirea <radu-nicolae.pirea@oss.nxp.com>
14045 L:      netdev@vger.kernel.org
14046 S:      Maintained
14047 F:      drivers/net/phy/nxp-c45-tja11xx.c
14048
14049 NXP FSPI DRIVER
14050 M:      Ashish Kumar <ashish.kumar@nxp.com>
14051 R:      Yogesh Gaur <yogeshgaur.83@gmail.com>
14052 L:      linux-spi@vger.kernel.org
14053 S:      Maintained
14054 F:      Documentation/devicetree/bindings/spi/spi-nxp-fspi.yaml
14055 F:      drivers/spi/spi-nxp-fspi.c
14056
14057 NXP FXAS21002C DRIVER
14058 M:      Rui Miguel Silva <rmfrfs@gmail.com>
14059 L:      linux-iio@vger.kernel.org
14060 S:      Maintained
14061 F:      Documentation/devicetree/bindings/iio/gyroscope/nxp,fxas21002c.yaml
14062 F:      drivers/iio/gyro/fxas21002c.h
14063 F:      drivers/iio/gyro/fxas21002c_core.c
14064 F:      drivers/iio/gyro/fxas21002c_i2c.c
14065 F:      drivers/iio/gyro/fxas21002c_spi.c
14066
14067 NXP i.MX CLOCK DRIVERS
14068 M:      Abel Vesa <abel.vesa@nxp.com>
14069 L:      linux-clk@vger.kernel.org
14070 L:      linux-imx@nxp.com
14071 S:      Maintained
14072 F:      drivers/clk/imx/
14073
14074 NXP i.MX 8MQ DCSS DRIVER
14075 M:      Laurentiu Palcu <laurentiu.palcu@oss.nxp.com>
14076 R:      Lucas Stach <l.stach@pengutronix.de>
14077 L:      dri-devel@lists.freedesktop.org
14078 S:      Maintained
14079 F:      Documentation/devicetree/bindings/display/imx/nxp,imx8mq-dcss.yaml
14080 F:      drivers/gpu/drm/imx/dcss/
14081
14082 NXP i.MX 8QXP ADC DRIVER
14083 M:      Cai Huoqing <cai.huoqing@linux.dev>
14084 M:      Haibo Chen <haibo.chen@nxp.com>
14085 L:      linux-imx@nxp.com
14086 L:      linux-iio@vger.kernel.org
14087 S:      Maintained
14088 F:      Documentation/devicetree/bindings/iio/adc/nxp,imx8qxp-adc.yaml
14089 F:      drivers/iio/adc/imx8qxp-adc.c
14090
14091 NXP i.MX 7D/6SX/6UL AND VF610 ADC DRIVER
14092 M:      Haibo Chen <haibo.chen@nxp.com>
14093 L:      linux-iio@vger.kernel.org
14094 L:      linux-imx@nxp.com
14095 S:      Maintained
14096 F:      Documentation/devicetree/bindings/iio/adc/fsl,imx7d-adc.yaml
14097 F:      Documentation/devicetree/bindings/iio/adc/fsl,vf610-adc.yaml
14098 F:      drivers/iio/adc/imx7d_adc.c
14099 F:      drivers/iio/adc/vf610_adc.c
14100
14101 NXP PF8100/PF8121A/PF8200 PMIC REGULATOR DEVICE DRIVER
14102 M:      Jagan Teki <jagan@amarulasolutions.com>
14103 S:      Maintained
14104 F:      Documentation/devicetree/bindings/regulator/nxp,pf8x00-regulator.yaml
14105 F:      drivers/regulator/pf8x00-regulator.c
14106
14107 NXP PTN5150A CC LOGIC AND EXTCON DRIVER
14108 M:      Krzysztof Kozlowski <krzk@kernel.org>
14109 L:      linux-kernel@vger.kernel.org
14110 S:      Maintained
14111 F:      Documentation/devicetree/bindings/extcon/extcon-ptn5150.yaml
14112 F:      drivers/extcon/extcon-ptn5150.c
14113
14114 NXP SGTL5000 DRIVER
14115 M:      Fabio Estevam <festevam@gmail.com>
14116 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
14117 S:      Maintained
14118 F:      Documentation/devicetree/bindings/sound/sgtl5000.yaml
14119 F:      sound/soc/codecs/sgtl5000*
14120
14121 NXP SJA1105 ETHERNET SWITCH DRIVER
14122 M:      Vladimir Oltean <olteanv@gmail.com>
14123 L:      linux-kernel@vger.kernel.org
14124 S:      Maintained
14125 F:      drivers/net/dsa/sja1105
14126 F:      drivers/net/pcs/pcs-xpcs-nxp.c
14127
14128 NXP TDA998X DRM DRIVER
14129 M:      Russell King <linux@armlinux.org.uk>
14130 S:      Maintained
14131 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-devel
14132 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-fixes
14133 F:      drivers/gpu/drm/i2c/tda998x_drv.c
14134 F:      include/drm/i2c/tda998x.h
14135 F:      include/dt-bindings/display/tda998x.h
14136 K:      "nxp,tda998x"
14137
14138 NXP TFA9879 DRIVER
14139 M:      Peter Rosin <peda@axentia.se>
14140 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
14141 S:      Maintained
14142 F:      Documentation/devicetree/bindings/sound/tfa9879.txt
14143 F:      sound/soc/codecs/tfa9879*
14144
14145 NXP/Goodix TFA989X (TFA1) DRIVER
14146 M:      Stephan Gerhold <stephan@gerhold.net>
14147 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
14148 S:      Maintained
14149 F:      Documentation/devicetree/bindings/sound/nxp,tfa989x.yaml
14150 F:      sound/soc/codecs/tfa989x.c
14151
14152 NXP-NCI NFC DRIVER
14153 R:      Charles Gorand <charles.gorand@effinnov.com>
14154 L:      linux-nfc@lists.01.org (subscribers-only)
14155 S:      Supported
14156 F:      Documentation/devicetree/bindings/net/nfc/nxp,nci.yaml
14157 F:      drivers/nfc/nxp-nci
14158
14159 NXP i.MX 8QXP/8QM JPEG V4L2 DRIVER
14160 M:      Mirela Rabulea <mirela.rabulea@nxp.com>
14161 R:      NXP Linux Team <linux-imx@nxp.com>
14162 L:      linux-media@vger.kernel.org
14163 S:      Maintained
14164 F:      Documentation/devicetree/bindings/media/nxp,imx8-jpeg.yaml
14165 F:      drivers/media/platform/imx-jpeg
14166
14167 NZXT-KRAKEN2 HARDWARE MONITORING DRIVER
14168 M:      Jonas Malaco <jonas@protocubo.io>
14169 L:      linux-hwmon@vger.kernel.org
14170 S:      Maintained
14171 F:      Documentation/hwmon/nzxt-kraken2.rst
14172 F:      drivers/hwmon/nzxt-kraken2.c
14173
14174 NZXT-SMART2 HARDWARE MONITORING DRIVER
14175 M:      Aleksandr Mezin <mezin.alexander@gmail.com>
14176 L:      linux-hwmon@vger.kernel.org
14177 S:      Maintained
14178 F:      Documentation/hwmon/nzxt-smart2.rst
14179 F:      drivers/hwmon/nzxt-smart2.c
14180
14181 OBJAGG
14182 M:      Jiri Pirko <jiri@nvidia.com>
14183 L:      netdev@vger.kernel.org
14184 S:      Supported
14185 F:      include/linux/objagg.h
14186 F:      lib/objagg.c
14187 F:      lib/test_objagg.c
14188
14189 OBJTOOL
14190 M:      Josh Poimboeuf <jpoimboe@redhat.com>
14191 M:      Peter Zijlstra <peterz@infradead.org>
14192 S:      Supported
14193 F:      tools/objtool/
14194 F:      include/linux/objtool.h
14195
14196 OCELOT ETHERNET SWITCH DRIVER
14197 M:      Vladimir Oltean <vladimir.oltean@nxp.com>
14198 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
14199 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
14200 M:      UNGLinuxDriver@microchip.com
14201 L:      netdev@vger.kernel.org
14202 S:      Supported
14203 F:      drivers/net/dsa/ocelot/*
14204 F:      drivers/net/ethernet/mscc/
14205 F:      include/soc/mscc/ocelot*
14206 F:      net/dsa/tag_ocelot.c
14207 F:      net/dsa/tag_ocelot_8021q.c
14208 F:      tools/testing/selftests/drivers/net/ocelot/*
14209
14210 OCXL (Open Coherent Accelerator Processor Interface OpenCAPI) DRIVER
14211 M:      Frederic Barrat <fbarrat@linux.ibm.com>
14212 M:      Andrew Donnellan <ajd@linux.ibm.com>
14213 L:      linuxppc-dev@lists.ozlabs.org
14214 S:      Supported
14215 F:      Documentation/userspace-api/accelerators/ocxl.rst
14216 F:      arch/powerpc/include/asm/pnv-ocxl.h
14217 F:      arch/powerpc/platforms/powernv/ocxl.c
14218 F:      drivers/misc/ocxl/
14219 F:      include/misc/ocxl*
14220 F:      include/uapi/misc/ocxl.h
14221
14222 OMAP AUDIO SUPPORT
14223 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
14224 M:      Jarkko Nikula <jarkko.nikula@bitmer.com>
14225 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
14226 L:      linux-omap@vger.kernel.org
14227 S:      Maintained
14228 F:      sound/soc/ti/n810.c
14229 F:      sound/soc/ti/omap*
14230 F:      sound/soc/ti/rx51.c
14231 F:      sound/soc/ti/sdma-pcm.*
14232
14233 OMAP CLOCK FRAMEWORK SUPPORT
14234 M:      Paul Walmsley <paul@pwsan.com>
14235 L:      linux-omap@vger.kernel.org
14236 S:      Maintained
14237 F:      arch/arm/*omap*/*clock*
14238
14239 OMAP DEVICE TREE SUPPORT
14240 M:      Benoît Cousson <bcousson@baylibre.com>
14241 M:      Tony Lindgren <tony@atomide.com>
14242 L:      linux-omap@vger.kernel.org
14243 L:      devicetree@vger.kernel.org
14244 S:      Maintained
14245 F:      arch/arm/boot/dts/*am3*
14246 F:      arch/arm/boot/dts/*am4*
14247 F:      arch/arm/boot/dts/*am5*
14248 F:      arch/arm/boot/dts/*dra7*
14249 F:      arch/arm/boot/dts/*omap*
14250 F:      arch/arm/boot/dts/logicpd-som-lv*
14251 F:      arch/arm/boot/dts/logicpd-torpedo*
14252
14253 OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
14254 L:      linux-omap@vger.kernel.org
14255 L:      linux-fbdev@vger.kernel.org
14256 S:      Orphan
14257 F:      Documentation/arm/omap/dss.rst
14258 F:      drivers/video/fbdev/omap2/
14259
14260 OMAP FRAMEBUFFER SUPPORT
14261 L:      linux-fbdev@vger.kernel.org
14262 L:      linux-omap@vger.kernel.org
14263 S:      Orphan
14264 F:      drivers/video/fbdev/omap/
14265
14266 OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT
14267 M:      Roger Quadros <rogerq@kernel.org>
14268 M:      Tony Lindgren <tony@atomide.com>
14269 L:      linux-omap@vger.kernel.org
14270 S:      Maintained
14271 F:      arch/arm/mach-omap2/*gpmc*
14272 F:      drivers/memory/omap-gpmc.c
14273
14274 OMAP GPIO DRIVER
14275 M:      Grygorii Strashko <grygorii.strashko@ti.com>
14276 M:      Santosh Shilimkar <ssantosh@kernel.org>
14277 M:      Kevin Hilman <khilman@kernel.org>
14278 L:      linux-omap@vger.kernel.org
14279 S:      Maintained
14280 F:      Documentation/devicetree/bindings/gpio/ti,omap-gpio.yaml
14281 F:      drivers/gpio/gpio-omap.c
14282
14283 OMAP HARDWARE SPINLOCK SUPPORT
14284 M:      Ohad Ben-Cohen <ohad@wizery.com>
14285 L:      linux-omap@vger.kernel.org
14286 S:      Maintained
14287 F:      drivers/hwspinlock/omap_hwspinlock.c
14288
14289 OMAP HS MMC SUPPORT
14290 L:      linux-mmc@vger.kernel.org
14291 L:      linux-omap@vger.kernel.org
14292 S:      Orphan
14293 F:      drivers/mmc/host/omap_hsmmc.c
14294
14295 OMAP HWMOD DATA
14296 M:      Paul Walmsley <paul@pwsan.com>
14297 L:      linux-omap@vger.kernel.org
14298 S:      Maintained
14299 F:      arch/arm/mach-omap2/omap_hwmod*data*
14300
14301 OMAP HWMOD SUPPORT
14302 M:      Benoît Cousson <bcousson@baylibre.com>
14303 M:      Paul Walmsley <paul@pwsan.com>
14304 L:      linux-omap@vger.kernel.org
14305 S:      Maintained
14306 F:      arch/arm/mach-omap2/omap_hwmod.*
14307
14308 OMAP I2C DRIVER
14309 M:      Vignesh R <vigneshr@ti.com>
14310 L:      linux-omap@vger.kernel.org
14311 L:      linux-i2c@vger.kernel.org
14312 S:      Maintained
14313 F:      Documentation/devicetree/bindings/i2c/ti,omap4-i2c.yaml
14314 F:      drivers/i2c/busses/i2c-omap.c
14315
14316 OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS)
14317 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
14318 L:      linux-media@vger.kernel.org
14319 S:      Maintained
14320 F:      Documentation/devicetree/bindings/media/ti,omap3isp.txt
14321 F:      drivers/media/platform/ti/omap3isp/
14322 F:      drivers/staging/media/omap4iss/
14323
14324 OMAP MMC SUPPORT
14325 M:      Aaro Koskinen <aaro.koskinen@iki.fi>
14326 L:      linux-omap@vger.kernel.org
14327 S:      Odd Fixes
14328 F:      drivers/mmc/host/omap.c
14329
14330 OMAP POWER MANAGEMENT SUPPORT
14331 M:      Kevin Hilman <khilman@kernel.org>
14332 L:      linux-omap@vger.kernel.org
14333 S:      Maintained
14334 F:      arch/arm/*omap*/*pm*
14335 F:      drivers/cpufreq/omap-cpufreq.c
14336
14337 OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT
14338 M:      Rajendra Nayak <rnayak@codeaurora.org>
14339 M:      Paul Walmsley <paul@pwsan.com>
14340 L:      linux-omap@vger.kernel.org
14341 S:      Maintained
14342 F:      arch/arm/mach-omap2/prm*
14343
14344 OMAP RANDOM NUMBER GENERATOR SUPPORT
14345 M:      Deepak Saxena <dsaxena@plexity.net>
14346 S:      Maintained
14347 F:      drivers/char/hw_random/omap-rng.c
14348
14349 OMAP USB SUPPORT
14350 L:      linux-usb@vger.kernel.org
14351 L:      linux-omap@vger.kernel.org
14352 S:      Orphan
14353 F:      arch/arm/*omap*/usb*
14354 F:      drivers/usb/*/*omap*
14355
14356 OMAP/NEWFLOW NANOBONE MACHINE SUPPORT
14357 M:      Mark Jackson <mpfj@newflow.co.uk>
14358 L:      linux-omap@vger.kernel.org
14359 S:      Maintained
14360 F:      arch/arm/boot/dts/am335x-nano.dts
14361
14362 OMAP1 SUPPORT
14363 M:      Aaro Koskinen <aaro.koskinen@iki.fi>
14364 M:      Tony Lindgren <tony@atomide.com>
14365 L:      linux-omap@vger.kernel.org
14366 S:      Maintained
14367 Q:      http://patchwork.kernel.org/project/linux-omap/list/
14368 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
14369 F:      arch/arm/configs/omap1_defconfig
14370 F:      arch/arm/mach-omap1/
14371 F:      arch/arm/plat-omap/
14372 F:      drivers/i2c/busses/i2c-omap.c
14373 F:      include/linux/platform_data/ams-delta-fiq.h
14374 F:      include/linux/platform_data/i2c-omap.h
14375
14376 OMAP2+ SUPPORT
14377 M:      Tony Lindgren <tony@atomide.com>
14378 L:      linux-omap@vger.kernel.org
14379 S:      Maintained
14380 W:      http://www.muru.com/linux/omap/
14381 W:      http://linux.omap.com/
14382 Q:      http://patchwork.kernel.org/project/linux-omap/list/
14383 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
14384 F:      arch/arm/configs/omap2plus_defconfig
14385 F:      arch/arm/mach-omap2/
14386 F:      arch/arm/plat-omap/
14387 F:      drivers/bus/ti-sysc.c
14388 F:      drivers/i2c/busses/i2c-omap.c
14389 F:      drivers/irqchip/irq-omap-intc.c
14390 F:      drivers/mfd/*omap*.c
14391 F:      drivers/mfd/menelaus.c
14392 F:      drivers/mfd/palmas.c
14393 F:      drivers/mfd/tps65217.c
14394 F:      drivers/mfd/tps65218.c
14395 F:      drivers/mfd/tps65910.c
14396 F:      drivers/mfd/twl-core.[ch]
14397 F:      drivers/mfd/twl4030*.c
14398 F:      drivers/mfd/twl6030*.c
14399 F:      drivers/mfd/twl6040*.c
14400 F:      drivers/regulator/palmas-regulator*.c
14401 F:      drivers/regulator/pbias-regulator.c
14402 F:      drivers/regulator/tps65217-regulator.c
14403 F:      drivers/regulator/tps65218-regulator.c
14404 F:      drivers/regulator/tps65910-regulator.c
14405 F:      drivers/regulator/twl-regulator.c
14406 F:      drivers/regulator/twl6030-regulator.c
14407 F:      include/linux/platform_data/i2c-omap.h
14408 F:      include/linux/platform_data/ti-sysc.h
14409
14410 OMFS FILESYSTEM
14411 M:      Bob Copeland <me@bobcopeland.com>
14412 L:      linux-karma-devel@lists.sourceforge.net
14413 S:      Maintained
14414 F:      Documentation/filesystems/omfs.rst
14415 F:      fs/omfs/
14416
14417 OMNIKEY CARDMAN 4000 DRIVER
14418 M:      Harald Welte <laforge@gnumonks.org>
14419 S:      Maintained
14420 F:      drivers/char/pcmcia/cm4000_cs.c
14421 F:      include/linux/cm4000_cs.h
14422 F:      include/uapi/linux/cm4000_cs.h
14423
14424 OMNIKEY CARDMAN 4040 DRIVER
14425 M:      Harald Welte <laforge@gnumonks.org>
14426 S:      Maintained
14427 F:      drivers/char/pcmcia/cm4040_cs.*
14428
14429 OMNIVISION OG01A1B SENSOR DRIVER
14430 M:      Shawn Tu <shawnx.tu@intel.com>
14431 L:      linux-media@vger.kernel.org
14432 S:      Maintained
14433 F:      drivers/media/i2c/og01a1b.c
14434
14435 OMNIVISION OV02A10 SENSOR DRIVER
14436 M:      Dongchun Zhu <dongchun.zhu@mediatek.com>
14437 L:      linux-media@vger.kernel.org
14438 S:      Maintained
14439 T:      git git://linuxtv.org/media_tree.git
14440 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov02a10.yaml
14441 F:      drivers/media/i2c/ov02a10.c
14442
14443 OMNIVISION OV08D10 SENSOR DRIVER
14444 M:      Jimmy Su <jimmy.su@intel.com>
14445 L:      linux-media@vger.kernel.org
14446 S:      Maintained
14447 T:      git git://linuxtv.org/media_tree.git
14448 F:      drivers/media/i2c/ov08d10.c
14449
14450 OMNIVISION OV13858 SENSOR DRIVER
14451 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
14452 L:      linux-media@vger.kernel.org
14453 S:      Maintained
14454 T:      git git://linuxtv.org/media_tree.git
14455 F:      drivers/media/i2c/ov13858.c
14456
14457 OMNIVISION OV13B10 SENSOR DRIVER
14458 M:      Arec Kao <arec.kao@intel.com>
14459 L:      linux-media@vger.kernel.org
14460 S:      Maintained
14461 T:      git git://linuxtv.org/media_tree.git
14462 F:      drivers/media/i2c/ov13b10.c
14463
14464 OMNIVISION OV2680 SENSOR DRIVER
14465 M:      Rui Miguel Silva <rmfrfs@gmail.com>
14466 L:      linux-media@vger.kernel.org
14467 S:      Maintained
14468 T:      git git://linuxtv.org/media_tree.git
14469 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov2680.yaml
14470 F:      drivers/media/i2c/ov2680.c
14471
14472 OMNIVISION OV2685 SENSOR DRIVER
14473 M:      Shunqian Zheng <zhengsq@rock-chips.com>
14474 L:      linux-media@vger.kernel.org
14475 S:      Maintained
14476 T:      git git://linuxtv.org/media_tree.git
14477 F:      drivers/media/i2c/ov2685.c
14478
14479 OMNIVISION OV2740 SENSOR DRIVER
14480 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
14481 R:      Shawn Tu <shawnx.tu@intel.com>
14482 R:      Bingbu Cao <bingbu.cao@intel.com>
14483 L:      linux-media@vger.kernel.org
14484 S:      Maintained
14485 T:      git git://linuxtv.org/media_tree.git
14486 F:      drivers/media/i2c/ov2740.c
14487
14488 OMNIVISION OV5640 SENSOR DRIVER
14489 M:      Steve Longerbeam <slongerbeam@gmail.com>
14490 L:      linux-media@vger.kernel.org
14491 S:      Maintained
14492 T:      git git://linuxtv.org/media_tree.git
14493 F:      drivers/media/i2c/ov5640.c
14494
14495 OMNIVISION OV5647 SENSOR DRIVER
14496 M:      Dave Stevenson <dave.stevenson@raspberrypi.com>
14497 M:      Jacopo Mondi <jacopo@jmondi.org>
14498 L:      linux-media@vger.kernel.org
14499 S:      Maintained
14500 T:      git git://linuxtv.org/media_tree.git
14501 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov5647.yaml
14502 F:      drivers/media/i2c/ov5647.c
14503
14504 OMNIVISION OV5670 SENSOR DRIVER
14505 M:      Chiranjeevi Rapolu <chiranjeevi.rapolu@intel.com>
14506 L:      linux-media@vger.kernel.org
14507 S:      Maintained
14508 T:      git git://linuxtv.org/media_tree.git
14509 F:      drivers/media/i2c/ov5670.c
14510
14511 OMNIVISION OV5675 SENSOR DRIVER
14512 M:      Shawn Tu <shawnx.tu@intel.com>
14513 L:      linux-media@vger.kernel.org
14514 S:      Maintained
14515 T:      git git://linuxtv.org/media_tree.git
14516 F:      drivers/media/i2c/ov5675.c
14517
14518 OMNIVISION OV5693 SENSOR DRIVER
14519 M:      Daniel Scally <djrscally@gmail.com>
14520 L:      linux-media@vger.kernel.org
14521 S:      Maintained
14522 T:      git git://linuxtv.org/media_tree.git
14523 F:      drivers/media/i2c/ov5693.c
14524
14525 OMNIVISION OV5695 SENSOR DRIVER
14526 M:      Shunqian Zheng <zhengsq@rock-chips.com>
14527 L:      linux-media@vger.kernel.org
14528 S:      Maintained
14529 T:      git git://linuxtv.org/media_tree.git
14530 F:      drivers/media/i2c/ov5695.c
14531
14532 OMNIVISION OV7670 SENSOR DRIVER
14533 L:      linux-media@vger.kernel.org
14534 S:      Orphan
14535 T:      git git://linuxtv.org/media_tree.git
14536 F:      Documentation/devicetree/bindings/media/i2c/ov7670.txt
14537 F:      drivers/media/i2c/ov7670.c
14538
14539 OMNIVISION OV772x SENSOR DRIVER
14540 M:      Jacopo Mondi <jacopo@jmondi.org>
14541 L:      linux-media@vger.kernel.org
14542 S:      Odd fixes
14543 T:      git git://linuxtv.org/media_tree.git
14544 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov772x.yaml
14545 F:      drivers/media/i2c/ov772x.c
14546 F:      include/media/i2c/ov772x.h
14547
14548 OMNIVISION OV7740 SENSOR DRIVER
14549 M:      Wenyou Yang <wenyou.yang@microchip.com>
14550 L:      linux-media@vger.kernel.org
14551 S:      Maintained
14552 T:      git git://linuxtv.org/media_tree.git
14553 F:      Documentation/devicetree/bindings/media/i2c/ov7740.txt
14554 F:      drivers/media/i2c/ov7740.c
14555
14556 OMNIVISION OV8856 SENSOR DRIVER
14557 M:      Dongchun Zhu <dongchun.zhu@mediatek.com>
14558 L:      linux-media@vger.kernel.org
14559 S:      Maintained
14560 T:      git git://linuxtv.org/media_tree.git
14561 F:      Documentation/devicetree/bindings/media/i2c/ov8856.yaml
14562 F:      drivers/media/i2c/ov8856.c
14563
14564 OMNIVISION OV9282 SENSOR DRIVER
14565 M:      Paul J. Murphy <paul.j.murphy@intel.com>
14566 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.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,ov9282.yaml
14571 F:      drivers/media/i2c/ov9282.c
14572
14573 OMNIVISION OV9640 SENSOR DRIVER
14574 M:      Petr Cvek <petrcvekcz@gmail.com>
14575 L:      linux-media@vger.kernel.org
14576 S:      Maintained
14577 F:      drivers/media/i2c/ov9640.*
14578
14579 OMNIVISION OV9650 SENSOR DRIVER
14580 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
14581 R:      Akinobu Mita <akinobu.mita@gmail.com>
14582 R:      Sylwester Nawrocki <s.nawrocki@samsung.com>
14583 L:      linux-media@vger.kernel.org
14584 S:      Maintained
14585 T:      git git://linuxtv.org/media_tree.git
14586 F:      Documentation/devicetree/bindings/media/i2c/ov9650.txt
14587 F:      drivers/media/i2c/ov9650.c
14588
14589 OMNIVISION OV9734 SENSOR DRIVER
14590 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
14591 R:      Bingbu Cao <bingbu.cao@intel.com>
14592 L:      linux-media@vger.kernel.org
14593 S:      Maintained
14594 T:      git git://linuxtv.org/media_tree.git
14595 F:      drivers/media/i2c/ov9734.c
14596
14597 ONENAND FLASH DRIVER
14598 M:      Kyungmin Park <kyungmin.park@samsung.com>
14599 L:      linux-mtd@lists.infradead.org
14600 S:      Maintained
14601 F:      drivers/mtd/nand/onenand/
14602 F:      include/linux/mtd/onenand*.h
14603
14604 ONION OMEGA2+ BOARD
14605 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
14606 L:      linux-mips@vger.kernel.org
14607 S:      Maintained
14608 F:      arch/mips/boot/dts/ralink/omega2p.dts
14609
14610 OP-TEE DRIVER
14611 M:      Jens Wiklander <jens.wiklander@linaro.org>
14612 L:      op-tee@lists.trustedfirmware.org
14613 S:      Maintained
14614 F:      Documentation/ABI/testing/sysfs-bus-optee-devices
14615 F:      drivers/tee/optee/
14616
14617 OP-TEE RANDOM NUMBER GENERATOR (RNG) DRIVER
14618 M:      Sumit Garg <sumit.garg@linaro.org>
14619 L:      op-tee@lists.trustedfirmware.org
14620 S:      Maintained
14621 F:      drivers/char/hw_random/optee-rng.c
14622
14623 OPA-VNIC DRIVER
14624 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
14625 M:      Mike Marciniszyn <mike.marciniszyn@cornelisnetworks.com>
14626 L:      linux-rdma@vger.kernel.org
14627 S:      Supported
14628 F:      drivers/infiniband/ulp/opa_vnic
14629
14630 OPEN FIRMWARE AND DEVICE TREE OVERLAYS
14631 M:      Pantelis Antoniou <pantelis.antoniou@konsulko.com>
14632 M:      Frank Rowand <frowand.list@gmail.com>
14633 L:      devicetree@vger.kernel.org
14634 S:      Maintained
14635 F:      Documentation/devicetree/dynamic-resolution-notes.rst
14636 F:      Documentation/devicetree/overlay-notes.rst
14637 F:      drivers/of/overlay.c
14638 F:      drivers/of/resolver.c
14639 K:      of_overlay_notifier_
14640
14641 OPEN FIRMWARE AND FLATTENED DEVICE TREE
14642 M:      Rob Herring <robh+dt@kernel.org>
14643 M:      Frank Rowand <frowand.list@gmail.com>
14644 L:      devicetree@vger.kernel.org
14645 S:      Maintained
14646 C:      irc://irc.libera.chat/devicetree
14647 W:      http://www.devicetree.org/
14648 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
14649 F:      Documentation/ABI/testing/sysfs-firmware-ofw
14650 F:      drivers/of/
14651 F:      include/linux/of*.h
14652 F:      scripts/dtc/
14653
14654 OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
14655 M:      Rob Herring <robh+dt@kernel.org>
14656 M:      Krzysztof Kozlowski <krzk+dt@kernel.org>
14657 L:      devicetree@vger.kernel.org
14658 S:      Maintained
14659 C:      irc://irc.libera.chat/devicetree
14660 Q:      http://patchwork.ozlabs.org/project/devicetree-bindings/list/
14661 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
14662 F:      Documentation/devicetree/
14663 F:      arch/*/boot/dts/
14664 F:      include/dt-bindings/
14665
14666 OPENCOMPUTE PTP CLOCK DRIVER
14667 M:      Jonathan Lemon <jonathan.lemon@gmail.com>
14668 L:      netdev@vger.kernel.org
14669 S:      Maintained
14670 F:      drivers/ptp/ptp_ocp.c
14671
14672 OPENCORES I2C BUS DRIVER
14673 M:      Peter Korsgaard <peter@korsgaard.com>
14674 M:      Andrew Lunn <andrew@lunn.ch>
14675 L:      linux-i2c@vger.kernel.org
14676 S:      Maintained
14677 F:      Documentation/devicetree/bindings/i2c/i2c-ocores.txt
14678 F:      Documentation/i2c/busses/i2c-ocores.rst
14679 F:      drivers/i2c/busses/i2c-ocores.c
14680 F:      include/linux/platform_data/i2c-ocores.h
14681
14682 OPENRISC ARCHITECTURE
14683 M:      Jonas Bonn <jonas@southpole.se>
14684 M:      Stefan Kristiansson <stefan.kristiansson@saunalahti.fi>
14685 M:      Stafford Horne <shorne@gmail.com>
14686 L:      openrisc@lists.librecores.org
14687 S:      Maintained
14688 W:      http://openrisc.io
14689 T:      git git://github.com/openrisc/linux.git
14690 F:      Documentation/devicetree/bindings/openrisc/
14691 F:      Documentation/openrisc/
14692 F:      arch/openrisc/
14693 F:      drivers/irqchip/irq-ompic.c
14694 F:      drivers/irqchip/irq-or1k-*
14695
14696 OPENVSWITCH
14697 M:      Pravin B Shelar <pshelar@ovn.org>
14698 L:      netdev@vger.kernel.org
14699 L:      dev@openvswitch.org
14700 S:      Maintained
14701 W:      http://openvswitch.org
14702 F:      include/uapi/linux/openvswitch.h
14703 F:      net/openvswitch/
14704
14705 OPERATING PERFORMANCE POINTS (OPP)
14706 M:      Viresh Kumar <vireshk@kernel.org>
14707 M:      Nishanth Menon <nm@ti.com>
14708 M:      Stephen Boyd <sboyd@kernel.org>
14709 L:      linux-pm@vger.kernel.org
14710 S:      Maintained
14711 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git
14712 F:      Documentation/devicetree/bindings/opp/
14713 F:      Documentation/power/opp.rst
14714 F:      drivers/opp/
14715 F:      include/linux/pm_opp.h
14716
14717 OPL4 DRIVER
14718 M:      Clemens Ladisch <clemens@ladisch.de>
14719 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
14720 S:      Maintained
14721 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
14722 F:      sound/drivers/opl4/
14723
14724 ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
14725 M:      Mark Fasheh <mark@fasheh.com>
14726 M:      Joel Becker <jlbec@evilplan.org>
14727 M:      Joseph Qi <joseph.qi@linux.alibaba.com>
14728 L:      ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
14729 S:      Supported
14730 W:      http://ocfs2.wiki.kernel.org
14731 F:      Documentation/filesystems/dlmfs.rst
14732 F:      Documentation/filesystems/ocfs2.rst
14733 F:      fs/ocfs2/
14734
14735 ORANGEFS FILESYSTEM
14736 M:      Mike Marshall <hubcap@omnibond.com>
14737 R:      Martin Brandenburg <martin@omnibond.com>
14738 L:      devel@lists.orangefs.org
14739 S:      Supported
14740 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hubcap/linux.git
14741 F:      Documentation/filesystems/orangefs.rst
14742 F:      fs/orangefs/
14743
14744 ORINOCO DRIVER
14745 L:      linux-wireless@vger.kernel.org
14746 S:      Orphan
14747 W:      https://wireless.wiki.kernel.org/en/users/Drivers/orinoco
14748 W:      http://www.nongnu.org/orinoco/
14749 F:      drivers/net/wireless/intersil/orinoco/
14750
14751 OV2659 OMNIVISION SENSOR DRIVER
14752 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
14753 L:      linux-media@vger.kernel.org
14754 S:      Maintained
14755 W:      https://linuxtv.org
14756 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14757 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
14758 F:      drivers/media/i2c/ov2659.c
14759 F:      include/media/i2c/ov2659.h
14760
14761 OVERLAY FILESYSTEM
14762 M:      Miklos Szeredi <miklos@szeredi.hu>
14763 L:      linux-unionfs@vger.kernel.org
14764 S:      Supported
14765 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git
14766 F:      Documentation/filesystems/overlayfs.rst
14767 F:      fs/overlayfs/
14768
14769 P54 WIRELESS DRIVER
14770 M:      Christian Lamparter <chunkeey@googlemail.com>
14771 L:      linux-wireless@vger.kernel.org
14772 S:      Maintained
14773 W:      https://wireless.wiki.kernel.org/en/users/Drivers/p54
14774 F:      drivers/net/wireless/intersil/p54/
14775
14776 PACKING
14777 M:      Vladimir Oltean <olteanv@gmail.com>
14778 L:      netdev@vger.kernel.org
14779 S:      Supported
14780 F:      Documentation/core-api/packing.rst
14781 F:      include/linux/packing.h
14782 F:      lib/packing.c
14783
14784 PADATA PARALLEL EXECUTION MECHANISM
14785 M:      Steffen Klassert <steffen.klassert@secunet.com>
14786 M:      Daniel Jordan <daniel.m.jordan@oracle.com>
14787 L:      linux-crypto@vger.kernel.org
14788 L:      linux-kernel@vger.kernel.org
14789 S:      Maintained
14790 F:      Documentation/core-api/padata.rst
14791 F:      include/linux/padata.h
14792 F:      kernel/padata.c
14793
14794 PAGE POOL
14795 M:      Jesper Dangaard Brouer <hawk@kernel.org>
14796 M:      Ilias Apalodimas <ilias.apalodimas@linaro.org>
14797 L:      netdev@vger.kernel.org
14798 S:      Supported
14799 F:      Documentation/networking/page_pool.rst
14800 F:      include/net/page_pool.h
14801 F:      include/trace/events/page_pool.h
14802 F:      net/core/page_pool.c
14803
14804 PAGE TABLE CHECK
14805 M:      Pasha Tatashin <pasha.tatashin@soleen.com>
14806 M:      Andrew Morton <akpm@linux-foundation.org>
14807 L:      linux-mm@kvack.org
14808 S:      Maintained
14809 F:      Documentation/vm/page_table_check.rst
14810 F:      include/linux/page_table_check.h
14811 F:      mm/page_table_check.c
14812
14813 PANASONIC LAPTOP ACPI EXTRAS DRIVER
14814 M:      Kenneth Chan <kenneth.t.chan@gmail.com>
14815 L:      platform-driver-x86@vger.kernel.org
14816 S:      Maintained
14817 F:      drivers/platform/x86/panasonic-laptop.c
14818
14819 PARALLAX PING IIO SENSOR DRIVER
14820 M:      Andreas Klinger <ak@it-klinger.de>
14821 L:      linux-iio@vger.kernel.org
14822 S:      Maintained
14823 F:      Documentation/devicetree/bindings/iio/proximity/parallax-ping.yaml
14824 F:      drivers/iio/proximity/ping.c
14825
14826 PARALLEL LCD/KEYPAD PANEL DRIVER
14827 M:      Willy Tarreau <willy@haproxy.com>
14828 M:      Ksenija Stanojevic <ksenija.stanojevic@gmail.com>
14829 S:      Odd Fixes
14830 F:      Documentation/admin-guide/lcd-panel-cgram.rst
14831 F:      drivers/auxdisplay/panel.c
14832
14833 PARALLEL PORT SUBSYSTEM
14834 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
14835 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
14836 L:      linux-parport@lists.infradead.org (subscribers-only)
14837 S:      Maintained
14838 F:      Documentation/driver-api/parport*.rst
14839 F:      drivers/char/ppdev.c
14840 F:      drivers/parport/
14841 F:      include/linux/parport*.h
14842 F:      include/uapi/linux/ppdev.h
14843
14844 PARAVIRT_OPS INTERFACE
14845 M:      Juergen Gross <jgross@suse.com>
14846 M:      Srivatsa S. Bhat (VMware) <srivatsa@csail.mit.edu>
14847 R:      Alexey Makhalov <amakhalov@vmware.com>
14848 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
14849 L:      virtualization@lists.linux-foundation.org
14850 L:      x86@kernel.org
14851 S:      Supported
14852 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
14853 F:      Documentation/virt/paravirt_ops.rst
14854 F:      arch/*/include/asm/paravirt*.h
14855 F:      arch/*/kernel/paravirt*
14856 F:      include/linux/hypervisor.h
14857
14858 PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
14859 M:      Tim Waugh <tim@cyberelk.net>
14860 L:      linux-parport@lists.infradead.org (subscribers-only)
14861 S:      Maintained
14862 F:      Documentation/admin-guide/blockdev/paride.rst
14863 F:      drivers/block/paride/
14864
14865 PARISC ARCHITECTURE
14866 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
14867 M:      Helge Deller <deller@gmx.de>
14868 L:      linux-parisc@vger.kernel.org
14869 S:      Maintained
14870 W:      https://parisc.wiki.kernel.org
14871 Q:      http://patchwork.kernel.org/project/linux-parisc/list/
14872 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
14873 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git
14874 F:      Documentation/parisc/
14875 F:      arch/parisc/
14876 F:      drivers/char/agp/parisc-agp.c
14877 F:      drivers/input/misc/hp_sdc_rtc.c
14878 F:      drivers/input/serio/gscps2.c
14879 F:      drivers/input/serio/hp_sdc*
14880 F:      drivers/parisc/
14881 F:      drivers/parport/parport_gsc.*
14882 F:      drivers/tty/serial/8250/8250_gsc.c
14883 F:      drivers/video/console/sti*
14884 F:      drivers/video/fbdev/sti*
14885 F:      drivers/video/logo/logo_parisc*
14886 F:      include/linux/hp_sdc.h
14887
14888 PARMAN
14889 M:      Jiri Pirko <jiri@nvidia.com>
14890 L:      netdev@vger.kernel.org
14891 S:      Supported
14892 F:      include/linux/parman.h
14893 F:      lib/parman.c
14894 F:      lib/test_parman.c
14895
14896 PC ENGINES APU BOARD DRIVER
14897 M:      Enrico Weigelt, metux IT consult <info@metux.net>
14898 S:      Maintained
14899 F:      drivers/platform/x86/pcengines-apuv2.c
14900
14901 PC87360 HARDWARE MONITORING DRIVER
14902 M:      Jim Cromie <jim.cromie@gmail.com>
14903 L:      linux-hwmon@vger.kernel.org
14904 S:      Maintained
14905 F:      Documentation/hwmon/pc87360.rst
14906 F:      drivers/hwmon/pc87360.c
14907
14908 PC8736x GPIO DRIVER
14909 M:      Jim Cromie <jim.cromie@gmail.com>
14910 S:      Maintained
14911 F:      drivers/char/pc8736x_gpio.c
14912
14913 PC87427 HARDWARE MONITORING DRIVER
14914 M:      Jean Delvare <jdelvare@suse.com>
14915 L:      linux-hwmon@vger.kernel.org
14916 S:      Maintained
14917 F:      Documentation/hwmon/pc87427.rst
14918 F:      drivers/hwmon/pc87427.c
14919
14920 PCA9532 LED DRIVER
14921 M:      Riku Voipio <riku.voipio@iki.fi>
14922 S:      Maintained
14923 F:      drivers/leds/leds-pca9532.c
14924 F:      include/linux/leds-pca9532.h
14925
14926 PCA9541 I2C BUS MASTER SELECTOR DRIVER
14927 M:      Guenter Roeck <linux@roeck-us.net>
14928 L:      linux-i2c@vger.kernel.org
14929 S:      Maintained
14930 F:      drivers/i2c/muxes/i2c-mux-pca9541.c
14931
14932 PCDP - PRIMARY CONSOLE AND DEBUG PORT
14933 M:      Khalid Aziz <khalid@gonehiking.org>
14934 S:      Maintained
14935 F:      drivers/firmware/pcdp.*
14936
14937 PCI DRIVER FOR AARDVARK (Marvell Armada 3700)
14938 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
14939 M:      Pali Rohár <pali@kernel.org>
14940 L:      linux-pci@vger.kernel.org
14941 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14942 S:      Maintained
14943 F:      Documentation/devicetree/bindings/pci/aardvark-pci.txt
14944 F:      drivers/pci/controller/pci-aardvark.c
14945
14946 PCI DRIVER FOR ALTERA PCIE IP
14947 M:      Joyce Ooi <joyce.ooi@intel.com>
14948 L:      linux-pci@vger.kernel.org
14949 S:      Supported
14950 F:      Documentation/devicetree/bindings/pci/altera-pcie.txt
14951 F:      drivers/pci/controller/pcie-altera.c
14952
14953 PCI DRIVER FOR APPLIEDMICRO XGENE
14954 M:      Toan Le <toan@os.amperecomputing.com>
14955 L:      linux-pci@vger.kernel.org
14956 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14957 S:      Maintained
14958 F:      Documentation/devicetree/bindings/pci/xgene-pci.txt
14959 F:      drivers/pci/controller/pci-xgene.c
14960
14961 PCI DRIVER FOR ARM VERSATILE PLATFORM
14962 M:      Rob Herring <robh@kernel.org>
14963 L:      linux-pci@vger.kernel.org
14964 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14965 S:      Maintained
14966 F:      Documentation/devicetree/bindings/pci/versatile.yaml
14967 F:      drivers/pci/controller/pci-versatile.c
14968
14969 PCI DRIVER FOR ARMADA 8K
14970 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
14971 L:      linux-pci@vger.kernel.org
14972 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14973 S:      Maintained
14974 F:      Documentation/devicetree/bindings/pci/pci-armada8k.txt
14975 F:      drivers/pci/controller/dwc/pcie-armada8k.c
14976
14977 PCI DRIVER FOR CADENCE PCIE IP
14978 M:      Tom Joseph <tjoseph@cadence.com>
14979 L:      linux-pci@vger.kernel.org
14980 S:      Maintained
14981 F:      Documentation/devicetree/bindings/pci/cdns,*
14982 F:      drivers/pci/controller/cadence/
14983
14984 PCI DRIVER FOR FREESCALE LAYERSCAPE
14985 M:      Minghuan Lian <minghuan.Lian@nxp.com>
14986 M:      Mingkai Hu <mingkai.hu@nxp.com>
14987 M:      Roy Zang <roy.zang@nxp.com>
14988 L:      linuxppc-dev@lists.ozlabs.org
14989 L:      linux-pci@vger.kernel.org
14990 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14991 S:      Maintained
14992 F:      drivers/pci/controller/dwc/*layerscape*
14993
14994 PCI DRIVER FOR GENERIC OF HOSTS
14995 M:      Will Deacon <will@kernel.org>
14996 L:      linux-pci@vger.kernel.org
14997 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14998 S:      Maintained
14999 F:      Documentation/devicetree/bindings/pci/host-generic-pci.yaml
15000 F:      drivers/pci/controller/pci-host-common.c
15001 F:      drivers/pci/controller/pci-host-generic.c
15002
15003 PCI DRIVER FOR IMX6
15004 M:      Richard Zhu <hongxing.zhu@nxp.com>
15005 M:      Lucas Stach <l.stach@pengutronix.de>
15006 L:      linux-pci@vger.kernel.org
15007 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15008 S:      Maintained
15009 F:      Documentation/devicetree/bindings/pci/fsl,imx6q-pcie.yaml
15010 F:      drivers/pci/controller/dwc/*imx6*
15011
15012 PCI DRIVER FOR FU740
15013 M:      Paul Walmsley <paul.walmsley@sifive.com>
15014 M:      Greentime Hu <greentime.hu@sifive.com>
15015 L:      linux-pci@vger.kernel.org
15016 S:      Maintained
15017 F:      Documentation/devicetree/bindings/pci/sifive,fu740-pcie.yaml
15018 F:      drivers/pci/controller/dwc/pcie-fu740.c
15019
15020 PCI DRIVER FOR INTEL IXP4XX
15021 M:      Linus Walleij <linus.walleij@linaro.org>
15022 S:      Maintained
15023 F:      Documentation/devicetree/bindings/pci/intel,ixp4xx-pci.yaml
15024 F:      drivers/pci/controller/pci-ixp4xx.c
15025
15026 PCI DRIVER FOR INTEL VOLUME MANAGEMENT DEVICE (VMD)
15027 M:      Nirmal Patel <nirmal.patel@linux.intel.com>
15028 R:      Jonathan Derrick <jonathan.derrick@linux.dev>
15029 L:      linux-pci@vger.kernel.org
15030 S:      Supported
15031 F:      drivers/pci/controller/vmd.c
15032
15033 PCI DRIVER FOR MICROSEMI SWITCHTEC
15034 M:      Kurt Schwemmer <kurt.schwemmer@microsemi.com>
15035 M:      Logan Gunthorpe <logang@deltatee.com>
15036 L:      linux-pci@vger.kernel.org
15037 S:      Maintained
15038 F:      Documentation/ABI/testing/sysfs-class-switchtec
15039 F:      Documentation/driver-api/switchtec.rst
15040 F:      drivers/ntb/hw/mscc/
15041 F:      drivers/pci/switch/switchtec*
15042 F:      include/linux/switchtec.h
15043 F:      include/uapi/linux/switchtec_ioctl.h
15044
15045 PCI DRIVER FOR MOBIVEIL PCIE IP
15046 M:      Karthikeyan Mitran <m.karthikeyan@mobiveil.co.in>
15047 M:      Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
15048 L:      linux-pci@vger.kernel.org
15049 S:      Supported
15050 F:      Documentation/devicetree/bindings/pci/mobiveil-pcie.txt
15051 F:      drivers/pci/controller/mobiveil/pcie-mobiveil*
15052
15053 PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support)
15054 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
15055 M:      Pali Rohár <pali@kernel.org>
15056 L:      linux-pci@vger.kernel.org
15057 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15058 S:      Maintained
15059 F:      drivers/pci/controller/*mvebu*
15060
15061 PCI DRIVER FOR NVIDIA TEGRA
15062 M:      Thierry Reding <thierry.reding@gmail.com>
15063 L:      linux-tegra@vger.kernel.org
15064 L:      linux-pci@vger.kernel.org
15065 S:      Supported
15066 F:      Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt
15067 F:      drivers/pci/controller/pci-tegra.c
15068
15069 PCI DRIVER FOR NXP LAYERSCAPE GEN4 CONTROLLER
15070 M:      Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
15071 L:      linux-pci@vger.kernel.org
15072 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15073 S:      Maintained
15074 F:      Documentation/devicetree/bindings/pci/layerscape-pcie-gen4.txt
15075 F:      drivers/pci/controller/mobiveil/pcie-layerscape-gen4.c
15076
15077 PCI DRIVER FOR RENESAS R-CAR
15078 M:      Marek Vasut <marek.vasut+renesas@gmail.com>
15079 M:      Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
15080 L:      linux-pci@vger.kernel.org
15081 L:      linux-renesas-soc@vger.kernel.org
15082 S:      Maintained
15083 F:      Documentation/devicetree/bindings/pci/*rcar*
15084 F:      drivers/pci/controller/*rcar*
15085
15086 PCI DRIVER FOR SAMSUNG EXYNOS
15087 M:      Jingoo Han <jingoohan1@gmail.com>
15088 L:      linux-pci@vger.kernel.org
15089 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15090 L:      linux-samsung-soc@vger.kernel.org
15091 S:      Maintained
15092 F:      drivers/pci/controller/dwc/pci-exynos.c
15093
15094 PCI DRIVER FOR SYNOPSYS DESIGNWARE
15095 M:      Jingoo Han <jingoohan1@gmail.com>
15096 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
15097 L:      linux-pci@vger.kernel.org
15098 S:      Maintained
15099 F:      Documentation/devicetree/bindings/pci/snps,dw-pcie.yaml
15100 F:      Documentation/devicetree/bindings/pci/snps,dw-pcie-ep.yaml
15101 F:      drivers/pci/controller/dwc/*designware*
15102
15103 PCI DRIVER FOR TI DRA7XX/J721E
15104 M:      Kishon Vijay Abraham I <kishon@ti.com>
15105 L:      linux-omap@vger.kernel.org
15106 L:      linux-pci@vger.kernel.org
15107 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15108 S:      Supported
15109 F:      Documentation/devicetree/bindings/pci/ti-pci.txt
15110 F:      drivers/pci/controller/cadence/pci-j721e.c
15111 F:      drivers/pci/controller/dwc/pci-dra7xx.c
15112
15113 PCI DRIVER FOR V3 SEMICONDUCTOR V360EPC
15114 M:      Linus Walleij <linus.walleij@linaro.org>
15115 L:      linux-pci@vger.kernel.org
15116 S:      Maintained
15117 F:      Documentation/devicetree/bindings/pci/v3-v360epc-pci.txt
15118 F:      drivers/pci/controller/pci-v3-semi.c
15119
15120 PCI ENDPOINT SUBSYSTEM
15121 M:      Kishon Vijay Abraham I <kishon@ti.com>
15122 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
15123 R:      Krzysztof Wilczyński <kw@linux.com>
15124 L:      linux-pci@vger.kernel.org
15125 S:      Supported
15126 Q:      https://patchwork.kernel.org/project/linux-pci/list/
15127 B:      https://bugzilla.kernel.org
15128 C:      irc://irc.oftc.net/linux-pci
15129 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lpieralisi/pci.git
15130 F:      Documentation/PCI/endpoint/*
15131 F:      Documentation/misc-devices/pci-endpoint-test.rst
15132 F:      drivers/misc/pci_endpoint_test.c
15133 F:      drivers/pci/endpoint/
15134 F:      tools/pci/
15135
15136 PCI ENHANCED ERROR HANDLING (EEH) FOR POWERPC
15137 M:      Russell Currey <ruscur@russell.cc>
15138 M:      Oliver O'Halloran <oohall@gmail.com>
15139 L:      linuxppc-dev@lists.ozlabs.org
15140 S:      Supported
15141 F:      Documentation/PCI/pci-error-recovery.rst
15142 F:      Documentation/powerpc/eeh-pci-error-recovery.rst
15143 F:      arch/powerpc/include/*/eeh*.h
15144 F:      arch/powerpc/kernel/eeh*.c
15145 F:      arch/powerpc/platforms/*/eeh*.c
15146 F:      drivers/pci/pcie/aer.c
15147 F:      drivers/pci/pcie/dpc.c
15148 F:      drivers/pci/pcie/err.c
15149
15150 PCI ERROR RECOVERY
15151 M:      Linas Vepstas <linasvepstas@gmail.com>
15152 L:      linux-pci@vger.kernel.org
15153 S:      Supported
15154 F:      Documentation/PCI/pci-error-recovery.rst
15155
15156 PCI PEER-TO-PEER DMA (P2PDMA)
15157 M:      Bjorn Helgaas <bhelgaas@google.com>
15158 M:      Logan Gunthorpe <logang@deltatee.com>
15159 L:      linux-pci@vger.kernel.org
15160 S:      Supported
15161 Q:      https://patchwork.kernel.org/project/linux-pci/list/
15162 B:      https://bugzilla.kernel.org
15163 C:      irc://irc.oftc.net/linux-pci
15164 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
15165 F:      Documentation/driver-api/pci/p2pdma.rst
15166 F:      drivers/pci/p2pdma.c
15167 F:      include/linux/pci-p2pdma.h
15168
15169 PCI MSI DRIVER FOR ALTERA MSI IP
15170 M:      Joyce Ooi <joyce.ooi@intel.com>
15171 L:      linux-pci@vger.kernel.org
15172 S:      Supported
15173 F:      Documentation/devicetree/bindings/pci/altera-pcie-msi.txt
15174 F:      drivers/pci/controller/pcie-altera-msi.c
15175
15176 PCI MSI DRIVER FOR APPLIEDMICRO XGENE
15177 M:      Toan Le <toan@os.amperecomputing.com>
15178 L:      linux-pci@vger.kernel.org
15179 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15180 S:      Maintained
15181 F:      Documentation/devicetree/bindings/pci/xgene-pci-msi.txt
15182 F:      drivers/pci/controller/pci-xgene-msi.c
15183
15184 PCI NATIVE HOST BRIDGE AND ENDPOINT DRIVERS
15185 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
15186 R:      Rob Herring <robh@kernel.org>
15187 R:      Krzysztof Wilczyński <kw@linux.com>
15188 L:      linux-pci@vger.kernel.org
15189 S:      Supported
15190 Q:      https://patchwork.kernel.org/project/linux-pci/list/
15191 B:      https://bugzilla.kernel.org
15192 C:      irc://irc.oftc.net/linux-pci
15193 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lpieralisi/pci.git
15194 F:      drivers/pci/controller/
15195 F:      drivers/pci/pci-bridge-emul.c
15196 F:      drivers/pci/pci-bridge-emul.h
15197
15198 PCI SUBSYSTEM
15199 M:      Bjorn Helgaas <bhelgaas@google.com>
15200 L:      linux-pci@vger.kernel.org
15201 S:      Supported
15202 Q:      https://patchwork.kernel.org/project/linux-pci/list/
15203 B:      https://bugzilla.kernel.org
15204 C:      irc://irc.oftc.net/linux-pci
15205 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
15206 F:      Documentation/PCI/
15207 F:      Documentation/devicetree/bindings/pci/
15208 F:      arch/x86/kernel/early-quirks.c
15209 F:      arch/x86/kernel/quirks.c
15210 F:      arch/x86/pci/
15211 F:      drivers/acpi/pci*
15212 F:      drivers/pci/
15213 F:      include/asm-generic/pci*
15214 F:      include/linux/of_pci.h
15215 F:      include/linux/pci*
15216 F:      include/uapi/linux/pci*
15217 F:      lib/pci*
15218
15219 PCIE DRIVER FOR AMAZON ANNAPURNA LABS
15220 M:      Jonathan Chocron <jonnyc@amazon.com>
15221 L:      linux-pci@vger.kernel.org
15222 S:      Maintained
15223 F:      Documentation/devicetree/bindings/pci/pcie-al.txt
15224 F:      drivers/pci/controller/dwc/pcie-al.c
15225
15226 PCIE DRIVER FOR AMLOGIC MESON
15227 M:      Yue Wang <yue.wang@Amlogic.com>
15228 L:      linux-pci@vger.kernel.org
15229 L:      linux-amlogic@lists.infradead.org
15230 S:      Maintained
15231 F:      drivers/pci/controller/dwc/pci-meson.c
15232
15233 PCIE DRIVER FOR AXIS ARTPEC
15234 M:      Jesper Nilsson <jesper.nilsson@axis.com>
15235 L:      linux-arm-kernel@axis.com
15236 L:      linux-pci@vger.kernel.org
15237 S:      Maintained
15238 F:      Documentation/devicetree/bindings/pci/axis,artpec*
15239 F:      drivers/pci/controller/dwc/*artpec*
15240
15241 PCIE DRIVER FOR CAVIUM THUNDERX
15242 M:      Robert Richter <rric@kernel.org>
15243 L:      linux-pci@vger.kernel.org
15244 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15245 S:      Odd Fixes
15246 F:      drivers/pci/controller/pci-thunder-*
15247
15248 PCIE DRIVER FOR HISILICON
15249 M:      Zhou Wang <wangzhou1@hisilicon.com>
15250 L:      linux-pci@vger.kernel.org
15251 S:      Maintained
15252 F:      drivers/pci/controller/dwc/pcie-hisi.c
15253
15254 PCIE DRIVER FOR HISILICON KIRIN
15255 M:      Xiaowei Song <songxiaowei@hisilicon.com>
15256 M:      Binghui Wang <wangbinghui@hisilicon.com>
15257 L:      linux-pci@vger.kernel.org
15258 S:      Maintained
15259 F:      Documentation/devicetree/bindings/pci/hisilicon,kirin-pcie.yaml
15260 F:      drivers/pci/controller/dwc/pcie-kirin.c
15261
15262 PCIE DRIVER FOR HISILICON STB
15263 M:      Shawn Guo <shawn.guo@linaro.org>
15264 L:      linux-pci@vger.kernel.org
15265 S:      Maintained
15266 F:      Documentation/devicetree/bindings/pci/hisilicon-histb-pcie.txt
15267 F:      drivers/pci/controller/dwc/pcie-histb.c
15268
15269 PCIE DRIVER FOR INTEL KEEM BAY
15270 M:      Srikanth Thokala <srikanth.thokala@intel.com>
15271 L:      linux-pci@vger.kernel.org
15272 S:      Supported
15273 F:      Documentation/devicetree/bindings/pci/intel,keembay-pcie*
15274 F:      drivers/pci/controller/dwc/pcie-keembay.c
15275
15276 PCIE DRIVER FOR INTEL LGM GW SOC
15277 M:      Rahul Tanwar <rtanwar@maxlinear.com>
15278 L:      linux-pci@vger.kernel.org
15279 S:      Maintained
15280 F:      Documentation/devicetree/bindings/pci/intel-gw-pcie.yaml
15281 F:      drivers/pci/controller/dwc/pcie-intel-gw.c
15282
15283 PCIE DRIVER FOR MEDIATEK
15284 M:      Ryder Lee <ryder.lee@mediatek.com>
15285 M:      Jianjun Wang <jianjun.wang@mediatek.com>
15286 L:      linux-pci@vger.kernel.org
15287 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
15288 S:      Supported
15289 F:      Documentation/devicetree/bindings/pci/mediatek*
15290 F:      drivers/pci/controller/*mediatek*
15291
15292 PCIE DRIVER FOR MICROCHIP
15293 M:      Daire McNamara <daire.mcnamara@microchip.com>
15294 L:      linux-pci@vger.kernel.org
15295 S:      Supported
15296 F:      Documentation/devicetree/bindings/pci/microchip*
15297 F:      drivers/pci/controller/*microchip*
15298
15299 PCIE DRIVER FOR QUALCOMM MSM
15300 M:      Stanimir Varbanov <svarbanov@mm-sol.com>
15301 L:      linux-pci@vger.kernel.org
15302 L:      linux-arm-msm@vger.kernel.org
15303 S:      Maintained
15304 F:      drivers/pci/controller/dwc/pcie-qcom.c
15305
15306 PCIE ENDPOINT DRIVER FOR QUALCOMM
15307 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
15308 L:      linux-pci@vger.kernel.org
15309 L:      linux-arm-msm@vger.kernel.org
15310 S:      Maintained
15311 F:      Documentation/devicetree/bindings/pci/qcom,pcie-ep.yaml
15312 F:      drivers/pci/controller/dwc/pcie-qcom-ep.c
15313
15314 PCIE DRIVER FOR ROCKCHIP
15315 M:      Shawn Lin <shawn.lin@rock-chips.com>
15316 L:      linux-pci@vger.kernel.org
15317 L:      linux-rockchip@lists.infradead.org
15318 S:      Maintained
15319 F:      Documentation/devicetree/bindings/pci/rockchip-pcie*
15320 F:      drivers/pci/controller/pcie-rockchip*
15321
15322 PCIE DRIVER FOR SOCIONEXT UNIPHIER
15323 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
15324 L:      linux-pci@vger.kernel.org
15325 S:      Maintained
15326 F:      Documentation/devicetree/bindings/pci/uniphier-pcie*
15327 F:      drivers/pci/controller/dwc/pcie-uniphier*
15328
15329 PCIE DRIVER FOR ST SPEAR13XX
15330 M:      Pratyush Anand <pratyush.anand@gmail.com>
15331 L:      linux-pci@vger.kernel.org
15332 S:      Maintained
15333 F:      drivers/pci/controller/dwc/*spear*
15334
15335 PCMCIA SUBSYSTEM
15336 M:      Dominik Brodowski <linux@dominikbrodowski.net>
15337 S:      Odd Fixes
15338 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/linux.git
15339 F:      Documentation/pcmcia/
15340 F:      drivers/pcmcia/
15341 F:      include/pcmcia/
15342 F:      tools/pcmcia/
15343
15344 PCNET32 NETWORK DRIVER
15345 M:      Don Fry <pcnet32@frontier.com>
15346 L:      netdev@vger.kernel.org
15347 S:      Maintained
15348 F:      drivers/net/ethernet/amd/pcnet32.c
15349
15350 PCRYPT PARALLEL CRYPTO ENGINE
15351 M:      Steffen Klassert <steffen.klassert@secunet.com>
15352 L:      linux-crypto@vger.kernel.org
15353 S:      Maintained
15354 F:      crypto/pcrypt.c
15355 F:      include/crypto/pcrypt.h
15356
15357 PEAQ WMI HOTKEYS DRIVER
15358 M:      Hans de Goede <hdegoede@redhat.com>
15359 L:      platform-driver-x86@vger.kernel.org
15360 S:      Maintained
15361 F:      drivers/platform/x86/peaq-wmi.c
15362
15363 PECI HARDWARE MONITORING DRIVERS
15364 M:      Iwona Winiarska <iwona.winiarska@intel.com>
15365 L:      linux-hwmon@vger.kernel.org
15366 S:      Supported
15367 F:      Documentation/hwmon/peci-cputemp.rst
15368 F:      Documentation/hwmon/peci-dimmtemp.rst
15369 F:      drivers/hwmon/peci/
15370
15371 PECI SUBSYSTEM
15372 M:      Iwona Winiarska <iwona.winiarska@intel.com>
15373 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
15374 S:      Supported
15375 F:      Documentation/devicetree/bindings/peci/
15376 F:      Documentation/peci/
15377 F:      drivers/peci/
15378 F:      include/linux/peci-cpu.h
15379 F:      include/linux/peci.h
15380
15381 PENSANDO ETHERNET DRIVERS
15382 M:      Shannon Nelson <snelson@pensando.io>
15383 M:      drivers@pensando.io
15384 L:      netdev@vger.kernel.org
15385 S:      Supported
15386 F:      Documentation/networking/device_drivers/ethernet/pensando/ionic.rst
15387 F:      drivers/net/ethernet/pensando/
15388
15389 PER-CPU MEMORY ALLOCATOR
15390 M:      Dennis Zhou <dennis@kernel.org>
15391 M:      Tejun Heo <tj@kernel.org>
15392 M:      Christoph Lameter <cl@linux.com>
15393 L:      linux-mm@kvack.org
15394 S:      Maintained
15395 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dennis/percpu.git
15396 F:      arch/*/include/asm/percpu.h
15397 F:      include/linux/percpu*.h
15398 F:      lib/percpu*.c
15399 F:      mm/percpu*.c
15400
15401 PER-TASK DELAY ACCOUNTING
15402 M:      Balbir Singh <bsingharora@gmail.com>
15403 S:      Maintained
15404 F:      include/linux/delayacct.h
15405 F:      kernel/delayacct.c
15406
15407 PERFORMANCE EVENTS SUBSYSTEM
15408 M:      Peter Zijlstra <peterz@infradead.org>
15409 M:      Ingo Molnar <mingo@redhat.com>
15410 M:      Arnaldo Carvalho de Melo <acme@kernel.org>
15411 R:      Mark Rutland <mark.rutland@arm.com>
15412 R:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
15413 R:      Jiri Olsa <jolsa@kernel.org>
15414 R:      Namhyung Kim <namhyung@kernel.org>
15415 L:      linux-perf-users@vger.kernel.org
15416 L:      linux-kernel@vger.kernel.org
15417 S:      Supported
15418 W:      https://perf.wiki.kernel.org/
15419 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
15420 F:      arch/*/events/*
15421 F:      arch/*/events/*/*
15422 F:      arch/*/include/asm/perf_event.h
15423 F:      arch/*/kernel/*/*/perf_event*.c
15424 F:      arch/*/kernel/*/perf_event*.c
15425 F:      arch/*/kernel/perf_callchain.c
15426 F:      arch/*/kernel/perf_event*.c
15427 F:      include/linux/perf_event.h
15428 F:      include/uapi/linux/perf_event.h
15429 F:      kernel/events/*
15430 F:      tools/lib/perf/
15431 F:      tools/perf/
15432
15433 PERFORMANCE EVENTS TOOLING ARM64
15434 R:      John Garry <john.garry@huawei.com>
15435 R:      Will Deacon <will@kernel.org>
15436 R:      Mathieu Poirier <mathieu.poirier@linaro.org>
15437 R:      Leo Yan <leo.yan@linaro.org>
15438 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15439 S:      Supported
15440 F:      tools/build/feature/test-libopencsd.c
15441 F:      tools/perf/arch/arm*/
15442 F:      tools/perf/pmu-events/arch/arm64/
15443 F:      tools/perf/util/arm-spe*
15444 F:      tools/perf/util/cs-etm*
15445
15446 PERSONALITY HANDLING
15447 M:      Christoph Hellwig <hch@infradead.org>
15448 L:      linux-abi-devel@lists.sourceforge.net
15449 S:      Maintained
15450 F:      include/linux/personality.h
15451 F:      include/uapi/linux/personality.h
15452
15453 PHOENIX RC FLIGHT CONTROLLER ADAPTER
15454 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
15455 L:      linux-input@vger.kernel.org
15456 S:      Maintained
15457 F:      Documentation/input/devices/pxrc.rst
15458 F:      drivers/input/joystick/pxrc.c
15459
15460 PHONET PROTOCOL
15461 M:      Remi Denis-Courmont <courmisch@gmail.com>
15462 S:      Supported
15463 F:      Documentation/networking/phonet.rst
15464 F:      include/linux/phonet.h
15465 F:      include/net/phonet/
15466 F:      include/uapi/linux/phonet.h
15467 F:      net/phonet/
15468
15469 PHRAM MTD DRIVER
15470 M:      Joern Engel <joern@lazybastard.org>
15471 L:      linux-mtd@lists.infradead.org
15472 S:      Maintained
15473 F:      drivers/mtd/devices/phram.c
15474
15475 PICOLCD HID DRIVER
15476 M:      Bruno Prémont <bonbons@linux-vserver.org>
15477 L:      linux-input@vger.kernel.org
15478 S:      Maintained
15479 F:      drivers/hid/hid-picolcd*
15480
15481 PIDFD API
15482 M:      Christian Brauner <christian@brauner.io>
15483 L:      linux-kernel@vger.kernel.org
15484 S:      Maintained
15485 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brauner/linux.git
15486 F:      samples/pidfd/
15487 F:      tools/testing/selftests/clone3/
15488 F:      tools/testing/selftests/pid_namespace/
15489 F:      tools/testing/selftests/pidfd/
15490 K:      (?i)pidfd
15491 K:      (?i)clone3
15492 K:      \b(clone_args|kernel_clone_args)\b
15493
15494 PIN CONTROL SUBSYSTEM
15495 M:      Linus Walleij <linus.walleij@linaro.org>
15496 L:      linux-gpio@vger.kernel.org
15497 S:      Maintained
15498 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git
15499 F:      Documentation/devicetree/bindings/pinctrl/
15500 F:      Documentation/driver-api/pin-control.rst
15501 F:      drivers/pinctrl/
15502 F:      include/linux/pinctrl/
15503
15504 PIN CONTROLLER - AMD
15505 M:      Basavaraj Natikar <Basavaraj.Natikar@amd.com>
15506 M:      Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
15507 S:      Maintained
15508 F:      drivers/pinctrl/pinctrl-amd.c
15509
15510 PIN CONTROLLER - FREESCALE
15511 M:      Dong Aisheng <aisheng.dong@nxp.com>
15512 M:      Fabio Estevam <festevam@gmail.com>
15513 M:      Shawn Guo <shawnguo@kernel.org>
15514 M:      Stefan Agner <stefan@agner.ch>
15515 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
15516 L:      linux-gpio@vger.kernel.org
15517 S:      Maintained
15518 F:      Documentation/devicetree/bindings/pinctrl/fsl,*
15519 F:      drivers/pinctrl/freescale/
15520
15521 PIN CONTROLLER - INTEL
15522 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
15523 M:      Andy Shevchenko <andy@kernel.org>
15524 S:      Maintained
15525 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/intel.git
15526 F:      drivers/pinctrl/intel/
15527
15528 PIN CONTROLLER - KEEMBAY
15529 M:      Lakshmi Sowjanya D <lakshmi.sowjanya.d@intel.com>
15530 S:      Supported
15531 F:      drivers/pinctrl/pinctrl-keembay*
15532
15533 PIN CONTROLLER - MEDIATEK
15534 M:      Sean Wang <sean.wang@kernel.org>
15535 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
15536 S:      Maintained
15537 F:      Documentation/devicetree/bindings/pinctrl/mediatek,mt65xx-pinctrl.yaml
15538 F:      Documentation/devicetree/bindings/pinctrl/mediatek,mt6797-pinctrl.yaml
15539 F:      Documentation/devicetree/bindings/pinctrl/mediatek,mt7622-pinctrl.yaml
15540 F:      Documentation/devicetree/bindings/pinctrl/mediatek,mt8183-pinctrl.yaml
15541 F:      drivers/pinctrl/mediatek/
15542
15543 PIN CONTROLLER - MICROCHIP AT91
15544 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
15545 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15546 L:      linux-gpio@vger.kernel.org
15547 S:      Supported
15548 F:      drivers/gpio/gpio-sama5d2-piobu.c
15549 F:      drivers/pinctrl/pinctrl-at91*
15550
15551 PIN CONTROLLER - QUALCOMM
15552 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
15553 L:      linux-arm-msm@vger.kernel.org
15554 S:      Maintained
15555 F:      Documentation/devicetree/bindings/pinctrl/qcom,*.txt
15556 F:      drivers/pinctrl/qcom/
15557
15558 PIN CONTROLLER - RENESAS
15559 M:      Geert Uytterhoeven <geert+renesas@glider.be>
15560 L:      linux-renesas-soc@vger.kernel.org
15561 S:      Supported
15562 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git renesas-pinctrl
15563 F:      Documentation/devicetree/bindings/pinctrl/renesas,*
15564 F:      drivers/pinctrl/renesas/
15565
15566 PIN CONTROLLER - SAMSUNG
15567 M:      Tomasz Figa <tomasz.figa@gmail.com>
15568 M:      Krzysztof Kozlowski <krzk@kernel.org>
15569 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
15570 R:      Alim Akhtar <alim.akhtar@samsung.com>
15571 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15572 L:      linux-samsung-soc@vger.kernel.org
15573 S:      Maintained
15574 C:      irc://irc.libera.chat/linux-exynos
15575 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
15576 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/samsung.git
15577 F:      Documentation/devicetree/bindings/pinctrl/samsung,pinctrl*yaml
15578 F:      drivers/pinctrl/samsung/
15579 F:      include/dt-bindings/pinctrl/samsung.h
15580
15581 PIN CONTROLLER - SINGLE
15582 M:      Tony Lindgren <tony@atomide.com>
15583 M:      Haojian Zhuang <haojian.zhuang@linaro.org>
15584 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15585 L:      linux-omap@vger.kernel.org
15586 S:      Maintained
15587 F:      drivers/pinctrl/pinctrl-single.c
15588
15589 PIN CONTROLLER - THUNDERBAY
15590 M:      Lakshmi Sowjanya D <lakshmi.sowjanya.d@intel.com>
15591 S:      Supported
15592 F:      drivers/pinctrl/pinctrl-thunderbay.c
15593
15594 PIN CONTROLLER - SUNPLUS / TIBBO
15595 M:      Dvorkin Dmitry <dvorkin@tibbo.com>
15596 M:      Wells Lu <wellslutw@gmail.com>
15597 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15598 S:      Maintained
15599 W:      https://sunplus.atlassian.net/wiki/spaces/doc/overview
15600 F:      Documentation/devicetree/bindings/pinctrl/sunplus,*
15601 F:      drivers/pinctrl/sunplus/
15602 F:      include/dt-bindings/pinctrl/sppctl*.h
15603
15604 PKTCDVD DRIVER
15605 M:      linux-block@vger.kernel.org
15606 S:      Orphan
15607 F:      drivers/block/pktcdvd.c
15608 F:      include/linux/pktcdvd.h
15609 F:      include/uapi/linux/pktcdvd.h
15610
15611 PLANTOWER PMS7003 AIR POLLUTION SENSOR DRIVER
15612 M:      Tomasz Duszynski <tduszyns@gmail.com>
15613 S:      Maintained
15614 F:      Documentation/devicetree/bindings/iio/chemical/plantower,pms7003.yaml
15615 F:      drivers/iio/chemical/pms7003.c
15616
15617 PLDMFW LIBRARY
15618 M:      Jacob Keller <jacob.e.keller@intel.com>
15619 S:      Maintained
15620 F:      Documentation/driver-api/pldmfw/
15621 F:      include/linux/pldmfw.h
15622 F:      lib/pldmfw/
15623
15624 PLX DMA DRIVER
15625 M:      Logan Gunthorpe <logang@deltatee.com>
15626 S:      Maintained
15627 F:      drivers/dma/plx_dma.c
15628
15629 PM6764TR DRIVER
15630 M:      Charles Hsu     <hsu.yungteng@gmail.com>
15631 L:      linux-hwmon@vger.kernel.org
15632 S:      Maintained
15633 F:      Documentation/hwmon/pm6764tr.rst
15634 F:      drivers/hwmon/pmbus/pm6764tr.c
15635
15636 PM-GRAPH UTILITY
15637 M:      "Todd E Brandt" <todd.e.brandt@linux.intel.com>
15638 L:      linux-pm@vger.kernel.org
15639 S:      Supported
15640 W:      https://01.org/pm-graph
15641 B:      https://bugzilla.kernel.org/buglist.cgi?component=pm-graph&product=Tools
15642 T:      git git://github.com/intel/pm-graph
15643 F:      tools/power/pm-graph
15644
15645 PMBUS HARDWARE MONITORING DRIVERS
15646 M:      Guenter Roeck <linux@roeck-us.net>
15647 L:      linux-hwmon@vger.kernel.org
15648 S:      Maintained
15649 W:      http://hwmon.wiki.kernel.org/
15650 W:      http://www.roeck-us.net/linux/drivers/
15651 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
15652 F:      Documentation/devicetree/bindings/hwmon/ltc2978.txt
15653 F:      Documentation/devicetree/bindings/hwmon/max31785.txt
15654 F:      Documentation/hwmon/adm1275.rst
15655 F:      Documentation/hwmon/ibm-cffps.rst
15656 F:      Documentation/hwmon/ir35221.rst
15657 F:      Documentation/hwmon/lm25066.rst
15658 F:      Documentation/hwmon/ltc2978.rst
15659 F:      Documentation/hwmon/ltc3815.rst
15660 F:      Documentation/hwmon/max16064.rst
15661 F:      Documentation/hwmon/max20751.rst
15662 F:      Documentation/hwmon/max31785.rst
15663 F:      Documentation/hwmon/max34440.rst
15664 F:      Documentation/hwmon/max8688.rst
15665 F:      Documentation/hwmon/pmbus-core.rst
15666 F:      Documentation/hwmon/pmbus.rst
15667 F:      Documentation/hwmon/tps40422.rst
15668 F:      Documentation/hwmon/ucd9000.rst
15669 F:      Documentation/hwmon/ucd9200.rst
15670 F:      Documentation/hwmon/zl6100.rst
15671 F:      drivers/hwmon/pmbus/
15672 F:      include/linux/pmbus.h
15673
15674 PMC SIERRA MaxRAID DRIVER
15675 L:      linux-scsi@vger.kernel.org
15676 S:      Orphan
15677 W:      http://www.pmc-sierra.com/
15678 F:      drivers/scsi/pmcraid.*
15679
15680 PMC SIERRA PM8001 DRIVER
15681 M:      Jack Wang <jinpu.wang@cloud.ionos.com>
15682 L:      linux-scsi@vger.kernel.org
15683 S:      Supported
15684 F:      drivers/scsi/pm8001/
15685
15686 PNI RM3100 IIO DRIVER
15687 M:      Song Qiang <songqiang1304521@gmail.com>
15688 L:      linux-iio@vger.kernel.org
15689 S:      Maintained
15690 F:      Documentation/devicetree/bindings/iio/magnetometer/pni,rm3100.yaml
15691 F:      drivers/iio/magnetometer/rm3100*
15692
15693 PNP SUPPORT
15694 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
15695 L:      linux-acpi@vger.kernel.org
15696 S:      Maintained
15697 F:      drivers/pnp/
15698 F:      include/linux/pnp.h
15699
15700 POSIX CLOCKS and TIMERS
15701 M:      Thomas Gleixner <tglx@linutronix.de>
15702 L:      linux-kernel@vger.kernel.org
15703 S:      Maintained
15704 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
15705 F:      fs/timerfd.c
15706 F:      include/linux/time_namespace.h
15707 F:      include/linux/timer*
15708 F:      kernel/time/*timer*
15709 F:      kernel/time/namespace.c
15710
15711 POWER MANAGEMENT CORE
15712 M:      "Rafael J. Wysocki" <rafael@kernel.org>
15713 L:      linux-pm@vger.kernel.org
15714 S:      Supported
15715 B:      https://bugzilla.kernel.org
15716 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
15717 F:      drivers/base/power/
15718 F:      drivers/powercap/
15719 F:      include/linux/intel_rapl.h
15720 F:      include/linux/pm.h
15721 F:      include/linux/pm_*
15722 F:      include/linux/powercap.h
15723 F:      kernel/configs/nopm.config
15724
15725 DYNAMIC THERMAL POWER MANAGEMENT (DTPM)
15726 M:      Daniel Lezcano <daniel.lezcano@kernel.org>
15727 L:      linux-pm@vger.kernel.org
15728 S:      Supported
15729 B:      https://bugzilla.kernel.org
15730 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
15731 F:      drivers/powercap/dtpm*
15732 F:      include/linux/dtpm.h
15733
15734 POWER STATE COORDINATION INTERFACE (PSCI)
15735 M:      Mark Rutland <mark.rutland@arm.com>
15736 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
15737 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15738 S:      Maintained
15739 F:      drivers/firmware/psci/
15740 F:      include/linux/psci.h
15741 F:      include/uapi/linux/psci.h
15742
15743 POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
15744 M:      Sebastian Reichel <sre@kernel.org>
15745 L:      linux-pm@vger.kernel.org
15746 S:      Maintained
15747 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
15748 F:      Documentation/ABI/testing/sysfs-class-power
15749 F:      Documentation/devicetree/bindings/power/supply/
15750 F:      drivers/power/supply/
15751 F:      include/linux/power/
15752 F:      include/linux/power_supply.h
15753
15754 POWERNV OPERATOR PANEL LCD DISPLAY DRIVER
15755 M:      Suraj Jitindar Singh <sjitindarsingh@gmail.com>
15756 L:      linuxppc-dev@lists.ozlabs.org
15757 S:      Maintained
15758 F:      drivers/char/powernv-op-panel.c
15759
15760 PPP OVER ATM (RFC 2364)
15761 M:      Mitchell Blank Jr <mitch@sfgoth.com>
15762 S:      Maintained
15763 F:      include/uapi/linux/atmppp.h
15764 F:      net/atm/pppoatm.c
15765
15766 PPP OVER ETHERNET
15767 M:      Michal Ostrowski <mostrows@earthlink.net>
15768 S:      Maintained
15769 F:      drivers/net/ppp/pppoe.c
15770 F:      drivers/net/ppp/pppox.c
15771
15772 PPP OVER L2TP
15773 M:      James Chapman <jchapman@katalix.com>
15774 S:      Maintained
15775 F:      include/linux/if_pppol2tp.h
15776 F:      include/uapi/linux/if_pppol2tp.h
15777 F:      net/l2tp/l2tp_ppp.c
15778
15779 PPP PROTOCOL DRIVERS AND COMPRESSORS
15780 M:      Paul Mackerras <paulus@samba.org>
15781 L:      linux-ppp@vger.kernel.org
15782 S:      Maintained
15783 F:      drivers/net/ppp/ppp_*
15784
15785 PPS SUPPORT
15786 M:      Rodolfo Giometti <giometti@enneenne.com>
15787 L:      linuxpps@ml.enneenne.com (subscribers-only)
15788 S:      Maintained
15789 W:      http://wiki.enneenne.com/index.php/LinuxPPS_support
15790 F:      Documentation/ABI/testing/sysfs-pps
15791 F:      Documentation/devicetree/bindings/pps/pps-gpio.txt
15792 F:      Documentation/driver-api/pps.rst
15793 F:      drivers/pps/
15794 F:      include/linux/pps*.h
15795 F:      include/uapi/linux/pps.h
15796
15797 PPTP DRIVER
15798 M:      Dmitry Kozlov <xeb@mail.ru>
15799 L:      netdev@vger.kernel.org
15800 S:      Maintained
15801 W:      http://sourceforge.net/projects/accel-pptp
15802 F:      drivers/net/ppp/pptp.c
15803
15804 PRESSURE STALL INFORMATION (PSI)
15805 M:      Johannes Weiner <hannes@cmpxchg.org>
15806 M:      Suren Baghdasaryan <surenb@google.com>
15807 S:      Maintained
15808 F:      include/linux/psi*
15809 F:      kernel/sched/psi.c
15810
15811 PRINTK
15812 M:      Petr Mladek <pmladek@suse.com>
15813 M:      Sergey Senozhatsky <senozhatsky@chromium.org>
15814 R:      Steven Rostedt <rostedt@goodmis.org>
15815 R:      John Ogness <john.ogness@linutronix.de>
15816 S:      Maintained
15817 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/printk/linux.git
15818 F:      include/linux/printk.h
15819 F:      kernel/printk/
15820
15821 PRINTK INDEXING
15822 R:      Chris Down <chris@chrisdown.name>
15823 S:      Maintained
15824 F:      kernel/printk/index.c
15825
15826 PROC FILESYSTEM
15827 L:      linux-kernel@vger.kernel.org
15828 L:      linux-fsdevel@vger.kernel.org
15829 S:      Maintained
15830 F:      Documentation/filesystems/proc.rst
15831 F:      fs/proc/
15832 F:      include/linux/proc_fs.h
15833 F:      tools/testing/selftests/proc/
15834
15835 PROC SYSCTL
15836 M:      Luis Chamberlain <mcgrof@kernel.org>
15837 M:      Kees Cook <keescook@chromium.org>
15838 M:      Iurii Zaikin <yzaikin@google.com>
15839 L:      linux-kernel@vger.kernel.org
15840 L:      linux-fsdevel@vger.kernel.org
15841 S:      Maintained
15842 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mcgrof/linux.git sysctl-next
15843 F:      fs/proc/proc_sysctl.c
15844 F:      include/linux/sysctl.h
15845 F:      kernel/sysctl-test.c
15846 F:      kernel/sysctl.c
15847 F:      tools/testing/selftests/sysctl/
15848
15849 PS3 NETWORK SUPPORT
15850 M:      Geoff Levand <geoff@infradead.org>
15851 L:      netdev@vger.kernel.org
15852 L:      linuxppc-dev@lists.ozlabs.org
15853 S:      Maintained
15854 F:      drivers/net/ethernet/toshiba/ps3_gelic_net.*
15855
15856 PS3 PLATFORM SUPPORT
15857 M:      Geoff Levand <geoff@infradead.org>
15858 L:      linuxppc-dev@lists.ozlabs.org
15859 S:      Maintained
15860 F:      arch/powerpc/boot/ps3*
15861 F:      arch/powerpc/include/asm/lv1call.h
15862 F:      arch/powerpc/include/asm/ps3*.h
15863 F:      arch/powerpc/platforms/ps3/
15864 F:      drivers/*/ps3*
15865 F:      drivers/ps3/
15866 F:      drivers/rtc/rtc-ps3.c
15867 F:      drivers/usb/host/*ps3.c
15868 F:      sound/ppc/snd_ps3*
15869
15870 PS3VRAM DRIVER
15871 M:      Jim Paris <jim@jtan.com>
15872 M:      Geoff Levand <geoff@infradead.org>
15873 L:      linuxppc-dev@lists.ozlabs.org
15874 S:      Maintained
15875 F:      drivers/block/ps3vram.c
15876
15877 PSAMPLE PACKET SAMPLING SUPPORT
15878 M:      Yotam Gigi <yotam.gi@gmail.com>
15879 S:      Maintained
15880 F:      include/net/psample.h
15881 F:      include/uapi/linux/psample.h
15882 F:      net/psample
15883
15884 PSTORE FILESYSTEM
15885 M:      Kees Cook <keescook@chromium.org>
15886 M:      Anton Vorontsov <anton@enomsg.org>
15887 M:      Colin Cross <ccross@android.com>
15888 M:      Tony Luck <tony.luck@intel.com>
15889 S:      Maintained
15890 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/pstore
15891 F:      Documentation/admin-guide/ramoops.rst
15892 F:      Documentation/admin-guide/pstore-blk.rst
15893 F:      Documentation/devicetree/bindings/reserved-memory/ramoops.yaml
15894 F:      drivers/acpi/apei/erst.c
15895 F:      drivers/firmware/efi/efi-pstore.c
15896 F:      fs/pstore/
15897 F:      include/linux/pstore*
15898 K:      \b(pstore|ramoops)
15899
15900 PTP HARDWARE CLOCK SUPPORT
15901 M:      Richard Cochran <richardcochran@gmail.com>
15902 L:      netdev@vger.kernel.org
15903 S:      Maintained
15904 W:      http://linuxptp.sourceforge.net/
15905 F:      Documentation/ABI/testing/sysfs-ptp
15906 F:      Documentation/driver-api/ptp.rst
15907 F:      drivers/net/phy/dp83640*
15908 F:      drivers/ptp/*
15909 F:      include/linux/ptp_cl*
15910
15911 PTP VIRTUAL CLOCK SUPPORT
15912 M:      Yangbo Lu <yangbo.lu@nxp.com>
15913 L:      netdev@vger.kernel.org
15914 S:      Maintained
15915 F:      drivers/ptp/ptp_vclock.c
15916 F:      net/ethtool/phc_vclocks.c
15917
15918 PTRACE SUPPORT
15919 M:      Oleg Nesterov <oleg@redhat.com>
15920 S:      Maintained
15921 F:      arch/*/*/ptrace*.c
15922 F:      arch/*/include/asm/ptrace*.h
15923 F:      arch/*/ptrace*.c
15924 F:      include/asm-generic/syscall.h
15925 F:      include/linux/ptrace.h
15926 F:      include/linux/regset.h
15927 F:      include/linux/tracehook.h
15928 F:      include/uapi/linux/ptrace.h
15929 F:      include/uapi/linux/ptrace.h
15930 F:      kernel/ptrace.c
15931
15932 PULSE8-CEC DRIVER
15933 M:      Hans Verkuil <hverkuil@xs4all.nl>
15934 L:      linux-media@vger.kernel.org
15935 S:      Maintained
15936 T:      git git://linuxtv.org/media_tree.git
15937 F:      Documentation/admin-guide/media/pulse8-cec.rst
15938 F:      drivers/media/cec/usb/pulse8/
15939
15940 PVRUSB2 VIDEO4LINUX DRIVER
15941 M:      Mike Isely <isely@pobox.com>
15942 L:      pvrusb2@isely.net       (subscribers-only)
15943 L:      linux-media@vger.kernel.org
15944 S:      Maintained
15945 W:      http://www.isely.net/pvrusb2/
15946 T:      git git://linuxtv.org/media_tree.git
15947 F:      Documentation/driver-api/media/drivers/pvrusb2*
15948 F:      drivers/media/usb/pvrusb2/
15949
15950 PWC WEBCAM DRIVER
15951 M:      Hans Verkuil <hverkuil@xs4all.nl>
15952 L:      linux-media@vger.kernel.org
15953 S:      Odd Fixes
15954 T:      git git://linuxtv.org/media_tree.git
15955 F:      drivers/media/usb/pwc/*
15956 F:      include/trace/events/pwc.h
15957
15958 PWM FAN DRIVER
15959 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
15960 L:      linux-hwmon@vger.kernel.org
15961 S:      Supported
15962 F:      Documentation/devicetree/bindings/hwmon/pwm-fan.txt
15963 F:      Documentation/hwmon/pwm-fan.rst
15964 F:      drivers/hwmon/pwm-fan.c
15965
15966 PWM IR Transmitter
15967 M:      Sean Young <sean@mess.org>
15968 L:      linux-media@vger.kernel.org
15969 S:      Maintained
15970 F:      drivers/media/rc/pwm-ir-tx.c
15971
15972 PWM SUBSYSTEM
15973 M:      Thierry Reding <thierry.reding@gmail.com>
15974 R:      Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
15975 M:      Lee Jones <lee.jones@linaro.org>
15976 L:      linux-pwm@vger.kernel.org
15977 S:      Maintained
15978 Q:      https://patchwork.ozlabs.org/project/linux-pwm/list/
15979 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git
15980 F:      Documentation/devicetree/bindings/gpio/gpio-mvebu.txt
15981 F:      Documentation/devicetree/bindings/pwm/
15982 F:      Documentation/driver-api/pwm.rst
15983 F:      drivers/gpio/gpio-mvebu.c
15984 F:      drivers/pwm/
15985 F:      drivers/video/backlight/pwm_bl.c
15986 F:      include/linux/pwm.h
15987 F:      include/linux/pwm_backlight.h
15988 K:      pwm_(config|apply_state|ops)
15989
15990 PXA GPIO DRIVER
15991 M:      Robert Jarzmik <robert.jarzmik@free.fr>
15992 L:      linux-gpio@vger.kernel.org
15993 S:      Maintained
15994 F:      drivers/gpio/gpio-pxa.c
15995
15996 PXA MMCI DRIVER
15997 S:      Orphan
15998
15999 PXA RTC DRIVER
16000 M:      Robert Jarzmik <robert.jarzmik@free.fr>
16001 L:      linux-rtc@vger.kernel.org
16002 S:      Maintained
16003
16004 PXA2xx/PXA3xx SUPPORT
16005 M:      Daniel Mack <daniel@zonque.org>
16006 M:      Haojian Zhuang <haojian.zhuang@gmail.com>
16007 M:      Robert Jarzmik <robert.jarzmik@free.fr>
16008 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16009 S:      Maintained
16010 T:      git git://github.com/hzhuang1/linux.git
16011 T:      git git://github.com/rjarzmik/linux.git
16012 F:      arch/arm/boot/dts/pxa*
16013 F:      arch/arm/mach-pxa/
16014 F:      drivers/dma/pxa*
16015 F:      drivers/pcmcia/pxa2xx*
16016 F:      drivers/pinctrl/pxa/
16017 F:      drivers/spi/spi-pxa2xx*
16018 F:      drivers/usb/gadget/udc/pxa2*
16019 F:      include/sound/pxa2xx-lib.h
16020 F:      sound/arm/pxa*
16021 F:      sound/soc/pxa/
16022
16023 QAT DRIVER
16024 M:      Giovanni Cabiddu <giovanni.cabiddu@intel.com>
16025 L:      qat-linux@intel.com
16026 S:      Supported
16027 F:      drivers/crypto/qat/
16028
16029 QCOM AUDIO (ASoC) DRIVERS
16030 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
16031 M:      Banajit Goswami <bgoswami@codeaurora.org>
16032 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16033 S:      Supported
16034 F:      sound/soc/codecs/lpass-va-macro.c
16035 F:      sound/soc/codecs/lpass-wsa-macro.*
16036 F:      sound/soc/codecs/msm8916-wcd-analog.c
16037 F:      sound/soc/codecs/msm8916-wcd-digital.c
16038 F:      sound/soc/codecs/wcd9335.*
16039 F:      sound/soc/codecs/wcd934x.c
16040 F:      sound/soc/codecs/wcd-clsh-v2.*
16041 F:      sound/soc/codecs/wsa881x.c
16042 F:      sound/soc/qcom/
16043
16044 QCOM EMBEDDED USB DEBUGGER (EUD)
16045 M:      Souradeep Chowdhury <quic_schowdhu@quicinc.com>
16046 L:      linux-arm-msm@vger.kernel.org
16047 S:      Maintained
16048 F:      Documentation/ABI/testing/sysfs-driver-eud
16049 F:      Documentation/devicetree/bindings/soc/qcom/qcom,eud.yaml
16050 F:      drivers/usb/misc/qcom_eud.c
16051
16052 QCOM IPA DRIVER
16053 M:      Alex Elder <elder@kernel.org>
16054 L:      netdev@vger.kernel.org
16055 S:      Supported
16056 F:      drivers/net/ipa/
16057
16058 QEMU MACHINE EMULATOR AND VIRTUALIZER SUPPORT
16059 M:      Gabriel Somlo <somlo@cmu.edu>
16060 M:      "Michael S. Tsirkin" <mst@redhat.com>
16061 L:      qemu-devel@nongnu.org
16062 S:      Maintained
16063 F:      drivers/firmware/qemu_fw_cfg.c
16064 F:      include/uapi/linux/qemu_fw_cfg.h
16065
16066 QIB DRIVER
16067 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
16068 M:      Mike Marciniszyn <mike.marciniszyn@cornelisnetworks.com>
16069 L:      linux-rdma@vger.kernel.org
16070 S:      Supported
16071 F:      drivers/infiniband/hw/qib/
16072
16073 QLOGIC QL41xxx FCOE DRIVER
16074 M:      Saurav Kashyap <skashyap@marvell.com>
16075 M:      Javed Hasan <jhasan@marvell.com>
16076 M:      GR-QLogic-Storage-Upstream@marvell.com
16077 L:      linux-scsi@vger.kernel.org
16078 S:      Supported
16079 F:      drivers/scsi/qedf/
16080
16081 QLOGIC QL41xxx ISCSI DRIVER
16082 M:      Nilesh Javali <njavali@marvell.com>
16083 M:      Manish Rangankar <mrangankar@marvell.com>
16084 M:      GR-QLogic-Storage-Upstream@marvell.com
16085 L:      linux-scsi@vger.kernel.org
16086 S:      Supported
16087 F:      drivers/scsi/qedi/
16088
16089 QLOGIC QL4xxx ETHERNET DRIVER
16090 M:      Ariel Elior <aelior@marvell.com>
16091 M:      Manish Chopra <manishc@marvell.com>
16092 L:      netdev@vger.kernel.org
16093 S:      Supported
16094 F:      drivers/net/ethernet/qlogic/qed/
16095 F:      drivers/net/ethernet/qlogic/qede/
16096 F:      include/linux/qed/
16097
16098 QLOGIC QL4xxx RDMA DRIVER
16099 M:      Michal Kalderon <mkalderon@marvell.com>
16100 M:      Ariel Elior <aelior@marvell.com>
16101 L:      linux-rdma@vger.kernel.org
16102 S:      Supported
16103 F:      drivers/infiniband/hw/qedr/
16104 F:      include/uapi/rdma/qedr-abi.h
16105
16106 QLOGIC QLA1280 SCSI DRIVER
16107 M:      Michael Reed <mdr@sgi.com>
16108 L:      linux-scsi@vger.kernel.org
16109 S:      Maintained
16110 F:      drivers/scsi/qla1280.[ch]
16111
16112 QLOGIC QLA2XXX FC-SCSI DRIVER
16113 M:      Nilesh Javali <njavali@marvell.com>
16114 M:      GR-QLogic-Storage-Upstream@marvell.com
16115 L:      linux-scsi@vger.kernel.org
16116 S:      Supported
16117 F:      drivers/scsi/qla2xxx/
16118
16119 QLOGIC QLA3XXX NETWORK DRIVER
16120 M:      GR-Linux-NIC-Dev@marvell.com
16121 L:      netdev@vger.kernel.org
16122 S:      Supported
16123 F:      drivers/net/ethernet/qlogic/qla3xxx.*
16124
16125 QLOGIC QLA4XXX iSCSI DRIVER
16126 M:      Nilesh Javali <njavali@marvell.com>
16127 M:      Manish Rangankar <mrangankar@marvell.com>
16128 M:      GR-QLogic-Storage-Upstream@marvell.com
16129 L:      linux-scsi@vger.kernel.org
16130 S:      Supported
16131 F:      drivers/scsi/qla4xxx/
16132
16133 QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
16134 M:      Shahed Shaikh <shshaikh@marvell.com>
16135 M:      Manish Chopra <manishc@marvell.com>
16136 M:      GR-Linux-NIC-Dev@marvell.com
16137 L:      netdev@vger.kernel.org
16138 S:      Supported
16139 F:      drivers/net/ethernet/qlogic/qlcnic/
16140
16141 QLOGIC QLGE 10Gb ETHERNET DRIVER
16142 M:      Manish Chopra <manishc@marvell.com>
16143 M:      GR-Linux-NIC-Dev@marvell.com
16144 M:      Coiby Xu <coiby.xu@gmail.com>
16145 L:      netdev@vger.kernel.org
16146 S:      Supported
16147 F:      Documentation/networking/device_drivers/qlogic/qlge.rst
16148 F:      drivers/staging/qlge/
16149
16150 QM1D1B0004 MEDIA DRIVER
16151 M:      Akihiro Tsukada <tskd08@gmail.com>
16152 L:      linux-media@vger.kernel.org
16153 S:      Odd Fixes
16154 F:      drivers/media/tuners/qm1d1b0004*
16155
16156 QM1D1C0042 MEDIA DRIVER
16157 M:      Akihiro Tsukada <tskd08@gmail.com>
16158 L:      linux-media@vger.kernel.org
16159 S:      Odd Fixes
16160 F:      drivers/media/tuners/qm1d1c0042*
16161
16162 QNX4 FILESYSTEM
16163 M:      Anders Larsen <al@alarsen.net>
16164 S:      Maintained
16165 W:      http://www.alarsen.net/linux/qnx4fs/
16166 F:      fs/qnx4/
16167 F:      include/uapi/linux/qnx4_fs.h
16168 F:      include/uapi/linux/qnxtypes.h
16169
16170 QORIQ DPAA2 FSL-MC BUS DRIVER
16171 M:      Stuart Yoder <stuyoder@gmail.com>
16172 M:      Laurentiu Tudor <laurentiu.tudor@nxp.com>
16173 L:      linux-kernel@vger.kernel.org
16174 S:      Maintained
16175 F:      Documentation/ABI/stable/sysfs-bus-fsl-mc
16176 F:      Documentation/devicetree/bindings/misc/fsl,qoriq-mc.txt
16177 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/overview.rst
16178 F:      drivers/bus/fsl-mc/
16179 F:      include/uapi/linux/fsl_mc.h
16180
16181 QT1010 MEDIA DRIVER
16182 M:      Antti Palosaari <crope@iki.fi>
16183 L:      linux-media@vger.kernel.org
16184 S:      Maintained
16185 W:      https://linuxtv.org
16186 W:      http://palosaari.fi/linux/
16187 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16188 T:      git git://linuxtv.org/anttip/media_tree.git
16189 F:      drivers/media/tuners/qt1010*
16190
16191 QUALCOMM ATHEROS ATH10K WIRELESS DRIVER
16192 M:      Kalle Valo <kvalo@kernel.org>
16193 L:      ath10k@lists.infradead.org
16194 S:      Supported
16195 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath10k
16196 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
16197 F:      drivers/net/wireless/ath/ath10k/
16198 F:      Documentation/devicetree/bindings/net/wireless/qcom,ath10k.txt
16199
16200 QUALCOMM ATHEROS ATH11K WIRELESS DRIVER
16201 M:      Kalle Valo <kvalo@kernel.org>
16202 L:      ath11k@lists.infradead.org
16203 S:      Supported
16204 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
16205 F:      Documentation/devicetree/bindings/net/wireless/qcom,ath11k.yaml
16206 F:      drivers/net/wireless/ath/ath11k/
16207
16208 QUALCOMM ATHEROS ATH9K WIRELESS DRIVER
16209 M:      Toke Høiland-Jørgensen <toke@toke.dk>
16210 L:      linux-wireless@vger.kernel.org
16211 S:      Maintained
16212 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath9k
16213 F:      Documentation/devicetree/bindings/net/wireless/qca,ath9k.yaml
16214 F:      drivers/net/wireless/ath/ath9k/
16215
16216 QUALCOMM BAM-DMUX WWAN NETWORK DRIVER
16217 M:      Stephan Gerhold <stephan@gerhold.net>
16218 L:      netdev@vger.kernel.org
16219 L:      linux-arm-msm@vger.kernel.org
16220 S:      Maintained
16221 F:      Documentation/devicetree/bindings/net/qcom,bam-dmux.yaml
16222 F:      drivers/net/wwan/qcom_bam_dmux.c
16223
16224 QUALCOMM CAMERA SUBSYSTEM DRIVER
16225 M:      Robert Foss <robert.foss@linaro.org>
16226 M:      Todor Tomov <todor.too@gmail.com>
16227 L:      linux-media@vger.kernel.org
16228 S:      Maintained
16229 F:      Documentation/admin-guide/media/qcom_camss.rst
16230 F:      Documentation/devicetree/bindings/media/*camss*
16231 F:      drivers/media/platform/qcom/camss/
16232
16233 QUALCOMM CLOCK DRIVERS
16234 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
16235 L:      linux-arm-msm@vger.kernel.org
16236 S:      Supported
16237 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/qcom/linux.git
16238 F:      Documentation/devicetree/bindings/clock/qcom,*
16239 F:      drivers/clk/qcom/
16240 F:      include/dt-bindings/clock/qcom,*
16241
16242 QUALCOMM CORE POWER REDUCTION (CPR) AVS DRIVER
16243 M:      Niklas Cassel <nks@flawful.org>
16244 L:      linux-pm@vger.kernel.org
16245 L:      linux-arm-msm@vger.kernel.org
16246 S:      Maintained
16247 F:      Documentation/devicetree/bindings/power/avs/qcom,cpr.txt
16248 F:      drivers/soc/qcom/cpr.c
16249
16250 QUALCOMM CPUFREQ DRIVER MSM8996/APQ8096
16251 M:      Ilia Lin <ilia.lin@kernel.org>
16252 L:      linux-pm@vger.kernel.org
16253 S:      Maintained
16254 F:      Documentation/devicetree/bindings/opp/qcom-nvmem-cpufreq.txt
16255 F:      drivers/cpufreq/qcom-cpufreq-nvmem.c
16256
16257 QUALCOMM CRYPTO DRIVERS
16258 M:      Thara Gopinath <thara.gopinath@linaro.org>
16259 L:      linux-crypto@vger.kernel.org
16260 L:      linux-arm-msm@vger.kernel.org
16261 S:      Maintained
16262 F:      drivers/crypto/qce/
16263
16264 QUALCOMM EMAC GIGABIT ETHERNET DRIVER
16265 M:      Timur Tabi <timur@kernel.org>
16266 L:      netdev@vger.kernel.org
16267 S:      Maintained
16268 F:      drivers/net/ethernet/qualcomm/emac/
16269
16270 QUALCOMM ETHQOS ETHERNET DRIVER
16271 M:      Vinod Koul <vkoul@kernel.org>
16272 L:      netdev@vger.kernel.org
16273 S:      Maintained
16274 F:      Documentation/devicetree/bindings/net/qcom,ethqos.txt
16275 F:      drivers/net/ethernet/stmicro/stmmac/dwmac-qcom-ethqos.c
16276
16277 QUALCOMM FASTRPC DRIVER
16278 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
16279 M:      Amol Maheshwari <amahesh@qti.qualcomm.com>
16280 L:      linux-arm-msm@vger.kernel.org
16281 S:      Maintained
16282 F:      Documentation/devicetree/bindings/misc/qcom,fastrpc.txt
16283 F:      drivers/misc/fastrpc.c
16284 F:      include/uapi/misc/fastrpc.h
16285
16286 QUALCOMM HEXAGON ARCHITECTURE
16287 M:      Brian Cain <bcain@codeaurora.org>
16288 L:      linux-hexagon@vger.kernel.org
16289 S:      Supported
16290 F:      arch/hexagon/
16291
16292 QUALCOMM HIDMA DRIVER
16293 M:      Sinan Kaya <okaya@kernel.org>
16294 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16295 L:      linux-arm-msm@vger.kernel.org
16296 L:      dmaengine@vger.kernel.org
16297 S:      Supported
16298 F:      drivers/dma/qcom/hidma*
16299
16300 QUALCOMM I2C CCI DRIVER
16301 M:      Loic Poulain <loic.poulain@linaro.org>
16302 M:      Robert Foss <robert.foss@linaro.org>
16303 L:      linux-i2c@vger.kernel.org
16304 L:      linux-arm-msm@vger.kernel.org
16305 S:      Maintained
16306 F:      Documentation/devicetree/bindings/i2c/i2c-qcom-cci.txt
16307 F:      drivers/i2c/busses/i2c-qcom-cci.c
16308
16309 QUALCOMM IOMMU
16310 M:      Rob Clark <robdclark@gmail.com>
16311 L:      iommu@lists.linux-foundation.org
16312 L:      linux-arm-msm@vger.kernel.org
16313 S:      Maintained
16314 F:      drivers/iommu/arm/arm-smmu/qcom_iommu.c
16315
16316 QUALCOMM IPC ROUTER (QRTR) DRIVER
16317 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
16318 L:      linux-arm-msm@vger.kernel.org
16319 S:      Maintained
16320 F:      include/trace/events/qrtr.h
16321 F:      include/uapi/linux/qrtr.h
16322 F:      net/qrtr/
16323
16324 QUALCOMM IPCC MAILBOX DRIVER
16325 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
16326 L:      linux-arm-msm@vger.kernel.org
16327 S:      Supported
16328 F:      Documentation/devicetree/bindings/mailbox/qcom-ipcc.yaml
16329 F:      drivers/mailbox/qcom-ipcc.c
16330 F:      include/dt-bindings/mailbox/qcom-ipcc.h
16331
16332 QUALCOMM IPQ4019 USB PHY DRIVER
16333 M:      Robert Marko <robert.marko@sartura.hr>
16334 M:      Luka Perkov <luka.perkov@sartura.hr>
16335 L:      linux-arm-msm@vger.kernel.org
16336 S:      Maintained
16337 F:      Documentation/devicetree/bindings/phy/qcom-usb-ipq4019-phy.yaml
16338 F:      drivers/phy/qualcomm/phy-qcom-ipq4019-usb.c
16339
16340 QUALCOMM IPQ4019 VQMMC REGULATOR DRIVER
16341 M:      Robert Marko <robert.marko@sartura.hr>
16342 M:      Luka Perkov <luka.perkov@sartura.hr>
16343 L:      linux-arm-msm@vger.kernel.org
16344 S:      Maintained
16345 F:      Documentation/devicetree/bindings/regulator/vqmmc-ipq4019-regulator.yaml
16346 F:      drivers/regulator/vqmmc-ipq4019-regulator.c
16347
16348 QUALCOMM NAND CONTROLLER DRIVER
16349 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
16350 L:      linux-mtd@lists.infradead.org
16351 L:      linux-arm-msm@vger.kernel.org
16352 S:      Maintained
16353 F:      Documentation/devicetree/bindings/mtd/qcom,nandc.yaml
16354 F:      drivers/mtd/nand/raw/qcom_nandc.c
16355
16356 QUALCOMM RMNET DRIVER
16357 M:      Subash Abhinov Kasiviswanathan <quic_subashab@quicinc.com>
16358 M:      Sean Tranchetti <quic_stranche@quicinc.com>
16359 L:      netdev@vger.kernel.org
16360 S:      Maintained
16361 F:      Documentation/networking/device_drivers/cellular/qualcomm/rmnet.rst
16362 F:      drivers/net/ethernet/qualcomm/rmnet/
16363 F:      include/linux/if_rmnet.h
16364
16365 QUALCOMM TSENS THERMAL DRIVER
16366 M:      Amit Kucheria <amitk@kernel.org>
16367 M:      Thara Gopinath <thara.gopinath@linaro.org>
16368 L:      linux-pm@vger.kernel.org
16369 L:      linux-arm-msm@vger.kernel.org
16370 S:      Maintained
16371 F:      Documentation/devicetree/bindings/thermal/qcom-tsens.yaml
16372 F:      drivers/thermal/qcom/
16373
16374 QUALCOMM VENUS VIDEO ACCELERATOR DRIVER
16375 M:      Stanimir Varbanov <stanimir.varbanov@linaro.org>
16376 L:      linux-media@vger.kernel.org
16377 L:      linux-arm-msm@vger.kernel.org
16378 S:      Maintained
16379 T:      git git://linuxtv.org/media_tree.git
16380 F:      Documentation/devicetree/bindings/media/*venus*
16381 F:      drivers/media/platform/qcom/venus/
16382
16383 QUALCOMM WCN36XX WIRELESS DRIVER
16384 M:      Loic Poulain <loic.poulain@linaro.org>
16385 L:      wcn36xx@lists.infradead.org
16386 S:      Supported
16387 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wcn36xx
16388 F:      drivers/net/wireless/ath/wcn36xx/
16389
16390 QUANTENNA QTNFMAC WIRELESS DRIVER
16391 M:      Igor Mitsyanko <imitsyanko@quantenna.com>
16392 R:      Sergey Matyukevich <geomatsi@gmail.com>
16393 L:      linux-wireless@vger.kernel.org
16394 S:      Maintained
16395 F:      drivers/net/wireless/quantenna
16396
16397 RADEON and AMDGPU DRM DRIVERS
16398 M:      Alex Deucher <alexander.deucher@amd.com>
16399 M:      Christian König <christian.koenig@amd.com>
16400 M:      Pan, Xinhui <Xinhui.Pan@amd.com>
16401 L:      amd-gfx@lists.freedesktop.org
16402 S:      Supported
16403 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
16404 B:      https://gitlab.freedesktop.org/drm/amd/-/issues
16405 C:      irc://irc.oftc.net/radeon
16406 F:      drivers/gpu/drm/amd/
16407 F:      drivers/gpu/drm/radeon/
16408 F:      include/uapi/drm/amdgpu_drm.h
16409 F:      include/uapi/drm/radeon_drm.h
16410
16411 RADEON FRAMEBUFFER DISPLAY DRIVER
16412 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
16413 L:      linux-fbdev@vger.kernel.org
16414 S:      Maintained
16415 F:      drivers/video/fbdev/aty/radeon*
16416 F:      include/uapi/linux/radeonfb.h
16417
16418 RADIOSHARK RADIO DRIVER
16419 M:      Hans Verkuil <hverkuil@xs4all.nl>
16420 L:      linux-media@vger.kernel.org
16421 S:      Maintained
16422 T:      git git://linuxtv.org/media_tree.git
16423 F:      drivers/media/radio/radio-shark.c
16424
16425 RADIOSHARK2 RADIO DRIVER
16426 M:      Hans Verkuil <hverkuil@xs4all.nl>
16427 L:      linux-media@vger.kernel.org
16428 S:      Maintained
16429 T:      git git://linuxtv.org/media_tree.git
16430 F:      drivers/media/radio/radio-shark2.c
16431 F:      drivers/media/radio/radio-tea5777.c
16432
16433 RADOS BLOCK DEVICE (RBD)
16434 M:      Ilya Dryomov <idryomov@gmail.com>
16435 R:      Dongsheng Yang <dongsheng.yang@easystack.cn>
16436 L:      ceph-devel@vger.kernel.org
16437 S:      Supported
16438 W:      http://ceph.com/
16439 T:      git git://github.com/ceph/ceph-client.git
16440 F:      Documentation/ABI/testing/sysfs-bus-rbd
16441 F:      drivers/block/rbd.c
16442 F:      drivers/block/rbd_types.h
16443
16444 RAGE128 FRAMEBUFFER DISPLAY DRIVER
16445 M:      Paul Mackerras <paulus@samba.org>
16446 L:      linux-fbdev@vger.kernel.org
16447 S:      Maintained
16448 F:      drivers/video/fbdev/aty/aty128fb.c
16449
16450 RAINSHADOW-CEC DRIVER
16451 M:      Hans Verkuil <hverkuil@xs4all.nl>
16452 L:      linux-media@vger.kernel.org
16453 S:      Maintained
16454 T:      git git://linuxtv.org/media_tree.git
16455 F:      drivers/media/cec/usb/rainshadow/
16456
16457 RALINK MIPS ARCHITECTURE
16458 M:      John Crispin <john@phrozen.org>
16459 L:      linux-mips@vger.kernel.org
16460 S:      Maintained
16461 F:      arch/mips/ralink
16462
16463 RALINK RT2X00 WIRELESS LAN DRIVER
16464 M:      Stanislaw Gruszka <stf_xl@wp.pl>
16465 M:      Helmut Schaa <helmut.schaa@googlemail.com>
16466 L:      linux-wireless@vger.kernel.org
16467 S:      Maintained
16468 F:      drivers/net/wireless/ralink/rt2x00/
16469
16470 RAMDISK RAM BLOCK DEVICE DRIVER
16471 M:      Jens Axboe <axboe@kernel.dk>
16472 S:      Maintained
16473 F:      Documentation/admin-guide/blockdev/ramdisk.rst
16474 F:      drivers/block/brd.c
16475
16476 RANCHU VIRTUAL BOARD FOR MIPS
16477 M:      Miodrag Dinic <miodrag.dinic@mips.com>
16478 L:      linux-mips@vger.kernel.org
16479 S:      Supported
16480 F:      arch/mips/configs/generic/board-ranchu.config
16481 F:      arch/mips/generic/board-ranchu.c
16482
16483 RANDOM NUMBER DRIVER
16484 M:      "Theodore Ts'o" <tytso@mit.edu>
16485 M:      Jason A. Donenfeld <Jason@zx2c4.com>
16486 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/crng/random.git
16487 S:      Maintained
16488 F:      drivers/char/random.c
16489 F:      drivers/virt/vmgenid.c
16490
16491 RAPIDIO SUBSYSTEM
16492 M:      Matt Porter <mporter@kernel.crashing.org>
16493 M:      Alexandre Bounine <alex.bou9@gmail.com>
16494 S:      Maintained
16495 F:      drivers/rapidio/
16496
16497 RAS INFRASTRUCTURE
16498 M:      Tony Luck <tony.luck@intel.com>
16499 M:      Borislav Petkov <bp@alien8.de>
16500 L:      linux-edac@vger.kernel.org
16501 S:      Maintained
16502 F:      Documentation/admin-guide/ras.rst
16503 F:      drivers/ras/
16504 F:      include/linux/ras.h
16505 F:      include/ras/ras_event.h
16506
16507 RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
16508 L:      linux-wireless@vger.kernel.org
16509 S:      Orphan
16510 F:      drivers/net/wireless/ray*
16511
16512 RC-CORE / LIRC FRAMEWORK
16513 M:      Sean Young <sean@mess.org>
16514 L:      linux-media@vger.kernel.org
16515 S:      Maintained
16516 W:      http://linuxtv.org
16517 T:      git git://linuxtv.org/media_tree.git
16518 F:      Documentation/driver-api/media/rc-core.rst
16519 F:      Documentation/userspace-api/media/rc/
16520 F:      drivers/media/rc/
16521 F:      include/media/rc-map.h
16522 F:      include/media/rc-core.h
16523 F:      include/uapi/linux/lirc.h
16524
16525 RCMM REMOTE CONTROLS DECODER
16526 M:      Patrick Lerda <patrick9876@free.fr>
16527 S:      Maintained
16528 F:      drivers/media/rc/ir-rcmm-decoder.c
16529
16530 RCUTORTURE TEST FRAMEWORK
16531 M:      "Paul E. McKenney" <paulmck@kernel.org>
16532 M:      Josh Triplett <josh@joshtriplett.org>
16533 R:      Steven Rostedt <rostedt@goodmis.org>
16534 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
16535 R:      Lai Jiangshan <jiangshanlai@gmail.com>
16536 L:      rcu@vger.kernel.org
16537 S:      Supported
16538 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
16539 F:      tools/testing/selftests/rcutorture
16540
16541 RDACM20 Camera Sensor
16542 M:      Jacopo Mondi <jacopo+renesas@jmondi.org>
16543 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
16544 M:      Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
16545 M:      Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
16546 L:      linux-media@vger.kernel.org
16547 S:      Maintained
16548 F:      Documentation/devicetree/bindings/media/i2c/imi,rdacm2x-gmsl.yaml
16549 F:      drivers/media/i2c/max9271.c
16550 F:      drivers/media/i2c/max9271.h
16551 F:      drivers/media/i2c/rdacm20.c
16552
16553 RDACM21 Camera Sensor
16554 M:      Jacopo Mondi <jacopo+renesas@jmondi.org>
16555 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
16556 M:      Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
16557 M:      Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
16558 L:      linux-media@vger.kernel.org
16559 S:      Maintained
16560 F:      Documentation/devicetree/bindings/media/i2c/imi,rdacm2x-gmsl.yaml
16561 F:      drivers/media/i2c/max9271.c
16562 F:      drivers/media/i2c/max9271.h
16563 F:      drivers/media/i2c/rdacm21.c
16564
16565 RDC R-321X SoC
16566 M:      Florian Fainelli <florian@openwrt.org>
16567 S:      Maintained
16568
16569 RDC R6040 FAST ETHERNET DRIVER
16570 M:      Florian Fainelli <f.fainelli@gmail.com>
16571 L:      netdev@vger.kernel.org
16572 S:      Maintained
16573 F:      drivers/net/ethernet/rdc/r6040.c
16574
16575 RDMAVT - RDMA verbs software
16576 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
16577 M:      Mike Marciniszyn <mike.marciniszyn@cornelisnetworks.com>
16578 L:      linux-rdma@vger.kernel.org
16579 S:      Supported
16580 F:      drivers/infiniband/sw/rdmavt
16581
16582 RDS - RELIABLE DATAGRAM SOCKETS
16583 M:      Santosh Shilimkar <santosh.shilimkar@oracle.com>
16584 L:      netdev@vger.kernel.org
16585 L:      linux-rdma@vger.kernel.org
16586 L:      rds-devel@oss.oracle.com (moderated for non-subscribers)
16587 S:      Supported
16588 W:      https://oss.oracle.com/projects/rds/
16589 F:      Documentation/networking/rds.rst
16590 F:      net/rds/
16591
16592 RDT - RESOURCE ALLOCATION
16593 M:      Fenghua Yu <fenghua.yu@intel.com>
16594 M:      Reinette Chatre <reinette.chatre@intel.com>
16595 L:      linux-kernel@vger.kernel.org
16596 S:      Supported
16597 F:      Documentation/x86/resctrl*
16598 F:      arch/x86/include/asm/resctrl.h
16599 F:      arch/x86/kernel/cpu/resctrl/
16600 F:      tools/testing/selftests/resctrl/
16601
16602 READ-COPY UPDATE (RCU)
16603 M:      "Paul E. McKenney" <paulmck@kernel.org>
16604 M:      Frederic Weisbecker <frederic@kernel.org> (kernel/rcu/tree_nocb.h)
16605 M:      Neeraj Upadhyay <quic_neeraju@quicinc.com> (kernel/rcu/tasks.h)
16606 M:      Josh Triplett <josh@joshtriplett.org>
16607 R:      Steven Rostedt <rostedt@goodmis.org>
16608 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
16609 R:      Lai Jiangshan <jiangshanlai@gmail.com>
16610 R:      Joel Fernandes <joel@joelfernandes.org>
16611 L:      rcu@vger.kernel.org
16612 S:      Supported
16613 W:      http://www.rdrop.com/users/paulmck/RCU/
16614 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
16615 F:      Documentation/RCU/
16616 F:      include/linux/rcu*
16617 F:      kernel/rcu/
16618 X:      Documentation/RCU/torture.rst
16619 X:      include/linux/srcu*.h
16620 X:      kernel/rcu/srcu*.c
16621
16622 REAL TIME CLOCK (RTC) SUBSYSTEM
16623 M:      Alessandro Zummo <a.zummo@towertech.it>
16624 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
16625 L:      linux-rtc@vger.kernel.org
16626 S:      Maintained
16627 Q:      http://patchwork.ozlabs.org/project/rtc-linux/list/
16628 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git
16629 F:      Documentation/admin-guide/rtc.rst
16630 F:      Documentation/devicetree/bindings/rtc/
16631 F:      drivers/rtc/
16632 F:      include/linux/platform_data/rtc-*
16633 F:      include/linux/rtc.h
16634 F:      include/linux/rtc/
16635 F:      include/uapi/linux/rtc.h
16636 F:      tools/testing/selftests/rtc/
16637
16638 REALTEK AUDIO CODECS
16639 M:      Oder Chiou <oder_chiou@realtek.com>
16640 S:      Maintained
16641 F:      include/sound/rt*.h
16642 F:      sound/soc/codecs/rt*
16643
16644 REALTEK OTTO WATCHDOG
16645 M:      Sander Vanheule <sander@svanheule.net>
16646 L:      linux-watchdog@vger.kernel.org
16647 S:      Maintained
16648 F:      Documentation/devicetree/bindings/watchdog/realtek,otto-wdt.yaml
16649 F:      drivers/watchdog/realtek_otto_wdt.c
16650
16651 REALTEK RTL83xx SMI DSA ROUTER CHIPS
16652 M:      Linus Walleij <linus.walleij@linaro.org>
16653 M:      Alvin Šipraga <alsi@bang-olufsen.dk>
16654 S:      Maintained
16655 F:      Documentation/devicetree/bindings/net/dsa/realtek.yaml
16656 F:      drivers/net/dsa/realtek/*
16657
16658 REALTEK WIRELESS DRIVER (rtlwifi family)
16659 M:      Ping-Ke Shih <pkshih@realtek.com>
16660 L:      linux-wireless@vger.kernel.org
16661 S:      Maintained
16662 W:      https://wireless.wiki.kernel.org/
16663 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
16664 F:      drivers/net/wireless/realtek/rtlwifi/
16665
16666 REALTEK WIRELESS DRIVER (rtw88)
16667 M:      Yan-Hsuan Chuang <tony0620emma@gmail.com>
16668 L:      linux-wireless@vger.kernel.org
16669 S:      Maintained
16670 F:      drivers/net/wireless/realtek/rtw88/
16671
16672 REALTEK WIRELESS DRIVER (rtw89)
16673 M:      Ping-Ke Shih <pkshih@realtek.com>
16674 L:      linux-wireless@vger.kernel.org
16675 S:      Maintained
16676 F:      drivers/net/wireless/realtek/rtw89/
16677
16678 REDPINE WIRELESS DRIVER
16679 M:      Amitkumar Karwar <amitkarwar@gmail.com>
16680 M:      Siva Rebbagondla <siva8118@gmail.com>
16681 L:      linux-wireless@vger.kernel.org
16682 S:      Maintained
16683 F:      drivers/net/wireless/rsi/
16684
16685 REGISTER MAP ABSTRACTION
16686 M:      Mark Brown <broonie@kernel.org>
16687 L:      linux-kernel@vger.kernel.org
16688 S:      Supported
16689 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
16690 F:      Documentation/devicetree/bindings/regmap/
16691 F:      drivers/base/regmap/
16692 F:      include/linux/regmap.h
16693
16694 REISERFS FILE SYSTEM
16695 L:      reiserfs-devel@vger.kernel.org
16696 S:      Supported
16697 F:      fs/reiserfs/
16698
16699 REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
16700 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
16701 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
16702 L:      linux-remoteproc@vger.kernel.org
16703 S:      Maintained
16704 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/remoteproc/linux.git rproc-next
16705 F:      Documentation/ABI/testing/sysfs-class-remoteproc
16706 F:      Documentation/devicetree/bindings/remoteproc/
16707 F:      Documentation/staging/remoteproc.rst
16708 F:      drivers/remoteproc/
16709 F:      include/linux/remoteproc.h
16710 F:      include/linux/remoteproc/
16711
16712 REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM
16713 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
16714 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
16715 L:      linux-remoteproc@vger.kernel.org
16716 S:      Maintained
16717 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/remoteproc/linux.git rpmsg-next
16718 F:      Documentation/ABI/testing/sysfs-bus-rpmsg
16719 F:      Documentation/staging/rpmsg.rst
16720 F:      drivers/rpmsg/
16721 F:      include/linux/rpmsg.h
16722 F:      include/linux/rpmsg/
16723 F:      include/uapi/linux/rpmsg.h
16724 F:      samples/rpmsg/
16725
16726 REMOTE PROCESSOR MESSAGING (RPMSG) WWAN CONTROL DRIVER
16727 M:      Stephan Gerhold <stephan@gerhold.net>
16728 L:      netdev@vger.kernel.org
16729 L:      linux-remoteproc@vger.kernel.org
16730 S:      Maintained
16731 F:      drivers/net/wwan/rpmsg_wwan_ctrl.c
16732
16733 RENESAS CLOCK DRIVERS
16734 M:      Geert Uytterhoeven <geert+renesas@glider.be>
16735 L:      linux-renesas-soc@vger.kernel.org
16736 S:      Supported
16737 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git renesas-clk
16738 F:      Documentation/devicetree/bindings/clock/renesas,*
16739 F:      drivers/clk/renesas/
16740
16741 RENESAS EMEV2 I2C DRIVER
16742 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
16743 L:      linux-renesas-soc@vger.kernel.org
16744 S:      Supported
16745 F:      Documentation/devicetree/bindings/i2c/renesas,iic-emev2.yaml
16746 F:      drivers/i2c/busses/i2c-emev2.c
16747
16748 RENESAS ETHERNET DRIVERS
16749 R:      Sergey Shtylyov <s.shtylyov@omp.ru>
16750 L:      netdev@vger.kernel.org
16751 L:      linux-renesas-soc@vger.kernel.org
16752 F:      Documentation/devicetree/bindings/net/renesas,*.yaml
16753 F:      drivers/net/ethernet/renesas/
16754 F:      include/linux/sh_eth.h
16755
16756 RENESAS R-CAR GYROADC DRIVER
16757 M:      Marek Vasut <marek.vasut@gmail.com>
16758 L:      linux-iio@vger.kernel.org
16759 S:      Supported
16760 F:      Documentation/devicetree/bindings/iio/adc/renesas,rcar-gyroadc.yaml
16761 F:      drivers/iio/adc/rcar-gyroadc.c
16762
16763 RENESAS R-CAR I2C DRIVERS
16764 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
16765 L:      linux-renesas-soc@vger.kernel.org
16766 S:      Supported
16767 F:      Documentation/devicetree/bindings/i2c/renesas,rcar-i2c.yaml
16768 F:      Documentation/devicetree/bindings/i2c/renesas,rmobile-iic.yaml
16769 F:      drivers/i2c/busses/i2c-rcar.c
16770 F:      drivers/i2c/busses/i2c-sh_mobile.c
16771
16772 RENESAS R-CAR SATA DRIVER
16773 R:      Sergey Shtylyov <s.shtylyov@omp.ru>
16774 S:      Supported
16775 L:      linux-ide@vger.kernel.org
16776 L:      linux-renesas-soc@vger.kernel.org
16777 F:      Documentation/devicetree/bindings/ata/renesas,rcar-sata.yaml
16778 F:      drivers/ata/sata_rcar.c
16779
16780 RENESAS R-CAR THERMAL DRIVERS
16781 M:      Niklas Söderlund <niklas.soderlund@ragnatech.se>
16782 L:      linux-renesas-soc@vger.kernel.org
16783 S:      Supported
16784 F:      Documentation/devicetree/bindings/thermal/rcar-gen3-thermal.yaml
16785 F:      Documentation/devicetree/bindings/thermal/rcar-thermal.yaml
16786 F:      drivers/thermal/rcar_gen3_thermal.c
16787 F:      drivers/thermal/rcar_thermal.c
16788
16789 RENESAS RIIC DRIVER
16790 M:      Chris Brandt <chris.brandt@renesas.com>
16791 L:      linux-renesas-soc@vger.kernel.org
16792 S:      Supported
16793 F:      Documentation/devicetree/bindings/i2c/renesas,riic.yaml
16794 F:      drivers/i2c/busses/i2c-riic.c
16795
16796 RENESAS USB PHY DRIVER
16797 M:      Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
16798 L:      linux-renesas-soc@vger.kernel.org
16799 S:      Maintained
16800 F:      drivers/phy/renesas/phy-rcar-gen3-usb*.c
16801
16802 RENESAS RZ/G2L A/D DRIVER
16803 M:      Lad Prabhakar <prabhakar.mahadev-lad.rj@bp.renesas.com>
16804 L:      linux-iio@vger.kernel.org
16805 L:      linux-renesas-soc@vger.kernel.org
16806 S:      Supported
16807 F:      Documentation/devicetree/bindings/iio/adc/renesas,rzg2l-adc.yaml
16808 F:      drivers/iio/adc/rzg2l_adc.c
16809
16810 RENESAS R-CAR GEN3 & RZ/N1 NAND CONTROLLER DRIVER
16811 M:      Miquel Raynal <miquel.raynal@bootlin.com>
16812 L:      linux-mtd@lists.infradead.org
16813 L:      linux-renesas-soc@vger.kernel.org
16814 S:      Maintained
16815 F:      Documentation/devicetree/bindings/mtd/renesas-nandc.yaml
16816 F:      drivers/mtd/nand/raw/renesas-nand-controller.c
16817
16818 RESET CONTROLLER FRAMEWORK
16819 M:      Philipp Zabel <p.zabel@pengutronix.de>
16820 S:      Maintained
16821 T:      git git://git.pengutronix.de/git/pza/linux
16822 F:      Documentation/devicetree/bindings/reset/
16823 F:      Documentation/driver-api/reset.rst
16824 F:      drivers/reset/
16825 F:      include/dt-bindings/reset/
16826 F:      include/linux/reset-controller.h
16827 F:      include/linux/reset.h
16828 F:      include/linux/reset/
16829 K:      \b(?:devm_|of_)?reset_control(?:ler_[a-z]+|_[a-z_]+)?\b
16830
16831 RESTARTABLE SEQUENCES SUPPORT
16832 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
16833 M:      Peter Zijlstra <peterz@infradead.org>
16834 M:      "Paul E. McKenney" <paulmck@kernel.org>
16835 M:      Boqun Feng <boqun.feng@gmail.com>
16836 L:      linux-kernel@vger.kernel.org
16837 S:      Supported
16838 F:      include/trace/events/rseq.h
16839 F:      include/uapi/linux/rseq.h
16840 F:      kernel/rseq.c
16841 F:      tools/testing/selftests/rseq/
16842
16843 RFKILL
16844 M:      Johannes Berg <johannes@sipsolutions.net>
16845 L:      linux-wireless@vger.kernel.org
16846 S:      Maintained
16847 W:      https://wireless.wiki.kernel.org/
16848 Q:      https://patchwork.kernel.org/project/linux-wireless/list/
16849 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless.git
16850 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wireless/wireless-next.git
16851 F:      Documentation/ABI/stable/sysfs-class-rfkill
16852 F:      Documentation/driver-api/rfkill.rst
16853 F:      include/linux/rfkill.h
16854 F:      include/uapi/linux/rfkill.h
16855 F:      net/rfkill/
16856
16857 RHASHTABLE
16858 M:      Thomas Graf <tgraf@suug.ch>
16859 M:      Herbert Xu <herbert@gondor.apana.org.au>
16860 L:      netdev@vger.kernel.org
16861 S:      Maintained
16862 F:      include/linux/rhashtable-types.h
16863 F:      include/linux/rhashtable.h
16864 F:      lib/rhashtable.c
16865 F:      lib/test_rhashtable.c
16866
16867 RICOH R5C592 MEMORYSTICK DRIVER
16868 M:      Maxim Levitsky <maximlevitsky@gmail.com>
16869 S:      Maintained
16870 F:      drivers/memstick/host/r592.*
16871
16872 RICOH SMARTMEDIA/XD DRIVER
16873 M:      Maxim Levitsky <maximlevitsky@gmail.com>
16874 S:      Maintained
16875 F:      drivers/mtd/nand/raw/r852.c
16876 F:      drivers/mtd/nand/raw/r852.h
16877
16878 RISC-V PMU DRIVERS
16879 M:      Atish Patra <atishp@atishpatra.org>
16880 R:      Anup Patel <anup@brainfault.org>
16881 L:      linux-riscv@lists.infradead.org
16882 S:      Supported
16883 F:      drivers/perf/riscv_pmu.c
16884 F:      drivers/perf/riscv_pmu_legacy.c
16885 F:      drivers/perf/riscv_pmu_sbi.c
16886
16887 RISC-V ARCHITECTURE
16888 M:      Paul Walmsley <paul.walmsley@sifive.com>
16889 M:      Palmer Dabbelt <palmer@dabbelt.com>
16890 M:      Albert Ou <aou@eecs.berkeley.edu>
16891 L:      linux-riscv@lists.infradead.org
16892 S:      Supported
16893 P:      Documentation/riscv/patch-acceptance.rst
16894 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/riscv/linux.git
16895 F:      arch/riscv/
16896 N:      riscv
16897 K:      riscv
16898
16899 RISC-V/MICROCHIP POLARFIRE SOC SUPPORT
16900 M:      Lewis Hanly <lewis.hanly@microchip.com>
16901 M:      Conor Dooley <conor.dooley@microchip.com>
16902 L:      linux-riscv@lists.infradead.org
16903 S:      Supported
16904 F:      arch/riscv/boot/dts/microchip/
16905 F:      drivers/mailbox/mailbox-mpfs.c
16906 F:      drivers/soc/microchip/
16907 F:      include/soc/microchip/mpfs.h
16908
16909 RNBD BLOCK DRIVERS
16910 M:      Md. Haris Iqbal <haris.iqbal@ionos.com>
16911 M:      Jack Wang <jinpu.wang@ionos.com>
16912 L:      linux-block@vger.kernel.org
16913 S:      Maintained
16914 F:      drivers/block/rnbd/
16915
16916 ROCCAT DRIVERS
16917 M:      Stefan Achatz <erazor_de@users.sourceforge.net>
16918 S:      Maintained
16919 W:      http://sourceforge.net/projects/roccat/
16920 F:      Documentation/ABI/*/sysfs-driver-hid-roccat*
16921 F:      drivers/hid/hid-roccat*
16922 F:      include/linux/hid-roccat*
16923
16924 ROCKCHIP I2S TDM DRIVER
16925 M:      Nicolas Frattaroli <frattaroli.nicolas@gmail.com>
16926 L:      linux-rockchip@lists.infradead.org
16927 S:      Maintained
16928 F:      Documentation/devicetree/bindings/sound/rockchip,i2s-tdm.yaml
16929 F:      sound/soc/rockchip/rockchip_i2s_tdm.*
16930
16931 ROCKCHIP ISP V1 DRIVER
16932 M:      Dafna Hirschfeld <dafna@fastmail.com>
16933 L:      linux-media@vger.kernel.org
16934 L:      linux-rockchip@lists.infradead.org
16935 S:      Maintained
16936 F:      Documentation/admin-guide/media/rkisp1.rst
16937 F:      Documentation/devicetree/bindings/media/rockchip-isp1.yaml
16938 F:      Documentation/userspace-api/media/v4l/pixfmt-meta-rkisp1.rst
16939 F:      drivers/media/platform/rockchip/rkisp1
16940 F:      include/uapi/linux/rkisp1-config.h
16941
16942 ROCKCHIP RASTER 2D GRAPHIC ACCELERATION UNIT DRIVER
16943 M:      Jacob Chen <jacob-chen@iotwrt.com>
16944 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
16945 L:      linux-media@vger.kernel.org
16946 L:      linux-rockchip@lists.infradead.org
16947 S:      Maintained
16948 F:      Documentation/devicetree/bindings/media/rockchip-rga.yaml
16949 F:      drivers/media/platform/rockchip/rga/
16950
16951 ROCKCHIP VIDEO DECODER DRIVER
16952 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
16953 L:      linux-media@vger.kernel.org
16954 L:      linux-rockchip@lists.infradead.org
16955 S:      Maintained
16956 F:      Documentation/devicetree/bindings/media/rockchip,vdec.yaml
16957 F:      drivers/staging/media/rkvdec/
16958
16959 ROCKER DRIVER
16960 M:      Jiri Pirko <jiri@resnulli.us>
16961 L:      netdev@vger.kernel.org
16962 S:      Supported
16963 F:      drivers/net/ethernet/rocker/
16964
16965 ROCKETPORT EXPRESS/INFINITY DRIVER
16966 M:      Kevin Cernekee <cernekee@gmail.com>
16967 L:      linux-serial@vger.kernel.org
16968 S:      Odd Fixes
16969 F:      drivers/tty/serial/rp2.*
16970
16971 ROHM BD99954 CHARGER IC
16972 R:      Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
16973 L:      linux-power@fi.rohmeurope.com
16974 S:      Supported
16975 F:      drivers/power/supply/bd99954-charger.c
16976 F:      drivers/power/supply/bd99954-charger.h
16977
16978 ROHM BH1750 AMBIENT LIGHT SENSOR DRIVER
16979 M:      Tomasz Duszynski <tduszyns@gmail.com>
16980 S:      Maintained
16981 F:      Documentation/devicetree/bindings/iio/light/bh1750.yaml
16982 F:      drivers/iio/light/bh1750.c
16983
16984 ROHM MULTIFUNCTION BD9571MWV-M PMIC DEVICE DRIVERS
16985 M:      Marek Vasut <marek.vasut+renesas@gmail.com>
16986 L:      linux-kernel@vger.kernel.org
16987 L:      linux-renesas-soc@vger.kernel.org
16988 S:      Supported
16989 F:      Documentation/devicetree/bindings/mfd/rohm,bd9571mwv.yaml
16990 F:      drivers/gpio/gpio-bd9571mwv.c
16991 F:      drivers/mfd/bd9571mwv.c
16992 F:      drivers/regulator/bd9571mwv-regulator.c
16993 F:      include/linux/mfd/bd9571mwv.h
16994
16995 ROHM POWER MANAGEMENT IC DEVICE DRIVERS
16996 R:      Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
16997 L:      linux-power@fi.rohmeurope.com
16998 S:      Supported
16999 F:      drivers/clk/clk-bd718x7.c
17000 F:      drivers/gpio/gpio-bd71815.c
17001 F:      drivers/gpio/gpio-bd71828.c
17002 F:      drivers/mfd/rohm-bd71828.c
17003 F:      drivers/mfd/rohm-bd718x7.c
17004 F:      drivers/mfd/rohm-bd9576.c
17005 F:      drivers/regulator/bd71815-regulator.c
17006 F:      drivers/regulator/bd71828-regulator.c
17007 F:      drivers/regulator/bd718x7-regulator.c
17008 F:      drivers/regulator/bd9576-regulator.c
17009 F:      drivers/regulator/rohm-regulator.c
17010 F:      drivers/rtc/rtc-bd70528.c
17011 F:      drivers/watchdog/bd9576_wdt.c
17012 F:      include/linux/mfd/rohm-bd71815.h
17013 F:      include/linux/mfd/rohm-bd71828.h
17014 F:      include/linux/mfd/rohm-bd718x7.h
17015 F:      include/linux/mfd/rohm-bd957x.h
17016 F:      include/linux/mfd/rohm-generic.h
17017 F:      include/linux/mfd/rohm-shared.h
17018
17019 ROSE NETWORK LAYER
17020 M:      Ralf Baechle <ralf@linux-mips.org>
17021 L:      linux-hams@vger.kernel.org
17022 S:      Maintained
17023 W:      http://www.linux-ax25.org/
17024 F:      include/net/rose.h
17025 F:      include/uapi/linux/rose.h
17026 F:      net/rose/
17027
17028 ROTATION DRIVER FOR ALLWINNER A83T
17029 M:      Jernej Skrabec <jernej.skrabec@gmail.com>
17030 L:      linux-media@vger.kernel.org
17031 S:      Maintained
17032 T:      git git://linuxtv.org/media_tree.git
17033 F:      Documentation/devicetree/bindings/media/allwinner,sun8i-a83t-de2-rotate.yaml
17034 F:      drivers/media/platform/sunxi/sun8i-rotate/
17035
17036 RPMSG TTY DRIVER
17037 M:      Arnaud Pouliquen <arnaud.pouliquen@foss.st.com>
17038 L:      linux-remoteproc@vger.kernel.org
17039 S:      Maintained
17040 F:      drivers/tty/rpmsg_tty.c
17041
17042 RTL2830 MEDIA DRIVER
17043 M:      Antti Palosaari <crope@iki.fi>
17044 L:      linux-media@vger.kernel.org
17045 S:      Maintained
17046 W:      https://linuxtv.org
17047 W:      http://palosaari.fi/linux/
17048 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17049 T:      git git://linuxtv.org/anttip/media_tree.git
17050 F:      drivers/media/dvb-frontends/rtl2830*
17051
17052 RTL2832 MEDIA DRIVER
17053 M:      Antti Palosaari <crope@iki.fi>
17054 L:      linux-media@vger.kernel.org
17055 S:      Maintained
17056 W:      https://linuxtv.org
17057 W:      http://palosaari.fi/linux/
17058 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17059 T:      git git://linuxtv.org/anttip/media_tree.git
17060 F:      drivers/media/dvb-frontends/rtl2832*
17061
17062 RTL2832_SDR MEDIA DRIVER
17063 M:      Antti Palosaari <crope@iki.fi>
17064 L:      linux-media@vger.kernel.org
17065 S:      Maintained
17066 W:      https://linuxtv.org
17067 W:      http://palosaari.fi/linux/
17068 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17069 T:      git git://linuxtv.org/anttip/media_tree.git
17070 F:      drivers/media/dvb-frontends/rtl2832_sdr*
17071
17072 RTL8180 WIRELESS DRIVER
17073 L:      linux-wireless@vger.kernel.org
17074 S:      Orphan
17075 W:      https://wireless.wiki.kernel.org/
17076 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
17077 F:      drivers/net/wireless/realtek/rtl818x/rtl8180/
17078
17079 RTL8187 WIRELESS DRIVER
17080 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
17081 M:      Hin-Tak Leung <htl10@users.sourceforge.net>
17082 M:      Larry Finger <Larry.Finger@lwfinger.net>
17083 L:      linux-wireless@vger.kernel.org
17084 S:      Maintained
17085 W:      https://wireless.wiki.kernel.org/
17086 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
17087 F:      drivers/net/wireless/realtek/rtl818x/rtl8187/
17088
17089 RTL8XXXU WIRELESS DRIVER (rtl8xxxu)
17090 M:      Jes Sorensen <Jes.Sorensen@gmail.com>
17091 L:      linux-wireless@vger.kernel.org
17092 S:      Maintained
17093 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jes/linux.git rtl8xxxu-devel
17094 F:      drivers/net/wireless/realtek/rtl8xxxu/
17095
17096 RTRS TRANSPORT DRIVERS
17097 M:      Md. Haris Iqbal <haris.iqbal@ionos.com>
17098 M:      Jack Wang <jinpu.wang@ionos.com>
17099 L:      linux-rdma@vger.kernel.org
17100 S:      Maintained
17101 F:      drivers/infiniband/ulp/rtrs/
17102
17103 RXRPC SOCKETS (AF_RXRPC)
17104 M:      David Howells <dhowells@redhat.com>
17105 M:      Marc Dionne <marc.dionne@auristor.com>
17106 L:      linux-afs@lists.infradead.org
17107 S:      Supported
17108 W:      https://www.infradead.org/~dhowells/kafs/
17109 F:      Documentation/networking/rxrpc.rst
17110 F:      include/keys/rxrpc-type.h
17111 F:      include/net/af_rxrpc.h
17112 F:      include/trace/events/rxrpc.h
17113 F:      include/uapi/linux/rxrpc.h
17114 F:      net/rxrpc/
17115
17116 S3 SAVAGE FRAMEBUFFER DRIVER
17117 M:      Antonino Daplas <adaplas@gmail.com>
17118 L:      linux-fbdev@vger.kernel.org
17119 S:      Maintained
17120 F:      drivers/video/fbdev/savage/
17121
17122 S390
17123 M:      Heiko Carstens <hca@linux.ibm.com>
17124 M:      Vasily Gorbik <gor@linux.ibm.com>
17125 M:      Alexander Gordeev <agordeev@linux.ibm.com>
17126 R:      Christian Borntraeger <borntraeger@linux.ibm.com>
17127 R:      Sven Schnelle <svens@linux.ibm.com>
17128 L:      linux-s390@vger.kernel.org
17129 S:      Supported
17130 W:      http://www.ibm.com/developerworks/linux/linux390/
17131 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux.git
17132 F:      Documentation/driver-api/s390-drivers.rst
17133 F:      Documentation/s390/
17134 F:      arch/s390/
17135 F:      drivers/s390/
17136
17137 S390 COMMON I/O LAYER
17138 M:      Vineeth Vijayan <vneethv@linux.ibm.com>
17139 M:      Peter Oberparleiter <oberpar@linux.ibm.com>
17140 L:      linux-s390@vger.kernel.org
17141 S:      Supported
17142 W:      http://www.ibm.com/developerworks/linux/linux390/
17143 F:      drivers/s390/cio/
17144
17145 S390 DASD DRIVER
17146 M:      Stefan Haberland <sth@linux.ibm.com>
17147 M:      Jan Hoeppner <hoeppner@linux.ibm.com>
17148 L:      linux-s390@vger.kernel.org
17149 S:      Supported
17150 W:      http://www.ibm.com/developerworks/linux/linux390/
17151 F:      block/partitions/ibm.c
17152 F:      drivers/s390/block/dasd*
17153 F:      include/linux/dasd_mod.h
17154
17155 S390 IOMMU (PCI)
17156 M:      Matthew Rosato <mjrosato@linux.ibm.com>
17157 M:      Gerald Schaefer <gerald.schaefer@linux.ibm.com>
17158 L:      linux-s390@vger.kernel.org
17159 S:      Supported
17160 W:      http://www.ibm.com/developerworks/linux/linux390/
17161 F:      drivers/iommu/s390-iommu.c
17162
17163 S390 IUCV NETWORK LAYER
17164 M:      Alexandra Winter <wintera@linux.ibm.com>
17165 M:      Wenjia Zhang <wenjia@linux.ibm.com>
17166 L:      linux-s390@vger.kernel.org
17167 L:      netdev@vger.kernel.org
17168 S:      Supported
17169 W:      http://www.ibm.com/developerworks/linux/linux390/
17170 F:      drivers/s390/net/*iucv*
17171 F:      include/net/iucv/
17172 F:      net/iucv/
17173
17174 S390 NETWORK DRIVERS
17175 M:      Alexandra Winter <wintera@linux.ibm.com>
17176 M:      Wenjia Zhang <wenjia@linux.ibm.com>
17177 L:      linux-s390@vger.kernel.org
17178 L:      netdev@vger.kernel.org
17179 S:      Supported
17180 W:      http://www.ibm.com/developerworks/linux/linux390/
17181 F:      drivers/s390/net/
17182
17183 S390 PCI SUBSYSTEM
17184 M:      Niklas Schnelle <schnelle@linux.ibm.com>
17185 M:      Gerald Schaefer <gerald.schaefer@linux.ibm.com>
17186 L:      linux-s390@vger.kernel.org
17187 S:      Supported
17188 W:      http://www.ibm.com/developerworks/linux/linux390/
17189 F:      arch/s390/pci/
17190 F:      drivers/pci/hotplug/s390_pci_hpc.c
17191 F:      Documentation/s390/pci.rst
17192
17193 S390 VFIO AP DRIVER
17194 M:      Tony Krowiak <akrowiak@linux.ibm.com>
17195 M:      Halil Pasic <pasic@linux.ibm.com>
17196 M:      Jason Herne <jjherne@linux.ibm.com>
17197 L:      linux-s390@vger.kernel.org
17198 S:      Supported
17199 W:      http://www.ibm.com/developerworks/linux/linux390/
17200 F:      Documentation/s390/vfio-ap.rst
17201 F:      drivers/s390/crypto/vfio_ap*
17202
17203 S390 VFIO-CCW DRIVER
17204 M:      Eric Farman <farman@linux.ibm.com>
17205 M:      Matthew Rosato <mjrosato@linux.ibm.com>
17206 R:      Halil Pasic <pasic@linux.ibm.com>
17207 L:      linux-s390@vger.kernel.org
17208 L:      kvm@vger.kernel.org
17209 S:      Supported
17210 F:      Documentation/s390/vfio-ccw.rst
17211 F:      drivers/s390/cio/vfio_ccw*
17212 F:      include/uapi/linux/vfio_ccw.h
17213
17214 S390 VFIO-PCI DRIVER
17215 M:      Matthew Rosato <mjrosato@linux.ibm.com>
17216 M:      Eric Farman <farman@linux.ibm.com>
17217 L:      linux-s390@vger.kernel.org
17218 L:      kvm@vger.kernel.org
17219 S:      Supported
17220 F:      drivers/vfio/pci/vfio_pci_zdev.c
17221 F:      include/uapi/linux/vfio_zdev.h
17222
17223 S390 ZCRYPT DRIVER
17224 M:      Harald Freudenberger <freude@linux.ibm.com>
17225 L:      linux-s390@vger.kernel.org
17226 S:      Supported
17227 W:      http://www.ibm.com/developerworks/linux/linux390/
17228 F:      drivers/s390/crypto/
17229
17230 S390 ZFCP DRIVER
17231 M:      Steffen Maier <maier@linux.ibm.com>
17232 M:      Benjamin Block <bblock@linux.ibm.com>
17233 L:      linux-s390@vger.kernel.org
17234 S:      Supported
17235 W:      http://www.ibm.com/developerworks/linux/linux390/
17236 F:      drivers/s390/scsi/zfcp_*
17237
17238 S3C ADC BATTERY DRIVER
17239 M:      Krzysztof Kozlowski <krzk@kernel.org>
17240 L:      linux-samsung-soc@vger.kernel.org
17241 S:      Odd Fixes
17242 F:      drivers/power/supply/s3c_adc_battery.c
17243 F:      include/linux/s3c_adc_battery.h
17244
17245 S3C24XX SD/MMC Driver
17246 M:      Ben Dooks <ben-linux@fluff.org>
17247 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
17248 S:      Supported
17249 F:      drivers/mmc/host/s3cmci.*
17250
17251 SAA6588 RDS RECEIVER DRIVER
17252 M:      Hans Verkuil <hverkuil@xs4all.nl>
17253 L:      linux-media@vger.kernel.org
17254 S:      Odd Fixes
17255 W:      https://linuxtv.org
17256 T:      git git://linuxtv.org/media_tree.git
17257 F:      drivers/media/i2c/saa6588*
17258
17259 SAA7134 VIDEO4LINUX DRIVER
17260 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
17261 L:      linux-media@vger.kernel.org
17262 S:      Odd fixes
17263 W:      https://linuxtv.org
17264 T:      git git://linuxtv.org/media_tree.git
17265 F:      Documentation/driver-api/media/drivers/saa7134*
17266 F:      drivers/media/pci/saa7134/
17267
17268 SAA7146 VIDEO4LINUX-2 DRIVER
17269 M:      Hans Verkuil <hverkuil@xs4all.nl>
17270 L:      linux-media@vger.kernel.org
17271 S:      Maintained
17272 T:      git git://linuxtv.org/media_tree.git
17273 F:      drivers/media/common/saa7146/
17274 F:      drivers/media/pci/saa7146/
17275 F:      include/media/drv-intf/saa7146*
17276
17277 SAFESETID SECURITY MODULE
17278 M:      Micah Morton <mortonm@chromium.org>
17279 S:      Supported
17280 F:      Documentation/admin-guide/LSM/SafeSetID.rst
17281 F:      security/safesetid/
17282
17283 SAMSUNG AUDIO (ASoC) DRIVERS
17284 M:      Krzysztof Kozlowski <krzk@kernel.org>
17285 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
17286 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17287 S:      Supported
17288 F:      Documentation/devicetree/bindings/sound/samsung*
17289 F:      sound/soc/samsung/
17290
17291 SAMSUNG EXYNOS PSEUDO RANDOM NUMBER GENERATOR (RNG) DRIVER
17292 M:      Krzysztof Kozlowski <krzk@kernel.org>
17293 L:      linux-crypto@vger.kernel.org
17294 L:      linux-samsung-soc@vger.kernel.org
17295 S:      Maintained
17296 F:      Documentation/devicetree/bindings/rng/samsung,exynos4-rng.yaml
17297 F:      drivers/crypto/exynos-rng.c
17298
17299 SAMSUNG EXYNOS TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
17300 M:      Łukasz Stelmach <l.stelmach@samsung.com>
17301 L:      linux-samsung-soc@vger.kernel.org
17302 S:      Maintained
17303 F:      Documentation/devicetree/bindings/rng/samsung,exynos5250-trng.yaml
17304 F:      drivers/char/hw_random/exynos-trng.c
17305
17306 SAMSUNG FRAMEBUFFER DRIVER
17307 M:      Jingoo Han <jingoohan1@gmail.com>
17308 L:      linux-fbdev@vger.kernel.org
17309 S:      Maintained
17310 F:      drivers/video/fbdev/s3c-fb.c
17311
17312 SAMSUNG INTERCONNECT DRIVERS
17313 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
17314 M:      Artur Świgoń <a.swigon@samsung.com>
17315 L:      linux-pm@vger.kernel.org
17316 L:      linux-samsung-soc@vger.kernel.org
17317 S:      Supported
17318 F:      drivers/interconnect/samsung/
17319
17320 SAMSUNG LAPTOP DRIVER
17321 M:      Corentin Chary <corentin.chary@gmail.com>
17322 L:      platform-driver-x86@vger.kernel.org
17323 S:      Maintained
17324 F:      drivers/platform/x86/samsung-laptop.c
17325
17326 SAMSUNG MULTIFUNCTION PMIC DEVICE DRIVERS
17327 M:      Krzysztof Kozlowski <krzk@kernel.org>
17328 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
17329 L:      linux-kernel@vger.kernel.org
17330 L:      linux-samsung-soc@vger.kernel.org
17331 S:      Supported
17332 F:      Documentation/devicetree/bindings/clock/samsung,s2mps11.yaml
17333 F:      Documentation/devicetree/bindings/mfd/samsung,s2m*.yaml
17334 F:      Documentation/devicetree/bindings/mfd/samsung,s5m*.yaml
17335 F:      Documentation/devicetree/bindings/regulator/samsung,s2m*.yaml
17336 F:      Documentation/devicetree/bindings/regulator/samsung,s5m*.yaml
17337 F:      drivers/clk/clk-s2mps11.c
17338 F:      drivers/mfd/sec*.c
17339 F:      drivers/regulator/s2m*.c
17340 F:      drivers/regulator/s5m*.c
17341 F:      drivers/rtc/rtc-s5m.c
17342 F:      include/linux/mfd/samsung/
17343
17344 SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
17345 M:      Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
17346 L:      linux-media@vger.kernel.org
17347 L:      linux-samsung-soc@vger.kernel.org
17348 S:      Maintained
17349 F:      drivers/media/platform/samsung/s3c-camif/
17350 F:      include/media/drv-intf/s3c_camif.h
17351
17352 SAMSUNG S3FWRN5 NFC DRIVER
17353 M:      Krzysztof Kozlowski <krzk@kernel.org>
17354 M:      Krzysztof Opasiak <k.opasiak@samsung.com>
17355 L:      linux-nfc@lists.01.org (subscribers-only)
17356 S:      Maintained
17357 F:      Documentation/devicetree/bindings/net/nfc/samsung,s3fwrn5.yaml
17358 F:      drivers/nfc/s3fwrn5
17359
17360 SAMSUNG S5C73M3 CAMERA DRIVER
17361 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
17362 M:      Andrzej Hajda <andrzej.hajda@intel.com>
17363 L:      linux-media@vger.kernel.org
17364 S:      Supported
17365 F:      drivers/media/i2c/s5c73m3/*
17366
17367 SAMSUNG S5K5BAF CAMERA DRIVER
17368 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
17369 M:      Andrzej Hajda <andrzej.hajda@intel.com>
17370 L:      linux-media@vger.kernel.org
17371 S:      Supported
17372 F:      drivers/media/i2c/s5k5baf.c
17373
17374 SAMSUNG S5P Security SubSystem (SSS) DRIVER
17375 M:      Krzysztof Kozlowski <krzk@kernel.org>
17376 M:      Vladimir Zapolskiy <vz@mleia.com>
17377 L:      linux-crypto@vger.kernel.org
17378 L:      linux-samsung-soc@vger.kernel.org
17379 S:      Maintained
17380 F:      Documentation/devicetree/bindings/crypto/samsung-slimsss.yaml
17381 F:      Documentation/devicetree/bindings/crypto/samsung-sss.yaml
17382 F:      drivers/crypto/s5p-sss.c
17383
17384 SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS
17385 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
17386 L:      linux-media@vger.kernel.org
17387 S:      Supported
17388 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
17389 F:      drivers/media/platform/samsung/exynos4-is/
17390
17391 SAMSUNG SOC CLOCK DRIVERS
17392 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
17393 M:      Tomasz Figa <tomasz.figa@gmail.com>
17394 M:      Chanwoo Choi <cw00.choi@samsung.com>
17395 R:      Alim Akhtar <alim.akhtar@samsung.com>
17396 L:      linux-samsung-soc@vger.kernel.org
17397 S:      Supported
17398 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/snawrocki/clk.git
17399 F:      Documentation/devicetree/bindings/clock/samsung,*.yaml
17400 F:      Documentation/devicetree/bindings/clock/samsung,s3c*
17401 F:      drivers/clk/samsung/
17402 F:      include/dt-bindings/clock/exynos*.h
17403 F:      include/dt-bindings/clock/s3c*.h
17404 F:      include/dt-bindings/clock/s5p*.h
17405 F:      include/dt-bindings/clock/samsung,*.h
17406 F:      include/linux/clk/samsung.h
17407 F:      include/linux/platform_data/clk-s3c2410.h
17408
17409 SAMSUNG SPI DRIVERS
17410 M:      Krzysztof Kozlowski <krzk@kernel.org>
17411 M:      Andi Shyti <andi@etezian.org>
17412 L:      linux-spi@vger.kernel.org
17413 L:      linux-samsung-soc@vger.kernel.org
17414 S:      Maintained
17415 F:      Documentation/devicetree/bindings/spi/samsung,spi*.yaml
17416 F:      drivers/spi/spi-s3c*
17417 F:      include/linux/platform_data/spi-s3c64xx.h
17418 F:      include/linux/spi/s3c24xx-fiq.h
17419
17420 SAMSUNG SXGBE DRIVERS
17421 M:      Byungho An <bh74.an@samsung.com>
17422 L:      netdev@vger.kernel.org
17423 S:      Supported
17424 F:      drivers/net/ethernet/samsung/sxgbe/
17425
17426 SAMSUNG THERMAL DRIVER
17427 M:      Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
17428 M:      Krzysztof Kozlowski <krzk@kernel.org>
17429 L:      linux-pm@vger.kernel.org
17430 L:      linux-samsung-soc@vger.kernel.org
17431 S:      Maintained
17432 F:      Documentation/devicetree/bindings/thermal/samsung,exynos-thermal.yaml
17433 F:      drivers/thermal/samsung/
17434
17435 SAMSUNG USB2 PHY DRIVER
17436 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
17437 L:      linux-kernel@vger.kernel.org
17438 S:      Supported
17439 F:      Documentation/devicetree/bindings/phy/samsung,usb2-phy.yaml
17440 F:      Documentation/driver-api/phy/samsung-usb2.rst
17441 F:      drivers/phy/samsung/phy-exynos4210-usb2.c
17442 F:      drivers/phy/samsung/phy-exynos4x12-usb2.c
17443 F:      drivers/phy/samsung/phy-exynos5250-usb2.c
17444 F:      drivers/phy/samsung/phy-s5pv210-usb2.c
17445 F:      drivers/phy/samsung/phy-samsung-usb2.c
17446 F:      drivers/phy/samsung/phy-samsung-usb2.h
17447
17448 SANCLOUD BEAGLEBONE ENHANCED DEVICE TREE
17449 M:      Paul Barker <paul.barker@sancloud.com>
17450 R:      Marc Murphy <marc.murphy@sancloud.com>
17451 S:      Supported
17452 F:      arch/arm/boot/dts/am335x-sancloud*
17453
17454 SC1200 WDT DRIVER
17455 M:      Zwane Mwaikambo <zwanem@gmail.com>
17456 S:      Maintained
17457 F:      drivers/watchdog/sc1200wdt.c
17458
17459 SCHEDULER
17460 M:      Ingo Molnar <mingo@redhat.com>
17461 M:      Peter Zijlstra <peterz@infradead.org>
17462 M:      Juri Lelli <juri.lelli@redhat.com> (SCHED_DEADLINE)
17463 M:      Vincent Guittot <vincent.guittot@linaro.org> (SCHED_NORMAL)
17464 R:      Dietmar Eggemann <dietmar.eggemann@arm.com> (SCHED_NORMAL)
17465 R:      Steven Rostedt <rostedt@goodmis.org> (SCHED_FIFO/SCHED_RR)
17466 R:      Ben Segall <bsegall@google.com> (CONFIG_CFS_BANDWIDTH)
17467 R:      Mel Gorman <mgorman@suse.de> (CONFIG_NUMA_BALANCING)
17468 R:      Daniel Bristot de Oliveira <bristot@redhat.com> (SCHED_DEADLINE)
17469 L:      linux-kernel@vger.kernel.org
17470 S:      Maintained
17471 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
17472 F:      include/linux/preempt.h
17473 F:      include/linux/sched.h
17474 F:      include/linux/wait.h
17475 F:      include/uapi/linux/sched.h
17476 F:      kernel/sched/
17477
17478 SCR24X CHIP CARD INTERFACE DRIVER
17479 M:      Lubomir Rintel <lkundrak@v3.sk>
17480 S:      Supported
17481 F:      drivers/char/pcmcia/scr24x_cs.c
17482
17483 SCSI RDMA PROTOCOL (SRP) INITIATOR
17484 M:      Bart Van Assche <bvanassche@acm.org>
17485 L:      linux-rdma@vger.kernel.org
17486 S:      Supported
17487 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
17488 F:      drivers/infiniband/ulp/srp/
17489 F:      include/scsi/srp.h
17490
17491 SCSI RDMA PROTOCOL (SRP) TARGET
17492 M:      Bart Van Assche <bvanassche@acm.org>
17493 L:      linux-rdma@vger.kernel.org
17494 L:      target-devel@vger.kernel.org
17495 S:      Supported
17496 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
17497 F:      drivers/infiniband/ulp/srpt/
17498
17499 SCSI SG DRIVER
17500 M:      Doug Gilbert <dgilbert@interlog.com>
17501 L:      linux-scsi@vger.kernel.org
17502 S:      Maintained
17503 W:      http://sg.danny.cz/sg
17504 F:      Documentation/scsi/scsi-generic.rst
17505 F:      drivers/scsi/sg.c
17506 F:      include/scsi/sg.h
17507
17508 SCSI SUBSYSTEM
17509 M:      "James E.J. Bottomley" <jejb@linux.ibm.com>
17510 M:      "Martin K. Petersen" <martin.petersen@oracle.com>
17511 L:      linux-scsi@vger.kernel.org
17512 S:      Maintained
17513 Q:      https://patchwork.kernel.org/project/linux-scsi/list/
17514 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git
17515 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
17516 F:      Documentation/devicetree/bindings/scsi/
17517 F:      drivers/scsi/
17518 F:      include/scsi/
17519
17520 SCSI TAPE DRIVER
17521 M:      Kai Mäkisara <Kai.Makisara@kolumbus.fi>
17522 L:      linux-scsi@vger.kernel.org
17523 S:      Maintained
17524 F:      Documentation/scsi/st.rst
17525 F:      drivers/scsi/st.*
17526 F:      drivers/scsi/st_*.h
17527
17528 SCSI TARGET CORE USER DRIVER
17529 M:      Bodo Stroesser <bostroesser@gmail.com>
17530 L:      linux-scsi@vger.kernel.org
17531 L:      target-devel@vger.kernel.org
17532 S:      Supported
17533 F:      Documentation/target/tcmu-design.rst
17534 F:      drivers/target/target_core_user.c
17535 F:      include/uapi/linux/target_core_user.h
17536
17537 SCSI TARGET SUBSYSTEM
17538 M:      "Martin K. Petersen" <martin.petersen@oracle.com>
17539 L:      linux-scsi@vger.kernel.org
17540 L:      target-devel@vger.kernel.org
17541 S:      Supported
17542 W:      http://www.linux-iscsi.org
17543 Q:      https://patchwork.kernel.org/project/target-devel/list/
17544 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
17545 F:      Documentation/target/
17546 F:      drivers/target/
17547 F:      include/target/
17548
17549 SCTP PROTOCOL
17550 M:      Vlad Yasevich <vyasevich@gmail.com>
17551 M:      Neil Horman <nhorman@tuxdriver.com>
17552 M:      Marcelo Ricardo Leitner <marcelo.leitner@gmail.com>
17553 L:      linux-sctp@vger.kernel.org
17554 S:      Maintained
17555 W:      http://lksctp.sourceforge.net
17556 F:      Documentation/networking/sctp.rst
17557 F:      include/linux/sctp.h
17558 F:      include/net/sctp/
17559 F:      include/uapi/linux/sctp.h
17560 F:      net/sctp/
17561
17562 SCx200 CPU SUPPORT
17563 M:      Jim Cromie <jim.cromie@gmail.com>
17564 S:      Odd Fixes
17565 F:      Documentation/i2c/busses/scx200_acb.rst
17566 F:      arch/x86/platform/scx200/
17567 F:      drivers/i2c/busses/scx200*
17568 F:      drivers/mtd/maps/scx200_docflash.c
17569 F:      drivers/watchdog/scx200_wdt.c
17570 F:      include/linux/scx200.h
17571
17572 SCx200 GPIO DRIVER
17573 M:      Jim Cromie <jim.cromie@gmail.com>
17574 S:      Maintained
17575 F:      drivers/char/scx200_gpio.c
17576 F:      include/linux/scx200_gpio.h
17577
17578 SCx200 HRT CLOCKSOURCE DRIVER
17579 M:      Jim Cromie <jim.cromie@gmail.com>
17580 S:      Maintained
17581 F:      drivers/clocksource/scx200_hrt.c
17582
17583 SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
17584 M:      Sascha Sommer <saschasommer@freenet.de>
17585 L:      sdricohcs-devel@lists.sourceforge.net (subscribers-only)
17586 S:      Maintained
17587 F:      drivers/mmc/host/sdricoh_cs.c
17588
17589 SECO BOARDS CEC DRIVER
17590 M:      Ettore Chimenti <ek5.chimenti@gmail.com>
17591 S:      Maintained
17592 F:      drivers/media/cec/platform/seco/seco-cec.c
17593 F:      drivers/media/cec/platform/seco/seco-cec.h
17594
17595 SECURE COMPUTING
17596 M:      Kees Cook <keescook@chromium.org>
17597 R:      Andy Lutomirski <luto@amacapital.net>
17598 R:      Will Drewry <wad@chromium.org>
17599 S:      Supported
17600 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git seccomp
17601 F:      Documentation/userspace-api/seccomp_filter.rst
17602 F:      include/linux/seccomp.h
17603 F:      include/uapi/linux/seccomp.h
17604 F:      kernel/seccomp.c
17605 F:      tools/testing/selftests/kselftest_harness.h
17606 F:      tools/testing/selftests/seccomp/*
17607 K:      \bsecure_computing
17608 K:      \bTIF_SECCOMP\b
17609
17610 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) Broadcom BRCMSTB DRIVER
17611 M:      Al Cooper <alcooperx@gmail.com>
17612 L:      linux-mmc@vger.kernel.org
17613 L:      bcm-kernel-feedback-list@broadcom.com
17614 S:      Maintained
17615 F:      drivers/mmc/host/sdhci-brcmstb*
17616
17617 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
17618 M:      Adrian Hunter <adrian.hunter@intel.com>
17619 L:      linux-mmc@vger.kernel.org
17620 S:      Maintained
17621 F:      drivers/mmc/host/sdhci*
17622
17623 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) MICROCHIP DRIVER
17624 M:      Eugen Hristev <eugen.hristev@microchip.com>
17625 L:      linux-mmc@vger.kernel.org
17626 S:      Supported
17627 F:      drivers/mmc/host/sdhci-of-at91.c
17628
17629 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
17630 M:      Ben Dooks <ben-linux@fluff.org>
17631 M:      Jaehoon Chung <jh80.chung@samsung.com>
17632 L:      linux-mmc@vger.kernel.org
17633 S:      Maintained
17634 F:      drivers/mmc/host/sdhci-s3c*
17635
17636 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
17637 M:      Viresh Kumar <vireshk@kernel.org>
17638 L:      linux-mmc@vger.kernel.org
17639 S:      Maintained
17640 F:      drivers/mmc/host/sdhci-spear.c
17641
17642 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) TI OMAP DRIVER
17643 M:      Kishon Vijay Abraham I <kishon@ti.com>
17644 L:      linux-mmc@vger.kernel.org
17645 S:      Maintained
17646 F:      drivers/mmc/host/sdhci-omap.c
17647
17648 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) NXP i.MX DRIVER
17649 M:      Haibo Chen <haibo.chen@nxp.com>
17650 L:      linux-imx@nxp.com
17651 L:      linux-mmc@vger.kernel.org
17652 S:      Maintained
17653 F:      drivers/mmc/host/sdhci-esdhc-imx.c
17654
17655 SECURE ENCRYPTING DEVICE (SED) OPAL DRIVER
17656 M:      Jonathan Derrick <jonathan.derrick@intel.com>
17657 M:      Revanth Rajashekar <revanth.rajashekar@intel.com>
17658 L:      linux-block@vger.kernel.org
17659 S:      Supported
17660 F:      block/opal_proto.h
17661 F:      block/sed*
17662 F:      include/linux/sed*
17663 F:      include/uapi/linux/sed*
17664
17665 SECURITY CONTACT
17666 M:      Security Officers <security@kernel.org>
17667 S:      Supported
17668 F:      Documentation/admin-guide/security-bugs.rst
17669
17670 SECURITY SUBSYSTEM
17671 M:      James Morris <jmorris@namei.org>
17672 M:      "Serge E. Hallyn" <serge@hallyn.com>
17673 L:      linux-security-module@vger.kernel.org (suggested Cc:)
17674 S:      Supported
17675 W:      http://kernsec.org/
17676 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
17677 F:      security/
17678 X:      security/selinux/
17679
17680 SELINUX SECURITY MODULE
17681 M:      Paul Moore <paul@paul-moore.com>
17682 M:      Stephen Smalley <stephen.smalley.work@gmail.com>
17683 M:      Eric Paris <eparis@parisplace.org>
17684 L:      selinux@vger.kernel.org
17685 S:      Supported
17686 W:      https://selinuxproject.org
17687 W:      https://github.com/SELinuxProject
17688 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/selinux.git
17689 F:      Documentation/ABI/obsolete/sysfs-selinux-checkreqprot
17690 F:      Documentation/ABI/obsolete/sysfs-selinux-disable
17691 F:      Documentation/admin-guide/LSM/SELinux.rst
17692 F:      include/trace/events/avc.h
17693 F:      include/uapi/linux/selinux_netlink.h
17694 F:      scripts/selinux/
17695 F:      security/selinux/
17696
17697 SENSABLE PHANTOM
17698 M:      Jiri Slaby <jirislaby@kernel.org>
17699 S:      Maintained
17700 F:      drivers/misc/phantom.c
17701 F:      include/uapi/linux/phantom.h
17702
17703 SENSEAIR SUNRISE 006-0-0007
17704 M:      Jacopo Mondi <jacopo@jmondi.org>
17705 S:      Maintained
17706 F:      Documentation/ABI/testing/sysfs-bus-iio-chemical-sunrise-co2
17707 F:      Documentation/devicetree/bindings/iio/chemical/senseair,sunrise.yaml
17708 F:      drivers/iio/chemical/sunrise_co2.c
17709
17710 SENSIRION SCD30 CARBON DIOXIDE SENSOR DRIVER
17711 M:      Tomasz Duszynski <tomasz.duszynski@octakon.com>
17712 S:      Maintained
17713 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,scd30.yaml
17714 F:      drivers/iio/chemical/scd30.h
17715 F:      drivers/iio/chemical/scd30_core.c
17716 F:      drivers/iio/chemical/scd30_i2c.c
17717 F:      drivers/iio/chemical/scd30_serial.c
17718
17719 SENSIRION SCD4X CARBON DIOXIDE SENSOR DRIVER
17720 M:      Roan van Dijk <roan@protonic.nl>
17721 S:      Maintained
17722 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,scd4x.yaml
17723 F:      drivers/iio/chemical/scd4x.c
17724
17725 SENSIRION SGP40 GAS SENSOR DRIVER
17726 M:      Andreas Klinger <ak@it-klinger.de>
17727 S:      Maintained
17728 F:      Documentation/ABI/testing/sysfs-bus-iio-chemical-sgp40
17729 F:      drivers/iio/chemical/sgp40.c
17730
17731 SENSIRION SPS30 AIR POLLUTION SENSOR DRIVER
17732 M:      Tomasz Duszynski <tduszyns@gmail.com>
17733 S:      Maintained
17734 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,sps30.yaml
17735 F:      drivers/iio/chemical/sps30.c
17736 F:      drivers/iio/chemical/sps30_i2c.c
17737 F:      drivers/iio/chemical/sps30_serial.c
17738
17739 SERIAL DEVICE BUS
17740 M:      Rob Herring <robh@kernel.org>
17741 L:      linux-serial@vger.kernel.org
17742 S:      Maintained
17743 F:      Documentation/devicetree/bindings/serial/serial.yaml
17744 F:      drivers/tty/serdev/
17745 F:      include/linux/serdev.h
17746
17747 SERIAL DRIVERS
17748 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
17749 L:      linux-serial@vger.kernel.org
17750 S:      Maintained
17751 F:      Documentation/devicetree/bindings/serial/
17752 F:      drivers/tty/serial/
17753
17754 SERIAL IR RECEIVER
17755 M:      Sean Young <sean@mess.org>
17756 L:      linux-media@vger.kernel.org
17757 S:      Maintained
17758 F:      drivers/media/rc/serial_ir.c
17759
17760 SERIAL LOW-POWER INTER-CHIP MEDIA BUS (SLIMbus)
17761 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
17762 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17763 S:      Maintained
17764 F:      Documentation/devicetree/bindings/slimbus/
17765 F:      drivers/slimbus/
17766 F:      include/linux/slimbus.h
17767
17768 SFC NETWORK DRIVER
17769 M:      Edward Cree <ecree.xilinx@gmail.com>
17770 M:      Martin Habets <habetsm.xilinx@gmail.com>
17771 L:      netdev@vger.kernel.org
17772 S:      Supported
17773 F:      drivers/net/ethernet/sfc/
17774
17775 SFF/SFP/SFP+ MODULE SUPPORT
17776 M:      Russell King <linux@armlinux.org.uk>
17777 L:      netdev@vger.kernel.org
17778 S:      Maintained
17779 F:      drivers/net/phy/phylink.c
17780 F:      drivers/net/phy/sfp*
17781 F:      include/linux/mdio/mdio-i2c.h
17782 F:      include/linux/phylink.h
17783 F:      include/linux/sfp.h
17784 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)
17785
17786 SGI GRU DRIVER
17787 M:      Dimitri Sivanich <dimitri.sivanich@hpe.com>
17788 S:      Maintained
17789 F:      drivers/misc/sgi-gru/
17790
17791 SGI XP/XPC/XPNET DRIVER
17792 M:      Robin Holt <robinmholt@gmail.com>
17793 M:      Steve Wahl <steve.wahl@hpe.com>
17794 R:      Mike Travis <mike.travis@hpe.com>
17795 S:      Maintained
17796 F:      drivers/misc/sgi-xp/
17797
17798 SHARED MEMORY COMMUNICATIONS (SMC) SOCKETS
17799 M:      Karsten Graul <kgraul@linux.ibm.com>
17800 L:      linux-s390@vger.kernel.org
17801 S:      Supported
17802 W:      http://www.ibm.com/developerworks/linux/linux390/
17803 F:      net/smc/
17804
17805 SHARP GP2AP002A00F/GP2AP002S00F SENSOR DRIVER
17806 M:      Linus Walleij <linus.walleij@linaro.org>
17807 L:      linux-iio@vger.kernel.org
17808 S:      Maintained
17809 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
17810 F:      Documentation/devicetree/bindings/iio/light/sharp,gp2ap002.yaml
17811 F:      drivers/iio/light/gp2ap002.c
17812
17813 SHARP RJ54N1CB0C SENSOR DRIVER
17814 M:      Jacopo Mondi <jacopo@jmondi.org>
17815 L:      linux-media@vger.kernel.org
17816 S:      Odd fixes
17817 T:      git git://linuxtv.org/media_tree.git
17818 F:      drivers/media/i2c/rj54n1cb0c.c
17819 F:      include/media/i2c/rj54n1cb0c.h
17820
17821 SH_VOU V4L2 OUTPUT DRIVER
17822 L:      linux-media@vger.kernel.org
17823 S:      Orphan
17824 F:      drivers/media/platform/renesas/sh_vou.c
17825 F:      include/media/drv-intf/sh_vou.h
17826
17827 SI2157 MEDIA DRIVER
17828 M:      Antti Palosaari <crope@iki.fi>
17829 L:      linux-media@vger.kernel.org
17830 S:      Maintained
17831 W:      https://linuxtv.org
17832 W:      http://palosaari.fi/linux/
17833 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17834 T:      git git://linuxtv.org/anttip/media_tree.git
17835 F:      drivers/media/tuners/si2157*
17836
17837 SI2165 MEDIA DRIVER
17838 M:      Matthias Schwarzott <zzam@gentoo.org>
17839 L:      linux-media@vger.kernel.org
17840 S:      Maintained
17841 W:      https://linuxtv.org
17842 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17843 F:      drivers/media/dvb-frontends/si2165*
17844
17845 SI2168 MEDIA DRIVER
17846 M:      Antti Palosaari <crope@iki.fi>
17847 L:      linux-media@vger.kernel.org
17848 S:      Maintained
17849 W:      https://linuxtv.org
17850 W:      http://palosaari.fi/linux/
17851 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17852 T:      git git://linuxtv.org/anttip/media_tree.git
17853 F:      drivers/media/dvb-frontends/si2168*
17854
17855 SI470X FM RADIO RECEIVER I2C DRIVER
17856 M:      Hans Verkuil <hverkuil@xs4all.nl>
17857 L:      linux-media@vger.kernel.org
17858 S:      Odd Fixes
17859 W:      https://linuxtv.org
17860 T:      git git://linuxtv.org/media_tree.git
17861 F:      drivers/media/radio/si470x/radio-si470x-i2c.c
17862
17863 SI470X FM RADIO RECEIVER USB DRIVER
17864 M:      Hans Verkuil <hverkuil@xs4all.nl>
17865 L:      linux-media@vger.kernel.org
17866 S:      Maintained
17867 W:      https://linuxtv.org
17868 T:      git git://linuxtv.org/media_tree.git
17869 F:      drivers/media/radio/si470x/radio-si470x-common.c
17870 F:      drivers/media/radio/si470x/radio-si470x-usb.c
17871 F:      drivers/media/radio/si470x/radio-si470x.h
17872
17873 SI4713 FM RADIO TRANSMITTER I2C DRIVER
17874 M:      Eduardo Valentin <edubezval@gmail.com>
17875 L:      linux-media@vger.kernel.org
17876 S:      Odd Fixes
17877 W:      https://linuxtv.org
17878 T:      git git://linuxtv.org/media_tree.git
17879 F:      drivers/media/radio/si4713/si4713.?
17880
17881 SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
17882 M:      Eduardo Valentin <edubezval@gmail.com>
17883 L:      linux-media@vger.kernel.org
17884 S:      Odd Fixes
17885 W:      https://linuxtv.org
17886 T:      git git://linuxtv.org/media_tree.git
17887 F:      drivers/media/radio/si4713/radio-platform-si4713.c
17888
17889 SI4713 FM RADIO TRANSMITTER USB DRIVER
17890 M:      Hans Verkuil <hverkuil@xs4all.nl>
17891 L:      linux-media@vger.kernel.org
17892 S:      Maintained
17893 W:      https://linuxtv.org
17894 T:      git git://linuxtv.org/media_tree.git
17895 F:      drivers/media/radio/si4713/radio-usb-si4713.c
17896
17897 SIANO DVB DRIVER
17898 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
17899 L:      linux-media@vger.kernel.org
17900 S:      Odd fixes
17901 W:      https://linuxtv.org
17902 T:      git git://linuxtv.org/media_tree.git
17903 F:      drivers/media/common/siano/
17904 F:      drivers/media/mmc/siano/
17905 F:      drivers/media/usb/siano/
17906 F:      drivers/media/usb/siano/
17907
17908 SIFIVE DRIVERS
17909 M:      Palmer Dabbelt <palmer@dabbelt.com>
17910 M:      Paul Walmsley <paul.walmsley@sifive.com>
17911 L:      linux-riscv@lists.infradead.org
17912 S:      Supported
17913 T:      git git://github.com/sifive/riscv-linux.git
17914 N:      sifive
17915 K:      [^@]sifive
17916
17917 SIFIVE FU540 SYSTEM-ON-CHIP
17918 M:      Paul Walmsley <paul.walmsley@sifive.com>
17919 M:      Palmer Dabbelt <palmer@dabbelt.com>
17920 L:      linux-riscv@lists.infradead.org
17921 S:      Supported
17922 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pjw/sifive.git
17923 N:      fu540
17924 K:      fu540
17925
17926 SIFIVE PDMA DRIVER
17927 M:      Green Wan <green.wan@sifive.com>
17928 S:      Maintained
17929 F:      Documentation/devicetree/bindings/dma/sifive,fu540-c000-pdma.yaml
17930 F:      drivers/dma/sf-pdma/
17931
17932 SILEAD TOUCHSCREEN DRIVER
17933 M:      Hans de Goede <hdegoede@redhat.com>
17934 L:      linux-input@vger.kernel.org
17935 L:      platform-driver-x86@vger.kernel.org
17936 S:      Maintained
17937 F:      drivers/input/touchscreen/silead.c
17938 F:      drivers/platform/x86/touchscreen_dmi.c
17939
17940 SILICON LABS WIRELESS DRIVERS (for WFxxx series)
17941 M:      Jérôme Pouiller <jerome.pouiller@silabs.com>
17942 S:      Supported
17943 F:      drivers/staging/wfx/
17944
17945 SILICON MOTION SM712 FRAME BUFFER DRIVER
17946 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
17947 M:      Teddy Wang <teddy.wang@siliconmotion.com>
17948 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
17949 L:      linux-fbdev@vger.kernel.org
17950 S:      Maintained
17951 F:      Documentation/fb/sm712fb.rst
17952 F:      drivers/video/fbdev/sm712*
17953
17954 SILVACO I3C DUAL-ROLE MASTER
17955 M:      Miquel Raynal <miquel.raynal@bootlin.com>
17956 M:      Conor Culhane <conor.culhane@silvaco.com>
17957 L:      linux-i3c@lists.infradead.org (moderated for non-subscribers)
17958 S:      Maintained
17959 F:      Documentation/devicetree/bindings/i3c/silvaco,i3c-master.yaml
17960 F:      drivers/i3c/master/svc-i3c-master.c
17961
17962 SIMPLEFB FB DRIVER
17963 M:      Hans de Goede <hdegoede@redhat.com>
17964 L:      linux-fbdev@vger.kernel.org
17965 S:      Maintained
17966 F:      Documentation/devicetree/bindings/display/simple-framebuffer.yaml
17967 F:      drivers/video/fbdev/simplefb.c
17968 F:      include/linux/platform_data/simplefb.h
17969
17970 SIMTEC EB110ATX (Chalice CATS)
17971 M:      Simtec Linux Team <linux@simtec.co.uk>
17972 S:      Supported
17973 W:      http://www.simtec.co.uk/products/EB110ATX/
17974
17975 SIMTEC EB2410ITX (BAST)
17976 M:      Simtec Linux Team <linux@simtec.co.uk>
17977 S:      Supported
17978 W:      http://www.simtec.co.uk/products/EB2410ITX/
17979 F:      arch/arm/mach-s3c/bast-ide.c
17980 F:      arch/arm/mach-s3c/bast-irq.c
17981 F:      arch/arm/mach-s3c/mach-bast.c
17982
17983 SIOX
17984 M:      Thorsten Scherer <t.scherer@eckelmann.de>
17985 M:      Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
17986 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
17987 S:      Supported
17988 F:      drivers/gpio/gpio-siox.c
17989 F:      drivers/siox/*
17990 F:      include/trace/events/siox.h
17991
17992 SIPHASH PRF ROUTINES
17993 M:      Jason A. Donenfeld <Jason@zx2c4.com>
17994 S:      Maintained
17995 F:      include/linux/siphash.h
17996 F:      lib/siphash.c
17997 F:      lib/test_siphash.c
17998
17999 SIS 190 ETHERNET DRIVER
18000 M:      Francois Romieu <romieu@fr.zoreil.com>
18001 L:      netdev@vger.kernel.org
18002 S:      Maintained
18003 F:      drivers/net/ethernet/sis/sis190.c
18004
18005 SIS 900/7016 FAST ETHERNET DRIVER
18006 M:      Daniele Venzano <venza@brownhat.org>
18007 L:      netdev@vger.kernel.org
18008 S:      Maintained
18009 W:      http://www.brownhat.org/sis900.html
18010 F:      drivers/net/ethernet/sis/sis900.*
18011
18012 SIS FRAMEBUFFER DRIVER
18013 M:      Thomas Winischhofer <thomas@winischhofer.net>
18014 S:      Maintained
18015 W:      http://www.winischhofer.net/linuxsisvga.shtml
18016 F:      Documentation/fb/sisfb.rst
18017 F:      drivers/video/fbdev/sis/
18018 F:      include/video/sisfb.h
18019
18020 SIS I2C TOUCHSCREEN DRIVER
18021 M:      Mika Penttilä <mika.penttila@nextfour.com>
18022 L:      linux-input@vger.kernel.org
18023 S:      Maintained
18024 F:      Documentation/devicetree/bindings/input/touchscreen/sis_i2c.txt
18025 F:      drivers/input/touchscreen/sis_i2c.c
18026
18027 SIS USB2VGA DRIVER
18028 M:      Thomas Winischhofer <thomas@winischhofer.net>
18029 S:      Maintained
18030 W:      http://www.winischhofer.at/linuxsisusbvga.shtml
18031 F:      drivers/usb/misc/sisusbvga/
18032
18033 SL28 CPLD MFD DRIVER
18034 M:      Michael Walle <michael@walle.cc>
18035 S:      Maintained
18036 F:      Documentation/devicetree/bindings/gpio/kontron,sl28cpld-gpio.yaml
18037 F:      Documentation/devicetree/bindings/hwmon/kontron,sl28cpld-hwmon.yaml
18038 F:      Documentation/devicetree/bindings/interrupt-controller/kontron,sl28cpld-intc.yaml
18039 F:      Documentation/devicetree/bindings/mfd/kontron,sl28cpld.yaml
18040 F:      Documentation/devicetree/bindings/pwm/kontron,sl28cpld-pwm.yaml
18041 F:      Documentation/devicetree/bindings/watchdog/kontron,sl28cpld-wdt.yaml
18042 F:      drivers/gpio/gpio-sl28cpld.c
18043 F:      drivers/hwmon/sl28cpld-hwmon.c
18044 F:      drivers/irqchip/irq-sl28cpld.c
18045 F:      drivers/pwm/pwm-sl28cpld.c
18046 F:      drivers/watchdog/sl28cpld_wdt.c
18047
18048 SLAB ALLOCATOR
18049 M:      Christoph Lameter <cl@linux.com>
18050 M:      Pekka Enberg <penberg@kernel.org>
18051 M:      David Rientjes <rientjes@google.com>
18052 M:      Joonsoo Kim <iamjoonsoo.kim@lge.com>
18053 M:      Andrew Morton <akpm@linux-foundation.org>
18054 M:      Vlastimil Babka <vbabka@suse.cz>
18055 R:      Roman Gushchin <roman.gushchin@linux.dev>
18056 L:      linux-mm@kvack.org
18057 S:      Maintained
18058 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vbabka/slab.git
18059 F:      include/linux/sl?b*.h
18060 F:      mm/sl?b*
18061
18062 SLEEPABLE READ-COPY UPDATE (SRCU)
18063 M:      Lai Jiangshan <jiangshanlai@gmail.com>
18064 M:      "Paul E. McKenney" <paulmck@kernel.org>
18065 M:      Josh Triplett <josh@joshtriplett.org>
18066 R:      Steven Rostedt <rostedt@goodmis.org>
18067 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
18068 L:      rcu@vger.kernel.org
18069 S:      Supported
18070 W:      http://www.rdrop.com/users/paulmck/RCU/
18071 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
18072 F:      include/linux/srcu*.h
18073 F:      kernel/rcu/srcu*.c
18074
18075 SMACK SECURITY MODULE
18076 M:      Casey Schaufler <casey@schaufler-ca.com>
18077 L:      linux-security-module@vger.kernel.org
18078 S:      Maintained
18079 W:      http://schaufler-ca.com
18080 T:      git git://github.com/cschaufler/smack-next
18081 F:      Documentation/admin-guide/LSM/Smack.rst
18082 F:      security/smack/
18083
18084 SMC91x ETHERNET DRIVER
18085 M:      Nicolas Pitre <nico@fluxnic.net>
18086 S:      Odd Fixes
18087 F:      drivers/net/ethernet/smsc/smc91x.*
18088
18089 SECURE MONITOR CALL(SMC) CALLING CONVENTION (SMCCC)
18090 M:      Mark Rutland <mark.rutland@arm.com>
18091 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
18092 M:      Sudeep Holla <sudeep.holla@arm.com>
18093 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
18094 S:      Maintained
18095 F:      drivers/firmware/smccc/
18096 F:      include/linux/arm-smccc.h
18097
18098 SMM665 HARDWARE MONITOR DRIVER
18099 M:      Guenter Roeck <linux@roeck-us.net>
18100 L:      linux-hwmon@vger.kernel.org
18101 S:      Maintained
18102 F:      Documentation/hwmon/smm665.rst
18103 F:      drivers/hwmon/smm665.c
18104
18105 SMSC EMC2103 HARDWARE MONITOR DRIVER
18106 M:      Steve Glendinning <steve.glendinning@shawell.net>
18107 L:      linux-hwmon@vger.kernel.org
18108 S:      Maintained
18109 F:      Documentation/hwmon/emc2103.rst
18110 F:      drivers/hwmon/emc2103.c
18111
18112 SMSC SCH5627 HARDWARE MONITOR DRIVER
18113 M:      Hans de Goede <hdegoede@redhat.com>
18114 L:      linux-hwmon@vger.kernel.org
18115 S:      Supported
18116 F:      Documentation/hwmon/sch5627.rst
18117 F:      drivers/hwmon/sch5627.c
18118
18119 SMSC UFX6000 and UFX7000 USB to VGA DRIVER
18120 M:      Steve Glendinning <steve.glendinning@shawell.net>
18121 L:      linux-fbdev@vger.kernel.org
18122 S:      Maintained
18123 F:      drivers/video/fbdev/smscufx.c
18124
18125 SMSC47B397 HARDWARE MONITOR DRIVER
18126 M:      Jean Delvare <jdelvare@suse.com>
18127 L:      linux-hwmon@vger.kernel.org
18128 S:      Maintained
18129 F:      Documentation/hwmon/smsc47b397.rst
18130 F:      drivers/hwmon/smsc47b397.c
18131
18132 SMSC911x ETHERNET DRIVER
18133 M:      Steve Glendinning <steve.glendinning@shawell.net>
18134 L:      netdev@vger.kernel.org
18135 S:      Maintained
18136 F:      drivers/net/ethernet/smsc/smsc911x.*
18137 F:      include/linux/smsc911x.h
18138
18139 SMSC9420 PCI ETHERNET DRIVER
18140 M:      Steve Glendinning <steve.glendinning@shawell.net>
18141 L:      netdev@vger.kernel.org
18142 S:      Maintained
18143 F:      drivers/net/ethernet/smsc/smsc9420.*
18144
18145 SOCIONEXT (SNI) AVE NETWORK DRIVER
18146 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
18147 L:      netdev@vger.kernel.org
18148 S:      Maintained
18149 F:      Documentation/devicetree/bindings/net/socionext,uniphier-ave4.yaml
18150 F:      drivers/net/ethernet/socionext/sni_ave.c
18151
18152 SOCIONEXT (SNI) NETSEC NETWORK DRIVER
18153 M:      Jassi Brar <jaswinder.singh@linaro.org>
18154 M:      Ilias Apalodimas <ilias.apalodimas@linaro.org>
18155 L:      netdev@vger.kernel.org
18156 S:      Maintained
18157 F:      Documentation/devicetree/bindings/net/socionext-netsec.txt
18158 F:      drivers/net/ethernet/socionext/netsec.c
18159
18160 SOCIONEXT (SNI) Synquacer SPI DRIVER
18161 M:      Masahisa Kojima <masahisa.kojima@linaro.org>
18162 M:      Jassi Brar <jaswinder.singh@linaro.org>
18163 L:      linux-spi@vger.kernel.org
18164 S:      Maintained
18165 F:      Documentation/devicetree/bindings/spi/spi-synquacer.txt
18166 F:      drivers/spi/spi-synquacer.c
18167
18168 SOCIONEXT SYNQUACER I2C DRIVER
18169 M:      Ard Biesheuvel <ardb@kernel.org>
18170 L:      linux-i2c@vger.kernel.org
18171 S:      Maintained
18172 F:      Documentation/devicetree/bindings/i2c/i2c-synquacer.txt
18173 F:      drivers/i2c/busses/i2c-synquacer.c
18174
18175 SOCIONEXT UNIPHIER SOUND DRIVER
18176 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18177 S:      Orphan
18178 F:      sound/soc/uniphier/
18179
18180 SOEKRIS NET48XX LED SUPPORT
18181 M:      Chris Boot <bootc@bootc.net>
18182 S:      Maintained
18183 F:      drivers/leds/leds-net48xx.c
18184
18185 SOFT-IWARP DRIVER (siw)
18186 M:      Bernard Metzler <bmt@zurich.ibm.com>
18187 L:      linux-rdma@vger.kernel.org
18188 S:      Supported
18189 F:      drivers/infiniband/sw/siw/
18190 F:      include/uapi/rdma/siw-abi.h
18191
18192 SOFT-ROCE DRIVER (rxe)
18193 M:      Zhu Yanjun <zyjzyj2000@gmail.com>
18194 L:      linux-rdma@vger.kernel.org
18195 S:      Supported
18196 F:      drivers/infiniband/sw/rxe/
18197 F:      include/uapi/rdma/rdma_user_rxe.h
18198
18199 SOFTLOGIC 6x10 MPEG CODEC
18200 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
18201 M:      Anton Sviridenko <anton@corp.bluecherry.net>
18202 M:      Andrey Utkin <andrey_utkin@fastmail.com>
18203 M:      Ismael Luceno <ismael@iodev.co.uk>
18204 L:      linux-media@vger.kernel.org
18205 S:      Supported
18206 F:      drivers/media/pci/solo6x10/
18207
18208 SOFTWARE DELEGATED EXCEPTION INTERFACE (SDEI)
18209 M:      James Morse <james.morse@arm.com>
18210 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
18211 S:      Maintained
18212 F:      Documentation/devicetree/bindings/arm/firmware/sdei.txt
18213 F:      drivers/firmware/arm_sdei.c
18214 F:      include/linux/arm_sdei.h
18215 F:      include/uapi/linux/arm_sdei.h
18216
18217 SOFTWARE NODES AND DEVICE PROPERTIES
18218 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
18219 R:      Daniel Scally <djrscally@gmail.com>
18220 R:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
18221 R:      Sakari Ailus <sakari.ailus@linux.intel.com>
18222 L:      linux-acpi@vger.kernel.org
18223 S:      Maintained
18224 F:      drivers/base/property.c
18225 F:      drivers/base/swnode.c
18226 F:      include/linux/fwnode.h
18227 F:      include/linux/property.h
18228
18229 SOFTWARE RAID (Multiple Disks) SUPPORT
18230 M:      Song Liu <song@kernel.org>
18231 L:      linux-raid@vger.kernel.org
18232 S:      Supported
18233 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/song/md.git
18234 F:      drivers/md/Kconfig
18235 F:      drivers/md/Makefile
18236 F:      drivers/md/md*
18237 F:      drivers/md/raid*
18238 F:      include/linux/raid/
18239 F:      include/uapi/linux/raid/
18240
18241 SOLIDRUN CLEARFOG SUPPORT
18242 M:      Russell King <linux@armlinux.org.uk>
18243 S:      Maintained
18244 F:      arch/arm/boot/dts/armada-388-clearfog*
18245 F:      arch/arm/boot/dts/armada-38x-solidrun-*
18246
18247 SOLIDRUN CUBOX-I/HUMMINGBOARD SUPPORT
18248 M:      Russell King <linux@armlinux.org.uk>
18249 S:      Maintained
18250 F:      arch/arm/boot/dts/imx6*-cubox-i*
18251 F:      arch/arm/boot/dts/imx6*-hummingboard*
18252 F:      arch/arm/boot/dts/imx6*-sr-*
18253
18254 SONIC NETWORK DRIVER
18255 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
18256 L:      netdev@vger.kernel.org
18257 S:      Maintained
18258 F:      drivers/net/ethernet/natsemi/sonic.*
18259
18260 SONICS SILICON BACKPLANE DRIVER (SSB)
18261 M:      Michael Buesch <m@bues.ch>
18262 L:      linux-wireless@vger.kernel.org
18263 S:      Maintained
18264 F:      drivers/ssb/
18265 F:      include/linux/ssb/
18266
18267 SONY IMX208 SENSOR DRIVER
18268 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
18269 L:      linux-media@vger.kernel.org
18270 S:      Maintained
18271 T:      git git://linuxtv.org/media_tree.git
18272 F:      drivers/media/i2c/imx208.c
18273
18274 SONY IMX214 SENSOR DRIVER
18275 M:      Ricardo Ribalda <ribalda@kernel.org>
18276 L:      linux-media@vger.kernel.org
18277 S:      Maintained
18278 T:      git git://linuxtv.org/media_tree.git
18279 F:      Documentation/devicetree/bindings/media/i2c/sony,imx214.yaml
18280 F:      drivers/media/i2c/imx214.c
18281
18282 SONY IMX219 SENSOR DRIVER
18283 M:      Dave Stevenson <dave.stevenson@raspberrypi.com>
18284 L:      linux-media@vger.kernel.org
18285 S:      Maintained
18286 T:      git git://linuxtv.org/media_tree.git
18287 F:      Documentation/devicetree/bindings/media/i2c/imx219.yaml
18288 F:      drivers/media/i2c/imx219.c
18289
18290 SONY IMX258 SENSOR DRIVER
18291 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
18292 L:      linux-media@vger.kernel.org
18293 S:      Maintained
18294 T:      git git://linuxtv.org/media_tree.git
18295 F:      Documentation/devicetree/bindings/media/i2c/imx258.yaml
18296 F:      drivers/media/i2c/imx258.c
18297
18298 SONY IMX274 SENSOR DRIVER
18299 M:      Leon Luo <leonl@leopardimaging.com>
18300 L:      linux-media@vger.kernel.org
18301 S:      Maintained
18302 T:      git git://linuxtv.org/media_tree.git
18303 F:      Documentation/devicetree/bindings/media/i2c/sony,imx274.yaml
18304 F:      drivers/media/i2c/imx274.c
18305
18306 SONY IMX290 SENSOR DRIVER
18307 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
18308 L:      linux-media@vger.kernel.org
18309 S:      Maintained
18310 T:      git git://linuxtv.org/media_tree.git
18311 F:      Documentation/devicetree/bindings/media/i2c/imx290.txt
18312 F:      drivers/media/i2c/imx290.c
18313
18314 SONY IMX319 SENSOR DRIVER
18315 M:      Bingbu Cao <bingbu.cao@intel.com>
18316 L:      linux-media@vger.kernel.org
18317 S:      Maintained
18318 T:      git git://linuxtv.org/media_tree.git
18319 F:      drivers/media/i2c/imx319.c
18320
18321 SONY IMX334 SENSOR DRIVER
18322 M:      Paul J. Murphy <paul.j.murphy@intel.com>
18323 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
18324 L:      linux-media@vger.kernel.org
18325 S:      Maintained
18326 T:      git git://linuxtv.org/media_tree.git
18327 F:      Documentation/devicetree/bindings/media/i2c/sony,imx334.yaml
18328 F:      drivers/media/i2c/imx334.c
18329
18330 SONY IMX335 SENSOR DRIVER
18331 M:      Paul J. Murphy <paul.j.murphy@intel.com>
18332 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
18333 L:      linux-media@vger.kernel.org
18334 S:      Maintained
18335 T:      git git://linuxtv.org/media_tree.git
18336 F:      Documentation/devicetree/bindings/media/i2c/sony,imx335.yaml
18337 F:      drivers/media/i2c/imx335.c
18338
18339 SONY IMX355 SENSOR DRIVER
18340 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
18341 L:      linux-media@vger.kernel.org
18342 S:      Maintained
18343 T:      git git://linuxtv.org/media_tree.git
18344 F:      drivers/media/i2c/imx355.c
18345
18346 SONY IMX412 SENSOR DRIVER
18347 M:      Paul J. Murphy <paul.j.murphy@intel.com>
18348 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
18349 L:      linux-media@vger.kernel.org
18350 S:      Maintained
18351 T:      git git://linuxtv.org/media_tree.git
18352 F:      Documentation/devicetree/bindings/media/i2c/sony,imx412.yaml
18353 F:      drivers/media/i2c/imx412.c
18354
18355 SONY MEMORYSTICK SUBSYSTEM
18356 M:      Maxim Levitsky <maximlevitsky@gmail.com>
18357 M:      Alex Dubov <oakad@yahoo.com>
18358 M:      Ulf Hansson <ulf.hansson@linaro.org>
18359 L:      linux-mmc@vger.kernel.org
18360 S:      Maintained
18361 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
18362 F:      drivers/memstick/
18363 F:      include/linux/memstick.h
18364
18365 SONY VAIO CONTROL DEVICE DRIVER
18366 M:      Mattia Dongili <malattia@linux.it>
18367 L:      platform-driver-x86@vger.kernel.org
18368 S:      Maintained
18369 W:      http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
18370 F:      Documentation/admin-guide/laptops/sony-laptop.rst
18371 F:      drivers/char/sonypi.c
18372 F:      drivers/platform/x86/sony-laptop.c
18373 F:      include/linux/sony-laptop.h
18374
18375 SOUND
18376 M:      Jaroslav Kysela <perex@perex.cz>
18377 M:      Takashi Iwai <tiwai@suse.com>
18378 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18379 S:      Maintained
18380 W:      http://www.alsa-project.org/
18381 Q:      http://patchwork.kernel.org/project/alsa-devel/list/
18382 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
18383 F:      Documentation/sound/
18384 F:      include/sound/
18385 F:      include/uapi/sound/
18386 F:      sound/
18387 F:      tools/testing/selftests/alsa
18388
18389 SOUND - COMPRESSED AUDIO
18390 M:      Vinod Koul <vkoul@kernel.org>
18391 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18392 S:      Supported
18393 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
18394 F:      Documentation/sound/designs/compress-offload.rst
18395 F:      include/sound/compress_driver.h
18396 F:      include/uapi/sound/compress_*
18397 F:      sound/core/compress_offload.c
18398 F:      sound/soc/soc-compress.c
18399
18400 SOUND - DMAENGINE HELPERS
18401 M:      Lars-Peter Clausen <lars@metafoo.de>
18402 S:      Supported
18403 F:      include/sound/dmaengine_pcm.h
18404 F:      sound/core/pcm_dmaengine.c
18405 F:      sound/soc/soc-generic-dmaengine-pcm.c
18406
18407 SOUND - ALSA SELFTESTS
18408 M:      Mark Brown <broonie@kernel.org>
18409 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18410 L:      linux-kselftest@vger.kernel.org
18411 S:      Supported
18412 F:      tools/testing/selftests/alsa
18413
18414 SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
18415 M:      Liam Girdwood <lgirdwood@gmail.com>
18416 M:      Mark Brown <broonie@kernel.org>
18417 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18418 S:      Supported
18419 W:      http://alsa-project.org/main/index.php/ASoC
18420 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
18421 F:      Documentation/devicetree/bindings/sound/
18422 F:      Documentation/sound/soc/
18423 F:      include/dt-bindings/sound/
18424 F:      include/sound/soc*
18425 F:      sound/soc/
18426
18427 SOUND - SOUND OPEN FIRMWARE (SOF) DRIVERS
18428 M:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
18429 M:      Liam Girdwood <lgirdwood@gmail.com>
18430 M:      Ranjani Sridharan <ranjani.sridharan@linux.intel.com>
18431 M:      Kai Vehmanen <kai.vehmanen@linux.intel.com>
18432 M:      Daniel Baluta <daniel.baluta@nxp.com>
18433 L:      sound-open-firmware@alsa-project.org (moderated for non-subscribers)
18434 S:      Supported
18435 W:      https://github.com/thesofproject/linux/
18436 F:      sound/soc/sof/
18437
18438 SOUNDWIRE SUBSYSTEM
18439 M:      Vinod Koul <vkoul@kernel.org>
18440 M:      Bard Liao <yung-chuan.liao@linux.intel.com>
18441 R:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
18442 R:      Sanyog Kale <sanyog.r.kale@intel.com>
18443 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18444 S:      Supported
18445 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vkoul/soundwire.git
18446 F:      Documentation/driver-api/soundwire/
18447 F:      drivers/soundwire/
18448 F:      include/linux/soundwire/
18449
18450 SP2 MEDIA DRIVER
18451 M:      Olli Salonen <olli.salonen@iki.fi>
18452 L:      linux-media@vger.kernel.org
18453 S:      Maintained
18454 W:      https://linuxtv.org
18455 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18456 F:      drivers/media/dvb-frontends/sp2*
18457
18458 SPARC + UltraSPARC (sparc/sparc64)
18459 M:      "David S. Miller" <davem@davemloft.net>
18460 L:      sparclinux@vger.kernel.org
18461 S:      Maintained
18462 Q:      http://patchwork.ozlabs.org/project/sparclinux/list/
18463 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
18464 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
18465 F:      arch/sparc/
18466 F:      drivers/sbus/
18467
18468 SPARC SERIAL DRIVERS
18469 M:      "David S. Miller" <davem@davemloft.net>
18470 L:      sparclinux@vger.kernel.org
18471 S:      Maintained
18472 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
18473 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
18474 F:      drivers/tty/serial/suncore.c
18475 F:      drivers/tty/serial/sunhv.c
18476 F:      drivers/tty/serial/sunsab.c
18477 F:      drivers/tty/serial/sunsab.h
18478 F:      drivers/tty/serial/sunsu.c
18479 F:      drivers/tty/serial/sunzilog.c
18480 F:      drivers/tty/serial/sunzilog.h
18481 F:      drivers/tty/vcc.c
18482 F:      include/linux/sunserialcore.h
18483
18484 SPARSE CHECKER
18485 M:      "Luc Van Oostenryck" <luc.vanoostenryck@gmail.com>
18486 L:      linux-sparse@vger.kernel.org
18487 S:      Maintained
18488 W:      https://sparse.docs.kernel.org/
18489 T:      git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
18490 Q:      https://patchwork.kernel.org/project/linux-sparse/list/
18491 B:      https://bugzilla.kernel.org/enter_bug.cgi?component=Sparse&product=Tools
18492 F:      include/linux/compiler.h
18493
18494 SPEAKUP CONSOLE SPEECH DRIVER
18495 M:      William Hubbs <w.d.hubbs@gmail.com>
18496 M:      Chris Brannon <chris@the-brannons.com>
18497 M:      Kirk Reiser <kirk@reisers.ca>
18498 M:      Samuel Thibault <samuel.thibault@ens-lyon.org>
18499 L:      speakup@linux-speakup.org
18500 S:      Odd Fixes
18501 W:      http://www.linux-speakup.org/
18502 W:      https://github.com/linux-speakup/speakup
18503 B:      https://github.com/linux-speakup/speakup/issues
18504 F:      drivers/accessibility/speakup/
18505
18506 SPEAR PLATFORM/CLOCK/PINCTRL SUPPORT
18507 M:      Viresh Kumar <vireshk@kernel.org>
18508 M:      Shiraz Hashim <shiraz.linux.kernel@gmail.com>
18509 M:      soc@kernel.org
18510 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
18511 S:      Maintained
18512 W:      http://www.st.com/spear
18513 F:      arch/arm/boot/dts/spear*
18514 F:      arch/arm/mach-spear/
18515 F:      drivers/clk/spear/
18516 F:      drivers/pinctrl/spear/
18517
18518 SPI NOR SUBSYSTEM
18519 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
18520 M:      Pratyush Yadav <p.yadav@ti.com>
18521 R:      Michael Walle <michael@walle.cc>
18522 L:      linux-mtd@lists.infradead.org
18523 S:      Maintained
18524 W:      http://www.linux-mtd.infradead.org/
18525 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
18526 C:      irc://irc.oftc.net/mtd
18527 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git spi-nor/next
18528 F:      Documentation/devicetree/bindings/mtd/jedec,spi-nor.yaml
18529 F:      drivers/mtd/spi-nor/
18530 F:      include/linux/mtd/spi-nor.h
18531
18532 SPI SUBSYSTEM
18533 M:      Mark Brown <broonie@kernel.org>
18534 L:      linux-spi@vger.kernel.org
18535 S:      Maintained
18536 Q:      http://patchwork.kernel.org/project/spi-devel-general/list/
18537 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
18538 F:      Documentation/devicetree/bindings/spi/
18539 F:      Documentation/spi/
18540 F:      drivers/spi/
18541 F:      include/linux/spi/
18542 F:      include/uapi/linux/spi/
18543 F:      tools/spi/
18544
18545 SPIDERNET NETWORK DRIVER for CELL
18546 M:      Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
18547 M:      Geoff Levand <geoff@infradead.org>
18548 L:      netdev@vger.kernel.org
18549 L:      linuxppc-dev@lists.ozlabs.org
18550 S:      Maintained
18551 F:      Documentation/networking/device_drivers/ethernet/toshiba/spider_net.rst
18552 F:      drivers/net/ethernet/toshiba/spider_net*
18553
18554 SPMI SUBSYSTEM
18555 M:      Stephen Boyd <sboyd@kernel.org>
18556 L:      linux-kernel@vger.kernel.org
18557 S:      Maintained
18558 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sboyd/spmi.git
18559 F:      Documentation/devicetree/bindings/spmi/
18560 F:      drivers/spmi/
18561 F:      include/dt-bindings/spmi/spmi.h
18562 F:      include/linux/spmi.h
18563 F:      include/trace/events/spmi.h
18564
18565 SPU FILE SYSTEM
18566 M:      Jeremy Kerr <jk@ozlabs.org>
18567 L:      linuxppc-dev@lists.ozlabs.org
18568 S:      Supported
18569 W:      http://www.ibm.com/developerworks/power/cell/
18570 F:      Documentation/filesystems/spufs/spufs.rst
18571 F:      arch/powerpc/platforms/cell/spufs/
18572
18573 SQUASHFS FILE SYSTEM
18574 M:      Phillip Lougher <phillip@squashfs.org.uk>
18575 L:      squashfs-devel@lists.sourceforge.net (subscribers-only)
18576 S:      Maintained
18577 W:      http://squashfs.org.uk
18578 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pkl/squashfs-next.git
18579 F:      Documentation/filesystems/squashfs.rst
18580 F:      fs/squashfs/
18581
18582 SRM (Alpha) environment access
18583 M:      Jan-Benedict Glaw <jbglaw@lug-owl.de>
18584 S:      Maintained
18585 F:      arch/alpha/kernel/srm_env.c
18586
18587 ST LSM6DSx IMU IIO DRIVER
18588 M:      Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
18589 L:      linux-iio@vger.kernel.org
18590 S:      Maintained
18591 W:      http://www.st.com/
18592 F:      Documentation/devicetree/bindings/iio/imu/st,lsm6dsx.yaml
18593 F:      drivers/iio/imu/st_lsm6dsx/
18594
18595 ST MIPID02 CSI-2 TO PARALLEL BRIDGE DRIVER
18596 M:      Benjamin Mugnier <benjamin.mugnier@foss.st.com>
18597 M:      Sylvain Petinot <sylvain.petinot@foss.st.com>
18598 L:      linux-media@vger.kernel.org
18599 S:      Maintained
18600 T:      git git://linuxtv.org/media_tree.git
18601 F:      Documentation/devicetree/bindings/media/i2c/st,st-mipid02.txt
18602 F:      drivers/media/i2c/st-mipid02.c
18603
18604 ST STM32 I2C/SMBUS DRIVER
18605 M:      Pierre-Yves MORDRET <pierre-yves.mordret@foss.st.com>
18606 M:      Alain Volmat <alain.volmat@foss.st.com>
18607 L:      linux-i2c@vger.kernel.org
18608 S:      Maintained
18609 F:      drivers/i2c/busses/i2c-stm32*
18610
18611 ST STM32 SPI DRIVER
18612 M:      Alain Volmat <alain.volmat@foss.st.com>
18613 L:      linux-spi@vger.kernel.org
18614 S:      Maintained
18615 F:      drivers/spi/spi-stm32.c
18616
18617 ST STPDDC60 DRIVER
18618 M:      Daniel Nilsson <daniel.nilsson@flex.com>
18619 L:      linux-hwmon@vger.kernel.org
18620 S:      Maintained
18621 F:      Documentation/hwmon/stpddc60.rst
18622 F:      drivers/hwmon/pmbus/stpddc60.c
18623
18624 ST VL53L0X ToF RANGER(I2C) IIO DRIVER
18625 M:      Song Qiang <songqiang1304521@gmail.com>
18626 L:      linux-iio@vger.kernel.org
18627 S:      Maintained
18628 F:      Documentation/devicetree/bindings/iio/proximity/st,vl53l0x.yaml
18629 F:      drivers/iio/proximity/vl53l0x-i2c.c
18630
18631 STABLE BRANCH
18632 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
18633 M:      Sasha Levin <sashal@kernel.org>
18634 L:      stable@vger.kernel.org
18635 S:      Supported
18636 F:      Documentation/process/stable-kernel-rules.rst
18637
18638 STAGING - ATOMISP DRIVER
18639 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
18640 R:      Sakari Ailus <sakari.ailus@linux.intel.com>
18641 L:      linux-media@vger.kernel.org
18642 S:      Maintained
18643 F:      drivers/staging/media/atomisp/
18644
18645 STAGING - FIELDBUS SUBSYSTEM
18646 M:      Sven Van Asbroeck <TheSven73@gmail.com>
18647 S:      Maintained
18648 F:      drivers/staging/fieldbus/*
18649 F:      drivers/staging/fieldbus/Documentation/
18650
18651 STAGING - HMS ANYBUS-S BUS
18652 M:      Sven Van Asbroeck <TheSven73@gmail.com>
18653 S:      Maintained
18654 F:      drivers/staging/fieldbus/anybuss/
18655
18656 STAGING - INDUSTRIAL IO
18657 M:      Jonathan Cameron <jic23@kernel.org>
18658 L:      linux-iio@vger.kernel.org
18659 S:      Odd Fixes
18660 F:      Documentation/devicetree/bindings/staging/iio/
18661 F:      drivers/staging/iio/
18662
18663 STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
18664 M:      Marc Dietrich <marvin24@gmx.de>
18665 L:      ac100@lists.launchpad.net (moderated for non-subscribers)
18666 L:      linux-tegra@vger.kernel.org
18667 S:      Maintained
18668 F:      drivers/staging/nvec/
18669
18670 STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
18671 M:      Jens Frederich <jfrederich@gmail.com>
18672 M:      Jon Nettleton <jon.nettleton@gmail.com>
18673 S:      Maintained
18674 W:      http://wiki.laptop.org/go/DCON
18675 F:      drivers/staging/olpc_dcon/
18676
18677 STAGING - REALTEK RTL8188EU DRIVERS
18678 M:      Larry Finger <Larry.Finger@lwfinger.net>
18679 M:      Phillip Potter <phil@philpotter.co.uk>
18680 S:      Supported
18681 F:      drivers/staging/r8188eu/
18682
18683 STAGING - REALTEK RTL8712U DRIVERS
18684 M:      Larry Finger <Larry.Finger@lwfinger.net>
18685 M:      Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
18686 S:      Odd Fixes
18687 F:      drivers/staging/rtl8712/
18688
18689 STAGING - SEPS525 LCD CONTROLLER DRIVERS
18690 M:      Michael Hennerich <michael.hennerich@analog.com>
18691 L:      linux-fbdev@vger.kernel.org
18692 S:      Supported
18693 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7606.yaml
18694 F:      drivers/staging/fbtft/fb_seps525.c
18695
18696 STAGING - SILICON MOTION SM750 FRAME BUFFER DRIVER
18697 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
18698 M:      Teddy Wang <teddy.wang@siliconmotion.com>
18699 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
18700 L:      linux-fbdev@vger.kernel.org
18701 S:      Maintained
18702 F:      drivers/staging/sm750fb/
18703
18704 STAGING - VIA VT665X DRIVERS
18705 M:      Forest Bond <forest@alittletooquiet.net>
18706 S:      Odd Fixes
18707 F:      drivers/staging/vt665?/
18708
18709 STAGING SUBSYSTEM
18710 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
18711 L:      linux-staging@lists.linux.dev
18712 S:      Supported
18713 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
18714 F:      drivers/staging/
18715
18716 STARFIRE/DURALAN NETWORK DRIVER
18717 M:      Ion Badulescu <ionut@badula.org>
18718 S:      Odd Fixes
18719 F:      drivers/net/ethernet/adaptec/starfire*
18720
18721 STARFIVE JH7100 CLOCK DRIVER
18722 M:      Emil Renner Berthing <kernel@esmil.dk>
18723 S:      Maintained
18724 F:      Documentation/devicetree/bindings/clock/starfive,jh7100-clkgen.yaml
18725 F:      drivers/clk/starfive/clk-starfive-jh7100.c
18726 F:      include/dt-bindings/clock/starfive-jh7100.h
18727
18728 STARFIVE JH7100 PINCTRL DRIVER
18729 M:      Emil Renner Berthing <kernel@esmil.dk>
18730 L:      linux-gpio@vger.kernel.org
18731 S:      Maintained
18732 F:      Documentation/devicetree/bindings/pinctrl/starfive,jh7100-pinctrl.yaml
18733 F:      drivers/pinctrl/pinctrl-starfive.c
18734 F:      include/dt-bindings/pinctrl/pinctrl-starfive.h
18735
18736 STARFIVE JH7100 RESET CONTROLLER DRIVER
18737 M:      Emil Renner Berthing <kernel@esmil.dk>
18738 S:      Maintained
18739 F:      Documentation/devicetree/bindings/reset/starfive,jh7100-reset.yaml
18740 F:      drivers/reset/reset-starfive-jh7100.c
18741 F:      include/dt-bindings/reset/starfive-jh7100.h
18742
18743 STATIC BRANCH/CALL
18744 M:      Peter Zijlstra <peterz@infradead.org>
18745 M:      Josh Poimboeuf <jpoimboe@redhat.com>
18746 M:      Jason Baron <jbaron@akamai.com>
18747 R:      Steven Rostedt <rostedt@goodmis.org>
18748 R:      Ard Biesheuvel <ardb@kernel.org>
18749 S:      Supported
18750 F:      arch/*/include/asm/jump_label*.h
18751 F:      arch/*/include/asm/static_call*.h
18752 F:      arch/*/kernel/jump_label.c
18753 F:      arch/*/kernel/static_call.c
18754 F:      include/linux/jump_label*.h
18755 F:      include/linux/static_call*.h
18756 F:      kernel/jump_label.c
18757 F:      kernel/static_call.c
18758
18759 STI AUDIO (ASoC) DRIVERS
18760 M:      Arnaud Pouliquen <arnaud.pouliquen@foss.st.com>
18761 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18762 S:      Maintained
18763 F:      Documentation/devicetree/bindings/sound/st,sti-asoc-card.txt
18764 F:      sound/soc/sti/
18765
18766 STI CEC DRIVER
18767 M:      Alain Volmat <alain.volmat@foss.st.com>
18768 S:      Maintained
18769 F:      Documentation/devicetree/bindings/media/stih-cec.txt
18770 F:      drivers/media/cec/platform/sti/
18771
18772 STK1160 USB VIDEO CAPTURE DRIVER
18773 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
18774 L:      linux-media@vger.kernel.org
18775 S:      Maintained
18776 T:      git git://linuxtv.org/media_tree.git
18777 F:      drivers/media/usb/stk1160/
18778
18779 STM32 AUDIO (ASoC) DRIVERS
18780 M:      Olivier Moysan <olivier.moysan@foss.st.com>
18781 M:      Arnaud Pouliquen <arnaud.pouliquen@foss.st.com>
18782 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18783 S:      Maintained
18784 F:      Documentation/devicetree/bindings/iio/adc/st,stm32-dfsdm-adc.yaml
18785 F:      Documentation/devicetree/bindings/sound/st,stm32-*.yaml
18786 F:      sound/soc/stm/
18787
18788 STM32 TIMER/LPTIMER DRIVERS
18789 M:      Fabrice Gasnier <fabrice.gasnier@foss.st.com>
18790 S:      Maintained
18791 F:      Documentation/ABI/testing/*timer-stm32
18792 F:      Documentation/devicetree/bindings/*/*stm32-*timer*
18793 F:      drivers/*/stm32-*timer*
18794 F:      drivers/pwm/pwm-stm32*
18795 F:      include/linux/*/stm32-*tim*
18796
18797 STMMAC ETHERNET DRIVER
18798 M:      Giuseppe Cavallaro <peppe.cavallaro@st.com>
18799 M:      Alexandre Torgue <alexandre.torgue@foss.st.com>
18800 M:      Jose Abreu <joabreu@synopsys.com>
18801 L:      netdev@vger.kernel.org
18802 S:      Supported
18803 W:      http://www.stlinux.com
18804 F:      Documentation/networking/device_drivers/ethernet/stmicro/
18805 F:      drivers/net/ethernet/stmicro/stmmac/
18806
18807 SUN3/3X
18808 M:      Sam Creasey <sammy@sammy.net>
18809 S:      Maintained
18810 W:      http://sammy.net/sun3/
18811 F:      arch/m68k/include/asm/sun3*
18812 F:      arch/m68k/kernel/*sun3*
18813 F:      arch/m68k/sun3*/
18814 F:      drivers/net/ethernet/i825xx/sun3*
18815
18816 SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER
18817 M:      Hans de Goede <hdegoede@redhat.com>
18818 L:      linux-input@vger.kernel.org
18819 S:      Maintained
18820 F:      Documentation/devicetree/bindings/input/allwinner,sun4i-a10-lradc-keys.yaml
18821 F:      drivers/input/keyboard/sun4i-lradc-keys.c
18822
18823 SUNDANCE NETWORK DRIVER
18824 M:      Denis Kirjanov <kda@linux-powerpc.org>
18825 L:      netdev@vger.kernel.org
18826 S:      Maintained
18827 F:      drivers/net/ethernet/dlink/sundance.c
18828
18829 SUNPLUS OCOTP DRIVER
18830 M:      Vincent Shih <vincent.sunplus@gmail.com>
18831 S:      Maintained
18832 F:      Documentation/devicetree/bindings/nvmem/sunplus,sp7021-ocotp.yaml
18833 F:      drivers/nvmem/sunplus-ocotp.c
18834
18835 SUNPLUS RTC DRIVER
18836 M:      Vincent Shih <vincent.sunplus@gmail.com>
18837 L:      linux-rtc@vger.kernel.org
18838 S:      Maintained
18839 F:      Documentation/devicetree/bindings/rtc/sunplus,sp7021-rtc.yaml
18840 F:      drivers/rtc/rtc-sunplus.c
18841
18842 SUNPLUS SPI CONTROLLER INTERFACE DRIVER
18843 M:      Li-hao Kuo <lhjeff911@gmail.com>
18844 L:      linux-spi@vger.kernel.org
18845 S:      Maintained
18846 F:      Documentation/devicetree/bindings/spi/spi-sunplus-sp7021.yaml
18847 F:      drivers/spi/spi-sunplus-sp7021.c
18848
18849 SUPERH
18850 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
18851 M:      Rich Felker <dalias@libc.org>
18852 L:      linux-sh@vger.kernel.org
18853 S:      Maintained
18854 Q:      http://patchwork.kernel.org/project/linux-sh/list/
18855 F:      Documentation/sh/
18856 F:      arch/sh/
18857 F:      drivers/sh/
18858
18859 SUSPEND TO RAM
18860 M:      "Rafael J. Wysocki" <rafael@kernel.org>
18861 M:      Len Brown <len.brown@intel.com>
18862 M:      Pavel Machek <pavel@ucw.cz>
18863 L:      linux-pm@vger.kernel.org
18864 S:      Supported
18865 B:      https://bugzilla.kernel.org
18866 F:      Documentation/power/
18867 F:      arch/x86/kernel/acpi/
18868 F:      drivers/base/power/
18869 F:      include/linux/freezer.h
18870 F:      include/linux/pm.h
18871 F:      include/linux/suspend.h
18872 F:      kernel/power/
18873
18874 SVGA HANDLING
18875 M:      Martin Mares <mj@ucw.cz>
18876 L:      linux-video@atrey.karlin.mff.cuni.cz
18877 S:      Maintained
18878 F:      Documentation/admin-guide/svga.rst
18879 F:      arch/x86/boot/video*
18880
18881 SWIOTLB SUBSYSTEM
18882 M:      Christoph Hellwig <hch@infradead.org>
18883 L:      iommu@lists.linux-foundation.org
18884 S:      Supported
18885 W:      http://git.infradead.org/users/hch/dma-mapping.git
18886 T:      git git://git.infradead.org/users/hch/dma-mapping.git
18887 F:      arch/*/kernel/pci-swiotlb.c
18888 F:      include/linux/swiotlb.h
18889 F:      kernel/dma/swiotlb.c
18890
18891 SWITCHDEV
18892 M:      Jiri Pirko <jiri@resnulli.us>
18893 M:      Ivan Vecera <ivecera@redhat.com>
18894 L:      netdev@vger.kernel.org
18895 S:      Supported
18896 F:      include/net/switchdev.h
18897 F:      net/switchdev/
18898
18899 SY8106A REGULATOR DRIVER
18900 M:      Icenowy Zheng <icenowy@aosc.io>
18901 S:      Maintained
18902 F:      Documentation/devicetree/bindings/regulator/silergy,sy8106a.yaml
18903 F:      drivers/regulator/sy8106a-regulator.c
18904
18905 SYNC FILE FRAMEWORK
18906 M:      Sumit Semwal <sumit.semwal@linaro.org>
18907 R:      Gustavo Padovan <gustavo@padovan.org>
18908 L:      linux-media@vger.kernel.org
18909 L:      dri-devel@lists.freedesktop.org
18910 S:      Maintained
18911 T:      git git://anongit.freedesktop.org/drm/drm-misc
18912 F:      Documentation/driver-api/sync_file.rst
18913 F:      drivers/dma-buf/dma-fence*
18914 F:      drivers/dma-buf/sw_sync.c
18915 F:      drivers/dma-buf/sync_*
18916 F:      include/linux/sync_file.h
18917 F:      include/uapi/linux/sync_file.h
18918
18919 SYNOPSYS ARC ARCHITECTURE
18920 M:      Vineet Gupta <vgupta@kernel.org>
18921 L:      linux-snps-arc@lists.infradead.org
18922 S:      Supported
18923 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc.git
18924 F:      Documentation/arc/
18925 F:      Documentation/devicetree/bindings/arc/*
18926 F:      Documentation/devicetree/bindings/interrupt-controller/snps,arc*
18927 F:      arch/arc/
18928 F:      drivers/clocksource/arc_timer.c
18929 F:      drivers/tty/serial/arc_uart.c
18930
18931 SYNOPSYS ARC HSDK SDP pll clock driver
18932 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
18933 S:      Supported
18934 F:      Documentation/devicetree/bindings/clock/snps,hsdk-pll-clock.txt
18935 F:      drivers/clk/clk-hsdk-pll.c
18936
18937 SYNOPSYS ARC SDP clock driver
18938 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
18939 S:      Supported
18940 F:      Documentation/devicetree/bindings/clock/snps,pll-clock.txt
18941 F:      drivers/clk/axs10x/*
18942
18943 SYNOPSYS ARC SDP platform support
18944 M:      Alexey Brodkin <abrodkin@synopsys.com>
18945 S:      Supported
18946 F:      Documentation/devicetree/bindings/arc/axs10*
18947 F:      arch/arc/boot/dts/ax*
18948 F:      arch/arc/plat-axs10x
18949
18950 SYNOPSYS AXS10x RESET CONTROLLER DRIVER
18951 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
18952 S:      Supported
18953 F:      Documentation/devicetree/bindings/reset/snps,axs10x-reset.txt
18954 F:      drivers/reset/reset-axs10x.c
18955
18956 SYNOPSYS CREG GPIO DRIVER
18957 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
18958 S:      Maintained
18959 F:      Documentation/devicetree/bindings/gpio/snps,creg-gpio.txt
18960 F:      drivers/gpio/gpio-creg-snps.c
18961
18962 SYNOPSYS DESIGNWARE 8250 UART DRIVER
18963 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
18964 S:      Maintained
18965 F:      drivers/tty/serial/8250/8250_dw.c
18966 F:      drivers/tty/serial/8250/8250_dwlib.*
18967 F:      drivers/tty/serial/8250/8250_lpss.c
18968
18969 SYNOPSYS DESIGNWARE APB GPIO DRIVER
18970 M:      Hoan Tran <hoan@os.amperecomputing.com>
18971 M:      Serge Semin <fancer.lancer@gmail.com>
18972 L:      linux-gpio@vger.kernel.org
18973 S:      Maintained
18974 F:      Documentation/devicetree/bindings/gpio/snps,dw-apb-gpio.yaml
18975 F:      drivers/gpio/gpio-dwapb.c
18976
18977 SYNOPSYS DESIGNWARE APB SSI DRIVER
18978 M:      Serge Semin <fancer.lancer@gmail.com>
18979 L:      linux-spi@vger.kernel.org
18980 S:      Supported
18981 F:      Documentation/devicetree/bindings/spi/snps,dw-apb-ssi.yaml
18982 F:      drivers/spi/spi-dw*
18983
18984 SYNOPSYS DESIGNWARE AXI DMAC DRIVER
18985 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
18986 S:      Maintained
18987 F:      Documentation/devicetree/bindings/dma/snps,dw-axi-dmac.yaml
18988 F:      drivers/dma/dw-axi-dmac/
18989
18990 SYNOPSYS DESIGNWARE DMAC DRIVER
18991 M:      Viresh Kumar <vireshk@kernel.org>
18992 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
18993 S:      Maintained
18994 F:      Documentation/devicetree/bindings/dma/snps,dma-spear1340.yaml
18995 F:      drivers/dma/dw/
18996 F:      include/dt-bindings/dma/dw-dmac.h
18997 F:      include/linux/dma/dw.h
18998 F:      include/linux/platform_data/dma-dw.h
18999
19000 SYNOPSYS DESIGNWARE ENTERPRISE ETHERNET DRIVER
19001 M:      Jose Abreu <Jose.Abreu@synopsys.com>
19002 L:      netdev@vger.kernel.org
19003 S:      Supported
19004 F:      drivers/net/ethernet/synopsys/
19005
19006 SYNOPSYS DESIGNWARE ETHERNET XPCS DRIVER
19007 M:      Jose Abreu <Jose.Abreu@synopsys.com>
19008 L:      netdev@vger.kernel.org
19009 S:      Supported
19010 F:      drivers/net/pcs/pcs-xpcs.c
19011 F:      drivers/net/pcs/pcs-xpcs.h
19012 F:      include/linux/pcs/pcs-xpcs.h
19013
19014 SYNOPSYS DESIGNWARE I2C DRIVER
19015 M:      Jarkko Nikula <jarkko.nikula@linux.intel.com>
19016 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
19017 R:      Mika Westerberg <mika.westerberg@linux.intel.com>
19018 R:      Jan Dabros <jsd@semihalf.com>
19019 L:      linux-i2c@vger.kernel.org
19020 S:      Maintained
19021 F:      drivers/i2c/busses/i2c-designware-*
19022
19023 SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
19024 M:      Jaehoon Chung <jh80.chung@samsung.com>
19025 L:      linux-mmc@vger.kernel.org
19026 S:      Maintained
19027 F:      drivers/mmc/host/dw_mmc*
19028
19029 SYNOPSYS HSDK RESET CONTROLLER DRIVER
19030 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
19031 S:      Supported
19032 F:      Documentation/devicetree/bindings/reset/snps,hsdk-reset.txt
19033 F:      drivers/reset/reset-hsdk.c
19034 F:      include/dt-bindings/reset/snps,hsdk-reset.h
19035
19036 SYNOPSYS SDHCI COMPLIANT DWC MSHC DRIVER
19037 M:      Prabu Thangamuthu <prabu.t@synopsys.com>
19038 M:      Manjunath M B <manjumb@synopsys.com>
19039 L:      linux-mmc@vger.kernel.org
19040 S:      Maintained
19041 F:      drivers/mmc/host/sdhci-pci-dwc-mshc.c
19042
19043 SYSTEM CONFIGURATION (SYSCON)
19044 M:      Lee Jones <lee.jones@linaro.org>
19045 M:      Arnd Bergmann <arnd@arndb.de>
19046 S:      Supported
19047 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
19048 F:      drivers/mfd/syscon.c
19049
19050 SYSTEM CONTROL & POWER/MANAGEMENT INTERFACE (SCPI/SCMI) Message Protocol drivers
19051 M:      Sudeep Holla <sudeep.holla@arm.com>
19052 R:      Cristian Marussi <cristian.marussi@arm.com>
19053 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
19054 S:      Maintained
19055 F:      Documentation/devicetree/bindings/firmware/arm,sc[mp]i.yaml
19056 F:      drivers/clk/clk-sc[mp]i.c
19057 F:      drivers/cpufreq/sc[mp]i-cpufreq.c
19058 F:      drivers/firmware/arm_scmi/
19059 F:      drivers/firmware/arm_scpi.c
19060 F:      drivers/regulator/scmi-regulator.c
19061 F:      drivers/reset/reset-scmi.c
19062 F:      include/linux/sc[mp]i_protocol.h
19063 F:      include/trace/events/scmi.h
19064 F:      include/uapi/linux/virtio_scmi.h
19065
19066 SYSTEM RESET/SHUTDOWN DRIVERS
19067 M:      Sebastian Reichel <sre@kernel.org>
19068 L:      linux-pm@vger.kernel.org
19069 S:      Maintained
19070 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
19071 F:      Documentation/devicetree/bindings/power/reset/
19072 F:      drivers/power/reset/
19073
19074 SYSTEM TRACE MODULE CLASS
19075 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
19076 S:      Maintained
19077 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ash/stm.git
19078 F:      Documentation/trace/stm.rst
19079 F:      drivers/hwtracing/stm/
19080 F:      include/linux/stm.h
19081 F:      include/uapi/linux/stm.h
19082
19083 SYSTEM76 ACPI DRIVER
19084 M:      Jeremy Soller <jeremy@system76.com>
19085 M:      System76 Product Development <productdev@system76.com>
19086 L:      platform-driver-x86@vger.kernel.org
19087 S:      Maintained
19088 F:      drivers/platform/x86/system76_acpi.c
19089
19090 SYSV FILESYSTEM
19091 M:      Christoph Hellwig <hch@infradead.org>
19092 S:      Maintained
19093 F:      Documentation/filesystems/sysv-fs.rst
19094 F:      fs/sysv/
19095 F:      include/linux/sysv_fs.h
19096
19097 TASKSTATS STATISTICS INTERFACE
19098 M:      Balbir Singh <bsingharora@gmail.com>
19099 S:      Maintained
19100 F:      Documentation/accounting/taskstats*
19101 F:      include/linux/taskstats*
19102 F:      kernel/taskstats.c
19103
19104 TC subsystem
19105 M:      Jamal Hadi Salim <jhs@mojatatu.com>
19106 M:      Cong Wang <xiyou.wangcong@gmail.com>
19107 M:      Jiri Pirko <jiri@resnulli.us>
19108 L:      netdev@vger.kernel.org
19109 S:      Maintained
19110 F:      include/net/pkt_cls.h
19111 F:      include/net/pkt_sched.h
19112 F:      include/net/tc_act/
19113 F:      include/uapi/linux/pkt_cls.h
19114 F:      include/uapi/linux/pkt_sched.h
19115 F:      include/uapi/linux/tc_act/
19116 F:      include/uapi/linux/tc_ematch/
19117 F:      net/sched/
19118 F:      tools/testing/selftests/tc-testing
19119
19120 TC90522 MEDIA DRIVER
19121 M:      Akihiro Tsukada <tskd08@gmail.com>
19122 L:      linux-media@vger.kernel.org
19123 S:      Odd Fixes
19124 F:      drivers/media/dvb-frontends/tc90522*
19125
19126 TCP LOW PRIORITY MODULE
19127 M:      "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
19128 M:      "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
19129 S:      Maintained
19130 W:      http://tcp-lp-mod.sourceforge.net/
19131 F:      net/ipv4/tcp_lp.c
19132
19133 TDA10071 MEDIA DRIVER
19134 M:      Antti Palosaari <crope@iki.fi>
19135 L:      linux-media@vger.kernel.org
19136 S:      Maintained
19137 W:      https://linuxtv.org
19138 W:      http://palosaari.fi/linux/
19139 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19140 T:      git git://linuxtv.org/anttip/media_tree.git
19141 F:      drivers/media/dvb-frontends/tda10071*
19142
19143 TDA18212 MEDIA DRIVER
19144 M:      Antti Palosaari <crope@iki.fi>
19145 L:      linux-media@vger.kernel.org
19146 S:      Maintained
19147 W:      https://linuxtv.org
19148 W:      http://palosaari.fi/linux/
19149 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19150 T:      git git://linuxtv.org/anttip/media_tree.git
19151 F:      drivers/media/tuners/tda18212*
19152
19153 TDA18218 MEDIA DRIVER
19154 M:      Antti Palosaari <crope@iki.fi>
19155 L:      linux-media@vger.kernel.org
19156 S:      Maintained
19157 W:      https://linuxtv.org
19158 W:      http://palosaari.fi/linux/
19159 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19160 T:      git git://linuxtv.org/anttip/media_tree.git
19161 F:      drivers/media/tuners/tda18218*
19162
19163 TDA18250 MEDIA DRIVER
19164 M:      Olli Salonen <olli.salonen@iki.fi>
19165 L:      linux-media@vger.kernel.org
19166 S:      Maintained
19167 W:      https://linuxtv.org
19168 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19169 T:      git git://linuxtv.org/media_tree.git
19170 F:      drivers/media/tuners/tda18250*
19171
19172 TDA18271 MEDIA DRIVER
19173 M:      Michael Krufky <mkrufky@linuxtv.org>
19174 L:      linux-media@vger.kernel.org
19175 S:      Maintained
19176 W:      https://linuxtv.org
19177 W:      http://github.com/mkrufky
19178 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19179 T:      git git://linuxtv.org/mkrufky/tuners.git
19180 F:      drivers/media/tuners/tda18271*
19181
19182 TDA1997x MEDIA DRIVER
19183 M:      Tim Harvey <tharvey@gateworks.com>
19184 L:      linux-media@vger.kernel.org
19185 S:      Maintained
19186 W:      https://linuxtv.org
19187 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19188 F:      drivers/media/i2c/tda1997x.*
19189
19190 TDA827x MEDIA DRIVER
19191 M:      Michael Krufky <mkrufky@linuxtv.org>
19192 L:      linux-media@vger.kernel.org
19193 S:      Maintained
19194 W:      https://linuxtv.org
19195 W:      http://github.com/mkrufky
19196 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19197 T:      git git://linuxtv.org/mkrufky/tuners.git
19198 F:      drivers/media/tuners/tda8290.*
19199
19200 TDA8290 MEDIA DRIVER
19201 M:      Michael Krufky <mkrufky@linuxtv.org>
19202 L:      linux-media@vger.kernel.org
19203 S:      Maintained
19204 W:      https://linuxtv.org
19205 W:      http://github.com/mkrufky
19206 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19207 T:      git git://linuxtv.org/mkrufky/tuners.git
19208 F:      drivers/media/tuners/tda8290.*
19209
19210 TDA9840 MEDIA DRIVER
19211 M:      Hans Verkuil <hverkuil@xs4all.nl>
19212 L:      linux-media@vger.kernel.org
19213 S:      Maintained
19214 W:      https://linuxtv.org
19215 T:      git git://linuxtv.org/media_tree.git
19216 F:      drivers/media/i2c/tda9840*
19217
19218 TEA5761 TUNER DRIVER
19219 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
19220 L:      linux-media@vger.kernel.org
19221 S:      Odd fixes
19222 W:      https://linuxtv.org
19223 T:      git git://linuxtv.org/media_tree.git
19224 F:      drivers/media/tuners/tea5761.*
19225
19226 TEA5767 TUNER DRIVER
19227 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
19228 L:      linux-media@vger.kernel.org
19229 S:      Maintained
19230 W:      https://linuxtv.org
19231 T:      git git://linuxtv.org/media_tree.git
19232 F:      drivers/media/tuners/tea5767.*
19233
19234 TEA6415C MEDIA DRIVER
19235 M:      Hans Verkuil <hverkuil@xs4all.nl>
19236 L:      linux-media@vger.kernel.org
19237 S:      Maintained
19238 W:      https://linuxtv.org
19239 T:      git git://linuxtv.org/media_tree.git
19240 F:      drivers/media/i2c/tea6415c*
19241
19242 TEA6420 MEDIA DRIVER
19243 M:      Hans Verkuil <hverkuil@xs4all.nl>
19244 L:      linux-media@vger.kernel.org
19245 S:      Maintained
19246 W:      https://linuxtv.org
19247 T:      git git://linuxtv.org/media_tree.git
19248 F:      drivers/media/i2c/tea6420*
19249
19250 TEAM DRIVER
19251 M:      Jiri Pirko <jiri@resnulli.us>
19252 L:      netdev@vger.kernel.org
19253 S:      Supported
19254 F:      drivers/net/team/
19255 F:      include/linux/if_team.h
19256 F:      include/uapi/linux/if_team.h
19257
19258 TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
19259 M:      "Savoir-faire Linux Inc." <kernel@savoirfairelinux.com>
19260 S:      Maintained
19261 F:      arch/x86/platform/ts5500/
19262
19263 TECHNOTREND USB IR RECEIVER
19264 M:      Sean Young <sean@mess.org>
19265 L:      linux-media@vger.kernel.org
19266 S:      Maintained
19267 F:      drivers/media/rc/ttusbir.c
19268
19269 TECHWELL TW9910 VIDEO DECODER
19270 L:      linux-media@vger.kernel.org
19271 S:      Orphan
19272 F:      drivers/media/i2c/tw9910.c
19273 F:      include/media/i2c/tw9910.h
19274
19275 TEE SUBSYSTEM
19276 M:      Jens Wiklander <jens.wiklander@linaro.org>
19277 R:      Sumit Garg <sumit.garg@linaro.org>
19278 L:      op-tee@lists.trustedfirmware.org
19279 S:      Maintained
19280 F:      Documentation/staging/tee.rst
19281 F:      drivers/tee/
19282 F:      include/linux/tee_drv.h
19283 F:      include/uapi/linux/tee.h
19284
19285 TEGRA ARCHITECTURE SUPPORT
19286 M:      Thierry Reding <thierry.reding@gmail.com>
19287 M:      Jonathan Hunter <jonathanh@nvidia.com>
19288 L:      linux-tegra@vger.kernel.org
19289 S:      Supported
19290 Q:      http://patchwork.ozlabs.org/project/linux-tegra/list/
19291 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git
19292 N:      [^a-z]tegra
19293
19294 TEGRA CLOCK DRIVER
19295 M:      Peter De Schrijver <pdeschrijver@nvidia.com>
19296 M:      Prashant Gaikwad <pgaikwad@nvidia.com>
19297 S:      Supported
19298 F:      drivers/clk/tegra/
19299
19300 TEGRA DMA DRIVERS
19301 M:      Laxman Dewangan <ldewangan@nvidia.com>
19302 M:      Jon Hunter <jonathanh@nvidia.com>
19303 S:      Supported
19304 F:      drivers/dma/tegra*
19305
19306 TEGRA I2C DRIVER
19307 M:      Laxman Dewangan <ldewangan@nvidia.com>
19308 R:      Dmitry Osipenko <digetx@gmail.com>
19309 S:      Supported
19310 F:      drivers/i2c/busses/i2c-tegra.c
19311
19312 TEGRA IOMMU DRIVERS
19313 M:      Thierry Reding <thierry.reding@gmail.com>
19314 R:      Krishna Reddy <vdumpa@nvidia.com>
19315 L:      linux-tegra@vger.kernel.org
19316 S:      Supported
19317 F:      drivers/iommu/arm/arm-smmu/arm-smmu-nvidia.c
19318 F:      drivers/iommu/tegra*
19319
19320 TEGRA KBC DRIVER
19321 M:      Laxman Dewangan <ldewangan@nvidia.com>
19322 S:      Supported
19323 F:      drivers/input/keyboard/tegra-kbc.c
19324
19325 TEGRA NAND DRIVER
19326 M:      Stefan Agner <stefan@agner.ch>
19327 M:      Lucas Stach <dev@lynxeye.de>
19328 S:      Maintained
19329 F:      Documentation/devicetree/bindings/mtd/nvidia-tegra20-nand.txt
19330 F:      drivers/mtd/nand/raw/tegra_nand.c
19331
19332 TEGRA PWM DRIVER
19333 M:      Thierry Reding <thierry.reding@gmail.com>
19334 S:      Supported
19335 F:      drivers/pwm/pwm-tegra.c
19336
19337 TEGRA SERIAL DRIVER
19338 M:      Laxman Dewangan <ldewangan@nvidia.com>
19339 S:      Supported
19340 F:      drivers/tty/serial/serial-tegra.c
19341
19342 TEGRA SPI DRIVER
19343 M:      Laxman Dewangan <ldewangan@nvidia.com>
19344 S:      Supported
19345 F:      drivers/spi/spi-tegra*
19346
19347 TEGRA QUAD SPI DRIVER
19348 M:      Thierry Reding <thierry.reding@gmail.com>
19349 M:      Jonathan Hunter <jonathanh@nvidia.com>
19350 M:      Sowjanya Komatineni <skomatineni@nvidia.com>
19351 L:      linux-tegra@vger.kernel.org
19352 S:      Maintained
19353 F:      drivers/spi/spi-tegra210-quad.c
19354
19355 TEGRA VIDEO DRIVER
19356 M:      Thierry Reding <thierry.reding@gmail.com>
19357 M:      Jonathan Hunter <jonathanh@nvidia.com>
19358 M:      Sowjanya Komatineni <skomatineni@nvidia.com>
19359 L:      linux-media@vger.kernel.org
19360 L:      linux-tegra@vger.kernel.org
19361 S:      Maintained
19362 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
19363 F:      drivers/staging/media/tegra-video/
19364
19365 TEGRA XUSB PADCTL DRIVER
19366 M:      JC Kuo <jckuo@nvidia.com>
19367 S:      Supported
19368 F:      drivers/phy/tegra/xusb*
19369
19370 TEHUTI ETHERNET DRIVER
19371 M:      Andy Gospodarek <andy@greyhouse.net>
19372 L:      netdev@vger.kernel.org
19373 S:      Supported
19374 F:      drivers/net/ethernet/tehuti/*
19375
19376 TELECOM CLOCK DRIVER FOR MCPL0010
19377 M:      Mark Gross <markgross@kernel.org>
19378 S:      Supported
19379 F:      drivers/char/tlclk.c
19380
19381 TEMPO SEMICONDUCTOR DRIVERS
19382 M:      Steven Eckhoff <steven.eckhoff.opensource@gmail.com>
19383 S:      Maintained
19384 F:      Documentation/devicetree/bindings/sound/tscs*.txt
19385 F:      sound/soc/codecs/tscs*.c
19386 F:      sound/soc/codecs/tscs*.h
19387
19388 TENSILICA XTENSA PORT (xtensa)
19389 M:      Chris Zankel <chris@zankel.net>
19390 M:      Max Filippov <jcmvbkbc@gmail.com>
19391 L:      linux-xtensa@linux-xtensa.org
19392 S:      Maintained
19393 T:      git git://github.com/czankel/xtensa-linux.git
19394 F:      arch/xtensa/
19395 F:      drivers/irqchip/irq-xtensa-*
19396
19397 TEXAS INSTRUMENTS ASoC DRIVERS
19398 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
19399 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19400 S:      Maintained
19401 F:      Documentation/devicetree/bindings/sound/davinci-mcasp-audio.yaml
19402 F:      sound/soc/ti/
19403
19404 TEXAS INSTRUMENTS' DAC7612 DAC DRIVER
19405 M:      Ricardo Ribalda <ribalda@kernel.org>
19406 L:      linux-iio@vger.kernel.org
19407 S:      Supported
19408 F:      Documentation/devicetree/bindings/iio/dac/ti,dac7612.yaml
19409 F:      drivers/iio/dac/ti-dac7612.c
19410
19411 TEXAS INSTRUMENTS DMA DRIVERS
19412 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
19413 L:      dmaengine@vger.kernel.org
19414 S:      Maintained
19415 F:      Documentation/devicetree/bindings/dma/ti-dma-crossbar.txt
19416 F:      Documentation/devicetree/bindings/dma/ti-edma.txt
19417 F:      Documentation/devicetree/bindings/dma/ti/
19418 F:      drivers/dma/ti/
19419 X:      drivers/dma/ti/cppi41.c
19420 F:      include/linux/dma/k3-udma-glue.h
19421 F:      include/linux/dma/ti-cppi5.h
19422 F:      include/linux/dma/k3-psil.h
19423
19424 TEXAS INSTRUMENTS' SYSTEM CONTROL INTERFACE (TISCI) PROTOCOL DRIVER
19425 M:      Nishanth Menon <nm@ti.com>
19426 M:      Tero Kristo <kristo@kernel.org>
19427 M:      Santosh Shilimkar <ssantosh@kernel.org>
19428 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
19429 S:      Maintained
19430 F:      Documentation/devicetree/bindings/arm/keystone/ti,k3-sci-common.yaml
19431 F:      Documentation/devicetree/bindings/arm/keystone/ti,sci.yaml
19432 F:      Documentation/devicetree/bindings/clock/ti,sci-clk.yaml
19433 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-inta.yaml
19434 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-intr.yaml
19435 F:      Documentation/devicetree/bindings/reset/ti,sci-reset.yaml
19436 F:      Documentation/devicetree/bindings/soc/ti/sci-pm-domain.yaml
19437 F:      drivers/clk/keystone/sci-clk.c
19438 F:      drivers/firmware/ti_sci*
19439 F:      drivers/irqchip/irq-ti-sci-inta.c
19440 F:      drivers/irqchip/irq-ti-sci-intr.c
19441 F:      drivers/reset/reset-ti-sci.c
19442 F:      drivers/soc/ti/ti_sci_inta_msi.c
19443 F:      drivers/soc/ti/ti_sci_pm_domains.c
19444 F:      include/dt-bindings/soc/ti,sci_pm_domain.h
19445 F:      include/linux/soc/ti/ti_sci_inta_msi.h
19446 F:      include/linux/soc/ti/ti_sci_protocol.h
19447
19448 TEXAS INSTRUMENTS TPS23861 PoE PSE DRIVER
19449 M:      Robert Marko <robert.marko@sartura.hr>
19450 M:      Luka Perkov <luka.perkov@sartura.hr>
19451 L:      linux-hwmon@vger.kernel.org
19452 S:      Maintained
19453 F:      Documentation/devicetree/bindings/hwmon/ti,tps23861.yaml
19454 F:      Documentation/hwmon/tps23861.rst
19455 F:      drivers/hwmon/tps23861.c
19456
19457 TEXAS INSTRUMENTS' TMP117 TEMPERATURE SENSOR DRIVER
19458 M:      Puranjay Mohan <puranjay12@gmail.com>
19459 L:      linux-iio@vger.kernel.org
19460 S:      Supported
19461 F:      Documentation/devicetree/bindings/iio/temperature/ti,tmp117.yaml
19462 F:      drivers/iio/temperature/tmp117.c
19463
19464 THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER
19465 M:      Hans Verkuil <hverkuil@xs4all.nl>
19466 L:      linux-media@vger.kernel.org
19467 S:      Maintained
19468 W:      https://linuxtv.org
19469 T:      git git://linuxtv.org/media_tree.git
19470 F:      drivers/media/radio/radio-raremono.c
19471
19472 THERMAL
19473 M:      Rafael J. Wysocki <rafael@kernel.org>
19474 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
19475 R:      Amit Kucheria <amitk@kernel.org>
19476 R:      Zhang Rui <rui.zhang@intel.com>
19477 L:      linux-pm@vger.kernel.org
19478 S:      Supported
19479 Q:      https://patchwork.kernel.org/project/linux-pm/list/
19480 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git thermal
19481 F:      Documentation/ABI/testing/sysfs-class-thermal
19482 F:      Documentation/devicetree/bindings/thermal/
19483 F:      Documentation/driver-api/thermal/
19484 F:      drivers/thermal/
19485 F:      include/linux/cpu_cooling.h
19486 F:      include/linux/thermal.h
19487 F:      include/uapi/linux/thermal.h
19488 F:      tools/thermal/
19489
19490 THERMAL DRIVER FOR AMLOGIC SOCS
19491 M:      Guillaume La Roque <glaroque@baylibre.com>
19492 L:      linux-pm@vger.kernel.org
19493 L:      linux-amlogic@lists.infradead.org
19494 S:      Supported
19495 W:      http://linux-meson.com/
19496 F:      Documentation/devicetree/bindings/thermal/amlogic,thermal.yaml
19497 F:      drivers/thermal/amlogic_thermal.c
19498
19499 THERMAL/CPU_COOLING
19500 M:      Amit Daniel Kachhap <amit.kachhap@gmail.com>
19501 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
19502 M:      Viresh Kumar <viresh.kumar@linaro.org>
19503 R:      Lukasz Luba <lukasz.luba@arm.com>
19504 L:      linux-pm@vger.kernel.org
19505 S:      Supported
19506 F:      Documentation/driver-api/thermal/cpu-cooling-api.rst
19507 F:      Documentation/driver-api/thermal/cpu-idle-cooling.rst
19508 F:      drivers/thermal/cpufreq_cooling.c
19509 F:      drivers/thermal/cpuidle_cooling.c
19510 F:      include/linux/cpu_cooling.h
19511
19512 THERMAL/POWER_ALLOCATOR
19513 M:      Lukasz Luba <lukasz.luba@arm.com>
19514 L:      linux-pm@vger.kernel.org
19515 S:      Maintained
19516 F:      Documentation/driver-api/thermal/power_allocator.rst
19517 F:      drivers/thermal/gov_power_allocator.c
19518 F:      include/trace/events/thermal_power_allocator.h
19519
19520 THINKPAD ACPI EXTRAS DRIVER
19521 M:      Henrique de Moraes Holschuh <hmh@hmh.eng.br>
19522 L:      ibm-acpi-devel@lists.sourceforge.net
19523 L:      platform-driver-x86@vger.kernel.org
19524 S:      Maintained
19525 W:      http://ibm-acpi.sourceforge.net
19526 W:      http://thinkwiki.org/wiki/Ibm-acpi
19527 T:      git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
19528 F:      drivers/platform/x86/thinkpad_acpi.c
19529
19530 THINKPAD LMI DRIVER
19531 M:      Mark Pearson <markpearson@lenovo.com>
19532 L:      platform-driver-x86@vger.kernel.org
19533 S:      Maintained
19534 F:      Documentation/ABI/testing/sysfs-class-firmware-attributes
19535 F:      drivers/platform/x86/think-lmi.?
19536
19537 THUNDERBOLT DMA TRAFFIC TEST DRIVER
19538 M:      Isaac Hazan <isaac.hazan@intel.com>
19539 L:      linux-usb@vger.kernel.org
19540 S:      Maintained
19541 F:      drivers/thunderbolt/dma_test.c
19542
19543 THUNDERBOLT DRIVER
19544 M:      Andreas Noever <andreas.noever@gmail.com>
19545 M:      Michael Jamet <michael.jamet@intel.com>
19546 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
19547 M:      Yehezkel Bernat <YehezkelShB@gmail.com>
19548 L:      linux-usb@vger.kernel.org
19549 S:      Maintained
19550 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/westeri/thunderbolt.git
19551 F:      Documentation/admin-guide/thunderbolt.rst
19552 F:      drivers/thunderbolt/
19553 F:      include/linux/thunderbolt.h
19554
19555 THUNDERBOLT NETWORK DRIVER
19556 M:      Michael Jamet <michael.jamet@intel.com>
19557 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
19558 M:      Yehezkel Bernat <YehezkelShB@gmail.com>
19559 L:      netdev@vger.kernel.org
19560 S:      Maintained
19561 F:      drivers/net/thunderbolt.c
19562
19563 THUNDERX GPIO DRIVER
19564 M:      Robert Richter <rric@kernel.org>
19565 S:      Odd Fixes
19566 F:      drivers/gpio/gpio-thunderx.c
19567
19568 TI ADS131E0X ADC SERIES DRIVER
19569 M:      Tomislav Denis <tomislav.denis@avl.com>
19570 L:      linux-iio@vger.kernel.org
19571 S:      Maintained
19572 F:      Documentation/devicetree/bindings/iio/adc/ti,ads131e08.yaml
19573 F:      drivers/iio/adc/ti-ads131e08.c
19574
19575 TI AM437X VPFE DRIVER
19576 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
19577 L:      linux-media@vger.kernel.org
19578 S:      Maintained
19579 W:      https://linuxtv.org
19580 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19581 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
19582 F:      drivers/media/platform/ti/am437x/
19583
19584 TI BANDGAP AND THERMAL DRIVER
19585 M:      Eduardo Valentin <edubezval@gmail.com>
19586 M:      Keerthy <j-keerthy@ti.com>
19587 L:      linux-pm@vger.kernel.org
19588 L:      linux-omap@vger.kernel.org
19589 S:      Maintained
19590 F:      drivers/thermal/ti-soc-thermal/
19591
19592 TI BQ27XXX POWER SUPPLY DRIVER
19593 F:      drivers/power/supply/bq27xxx_battery.c
19594 F:      drivers/power/supply/bq27xxx_battery_i2c.c
19595 F:      include/linux/power/bq27xxx_battery.h
19596
19597 TI CDCE706 CLOCK DRIVER
19598 M:      Max Filippov <jcmvbkbc@gmail.com>
19599 S:      Maintained
19600 F:      drivers/clk/clk-cdce706.c
19601
19602 TI CLOCK DRIVER
19603 M:      Tero Kristo <kristo@kernel.org>
19604 L:      linux-omap@vger.kernel.org
19605 S:      Odd Fixes
19606 F:      drivers/clk/ti/
19607 F:      include/linux/clk/ti.h
19608
19609 TI DAVINCI MACHINE SUPPORT
19610 M:      Sekhar Nori <nsekhar@ti.com>
19611 R:      Bartosz Golaszewski <brgl@bgdev.pl>
19612 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
19613 S:      Supported
19614 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nsekhar/linux-davinci.git
19615 F:      Documentation/devicetree/bindings/i2c/i2c-davinci.txt
19616 F:      arch/arm/boot/dts/da850*
19617 F:      arch/arm/mach-davinci/
19618 F:      drivers/i2c/busses/i2c-davinci.c
19619
19620 TI DAVINCI SERIES CLOCK DRIVER
19621 M:      David Lechner <david@lechnology.com>
19622 R:      Sekhar Nori <nsekhar@ti.com>
19623 S:      Maintained
19624 F:      Documentation/devicetree/bindings/clock/ti/davinci/
19625 F:      drivers/clk/davinci/
19626
19627 TI DAVINCI SERIES GPIO DRIVER
19628 M:      Keerthy <j-keerthy@ti.com>
19629 L:      linux-gpio@vger.kernel.org
19630 S:      Maintained
19631 F:      Documentation/devicetree/bindings/gpio/gpio-davinci.yaml
19632 F:      drivers/gpio/gpio-davinci.c
19633
19634 TI DAVINCI SERIES MEDIA DRIVER
19635 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
19636 L:      linux-media@vger.kernel.org
19637 S:      Maintained
19638 W:      https://linuxtv.org
19639 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19640 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
19641 F:      drivers/media/platform/ti/davinci/
19642 F:      include/media/davinci/
19643
19644 TI ENHANCED QUADRATURE ENCODER PULSE (eQEP) DRIVER
19645 R:      David Lechner <david@lechnology.com>
19646 L:      linux-iio@vger.kernel.org
19647 F:      Documentation/devicetree/bindings/counter/ti-eqep.yaml
19648 F:      drivers/counter/ti-eqep.c
19649
19650 TI ETHERNET SWITCH DRIVER (CPSW)
19651 R:      Grygorii Strashko <grygorii.strashko@ti.com>
19652 L:      linux-omap@vger.kernel.org
19653 L:      netdev@vger.kernel.org
19654 S:      Maintained
19655 F:      drivers/net/ethernet/ti/cpsw*
19656 F:      drivers/net/ethernet/ti/davinci*
19657
19658 TI FLASH MEDIA MEMORYSTICK/MMC DRIVERS
19659 M:      Alex Dubov <oakad@yahoo.com>
19660 S:      Maintained
19661 W:      http://tifmxx.berlios.de/
19662 F:      drivers/memstick/host/tifm_ms.c
19663 F:      drivers/misc/tifm*
19664 F:      drivers/mmc/host/tifm_sd.c
19665 F:      include/linux/tifm.h
19666
19667 TI KEYSTONE MULTICORE NAVIGATOR DRIVERS
19668 M:      Nishanth Menon <nm@ti.com>
19669 M:      Santosh Shilimkar <ssantosh@kernel.org>
19670 L:      linux-kernel@vger.kernel.org
19671 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
19672 S:      Maintained
19673 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ti/linux.git
19674 F:      drivers/soc/ti/*
19675
19676 TI LM49xxx FAMILY ASoC CODEC DRIVERS
19677 M:      M R Swami Reddy <mr.swami.reddy@ti.com>
19678 M:      Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
19679 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19680 S:      Maintained
19681 F:      sound/soc/codecs/isabelle*
19682 F:      sound/soc/codecs/lm49453*
19683
19684 TI PCM3060 ASoC CODEC DRIVER
19685 M:      Kirill Marinushkin <kmarinushkin@birdec.com>
19686 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19687 S:      Maintained
19688 F:      Documentation/devicetree/bindings/sound/pcm3060.txt
19689 F:      sound/soc/codecs/pcm3060*
19690
19691 TI TAS571X FAMILY ASoC CODEC DRIVER
19692 M:      Kevin Cernekee <cernekee@chromium.org>
19693 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19694 S:      Odd Fixes
19695 F:      sound/soc/codecs/tas571x*
19696
19697 TI TRF7970A NFC DRIVER
19698 M:      Mark Greer <mgreer@animalcreek.com>
19699 L:      linux-wireless@vger.kernel.org
19700 L:      linux-nfc@lists.01.org (subscribers-only)
19701 S:      Supported
19702 F:      Documentation/devicetree/bindings/net/nfc/ti,trf7970a.yaml
19703 F:      drivers/nfc/trf7970a.c
19704
19705 TI TSC2046 ADC DRIVER
19706 M:      Oleksij Rempel <o.rempel@pengutronix.de>
19707 R:      kernel@pengutronix.de
19708 L:      linux-iio@vger.kernel.org
19709 S:      Maintained
19710 F:      Documentation/devicetree/bindings/iio/adc/ti,tsc2046.yaml
19711 F:      drivers/iio/adc/ti-tsc2046.c
19712
19713 TI TWL4030 SERIES SOC CODEC DRIVER
19714 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
19715 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19716 S:      Maintained
19717 F:      sound/soc/codecs/twl4030*
19718
19719 TI VPE/CAL DRIVERS
19720 M:      Benoit Parrot <bparrot@ti.com>
19721 L:      linux-media@vger.kernel.org
19722 S:      Maintained
19723 W:      http://linuxtv.org/
19724 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19725 F:      Documentation/devicetree/bindings/media/ti,cal.yaml
19726 F:      Documentation/devicetree/bindings/media/ti,vpe.yaml
19727 F:      drivers/media/platform/ti/cal/
19728 F:      drivers/media/platform/ti/vpe/
19729
19730 TI WILINK WIRELESS DRIVERS
19731 L:      linux-wireless@vger.kernel.org
19732 S:      Orphan
19733 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wl12xx
19734 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wl1251
19735 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
19736 F:      drivers/net/wireless/ti/
19737 F:      include/linux/wl12xx.h
19738
19739 TIMEKEEPING, CLOCKSOURCE CORE, NTP, ALARMTIMER
19740 M:      John Stultz <john.stultz@linaro.org>
19741 M:      Thomas Gleixner <tglx@linutronix.de>
19742 R:      Stephen Boyd <sboyd@kernel.org>
19743 L:      linux-kernel@vger.kernel.org
19744 S:      Supported
19745 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
19746 F:      include/linux/clocksource.h
19747 F:      include/linux/time.h
19748 F:      include/linux/timex.h
19749 F:      include/uapi/linux/time.h
19750 F:      include/uapi/linux/timex.h
19751 F:      kernel/time/alarmtimer.c
19752 F:      kernel/time/clocksource.c
19753 F:      kernel/time/ntp.c
19754 F:      kernel/time/time*.c
19755 F:      tools/testing/selftests/timers/
19756
19757 TIPC NETWORK LAYER
19758 M:      Jon Maloy <jmaloy@redhat.com>
19759 M:      Ying Xue <ying.xue@windriver.com>
19760 L:      netdev@vger.kernel.org (core kernel code)
19761 L:      tipc-discussion@lists.sourceforge.net (user apps, general discussion)
19762 S:      Maintained
19763 W:      http://tipc.sourceforge.net/
19764 F:      include/uapi/linux/tipc*.h
19765 F:      net/tipc/
19766
19767 TLAN NETWORK DRIVER
19768 M:      Samuel Chessman <chessman@tux.org>
19769 L:      tlan-devel@lists.sourceforge.net (subscribers-only)
19770 S:      Maintained
19771 W:      http://sourceforge.net/projects/tlan/
19772 F:      Documentation/networking/device_drivers/ethernet/ti/tlan.rst
19773 F:      drivers/net/ethernet/ti/tlan.*
19774
19775 TM6000 VIDEO4LINUX DRIVER
19776 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
19777 L:      linux-media@vger.kernel.org
19778 S:      Odd fixes
19779 W:      https://linuxtv.org
19780 T:      git git://linuxtv.org/media_tree.git
19781 F:      Documentation/admin-guide/media/tm6000*
19782 F:      drivers/media/usb/tm6000/
19783
19784 TMIO/SDHI MMC DRIVER
19785 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
19786 L:      linux-mmc@vger.kernel.org
19787 S:      Supported
19788 F:      drivers/mmc/host/renesas_sdhi*
19789 F:      drivers/mmc/host/tmio_mmc*
19790 F:      include/linux/mfd/tmio.h
19791
19792 TMP401 HARDWARE MONITOR DRIVER
19793 M:      Guenter Roeck <linux@roeck-us.net>
19794 L:      linux-hwmon@vger.kernel.org
19795 S:      Maintained
19796 F:      Documentation/hwmon/tmp401.rst
19797 F:      drivers/hwmon/tmp401.c
19798
19799 TMP464 HARDWARE MONITOR DRIVER
19800 M:      Agathe Porte <agathe.porte@nokia.com>
19801 M:      Guenter Roeck <linux@roeck-us.net>
19802 L:      linux-hwmon@vger.kernel.org
19803 S:      Maintained
19804 F:      Documentation/devicetree/bindings/hwmon/ti,tmp464.yaml
19805 F:      Documentation/hwmon/tmp464.rst
19806 F:      drivers/hwmon/tmp464.c
19807
19808 TMP513 HARDWARE MONITOR DRIVER
19809 M:      Eric Tremblay <etremblay@distech-controls.com>
19810 L:      linux-hwmon@vger.kernel.org
19811 S:      Maintained
19812 F:      Documentation/hwmon/tmp513.rst
19813 F:      drivers/hwmon/tmp513.c
19814
19815 TMPFS (SHMEM FILESYSTEM)
19816 M:      Hugh Dickins <hughd@google.com>
19817 L:      linux-mm@kvack.org
19818 S:      Maintained
19819 F:      include/linux/shmem_fs.h
19820 F:      mm/shmem.c
19821
19822 TOMOYO SECURITY MODULE
19823 M:      Kentaro Takeda <takedakn@nttdata.co.jp>
19824 M:      Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
19825 L:      tomoyo-dev-en@lists.osdn.me (subscribers-only, for developers in English)
19826 L:      tomoyo-users-en@lists.osdn.me (subscribers-only, for users in English)
19827 L:      tomoyo-dev@lists.osdn.me (subscribers-only, for developers in Japanese)
19828 L:      tomoyo-users@lists.osdn.me (subscribers-only, for users in Japanese)
19829 S:      Maintained
19830 W:      https://tomoyo.osdn.jp/
19831 F:      security/tomoyo/
19832
19833 TOPSTAR LAPTOP EXTRAS DRIVER
19834 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
19835 L:      platform-driver-x86@vger.kernel.org
19836 S:      Maintained
19837 F:      drivers/platform/x86/topstar-laptop.c
19838
19839 TORTURE-TEST MODULES
19840 M:      Davidlohr Bueso <dave@stgolabs.net>
19841 M:      "Paul E. McKenney" <paulmck@kernel.org>
19842 M:      Josh Triplett <josh@joshtriplett.org>
19843 L:      linux-kernel@vger.kernel.org
19844 S:      Supported
19845 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
19846 F:      Documentation/RCU/torture.rst
19847 F:      kernel/locking/locktorture.c
19848 F:      kernel/rcu/rcuscale.c
19849 F:      kernel/rcu/rcutorture.c
19850 F:      kernel/rcu/refscale.c
19851 F:      kernel/torture.c
19852
19853 TOSHIBA ACPI EXTRAS DRIVER
19854 M:      Azael Avalos <coproscefalo@gmail.com>
19855 L:      platform-driver-x86@vger.kernel.org
19856 S:      Maintained
19857 F:      drivers/platform/x86/toshiba_acpi.c
19858
19859 TOSHIBA BLUETOOTH DRIVER
19860 M:      Azael Avalos <coproscefalo@gmail.com>
19861 L:      platform-driver-x86@vger.kernel.org
19862 S:      Maintained
19863 F:      drivers/platform/x86/toshiba_bluetooth.c
19864
19865 TOSHIBA HDD ACTIVE PROTECTION SENSOR DRIVER
19866 M:      Azael Avalos <coproscefalo@gmail.com>
19867 L:      platform-driver-x86@vger.kernel.org
19868 S:      Maintained
19869 F:      drivers/platform/x86/toshiba_haps.c
19870
19871 TOSHIBA SMM DRIVER
19872 M:      Jonathan Buzzard <jonathan@buzzard.org.uk>
19873 S:      Maintained
19874 W:      http://www.buzzard.org.uk/toshiba/
19875 F:      drivers/char/toshiba.c
19876 F:      include/linux/toshiba.h
19877 F:      include/uapi/linux/toshiba.h
19878
19879 TOSHIBA TC358743 DRIVER
19880 M:      Mats Randgaard <matrandg@cisco.com>
19881 L:      linux-media@vger.kernel.org
19882 S:      Maintained
19883 F:      drivers/media/i2c/tc358743*
19884 F:      include/media/i2c/tc358743.h
19885
19886 TOSHIBA WMI HOTKEYS DRIVER
19887 M:      Azael Avalos <coproscefalo@gmail.com>
19888 L:      platform-driver-x86@vger.kernel.org
19889 S:      Maintained
19890 F:      drivers/platform/x86/toshiba-wmi.c
19891
19892 TPM DEVICE DRIVER
19893 M:      Peter Huewe <peterhuewe@gmx.de>
19894 M:      Jarkko Sakkinen <jarkko@kernel.org>
19895 R:      Jason Gunthorpe <jgg@ziepe.ca>
19896 L:      linux-integrity@vger.kernel.org
19897 S:      Maintained
19898 W:      https://kernsec.org/wiki/index.php/Linux_Kernel_Integrity
19899 Q:      https://patchwork.kernel.org/project/linux-integrity/list/
19900 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jarkko/linux-tpmdd.git
19901 F:      drivers/char/tpm/
19902
19903 TRACING
19904 M:      Steven Rostedt <rostedt@goodmis.org>
19905 M:      Ingo Molnar <mingo@redhat.com>
19906 S:      Maintained
19907 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rostedt/linux-trace.git
19908 F:      Documentation/trace/ftrace.rst
19909 F:      arch/*/*/*/ftrace.h
19910 F:      arch/*/kernel/ftrace.c
19911 F:      fs/tracefs/
19912 F:      include/*/ftrace.h
19913 F:      include/linux/trace*.h
19914 F:      include/trace/
19915 F:      kernel/trace/
19916 F:      tools/testing/selftests/ftrace/
19917
19918 TRACING MMIO ACCESSES (MMIOTRACE)
19919 M:      Steven Rostedt <rostedt@goodmis.org>
19920 M:      Ingo Molnar <mingo@kernel.org>
19921 R:      Karol Herbst <karolherbst@gmail.com>
19922 R:      Pekka Paalanen <ppaalanen@gmail.com>
19923 L:      linux-kernel@vger.kernel.org
19924 L:      nouveau@lists.freedesktop.org
19925 S:      Maintained
19926 F:      arch/x86/mm/kmmio.c
19927 F:      arch/x86/mm/mmio-mod.c
19928 F:      arch/x86/mm/testmmiotrace.c
19929 F:      include/linux/mmiotrace.h
19930 F:      kernel/trace/trace_mmiotrace.c
19931
19932 TRACING OS NOISE / LATENCY TRACERS
19933 M:      Steven Rostedt <rostedt@goodmis.org>
19934 M:      Daniel Bristot de Oliveira <bristot@kernel.org>
19935 S:      Maintained
19936 F:      kernel/trace/trace_osnoise.c
19937 F:      include/trace/events/osnoise.h
19938 F:      kernel/trace/trace_hwlat.c
19939 F:      kernel/trace/trace_irqsoff.c
19940 F:      kernel/trace/trace_sched_wakeup.c
19941 F:      Documentation/trace/osnoise-tracer.rst
19942 F:      Documentation/trace/timerlat-tracer.rst
19943 F:      Documentation/trace/hwlat_detector.rst
19944 F:      arch/*/kernel/trace.c
19945
19946 Real-time Linux Analysis (RTLA) tools
19947 M:      Daniel Bristot de Oliveira <bristot@kernel.org>
19948 M:      Steven Rostedt <rostedt@goodmis.org>
19949 L:      linux-trace-devel@vger.kernel.org
19950 S:      Maintained
19951 F:      Documentation/tools/rtla/
19952 F:      tools/tracing/rtla/
19953
19954 TRADITIONAL CHINESE DOCUMENTATION
19955 M:      Hu Haowen <src.res@email.cn>
19956 L:      linux-doc-tw-discuss@lists.sourceforge.net
19957 S:      Maintained
19958 W:      https://github.com/srcres258/linux-doc
19959 T:      git git://github.com/srcres258/linux-doc.git doc-zh-tw
19960 F:      Documentation/translations/zh_TW/
19961
19962 TTY LAYER
19963 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
19964 M:      Jiri Slaby <jirislaby@kernel.org>
19965 S:      Supported
19966 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
19967 F:      Documentation/driver-api/serial/
19968 F:      drivers/tty/
19969 F:      drivers/tty/serial/serial_core.c
19970 F:      include/linux/selection.h
19971 F:      include/linux/serial.h
19972 F:      include/linux/serial_core.h
19973 F:      include/linux/sysrq.h
19974 F:      include/linux/tty*.h
19975 F:      include/linux/vt.h
19976 F:      include/linux/vt_*.h
19977 F:      include/uapi/linux/serial.h
19978 F:      include/uapi/linux/serial_core.h
19979 F:      include/uapi/linux/tty.h
19980
19981 TUA9001 MEDIA DRIVER
19982 M:      Antti Palosaari <crope@iki.fi>
19983 L:      linux-media@vger.kernel.org
19984 S:      Maintained
19985 W:      https://linuxtv.org
19986 W:      http://palosaari.fi/linux/
19987 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19988 T:      git git://linuxtv.org/anttip/media_tree.git
19989 F:      drivers/media/tuners/tua9001*
19990
19991 TULIP NETWORK DRIVERS
19992 L:      netdev@vger.kernel.org
19993 L:      linux-parisc@vger.kernel.org
19994 S:      Orphan
19995 F:      drivers/net/ethernet/dec/tulip/
19996
19997 TUN/TAP driver
19998 M:      Maxim Krasnyansky <maxk@qti.qualcomm.com>
19999 S:      Maintained
20000 W:      http://vtun.sourceforge.net/tun
20001 F:      Documentation/networking/tuntap.rst
20002 F:      arch/um/os-Linux/drivers/
20003
20004 TURBOCHANNEL SUBSYSTEM
20005 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
20006 M:      Ralf Baechle <ralf@linux-mips.org>
20007 L:      linux-mips@vger.kernel.org
20008 S:      Maintained
20009 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
20010 F:      drivers/tc/
20011 F:      include/linux/tc.h
20012
20013 TURBOSTAT UTILITY
20014 M:      "Len Brown" <lenb@kernel.org>
20015 L:      linux-pm@vger.kernel.org
20016 S:      Supported
20017 Q:      https://patchwork.kernel.org/project/linux-pm/list/
20018 B:      https://bugzilla.kernel.org
20019 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git turbostat
20020 F:      tools/power/x86/turbostat/
20021
20022 TW5864 VIDEO4LINUX DRIVER
20023 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
20024 M:      Anton Sviridenko <anton@corp.bluecherry.net>
20025 M:      Andrey Utkin <andrey.utkin@corp.bluecherry.net>
20026 M:      Andrey Utkin <andrey_utkin@fastmail.com>
20027 L:      linux-media@vger.kernel.org
20028 S:      Supported
20029 F:      drivers/media/pci/tw5864/
20030
20031 TW68 VIDEO4LINUX DRIVER
20032 M:      Hans Verkuil <hverkuil@xs4all.nl>
20033 L:      linux-media@vger.kernel.org
20034 S:      Odd Fixes
20035 W:      https://linuxtv.org
20036 T:      git git://linuxtv.org/media_tree.git
20037 F:      drivers/media/pci/tw68/
20038
20039 TW686X VIDEO4LINUX DRIVER
20040 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
20041 L:      linux-media@vger.kernel.org
20042 S:      Maintained
20043 W:      http://linuxtv.org
20044 T:      git git://linuxtv.org/media_tree.git
20045 F:      drivers/media/pci/tw686x/
20046
20047 U-BOOT ENVIRONMENT VARIABLES
20048 M:      Rafał Miłecki <rafal@milecki.pl>
20049 S:      Maintained
20050 F:      Documentation/devicetree/bindings/nvmem/u-boot,env.yaml
20051
20052 UACCE ACCELERATOR FRAMEWORK
20053 M:      Zhangfei Gao <zhangfei.gao@linaro.org>
20054 M:      Zhou Wang <wangzhou1@hisilicon.com>
20055 L:      linux-accelerators@lists.ozlabs.org
20056 L:      linux-kernel@vger.kernel.org
20057 S:      Maintained
20058 F:      Documentation/ABI/testing/sysfs-driver-uacce
20059 F:      Documentation/misc-devices/uacce.rst
20060 F:      drivers/misc/uacce/
20061 F:      include/linux/uacce.h
20062 F:      include/uapi/misc/uacce/
20063
20064 UBI FILE SYSTEM (UBIFS)
20065 M:      Richard Weinberger <richard@nod.at>
20066 L:      linux-mtd@lists.infradead.org
20067 S:      Supported
20068 W:      http://www.linux-mtd.infradead.org/doc/ubifs.html
20069 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
20070 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
20071 F:      Documentation/ABI/testing/sysfs-fs-ubifs
20072 F:      Documentation/filesystems/ubifs-authentication.rst
20073 F:      Documentation/filesystems/ubifs.rst
20074 F:      fs/ubifs/
20075
20076 UCLINUX (M68KNOMMU AND COLDFIRE)
20077 M:      Greg Ungerer <gerg@linux-m68k.org>
20078 L:      linux-m68k@lists.linux-m68k.org
20079 L:      uclinux-dev@uclinux.org  (subscribers-only)
20080 S:      Maintained
20081 W:      http://www.linux-m68k.org/
20082 W:      http://www.uclinux.org/
20083 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git
20084 F:      arch/m68k/*/*_no.*
20085 F:      arch/m68k/68*/
20086 F:      arch/m68k/coldfire/
20087 F:      arch/m68k/include/asm/*_no.*
20088
20089 UDF FILESYSTEM
20090 M:      Jan Kara <jack@suse.com>
20091 S:      Maintained
20092 F:      Documentation/filesystems/udf.rst
20093 F:      fs/udf/
20094
20095 UDRAW TABLET
20096 M:      Bastien Nocera <hadess@hadess.net>
20097 L:      linux-input@vger.kernel.org
20098 S:      Maintained
20099 F:      drivers/hid/hid-udraw-ps3.c
20100
20101 UFS FILESYSTEM
20102 M:      Evgeniy Dushistov <dushistov@mail.ru>
20103 S:      Maintained
20104 F:      Documentation/admin-guide/ufs.rst
20105 F:      fs/ufs/
20106
20107 UHID USERSPACE HID IO DRIVER
20108 M:      David Rheinsberg <david.rheinsberg@gmail.com>
20109 L:      linux-input@vger.kernel.org
20110 S:      Maintained
20111 F:      drivers/hid/uhid.c
20112 F:      include/uapi/linux/uhid.h
20113
20114 ULPI BUS
20115 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
20116 L:      linux-usb@vger.kernel.org
20117 S:      Maintained
20118 F:      drivers/usb/common/ulpi.c
20119 F:      include/linux/ulpi/
20120
20121 UNICODE SUBSYSTEM
20122 M:      Gabriel Krisman Bertazi <krisman@collabora.com>
20123 L:      linux-fsdevel@vger.kernel.org
20124 S:      Supported
20125 F:      fs/unicode/
20126
20127 UNIFDEF
20128 M:      Tony Finch <dot@dotat.at>
20129 S:      Maintained
20130 W:      http://dotat.at/prog/unifdef
20131 F:      scripts/unifdef.c
20132
20133 UNIFORM CDROM DRIVER
20134 M:      Phillip Potter <phil@philpotter.co.uk>
20135 S:      Maintained
20136 F:      Documentation/cdrom/
20137 F:      drivers/cdrom/cdrom.c
20138 F:      include/linux/cdrom.h
20139 F:      include/uapi/linux/cdrom.h
20140
20141 UNISYS S-PAR DRIVERS
20142 M:      David Kershner <david.kershner@unisys.com>
20143 L:      sparmaintainer@unisys.com (Unisys internal)
20144 S:      Supported
20145 F:      drivers/staging/unisys/
20146 F:      drivers/visorbus/
20147 F:      include/linux/visorbus.h
20148
20149 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
20150 R:      Alim Akhtar <alim.akhtar@samsung.com>
20151 R:      Avri Altman <avri.altman@wdc.com>
20152 L:      linux-scsi@vger.kernel.org
20153 S:      Supported
20154 F:      Documentation/devicetree/bindings/ufs/
20155 F:      Documentation/scsi/ufs.rst
20156 F:      drivers/scsi/ufs/
20157
20158 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER DWC HOOKS
20159 M:      Pedro Sousa <pedrom.sousa@synopsys.com>
20160 L:      linux-scsi@vger.kernel.org
20161 S:      Supported
20162 F:      drivers/scsi/ufs/*dwc*
20163
20164 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER MEDIATEK HOOKS
20165 M:      Stanley Chu <stanley.chu@mediatek.com>
20166 L:      linux-scsi@vger.kernel.org
20167 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
20168 S:      Maintained
20169 F:      drivers/scsi/ufs/ufs-mediatek*
20170
20171 UNSORTED BLOCK IMAGES (UBI)
20172 M:      Richard Weinberger <richard@nod.at>
20173 L:      linux-mtd@lists.infradead.org
20174 S:      Supported
20175 W:      http://www.linux-mtd.infradead.org/
20176 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
20177 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
20178 F:      drivers/mtd/ubi/
20179 F:      include/linux/mtd/ubi.h
20180 F:      include/uapi/mtd/ubi-user.h
20181
20182 USB "USBNET" DRIVER FRAMEWORK
20183 M:      Oliver Neukum <oneukum@suse.com>
20184 L:      netdev@vger.kernel.org
20185 S:      Maintained
20186 W:      http://www.linux-usb.org/usbnet
20187 F:      drivers/net/usb/usbnet.c
20188 F:      include/linux/usb/usbnet.h
20189
20190 USB ACM DRIVER
20191 M:      Oliver Neukum <oneukum@suse.com>
20192 L:      linux-usb@vger.kernel.org
20193 S:      Maintained
20194 F:      Documentation/usb/acm.rst
20195 F:      drivers/usb/class/cdc-acm.*
20196
20197 USB APPLE MFI FASTCHARGE DRIVER
20198 M:      Bastien Nocera <hadess@hadess.net>
20199 L:      linux-usb@vger.kernel.org
20200 S:      Maintained
20201 F:      drivers/usb/misc/apple-mfi-fastcharge.c
20202
20203 USB AR5523 WIRELESS DRIVER
20204 M:      Pontus Fuchs <pontus.fuchs@gmail.com>
20205 L:      linux-wireless@vger.kernel.org
20206 S:      Maintained
20207 F:      drivers/net/wireless/ath/ar5523/
20208
20209 USB ATTACHED SCSI
20210 M:      Oliver Neukum <oneukum@suse.com>
20211 L:      linux-usb@vger.kernel.org
20212 L:      linux-scsi@vger.kernel.org
20213 S:      Maintained
20214 F:      drivers/usb/storage/uas.c
20215
20216 USB CDC ETHERNET DRIVER
20217 M:      Oliver Neukum <oliver@neukum.org>
20218 L:      linux-usb@vger.kernel.org
20219 S:      Maintained
20220 F:      drivers/net/usb/cdc_*.c
20221 F:      include/uapi/linux/usb/cdc.h
20222
20223 USB CHAOSKEY DRIVER
20224 M:      Keith Packard <keithp@keithp.com>
20225 L:      linux-usb@vger.kernel.org
20226 S:      Maintained
20227 F:      drivers/usb/misc/chaoskey.c
20228
20229 USB CYPRESS C67X00 DRIVER
20230 L:      linux-usb@vger.kernel.org
20231 S:      Orphan
20232 F:      drivers/usb/c67x00/
20233
20234 USB DAVICOM DM9601 DRIVER
20235 M:      Peter Korsgaard <peter@korsgaard.com>
20236 L:      netdev@vger.kernel.org
20237 S:      Maintained
20238 W:      http://www.linux-usb.org/usbnet
20239 F:      drivers/net/usb/dm9601.c
20240
20241 USB EHCI DRIVER
20242 M:      Alan Stern <stern@rowland.harvard.edu>
20243 L:      linux-usb@vger.kernel.org
20244 S:      Maintained
20245 F:      Documentation/usb/ehci.rst
20246 F:      drivers/usb/host/ehci*
20247
20248 USB GADGET/PERIPHERAL SUBSYSTEM
20249 M:      Felipe Balbi <balbi@kernel.org>
20250 L:      linux-usb@vger.kernel.org
20251 S:      Maintained
20252 W:      http://www.linux-usb.org/gadget
20253 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
20254 F:      drivers/usb/gadget/
20255 F:      include/linux/usb/gadget*
20256
20257 USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
20258 M:      Jiri Kosina <jikos@kernel.org>
20259 M:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
20260 L:      linux-usb@vger.kernel.org
20261 S:      Maintained
20262 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
20263 F:      Documentation/hid/hiddev.rst
20264 F:      drivers/hid/usbhid/
20265
20266 USB INTEL XHCI ROLE MUX DRIVER
20267 M:      Hans de Goede <hdegoede@redhat.com>
20268 L:      linux-usb@vger.kernel.org
20269 S:      Maintained
20270 F:      drivers/usb/roles/intel-xhci-usb-role-switch.c
20271
20272 USB IP DRIVER FOR HISILICON KIRIN 960
20273 M:      Yu Chen <chenyu56@huawei.com>
20274 M:      Binghui Wang <wangbinghui@hisilicon.com>
20275 L:      linux-usb@vger.kernel.org
20276 S:      Maintained
20277 F:      Documentation/devicetree/bindings/phy/hisilicon,hi3660-usb3.yaml
20278 F:      drivers/phy/hisilicon/phy-hi3660-usb3.c
20279
20280 USB IP DRIVER FOR HISILICON KIRIN 970
20281 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
20282 L:      linux-usb@vger.kernel.org
20283 S:      Maintained
20284 F:      Documentation/devicetree/bindings/phy/hisilicon,hi3670-usb3.yaml
20285 F:      drivers/phy/hisilicon/phy-hi3670-usb3.c
20286
20287 USB ISP116X DRIVER
20288 M:      Olav Kongas <ok@artecdesign.ee>
20289 L:      linux-usb@vger.kernel.org
20290 S:      Maintained
20291 F:      drivers/usb/host/isp116x*
20292 F:      include/linux/usb/isp116x.h
20293
20294 USB ISP1760 DRIVER
20295 M:      Rui Miguel Silva <rui.silva@linaro.org>
20296 L:      linux-usb@vger.kernel.org
20297 S:      Maintained
20298 F:      drivers/usb/isp1760/*
20299 F:      Documentation/devicetree/bindings/usb/nxp,isp1760.yaml
20300
20301 USB LAN78XX ETHERNET DRIVER
20302 M:      Woojung Huh <woojung.huh@microchip.com>
20303 M:      UNGLinuxDriver@microchip.com
20304 L:      netdev@vger.kernel.org
20305 S:      Maintained
20306 F:      Documentation/devicetree/bindings/net/microchip,lan78xx.txt
20307 F:      drivers/net/usb/lan78xx.*
20308 F:      include/dt-bindings/net/microchip-lan78xx.h
20309
20310 USB MASS STORAGE DRIVER
20311 M:      Alan Stern <stern@rowland.harvard.edu>
20312 L:      linux-usb@vger.kernel.org
20313 L:      usb-storage@lists.one-eyed-alien.net
20314 S:      Maintained
20315 F:      drivers/usb/storage/
20316
20317 USB MIDI DRIVER
20318 M:      Clemens Ladisch <clemens@ladisch.de>
20319 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
20320 S:      Maintained
20321 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
20322 F:      sound/usb/midi.*
20323
20324 USB NETWORKING DRIVERS
20325 L:      linux-usb@vger.kernel.org
20326 S:      Odd Fixes
20327 F:      drivers/net/usb/
20328
20329 USB OHCI DRIVER
20330 M:      Alan Stern <stern@rowland.harvard.edu>
20331 L:      linux-usb@vger.kernel.org
20332 S:      Maintained
20333 F:      Documentation/usb/ohci.rst
20334 F:      drivers/usb/host/ohci*
20335
20336 USB OTG FSM (Finite State Machine)
20337 M:      Peter Chen <peter.chen@kernel.org>
20338 L:      linux-usb@vger.kernel.org
20339 S:      Maintained
20340 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
20341 F:      drivers/usb/common/usb-otg-fsm.c
20342
20343 USB OVER IP DRIVER
20344 M:      Valentina Manea <valentina.manea.m@gmail.com>
20345 M:      Shuah Khan <shuah@kernel.org>
20346 M:      Shuah Khan <skhan@linuxfoundation.org>
20347 L:      linux-usb@vger.kernel.org
20348 S:      Maintained
20349 F:      Documentation/usb/usbip_protocol.rst
20350 F:      drivers/usb/usbip/
20351 F:      tools/testing/selftests/drivers/usb/usbip/
20352 F:      tools/usb/usbip/
20353
20354 USB PEGASUS DRIVER
20355 M:      Petko Manolov <petkan@nucleusys.com>
20356 L:      linux-usb@vger.kernel.org
20357 L:      netdev@vger.kernel.org
20358 S:      Maintained
20359 W:      https://github.com/petkan/pegasus
20360 T:      git git://github.com/petkan/pegasus.git
20361 F:      drivers/net/usb/pegasus.*
20362
20363 USB PHY LAYER
20364 M:      Felipe Balbi <balbi@kernel.org>
20365 L:      linux-usb@vger.kernel.org
20366 S:      Maintained
20367 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
20368 F:      drivers/usb/phy/
20369
20370 USB PRINTER DRIVER (usblp)
20371 M:      Pete Zaitcev <zaitcev@redhat.com>
20372 L:      linux-usb@vger.kernel.org
20373 S:      Supported
20374 F:      drivers/usb/class/usblp.c
20375
20376 USB RAW GADGET DRIVER
20377 R:      Andrey Konovalov <andreyknvl@gmail.com>
20378 L:      linux-usb@vger.kernel.org
20379 S:      Maintained
20380 F:      Documentation/usb/raw-gadget.rst
20381 F:      drivers/usb/gadget/legacy/raw_gadget.c
20382 F:      include/uapi/linux/usb/raw_gadget.h
20383
20384 USB QMI WWAN NETWORK DRIVER
20385 M:      Bjørn Mork <bjorn@mork.no>
20386 L:      netdev@vger.kernel.org
20387 S:      Maintained
20388 F:      Documentation/ABI/testing/sysfs-class-net-qmi
20389 F:      drivers/net/usb/qmi_wwan.c
20390
20391 USB RTL8150 DRIVER
20392 M:      Petko Manolov <petkan@nucleusys.com>
20393 L:      linux-usb@vger.kernel.org
20394 L:      netdev@vger.kernel.org
20395 S:      Maintained
20396 W:      https://github.com/petkan/rtl8150
20397 T:      git git://github.com/petkan/rtl8150.git
20398 F:      drivers/net/usb/rtl8150.c
20399
20400 USB SERIAL SUBSYSTEM
20401 M:      Johan Hovold <johan@kernel.org>
20402 L:      linux-usb@vger.kernel.org
20403 S:      Maintained
20404 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/usb-serial.git
20405 F:      Documentation/usb/usb-serial.rst
20406 F:      drivers/usb/serial/
20407 F:      include/linux/usb/serial.h
20408
20409 USB SMSC75XX ETHERNET DRIVER
20410 M:      Steve Glendinning <steve.glendinning@shawell.net>
20411 L:      netdev@vger.kernel.org
20412 S:      Maintained
20413 F:      drivers/net/usb/smsc75xx.*
20414
20415 USB SMSC95XX ETHERNET DRIVER
20416 M:      Steve Glendinning <steve.glendinning@shawell.net>
20417 M:      UNGLinuxDriver@microchip.com
20418 L:      netdev@vger.kernel.org
20419 S:      Maintained
20420 F:      drivers/net/usb/smsc95xx.*
20421
20422 USB SUBSYSTEM
20423 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
20424 L:      linux-usb@vger.kernel.org
20425 S:      Supported
20426 W:      http://www.linux-usb.org
20427 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
20428 F:      Documentation/devicetree/bindings/usb/
20429 F:      Documentation/usb/
20430 F:      drivers/usb/
20431 F:      include/linux/usb.h
20432 F:      include/linux/usb/
20433
20434 USB TYPEC BUS FOR ALTERNATE MODES
20435 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
20436 L:      linux-usb@vger.kernel.org
20437 S:      Maintained
20438 F:      Documentation/ABI/testing/sysfs-bus-typec
20439 F:      Documentation/driver-api/usb/typec_bus.rst
20440 F:      drivers/usb/typec/altmodes/
20441 F:      include/linux/usb/typec_altmode.h
20442
20443 USB TYPEC CLASS
20444 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
20445 L:      linux-usb@vger.kernel.org
20446 S:      Maintained
20447 F:      Documentation/ABI/testing/sysfs-class-typec
20448 F:      Documentation/driver-api/usb/typec.rst
20449 F:      drivers/usb/typec/
20450 F:      include/linux/usb/typec.h
20451
20452 USB TYPEC INTEL PMC MUX DRIVER
20453 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
20454 L:      linux-usb@vger.kernel.org
20455 S:      Maintained
20456 F:      Documentation/firmware-guide/acpi/intel-pmc-mux.rst
20457 F:      drivers/usb/typec/mux/intel_pmc_mux.c
20458
20459 USB TYPEC PI3USB30532 MUX DRIVER
20460 M:      Hans de Goede <hdegoede@redhat.com>
20461 L:      linux-usb@vger.kernel.org
20462 S:      Maintained
20463 F:      drivers/usb/typec/mux/pi3usb30532.c
20464
20465 USB TYPEC PORT CONTROLLER DRIVERS
20466 M:      Guenter Roeck <linux@roeck-us.net>
20467 L:      linux-usb@vger.kernel.org
20468 S:      Maintained
20469 F:      drivers/usb/typec/tcpm/
20470
20471 USB UHCI DRIVER
20472 M:      Alan Stern <stern@rowland.harvard.edu>
20473 L:      linux-usb@vger.kernel.org
20474 S:      Maintained
20475 F:      drivers/usb/host/uhci*
20476
20477 USB VIDEO CLASS
20478 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
20479 L:      linux-uvc-devel@lists.sourceforge.net (subscribers-only)
20480 L:      linux-media@vger.kernel.org
20481 S:      Maintained
20482 W:      http://www.ideasonboard.org/uvc/
20483 T:      git git://linuxtv.org/media_tree.git
20484 F:      drivers/media/usb/uvc/
20485 F:      include/uapi/linux/uvcvideo.h
20486
20487 USB WEBCAM GADGET
20488 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
20489 L:      linux-usb@vger.kernel.org
20490 S:      Maintained
20491 F:      drivers/usb/gadget/function/*uvc*
20492 F:      drivers/usb/gadget/legacy/webcam.c
20493 F:      include/uapi/linux/usb/g_uvc.h
20494
20495 USB WIRELESS RNDIS DRIVER (rndis_wlan)
20496 M:      Jussi Kivilinna <jussi.kivilinna@iki.fi>
20497 L:      linux-wireless@vger.kernel.org
20498 S:      Maintained
20499 F:      drivers/net/wireless/rndis_wlan.c
20500
20501 USB XHCI DRIVER
20502 M:      Mathias Nyman <mathias.nyman@intel.com>
20503 L:      linux-usb@vger.kernel.org
20504 S:      Supported
20505 F:      drivers/usb/host/pci-quirks*
20506 F:      drivers/usb/host/xhci*
20507
20508 USB ZD1201 DRIVER
20509 L:      linux-wireless@vger.kernel.org
20510 S:      Orphan
20511 W:      http://linux-lc100020.sourceforge.net
20512 F:      drivers/net/wireless/zydas/zd1201.*
20513
20514 USB ZR364XX DRIVER
20515 M:      Antoine Jacquet <royale@zerezo.com>
20516 L:      linux-usb@vger.kernel.org
20517 L:      linux-media@vger.kernel.org
20518 S:      Maintained
20519 W:      http://royale.zerezo.com/zr364xx/
20520 T:      git git://linuxtv.org/media_tree.git
20521 F:      Documentation/admin-guide/media/zr364xx*
20522 F:      drivers/media/usb/zr364xx/
20523
20524 USER-MODE LINUX (UML)
20525 M:      Jeff Dike <jdike@addtoit.com>
20526 M:      Richard Weinberger <richard@nod.at>
20527 M:      Anton Ivanov <anton.ivanov@cambridgegreys.com>
20528 L:      linux-um@lists.infradead.org
20529 S:      Maintained
20530 W:      http://user-mode-linux.sourceforge.net
20531 Q:      https://patchwork.ozlabs.org/project/linux-um/list/
20532 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/uml.git
20533 F:      Documentation/virt/uml/
20534 F:      arch/um/
20535 F:      arch/x86/um/
20536 F:      fs/hostfs/
20537
20538 USERSPACE COPYIN/COPYOUT (UIOVEC)
20539 M:      Alexander Viro <viro@zeniv.linux.org.uk>
20540 S:      Maintained
20541 F:      include/linux/uio.h
20542 F:      lib/iov_iter.c
20543
20544 USERSPACE DMA BUFFER DRIVER
20545 M:      Gerd Hoffmann <kraxel@redhat.com>
20546 L:      dri-devel@lists.freedesktop.org
20547 S:      Maintained
20548 T:      git git://anongit.freedesktop.org/drm/drm-misc
20549 F:      drivers/dma-buf/udmabuf.c
20550 F:      include/uapi/linux/udmabuf.h
20551
20552 USERSPACE I/O (UIO)
20553 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
20554 S:      Maintained
20555 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
20556 F:      Documentation/driver-api/uio-howto.rst
20557 F:      drivers/uio/
20558 F:      include/linux/uio_driver.h
20559
20560 UTIL-LINUX PACKAGE
20561 M:      Karel Zak <kzak@redhat.com>
20562 L:      util-linux@vger.kernel.org
20563 S:      Maintained
20564 W:      http://en.wikipedia.org/wiki/Util-linux
20565 T:      git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
20566
20567 UUID HELPERS
20568 M:      Christoph Hellwig <hch@lst.de>
20569 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
20570 L:      linux-kernel@vger.kernel.org
20571 S:      Maintained
20572 T:      git git://git.infradead.org/users/hch/uuid.git
20573 F:      include/linux/uuid.h
20574 F:      include/uapi/linux/uuid.h
20575 F:      lib/test_uuid.c
20576 F:      lib/uuid.c
20577
20578 UV SYSFS DRIVER
20579 M:      Justin Ernst <justin.ernst@hpe.com>
20580 L:      platform-driver-x86@vger.kernel.org
20581 S:      Maintained
20582 F:      drivers/platform/x86/uv_sysfs.c
20583
20584 UVESAFB DRIVER
20585 M:      Michal Januszewski <spock@gentoo.org>
20586 L:      linux-fbdev@vger.kernel.org
20587 S:      Maintained
20588 W:      https://github.com/mjanusz/v86d
20589 F:      Documentation/fb/uvesafb.rst
20590 F:      drivers/video/fbdev/uvesafb.*
20591
20592 Ux500 CLOCK DRIVERS
20593 M:      Ulf Hansson <ulf.hansson@linaro.org>
20594 L:      linux-clk@vger.kernel.org
20595 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
20596 S:      Maintained
20597 F:      drivers/clk/ux500/
20598
20599 VF610 NAND DRIVER
20600 M:      Stefan Agner <stefan@agner.ch>
20601 L:      linux-mtd@lists.infradead.org
20602 S:      Supported
20603 F:      drivers/mtd/nand/raw/vf610_nfc.c
20604
20605 VFAT/FAT/MSDOS FILESYSTEM
20606 M:      OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
20607 S:      Maintained
20608 F:      Documentation/filesystems/vfat.rst
20609 F:      fs/fat/
20610
20611 VFIO DRIVER
20612 M:      Alex Williamson <alex.williamson@redhat.com>
20613 R:      Cornelia Huck <cohuck@redhat.com>
20614 L:      kvm@vger.kernel.org
20615 S:      Maintained
20616 T:      git git://github.com/awilliam/linux-vfio.git
20617 F:      Documentation/driver-api/vfio.rst
20618 F:      drivers/vfio/
20619 F:      include/linux/vfio.h
20620 F:      include/linux/vfio_pci_core.h
20621 F:      include/uapi/linux/vfio.h
20622
20623 VFIO FSL-MC DRIVER
20624 M:      Diana Craciun <diana.craciun@oss.nxp.com>
20625 L:      kvm@vger.kernel.org
20626 S:      Maintained
20627 F:      drivers/vfio/fsl-mc/
20628
20629 VFIO HISILICON PCI DRIVER
20630 M:      Longfang Liu <liulongfang@huawei.com>
20631 M:      Shameer Kolothum <shameerali.kolothum.thodi@huawei.com>
20632 L:      kvm@vger.kernel.org
20633 S:      Maintained
20634 F:      drivers/vfio/pci/hisilicon/
20635
20636 VFIO MEDIATED DEVICE DRIVERS
20637 M:      Kirti Wankhede <kwankhede@nvidia.com>
20638 L:      kvm@vger.kernel.org
20639 S:      Maintained
20640 F:      Documentation/driver-api/vfio-mediated-device.rst
20641 F:      drivers/vfio/mdev/
20642 F:      include/linux/mdev.h
20643 F:      samples/vfio-mdev/
20644
20645 VFIO PCI DEVICE SPECIFIC DRIVERS
20646 R:      Jason Gunthorpe <jgg@nvidia.com>
20647 R:      Yishai Hadas <yishaih@nvidia.com>
20648 R:      Shameer Kolothum <shameerali.kolothum.thodi@huawei.com>
20649 R:      Kevin Tian <kevin.tian@intel.com>
20650 L:      kvm@vger.kernel.org
20651 S:      Maintained
20652 P:      Documentation/driver-api/vfio-pci-device-specific-driver-acceptance.rst
20653 F:      drivers/vfio/pci/*/
20654
20655 VFIO PLATFORM DRIVER
20656 M:      Eric Auger <eric.auger@redhat.com>
20657 L:      kvm@vger.kernel.org
20658 S:      Maintained
20659 F:      drivers/vfio/platform/
20660
20661 VFIO MLX5 PCI DRIVER
20662 M:      Yishai Hadas <yishaih@nvidia.com>
20663 L:      kvm@vger.kernel.org
20664 S:      Maintained
20665 F:      drivers/vfio/pci/mlx5/
20666
20667 VGA_SWITCHEROO
20668 R:      Lukas Wunner <lukas@wunner.de>
20669 S:      Maintained
20670 T:      git git://anongit.freedesktop.org/drm/drm-misc
20671 F:      Documentation/gpu/vga-switcheroo.rst
20672 F:      drivers/gpu/vga/vga_switcheroo.c
20673 F:      include/linux/vga_switcheroo.h
20674
20675 VIA RHINE NETWORK DRIVER
20676 S:      Maintained
20677 M:      Kevin Brace <kevinbrace@bracecomputerlab.com>
20678 F:      drivers/net/ethernet/via/via-rhine.c
20679
20680 VIA SD/MMC CARD CONTROLLER DRIVER
20681 M:      Bruce Chang <brucechang@via.com.tw>
20682 M:      Harald Welte <HaraldWelte@viatech.com>
20683 S:      Maintained
20684 F:      drivers/mmc/host/via-sdmmc.c
20685
20686 VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
20687 M:      Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
20688 L:      linux-fbdev@vger.kernel.org
20689 S:      Maintained
20690 F:      drivers/video/fbdev/via/
20691 F:      include/linux/via-core.h
20692 F:      include/linux/via-gpio.h
20693 F:      include/linux/via_i2c.h
20694
20695 VIA VELOCITY NETWORK DRIVER
20696 M:      Francois Romieu <romieu@fr.zoreil.com>
20697 L:      netdev@vger.kernel.org
20698 S:      Maintained
20699 F:      drivers/net/ethernet/via/via-velocity.*
20700
20701 VICODEC VIRTUAL CODEC DRIVER
20702 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
20703 L:      linux-media@vger.kernel.org
20704 S:      Maintained
20705 W:      https://linuxtv.org
20706 T:      git git://linuxtv.org/media_tree.git
20707 F:      drivers/media/test-drivers/vicodec/*
20708
20709 VIDEO I2C POLLING DRIVER
20710 M:      Matt Ranostay <matt.ranostay@konsulko.com>
20711 L:      linux-media@vger.kernel.org
20712 S:      Maintained
20713 F:      drivers/media/i2c/video-i2c.c
20714
20715 VIDEO MULTIPLEXER DRIVER
20716 M:      Philipp Zabel <p.zabel@pengutronix.de>
20717 L:      linux-media@vger.kernel.org
20718 S:      Maintained
20719 F:      drivers/media/platform/video-mux.c
20720
20721 VIDEOBUF2 FRAMEWORK
20722 M:      Tomasz Figa <tfiga@chromium.org>
20723 M:      Marek Szyprowski <m.szyprowski@samsung.com>
20724 L:      linux-media@vger.kernel.org
20725 S:      Maintained
20726 F:      drivers/media/common/videobuf2/*
20727 F:      include/media/videobuf2-*
20728
20729 VIMC VIRTUAL MEDIA CONTROLLER DRIVER
20730 M:      Shuah Khan <skhan@linuxfoundation.org>
20731 R:      Kieran Bingham <kieran.bingham@ideasonboard.com>
20732 L:      linux-media@vger.kernel.org
20733 S:      Maintained
20734 W:      https://linuxtv.org
20735 T:      git git://linuxtv.org/media_tree.git
20736 F:      drivers/media/test-drivers/vimc/*
20737
20738 VIRT LIB
20739 M:      Alex Williamson <alex.williamson@redhat.com>
20740 M:      Paolo Bonzini <pbonzini@redhat.com>
20741 L:      kvm@vger.kernel.org
20742 S:      Supported
20743 F:      virt/lib/
20744
20745 VIRTIO AND VHOST VSOCK DRIVER
20746 M:      Stefan Hajnoczi <stefanha@redhat.com>
20747 M:      Stefano Garzarella <sgarzare@redhat.com>
20748 L:      kvm@vger.kernel.org
20749 L:      virtualization@lists.linux-foundation.org
20750 L:      netdev@vger.kernel.org
20751 S:      Maintained
20752 F:      drivers/vhost/vsock.c
20753 F:      include/linux/virtio_vsock.h
20754 F:      include/uapi/linux/virtio_vsock.h
20755 F:      net/vmw_vsock/virtio_transport.c
20756 F:      net/vmw_vsock/virtio_transport_common.c
20757
20758 VIRTIO BLOCK AND SCSI DRIVERS
20759 M:      "Michael S. Tsirkin" <mst@redhat.com>
20760 M:      Jason Wang <jasowang@redhat.com>
20761 R:      Paolo Bonzini <pbonzini@redhat.com>
20762 R:      Stefan Hajnoczi <stefanha@redhat.com>
20763 L:      virtualization@lists.linux-foundation.org
20764 S:      Maintained
20765 F:      drivers/block/virtio_blk.c
20766 F:      drivers/scsi/virtio_scsi.c
20767 F:      drivers/vhost/scsi.c
20768 F:      include/uapi/linux/virtio_blk.h
20769 F:      include/uapi/linux/virtio_scsi.h
20770
20771 VIRTIO CONSOLE DRIVER
20772 M:      Amit Shah <amit@kernel.org>
20773 L:      virtualization@lists.linux-foundation.org
20774 S:      Maintained
20775 F:      drivers/char/virtio_console.c
20776 F:      include/linux/virtio_console.h
20777 F:      include/uapi/linux/virtio_console.h
20778
20779 VIRTIO CORE AND NET DRIVERS
20780 M:      "Michael S. Tsirkin" <mst@redhat.com>
20781 M:      Jason Wang <jasowang@redhat.com>
20782 L:      virtualization@lists.linux-foundation.org
20783 S:      Maintained
20784 F:      Documentation/ABI/testing/sysfs-bus-vdpa
20785 F:      Documentation/devicetree/bindings/virtio/
20786 F:      drivers/block/virtio_blk.c
20787 F:      drivers/crypto/virtio/
20788 F:      drivers/net/virtio_net.c
20789 F:      drivers/vdpa/
20790 F:      drivers/virtio/
20791 F:      include/linux/vdpa.h
20792 F:      include/linux/virtio*.h
20793 F:      include/uapi/linux/virtio_*.h
20794 F:      tools/virtio/
20795
20796 VIRTIO BALLOON
20797 M:      "Michael S. Tsirkin" <mst@redhat.com>
20798 M:      David Hildenbrand <david@redhat.com>
20799 L:      virtualization@lists.linux-foundation.org
20800 S:      Maintained
20801 F:      drivers/virtio/virtio_balloon.c
20802 F:      include/uapi/linux/virtio_balloon.h
20803 F:      include/linux/balloon_compaction.h
20804 F:      mm/balloon_compaction.c
20805
20806 VIRTIO CRYPTO DRIVER
20807 M:      Gonglei <arei.gonglei@huawei.com>
20808 L:      virtualization@lists.linux-foundation.org
20809 L:      linux-crypto@vger.kernel.org
20810 S:      Maintained
20811 F:      drivers/crypto/virtio/
20812 F:      include/uapi/linux/virtio_crypto.h
20813
20814 VIRTIO DRIVERS FOR S390
20815 M:      Cornelia Huck <cohuck@redhat.com>
20816 M:      Halil Pasic <pasic@linux.ibm.com>
20817 L:      linux-s390@vger.kernel.org
20818 L:      virtualization@lists.linux-foundation.org
20819 L:      kvm@vger.kernel.org
20820 S:      Supported
20821 F:      arch/s390/include/uapi/asm/virtio-ccw.h
20822 F:      drivers/s390/virtio/
20823
20824 VIRTIO FILE SYSTEM
20825 M:      Vivek Goyal <vgoyal@redhat.com>
20826 M:      Stefan Hajnoczi <stefanha@redhat.com>
20827 M:      Miklos Szeredi <miklos@szeredi.hu>
20828 L:      virtualization@lists.linux-foundation.org
20829 L:      linux-fsdevel@vger.kernel.org
20830 S:      Supported
20831 W:      https://virtio-fs.gitlab.io/
20832 F:      Documentation/filesystems/virtiofs.rst
20833 F:      fs/fuse/virtio_fs.c
20834 F:      include/uapi/linux/virtio_fs.h
20835
20836 VIRTIO GPIO DRIVER
20837 M:      Enrico Weigelt, metux IT consult <info@metux.net>
20838 M:      Viresh Kumar <vireshk@kernel.org>
20839 L:      linux-gpio@vger.kernel.org
20840 L:      virtualization@lists.linux-foundation.org
20841 S:      Maintained
20842 F:      drivers/gpio/gpio-virtio.c
20843 F:      include/uapi/linux/virtio_gpio.h
20844
20845 VIRTIO GPU DRIVER
20846 M:      David Airlie <airlied@linux.ie>
20847 M:      Gerd Hoffmann <kraxel@redhat.com>
20848 R:      Gurchetan Singh <gurchetansingh@chromium.org>
20849 R:      Chia-I Wu <olvaffe@gmail.com>
20850 L:      dri-devel@lists.freedesktop.org
20851 L:      virtualization@lists.linux-foundation.org
20852 S:      Maintained
20853 T:      git git://anongit.freedesktop.org/drm/drm-misc
20854 F:      drivers/gpu/drm/virtio/
20855 F:      include/uapi/linux/virtio_gpu.h
20856
20857 VIRTIO HOST (VHOST)
20858 M:      "Michael S. Tsirkin" <mst@redhat.com>
20859 M:      Jason Wang <jasowang@redhat.com>
20860 L:      kvm@vger.kernel.org
20861 L:      virtualization@lists.linux-foundation.org
20862 L:      netdev@vger.kernel.org
20863 S:      Maintained
20864 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost.git
20865 F:      drivers/vhost/
20866 F:      include/linux/vhost_iotlb.h
20867 F:      include/uapi/linux/vhost.h
20868
20869 VIRTIO INPUT DRIVER
20870 M:      Gerd Hoffmann <kraxel@redhat.com>
20871 S:      Maintained
20872 F:      drivers/virtio/virtio_input.c
20873 F:      include/uapi/linux/virtio_input.h
20874
20875 VIRTIO IOMMU DRIVER
20876 M:      Jean-Philippe Brucker <jean-philippe@linaro.org>
20877 L:      virtualization@lists.linux-foundation.org
20878 S:      Maintained
20879 F:      drivers/iommu/virtio-iommu.c
20880 F:      include/uapi/linux/virtio_iommu.h
20881
20882 VIRTIO MEM DRIVER
20883 M:      David Hildenbrand <david@redhat.com>
20884 L:      virtualization@lists.linux-foundation.org
20885 S:      Maintained
20886 W:      https://virtio-mem.gitlab.io/
20887 F:      drivers/virtio/virtio_mem.c
20888 F:      include/uapi/linux/virtio_mem.h
20889
20890 VIRTIO SOUND DRIVER
20891 M:      Anton Yakovlev <anton.yakovlev@opensynergy.com>
20892 M:      "Michael S. Tsirkin" <mst@redhat.com>
20893 L:      virtualization@lists.linux-foundation.org
20894 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
20895 S:      Maintained
20896 F:      include/uapi/linux/virtio_snd.h
20897 F:      sound/virtio/*
20898
20899 VIRTIO I2C DRIVER
20900 M:      Conghui Chen <conghui.chen@intel.com>
20901 M:      Viresh Kumar <viresh.kumar@linaro.org>
20902 L:      linux-i2c@vger.kernel.org
20903 L:      virtualization@lists.linux-foundation.org
20904 S:      Maintained
20905 F:      drivers/i2c/busses/i2c-virtio.c
20906 F:      include/uapi/linux/virtio_i2c.h
20907
20908 VIRTIO PMEM DRIVER
20909 M:      Pankaj Gupta <pankaj.gupta.linux@gmail.com>
20910 L:      virtualization@lists.linux-foundation.org
20911 S:      Maintained
20912 F:      drivers/nvdimm/virtio_pmem.c
20913 F:      drivers/nvdimm/nd_virtio.c
20914
20915 VIRTUAL BOX GUEST DEVICE DRIVER
20916 M:      Hans de Goede <hdegoede@redhat.com>
20917 M:      Arnd Bergmann <arnd@arndb.de>
20918 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
20919 S:      Maintained
20920 F:      drivers/virt/vboxguest/
20921 F:      include/linux/vbox_utils.h
20922 F:      include/uapi/linux/vbox*.h
20923
20924 VIRTUAL BOX SHARED FOLDER VFS DRIVER
20925 M:      Hans de Goede <hdegoede@redhat.com>
20926 L:      linux-fsdevel@vger.kernel.org
20927 S:      Maintained
20928 F:      fs/vboxsf/*
20929
20930 VIRTUAL SERIO DEVICE DRIVER
20931 M:      Stephen Chandler Paul <thatslyude@gmail.com>
20932 S:      Maintained
20933 F:      drivers/input/serio/userio.c
20934 F:      include/uapi/linux/userio.h
20935
20936 VIVID VIRTUAL VIDEO DRIVER
20937 M:      Hans Verkuil <hverkuil@xs4all.nl>
20938 L:      linux-media@vger.kernel.org
20939 S:      Maintained
20940 W:      https://linuxtv.org
20941 T:      git git://linuxtv.org/media_tree.git
20942 F:      drivers/media/test-drivers/vivid/*
20943
20944 VIDTV VIRTUAL DIGITAL TV DRIVER
20945 M:      Daniel W. S. Almeida <dwlsalmeida@gmail.com>
20946 L:      linux-media@vger.kernel.org
20947 S:      Maintained
20948 W:      https://linuxtv.org
20949 T:      git git://linuxtv.org/media_tree.git
20950 F:      drivers/media/test-drivers/vidtv/*
20951
20952 VLYNQ BUS
20953 M:      Florian Fainelli <f.fainelli@gmail.com>
20954 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
20955 S:      Maintained
20956 F:      drivers/vlynq/vlynq.c
20957 F:      include/linux/vlynq.h
20958
20959 VME SUBSYSTEM
20960 M:      Martyn Welch <martyn@welchs.me.uk>
20961 M:      Manohar Vanga <manohar.vanga@gmail.com>
20962 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
20963 L:      linux-kernel@vger.kernel.org
20964 S:      Maintained
20965 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
20966 F:      Documentation/driver-api/vme.rst
20967 F:      drivers/staging/vme/
20968 F:      drivers/vme/
20969 F:      include/linux/vme*
20970
20971 VM SOCKETS (AF_VSOCK)
20972 M:      Stefano Garzarella <sgarzare@redhat.com>
20973 L:      virtualization@lists.linux-foundation.org
20974 L:      netdev@vger.kernel.org
20975 S:      Maintained
20976 F:      drivers/net/vsockmon.c
20977 F:      include/net/af_vsock.h
20978 F:      include/uapi/linux/vm_sockets.h
20979 F:      include/uapi/linux/vm_sockets_diag.h
20980 F:      include/uapi/linux/vsockmon.h
20981 F:      net/vmw_vsock/
20982 F:      tools/testing/vsock/
20983
20984 VMWARE BALLOON DRIVER
20985 M:      Nadav Amit <namit@vmware.com>
20986 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
20987 L:      linux-kernel@vger.kernel.org
20988 S:      Maintained
20989 F:      drivers/misc/vmw_balloon.c
20990
20991 VMWARE HYPERVISOR INTERFACE
20992 M:      Srivatsa S. Bhat (VMware) <srivatsa@csail.mit.edu>
20993 M:      Alexey Makhalov <amakhalov@vmware.com>
20994 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
20995 L:      virtualization@lists.linux-foundation.org
20996 L:      x86@kernel.org
20997 S:      Supported
20998 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vmware
20999 F:      arch/x86/include/asm/vmware.h
21000 F:      arch/x86/kernel/cpu/vmware.c
21001
21002 VMWARE PVRDMA DRIVER
21003 M:      Bryan Tan <bryantan@vmware.com>
21004 M:      Vishnu Dasa <vdasa@vmware.com>
21005 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
21006 L:      linux-rdma@vger.kernel.org
21007 S:      Maintained
21008 F:      drivers/infiniband/hw/vmw_pvrdma/
21009
21010 VMware PVSCSI driver
21011 M:      Vishal Bhakta <vbhakta@vmware.com>
21012 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
21013 L:      linux-scsi@vger.kernel.org
21014 S:      Maintained
21015 F:      drivers/scsi/vmw_pvscsi.c
21016 F:      drivers/scsi/vmw_pvscsi.h
21017
21018 VMWARE VIRTUAL PTP CLOCK DRIVER
21019 M:      Vivek Thampi <vithampi@vmware.com>
21020 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
21021 L:      netdev@vger.kernel.org
21022 S:      Supported
21023 F:      drivers/ptp/ptp_vmw.c
21024
21025 VMWARE VMCI DRIVER
21026 M:      Bryan Tan <bryantan@vmware.com>
21027 M:      Rajesh Jalisatgi <rjalisatgi@vmware.com>
21028 M:      Vishnu Dasa <vdasa@vmware.com>
21029 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
21030 L:      linux-kernel@vger.kernel.org
21031 S:      Maintained
21032 F:      drivers/misc/vmw_vmci/
21033
21034 VMWARE VMMOUSE SUBDRIVER
21035 M:      Zack Rusin <zackr@vmware.com>
21036 R:      VMware Graphics Reviewers <linux-graphics-maintainer@vmware.com>
21037 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
21038 L:      linux-input@vger.kernel.org
21039 S:      Maintained
21040 F:      drivers/input/mouse/vmmouse.c
21041 F:      drivers/input/mouse/vmmouse.h
21042
21043 VMWARE VMXNET3 ETHERNET DRIVER
21044 M:      Ronak Doshi <doshir@vmware.com>
21045 R:      VMware PV-Drivers Reviewers <pv-drivers@vmware.com>
21046 L:      netdev@vger.kernel.org
21047 S:      Maintained
21048 F:      drivers/net/vmxnet3/
21049
21050 VOCORE VOCORE2 BOARD
21051 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
21052 L:      linux-mips@vger.kernel.org
21053 S:      Maintained
21054 F:      arch/mips/boot/dts/ralink/vocore2.dts
21055
21056 VOLTAGE AND CURRENT REGULATOR FRAMEWORK
21057 M:      Liam Girdwood <lgirdwood@gmail.com>
21058 M:      Mark Brown <broonie@kernel.org>
21059 L:      linux-kernel@vger.kernel.org
21060 S:      Supported
21061 W:      http://www.slimlogic.co.uk/?p=48
21062 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git
21063 F:      Documentation/devicetree/bindings/regulator/
21064 F:      Documentation/power/regulator/
21065 F:      drivers/regulator/
21066 F:      include/dt-bindings/regulator/
21067 F:      include/linux/regulator/
21068 K:      regulator_get_optional
21069
21070 VOLTAGE AND CURRENT REGULATOR IRQ HELPERS
21071 R:      Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
21072 F:      drivers/regulator/irq_helpers.c
21073
21074 VRF
21075 M:      David Ahern <dsahern@kernel.org>
21076 L:      netdev@vger.kernel.org
21077 S:      Maintained
21078 F:      Documentation/networking/vrf.rst
21079 F:      drivers/net/vrf.c
21080
21081 VSPRINTF
21082 M:      Petr Mladek <pmladek@suse.com>
21083 M:      Steven Rostedt <rostedt@goodmis.org>
21084 M:      Sergey Senozhatsky <senozhatsky@chromium.org>
21085 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
21086 R:      Rasmus Villemoes <linux@rasmusvillemoes.dk>
21087 S:      Maintained
21088 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/printk/linux.git
21089 F:      Documentation/core-api/printk-formats.rst
21090 F:      lib/test_printf.c
21091 F:      lib/test_scanf.c
21092 F:      lib/vsprintf.c
21093
21094 VT1211 HARDWARE MONITOR DRIVER
21095 M:      Juerg Haefliger <juergh@gmail.com>
21096 L:      linux-hwmon@vger.kernel.org
21097 S:      Maintained
21098 F:      Documentation/hwmon/vt1211.rst
21099 F:      drivers/hwmon/vt1211.c
21100
21101 VT8231 HARDWARE MONITOR DRIVER
21102 M:      Roger Lucas <vt8231@hiddenengine.co.uk>
21103 L:      linux-hwmon@vger.kernel.org
21104 S:      Maintained
21105 F:      drivers/hwmon/vt8231.c
21106
21107 VUB300 USB to SDIO/SD/MMC bridge chip
21108 L:      linux-mmc@vger.kernel.org
21109 S:      Orphan
21110 F:      drivers/mmc/host/vub300.c
21111
21112 W1 DALLAS'S 1-WIRE BUS
21113 M:      Evgeniy Polyakov <zbr@ioremap.net>
21114 S:      Maintained
21115 F:      Documentation/devicetree/bindings/w1/
21116 F:      Documentation/w1/
21117 F:      drivers/w1/
21118 F:      include/linux/w1.h
21119
21120 W83791D HARDWARE MONITORING DRIVER
21121 M:      Marc Hulsman <m.hulsman@tudelft.nl>
21122 L:      linux-hwmon@vger.kernel.org
21123 S:      Maintained
21124 F:      Documentation/hwmon/w83791d.rst
21125 F:      drivers/hwmon/w83791d.c
21126
21127 W83793 HARDWARE MONITORING DRIVER
21128 M:      Rudolf Marek <r.marek@assembler.cz>
21129 L:      linux-hwmon@vger.kernel.org
21130 S:      Maintained
21131 F:      Documentation/hwmon/w83793.rst
21132 F:      drivers/hwmon/w83793.c
21133
21134 W83795 HARDWARE MONITORING DRIVER
21135 M:      Jean Delvare <jdelvare@suse.com>
21136 L:      linux-hwmon@vger.kernel.org
21137 S:      Maintained
21138 F:      drivers/hwmon/w83795.c
21139
21140 W83L51xD SD/MMC CARD INTERFACE DRIVER
21141 M:      Pierre Ossman <pierre@ossman.eu>
21142 S:      Maintained
21143 F:      drivers/mmc/host/wbsd.*
21144
21145 WACOM PROTOCOL 4 SERIAL TABLETS
21146 M:      Julian Squires <julian@cipht.net>
21147 M:      Hans de Goede <hdegoede@redhat.com>
21148 L:      linux-input@vger.kernel.org
21149 S:      Maintained
21150 F:      drivers/input/tablet/wacom_serial4.c
21151
21152 WATCHDOG DEVICE DRIVERS
21153 M:      Wim Van Sebroeck <wim@linux-watchdog.org>
21154 M:      Guenter Roeck <linux@roeck-us.net>
21155 L:      linux-watchdog@vger.kernel.org
21156 S:      Maintained
21157 W:      http://www.linux-watchdog.org/
21158 T:      git git://www.linux-watchdog.org/linux-watchdog.git
21159 F:      Documentation/devicetree/bindings/watchdog/
21160 F:      Documentation/watchdog/
21161 F:      drivers/watchdog/
21162 F:      include/linux/watchdog.h
21163 F:      include/uapi/linux/watchdog.h
21164
21165 WHISKEYCOVE PMIC GPIO DRIVER
21166 M:      Kuppuswamy Sathyanarayanan <sathyanarayanan.kuppuswamy@linux.intel.com>
21167 L:      linux-gpio@vger.kernel.org
21168 S:      Maintained
21169 F:      drivers/gpio/gpio-wcove.c
21170
21171 WHWAVE RTC DRIVER
21172 M:      Dianlong Li <long17.cool@163.com>
21173 L:      linux-rtc@vger.kernel.org
21174 S:      Maintained
21175 F:      drivers/rtc/rtc-sd3078.c
21176
21177 WIIMOTE HID DRIVER
21178 M:      David Rheinsberg <david.rheinsberg@gmail.com>
21179 L:      linux-input@vger.kernel.org
21180 S:      Maintained
21181 F:      drivers/hid/hid-wiimote*
21182
21183 WILOCITY WIL6210 WIRELESS DRIVER
21184 M:      Maya Erez <merez@codeaurora.org>
21185 L:      linux-wireless@vger.kernel.org
21186 L:      wil6210@qti.qualcomm.com
21187 S:      Supported
21188 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wil6210
21189 F:      drivers/net/wireless/ath/wil6210/
21190
21191 WINBOND CIR DRIVER
21192 M:      David Härdeman <david@hardeman.nu>
21193 S:      Maintained
21194 F:      drivers/media/rc/winbond-cir.c
21195
21196 WINSYSTEMS EBC-C384 WATCHDOG DRIVER
21197 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
21198 L:      linux-watchdog@vger.kernel.org
21199 S:      Maintained
21200 F:      drivers/watchdog/ebc-c384_wdt.c
21201
21202 WINSYSTEMS WS16C48 GPIO DRIVER
21203 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
21204 L:      linux-gpio@vger.kernel.org
21205 S:      Maintained
21206 F:      drivers/gpio/gpio-ws16c48.c
21207
21208 WIREGUARD SECURE NETWORK TUNNEL
21209 M:      Jason A. Donenfeld <Jason@zx2c4.com>
21210 L:      wireguard@lists.zx2c4.com
21211 L:      netdev@vger.kernel.org
21212 S:      Maintained
21213 F:      drivers/net/wireguard/
21214 F:      tools/testing/selftests/wireguard/
21215
21216 WISTRON LAPTOP BUTTON DRIVER
21217 M:      Miloslav Trmac <mitr@volny.cz>
21218 S:      Maintained
21219 F:      drivers/input/misc/wistron_btns.c
21220
21221 WL3501 WIRELESS PCMCIA CARD DRIVER
21222 L:      linux-wireless@vger.kernel.org
21223 S:      Odd fixes
21224 F:      drivers/net/wireless/wl3501*
21225
21226 WOLFSON MICROELECTRONICS DRIVERS
21227 L:      patches@opensource.cirrus.com
21228 S:      Supported
21229 W:      https://github.com/CirrusLogic/linux-drivers/wiki
21230 T:      git https://github.com/CirrusLogic/linux-drivers.git
21231 F:      Documentation/devicetree/bindings/extcon/wlf,arizona.yaml
21232 F:      Documentation/devicetree/bindings/mfd/wlf,arizona.yaml
21233 F:      Documentation/devicetree/bindings/mfd/wm831x.txt
21234 F:      Documentation/devicetree/bindings/regulator/wlf,arizona.yaml
21235 F:      Documentation/devicetree/bindings/sound/wlf,*.yaml
21236 F:      Documentation/devicetree/bindings/sound/wm*
21237 F:      Documentation/hwmon/wm83??.rst
21238 F:      arch/arm/mach-s3c/mach-crag6410*
21239 F:      drivers/clk/clk-wm83*.c
21240 F:      drivers/gpio/gpio-*wm*.c
21241 F:      drivers/gpio/gpio-arizona.c
21242 F:      drivers/hwmon/wm83??-hwmon.c
21243 F:      drivers/input/misc/wm831x-on.c
21244 F:      drivers/input/touchscreen/wm831x-ts.c
21245 F:      drivers/input/touchscreen/wm97*.c
21246 F:      drivers/leds/leds-wm83*.c
21247 F:      drivers/mfd/arizona*
21248 F:      drivers/mfd/cs47l24*
21249 F:      drivers/mfd/wm*.c
21250 F:      drivers/power/supply/wm83*.c
21251 F:      drivers/regulator/arizona*
21252 F:      drivers/regulator/wm8*.c
21253 F:      drivers/rtc/rtc-wm83*.c
21254 F:      drivers/video/backlight/wm83*_bl.c
21255 F:      drivers/watchdog/wm83*_wdt.c
21256 F:      include/linux/mfd/arizona/
21257 F:      include/linux/mfd/wm831x/
21258 F:      include/linux/mfd/wm8350/
21259 F:      include/linux/mfd/wm8400*
21260 F:      include/linux/regulator/arizona*
21261 F:      include/linux/wm97xx.h
21262 F:      include/sound/wm????.h
21263 F:      sound/soc/codecs/arizona*
21264 F:      sound/soc/codecs/cs47l24*
21265 F:      sound/soc/codecs/wm*
21266
21267 WORKQUEUE
21268 M:      Tejun Heo <tj@kernel.org>
21269 R:      Lai Jiangshan <jiangshanlai@gmail.com>
21270 S:      Maintained
21271 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
21272 F:      Documentation/core-api/workqueue.rst
21273 F:      include/linux/workqueue.h
21274 F:      kernel/workqueue.c
21275
21276 WWAN DRIVERS
21277 M:      Loic Poulain <loic.poulain@linaro.org>
21278 M:      Sergey Ryazanov <ryazanov.s.a@gmail.com>
21279 R:      Johannes Berg <johannes@sipsolutions.net>
21280 L:      netdev@vger.kernel.org
21281 S:      Maintained
21282 F:      drivers/net/wwan/
21283 F:      include/linux/wwan.h
21284 F:      include/uapi/linux/wwan.h
21285
21286 X-POWERS AXP288 PMIC DRIVERS
21287 M:      Hans de Goede <hdegoede@redhat.com>
21288 S:      Maintained
21289 F:      drivers/acpi/pmic/intel_pmic_xpower.c
21290 N:      axp288
21291
21292 X-POWERS MULTIFUNCTION PMIC DEVICE DRIVERS
21293 M:      Chen-Yu Tsai <wens@csie.org>
21294 L:      linux-kernel@vger.kernel.org
21295 S:      Maintained
21296 N:      axp[128]
21297
21298 X.25 STACK
21299 M:      Martin Schiller <ms@dev.tdt.de>
21300 L:      linux-x25@vger.kernel.org
21301 S:      Maintained
21302 F:      Documentation/networking/lapb-module.rst
21303 F:      Documentation/networking/x25*
21304 F:      drivers/net/wan/hdlc_x25.c
21305 F:      drivers/net/wan/lapbether.c
21306 F:      include/*/lapb.h
21307 F:      include/net/x25*
21308 F:      include/uapi/linux/x25.h
21309 F:      net/lapb/
21310 F:      net/x25/
21311
21312 X86 ARCHITECTURE (32-BIT AND 64-BIT)
21313 M:      Thomas Gleixner <tglx@linutronix.de>
21314 M:      Ingo Molnar <mingo@redhat.com>
21315 M:      Borislav Petkov <bp@alien8.de>
21316 M:      Dave Hansen <dave.hansen@linux.intel.com>
21317 M:      x86@kernel.org
21318 R:      "H. Peter Anvin" <hpa@zytor.com>
21319 L:      linux-kernel@vger.kernel.org
21320 S:      Maintained
21321 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
21322 F:      Documentation/devicetree/bindings/x86/
21323 F:      Documentation/x86/
21324 F:      arch/x86/
21325
21326 X86 ENTRY CODE
21327 M:      Andy Lutomirski <luto@kernel.org>
21328 L:      linux-kernel@vger.kernel.org
21329 S:      Maintained
21330 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/asm
21331 F:      arch/x86/entry/
21332
21333 X86 MCE INFRASTRUCTURE
21334 M:      Tony Luck <tony.luck@intel.com>
21335 M:      Borislav Petkov <bp@alien8.de>
21336 L:      linux-edac@vger.kernel.org
21337 S:      Maintained
21338 F:      Documentation/ABI/testing/sysfs-mce
21339 F:      Documentation/x86/x86_64/machinecheck.rst
21340 F:      arch/x86/kernel/cpu/mce/*
21341
21342 X86 MICROCODE UPDATE SUPPORT
21343 M:      Borislav Petkov <bp@alien8.de>
21344 S:      Maintained
21345 F:      arch/x86/kernel/cpu/microcode/*
21346
21347 X86 MM
21348 M:      Dave Hansen <dave.hansen@linux.intel.com>
21349 M:      Andy Lutomirski <luto@kernel.org>
21350 M:      Peter Zijlstra <peterz@infradead.org>
21351 L:      linux-kernel@vger.kernel.org
21352 S:      Maintained
21353 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/mm
21354 F:      arch/x86/mm/
21355
21356 X86 PLATFORM ANDROID TABLETS DSDT FIXUP DRIVER
21357 M:      Hans de Goede <hdegoede@redhat.com>
21358 L:      platform-driver-x86@vger.kernel.org
21359 S:      Maintained
21360 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
21361 F:      drivers/platform/x86/x86-android-tablets.c
21362
21363 X86 PLATFORM DRIVERS
21364 M:      Hans de Goede <hdegoede@redhat.com>
21365 M:      Mark Gross <markgross@kernel.org>
21366 L:      platform-driver-x86@vger.kernel.org
21367 S:      Maintained
21368 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
21369 F:      drivers/platform/olpc/
21370 F:      drivers/platform/x86/
21371
21372 X86 PLATFORM DRIVERS - ARCH
21373 R:      Darren Hart <dvhart@infradead.org>
21374 R:      Andy Shevchenko <andy@infradead.org>
21375 L:      platform-driver-x86@vger.kernel.org
21376 L:      x86@kernel.org
21377 S:      Maintained
21378 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
21379 F:      arch/x86/platform
21380
21381 X86 PLATFORM UV HPE SUPERDOME FLEX
21382 M:      Steve Wahl <steve.wahl@hpe.com>
21383 R:      Mike Travis <mike.travis@hpe.com>
21384 R:      Dimitri Sivanich <dimitri.sivanich@hpe.com>
21385 R:      Russ Anderson <russ.anderson@hpe.com>
21386 S:      Supported
21387 F:      arch/x86/include/asm/uv/
21388 F:      arch/x86/kernel/apic/x2apic_uv_x.c
21389 F:      arch/x86/platform/uv/
21390
21391 X86 VDSO
21392 M:      Andy Lutomirski <luto@kernel.org>
21393 L:      linux-kernel@vger.kernel.org
21394 S:      Maintained
21395 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso
21396 F:      arch/x86/entry/vdso/
21397
21398 XARRAY
21399 M:      Matthew Wilcox <willy@infradead.org>
21400 L:      linux-fsdevel@vger.kernel.org
21401 S:      Supported
21402 F:      Documentation/core-api/xarray.rst
21403 F:      include/linux/idr.h
21404 F:      include/linux/xarray.h
21405 F:      lib/idr.c
21406 F:      lib/xarray.c
21407 F:      tools/testing/radix-tree
21408
21409 XBOX DVD IR REMOTE
21410 M:      Benjamin Valentin <benpicco@googlemail.com>
21411 S:      Maintained
21412 F:      drivers/media/rc/keymaps/rc-xbox-dvd.c
21413 F:      drivers/media/rc/xbox_remote.c
21414
21415 XC2028/3028 TUNER DRIVER
21416 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
21417 L:      linux-media@vger.kernel.org
21418 S:      Maintained
21419 W:      https://linuxtv.org
21420 T:      git git://linuxtv.org/media_tree.git
21421 F:      drivers/media/tuners/xc2028.*
21422
21423 XDP (eXpress Data Path)
21424 M:      Alexei Starovoitov <ast@kernel.org>
21425 M:      Daniel Borkmann <daniel@iogearbox.net>
21426 M:      David S. Miller <davem@davemloft.net>
21427 M:      Jakub Kicinski <kuba@kernel.org>
21428 M:      Jesper Dangaard Brouer <hawk@kernel.org>
21429 M:      John Fastabend <john.fastabend@gmail.com>
21430 L:      netdev@vger.kernel.org
21431 L:      bpf@vger.kernel.org
21432 S:      Supported
21433 F:      include/net/xdp.h
21434 F:      include/net/xdp_priv.h
21435 F:      include/trace/events/xdp.h
21436 F:      kernel/bpf/cpumap.c
21437 F:      kernel/bpf/devmap.c
21438 F:      net/core/xdp.c
21439 F:      samples/bpf/xdp*
21440 F:      tools/testing/selftests/bpf/*xdp*
21441 F:      tools/testing/selftests/bpf/*/*xdp*
21442 F:      drivers/net/ethernet/*/*/*/*/*xdp*
21443 F:      drivers/net/ethernet/*/*/*xdp*
21444 K:      (?:\b|_)xdp(?:\b|_)
21445
21446 XDP SOCKETS (AF_XDP)
21447 M:      Björn Töpel <bjorn@kernel.org>
21448 M:      Magnus Karlsson <magnus.karlsson@intel.com>
21449 R:      Jonathan Lemon <jonathan.lemon@gmail.com>
21450 L:      netdev@vger.kernel.org
21451 L:      bpf@vger.kernel.org
21452 S:      Maintained
21453 F:      Documentation/networking/af_xdp.rst
21454 F:      include/net/xdp_sock*
21455 F:      include/net/xsk_buff_pool.h
21456 F:      include/uapi/linux/if_xdp.h
21457 F:      include/uapi/linux/xdp_diag.h
21458 F:      include/net/netns/xdp.h
21459 F:      net/xdp/
21460 F:      samples/bpf/xdpsock*
21461 F:      tools/lib/bpf/xsk*
21462
21463 XEN BLOCK SUBSYSTEM
21464 M:      Roger Pau Monné <roger.pau@citrix.com>
21465 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
21466 S:      Supported
21467 F:      drivers/block/xen*
21468 F:      drivers/block/xen-blkback/*
21469
21470 XEN HYPERVISOR ARM
21471 M:      Stefano Stabellini <sstabellini@kernel.org>
21472 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
21473 S:      Maintained
21474 F:      arch/arm/include/asm/xen/
21475 F:      arch/arm/xen/
21476
21477 XEN HYPERVISOR ARM64
21478 M:      Stefano Stabellini <sstabellini@kernel.org>
21479 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
21480 S:      Maintained
21481 F:      arch/arm64/include/asm/xen/
21482 F:      arch/arm64/xen/
21483
21484 XEN HYPERVISOR INTERFACE
21485 M:      Boris Ostrovsky <boris.ostrovsky@oracle.com>
21486 M:      Juergen Gross <jgross@suse.com>
21487 R:      Stefano Stabellini <sstabellini@kernel.org>
21488 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
21489 S:      Supported
21490 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git
21491 F:      Documentation/ABI/stable/sysfs-hypervisor-xen
21492 F:      Documentation/ABI/testing/sysfs-hypervisor-xen
21493 F:      arch/x86/include/asm/pvclock-abi.h
21494 F:      arch/x86/include/asm/xen/
21495 F:      arch/x86/platform/pvh/
21496 F:      arch/x86/xen/
21497 F:      drivers/*/xen-*front.c
21498 F:      drivers/xen/
21499 F:      include/uapi/xen/
21500 F:      include/xen/
21501
21502 XEN NETWORK BACKEND DRIVER
21503 M:      Wei Liu <wei.liu@kernel.org>
21504 M:      Paul Durrant <paul@xen.org>
21505 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
21506 L:      netdev@vger.kernel.org
21507 S:      Supported
21508 F:      drivers/net/xen-netback/*
21509
21510 XEN PCI SUBSYSTEM
21511 M:      Juergen Gross <jgross@suse.com>
21512 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
21513 S:      Supported
21514 F:      arch/x86/pci/*xen*
21515 F:      drivers/pci/*xen*
21516
21517 XEN PVSCSI DRIVERS
21518 M:      Juergen Gross <jgross@suse.com>
21519 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
21520 L:      linux-scsi@vger.kernel.org
21521 S:      Supported
21522 F:      drivers/scsi/xen-scsifront.c
21523 F:      drivers/xen/xen-scsiback.c
21524 F:      include/xen/interface/io/vscsiif.h
21525
21526 XEN PVUSB DRIVER
21527 M:      Juergen Gross <jgross@suse.com>
21528 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
21529 L:      linux-usb@vger.kernel.org
21530 S:      Supported
21531 F:      drivers/usb/host/xen*
21532 F:      include/xen/interface/io/usbif.h
21533
21534 XEN SOUND FRONTEND DRIVER
21535 M:      Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
21536 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
21537 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
21538 S:      Supported
21539 F:      sound/xen/*
21540
21541 XEN SWIOTLB SUBSYSTEM
21542 M:      Juergen Gross <jgross@suse.com>
21543 M:      Stefano Stabellini <sstabellini@kernel.org>
21544 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
21545 L:      iommu@lists.linux-foundation.org
21546 S:      Supported
21547 F:      arch/x86/xen/*swiotlb*
21548 F:      drivers/xen/*swiotlb*
21549
21550 XFS FILESYSTEM
21551 C:      irc://irc.oftc.net/xfs
21552 M:      Darrick J. Wong <djwong@kernel.org>
21553 M:      linux-xfs@vger.kernel.org
21554 L:      linux-xfs@vger.kernel.org
21555 S:      Supported
21556 W:      http://xfs.org/
21557 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
21558 F:      Documentation/ABI/testing/sysfs-fs-xfs
21559 F:      Documentation/admin-guide/xfs.rst
21560 F:      Documentation/filesystems/xfs-delayed-logging-design.rst
21561 F:      Documentation/filesystems/xfs-self-describing-metadata.rst
21562 F:      fs/xfs/
21563 F:      include/uapi/linux/dqblk_xfs.h
21564 F:      include/uapi/linux/fsmap.h
21565
21566 XILINX AMS DRIVER
21567 M:      Anand Ashok Dumbre <anand.ashok.dumbre@xilinx.com>
21568 L:      linux-iio@vger.kernel.org
21569 S:      Maintained
21570 F:      Documentation/devicetree/bindings/iio/adc/xlnx,zynqmp-ams.yaml
21571 F:      drivers/iio/adc/xilinx-ams.c
21572
21573 XILINX AXI ETHERNET DRIVER
21574 M:      Radhey Shyam Pandey <radhey.shyam.pandey@xilinx.com>
21575 S:      Maintained
21576 F:      drivers/net/ethernet/xilinx/xilinx_axienet*
21577
21578 XILINX CAN DRIVER
21579 M:      Appana Durga Kedareswara rao <appana.durga.rao@xilinx.com>
21580 R:      Naga Sureshkumar Relli <naga.sureshkumar.relli@xilinx.com>
21581 L:      linux-can@vger.kernel.org
21582 S:      Maintained
21583 F:      Documentation/devicetree/bindings/net/can/xilinx_can.txt
21584 F:      drivers/net/can/xilinx_can.c
21585
21586 XILINX GPIO DRIVER
21587 M:      Shubhrajyoti Datta <shubhrajyoti.datta@xilinx.com>
21588 R:      Srinivas Neeli <srinivas.neeli@xilinx.com>
21589 R:      Michal Simek <michal.simek@xilinx.com>
21590 S:      Maintained
21591 F:      Documentation/devicetree/bindings/gpio/gpio-xilinx.txt
21592 F:      Documentation/devicetree/bindings/gpio/gpio-zynq.yaml
21593 F:      drivers/gpio/gpio-xilinx.c
21594 F:      drivers/gpio/gpio-zynq.c
21595
21596 XILINX SD-FEC IP CORES
21597 M:      Derek Kiernan <derek.kiernan@xilinx.com>
21598 M:      Dragan Cvetic <dragan.cvetic@xilinx.com>
21599 S:      Maintained
21600 F:      Documentation/devicetree/bindings/misc/xlnx,sd-fec.txt
21601 F:      Documentation/misc-devices/xilinx_sdfec.rst
21602 F:      drivers/misc/Kconfig
21603 F:      drivers/misc/Makefile
21604 F:      drivers/misc/xilinx_sdfec.c
21605 F:      include/uapi/misc/xilinx_sdfec.h
21606
21607 XILINX UARTLITE SERIAL DRIVER
21608 M:      Peter Korsgaard <jacmet@sunsite.dk>
21609 L:      linux-serial@vger.kernel.org
21610 S:      Maintained
21611 F:      drivers/tty/serial/uartlite.c
21612
21613 XILINX VIDEO IP CORES
21614 M:      Hyun Kwon <hyun.kwon@xilinx.com>
21615 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
21616 L:      linux-media@vger.kernel.org
21617 S:      Supported
21618 T:      git git://linuxtv.org/media_tree.git
21619 F:      Documentation/devicetree/bindings/media/xilinx/
21620 F:      drivers/media/platform/xilinx/
21621 F:      include/uapi/linux/xilinx-v4l2-controls.h
21622
21623 XILINX ZYNQMP DPDMA DRIVER
21624 M:      Hyun Kwon <hyun.kwon@xilinx.com>
21625 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
21626 L:      dmaengine@vger.kernel.org
21627 S:      Supported
21628 F:      Documentation/devicetree/bindings/dma/xilinx/xlnx,zynqmp-dpdma.yaml
21629 F:      drivers/dma/xilinx/xilinx_dpdma.c
21630 F:      include/dt-bindings/dma/xlnx-zynqmp-dpdma.h
21631
21632 XILINX ZYNQMP PSGTR PHY DRIVER
21633 M:      Anurag Kumar Vulisha <anurag.kumar.vulisha@xilinx.com>
21634 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
21635 L:      linux-kernel@vger.kernel.org
21636 S:      Supported
21637 T:      git https://github.com/Xilinx/linux-xlnx.git
21638 F:      Documentation/devicetree/bindings/phy/xlnx,zynqmp-psgtr.yaml
21639 F:      drivers/phy/xilinx/phy-zynqmp.c
21640
21641 XILINX ZYNQMP SHA3 DRIVER
21642 M:      Harsha <harsha.harsha@xilinx.com>
21643 S:      Maintained
21644 F:      drivers/crypto/xilinx/zynqmp-sha.c
21645
21646 XILINX EVENT MANAGEMENT DRIVER
21647 M:      Abhyuday Godhasara <abhyuday.godhasara@xilinx.com>
21648 S:      Maintained
21649 F:      drivers/soc/xilinx/xlnx_event_manager.c
21650 F:      include/linux/firmware/xlnx-event-manager.h
21651
21652 XILLYBUS DRIVER
21653 M:      Eli Billauer <eli.billauer@gmail.com>
21654 L:      linux-kernel@vger.kernel.org
21655 S:      Supported
21656 F:      drivers/char/xillybus/
21657
21658 XLP9XX I2C DRIVER
21659 M:      George Cherian <gcherian@marvell.com>
21660 L:      linux-i2c@vger.kernel.org
21661 S:      Supported
21662 W:      http://www.marvell.com
21663 F:      drivers/i2c/busses/i2c-xlp9xx.c
21664
21665 XRA1403 GPIO EXPANDER
21666 M:      Nandor Han <nandor.han@ge.com>
21667 M:      Semi Malinen <semi.malinen@ge.com>
21668 L:      linux-gpio@vger.kernel.org
21669 S:      Maintained
21670 F:      Documentation/devicetree/bindings/gpio/gpio-xra1403.txt
21671 F:      drivers/gpio/gpio-xra1403.c
21672
21673 XTENSA XTFPGA PLATFORM SUPPORT
21674 M:      Max Filippov <jcmvbkbc@gmail.com>
21675 L:      linux-xtensa@linux-xtensa.org
21676 S:      Maintained
21677 F:      drivers/spi/spi-xtensa-xtfpga.c
21678 F:      sound/soc/xtensa/xtfpga-i2s.c
21679
21680 YAM DRIVER FOR AX.25
21681 M:      Jean-Paul Roubelat <jpr@f6fbb.org>
21682 L:      linux-hams@vger.kernel.org
21683 S:      Maintained
21684 F:      drivers/net/hamradio/yam*
21685 F:      include/linux/yam.h
21686
21687 YAMA SECURITY MODULE
21688 M:      Kees Cook <keescook@chromium.org>
21689 S:      Supported
21690 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git yama/tip
21691 F:      Documentation/admin-guide/LSM/Yama.rst
21692 F:      security/yama/
21693
21694 YEALINK PHONE DRIVER
21695 M:      Henk Vergonet <Henk.Vergonet@gmail.com>
21696 L:      usbb2k-api-dev@nongnu.org
21697 S:      Maintained
21698 F:      Documentation/input/devices/yealink.rst
21699 F:      drivers/input/misc/yealink.*
21700
21701 Z8530 DRIVER FOR AX.25
21702 M:      Joerg Reuter <jreuter@yaina.de>
21703 L:      linux-hams@vger.kernel.org
21704 S:      Maintained
21705 W:      http://yaina.de/jreuter/
21706 W:      http://www.qsl.net/dl1bke/
21707 F:      Documentation/networking/device_drivers/hamradio/z8530drv.rst
21708 F:      drivers/net/hamradio/*scc.c
21709 F:      drivers/net/hamradio/z8530.h
21710
21711 ZBUD COMPRESSED PAGE ALLOCATOR
21712 M:      Seth Jennings <sjenning@redhat.com>
21713 M:      Dan Streetman <ddstreet@ieee.org>
21714 L:      linux-mm@kvack.org
21715 S:      Maintained
21716 F:      mm/zbud.c
21717
21718 ZD1211RW WIRELESS DRIVER
21719 M:      Ulrich Kunitz <kune@deine-taler.de>
21720 L:      linux-wireless@vger.kernel.org
21721 L:      zd1211-devs@lists.sourceforge.net (subscribers-only)
21722 S:      Maintained
21723 W:      http://zd1211.ath.cx/wiki/DriverRewrite
21724 F:      drivers/net/wireless/zydas/zd1211rw/
21725
21726 ZD1301 MEDIA DRIVER
21727 M:      Antti Palosaari <crope@iki.fi>
21728 L:      linux-media@vger.kernel.org
21729 S:      Maintained
21730 W:      https://linuxtv.org/
21731 W:      http://palosaari.fi/linux/
21732 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
21733 F:      drivers/media/usb/dvb-usb-v2/zd1301*
21734
21735 ZD1301_DEMOD MEDIA DRIVER
21736 M:      Antti Palosaari <crope@iki.fi>
21737 L:      linux-media@vger.kernel.org
21738 S:      Maintained
21739 W:      https://linuxtv.org/
21740 W:      http://palosaari.fi/linux/
21741 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
21742 F:      drivers/media/dvb-frontends/zd1301_demod*
21743
21744 ZHAOXIN PROCESSOR SUPPORT
21745 M:      Tony W Wang-oc <TonyWWang-oc@zhaoxin.com>
21746 L:      linux-kernel@vger.kernel.org
21747 S:      Maintained
21748 F:      arch/x86/kernel/cpu/zhaoxin.c
21749
21750 ZONEFS FILESYSTEM
21751 M:      Damien Le Moal <damien.lemoal@opensource.wdc.com>
21752 M:      Naohiro Aota <naohiro.aota@wdc.com>
21753 R:      Johannes Thumshirn <jth@kernel.org>
21754 L:      linux-fsdevel@vger.kernel.org
21755 S:      Maintained
21756 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dlemoal/zonefs.git
21757 F:      Documentation/filesystems/zonefs.rst
21758 F:      fs/zonefs/
21759
21760 ZPOOL COMPRESSED PAGE STORAGE API
21761 M:      Dan Streetman <ddstreet@ieee.org>
21762 L:      linux-mm@kvack.org
21763 S:      Maintained
21764 F:      include/linux/zpool.h
21765 F:      mm/zpool.c
21766
21767 ZR36067 VIDEO FOR LINUX DRIVER
21768 M:      Corentin Labbe <clabbe@baylibre.com>
21769 L:      mjpeg-users@lists.sourceforge.net
21770 L:      linux-media@vger.kernel.org
21771 S:      Maintained
21772 W:      http://mjpeg.sourceforge.net/driver-zoran/
21773 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
21774 F:      Documentation/driver-api/media/drivers/zoran.rst
21775 F:      drivers/staging/media/zoran/
21776
21777 ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER
21778 M:      Minchan Kim <minchan@kernel.org>
21779 M:      Nitin Gupta <ngupta@vflare.org>
21780 R:      Sergey Senozhatsky <senozhatsky@chromium.org>
21781 L:      linux-kernel@vger.kernel.org
21782 S:      Maintained
21783 F:      Documentation/admin-guide/blockdev/zram.rst
21784 F:      drivers/block/zram/
21785
21786 ZS DECSTATION Z85C30 SERIAL DRIVER
21787 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
21788 S:      Maintained
21789 F:      drivers/tty/serial/zs.*
21790
21791 ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR
21792 M:      Minchan Kim <minchan@kernel.org>
21793 M:      Nitin Gupta <ngupta@vflare.org>
21794 R:      Sergey Senozhatsky <senozhatsky@chromium.org>
21795 L:      linux-mm@kvack.org
21796 S:      Maintained
21797 F:      Documentation/vm/zsmalloc.rst
21798 F:      include/linux/zsmalloc.h
21799 F:      mm/zsmalloc.c
21800
21801 ZSTD
21802 M:      Nick Terrell <terrelln@fb.com>
21803 S:      Maintained
21804 B:      https://github.com/facebook/zstd/issues
21805 T:      git git://github.com/terrelln/linux.git
21806 F:      include/linux/zstd*
21807 F:      lib/zstd/
21808 F:      lib/decompress_unzstd.c
21809 F:      crypto/zstd.c
21810 N:      zstd
21811 K:      zstd
21812
21813 ZSWAP COMPRESSED SWAP CACHING
21814 M:      Seth Jennings <sjenning@redhat.com>
21815 M:      Dan Streetman <ddstreet@ieee.org>
21816 M:      Vitaly Wool <vitaly.wool@konsulko.com>
21817 L:      linux-mm@kvack.org
21818 S:      Maintained
21819 F:      mm/zswap.c
21820
21821 THE REST
21822 M:      Linus Torvalds <torvalds@linux-foundation.org>
21823 L:      linux-kernel@vger.kernel.org
21824 S:      Buried alive in reporters
21825 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
21826 F:      *
21827 F:      */