packaging: Upgrade build required openssl version from 1.1 to 3
[platform/kernel/linux-rpi.git] / MAINTAINERS
1 List of maintainers and how to submit kernel changes
2 ====================================================
3
4 Please try to follow the guidelines below.  This will make things
5 easier on the maintainers.  Not all of these guidelines matter for every
6 trivial patch so apply some common sense.
7
8 Tips for patch submitters
9 -------------------------
10
11 1.      Always *test* your changes, however small, on at least 4 or
12         5 people, preferably many more.
13
14 2.      Try to release a few ALPHA test versions to the net. Announce
15         them onto the kernel channel and await results. This is especially
16         important for device drivers, because often that's the only way
17         you will find things like the fact version 3 firmware needs
18         a magic fix you didn't know about, or some clown changed the
19         chips on a board and not its name.  (Don't laugh!  Look at the
20         SMC etherpower for that.)
21
22 3.      Make sure your changes compile correctly in multiple
23         configurations. In particular check that changes work both as a
24         module and built into the kernel.
25
26 4.      When you are happy with a change make it generally available for
27         testing and await feedback.
28
29 5.      Make a patch available to the relevant maintainer in the list. Use
30         ``diff -u`` to make the patch easy to merge. Be prepared to get your
31         changes sent back with seemingly silly requests about formatting
32         and variable names.  These aren't as silly as they seem. One
33         job the maintainers (and especially Linus) do is to keep things
34         looking the same. Sometimes this means that the clever hack in
35         your driver to get around a problem actually needs to become a
36         generalized kernel feature ready for next time.
37
38         PLEASE check your patch with the automated style checker
39         (scripts/checkpatch.pl) to catch trivial style violations.
40         See Documentation/process/coding-style.rst for guidance here.
41
42         PLEASE CC: the maintainers and mailing lists that are generated
43         by ``scripts/get_maintainer.pl.`` The results returned by the
44         script will be best if you have git installed and are making
45         your changes in a branch derived from Linus' latest git tree.
46         See Documentation/process/submitting-patches.rst for details.
47
48         PLEASE try to include any credit lines you want added with the
49         patch. It avoids people being missed off by mistake and makes
50         it easier to know who wants adding and who doesn't.
51
52         PLEASE document known bugs. If it doesn't work for everything
53         or does something very odd once a month document it.
54
55         PLEASE remember that submissions must be made under the terms
56         of the Linux Foundation certificate of contribution and should
57         include a Signed-off-by: line.  The current version of this
58         "Developer's Certificate of Origin" (DCO) is listed in the file
59         Documentation/process/submitting-patches.rst.
60
61 6.      Make sure you have the right to send any changes you make. If you
62         do changes at work you may find your employer owns the patch
63         not you.
64
65 7.      When sending security related changes or reports to a maintainer
66         please Cc: security@kernel.org, especially if the maintainer
67         does not respond. Please keep in mind that the security team is
68         a small set of people who can be efficient only when working on
69         verified bugs. Please only Cc: this list when you have identified
70         that the bug would present a short-term risk to other users if it
71         were publicly disclosed. For example, reports of address leaks do
72         not represent an immediate threat and are better handled publicly,
73         and ideally, should come with a patch proposal. Please do not send
74         automated reports to this list either. Such bugs will be handled
75         better and faster in the usual public places. See
76         Documentation/admin-guide/security-bugs.rst for details.
77
78 8.      Happy hacking.
79
80 Descriptions of section entries and preferred order
81 ---------------------------------------------------
82
83         M: *Mail* patches to: FullName <address@domain>
84         R: Designated *Reviewer*: FullName <address@domain>
85            These reviewers should be CCed on patches.
86         L: *Mailing list* that is relevant to this area
87         S: *Status*, one of the following:
88            Supported:   Someone is actually paid to look after this.
89            Maintained:  Someone actually looks after it.
90            Odd Fixes:   It has a maintainer but they don't have time to do
91                         much other than throw the odd patch in. See below..
92            Orphan:      No current maintainer [but maybe you could take the
93                         role as you write your new code].
94            Obsolete:    Old code. Something tagged obsolete generally means
95                         it has been replaced by a better system and you
96                         should be using that.
97         W: *Web-page* with status/info
98         Q: *Patchwork* web based patch tracking system site
99         B: URI for where to file *bugs*. A web-page with detailed bug
100            filing info, a direct bug tracker link, or a mailto: URI.
101         C: URI for *chat* protocol, server and channel where developers
102            usually hang out, for example irc://server/channel.
103         P: Subsystem Profile document for more details submitting
104            patches to the given subsystem. This is either an in-tree file,
105            or a URI. See Documentation/maintainer/maintainer-entry-profile.rst
106            for details.
107         T: *SCM* tree type and location.
108            Type is one of: git, hg, quilt, stgit, topgit
109         F: *Files* and directories wildcard patterns.
110            A trailing slash includes all files and subdirectory files.
111            F:   drivers/net/    all files in and below drivers/net
112            F:   drivers/net/*   all files in drivers/net, but not below
113            F:   */net/*         all files in "any top level directory"/net
114            One pattern per line.  Multiple F: lines acceptable.
115         X: *Excluded* files and directories that are NOT maintained, same
116            rules as F:. Files exclusions are tested before file matches.
117            Can be useful for excluding a specific subdirectory, for instance:
118            F:   net/
119            X:   net/ipv6/
120            matches all files in and below net excluding net/ipv6/
121         N: Files and directories *Regex* patterns.
122            N:   [^a-z]tegra     all files whose path contains tegra
123                                 (not including files like integrator)
124            One pattern per line.  Multiple N: lines acceptable.
125            scripts/get_maintainer.pl has different behavior for files that
126            match F: pattern and matches of N: patterns.  By default,
127            get_maintainer will not look at git log history when an F: pattern
128            match occurs.  When an N: match occurs, git log history is used
129            to also notify the people that have git commit signatures.
130         K: *Content regex* (perl extended) pattern match in a patch or file.
131            For instance:
132            K: of_get_profile
133               matches patches or files that contain "of_get_profile"
134            K: \b(printk|pr_(info|err))\b
135               matches patches or files that contain one or more of the words
136               printk, pr_info or pr_err
137            One regex pattern per line.  Multiple K: lines acceptable.
138
139 Maintainers List
140 ----------------
141
142 .. note:: When reading this list, please look for the most precise areas
143           first. When adding to this list, please keep the entries in
144           alphabetical order.
145
146 3C59X NETWORK DRIVER
147 M:      Steffen Klassert <klassert@kernel.org>
148 L:      netdev@vger.kernel.org
149 S:      Odd Fixes
150 F:      Documentation/networking/device_drivers/ethernet/3com/vortex.rst
151 F:      drivers/net/ethernet/3com/3c59x.c
152
153 3CR990 NETWORK DRIVER
154 M:      David Dillow <dave@thedillows.org>
155 L:      netdev@vger.kernel.org
156 S:      Maintained
157 F:      drivers/net/ethernet/3com/typhoon*
158
159 3WARE SAS/SATA-RAID SCSI DRIVERS (3W-XXXX, 3W-9XXX, 3W-SAS)
160 M:      Adam Radford <aradford@gmail.com>
161 L:      linux-scsi@vger.kernel.org
162 S:      Supported
163 W:      http://www.lsi.com
164 F:      drivers/scsi/3w-*
165
166 53C700 AND 53C700-66 SCSI DRIVER
167 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
168 L:      linux-scsi@vger.kernel.org
169 S:      Maintained
170 F:      drivers/scsi/53c700*
171
172 6LOWPAN GENERIC (BTLE/IEEE 802.15.4)
173 M:      Alexander Aring <alex.aring@gmail.com>
174 M:      Jukka Rissanen <jukka.rissanen@linux.intel.com>
175 L:      linux-bluetooth@vger.kernel.org
176 L:      linux-wpan@vger.kernel.org
177 S:      Maintained
178 F:      Documentation/networking/6lowpan.rst
179 F:      include/net/6lowpan.h
180 F:      net/6lowpan/
181
182 6PACK NETWORK DRIVER FOR AX.25
183 M:      Andreas Koensgen <ajk@comnets.uni-bremen.de>
184 L:      linux-hams@vger.kernel.org
185 S:      Maintained
186 F:      drivers/net/hamradio/6pack.c
187
188 802.11 (including CFG80211/NL80211)
189 M:      Johannes Berg <johannes@sipsolutions.net>
190 L:      linux-wireless@vger.kernel.org
191 S:      Maintained
192 W:      https://wireless.wiki.kernel.org/
193 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
194 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
195 F:      Documentation/driver-api/80211/cfg80211.rst
196 F:      Documentation/networking/regulatory.rst
197 F:      include/linux/ieee80211.h
198 F:      include/net/cfg80211.h
199 F:      include/net/ieee80211_radiotap.h
200 F:      include/net/iw_handler.h
201 F:      include/net/wext.h
202 F:      include/uapi/linux/nl80211.h
203 F:      net/wireless/
204
205 8169 10/100/1000 GIGABIT ETHERNET DRIVER
206 M:      Heiner Kallweit <hkallweit1@gmail.com>
207 M:      nic_swsd@realtek.com
208 L:      netdev@vger.kernel.org
209 S:      Maintained
210 F:      drivers/net/ethernet/realtek/r8169*
211
212 8250/16?50 (AND CLONE UARTS) SERIAL DRIVER
213 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
214 L:      linux-serial@vger.kernel.org
215 S:      Maintained
216 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
217 F:      drivers/tty/serial/8250*
218 F:      include/linux/serial_8250.h
219
220 8390 NETWORK DRIVERS [WD80x3/SMC-ELITE, SMC-ULTRA, NE2000, 3C503, etc.]
221 L:      netdev@vger.kernel.org
222 S:      Orphan / Obsolete
223 F:      drivers/net/ethernet/8390/
224
225 9P FILE SYSTEM
226 M:      Eric Van Hensbergen <ericvh@gmail.com>
227 M:      Latchesar Ionkov <lucho@ionkov.net>
228 M:      Dominique Martinet <asmadeus@codewreck.org>
229 L:      v9fs-developer@lists.sourceforge.net
230 S:      Maintained
231 W:      http://swik.net/v9fs
232 Q:      http://patchwork.kernel.org/project/v9fs-devel/list/
233 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ericvh/v9fs.git
234 T:      git git://github.com/martinetd/linux.git
235 F:      Documentation/filesystems/9p.rst
236 F:      fs/9p/
237 F:      include/net/9p/
238 F:      include/trace/events/9p.h
239 F:      include/uapi/linux/virtio_9p.h
240 F:      net/9p/
241
242 A8293 MEDIA DRIVER
243 M:      Antti Palosaari <crope@iki.fi>
244 L:      linux-media@vger.kernel.org
245 S:      Maintained
246 W:      https://linuxtv.org
247 W:      http://palosaari.fi/linux/
248 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
249 T:      git git://linuxtv.org/anttip/media_tree.git
250 F:      drivers/media/dvb-frontends/a8293*
251
252 AACRAID SCSI RAID DRIVER
253 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
254 L:      linux-scsi@vger.kernel.org
255 S:      Supported
256 W:      http://www.adaptec.com/
257 F:      Documentation/scsi/aacraid.rst
258 F:      drivers/scsi/aacraid/
259
260 ABI/API
261 L:      linux-api@vger.kernel.org
262 F:      include/linux/syscalls.h
263 F:      kernel/sys_ni.c
264 X:      include/uapi/
265 X:      arch/*/include/uapi/
266
267 ABIT UGURU 1,2 HARDWARE MONITOR DRIVER
268 M:      Hans de Goede <hdegoede@redhat.com>
269 L:      linux-hwmon@vger.kernel.org
270 S:      Maintained
271 F:      drivers/hwmon/abituguru.c
272
273 ABIT UGURU 3 HARDWARE MONITOR DRIVER
274 M:      Alistair John Strachan <alistair@devzero.co.uk>
275 L:      linux-hwmon@vger.kernel.org
276 S:      Maintained
277 F:      drivers/hwmon/abituguru3.c
278
279 ACCES 104-DIO-48E GPIO DRIVER
280 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
281 L:      linux-gpio@vger.kernel.org
282 S:      Maintained
283 F:      drivers/gpio/gpio-104-dio-48e.c
284
285 ACCES 104-IDI-48 GPIO DRIVER
286 M:      "William Breathitt Gray" <vilhelm.gray@gmail.com>
287 L:      linux-gpio@vger.kernel.org
288 S:      Maintained
289 F:      drivers/gpio/gpio-104-idi-48.c
290
291 ACCES 104-IDIO-16 GPIO DRIVER
292 M:      "William Breathitt Gray" <vilhelm.gray@gmail.com>
293 L:      linux-gpio@vger.kernel.org
294 S:      Maintained
295 F:      drivers/gpio/gpio-104-idio-16.c
296
297 ACCES 104-QUAD-8 DRIVER
298 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
299 M:      Syed Nayyar Waris <syednwaris@gmail.com>
300 L:      linux-iio@vger.kernel.org
301 S:      Maintained
302 F:      drivers/counter/104-quad-8.c
303
304 ACCES PCI-IDIO-16 GPIO DRIVER
305 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
306 L:      linux-gpio@vger.kernel.org
307 S:      Maintained
308 F:      drivers/gpio/gpio-pci-idio-16.c
309
310 ACCES PCIe-IDIO-24 GPIO DRIVER
311 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
312 L:      linux-gpio@vger.kernel.org
313 S:      Maintained
314 F:      drivers/gpio/gpio-pcie-idio-24.c
315
316 ACENIC DRIVER
317 M:      Jes Sorensen <jes@trained-monkey.org>
318 L:      linux-acenic@sunsite.dk
319 S:      Maintained
320 F:      drivers/net/ethernet/alteon/acenic*
321
322 ACER ASPIRE ONE TEMPERATURE AND FAN DRIVER
323 M:      Peter Kaestle <peter@piie.net>
324 L:      platform-driver-x86@vger.kernel.org
325 S:      Maintained
326 W:      http://piie.net/?section=acerhdf
327 F:      drivers/platform/x86/acerhdf.c
328
329 ACER WMI LAPTOP EXTRAS
330 M:      "Lee, Chun-Yi" <jlee@suse.com>
331 L:      platform-driver-x86@vger.kernel.org
332 S:      Maintained
333 F:      drivers/platform/x86/acer-wmi.c
334
335 ACPI
336 M:      "Rafael J. Wysocki" <rafael@kernel.org>
337 M:      Len Brown <lenb@kernel.org>
338 L:      linux-acpi@vger.kernel.org
339 S:      Supported
340 W:      https://01.org/linux-acpi
341 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
342 B:      https://bugzilla.kernel.org
343 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
344 F:      Documentation/ABI/testing/configfs-acpi
345 F:      Documentation/ABI/testing/sysfs-bus-acpi
346 F:      Documentation/firmware-guide/acpi/
347 F:      drivers/acpi/
348 F:      drivers/pci/*/*acpi*
349 F:      drivers/pci/*acpi*
350 F:      drivers/pnp/pnpacpi/
351 F:      include/acpi/
352 F:      include/linux/acpi.h
353 F:      include/linux/fwnode.h
354 F:      tools/power/acpi/
355
356 ACPI APEI
357 M:      "Rafael J. Wysocki" <rafael@kernel.org>
358 M:      Len Brown <lenb@kernel.org>
359 R:      James Morse <james.morse@arm.com>
360 R:      Tony Luck <tony.luck@intel.com>
361 R:      Borislav Petkov <bp@alien8.de>
362 L:      linux-acpi@vger.kernel.org
363 F:      drivers/acpi/apei/
364
365 ACPI COMPONENT ARCHITECTURE (ACPICA)
366 M:      Robert Moore <robert.moore@intel.com>
367 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
368 L:      linux-acpi@vger.kernel.org
369 L:      devel@acpica.org
370 S:      Supported
371 W:      https://acpica.org/
372 W:      https://github.com/acpica/acpica/
373 Q:      https://patchwork.kernel.org/project/linux-acpi/list/
374 B:      https://bugzilla.kernel.org
375 B:      https://bugs.acpica.org
376 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
377 F:      drivers/acpi/acpica/
378 F:      include/acpi/
379 F:      tools/power/acpi/
380
381 ACPI FAN DRIVER
382 M:      Zhang Rui <rui.zhang@intel.com>
383 L:      linux-acpi@vger.kernel.org
384 S:      Supported
385 W:      https://01.org/linux-acpi
386 B:      https://bugzilla.kernel.org
387 F:      drivers/acpi/fan.c
388
389 ACPI FOR ARM64 (ACPI/arm64)
390 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
391 M:      Hanjun Guo <guohanjun@huawei.com>
392 M:      Sudeep Holla <sudeep.holla@arm.com>
393 L:      linux-acpi@vger.kernel.org
394 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
395 S:      Maintained
396 F:      drivers/acpi/arm64
397
398 ACPI I2C MULTI INSTANTIATE DRIVER
399 M:      Hans de Goede <hdegoede@redhat.com>
400 L:      platform-driver-x86@vger.kernel.org
401 S:      Maintained
402 F:      drivers/platform/x86/i2c-multi-instantiate.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 VIDEO DRIVER
426 M:      Zhang Rui <rui.zhang@intel.com>
427 L:      linux-acpi@vger.kernel.org
428 S:      Supported
429 W:      https://01.org/linux-acpi
430 B:      https://bugzilla.kernel.org
431 F:      drivers/acpi/acpi_video.c
432
433 ACPI VIOT DRIVER
434 M:      Jean-Philippe Brucker <jean-philippe@linaro.org>
435 L:      linux-acpi@vger.kernel.org
436 L:      iommu@lists.linux-foundation.org
437 L:      iommu@lists.linux.dev
438 S:      Maintained
439 F:      drivers/acpi/viot.c
440 F:      include/linux/acpi_viot.h
441
442 ACPI WMI DRIVER
443 L:      platform-driver-x86@vger.kernel.org
444 S:      Orphan
445 F:      drivers/platform/x86/wmi.c
446 F:      include/uapi/linux/wmi.h
447
448 ACRN HYPERVISOR SERVICE MODULE
449 M:      Fei Li <fei1.li@intel.com>
450 L:      acrn-dev@lists.projectacrn.org (subscribers-only)
451 S:      Supported
452 W:      https://projectacrn.org
453 F:      Documentation/virt/acrn/
454 F:      drivers/virt/acrn/
455 F:      include/uapi/linux/acrn.h
456
457 AD1889 ALSA SOUND DRIVER
458 L:      linux-parisc@vger.kernel.org
459 S:      Maintained
460 W:      https://parisc.wiki.kernel.org/index.php/AD1889
461 F:      sound/pci/ad1889.*
462
463 AD5110 ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
464 M:      Mugilraj Dhavachelvan <dmugil2000@gmail.com>
465 L:      linux-iio@vger.kernel.org
466 S:      Supported
467 F:      drivers/iio/potentiometer/ad5110.c
468
469 AD525X ANALOG DEVICES DIGITAL POTENTIOMETERS DRIVER
470 M:      Michael Hennerich <michael.hennerich@analog.com>
471 S:      Supported
472 W:      http://wiki.analog.com/AD5254
473 W:      http://ez.analog.com/community/linux-device-drivers
474 F:      drivers/misc/ad525x_dpot.c
475
476 AD5398 CURRENT REGULATOR DRIVER (AD5398/AD5821)
477 M:      Michael Hennerich <michael.hennerich@analog.com>
478 S:      Supported
479 W:      http://wiki.analog.com/AD5398
480 W:      http://ez.analog.com/community/linux-device-drivers
481 F:      drivers/regulator/ad5398.c
482
483 AD714X CAPACITANCE TOUCH SENSOR DRIVER (AD7142/3/7/8/7A)
484 M:      Michael Hennerich <michael.hennerich@analog.com>
485 S:      Supported
486 W:      http://wiki.analog.com/AD7142
487 W:      http://ez.analog.com/community/linux-device-drivers
488 F:      drivers/input/misc/ad714x.c
489
490 AD7877 TOUCHSCREEN DRIVER
491 M:      Michael Hennerich <michael.hennerich@analog.com>
492 S:      Supported
493 W:      http://wiki.analog.com/AD7877
494 W:      http://ez.analog.com/community/linux-device-drivers
495 F:      drivers/input/touchscreen/ad7877.c
496
497 AD7879 TOUCHSCREEN DRIVER (AD7879/AD7889)
498 M:      Michael Hennerich <michael.hennerich@analog.com>
499 S:      Supported
500 W:      http://wiki.analog.com/AD7879
501 W:      http://ez.analog.com/community/linux-device-drivers
502 F:      drivers/input/touchscreen/ad7879.c
503
504 ADDRESS SPACE LAYOUT RANDOMIZATION (ASLR)
505 M:      Jiri Kosina <jikos@kernel.org>
506 S:      Maintained
507
508 ADF7242 IEEE 802.15.4 RADIO DRIVER
509 M:      Michael Hennerich <michael.hennerich@analog.com>
510 L:      linux-wpan@vger.kernel.org
511 S:      Supported
512 W:      https://wiki.analog.com/ADF7242
513 W:      http://ez.analog.com/community/linux-device-drivers
514 F:      Documentation/devicetree/bindings/net/ieee802154/adf7242.txt
515 F:      drivers/net/ieee802154/adf7242.c
516
517 ADM1025 HARDWARE MONITOR DRIVER
518 M:      Jean Delvare <jdelvare@suse.com>
519 L:      linux-hwmon@vger.kernel.org
520 S:      Maintained
521 F:      Documentation/hwmon/adm1025.rst
522 F:      drivers/hwmon/adm1025.c
523
524 ADM1029 HARDWARE MONITOR DRIVER
525 M:      Corentin Labbe <clabbe.montjoie@gmail.com>
526 L:      linux-hwmon@vger.kernel.org
527 S:      Maintained
528 F:      drivers/hwmon/adm1029.c
529
530 ADM8211 WIRELESS DRIVER
531 L:      linux-wireless@vger.kernel.org
532 S:      Orphan
533 W:      https://wireless.wiki.kernel.org/
534 F:      drivers/net/wireless/admtek/adm8211.*
535
536 ADP1653 FLASH CONTROLLER DRIVER
537 M:      Sakari Ailus <sakari.ailus@iki.fi>
538 L:      linux-media@vger.kernel.org
539 S:      Maintained
540 F:      drivers/media/i2c/adp1653.c
541 F:      include/media/i2c/adp1653.h
542
543 ADP5520 BACKLIGHT DRIVER WITH IO EXPANDER (ADP5520/ADP5501)
544 M:      Michael Hennerich <michael.hennerich@analog.com>
545 S:      Supported
546 W:      http://wiki.analog.com/ADP5520
547 W:      http://ez.analog.com/community/linux-device-drivers
548 F:      drivers/gpio/gpio-adp5520.c
549 F:      drivers/input/keyboard/adp5520-keys.c
550 F:      drivers/leds/leds-adp5520.c
551 F:      drivers/mfd/adp5520.c
552 F:      drivers/video/backlight/adp5520_bl.c
553
554 ADP5588 QWERTY KEYPAD AND IO EXPANDER DRIVER (ADP5588/ADP5587)
555 M:      Michael Hennerich <michael.hennerich@analog.com>
556 S:      Supported
557 W:      http://wiki.analog.com/ADP5588
558 W:      http://ez.analog.com/community/linux-device-drivers
559 F:      drivers/gpio/gpio-adp5588.c
560 F:      drivers/input/keyboard/adp5588-keys.c
561
562 ADP8860 BACKLIGHT DRIVER (ADP8860/ADP8861/ADP8863)
563 M:      Michael Hennerich <michael.hennerich@analog.com>
564 S:      Supported
565 W:      http://wiki.analog.com/ADP8860
566 W:      http://ez.analog.com/community/linux-device-drivers
567 F:      drivers/video/backlight/adp8860_bl.c
568
569 ADT746X FAN DRIVER
570 M:      Colin Leroy <colin@colino.net>
571 S:      Maintained
572 F:      drivers/macintosh/therm_adt746x.c
573
574 ADT7475 HARDWARE MONITOR DRIVER
575 M:      Jean Delvare <jdelvare@suse.com>
576 L:      linux-hwmon@vger.kernel.org
577 S:      Maintained
578 F:      Documentation/hwmon/adt7475.rst
579 F:      drivers/hwmon/adt7475.c
580
581 ADVANSYS SCSI DRIVER
582 M:      Matthew Wilcox <willy@infradead.org>
583 M:      Hannes Reinecke <hare@suse.com>
584 L:      linux-scsi@vger.kernel.org
585 S:      Maintained
586 F:      Documentation/scsi/advansys.rst
587 F:      drivers/scsi/advansys.c
588
589 ADVANTECH SWBTN DRIVER
590 M:      Andrea Ho <Andrea.Ho@advantech.com.tw>
591 L:      platform-driver-x86@vger.kernel.org
592 S:      Maintained
593 F:      drivers/platform/x86/adv_swbutton.c
594
595 ADXL34X THREE-AXIS DIGITAL ACCELEROMETER DRIVER (ADXL345/ADXL346)
596 M:      Michael Hennerich <michael.hennerich@analog.com>
597 S:      Supported
598 W:      http://wiki.analog.com/ADXL345
599 W:      http://ez.analog.com/community/linux-device-drivers
600 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl345.yaml
601 F:      drivers/input/misc/adxl34x.c
602
603 ADXL372 THREE-AXIS DIGITAL ACCELEROMETER DRIVER
604 M:      Michael Hennerich <michael.hennerich@analog.com>
605 S:      Supported
606 W:      http://ez.analog.com/community/linux-device-drivers
607 F:      Documentation/devicetree/bindings/iio/accel/adi,adxl372.yaml
608 F:      drivers/iio/accel/adxl372.c
609 F:      drivers/iio/accel/adxl372_i2c.c
610 F:      drivers/iio/accel/adxl372_spi.c
611
612 AF9013 MEDIA DRIVER
613 M:      Antti Palosaari <crope@iki.fi>
614 L:      linux-media@vger.kernel.org
615 S:      Maintained
616 W:      https://linuxtv.org
617 W:      http://palosaari.fi/linux/
618 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
619 T:      git git://linuxtv.org/anttip/media_tree.git
620 F:      drivers/media/dvb-frontends/af9013*
621
622 AF9033 MEDIA DRIVER
623 M:      Antti Palosaari <crope@iki.fi>
624 L:      linux-media@vger.kernel.org
625 S:      Maintained
626 W:      https://linuxtv.org
627 W:      http://palosaari.fi/linux/
628 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
629 T:      git git://linuxtv.org/anttip/media_tree.git
630 F:      drivers/media/dvb-frontends/af9033*
631
632 AFFS FILE SYSTEM
633 M:      David Sterba <dsterba@suse.com>
634 L:      linux-fsdevel@vger.kernel.org
635 S:      Odd Fixes
636 F:      Documentation/filesystems/affs.rst
637 F:      fs/affs/
638
639 AFS FILESYSTEM
640 M:      David Howells <dhowells@redhat.com>
641 M:      Marc Dionne <marc.dionne@auristor.com>
642 L:      linux-afs@lists.infradead.org
643 S:      Supported
644 W:      https://www.infradead.org/~dhowells/kafs/
645 F:      Documentation/filesystems/afs.rst
646 F:      fs/afs/
647 F:      include/trace/events/afs.h
648
649 AGPGART DRIVER
650 M:      David Airlie <airlied@linux.ie>
651 S:      Maintained
652 T:      git git://anongit.freedesktop.org/drm/drm
653 F:      drivers/char/agp/
654 F:      include/linux/agp*
655 F:      include/uapi/linux/agp*
656
657 AHA152X SCSI DRIVER
658 M:      "Juergen E. Fischer" <fischer@norbit.de>
659 L:      linux-scsi@vger.kernel.org
660 S:      Maintained
661 F:      drivers/scsi/aha152x*
662 F:      drivers/scsi/pcmcia/aha152x*
663
664 AIC7XXX / AIC79XX SCSI DRIVER
665 M:      Hannes Reinecke <hare@suse.com>
666 L:      linux-scsi@vger.kernel.org
667 S:      Maintained
668 F:      drivers/scsi/aic7xxx/
669
670 AIMSLAB FM RADIO RECEIVER DRIVER
671 M:      Hans Verkuil <hverkuil@xs4all.nl>
672 L:      linux-media@vger.kernel.org
673 S:      Maintained
674 W:      https://linuxtv.org
675 T:      git git://linuxtv.org/media_tree.git
676 F:      drivers/media/radio/radio-aimslab*
677
678 AIO
679 M:      Benjamin LaHaise <bcrl@kvack.org>
680 L:      linux-aio@kvack.org
681 S:      Supported
682 F:      fs/aio.c
683 F:      include/linux/*aio*.h
684
685 AIRSPY MEDIA DRIVER
686 M:      Antti Palosaari <crope@iki.fi>
687 L:      linux-media@vger.kernel.org
688 S:      Maintained
689 W:      https://linuxtv.org
690 W:      http://palosaari.fi/linux/
691 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
692 T:      git git://linuxtv.org/anttip/media_tree.git
693 F:      drivers/media/usb/airspy/
694
695 ALACRITECH GIGABIT ETHERNET DRIVER
696 M:      Lino Sanfilippo <LinoSanfilippo@gmx.de>
697 S:      Maintained
698 F:      drivers/net/ethernet/alacritech/*
699
700 ALCATEL SPEEDTOUCH USB DRIVER
701 M:      Duncan Sands <duncan.sands@free.fr>
702 L:      linux-usb@vger.kernel.org
703 S:      Maintained
704 W:      http://www.linux-usb.org/SpeedTouch/
705 F:      drivers/usb/atm/speedtch.c
706 F:      drivers/usb/atm/usbatm.c
707
708 ALCHEMY AU1XX0 MMC DRIVER
709 M:      Manuel Lauss <manuel.lauss@gmail.com>
710 S:      Maintained
711 F:      drivers/mmc/host/au1xmmc.c
712
713 ALI1563 I2C DRIVER
714 M:      Rudolf Marek <r.marek@assembler.cz>
715 L:      linux-i2c@vger.kernel.org
716 S:      Maintained
717 F:      Documentation/i2c/busses/i2c-ali1563.rst
718 F:      drivers/i2c/busses/i2c-ali1563.c
719
720 ALIENWARE WMI DRIVER
721 L:      Dell.Client.Kernel@dell.com
722 S:      Maintained
723 F:      drivers/platform/x86/dell/alienware-wmi.c
724
725 ALL SENSORS DLH SERIES PRESSURE SENSORS DRIVER
726 M:      Tomislav Denis <tomislav.denis@avl.com>
727 L:      linux-iio@vger.kernel.org
728 S:      Maintained
729 W:      http://www.allsensors.com/
730 F:      Documentation/devicetree/bindings/iio/pressure/asc,dlhl60d.yaml
731 F:      drivers/iio/pressure/dlhl60d.c
732
733 ALLEGRO DVT VIDEO IP CORE DRIVER
734 M:      Michael Tretter <m.tretter@pengutronix.de>
735 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
736 L:      linux-media@vger.kernel.org
737 S:      Maintained
738 F:      Documentation/devicetree/bindings/media/allegro,al5e.yaml
739 F:      drivers/media/platform/allegro-dvt/
740
741 ALLWINNER A10 CSI DRIVER
742 M:      Maxime Ripard <mripard@kernel.org>
743 L:      linux-media@vger.kernel.org
744 S:      Maintained
745 T:      git git://linuxtv.org/media_tree.git
746 F:      Documentation/devicetree/bindings/media/allwinner,sun4i-a10-csi.yaml
747 F:      drivers/media/platform/sunxi/sun4i-csi/
748
749 ALLWINNER CPUFREQ DRIVER
750 M:      Yangtao Li <tiny.windzz@gmail.com>
751 L:      linux-pm@vger.kernel.org
752 S:      Maintained
753 F:      Documentation/devicetree/bindings/opp/allwinner,sun50i-h6-operating-points.yaml
754 F:      drivers/cpufreq/sun50i-cpufreq-nvmem.c
755
756 ALLWINNER CRYPTO DRIVERS
757 M:      Corentin Labbe <clabbe.montjoie@gmail.com>
758 L:      linux-crypto@vger.kernel.org
759 S:      Maintained
760 F:      drivers/crypto/allwinner/
761
762 ALLWINNER HARDWARE SPINLOCK SUPPORT
763 M:      Wilken Gottwalt <wilken.gottwalt@posteo.net>
764 S:      Maintained
765 F:      Documentation/devicetree/bindings/hwlock/allwinner,sun6i-hwspinlock.yaml
766 F:      drivers/hwspinlock/sun6i_hwspinlock.c
767
768 ALLWINNER THERMAL DRIVER
769 M:      Vasily Khoruzhick <anarsoul@gmail.com>
770 M:      Yangtao Li <tiny.windzz@gmail.com>
771 L:      linux-pm@vger.kernel.org
772 S:      Maintained
773 F:      Documentation/devicetree/bindings/thermal/allwinner,sun8i-a83t-ths.yaml
774 F:      drivers/thermal/sun8i_thermal.c
775
776 ALLWINNER VPU DRIVER
777 M:      Maxime Ripard <mripard@kernel.org>
778 M:      Paul Kocialkowski <paul.kocialkowski@bootlin.com>
779 L:      linux-media@vger.kernel.org
780 S:      Maintained
781 F:      drivers/staging/media/sunxi/cedrus/
782
783 ALPHA PORT
784 M:      Richard Henderson <rth@twiddle.net>
785 M:      Ivan Kokshaysky <ink@jurassic.park.msu.ru>
786 M:      Matt Turner <mattst88@gmail.com>
787 L:      linux-alpha@vger.kernel.org
788 S:      Odd Fixes
789 F:      arch/alpha/
790
791 ALPS PS/2 TOUCHPAD DRIVER
792 R:      Pali Rohár <pali@kernel.org>
793 F:      drivers/input/mouse/alps.*
794
795 ALTERA I2C CONTROLLER DRIVER
796 M:      Thor Thayer <thor.thayer@linux.intel.com>
797 S:      Maintained
798 F:      Documentation/devicetree/bindings/i2c/i2c-altera.txt
799 F:      drivers/i2c/busses/i2c-altera.c
800
801 ALTERA MAILBOX DRIVER
802 M:      Joyce Ooi <joyce.ooi@intel.com>
803 S:      Maintained
804 F:      drivers/mailbox/mailbox-altera.c
805
806 ALTERA MSGDMA IP CORE DRIVER
807 M:      Olivier Dautricourt <olivier.dautricourt@orolia.com>
808 R:      Stefan Roese <sr@denx.de>
809 L:      dmaengine@vger.kernel.org
810 S:      Odd Fixes
811 F:      Documentation/devicetree/bindings/dma/altr,msgdma.yaml
812 F:      drivers/dma/altera-msgdma.c
813
814 ALTERA PIO DRIVER
815 M:      Mun Yew Tham <mun.yew.tham@intel.com>
816 L:      linux-gpio@vger.kernel.org
817 S:      Maintained
818 F:      drivers/gpio/gpio-altera.c
819
820 ALTERA SYSTEM MANAGER DRIVER
821 M:      Thor Thayer <thor.thayer@linux.intel.com>
822 S:      Maintained
823 F:      drivers/mfd/altera-sysmgr.c
824 F:      include/linux/mfd/altera-sysmgr.h
825
826 ALTERA SYSTEM RESOURCE DRIVER FOR ARRIA10 DEVKIT
827 M:      Thor Thayer <thor.thayer@linux.intel.com>
828 S:      Maintained
829 F:      drivers/gpio/gpio-altera-a10sr.c
830 F:      drivers/mfd/altera-a10sr.c
831 F:      drivers/reset/reset-a10sr.c
832 F:      include/dt-bindings/reset/altr,rst-mgr-a10sr.h
833 F:      include/linux/mfd/altera-a10sr.h
834
835 ALTERA TRIPLE SPEED ETHERNET DRIVER
836 M:      Joyce Ooi <joyce.ooi@intel.com>
837 L:      netdev@vger.kernel.org
838 S:      Maintained
839 F:      drivers/net/ethernet/altera/
840
841 ALTERA UART/JTAG UART SERIAL DRIVERS
842 M:      Tobias Klauser <tklauser@distanz.ch>
843 L:      linux-serial@vger.kernel.org
844 S:      Maintained
845 F:      drivers/tty/serial/altera_jtaguart.c
846 F:      drivers/tty/serial/altera_uart.c
847 F:      include/linux/altera_jtaguart.h
848 F:      include/linux/altera_uart.h
849
850 AMAZON ANNAPURNA LABS FIC DRIVER
851 M:      Talel Shenhar <talel@amazon.com>
852 S:      Maintained
853 F:      Documentation/devicetree/bindings/interrupt-controller/amazon,al-fic.txt
854 F:      drivers/irqchip/irq-al-fic.c
855
856 AMAZON ANNAPURNA LABS MEMORY CONTROLLER EDAC
857 M:      Talel Shenhar <talel@amazon.com>
858 M:      Talel Shenhar <talelshenhar@gmail.com>
859 S:      Maintained
860 F:      Documentation/devicetree/bindings/edac/amazon,al-mc-edac.yaml
861 F:      drivers/edac/al_mc_edac.c
862
863 AMAZON ANNAPURNA LABS THERMAL MMIO DRIVER
864 M:      Talel Shenhar <talel@amazon.com>
865 S:      Maintained
866 F:      Documentation/devicetree/bindings/thermal/amazon,al-thermal.txt
867 F:      drivers/thermal/thermal_mmio.c
868
869 AMAZON ETHERNET DRIVERS
870 M:      Netanel Belgazal <netanel@amazon.com>
871 M:      Arthur Kiyanovski <akiyano@amazon.com>
872 R:      Guy Tzalik <gtzalik@amazon.com>
873 R:      Saeed Bishara <saeedb@amazon.com>
874 L:      netdev@vger.kernel.org
875 S:      Supported
876 F:      Documentation/networking/device_drivers/ethernet/amazon/ena.rst
877 F:      drivers/net/ethernet/amazon/
878
879 AMAZON RDMA EFA DRIVER
880 M:      Gal Pressman <galpress@amazon.com>
881 R:      Yossi Leybovich <sleybo@amazon.com>
882 L:      linux-rdma@vger.kernel.org
883 S:      Supported
884 Q:      https://patchwork.kernel.org/project/linux-rdma/list/
885 F:      drivers/infiniband/hw/efa/
886 F:      include/uapi/rdma/efa-abi.h
887
888 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER
889 M:      Tom Lendacky <thomas.lendacky@amd.com>
890 M:      John Allen <john.allen@amd.com>
891 L:      linux-crypto@vger.kernel.org
892 S:      Supported
893 F:      drivers/crypto/ccp/
894 F:      include/linux/ccp.h
895
896 AMD CRYPTOGRAPHIC COPROCESSOR (CCP) DRIVER - SEV SUPPORT
897 M:      Brijesh Singh <brijesh.singh@amd.com>
898 M:      Tom Lendacky <thomas.lendacky@amd.com>
899 L:      linux-crypto@vger.kernel.org
900 S:      Supported
901 F:      drivers/crypto/ccp/sev*
902 F:      include/uapi/linux/psp-sev.h
903
904 AMD DISPLAY CORE
905 M:      Harry Wentland <harry.wentland@amd.com>
906 M:      Leo Li <sunpeng.li@amd.com>
907 L:      amd-gfx@lists.freedesktop.org
908 S:      Supported
909 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
910 F:      drivers/gpu/drm/amd/display/
911
912 AMD FAM15H PROCESSOR POWER MONITORING DRIVER
913 M:      Huang Rui <ray.huang@amd.com>
914 L:      linux-hwmon@vger.kernel.org
915 S:      Supported
916 F:      Documentation/hwmon/fam15h_power.rst
917 F:      drivers/hwmon/fam15h_power.c
918
919 AMD FCH GPIO DRIVER
920 M:      Enrico Weigelt, metux IT consult <info@metux.net>
921 L:      linux-gpio@vger.kernel.org
922 S:      Maintained
923 F:      drivers/gpio/gpio-amd-fch.c
924 F:      include/linux/platform_data/gpio/gpio-amd-fch.h
925
926 AMD GEODE CS5536 USB DEVICE CONTROLLER DRIVER
927 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
928 S:      Orphan
929 F:      drivers/usb/gadget/udc/amd5536udc.*
930
931 AMD GEODE PROCESSOR/CHIPSET SUPPORT
932 M:      Andres Salomon <dilinger@queued.net>
933 L:      linux-geode@lists.infradead.org (moderated for non-subscribers)
934 S:      Supported
935 W:      http://www.amd.com/us-en/ConnectivitySolutions/TechnicalResources/0,,50_2334_2452_11363,00.html
936 F:      arch/x86/include/asm/geode.h
937 F:      drivers/char/hw_random/geode-rng.c
938 F:      drivers/crypto/geode*
939 F:      drivers/video/fbdev/geode/
940
941 AMD IOMMU (AMD-VI)
942 M:      Joerg Roedel <joro@8bytes.org>
943 R:      Suravee Suthikulpanit <suravee.suthikulpanit@amd.com>
944 L:      iommu@lists.linux-foundation.org
945 L:      iommu@lists.linux.dev
946 S:      Maintained
947 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
948 F:      drivers/iommu/amd/
949 F:      include/linux/amd-iommu.h
950
951 AMD KFD
952 M:      Felix Kuehling <Felix.Kuehling@amd.com>
953 L:      amd-gfx@lists.freedesktop.org
954 S:      Supported
955 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
956 F:      drivers/gpu/drm/amd/amdgpu/amdgpu_amdkfd*.[ch]
957 F:      drivers/gpu/drm/amd/amdkfd/
958 F:      drivers/gpu/drm/amd/include/cik_structs.h
959 F:      drivers/gpu/drm/amd/include/kgd_kfd_interface.h
960 F:      drivers/gpu/drm/amd/include/v9_structs.h
961 F:      drivers/gpu/drm/amd/include/vi_structs.h
962 F:      include/uapi/linux/kfd_ioctl.h
963
964 AMD SPI DRIVER
965 M:      Sanjay R Mehta <sanju.mehta@amd.com>
966 S:      Maintained
967 F:      drivers/spi/spi-amd.c
968
969 AMD MP2 I2C DRIVER
970 M:      Elie Morisse <syniurge@gmail.com>
971 M:      Nehal Shah <nehal-bakulchandra.shah@amd.com>
972 M:      Shyam Sundar S K <shyam-sundar.s-k@amd.com>
973 L:      linux-i2c@vger.kernel.org
974 S:      Maintained
975 F:      drivers/i2c/busses/i2c-amd-mp2*
976
977 AMD PMC DRIVER
978 M:      Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
979 L:      platform-driver-x86@vger.kernel.org
980 S:      Maintained
981 F:      drivers/platform/x86/amd-pmc.*
982
983 AMD POWERPLAY AND SWSMU
984 M:      Evan Quan <evan.quan@amd.com>
985 L:      amd-gfx@lists.freedesktop.org
986 S:      Supported
987 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
988 F:      drivers/gpu/drm/amd/pm/
989
990 AMD PTDMA DRIVER
991 M:      Sanjay R Mehta <sanju.mehta@amd.com>
992 L:      dmaengine@vger.kernel.org
993 S:      Maintained
994 F:      drivers/dma/ptdma/
995
996 AMD SEATTLE DEVICE TREE SUPPORT
997 M:      Brijesh Singh <brijeshkumar.singh@amd.com>
998 M:      Suravee Suthikulpanit <suravee.suthikulpanit@amd.com>
999 M:      Tom Lendacky <thomas.lendacky@amd.com>
1000 S:      Supported
1001 F:      arch/arm64/boot/dts/amd/
1002
1003 AMD XGBE DRIVER
1004 M:      Tom Lendacky <thomas.lendacky@amd.com>
1005 L:      netdev@vger.kernel.org
1006 S:      Supported
1007 F:      arch/arm64/boot/dts/amd/amd-seattle-xgbe*.dtsi
1008 F:      drivers/net/ethernet/amd/xgbe/
1009
1010 AMD SENSOR FUSION HUB DRIVER
1011 M:      Nehal Shah <nehal-bakulchandra.shah@amd.com>
1012 M:      Basavaraj Natikar <basavaraj.natikar@amd.com>
1013 L:      linux-input@vger.kernel.org
1014 S:      Maintained
1015 F:      Documentation/hid/amd-sfh*
1016 F:      drivers/hid/amd-sfh-hid/
1017
1018 AMS AS73211 DRIVER
1019 M:      Christian Eggers <ceggers@arri.de>
1020 L:      linux-iio@vger.kernel.org
1021 S:      Maintained
1022 F:      Documentation/devicetree/bindings/iio/light/ams,as73211.yaml
1023 F:      drivers/iio/light/as73211.c
1024
1025 ANALOG DEVICES INC AD7192 DRIVER
1026 M:      Alexandru Tachici <alexandru.tachici@analog.com>
1027 L:      linux-iio@vger.kernel.org
1028 S:      Supported
1029 W:      http://ez.analog.com/community/linux-device-drivers
1030 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7192.yaml
1031 F:      drivers/iio/adc/ad7192.c
1032
1033 ANALOG DEVICES INC AD7292 DRIVER
1034 M:      Marcelo Schmitt <marcelo.schmitt1@gmail.com>
1035 L:      linux-iio@vger.kernel.org
1036 S:      Supported
1037 W:      http://ez.analog.com/community/linux-device-drivers
1038 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7292.yaml
1039 F:      drivers/iio/adc/ad7292.c
1040
1041 ANALOG DEVICES INC AD7768-1 DRIVER
1042 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1043 L:      linux-iio@vger.kernel.org
1044 S:      Supported
1045 W:      http://ez.analog.com/community/linux-device-drivers
1046 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7768-1.yaml
1047 F:      drivers/iio/adc/ad7768-1.c
1048
1049 ANALOG DEVICES INC AD7780 DRIVER
1050 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1051 M:      Renato Lui Geh <renatogeh@gmail.com>
1052 L:      linux-iio@vger.kernel.org
1053 S:      Supported
1054 W:      http://ez.analog.com/community/linux-device-drivers
1055 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7780.yaml
1056 F:      drivers/iio/adc/ad7780.c
1057
1058 ANALOG DEVICES INC AD9389B DRIVER
1059 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1060 L:      linux-media@vger.kernel.org
1061 S:      Maintained
1062 F:      drivers/media/i2c/ad9389b*
1063
1064 ANALOG DEVICES INC ADGS1408 DRIVER
1065 M:      Mircea Caprioru <mircea.caprioru@analog.com>
1066 S:      Supported
1067 F:      Documentation/devicetree/bindings/mux/adi,adgs1408.txt
1068 F:      drivers/mux/adgs1408.c
1069
1070 ANALOG DEVICES INC ADIN DRIVER
1071 M:      Michael Hennerich <michael.hennerich@analog.com>
1072 L:      netdev@vger.kernel.org
1073 S:      Supported
1074 W:      http://ez.analog.com/community/linux-device-drivers
1075 F:      Documentation/devicetree/bindings/net/adi,adin.yaml
1076 F:      drivers/net/phy/adin.c
1077
1078 ANALOG DEVICES INC ADIS DRIVER LIBRARY
1079 M:      Nuno Sa <nuno.sa@analog.com>
1080 L:      linux-iio@vger.kernel.org
1081 S:      Supported
1082 F:      drivers/iio/imu/adis.c
1083 F:      include/linux/iio/imu/adis.h
1084
1085 ANALOG DEVICES INC ADIS16460 DRIVER
1086 M:      Dragos Bogdan <dragos.bogdan@analog.com>
1087 L:      linux-iio@vger.kernel.org
1088 S:      Supported
1089 W:      http://ez.analog.com/community/linux-device-drivers
1090 F:      Documentation/devicetree/bindings/iio/imu/adi,adis16460.yaml
1091 F:      drivers/iio/imu/adis16460.c
1092
1093 ANALOG DEVICES INC ADIS16475 DRIVER
1094 M:      Nuno Sa <nuno.sa@analog.com>
1095 L:      linux-iio@vger.kernel.org
1096 W:      http://ez.analog.com/community/linux-device-drivers
1097 S:      Supported
1098 F:      drivers/iio/imu/adis16475.c
1099 F:      Documentation/devicetree/bindings/iio/imu/adi,adis16475.yaml
1100
1101 ANALOG DEVICES INC ADM1177 DRIVER
1102 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1103 L:      linux-hwmon@vger.kernel.org
1104 S:      Supported
1105 W:      http://ez.analog.com/community/linux-device-drivers
1106 F:      Documentation/devicetree/bindings/hwmon/adi,adm1177.yaml
1107 F:      drivers/hwmon/adm1177.c
1108
1109 ANALOG DEVICES INC ADP5061 DRIVER
1110 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1111 L:      linux-pm@vger.kernel.org
1112 S:      Supported
1113 W:      http://ez.analog.com/community/linux-device-drivers
1114 F:      drivers/power/supply/adp5061.c
1115
1116 ANALOG DEVICES INC ADV7180 DRIVER
1117 M:      Lars-Peter Clausen <lars@metafoo.de>
1118 L:      linux-media@vger.kernel.org
1119 S:      Supported
1120 W:      http://ez.analog.com/community/linux-device-drivers
1121 F:      drivers/media/i2c/adv7180.c
1122 F:      Documentation/devicetree/bindings/media/i2c/adv7180.yaml
1123
1124 ANALOG DEVICES INC ADV748X DRIVER
1125 M:      Kieran Bingham <kieran.bingham@ideasonboard.com>
1126 L:      linux-media@vger.kernel.org
1127 S:      Maintained
1128 F:      drivers/media/i2c/adv748x/*
1129
1130 ANALOG DEVICES INC ADV7511 DRIVER
1131 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1132 L:      linux-media@vger.kernel.org
1133 S:      Maintained
1134 F:      drivers/media/i2c/adv7511*
1135
1136 ANALOG DEVICES INC ADV7604 DRIVER
1137 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1138 L:      linux-media@vger.kernel.org
1139 S:      Maintained
1140 F:      drivers/media/i2c/adv7604*
1141 F:      Documentation/devicetree/bindings/media/i2c/adv7604.yaml
1142
1143 ANALOG DEVICES INC ADV7842 DRIVER
1144 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
1145 L:      linux-media@vger.kernel.org
1146 S:      Maintained
1147 F:      drivers/media/i2c/adv7842*
1148
1149 ANALOG DEVICES INC ADXRS290 DRIVER
1150 M:      Nishant Malpani <nish.malpani25@gmail.com>
1151 L:      linux-iio@vger.kernel.org
1152 S:      Supported
1153 F:      drivers/iio/gyro/adxrs290.c
1154 F:      Documentation/devicetree/bindings/iio/gyroscope/adi,adxrs290.yaml
1155
1156 ANALOG DEVICES INC ASOC CODEC DRIVERS
1157 M:      Lars-Peter Clausen <lars@metafoo.de>
1158 M:      Nuno Sá <nuno.sa@analog.com>
1159 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1160 S:      Supported
1161 W:      http://wiki.analog.com/
1162 W:      http://ez.analog.com/community/linux-device-drivers
1163 F:      sound/soc/codecs/ad1*
1164 F:      sound/soc/codecs/ad7*
1165 F:      sound/soc/codecs/adau*
1166 F:      sound/soc/codecs/adav*
1167 F:      sound/soc/codecs/sigmadsp.*
1168 F:      sound/soc/codecs/ssm*
1169
1170 ANALOG DEVICES INC DMA DRIVERS
1171 M:      Lars-Peter Clausen <lars@metafoo.de>
1172 S:      Supported
1173 W:      http://ez.analog.com/community/linux-device-drivers
1174 F:      drivers/dma/dma-axi-dmac.c
1175
1176 ANALOG DEVICES INC IIO DRIVERS
1177 M:      Lars-Peter Clausen <lars@metafoo.de>
1178 M:      Michael Hennerich <Michael.Hennerich@analog.com>
1179 S:      Supported
1180 W:      http://wiki.analog.com/
1181 W:      http://ez.analog.com/community/linux-device-drivers
1182 F:      Documentation/ABI/testing/sysfs-bus-iio-frequency-ad9523
1183 F:      Documentation/ABI/testing/sysfs-bus-iio-frequency-adf4350
1184 F:      Documentation/devicetree/bindings/iio/*/adi,*
1185 F:      Documentation/devicetree/bindings/iio/dac/adi,ad5758.yaml
1186 F:      drivers/iio/*/ad*
1187 F:      drivers/iio/adc/ltc249*
1188 F:      drivers/iio/amplifiers/hmc425a.c
1189 F:      drivers/staging/iio/*/ad*
1190 X:      drivers/iio/*/adjd*
1191
1192 ANALOGBITS PLL LIBRARIES
1193 M:      Paul Walmsley <paul.walmsley@sifive.com>
1194 S:      Supported
1195 F:      drivers/clk/analogbits/*
1196 F:      include/linux/clk/analogbits*
1197
1198 ANDES ARCHITECTURE
1199 M:      Nick Hu <nickhu@andestech.com>
1200 M:      Greentime Hu <green.hu@gmail.com>
1201 M:      Vincent Chen <deanbo422@gmail.com>
1202 S:      Supported
1203 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/greentime/linux.git
1204 F:      Documentation/devicetree/bindings/interrupt-controller/andestech,ativic32.txt
1205 F:      Documentation/devicetree/bindings/nds32/
1206 F:      arch/nds32/
1207 N:      nds32
1208 K:      nds32
1209
1210 ANDROID CONFIG FRAGMENTS
1211 M:      Rob Herring <robh@kernel.org>
1212 S:      Supported
1213 F:      kernel/configs/android*
1214
1215 ANDROID DRIVERS
1216 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
1217 M:      Arve Hjønnevåg <arve@android.com>
1218 M:      Todd Kjos <tkjos@android.com>
1219 M:      Martijn Coenen <maco@android.com>
1220 M:      Joel Fernandes <joel@joelfernandes.org>
1221 M:      Christian Brauner <christian@brauner.io>
1222 M:      Hridya Valsaraju <hridya@google.com>
1223 M:      Suren Baghdasaryan <surenb@google.com>
1224 L:      linux-kernel@vger.kernel.org
1225 S:      Supported
1226 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
1227 F:      drivers/android/
1228 F:      drivers/staging/android/
1229
1230 ANDROID GOLDFISH PIC DRIVER
1231 M:      Miodrag Dinic <miodrag.dinic@mips.com>
1232 S:      Supported
1233 F:      Documentation/devicetree/bindings/interrupt-controller/google,goldfish-pic.txt
1234 F:      drivers/irqchip/irq-goldfish-pic.c
1235
1236 ANDROID GOLDFISH RTC DRIVER
1237 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
1238 S:      Supported
1239 F:      Documentation/devicetree/bindings/rtc/google,goldfish-rtc.txt
1240 F:      drivers/rtc/rtc-goldfish.c
1241
1242 AOA (Apple Onboard Audio) ALSA DRIVER
1243 M:      Johannes Berg <johannes@sipsolutions.net>
1244 L:      linuxppc-dev@lists.ozlabs.org
1245 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1246 S:      Maintained
1247 F:      sound/aoa/
1248
1249 APEX EMBEDDED SYSTEMS STX104 IIO DRIVER
1250 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
1251 L:      linux-iio@vger.kernel.org
1252 S:      Maintained
1253 F:      drivers/iio/adc/stx104.c
1254
1255 APM DRIVER
1256 M:      Jiri Kosina <jikos@kernel.org>
1257 S:      Odd fixes
1258 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/apm.git
1259 F:      arch/x86/kernel/apm_32.c
1260 F:      drivers/char/apm-emulation.c
1261 F:      include/linux/apm_bios.h
1262 F:      include/uapi/linux/apm_bios.h
1263
1264 APPARMOR SECURITY MODULE
1265 M:      John Johansen <john.johansen@canonical.com>
1266 L:      apparmor@lists.ubuntu.com (subscribers-only, general discussion)
1267 S:      Supported
1268 W:      wiki.apparmor.net
1269 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jj/linux-apparmor
1270 F:      Documentation/admin-guide/LSM/apparmor.rst
1271 F:      security/apparmor/
1272
1273 APPLE BCM5974 MULTITOUCH DRIVER
1274 M:      Henrik Rydberg <rydberg@bitmath.org>
1275 L:      linux-input@vger.kernel.org
1276 S:      Odd fixes
1277 F:      drivers/input/mouse/bcm5974.c
1278
1279 APPLE DART IOMMU DRIVER
1280 M:      Sven Peter <sven@svenpeter.dev>
1281 R:      Alyssa Rosenzweig <alyssa@rosenzweig.io>
1282 L:      iommu@lists.linux-foundation.org
1283 S:      Maintained
1284 F:      Documentation/devicetree/bindings/iommu/apple,dart.yaml
1285 F:      drivers/iommu/apple-dart.c
1286
1287 APPLE SMC DRIVER
1288 M:      Henrik Rydberg <rydberg@bitmath.org>
1289 L:      linux-hwmon@vger.kernel.org
1290 S:      Odd fixes
1291 F:      drivers/hwmon/applesmc.c
1292
1293 APPLETALK NETWORK LAYER
1294 L:      netdev@vger.kernel.org
1295 S:      Odd fixes
1296 F:      drivers/net/appletalk/
1297 F:      include/linux/atalk.h
1298 F:      include/uapi/linux/atalk.h
1299 F:      net/appletalk/
1300
1301 APPLIED MICRO (APM) X-GENE DEVICE TREE SUPPORT
1302 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1303 S:      Supported
1304 F:      arch/arm64/boot/dts/apm/
1305
1306 APPLIED MICRO (APM) X-GENE SOC EDAC
1307 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1308 S:      Supported
1309 F:      Documentation/devicetree/bindings/edac/apm-xgene-edac.txt
1310 F:      drivers/edac/xgene_edac.c
1311
1312 APPLIED MICRO (APM) X-GENE SOC ETHERNET (V2) DRIVER
1313 M:      Iyappan Subramanian <iyappan@os.amperecomputing.com>
1314 M:      Keyur Chudgar <keyur@os.amperecomputing.com>
1315 S:      Supported
1316 F:      drivers/net/ethernet/apm/xgene-v2/
1317
1318 APPLIED MICRO (APM) X-GENE SOC ETHERNET DRIVER
1319 M:      Iyappan Subramanian <iyappan@os.amperecomputing.com>
1320 M:      Keyur Chudgar <keyur@os.amperecomputing.com>
1321 M:      Quan Nguyen <quan@os.amperecomputing.com>
1322 S:      Supported
1323 F:      Documentation/devicetree/bindings/net/apm-xgene-enet.txt
1324 F:      Documentation/devicetree/bindings/net/apm-xgene-mdio.txt
1325 F:      drivers/net/ethernet/apm/xgene/
1326 F:      drivers/net/mdio/mdio-xgene.c
1327
1328 APPLIED MICRO (APM) X-GENE SOC PMU
1329 M:      Khuong Dinh <khuong@os.amperecomputing.com>
1330 S:      Supported
1331 F:      Documentation/admin-guide/perf/xgene-pmu.rst
1332 F:      Documentation/devicetree/bindings/perf/apm-xgene-pmu.txt
1333 F:      drivers/perf/xgene_pmu.c
1334
1335 APTINA CAMERA SENSOR PLL
1336 M:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
1337 L:      linux-media@vger.kernel.org
1338 S:      Maintained
1339 F:      drivers/media/i2c/aptina-pll.*
1340
1341 AQUACOMPUTER D5 NEXT PUMP SENSOR DRIVER
1342 M:      Aleksa Savic <savicaleksa83@gmail.com>
1343 L:      linux-hwmon@vger.kernel.org
1344 S:      Maintained
1345 F:      Documentation/hwmon/aquacomputer_d5next.rst
1346 F:      drivers/hwmon/aquacomputer_d5next.c
1347
1348 AQUANTIA ETHERNET DRIVER (atlantic)
1349 M:      Igor Russkikh <irusskikh@marvell.com>
1350 L:      netdev@vger.kernel.org
1351 S:      Supported
1352 W:      https://www.marvell.com/
1353 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
1354 F:      Documentation/networking/device_drivers/ethernet/aquantia/atlantic.rst
1355 F:      drivers/net/ethernet/aquantia/atlantic/
1356
1357 AQUANTIA ETHERNET DRIVER PTP SUBSYSTEM
1358 M:      Egor Pomozov <epomozov@marvell.com>
1359 L:      netdev@vger.kernel.org
1360 S:      Supported
1361 W:      http://www.aquantia.com
1362 F:      drivers/net/ethernet/aquantia/atlantic/aq_ptp*
1363
1364 ARASAN NAND CONTROLLER DRIVER
1365 M:      Miquel Raynal <miquel.raynal@bootlin.com>
1366 M:      Naga Sureshkumar Relli <nagasure@xilinx.com>
1367 L:      linux-mtd@lists.infradead.org
1368 S:      Maintained
1369 F:      Documentation/devicetree/bindings/mtd/arasan,nand-controller.yaml
1370 F:      drivers/mtd/nand/raw/arasan-nand-controller.c
1371
1372 ARC FRAMEBUFFER DRIVER
1373 M:      Jaya Kumar <jayalk@intworks.biz>
1374 S:      Maintained
1375 F:      drivers/video/fbdev/arcfb.c
1376 F:      drivers/video/fbdev/core/fb_defio.c
1377
1378 ARC PGU DRM DRIVER
1379 M:      Alexey Brodkin <abrodkin@synopsys.com>
1380 S:      Supported
1381 F:      Documentation/devicetree/bindings/display/snps,arcpgu.txt
1382 F:      drivers/gpu/drm/tiny/arcpgu.c
1383
1384 ARCNET NETWORK LAYER
1385 M:      Michael Grzeschik <m.grzeschik@pengutronix.de>
1386 L:      netdev@vger.kernel.org
1387 S:      Maintained
1388 F:      drivers/net/arcnet/
1389 F:      include/uapi/linux/if_arcnet.h
1390
1391 ARDUCAM 64MP SENSOR DRIVER
1392 M:      Arducam Kernel Maintenance <info@arducam.com>
1393 L:      linux-media@vger.kernel.org
1394 S:      Maintained
1395 T:      git git://linuxtv.org/media_tree.git
1396 F:      Documentation/devicetree/bindings/media/i2c/arducam,64mp.yaml
1397 F:      drivers/media/i2c/arducam_64mp.c
1398
1399 ARDUCAM PIVARIETY SENSOR DRIVER
1400 M:      Arducam Kernel Maintenance <info@arducam.com>
1401 L:      linux-media@vger.kernel.org
1402 S:      Maintained
1403 T:      git git://linuxtv.org/media_tree.git
1404 F:      Documentation/devicetree/bindings/media/i2c/arducam-pivariety.yaml
1405 F:      drivers/media/i2c/arducam-pivariety.c
1406
1407 ARM ARCHITECTED TIMER DRIVER
1408 M:      Mark Rutland <mark.rutland@arm.com>
1409 M:      Marc Zyngier <maz@kernel.org>
1410 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1411 S:      Maintained
1412 F:      arch/arm/include/asm/arch_timer.h
1413 F:      arch/arm64/include/asm/arch_timer.h
1414 F:      drivers/clocksource/arm_arch_timer.c
1415
1416 ARM HDLCD DRM DRIVER
1417 M:      Liviu Dudau <liviu.dudau@arm.com>
1418 S:      Supported
1419 F:      Documentation/devicetree/bindings/display/arm,hdlcd.txt
1420 F:      drivers/gpu/drm/arm/hdlcd_*
1421
1422 ARM INTEGRATOR, VERSATILE AND REALVIEW SUPPORT
1423 M:      Linus Walleij <linus.walleij@linaro.org>
1424 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1425 S:      Maintained
1426 F:      Documentation/devicetree/bindings/arm/arm,integrator.yaml
1427 F:      Documentation/devicetree/bindings/arm/arm,realview.yaml
1428 F:      Documentation/devicetree/bindings/arm/arm,versatile.yaml
1429 F:      Documentation/devicetree/bindings/arm/arm,vexpress-juno.yaml
1430 F:      Documentation/devicetree/bindings/auxdisplay/arm,versatile-lcd.yaml
1431 F:      Documentation/devicetree/bindings/clock/arm,syscon-icst.yaml
1432 F:      Documentation/devicetree/bindings/i2c/i2c-versatile.txt
1433 F:      Documentation/devicetree/bindings/interrupt-controller/arm,versatile-fpga-irq.txt
1434 F:      Documentation/devicetree/bindings/mtd/arm-versatile.txt
1435 F:      arch/arm/boot/dts/arm-realview-*
1436 F:      arch/arm/boot/dts/integrator*
1437 F:      arch/arm/boot/dts/versatile*
1438 F:      arch/arm/mach-integrator/
1439 F:      arch/arm/mach-realview/
1440 F:      arch/arm/mach-versatile/
1441 F:      arch/arm/plat-versatile/
1442 F:      drivers/bus/arm-integrator-lm.c
1443 F:      drivers/clk/versatile/
1444 F:      drivers/i2c/busses/i2c-versatile.c
1445 F:      drivers/irqchip/irq-versatile-fpga.c
1446 F:      drivers/mtd/maps/physmap-versatile.*
1447 F:      drivers/power/reset/arm-versatile-reboot.c
1448 F:      drivers/soc/versatile/
1449
1450 ARM KOMEDA DRM-KMS DRIVER
1451 M:      James (Qian) Wang <james.qian.wang@arm.com>
1452 M:      Liviu Dudau <liviu.dudau@arm.com>
1453 M:      Mihail Atanassov <mihail.atanassov@arm.com>
1454 L:      Mali DP Maintainers <malidp@foss.arm.com>
1455 S:      Supported
1456 T:      git git://anongit.freedesktop.org/drm/drm-misc
1457 F:      Documentation/devicetree/bindings/display/arm,komeda.txt
1458 F:      Documentation/gpu/komeda-kms.rst
1459 F:      drivers/gpu/drm/arm/display/include/
1460 F:      drivers/gpu/drm/arm/display/komeda/
1461
1462 ARM MALI PANFROST DRM DRIVER
1463 M:      Rob Herring <robh@kernel.org>
1464 M:      Tomeu Vizoso <tomeu.vizoso@collabora.com>
1465 R:      Steven Price <steven.price@arm.com>
1466 R:      Alyssa Rosenzweig <alyssa.rosenzweig@collabora.com>
1467 L:      dri-devel@lists.freedesktop.org
1468 S:      Supported
1469 T:      git git://anongit.freedesktop.org/drm/drm-misc
1470 F:      drivers/gpu/drm/panfrost/
1471 F:      include/uapi/drm/panfrost_drm.h
1472
1473 ARM MALI-DP DRM DRIVER
1474 M:      Liviu Dudau <liviu.dudau@arm.com>
1475 M:      Brian Starkey <brian.starkey@arm.com>
1476 L:      Mali DP Maintainers <malidp@foss.arm.com>
1477 S:      Supported
1478 T:      git git://anongit.freedesktop.org/drm/drm-misc
1479 F:      Documentation/devicetree/bindings/display/arm,malidp.txt
1480 F:      Documentation/gpu/afbc.rst
1481 F:      drivers/gpu/drm/arm/
1482
1483 ARM MFM AND FLOPPY DRIVERS
1484 M:      Ian Molton <spyro@f2s.com>
1485 S:      Maintained
1486 F:      arch/arm/include/asm/floppy.h
1487 F:      arch/arm/mach-rpc/floppydma.S
1488
1489 ARM PMU PROFILING AND DEBUGGING
1490 M:      Will Deacon <will@kernel.org>
1491 M:      Mark Rutland <mark.rutland@arm.com>
1492 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1493 S:      Maintained
1494 F:      Documentation/devicetree/bindings/arm/pmu.yaml
1495 F:      Documentation/devicetree/bindings/perf/
1496 F:      arch/arm*/include/asm/hw_breakpoint.h
1497 F:      arch/arm*/include/asm/perf_event.h
1498 F:      arch/arm*/kernel/hw_breakpoint.c
1499 F:      arch/arm*/kernel/perf_*
1500 F:      drivers/perf/
1501 F:      include/linux/perf/arm_pmu.h
1502
1503 ARM PORT
1504 M:      Russell King <linux@armlinux.org.uk>
1505 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1506 S:      Odd Fixes
1507 W:      http://www.armlinux.org.uk/
1508 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git
1509 F:      arch/arm/
1510 X:      arch/arm/boot/dts/
1511
1512 ARM PRIMECELL AACI PL041 DRIVER
1513 M:      Russell King <linux@armlinux.org.uk>
1514 S:      Odd Fixes
1515 F:      sound/arm/aaci.*
1516
1517 ARM PRIMECELL BUS SUPPORT
1518 M:      Russell King <linux@armlinux.org.uk>
1519 S:      Odd Fixes
1520 F:      drivers/amba/
1521 F:      include/linux/amba/bus.h
1522
1523 ARM PRIMECELL PL35X NAND CONTROLLER DRIVER
1524 M:      Miquel Raynal <miquel.raynal@bootlin.com>
1525 M:      Naga Sureshkumar Relli <nagasure@xilinx.com>
1526 L:      linux-mtd@lists.infradead.org
1527 S:      Maintained
1528 F:      Documentation/devicetree/bindings/mtd/arm,pl353-nand-r2p1.yaml
1529 F:      drivers/mtd/nand/raw/pl35x-nand-controller.c
1530
1531 ARM PRIMECELL PL35X SMC DRIVER
1532 M:      Miquel Raynal <miquel.raynal@bootlin.com>
1533 M:      Naga Sureshkumar Relli <nagasure@xilinx.com>
1534 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1535 S:      Maintained
1536 F:      Documentation/devicetree/bindings/memory-controllers/arm,pl353-smc.yaml
1537 F:      drivers/memory/pl353-smc.c
1538
1539 ARM PRIMECELL CLCD PL110 DRIVER
1540 M:      Russell King <linux@armlinux.org.uk>
1541 S:      Odd Fixes
1542 F:      drivers/video/fbdev/amba-clcd.*
1543
1544 ARM PRIMECELL KMI PL050 DRIVER
1545 M:      Russell King <linux@armlinux.org.uk>
1546 S:      Odd Fixes
1547 F:      drivers/input/serio/ambakmi.*
1548 F:      include/linux/amba/kmi.h
1549
1550 ARM PRIMECELL MMCI PL180/1 DRIVER
1551 M:      Russell King <linux@armlinux.org.uk>
1552 S:      Odd Fixes
1553 F:      drivers/mmc/host/mmci.*
1554 F:      include/linux/amba/mmci.h
1555
1556 ARM PRIMECELL SSP PL022 SPI DRIVER
1557 M:      Linus Walleij <linus.walleij@linaro.org>
1558 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1559 S:      Maintained
1560 F:      Documentation/devicetree/bindings/spi/spi-pl022.yaml
1561 F:      drivers/spi/spi-pl022.c
1562
1563 ARM PRIMECELL UART PL010 AND PL011 DRIVERS
1564 M:      Russell King <linux@armlinux.org.uk>
1565 S:      Odd Fixes
1566 F:      drivers/tty/serial/amba-pl01*.c
1567 F:      include/linux/amba/serial.h
1568
1569 ARM PRIMECELL VIC PL190/PL192 DRIVER
1570 M:      Linus Walleij <linus.walleij@linaro.org>
1571 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1572 S:      Maintained
1573 F:      Documentation/devicetree/bindings/interrupt-controller/arm,vic.txt
1574 F:      drivers/irqchip/irq-vic.c
1575
1576 ARM SMC WATCHDOG DRIVER
1577 M:      Julius Werner <jwerner@chromium.org>
1578 R:      Evan Benn <evanbenn@chromium.org>
1579 S:      Maintained
1580 F:      Documentation/devicetree/bindings/watchdog/arm-smc-wdt.yaml
1581 F:      drivers/watchdog/arm_smc_wdt.c
1582
1583 ARM SMMU DRIVERS
1584 M:      Will Deacon <will@kernel.org>
1585 R:      Robin Murphy <robin.murphy@arm.com>
1586 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1587 S:      Maintained
1588 F:      Documentation/devicetree/bindings/iommu/arm,smmu*
1589 F:      drivers/iommu/arm/
1590 F:      drivers/iommu/io-pgtable-arm*
1591
1592 ARM AND ARM64 SoC SUB-ARCHITECTURES (COMMON PARTS)
1593 M:      Arnd Bergmann <arnd@arndb.de>
1594 M:      Olof Johansson <olof@lixom.net>
1595 M:      soc@kernel.org
1596 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1597 S:      Maintained
1598 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/soc/soc.git
1599 F:      arch/arm/boot/dts/Makefile
1600 F:      arch/arm64/boot/dts/Makefile
1601
1602 ARM SUB-ARCHITECTURES
1603 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1604 S:      Maintained
1605 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/soc/soc.git
1606 F:      arch/arm/mach-*/
1607 F:      arch/arm/plat-*/
1608
1609 ARM/ACTIONS SEMI ARCHITECTURE
1610 M:      Andreas Färber <afaerber@suse.de>
1611 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
1612 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1613 L:      linux-actions@lists.infradead.org (moderated for non-subscribers)
1614 S:      Maintained
1615 F:      Documentation/devicetree/bindings/arm/actions.yaml
1616 F:      Documentation/devicetree/bindings/clock/actions,owl-cmu.txt
1617 F:      Documentation/devicetree/bindings/dma/owl-dma.yaml
1618 F:      Documentation/devicetree/bindings/i2c/i2c-owl.yaml
1619 F:      Documentation/devicetree/bindings/interrupt-controller/actions,owl-sirq.yaml
1620 F:      Documentation/devicetree/bindings/mmc/owl-mmc.yaml
1621 F:      Documentation/devicetree/bindings/net/actions,owl-emac.yaml
1622 F:      Documentation/devicetree/bindings/pinctrl/actions,*
1623 F:      Documentation/devicetree/bindings/power/actions,owl-sps.txt
1624 F:      Documentation/devicetree/bindings/timer/actions,owl-timer.txt
1625 F:      arch/arm/boot/dts/owl-*
1626 F:      arch/arm/mach-actions/
1627 F:      arch/arm64/boot/dts/actions/
1628 F:      drivers/clk/actions/
1629 F:      drivers/clocksource/timer-owl*
1630 F:      drivers/dma/owl-dma.c
1631 F:      drivers/i2c/busses/i2c-owl.c
1632 F:      drivers/irqchip/irq-owl-sirq.c
1633 F:      drivers/mmc/host/owl-mmc.c
1634 F:      drivers/net/ethernet/actions/
1635 F:      drivers/pinctrl/actions/*
1636 F:      drivers/soc/actions/
1637 F:      include/dt-bindings/power/owl-*
1638 F:      include/dt-bindings/reset/actions,*
1639 F:      include/linux/soc/actions/
1640 N:      owl
1641
1642 ARM/ADS SPHERE MACHINE SUPPORT
1643 M:      Lennert Buytenhek <kernel@wantstofly.org>
1644 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1645 S:      Maintained
1646
1647 ARM/AFEB9260 MACHINE SUPPORT
1648 M:      Sergey Lapin <slapin@ossfans.org>
1649 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1650 S:      Maintained
1651
1652 ARM/AJECO 1ARM MACHINE SUPPORT
1653 M:      Lennert Buytenhek <kernel@wantstofly.org>
1654 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1655 S:      Maintained
1656
1657 ARM/Allwinner SoC Clock Support
1658 M:      Emilio López <emilio@elopez.com.ar>
1659 S:      Maintained
1660 F:      drivers/clk/sunxi/
1661
1662 ARM/Allwinner sunXi SoC support
1663 M:      Maxime Ripard <mripard@kernel.org>
1664 M:      Chen-Yu Tsai <wens@csie.org>
1665 R:      Jernej Skrabec <jernej.skrabec@gmail.com>
1666 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1667 S:      Maintained
1668 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sunxi/linux.git
1669 L:      linux-sunxi@lists.linux.dev
1670 F:      arch/arm/mach-sunxi/
1671 F:      arch/arm64/boot/dts/allwinner/
1672 F:      drivers/clk/sunxi-ng/
1673 F:      drivers/pinctrl/sunxi/
1674 F:      drivers/soc/sunxi/
1675 N:      allwinner
1676 N:      sun[x456789]i
1677 N:      sun50i
1678
1679 ARM/Amlogic Meson SoC CLOCK FRAMEWORK
1680 M:      Neil Armstrong <narmstrong@baylibre.com>
1681 M:      Jerome Brunet <jbrunet@baylibre.com>
1682 L:      linux-amlogic@lists.infradead.org
1683 S:      Maintained
1684 F:      Documentation/devicetree/bindings/clock/amlogic*
1685 F:      drivers/clk/meson/
1686 F:      include/dt-bindings/clock/gxbb*
1687 F:      include/dt-bindings/clock/meson*
1688
1689 ARM/Amlogic Meson SoC Crypto Drivers
1690 M:      Corentin Labbe <clabbe@baylibre.com>
1691 L:      linux-crypto@vger.kernel.org
1692 L:      linux-amlogic@lists.infradead.org
1693 S:      Maintained
1694 F:      Documentation/devicetree/bindings/crypto/amlogic*
1695 F:      drivers/crypto/amlogic/
1696
1697 ARM/Amlogic Meson SoC Sound Drivers
1698 M:      Jerome Brunet <jbrunet@baylibre.com>
1699 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
1700 S:      Maintained
1701 F:      Documentation/devicetree/bindings/sound/amlogic*
1702 F:      sound/soc/meson/
1703
1704 ARM/Amlogic Meson SoC support
1705 M:      Neil Armstrong <narmstrong@baylibre.com>
1706 M:      Kevin Hilman <khilman@baylibre.com>
1707 R:      Jerome Brunet <jbrunet@baylibre.com>
1708 R:      Martin Blumenstingl <martin.blumenstingl@googlemail.com>
1709 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1710 L:      linux-amlogic@lists.infradead.org
1711 S:      Maintained
1712 W:      http://linux-meson.com/
1713 F:      arch/arm/boot/dts/meson*
1714 F:      arch/arm/mach-meson/
1715 F:      arch/arm64/boot/dts/amlogic/
1716 F:      drivers/mmc/host/meson*
1717 F:      drivers/pinctrl/meson/
1718 F:      drivers/rtc/rtc-meson*
1719 F:      drivers/soc/amlogic/
1720 N:      meson
1721
1722 ARM/Annapurna Labs ALPINE ARCHITECTURE
1723 M:      Tsahee Zidenberg <tsahee@annapurnalabs.com>
1724 M:      Antoine Tenart <atenart@kernel.org>
1725 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1726 S:      Maintained
1727 F:      arch/arm/boot/dts/alpine*
1728 F:      arch/arm/mach-alpine/
1729 F:      arch/arm64/boot/dts/amazon/
1730 F:      drivers/*/*alpine*
1731
1732 ARM/APPLE MACHINE SUPPORT
1733 M:      Hector Martin <marcan@marcan.st>
1734 M:      Sven Peter <sven@svenpeter.dev>
1735 R:      Alyssa Rosenzweig <alyssa@rosenzweig.io>
1736 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1737 S:      Maintained
1738 W:      https://asahilinux.org
1739 B:      https://github.com/AsahiLinux/linux/issues
1740 C:      irc://irc.oftc.net/asahi-dev
1741 T:      git https://github.com/AsahiLinux/linux.git
1742 F:      Documentation/devicetree/bindings/arm/apple.yaml
1743 F:      Documentation/devicetree/bindings/interrupt-controller/apple,aic.yaml
1744 F:      Documentation/devicetree/bindings/pinctrl/apple,pinctrl.yaml
1745 F:      arch/arm64/boot/dts/apple/
1746 F:      drivers/irqchip/irq-apple-aic.c
1747 F:      include/dt-bindings/interrupt-controller/apple-aic.h
1748 F:      include/dt-bindings/pinctrl/apple.h
1749
1750 ARM/ARTPEC MACHINE SUPPORT
1751 M:      Jesper Nilsson <jesper.nilsson@axis.com>
1752 M:      Lars Persson <lars.persson@axis.com>
1753 L:      linux-arm-kernel@axis.com
1754 S:      Maintained
1755 F:      Documentation/devicetree/bindings/pinctrl/axis,artpec6-pinctrl.txt
1756 F:      arch/arm/boot/dts/artpec6*
1757 F:      arch/arm/mach-artpec
1758 F:      drivers/clk/axis
1759 F:      drivers/crypto/axis
1760 F:      drivers/mmc/host/usdhi6rol0.c
1761 F:      drivers/pinctrl/pinctrl-artpec*
1762
1763 ARM/ASPEED I2C DRIVER
1764 M:      Brendan Higgins <brendanhiggins@google.com>
1765 R:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
1766 R:      Joel Stanley <joel@jms.id.au>
1767 L:      linux-i2c@vger.kernel.org
1768 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
1769 S:      Maintained
1770 F:      Documentation/devicetree/bindings/i2c/i2c-aspeed.txt
1771 F:      Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2400-i2c-ic.txt
1772 F:      drivers/i2c/busses/i2c-aspeed.c
1773 F:      drivers/irqchip/irq-aspeed-i2c-ic.c
1774
1775 ARM/ASPEED MACHINE SUPPORT
1776 M:      Joel Stanley <joel@jms.id.au>
1777 R:      Andrew Jeffery <andrew@aj.id.au>
1778 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1779 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
1780 S:      Supported
1781 Q:      https://patchwork.ozlabs.org/project/linux-aspeed/list/
1782 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joel/aspeed.git
1783 F:      arch/arm/boot/dts/aspeed-*
1784 F:      arch/arm/mach-aspeed/
1785 N:      aspeed
1786
1787 ARM/BITMAIN ARCHITECTURE
1788 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
1789 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1790 S:      Maintained
1791 F:      Documentation/devicetree/bindings/arm/bitmain.yaml
1792 F:      Documentation/devicetree/bindings/clock/bitmain,bm1880-clk.yaml
1793 F:      Documentation/devicetree/bindings/pinctrl/bitmain,bm1880-pinctrl.txt
1794 F:      arch/arm64/boot/dts/bitmain/
1795 F:      drivers/clk/clk-bm1880.c
1796 F:      drivers/pinctrl/pinctrl-bm1880.c
1797
1798 ARM/CALXEDA HIGHBANK ARCHITECTURE
1799 M:      Andre Przywara <andre.przywara@arm.com>
1800 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1801 S:      Maintained
1802 F:      arch/arm/boot/dts/ecx-*.dts*
1803 F:      arch/arm/boot/dts/highbank.dts
1804 F:      arch/arm/mach-highbank/
1805
1806 ARM/CAVIUM NETWORKS CNS3XXX MACHINE SUPPORT
1807 M:      Krzysztof Halasa <khalasa@piap.pl>
1808 S:      Maintained
1809 F:      arch/arm/mach-cns3xxx/
1810
1811 ARM/CAVIUM THUNDER NETWORK DRIVER
1812 M:      Sunil Goutham <sgoutham@marvell.com>
1813 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1814 S:      Supported
1815 F:      drivers/net/ethernet/cavium/thunder/
1816
1817 ARM/CIRRUS LOGIC BK3 MACHINE SUPPORT
1818 M:      Lukasz Majewski <lukma@denx.de>
1819 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1820 S:      Maintained
1821 F:      arch/arm/mach-ep93xx/ts72xx.c
1822
1823 ARM/CIRRUS LOGIC CLPS711X ARM ARCHITECTURE
1824 M:      Alexander Shiyan <shc_work@mail.ru>
1825 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1826 S:      Odd Fixes
1827 N:      clps711x
1828
1829 ARM/CIRRUS LOGIC EDB9315A MACHINE SUPPORT
1830 M:      Lennert Buytenhek <kernel@wantstofly.org>
1831 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1832 S:      Maintained
1833
1834 ARM/CIRRUS LOGIC EP93XX ARM ARCHITECTURE
1835 M:      Hartley Sweeten <hsweeten@visionengravers.com>
1836 M:      Alexander Sverdlin <alexander.sverdlin@gmail.com>
1837 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1838 S:      Maintained
1839 F:      arch/arm/mach-ep93xx/
1840 F:      arch/arm/mach-ep93xx/include/mach/
1841
1842 ARM/CLKDEV SUPPORT
1843 M:      Russell King <linux@armlinux.org.uk>
1844 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1845 S:      Maintained
1846 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git clkdev
1847 F:      drivers/clk/clkdev.c
1848
1849 ARM/CONEXANT DIGICOLOR MACHINE SUPPORT
1850 M:      Baruch Siach <baruch@tkos.co.il>
1851 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1852 S:      Maintained
1853 F:      arch/arm/boot/dts/cx92755*
1854 N:      digicolor
1855
1856 ARM/CONTEC MICRO9 MACHINE SUPPORT
1857 M:      Hubert Feurstein <hubert.feurstein@contec.at>
1858 S:      Maintained
1859 F:      arch/arm/mach-ep93xx/micro9.c
1860
1861 ARM/CORESIGHT FRAMEWORK AND DRIVERS
1862 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
1863 M:      Suzuki K Poulose <suzuki.poulose@arm.com>
1864 R:      Mike Leach <mike.leach@linaro.org>
1865 R:      Leo Yan <leo.yan@linaro.org>
1866 L:      coresight@lists.linaro.org (moderated for non-subscribers)
1867 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1868 S:      Maintained
1869 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/coresight/linux.git
1870 F:      Documentation/ABI/testing/sysfs-bus-coresight-devices-*
1871 F:      Documentation/devicetree/bindings/arm/coresight-cpu-debug.txt
1872 F:      Documentation/devicetree/bindings/arm/coresight-cti.yaml
1873 F:      Documentation/devicetree/bindings/arm/coresight.txt
1874 F:      Documentation/devicetree/bindings/arm/ete.yaml
1875 F:      Documentation/devicetree/bindings/arm/trbe.yaml
1876 F:      Documentation/trace/coresight/*
1877 F:      drivers/hwtracing/coresight/*
1878 F:      include/dt-bindings/arm/coresight-cti-dt.h
1879 F:      include/linux/coresight*
1880 F:      tools/perf/arch/arm/util/auxtrace.c
1881 F:      tools/perf/arch/arm/util/cs-etm.c
1882 F:      tools/perf/arch/arm/util/cs-etm.h
1883 F:      tools/perf/arch/arm/util/pmu.c
1884 F:      tools/perf/util/cs-etm-decoder/*
1885 F:      tools/perf/util/cs-etm.*
1886
1887 ARM/CORGI MACHINE SUPPORT
1888 M:      Richard Purdie <rpurdie@rpsys.net>
1889 S:      Maintained
1890
1891 ARM/CORTINA SYSTEMS GEMINI ARM ARCHITECTURE
1892 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
1893 M:      Linus Walleij <linus.walleij@linaro.org>
1894 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1895 S:      Maintained
1896 T:      git git://github.com/ulli-kroll/linux.git
1897 F:      Documentation/devicetree/bindings/arm/gemini.txt
1898 F:      Documentation/devicetree/bindings/net/cortina,gemini-ethernet.txt
1899 F:      Documentation/devicetree/bindings/pinctrl/cortina,gemini-pinctrl.txt
1900 F:      Documentation/devicetree/bindings/rtc/faraday,ftrtc010.txt
1901 F:      arch/arm/boot/dts/gemini*
1902 F:      arch/arm/mach-gemini/
1903 F:      drivers/crypto/gemini/
1904 F:      drivers/net/ethernet/cortina/
1905 F:      drivers/pinctrl/pinctrl-gemini.c
1906 F:      drivers/rtc/rtc-ftrtc010.c
1907
1908 ARM/CZ.NIC TURRIS SUPPORT
1909 M:      Marek Behún <kabel@kernel.org>
1910 S:      Maintained
1911 W:      https://www.turris.cz/
1912 F:      Documentation/ABI/testing/debugfs-moxtet
1913 F:      Documentation/ABI/testing/sysfs-bus-moxtet-devices
1914 F:      Documentation/ABI/testing/sysfs-firmware-turris-mox-rwtm
1915 F:      Documentation/devicetree/bindings/bus/moxtet.txt
1916 F:      Documentation/devicetree/bindings/firmware/cznic,turris-mox-rwtm.txt
1917 F:      Documentation/devicetree/bindings/gpio/gpio-moxtet.txt
1918 F:      Documentation/devicetree/bindings/leds/cznic,turris-omnia-leds.yaml
1919 F:      Documentation/devicetree/bindings/watchdog/armada-37xx-wdt.txt
1920 F:      drivers/bus/moxtet.c
1921 F:      drivers/firmware/turris-mox-rwtm.c
1922 F:      drivers/leds/leds-turris-omnia.c
1923 F:      drivers/mailbox/armada-37xx-rwtm-mailbox.c
1924 F:      drivers/gpio/gpio-moxtet.c
1925 F:      drivers/watchdog/armada_37xx_wdt.c
1926 F:      include/dt-bindings/bus/moxtet.h
1927 F:      include/linux/armada-37xx-rwtm-mailbox.h
1928 F:      include/linux/moxtet.h
1929
1930 ARM/EZX SMARTPHONES (A780, A910, A1200, E680, ROKR E2 and ROKR E6)
1931 M:      Robert Jarzmik <robert.jarzmik@free.fr>
1932 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1933 S:      Maintained
1934 F:      arch/arm/mach-pxa/ezx.c
1935
1936 ARM/FARADAY FA526 PORT
1937 M:      Hans Ulli Kroll <ulli.kroll@googlemail.com>
1938 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1939 S:      Maintained
1940 T:      git git://git.berlios.de/gemini-board
1941 F:      arch/arm/mm/*-fa*
1942
1943 ARM/FOOTBRIDGE ARCHITECTURE
1944 M:      Russell King <linux@armlinux.org.uk>
1945 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1946 S:      Maintained
1947 W:      http://www.armlinux.org.uk/
1948 F:      arch/arm/include/asm/hardware/dec21285.h
1949 F:      arch/arm/mach-footbridge/
1950
1951 ARM/FREESCALE IMX / MXC ARM ARCHITECTURE
1952 M:      Shawn Guo <shawnguo@kernel.org>
1953 M:      Sascha Hauer <s.hauer@pengutronix.de>
1954 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
1955 R:      Fabio Estevam <festevam@gmail.com>
1956 R:      NXP Linux Team <linux-imx@nxp.com>
1957 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1958 S:      Maintained
1959 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1960 X:      drivers/media/i2c/
1961 N:      imx
1962 N:      mxs
1963
1964 ARM/FREESCALE LAYERSCAPE ARM ARCHITECTURE
1965 M:      Shawn Guo <shawnguo@kernel.org>
1966 M:      Li Yang <leoyang.li@nxp.com>
1967 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1968 S:      Maintained
1969 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1970 F:      arch/arm/boot/dts/ls1021a*
1971 F:      arch/arm64/boot/dts/freescale/fsl-*
1972 F:      arch/arm64/boot/dts/freescale/qoriq-*
1973
1974 ARM/FREESCALE VYBRID ARM ARCHITECTURE
1975 M:      Shawn Guo <shawnguo@kernel.org>
1976 M:      Sascha Hauer <s.hauer@pengutronix.de>
1977 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
1978 R:      Stefan Agner <stefan@agner.ch>
1979 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1980 S:      Maintained
1981 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shawnguo/linux.git
1982 F:      arch/arm/boot/dts/vf*
1983 F:      arch/arm/mach-imx/*vf610*
1984
1985 ARM/GLOMATION GESBC9312SX MACHINE SUPPORT
1986 M:      Lennert Buytenhek <kernel@wantstofly.org>
1987 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1988 S:      Maintained
1989
1990 ARM/GUMSTIX MACHINE SUPPORT
1991 M:      Steve Sakoman <sakoman@gmail.com>
1992 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1993 S:      Maintained
1994
1995 ARM/H4700 (HP IPAQ HX4700) MACHINE SUPPORT
1996 M:      Philipp Zabel <philipp.zabel@gmail.com>
1997 M:      Paul Parsons <lost.distance@yahoo.com>
1998 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
1999 S:      Maintained
2000 F:      arch/arm/mach-pxa/hx4700.c
2001 F:      arch/arm/mach-pxa/include/mach/hx4700.h
2002 F:      sound/soc/pxa/hx4700.c
2003
2004 ARM/HISILICON SOC SUPPORT
2005 M:      Wei Xu <xuwei5@hisilicon.com>
2006 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2007 S:      Supported
2008 W:      http://www.hisilicon.com
2009 T:      git git://github.com/hisilicon/linux-hisi.git
2010 F:      arch/arm/boot/dts/hi3*
2011 F:      arch/arm/boot/dts/hip*
2012 F:      arch/arm/boot/dts/hisi*
2013 F:      arch/arm/mach-hisi/
2014 F:      arch/arm64/boot/dts/hisilicon/
2015
2016 ARM/HP JORNADA 7XX MACHINE SUPPORT
2017 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
2018 S:      Maintained
2019 W:      www.jlime.com
2020 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
2021 F:      arch/arm/mach-sa1100/include/mach/jornada720.h
2022 F:      arch/arm/mach-sa1100/jornada720.c
2023
2024 ARM/IGEP MACHINE SUPPORT
2025 M:      Enric Balletbo i Serra <eballetbo@gmail.com>
2026 M:      Javier Martinez Canillas <javier@dowhile0.org>
2027 L:      linux-omap@vger.kernel.org
2028 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2029 S:      Maintained
2030 F:      arch/arm/boot/dts/omap3-igep*
2031
2032 ARM/INCOME PXA270 SUPPORT
2033 M:      Marek Vasut <marek.vasut@gmail.com>
2034 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2035 S:      Maintained
2036 F:      arch/arm/mach-pxa/colibri-pxa270-income.c
2037
2038 ARM/INTEL IOP32X ARM ARCHITECTURE
2039 M:      Lennert Buytenhek <kernel@wantstofly.org>
2040 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2041 S:      Maintained
2042
2043 ARM/INTEL IQ81342EX MACHINE SUPPORT
2044 M:      Lennert Buytenhek <kernel@wantstofly.org>
2045 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2046 S:      Maintained
2047
2048 ARM/INTEL IXDP2850 MACHINE SUPPORT
2049 M:      Lennert Buytenhek <kernel@wantstofly.org>
2050 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2051 S:      Maintained
2052
2053 ARM/INTEL IXP4XX ARM ARCHITECTURE
2054 M:      Linus Walleij <linusw@kernel.org>
2055 M:      Imre Kaloz <kaloz@openwrt.org>
2056 M:      Krzysztof Halasa <khalasa@piap.pl>
2057 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2058 S:      Maintained
2059 F:      Documentation/devicetree/bindings/arm/intel-ixp4xx.yaml
2060 F:      Documentation/devicetree/bindings/bus/intel,ixp4xx-expansion-bus-controller.yaml
2061 F:      Documentation/devicetree/bindings/gpio/intel,ixp4xx-gpio.txt
2062 F:      Documentation/devicetree/bindings/interrupt-controller/intel,ixp4xx-interrupt.yaml
2063 F:      Documentation/devicetree/bindings/timer/intel,ixp4xx-timer.yaml
2064 F:      arch/arm/mach-ixp4xx/
2065 F:      drivers/bus/intel-ixp4xx-eb.c
2066 F:      drivers/clocksource/timer-ixp4xx.c
2067 F:      drivers/crypto/ixp4xx_crypto.c
2068 F:      drivers/gpio/gpio-ixp4xx.c
2069 F:      drivers/irqchip/irq-ixp4xx.c
2070 F:      include/linux/irqchip/irq-ixp4xx.h
2071 F:      include/linux/platform_data/timer-ixp4xx.h
2072
2073 ARM/INTEL KEEMBAY ARCHITECTURE
2074 M:      Paul J. Murphy <paul.j.murphy@intel.com>
2075 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
2076 S:      Maintained
2077 F:      Documentation/devicetree/bindings/arm/intel,keembay.yaml
2078 F:      arch/arm64/boot/dts/intel/keembay-evm.dts
2079 F:      arch/arm64/boot/dts/intel/keembay-soc.dtsi
2080
2081 ARM/INTEL RESEARCH IMOTE/STARGATE 2 MACHINE SUPPORT
2082 M:      Jonathan Cameron <jic23@cam.ac.uk>
2083 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2084 S:      Maintained
2085 F:      arch/arm/mach-pxa/stargate2.c
2086 F:      drivers/pcmcia/pxa2xx_stargate2.c
2087
2088 ARM/INTEL XSC3 (MANZANO) ARM CORE
2089 M:      Lennert Buytenhek <kernel@wantstofly.org>
2090 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2091 S:      Maintained
2092
2093 ARM/IP FABRICS DOUBLE ESPRESSO MACHINE SUPPORT
2094 M:      Lennert Buytenhek <kernel@wantstofly.org>
2095 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2096 S:      Maintained
2097
2098 ARM/LG1K ARCHITECTURE
2099 M:      Chanho Min <chanho.min@lge.com>
2100 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2101 S:      Maintained
2102 F:      arch/arm64/boot/dts/lg/
2103
2104 ARM/LOGICPD PXA270 MACHINE SUPPORT
2105 M:      Lennert Buytenhek <kernel@wantstofly.org>
2106 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2107 S:      Maintained
2108
2109 ARM/LPC18XX ARCHITECTURE
2110 M:      Vladimir Zapolskiy <vz@mleia.com>
2111 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2112 S:      Maintained
2113 F:      Documentation/devicetree/bindings/i2c/i2c-lpc2k.txt
2114 F:      arch/arm/boot/dts/lpc43*
2115 F:      drivers/i2c/busses/i2c-lpc2k.c
2116 F:      drivers/memory/pl172.c
2117 F:      drivers/mtd/spi-nor/controllers/nxp-spifi.c
2118 F:      drivers/rtc/rtc-lpc24xx.c
2119 N:      lpc18xx
2120
2121 ARM/LPC32XX SOC SUPPORT
2122 M:      Vladimir Zapolskiy <vz@mleia.com>
2123 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2124 S:      Maintained
2125 T:      git git://github.com/vzapolskiy/linux-lpc32xx.git
2126 F:      Documentation/devicetree/bindings/i2c/i2c-pnx.txt
2127 F:      arch/arm/boot/dts/lpc32*
2128 F:      arch/arm/mach-lpc32xx/
2129 F:      drivers/i2c/busses/i2c-pnx.c
2130 F:      drivers/net/ethernet/nxp/lpc_eth.c
2131 F:      drivers/usb/host/ohci-nxp.c
2132 F:      drivers/watchdog/pnx4008_wdt.c
2133 N:      lpc32xx
2134
2135 ARM/MAGICIAN MACHINE SUPPORT
2136 M:      Philipp Zabel <philipp.zabel@gmail.com>
2137 S:      Maintained
2138
2139 ARM/Marvell Dove/MV78xx0/Orion SOC support
2140 M:      Andrew Lunn <andrew@lunn.ch>
2141 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2142 M:      Gregory Clement <gregory.clement@bootlin.com>
2143 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2144 S:      Maintained
2145 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gclement/mvebu.git
2146 F:      Documentation/devicetree/bindings/soc/dove/
2147 F:      arch/arm/boot/dts/dove*
2148 F:      arch/arm/boot/dts/orion5x*
2149 F:      arch/arm/mach-dove/
2150 F:      arch/arm/mach-mv78xx0/
2151 F:      arch/arm/mach-orion5x/
2152 F:      arch/arm/plat-orion/
2153 F:      drivers/soc/dove/
2154
2155 ARM/Marvell Kirkwood and Armada 370, 375, 38x, 39x, XP, 3700, 7K/8K, CN9130 SOC support
2156 M:      Andrew Lunn <andrew@lunn.ch>
2157 M:      Gregory Clement <gregory.clement@bootlin.com>
2158 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2159 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2160 S:      Maintained
2161 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gclement/mvebu.git
2162 F:      arch/arm/boot/dts/armada*
2163 F:      arch/arm/boot/dts/kirkwood*
2164 F:      arch/arm/configs/mvebu_*_defconfig
2165 F:      arch/arm/mach-mvebu/
2166 F:      arch/arm64/boot/dts/marvell/armada*
2167 F:      arch/arm64/boot/dts/marvell/cn913*
2168 F:      drivers/cpufreq/armada-37xx-cpufreq.c
2169 F:      drivers/cpufreq/armada-8k-cpufreq.c
2170 F:      drivers/cpufreq/mvebu-cpufreq.c
2171 F:      drivers/irqchip/irq-armada-370-xp.c
2172 F:      drivers/irqchip/irq-mvebu-*
2173 F:      drivers/pinctrl/mvebu/
2174 F:      drivers/rtc/rtc-armada38x.c
2175
2176 ARM/Mediatek RTC DRIVER
2177 M:      Eddie Huang <eddie.huang@mediatek.com>
2178 M:      Sean Wang <sean.wang@mediatek.com>
2179 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2180 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2181 S:      Maintained
2182 F:      Documentation/devicetree/bindings/rtc/rtc-mt2712.txt
2183 F:      Documentation/devicetree/bindings/rtc/rtc-mt7622.txt
2184 F:      drivers/rtc/rtc-mt2712.c
2185 F:      drivers/rtc/rtc-mt6397.c
2186 F:      drivers/rtc/rtc-mt7622.c
2187
2188 ARM/Mediatek SoC support
2189 M:      Matthias Brugger <matthias.bgg@gmail.com>
2190 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2191 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2192 S:      Maintained
2193 W:      https://mtk.wiki.kernel.org/
2194 C:      irc://chat.freenode.net/linux-mediatek
2195 F:      arch/arm/boot/dts/mt6*
2196 F:      arch/arm/boot/dts/mt7*
2197 F:      arch/arm/boot/dts/mt8*
2198 F:      arch/arm/mach-mediatek/
2199 F:      arch/arm64/boot/dts/mediatek/
2200 F:      drivers/soc/mediatek/
2201 N:      mtk
2202 N:      mt[678]
2203 K:      mediatek
2204
2205 ARM/Mediatek USB3 PHY DRIVER
2206 M:      Chunfeng Yun <chunfeng.yun@mediatek.com>
2207 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2208 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
2209 S:      Maintained
2210 F:      Documentation/devicetree/bindings/phy/mediatek,*
2211 F:      drivers/phy/mediatek/
2212
2213 ARM/Microchip (AT91) SoC support
2214 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
2215 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
2216 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
2217 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2218 S:      Supported
2219 W:      http://www.linux4sam.org
2220 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/at91/linux.git
2221 F:      arch/arm/boot/dts/at91*.dts
2222 F:      arch/arm/boot/dts/at91*.dtsi
2223 F:      arch/arm/boot/dts/sama*.dts
2224 F:      arch/arm/boot/dts/sama*.dtsi
2225 F:      arch/arm/include/debug/at91.S
2226 F:      arch/arm/mach-at91/
2227 F:      drivers/memory/atmel*
2228 F:      drivers/watchdog/sama5d4_wdt.c
2229 F:      include/soc/at91/
2230 X:      drivers/input/touchscreen/atmel_mxt_ts.c
2231 X:      drivers/net/wireless/atmel/
2232 N:      at91
2233 N:      atmel
2234
2235 ARM/Microchip Sparx5 SoC support
2236 M:      Lars Povlsen <lars.povlsen@microchip.com>
2237 M:      Steen Hegelund <Steen.Hegelund@microchip.com>
2238 M:      UNGLinuxDriver@microchip.com
2239 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2240 S:      Supported
2241 T:      git git://github.com/microchip-ung/linux-upstream.git
2242 F:      arch/arm64/boot/dts/microchip/
2243 F:      drivers/pinctrl/pinctrl-microchip-sgpio.c
2244 N:      sparx5
2245
2246 Microchip Timer Counter Block (TCB) Capture Driver
2247 M:      Kamel Bouhara <kamel.bouhara@bootlin.com>
2248 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2249 L:      linux-iio@vger.kernel.org
2250 S:      Maintained
2251 F:      drivers/counter/microchip-tcb-capture.c
2252
2253 ARM/MIOA701 MACHINE SUPPORT
2254 M:      Robert Jarzmik <robert.jarzmik@free.fr>
2255 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2256 S:      Maintained
2257 F:      arch/arm/mach-pxa/mioa701.c
2258
2259 ARM/MStar/Sigmastar Armv7 SoC support
2260 M:      Daniel Palmer <daniel@thingy.jp>
2261 M:      Romain Perier <romain.perier@gmail.com>
2262 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2263 S:      Maintained
2264 W:      http://linux-chenxing.org/
2265 T:      git git://github.com/linux-chenxing/linux.git
2266 F:      Documentation/devicetree/bindings/arm/mstar/*
2267 F:      Documentation/devicetree/bindings/clock/mstar,msc313-mpll.yaml
2268 F:      Documentation/devicetree/bindings/gpio/mstar,msc313-gpio.yaml
2269 F:      arch/arm/boot/dts/mstar-*
2270 F:      arch/arm/mach-mstar/
2271 F:      drivers/clk/mstar/
2272 F:      drivers/gpio/gpio-msc313.c
2273 F:      drivers/watchdog/msc313e_wdt.c
2274 F:      include/dt-bindings/clock/mstar-*
2275 F:      include/dt-bindings/gpio/msc313-gpio.h
2276
2277 ARM/NEC MOBILEPRO 900/c MACHINE SUPPORT
2278 M:      Michael Petchkovsky <mkpetch@internode.on.net>
2279 S:      Maintained
2280
2281 ARM/NOMADIK/Ux500 ARCHITECTURES
2282 M:      Linus Walleij <linus.walleij@linaro.org>
2283 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2284 S:      Maintained
2285 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-nomadik.git
2286 F:      Documentation/devicetree/bindings/arm/ste-*
2287 F:      Documentation/devicetree/bindings/arm/ux500.yaml
2288 F:      Documentation/devicetree/bindings/arm/ux500/
2289 F:      Documentation/devicetree/bindings/i2c/i2c-nomadik.txt
2290 F:      arch/arm/boot/dts/ste-*
2291 F:      arch/arm/mach-nomadik/
2292 F:      arch/arm/mach-ux500/
2293 F:      drivers/clk/clk-nomadik.c
2294 F:      drivers/clocksource/clksrc-dbx500-prcmu.c
2295 F:      drivers/dma/ste_dma40*
2296 F:      drivers/hwspinlock/u8500_hsem.c
2297 F:      drivers/i2c/busses/i2c-nomadik.c
2298 F:      drivers/iio/adc/ab8500-gpadc.c
2299 F:      drivers/mfd/ab8500*
2300 F:      drivers/mfd/abx500*
2301 F:      drivers/mfd/db8500*
2302 F:      drivers/pinctrl/nomadik/
2303 F:      drivers/rtc/rtc-ab8500.c
2304 F:      drivers/rtc/rtc-pl031.c
2305 F:      drivers/soc/ux500/
2306
2307 ARM/NUVOTON NPCM ARCHITECTURE
2308 M:      Avi Fishman <avifishman70@gmail.com>
2309 M:      Tomer Maimon <tmaimon77@gmail.com>
2310 M:      Tali Perry <tali.perry1@gmail.com>
2311 R:      Patrick Venture <venture@google.com>
2312 R:      Nancy Yuen <yuenn@google.com>
2313 R:      Benjamin Fair <benjaminfair@google.com>
2314 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2315 S:      Supported
2316 F:      Documentation/devicetree/bindings/*/*/*npcm*
2317 F:      Documentation/devicetree/bindings/*/*npcm*
2318 F:      arch/arm/boot/dts/nuvoton-npcm*
2319 F:      arch/arm/mach-npcm/
2320 F:      drivers/*/*npcm*
2321 F:      drivers/*/*/*npcm*
2322 F:      include/dt-bindings/clock/nuvoton,npcm7xx-clock.h
2323
2324 ARM/NUVOTON WPCM450 ARCHITECTURE
2325 M:      Jonathan Neuschäfer <j.neuschaefer@gmx.net>
2326 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2327 S:      Maintained
2328 F:      Documentation/devicetree/bindings/*/*wpcm*
2329 F:      arch/arm/boot/dts/nuvoton-wpcm450*
2330 F:      arch/arm/mach-npcm/wpcm450.c
2331 F:      drivers/*/*wpcm*
2332
2333 ARM/OPENMOKO NEO FREERUNNER (GTA02) MACHINE SUPPORT
2334 L:      openmoko-kernel@lists.openmoko.org (subscribers-only)
2335 S:      Orphan
2336 W:      http://wiki.openmoko.org/wiki/Neo_FreeRunner
2337 F:      arch/arm/mach-s3c/gta02.h
2338 F:      arch/arm/mach-s3c/mach-gta02.c
2339
2340 ARM/Orion SoC/Technologic Systems TS-78xx platform support
2341 M:      Alexander Clouter <alex@digriz.org.uk>
2342 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2343 S:      Maintained
2344 W:      http://www.digriz.org.uk/ts78xx/kernel
2345 F:      arch/arm/mach-orion5x/ts78xx-*
2346
2347 ARM/OXNAS platform support
2348 M:      Neil Armstrong <narmstrong@baylibre.com>
2349 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2350 L:      linux-oxnas@groups.io (moderated for non-subscribers)
2351 S:      Maintained
2352 F:      arch/arm/boot/dts/ox8*.dts*
2353 F:      arch/arm/mach-oxnas/
2354 F:      drivers/power/reset/oxnas-restart.c
2355 N:      oxnas
2356
2357 ARM/PALM TREO SUPPORT
2358 M:      Tomas Cech <sleep_walker@suse.com>
2359 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2360 S:      Maintained
2361 W:      http://hackndev.com
2362 F:      arch/arm/mach-pxa/palmtreo.*
2363
2364 ARM/PALMTX,PALMT5,PALMLD,PALMTE2,PALMTC SUPPORT
2365 M:      Marek Vasut <marek.vasut@gmail.com>
2366 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2367 S:      Maintained
2368 W:      http://hackndev.com
2369 F:      arch/arm/mach-pxa/include/mach/palmld.h
2370 F:      arch/arm/mach-pxa/include/mach/palmtc.h
2371 F:      arch/arm/mach-pxa/include/mach/palmtx.h
2372 F:      arch/arm/mach-pxa/palmld.c
2373 F:      arch/arm/mach-pxa/palmt5.*
2374 F:      arch/arm/mach-pxa/palmtc.c
2375 F:      arch/arm/mach-pxa/palmte2.*
2376 F:      arch/arm/mach-pxa/palmtx.c
2377
2378 ARM/PALMZ72 SUPPORT
2379 M:      Sergey Lapin <slapin@ossfans.org>
2380 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2381 S:      Maintained
2382 W:      http://hackndev.com
2383 F:      arch/arm/mach-pxa/palmz72.*
2384
2385 ARM/PLEB SUPPORT
2386 M:      Peter Chubb <pleb@gelato.unsw.edu.au>
2387 S:      Maintained
2388 W:      http://www.disy.cse.unsw.edu.au/Hardware/PLEB
2389
2390 ARM/PT DIGITAL BOARD PORT
2391 M:      Stefan Eletzhofer <stefan.eletzhofer@eletztrick.de>
2392 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2393 S:      Maintained
2394 W:      http://www.armlinux.org.uk/
2395
2396 ARM/QUALCOMM SUPPORT
2397 M:      Andy Gross <agross@kernel.org>
2398 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
2399 L:      linux-arm-msm@vger.kernel.org
2400 S:      Maintained
2401 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/qcom/linux.git
2402 F:      Documentation/devicetree/bindings/*/qcom*
2403 F:      Documentation/devicetree/bindings/soc/qcom/
2404 F:      arch/arm/boot/dts/qcom-*.dts
2405 F:      arch/arm/boot/dts/qcom-*.dtsi
2406 F:      arch/arm/mach-qcom/
2407 F:      arch/arm64/boot/dts/qcom/
2408 F:      drivers/*/*/qcom*
2409 F:      drivers/*/*/qcom/
2410 F:      drivers/*/pm8???-*
2411 F:      drivers/*/qcom*
2412 F:      drivers/*/qcom/
2413 F:      drivers/bluetooth/btqcomsmd.c
2414 F:      drivers/clocksource/timer-qcom.c
2415 F:      drivers/cpuidle/cpuidle-qcom-spm.c
2416 F:      drivers/extcon/extcon-qcom*
2417 F:      drivers/i2c/busses/i2c-qcom-geni.c
2418 F:      drivers/i2c/busses/i2c-qup.c
2419 F:      drivers/iommu/msm*
2420 F:      drivers/mfd/ssbi.c
2421 F:      drivers/mmc/host/mmci_qcom*
2422 F:      drivers/mmc/host/sdhci-msm.c
2423 F:      drivers/pci/controller/dwc/pcie-qcom.c
2424 F:      drivers/phy/qualcomm/
2425 F:      drivers/power/*/msm*
2426 F:      drivers/reset/reset-qcom-*
2427 F:      drivers/scsi/ufs/ufs-qcom*
2428 F:      drivers/spi/spi-geni-qcom.c
2429 F:      drivers/spi/spi-qcom-qspi.c
2430 F:      drivers/spi/spi-qup.c
2431 F:      drivers/tty/serial/msm_serial.c
2432 F:      drivers/usb/dwc3/dwc3-qcom.c
2433 F:      include/dt-bindings/*/qcom*
2434 F:      include/linux/*/qcom*
2435 F:      include/linux/soc/qcom/
2436
2437 ARM/RADISYS ENP2611 MACHINE SUPPORT
2438 M:      Lennert Buytenhek <kernel@wantstofly.org>
2439 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2440 S:      Maintained
2441
2442 ARM/RDA MICRO ARCHITECTURE
2443 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
2444 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2445 L:      linux-unisoc@lists.infradead.org (moderated for non-subscribers)
2446 S:      Maintained
2447 F:      Documentation/devicetree/bindings/arm/rda.yaml
2448 F:      Documentation/devicetree/bindings/gpio/gpio-rda.yaml
2449 F:      Documentation/devicetree/bindings/interrupt-controller/rda,8810pl-intc.txt
2450 F:      Documentation/devicetree/bindings/serial/rda,8810pl-uart.txt
2451 F:      Documentation/devicetree/bindings/timer/rda,8810pl-timer.txt
2452 F:      arch/arm/boot/dts/rda8810pl-*
2453 F:      drivers/clocksource/timer-rda.c
2454 F:      drivers/gpio/gpio-rda.c
2455 F:      drivers/irqchip/irq-rda-intc.c
2456 F:      drivers/tty/serial/rda-uart.c
2457
2458 ARM/REALTEK ARCHITECTURE
2459 M:      Andreas Färber <afaerber@suse.de>
2460 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2461 L:      linux-realtek-soc@lists.infradead.org (moderated for non-subscribers)
2462 S:      Maintained
2463 F:      Documentation/devicetree/bindings/arm/realtek.yaml
2464 F:      arch/arm/boot/dts/rtd*
2465 F:      arch/arm/mach-realtek/
2466 F:      arch/arm64/boot/dts/realtek/
2467
2468 ARM/RENESAS ARM64 ARCHITECTURE
2469 M:      Geert Uytterhoeven <geert+renesas@glider.be>
2470 M:      Magnus Damm <magnus.damm@gmail.com>
2471 L:      linux-renesas-soc@vger.kernel.org
2472 S:      Supported
2473 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
2474 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git next
2475 F:      Documentation/devicetree/bindings/arm/renesas.yaml
2476 F:      arch/arm64/boot/dts/renesas/
2477 F:      drivers/soc/renesas/
2478 F:      include/linux/soc/renesas/
2479
2480 ARM/RISCPC ARCHITECTURE
2481 M:      Russell King <linux@armlinux.org.uk>
2482 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2483 S:      Maintained
2484 W:      http://www.armlinux.org.uk/
2485 F:      arch/arm/include/asm/hardware/entry-macro-iomd.S
2486 F:      arch/arm/include/asm/hardware/ioc.h
2487 F:      arch/arm/include/asm/hardware/iomd.h
2488 F:      arch/arm/include/asm/hardware/memc.h
2489 F:      arch/arm/mach-rpc/
2490 F:      drivers/net/ethernet/8390/etherh.c
2491 F:      drivers/net/ethernet/i825xx/ether1*
2492 F:      drivers/net/ethernet/seeq/ether3*
2493 F:      drivers/scsi/arm/
2494
2495 ARM/Rockchip SoC support
2496 M:      Heiko Stuebner <heiko@sntech.de>
2497 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2498 L:      linux-rockchip@lists.infradead.org
2499 S:      Maintained
2500 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmind/linux-rockchip.git
2501 F:      Documentation/devicetree/bindings/i2c/i2c-rk3x.yaml
2502 F:      Documentation/devicetree/bindings/mmc/rockchip-dw-mshc.yaml
2503 F:      Documentation/devicetree/bindings/spi/spi-rockchip.yaml
2504 F:      arch/arm/boot/dts/rk3*
2505 F:      arch/arm/boot/dts/rv1108*
2506 F:      arch/arm/mach-rockchip/
2507 F:      drivers/*/*/*rockchip*
2508 F:      drivers/*/*rockchip*
2509 F:      drivers/clk/rockchip/
2510 F:      drivers/i2c/busses/i2c-rk3x.c
2511 F:      sound/soc/rockchip/
2512 N:      rockchip
2513
2514 ARM/SAMSUNG S3C, S5P AND EXYNOS ARM ARCHITECTURES
2515 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
2516 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2517 L:      linux-samsung-soc@vger.kernel.org
2518 S:      Maintained
2519 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
2520 F:      Documentation/arm/samsung/
2521 F:      Documentation/devicetree/bindings/arm/samsung/
2522 F:      Documentation/devicetree/bindings/power/pd-samsung.yaml
2523 F:      arch/arm/boot/dts/exynos*
2524 F:      arch/arm/boot/dts/s3c*
2525 F:      arch/arm/boot/dts/s5p*
2526 F:      arch/arm/mach-exynos*/
2527 F:      arch/arm/mach-s3c/
2528 F:      arch/arm/mach-s5p*/
2529 F:      arch/arm64/boot/dts/exynos/
2530 F:      drivers/*/*/*s3c24*
2531 F:      drivers/*/*s3c24*
2532 F:      drivers/*/*s3c64xx*
2533 F:      drivers/*/*s5pv210*
2534 F:      drivers/clocksource/samsung_pwm_timer.c
2535 F:      drivers/memory/samsung/
2536 F:      drivers/pwm/pwm-samsung.c
2537 F:      drivers/soc/samsung/
2538 F:      drivers/tty/serial/samsung*
2539 F:      include/clocksource/samsung_pwm.h
2540 F:      include/linux/platform_data/*s3c*
2541 F:      include/linux/serial_s3c.h
2542 F:      include/linux/soc/samsung/
2543 N:      exynos
2544 N:      s3c2410
2545 N:      s3c64xx
2546 N:      s5pv210
2547
2548 ARM/SAMSUNG S5P SERIES 2D GRAPHICS ACCELERATION (G2D) SUPPORT
2549 M:      Andrzej Hajda <a.hajda@samsung.com>
2550 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2551 L:      linux-media@vger.kernel.org
2552 S:      Maintained
2553 F:      drivers/media/platform/s5p-g2d/
2554
2555 ARM/SAMSUNG S5P SERIES HDMI CEC SUBSYSTEM SUPPORT
2556 M:      Marek Szyprowski <m.szyprowski@samsung.com>
2557 L:      linux-samsung-soc@vger.kernel.org
2558 L:      linux-media@vger.kernel.org
2559 S:      Maintained
2560 F:      Documentation/devicetree/bindings/media/s5p-cec.txt
2561 F:      drivers/media/cec/platform/s5p/
2562
2563 ARM/SAMSUNG S5P SERIES JPEG CODEC SUPPORT
2564 M:      Andrzej Pietrasiewicz <andrzejtp2010@gmail.com>
2565 M:      Jacek Anaszewski <jacek.anaszewski@gmail.com>
2566 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
2567 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2568 L:      linux-media@vger.kernel.org
2569 S:      Maintained
2570 F:      drivers/media/platform/s5p-jpeg/
2571
2572 ARM/SAMSUNG S5P SERIES Multi Format Codec (MFC) SUPPORT
2573 M:      Andrzej Hajda <a.hajda@samsung.com>
2574 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2575 L:      linux-media@vger.kernel.org
2576 S:      Maintained
2577 F:      drivers/media/platform/s5p-mfc/
2578
2579 ARM/SHMOBILE ARM ARCHITECTURE
2580 M:      Geert Uytterhoeven <geert+renesas@glider.be>
2581 M:      Magnus Damm <magnus.damm@gmail.com>
2582 L:      linux-renesas-soc@vger.kernel.org
2583 S:      Supported
2584 Q:      http://patchwork.kernel.org/project/linux-renesas-soc/list/
2585 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-devel.git next
2586 F:      Documentation/devicetree/bindings/arm/renesas.yaml
2587 F:      arch/arm/boot/dts/emev2*
2588 F:      arch/arm/boot/dts/gr-peach*
2589 F:      arch/arm/boot/dts/iwg20d-q7*
2590 F:      arch/arm/boot/dts/r7s*
2591 F:      arch/arm/boot/dts/r8a*
2592 F:      arch/arm/boot/dts/r9a*
2593 F:      arch/arm/boot/dts/sh*
2594 F:      arch/arm/configs/shmobile_defconfig
2595 F:      arch/arm/include/debug/renesas-scif.S
2596 F:      arch/arm/mach-shmobile/
2597 F:      drivers/soc/renesas/
2598 F:      include/linux/soc/renesas/
2599
2600 ARM/SOCFPGA ARCHITECTURE
2601 M:      Dinh Nguyen <dinguyen@kernel.org>
2602 S:      Maintained
2603 W:      http://www.rocketboards.org
2604 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
2605 F:      arch/arm/boot/dts/socfpga*
2606 F:      arch/arm/configs/socfpga_defconfig
2607 F:      arch/arm/mach-socfpga/
2608 F:      arch/arm64/boot/dts/altera/
2609 F:      arch/arm64/boot/dts/intel/
2610
2611 ARM/SOCFPGA CLOCK FRAMEWORK SUPPORT
2612 M:      Dinh Nguyen <dinguyen@kernel.org>
2613 S:      Maintained
2614 F:      drivers/clk/socfpga/
2615
2616 ARM/SOCFPGA EDAC SUPPORT
2617 M:      Dinh Nguyen <dinguyen@kernel.org>
2618 S:      Maintained
2619 F:      drivers/edac/altera_edac.[ch]
2620
2621 ARM/SPREADTRUM SoC SUPPORT
2622 M:      Orson Zhai <orsonzhai@gmail.com>
2623 M:      Baolin Wang <baolin.wang7@gmail.com>
2624 M:      Chunyan Zhang <zhang.lyra@gmail.com>
2625 S:      Maintained
2626 F:      arch/arm64/boot/dts/sprd
2627 N:      sprd
2628 N:      sc27xx
2629 N:      sc2731
2630
2631 ARM/STI ARCHITECTURE
2632 M:      Patrice Chotard <patrice.chotard@foss.st.com>
2633 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2634 S:      Maintained
2635 W:      http://www.stlinux.com
2636 F:      Documentation/devicetree/bindings/i2c/i2c-st.txt
2637 F:      arch/arm/boot/dts/sti*
2638 F:      arch/arm/mach-sti/
2639 F:      drivers/ata/ahci_st.c
2640 F:      drivers/char/hw_random/st-rng.c
2641 F:      drivers/clocksource/arm_global_timer.c
2642 F:      drivers/clocksource/clksrc_st_lpc.c
2643 F:      drivers/cpufreq/sti-cpufreq.c
2644 F:      drivers/dma/st_fdma*
2645 F:      drivers/i2c/busses/i2c-st.c
2646 F:      drivers/media/platform/sti/c8sectpfe/
2647 F:      drivers/media/rc/st_rc.c
2648 F:      drivers/mmc/host/sdhci-st.c
2649 F:      drivers/phy/st/phy-miphy28lp.c
2650 F:      drivers/phy/st/phy-stih407-usb.c
2651 F:      drivers/pinctrl/pinctrl-st.c
2652 F:      drivers/remoteproc/st_remoteproc.c
2653 F:      drivers/remoteproc/st_slim_rproc.c
2654 F:      drivers/reset/sti/
2655 F:      drivers/rtc/rtc-st-lpc.c
2656 F:      drivers/tty/serial/st-asc.c
2657 F:      drivers/usb/dwc3/dwc3-st.c
2658 F:      drivers/usb/host/ehci-st.c
2659 F:      drivers/usb/host/ohci-st.c
2660 F:      drivers/watchdog/st_lpc_wdt.c
2661 F:      include/linux/remoteproc/st_slim_rproc.h
2662
2663 ARM/STM32 ARCHITECTURE
2664 M:      Maxime Coquelin <mcoquelin.stm32@gmail.com>
2665 M:      Alexandre Torgue <alexandre.torgue@foss.st.com>
2666 L:      linux-stm32@st-md-mailman.stormreply.com (moderated for non-subscribers)
2667 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2668 S:      Maintained
2669 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/atorgue/stm32.git stm32-next
2670 F:      arch/arm/boot/dts/stm32*
2671 F:      arch/arm/mach-stm32/
2672 F:      drivers/clocksource/armv7m_systick.c
2673 N:      stm32
2674 N:      stm
2675
2676 ARM/Synaptics SoC support
2677 M:      Jisheng Zhang <Jisheng.Zhang@synaptics.com>
2678 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
2679 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2680 S:      Maintained
2681 F:      arch/arm/boot/dts/berlin*
2682 F:      arch/arm/mach-berlin/
2683 F:      arch/arm64/boot/dts/synaptics/
2684
2685 ARM/TECHNOLOGIC SYSTEMS TS7250 MACHINE SUPPORT
2686 M:      Lennert Buytenhek <kernel@wantstofly.org>
2687 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2688 S:      Maintained
2689
2690 ARM/TEGRA HDMI CEC SUBSYSTEM SUPPORT
2691 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
2692 L:      linux-tegra@vger.kernel.org
2693 L:      linux-media@vger.kernel.org
2694 S:      Maintained
2695 F:      Documentation/devicetree/bindings/media/tegra-cec.txt
2696 F:      drivers/media/cec/platform/tegra/
2697
2698 ARM/TETON BGA MACHINE SUPPORT
2699 M:      "Mark F. Brown" <mark.brown314@gmail.com>
2700 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2701 S:      Maintained
2702
2703 ARM/TEXAS INSTRUMENT AEMIF/EMIF DRIVERS
2704 M:      Santosh Shilimkar <ssantosh@kernel.org>
2705 L:      linux-kernel@vger.kernel.org
2706 S:      Maintained
2707 F:      drivers/memory/*emif*
2708
2709 ARM/TEXAS INSTRUMENT KEYSTONE ARCHITECTURE
2710 M:      Santosh Shilimkar <ssantosh@kernel.org>
2711 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2712 S:      Maintained
2713 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
2714 F:      arch/arm/boot/dts/keystone-*
2715 F:      arch/arm/mach-keystone/
2716
2717 ARM/TEXAS INSTRUMENT KEYSTONE CLOCK FRAMEWORK
2718 M:      Santosh Shilimkar <ssantosh@kernel.org>
2719 L:      linux-kernel@vger.kernel.org
2720 S:      Maintained
2721 F:      drivers/clk/keystone/
2722
2723 ARM/TEXAS INSTRUMENT KEYSTONE CLOCKSOURCE
2724 M:      Santosh Shilimkar <ssantosh@kernel.org>
2725 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2726 L:      linux-kernel@vger.kernel.org
2727 S:      Maintained
2728 F:      drivers/clocksource/timer-keystone.c
2729
2730 ARM/TEXAS INSTRUMENT KEYSTONE RESET DRIVER
2731 M:      Santosh Shilimkar <ssantosh@kernel.org>
2732 L:      linux-kernel@vger.kernel.org
2733 S:      Maintained
2734 F:      drivers/power/reset/keystone-reset.c
2735
2736 ARM/TEXAS INSTRUMENTS K3 ARCHITECTURE
2737 M:      Nishanth Menon <nm@ti.com>
2738 M:      Vignesh Raghavendra <vigneshr@ti.com>
2739 M:      Tero Kristo <kristo@kernel.org>
2740 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2741 S:      Supported
2742 F:      Documentation/devicetree/bindings/arm/ti/k3.yaml
2743 F:      arch/arm64/boot/dts/ti/Makefile
2744 F:      arch/arm64/boot/dts/ti/k3-*
2745 F:      include/dt-bindings/pinctrl/k3.h
2746
2747 ARM/THECUS N2100 MACHINE SUPPORT
2748 M:      Lennert Buytenhek <kernel@wantstofly.org>
2749 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2750 S:      Maintained
2751
2752 ARM/TOSA MACHINE SUPPORT
2753 M:      Dmitry Eremin-Solenikov <dbaryshkov@gmail.com>
2754 M:      Dirk Opfer <dirk@opfer-online.de>
2755 S:      Maintained
2756
2757 ARM/TOSHIBA VISCONTI ARCHITECTURE
2758 M:      Nobuhiro Iwamatsu <nobuhiro1.iwamatsu@toshiba.co.jp>
2759 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2760 S:      Supported
2761 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwamatsu/linux-visconti.git
2762 F:      Documentation/devicetree/bindings/arm/toshiba.yaml
2763 F:      Documentation/devicetree/bindings/net/toshiba,visconti-dwmac.yaml
2764 F:      Documentation/devicetree/bindings/gpio/toshiba,gpio-visconti.yaml
2765 F:      Documentation/devicetree/bindings/pci/toshiba,visconti-pcie.yaml
2766 F:      Documentation/devicetree/bindings/pinctrl/toshiba,tmpv7700-pinctrl.yaml
2767 F:      Documentation/devicetree/bindings/watchdog/toshiba,visconti-wdt.yaml
2768 F:      arch/arm64/boot/dts/toshiba/
2769 F:      drivers/net/ethernet/stmicro/stmmac/dwmac-visconti.c
2770 F:      drivers/gpio/gpio-visconti.c
2771 F:      drivers/pci/controller/dwc/pcie-visconti.c
2772 F:      drivers/pinctrl/visconti/
2773 F:      drivers/watchdog/visconti_wdt.c
2774 N:      visconti
2775
2776 ARM/UNIPHIER ARCHITECTURE
2777 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
2778 M:      Masami Hiramatsu <mhiramat@kernel.org>
2779 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2780 S:      Maintained
2781 F:      Documentation/devicetree/bindings/arm/socionext/uniphier.yaml
2782 F:      Documentation/devicetree/bindings/gpio/socionext,uniphier-gpio.yaml
2783 F:      Documentation/devicetree/bindings/pinctrl/socionext,uniphier-pinctrl.yaml
2784 F:      arch/arm/boot/dts/uniphier*
2785 F:      arch/arm/include/asm/hardware/cache-uniphier.h
2786 F:      arch/arm/mach-uniphier/
2787 F:      arch/arm/mm/cache-uniphier.c
2788 F:      arch/arm64/boot/dts/socionext/uniphier*
2789 F:      drivers/bus/uniphier-system-bus.c
2790 F:      drivers/clk/uniphier/
2791 F:      drivers/dma/uniphier-mdmac.c
2792 F:      drivers/gpio/gpio-uniphier.c
2793 F:      drivers/i2c/busses/i2c-uniphier*
2794 F:      drivers/irqchip/irq-uniphier-aidet.c
2795 F:      drivers/mmc/host/uniphier-sd.c
2796 F:      drivers/pinctrl/uniphier/
2797 F:      drivers/reset/reset-uniphier.c
2798 F:      drivers/tty/serial/8250/8250_uniphier.c
2799 N:      uniphier
2800
2801 ARM/VERSATILE EXPRESS PLATFORM
2802 M:      Liviu Dudau <liviu.dudau@arm.com>
2803 M:      Sudeep Holla <sudeep.holla@arm.com>
2804 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
2805 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2806 S:      Maintained
2807 F:      */*/*/vexpress*
2808 F:      */*/vexpress*
2809 F:      arch/arm/boot/dts/vexpress*
2810 F:      arch/arm/mach-vexpress/
2811 F:      arch/arm64/boot/dts/arm/
2812 F:      drivers/clk/versatile/clk-vexpress-osc.c
2813 F:      drivers/clocksource/timer-versatile.c
2814 N:      mps2
2815
2816 ARM/VFP SUPPORT
2817 M:      Russell King <linux@armlinux.org.uk>
2818 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2819 S:      Maintained
2820 W:      http://www.armlinux.org.uk/
2821 F:      arch/arm/vfp/
2822
2823 ARM/VOIPAC PXA270 SUPPORT
2824 M:      Marek Vasut <marek.vasut@gmail.com>
2825 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2826 S:      Maintained
2827 F:      arch/arm/mach-pxa/include/mach/vpac270.h
2828 F:      arch/arm/mach-pxa/vpac270.c
2829
2830 ARM/VT8500 ARM ARCHITECTURE
2831 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2832 S:      Orphan
2833 F:      Documentation/devicetree/bindings/i2c/i2c-wmt.txt
2834 F:      arch/arm/mach-vt8500/
2835 F:      drivers/clocksource/timer-vt8500.c
2836 F:      drivers/i2c/busses/i2c-wmt.c
2837 F:      drivers/mmc/host/wmt-sdmmc.c
2838 F:      drivers/pwm/pwm-vt8500.c
2839 F:      drivers/rtc/rtc-vt8500.c
2840 F:      drivers/tty/serial/vt8500_serial.c
2841 F:      drivers/usb/host/ehci-platform.c
2842 F:      drivers/usb/host/uhci-platform.c
2843 F:      drivers/video/fbdev/vt8500lcdfb.*
2844 F:      drivers/video/fbdev/wm8505fb*
2845 F:      drivers/video/fbdev/wmt_ge_rops.*
2846
2847 ARM/ZIPIT Z2 SUPPORT
2848 M:      Marek Vasut <marek.vasut@gmail.com>
2849 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2850 S:      Maintained
2851 F:      arch/arm/mach-pxa/include/mach/z2.h
2852 F:      arch/arm/mach-pxa/z2.c
2853
2854 ARM/ZYNQ ARCHITECTURE
2855 M:      Michal Simek <michal.simek@xilinx.com>
2856 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2857 S:      Supported
2858 W:      http://wiki.xilinx.com
2859 T:      git https://github.com/Xilinx/linux-xlnx.git
2860 F:      Documentation/devicetree/bindings/i2c/cdns,i2c-r1p10.yaml
2861 F:      Documentation/devicetree/bindings/i2c/xlnx,xps-iic-2.00.a.yaml
2862 F:      Documentation/devicetree/bindings/spi/xlnx,zynq-qspi.yaml
2863 F:      arch/arm/mach-zynq/
2864 F:      drivers/clocksource/timer-cadence-ttc.c
2865 F:      drivers/cpuidle/cpuidle-zynq.c
2866 F:      drivers/edac/synopsys_edac.c
2867 F:      drivers/i2c/busses/i2c-cadence.c
2868 F:      drivers/i2c/busses/i2c-xiic.c
2869 F:      drivers/mmc/host/sdhci-of-arasan.c
2870 N:      zynq
2871 N:      xilinx
2872
2873 ARM64 PORT (AARCH64 ARCHITECTURE)
2874 M:      Catalin Marinas <catalin.marinas@arm.com>
2875 M:      Will Deacon <will@kernel.org>
2876 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
2877 S:      Maintained
2878 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux.git
2879 F:      Documentation/arm64/
2880 F:      arch/arm64/
2881 F:      tools/testing/selftests/arm64/
2882 X:      arch/arm64/boot/dts/
2883
2884 ARROW SPEEDCHIPS XRS7000 SERIES ETHERNET SWITCH DRIVER
2885 M:      George McCollister <george.mccollister@gmail.com>
2886 L:      netdev@vger.kernel.org
2887 S:      Maintained
2888 F:      Documentation/devicetree/bindings/net/dsa/arrow,xrs700x.yaml
2889 F:      drivers/net/dsa/xrs700x/*
2890 F:      net/dsa/tag_xrs700x.c
2891
2892 AS3645A LED FLASH CONTROLLER DRIVER
2893 M:      Sakari Ailus <sakari.ailus@iki.fi>
2894 L:      linux-leds@vger.kernel.org
2895 S:      Maintained
2896 F:      drivers/leds/flash/leds-as3645a.c
2897
2898 ASAHI KASEI AK7375 LENS VOICE COIL DRIVER
2899 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
2900 L:      linux-media@vger.kernel.org
2901 S:      Maintained
2902 T:      git git://linuxtv.org/media_tree.git
2903 F:      Documentation/devicetree/bindings/media/i2c/ak7375.txt
2904 F:      drivers/media/i2c/ak7375.c
2905
2906 ASAHI KASEI AK8974 DRIVER
2907 M:      Linus Walleij <linus.walleij@linaro.org>
2908 L:      linux-iio@vger.kernel.org
2909 S:      Supported
2910 W:      http://www.akm.com/
2911 F:      drivers/iio/magnetometer/ak8974.c
2912
2913 ASC7621 HARDWARE MONITOR DRIVER
2914 M:      George Joseph <george.joseph@fairview5.com>
2915 L:      linux-hwmon@vger.kernel.org
2916 S:      Maintained
2917 F:      Documentation/hwmon/asc7621.rst
2918 F:      drivers/hwmon/asc7621.c
2919
2920 ASPEED PINCTRL DRIVERS
2921 M:      Andrew Jeffery <andrew@aj.id.au>
2922 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
2923 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2924 L:      linux-gpio@vger.kernel.org
2925 S:      Maintained
2926 F:      Documentation/devicetree/bindings/pinctrl/aspeed,*
2927 F:      drivers/pinctrl/aspeed/
2928
2929 ASPEED SCU INTERRUPT CONTROLLER DRIVER
2930 M:      Eddie James <eajames@linux.ibm.com>
2931 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
2932 S:      Maintained
2933 F:      Documentation/devicetree/bindings/interrupt-controller/aspeed,ast2xxx-scu-ic.txt
2934 F:      drivers/irqchip/irq-aspeed-scu-ic.c
2935 F:      include/dt-bindings/interrupt-controller/aspeed-scu-ic.h
2936
2937 ASPEED SD/MMC DRIVER
2938 M:      Andrew Jeffery <andrew@aj.id.au>
2939 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
2940 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2941 L:      linux-mmc@vger.kernel.org
2942 S:      Maintained
2943 F:      Documentation/devicetree/bindings/mmc/aspeed,sdhci.yaml
2944 F:      drivers/mmc/host/sdhci-of-aspeed*
2945
2946 ASPEED VIDEO ENGINE DRIVER
2947 M:      Eddie James <eajames@linux.ibm.com>
2948 L:      linux-media@vger.kernel.org
2949 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
2950 S:      Maintained
2951 F:      Documentation/devicetree/bindings/media/aspeed-video.txt
2952 F:      drivers/media/platform/aspeed-video.c
2953
2954 ASUS NOTEBOOKS AND EEEPC ACPI/WMI EXTRAS DRIVERS
2955 M:      Corentin Chary <corentin.chary@gmail.com>
2956 L:      acpi4asus-user@lists.sourceforge.net
2957 L:      platform-driver-x86@vger.kernel.org
2958 S:      Maintained
2959 W:      http://acpi4asus.sf.net
2960 F:      drivers/platform/x86/asus*.c
2961 F:      drivers/platform/x86/eeepc*.c
2962
2963 ASUS WIRELESS RADIO CONTROL DRIVER
2964 M:      João Paulo Rechi Vita <jprvita@gmail.com>
2965 L:      platform-driver-x86@vger.kernel.org
2966 S:      Maintained
2967 F:      drivers/platform/x86/asus-wireless.c
2968
2969 ASYMMETRIC KEYS
2970 M:      David Howells <dhowells@redhat.com>
2971 L:      keyrings@vger.kernel.org
2972 S:      Maintained
2973 F:      Documentation/crypto/asymmetric-keys.rst
2974 F:      crypto/asymmetric_keys/
2975 F:      include/crypto/pkcs7.h
2976 F:      include/crypto/public_key.h
2977 F:      include/linux/verification.h
2978
2979 ASYNCHRONOUS TRANSFERS/TRANSFORMS (IOAT) API
2980 R:      Dan Williams <dan.j.williams@intel.com>
2981 S:      Odd fixes
2982 W:      http://sourceforge.net/projects/xscaleiop
2983 F:      Documentation/crypto/async-tx-api.rst
2984 F:      crypto/async_tx/
2985 F:      include/linux/async_tx.h
2986
2987 AT24 EEPROM DRIVER
2988 M:      Bartosz Golaszewski <brgl@bgdev.pl>
2989 L:      linux-i2c@vger.kernel.org
2990 S:      Maintained
2991 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux.git
2992 F:      Documentation/devicetree/bindings/eeprom/at24.yaml
2993 F:      drivers/misc/eeprom/at24.c
2994
2995 ATA OVER ETHERNET (AOE) DRIVER
2996 M:      "Justin Sanders" <justin@coraid.com>
2997 S:      Supported
2998 W:      http://www.openaoe.org/
2999 F:      Documentation/admin-guide/aoe/
3000 F:      drivers/block/aoe/
3001
3002 ATC260X PMIC MFD DRIVER
3003 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
3004 M:      Cristian Ciocaltea <cristian.ciocaltea@gmail.com>
3005 L:      linux-actions@lists.infradead.org
3006 S:      Maintained
3007 F:      Documentation/devicetree/bindings/mfd/actions,atc260x.yaml
3008 F:      drivers/input/misc/atc260x-onkey.c
3009 F:      drivers/mfd/atc260*
3010 F:      drivers/power/reset/atc260x-poweroff.c
3011 F:      drivers/regulator/atc260x-regulator.c
3012 F:      include/linux/mfd/atc260x/*
3013
3014 ATHEROS 71XX/9XXX GPIO DRIVER
3015 M:      Alban Bedel <albeu@free.fr>
3016 S:      Maintained
3017 W:      https://github.com/AlbanBedel/linux
3018 T:      git git://github.com/AlbanBedel/linux
3019 F:      Documentation/devicetree/bindings/gpio/gpio-ath79.txt
3020 F:      drivers/gpio/gpio-ath79.c
3021
3022 ATHEROS 71XX/9XXX USB PHY DRIVER
3023 M:      Alban Bedel <albeu@free.fr>
3024 S:      Maintained
3025 W:      https://github.com/AlbanBedel/linux
3026 T:      git git://github.com/AlbanBedel/linux
3027 F:      Documentation/devicetree/bindings/phy/phy-ath79-usb.txt
3028 F:      drivers/phy/qualcomm/phy-ath79-usb.c
3029
3030 ATHEROS ATH GENERIC UTILITIES
3031 M:      Kalle Valo <kvalo@codeaurora.org>
3032 L:      linux-wireless@vger.kernel.org
3033 S:      Supported
3034 F:      drivers/net/wireless/ath/*
3035
3036 ATHEROS ATH5K WIRELESS DRIVER
3037 M:      Jiri Slaby <jirislaby@kernel.org>
3038 M:      Nick Kossifidis <mickflemm@gmail.com>
3039 M:      Luis Chamberlain <mcgrof@kernel.org>
3040 L:      linux-wireless@vger.kernel.org
3041 S:      Maintained
3042 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath5k
3043 F:      drivers/net/wireless/ath/ath5k/
3044
3045 ATHEROS ATH6KL WIRELESS DRIVER
3046 M:      Kalle Valo <kvalo@codeaurora.org>
3047 L:      linux-wireless@vger.kernel.org
3048 S:      Supported
3049 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath6kl
3050 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
3051 F:      drivers/net/wireless/ath/ath6kl/
3052
3053 ATI_REMOTE2 DRIVER
3054 M:      Ville Syrjala <syrjala@sci.fi>
3055 S:      Maintained
3056 F:      drivers/input/misc/ati_remote2.c
3057
3058 ATK0110 HWMON DRIVER
3059 M:      Luca Tettamanti <kronos.it@gmail.com>
3060 L:      linux-hwmon@vger.kernel.org
3061 S:      Maintained
3062 F:      drivers/hwmon/asus_atk0110.c
3063
3064 ATLX ETHERNET DRIVERS
3065 M:      Chris Snook <chris.snook@gmail.com>
3066 L:      netdev@vger.kernel.org
3067 S:      Maintained
3068 W:      http://sourceforge.net/projects/atl1
3069 W:      http://atl1.sourceforge.net
3070 F:      drivers/net/ethernet/atheros/
3071
3072 ATM
3073 M:      Chas Williams <3chas3@gmail.com>
3074 L:      linux-atm-general@lists.sourceforge.net (moderated for non-subscribers)
3075 L:      netdev@vger.kernel.org
3076 S:      Maintained
3077 W:      http://linux-atm.sourceforge.net
3078 F:      drivers/atm/
3079 F:      include/linux/atm*
3080 F:      include/uapi/linux/atm*
3081
3082 ATMEL MACB ETHERNET DRIVER
3083 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
3084 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
3085 S:      Supported
3086 F:      drivers/net/ethernet/cadence/
3087
3088 ATMEL MAXTOUCH DRIVER
3089 M:      Nick Dyer <nick@shmanahar.org>
3090 S:      Maintained
3091 T:      git git://github.com/ndyer/linux.git
3092 F:      Documentation/devicetree/bindings/input/atmel,maxtouch.yaml
3093 F:      drivers/input/touchscreen/atmel_mxt_ts.c
3094
3095 ATMEL WIRELESS DRIVER
3096 M:      Simon Kelley <simon@thekelleys.org.uk>
3097 L:      linux-wireless@vger.kernel.org
3098 S:      Maintained
3099 W:      http://www.thekelleys.org.uk/atmel
3100 W:      http://atmelwlandriver.sourceforge.net/
3101 F:      drivers/net/wireless/atmel/atmel*
3102
3103 ATOMIC INFRASTRUCTURE
3104 M:      Will Deacon <will@kernel.org>
3105 M:      Peter Zijlstra <peterz@infradead.org>
3106 R:      Boqun Feng <boqun.feng@gmail.com>
3107 L:      linux-kernel@vger.kernel.org
3108 S:      Maintained
3109 F:      arch/*/include/asm/atomic*.h
3110 F:      include/*/atomic*.h
3111 F:      include/linux/refcount.h
3112 F:      Documentation/atomic_*.txt
3113 F:      scripts/atomic/
3114
3115 ATTO EXPRESSSAS SAS/SATA RAID SCSI DRIVER
3116 M:      Bradley Grove <linuxdrivers@attotech.com>
3117 L:      linux-scsi@vger.kernel.org
3118 S:      Supported
3119 W:      http://www.attotech.com
3120 F:      drivers/scsi/esas2r
3121
3122 ATUSB IEEE 802.15.4 RADIO DRIVER
3123 M:      Stefan Schmidt <stefan@datenfreihafen.org>
3124 L:      linux-wpan@vger.kernel.org
3125 S:      Maintained
3126 F:      drivers/net/ieee802154/at86rf230.h
3127 F:      drivers/net/ieee802154/atusb.c
3128 F:      drivers/net/ieee802154/atusb.h
3129
3130 AUDIT SUBSYSTEM
3131 M:      Paul Moore <paul@paul-moore.com>
3132 M:      Eric Paris <eparis@redhat.com>
3133 L:      linux-audit@redhat.com (moderated for non-subscribers)
3134 S:      Supported
3135 W:      https://github.com/linux-audit
3136 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/audit.git
3137 F:      include/asm-generic/audit_*.h
3138 F:      include/linux/audit.h
3139 F:      include/uapi/linux/audit.h
3140 F:      kernel/audit*
3141 F:      lib/*audit.c
3142
3143 AUXILIARY DISPLAY DRIVERS
3144 M:      Miguel Ojeda <ojeda@kernel.org>
3145 S:      Maintained
3146 F:      drivers/auxdisplay/
3147 F:      include/linux/cfag12864b.h
3148
3149 AVIA HX711 ANALOG DIGITAL CONVERTER IIO DRIVER
3150 M:      Andreas Klinger <ak@it-klinger.de>
3151 L:      linux-iio@vger.kernel.org
3152 S:      Maintained
3153 F:      Documentation/devicetree/bindings/iio/adc/avia-hx711.yaml
3154 F:      drivers/iio/adc/hx711.c
3155
3156 AX.25 NETWORK LAYER
3157 M:      Ralf Baechle <ralf@linux-mips.org>
3158 L:      linux-hams@vger.kernel.org
3159 S:      Maintained
3160 W:      http://www.linux-ax25.org/
3161 F:      include/net/ax25.h
3162 F:      include/uapi/linux/ax25.h
3163 F:      net/ax25/
3164
3165 AXENTIA ARM DEVICES
3166 M:      Peter Rosin <peda@axentia.se>
3167 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3168 S:      Maintained
3169 F:      arch/arm/boot/dts/at91-linea.dtsi
3170 F:      arch/arm/boot/dts/at91-natte.dtsi
3171 F:      arch/arm/boot/dts/at91-nattis-2-natte-2.dts
3172 F:      arch/arm/boot/dts/at91-tse850-3.dts
3173
3174 AXENTIA ASOC DRIVERS
3175 M:      Peter Rosin <peda@axentia.se>
3176 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
3177 S:      Maintained
3178 F:      Documentation/devicetree/bindings/sound/axentia,*
3179 F:      sound/soc/atmel/tse850-pcm5142.c
3180
3181 AXI-FAN-CONTROL HARDWARE MONITOR DRIVER
3182 M:      Nuno Sá <nuno.sa@analog.com>
3183 L:      linux-hwmon@vger.kernel.org
3184 S:      Supported
3185 W:      http://ez.analog.com/community/linux-device-drivers
3186 F:      Documentation/devicetree/bindings/hwmon/adi,axi-fan-control.yaml
3187 F:      drivers/hwmon/axi-fan-control.c
3188
3189 AXXIA I2C CONTROLLER
3190 M:      Krzysztof Adamski <krzysztof.adamski@nokia.com>
3191 L:      linux-i2c@vger.kernel.org
3192 S:      Maintained
3193 F:      Documentation/devicetree/bindings/i2c/i2c-axxia.txt
3194 F:      drivers/i2c/busses/i2c-axxia.c
3195
3196 AZ6007 DVB DRIVER
3197 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
3198 L:      linux-media@vger.kernel.org
3199 S:      Maintained
3200 W:      https://linuxtv.org
3201 T:      git git://linuxtv.org/media_tree.git
3202 F:      drivers/media/usb/dvb-usb-v2/az6007.c
3203
3204 AZTECH FM RADIO RECEIVER DRIVER
3205 M:      Hans Verkuil <hverkuil@xs4all.nl>
3206 L:      linux-media@vger.kernel.org
3207 S:      Maintained
3208 W:      https://linuxtv.org
3209 T:      git git://linuxtv.org/media_tree.git
3210 F:      drivers/media/radio/radio-aztech*
3211
3212 B43 WIRELESS DRIVER
3213 L:      linux-wireless@vger.kernel.org
3214 L:      b43-dev@lists.infradead.org
3215 S:      Odd Fixes
3216 W:      https://wireless.wiki.kernel.org/en/users/Drivers/b43
3217 F:      drivers/net/wireless/broadcom/b43/
3218
3219 B43LEGACY WIRELESS DRIVER
3220 M:      Larry Finger <Larry.Finger@lwfinger.net>
3221 L:      linux-wireless@vger.kernel.org
3222 L:      b43-dev@lists.infradead.org
3223 S:      Maintained
3224 W:      https://wireless.wiki.kernel.org/en/users/Drivers/b43
3225 F:      drivers/net/wireless/broadcom/b43legacy/
3226
3227 BACKLIGHT CLASS/SUBSYSTEM
3228 M:      Lee Jones <lee.jones@linaro.org>
3229 M:      Daniel Thompson <daniel.thompson@linaro.org>
3230 M:      Jingoo Han <jingoohan1@gmail.com>
3231 L:      dri-devel@lists.freedesktop.org
3232 S:      Maintained
3233 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/backlight.git
3234 F:      Documentation/ABI/stable/sysfs-class-backlight
3235 F:      Documentation/ABI/testing/sysfs-class-backlight
3236 F:      Documentation/devicetree/bindings/leds/backlight
3237 F:      drivers/video/backlight/
3238 F:      include/linux/backlight.h
3239 F:      include/linux/pwm_backlight.h
3240
3241 BATMAN ADVANCED
3242 M:      Marek Lindner <mareklindner@neomailbox.ch>
3243 M:      Simon Wunderlich <sw@simonwunderlich.de>
3244 M:      Antonio Quartulli <a@unstable.cc>
3245 M:      Sven Eckelmann <sven@narfation.org>
3246 L:      b.a.t.m.a.n@lists.open-mesh.org (moderated for non-subscribers)
3247 S:      Maintained
3248 W:      https://www.open-mesh.org/
3249 Q:      https://patchwork.open-mesh.org/project/batman/list/
3250 B:      https://www.open-mesh.org/projects/batman-adv/issues
3251 C:      ircs://irc.hackint.org/batadv
3252 T:      git https://git.open-mesh.org/linux-merge.git
3253 F:      Documentation/networking/batman-adv.rst
3254 F:      include/uapi/linux/batadv_packet.h
3255 F:      include/uapi/linux/batman_adv.h
3256 F:      net/batman-adv/
3257
3258 BAYCOM/HDLCDRV DRIVERS FOR AX.25
3259 M:      Thomas Sailer <t.sailer@alumni.ethz.ch>
3260 L:      linux-hams@vger.kernel.org
3261 S:      Maintained
3262 W:      http://www.baycom.org/~tom/ham/ham.html
3263 F:      drivers/net/hamradio/baycom*
3264
3265 BCACHE (BLOCK LAYER CACHE)
3266 M:      Coly Li <colyli@suse.de>
3267 M:      Kent Overstreet <kent.overstreet@gmail.com>
3268 L:      linux-bcache@vger.kernel.org
3269 S:      Maintained
3270 W:      http://bcache.evilpiepirate.org
3271 C:      irc://irc.oftc.net/bcache
3272 F:      drivers/md/bcache/
3273
3274 BDISP ST MEDIA DRIVER
3275 M:      Fabien Dessenne <fabien.dessenne@foss.st.com>
3276 L:      linux-media@vger.kernel.org
3277 S:      Supported
3278 W:      https://linuxtv.org
3279 T:      git git://linuxtv.org/media_tree.git
3280 F:      drivers/media/platform/sti/bdisp
3281
3282 BECKHOFF CX5020 ETHERCAT MASTER DRIVER
3283 M:      Dariusz Marcinkiewicz <reksio@newterm.pl>
3284 L:      netdev@vger.kernel.org
3285 S:      Maintained
3286 F:      drivers/net/ethernet/ec_bhf.c
3287
3288 BEFS FILE SYSTEM
3289 M:      Luis de Bethencourt <luisbg@kernel.org>
3290 M:      Salah Triki <salah.triki@gmail.com>
3291 S:      Maintained
3292 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luisbg/linux-befs.git
3293 F:      Documentation/filesystems/befs.rst
3294 F:      fs/befs/
3295
3296 BFQ I/O SCHEDULER
3297 M:      Paolo Valente <paolo.valente@linaro.org>
3298 M:      Jens Axboe <axboe@kernel.dk>
3299 L:      linux-block@vger.kernel.org
3300 S:      Maintained
3301 F:      Documentation/block/bfq-iosched.rst
3302 F:      block/bfq-*
3303
3304 BFS FILE SYSTEM
3305 M:      "Tigran A. Aivazian" <aivazian.tigran@gmail.com>
3306 S:      Maintained
3307 F:      Documentation/filesystems/bfs.rst
3308 F:      fs/bfs/
3309 F:      include/uapi/linux/bfs_fs.h
3310
3311 BITMAP API
3312 M:      Yury Norov <yury.norov@gmail.com>
3313 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
3314 R:      Rasmus Villemoes <linux@rasmusvillemoes.dk>
3315 S:      Maintained
3316 F:      include/asm-generic/bitops/find.h
3317 F:      include/linux/bitmap.h
3318 F:      lib/bitmap.c
3319 F:      lib/find_bit.c
3320 F:      lib/find_bit_benchmark.c
3321 F:      lib/test_bitmap.c
3322 F:      tools/include/asm-generic/bitops/find.h
3323 F:      tools/include/linux/bitmap.h
3324 F:      tools/lib/bitmap.c
3325 F:      tools/lib/find_bit.c
3326
3327 BLINKM RGB LED DRIVER
3328 M:      Jan-Simon Moeller <jansimon.moeller@gmx.de>
3329 S:      Maintained
3330 F:      drivers/leds/leds-blinkm.c
3331
3332 BLOCK LAYER
3333 M:      Jens Axboe <axboe@kernel.dk>
3334 L:      linux-block@vger.kernel.org
3335 S:      Maintained
3336 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
3337 F:      block/
3338 F:      drivers/block/
3339 F:      include/linux/blk*
3340 F:      kernel/trace/blktrace.c
3341 F:      lib/sbitmap.c
3342
3343 BLOCK2MTD DRIVER
3344 M:      Joern Engel <joern@lazybastard.org>
3345 L:      linux-mtd@lists.infradead.org
3346 S:      Maintained
3347 F:      drivers/mtd/devices/block2mtd.c
3348
3349 BLUETOOTH DRIVERS
3350 M:      Marcel Holtmann <marcel@holtmann.org>
3351 M:      Johan Hedberg <johan.hedberg@gmail.com>
3352 M:      Luiz Augusto von Dentz <luiz.dentz@gmail.com>
3353 L:      linux-bluetooth@vger.kernel.org
3354 S:      Supported
3355 W:      http://www.bluez.org/
3356 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3357 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3358 F:      drivers/bluetooth/
3359
3360 BLUETOOTH SUBSYSTEM
3361 M:      Marcel Holtmann <marcel@holtmann.org>
3362 M:      Johan Hedberg <johan.hedberg@gmail.com>
3363 M:      Luiz Augusto von Dentz <luiz.dentz@gmail.com>
3364 L:      linux-bluetooth@vger.kernel.org
3365 S:      Supported
3366 W:      http://www.bluez.org/
3367 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth.git
3368 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth/bluetooth-next.git
3369 F:      include/net/bluetooth/
3370 F:      net/bluetooth/
3371
3372 BONDING DRIVER
3373 M:      Jay Vosburgh <j.vosburgh@gmail.com>
3374 M:      Veaceslav Falico <vfalico@gmail.com>
3375 M:      Andy Gospodarek <andy@greyhouse.net>
3376 L:      netdev@vger.kernel.org
3377 S:      Supported
3378 W:      http://sourceforge.net/projects/bonding/
3379 F:      drivers/net/bonding/
3380 F:      include/net/bonding.h
3381 F:      include/uapi/linux/if_bonding.h
3382
3383 BOSCH SENSORTEC BMA400 ACCELEROMETER IIO DRIVER
3384 M:      Dan Robertson <dan@dlrobertson.com>
3385 L:      linux-iio@vger.kernel.org
3386 S:      Maintained
3387 F:      Documentation/devicetree/bindings/iio/accel/bosch,bma400.yaml
3388 F:      drivers/iio/accel/bma400*
3389
3390 BPF (Safe dynamic programs and tools)
3391 M:      Alexei Starovoitov <ast@kernel.org>
3392 M:      Daniel Borkmann <daniel@iogearbox.net>
3393 M:      Andrii Nakryiko <andrii@kernel.org>
3394 R:      Martin KaFai Lau <kafai@fb.com>
3395 R:      Song Liu <songliubraving@fb.com>
3396 R:      Yonghong Song <yhs@fb.com>
3397 R:      John Fastabend <john.fastabend@gmail.com>
3398 R:      KP Singh <kpsingh@kernel.org>
3399 L:      netdev@vger.kernel.org
3400 L:      bpf@vger.kernel.org
3401 S:      Supported
3402 W:      https://bpf.io/
3403 Q:      https://patchwork.kernel.org/project/netdevbpf/list/?delegate=121173
3404 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf.git
3405 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-next.git
3406 F:      Documentation/bpf/
3407 F:      Documentation/networking/filter.rst
3408 F:      Documentation/userspace-api/ebpf/
3409 F:      arch/*/net/*
3410 F:      include/linux/bpf*
3411 F:      include/linux/btf*
3412 F:      include/linux/filter.h
3413 F:      include/trace/events/xdp.h
3414 F:      include/uapi/linux/bpf*
3415 F:      include/uapi/linux/btf*
3416 F:      include/uapi/linux/filter.h
3417 F:      kernel/bpf/
3418 F:      kernel/trace/bpf_trace.c
3419 F:      lib/test_bpf.c
3420 F:      net/bpf/
3421 F:      net/core/filter.c
3422 F:      net/sched/act_bpf.c
3423 F:      net/sched/cls_bpf.c
3424 F:      samples/bpf/
3425 F:      scripts/bpf_doc.py
3426 F:      tools/bpf/
3427 F:      tools/lib/bpf/
3428 F:      tools/testing/selftests/bpf/
3429 N:      bpf
3430 K:      bpf
3431
3432 BPF JIT for ARM
3433 M:      Shubham Bansal <illusionist.neo@gmail.com>
3434 L:      netdev@vger.kernel.org
3435 L:      bpf@vger.kernel.org
3436 S:      Maintained
3437 F:      arch/arm/net/
3438
3439 BPF JIT for ARM64
3440 M:      Daniel Borkmann <daniel@iogearbox.net>
3441 M:      Alexei Starovoitov <ast@kernel.org>
3442 M:      Zi Shen Lim <zlim.lnx@gmail.com>
3443 L:      netdev@vger.kernel.org
3444 L:      bpf@vger.kernel.org
3445 S:      Supported
3446 F:      arch/arm64/net/
3447
3448 BPF JIT for MIPS (32-BIT AND 64-BIT)
3449 M:      Paul Burton <paulburton@kernel.org>
3450 L:      netdev@vger.kernel.org
3451 L:      bpf@vger.kernel.org
3452 S:      Maintained
3453 F:      arch/mips/net/
3454
3455 BPF JIT for NFP NICs
3456 M:      Jakub Kicinski <kuba@kernel.org>
3457 L:      netdev@vger.kernel.org
3458 L:      bpf@vger.kernel.org
3459 S:      Supported
3460 F:      drivers/net/ethernet/netronome/nfp/bpf/
3461
3462 BPF JIT for POWERPC (32-BIT AND 64-BIT)
3463 M:      Naveen N. Rao <naveen.n.rao@linux.ibm.com>
3464 L:      netdev@vger.kernel.org
3465 L:      bpf@vger.kernel.org
3466 S:      Maintained
3467 F:      arch/powerpc/net/
3468
3469 BPF JIT for RISC-V (32-bit)
3470 M:      Luke Nelson <luke.r.nels@gmail.com>
3471 M:      Xi Wang <xi.wang@gmail.com>
3472 L:      netdev@vger.kernel.org
3473 L:      bpf@vger.kernel.org
3474 S:      Maintained
3475 F:      arch/riscv/net/
3476 X:      arch/riscv/net/bpf_jit_comp64.c
3477
3478 BPF JIT for RISC-V (64-bit)
3479 M:      Björn Töpel <bjorn@kernel.org>
3480 L:      netdev@vger.kernel.org
3481 L:      bpf@vger.kernel.org
3482 S:      Maintained
3483 F:      arch/riscv/net/
3484 X:      arch/riscv/net/bpf_jit_comp32.c
3485
3486 BPF JIT for S390
3487 M:      Ilya Leoshkevich <iii@linux.ibm.com>
3488 M:      Heiko Carstens <hca@linux.ibm.com>
3489 M:      Vasily Gorbik <gor@linux.ibm.com>
3490 L:      netdev@vger.kernel.org
3491 L:      bpf@vger.kernel.org
3492 S:      Maintained
3493 F:      arch/s390/net/
3494 X:      arch/s390/net/pnet.c
3495
3496 BPF JIT for SPARC (32-BIT AND 64-BIT)
3497 M:      David S. Miller <davem@davemloft.net>
3498 L:      netdev@vger.kernel.org
3499 L:      bpf@vger.kernel.org
3500 S:      Maintained
3501 F:      arch/sparc/net/
3502
3503 BPF JIT for X86 32-BIT
3504 M:      Wang YanQing <udknight@gmail.com>
3505 L:      netdev@vger.kernel.org
3506 L:      bpf@vger.kernel.org
3507 S:      Maintained
3508 F:      arch/x86/net/bpf_jit_comp32.c
3509
3510 BPF JIT for X86 64-BIT
3511 M:      Alexei Starovoitov <ast@kernel.org>
3512 M:      Daniel Borkmann <daniel@iogearbox.net>
3513 L:      netdev@vger.kernel.org
3514 L:      bpf@vger.kernel.org
3515 S:      Supported
3516 F:      arch/x86/net/
3517 X:      arch/x86/net/bpf_jit_comp32.c
3518
3519 BPF LSM (Security Audit and Enforcement using BPF)
3520 M:      KP Singh <kpsingh@kernel.org>
3521 R:      Florent Revest <revest@chromium.org>
3522 R:      Brendan Jackman <jackmanb@chromium.org>
3523 L:      bpf@vger.kernel.org
3524 S:      Maintained
3525 F:      Documentation/bpf/bpf_lsm.rst
3526 F:      include/linux/bpf_lsm.h
3527 F:      kernel/bpf/bpf_lsm.c
3528 F:      security/bpf/
3529
3530 BROADCOM B44 10/100 ETHERNET DRIVER
3531 M:      Michael Chan <michael.chan@broadcom.com>
3532 L:      netdev@vger.kernel.org
3533 S:      Supported
3534 F:      drivers/net/ethernet/broadcom/b44.*
3535
3536 BROADCOM B53 ETHERNET SWITCH DRIVER
3537 M:      Florian Fainelli <f.fainelli@gmail.com>
3538 L:      netdev@vger.kernel.org
3539 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
3540 S:      Supported
3541 F:      Documentation/devicetree/bindings/net/dsa/brcm,b53.yaml
3542 F:      drivers/net/dsa/b53/*
3543 F:      include/linux/dsa/brcm.h
3544 F:      include/linux/platform_data/b53.h
3545
3546 BROADCOM BCM2711/BCM2835 ARM ARCHITECTURE
3547 M:      Nicolas Saenz Julienne <nsaenz@kernel.org>
3548 L:      bcm-kernel-feedback-list@broadcom.com
3549 L:      linux-rpi-kernel@lists.infradead.org (moderated for non-subscribers)
3550 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3551 S:      Maintained
3552 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nsaenz/linux-rpi.git
3553 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3554 F:      drivers/pci/controller/pcie-brcmstb.c
3555 F:      drivers/staging/vc04_services
3556 N:      bcm2711
3557 N:      bcm283*
3558
3559 BROADCOM BCM281XX/BCM11XXX/BCM216XX ARM ARCHITECTURE
3560 M:      Florian Fainelli <f.fainelli@gmail.com>
3561 M:      Ray Jui <rjui@broadcom.com>
3562 M:      Scott Branden <sbranden@broadcom.com>
3563 M:      bcm-kernel-feedback-list@broadcom.com
3564 S:      Maintained
3565 T:      git git://github.com/broadcom/mach-bcm
3566 F:      arch/arm/mach-bcm/
3567 N:      bcm281*
3568 N:      bcm113*
3569 N:      bcm216*
3570 N:      kona
3571
3572 BROADCOM BCM2711 HEVC DECODER
3573 M:      Raspberry Pi Kernel Maintenance <kernel-list@raspberrypi.com>
3574 L:      linux-media@vger.kernel.org
3575 S:      Maintained
3576 F:      Documentation/devicetree/bindings/media/rpivid_hevc.jaml
3577 F:      drivers/staging/media/rpivid
3578
3579 BROADCOM BCM2835 CAMERA DRIVER
3580 M:      Raspberry Pi Kernel Maintenance <kernel-list@raspberrypi.com>
3581 L:      linux-media@vger.kernel.org
3582 S:      Maintained
3583 F:      drivers/media/platform/bcm2835/
3584 F:      Documentation/devicetree/bindings/media/brcm,bcm2835-unicam.yaml
3585
3586 BROADCOM BCM2835 ISP DRIVER
3587 M:      Raspberry Pi Kernel Maintenance <kernel-list@raspberrypi.com>
3588 L:      linux-media@vger.kernel.org
3589 S:      Maintained
3590 F:      Documentation/media/uapi/v4l/pixfmt-meta-bcm2835-isp-stats.rst
3591 F:      Documentation/media/v4l-drivers/bcm2835-isp.rst
3592 F:      drivers/staging/vc04_services/bcm2835-isp
3593 F:      include/uapi/linux/bcm2835-isp.h
3594
3595 BROADCOM BCM47XX MIPS ARCHITECTURE
3596 M:      Hauke Mehrtens <hauke@hauke-m.de>
3597 M:      Rafał Miłecki <zajec5@gmail.com>
3598 L:      linux-mips@vger.kernel.org
3599 S:      Maintained
3600 F:      Documentation/devicetree/bindings/mips/brcm/
3601 F:      arch/mips/bcm47xx/*
3602 F:      arch/mips/include/asm/mach-bcm47xx/*
3603
3604 BROADCOM BCM4908 ETHERNET DRIVER
3605 M:      Rafał Miłecki <rafal@milecki.pl>
3606 M:      bcm-kernel-feedback-list@broadcom.com
3607 L:      netdev@vger.kernel.org
3608 S:      Maintained
3609 F:      Documentation/devicetree/bindings/net/brcm,bcm4908-enet.yaml
3610 F:      drivers/net/ethernet/broadcom/bcm4908_enet.*
3611 F:      drivers/net/ethernet/broadcom/unimac.h
3612
3613 BROADCOM BCM5301X ARM ARCHITECTURE
3614 M:      Hauke Mehrtens <hauke@hauke-m.de>
3615 M:      Rafał Miłecki <zajec5@gmail.com>
3616 M:      bcm-kernel-feedback-list@broadcom.com
3617 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3618 S:      Maintained
3619 F:      arch/arm/boot/dts/bcm470*
3620 F:      arch/arm/boot/dts/bcm5301*
3621 F:      arch/arm/boot/dts/bcm953012*
3622 F:      arch/arm/mach-bcm/bcm_5301x.c
3623
3624 BROADCOM BCM53573 ARM ARCHITECTURE
3625 M:      Rafał Miłecki <rafal@milecki.pl>
3626 L:      bcm-kernel-feedback-list@broadcom.com
3627 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3628 S:      Maintained
3629 F:      arch/arm/boot/dts/bcm47189*
3630 F:      arch/arm/boot/dts/bcm53573*
3631
3632 BROADCOM BCM63XX ARM ARCHITECTURE
3633 M:      Florian Fainelli <f.fainelli@gmail.com>
3634 M:      bcm-kernel-feedback-list@broadcom.com
3635 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3636 S:      Maintained
3637 T:      git git://github.com/broadcom/stblinux.git
3638 N:      bcm63xx
3639
3640 BROADCOM BCM63XX/BCM33XX UDC DRIVER
3641 M:      Kevin Cernekee <cernekee@gmail.com>
3642 L:      linux-usb@vger.kernel.org
3643 S:      Maintained
3644 F:      drivers/usb/gadget/udc/bcm63xx_udc.*
3645
3646 BROADCOM BCM7XXX ARM ARCHITECTURE
3647 M:      Florian Fainelli <f.fainelli@gmail.com>
3648 M:      bcm-kernel-feedback-list@broadcom.com
3649 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3650 S:      Maintained
3651 T:      git git://github.com/broadcom/stblinux.git
3652 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3653 F:      arch/arm/boot/dts/bcm7*.dts*
3654 F:      arch/arm/include/asm/hardware/cache-b15-rac.h
3655 F:      arch/arm/mach-bcm/*brcmstb*
3656 F:      arch/arm/mm/cache-b15-rac.c
3657 F:      drivers/bus/brcmstb_gisb.c
3658 F:      drivers/pci/controller/pcie-brcmstb.c
3659 N:      brcmstb
3660
3661 BROADCOM BDC DRIVER
3662 M:      Al Cooper <alcooperx@gmail.com>
3663 L:      linux-usb@vger.kernel.org
3664 L:      bcm-kernel-feedback-list@broadcom.com
3665 S:      Maintained
3666 F:      Documentation/devicetree/bindings/usb/brcm,bdc.txt
3667 F:      drivers/usb/gadget/udc/bdc/
3668
3669 BROADCOM BMIPS CPUFREQ DRIVER
3670 M:      Markus Mayer <mmayer@broadcom.com>
3671 M:      bcm-kernel-feedback-list@broadcom.com
3672 L:      linux-pm@vger.kernel.org
3673 S:      Maintained
3674 F:      drivers/cpufreq/bmips-cpufreq.c
3675
3676 BROADCOM BMIPS MIPS ARCHITECTURE
3677 M:      Florian Fainelli <f.fainelli@gmail.com>
3678 L:      bcm-kernel-feedback-list@broadcom.com
3679 L:      linux-mips@vger.kernel.org
3680 S:      Maintained
3681 T:      git git://github.com/broadcom/stblinux.git
3682 F:      arch/mips/bmips/*
3683 F:      arch/mips/boot/dts/brcm/bcm*.dts*
3684 F:      arch/mips/include/asm/mach-bmips/*
3685 F:      arch/mips/kernel/*bmips*
3686 F:      drivers/soc/bcm/bcm63xx
3687 F:      drivers/irqchip/irq-bcm63*
3688 F:      drivers/irqchip/irq-bcm7*
3689 F:      drivers/irqchip/irq-brcmstb*
3690 F:      include/linux/bcm963xx_nvram.h
3691 F:      include/linux/bcm963xx_tag.h
3692
3693 BROADCOM BNX2 GIGABIT ETHERNET DRIVER
3694 M:      Rasesh Mody <rmody@marvell.com>
3695 M:      GR-Linux-NIC-Dev@marvell.com
3696 L:      netdev@vger.kernel.org
3697 S:      Supported
3698 F:      drivers/net/ethernet/broadcom/bnx2.*
3699 F:      drivers/net/ethernet/broadcom/bnx2_*
3700
3701 BROADCOM BNX2FC 10 GIGABIT FCOE DRIVER
3702 M:      Saurav Kashyap <skashyap@marvell.com>
3703 M:      Javed Hasan <jhasan@marvell.com>
3704 M:      GR-QLogic-Storage-Upstream@marvell.com
3705 L:      linux-scsi@vger.kernel.org
3706 S:      Supported
3707 F:      drivers/scsi/bnx2fc/
3708
3709 BROADCOM BNX2I 1/10 GIGABIT iSCSI DRIVER
3710 M:      Nilesh Javali <njavali@marvell.com>
3711 M:      Manish Rangankar <mrangankar@marvell.com>
3712 M:      GR-QLogic-Storage-Upstream@marvell.com
3713 L:      linux-scsi@vger.kernel.org
3714 S:      Supported
3715 F:      drivers/scsi/bnx2i/
3716
3717 BROADCOM BNX2X 10 GIGABIT ETHERNET DRIVER
3718 M:      Ariel Elior <aelior@marvell.com>
3719 M:      Sudarsana Kalluru <skalluru@marvell.com>
3720 M:      GR-everest-linux-l2@marvell.com
3721 L:      netdev@vger.kernel.org
3722 S:      Supported
3723 F:      drivers/net/ethernet/broadcom/bnx2x/
3724
3725 BROADCOM BNXT_EN 50 GIGABIT 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/bnxt/
3730
3731 BROADCOM BRCM80211 IEEE802.11n WIRELESS DRIVER
3732 M:      Arend van Spriel <aspriel@gmail.com>
3733 M:      Franky Lin <franky.lin@broadcom.com>
3734 M:      Hante Meuleman <hante.meuleman@broadcom.com>
3735 M:      Chi-hsien Lin <chi-hsien.lin@infineon.com>
3736 M:      Wright Feng <wright.feng@infineon.com>
3737 M:      Chung-hsien Hsu <chung-hsien.hsu@infineon.com>
3738 L:      linux-wireless@vger.kernel.org
3739 L:      brcm80211-dev-list.pdl@broadcom.com
3740 L:      SHA-cyfmac-dev-list@infineon.com
3741 S:      Supported
3742 F:      drivers/net/wireless/broadcom/brcm80211/
3743
3744 BROADCOM BRCMSTB GPIO DRIVER
3745 M:      Gregory Fong <gregory.0xf0@gmail.com>
3746 L:      bcm-kernel-feedback-list@broadcom.com
3747 S:      Supported
3748 F:      Documentation/devicetree/bindings/gpio/brcm,brcmstb-gpio.txt
3749 F:      drivers/gpio/gpio-brcmstb.c
3750
3751 BROADCOM BRCMSTB I2C DRIVER
3752 M:      Kamal Dasu <kdasu.kdev@gmail.com>
3753 L:      linux-i2c@vger.kernel.org
3754 L:      bcm-kernel-feedback-list@broadcom.com
3755 S:      Supported
3756 F:      Documentation/devicetree/bindings/i2c/brcm,brcmstb-i2c.yaml
3757 F:      drivers/i2c/busses/i2c-brcmstb.c
3758
3759 BROADCOM BRCMSTB UART DRIVER
3760 M:      Al Cooper <alcooperx@gmail.com>
3761 L:      linux-serial@vger.kernel.org
3762 L:      bcm-kernel-feedback-list@broadcom.com
3763 S:      Maintained
3764 F:      Documentation/devicetree/bindings/serial/brcm,bcm7271-uart.yaml
3765 F:      drivers/tty/serial/8250/8250_bcm7271.c
3766
3767 BROADCOM BRCMSTB USB EHCI DRIVER
3768 M:      Al Cooper <alcooperx@gmail.com>
3769 L:      linux-usb@vger.kernel.org
3770 L:      bcm-kernel-feedback-list@broadcom.com
3771 S:      Maintained
3772 F:      Documentation/devicetree/bindings/usb/brcm,bcm7445-ehci.yaml
3773 F:      drivers/usb/host/ehci-brcm.*
3774
3775 BROADCOM BRCMSTB USB PIN MAP DRIVER
3776 M:      Al Cooper <alcooperx@gmail.com>
3777 L:      linux-usb@vger.kernel.org
3778 L:      bcm-kernel-feedback-list@broadcom.com
3779 S:      Maintained
3780 F:      Documentation/devicetree/bindings/usb/brcm,usb-pinmap.yaml
3781 F:      drivers/usb/misc/brcmstb-usb-pinmap.c
3782
3783 BROADCOM BRCMSTB USB2 and USB3 PHY DRIVER
3784 M:      Al Cooper <alcooperx@gmail.com>
3785 L:      linux-kernel@vger.kernel.org
3786 L:      bcm-kernel-feedback-list@broadcom.com
3787 S:      Maintained
3788 F:      drivers/phy/broadcom/phy-brcm-usb*
3789
3790 BROADCOM ETHERNET PHY DRIVERS
3791 M:      Florian Fainelli <f.fainelli@gmail.com>
3792 L:      bcm-kernel-feedback-list@broadcom.com
3793 L:      netdev@vger.kernel.org
3794 S:      Supported
3795 F:      Documentation/devicetree/bindings/net/broadcom-bcm87xx.txt
3796 F:      drivers/net/phy/bcm*.[ch]
3797 F:      drivers/net/phy/broadcom.c
3798 F:      include/linux/brcmphy.h
3799
3800 BROADCOM GENET ETHERNET DRIVER
3801 M:      Doug Berger <opendmb@gmail.com>
3802 M:      Florian Fainelli <f.fainelli@gmail.com>
3803 L:      bcm-kernel-feedback-list@broadcom.com
3804 L:      netdev@vger.kernel.org
3805 S:      Supported
3806 F:      Documentation/devicetree/bindings/net/brcm,bcmgenet.txt
3807 F:      Documentation/devicetree/bindings/net/brcm,unimac-mdio.txt
3808 F:      drivers/net/ethernet/broadcom/genet/
3809 F:      drivers/net/ethernet/broadcom/unimac.h
3810 F:      drivers/net/mdio/mdio-bcm-unimac.c
3811 F:      include/linux/platform_data/bcmgenet.h
3812 F:      include/linux/platform_data/mdio-bcm-unimac.h
3813
3814 BROADCOM IPROC ARM ARCHITECTURE
3815 M:      Ray Jui <rjui@broadcom.com>
3816 M:      Scott Branden <sbranden@broadcom.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/cygnus-linux.git
3821 F:      arch/arm64/boot/dts/broadcom/northstar2/*
3822 F:      arch/arm64/boot/dts/broadcom/stingray/*
3823 F:      drivers/clk/bcm/clk-ns*
3824 F:      drivers/clk/bcm/clk-sr*
3825 F:      drivers/pinctrl/bcm/pinctrl-ns*
3826 F:      include/dt-bindings/clock/bcm-sr*
3827 N:      iproc
3828 N:      cygnus
3829 N:      bcm[-_]nsp
3830 N:      bcm9113*
3831 N:      bcm9583*
3832 N:      bcm9585*
3833 N:      bcm9586*
3834 N:      bcm988312
3835 N:      bcm113*
3836 N:      bcm583*
3837 N:      bcm585*
3838 N:      bcm586*
3839 N:      bcm88312
3840 N:      hr2
3841 N:      stingray
3842
3843 BROADCOM IPROC GBIT ETHERNET DRIVER
3844 M:      Rafał Miłecki <rafal@milecki.pl>
3845 M:      bcm-kernel-feedback-list@broadcom.com
3846 L:      netdev@vger.kernel.org
3847 S:      Maintained
3848 F:      Documentation/devicetree/bindings/net/brcm,amac.txt
3849 F:      drivers/net/ethernet/broadcom/bgmac*
3850 F:      drivers/net/ethernet/broadcom/unimac.h
3851
3852 BROADCOM KONA GPIO DRIVER
3853 M:      Ray Jui <rjui@broadcom.com>
3854 L:      bcm-kernel-feedback-list@broadcom.com
3855 S:      Supported
3856 F:      Documentation/devicetree/bindings/gpio/brcm,kona-gpio.txt
3857 F:      drivers/gpio/gpio-bcm-kona.c
3858
3859 BROADCOM MPI3 STORAGE CONTROLLER DRIVER
3860 M:      Sathya Prakash Veerichetty <sathya.prakash@broadcom.com>
3861 M:      Kashyap Desai <kashyap.desai@broadcom.com>
3862 M:      Sumit Saxena <sumit.saxena@broadcom.com>
3863 M:      Sreekanth Reddy <sreekanth.reddy@broadcom.com>
3864 L:      mpi3mr-linuxdrv.pdl@broadcom.com
3865 L:      linux-scsi@vger.kernel.org
3866 S:      Supported
3867 W:      https://www.broadcom.com/support/storage
3868 F:      drivers/scsi/mpi3mr/
3869
3870 BROADCOM NETXTREME-E ROCE DRIVER
3871 M:      Selvin Xavier <selvin.xavier@broadcom.com>
3872 L:      linux-rdma@vger.kernel.org
3873 S:      Supported
3874 W:      http://www.broadcom.com
3875 F:      drivers/infiniband/hw/bnxt_re/
3876 F:      include/uapi/rdma/bnxt_re-abi.h
3877
3878 BROADCOM NVRAM DRIVER
3879 M:      Rafał Miłecki <zajec5@gmail.com>
3880 L:      linux-mips@vger.kernel.org
3881 S:      Maintained
3882 F:      drivers/firmware/broadcom/*
3883
3884 BROADCOM PMB (POWER MANAGEMENT BUS) DRIVER
3885 M:      Rafał Miłecki <rafal@milecki.pl>
3886 M:      Florian Fainelli <f.fainelli@gmail.com>
3887 M:      bcm-kernel-feedback-list@broadcom.com
3888 L:      linux-pm@vger.kernel.org
3889 S:      Maintained
3890 T:      git git://github.com/broadcom/stblinux.git
3891 F:      drivers/soc/bcm/bcm63xx/bcm-pmb.c
3892 F:      include/dt-bindings/soc/bcm-pmb.h
3893
3894 BROADCOM SPECIFIC AMBA DRIVER (BCMA)
3895 M:      Rafał Miłecki <zajec5@gmail.com>
3896 L:      linux-wireless@vger.kernel.org
3897 S:      Maintained
3898 F:      drivers/bcma/
3899 F:      include/linux/bcma/
3900
3901 BROADCOM SPI DRIVER
3902 M:      Kamal Dasu <kdasu.kdev@gmail.com>
3903 M:      bcm-kernel-feedback-list@broadcom.com
3904 S:      Maintained
3905 F:      Documentation/devicetree/bindings/spi/brcm,spi-bcm-qspi.yaml
3906 F:      drivers/spi/spi-bcm-qspi.*
3907 F:      drivers/spi/spi-brcmstb-qspi.c
3908 F:      drivers/spi/spi-iproc-qspi.c
3909
3910 BROADCOM STB AVS CPUFREQ DRIVER
3911 M:      Markus Mayer <mmayer@broadcom.com>
3912 M:      bcm-kernel-feedback-list@broadcom.com
3913 L:      linux-pm@vger.kernel.org
3914 S:      Maintained
3915 F:      Documentation/devicetree/bindings/cpufreq/brcm,stb-avs-cpu-freq.txt
3916 F:      drivers/cpufreq/brcmstb*
3917
3918 BROADCOM STB AVS TMON DRIVER
3919 M:      Markus Mayer <mmayer@broadcom.com>
3920 M:      bcm-kernel-feedback-list@broadcom.com
3921 L:      linux-pm@vger.kernel.org
3922 S:      Maintained
3923 F:      Documentation/devicetree/bindings/thermal/brcm,avs-tmon.txt
3924 F:      drivers/thermal/broadcom/brcmstb*
3925
3926 BROADCOM STB DPFE DRIVER
3927 M:      Markus Mayer <mmayer@broadcom.com>
3928 M:      bcm-kernel-feedback-list@broadcom.com
3929 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
3930 S:      Maintained
3931 F:      Documentation/devicetree/bindings/memory-controllers/brcm,dpfe-cpu.yaml
3932 F:      drivers/memory/brcmstb_dpfe.c
3933
3934 BROADCOM STB NAND FLASH DRIVER
3935 M:      Brian Norris <computersforpeace@gmail.com>
3936 M:      Kamal Dasu <kdasu.kdev@gmail.com>
3937 L:      linux-mtd@lists.infradead.org
3938 L:      bcm-kernel-feedback-list@broadcom.com
3939 S:      Maintained
3940 F:      drivers/mtd/nand/raw/brcmnand/
3941
3942 BROADCOM STB PCIE DRIVER
3943 M:      Jim Quinlan <jim2101024@gmail.com>
3944 M:      Nicolas Saenz Julienne <nsaenz@kernel.org>
3945 M:      Florian Fainelli <f.fainelli@gmail.com>
3946 M:      bcm-kernel-feedback-list@broadcom.com
3947 L:      linux-pci@vger.kernel.org
3948 S:      Maintained
3949 F:      Documentation/devicetree/bindings/pci/brcm,stb-pcie.yaml
3950 F:      drivers/pci/controller/pcie-brcmstb.c
3951
3952 BROADCOM SYSTEMPORT ETHERNET DRIVER
3953 M:      Florian Fainelli <f.fainelli@gmail.com>
3954 L:      bcm-kernel-feedback-list@broadcom.com
3955 L:      netdev@vger.kernel.org
3956 S:      Supported
3957 F:      drivers/net/ethernet/broadcom/bcmsysport.*
3958 F:      drivers/net/ethernet/broadcom/unimac.h
3959
3960 BROADCOM TG3 GIGABIT ETHERNET DRIVER
3961 M:      Siva Reddy Kallam <siva.kallam@broadcom.com>
3962 M:      Prashant Sreedharan <prashant@broadcom.com>
3963 M:      Michael Chan <mchan@broadcom.com>
3964 L:      netdev@vger.kernel.org
3965 S:      Supported
3966 F:      drivers/net/ethernet/broadcom/tg3.*
3967
3968 BROADCOM VK DRIVER
3969 M:      Scott Branden <scott.branden@broadcom.com>
3970 L:      bcm-kernel-feedback-list@broadcom.com
3971 S:      Supported
3972 F:      drivers/misc/bcm-vk/
3973 F:      include/uapi/linux/misc/bcm_vk.h
3974
3975 BROCADE BFA FC SCSI DRIVER
3976 M:      Anil Gurumurthy <anil.gurumurthy@qlogic.com>
3977 M:      Sudarsana Kalluru <sudarsana.kalluru@qlogic.com>
3978 L:      linux-scsi@vger.kernel.org
3979 S:      Supported
3980 F:      drivers/scsi/bfa/
3981
3982 BROCADE BNA 10 GIGABIT ETHERNET DRIVER
3983 M:      Rasesh Mody <rmody@marvell.com>
3984 M:      Sudarsana Kalluru <skalluru@marvell.com>
3985 M:      GR-Linux-NIC-Dev@marvell.com
3986 L:      netdev@vger.kernel.org
3987 S:      Supported
3988 F:      drivers/net/ethernet/brocade/bna/
3989
3990 BSG (block layer generic sg v4 driver)
3991 M:      FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
3992 L:      linux-scsi@vger.kernel.org
3993 S:      Supported
3994 F:      block/bsg.c
3995 F:      include/linux/bsg.h
3996 F:      include/uapi/linux/bsg.h
3997
3998 BT87X AUDIO DRIVER
3999 M:      Clemens Ladisch <clemens@ladisch.de>
4000 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4001 S:      Maintained
4002 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
4003 F:      Documentation/sound/cards/bt87x.rst
4004 F:      sound/pci/bt87x.c
4005
4006 BT8XXGPIO DRIVER
4007 M:      Michael Buesch <m@bues.ch>
4008 S:      Maintained
4009 W:      http://bu3sch.de/btgpio.php
4010 F:      drivers/gpio/gpio-bt8xx.c
4011
4012 BTRFS FILE SYSTEM
4013 M:      Chris Mason <clm@fb.com>
4014 M:      Josef Bacik <josef@toxicpanda.com>
4015 M:      David Sterba <dsterba@suse.com>
4016 L:      linux-btrfs@vger.kernel.org
4017 S:      Maintained
4018 W:      http://btrfs.wiki.kernel.org/
4019 Q:      http://patchwork.kernel.org/project/linux-btrfs/list/
4020 C:      irc://irc.libera.chat/btrfs
4021 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kdave/linux.git
4022 F:      Documentation/filesystems/btrfs.rst
4023 F:      fs/btrfs/
4024 F:      include/linux/btrfs*
4025 F:      include/uapi/linux/btrfs*
4026
4027 BTTV VIDEO4LINUX DRIVER
4028 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
4029 L:      linux-media@vger.kernel.org
4030 S:      Odd fixes
4031 W:      https://linuxtv.org
4032 T:      git git://linuxtv.org/media_tree.git
4033 F:      Documentation/driver-api/media/drivers/bttv*
4034 F:      drivers/media/pci/bt8xx/bttv*
4035
4036 BUS FREQUENCY DRIVER FOR SAMSUNG EXYNOS
4037 M:      Chanwoo Choi <cw00.choi@samsung.com>
4038 L:      linux-pm@vger.kernel.org
4039 L:      linux-samsung-soc@vger.kernel.org
4040 S:      Maintained
4041 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
4042 F:      Documentation/devicetree/bindings/devfreq/exynos-bus.txt
4043 F:      drivers/devfreq/exynos-bus.c
4044
4045 BUSLOGIC SCSI DRIVER
4046 M:      Khalid Aziz <khalid@gonehiking.org>
4047 L:      linux-scsi@vger.kernel.org
4048 S:      Maintained
4049 F:      drivers/scsi/BusLogic.*
4050 F:      drivers/scsi/FlashPoint.*
4051
4052 C-MEDIA CMI8788 DRIVER
4053 M:      Clemens Ladisch <clemens@ladisch.de>
4054 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4055 S:      Maintained
4056 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
4057 F:      sound/pci/oxygen/
4058
4059 C-SKY ARCHITECTURE
4060 M:      Guo Ren <guoren@kernel.org>
4061 L:      linux-csky@vger.kernel.org
4062 S:      Supported
4063 T:      git https://github.com/c-sky/csky-linux.git
4064 F:      Documentation/devicetree/bindings/csky/
4065 F:      Documentation/devicetree/bindings/interrupt-controller/csky,*
4066 F:      Documentation/devicetree/bindings/timer/csky,*
4067 F:      arch/csky/
4068 F:      drivers/clocksource/timer-gx6605s.c
4069 F:      drivers/clocksource/timer-mp-csky.c
4070 F:      drivers/irqchip/irq-csky-*
4071 N:      csky
4072 K:      csky
4073
4074 CA8210 IEEE-802.15.4 RADIO DRIVER
4075 M:      Harry Morris <h.morris@cascoda.com>
4076 L:      linux-wpan@vger.kernel.org
4077 S:      Maintained
4078 W:      https://github.com/Cascoda/ca8210-linux.git
4079 F:      Documentation/devicetree/bindings/net/ieee802154/ca8210.txt
4080 F:      drivers/net/ieee802154/ca8210.c
4081
4082 CANAAN/KENDRYTE K210 SOC FPIOA DRIVER
4083 M:      Damien Le Moal <damien.lemoal@wdc.com>
4084 L:      linux-riscv@lists.infradead.org
4085 L:      linux-gpio@vger.kernel.org (pinctrl driver)
4086 F:      Documentation/devicetree/bindings/pinctrl/canaan,k210-fpioa.yaml
4087 F:      drivers/pinctrl/pinctrl-k210.c
4088
4089 CANAAN/KENDRYTE K210 SOC RESET CONTROLLER DRIVER
4090 M:      Damien Le Moal <damien.lemoal@wdc.com>
4091 L:      linux-kernel@vger.kernel.org
4092 L:      linux-riscv@lists.infradead.org
4093 S:      Maintained
4094 F:      Documentation/devicetree/bindings/reset/canaan,k210-rst.yaml
4095 F:      drivers/reset/reset-k210.c
4096
4097 CANAAN/KENDRYTE K210 SOC SYSTEM CONTROLLER DRIVER
4098 M:      Damien Le Moal <damien.lemoal@wdc.com>
4099 L:      linux-riscv@lists.infradead.org
4100 S:      Maintained
4101 F:      Documentation/devicetree/bindings/mfd/canaan,k210-sysctl.yaml
4102 F:      drivers/soc/canaan/
4103 F:      include/soc/canaan/
4104
4105 CACHEFILES: FS-CACHE BACKEND FOR CACHING ON MOUNTED FILESYSTEMS
4106 M:      David Howells <dhowells@redhat.com>
4107 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
4108 S:      Supported
4109 F:      Documentation/filesystems/caching/cachefiles.rst
4110 F:      fs/cachefiles/
4111
4112 CADENCE MIPI-CSI2 BRIDGES
4113 M:      Maxime Ripard <mripard@kernel.org>
4114 L:      linux-media@vger.kernel.org
4115 S:      Maintained
4116 F:      Documentation/devicetree/bindings/media/cdns,*.txt
4117 F:      drivers/media/platform/cadence/cdns-csi2*
4118
4119 CADENCE NAND DRIVER
4120 L:      linux-mtd@lists.infradead.org
4121 S:      Orphan
4122 F:      Documentation/devicetree/bindings/mtd/cadence-nand-controller.txt
4123 F:      drivers/mtd/nand/raw/cadence-nand-controller.c
4124
4125 CADENCE USB3 DRD IP DRIVER
4126 M:      Peter Chen <peter.chen@kernel.org>
4127 M:      Pawel Laszczak <pawell@cadence.com>
4128 R:      Roger Quadros <rogerq@kernel.org>
4129 R:      Aswath Govindraju <a-govindraju@ti.com>
4130 L:      linux-usb@vger.kernel.org
4131 S:      Maintained
4132 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4133 F:      Documentation/devicetree/bindings/usb/cdns,usb3.yaml
4134 F:      drivers/usb/cdns3/
4135 X:      drivers/usb/cdns3/cdnsp*
4136
4137 CADENCE USBSSP DRD IP DRIVER
4138 M:      Pawel Laszczak <pawell@cadence.com>
4139 L:      linux-usb@vger.kernel.org
4140 S:      Maintained
4141 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4142 F:      drivers/usb/cdns3/
4143 X:      drivers/usb/cdns3/cdns3*
4144
4145 CADET FM/AM RADIO RECEIVER DRIVER
4146 M:      Hans Verkuil <hverkuil@xs4all.nl>
4147 L:      linux-media@vger.kernel.org
4148 S:      Maintained
4149 W:      https://linuxtv.org
4150 T:      git git://linuxtv.org/media_tree.git
4151 F:      drivers/media/radio/radio-cadet*
4152
4153 CAFE CMOS INTEGRATED CAMERA CONTROLLER DRIVER
4154 L:      linux-media@vger.kernel.org
4155 S:      Orphan
4156 T:      git git://linuxtv.org/media_tree.git
4157 F:      Documentation/admin-guide/media/cafe_ccic*
4158 F:      drivers/media/platform/marvell-ccic/
4159
4160 CAIF NETWORK LAYER
4161 L:      netdev@vger.kernel.org
4162 S:      Orphan
4163 F:      Documentation/networking/caif/
4164 F:      drivers/net/caif/
4165 F:      include/net/caif/
4166 F:      include/uapi/linux/caif/
4167 F:      net/caif/
4168
4169 CAKE QDISC
4170 M:      Toke Høiland-Jørgensen <toke@toke.dk>
4171 L:      cake@lists.bufferbloat.net (moderated for non-subscribers)
4172 S:      Maintained
4173 F:      net/sched/sch_cake.c
4174
4175 CAN NETWORK DRIVERS
4176 M:      Wolfgang Grandegger <wg@grandegger.com>
4177 M:      Marc Kleine-Budde <mkl@pengutronix.de>
4178 L:      linux-can@vger.kernel.org
4179 S:      Maintained
4180 W:      https://github.com/linux-can
4181 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
4182 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
4183 F:      Documentation/devicetree/bindings/net/can/
4184 F:      Documentation/devicetree/bindings/phy/ti,tcan104x-can.yaml
4185 F:      drivers/net/can/
4186 F:      drivers/phy/phy-can-transceiver.c
4187 F:      include/linux/can/bittiming.h
4188 F:      include/linux/can/dev.h
4189 F:      include/linux/can/led.h
4190 F:      include/linux/can/length.h
4191 F:      include/linux/can/platform/
4192 F:      include/linux/can/rx-offload.h
4193 F:      include/uapi/linux/can/error.h
4194 F:      include/uapi/linux/can/netlink.h
4195 F:      include/uapi/linux/can/vxcan.h
4196
4197 CAN NETWORK LAYER
4198 M:      Oliver Hartkopp <socketcan@hartkopp.net>
4199 M:      Marc Kleine-Budde <mkl@pengutronix.de>
4200 L:      linux-can@vger.kernel.org
4201 S:      Maintained
4202 W:      https://github.com/linux-can
4203 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can.git
4204 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkl/linux-can-next.git
4205 F:      Documentation/networking/can.rst
4206 F:      include/linux/can/can-ml.h
4207 F:      include/linux/can/core.h
4208 F:      include/linux/can/skb.h
4209 F:      include/net/netns/can.h
4210 F:      include/uapi/linux/can.h
4211 F:      include/uapi/linux/can/bcm.h
4212 F:      include/uapi/linux/can/gw.h
4213 F:      include/uapi/linux/can/isotp.h
4214 F:      include/uapi/linux/can/raw.h
4215 F:      net/can/
4216
4217 CAN-J1939 NETWORK LAYER
4218 M:      Robin van der Gracht <robin@protonic.nl>
4219 M:      Oleksij Rempel <o.rempel@pengutronix.de>
4220 R:      kernel@pengutronix.de
4221 L:      linux-can@vger.kernel.org
4222 S:      Maintained
4223 F:      Documentation/networking/j1939.rst
4224 F:      include/uapi/linux/can/j1939.h
4225 F:      net/can/j1939/
4226
4227 CAPABILITIES
4228 M:      Serge Hallyn <serge@hallyn.com>
4229 L:      linux-security-module@vger.kernel.org
4230 S:      Supported
4231 F:      include/linux/capability.h
4232 F:      include/uapi/linux/capability.h
4233 F:      kernel/capability.c
4234 F:      security/commoncap.c
4235
4236 CAPELLA MICROSYSTEMS LIGHT SENSOR DRIVER
4237 M:      Kevin Tsai <ktsai@capellamicro.com>
4238 S:      Maintained
4239 F:      drivers/iio/light/cm*
4240
4241 CARL9170 LINUX COMMUNITY WIRELESS DRIVER
4242 M:      Christian Lamparter <chunkeey@googlemail.com>
4243 L:      linux-wireless@vger.kernel.org
4244 S:      Maintained
4245 W:      https://wireless.wiki.kernel.org/en/users/Drivers/carl9170
4246 F:      drivers/net/wireless/ath/carl9170/
4247
4248 CAVIUM I2C DRIVER
4249 M:      Robert Richter <rric@kernel.org>
4250 S:      Odd Fixes
4251 W:      http://www.marvell.com
4252 F:      drivers/i2c/busses/i2c-octeon*
4253 F:      drivers/i2c/busses/i2c-thunderx*
4254
4255 CAVIUM LIQUIDIO NETWORK DRIVER
4256 M:      Derek Chickles <dchickles@marvell.com>
4257 M:      Satanand Burla <sburla@marvell.com>
4258 M:      Felix Manlunas <fmanlunas@marvell.com>
4259 L:      netdev@vger.kernel.org
4260 S:      Supported
4261 W:      http://www.marvell.com
4262 F:      drivers/net/ethernet/cavium/liquidio/
4263
4264 CAVIUM MMC DRIVER
4265 M:      Robert Richter <rric@kernel.org>
4266 S:      Odd Fixes
4267 W:      http://www.marvell.com
4268 F:      drivers/mmc/host/cavium*
4269
4270 CAVIUM OCTEON-TX CRYPTO DRIVER
4271 M:      George Cherian <gcherian@marvell.com>
4272 L:      linux-crypto@vger.kernel.org
4273 S:      Supported
4274 W:      http://www.marvell.com
4275 F:      drivers/crypto/cavium/cpt/
4276
4277 CAVIUM THUNDERX2 ARM64 SOC
4278 M:      Robert Richter <rric@kernel.org>
4279 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4280 S:      Odd Fixes
4281 F:      Documentation/devicetree/bindings/arm/cavium-thunder2.txt
4282 F:      arch/arm64/boot/dts/cavium/thunder2-99xx*
4283
4284 CBS/ETF/TAPRIO QDISCS
4285 M:      Vinicius Costa Gomes <vinicius.gomes@intel.com>
4286 S:      Maintained
4287 L:      netdev@vger.kernel.org
4288 F:      net/sched/sch_cbs.c
4289 F:      net/sched/sch_etf.c
4290 F:      net/sched/sch_taprio.c
4291
4292 CC2520 IEEE-802.15.4 RADIO DRIVER
4293 M:      Varka Bhadram <varkabhadram@gmail.com>
4294 L:      linux-wpan@vger.kernel.org
4295 S:      Maintained
4296 F:      Documentation/devicetree/bindings/net/ieee802154/cc2520.txt
4297 F:      drivers/net/ieee802154/cc2520.c
4298 F:      include/linux/spi/cc2520.h
4299
4300 CCREE ARM TRUSTZONE CRYPTOCELL REE DRIVER
4301 M:      Gilad Ben-Yossef <gilad@benyossef.com>
4302 L:      linux-crypto@vger.kernel.org
4303 S:      Supported
4304 W:      https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
4305 F:      drivers/crypto/ccree/
4306
4307 CCTRNG ARM TRUSTZONE CRYPTOCELL TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
4308 M:      Hadar Gat <hadar.gat@arm.com>
4309 L:      linux-crypto@vger.kernel.org
4310 S:      Supported
4311 F:      drivers/char/hw_random/cctrng.c
4312 F:      drivers/char/hw_random/cctrng.h
4313 F:      Documentation/devicetree/bindings/rng/arm-cctrng.yaml
4314 W:      https://developer.arm.com/products/system-ip/trustzone-cryptocell/cryptocell-700-family
4315
4316 CEC FRAMEWORK
4317 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
4318 L:      linux-media@vger.kernel.org
4319 S:      Supported
4320 W:      http://linuxtv.org
4321 T:      git git://linuxtv.org/media_tree.git
4322 F:      Documentation/ABI/testing/debugfs-cec-error-inj
4323 F:      Documentation/devicetree/bindings/media/cec.txt
4324 F:      Documentation/driver-api/media/cec-core.rst
4325 F:      Documentation/userspace-api/media/cec
4326 F:      drivers/media/cec/
4327 F:      drivers/media/rc/keymaps/rc-cec.c
4328 F:      include/media/cec-notifier.h
4329 F:      include/media/cec.h
4330 F:      include/uapi/linux/cec-funcs.h
4331 F:      include/uapi/linux/cec.h
4332
4333 CEC GPIO DRIVER
4334 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
4335 L:      linux-media@vger.kernel.org
4336 S:      Supported
4337 W:      http://linuxtv.org
4338 T:      git git://linuxtv.org/media_tree.git
4339 F:      Documentation/devicetree/bindings/media/cec-gpio.txt
4340 F:      drivers/media/cec/platform/cec-gpio/
4341
4342 CELL BROADBAND ENGINE ARCHITECTURE
4343 M:      Arnd Bergmann <arnd@arndb.de>
4344 L:      linuxppc-dev@lists.ozlabs.org
4345 S:      Supported
4346 W:      http://www.ibm.com/developerworks/power/cell/
4347 F:      arch/powerpc/include/asm/cell*.h
4348 F:      arch/powerpc/include/asm/spu*.h
4349 F:      arch/powerpc/include/uapi/asm/spu*.h
4350 F:      arch/powerpc/platforms/cell/
4351
4352 CELLWISE CW2015 BATTERY DRIVER
4353 M:      Tobias Schrammm <t.schramm@manjaro.org>
4354 S:      Maintained
4355 F:      Documentation/devicetree/bindings/power/supply/cw2015_battery.yaml
4356 F:      drivers/power/supply/cw2015_battery.c
4357
4358 CEPH COMMON CODE (LIBCEPH)
4359 M:      Ilya Dryomov <idryomov@gmail.com>
4360 M:      Jeff Layton <jlayton@kernel.org>
4361 L:      ceph-devel@vger.kernel.org
4362 S:      Supported
4363 W:      http://ceph.com/
4364 T:      git git://github.com/ceph/ceph-client.git
4365 F:      include/linux/ceph/
4366 F:      include/linux/crush/
4367 F:      net/ceph/
4368
4369 CEPH DISTRIBUTED FILE SYSTEM CLIENT (CEPH)
4370 M:      Jeff Layton <jlayton@kernel.org>
4371 M:      Ilya Dryomov <idryomov@gmail.com>
4372 L:      ceph-devel@vger.kernel.org
4373 S:      Supported
4374 W:      http://ceph.com/
4375 T:      git git://github.com/ceph/ceph-client.git
4376 F:      Documentation/filesystems/ceph.rst
4377 F:      fs/ceph/
4378
4379 CERTIFICATE HANDLING
4380 M:      David Howells <dhowells@redhat.com>
4381 M:      David Woodhouse <dwmw2@infradead.org>
4382 L:      keyrings@vger.kernel.org
4383 S:      Maintained
4384 F:      Documentation/admin-guide/module-signing.rst
4385 F:      certs/
4386 F:      scripts/extract-cert.c
4387 F:      scripts/sign-file.c
4388
4389 CFAG12864B LCD DRIVER
4390 M:      Miguel Ojeda <ojeda@kernel.org>
4391 S:      Maintained
4392 F:      drivers/auxdisplay/cfag12864b.c
4393 F:      include/linux/cfag12864b.h
4394
4395 CFAG12864BFB LCD FRAMEBUFFER DRIVER
4396 M:      Miguel Ojeda <ojeda@kernel.org>
4397 S:      Maintained
4398 F:      drivers/auxdisplay/cfag12864bfb.c
4399 F:      include/linux/cfag12864b.h
4400
4401 CHAR and MISC DRIVERS
4402 M:      Arnd Bergmann <arnd@arndb.de>
4403 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4404 S:      Supported
4405 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
4406 F:      drivers/char/
4407 F:      drivers/misc/
4408 F:      include/linux/miscdevice.h
4409 X:      drivers/char/agp/
4410 X:      drivers/char/hw_random/
4411 X:      drivers/char/ipmi/
4412 X:      drivers/char/random.c
4413 X:      drivers/char/tpm/
4414
4415 CHECKPATCH
4416 M:      Andy Whitcroft <apw@canonical.com>
4417 M:      Joe Perches <joe@perches.com>
4418 R:      Dwaipayan Ray <dwaipayanray1@gmail.com>
4419 R:      Lukas Bulwahn <lukas.bulwahn@gmail.com>
4420 S:      Maintained
4421 F:      scripts/checkpatch.pl
4422
4423 CHECKPATCH DOCUMENTATION
4424 M:      Dwaipayan Ray <dwaipayanray1@gmail.com>
4425 M:      Lukas Bulwahn <lukas.bulwahn@gmail.com>
4426 R:      Joe Perches <joe@perches.com>
4427 S:      Maintained
4428 F:      Documentation/dev-tools/checkpatch.rst
4429
4430 CHINESE DOCUMENTATION
4431 M:      Alex Shi <alexs@kernel.org>
4432 S:      Maintained
4433 F:      Documentation/translations/zh_CN/
4434
4435 CHIPIDEA USB HIGH SPEED DUAL ROLE CONTROLLER
4436 M:      Peter Chen <peter.chen@kernel.org>
4437 L:      linux-usb@vger.kernel.org
4438 S:      Maintained
4439 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
4440 F:      drivers/usb/chipidea/
4441
4442 CHIPONE ICN8318 I2C TOUCHSCREEN DRIVER
4443 M:      Hans de Goede <hdegoede@redhat.com>
4444 L:      linux-input@vger.kernel.org
4445 S:      Maintained
4446 F:      Documentation/devicetree/bindings/input/touchscreen/chipone_icn8318.txt
4447 F:      drivers/input/touchscreen/chipone_icn8318.c
4448
4449 CHIPONE ICN8505 I2C TOUCHSCREEN DRIVER
4450 M:      Hans de Goede <hdegoede@redhat.com>
4451 L:      linux-input@vger.kernel.org
4452 S:      Maintained
4453 F:      drivers/input/touchscreen/chipone_icn8505.c
4454
4455 CHROME HARDWARE PLATFORM SUPPORT
4456 M:      Benson Leung <bleung@chromium.org>
4457 M:      Enric Balletbo i Serra <enric.balletbo@collabora.com>
4458 S:      Maintained
4459 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chrome-platform/linux.git
4460 F:      drivers/platform/chrome/
4461
4462 CHROMEOS EC CODEC DRIVER
4463 M:      Cheng-Yi Chiang <cychiang@chromium.org>
4464 R:      Enric Balletbo i Serra <enric.balletbo@collabora.com>
4465 R:      Guenter Roeck <groeck@chromium.org>
4466 S:      Maintained
4467 F:      Documentation/devicetree/bindings/sound/google,cros-ec-codec.yaml
4468 F:      sound/soc/codecs/cros_ec_codec.*
4469
4470 CHROMEOS EC SUBDRIVERS
4471 M:      Benson Leung <bleung@chromium.org>
4472 M:      Enric Balletbo i Serra <enric.balletbo@collabora.com>
4473 R:      Guenter Roeck <groeck@chromium.org>
4474 S:      Maintained
4475 F:      drivers/power/supply/cros_usbpd-charger.c
4476 N:      cros_ec
4477 N:      cros-ec
4478
4479 CHRONTEL CH7322 CEC DRIVER
4480 M:      Jeff Chase <jnchase@google.com>
4481 L:      linux-media@vger.kernel.org
4482 S:      Maintained
4483 T:      git git://linuxtv.org/media_tree.git
4484 F:      Documentation/devicetree/bindings/media/i2c/chrontel,ch7322.yaml
4485 F:      drivers/media/cec/i2c/ch7322.c
4486
4487 CIRRUS LOGIC AUDIO CODEC DRIVERS
4488 M:      James Schulman <james.schulman@cirrus.com>
4489 M:      David Rhodes <david.rhodes@cirrus.com>
4490 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4491 L:      patches@opensource.cirrus.com
4492 S:      Maintained
4493 F:      sound/soc/codecs/cs*
4494
4495 CIRRUS LOGIC EP93XX ETHERNET DRIVER
4496 M:      Hartley Sweeten <hsweeten@visionengravers.com>
4497 L:      netdev@vger.kernel.org
4498 S:      Maintained
4499 F:      drivers/net/ethernet/cirrus/ep93xx_eth.c
4500
4501 CIRRUS LOGIC LOCHNAGAR DRIVER
4502 M:      Charles Keepax <ckeepax@opensource.cirrus.com>
4503 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4504 L:      patches@opensource.cirrus.com
4505 S:      Supported
4506 F:      Documentation/devicetree/bindings/clock/cirrus,lochnagar.yaml
4507 F:      Documentation/devicetree/bindings/hwmon/cirrus,lochnagar.yaml
4508 F:      Documentation/devicetree/bindings/mfd/cirrus,lochnagar.yaml
4509 F:      Documentation/devicetree/bindings/pinctrl/cirrus,lochnagar.yaml
4510 F:      Documentation/devicetree/bindings/sound/cirrus,lochnagar.yaml
4511 F:      Documentation/hwmon/lochnagar.rst
4512 F:      drivers/clk/clk-lochnagar.c
4513 F:      drivers/hwmon/lochnagar-hwmon.c
4514 F:      drivers/mfd/lochnagar-i2c.c
4515 F:      drivers/pinctrl/cirrus/pinctrl-lochnagar.c
4516 F:      drivers/regulator/lochnagar-regulator.c
4517 F:      include/dt-bindings/clk/lochnagar.h
4518 F:      include/dt-bindings/pinctrl/lochnagar.h
4519 F:      include/linux/mfd/lochnagar*
4520 F:      sound/soc/codecs/lochnagar-sc.c
4521
4522 CIRRUS LOGIC MADERA CODEC DRIVERS
4523 M:      Charles Keepax <ckeepax@opensource.cirrus.com>
4524 M:      Richard Fitzgerald <rf@opensource.cirrus.com>
4525 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
4526 L:      patches@opensource.cirrus.com
4527 S:      Supported
4528 W:      https://github.com/CirrusLogic/linux-drivers/wiki
4529 T:      git https://github.com/CirrusLogic/linux-drivers.git
4530 F:      Documentation/devicetree/bindings/mfd/cirrus,madera.yaml
4531 F:      Documentation/devicetree/bindings/pinctrl/cirrus,madera.yaml
4532 F:      Documentation/devicetree/bindings/sound/cirrus,madera.yaml
4533 F:      drivers/gpio/gpio-madera*
4534 F:      drivers/irqchip/irq-madera*
4535 F:      drivers/mfd/cs47l*
4536 F:      drivers/mfd/madera*
4537 F:      drivers/pinctrl/cirrus/*
4538 F:      include/dt-bindings/sound/madera*
4539 F:      include/linux/irqchip/irq-madera*
4540 F:      include/linux/mfd/madera/*
4541 F:      include/sound/madera*
4542 F:      sound/soc/codecs/cs47l*
4543 F:      sound/soc/codecs/madera*
4544
4545 CISCO FCOE HBA DRIVER
4546 M:      Satish Kharat <satishkh@cisco.com>
4547 M:      Sesidhar Baddela <sebaddel@cisco.com>
4548 M:      Karan Tilak Kumar <kartilak@cisco.com>
4549 L:      linux-scsi@vger.kernel.org
4550 S:      Supported
4551 F:      drivers/scsi/fnic/
4552
4553 CISCO SCSI HBA DRIVER
4554 M:      Karan Tilak Kumar <kartilak@cisco.com>
4555 M:      Sesidhar Baddela <sebaddel@cisco.com>
4556 L:      linux-scsi@vger.kernel.org
4557 S:      Supported
4558 F:      drivers/scsi/snic/
4559
4560 CISCO VIC ETHERNET NIC DRIVER
4561 M:      Christian Benvenuti <benve@cisco.com>
4562 M:      Govindarajulu Varadarajan <_govind@gmx.com>
4563 S:      Supported
4564 F:      drivers/net/ethernet/cisco/enic/
4565
4566 CISCO VIC LOW LATENCY NIC DRIVER
4567 M:      Christian Benvenuti <benve@cisco.com>
4568 M:      Nelson Escobar <neescoba@cisco.com>
4569 S:      Supported
4570 F:      drivers/infiniband/hw/usnic/
4571
4572 CLANG-FORMAT FILE
4573 M:      Miguel Ojeda <ojeda@kernel.org>
4574 S:      Maintained
4575 F:      .clang-format
4576
4577 CLANG/LLVM BUILD SUPPORT
4578 M:      Nathan Chancellor <nathan@kernel.org>
4579 M:      Nick Desaulniers <ndesaulniers@google.com>
4580 L:      llvm@lists.linux.dev
4581 S:      Supported
4582 W:      https://clangbuiltlinux.github.io/
4583 B:      https://github.com/ClangBuiltLinux/linux/issues
4584 C:      irc://irc.libera.chat/clangbuiltlinux
4585 F:      Documentation/kbuild/llvm.rst
4586 F:      include/linux/compiler-clang.h
4587 F:      scripts/Makefile.clang
4588 F:      scripts/clang-tools/
4589 K:      \b(?i:clang|llvm)\b
4590
4591 CLANG CONTROL FLOW INTEGRITY SUPPORT
4592 M:      Sami Tolvanen <samitolvanen@google.com>
4593 M:      Kees Cook <keescook@chromium.org>
4594 R:      Nathan Chancellor <nathan@kernel.org>
4595 R:      Nick Desaulniers <ndesaulniers@google.com>
4596 L:      llvm@lists.linux.dev
4597 S:      Supported
4598 B:      https://github.com/ClangBuiltLinux/linux/issues
4599 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/clang/features
4600 F:      include/linux/cfi.h
4601 F:      kernel/cfi.c
4602
4603 CLEANCACHE API
4604 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
4605 L:      linux-kernel@vger.kernel.org
4606 S:      Maintained
4607 F:      include/linux/cleancache.h
4608 F:      mm/cleancache.c
4609
4610 CLK API
4611 M:      Russell King <linux@armlinux.org.uk>
4612 L:      linux-clk@vger.kernel.org
4613 S:      Maintained
4614 F:      include/linux/clk.h
4615
4616 CLOCKSOURCE, CLOCKEVENT DRIVERS
4617 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4618 M:      Thomas Gleixner <tglx@linutronix.de>
4619 L:      linux-kernel@vger.kernel.org
4620 S:      Supported
4621 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
4622 F:      Documentation/devicetree/bindings/timer/
4623 F:      drivers/clocksource/
4624
4625 CMPC ACPI DRIVER
4626 M:      Thadeu Lima de Souza Cascardo <cascardo@holoscopio.com>
4627 M:      Daniel Oliveira Nascimento <don@syst.com.br>
4628 L:      platform-driver-x86@vger.kernel.org
4629 S:      Supported
4630 F:      drivers/platform/x86/classmate-laptop.c
4631
4632 COBALT MEDIA DRIVER
4633 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
4634 L:      linux-media@vger.kernel.org
4635 S:      Supported
4636 W:      https://linuxtv.org
4637 T:      git git://linuxtv.org/media_tree.git
4638 F:      drivers/media/pci/cobalt/
4639
4640 COCCINELLE/Semantic Patches (SmPL)
4641 M:      Julia Lawall <Julia.Lawall@inria.fr>
4642 M:      Gilles Muller <Gilles.Muller@inria.fr>
4643 M:      Nicolas Palix <nicolas.palix@imag.fr>
4644 M:      Michal Marek <michal.lkml@markovi.net>
4645 L:      cocci@systeme.lip6.fr (moderated for non-subscribers)
4646 S:      Supported
4647 W:      http://coccinelle.lip6.fr/
4648 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild.git misc
4649 F:      Documentation/dev-tools/coccinelle.rst
4650 F:      scripts/coccicheck
4651 F:      scripts/coccinelle/
4652
4653 CODA FILE SYSTEM
4654 M:      Jan Harkes <jaharkes@cs.cmu.edu>
4655 M:      coda@cs.cmu.edu
4656 L:      codalist@coda.cs.cmu.edu
4657 S:      Maintained
4658 W:      http://www.coda.cs.cmu.edu/
4659 F:      Documentation/filesystems/coda.rst
4660 F:      fs/coda/
4661 F:      include/linux/coda*.h
4662 F:      include/uapi/linux/coda*.h
4663
4664 CODA V4L2 MEM2MEM DRIVER
4665 M:      Philipp Zabel <p.zabel@pengutronix.de>
4666 L:      linux-media@vger.kernel.org
4667 S:      Maintained
4668 F:      Documentation/devicetree/bindings/media/coda.yaml
4669 F:      drivers/media/platform/coda/
4670
4671 CODE OF CONDUCT
4672 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4673 S:      Supported
4674 F:      Documentation/process/code-of-conduct-interpretation.rst
4675 F:      Documentation/process/code-of-conduct.rst
4676
4677 COMEDI DRIVERS
4678 M:      Ian Abbott <abbotti@mev.co.uk>
4679 M:      H Hartley Sweeten <hsweeten@visionengravers.com>
4680 S:      Odd Fixes
4681 F:      drivers/comedi/
4682
4683 COMMON CLK FRAMEWORK
4684 M:      Michael Turquette <mturquette@baylibre.com>
4685 M:      Stephen Boyd <sboyd@kernel.org>
4686 L:      linux-clk@vger.kernel.org
4687 S:      Maintained
4688 Q:      http://patchwork.kernel.org/project/linux-clk/list/
4689 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux.git
4690 F:      Documentation/devicetree/bindings/clock/
4691 F:      drivers/clk/
4692 F:      include/linux/clk-pr*
4693 F:      include/linux/clk/
4694 F:      include/linux/of_clk.h
4695 X:      drivers/clk/clkdev.c
4696
4697 COMMON INTERNET FILE SYSTEM CLIENT (CIFS)
4698 M:      Steve French <sfrench@samba.org>
4699 L:      linux-cifs@vger.kernel.org
4700 L:      samba-technical@lists.samba.org (moderated for non-subscribers)
4701 S:      Supported
4702 W:      http://linux-cifs.samba.org/
4703 T:      git git://git.samba.org/sfrench/cifs-2.6.git
4704 F:      Documentation/admin-guide/cifs/
4705 F:      fs/cifs/
4706 F:      fs/smbfs_common/
4707
4708 COMPACTPCI HOTPLUG CORE
4709 M:      Scott Murray <scott@spiteful.org>
4710 L:      linux-pci@vger.kernel.org
4711 S:      Maintained
4712 F:      drivers/pci/hotplug/cpci_hotplug*
4713
4714 COMPACTPCI HOTPLUG GENERIC DRIVER
4715 M:      Scott Murray <scott@spiteful.org>
4716 L:      linux-pci@vger.kernel.org
4717 S:      Maintained
4718 F:      drivers/pci/hotplug/cpcihp_generic.c
4719
4720 COMPACTPCI HOTPLUG ZIATECH ZT5550 DRIVER
4721 M:      Scott Murray <scott@spiteful.org>
4722 L:      linux-pci@vger.kernel.org
4723 S:      Maintained
4724 F:      drivers/pci/hotplug/cpcihp_zt5550.*
4725
4726 COMPAL LAPTOP SUPPORT
4727 M:      Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
4728 L:      platform-driver-x86@vger.kernel.org
4729 S:      Maintained
4730 F:      drivers/platform/x86/compal-laptop.c
4731
4732 COMPILER ATTRIBUTES
4733 M:      Miguel Ojeda <ojeda@kernel.org>
4734 R:      Nick Desaulniers <ndesaulniers@google.com>
4735 S:      Maintained
4736 F:      include/linux/compiler_attributes.h
4737
4738 COMPUTE EXPRESS LINK (CXL)
4739 M:      Alison Schofield <alison.schofield@intel.com>
4740 M:      Vishal Verma <vishal.l.verma@intel.com>
4741 M:      Ira Weiny <ira.weiny@intel.com>
4742 M:      Ben Widawsky <ben.widawsky@intel.com>
4743 M:      Dan Williams <dan.j.williams@intel.com>
4744 L:      linux-cxl@vger.kernel.org
4745 S:      Maintained
4746 F:      drivers/cxl/
4747 F:      include/uapi/linux/cxl_mem.h
4748
4749 CONEXANT ACCESSRUNNER USB DRIVER
4750 L:      accessrunner-general@lists.sourceforge.net
4751 S:      Orphan
4752 W:      http://accessrunner.sourceforge.net/
4753 F:      drivers/usb/atm/cxacru.c
4754
4755 CONFIGFS
4756 M:      Joel Becker <jlbec@evilplan.org>
4757 M:      Christoph Hellwig <hch@lst.de>
4758 S:      Supported
4759 T:      git git://git.infradead.org/users/hch/configfs.git
4760 F:      fs/configfs/
4761 F:      include/linux/configfs.h
4762 F:      samples/configfs/
4763
4764 CONSOLE SUBSYSTEM
4765 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
4766 S:      Supported
4767 F:      drivers/video/console/
4768 F:      include/linux/console*
4769
4770 CONTEXT TRACKING
4771 M:      Frederic Weisbecker <frederic@kernel.org>
4772 S:      Maintained
4773 F:      kernel/context_tracking.c
4774 F:      include/linux/context_tracking*
4775
4776 CONTROL GROUP (CGROUP)
4777 M:      Tejun Heo <tj@kernel.org>
4778 M:      Zefan Li <lizefan.x@bytedance.com>
4779 M:      Johannes Weiner <hannes@cmpxchg.org>
4780 L:      cgroups@vger.kernel.org
4781 S:      Maintained
4782 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
4783 F:      Documentation/admin-guide/cgroup-v1/
4784 F:      Documentation/admin-guide/cgroup-v2.rst
4785 F:      include/linux/cgroup*
4786 F:      kernel/cgroup/
4787
4788 CONTROL GROUP - BLOCK IO CONTROLLER (BLKIO)
4789 M:      Tejun Heo <tj@kernel.org>
4790 M:      Jens Axboe <axboe@kernel.dk>
4791 L:      cgroups@vger.kernel.org
4792 L:      linux-block@vger.kernel.org
4793 T:      git git://git.kernel.dk/linux-block
4794 F:      Documentation/admin-guide/cgroup-v1/blkio-controller.rst
4795 F:      block/bfq-cgroup.c
4796 F:      block/blk-cgroup.c
4797 F:      block/blk-iolatency.c
4798 F:      block/blk-throttle.c
4799 F:      include/linux/blk-cgroup.h
4800
4801 CONTROL GROUP - CPUSET
4802 M:      Zefan Li <lizefan.x@bytedance.com>
4803 L:      cgroups@vger.kernel.org
4804 S:      Maintained
4805 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup.git
4806 F:      Documentation/admin-guide/cgroup-v1/cpusets.rst
4807 F:      include/linux/cpuset.h
4808 F:      kernel/cgroup/cpuset.c
4809
4810 CONTROL GROUP - MEMORY RESOURCE CONTROLLER (MEMCG)
4811 M:      Johannes Weiner <hannes@cmpxchg.org>
4812 M:      Michal Hocko <mhocko@kernel.org>
4813 M:      Vladimir Davydov <vdavydov.dev@gmail.com>
4814 L:      cgroups@vger.kernel.org
4815 L:      linux-mm@kvack.org
4816 S:      Maintained
4817 F:      mm/memcontrol.c
4818 F:      mm/swap_cgroup.c
4819
4820 CORETEMP HARDWARE MONITORING DRIVER
4821 M:      Fenghua Yu <fenghua.yu@intel.com>
4822 L:      linux-hwmon@vger.kernel.org
4823 S:      Maintained
4824 F:      Documentation/hwmon/coretemp.rst
4825 F:      drivers/hwmon/coretemp.c
4826
4827 CORSAIR-CPRO HARDWARE MONITOR DRIVER
4828 M:      Marius Zachmann <mail@mariuszachmann.de>
4829 L:      linux-hwmon@vger.kernel.org
4830 S:      Maintained
4831 F:      drivers/hwmon/corsair-cpro.c
4832
4833 CORSAIR-PSU HARDWARE MONITOR DRIVER
4834 M:      Wilken Gottwalt <wilken.gottwalt@posteo.net>
4835 L:      linux-hwmon@vger.kernel.org
4836 S:      Maintained
4837 F:      Documentation/hwmon/corsair-psu.rst
4838 F:      drivers/hwmon/corsair-psu.c
4839
4840 COSA/SRP SYNC SERIAL DRIVER
4841 M:      Jan "Yenya" Kasprzak <kas@fi.muni.cz>
4842 S:      Maintained
4843 W:      http://www.fi.muni.cz/~kas/cosa/
4844 F:      drivers/net/wan/cosa*
4845
4846 COUNTER SUBSYSTEM
4847 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
4848 L:      linux-iio@vger.kernel.org
4849 S:      Maintained
4850 F:      Documentation/ABI/testing/sysfs-bus-counter
4851 F:      Documentation/driver-api/generic-counter.rst
4852 F:      drivers/counter/
4853 F:      include/linux/counter.h
4854 F:      include/linux/counter_enum.h
4855
4856 CP2615 I2C DRIVER
4857 M:      Bence Csókás <bence98@sch.bme.hu>
4858 S:      Maintained
4859 F:      drivers/i2c/busses/i2c-cp2615.c
4860
4861 CPMAC ETHERNET DRIVER
4862 M:      Florian Fainelli <f.fainelli@gmail.com>
4863 L:      netdev@vger.kernel.org
4864 S:      Maintained
4865 F:      drivers/net/ethernet/ti/cpmac.c
4866
4867 CPU FREQUENCY DRIVERS - VEXPRESS SPC ARM BIG LITTLE
4868 M:      Viresh Kumar <viresh.kumar@linaro.org>
4869 M:      Sudeep Holla <sudeep.holla@arm.com>
4870 L:      linux-pm@vger.kernel.org
4871 S:      Maintained
4872 W:      http://www.arm.com/products/processors/technologies/biglittleprocessing.php
4873 F:      drivers/cpufreq/vexpress-spc-cpufreq.c
4874
4875 CPU FREQUENCY SCALING FRAMEWORK
4876 M:      "Rafael J. Wysocki" <rafael@kernel.org>
4877 M:      Viresh Kumar <viresh.kumar@linaro.org>
4878 L:      linux-pm@vger.kernel.org
4879 S:      Maintained
4880 B:      https://bugzilla.kernel.org
4881 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4882 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git (For ARM Updates)
4883 F:      Documentation/admin-guide/pm/cpufreq.rst
4884 F:      Documentation/admin-guide/pm/intel_pstate.rst
4885 F:      Documentation/cpu-freq/
4886 F:      Documentation/devicetree/bindings/cpufreq/
4887 F:      drivers/cpufreq/
4888 F:      include/linux/cpufreq.h
4889 F:      include/linux/sched/cpufreq.h
4890 F:      kernel/sched/cpufreq*.c
4891 F:      tools/testing/selftests/cpufreq/
4892
4893 CPU IDLE TIME MANAGEMENT FRAMEWORK
4894 M:      "Rafael J. Wysocki" <rafael@kernel.org>
4895 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4896 L:      linux-pm@vger.kernel.org
4897 S:      Maintained
4898 B:      https://bugzilla.kernel.org
4899 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4900 F:      Documentation/admin-guide/pm/cpuidle.rst
4901 F:      Documentation/driver-api/pm/cpuidle.rst
4902 F:      drivers/cpuidle/
4903 F:      include/linux/cpuidle.h
4904
4905 CPU POWER MONITORING SUBSYSTEM
4906 M:      Thomas Renninger <trenn@suse.com>
4907 M:      Shuah Khan <shuah@kernel.org>
4908 M:      Shuah Khan <skhan@linuxfoundation.org>
4909 L:      linux-pm@vger.kernel.org
4910 S:      Maintained
4911 F:      tools/power/cpupower/
4912
4913 CPUID/MSR DRIVER
4914 M:      "H. Peter Anvin" <hpa@zytor.com>
4915 S:      Maintained
4916 F:      arch/x86/kernel/cpuid.c
4917 F:      arch/x86/kernel/msr.c
4918
4919 CPUIDLE DRIVER - ARM BIG LITTLE
4920 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
4921 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4922 L:      linux-pm@vger.kernel.org
4923 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4924 S:      Maintained
4925 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git
4926 F:      drivers/cpuidle/cpuidle-big_little.c
4927
4928 CPUIDLE DRIVER - ARM EXYNOS
4929 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
4930 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
4931 M:      Kukjin Kim <kgene@kernel.org>
4932 L:      linux-pm@vger.kernel.org
4933 L:      linux-samsung-soc@vger.kernel.org
4934 S:      Supported
4935 F:      arch/arm/mach-exynos/pm.c
4936 F:      drivers/cpuidle/cpuidle-exynos.c
4937 F:      include/linux/platform_data/cpuidle-exynos.h
4938
4939 CPUIDLE DRIVER - ARM PSCI
4940 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
4941 M:      Sudeep Holla <sudeep.holla@arm.com>
4942 L:      linux-pm@vger.kernel.org
4943 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4944 S:      Supported
4945 F:      drivers/cpuidle/cpuidle-psci.c
4946
4947 CPUIDLE DRIVER - ARM PSCI PM DOMAIN
4948 M:      Ulf Hansson <ulf.hansson@linaro.org>
4949 L:      linux-pm@vger.kernel.org
4950 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
4951 S:      Supported
4952 F:      drivers/cpuidle/cpuidle-psci.h
4953 F:      drivers/cpuidle/cpuidle-psci-domain.c
4954
4955 CRAMFS FILESYSTEM
4956 M:      Nicolas Pitre <nico@fluxnic.net>
4957 S:      Maintained
4958 F:      Documentation/filesystems/cramfs.rst
4959 F:      fs/cramfs/
4960
4961 CREATIVE SB0540
4962 M:      Bastien Nocera <hadess@hadess.net>
4963 L:      linux-input@vger.kernel.org
4964 S:      Maintained
4965 F:      drivers/hid/hid-creative-sb0540.c
4966
4967 CRYPTO API
4968 M:      Herbert Xu <herbert@gondor.apana.org.au>
4969 M:      "David S. Miller" <davem@davemloft.net>
4970 L:      linux-crypto@vger.kernel.org
4971 S:      Maintained
4972 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
4973 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
4974 F:      Documentation/crypto/
4975 F:      Documentation/devicetree/bindings/crypto/
4976 F:      arch/*/crypto/
4977 F:      crypto/
4978 F:      drivers/crypto/
4979 F:      include/crypto/
4980 F:      include/linux/crypto*
4981 F:      lib/crypto/
4982
4983 CRYPTOGRAPHIC RANDOM NUMBER GENERATOR
4984 M:      Neil Horman <nhorman@tuxdriver.com>
4985 L:      linux-crypto@vger.kernel.org
4986 S:      Maintained
4987 F:      crypto/ansi_cprng.c
4988 F:      crypto/rng.c
4989
4990 CS3308 MEDIA DRIVER
4991 M:      Hans Verkuil <hverkuil@xs4all.nl>
4992 L:      linux-media@vger.kernel.org
4993 S:      Odd Fixes
4994 W:      http://linuxtv.org
4995 T:      git git://linuxtv.org/media_tree.git
4996 F:      drivers/media/i2c/cs3308.c
4997
4998 CS5535 Audio ALSA driver
4999 M:      Jaya Kumar <jayakumar.alsa@gmail.com>
5000 S:      Maintained
5001 F:      sound/pci/cs5535audio/
5002
5003 CSI DRIVERS FOR ALLWINNER V3s
5004 M:      Yong Deng <yong.deng@magewell.com>
5005 L:      linux-media@vger.kernel.org
5006 S:      Maintained
5007 T:      git git://linuxtv.org/media_tree.git
5008 F:      Documentation/devicetree/bindings/media/allwinner,sun6i-a31-csi.yaml
5009 F:      drivers/media/platform/sunxi/sun6i-csi/
5010
5011 CW1200 WLAN driver
5012 M:      Solomon Peachy <pizza@shaftnet.org>
5013 S:      Maintained
5014 F:      drivers/net/wireless/st/cw1200/
5015
5016 CX18 VIDEO4LINUX DRIVER
5017 M:      Andy Walls <awalls@md.metrocast.net>
5018 L:      linux-media@vger.kernel.org
5019 S:      Maintained
5020 W:      https://linuxtv.org
5021 T:      git git://linuxtv.org/media_tree.git
5022 F:      drivers/media/pci/cx18/
5023 F:      include/uapi/linux/ivtv*
5024
5025 CX2341X MPEG ENCODER HELPER MODULE
5026 M:      Hans Verkuil <hverkuil@xs4all.nl>
5027 L:      linux-media@vger.kernel.org
5028 S:      Maintained
5029 W:      https://linuxtv.org
5030 T:      git git://linuxtv.org/media_tree.git
5031 F:      drivers/media/common/cx2341x*
5032 F:      include/media/drv-intf/cx2341x.h
5033
5034 CX24120 MEDIA DRIVER
5035 M:      Jemma Denson <jdenson@gmail.com>
5036 M:      Patrick Boettcher <patrick.boettcher@posteo.de>
5037 L:      linux-media@vger.kernel.org
5038 S:      Maintained
5039 W:      https://linuxtv.org
5040 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5041 F:      drivers/media/dvb-frontends/cx24120*
5042
5043 CX88 VIDEO4LINUX DRIVER
5044 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
5045 L:      linux-media@vger.kernel.org
5046 S:      Odd fixes
5047 W:      https://linuxtv.org
5048 T:      git git://linuxtv.org/media_tree.git
5049 F:      Documentation/driver-api/media/drivers/cx88*
5050 F:      drivers/media/pci/cx88/
5051
5052 CXD2820R MEDIA DRIVER
5053 M:      Antti Palosaari <crope@iki.fi>
5054 L:      linux-media@vger.kernel.org
5055 S:      Maintained
5056 W:      https://linuxtv.org
5057 W:      http://palosaari.fi/linux/
5058 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5059 T:      git git://linuxtv.org/anttip/media_tree.git
5060 F:      drivers/media/dvb-frontends/cxd2820r*
5061
5062 CXGB3 ETHERNET DRIVER (CXGB3)
5063 M:      Raju Rangoju <rajur@chelsio.com>
5064 L:      netdev@vger.kernel.org
5065 S:      Supported
5066 W:      http://www.chelsio.com
5067 F:      drivers/net/ethernet/chelsio/cxgb3/
5068
5069 CXGB3 ISCSI DRIVER (CXGB3I)
5070 M:      Karen Xie <kxie@chelsio.com>
5071 L:      linux-scsi@vger.kernel.org
5072 S:      Supported
5073 W:      http://www.chelsio.com
5074 F:      drivers/scsi/cxgbi/cxgb3i
5075
5076 CXGB4 CRYPTO DRIVER (chcr)
5077 M:      Ayush Sawal <ayush.sawal@chelsio.com>
5078 M:      Vinay Kumar Yadav <vinay.yadav@chelsio.com>
5079 M:      Rohit Maheshwari <rohitm@chelsio.com>
5080 L:      linux-crypto@vger.kernel.org
5081 S:      Supported
5082 W:      http://www.chelsio.com
5083 F:      drivers/crypto/chelsio
5084
5085 CXGB4 INLINE CRYPTO DRIVER
5086 M:      Ayush Sawal <ayush.sawal@chelsio.com>
5087 M:      Vinay Kumar Yadav <vinay.yadav@chelsio.com>
5088 M:      Rohit Maheshwari <rohitm@chelsio.com>
5089 L:      netdev@vger.kernel.org
5090 S:      Supported
5091 W:      http://www.chelsio.com
5092 F:      drivers/net/ethernet/chelsio/inline_crypto/
5093
5094 CXGB4 ETHERNET DRIVER (CXGB4)
5095 M:      Raju Rangoju <rajur@chelsio.com>
5096 L:      netdev@vger.kernel.org
5097 S:      Supported
5098 W:      http://www.chelsio.com
5099 F:      drivers/net/ethernet/chelsio/cxgb4/
5100
5101 CXGB4 ISCSI DRIVER (CXGB4I)
5102 M:      Karen Xie <kxie@chelsio.com>
5103 L:      linux-scsi@vger.kernel.org
5104 S:      Supported
5105 W:      http://www.chelsio.com
5106 F:      drivers/scsi/cxgbi/cxgb4i
5107
5108 CXGB4 IWARP RNIC DRIVER (IW_CXGB4)
5109 M:      Potnuri Bharat Teja <bharat@chelsio.com>
5110 L:      linux-rdma@vger.kernel.org
5111 S:      Supported
5112 W:      http://www.openfabrics.org
5113 F:      drivers/infiniband/hw/cxgb4/
5114 F:      include/uapi/rdma/cxgb4-abi.h
5115
5116 CXGB4VF ETHERNET DRIVER (CXGB4VF)
5117 M:      Raju Rangoju <rajur@chelsio.com>
5118 L:      netdev@vger.kernel.org
5119 S:      Supported
5120 W:      http://www.chelsio.com
5121 F:      drivers/net/ethernet/chelsio/cxgb4vf/
5122
5123 CXL (IBM Coherent Accelerator Processor Interface CAPI) DRIVER
5124 M:      Frederic Barrat <fbarrat@linux.ibm.com>
5125 M:      Andrew Donnellan <ajd@linux.ibm.com>
5126 L:      linuxppc-dev@lists.ozlabs.org
5127 S:      Supported
5128 F:      Documentation/ABI/testing/sysfs-class-cxl
5129 F:      Documentation/powerpc/cxl.rst
5130 F:      arch/powerpc/platforms/powernv/pci-cxl.c
5131 F:      drivers/misc/cxl/
5132 F:      include/misc/cxl*
5133 F:      include/uapi/misc/cxl.h
5134
5135 CXLFLASH (IBM Coherent Accelerator Processor Interface CAPI Flash) SCSI DRIVER
5136 M:      Manoj N. Kumar <manoj@linux.ibm.com>
5137 M:      Matthew R. Ochs <mrochs@linux.ibm.com>
5138 M:      Uma Krishnan <ukrishn@linux.ibm.com>
5139 L:      linux-scsi@vger.kernel.org
5140 S:      Supported
5141 F:      Documentation/powerpc/cxlflash.rst
5142 F:      drivers/scsi/cxlflash/
5143 F:      include/uapi/scsi/cxlflash_ioctl.h
5144
5145 CYBERPRO FB DRIVER
5146 M:      Russell King <linux@armlinux.org.uk>
5147 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
5148 S:      Maintained
5149 W:      http://www.armlinux.org.uk/
5150 F:      drivers/video/fbdev/cyber2000fb.*
5151
5152 CYCLADES PC300 DRIVER
5153 S:      Orphan
5154 F:      drivers/net/wan/pc300*
5155
5156 CYPRESS_FIRMWARE MEDIA DRIVER
5157 M:      Antti Palosaari <crope@iki.fi>
5158 L:      linux-media@vger.kernel.org
5159 S:      Maintained
5160 W:      https://linuxtv.org
5161 W:      http://palosaari.fi/linux/
5162 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
5163 T:      git git://linuxtv.org/anttip/media_tree.git
5164 F:      drivers/media/common/cypress_firmware*
5165
5166 CYPRESS CY8CTMA140 TOUCHSCREEN DRIVER
5167 M:      Linus Walleij <linus.walleij@linaro.org>
5168 L:      linux-input@vger.kernel.org
5169 S:      Maintained
5170 F:      drivers/input/touchscreen/cy8ctma140.c
5171
5172 CYTTSP TOUCHSCREEN DRIVER
5173 M:      Linus Walleij <linus.walleij@linaro.org>
5174 L:      linux-input@vger.kernel.org
5175 S:      Maintained
5176 F:      drivers/input/touchscreen/cyttsp*
5177
5178 D-LINK DIR-685 TOUCHKEYS DRIVER
5179 M:      Linus Walleij <linus.walleij@linaro.org>
5180 L:      linux-input@vger.kernel.org
5181 S:      Supported
5182 F:      drivers/input/keyboard/dlink-dir685-touchkeys.c
5183
5184 DALLAS/MAXIM DS1685-FAMILY REAL TIME CLOCK
5185 M:      Joshua Kinard <kumba@gentoo.org>
5186 S:      Maintained
5187 F:      drivers/rtc/rtc-ds1685.c
5188 F:      include/linux/rtc/ds1685.h
5189
5190 DAMA SLAVE for AX.25
5191 M:      Joerg Reuter <jreuter@yaina.de>
5192 L:      linux-hams@vger.kernel.org
5193 S:      Maintained
5194 W:      http://yaina.de/jreuter/
5195 W:      http://www.qsl.net/dl1bke/
5196 F:      net/ax25/af_ax25.c
5197 F:      net/ax25/ax25_dev.c
5198 F:      net/ax25/ax25_ds_*
5199 F:      net/ax25/ax25_in.c
5200 F:      net/ax25/ax25_out.c
5201 F:      net/ax25/ax25_timer.c
5202 F:      net/ax25/sysctl_net_ax25.c
5203
5204 DATA ACCESS MONITOR
5205 M:      SeongJae Park <sjpark@amazon.de>
5206 L:      linux-mm@kvack.org
5207 S:      Maintained
5208 F:      Documentation/admin-guide/mm/damon/
5209 F:      Documentation/vm/damon/
5210 F:      include/linux/damon.h
5211 F:      include/trace/events/damon.h
5212 F:      mm/damon/
5213 F:      tools/testing/selftests/damon/
5214
5215 DAVICOM FAST ETHERNET (DMFE) NETWORK DRIVER
5216 L:      netdev@vger.kernel.org
5217 S:      Orphan
5218 F:      Documentation/networking/device_drivers/ethernet/dec/dmfe.rst
5219 F:      drivers/net/ethernet/dec/tulip/dmfe.c
5220
5221 DC390/AM53C974 SCSI driver
5222 M:      Hannes Reinecke <hare@suse.com>
5223 L:      linux-scsi@vger.kernel.org
5224 S:      Maintained
5225 F:      drivers/scsi/am53c974.c
5226
5227 DC395x SCSI driver
5228 M:      Oliver Neukum <oliver@neukum.org>
5229 M:      Ali Akcaagac <aliakc@web.de>
5230 M:      Jamie Lenehan <lenehan@twibble.org>
5231 L:      dc395x@twibble.org
5232 S:      Maintained
5233 W:      http://twibble.org/dist/dc395x/
5234 W:      http://lists.twibble.org/mailman/listinfo/dc395x/
5235 F:      Documentation/scsi/dc395x.rst
5236 F:      drivers/scsi/dc395x.*
5237
5238 DCCP PROTOCOL
5239 L:      dccp@vger.kernel.org
5240 S:      Orphan
5241 W:      http://www.linuxfoundation.org/collaborate/workgroups/networking/dccp
5242 F:      include/linux/dccp.h
5243 F:      include/linux/tfrc.h
5244 F:      include/uapi/linux/dccp.h
5245 F:      net/dccp/
5246
5247 DECnet NETWORK LAYER
5248 L:      linux-decnet-user@lists.sourceforge.net
5249 S:      Orphan
5250 W:      http://linux-decnet.sourceforge.net
5251 F:      Documentation/networking/decnet.rst
5252 F:      net/decnet/
5253
5254 DECSTATION PLATFORM SUPPORT
5255 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
5256 L:      linux-mips@vger.kernel.org
5257 S:      Maintained
5258 W:      http://www.linux-mips.org/wiki/DECstation
5259 F:      arch/mips/dec/
5260 F:      arch/mips/include/asm/dec/
5261 F:      arch/mips/include/asm/mach-dec/
5262
5263 DEFXX FDDI NETWORK DRIVER
5264 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
5265 S:      Maintained
5266 F:      drivers/net/fddi/defxx.*
5267
5268 DEFZA FDDI NETWORK DRIVER
5269 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
5270 S:      Maintained
5271 F:      drivers/net/fddi/defza.*
5272
5273 DEINTERLACE DRIVERS FOR ALLWINNER H3
5274 M:      Jernej Skrabec <jernej.skrabec@gmail.com>
5275 L:      linux-media@vger.kernel.org
5276 S:      Maintained
5277 T:      git git://linuxtv.org/media_tree.git
5278 F:      Documentation/devicetree/bindings/media/allwinner,sun8i-h3-deinterlace.yaml
5279 F:      drivers/media/platform/sunxi/sun8i-di/
5280
5281 DELL LAPTOP DRIVER
5282 M:      Matthew Garrett <mjg59@srcf.ucam.org>
5283 M:      Pali Rohár <pali@kernel.org>
5284 L:      platform-driver-x86@vger.kernel.org
5285 S:      Maintained
5286 F:      drivers/platform/x86/dell/dell-laptop.c
5287
5288 DELL LAPTOP FREEFALL DRIVER
5289 M:      Pali Rohár <pali@kernel.org>
5290 S:      Maintained
5291 F:      drivers/platform/x86/dell/dell-smo8800.c
5292
5293 DELL LAPTOP RBTN DRIVER
5294 M:      Pali Rohár <pali@kernel.org>
5295 S:      Maintained
5296 F:      drivers/platform/x86/dell/dell-rbtn.*
5297
5298 DELL LAPTOP SMM DRIVER
5299 M:      Pali Rohár <pali@kernel.org>
5300 S:      Maintained
5301 F:      drivers/hwmon/dell-smm-hwmon.c
5302 F:      include/uapi/linux/i8k.h
5303
5304 DELL REMOTE BIOS UPDATE DRIVER
5305 M:      Stuart Hayes <stuart.w.hayes@gmail.com>
5306 L:      platform-driver-x86@vger.kernel.org
5307 S:      Maintained
5308 F:      drivers/platform/x86/dell/dell_rbu.c
5309
5310 DELL SMBIOS DRIVER
5311 M:      Pali Rohár <pali@kernel.org>
5312 L:      Dell.Client.Kernel@dell.com
5313 L:      platform-driver-x86@vger.kernel.org
5314 S:      Maintained
5315 F:      drivers/platform/x86/dell/dell-smbios.*
5316
5317 DELL SMBIOS SMM DRIVER
5318 L:      Dell.Client.Kernel@dell.com
5319 L:      platform-driver-x86@vger.kernel.org
5320 S:      Maintained
5321 F:      drivers/platform/x86/dell/dell-smbios-smm.c
5322
5323 DELL SMBIOS WMI DRIVER
5324 L:      Dell.Client.Kernel@dell.com
5325 L:      platform-driver-x86@vger.kernel.org
5326 S:      Maintained
5327 F:      drivers/platform/x86/dell/dell-smbios-wmi.c
5328 F:      tools/wmi/dell-smbios-example.c
5329
5330 DELL SYSTEMS MANAGEMENT BASE DRIVER (dcdbas)
5331 M:      Stuart Hayes <stuart.w.hayes@gmail.com>
5332 L:      platform-driver-x86@vger.kernel.org
5333 S:      Maintained
5334 F:      Documentation/driver-api/dcdbas.rst
5335 F:      drivers/platform/x86/dell/dcdbas.*
5336
5337 DELL WMI DESCRIPTOR DRIVER
5338 L:      Dell.Client.Kernel@dell.com
5339 S:      Maintained
5340 F:      drivers/platform/x86/dell/dell-wmi-descriptor.c
5341
5342 DELL WMI SYSMAN DRIVER
5343 M:      Divya Bharathi <divya.bharathi@dell.com>
5344 M:      Prasanth Ksr <prasanth.ksr@dell.com>
5345 L:      Dell.Client.Kernel@dell.com
5346 L:      platform-driver-x86@vger.kernel.org
5347 S:      Maintained
5348 F:      Documentation/ABI/testing/sysfs-class-firmware-attributes
5349 F:      drivers/platform/x86/dell/dell-wmi-sysman/
5350
5351 DELL WMI NOTIFICATIONS DRIVER
5352 M:      Matthew Garrett <mjg59@srcf.ucam.org>
5353 M:      Pali Rohár <pali@kernel.org>
5354 S:      Maintained
5355 F:      drivers/platform/x86/dell/dell-wmi-base.c
5356
5357 DELL WMI HARDWARE PRIVACY SUPPORT
5358 M:      Perry Yuan <Perry.Yuan@dell.com>
5359 L:      Dell.Client.Kernel@dell.com
5360 L:      platform-driver-x86@vger.kernel.org
5361 S:      Maintained
5362 F:      drivers/platform/x86/dell/dell-wmi-privacy.c
5363
5364 DELTA ST MEDIA DRIVER
5365 M:      Hugues Fruchet <hugues.fruchet@foss.st.com>
5366 L:      linux-media@vger.kernel.org
5367 S:      Supported
5368 W:      https://linuxtv.org
5369 T:      git git://linuxtv.org/media_tree.git
5370 F:      drivers/media/platform/sti/delta
5371
5372 DELTA DPS920AB PSU DRIVER
5373 M:      Robert Marko <robert.marko@sartura.hr>
5374 L:      linux-hwmon@vger.kernel.org
5375 S:      Maintained
5376 F:      Documentation/hwmon/dps920ab.rst
5377 F:      drivers/hwmon/pmbus/dps920ab.c
5378
5379 DENALI NAND DRIVER
5380 L:      linux-mtd@lists.infradead.org
5381 S:      Orphan
5382 F:      drivers/mtd/nand/raw/denali*
5383
5384 DESIGNWARE EDMA CORE IP DRIVER
5385 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
5386 L:      dmaengine@vger.kernel.org
5387 S:      Maintained
5388 F:      drivers/dma/dw-edma/
5389 F:      include/linux/dma/edma.h
5390
5391 DESIGNWARE XDATA IP DRIVER
5392 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
5393 L:      linux-pci@vger.kernel.org
5394 S:      Maintained
5395 F:      Documentation/misc-devices/dw-xdata-pcie.rst
5396 F:      drivers/misc/dw-xdata-pcie.c
5397
5398 DESIGNWARE USB2 DRD IP DRIVER
5399 M:      Minas Harutyunyan <hminas@synopsys.com>
5400 L:      linux-usb@vger.kernel.org
5401 S:      Maintained
5402 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
5403 F:      drivers/usb/dwc2/
5404
5405 DESIGNWARE USB3 DRD IP DRIVER
5406 M:      Felipe Balbi <balbi@kernel.org>
5407 L:      linux-usb@vger.kernel.org
5408 S:      Maintained
5409 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
5410 F:      drivers/usb/dwc3/
5411
5412 DEVANTECH SRF ULTRASONIC RANGER IIO DRIVER
5413 M:      Andreas Klinger <ak@it-klinger.de>
5414 L:      linux-iio@vger.kernel.org
5415 S:      Maintained
5416 F:      Documentation/ABI/testing/sysfs-bus-iio-distance-srf08
5417 F:      drivers/iio/proximity/srf*.c
5418
5419 DEVICE COREDUMP (DEV_COREDUMP)
5420 M:      Johannes Berg <johannes@sipsolutions.net>
5421 L:      linux-kernel@vger.kernel.org
5422 S:      Maintained
5423 F:      drivers/base/devcoredump.c
5424 F:      include/linux/devcoredump.h
5425
5426 DEVICE DEPENDENCY HELPER SCRIPT
5427 M:      Saravana Kannan <saravanak@google.com>
5428 L:      linux-kernel@vger.kernel.org
5429 S:      Maintained
5430 F:      scripts/dev-needs.sh
5431
5432 DEVICE DIRECT ACCESS (DAX)
5433 M:      Dan Williams <dan.j.williams@intel.com>
5434 M:      Vishal Verma <vishal.l.verma@intel.com>
5435 M:      Dave Jiang <dave.jiang@intel.com>
5436 L:      nvdimm@lists.linux.dev
5437 S:      Supported
5438 F:      drivers/dax/
5439
5440 DEVICE FREQUENCY (DEVFREQ)
5441 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
5442 M:      Kyungmin Park <kyungmin.park@samsung.com>
5443 M:      Chanwoo Choi <cw00.choi@samsung.com>
5444 L:      linux-pm@vger.kernel.org
5445 S:      Maintained
5446 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
5447 F:      Documentation/devicetree/bindings/devfreq/
5448 F:      drivers/devfreq/
5449 F:      include/linux/devfreq.h
5450 F:      include/trace/events/devfreq.h
5451
5452 DEVICE FREQUENCY EVENT (DEVFREQ-EVENT)
5453 M:      Chanwoo Choi <cw00.choi@samsung.com>
5454 L:      linux-pm@vger.kernel.org
5455 S:      Supported
5456 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
5457 F:      Documentation/devicetree/bindings/devfreq/event/
5458 F:      drivers/devfreq/devfreq-event.c
5459 F:      drivers/devfreq/event/
5460 F:      include/dt-bindings/pmu/exynos_ppmu.h
5461 F:      include/linux/devfreq-event.h
5462
5463 DEVICE NUMBER REGISTRY
5464 M:      Torben Mathiasen <device@lanana.org>
5465 S:      Maintained
5466 W:      http://lanana.org/docs/device-list/index.html
5467
5468 DEVICE RESOURCE MANAGEMENT HELPERS
5469 M:      Hans de Goede <hdegoede@redhat.com>
5470 R:      Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
5471 S:      Maintained
5472 F:      include/linux/devm-helpers.h
5473
5474 DEVICE-MAPPER  (LVM)
5475 M:      Alasdair Kergon <agk@redhat.com>
5476 M:      Mike Snitzer <snitzer@redhat.com>
5477 M:      dm-devel@redhat.com
5478 L:      dm-devel@redhat.com
5479 S:      Maintained
5480 W:      http://sources.redhat.com/dm
5481 Q:      http://patchwork.kernel.org/project/dm-devel/list/
5482 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm.git
5483 T:      quilt http://people.redhat.com/agk/patches/linux/editing/
5484 F:      Documentation/admin-guide/device-mapper/
5485 F:      drivers/md/Kconfig
5486 F:      drivers/md/Makefile
5487 F:      drivers/md/dm*
5488 F:      drivers/md/persistent-data/
5489 F:      include/linux/device-mapper.h
5490 F:      include/linux/dm-*.h
5491 F:      include/uapi/linux/dm-*.h
5492
5493 DEVLINK
5494 M:      Jiri Pirko <jiri@nvidia.com>
5495 L:      netdev@vger.kernel.org
5496 S:      Supported
5497 F:      Documentation/networking/devlink
5498 F:      include/net/devlink.h
5499 F:      include/uapi/linux/devlink.h
5500 F:      net/core/devlink.c
5501
5502 DH ELECTRONICS IMX6 DHCOM BOARD SUPPORT
5503 M:      Christoph Niedermaier <cniedermaier@dh-electronics.com>
5504 L:      kernel@dh-electronics.com
5505 S:      Maintained
5506 F:      arch/arm/boot/dts/imx6*-dhcom-*
5507
5508 DH ELECTRONICS STM32MP1 DHCOM/DHCOR BOARD SUPPORT
5509 M:      Marek Vasut <marex@denx.de>
5510 L:      kernel@dh-electronics.com
5511 S:      Maintained
5512 F:      arch/arm/boot/dts/stm32mp1*-dhcom-*
5513 F:      arch/arm/boot/dts/stm32mp1*-dhcor-*
5514
5515 DIALOG SEMICONDUCTOR DRIVERS
5516 M:      Support Opensource <support.opensource@diasemi.com>
5517 S:      Supported
5518 W:      http://www.dialog-semiconductor.com/products
5519 F:      Documentation/devicetree/bindings/input/da90??-onkey.txt
5520 F:      Documentation/devicetree/bindings/input/dlg,da72??.txt
5521 F:      Documentation/devicetree/bindings/mfd/da90*.txt
5522 F:      Documentation/devicetree/bindings/regulator/dlg,da9*.yaml
5523 F:      Documentation/devicetree/bindings/regulator/da92*.txt
5524 F:      Documentation/devicetree/bindings/regulator/slg51000.txt
5525 F:      Documentation/devicetree/bindings/sound/da[79]*.txt
5526 F:      Documentation/devicetree/bindings/thermal/da90??-thermal.txt
5527 F:      Documentation/devicetree/bindings/watchdog/da90??-wdt.txt
5528 F:      Documentation/hwmon/da90??.rst
5529 F:      drivers/gpio/gpio-da90??.c
5530 F:      drivers/hwmon/da90??-hwmon.c
5531 F:      drivers/iio/adc/da91??-*.c
5532 F:      drivers/input/misc/da72??.[ch]
5533 F:      drivers/input/misc/da90??_onkey.c
5534 F:      drivers/input/touchscreen/da9052_tsi.c
5535 F:      drivers/leds/leds-da90??.c
5536 F:      drivers/mfd/da903x.c
5537 F:      drivers/mfd/da90??-*.c
5538 F:      drivers/mfd/da91??-*.c
5539 F:      drivers/pinctrl/pinctrl-da90??.c
5540 F:      drivers/power/supply/da9052-battery.c
5541 F:      drivers/power/supply/da91??-*.c
5542 F:      drivers/regulator/da9???-regulator.[ch]
5543 F:      drivers/regulator/slg51000-regulator.[ch]
5544 F:      drivers/rtc/rtc-da90??.c
5545 F:      drivers/thermal/da90??-thermal.c
5546 F:      drivers/video/backlight/da90??_bl.c
5547 F:      drivers/watchdog/da90??_wdt.c
5548 F:      include/dt-bindings/regulator/dlg,da9*-regulator.h
5549 F:      include/linux/mfd/da903x.h
5550 F:      include/linux/mfd/da9052/
5551 F:      include/linux/mfd/da9055/
5552 F:      include/linux/mfd/da9062/
5553 F:      include/linux/mfd/da9063/
5554 F:      include/linux/mfd/da9150/
5555 F:      include/linux/regulator/da9211.h
5556 F:      include/sound/da[79]*.h
5557 F:      sound/soc/codecs/da[79]*.[ch]
5558
5559 DIAMOND SYSTEMS GPIO-MM GPIO DRIVER
5560 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
5561 L:      linux-gpio@vger.kernel.org
5562 S:      Maintained
5563 F:      drivers/gpio/gpio-gpio-mm.c
5564
5565 DIOLAN U2C-12 I2C DRIVER
5566 M:      Guenter Roeck <linux@roeck-us.net>
5567 L:      linux-i2c@vger.kernel.org
5568 S:      Maintained
5569 F:      drivers/i2c/busses/i2c-diolan-u2c.c
5570
5571 DIRECTORY NOTIFICATION (DNOTIFY)
5572 M:      Jan Kara <jack@suse.cz>
5573 R:      Amir Goldstein <amir73il@gmail.com>
5574 L:      linux-fsdevel@vger.kernel.org
5575 S:      Maintained
5576 F:      Documentation/filesystems/dnotify.rst
5577 F:      fs/notify/dnotify/
5578 F:      include/linux/dnotify.h
5579
5580 DISK GEOMETRY AND PARTITION HANDLING
5581 M:      Andries Brouwer <aeb@cwi.nl>
5582 S:      Maintained
5583 W:      http://www.win.tue.nl/~aeb/linux/Large-Disk.html
5584 W:      http://www.win.tue.nl/~aeb/linux/zip/zip-1.html
5585 W:      http://www.win.tue.nl/~aeb/partitions/partition_types-1.html
5586
5587 DISKQUOTA
5588 M:      Jan Kara <jack@suse.com>
5589 S:      Maintained
5590 F:      Documentation/filesystems/quota.rst
5591 F:      fs/quota/
5592 F:      include/linux/quota*.h
5593 F:      include/uapi/linux/quota*.h
5594
5595 DISPLAYLINK USB 2.0 FRAMEBUFFER DRIVER (UDLFB)
5596 M:      Bernie Thompson <bernie@plugable.com>
5597 L:      linux-fbdev@vger.kernel.org
5598 S:      Maintained
5599 W:      http://plugable.com/category/projects/udlfb/
5600 F:      Documentation/fb/udlfb.rst
5601 F:      drivers/video/fbdev/udlfb.c
5602 F:      include/video/udlfb.h
5603
5604 DISTRIBUTED LOCK MANAGER (DLM)
5605 M:      Christine Caulfield <ccaulfie@redhat.com>
5606 M:      David Teigland <teigland@redhat.com>
5607 L:      cluster-devel@redhat.com
5608 S:      Supported
5609 W:      http://sources.redhat.com/cluster/
5610 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/teigland/linux-dlm.git
5611 F:      fs/dlm/
5612
5613 DMA BUFFER SHARING FRAMEWORK
5614 M:      Sumit Semwal <sumit.semwal@linaro.org>
5615 M:      Christian König <christian.koenig@amd.com>
5616 L:      linux-media@vger.kernel.org
5617 L:      dri-devel@lists.freedesktop.org
5618 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
5619 S:      Maintained
5620 T:      git git://anongit.freedesktop.org/drm/drm-misc
5621 F:      Documentation/driver-api/dma-buf.rst
5622 F:      drivers/dma-buf/
5623 F:      include/linux/*fence.h
5624 F:      include/linux/dma-buf*
5625 F:      include/linux/dma-resv.h
5626 K:      \bdma_(?:buf|fence|resv)\b
5627
5628 DMA GENERIC OFFLOAD ENGINE SUBSYSTEM
5629 M:      Vinod Koul <vkoul@kernel.org>
5630 L:      dmaengine@vger.kernel.org
5631 S:      Maintained
5632 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
5633 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vkoul/dmaengine.git
5634 F:      Documentation/devicetree/bindings/dma/
5635 F:      Documentation/driver-api/dmaengine/
5636 F:      drivers/dma/
5637 F:      include/linux/dma/
5638 F:      include/linux/dmaengine.h
5639 F:      include/linux/of_dma.h
5640
5641 DMA MAPPING HELPERS
5642 M:      Christoph Hellwig <hch@lst.de>
5643 M:      Marek Szyprowski <m.szyprowski@samsung.com>
5644 R:      Robin Murphy <robin.murphy@arm.com>
5645 L:      iommu@lists.linux-foundation.org
5646 L:      iommu@lists.linux.dev
5647 S:      Supported
5648 W:      http://git.infradead.org/users/hch/dma-mapping.git
5649 T:      git git://git.infradead.org/users/hch/dma-mapping.git
5650 F:      include/asm-generic/dma-mapping.h
5651 F:      include/linux/dma-direct.h
5652 F:      include/linux/dma-mapping.h
5653 F:      include/linux/dma-map-ops.h
5654 F:      kernel/dma/
5655
5656 DMA MAPPING BENCHMARK
5657 M:      Barry Song <song.bao.hua@hisilicon.com>
5658 L:      iommu@lists.linux-foundation.org
5659 L:      iommu@lists.linux.dev
5660 F:      kernel/dma/map_benchmark.c
5661 F:      tools/testing/selftests/dma/
5662
5663 DMA-BUF HEAPS FRAMEWORK
5664 M:      Sumit Semwal <sumit.semwal@linaro.org>
5665 R:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
5666 R:      Liam Mark <lmark@codeaurora.org>
5667 R:      Laura Abbott <labbott@redhat.com>
5668 R:      Brian Starkey <Brian.Starkey@arm.com>
5669 R:      John Stultz <john.stultz@linaro.org>
5670 L:      linux-media@vger.kernel.org
5671 L:      dri-devel@lists.freedesktop.org
5672 L:      linaro-mm-sig@lists.linaro.org (moderated for non-subscribers)
5673 S:      Maintained
5674 T:      git git://anongit.freedesktop.org/drm/drm-misc
5675 F:      drivers/dma-buf/dma-heap.c
5676 F:      drivers/dma-buf/heaps/*
5677 F:      include/linux/dma-heap.h
5678 F:      include/uapi/linux/dma-heap.h
5679
5680 DMC FREQUENCY DRIVER FOR SAMSUNG EXYNOS5422
5681 M:      Lukasz Luba <lukasz.luba@arm.com>
5682 L:      linux-pm@vger.kernel.org
5683 L:      linux-samsung-soc@vger.kernel.org
5684 S:      Maintained
5685 F:      Documentation/devicetree/bindings/memory-controllers/samsung,exynos5422-dmc.yaml
5686 F:      drivers/memory/samsung/exynos5422-dmc.c
5687
5688 DME1737 HARDWARE MONITOR DRIVER
5689 M:      Juerg Haefliger <juergh@gmail.com>
5690 L:      linux-hwmon@vger.kernel.org
5691 S:      Maintained
5692 F:      Documentation/hwmon/dme1737.rst
5693 F:      drivers/hwmon/dme1737.c
5694
5695 DMI/SMBIOS SUPPORT
5696 M:      Jean Delvare <jdelvare@suse.com>
5697 S:      Maintained
5698 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jdelvare/staging.git dmi-for-next
5699 F:      Documentation/ABI/testing/sysfs-firmware-dmi-tables
5700 F:      drivers/firmware/dmi-id.c
5701 F:      drivers/firmware/dmi_scan.c
5702 F:      include/linux/dmi.h
5703
5704 DOCUMENTATION
5705 M:      Jonathan Corbet <corbet@lwn.net>
5706 L:      linux-doc@vger.kernel.org
5707 S:      Maintained
5708 P:      Documentation/doc-guide/maintainer-profile.rst
5709 T:      git git://git.lwn.net/linux.git docs-next
5710 F:      Documentation/
5711 F:      scripts/documentation-file-ref-check
5712 F:      scripts/kernel-doc
5713 F:      scripts/sphinx-pre-install
5714 X:      Documentation/ABI/
5715 X:      Documentation/admin-guide/media/
5716 X:      Documentation/devicetree/
5717 X:      Documentation/driver-api/media/
5718 X:      Documentation/firmware-guide/acpi/
5719 X:      Documentation/i2c/
5720 X:      Documentation/power/
5721 X:      Documentation/spi/
5722 X:      Documentation/userspace-api/media/
5723
5724 DOCUMENTATION REPORTING ISSUES
5725 M:      Thorsten Leemhuis <linux@leemhuis.info>
5726 L:      linux-doc@vger.kernel.org
5727 S:      Maintained
5728 F:      Documentation/admin-guide/reporting-issues.rst
5729
5730 DOCUMENTATION SCRIPTS
5731 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
5732 L:      linux-doc@vger.kernel.org
5733 S:      Maintained
5734 F:      Documentation/sphinx/parse-headers.pl
5735 F:      scripts/documentation-file-ref-check
5736 F:      scripts/sphinx-pre-install
5737
5738 DOCUMENTATION/ITALIAN
5739 M:      Federico Vaga <federico.vaga@vaga.pv.it>
5740 L:      linux-doc@vger.kernel.org
5741 S:      Maintained
5742 F:      Documentation/translations/it_IT
5743
5744 DONGWOON DW9714 LENS VOICE COIL DRIVER
5745 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
5746 L:      linux-media@vger.kernel.org
5747 S:      Maintained
5748 T:      git git://linuxtv.org/media_tree.git
5749 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9714.txt
5750 F:      drivers/media/i2c/dw9714.c
5751
5752 DONGWOON DW9768 LENS VOICE COIL DRIVER
5753 M:      Dongchun Zhu <dongchun.zhu@mediatek.com>
5754 L:      linux-media@vger.kernel.org
5755 S:      Maintained
5756 T:      git git://linuxtv.org/media_tree.git
5757 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9768.yaml
5758 F:      drivers/media/i2c/dw9768.c
5759
5760 DONGWOON DW9807 LENS VOICE COIL DRIVER
5761 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
5762 L:      linux-media@vger.kernel.org
5763 S:      Maintained
5764 T:      git git://linuxtv.org/media_tree.git
5765 F:      Documentation/devicetree/bindings/media/i2c/dongwoon,dw9807-vcm.txt
5766 F:      drivers/media/i2c/dw9807-vcm.c
5767
5768 DOUBLETALK DRIVER
5769 M:      "James R. Van Zandt" <jrv@vanzandt.mv.com>
5770 L:      blinux-list@redhat.com
5771 S:      Maintained
5772 F:      drivers/char/dtlk.c
5773 F:      include/linux/dtlk.h
5774
5775 DPAA2 DATAPATH I/O (DPIO) DRIVER
5776 M:      Roy Pledge <Roy.Pledge@nxp.com>
5777 L:      linux-kernel@vger.kernel.org
5778 S:      Maintained
5779 F:      drivers/soc/fsl/dpio
5780
5781 DPAA2 ETHERNET DRIVER
5782 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
5783 L:      netdev@vger.kernel.org
5784 S:      Maintained
5785 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/ethernet-driver.rst
5786 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/mac-phy-support.rst
5787 F:      drivers/net/ethernet/freescale/dpaa2/Kconfig
5788 F:      drivers/net/ethernet/freescale/dpaa2/Makefile
5789 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-eth*
5790 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-mac*
5791 F:      drivers/net/ethernet/freescale/dpaa2/dpkg.h
5792 F:      drivers/net/ethernet/freescale/dpaa2/dpmac*
5793 F:      drivers/net/ethernet/freescale/dpaa2/dpni*
5794
5795 DPAA2 ETHERNET SWITCH DRIVER
5796 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
5797 L:      netdev@vger.kernel.org
5798 S:      Maintained
5799 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/switch-driver.rst
5800 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-switch*
5801 F:      drivers/net/ethernet/freescale/dpaa2/dpsw*
5802
5803 DPT_I2O SCSI RAID DRIVER
5804 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
5805 L:      linux-scsi@vger.kernel.org
5806 S:      Maintained
5807 W:      http://www.adaptec.com/
5808 F:      drivers/scsi/dpt*
5809 F:      drivers/scsi/dpt/
5810
5811 DRBD DRIVER
5812 M:      Philipp Reisner <philipp.reisner@linbit.com>
5813 M:      Lars Ellenberg <lars.ellenberg@linbit.com>
5814 L:      drbd-dev@lists.linbit.com
5815 S:      Supported
5816 W:      http://www.drbd.org
5817 T:      git git://git.linbit.com/linux-drbd.git
5818 T:      git git://git.linbit.com/drbd-8.4.git
5819 F:      Documentation/admin-guide/blockdev/
5820 F:      drivers/block/drbd/
5821 F:      lib/lru_cache.c
5822
5823 DRIVER COMPONENT FRAMEWORK
5824 L:      dri-devel@lists.freedesktop.org
5825 F:      drivers/base/component.c
5826 F:      include/linux/component.h
5827
5828 DRIVER CORE, KOBJECTS, DEBUGFS AND SYSFS
5829 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
5830 R:      "Rafael J. Wysocki" <rafael@kernel.org>
5831 S:      Supported
5832 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
5833 F:      Documentation/core-api/kobject.rst
5834 F:      drivers/base/
5835 F:      fs/debugfs/
5836 F:      fs/sysfs/
5837 F:      include/linux/debugfs.h
5838 F:      include/linux/kobj*
5839 F:      lib/kobj*
5840
5841 DRIVERS FOR OMAP ADAPTIVE VOLTAGE SCALING (AVS)
5842 M:      Nishanth Menon <nm@ti.com>
5843 L:      linux-pm@vger.kernel.org
5844 S:      Maintained
5845 F:      drivers/soc/ti/smartreflex.c
5846 F:      include/linux/power/smartreflex.h
5847
5848 DRM DRIVER FOR ALLWINNER DE2 AND DE3 ENGINE
5849 M:      Maxime Ripard <mripard@kernel.org>
5850 M:      Chen-Yu Tsai <wens@csie.org>
5851 R:      Jernej Skrabec <jernej.skrabec@gmail.com>
5852 L:      dri-devel@lists.freedesktop.org
5853 S:      Supported
5854 T:      git git://anongit.freedesktop.org/drm/drm-misc
5855 F:      drivers/gpu/drm/sun4i/sun8i*
5856
5857 DRM DRIVER FOR ARM PL111 CLCD
5858 M:      Emma Anholt <emma@anholt.net>
5859 S:      Supported
5860 T:      git git://anongit.freedesktop.org/drm/drm-misc
5861 F:      drivers/gpu/drm/pl111/
5862
5863 DRM DRIVER FOR ARM VERSATILE TFT PANELS
5864 M:      Linus Walleij <linus.walleij@linaro.org>
5865 S:      Maintained
5866 T:      git git://anongit.freedesktop.org/drm/drm-misc
5867 F:      Documentation/devicetree/bindings/display/panel/arm,versatile-tft-panel.yaml
5868 F:      drivers/gpu/drm/panel/panel-arm-versatile.c
5869
5870 DRM DRIVER FOR ASPEED BMC GFX
5871 M:      Joel Stanley <joel@jms.id.au>
5872 L:      linux-aspeed@lists.ozlabs.org (moderated for non-subscribers)
5873 S:      Supported
5874 T:      git git://anongit.freedesktop.org/drm/drm-misc
5875 F:      Documentation/devicetree/bindings/gpu/aspeed-gfx.txt
5876 F:      drivers/gpu/drm/aspeed/
5877
5878 DRM DRIVER FOR AST SERVER GRAPHICS CHIPS
5879 M:      Dave Airlie <airlied@redhat.com>
5880 R:      Thomas Zimmermann <tzimmermann@suse.de>
5881 L:      dri-devel@lists.freedesktop.org
5882 S:      Supported
5883 T:      git git://anongit.freedesktop.org/drm/drm-misc
5884 F:      drivers/gpu/drm/ast/
5885
5886 DRM DRIVER FOR BOCHS VIRTUAL GPU
5887 M:      Gerd Hoffmann <kraxel@redhat.com>
5888 L:      virtualization@lists.linux-foundation.org
5889 S:      Maintained
5890 T:      git git://anongit.freedesktop.org/drm/drm-misc
5891 F:      drivers/gpu/drm/tiny/bochs.c
5892
5893 DRM DRIVER FOR BOE HIMAX8279D PANELS
5894 M:      Jerry Han <hanxu5@huaqin.corp-partner.google.com>
5895 S:      Maintained
5896 F:      Documentation/devicetree/bindings/display/panel/boe,himax8279d.yaml
5897 F:      drivers/gpu/drm/panel/panel-boe-himax8279d.c
5898
5899 DRM DRIVER FOR CHIPONE ICN6211 MIPI-DSI to RGB CONVERTER BRIDGE
5900 M:      Jagan Teki <jagan@amarulasolutions.com>
5901 S:      Maintained
5902 F:      Documentation/devicetree/bindings/display/bridge/chipone,icn6211.yaml
5903 F:      drivers/gpu/drm/bridge/chipone-icn6211.c
5904
5905 DRM DRIVER FOR FARADAY TVE200 TV ENCODER
5906 M:      Linus Walleij <linus.walleij@linaro.org>
5907 S:      Maintained
5908 T:      git git://anongit.freedesktop.org/drm/drm-misc
5909 F:      drivers/gpu/drm/tve200/
5910
5911 DRM DRIVER FOR FEIXIN K101 IM2BA02 MIPI-DSI LCD PANELS
5912 M:      Icenowy Zheng <icenowy@aosc.io>
5913 S:      Maintained
5914 F:      Documentation/devicetree/bindings/display/panel/feixin,k101-im2ba02.yaml
5915 F:      drivers/gpu/drm/panel/panel-feixin-k101-im2ba02.c
5916
5917 DRM DRIVER FOR FEIYANG FY07024DI26A30-D MIPI-DSI LCD PANELS
5918 M:      Jagan Teki <jagan@amarulasolutions.com>
5919 S:      Maintained
5920 F:      Documentation/devicetree/bindings/display/panel/feiyang,fy07024di26a30d.yaml
5921 F:      drivers/gpu/drm/panel/panel-feiyang-fy07024di26a30d.c
5922
5923 DRM DRIVER FOR GENERIC USB DISPLAY
5924 M:      Noralf Trønnes <noralf@tronnes.org>
5925 S:      Maintained
5926 W:      https://github.com/notro/gud/wiki
5927 T:      git git://anongit.freedesktop.org/drm/drm-misc
5928 F:      drivers/gpu/drm/gud/
5929 F:      include/drm/gud.h
5930
5931 DRM DRIVER FOR GRAIN MEDIA GM12U320 PROJECTORS
5932 M:      Hans de Goede <hdegoede@redhat.com>
5933 S:      Maintained
5934 T:      git git://anongit.freedesktop.org/drm/drm-misc
5935 F:      drivers/gpu/drm/tiny/gm12u320.c
5936
5937 DRM DRIVER FOR HX8357D PANELS
5938 M:      Emma Anholt <emma@anholt.net>
5939 S:      Maintained
5940 T:      git git://anongit.freedesktop.org/drm/drm-misc
5941 F:      Documentation/devicetree/bindings/display/himax,hx8357d.txt
5942 F:      drivers/gpu/drm/tiny/hx8357d.c
5943
5944 DRM DRIVER FOR ILITEK ILI9225 PANELS
5945 M:      David Lechner <david@lechnology.com>
5946 S:      Maintained
5947 T:      git git://anongit.freedesktop.org/drm/drm-misc
5948 F:      Documentation/devicetree/bindings/display/ilitek,ili9225.txt
5949 F:      drivers/gpu/drm/tiny/ili9225.c
5950
5951 DRM DRIVER FOR ILITEK ILI9486 PANELS
5952 M:      Kamlesh Gurudasani <kamlesh.gurudasani@gmail.com>
5953 S:      Maintained
5954 T:      git git://anongit.freedesktop.org/drm/drm-misc
5955 F:      Documentation/devicetree/bindings/display/ilitek,ili9486.yaml
5956 F:      drivers/gpu/drm/tiny/ili9486.c
5957
5958 DRM DRIVER FOR INTEL I810 VIDEO CARDS
5959 S:      Orphan / Obsolete
5960 F:      drivers/gpu/drm/i810/
5961 F:      include/uapi/drm/i810_drm.h
5962
5963 DRM DRIVER FOR LVDS PANELS
5964 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
5965 L:      dri-devel@lists.freedesktop.org
5966 T:      git git://anongit.freedesktop.org/drm/drm-misc
5967 S:      Maintained
5968 F:      drivers/gpu/drm/panel/panel-lvds.c
5969 F:      Documentation/devicetree/bindings/display/panel/lvds.yaml
5970
5971 DRM DRIVER FOR MANTIX MLAF057WE51 PANELS
5972 M:      Guido Günther <agx@sigxcpu.org>
5973 R:      Purism Kernel Team <kernel@puri.sm>
5974 S:      Maintained
5975 F:      Documentation/devicetree/bindings/display/panel/mantix,mlaf057we51-x.yaml
5976 F:      drivers/gpu/drm/panel/panel-mantix-mlaf057we51.c
5977
5978 DRM DRIVER FOR MATROX G200/G400 GRAPHICS CARDS
5979 S:      Orphan / Obsolete
5980 F:      drivers/gpu/drm/mga/
5981 F:      include/uapi/drm/mga_drm.h
5982
5983 DRM DRIVER FOR MGA G200 GRAPHICS CHIPS
5984 M:      Dave Airlie <airlied@redhat.com>
5985 R:      Thomas Zimmermann <tzimmermann@suse.de>
5986 L:      dri-devel@lists.freedesktop.org
5987 S:      Supported
5988 T:      git git://anongit.freedesktop.org/drm/drm-misc
5989 F:      drivers/gpu/drm/mgag200/
5990
5991 DRM DRIVER FOR MI0283QT
5992 M:      Noralf Trønnes <noralf@tronnes.org>
5993 S:      Maintained
5994 T:      git git://anongit.freedesktop.org/drm/drm-misc
5995 F:      Documentation/devicetree/bindings/display/multi-inno,mi0283qt.txt
5996 F:      drivers/gpu/drm/tiny/mi0283qt.c
5997
5998 DRM DRIVER FOR MIPI DBI compatible panels
5999 M:      Noralf Trønnes <noralf@tronnes.org>
6000 S:      Maintained
6001 W:      https://github.com/notro/panel-mipi-dbi/wiki
6002 T:      git git://anongit.freedesktop.org/drm/drm-misc
6003 F:      Documentation/devicetree/bindings/display/panel/panel-mipi-dbi-spi.yaml
6004 F:      drivers/gpu/drm/tiny/panel-mipi-dbi.c
6005
6006 DRM DRIVER FOR MSM ADRENO GPU
6007 M:      Rob Clark <robdclark@gmail.com>
6008 M:      Sean Paul <sean@poorly.run>
6009 L:      linux-arm-msm@vger.kernel.org
6010 L:      dri-devel@lists.freedesktop.org
6011 L:      freedreno@lists.freedesktop.org
6012 S:      Maintained
6013 T:      git https://gitlab.freedesktop.org/drm/msm.git
6014 F:      Documentation/devicetree/bindings/display/msm/
6015 F:      drivers/gpu/drm/msm/
6016 F:      include/uapi/drm/msm_drm.h
6017
6018 DRM DRIVER FOR NOVATEK NT35510 PANELS
6019 M:      Linus Walleij <linus.walleij@linaro.org>
6020 S:      Maintained
6021 T:      git git://anongit.freedesktop.org/drm/drm-misc
6022 F:      Documentation/devicetree/bindings/display/panel/novatek,nt35510.yaml
6023 F:      drivers/gpu/drm/panel/panel-novatek-nt35510.c
6024
6025 DRM DRIVER FOR NOVATEK NT36672A PANELS
6026 M:      Sumit Semwal <sumit.semwal@linaro.org>
6027 S:      Maintained
6028 T:      git git://anongit.freedesktop.org/drm/drm-misc
6029 F:      Documentation/devicetree/bindings/display/panel/novatek,nt36672a.yaml
6030 F:      drivers/gpu/drm/panel/panel-novatek-nt36672a.c
6031
6032 DRM DRIVER FOR NVIDIA GEFORCE/QUADRO GPUS
6033 M:      Ben Skeggs <bskeggs@redhat.com>
6034 L:      dri-devel@lists.freedesktop.org
6035 L:      nouveau@lists.freedesktop.org
6036 S:      Supported
6037 T:      git git://github.com/skeggsb/linux
6038 F:      drivers/gpu/drm/nouveau/
6039 F:      include/uapi/drm/nouveau_drm.h
6040
6041 DRM DRIVER FOR OLIMEX LCD-OLINUXINO PANELS
6042 M:      Stefan Mavrodiev <stefan@olimex.com>
6043 S:      Maintained
6044 F:      Documentation/devicetree/bindings/display/panel/olimex,lcd-olinuxino.yaml
6045 F:      drivers/gpu/drm/panel/panel-olimex-lcd-olinuxino.c
6046
6047 DRM DRIVER FOR PERVASIVE DISPLAYS REPAPER PANELS
6048 M:      Noralf Trønnes <noralf@tronnes.org>
6049 S:      Maintained
6050 T:      git git://anongit.freedesktop.org/drm/drm-misc
6051 F:      Documentation/devicetree/bindings/display/repaper.txt
6052 F:      drivers/gpu/drm/tiny/repaper.c
6053
6054 DRM DRIVER FOR QEMU'S CIRRUS DEVICE
6055 M:      Dave Airlie <airlied@redhat.com>
6056 M:      Gerd Hoffmann <kraxel@redhat.com>
6057 L:      virtualization@lists.linux-foundation.org
6058 S:      Obsolete
6059 W:      https://www.kraxel.org/blog/2014/10/qemu-using-cirrus-considered-harmful/
6060 T:      git git://anongit.freedesktop.org/drm/drm-misc
6061 F:      drivers/gpu/drm/tiny/cirrus.c
6062
6063 DRM DRIVER FOR QXL VIRTUAL GPU
6064 M:      Dave Airlie <airlied@redhat.com>
6065 M:      Gerd Hoffmann <kraxel@redhat.com>
6066 L:      virtualization@lists.linux-foundation.org
6067 L:      spice-devel@lists.freedesktop.org
6068 S:      Maintained
6069 T:      git git://anongit.freedesktop.org/drm/drm-misc
6070 F:      drivers/gpu/drm/qxl/
6071 F:      include/uapi/drm/qxl_drm.h
6072
6073 DRM DRIVER FOR RAGE 128 VIDEO CARDS
6074 S:      Orphan / Obsolete
6075 F:      drivers/gpu/drm/r128/
6076 F:      include/uapi/drm/r128_drm.h
6077
6078 DRM DRIVER FOR RAYDIUM RM67191 PANELS
6079 M:      Robert Chiras <robert.chiras@nxp.com>
6080 S:      Maintained
6081 F:      Documentation/devicetree/bindings/display/panel/raydium,rm67191.yaml
6082 F:      drivers/gpu/drm/panel/panel-raydium-rm67191.c
6083
6084 DRM DRIVER FOR SAMSUNG DB7430 PANELS
6085 M:      Linus Walleij <linus.walleij@linaro.org>
6086 S:      Maintained
6087 T:      git git://anongit.freedesktop.org/drm/drm-misc
6088 F:      Documentation/devicetree/bindings/display/panel/samsung,lms397kf04.yaml
6089 F:      drivers/gpu/drm/panel/panel-samsung-db7430.c
6090
6091 DRM DRIVER FOR SITRONIX ST7703 PANELS
6092 M:      Guido Günther <agx@sigxcpu.org>
6093 R:      Purism Kernel Team <kernel@puri.sm>
6094 R:      Ondrej Jirman <megous@megous.com>
6095 S:      Maintained
6096 F:      Documentation/devicetree/bindings/display/panel/rocktech,jh057n00900.yaml
6097 F:      drivers/gpu/drm/panel/panel-sitronix-st7703.c
6098
6099 DRM DRIVER FOR SAVAGE VIDEO CARDS
6100 S:      Orphan / Obsolete
6101 F:      drivers/gpu/drm/savage/
6102 F:      include/uapi/drm/savage_drm.h
6103
6104 DRM DRIVER FOR SIMPLE FRAMEBUFFERS
6105 M:      Thomas Zimmermann <tzimmermann@suse.de>
6106 L:      dri-devel@lists.freedesktop.org
6107 S:      Maintained
6108 T:      git git://anongit.freedesktop.org/drm/drm-misc
6109 F:      drivers/gpu/drm/tiny/simpledrm.c
6110
6111 DRM DRIVER FOR SIS VIDEO CARDS
6112 S:      Orphan / Obsolete
6113 F:      drivers/gpu/drm/sis/
6114 F:      include/uapi/drm/sis_drm.h
6115
6116 DRM DRIVER FOR SITRONIX ST7586 PANELS
6117 M:      David Lechner <david@lechnology.com>
6118 S:      Maintained
6119 T:      git git://anongit.freedesktop.org/drm/drm-misc
6120 F:      Documentation/devicetree/bindings/display/sitronix,st7586.txt
6121 F:      drivers/gpu/drm/tiny/st7586.c
6122
6123 DRM DRIVER FOR SITRONIX ST7701 PANELS
6124 M:      Jagan Teki <jagan@amarulasolutions.com>
6125 S:      Maintained
6126 F:      Documentation/devicetree/bindings/display/panel/sitronix,st7701.yaml
6127 F:      drivers/gpu/drm/panel/panel-sitronix-st7701.c
6128
6129 DRM DRIVER FOR SITRONIX ST7735R PANELS
6130 M:      David Lechner <david@lechnology.com>
6131 S:      Maintained
6132 T:      git git://anongit.freedesktop.org/drm/drm-misc
6133 F:      Documentation/devicetree/bindings/display/sitronix,st7735r.yaml
6134 F:      drivers/gpu/drm/tiny/st7735r.c
6135
6136 DRM DRIVER FOR SONY ACX424AKP PANELS
6137 M:      Linus Walleij <linus.walleij@linaro.org>
6138 S:      Maintained
6139 T:      git git://anongit.freedesktop.org/drm/drm-misc
6140 F:      drivers/gpu/drm/panel/panel-sony-acx424akp.c
6141
6142 DRM DRIVER FOR ST-ERICSSON MCDE
6143 M:      Linus Walleij <linus.walleij@linaro.org>
6144 S:      Maintained
6145 T:      git git://anongit.freedesktop.org/drm/drm-misc
6146 F:      Documentation/devicetree/bindings/display/ste,mcde.yaml
6147 F:      drivers/gpu/drm/mcde/
6148
6149 DRM DRIVER FOR TDFX VIDEO CARDS
6150 S:      Orphan / Obsolete
6151 F:      drivers/gpu/drm/tdfx/
6152
6153 DRM DRIVER FOR TPO TPG110 PANELS
6154 M:      Linus Walleij <linus.walleij@linaro.org>
6155 S:      Maintained
6156 T:      git git://anongit.freedesktop.org/drm/drm-misc
6157 F:      Documentation/devicetree/bindings/display/panel/tpo,tpg110.yaml
6158 F:      drivers/gpu/drm/panel/panel-tpo-tpg110.c
6159
6160 DRM DRIVER FOR USB DISPLAYLINK VIDEO ADAPTERS
6161 M:      Dave Airlie <airlied@redhat.com>
6162 R:      Sean Paul <sean@poorly.run>
6163 R:      Thomas Zimmermann <tzimmermann@suse.de>
6164 L:      dri-devel@lists.freedesktop.org
6165 S:      Supported
6166 T:      git git://anongit.freedesktop.org/drm/drm-misc
6167 F:      drivers/gpu/drm/udl/
6168
6169 DRM DRIVER FOR VIRTUAL KERNEL MODESETTING (VKMS)
6170 M:      Rodrigo Siqueira <rodrigosiqueiramelo@gmail.com>
6171 M:      Melissa Wen <melissa.srw@gmail.com>
6172 R:      Haneen Mohammed <hamohammed.sa@gmail.com>
6173 R:      Daniel Vetter <daniel@ffwll.ch>
6174 L:      dri-devel@lists.freedesktop.org
6175 S:      Maintained
6176 T:      git git://anongit.freedesktop.org/drm/drm-misc
6177 F:      Documentation/gpu/vkms.rst
6178 F:      drivers/gpu/drm/vkms/
6179
6180 DRM DRIVER FOR VIRTUALBOX VIRTUAL GPU
6181 M:      Hans de Goede <hdegoede@redhat.com>
6182 L:      dri-devel@lists.freedesktop.org
6183 S:      Maintained
6184 T:      git git://anongit.freedesktop.org/drm/drm-misc
6185 F:      drivers/gpu/drm/vboxvideo/
6186
6187 DRM DRIVER FOR VMWARE VIRTUAL GPU
6188 M:      "VMware Graphics" <linux-graphics-maintainer@vmware.com>
6189 M:      Zack Rusin <zackr@vmware.com>
6190 L:      dri-devel@lists.freedesktop.org
6191 S:      Supported
6192 T:      git git://anongit.freedesktop.org/drm/drm-misc
6193 F:      drivers/gpu/drm/vmwgfx/
6194 F:      include/uapi/drm/vmwgfx_drm.h
6195
6196 DRM DRIVER FOR WIDECHIPS WS2401 PANELS
6197 M:      Linus Walleij <linus.walleij@linaro.org>
6198 S:      Maintained
6199 T:      git git://anongit.freedesktop.org/drm/drm-misc
6200 F:      Documentation/devicetree/bindings/display/panel/samsung,lms380kf01.yaml
6201 F:      drivers/gpu/drm/panel/panel-widechips-ws2401.c
6202
6203 DRM DRIVERS
6204 M:      David Airlie <airlied@linux.ie>
6205 M:      Daniel Vetter <daniel@ffwll.ch>
6206 L:      dri-devel@lists.freedesktop.org
6207 S:      Maintained
6208 B:      https://gitlab.freedesktop.org/drm
6209 C:      irc://irc.oftc.net/dri-devel
6210 T:      git git://anongit.freedesktop.org/drm/drm
6211 F:      Documentation/devicetree/bindings/display/
6212 F:      Documentation/devicetree/bindings/gpu/
6213 F:      Documentation/gpu/
6214 F:      drivers/gpu/
6215 F:      include/drm/
6216 F:      include/linux/vga*
6217 F:      include/uapi/drm/
6218
6219 DRM DRIVERS AND MISC GPU PATCHES
6220 M:      Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
6221 M:      Maxime Ripard <mripard@kernel.org>
6222 M:      Thomas Zimmermann <tzimmermann@suse.de>
6223 S:      Maintained
6224 W:      https://01.org/linuxgraphics/gfx-docs/maintainer-tools/drm-misc.html
6225 T:      git git://anongit.freedesktop.org/drm/drm-misc
6226 F:      Documentation/gpu/
6227 F:      drivers/gpu/drm/*
6228 F:      drivers/gpu/vga/
6229 F:      include/drm/drm*
6230 F:      include/linux/vga*
6231 F:      include/uapi/drm/drm*
6232
6233 DRM DRIVERS FOR ALLWINNER A10
6234 M:      Maxime Ripard <mripard@kernel.org>
6235 M:      Chen-Yu Tsai <wens@csie.org>
6236 L:      dri-devel@lists.freedesktop.org
6237 S:      Supported
6238 T:      git git://anongit.freedesktop.org/drm/drm-misc
6239 F:      Documentation/devicetree/bindings/display/allwinner*
6240 F:      drivers/gpu/drm/sun4i/
6241
6242 DRM DRIVERS FOR AMLOGIC SOCS
6243 M:      Neil Armstrong <narmstrong@baylibre.com>
6244 L:      dri-devel@lists.freedesktop.org
6245 L:      linux-amlogic@lists.infradead.org
6246 S:      Supported
6247 W:      http://linux-meson.com/
6248 T:      git git://anongit.freedesktop.org/drm/drm-misc
6249 F:      Documentation/devicetree/bindings/display/amlogic,meson-dw-hdmi.yaml
6250 F:      Documentation/devicetree/bindings/display/amlogic,meson-vpu.yaml
6251 F:      Documentation/gpu/meson.rst
6252 F:      drivers/gpu/drm/meson/
6253
6254 DRM DRIVERS FOR ATMEL HLCDC
6255 M:      Sam Ravnborg <sam@ravnborg.org>
6256 M:      Boris Brezillon <bbrezillon@kernel.org>
6257 L:      dri-devel@lists.freedesktop.org
6258 S:      Supported
6259 T:      git git://anongit.freedesktop.org/drm/drm-misc
6260 F:      Documentation/devicetree/bindings/display/atmel/
6261 F:      drivers/gpu/drm/atmel-hlcdc/
6262
6263 DRM DRIVERS FOR BRIDGE CHIPS
6264 M:      Andrzej Hajda <a.hajda@samsung.com>
6265 M:      Neil Armstrong <narmstrong@baylibre.com>
6266 M:      Robert Foss <robert.foss@linaro.org>
6267 R:      Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
6268 R:      Jonas Karlman <jonas@kwiboo.se>
6269 R:      Jernej Skrabec <jernej.skrabec@gmail.com>
6270 S:      Maintained
6271 T:      git git://anongit.freedesktop.org/drm/drm-misc
6272 F:      drivers/gpu/drm/bridge/
6273
6274 DRM DRIVERS FOR EXYNOS
6275 M:      Inki Dae <inki.dae@samsung.com>
6276 M:      Joonyoung Shim <jy0922.shim@samsung.com>
6277 M:      Seung-Woo Kim <sw0312.kim@samsung.com>
6278 M:      Kyungmin Park <kyungmin.park@samsung.com>
6279 L:      dri-devel@lists.freedesktop.org
6280 S:      Supported
6281 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/daeinki/drm-exynos.git
6282 F:      Documentation/devicetree/bindings/display/exynos/
6283 F:      drivers/gpu/drm/exynos/
6284 F:      include/uapi/drm/exynos_drm.h
6285
6286 DRM DRIVERS FOR FREESCALE DCU
6287 M:      Stefan Agner <stefan@agner.ch>
6288 M:      Alison Wang <alison.wang@nxp.com>
6289 L:      dri-devel@lists.freedesktop.org
6290 S:      Supported
6291 T:      git git://anongit.freedesktop.org/drm/drm-misc
6292 F:      Documentation/devicetree/bindings/display/fsl,dcu.txt
6293 F:      Documentation/devicetree/bindings/display/fsl,tcon.txt
6294 F:      drivers/gpu/drm/fsl-dcu/
6295
6296 DRM DRIVERS FOR FREESCALE IMX
6297 M:      Philipp Zabel <p.zabel@pengutronix.de>
6298 L:      dri-devel@lists.freedesktop.org
6299 S:      Maintained
6300 F:      Documentation/devicetree/bindings/display/imx/
6301 F:      drivers/gpu/drm/imx/
6302 F:      drivers/gpu/ipu-v3/
6303
6304 DRM DRIVERS FOR GMA500 (Poulsbo, Moorestown and derivative chipsets)
6305 M:      Patrik Jakobsson <patrik.r.jakobsson@gmail.com>
6306 L:      dri-devel@lists.freedesktop.org
6307 S:      Maintained
6308 T:      git git://github.com/patjak/drm-gma500
6309 F:      drivers/gpu/drm/gma500/
6310
6311 DRM DRIVERS FOR HISILICON
6312 M:      Xinliang Liu <xinliang.liu@linaro.org>
6313 M:      Tian Tao  <tiantao6@hisilicon.com>
6314 R:      John Stultz <john.stultz@linaro.org>
6315 R:      Xinwei Kong <kong.kongxinwei@hisilicon.com>
6316 R:      Chen Feng <puck.chen@hisilicon.com>
6317 L:      dri-devel@lists.freedesktop.org
6318 S:      Maintained
6319 T:      git git://anongit.freedesktop.org/drm/drm-misc
6320 F:      Documentation/devicetree/bindings/display/hisilicon/
6321 F:      drivers/gpu/drm/hisilicon/
6322
6323 DRM DRIVER FOR HYPERV SYNTHETIC VIDEO DEVICE
6324 M:      Deepak Rawat <drawat.floss@gmail.com>
6325 L:      linux-hyperv@vger.kernel.org
6326 L:      dri-devel@lists.freedesktop.org
6327 S:      Maintained
6328 T:      git git://anongit.freedesktop.org/drm/drm-misc
6329 F:      drivers/gpu/drm/hyperv
6330
6331 DRM DRIVERS FOR LIMA
6332 M:      Qiang Yu <yuq825@gmail.com>
6333 L:      dri-devel@lists.freedesktop.org
6334 L:      lima@lists.freedesktop.org (moderated for non-subscribers)
6335 S:      Maintained
6336 T:      git git://anongit.freedesktop.org/drm/drm-misc
6337 F:      drivers/gpu/drm/lima/
6338 F:      include/uapi/drm/lima_drm.h
6339
6340 DRM DRIVERS FOR MEDIATEK
6341 M:      Chun-Kuang Hu <chunkuang.hu@kernel.org>
6342 M:      Philipp Zabel <p.zabel@pengutronix.de>
6343 L:      dri-devel@lists.freedesktop.org
6344 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
6345 S:      Supported
6346 F:      Documentation/devicetree/bindings/display/mediatek/
6347 F:      drivers/gpu/drm/mediatek/
6348 F:      drivers/phy/mediatek/phy-mtk-hdmi*
6349 F:      drivers/phy/mediatek/phy-mtk-mipi*
6350
6351 DRM DRIVERS FOR NVIDIA TEGRA
6352 M:      Thierry Reding <thierry.reding@gmail.com>
6353 L:      dri-devel@lists.freedesktop.org
6354 L:      linux-tegra@vger.kernel.org
6355 S:      Supported
6356 T:      git git://anongit.freedesktop.org/tegra/linux.git
6357 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
6358 F:      drivers/gpu/drm/tegra/
6359 F:      drivers/gpu/host1x/
6360 F:      include/linux/host1x.h
6361 F:      include/uapi/drm/tegra_drm.h
6362
6363 DRM DRIVERS FOR RENESAS
6364 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6365 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
6366 L:      dri-devel@lists.freedesktop.org
6367 L:      linux-renesas-soc@vger.kernel.org
6368 S:      Supported
6369 T:      git git://linuxtv.org/pinchartl/media drm/du/next
6370 F:      Documentation/devicetree/bindings/display/bridge/renesas,dw-hdmi.yaml
6371 F:      Documentation/devicetree/bindings/display/bridge/renesas,lvds.yaml
6372 F:      Documentation/devicetree/bindings/display/renesas,du.yaml
6373 F:      drivers/gpu/drm/rcar-du/
6374 F:      drivers/gpu/drm/shmobile/
6375 F:      include/linux/platform_data/shmob_drm.h
6376
6377 DRM DRIVERS FOR ROCKCHIP
6378 M:      Sandy Huang <hjc@rock-chips.com>
6379 M:      Heiko Stübner <heiko@sntech.de>
6380 L:      dri-devel@lists.freedesktop.org
6381 S:      Maintained
6382 T:      git git://anongit.freedesktop.org/drm/drm-misc
6383 F:      Documentation/devicetree/bindings/display/rockchip/
6384 F:      drivers/gpu/drm/rockchip/
6385
6386 DRM DRIVERS FOR STI
6387 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
6388 L:      dri-devel@lists.freedesktop.org
6389 S:      Maintained
6390 T:      git git://anongit.freedesktop.org/drm/drm-misc
6391 F:      Documentation/devicetree/bindings/display/st,stih4xx.txt
6392 F:      drivers/gpu/drm/sti
6393
6394 DRM DRIVERS FOR STM
6395 M:      Yannick Fertre <yannick.fertre@foss.st.com>
6396 M:      Philippe Cornu <philippe.cornu@foss.st.com>
6397 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
6398 L:      dri-devel@lists.freedesktop.org
6399 S:      Maintained
6400 T:      git git://anongit.freedesktop.org/drm/drm-misc
6401 F:      Documentation/devicetree/bindings/display/st,stm32-ltdc.yaml
6402 F:      drivers/gpu/drm/stm
6403
6404 DRM DRIVERS FOR TI KEYSTONE
6405 M:      Jyri Sarha <jyri.sarha@iki.fi>
6406 M:      Tomi Valkeinen <tomba@kernel.org>
6407 L:      dri-devel@lists.freedesktop.org
6408 S:      Maintained
6409 T:      git git://anongit.freedesktop.org/drm/drm-misc
6410 F:      Documentation/devicetree/bindings/display/ti/ti,am65x-dss.yaml
6411 F:      Documentation/devicetree/bindings/display/ti/ti,j721e-dss.yaml
6412 F:      Documentation/devicetree/bindings/display/ti/ti,k2g-dss.yaml
6413 F:      drivers/gpu/drm/tidss/
6414
6415 DRM DRIVERS FOR TI LCDC
6416 M:      Jyri Sarha <jyri.sarha@iki.fi>
6417 R:      Tomi Valkeinen <tomba@kernel.org>
6418 L:      dri-devel@lists.freedesktop.org
6419 S:      Maintained
6420 F:      Documentation/devicetree/bindings/display/tilcdc/
6421 F:      drivers/gpu/drm/tilcdc/
6422
6423 DRM DRIVERS FOR TI OMAP
6424 M:      Tomi Valkeinen <tomba@kernel.org>
6425 L:      dri-devel@lists.freedesktop.org
6426 S:      Maintained
6427 F:      Documentation/devicetree/bindings/display/ti/
6428 F:      drivers/gpu/drm/omapdrm/
6429
6430 DRM DRIVERS FOR V3D
6431 M:      Emma Anholt <emma@anholt.net>
6432 S:      Supported
6433 T:      git git://anongit.freedesktop.org/drm/drm-misc
6434 F:      Documentation/devicetree/bindings/gpu/brcm,bcm-v3d.yaml
6435 F:      drivers/gpu/drm/v3d/
6436 F:      include/uapi/drm/v3d_drm.h
6437
6438 DRM DRIVERS FOR VC4
6439 M:      Emma Anholt <emma@anholt.net>
6440 M:      Maxime Ripard <mripard@kernel.org>
6441 S:      Supported
6442 T:      git git://github.com/anholt/linux
6443 T:      git git://anongit.freedesktop.org/drm/drm-misc
6444 F:      Documentation/devicetree/bindings/display/brcm,bcm2835-*.yaml
6445 F:      drivers/gpu/drm/vc4/
6446 F:      include/uapi/drm/vc4_drm.h
6447
6448 DRM DRIVERS FOR VIVANTE GPU IP
6449 M:      Lucas Stach <l.stach@pengutronix.de>
6450 R:      Russell King <linux+etnaviv@armlinux.org.uk>
6451 R:      Christian Gmeiner <christian.gmeiner@gmail.com>
6452 L:      etnaviv@lists.freedesktop.org (moderated for non-subscribers)
6453 L:      dri-devel@lists.freedesktop.org
6454 S:      Maintained
6455 F:      Documentation/devicetree/bindings/gpu/vivante,gc.yaml
6456 F:      drivers/gpu/drm/etnaviv/
6457 F:      include/uapi/drm/etnaviv_drm.h
6458
6459 DRM DRIVERS FOR XEN
6460 M:      Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
6461 L:      dri-devel@lists.freedesktop.org
6462 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
6463 S:      Supported
6464 T:      git git://anongit.freedesktop.org/drm/drm-misc
6465 F:      Documentation/gpu/xen-front.rst
6466 F:      drivers/gpu/drm/xen/
6467
6468 DRM DRIVERS FOR XILINX
6469 M:      Hyun Kwon <hyun.kwon@xilinx.com>
6470 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
6471 L:      dri-devel@lists.freedesktop.org
6472 S:      Maintained
6473 T:      git git://anongit.freedesktop.org/drm/drm-misc
6474 F:      Documentation/devicetree/bindings/display/xlnx/
6475 F:      drivers/gpu/drm/xlnx/
6476
6477 DRM PANEL DRIVERS
6478 M:      Thierry Reding <thierry.reding@gmail.com>
6479 R:      Sam Ravnborg <sam@ravnborg.org>
6480 L:      dri-devel@lists.freedesktop.org
6481 S:      Maintained
6482 T:      git git://anongit.freedesktop.org/drm/drm-misc
6483 F:      Documentation/devicetree/bindings/display/panel/
6484 F:      drivers/gpu/drm/drm_panel.c
6485 F:      drivers/gpu/drm/panel/
6486 F:      include/drm/drm_panel.h
6487
6488 DRM TTM SUBSYSTEM
6489 M:      Christian Koenig <christian.koenig@amd.com>
6490 M:      Huang Rui <ray.huang@amd.com>
6491 L:      dri-devel@lists.freedesktop.org
6492 S:      Maintained
6493 T:      git git://anongit.freedesktop.org/drm/drm-misc
6494 F:      drivers/gpu/drm/ttm/
6495 F:      include/drm/ttm/
6496
6497 DSBR100 USB FM RADIO DRIVER
6498 M:      Alexey Klimov <klimov.linux@gmail.com>
6499 L:      linux-media@vger.kernel.org
6500 S:      Maintained
6501 T:      git git://linuxtv.org/media_tree.git
6502 F:      drivers/media/radio/dsbr100.c
6503
6504 DT3155 MEDIA DRIVER
6505 M:      Hans Verkuil <hverkuil@xs4all.nl>
6506 L:      linux-media@vger.kernel.org
6507 S:      Odd Fixes
6508 W:      https://linuxtv.org
6509 T:      git git://linuxtv.org/media_tree.git
6510 F:      drivers/media/pci/dt3155/
6511
6512 DVB_USB_AF9015 MEDIA DRIVER
6513 M:      Antti Palosaari <crope@iki.fi>
6514 L:      linux-media@vger.kernel.org
6515 S:      Maintained
6516 W:      https://linuxtv.org
6517 W:      http://palosaari.fi/linux/
6518 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6519 T:      git git://linuxtv.org/anttip/media_tree.git
6520 F:      drivers/media/usb/dvb-usb-v2/af9015*
6521
6522 DVB_USB_AF9035 MEDIA DRIVER
6523 M:      Antti Palosaari <crope@iki.fi>
6524 L:      linux-media@vger.kernel.org
6525 S:      Maintained
6526 W:      https://linuxtv.org
6527 W:      http://palosaari.fi/linux/
6528 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6529 T:      git git://linuxtv.org/anttip/media_tree.git
6530 F:      drivers/media/usb/dvb-usb-v2/af9035*
6531
6532 DVB_USB_ANYSEE MEDIA DRIVER
6533 M:      Antti Palosaari <crope@iki.fi>
6534 L:      linux-media@vger.kernel.org
6535 S:      Maintained
6536 W:      https://linuxtv.org
6537 W:      http://palosaari.fi/linux/
6538 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6539 T:      git git://linuxtv.org/anttip/media_tree.git
6540 F:      drivers/media/usb/dvb-usb-v2/anysee*
6541
6542 DVB_USB_AU6610 MEDIA DRIVER
6543 M:      Antti Palosaari <crope@iki.fi>
6544 L:      linux-media@vger.kernel.org
6545 S:      Maintained
6546 W:      https://linuxtv.org
6547 W:      http://palosaari.fi/linux/
6548 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6549 T:      git git://linuxtv.org/anttip/media_tree.git
6550 F:      drivers/media/usb/dvb-usb-v2/au6610*
6551
6552 DVB_USB_CE6230 MEDIA DRIVER
6553 M:      Antti Palosaari <crope@iki.fi>
6554 L:      linux-media@vger.kernel.org
6555 S:      Maintained
6556 W:      https://linuxtv.org
6557 W:      http://palosaari.fi/linux/
6558 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6559 T:      git git://linuxtv.org/anttip/media_tree.git
6560 F:      drivers/media/usb/dvb-usb-v2/ce6230*
6561
6562 DVB_USB_CXUSB MEDIA DRIVER
6563 M:      Michael Krufky <mkrufky@linuxtv.org>
6564 L:      linux-media@vger.kernel.org
6565 S:      Maintained
6566 W:      https://linuxtv.org
6567 W:      http://github.com/mkrufky
6568 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6569 T:      git git://linuxtv.org/media_tree.git
6570 F:      drivers/media/usb/dvb-usb/cxusb*
6571
6572 DVB_USB_EC168 MEDIA DRIVER
6573 M:      Antti Palosaari <crope@iki.fi>
6574 L:      linux-media@vger.kernel.org
6575 S:      Maintained
6576 W:      https://linuxtv.org
6577 W:      http://palosaari.fi/linux/
6578 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6579 T:      git git://linuxtv.org/anttip/media_tree.git
6580 F:      drivers/media/usb/dvb-usb-v2/ec168*
6581
6582 DVB_USB_GL861 MEDIA DRIVER
6583 M:      Antti Palosaari <crope@iki.fi>
6584 L:      linux-media@vger.kernel.org
6585 S:      Maintained
6586 W:      https://linuxtv.org
6587 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6588 T:      git git://linuxtv.org/anttip/media_tree.git
6589 F:      drivers/media/usb/dvb-usb-v2/gl861*
6590
6591 DVB_USB_MXL111SF MEDIA DRIVER
6592 M:      Michael Krufky <mkrufky@linuxtv.org>
6593 L:      linux-media@vger.kernel.org
6594 S:      Maintained
6595 W:      https://linuxtv.org
6596 W:      http://github.com/mkrufky
6597 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6598 T:      git git://linuxtv.org/mkrufky/mxl111sf.git
6599 F:      drivers/media/usb/dvb-usb-v2/mxl111sf*
6600
6601 DVB_USB_RTL28XXU MEDIA DRIVER
6602 M:      Antti Palosaari <crope@iki.fi>
6603 L:      linux-media@vger.kernel.org
6604 S:      Maintained
6605 W:      https://linuxtv.org
6606 W:      http://palosaari.fi/linux/
6607 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6608 T:      git git://linuxtv.org/anttip/media_tree.git
6609 F:      drivers/media/usb/dvb-usb-v2/rtl28xxu*
6610
6611 DVB_USB_V2 MEDIA DRIVER
6612 M:      Antti Palosaari <crope@iki.fi>
6613 L:      linux-media@vger.kernel.org
6614 S:      Maintained
6615 W:      https://linuxtv.org
6616 W:      http://palosaari.fi/linux/
6617 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6618 T:      git git://linuxtv.org/anttip/media_tree.git
6619 F:      drivers/media/usb/dvb-usb-v2/dvb_usb*
6620 F:      drivers/media/usb/dvb-usb-v2/usb_urb.c
6621
6622 DYNAMIC DEBUG
6623 M:      Jason Baron <jbaron@akamai.com>
6624 S:      Maintained
6625 F:      include/linux/dynamic_debug.h
6626 F:      lib/dynamic_debug.c
6627
6628 DYNAMIC INTERRUPT MODERATION
6629 M:      Tal Gilboa <talgi@nvidia.com>
6630 S:      Maintained
6631 F:      Documentation/networking/net_dim.rst
6632 F:      include/linux/dim.h
6633 F:      lib/dim/
6634
6635 DZ DECSTATION DZ11 SERIAL DRIVER
6636 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
6637 S:      Maintained
6638 F:      drivers/tty/serial/dz.*
6639
6640 E3X0 POWER BUTTON DRIVER
6641 M:      Moritz Fischer <moritz.fischer@ettus.com>
6642 L:      usrp-users@lists.ettus.com
6643 S:      Supported
6644 W:      http://www.ettus.com
6645 F:      Documentation/devicetree/bindings/input/e3x0-button.txt
6646 F:      drivers/input/misc/e3x0-button.c
6647
6648 E4000 MEDIA DRIVER
6649 M:      Antti Palosaari <crope@iki.fi>
6650 L:      linux-media@vger.kernel.org
6651 S:      Maintained
6652 W:      https://linuxtv.org
6653 W:      http://palosaari.fi/linux/
6654 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6655 T:      git git://linuxtv.org/anttip/media_tree.git
6656 F:      drivers/media/tuners/e4000*
6657
6658 EARTH_PT1 MEDIA DRIVER
6659 M:      Akihiro Tsukada <tskd08@gmail.com>
6660 L:      linux-media@vger.kernel.org
6661 S:      Odd Fixes
6662 F:      drivers/media/pci/pt1/
6663
6664 EARTH_PT3 MEDIA DRIVER
6665 M:      Akihiro Tsukada <tskd08@gmail.com>
6666 L:      linux-media@vger.kernel.org
6667 S:      Odd Fixes
6668 F:      drivers/media/pci/pt3/
6669
6670 EC100 MEDIA DRIVER
6671 M:      Antti Palosaari <crope@iki.fi>
6672 L:      linux-media@vger.kernel.org
6673 S:      Maintained
6674 W:      https://linuxtv.org
6675 W:      http://palosaari.fi/linux/
6676 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
6677 T:      git git://linuxtv.org/anttip/media_tree.git
6678 F:      drivers/media/dvb-frontends/ec100*
6679
6680 ECRYPT FILE SYSTEM
6681 M:      Tyler Hicks <code@tyhicks.com>
6682 L:      ecryptfs@vger.kernel.org
6683 S:      Odd Fixes
6684 W:      http://ecryptfs.org
6685 W:      https://launchpad.net/ecryptfs
6686 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tyhicks/ecryptfs.git
6687 F:      Documentation/filesystems/ecryptfs.rst
6688 F:      fs/ecryptfs/
6689
6690 EDAC-AMD64
6691 M:      Yazen Ghannam <yazen.ghannam@amd.com>
6692 L:      linux-edac@vger.kernel.org
6693 S:      Supported
6694 F:      drivers/edac/amd64_edac*
6695 F:      drivers/edac/mce_amd*
6696
6697 EDAC-ARMADA
6698 M:      Jan Luebbe <jlu@pengutronix.de>
6699 L:      linux-edac@vger.kernel.org
6700 S:      Maintained
6701 F:      Documentation/devicetree/bindings/memory-controllers/marvell,mvebu-sdram-controller.yaml
6702 F:      drivers/edac/armada_xp_*
6703
6704 EDAC-AST2500
6705 M:      Stefan Schaeckeler <sschaeck@cisco.com>
6706 S:      Supported
6707 F:      Documentation/devicetree/bindings/edac/aspeed-sdram-edac.txt
6708 F:      drivers/edac/aspeed_edac.c
6709
6710 EDAC-BLUEFIELD
6711 M:      Shravan Kumar Ramani <shravankr@nvidia.com>
6712 S:      Supported
6713 F:      drivers/edac/bluefield_edac.c
6714
6715 EDAC-CALXEDA
6716 M:      Andre Przywara <andre.przywara@arm.com>
6717 L:      linux-edac@vger.kernel.org
6718 S:      Maintained
6719 F:      drivers/edac/highbank*
6720
6721 EDAC-CAVIUM OCTEON
6722 M:      Ralf Baechle <ralf@linux-mips.org>
6723 L:      linux-edac@vger.kernel.org
6724 L:      linux-mips@vger.kernel.org
6725 S:      Supported
6726 F:      drivers/edac/octeon_edac*
6727
6728 EDAC-CAVIUM THUNDERX
6729 M:      Robert Richter <rric@kernel.org>
6730 L:      linux-edac@vger.kernel.org
6731 S:      Odd Fixes
6732 F:      drivers/edac/thunderx_edac*
6733
6734 EDAC-CORE
6735 M:      Borislav Petkov <bp@alien8.de>
6736 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6737 M:      Tony Luck <tony.luck@intel.com>
6738 R:      James Morse <james.morse@arm.com>
6739 R:      Robert Richter <rric@kernel.org>
6740 L:      linux-edac@vger.kernel.org
6741 S:      Supported
6742 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ras/ras.git edac-for-next
6743 F:      Documentation/admin-guide/ras.rst
6744 F:      Documentation/driver-api/edac.rst
6745 F:      drivers/edac/
6746 F:      include/linux/edac.h
6747
6748 EDAC-DMC520
6749 M:      Lei Wang <lewan@microsoft.com>
6750 L:      linux-edac@vger.kernel.org
6751 S:      Supported
6752 F:      drivers/edac/dmc520_edac.c
6753
6754 EDAC-E752X
6755 M:      Mark Gross <mark.gross@intel.com>
6756 L:      linux-edac@vger.kernel.org
6757 S:      Maintained
6758 F:      drivers/edac/e752x_edac.c
6759
6760 EDAC-E7XXX
6761 L:      linux-edac@vger.kernel.org
6762 S:      Maintained
6763 F:      drivers/edac/e7xxx_edac.c
6764
6765 EDAC-FSL_DDR
6766 M:      York Sun <york.sun@nxp.com>
6767 L:      linux-edac@vger.kernel.org
6768 S:      Maintained
6769 F:      drivers/edac/fsl_ddr_edac.*
6770
6771 EDAC-GHES
6772 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6773 L:      linux-edac@vger.kernel.org
6774 S:      Maintained
6775 F:      drivers/edac/ghes_edac.c
6776
6777 EDAC-I10NM
6778 M:      Tony Luck <tony.luck@intel.com>
6779 L:      linux-edac@vger.kernel.org
6780 S:      Maintained
6781 F:      drivers/edac/i10nm_base.c
6782
6783 EDAC-I3000
6784 L:      linux-edac@vger.kernel.org
6785 S:      Orphan
6786 F:      drivers/edac/i3000_edac.c
6787
6788 EDAC-I5000
6789 L:      linux-edac@vger.kernel.org
6790 S:      Maintained
6791 F:      drivers/edac/i5000_edac.c
6792
6793 EDAC-I5400
6794 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6795 L:      linux-edac@vger.kernel.org
6796 S:      Maintained
6797 F:      drivers/edac/i5400_edac.c
6798
6799 EDAC-I7300
6800 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6801 L:      linux-edac@vger.kernel.org
6802 S:      Maintained
6803 F:      drivers/edac/i7300_edac.c
6804
6805 EDAC-I7CORE
6806 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6807 L:      linux-edac@vger.kernel.org
6808 S:      Maintained
6809 F:      drivers/edac/i7core_edac.c
6810
6811 EDAC-I82443BXGX
6812 M:      Tim Small <tim@buttersideup.com>
6813 L:      linux-edac@vger.kernel.org
6814 S:      Maintained
6815 F:      drivers/edac/i82443bxgx_edac.c
6816
6817 EDAC-I82975X
6818 M:      "Arvind R." <arvino55@gmail.com>
6819 L:      linux-edac@vger.kernel.org
6820 S:      Maintained
6821 F:      drivers/edac/i82975x_edac.c
6822
6823 EDAC-IE31200
6824 M:      Jason Baron <jbaron@akamai.com>
6825 L:      linux-edac@vger.kernel.org
6826 S:      Maintained
6827 F:      drivers/edac/ie31200_edac.c
6828
6829 EDAC-IGEN6
6830 M:      Tony Luck <tony.luck@intel.com>
6831 R:      Qiuxu Zhuo <qiuxu.zhuo@intel.com>
6832 L:      linux-edac@vger.kernel.org
6833 S:      Maintained
6834 F:      drivers/edac/igen6_edac.c
6835
6836 EDAC-MPC85XX
6837 M:      Johannes Thumshirn <morbidrsa@gmail.com>
6838 L:      linux-edac@vger.kernel.org
6839 S:      Maintained
6840 F:      drivers/edac/mpc85xx_edac.[ch]
6841
6842 EDAC-PASEMI
6843 M:      Egor Martovetsky <egor@pasemi.com>
6844 L:      linux-edac@vger.kernel.org
6845 S:      Maintained
6846 F:      drivers/edac/pasemi_edac.c
6847
6848 EDAC-PND2
6849 M:      Tony Luck <tony.luck@intel.com>
6850 L:      linux-edac@vger.kernel.org
6851 S:      Maintained
6852 F:      drivers/edac/pnd2_edac.[ch]
6853
6854 EDAC-QCOM
6855 M:      Channagoud Kadabi <ckadabi@codeaurora.org>
6856 M:      Venkata Narendra Kumar Gutta <vnkgutta@codeaurora.org>
6857 L:      linux-arm-msm@vger.kernel.org
6858 L:      linux-edac@vger.kernel.org
6859 S:      Maintained
6860 F:      drivers/edac/qcom_edac.c
6861
6862 EDAC-R82600
6863 M:      Tim Small <tim@buttersideup.com>
6864 L:      linux-edac@vger.kernel.org
6865 S:      Maintained
6866 F:      drivers/edac/r82600_edac.c
6867
6868 EDAC-SBRIDGE
6869 M:      Tony Luck <tony.luck@intel.com>
6870 R:      Qiuxu Zhuo <qiuxu.zhuo@intel.com>
6871 L:      linux-edac@vger.kernel.org
6872 S:      Maintained
6873 F:      drivers/edac/sb_edac.c
6874
6875 EDAC-SIFIVE
6876 M:      Yash Shah <yash.shah@sifive.com>
6877 L:      linux-edac@vger.kernel.org
6878 S:      Supported
6879 F:      drivers/edac/sifive_edac.c
6880
6881 EDAC-SKYLAKE
6882 M:      Tony Luck <tony.luck@intel.com>
6883 L:      linux-edac@vger.kernel.org
6884 S:      Maintained
6885 F:      drivers/edac/skx_*.[ch]
6886
6887 EDAC-TI
6888 M:      Tero Kristo <kristo@kernel.org>
6889 L:      linux-edac@vger.kernel.org
6890 S:      Odd Fixes
6891 F:      drivers/edac/ti_edac.c
6892
6893 EDIROL UA-101/UA-1000 DRIVER
6894 M:      Clemens Ladisch <clemens@ladisch.de>
6895 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
6896 S:      Maintained
6897 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
6898 F:      sound/usb/misc/ua101.c
6899
6900 EFI TEST DRIVER
6901 M:      Ivan Hu <ivan.hu@canonical.com>
6902 M:      Ard Biesheuvel <ardb@kernel.org>
6903 L:      linux-efi@vger.kernel.org
6904 S:      Maintained
6905 F:      drivers/firmware/efi/test/
6906
6907 EFI VARIABLE FILESYSTEM
6908 M:      Matthew Garrett <matthew.garrett@nebula.com>
6909 M:      Jeremy Kerr <jk@ozlabs.org>
6910 M:      Ard Biesheuvel <ardb@kernel.org>
6911 L:      linux-efi@vger.kernel.org
6912 S:      Maintained
6913 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
6914 F:      fs/efivarfs/
6915
6916 EFIFB FRAMEBUFFER DRIVER
6917 M:      Peter Jones <pjones@redhat.com>
6918 L:      linux-fbdev@vger.kernel.org
6919 S:      Maintained
6920 F:      drivers/video/fbdev/efifb.c
6921
6922 EFS FILESYSTEM
6923 S:      Orphan
6924 W:      http://aeschi.ch.eu.org/efs/
6925 F:      fs/efs/
6926
6927 EHEA (IBM pSeries eHEA 10Gb ethernet adapter) DRIVER
6928 M:      Douglas Miller <dougmill@linux.ibm.com>
6929 L:      netdev@vger.kernel.org
6930 S:      Maintained
6931 F:      drivers/net/ethernet/ibm/ehea/
6932
6933 EM28XX VIDEO4LINUX DRIVER
6934 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
6935 L:      linux-media@vger.kernel.org
6936 S:      Maintained
6937 W:      https://linuxtv.org
6938 T:      git git://linuxtv.org/media_tree.git
6939 F:      Documentation/admin-guide/media/em28xx*
6940 F:      drivers/media/usb/em28xx/
6941
6942 EMBEDDED LINUX
6943 M:      Matt Mackall <mpm@selenic.com>
6944 M:      David Woodhouse <dwmw2@infradead.org>
6945 L:      linux-embedded@vger.kernel.org
6946 S:      Maintained
6947
6948 EMMC CMDQ HOST CONTROLLER INTERFACE (CQHCI) DRIVER
6949 M:      Adrian Hunter <adrian.hunter@intel.com>
6950 M:      Ritesh Harjani <riteshh@codeaurora.org>
6951 M:      Asutosh Das <asutoshd@codeaurora.org>
6952 L:      linux-mmc@vger.kernel.org
6953 S:      Maintained
6954 F:      drivers/mmc/host/cqhci*
6955
6956 EMULEX 10Gbps iSCSI - OneConnect DRIVER
6957 M:      Subbu Seetharaman <subbu.seetharaman@broadcom.com>
6958 M:      Ketan Mukadam <ketan.mukadam@broadcom.com>
6959 M:      Jitendra Bhivare <jitendra.bhivare@broadcom.com>
6960 L:      linux-scsi@vger.kernel.org
6961 S:      Supported
6962 W:      http://www.broadcom.com
6963 F:      drivers/scsi/be2iscsi/
6964
6965 EMULEX 10Gbps NIC BE2, BE3-R, Lancer, Skyhawk-R DRIVER (be2net)
6966 M:      Ajit Khaparde <ajit.khaparde@broadcom.com>
6967 M:      Sriharsha Basavapatna <sriharsha.basavapatna@broadcom.com>
6968 M:      Somnath Kotur <somnath.kotur@broadcom.com>
6969 L:      netdev@vger.kernel.org
6970 S:      Supported
6971 W:      http://www.emulex.com
6972 F:      drivers/net/ethernet/emulex/benet/
6973
6974 EMULEX ONECONNECT ROCE DRIVER
6975 M:      Selvin Xavier <selvin.xavier@broadcom.com>
6976 L:      linux-rdma@vger.kernel.org
6977 S:      Odd Fixes
6978 W:      http://www.broadcom.com
6979 F:      drivers/infiniband/hw/ocrdma/
6980 F:      include/uapi/rdma/ocrdma-abi.h
6981
6982 EMULEX/BROADCOM LPFC FC/FCOE SCSI DRIVER
6983 M:      James Smart <james.smart@broadcom.com>
6984 M:      Dick Kennedy <dick.kennedy@broadcom.com>
6985 L:      linux-scsi@vger.kernel.org
6986 S:      Supported
6987 W:      http://www.broadcom.com
6988 F:      drivers/scsi/lpfc/
6989
6990 EMULEX/BROADCOM EFCT FC/FCOE SCSI TARGET DRIVER
6991 M:      James Smart <james.smart@broadcom.com>
6992 M:      Ram Vegesna <ram.vegesna@broadcom.com>
6993 L:      linux-scsi@vger.kernel.org
6994 L:      target-devel@vger.kernel.org
6995 S:      Supported
6996 W:      http://www.broadcom.com
6997 F:      drivers/scsi/elx/
6998
6999 ENE CB710 FLASH CARD READER DRIVER
7000 M:      Michał Mirosław <mirq-linux@rere.qmqm.pl>
7001 S:      Maintained
7002 F:      drivers/misc/cb710/
7003 F:      drivers/mmc/host/cb710-mmc.*
7004 F:      include/linux/cb710.h
7005
7006 ENE KB2426 (ENE0100/ENE020XX) INFRARED RECEIVER
7007 M:      Maxim Levitsky <maximlevitsky@gmail.com>
7008 S:      Maintained
7009 F:      drivers/media/rc/ene_ir.*
7010
7011 EPAPR HYPERVISOR BYTE CHANNEL DEVICE DRIVER
7012 M:      Laurentiu Tudor <laurentiu.tudor@nxp.com>
7013 L:      linuxppc-dev@lists.ozlabs.org
7014 S:      Maintained
7015 F:      drivers/tty/ehv_bytechan.c
7016
7017 EPSON S1D13XXX FRAMEBUFFER DRIVER
7018 M:      Kristoffer Ericson <kristoffer.ericson@gmail.com>
7019 S:      Maintained
7020 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
7021 F:      drivers/video/fbdev/s1d13xxxfb.c
7022 F:      include/video/s1d13xxxfb.h
7023
7024 EROFS FILE SYSTEM
7025 M:      Gao Xiang <xiang@kernel.org>
7026 M:      Chao Yu <chao@kernel.org>
7027 L:      linux-erofs@lists.ozlabs.org
7028 S:      Maintained
7029 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs.git
7030 F:      Documentation/filesystems/erofs.rst
7031 F:      fs/erofs/
7032 F:      include/trace/events/erofs.h
7033
7034 ERRSEQ ERROR TRACKING INFRASTRUCTURE
7035 M:      Jeff Layton <jlayton@kernel.org>
7036 S:      Maintained
7037 F:      include/linux/errseq.h
7038 F:      lib/errseq.c
7039
7040 ET131X NETWORK DRIVER
7041 M:      Mark Einon <mark.einon@gmail.com>
7042 S:      Odd Fixes
7043 F:      drivers/net/ethernet/agere/
7044
7045 ETAS ES58X CAN/USB DRIVER
7046 M:      Vincent Mailhol <mailhol.vincent@wanadoo.fr>
7047 L:      linux-can@vger.kernel.org
7048 S:      Maintained
7049 F:      drivers/net/can/usb/etas_es58x/
7050
7051 ETHERNET BRIDGE
7052 M:      Roopa Prabhu <roopa@nvidia.com>
7053 M:      Nikolay Aleksandrov <nikolay@nvidia.com>
7054 L:      bridge@lists.linux-foundation.org (moderated for non-subscribers)
7055 L:      netdev@vger.kernel.org
7056 S:      Maintained
7057 W:      http://www.linuxfoundation.org/en/Net:Bridge
7058 F:      include/linux/netfilter_bridge/
7059 F:      net/bridge/
7060
7061 ETHERNET PHY LIBRARY
7062 M:      Andrew Lunn <andrew@lunn.ch>
7063 M:      Heiner Kallweit <hkallweit1@gmail.com>
7064 R:      Russell King <linux@armlinux.org.uk>
7065 L:      netdev@vger.kernel.org
7066 S:      Maintained
7067 F:      Documentation/ABI/testing/sysfs-class-net-phydev
7068 F:      Documentation/devicetree/bindings/net/ethernet-phy.yaml
7069 F:      Documentation/devicetree/bindings/net/mdio*
7070 F:      Documentation/devicetree/bindings/net/qca,ar803x.yaml
7071 F:      Documentation/networking/phy.rst
7072 F:      drivers/net/mdio/
7073 F:      drivers/net/mdio/acpi_mdio.c
7074 F:      drivers/net/mdio/fwnode_mdio.c
7075 F:      drivers/net/mdio/of_mdio.c
7076 F:      drivers/net/pcs/
7077 F:      drivers/net/phy/
7078 F:      include/dt-bindings/net/qca-ar803x.h
7079 F:      include/linux/*mdio*.h
7080 F:      include/linux/mdio/*.h
7081 F:      include/linux/of_net.h
7082 F:      include/linux/phy.h
7083 F:      include/linux/phy_fixed.h
7084 F:      include/linux/platform_data/mdio-bcm-unimac.h
7085 F:      include/linux/platform_data/mdio-gpio.h
7086 F:      include/trace/events/mdio.h
7087 F:      include/uapi/linux/mdio.h
7088 F:      include/uapi/linux/mii.h
7089 F:      net/core/of_net.c
7090
7091 EXFAT FILE SYSTEM
7092 M:      Namjae Jeon <linkinjeon@kernel.org>
7093 M:      Sungjong Seo <sj1557.seo@samsung.com>
7094 L:      linux-fsdevel@vger.kernel.org
7095 S:      Maintained
7096 F:      fs/exfat/
7097
7098 EXT2 FILE SYSTEM
7099 M:      Jan Kara <jack@suse.com>
7100 L:      linux-ext4@vger.kernel.org
7101 S:      Maintained
7102 F:      Documentation/filesystems/ext2.rst
7103 F:      fs/ext2/
7104 F:      include/linux/ext2*
7105
7106 EXT4 FILE SYSTEM
7107 M:      "Theodore Ts'o" <tytso@mit.edu>
7108 M:      Andreas Dilger <adilger.kernel@dilger.ca>
7109 L:      linux-ext4@vger.kernel.org
7110 S:      Maintained
7111 W:      http://ext4.wiki.kernel.org
7112 Q:      http://patchwork.ozlabs.org/project/linux-ext4/list/
7113 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tytso/ext4.git
7114 F:      Documentation/filesystems/ext4/
7115 F:      fs/ext4/
7116 F:      include/trace/events/ext4.h
7117
7118 Extended Verification Module (EVM)
7119 M:      Mimi Zohar <zohar@linux.ibm.com>
7120 L:      linux-integrity@vger.kernel.org
7121 S:      Supported
7122 F:      security/integrity/evm/
7123
7124 EXTENSIBLE FIRMWARE INTERFACE (EFI)
7125 M:      Ard Biesheuvel <ardb@kernel.org>
7126 L:      linux-efi@vger.kernel.org
7127 S:      Maintained
7128 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/efi/efi.git
7129 F:      Documentation/admin-guide/efi-stub.rst
7130 F:      arch/*/include/asm/efi.h
7131 F:      arch/*/kernel/efi.c
7132 F:      arch/arm/boot/compressed/efi-header.S
7133 F:      arch/arm64/kernel/efi-entry.S
7134 F:      arch/x86/platform/efi/
7135 F:      drivers/firmware/efi/
7136 F:      include/linux/efi*.h
7137
7138 EXTERNAL CONNECTOR SUBSYSTEM (EXTCON)
7139 M:      MyungJoo Ham <myungjoo.ham@samsung.com>
7140 M:      Chanwoo Choi <cw00.choi@samsung.com>
7141 L:      linux-kernel@vger.kernel.org
7142 S:      Maintained
7143 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/extcon.git
7144 F:      Documentation/devicetree/bindings/extcon/
7145 F:      Documentation/firmware-guide/acpi/extcon-intel-int3496.rst
7146 F:      drivers/extcon/
7147 F:      include/linux/extcon.h
7148 F:      include/linux/extcon/
7149
7150 EXTRA BOOT CONFIG
7151 M:      Masami Hiramatsu <mhiramat@kernel.org>
7152 S:      Maintained
7153 F:      Documentation/admin-guide/bootconfig.rst
7154 F:      fs/proc/bootconfig.c
7155 F:      include/linux/bootconfig.h
7156 F:      lib/bootconfig.c
7157 F:      tools/bootconfig/*
7158 F:      tools/bootconfig/scripts/*
7159
7160 EXYNOS DP DRIVER
7161 M:      Jingoo Han <jingoohan1@gmail.com>
7162 L:      dri-devel@lists.freedesktop.org
7163 S:      Maintained
7164 F:      drivers/gpu/drm/exynos/exynos_dp*
7165
7166 EXYNOS SYSMMU (IOMMU) driver
7167 M:      Marek Szyprowski <m.szyprowski@samsung.com>
7168 L:      iommu@lists.linux-foundation.org
7169 L:      iommu@lists.linux.dev
7170 S:      Maintained
7171 F:      drivers/iommu/exynos-iommu.c
7172
7173 F2FS FILE SYSTEM
7174 M:      Jaegeuk Kim <jaegeuk@kernel.org>
7175 M:      Chao Yu <chao@kernel.org>
7176 L:      linux-f2fs-devel@lists.sourceforge.net
7177 S:      Maintained
7178 W:      https://f2fs.wiki.kernel.org/
7179 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs.git
7180 F:      Documentation/ABI/testing/sysfs-fs-f2fs
7181 F:      Documentation/filesystems/f2fs.rst
7182 F:      fs/f2fs/
7183 F:      include/linux/f2fs_fs.h
7184 F:      include/trace/events/f2fs.h
7185 F:      include/uapi/linux/f2fs.h
7186
7187 F71805F HARDWARE MONITORING DRIVER
7188 M:      Jean Delvare <jdelvare@suse.com>
7189 L:      linux-hwmon@vger.kernel.org
7190 S:      Maintained
7191 F:      Documentation/hwmon/f71805f.rst
7192 F:      drivers/hwmon/f71805f.c
7193
7194 FADDR2LINE
7195 M:      Josh Poimboeuf <jpoimboe@redhat.com>
7196 S:      Maintained
7197 F:      scripts/faddr2line
7198
7199 FAILOVER MODULE
7200 M:      Sridhar Samudrala <sridhar.samudrala@intel.com>
7201 L:      netdev@vger.kernel.org
7202 S:      Supported
7203 F:      Documentation/networking/failover.rst
7204 F:      include/net/failover.h
7205 F:      net/core/failover.c
7206
7207 FANOTIFY
7208 M:      Jan Kara <jack@suse.cz>
7209 R:      Amir Goldstein <amir73il@gmail.com>
7210 R:      Matthew Bobrowski <repnop@google.com>
7211 L:      linux-fsdevel@vger.kernel.org
7212 S:      Maintained
7213 F:      fs/notify/fanotify/
7214 F:      include/linux/fanotify.h
7215 F:      include/uapi/linux/fanotify.h
7216
7217 FARSYNC SYNCHRONOUS DRIVER
7218 M:      Kevin Curtis <kevin.curtis@farsite.co.uk>
7219 S:      Supported
7220 W:      http://www.farsite.co.uk/
7221 F:      drivers/net/wan/farsync.*
7222
7223 FAULT INJECTION SUPPORT
7224 M:      Akinobu Mita <akinobu.mita@gmail.com>
7225 S:      Supported
7226 F:      Documentation/fault-injection/
7227 F:      lib/fault-inject.c
7228
7229 FBTFT Framebuffer drivers
7230 L:      dri-devel@lists.freedesktop.org
7231 L:      linux-fbdev@vger.kernel.org
7232 S:      Orphan
7233 F:      drivers/staging/fbtft/
7234
7235 FC0011 TUNER DRIVER
7236 M:      Michael Buesch <m@bues.ch>
7237 L:      linux-media@vger.kernel.org
7238 S:      Maintained
7239 F:      drivers/media/tuners/fc0011.c
7240 F:      drivers/media/tuners/fc0011.h
7241
7242 FC2580 MEDIA DRIVER
7243 M:      Antti Palosaari <crope@iki.fi>
7244 L:      linux-media@vger.kernel.org
7245 S:      Maintained
7246 W:      https://linuxtv.org
7247 W:      http://palosaari.fi/linux/
7248 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
7249 T:      git git://linuxtv.org/anttip/media_tree.git
7250 F:      drivers/media/tuners/fc2580*
7251
7252 FCOE SUBSYSTEM (libfc, libfcoe, fcoe)
7253 M:      Hannes Reinecke <hare@suse.de>
7254 L:      linux-scsi@vger.kernel.org
7255 S:      Supported
7256 W:      www.Open-FCoE.org
7257 F:      drivers/scsi/fcoe/
7258 F:      drivers/scsi/libfc/
7259 F:      include/scsi/fc/
7260 F:      include/scsi/libfc.h
7261 F:      include/scsi/libfcoe.h
7262 F:      include/uapi/scsi/fc/
7263
7264 FILE LOCKING (flock() and fcntl()/lockf())
7265 M:      Jeff Layton <jlayton@kernel.org>
7266 M:      "J. Bruce Fields" <bfields@fieldses.org>
7267 L:      linux-fsdevel@vger.kernel.org
7268 S:      Maintained
7269 F:      fs/fcntl.c
7270 F:      fs/locks.c
7271 F:      include/linux/fcntl.h
7272 F:      include/uapi/linux/fcntl.h
7273
7274 FILESYSTEM DIRECT ACCESS (DAX)
7275 M:      Dan Williams <dan.j.williams@intel.com>
7276 R:      Matthew Wilcox <willy@infradead.org>
7277 R:      Jan Kara <jack@suse.cz>
7278 L:      linux-fsdevel@vger.kernel.org
7279 L:      nvdimm@lists.linux.dev
7280 S:      Supported
7281 F:      fs/dax.c
7282 F:      include/linux/dax.h
7283 F:      include/trace/events/fs_dax.h
7284
7285 FILESYSTEMS (VFS and infrastructure)
7286 M:      Alexander Viro <viro@zeniv.linux.org.uk>
7287 L:      linux-fsdevel@vger.kernel.org
7288 S:      Maintained
7289 F:      fs/*
7290 F:      include/linux/fs.h
7291 F:      include/linux/fs_types.h
7292 F:      include/uapi/linux/fs.h
7293 F:      include/uapi/linux/openat2.h
7294 X:      fs/io-wq.c
7295 X:      fs/io-wq.h
7296 X:      fs/io_uring.c
7297
7298 FINTEK F75375S HARDWARE MONITOR AND FAN CONTROLLER DRIVER
7299 M:      Riku Voipio <riku.voipio@iki.fi>
7300 L:      linux-hwmon@vger.kernel.org
7301 S:      Maintained
7302 F:      drivers/hwmon/f75375s.c
7303 F:      include/linux/f75375s.h
7304
7305 FIREWIRE AUDIO DRIVERS and IEC 61883-1/6 PACKET STREAMING ENGINE
7306 M:      Clemens Ladisch <clemens@ladisch.de>
7307 M:      Takashi Sakamoto <o-takashi@sakamocchi.jp>
7308 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7309 S:      Maintained
7310 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
7311 F:      include/uapi/sound/firewire.h
7312 F:      sound/firewire/
7313
7314 FIREWIRE MEDIA DRIVERS (firedtv)
7315 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
7316 L:      linux-media@vger.kernel.org
7317 L:      linux1394-devel@lists.sourceforge.net
7318 S:      Maintained
7319 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media.git
7320 F:      drivers/media/firewire/
7321
7322 FIREWIRE SBP-2 TARGET
7323 M:      Chris Boot <bootc@bootc.net>
7324 L:      linux-scsi@vger.kernel.org
7325 L:      target-devel@vger.kernel.org
7326 L:      linux1394-devel@lists.sourceforge.net
7327 S:      Maintained
7328 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/lio-core-2.6.git master
7329 F:      drivers/target/sbp/
7330
7331 FIREWIRE SUBSYSTEM
7332 M:      Stefan Richter <stefanr@s5r6.in-berlin.de>
7333 L:      linux1394-devel@lists.sourceforge.net
7334 S:      Maintained
7335 W:      http://ieee1394.wiki.kernel.org/
7336 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394.git
7337 F:      drivers/firewire/
7338 F:      include/linux/firewire.h
7339 F:      include/uapi/linux/firewire*.h
7340 F:      tools/firewire/
7341
7342 FIRMWARE FRAMEWORK FOR ARMV8-A
7343 M:      Sudeep Holla <sudeep.holla@arm.com>
7344 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7345 S:      Maintained
7346 F:      drivers/firmware/arm_ffa/
7347 F:      include/linux/arm_ffa.h
7348
7349 FIRMWARE LOADER (request_firmware)
7350 M:      Luis Chamberlain <mcgrof@kernel.org>
7351 L:      linux-kernel@vger.kernel.org
7352 S:      Maintained
7353 F:      Documentation/firmware_class/
7354 F:      drivers/base/firmware_loader/
7355 F:      include/linux/firmware.h
7356
7357 FLASH ADAPTER DRIVER (IBM Flash Adapter 900GB Full Height PCI Flash Card)
7358 M:      Joshua Morris <josh.h.morris@us.ibm.com>
7359 M:      Philip Kelleher <pjk1939@linux.ibm.com>
7360 S:      Maintained
7361 F:      drivers/block/rsxx/
7362
7363 FLEXTIMER FTM-QUADDEC DRIVER
7364 M:      Patrick Havelange <patrick.havelange@essensium.com>
7365 L:      linux-iio@vger.kernel.org
7366 S:      Maintained
7367 F:      Documentation/devicetree/bindings/counter/ftm-quaddec.txt
7368 F:      drivers/counter/ftm-quaddec.c
7369
7370 FLOPPY DRIVER
7371 M:      Denis Efremov <efremov@linux.com>
7372 L:      linux-block@vger.kernel.org
7373 S:      Odd Fixes
7374 F:      drivers/block/floppy.c
7375
7376 FLYSKY FSIA6B RC RECEIVER
7377 M:      Markus Koch <markus@notsyncing.net>
7378 L:      linux-input@vger.kernel.org
7379 S:      Maintained
7380 F:      drivers/input/joystick/fsia6b.c
7381
7382 FOCUSRITE SCARLETT GEN 2/3 MIXER DRIVER
7383 M:      Geoffrey D. Bennett <g@b4.vu>
7384 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7385 S:      Maintained
7386 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
7387 F:      sound/usb/mixer_scarlett_gen2.c
7388
7389 FORCEDETH GIGABIT ETHERNET DRIVER
7390 M:      Rain River <rain.1986.08.12@gmail.com>
7391 M:      Zhu Yanjun <zyjzyj2000@gmail.com>
7392 L:      netdev@vger.kernel.org
7393 S:      Maintained
7394 F:      drivers/net/ethernet/nvidia/*
7395
7396 FPGA DFL DRIVERS
7397 M:      Wu Hao <hao.wu@intel.com>
7398 R:      Tom Rix <trix@redhat.com>
7399 L:      linux-fpga@vger.kernel.org
7400 S:      Maintained
7401 F:      Documentation/ABI/testing/sysfs-bus-dfl*
7402 F:      Documentation/fpga/dfl.rst
7403 F:      drivers/fpga/dfl*
7404 F:      drivers/uio/uio_dfl.c
7405 F:      include/linux/dfl.h
7406 F:      include/uapi/linux/fpga-dfl.h
7407
7408 FPGA MANAGER FRAMEWORK
7409 M:      Moritz Fischer <mdf@kernel.org>
7410 M:      Wu Hao <hao.wu@intel.com>
7411 M:      Xu Yilun <yilun.xu@intel.com>
7412 R:      Tom Rix <trix@redhat.com>
7413 L:      linux-fpga@vger.kernel.org
7414 S:      Maintained
7415 Q:      http://patchwork.kernel.org/project/linux-fpga/list/
7416 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mdf/linux-fpga.git
7417 F:      Documentation/devicetree/bindings/fpga/
7418 F:      Documentation/driver-api/fpga/
7419 F:      Documentation/fpga/
7420 F:      drivers/fpga/
7421 F:      include/linux/fpga/
7422
7423 FPU EMULATOR
7424 M:      Bill Metzenthen <billm@melbpc.org.au>
7425 S:      Maintained
7426 W:      http://floatingpoint.sourceforge.net/emulator/index.html
7427 F:      arch/x86/math-emu/
7428
7429 FRAMEBUFFER LAYER
7430 L:      dri-devel@lists.freedesktop.org
7431 L:      linux-fbdev@vger.kernel.org
7432 S:      Orphan
7433 Q:      http://patchwork.kernel.org/project/linux-fbdev/list/
7434 T:      git git://anongit.freedesktop.org/drm/drm-misc
7435 F:      Documentation/fb/
7436 F:      drivers/video/
7437 F:      include/linux/fb.h
7438 F:      include/uapi/linux/fb.h
7439 F:      include/uapi/video/
7440 F:      include/video/
7441
7442 FREESCALE CAAM (Cryptographic Acceleration and Assurance Module) DRIVER
7443 M:      Horia Geantă <horia.geanta@nxp.com>
7444 M:      Pankaj Gupta <pankaj.gupta@nxp.com>
7445 L:      linux-crypto@vger.kernel.org
7446 S:      Maintained
7447 F:      Documentation/devicetree/bindings/crypto/fsl-sec4.txt
7448 F:      drivers/crypto/caam/
7449
7450 FREESCALE COLDFIRE M5441X MMC DRIVER
7451 M:      Angelo Dureghello <angelo.dureghello@timesys.com>
7452 L:      linux-mmc@vger.kernel.org
7453 S:      Maintained
7454 F:      drivers/mmc/host/sdhci-esdhc-mcf.c
7455 F:      include/linux/platform_data/mmc-esdhc-mcf.h
7456
7457 FREESCALE DIU FRAMEBUFFER DRIVER
7458 M:      Timur Tabi <timur@kernel.org>
7459 L:      linux-fbdev@vger.kernel.org
7460 S:      Maintained
7461 F:      drivers/video/fbdev/fsl-diu-fb.*
7462
7463 FREESCALE DMA DRIVER
7464 M:      Li Yang <leoyang.li@nxp.com>
7465 M:      Zhang Wei <zw@zh-kernel.org>
7466 L:      linuxppc-dev@lists.ozlabs.org
7467 S:      Maintained
7468 F:      drivers/dma/fsldma.*
7469
7470 FREESCALE DSPI DRIVER
7471 M:      Vladimir Oltean <olteanv@gmail.com>
7472 L:      linux-spi@vger.kernel.org
7473 S:      Maintained
7474 F:      Documentation/devicetree/bindings/spi/spi-fsl-dspi.txt
7475 F:      drivers/spi/spi-fsl-dspi.c
7476 F:      include/linux/spi/spi-fsl-dspi.h
7477
7478 FREESCALE ENETC ETHERNET DRIVERS
7479 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
7480 L:      netdev@vger.kernel.org
7481 S:      Maintained
7482 F:      drivers/net/ethernet/freescale/enetc/
7483
7484 FREESCALE eTSEC ETHERNET DRIVER (GIANFAR)
7485 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
7486 L:      netdev@vger.kernel.org
7487 S:      Maintained
7488 F:      Documentation/devicetree/bindings/net/fsl-tsec-phy.txt
7489 F:      drivers/net/ethernet/freescale/gianfar*
7490
7491 FREESCALE GPMI NAND DRIVER
7492 M:      Han Xu <han.xu@nxp.com>
7493 L:      linux-mtd@lists.infradead.org
7494 S:      Maintained
7495 F:      drivers/mtd/nand/raw/gpmi-nand/*
7496
7497 FREESCALE I2C CPM DRIVER
7498 M:      Jochen Friedrich <jochen@scram.de>
7499 L:      linuxppc-dev@lists.ozlabs.org
7500 L:      linux-i2c@vger.kernel.org
7501 S:      Maintained
7502 F:      drivers/i2c/busses/i2c-cpm.c
7503
7504 FREESCALE IMX / MXC FEC DRIVER
7505 M:      Joakim Zhang <qiangqing.zhang@nxp.com>
7506 L:      netdev@vger.kernel.org
7507 S:      Maintained
7508 F:      Documentation/devicetree/bindings/net/fsl,fec.yaml
7509 F:      drivers/net/ethernet/freescale/fec.h
7510 F:      drivers/net/ethernet/freescale/fec_main.c
7511 F:      drivers/net/ethernet/freescale/fec_ptp.c
7512
7513 FREESCALE IMX / MXC FRAMEBUFFER DRIVER
7514 M:      Sascha Hauer <s.hauer@pengutronix.de>
7515 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
7516 L:      linux-fbdev@vger.kernel.org
7517 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7518 S:      Maintained
7519 F:      drivers/video/fbdev/imxfb.c
7520 F:      include/linux/platform_data/video-imxfb.h
7521
7522 FREESCALE IMX DDR PMU DRIVER
7523 M:      Frank Li <Frank.li@nxp.com>
7524 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7525 S:      Maintained
7526 F:      Documentation/admin-guide/perf/imx-ddr.rst
7527 F:      Documentation/devicetree/bindings/perf/fsl-imx-ddr.yaml
7528 F:      drivers/perf/fsl_imx8_ddr_perf.c
7529
7530 FREESCALE IMX I2C DRIVER
7531 M:      Oleksij Rempel <o.rempel@pengutronix.de>
7532 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
7533 L:      linux-i2c@vger.kernel.org
7534 S:      Maintained
7535 F:      Documentation/devicetree/bindings/i2c/i2c-imx.yaml
7536 F:      drivers/i2c/busses/i2c-imx.c
7537
7538 FREESCALE IMX LPI2C DRIVER
7539 M:      Dong Aisheng <aisheng.dong@nxp.com>
7540 L:      linux-i2c@vger.kernel.org
7541 L:      linux-imx@nxp.com
7542 S:      Maintained
7543 F:      Documentation/devicetree/bindings/i2c/i2c-imx-lpi2c.yaml
7544 F:      drivers/i2c/busses/i2c-imx-lpi2c.c
7545
7546 FREESCALE MPC I2C DRIVER
7547 M:      Chris Packham <chris.packham@alliedtelesis.co.nz>
7548 L:      linux-i2c@vger.kernel.org
7549 S:      Maintained
7550 F:      Documentation/devicetree/bindings/i2c/i2c-mpc.yaml
7551 F:      drivers/i2c/busses/i2c-mpc.c
7552
7553 FREESCALE QORIQ DPAA ETHERNET DRIVER
7554 M:      Madalin Bucur <madalin.bucur@nxp.com>
7555 L:      netdev@vger.kernel.org
7556 S:      Maintained
7557 F:      drivers/net/ethernet/freescale/dpaa
7558
7559 FREESCALE QORIQ DPAA FMAN DRIVER
7560 M:      Madalin Bucur <madalin.bucur@nxp.com>
7561 L:      netdev@vger.kernel.org
7562 S:      Maintained
7563 F:      Documentation/devicetree/bindings/net/fsl-fman.txt
7564 F:      drivers/net/ethernet/freescale/fman
7565
7566 FREESCALE QORIQ PTP CLOCK DRIVER
7567 M:      Yangbo Lu <yangbo.lu@nxp.com>
7568 L:      netdev@vger.kernel.org
7569 S:      Maintained
7570 F:      Documentation/devicetree/bindings/ptp/ptp-qoriq.txt
7571 F:      drivers/net/ethernet/freescale/dpaa2/dpaa2-ptp*
7572 F:      drivers/net/ethernet/freescale/dpaa2/dprtc*
7573 F:      drivers/net/ethernet/freescale/enetc/enetc_ptp.c
7574 F:      drivers/ptp/ptp_qoriq.c
7575 F:      drivers/ptp/ptp_qoriq_debugfs.c
7576 F:      include/linux/fsl/ptp_qoriq.h
7577
7578 FREESCALE QUAD SPI DRIVER
7579 M:      Han Xu <han.xu@nxp.com>
7580 L:      linux-spi@vger.kernel.org
7581 S:      Maintained
7582 F:      Documentation/devicetree/bindings/spi/fsl,spi-fsl-qspi.yaml
7583 F:      drivers/spi/spi-fsl-qspi.c
7584
7585 FREESCALE QUICC ENGINE LIBRARY
7586 M:      Qiang Zhao <qiang.zhao@nxp.com>
7587 L:      linuxppc-dev@lists.ozlabs.org
7588 S:      Maintained
7589 F:      drivers/soc/fsl/qe/
7590 F:      include/soc/fsl/*qe*.h
7591 F:      include/soc/fsl/*ucc*.h
7592
7593 FREESCALE QUICC ENGINE UCC ETHERNET DRIVER
7594 M:      Li Yang <leoyang.li@nxp.com>
7595 L:      netdev@vger.kernel.org
7596 L:      linuxppc-dev@lists.ozlabs.org
7597 S:      Maintained
7598 F:      drivers/net/ethernet/freescale/ucc_geth*
7599
7600 FREESCALE QUICC ENGINE UCC HDLC DRIVER
7601 M:      Zhao Qiang <qiang.zhao@nxp.com>
7602 L:      netdev@vger.kernel.org
7603 L:      linuxppc-dev@lists.ozlabs.org
7604 S:      Maintained
7605 F:      drivers/net/wan/fsl_ucc_hdlc*
7606
7607 FREESCALE QUICC ENGINE UCC UART DRIVER
7608 M:      Timur Tabi <timur@kernel.org>
7609 L:      linuxppc-dev@lists.ozlabs.org
7610 S:      Maintained
7611 F:      drivers/tty/serial/ucc_uart.c
7612
7613 FREESCALE SOC DRIVERS
7614 M:      Li Yang <leoyang.li@nxp.com>
7615 L:      linuxppc-dev@lists.ozlabs.org
7616 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
7617 S:      Maintained
7618 F:      Documentation/devicetree/bindings/misc/fsl,dpaa2-console.yaml
7619 F:      Documentation/devicetree/bindings/soc/fsl/
7620 F:      drivers/soc/fsl/
7621 F:      include/linux/fsl/
7622
7623 FREESCALE SOC FS_ENET DRIVER
7624 M:      Pantelis Antoniou <pantelis.antoniou@gmail.com>
7625 L:      linuxppc-dev@lists.ozlabs.org
7626 L:      netdev@vger.kernel.org
7627 S:      Maintained
7628 F:      drivers/net/ethernet/freescale/fs_enet/
7629 F:      include/linux/fs_enet_pd.h
7630
7631 FREESCALE SOC SOUND DRIVERS
7632 M:      Nicolin Chen <nicoleotsuka@gmail.com>
7633 M:      Xiubo Li <Xiubo.Lee@gmail.com>
7634 R:      Fabio Estevam <festevam@gmail.com>
7635 R:      Shengjiu Wang <shengjiu.wang@gmail.com>
7636 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
7637 L:      linuxppc-dev@lists.ozlabs.org
7638 S:      Maintained
7639 F:      sound/soc/fsl/fsl*
7640 F:      sound/soc/fsl/imx*
7641 F:      sound/soc/fsl/mpc8610_hpcd.c
7642
7643 FREESCALE USB PERIPHERAL DRIVERS
7644 M:      Li Yang <leoyang.li@nxp.com>
7645 L:      linux-usb@vger.kernel.org
7646 L:      linuxppc-dev@lists.ozlabs.org
7647 S:      Maintained
7648 F:      drivers/usb/gadget/udc/fsl*
7649
7650 FREESCALE USB PHY DRIVER
7651 M:      Ran Wang <ran.wang_1@nxp.com>
7652 L:      linux-usb@vger.kernel.org
7653 L:      linuxppc-dev@lists.ozlabs.org
7654 S:      Maintained
7655 F:      drivers/usb/phy/phy-fsl-usb*
7656
7657 FREEVXFS FILESYSTEM
7658 M:      Christoph Hellwig <hch@infradead.org>
7659 S:      Maintained
7660 W:      ftp://ftp.openlinux.org/pub/people/hch/vxfs
7661 F:      fs/freevxfs/
7662
7663 FREEZER
7664 M:      "Rafael J. Wysocki" <rafael@kernel.org>
7665 M:      Pavel Machek <pavel@ucw.cz>
7666 L:      linux-pm@vger.kernel.org
7667 S:      Supported
7668 F:      Documentation/power/freezing-of-tasks.rst
7669 F:      include/linux/freezer.h
7670 F:      kernel/freezer.c
7671
7672 FRONTSWAP API
7673 M:      Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
7674 L:      linux-kernel@vger.kernel.org
7675 S:      Maintained
7676 F:      include/linux/frontswap.h
7677 F:      mm/frontswap.c
7678
7679 FS-CACHE: LOCAL CACHING FOR NETWORK FILESYSTEMS
7680 M:      David Howells <dhowells@redhat.com>
7681 L:      linux-cachefs@redhat.com (moderated for non-subscribers)
7682 S:      Supported
7683 F:      Documentation/filesystems/caching/
7684 F:      fs/fscache/
7685 F:      include/linux/fscache*.h
7686
7687 FSCRYPT: FILE SYSTEM LEVEL ENCRYPTION SUPPORT
7688 M:      Theodore Y. Ts'o <tytso@mit.edu>
7689 M:      Jaegeuk Kim <jaegeuk@kernel.org>
7690 M:      Eric Biggers <ebiggers@kernel.org>
7691 L:      linux-fscrypt@vger.kernel.org
7692 S:      Supported
7693 Q:      https://patchwork.kernel.org/project/linux-fscrypt/list/
7694 T:      git git://git.kernel.org/pub/scm/fs/fscrypt/fscrypt.git
7695 F:      Documentation/filesystems/fscrypt.rst
7696 F:      fs/crypto/
7697 F:      include/linux/fscrypt*.h
7698 F:      include/uapi/linux/fscrypt.h
7699
7700 FSI SUBSYSTEM
7701 M:      Jeremy Kerr <jk@ozlabs.org>
7702 M:      Joel Stanley <joel@jms.id.au>
7703 R:      Alistar Popple <alistair@popple.id.au>
7704 R:      Eddie James <eajames@linux.ibm.com>
7705 L:      linux-fsi@lists.ozlabs.org
7706 S:      Supported
7707 Q:      http://patchwork.ozlabs.org/project/linux-fsi/list/
7708 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joel/fsi.git
7709 F:      drivers/fsi/
7710 F:      include/linux/fsi*.h
7711 F:      include/trace/events/fsi*.h
7712
7713 FSI-ATTACHED I2C DRIVER
7714 M:      Eddie James <eajames@linux.ibm.com>
7715 L:      linux-i2c@vger.kernel.org
7716 L:      openbmc@lists.ozlabs.org (moderated for non-subscribers)
7717 S:      Maintained
7718 F:      Documentation/devicetree/bindings/i2c/i2c-fsi.txt
7719 F:      drivers/i2c/busses/i2c-fsi.c
7720
7721 FSI-ATTACHED SPI DRIVER
7722 M:      Eddie James <eajames@linux.ibm.com>
7723 L:      linux-spi@vger.kernel.org
7724 S:      Maintained
7725 F:      Documentation/devicetree/bindings/fsi/ibm,fsi2spi.yaml
7726 F:      drivers/spi/spi-fsi.c
7727
7728 FSNOTIFY: FILESYSTEM NOTIFICATION INFRASTRUCTURE
7729 M:      Jan Kara <jack@suse.cz>
7730 R:      Amir Goldstein <amir73il@gmail.com>
7731 L:      linux-fsdevel@vger.kernel.org
7732 S:      Maintained
7733 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jack/linux-fs.git fsnotify
7734 F:      fs/notify/
7735 F:      include/linux/fsnotify*.h
7736
7737 FSVERITY: READ-ONLY FILE-BASED AUTHENTICITY PROTECTION
7738 M:      Eric Biggers <ebiggers@kernel.org>
7739 M:      Theodore Y. Ts'o <tytso@mit.edu>
7740 L:      linux-fscrypt@vger.kernel.org
7741 S:      Supported
7742 Q:      https://patchwork.kernel.org/project/linux-fscrypt/list/
7743 T:      git git://git.kernel.org/pub/scm/fs/fscrypt/fscrypt.git fsverity
7744 F:      Documentation/filesystems/fsverity.rst
7745 F:      fs/verity/
7746 F:      include/linux/fsverity.h
7747 F:      include/uapi/linux/fsverity.h
7748
7749 FT260 FTDI USB-HID TO I2C BRIDGE DRIVER
7750 M:      Michael Zaidman <michael.zaidman@gmail.com>
7751 L:      linux-i2c@vger.kernel.org
7752 L:      linux-input@vger.kernel.org
7753 S:      Maintained
7754 F:      drivers/hid/hid-ft260.c
7755
7756 FUJITSU LAPTOP EXTRAS
7757 M:      Jonathan Woithe <jwoithe@just42.net>
7758 L:      platform-driver-x86@vger.kernel.org
7759 S:      Maintained
7760 F:      drivers/platform/x86/fujitsu-laptop.c
7761
7762 FUJITSU M-5MO LS CAMERA ISP DRIVER
7763 M:      Kyungmin Park <kyungmin.park@samsung.com>
7764 M:      Heungjun Kim <riverful.kim@samsung.com>
7765 L:      linux-media@vger.kernel.org
7766 S:      Maintained
7767 F:      drivers/media/i2c/m5mols/
7768 F:      include/media/i2c/m5mols.h
7769
7770 FUJITSU TABLET EXTRAS
7771 M:      Robert Gerlach <khnz@gmx.de>
7772 L:      platform-driver-x86@vger.kernel.org
7773 S:      Maintained
7774 F:      drivers/platform/x86/fujitsu-tablet.c
7775
7776 FUSE: FILESYSTEM IN USERSPACE
7777 M:      Miklos Szeredi <miklos@szeredi.hu>
7778 L:      linux-fsdevel@vger.kernel.org
7779 S:      Maintained
7780 W:      https://github.com/libfuse/
7781 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/fuse.git
7782 F:      Documentation/filesystems/fuse.rst
7783 F:      fs/fuse/
7784 F:      include/uapi/linux/fuse.h
7785
7786 FUTEX SUBSYSTEM
7787 M:      Thomas Gleixner <tglx@linutronix.de>
7788 M:      Ingo Molnar <mingo@redhat.com>
7789 R:      Peter Zijlstra <peterz@infradead.org>
7790 R:      Darren Hart <dvhart@infradead.org>
7791 R:      Davidlohr Bueso <dave@stgolabs.net>
7792 L:      linux-kernel@vger.kernel.org
7793 S:      Maintained
7794 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
7795 F:      Documentation/locking/*futex*
7796 F:      include/asm-generic/futex.h
7797 F:      include/linux/futex.h
7798 F:      include/uapi/linux/futex.h
7799 F:      kernel/futex.c
7800 F:      tools/perf/bench/futex*
7801 F:      tools/testing/selftests/futex/
7802
7803 GATEWORKS SYSTEM CONTROLLER (GSC) DRIVER
7804 M:      Tim Harvey <tharvey@gateworks.com>
7805 M:      Robert Jones <rjones@gateworks.com>
7806 S:      Maintained
7807 F:      Documentation/devicetree/bindings/mfd/gateworks-gsc.yaml
7808 F:      drivers/mfd/gateworks-gsc.c
7809 F:      include/linux/mfd/gsc.h
7810 F:      Documentation/hwmon/gsc-hwmon.rst
7811 F:      drivers/hwmon/gsc-hwmon.c
7812 F:      include/linux/platform_data/gsc_hwmon.h
7813
7814 GCC PLUGINS
7815 M:      Kees Cook <keescook@chromium.org>
7816 L:      linux-hardening@vger.kernel.org
7817 S:      Maintained
7818 F:      Documentation/kbuild/gcc-plugins.rst
7819 F:      scripts/Makefile.gcc-plugins
7820 F:      scripts/gcc-plugins/
7821
7822 GCOV BASED KERNEL PROFILING
7823 M:      Peter Oberparleiter <oberpar@linux.ibm.com>
7824 S:      Maintained
7825 F:      Documentation/dev-tools/gcov.rst
7826 F:      kernel/gcov/
7827
7828 GDB KERNEL DEBUGGING HELPER SCRIPTS
7829 M:      Jan Kiszka <jan.kiszka@siemens.com>
7830 M:      Kieran Bingham <kbingham@kernel.org>
7831 S:      Supported
7832 F:      scripts/gdb/
7833
7834 GEMINI CRYPTO DRIVER
7835 M:      Corentin Labbe <clabbe@baylibre.com>
7836 L:      linux-crypto@vger.kernel.org
7837 S:      Maintained
7838 F:      drivers/crypto/gemini/
7839
7840 GEMTEK FM RADIO RECEIVER DRIVER
7841 M:      Hans Verkuil <hverkuil@xs4all.nl>
7842 L:      linux-media@vger.kernel.org
7843 S:      Maintained
7844 W:      https://linuxtv.org
7845 T:      git git://linuxtv.org/media_tree.git
7846 F:      drivers/media/radio/radio-gemtek*
7847
7848 GENERIC ARCHITECTURE TOPOLOGY
7849 M:      Sudeep Holla <sudeep.holla@arm.com>
7850 L:      linux-kernel@vger.kernel.org
7851 S:      Maintained
7852 F:      drivers/base/arch_topology.c
7853 F:      include/linux/arch_topology.h
7854
7855 GENERIC ENTRY CODE
7856 M:      Thomas Gleixner <tglx@linutronix.de>
7857 M:      Peter Zijlstra <peterz@infradead.org>
7858 M:      Andy Lutomirski <luto@kernel.org>
7859 L:      linux-kernel@vger.kernel.org
7860 S:      Maintained
7861 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core/entry
7862 F:      include/linux/entry-common.h
7863 F:      include/linux/entry-kvm.h
7864 F:      kernel/entry/
7865
7866 GENERIC GPIO I2C DRIVER
7867 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
7868 S:      Supported
7869 F:      drivers/i2c/busses/i2c-gpio.c
7870 F:      include/linux/platform_data/i2c-gpio.h
7871
7872 GENERIC GPIO I2C MULTIPLEXER DRIVER
7873 M:      Peter Korsgaard <peter.korsgaard@barco.com>
7874 L:      linux-i2c@vger.kernel.org
7875 S:      Supported
7876 F:      Documentation/i2c/muxes/i2c-mux-gpio.rst
7877 F:      drivers/i2c/muxes/i2c-mux-gpio.c
7878 F:      include/linux/platform_data/i2c-mux-gpio.h
7879
7880 GENERIC HDLC (WAN) DRIVERS
7881 M:      Krzysztof Halasa <khc@pm.waw.pl>
7882 S:      Maintained
7883 W:      http://www.kernel.org/pub/linux/utils/net/hdlc/
7884 F:      drivers/net/wan/c101.c
7885 F:      drivers/net/wan/hd6457*
7886 F:      drivers/net/wan/hdlc*
7887 F:      drivers/net/wan/n2.c
7888 F:      drivers/net/wan/pc300too.c
7889 F:      drivers/net/wan/pci200syn.c
7890 F:      drivers/net/wan/wanxl*
7891
7892 GENERIC INCLUDE/ASM HEADER FILES
7893 M:      Arnd Bergmann <arnd@arndb.de>
7894 L:      linux-arch@vger.kernel.org
7895 S:      Maintained
7896 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic.git
7897 F:      include/asm-generic/
7898 F:      include/uapi/asm-generic/
7899
7900 GENERIC PHY FRAMEWORK
7901 M:      Kishon Vijay Abraham I <kishon@ti.com>
7902 M:      Vinod Koul <vkoul@kernel.org>
7903 L:      linux-phy@lists.infradead.org
7904 S:      Supported
7905 Q:      https://patchwork.kernel.org/project/linux-phy/list/
7906 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/phy/linux-phy.git
7907 F:      Documentation/devicetree/bindings/phy/
7908 F:      drivers/phy/
7909 F:      include/linux/phy/
7910
7911 GENERIC PINCTRL I2C DEMULTIPLEXER DRIVER
7912 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
7913 S:      Supported
7914 F:      drivers/i2c/muxes/i2c-demux-pinctrl.c
7915
7916 GENERIC PM DOMAINS
7917 M:      "Rafael J. Wysocki" <rafael@kernel.org>
7918 M:      Kevin Hilman <khilman@kernel.org>
7919 M:      Ulf Hansson <ulf.hansson@linaro.org>
7920 L:      linux-pm@vger.kernel.org
7921 S:      Supported
7922 F:      Documentation/devicetree/bindings/power/power?domain*
7923 F:      drivers/base/power/domain*.c
7924 F:      include/linux/pm_domain.h
7925
7926 GENERIC RESISTIVE TOUCHSCREEN ADC DRIVER
7927 M:      Eugen Hristev <eugen.hristev@microchip.com>
7928 L:      linux-input@vger.kernel.org
7929 S:      Maintained
7930 F:      drivers/input/touchscreen/resistive-adc-touch.c
7931
7932 GENERIC STRING LIBRARY
7933 R:      Andy Shevchenko <andy@kernel.org>
7934 S:      Maintained
7935 F:      lib/string.c
7936 F:      lib/string_helpers.c
7937 F:      lib/test_string.c
7938 F:      lib/test-string_helpers.c
7939
7940 GENERIC UIO DRIVER FOR PCI DEVICES
7941 M:      "Michael S. Tsirkin" <mst@redhat.com>
7942 L:      kvm@vger.kernel.org
7943 S:      Supported
7944 F:      drivers/uio/uio_pci_generic.c
7945
7946 GENERIC VDSO LIBRARY
7947 M:      Andy Lutomirski <luto@kernel.org>
7948 M:      Thomas Gleixner <tglx@linutronix.de>
7949 M:      Vincenzo Frascino <vincenzo.frascino@arm.com>
7950 L:      linux-kernel@vger.kernel.org
7951 S:      Maintained
7952 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/vdso
7953 F:      include/asm-generic/vdso/vsyscall.h
7954 F:      include/vdso/
7955 F:      kernel/time/vsyscall.c
7956 F:      lib/vdso/
7957
7958 GENWQE (IBM Generic Workqueue Card)
7959 M:      Frank Haverkamp <haver@linux.ibm.com>
7960 S:      Supported
7961 F:      drivers/misc/genwqe/
7962
7963 GET_MAINTAINER SCRIPT
7964 M:      Joe Perches <joe@perches.com>
7965 S:      Maintained
7966 F:      scripts/get_maintainer.pl
7967
7968 GFS2 FILE SYSTEM
7969 M:      Bob Peterson <rpeterso@redhat.com>
7970 M:      Andreas Gruenbacher <agruenba@redhat.com>
7971 L:      cluster-devel@redhat.com
7972 S:      Supported
7973 B:      https://bugzilla.kernel.org/enter_bug.cgi?product=File%20System&component=gfs2
7974 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gfs2/linux-gfs2.git
7975 F:      Documentation/filesystems/gfs2*
7976 F:      fs/gfs2/
7977 F:      include/uapi/linux/gfs2_ondisk.h
7978
7979 GIGABYTE WMI DRIVER
7980 M:      Thomas Weißschuh <thomas@weissschuh.net>
7981 L:      platform-driver-x86@vger.kernel.org
7982 S:      Maintained
7983 F:      drivers/platform/x86/gigabyte-wmi.c
7984
7985 GNSS SUBSYSTEM
7986 M:      Johan Hovold <johan@kernel.org>
7987 S:      Maintained
7988 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/gnss.git
7989 F:      Documentation/ABI/testing/sysfs-class-gnss
7990 F:      Documentation/devicetree/bindings/gnss/
7991 F:      drivers/gnss/
7992 F:      include/linux/gnss.h
7993
7994 GO7007 MPEG CODEC
7995 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
7996 L:      linux-media@vger.kernel.org
7997 S:      Maintained
7998 F:      drivers/media/usb/go7007/
7999
8000 GOODIX TOUCHSCREEN
8001 M:      Bastien Nocera <hadess@hadess.net>
8002 M:      Hans de Goede <hdegoede@redhat.com>
8003 L:      linux-input@vger.kernel.org
8004 S:      Maintained
8005 F:      drivers/input/touchscreen/goodix*
8006
8007 GOOGLE ETHERNET DRIVERS
8008 M:      Jeroen de Borst <jeroendb@google.com>
8009 R:      Catherine Sullivan <csully@google.com>
8010 R:      David Awogbemila <awogbemila@google.com>
8011 L:      netdev@vger.kernel.org
8012 S:      Supported
8013 F:      Documentation/networking/device_drivers/ethernet/google/gve.rst
8014 F:      drivers/net/ethernet/google
8015
8016 GPD POCKET FAN DRIVER
8017 M:      Hans de Goede <hdegoede@redhat.com>
8018 L:      platform-driver-x86@vger.kernel.org
8019 S:      Maintained
8020 F:      drivers/platform/x86/gpd-pocket-fan.c
8021
8022 GPIO ACPI SUPPORT
8023 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
8024 M:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
8025 L:      linux-gpio@vger.kernel.org
8026 L:      linux-acpi@vger.kernel.org
8027 S:      Maintained
8028 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
8029 F:      Documentation/firmware-guide/acpi/gpio-properties.rst
8030 F:      drivers/gpio/gpiolib-acpi.c
8031 F:      drivers/gpio/gpiolib-acpi.h
8032
8033 GPIO AGGREGATOR
8034 M:      Geert Uytterhoeven <geert+renesas@glider.be>
8035 L:      linux-gpio@vger.kernel.org
8036 S:      Supported
8037 F:      Documentation/admin-guide/gpio/gpio-aggregator.rst
8038 F:      drivers/gpio/gpio-aggregator.c
8039
8040 GPIO IR Transmitter
8041 M:      Sean Young <sean@mess.org>
8042 L:      linux-media@vger.kernel.org
8043 S:      Maintained
8044 F:      drivers/media/rc/gpio-ir-tx.c
8045
8046 GPIO MOCKUP DRIVER
8047 M:      Bamvor Jian Zhang <bamv2005@gmail.com>
8048 L:      linux-gpio@vger.kernel.org
8049 S:      Maintained
8050 F:      drivers/gpio/gpio-mockup.c
8051 F:      tools/testing/selftests/gpio/
8052
8053 GPIO REGMAP
8054 R:      Michael Walle <michael@walle.cc>
8055 S:      Maintained
8056 F:      drivers/gpio/gpio-regmap.c
8057 F:      include/linux/gpio/regmap.h
8058
8059 GPIO SUBSYSTEM
8060 M:      Linus Walleij <linus.walleij@linaro.org>
8061 M:      Bartosz Golaszewski <brgl@bgdev.pl>
8062 L:      linux-gpio@vger.kernel.org
8063 S:      Maintained
8064 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-gpio.git
8065 F:      Documentation/ABI/obsolete/sysfs-gpio
8066 F:      Documentation/ABI/testing/gpio-cdev
8067 F:      Documentation/admin-guide/gpio/
8068 F:      Documentation/devicetree/bindings/gpio/
8069 F:      Documentation/driver-api/gpio/
8070 F:      drivers/gpio/
8071 F:      include/asm-generic/gpio.h
8072 F:      include/linux/gpio.h
8073 F:      include/linux/gpio/
8074 F:      include/linux/of_gpio.h
8075 F:      include/uapi/linux/gpio.h
8076 F:      tools/gpio/
8077
8078 GRE DEMULTIPLEXER DRIVER
8079 M:      Dmitry Kozlov <xeb@mail.ru>
8080 L:      netdev@vger.kernel.org
8081 S:      Maintained
8082 F:      include/net/gre.h
8083 F:      net/ipv4/gre_demux.c
8084 F:      net/ipv4/gre_offload.c
8085
8086 GRETH 10/100/1G Ethernet MAC device driver
8087 M:      Andreas Larsson <andreas@gaisler.com>
8088 L:      netdev@vger.kernel.org
8089 S:      Maintained
8090 F:      drivers/net/ethernet/aeroflex/
8091
8092 GREYBUS AUDIO PROTOCOLS DRIVERS
8093 M:      Vaibhav Agarwal <vaibhav.sr@gmail.com>
8094 M:      Mark Greer <mgreer@animalcreek.com>
8095 S:      Maintained
8096 F:      drivers/staging/greybus/audio_apbridgea.c
8097 F:      drivers/staging/greybus/audio_apbridgea.h
8098 F:      drivers/staging/greybus/audio_codec.c
8099 F:      drivers/staging/greybus/audio_codec.h
8100 F:      drivers/staging/greybus/audio_gb.c
8101 F:      drivers/staging/greybus/audio_manager.c
8102 F:      drivers/staging/greybus/audio_manager.h
8103 F:      drivers/staging/greybus/audio_manager_module.c
8104 F:      drivers/staging/greybus/audio_manager_private.h
8105 F:      drivers/staging/greybus/audio_manager_sysfs.c
8106 F:      drivers/staging/greybus/audio_module.c
8107 F:      drivers/staging/greybus/audio_topology.c
8108
8109 GREYBUS FW/HID/SPI PROTOCOLS DRIVERS
8110 M:      Viresh Kumar <vireshk@kernel.org>
8111 S:      Maintained
8112 F:      drivers/staging/greybus/authentication.c
8113 F:      drivers/staging/greybus/bootrom.c
8114 F:      drivers/staging/greybus/firmware.h
8115 F:      drivers/staging/greybus/fw-core.c
8116 F:      drivers/staging/greybus/fw-download.c
8117 F:      drivers/staging/greybus/fw-management.c
8118 F:      drivers/staging/greybus/greybus_authentication.h
8119 F:      drivers/staging/greybus/greybus_firmware.h
8120 F:      drivers/staging/greybus/hid.c
8121 F:      drivers/staging/greybus/i2c.c
8122 F:      drivers/staging/greybus/spi.c
8123 F:      drivers/staging/greybus/spilib.c
8124 F:      drivers/staging/greybus/spilib.h
8125
8126 GREYBUS LOOPBACK DRIVER
8127 M:      Bryan O'Donoghue <pure.logic@nexus-software.ie>
8128 S:      Maintained
8129 F:      drivers/staging/greybus/loopback.c
8130
8131 GREYBUS PLATFORM DRIVERS
8132 M:      Vaibhav Hiremath <hvaibhav.linux@gmail.com>
8133 S:      Maintained
8134 F:      drivers/staging/greybus/arche-apb-ctrl.c
8135 F:      drivers/staging/greybus/arche-platform.c
8136 F:      drivers/staging/greybus/arche_platform.h
8137
8138 GREYBUS SDIO/GPIO/SPI PROTOCOLS DRIVERS
8139 M:      Rui Miguel Silva <rmfrfs@gmail.com>
8140 S:      Maintained
8141 F:      drivers/staging/greybus/gpio.c
8142 F:      drivers/staging/greybus/light.c
8143 F:      drivers/staging/greybus/power_supply.c
8144 F:      drivers/staging/greybus/sdio.c
8145 F:      drivers/staging/greybus/spi.c
8146 F:      drivers/staging/greybus/spilib.c
8147
8148 GREYBUS SUBSYSTEM
8149 M:      Johan Hovold <johan@kernel.org>
8150 M:      Alex Elder <elder@kernel.org>
8151 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
8152 L:      greybus-dev@lists.linaro.org (moderated for non-subscribers)
8153 S:      Maintained
8154 F:      drivers/greybus/
8155 F:      drivers/staging/greybus/
8156 F:      include/linux/greybus.h
8157 F:      include/linux/greybus/
8158
8159 GREYBUS UART PROTOCOLS DRIVERS
8160 M:      David Lin <dtwlin@gmail.com>
8161 S:      Maintained
8162 F:      drivers/staging/greybus/log.c
8163 F:      drivers/staging/greybus/uart.c
8164
8165 GS1662 VIDEO SERIALIZER
8166 M:      Charles-Antoine Couret <charles-antoine.couret@nexvision.fr>
8167 L:      linux-media@vger.kernel.org
8168 S:      Maintained
8169 T:      git git://linuxtv.org/media_tree.git
8170 F:      drivers/media/spi/gs1662.c
8171
8172 GSPCA FINEPIX SUBDRIVER
8173 M:      Frank Zago <frank@zago.net>
8174 L:      linux-media@vger.kernel.org
8175 S:      Maintained
8176 T:      git git://linuxtv.org/media_tree.git
8177 F:      drivers/media/usb/gspca/finepix.c
8178
8179 GSPCA GL860 SUBDRIVER
8180 M:      Olivier Lorin <o.lorin@laposte.net>
8181 L:      linux-media@vger.kernel.org
8182 S:      Maintained
8183 T:      git git://linuxtv.org/media_tree.git
8184 F:      drivers/media/usb/gspca/gl860/
8185
8186 GSPCA M5602 SUBDRIVER
8187 M:      Erik Andren <erik.andren@gmail.com>
8188 L:      linux-media@vger.kernel.org
8189 S:      Maintained
8190 T:      git git://linuxtv.org/media_tree.git
8191 F:      drivers/media/usb/gspca/m5602/
8192
8193 GSPCA PAC207 SONIXB SUBDRIVER
8194 M:      Hans Verkuil <hverkuil@xs4all.nl>
8195 L:      linux-media@vger.kernel.org
8196 S:      Odd Fixes
8197 T:      git git://linuxtv.org/media_tree.git
8198 F:      drivers/media/usb/gspca/pac207.c
8199
8200 GSPCA SN9C20X SUBDRIVER
8201 M:      Brian Johnson <brijohn@gmail.com>
8202 L:      linux-media@vger.kernel.org
8203 S:      Maintained
8204 T:      git git://linuxtv.org/media_tree.git
8205 F:      drivers/media/usb/gspca/sn9c20x.c
8206
8207 GSPCA T613 SUBDRIVER
8208 M:      Leandro Costantino <lcostantino@gmail.com>
8209 L:      linux-media@vger.kernel.org
8210 S:      Maintained
8211 T:      git git://linuxtv.org/media_tree.git
8212 F:      drivers/media/usb/gspca/t613.c
8213
8214 GSPCA USB WEBCAM DRIVER
8215 M:      Hans Verkuil <hverkuil@xs4all.nl>
8216 L:      linux-media@vger.kernel.org
8217 S:      Odd Fixes
8218 T:      git git://linuxtv.org/media_tree.git
8219 F:      drivers/media/usb/gspca/
8220
8221 GTP (GPRS Tunneling Protocol)
8222 M:      Pablo Neira Ayuso <pablo@netfilter.org>
8223 M:      Harald Welte <laforge@gnumonks.org>
8224 L:      osmocom-net-gprs@lists.osmocom.org
8225 S:      Maintained
8226 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/gtp.git
8227 F:      drivers/net/gtp.c
8228
8229 GUID PARTITION TABLE (GPT)
8230 M:      Davidlohr Bueso <dave@stgolabs.net>
8231 L:      linux-efi@vger.kernel.org
8232 S:      Maintained
8233 F:      block/partitions/efi.*
8234
8235 H8/300 ARCHITECTURE
8236 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
8237 L:      uclinux-h8-devel@lists.sourceforge.jp (moderated for non-subscribers)
8238 S:      Maintained
8239 W:      http://uclinux-h8.sourceforge.jp
8240 T:      git git://git.sourceforge.jp/gitroot/uclinux-h8/linux.git
8241 F:      arch/h8300/
8242 F:      drivers/clk/h8300/
8243 F:      drivers/clocksource/h8300_*.c
8244 F:      drivers/irqchip/irq-renesas-h8*.c
8245
8246 HABANALABS PCI DRIVER
8247 M:      Oded Gabbay <ogabbay@kernel.org>
8248 S:      Supported
8249 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/ogabbay/linux.git
8250 F:      Documentation/ABI/testing/debugfs-driver-habanalabs
8251 F:      Documentation/ABI/testing/sysfs-driver-habanalabs
8252 F:      drivers/misc/habanalabs/
8253 F:      include/uapi/misc/habanalabs.h
8254
8255 HACKRF MEDIA DRIVER
8256 M:      Antti Palosaari <crope@iki.fi>
8257 L:      linux-media@vger.kernel.org
8258 S:      Maintained
8259 W:      https://linuxtv.org
8260 W:      http://palosaari.fi/linux/
8261 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
8262 T:      git git://linuxtv.org/anttip/media_tree.git
8263 F:      drivers/media/usb/hackrf/
8264
8265 HANTRO VPU CODEC DRIVER
8266 M:      Ezequiel Garcia <ezequiel@collabora.com>
8267 M:      Philipp Zabel <p.zabel@pengutronix.de>
8268 L:      linux-media@vger.kernel.org
8269 L:      linux-rockchip@lists.infradead.org
8270 S:      Maintained
8271 F:      Documentation/devicetree/bindings/media/nxp,imx8mq-vpu.yaml
8272 F:      Documentation/devicetree/bindings/media/rockchip-vpu.yaml
8273 F:      drivers/staging/media/hantro/
8274
8275 HARD DRIVE ACTIVE PROTECTION SYSTEM (HDAPS) DRIVER
8276 M:      Frank Seidel <frank@f-seidel.de>
8277 L:      platform-driver-x86@vger.kernel.org
8278 S:      Maintained
8279 W:      http://www.kernel.org/pub/linux/kernel/people/fseidel/hdaps/
8280 F:      drivers/platform/x86/hdaps.c
8281
8282 HARDWARE MONITORING
8283 M:      Jean Delvare <jdelvare@suse.com>
8284 M:      Guenter Roeck <linux@roeck-us.net>
8285 L:      linux-hwmon@vger.kernel.org
8286 S:      Maintained
8287 W:      http://hwmon.wiki.kernel.org/
8288 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
8289 F:      Documentation/devicetree/bindings/hwmon/
8290 F:      Documentation/hwmon/
8291 F:      drivers/hwmon/
8292 F:      include/linux/hwmon*.h
8293 F:      include/trace/events/hwmon*.h
8294 K:      (devm_)?hwmon_device_(un)?register(|_with_groups|_with_info)
8295
8296 HARDWARE RANDOM NUMBER GENERATOR CORE
8297 M:      Matt Mackall <mpm@selenic.com>
8298 M:      Herbert Xu <herbert@gondor.apana.org.au>
8299 L:      linux-crypto@vger.kernel.org
8300 S:      Odd fixes
8301 F:      Documentation/admin-guide/hw_random.rst
8302 F:      Documentation/devicetree/bindings/rng/
8303 F:      drivers/char/hw_random/
8304 F:      include/linux/hw_random.h
8305
8306 HARDWARE SPINLOCK CORE
8307 M:      Ohad Ben-Cohen <ohad@wizery.com>
8308 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
8309 R:      Baolin Wang <baolin.wang7@gmail.com>
8310 L:      linux-remoteproc@vger.kernel.org
8311 S:      Maintained
8312 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git hwspinlock-next
8313 F:      Documentation/devicetree/bindings/hwlock/
8314 F:      Documentation/locking/hwspinlock.rst
8315 F:      drivers/hwspinlock/
8316 F:      include/linux/hwspinlock.h
8317
8318 HARDWARE TRACING FACILITIES
8319 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
8320 S:      Maintained
8321 F:      drivers/hwtracing/
8322
8323 HARMONY SOUND DRIVER
8324 L:      linux-parisc@vger.kernel.org
8325 S:      Maintained
8326 F:      sound/parisc/harmony.*
8327
8328 HDPVR USB VIDEO ENCODER DRIVER
8329 M:      Hans Verkuil <hverkuil@xs4all.nl>
8330 L:      linux-media@vger.kernel.org
8331 S:      Odd Fixes
8332 W:      https://linuxtv.org
8333 T:      git git://linuxtv.org/media_tree.git
8334 F:      drivers/media/usb/hdpvr/
8335
8336 HEWLETT PACKARD ENTERPRISE ILO CHIF DRIVER
8337 M:      Matt Hsiao <matt.hsiao@hpe.com>
8338 S:      Supported
8339 F:      drivers/misc/hpilo.[ch]
8340
8341 HEWLETT PACKARD ENTERPRISE ILO NMI WATCHDOG DRIVER
8342 M:      Jerry Hoemann <jerry.hoemann@hpe.com>
8343 S:      Supported
8344 F:      Documentation/watchdog/hpwdt.rst
8345 F:      drivers/watchdog/hpwdt.c
8346
8347 HEWLETT-PACKARD SMART ARRAY RAID DRIVER (hpsa)
8348 M:      Don Brace <don.brace@microchip.com>
8349 L:      storagedev@microchip.com
8350 L:      linux-scsi@vger.kernel.org
8351 S:      Supported
8352 F:      Documentation/scsi/hpsa.rst
8353 F:      drivers/scsi/hpsa*.[ch]
8354 F:      include/linux/cciss*.h
8355 F:      include/uapi/linux/cciss*.h
8356
8357 HFI1 DRIVER
8358 M:      Mike Marciniszyn <mike.marciniszyn@cornelisnetworks.com>
8359 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
8360 L:      linux-rdma@vger.kernel.org
8361 S:      Supported
8362 F:      drivers/infiniband/hw/hfi1
8363
8364 HFS FILESYSTEM
8365 L:      linux-fsdevel@vger.kernel.org
8366 S:      Orphan
8367 F:      Documentation/filesystems/hfs.rst
8368 F:      fs/hfs/
8369
8370 HFSPLUS FILESYSTEM
8371 L:      linux-fsdevel@vger.kernel.org
8372 S:      Orphan
8373 F:      Documentation/filesystems/hfsplus.rst
8374 F:      fs/hfsplus/
8375
8376 HGA FRAMEBUFFER DRIVER
8377 M:      Ferenc Bakonyi <fero@drama.obuda.kando.hu>
8378 L:      linux-nvidia@lists.surfsouth.com
8379 S:      Maintained
8380 W:      http://drama.obuda.kando.hu/~fero/cgi-bin/hgafb.shtml
8381 F:      drivers/video/fbdev/hgafb.c
8382
8383 HIBERNATION (aka Software Suspend, aka swsusp)
8384 M:      "Rafael J. Wysocki" <rafael@kernel.org>
8385 M:      Pavel Machek <pavel@ucw.cz>
8386 L:      linux-pm@vger.kernel.org
8387 S:      Supported
8388 B:      https://bugzilla.kernel.org
8389 F:      arch/*/include/asm/suspend*.h
8390 F:      arch/x86/power/
8391 F:      drivers/base/power/
8392 F:      include/linux/freezer.h
8393 F:      include/linux/pm.h
8394 F:      include/linux/suspend.h
8395 F:      kernel/power/
8396
8397 HID CORE LAYER
8398 M:      Jiri Kosina <jikos@kernel.org>
8399 M:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
8400 L:      linux-input@vger.kernel.org
8401 S:      Maintained
8402 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
8403 F:      drivers/hid/
8404 F:      include/linux/hid*
8405 F:      include/uapi/linux/hid*
8406
8407 HID PLAYSTATION DRIVER
8408 M:      Roderick Colenbrander <roderick.colenbrander@sony.com>
8409 L:      linux-input@vger.kernel.org
8410 S:      Supported
8411 F:      drivers/hid/hid-playstation.c
8412
8413 HID SENSOR HUB DRIVERS
8414 M:      Jiri Kosina <jikos@kernel.org>
8415 M:      Jonathan Cameron <jic23@kernel.org>
8416 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
8417 L:      linux-input@vger.kernel.org
8418 L:      linux-iio@vger.kernel.org
8419 S:      Maintained
8420 F:      Documentation/hid/hid-sensor*
8421 F:      drivers/hid/hid-sensor-*
8422 F:      drivers/iio/*/hid-*
8423 F:      include/linux/hid-sensor-*
8424
8425 HIGH-RESOLUTION TIMERS, CLOCKEVENTS
8426 M:      Thomas Gleixner <tglx@linutronix.de>
8427 L:      linux-kernel@vger.kernel.org
8428 S:      Maintained
8429 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
8430 F:      Documentation/timers/
8431 F:      include/linux/clockchips.h
8432 F:      include/linux/hrtimer.h
8433 F:      kernel/time/clockevents.c
8434 F:      kernel/time/hrtimer.c
8435 F:      kernel/time/timer_*.c
8436
8437 HIGH-SPEED SCC DRIVER FOR AX.25
8438 L:      linux-hams@vger.kernel.org
8439 S:      Orphan
8440 F:      drivers/net/hamradio/dmascc.c
8441 F:      drivers/net/hamradio/scc.c
8442
8443 HIGHPOINT ROCKETRAID 3xxx RAID DRIVER
8444 M:      HighPoint Linux Team <linux@highpoint-tech.com>
8445 S:      Supported
8446 W:      http://www.highpoint-tech.com
8447 F:      Documentation/scsi/hptiop.rst
8448 F:      drivers/scsi/hptiop.c
8449
8450 HIPPI
8451 M:      Jes Sorensen <jes@trained-monkey.org>
8452 L:      linux-hippi@sunsite.dk
8453 S:      Maintained
8454 F:      drivers/net/hippi/
8455 F:      include/linux/hippidevice.h
8456 F:      include/uapi/linux/if_hippi.h
8457 F:      net/802/hippi.c
8458
8459 HIRSCHMANN HELLCREEK ETHERNET SWITCH DRIVER
8460 M:      Kurt Kanzenbach <kurt@linutronix.de>
8461 L:      netdev@vger.kernel.org
8462 S:      Maintained
8463 F:      Documentation/devicetree/bindings/net/dsa/hirschmann,hellcreek.yaml
8464 F:      drivers/net/dsa/hirschmann/*
8465 F:      include/linux/platform_data/hirschmann-hellcreek.h
8466 F:      net/dsa/tag_hellcreek.c
8467
8468 HISILICON DMA DRIVER
8469 M:      Zhou Wang <wangzhou1@hisilicon.com>
8470 L:      dmaengine@vger.kernel.org
8471 S:      Maintained
8472 F:      drivers/dma/hisi_dma.c
8473
8474 HISILICON GPIO DRIVER
8475 M:      Luo Jiaxing <luojiaxing@huawei.com>
8476 L:      linux-gpio@vger.kernel.org
8477 S:      Maintained
8478 F:      drivers/gpio/gpio-hisi.c
8479
8480 HISILICON HIGH PERFORMANCE RSA ENGINE DRIVER (HPRE)
8481 M:      Zaibo Xu <xuzaibo@huawei.com>
8482 L:      linux-crypto@vger.kernel.org
8483 S:      Maintained
8484 F:      Documentation/ABI/testing/debugfs-hisi-hpre
8485 F:      drivers/crypto/hisilicon/hpre/hpre.h
8486 F:      drivers/crypto/hisilicon/hpre/hpre_crypto.c
8487 F:      drivers/crypto/hisilicon/hpre/hpre_main.c
8488
8489 HISILICON I2C CONTROLLER DRIVER
8490 M:      Yicong Yang <yangyicong@hisilicon.com>
8491 L:      linux-i2c@vger.kernel.org
8492 S:      Maintained
8493 W:      https://www.hisilicon.com
8494 F:      drivers/i2c/busses/i2c-hisi.c
8495
8496 HISILICON LPC BUS DRIVER
8497 M:      john.garry@huawei.com
8498 S:      Maintained
8499 W:      http://www.hisilicon.com
8500 F:      Documentation/devicetree/bindings/arm/hisilicon/low-pin-count.yaml
8501 F:      drivers/bus/hisi_lpc.c
8502
8503 HISILICON NETWORK SUBSYSTEM 3 DRIVER (HNS3)
8504 M:      Yisen Zhuang <yisen.zhuang@huawei.com>
8505 M:      Salil Mehta <salil.mehta@huawei.com>
8506 L:      netdev@vger.kernel.org
8507 S:      Maintained
8508 W:      http://www.hisilicon.com
8509 F:      drivers/net/ethernet/hisilicon/hns3/
8510
8511 HISILICON NETWORK SUBSYSTEM DRIVER
8512 M:      Yisen Zhuang <yisen.zhuang@huawei.com>
8513 M:      Salil Mehta <salil.mehta@huawei.com>
8514 L:      netdev@vger.kernel.org
8515 S:      Maintained
8516 W:      http://www.hisilicon.com
8517 F:      Documentation/devicetree/bindings/net/hisilicon*.txt
8518 F:      drivers/net/ethernet/hisilicon/
8519
8520 HIKEY960 ONBOARD USB GPIO HUB DRIVER
8521 M:      John Stultz <john.stultz@linaro.org>
8522 L:      linux-kernel@vger.kernel.org
8523 S:      Maintained
8524 F:      drivers/misc/hisi_hikey_usb.c
8525 F:      Documentation/devicetree/bindings/misc/hisilicon-hikey-usb.yaml
8526
8527 HISILICON PMU DRIVER
8528 M:      Shaokun Zhang <zhangshaokun@hisilicon.com>
8529 S:      Supported
8530 W:      http://www.hisilicon.com
8531 F:      Documentation/admin-guide/perf/hisi-pmu.rst
8532 F:      drivers/perf/hisilicon
8533
8534 HISILICON QM AND ZIP Controller DRIVER
8535 M:      Zhou Wang <wangzhou1@hisilicon.com>
8536 L:      linux-crypto@vger.kernel.org
8537 S:      Maintained
8538 F:      Documentation/ABI/testing/debugfs-hisi-zip
8539 F:      drivers/crypto/hisilicon/qm.c
8540 F:      drivers/crypto/hisilicon/qm.h
8541 F:      drivers/crypto/hisilicon/sgl.c
8542 F:      drivers/crypto/hisilicon/zip/
8543
8544 HISILICON ROCE DRIVER
8545 M:      Wenpeng Liang <liangwenpeng@huawei.com>
8546 M:      Weihang Li <liweihang@huawei.com>
8547 L:      linux-rdma@vger.kernel.org
8548 S:      Maintained
8549 F:      Documentation/devicetree/bindings/infiniband/hisilicon-hns-roce.txt
8550 F:      drivers/infiniband/hw/hns/
8551
8552 HISILICON SAS Controller
8553 M:      John Garry <john.garry@huawei.com>
8554 S:      Supported
8555 W:      http://www.hisilicon.com
8556 F:      Documentation/devicetree/bindings/scsi/hisilicon-sas.txt
8557 F:      drivers/scsi/hisi_sas/
8558
8559 HISILICON SECURITY ENGINE V2 DRIVER (SEC2)
8560 M:      Zaibo Xu <xuzaibo@huawei.com>
8561 L:      linux-crypto@vger.kernel.org
8562 S:      Maintained
8563 F:      Documentation/ABI/testing/debugfs-hisi-sec
8564 F:      drivers/crypto/hisilicon/sec2/sec.h
8565 F:      drivers/crypto/hisilicon/sec2/sec_crypto.c
8566 F:      drivers/crypto/hisilicon/sec2/sec_crypto.h
8567 F:      drivers/crypto/hisilicon/sec2/sec_main.c
8568
8569 HISILICON SPI Controller DRIVER FOR KUNPENG SOCS
8570 M:      Jay Fang <f.fangjian@huawei.com>
8571 L:      linux-spi@vger.kernel.org
8572 S:      Maintained
8573 W:      http://www.hisilicon.com
8574 F:      drivers/spi/spi-hisi-kunpeng.c
8575
8576 HISILICON SPMI CONTROLLER DRIVER FOR HIKEY 970
8577 M:      Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
8578 L:      linux-kernel@vger.kernel.org
8579 S:      Maintained
8580 F:      Documentation/devicetree/bindings/spmi/hisilicon,hisi-spmi-controller.yaml
8581 F:      drivers/spmi/hisi-spmi-controller.c
8582
8583 HISILICON SPMI PMIC DRIVER FOR HIKEY 6421v600
8584 M:      Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
8585 L:      linux-kernel@vger.kernel.org
8586 S:      Maintained
8587 F:      Documentation/devicetree/bindings/mfd/hisilicon,hi6421-spmi-pmic.yaml
8588 F:      drivers/mfd/hi6421-spmi-pmic.c
8589
8590 HISILICON TRUE RANDOM NUMBER GENERATOR V2 SUPPORT
8591 M:      Zaibo Xu <xuzaibo@huawei.com>
8592 S:      Maintained
8593 F:      drivers/crypto/hisilicon/trng/trng.c
8594
8595 HISILICON V3XX SPI NOR FLASH Controller Driver
8596 M:      John Garry <john.garry@huawei.com>
8597 S:      Maintained
8598 W:      http://www.hisilicon.com
8599 F:      drivers/spi/spi-hisi-sfc-v3xx.c
8600
8601 HMM - Heterogeneous Memory Management
8602 M:      Jérôme Glisse <jglisse@redhat.com>
8603 L:      linux-mm@kvack.org
8604 S:      Maintained
8605 F:      Documentation/vm/hmm.rst
8606 F:      include/linux/hmm*
8607 F:      lib/test_hmm*
8608 F:      mm/hmm*
8609 F:      tools/testing/selftests/vm/*hmm*
8610
8611 HOST AP DRIVER
8612 M:      Jouni Malinen <j@w1.fi>
8613 L:      linux-wireless@vger.kernel.org
8614 S:      Obsolete
8615 W:      http://w1.fi/hostap-driver.html
8616 F:      drivers/net/wireless/intersil/hostap/
8617
8618 HP COMPAQ TC1100 TABLET WMI EXTRAS DRIVER
8619 L:      platform-driver-x86@vger.kernel.org
8620 S:      Orphan
8621 F:      drivers/platform/x86/tc1100-wmi.c
8622
8623 HPET:   High Precision Event Timers driver
8624 M:      Clemens Ladisch <clemens@ladisch.de>
8625 S:      Maintained
8626 F:      Documentation/timers/hpet.rst
8627 F:      drivers/char/hpet.c
8628 F:      include/linux/hpet.h
8629 F:      include/uapi/linux/hpet.h
8630
8631 HPET:   x86
8632 S:      Orphan
8633 F:      arch/x86/include/asm/hpet.h
8634 F:      arch/x86/kernel/hpet.c
8635
8636 HPFS FILESYSTEM
8637 M:      Mikulas Patocka <mikulas@artax.karlin.mff.cuni.cz>
8638 S:      Maintained
8639 W:      http://artax.karlin.mff.cuni.cz/~mikulas/vyplody/hpfs/index-e.cgi
8640 F:      fs/hpfs/
8641
8642 HSI SUBSYSTEM
8643 M:      Sebastian Reichel <sre@kernel.org>
8644 S:      Maintained
8645 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-hsi.git
8646 F:      Documentation/ABI/testing/sysfs-bus-hsi
8647 F:      Documentation/driver-api/hsi.rst
8648 F:      drivers/hsi/
8649 F:      include/linux/hsi/
8650 F:      include/uapi/linux/hsi/
8651
8652 HSO 3G MODEM DRIVER
8653 L:      linux-usb@vger.kernel.org
8654 S:      Orphan
8655 F:      drivers/net/usb/hso.c
8656
8657 HSR NETWORK PROTOCOL
8658 L:      netdev@vger.kernel.org
8659 S:      Orphan
8660 F:      net/hsr/
8661
8662 HT16K33 LED CONTROLLER DRIVER
8663 M:      Robin van der Gracht <robin@protonic.nl>
8664 S:      Maintained
8665 F:      Documentation/devicetree/bindings/auxdisplay/holtek,ht16k33.yaml
8666 F:      drivers/auxdisplay/ht16k33.c
8667
8668 HTCPEN TOUCHSCREEN DRIVER
8669 M:      Pau Oliva Fora <pof@eslack.org>
8670 L:      linux-input@vger.kernel.org
8671 S:      Maintained
8672 F:      drivers/input/touchscreen/htcpen.c
8673
8674 HTS221 TEMPERATURE-HUMIDITY IIO DRIVER
8675 M:      Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
8676 L:      linux-iio@vger.kernel.org
8677 S:      Maintained
8678 W:      http://www.st.com/
8679 F:      Documentation/devicetree/bindings/iio/humidity/st,hts221.yaml
8680 F:      drivers/iio/humidity/hts221*
8681
8682 HUAWEI ETHERNET DRIVER
8683 L:      netdev@vger.kernel.org
8684 S:      Orphan
8685 F:      Documentation/networking/device_drivers/ethernet/huawei/hinic.rst
8686 F:      drivers/net/ethernet/huawei/hinic/
8687
8688 HUGETLB FILESYSTEM
8689 M:      Mike Kravetz <mike.kravetz@oracle.com>
8690 L:      linux-mm@kvack.org
8691 S:      Maintained
8692 F:      Documentation/ABI/testing/sysfs-kernel-mm-hugepages
8693 F:      Documentation/admin-guide/mm/hugetlbpage.rst
8694 F:      Documentation/vm/hugetlbfs_reserv.rst
8695 F:      fs/hugetlbfs/
8696 F:      include/linux/hugetlb.h
8697 F:      mm/hugetlb.c
8698
8699 HVA ST MEDIA DRIVER
8700 M:      Jean-Christophe Trotin <jean-christophe.trotin@foss.st.com>
8701 L:      linux-media@vger.kernel.org
8702 S:      Supported
8703 W:      https://linuxtv.org
8704 T:      git git://linuxtv.org/media_tree.git
8705 F:      drivers/media/platform/sti/hva
8706
8707 HWPOISON MEMORY FAILURE HANDLING
8708 M:      Naoya Horiguchi <naoya.horiguchi@nec.com>
8709 L:      linux-mm@kvack.org
8710 S:      Maintained
8711 F:      mm/hwpoison-inject.c
8712 F:      mm/memory-failure.c
8713
8714 HYCON HY46XX TOUCHSCREEN SUPPORT
8715 M:      Giulio Benetti <giulio.benetti@benettiengineering.com>
8716 L:      linux-input@vger.kernel.org
8717 S:      Maintained
8718 F:      Documentation/devicetree/bindings/input/touchscreen/hycon,hy46xx.yaml
8719 F:      drivers/input/touchscreen/hycon-hy46xx.c
8720
8721 HYGON PROCESSOR SUPPORT
8722 M:      Pu Wen <puwen@hygon.cn>
8723 L:      linux-kernel@vger.kernel.org
8724 S:      Maintained
8725 F:      arch/x86/kernel/cpu/hygon.c
8726
8727 HYNIX HI556 SENSOR DRIVER
8728 M:      Shawn Tu <shawnx.tu@intel.com>
8729 L:      linux-media@vger.kernel.org
8730 S:      Maintained
8731 T:      git git://linuxtv.org/media_tree.git
8732 F:      drivers/media/i2c/hi556.c
8733
8734 Hyper-V/Azure CORE AND DRIVERS
8735 M:      "K. Y. Srinivasan" <kys@microsoft.com>
8736 M:      Haiyang Zhang <haiyangz@microsoft.com>
8737 M:      Stephen Hemminger <sthemmin@microsoft.com>
8738 M:      Wei Liu <wei.liu@kernel.org>
8739 M:      Dexuan Cui <decui@microsoft.com>
8740 L:      linux-hyperv@vger.kernel.org
8741 S:      Supported
8742 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hyperv/linux.git
8743 F:      Documentation/ABI/stable/sysfs-bus-vmbus
8744 F:      Documentation/ABI/testing/debugfs-hyperv
8745 F:      Documentation/networking/device_drivers/ethernet/microsoft/netvsc.rst
8746 F:      arch/arm64/hyperv
8747 F:      arch/arm64/include/asm/hyperv-tlfs.h
8748 F:      arch/arm64/include/asm/mshyperv.h
8749 F:      arch/x86/hyperv
8750 F:      arch/x86/include/asm/hyperv-tlfs.h
8751 F:      arch/x86/include/asm/mshyperv.h
8752 F:      arch/x86/include/asm/trace/hyperv.h
8753 F:      arch/x86/kernel/cpu/mshyperv.c
8754 F:      drivers/clocksource/hyperv_timer.c
8755 F:      drivers/hid/hid-hyperv.c
8756 F:      drivers/hv/
8757 F:      drivers/input/serio/hyperv-keyboard.c
8758 F:      drivers/iommu/hyperv-iommu.c
8759 F:      drivers/net/ethernet/microsoft/
8760 F:      drivers/net/hyperv/
8761 F:      drivers/pci/controller/pci-hyperv-intf.c
8762 F:      drivers/pci/controller/pci-hyperv.c
8763 F:      drivers/scsi/storvsc_drv.c
8764 F:      drivers/uio/uio_hv_generic.c
8765 F:      drivers/video/fbdev/hyperv_fb.c
8766 F:      include/asm-generic/hyperv-tlfs.h
8767 F:      include/asm-generic/mshyperv.h
8768 F:      include/clocksource/hyperv_timer.h
8769 F:      include/linux/hyperv.h
8770 F:      include/uapi/linux/hyperv.h
8771 F:      net/vmw_vsock/hyperv_transport.c
8772 F:      tools/hv/
8773
8774 HYPERBUS SUPPORT
8775 M:      Vignesh Raghavendra <vigneshr@ti.com>
8776 L:      linux-mtd@lists.infradead.org
8777 S:      Supported
8778 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
8779 C:      irc://irc.oftc.net/mtd
8780 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git cfi/next
8781 F:      Documentation/devicetree/bindings/mtd/cypress,hyperflash.txt
8782 F:      Documentation/devicetree/bindings/mtd/ti,am654-hbmc.txt
8783 F:      drivers/mtd/hyperbus/
8784 F:      include/linux/mtd/hyperbus.h
8785
8786 HYPERVISOR VIRTUAL CONSOLE DRIVER
8787 L:      linuxppc-dev@lists.ozlabs.org
8788 S:      Odd Fixes
8789 F:      drivers/tty/hvc/
8790
8791 I2C ACPI SUPPORT
8792 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
8793 L:      linux-i2c@vger.kernel.org
8794 L:      linux-acpi@vger.kernel.org
8795 S:      Maintained
8796 F:      drivers/i2c/i2c-core-acpi.c
8797
8798 I2C CONTROLLER DRIVER FOR NVIDIA GPU
8799 M:      Ajay Gupta <ajayg@nvidia.com>
8800 L:      linux-i2c@vger.kernel.org
8801 S:      Maintained
8802 F:      Documentation/i2c/busses/i2c-nvidia-gpu.rst
8803 F:      drivers/i2c/busses/i2c-nvidia-gpu.c
8804
8805 I2C MUXES
8806 M:      Peter Rosin <peda@axentia.se>
8807 L:      linux-i2c@vger.kernel.org
8808 S:      Maintained
8809 F:      Documentation/devicetree/bindings/i2c/i2c-arb*
8810 F:      Documentation/devicetree/bindings/i2c/i2c-gate*
8811 F:      Documentation/devicetree/bindings/i2c/i2c-mux*
8812 F:      Documentation/i2c/i2c-topology.rst
8813 F:      Documentation/i2c/muxes/
8814 F:      drivers/i2c/i2c-mux.c
8815 F:      drivers/i2c/muxes/
8816 F:      include/linux/i2c-mux.h
8817
8818 I2C MV64XXX MARVELL AND ALLWINNER DRIVER
8819 M:      Gregory CLEMENT <gregory.clement@bootlin.com>
8820 L:      linux-i2c@vger.kernel.org
8821 S:      Maintained
8822 F:      Documentation/devicetree/bindings/i2c/marvell,mv64xxx-i2c.yaml
8823 F:      drivers/i2c/busses/i2c-mv64xxx.c
8824
8825 I2C OVER PARALLEL PORT
8826 M:      Jean Delvare <jdelvare@suse.com>
8827 L:      linux-i2c@vger.kernel.org
8828 S:      Maintained
8829 F:      Documentation/i2c/busses/i2c-parport.rst
8830 F:      drivers/i2c/busses/i2c-parport.c
8831
8832 I2C SUBSYSTEM
8833 M:      Wolfram Sang <wsa@kernel.org>
8834 L:      linux-i2c@vger.kernel.org
8835 S:      Maintained
8836 W:      https://i2c.wiki.kernel.org/
8837 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
8838 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
8839 F:      Documentation/devicetree/bindings/i2c/i2c.txt
8840 F:      Documentation/i2c/
8841 F:      drivers/i2c/*
8842 F:      include/linux/i2c-dev.h
8843 F:      include/linux/i2c-smbus.h
8844 F:      include/linux/i2c.h
8845 F:      include/uapi/linux/i2c-*.h
8846 F:      include/uapi/linux/i2c.h
8847
8848 I2C SUBSYSTEM HOST DRIVERS
8849 L:      linux-i2c@vger.kernel.org
8850 S:      Odd Fixes
8851 W:      https://i2c.wiki.kernel.org/
8852 Q:      https://patchwork.ozlabs.org/project/linux-i2c/list/
8853 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux.git
8854 F:      Documentation/devicetree/bindings/i2c/
8855 F:      drivers/i2c/algos/
8856 F:      drivers/i2c/busses/
8857
8858 I2C-TAOS-EVM DRIVER
8859 M:      Jean Delvare <jdelvare@suse.com>
8860 L:      linux-i2c@vger.kernel.org
8861 S:      Maintained
8862 F:      Documentation/i2c/busses/i2c-taos-evm.rst
8863 F:      drivers/i2c/busses/i2c-taos-evm.c
8864
8865 I2C-TINY-USB DRIVER
8866 M:      Till Harbaum <till@harbaum.org>
8867 L:      linux-i2c@vger.kernel.org
8868 S:      Maintained
8869 W:      http://www.harbaum.org/till/i2c_tiny_usb
8870 F:      drivers/i2c/busses/i2c-tiny-usb.c
8871
8872 I2C/SMBUS CONTROLLER DRIVERS FOR PC
8873 M:      Jean Delvare <jdelvare@suse.com>
8874 L:      linux-i2c@vger.kernel.org
8875 S:      Maintained
8876 F:      Documentation/i2c/busses/i2c-ali1535.rst
8877 F:      Documentation/i2c/busses/i2c-ali1563.rst
8878 F:      Documentation/i2c/busses/i2c-ali15x3.rst
8879 F:      Documentation/i2c/busses/i2c-amd756.rst
8880 F:      Documentation/i2c/busses/i2c-amd8111.rst
8881 F:      Documentation/i2c/busses/i2c-i801.rst
8882 F:      Documentation/i2c/busses/i2c-nforce2.rst
8883 F:      Documentation/i2c/busses/i2c-piix4.rst
8884 F:      Documentation/i2c/busses/i2c-sis5595.rst
8885 F:      Documentation/i2c/busses/i2c-sis630.rst
8886 F:      Documentation/i2c/busses/i2c-sis96x.rst
8887 F:      Documentation/i2c/busses/i2c-via.rst
8888 F:      Documentation/i2c/busses/i2c-viapro.rst
8889 F:      drivers/i2c/busses/i2c-ali1535.c
8890 F:      drivers/i2c/busses/i2c-ali1563.c
8891 F:      drivers/i2c/busses/i2c-ali15x3.c
8892 F:      drivers/i2c/busses/i2c-amd756-s4882.c
8893 F:      drivers/i2c/busses/i2c-amd756.c
8894 F:      drivers/i2c/busses/i2c-amd8111.c
8895 F:      drivers/i2c/busses/i2c-i801.c
8896 F:      drivers/i2c/busses/i2c-isch.c
8897 F:      drivers/i2c/busses/i2c-nforce2-s4985.c
8898 F:      drivers/i2c/busses/i2c-nforce2.c
8899 F:      drivers/i2c/busses/i2c-piix4.c
8900 F:      drivers/i2c/busses/i2c-sis5595.c
8901 F:      drivers/i2c/busses/i2c-sis630.c
8902 F:      drivers/i2c/busses/i2c-sis96x.c
8903 F:      drivers/i2c/busses/i2c-via.c
8904 F:      drivers/i2c/busses/i2c-viapro.c
8905
8906 I2C/SMBUS INTEL CHT WHISKEY COVE PMIC DRIVER
8907 M:      Hans de Goede <hdegoede@redhat.com>
8908 L:      linux-i2c@vger.kernel.org
8909 S:      Maintained
8910 F:      drivers/i2c/busses/i2c-cht-wc.c
8911
8912 I2C/SMBUS ISMT DRIVER
8913 M:      Seth Heasley <seth.heasley@intel.com>
8914 M:      Neil Horman <nhorman@tuxdriver.com>
8915 L:      linux-i2c@vger.kernel.org
8916 F:      Documentation/i2c/busses/i2c-ismt.rst
8917 F:      drivers/i2c/busses/i2c-ismt.c
8918
8919 I2C/SMBUS STUB DRIVER
8920 M:      Jean Delvare <jdelvare@suse.com>
8921 L:      linux-i2c@vger.kernel.org
8922 S:      Maintained
8923 F:      drivers/i2c/i2c-stub.c
8924
8925 I3C DRIVER FOR CADENCE I3C MASTER IP
8926 M:      Przemysław Gaj <pgaj@cadence.com>
8927 S:      Maintained
8928 F:      Documentation/devicetree/bindings/i3c/cdns,i3c-master.txt
8929 F:      drivers/i3c/master/i3c-master-cdns.c
8930
8931 I3C DRIVER FOR SYNOPSYS DESIGNWARE
8932 M:      Vitor Soares <vitor.soares@synopsys.com>
8933 S:      Maintained
8934 F:      Documentation/devicetree/bindings/i3c/snps,dw-i3c-master.txt
8935 F:      drivers/i3c/master/dw*
8936
8937 I3C SUBSYSTEM
8938 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
8939 L:      linux-i3c@lists.infradead.org (moderated for non-subscribers)
8940 S:      Maintained
8941 C:      irc://chat.freenode.net/linux-i3c
8942 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/i3c/linux.git
8943 F:      Documentation/ABI/testing/sysfs-bus-i3c
8944 F:      Documentation/devicetree/bindings/i3c/
8945 F:      Documentation/driver-api/i3c
8946 F:      drivers/i3c/
8947 F:      include/linux/i3c/
8948
8949 IA64 (Itanium) PLATFORM
8950 L:      linux-ia64@vger.kernel.org
8951 S:      Orphan
8952 F:      Documentation/ia64/
8953 F:      arch/ia64/
8954
8955 IBM Power 842 compression accelerator
8956 M:      Haren Myneni <haren@us.ibm.com>
8957 S:      Supported
8958 F:      crypto/842.c
8959 F:      drivers/crypto/nx/Kconfig
8960 F:      drivers/crypto/nx/Makefile
8961 F:      drivers/crypto/nx/nx-842*
8962 F:      include/linux/sw842.h
8963 F:      lib/842/
8964
8965 IBM Power in-Nest Crypto Acceleration
8966 M:      Breno Leitão <leitao@debian.org>
8967 M:      Nayna Jain <nayna@linux.ibm.com>
8968 M:      Paulo Flabiano Smorigo <pfsmorigo@gmail.com>
8969 L:      linux-crypto@vger.kernel.org
8970 S:      Supported
8971 F:      drivers/crypto/nx/Kconfig
8972 F:      drivers/crypto/nx/Makefile
8973 F:      drivers/crypto/nx/nx-aes*
8974 F:      drivers/crypto/nx/nx-sha*
8975 F:      drivers/crypto/nx/nx.*
8976 F:      drivers/crypto/nx/nx_csbcpb.h
8977 F:      drivers/crypto/nx/nx_debugfs.c
8978
8979 IBM Power IO DLPAR Driver for RPA-compliant PPC64 platform
8980 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
8981 L:      linux-pci@vger.kernel.org
8982 L:      linuxppc-dev@lists.ozlabs.org
8983 S:      Supported
8984 F:      drivers/pci/hotplug/rpadlpar*
8985
8986 IBM Power Linux RAID adapter
8987 M:      Brian King <brking@us.ibm.com>
8988 S:      Supported
8989 F:      drivers/scsi/ipr.*
8990
8991 IBM Power PCI Hotplug Driver for RPA-compliant PPC64 platform
8992 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
8993 L:      linux-pci@vger.kernel.org
8994 L:      linuxppc-dev@lists.ozlabs.org
8995 S:      Supported
8996 F:      drivers/pci/hotplug/rpaphp*
8997
8998 IBM Power SRIOV Virtual NIC Device Driver
8999 M:      Dany Madden <drt@linux.ibm.com>
9000 M:      Sukadev Bhattiprolu <sukadev@linux.ibm.com>
9001 R:      Thomas Falcon <tlfalcon@linux.ibm.com>
9002 L:      netdev@vger.kernel.org
9003 S:      Supported
9004 F:      drivers/net/ethernet/ibm/ibmvnic.*
9005
9006 IBM Power Virtual Accelerator Switchboard
9007 M:      Sukadev Bhattiprolu <sukadev@linux.ibm.com>
9008 L:      linuxppc-dev@lists.ozlabs.org
9009 S:      Supported
9010 F:      arch/powerpc/include/asm/vas.h
9011 F:      arch/powerpc/platforms/powernv/copy-paste.h
9012 F:      arch/powerpc/platforms/powernv/vas*
9013
9014 IBM Power Virtual Ethernet Device Driver
9015 M:      Cristobal Forno <cforno12@linux.ibm.com>
9016 L:      netdev@vger.kernel.org
9017 S:      Supported
9018 F:      drivers/net/ethernet/ibm/ibmveth.*
9019
9020 IBM Power Virtual FC Device Drivers
9021 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
9022 L:      linux-scsi@vger.kernel.org
9023 S:      Supported
9024 F:      drivers/scsi/ibmvscsi/ibmvfc*
9025
9026 IBM Power Virtual Management Channel Driver
9027 M:      Brad Warrum <bwarrum@linux.ibm.com>
9028 M:      Ritu Agarwal <rituagar@linux.ibm.com>
9029 S:      Supported
9030 F:      drivers/misc/ibmvmc.*
9031
9032 IBM Power Virtual SCSI Device Drivers
9033 M:      Tyrel Datwyler <tyreld@linux.ibm.com>
9034 L:      linux-scsi@vger.kernel.org
9035 S:      Supported
9036 F:      drivers/scsi/ibmvscsi/ibmvscsi*
9037 F:      include/scsi/viosrp.h
9038
9039 IBM Power Virtual SCSI Device Target Driver
9040 M:      Michael Cyr <mikecyr@linux.ibm.com>
9041 L:      linux-scsi@vger.kernel.org
9042 L:      target-devel@vger.kernel.org
9043 S:      Supported
9044 F:      drivers/scsi/ibmvscsi_tgt/
9045
9046 IBM Power VMX Cryptographic instructions
9047 M:      Breno Leitão <leitao@debian.org>
9048 M:      Nayna Jain <nayna@linux.ibm.com>
9049 M:      Paulo Flabiano Smorigo <pfsmorigo@gmail.com>
9050 L:      linux-crypto@vger.kernel.org
9051 S:      Supported
9052 F:      drivers/crypto/vmx/Kconfig
9053 F:      drivers/crypto/vmx/Makefile
9054 F:      drivers/crypto/vmx/aes*
9055 F:      drivers/crypto/vmx/ghash*
9056 F:      drivers/crypto/vmx/ppc-xlate.pl
9057 F:      drivers/crypto/vmx/vmx.c
9058
9059 IBM ServeRAID RAID DRIVER
9060 S:      Orphan
9061 F:      drivers/scsi/ips.*
9062
9063 ICH LPC AND GPIO DRIVER
9064 M:      Peter Tyser <ptyser@xes-inc.com>
9065 S:      Maintained
9066 F:      drivers/gpio/gpio-ich.c
9067 F:      drivers/mfd/lpc_ich.c
9068
9069 ICY I2C DRIVER
9070 M:      Max Staudt <max@enpas.org>
9071 L:      linux-i2c@vger.kernel.org
9072 S:      Maintained
9073 F:      drivers/i2c/busses/i2c-icy.c
9074
9075 IDEAPAD LAPTOP EXTRAS DRIVER
9076 M:      Ike Panhc <ike.pan@canonical.com>
9077 L:      platform-driver-x86@vger.kernel.org
9078 S:      Maintained
9079 W:      http://launchpad.net/ideapad-laptop
9080 F:      drivers/platform/x86/ideapad-laptop.c
9081
9082 IDEAPAD LAPTOP SLIDEBAR DRIVER
9083 M:      Andrey Moiseev <o2g.org.ru@gmail.com>
9084 L:      linux-input@vger.kernel.org
9085 S:      Maintained
9086 W:      https://github.com/o2genum/ideapad-slidebar
9087 F:      drivers/input/misc/ideapad_slidebar.c
9088
9089 IDT VersaClock 5 CLOCK DRIVER
9090 M:      Luca Ceresoli <luca@lucaceresoli.net>
9091 S:      Maintained
9092 F:      Documentation/devicetree/bindings/clock/idt,versaclock5.yaml
9093 F:      drivers/clk/clk-versaclock5.c
9094
9095 IEEE 802.15.4 SUBSYSTEM
9096 M:      Alexander Aring <alex.aring@gmail.com>
9097 M:      Stefan Schmidt <stefan@datenfreihafen.org>
9098 L:      linux-wpan@vger.kernel.org
9099 S:      Maintained
9100 W:      https://linux-wpan.org/
9101 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan.git
9102 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sschmidt/wpan-next.git
9103 F:      Documentation/networking/ieee802154.rst
9104 F:      drivers/net/ieee802154/
9105 F:      include/linux/ieee802154.h
9106 F:      include/linux/nl802154.h
9107 F:      include/net/af_ieee802154.h
9108 F:      include/net/cfg802154.h
9109 F:      include/net/ieee802154_netdev.h
9110 F:      include/net/mac802154.h
9111 F:      include/net/nl802154.h
9112 F:      net/ieee802154/
9113 F:      net/mac802154/
9114
9115 IFE PROTOCOL
9116 M:      Yotam Gigi <yotam.gi@gmail.com>
9117 M:      Jamal Hadi Salim <jhs@mojatatu.com>
9118 F:      include/net/ife.h
9119 F:      include/uapi/linux/ife.h
9120 F:      net/ife
9121
9122 IGORPLUG-USB IR RECEIVER
9123 M:      Sean Young <sean@mess.org>
9124 L:      linux-media@vger.kernel.org
9125 S:      Maintained
9126 F:      drivers/media/rc/igorplugusb.c
9127
9128 IGUANAWORKS USB IR TRANSCEIVER
9129 M:      Sean Young <sean@mess.org>
9130 L:      linux-media@vger.kernel.org
9131 S:      Maintained
9132 F:      drivers/media/rc/iguanair.c
9133
9134 IIO DIGITAL POTENTIOMETER DAC
9135 M:      Peter Rosin <peda@axentia.se>
9136 L:      linux-iio@vger.kernel.org
9137 S:      Maintained
9138 F:      Documentation/ABI/testing/sysfs-bus-iio-dac-dpot-dac
9139 F:      Documentation/devicetree/bindings/iio/dac/dpot-dac.yaml
9140 F:      drivers/iio/dac/dpot-dac.c
9141
9142 IIO ENVELOPE DETECTOR
9143 M:      Peter Rosin <peda@axentia.se>
9144 L:      linux-iio@vger.kernel.org
9145 S:      Maintained
9146 F:      Documentation/ABI/testing/sysfs-bus-iio-adc-envelope-detector
9147 F:      Documentation/devicetree/bindings/iio/adc/envelope-detector.yaml
9148 F:      drivers/iio/adc/envelope-detector.c
9149
9150 IIO MULTIPLEXER
9151 M:      Peter Rosin <peda@axentia.se>
9152 L:      linux-iio@vger.kernel.org
9153 S:      Maintained
9154 F:      Documentation/devicetree/bindings/iio/multiplexer/io-channel-mux.yaml
9155 F:      drivers/iio/multiplexer/iio-mux.c
9156
9157 IIO SCMI BASED DRIVER
9158 M:      Jyoti Bhayana <jbhayana@google.com>
9159 L:      linux-iio@vger.kernel.org
9160 S:      Maintained
9161 F:      drivers/iio/common/scmi_sensors/scmi_iio.c
9162
9163 IIO SUBSYSTEM AND DRIVERS
9164 M:      Jonathan Cameron <jic23@kernel.org>
9165 R:      Lars-Peter Clausen <lars@metafoo.de>
9166 L:      linux-iio@vger.kernel.org
9167 S:      Maintained
9168 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
9169 F:      Documentation/ABI/testing/configfs-iio*
9170 F:      Documentation/ABI/testing/sysfs-bus-iio*
9171 F:      Documentation/devicetree/bindings/iio/
9172 F:      drivers/iio/
9173 F:      drivers/staging/iio/
9174 F:      include/linux/iio/
9175 F:      tools/iio/
9176
9177 IIO UNIT CONVERTER
9178 M:      Peter Rosin <peda@axentia.se>
9179 L:      linux-iio@vger.kernel.org
9180 S:      Maintained
9181 F:      Documentation/devicetree/bindings/iio/afe/current-sense-amplifier.yaml
9182 F:      Documentation/devicetree/bindings/iio/afe/current-sense-shunt.yaml
9183 F:      Documentation/devicetree/bindings/iio/afe/voltage-divider.yaml
9184 F:      drivers/iio/afe/iio-rescale.c
9185
9186 IKANOS/ADI EAGLE ADSL USB DRIVER
9187 M:      Matthieu Castet <castet.matthieu@free.fr>
9188 M:      Stanislaw Gruszka <stf_xl@wp.pl>
9189 S:      Maintained
9190 F:      drivers/usb/atm/ueagle-atm.c
9191
9192 IMGTEC ASCII LCD DRIVER
9193 M:      Paul Burton <paulburton@kernel.org>
9194 S:      Maintained
9195 F:      Documentation/devicetree/bindings/auxdisplay/img,ascii-lcd.yaml
9196 F:      drivers/auxdisplay/img-ascii-lcd.c
9197
9198 IMGTEC IR DECODER DRIVER
9199 S:      Orphan
9200 F:      drivers/media/rc/img-ir/
9201
9202 IMON SOUNDGRAPH USB IR RECEIVER
9203 M:      Sean Young <sean@mess.org>
9204 L:      linux-media@vger.kernel.org
9205 S:      Maintained
9206 F:      drivers/media/rc/imon.c
9207 F:      drivers/media/rc/imon_raw.c
9208
9209 IMS TWINTURBO FRAMEBUFFER DRIVER
9210 L:      linux-fbdev@vger.kernel.org
9211 S:      Orphan
9212 F:      drivers/video/fbdev/imsttfb.c
9213
9214 INA209 HARDWARE MONITOR DRIVER
9215 M:      Guenter Roeck <linux@roeck-us.net>
9216 L:      linux-hwmon@vger.kernel.org
9217 S:      Maintained
9218 F:      Documentation/devicetree/bindings/hwmon/ti,ina2xx.yaml
9219 F:      Documentation/hwmon/ina209.rst
9220 F:      drivers/hwmon/ina209.c
9221
9222 INA2XX HARDWARE MONITOR DRIVER
9223 M:      Guenter Roeck <linux@roeck-us.net>
9224 L:      linux-hwmon@vger.kernel.org
9225 S:      Maintained
9226 F:      Documentation/hwmon/ina2xx.rst
9227 F:      drivers/hwmon/ina2xx.c
9228 F:      include/linux/platform_data/ina2xx.h
9229
9230 INDUSTRY PACK SUBSYSTEM (IPACK)
9231 M:      Samuel Iglesias Gonsalvez <siglesias@igalia.com>
9232 M:      Jens Taprogge <jens.taprogge@taprogge.org>
9233 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
9234 L:      industrypack-devel@lists.sourceforge.net
9235 S:      Maintained
9236 W:      http://industrypack.sourceforge.net
9237 F:      drivers/ipack/
9238
9239 INFINEON DPS310 Driver
9240 M:      Eddie James <eajames@linux.ibm.com>
9241 L:      linux-iio@vger.kernel.org
9242 S:      Maintained
9243 F:      drivers/iio/pressure/dps310.c
9244
9245 INFINIBAND SUBSYSTEM
9246 M:      Doug Ledford <dledford@redhat.com>
9247 M:      Jason Gunthorpe <jgg@nvidia.com>
9248 L:      linux-rdma@vger.kernel.org
9249 S:      Supported
9250 W:      https://github.com/linux-rdma/rdma-core
9251 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
9252 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rdma/rdma.git
9253 F:      Documentation/devicetree/bindings/infiniband/
9254 F:      Documentation/infiniband/
9255 F:      drivers/infiniband/
9256 F:      include/rdma/
9257 F:      include/trace/events/ib_mad.h
9258 F:      include/trace/events/ib_umad.h
9259 F:      include/uapi/linux/if_infiniband.h
9260 F:      include/uapi/rdma/
9261 F:      samples/bpf/ibumad_kern.c
9262 F:      samples/bpf/ibumad_user.c
9263
9264 INGENIC JZ4780 NAND DRIVER
9265 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
9266 L:      linux-mtd@lists.infradead.org
9267 L:      linux-mips@vger.kernel.org
9268 S:      Maintained
9269 F:      drivers/mtd/nand/raw/ingenic/
9270
9271 INGENIC JZ47xx SoCs
9272 M:      Paul Cercueil <paul@crapouillou.net>
9273 L:      linux-mips@vger.kernel.org
9274 S:      Maintained
9275 F:      arch/mips/boot/dts/ingenic/
9276 F:      arch/mips/generic/board-ingenic.c
9277 F:      arch/mips/include/asm/mach-ingenic/
9278 F:      arch/mips/ingenic/Kconfig
9279 F:      drivers/clk/ingenic/
9280 F:      drivers/dma/dma-jz4780.c
9281 F:      drivers/gpu/drm/ingenic/
9282 F:      drivers/i2c/busses/i2c-jz4780.c
9283 F:      drivers/iio/adc/ingenic-adc.c
9284 F:      drivers/irqchip/irq-ingenic.c
9285 F:      drivers/memory/jz4780-nemc.c
9286 F:      drivers/mmc/host/jz4740_mmc.c
9287 F:      drivers/mtd/nand/raw/ingenic/
9288 F:      drivers/pinctrl/pinctrl-ingenic.c
9289 F:      drivers/power/supply/ingenic-battery.c
9290 F:      drivers/pwm/pwm-jz4740.c
9291 F:      drivers/remoteproc/ingenic_rproc.c
9292 F:      drivers/rtc/rtc-jz4740.c
9293 F:      drivers/tty/serial/8250/8250_ingenic.c
9294 F:      drivers/usb/musb/jz4740.c
9295 F:      drivers/watchdog/jz4740_wdt.c
9296 F:      include/dt-bindings/iio/adc/ingenic,adc.h
9297 F:      include/linux/mfd/ingenic-tcu.h
9298 F:      sound/soc/codecs/jz47*
9299 F:      sound/soc/jz4740/
9300
9301 INOTIFY
9302 M:      Jan Kara <jack@suse.cz>
9303 R:      Amir Goldstein <amir73il@gmail.com>
9304 L:      linux-fsdevel@vger.kernel.org
9305 S:      Maintained
9306 F:      Documentation/filesystems/inotify.rst
9307 F:      fs/notify/inotify/
9308 F:      include/linux/inotify.h
9309 F:      include/uapi/linux/inotify.h
9310
9311 INPUT (KEYBOARD, MOUSE, JOYSTICK, TOUCHSCREEN) DRIVERS
9312 M:      Dmitry Torokhov <dmitry.torokhov@gmail.com>
9313 L:      linux-input@vger.kernel.org
9314 S:      Maintained
9315 Q:      http://patchwork.kernel.org/project/linux-input/list/
9316 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git
9317 F:      Documentation/devicetree/bindings/input/
9318 F:      Documentation/devicetree/bindings/serio/
9319 F:      Documentation/input/
9320 F:      drivers/input/
9321 F:      include/linux/input.h
9322 F:      include/linux/input/
9323 F:      include/uapi/linux/input-event-codes.h
9324 F:      include/uapi/linux/input.h
9325
9326 INPUT MULTITOUCH (MT) PROTOCOL
9327 M:      Henrik Rydberg <rydberg@bitmath.org>
9328 L:      linux-input@vger.kernel.org
9329 S:      Odd fixes
9330 F:      Documentation/input/multi-touch-protocol.rst
9331 F:      drivers/input/input-mt.c
9332 K:      \b(ABS|SYN)_MT_
9333
9334 INSIDE SECURE CRYPTO DRIVER
9335 M:      Antoine Tenart <atenart@kernel.org>
9336 L:      linux-crypto@vger.kernel.org
9337 S:      Maintained
9338 F:      drivers/crypto/inside-secure/
9339
9340 INTEGRITY MEASUREMENT ARCHITECTURE (IMA)
9341 M:      Mimi Zohar <zohar@linux.ibm.com>
9342 M:      Dmitry Kasatkin <dmitry.kasatkin@gmail.com>
9343 L:      linux-integrity@vger.kernel.org
9344 S:      Supported
9345 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/zohar/linux-integrity.git
9346 F:      security/integrity/ima/
9347
9348 INTEL 810/815 FRAMEBUFFER DRIVER
9349 M:      Antonino Daplas <adaplas@gmail.com>
9350 L:      linux-fbdev@vger.kernel.org
9351 S:      Maintained
9352 F:      drivers/video/fbdev/i810/
9353
9354 INTEL ASoC DRIVERS
9355 M:      Cezary Rojewski <cezary.rojewski@intel.com>
9356 M:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
9357 M:      Liam Girdwood <liam.r.girdwood@linux.intel.com>
9358 M:      Jie Yang <yang.jie@linux.intel.com>
9359 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
9360 S:      Supported
9361 F:      sound/soc/intel/
9362
9363 INTEL ATOMISP2 DUMMY / POWER-MANAGEMENT DRIVER
9364 M:      Hans de Goede <hdegoede@redhat.com>
9365 L:      platform-driver-x86@vger.kernel.org
9366 S:      Maintained
9367 F:      drivers/platform/x86/intel/atomisp2/pm.c
9368
9369 INTEL ATOMISP2 LED DRIVER
9370 M:      Hans de Goede <hdegoede@redhat.com>
9371 L:      platform-driver-x86@vger.kernel.org
9372 S:      Maintained
9373 F:      drivers/platform/x86/intel/atomisp2/led.c
9374
9375 INTEL BIOS SAR INT1092 DRIVER
9376 M:      Shravan Sudhakar <s.shravan@intel.com>
9377 M:      Intel Corporation <linuxwwan@intel.com>
9378 L:      platform-driver-x86@vger.kernel.org
9379 S:      Maintained
9380 F:      drivers/platform/x86/intel/int1092/
9381
9382 INTEL BROXTON PMC DRIVER
9383 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
9384 M:      Zha Qipeng <qipeng.zha@intel.com>
9385 S:      Maintained
9386 F:      drivers/mfd/intel_pmc_bxt.c
9387 F:      include/linux/mfd/intel_pmc_bxt.h
9388
9389 INTEL C600 SERIES SAS CONTROLLER DRIVER
9390 M:      Artur Paszkiewicz <artur.paszkiewicz@intel.com>
9391 L:      linux-scsi@vger.kernel.org
9392 S:      Supported
9393 T:      git git://git.code.sf.net/p/intel-sas/isci
9394 F:      drivers/scsi/isci/
9395
9396 INTEL CPU family model numbers
9397 M:      Tony Luck <tony.luck@intel.com>
9398 M:      x86@kernel.org
9399 L:      linux-kernel@vger.kernel.org
9400 S:      Supported
9401 F:      arch/x86/include/asm/intel-family.h
9402
9403 INTEL DRM DRIVERS (excluding Poulsbo, Moorestown and derivative chipsets)
9404 M:      Jani Nikula <jani.nikula@linux.intel.com>
9405 M:      Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
9406 M:      Rodrigo Vivi <rodrigo.vivi@intel.com>
9407 L:      intel-gfx@lists.freedesktop.org
9408 S:      Supported
9409 W:      https://01.org/linuxgraphics/
9410 Q:      http://patchwork.freedesktop.org/project/intel-gfx/
9411 B:      https://gitlab.freedesktop.org/drm/intel/-/wikis/How-to-file-i915-bugs
9412 C:      irc://irc.oftc.net/intel-gfx
9413 T:      git git://anongit.freedesktop.org/drm-intel
9414 F:      Documentation/gpu/i915.rst
9415 F:      drivers/gpu/drm/i915/
9416 F:      include/drm/i915*
9417 F:      include/uapi/drm/i915_drm.h
9418
9419 INTEL ETHERNET DRIVERS
9420 M:      Jesse Brandeburg <jesse.brandeburg@intel.com>
9421 M:      Tony Nguyen <anthony.l.nguyen@intel.com>
9422 L:      intel-wired-lan@lists.osuosl.org (moderated for non-subscribers)
9423 S:      Supported
9424 W:      http://www.intel.com/support/feedback.htm
9425 W:      http://e1000.sourceforge.net/
9426 Q:      http://patchwork.ozlabs.org/project/intel-wired-lan/list/
9427 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tnguy/net-queue.git
9428 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tnguy/next-queue.git
9429 F:      Documentation/networking/device_drivers/ethernet/intel/
9430 F:      drivers/net/ethernet/intel/
9431 F:      drivers/net/ethernet/intel/*/
9432 F:      include/linux/avf/virtchnl.h
9433 F:      include/linux/net/intel/iidc.h
9434
9435 INTEL ETHERNET PROTOCOL DRIVER FOR RDMA
9436 M:      Mustafa Ismail <mustafa.ismail@intel.com>
9437 M:      Shiraz Saleem <shiraz.saleem@intel.com>
9438 L:      linux-rdma@vger.kernel.org
9439 S:      Supported
9440 F:      drivers/infiniband/hw/irdma/
9441 F:      include/uapi/rdma/irdma-abi.h
9442
9443 INTEL FRAMEBUFFER DRIVER (excluding 810 and 815)
9444 M:      Maik Broemme <mbroemme@libmpq.org>
9445 L:      linux-fbdev@vger.kernel.org
9446 S:      Maintained
9447 F:      Documentation/fb/intelfb.rst
9448 F:      drivers/video/fbdev/intelfb/
9449
9450 INTEL GPIO DRIVERS
9451 M:      Andy Shevchenko <andy@kernel.org>
9452 L:      linux-gpio@vger.kernel.org
9453 S:      Maintained
9454 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
9455 F:      drivers/gpio/gpio-ich.c
9456 F:      drivers/gpio/gpio-merrifield.c
9457 F:      drivers/gpio/gpio-ml-ioh.c
9458 F:      drivers/gpio/gpio-pch.c
9459 F:      drivers/gpio/gpio-sch.c
9460 F:      drivers/gpio/gpio-sodaville.c
9461
9462 INTEL GVT-g DRIVERS (Intel GPU Virtualization)
9463 M:      Zhenyu Wang <zhenyuw@linux.intel.com>
9464 M:      Zhi Wang <zhi.a.wang@intel.com>
9465 L:      intel-gvt-dev@lists.freedesktop.org
9466 L:      intel-gfx@lists.freedesktop.org
9467 S:      Supported
9468 W:      https://01.org/igvt-g
9469 T:      git https://github.com/intel/gvt-linux.git
9470 F:      drivers/gpu/drm/i915/gvt/
9471
9472 INTEL HID EVENT DRIVER
9473 M:      Alex Hung <alex.hung@canonical.com>
9474 L:      platform-driver-x86@vger.kernel.org
9475 S:      Maintained
9476 F:      drivers/platform/x86/intel/hid.c
9477
9478 INTEL I/OAT DMA DRIVER
9479 M:      Dave Jiang <dave.jiang@intel.com>
9480 R:      Dan Williams <dan.j.williams@intel.com>
9481 L:      dmaengine@vger.kernel.org
9482 S:      Supported
9483 Q:      https://patchwork.kernel.org/project/linux-dmaengine/list/
9484 F:      drivers/dma/ioat*
9485
9486 INTEL IADX DRIVER
9487 M:      Dave Jiang <dave.jiang@intel.com>
9488 L:      dmaengine@vger.kernel.org
9489 S:      Supported
9490 F:      drivers/dma/idxd/*
9491 F:      include/uapi/linux/idxd.h
9492
9493 INTEL IDLE DRIVER
9494 M:      Jacob Pan <jacob.jun.pan@linux.intel.com>
9495 M:      Len Brown <lenb@kernel.org>
9496 L:      linux-pm@vger.kernel.org
9497 S:      Supported
9498 B:      https://bugzilla.kernel.org
9499 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git
9500 F:      drivers/idle/intel_idle.c
9501
9502 INTEL INTEGRATED SENSOR HUB DRIVER
9503 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
9504 M:      Jiri Kosina <jikos@kernel.org>
9505 L:      linux-input@vger.kernel.org
9506 S:      Maintained
9507 F:      drivers/hid/intel-ish-hid/
9508
9509 INTEL IOMMU (VT-d)
9510 M:      David Woodhouse <dwmw2@infradead.org>
9511 M:      Lu Baolu <baolu.lu@linux.intel.com>
9512 L:      iommu@lists.linux-foundation.org
9513 L:      iommu@lists.linux.dev
9514 S:      Supported
9515 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
9516 F:      drivers/iommu/intel/
9517 F:      include/linux/intel-iommu.h
9518 F:      include/linux/intel-svm.h
9519
9520 INTEL IOP-ADMA DMA DRIVER
9521 R:      Dan Williams <dan.j.williams@intel.com>
9522 S:      Odd fixes
9523 F:      drivers/dma/iop-adma.c
9524
9525 INTEL IPU3 CSI-2 CIO2 DRIVER
9526 M:      Yong Zhi <yong.zhi@intel.com>
9527 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
9528 M:      Bingbu Cao <bingbu.cao@intel.com>
9529 M:      Dan Scally <djrscally@gmail.com>
9530 R:      Tianshu Qiu <tian.shu.qiu@intel.com>
9531 L:      linux-media@vger.kernel.org
9532 S:      Maintained
9533 T:      git git://linuxtv.org/media_tree.git
9534 F:      Documentation/userspace-api/media/v4l/pixfmt-srggb10-ipu3.rst
9535 F:      drivers/media/pci/intel/ipu3/
9536
9537 INTEL IPU3 CSI-2 IMGU DRIVER
9538 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
9539 R:      Bingbu Cao <bingbu.cao@intel.com>
9540 R:      Tianshu Qiu <tian.shu.qiu@intel.com>
9541 L:      linux-media@vger.kernel.org
9542 S:      Maintained
9543 F:      Documentation/admin-guide/media/ipu3.rst
9544 F:      Documentation/admin-guide/media/ipu3_rcb.svg
9545 F:      Documentation/userspace-api/media/v4l/pixfmt-meta-intel-ipu3.rst
9546 F:      drivers/staging/media/ipu3/
9547
9548 INTEL IXP4XX CRYPTO SUPPORT
9549 M:      Corentin Labbe <clabbe@baylibre.com>
9550 L:      linux-crypto@vger.kernel.org
9551 S:      Maintained
9552 F:      drivers/crypto/ixp4xx_crypto.c
9553
9554 INTEL IXP4XX QMGR, NPE, ETHERNET and HSS SUPPORT
9555 M:      Krzysztof Halasa <khalasa@piap.pl>
9556 S:      Maintained
9557 F:      drivers/net/ethernet/xscale/ixp4xx_eth.c
9558 F:      drivers/net/wan/ixp4xx_hss.c
9559 F:      drivers/soc/ixp4xx/ixp4xx-npe.c
9560 F:      drivers/soc/ixp4xx/ixp4xx-qmgr.c
9561 F:      include/linux/soc/ixp4xx/npe.h
9562 F:      include/linux/soc/ixp4xx/qmgr.h
9563
9564 INTEL IXP4XX RANDOM NUMBER GENERATOR SUPPORT
9565 M:      Deepak Saxena <dsaxena@plexity.net>
9566 S:      Maintained
9567 F:      Documentation/devicetree/bindings/display/intel,ixp46x-rng.yaml
9568 F:      drivers/char/hw_random/ixp4xx-rng.c
9569
9570 INTEL KEEM BAY DRM DRIVER
9571 M:      Anitha Chrisanthus <anitha.chrisanthus@intel.com>
9572 M:      Edmund Dea <edmund.j.dea@intel.com>
9573 S:      Maintained
9574 F:      Documentation/devicetree/bindings/display/intel,kmb_display.yaml
9575 F:      drivers/gpu/drm/kmb/
9576
9577 INTEL KEEM BAY OCS AES/SM4 CRYPTO DRIVER
9578 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
9579 S:      Maintained
9580 F:      Documentation/devicetree/bindings/crypto/intel,keembay-ocs-aes.yaml
9581 F:      drivers/crypto/keembay/Kconfig
9582 F:      drivers/crypto/keembay/Makefile
9583 F:      drivers/crypto/keembay/keembay-ocs-aes-core.c
9584 F:      drivers/crypto/keembay/ocs-aes.c
9585 F:      drivers/crypto/keembay/ocs-aes.h
9586
9587 INTEL KEEM BAY OCS HCU CRYPTO DRIVER
9588 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
9589 M:      Declan Murphy <declan.murphy@intel.com>
9590 S:      Maintained
9591 F:      Documentation/devicetree/bindings/crypto/intel,keembay-ocs-hcu.yaml
9592 F:      drivers/crypto/keembay/Kconfig
9593 F:      drivers/crypto/keembay/Makefile
9594 F:      drivers/crypto/keembay/keembay-ocs-hcu-core.c
9595 F:      drivers/crypto/keembay/ocs-hcu.c
9596 F:      drivers/crypto/keembay/ocs-hcu.h
9597
9598 INTEL MANAGEMENT ENGINE (mei)
9599 M:      Tomas Winkler <tomas.winkler@intel.com>
9600 L:      linux-kernel@vger.kernel.org
9601 S:      Supported
9602 F:      Documentation/driver-api/mei/*
9603 F:      drivers/misc/mei/
9604 F:      drivers/watchdog/mei_wdt.c
9605 F:      include/linux/mei_cl_bus.h
9606 F:      include/uapi/linux/mei.h
9607 F:      samples/mei/*
9608
9609 INTEL MAX 10 BMC MFD DRIVER
9610 M:      Xu Yilun <yilun.xu@intel.com>
9611 R:      Tom Rix <trix@redhat.com>
9612 S:      Maintained
9613 F:      Documentation/ABI/testing/sysfs-driver-intel-m10-bmc
9614 F:      Documentation/hwmon/intel-m10-bmc-hwmon.rst
9615 F:      drivers/hwmon/intel-m10-bmc-hwmon.c
9616 F:      drivers/mfd/intel-m10-bmc.c
9617 F:      include/linux/mfd/intel-m10-bmc.h
9618
9619 INTEL MENLOW THERMAL DRIVER
9620 M:      Sujith Thomas <sujith.thomas@intel.com>
9621 L:      linux-pm@vger.kernel.org
9622 S:      Supported
9623 W:      https://01.org/linux-acpi
9624 F:      drivers/thermal/intel/intel_menlow.c
9625
9626 INTEL P-Unit IPC DRIVER
9627 M:      Zha Qipeng <qipeng.zha@intel.com>
9628 L:      platform-driver-x86@vger.kernel.org
9629 S:      Maintained
9630 F:      arch/x86/include/asm/intel_punit_ipc.h
9631 F:      drivers/platform/x86/intel/punit_ipc.c
9632
9633 INTEL PMC CORE DRIVER
9634 M:      Rajneesh Bhardwaj <irenic.rajneesh@gmail.com>
9635 M:      David E Box <david.e.box@intel.com>
9636 L:      platform-driver-x86@vger.kernel.org
9637 S:      Maintained
9638 F:      Documentation/ABI/testing/sysfs-platform-intel-pmc
9639 F:      drivers/platform/x86/intel/pmc/
9640
9641 INTEL PMIC GPIO DRIVERS
9642 M:      Andy Shevchenko <andy@kernel.org>
9643 S:      Maintained
9644 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andy/linux-gpio-intel.git
9645 F:      drivers/gpio/gpio-*cove.c
9646
9647 INTEL PMIC MULTIFUNCTION DEVICE DRIVERS
9648 M:      Andy Shevchenko <andy@kernel.org>
9649 S:      Maintained
9650 F:      drivers/mfd/intel_soc_pmic*
9651 F:      include/linux/mfd/intel_soc_pmic*
9652
9653 INTEL PMT DRIVER
9654 M:      "David E. Box" <david.e.box@linux.intel.com>
9655 S:      Maintained
9656 F:      drivers/mfd/intel_pmt.c
9657 F:      drivers/platform/x86/intel/pmt/
9658
9659 INTEL PRO/WIRELESS 2100, 2200BG, 2915ABG NETWORK CONNECTION SUPPORT
9660 M:      Stanislav Yakovlev <stas.yakovlev@gmail.com>
9661 L:      linux-wireless@vger.kernel.org
9662 S:      Maintained
9663 F:      Documentation/networking/device_drivers/wifi/intel/ipw2100.rst
9664 F:      Documentation/networking/device_drivers/wifi/intel/ipw2200.rst
9665 F:      drivers/net/wireless/intel/ipw2x00/
9666
9667 INTEL PSTATE DRIVER
9668 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
9669 M:      Len Brown <lenb@kernel.org>
9670 L:      linux-pm@vger.kernel.org
9671 S:      Supported
9672 F:      drivers/cpufreq/intel_pstate.c
9673
9674 INTEL QUADRATURE ENCODER PERIPHERAL DRIVER
9675 M:      Jarkko Nikula <jarkko.nikula@linux.intel.com>
9676 L:      linux-iio@vger.kernel.org
9677 F:      drivers/counter/intel-qep.c
9678
9679 INTEL SCU DRIVERS
9680 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
9681 S:      Maintained
9682 F:      arch/x86/include/asm/intel_scu_ipc.h
9683 F:      drivers/platform/x86/intel_scu_*
9684
9685 INTEL SKYLAKE INT3472 ACPI DEVICE DRIVER
9686 M:      Daniel Scally <djrscally@gmail.com>
9687 S:      Maintained
9688 F:      drivers/platform/x86/intel/int3472/
9689
9690 INTEL SPEED SELECT TECHNOLOGY
9691 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
9692 L:      platform-driver-x86@vger.kernel.org
9693 S:      Maintained
9694 F:      drivers/platform/x86/intel/speed_select_if/
9695 F:      include/uapi/linux/isst_if.h
9696 F:      tools/power/x86/intel-speed-select/
9697
9698 INTEL STRATIX10 FIRMWARE DRIVERS
9699 M:      Dinh Nguyen <dinguyen@kernel.org>
9700 L:      linux-kernel@vger.kernel.org
9701 S:      Maintained
9702 F:      Documentation/ABI/testing/sysfs-devices-platform-stratix10-rsu
9703 F:      Documentation/devicetree/bindings/firmware/intel,stratix10-svc.txt
9704 F:      drivers/firmware/stratix10-rsu.c
9705 F:      drivers/firmware/stratix10-svc.c
9706 F:      include/linux/firmware/intel/stratix10-smc.h
9707 F:      include/linux/firmware/intel/stratix10-svc-client.h
9708
9709 INTEL TELEMETRY DRIVER
9710 M:      Rajneesh Bhardwaj <irenic.rajneesh@gmail.com>
9711 M:      "David E. Box" <david.e.box@linux.intel.com>
9712 L:      platform-driver-x86@vger.kernel.org
9713 S:      Maintained
9714 F:      arch/x86/include/asm/intel_telemetry.h
9715 F:      drivers/platform/x86/intel/telemetry/
9716
9717 INTEL UNCORE FREQUENCY CONTROL
9718 M:      Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>
9719 L:      platform-driver-x86@vger.kernel.org
9720 S:      Maintained
9721 F:      drivers/platform/x86/intel/uncore-frequency.c
9722
9723 INTEL VIRTUAL BUTTON DRIVER
9724 M:      AceLan Kao <acelan.kao@canonical.com>
9725 L:      platform-driver-x86@vger.kernel.org
9726 S:      Maintained
9727 F:      drivers/platform/x86/intel/vbtn.c
9728
9729 INTEL WIRELESS 3945ABG/BG, 4965AGN (iwlegacy)
9730 M:      Stanislaw Gruszka <stf_xl@wp.pl>
9731 L:      linux-wireless@vger.kernel.org
9732 S:      Supported
9733 F:      drivers/net/wireless/intel/iwlegacy/
9734
9735 INTEL WIRELESS WIFI LINK (iwlwifi)
9736 M:      Luca Coelho <luciano.coelho@intel.com>
9737 L:      linux-wireless@vger.kernel.org
9738 S:      Supported
9739 W:      https://wireless.wiki.kernel.org/en/users/drivers/iwlwifi
9740 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/iwlwifi/iwlwifi.git
9741 F:      drivers/net/wireless/intel/iwlwifi/
9742
9743 INTEL WMI SLIM BOOTLOADER (SBL) FIRMWARE UPDATE DRIVER
9744 M:      Jithu Joseph <jithu.joseph@intel.com>
9745 R:      Maurice Ma <maurice.ma@intel.com>
9746 S:      Maintained
9747 W:      https://slimbootloader.github.io/security/firmware-update.html
9748 F:      drivers/platform/x86/intel/wmi/sbl-fw-update.c
9749
9750 INTEL WMI THUNDERBOLT FORCE POWER DRIVER
9751 L:      Dell.Client.Kernel@dell.com
9752 S:      Maintained
9753 F:      drivers/platform/x86/intel/wmi/thunderbolt.c
9754
9755 INTEL WWAN IOSM DRIVER
9756 M:      M Chetan Kumar <m.chetan.kumar@intel.com>
9757 M:      Intel Corporation <linuxwwan@intel.com>
9758 L:      netdev@vger.kernel.org
9759 S:      Maintained
9760 F:      drivers/net/wwan/iosm/
9761
9762 INTEL(R) TRACE HUB
9763 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
9764 S:      Supported
9765 F:      Documentation/trace/intel_th.rst
9766 F:      drivers/hwtracing/intel_th/
9767 F:      include/linux/intel_th.h
9768
9769 INTEL(R) TRUSTED EXECUTION TECHNOLOGY (TXT)
9770 M:      Ning Sun <ning.sun@intel.com>
9771 L:      tboot-devel@lists.sourceforge.net
9772 S:      Supported
9773 W:      http://tboot.sourceforge.net
9774 T:      hg http://tboot.hg.sourceforge.net:8000/hgroot/tboot/tboot
9775 F:      Documentation/x86/intel_txt.rst
9776 F:      arch/x86/kernel/tboot.c
9777 F:      include/linux/tboot.h
9778
9779 INTEL SGX
9780 M:      Jarkko Sakkinen <jarkko@kernel.org>
9781 R:      Dave Hansen <dave.hansen@linux.intel.com>
9782 L:      linux-sgx@vger.kernel.org
9783 S:      Supported
9784 Q:      https://patchwork.kernel.org/project/intel-sgx/list/
9785 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/sgx
9786 F:      Documentation/x86/sgx.rst
9787 F:      arch/x86/entry/vdso/vsgx.S
9788 F:      arch/x86/include/asm/sgx.h
9789 F:      arch/x86/include/uapi/asm/sgx.h
9790 F:      arch/x86/kernel/cpu/sgx/*
9791 F:      tools/testing/selftests/sgx/*
9792 K:      \bSGX_
9793
9794 INTERCONNECT API
9795 M:      Georgi Djakov <djakov@kernel.org>
9796 L:      linux-pm@vger.kernel.org
9797 S:      Maintained
9798 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/djakov/icc.git
9799 F:      Documentation/devicetree/bindings/interconnect/
9800 F:      Documentation/driver-api/interconnect.rst
9801 F:      drivers/interconnect/
9802 F:      include/dt-bindings/interconnect/
9803 F:      include/linux/interconnect-provider.h
9804 F:      include/linux/interconnect.h
9805
9806 INTERRUPT COUNTER DRIVER
9807 M:      Oleksij Rempel <o.rempel@pengutronix.de>
9808 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
9809 L:      linux-iio@vger.kernel.org
9810 F:      Documentation/devicetree/bindings/counter/interrupt-counter.yaml
9811 F:      drivers/counter/interrupt-cnt.c
9812
9813 INVENSENSE ICM-426xx IMU DRIVER
9814 M:      Jean-Baptiste Maneyrol <jmaneyrol@invensense.com>
9815 L:      linux-iio@vger.kernel.org
9816 S:      Maintained
9817 W:      https://invensense.tdk.com/
9818 F:      Documentation/devicetree/bindings/iio/imu/invensense,icm42600.yaml
9819 F:      drivers/iio/imu/inv_icm42600/
9820
9821 INVENSENSE MPU-3050 GYROSCOPE DRIVER
9822 M:      Linus Walleij <linus.walleij@linaro.org>
9823 L:      linux-iio@vger.kernel.org
9824 S:      Maintained
9825 F:      Documentation/devicetree/bindings/iio/gyroscope/invensense,mpu3050.yaml
9826 F:      drivers/iio/gyro/mpu3050*
9827
9828 IOC3 ETHERNET DRIVER
9829 M:      Ralf Baechle <ralf@linux-mips.org>
9830 L:      linux-mips@vger.kernel.org
9831 S:      Maintained
9832 F:      drivers/net/ethernet/sgi/ioc3-eth.c
9833
9834 IOMAP FILESYSTEM LIBRARY
9835 M:      Christoph Hellwig <hch@infradead.org>
9836 M:      Darrick J. Wong <djwong@kernel.org>
9837 M:      linux-xfs@vger.kernel.org
9838 M:      linux-fsdevel@vger.kernel.org
9839 L:      linux-xfs@vger.kernel.org
9840 L:      linux-fsdevel@vger.kernel.org
9841 S:      Supported
9842 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
9843 F:      fs/iomap/
9844 F:      include/linux/iomap.h
9845
9846 IOMMU DRIVERS
9847 M:      Joerg Roedel <joro@8bytes.org>
9848 M:      Will Deacon <will@kernel.org>
9849 L:      iommu@lists.linux-foundation.org
9850 L:      iommu@lists.linux.dev
9851 S:      Maintained
9852 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git
9853 F:      Documentation/devicetree/bindings/iommu/
9854 F:      Documentation/userspace-api/iommu.rst
9855 F:      drivers/iommu/
9856 F:      include/linux/iommu.h
9857 F:      include/linux/iova.h
9858 F:      include/linux/of_iommu.h
9859 F:      include/uapi/linux/iommu.h
9860
9861 IO_URING
9862 M:      Jens Axboe <axboe@kernel.dk>
9863 R:      Pavel Begunkov <asml.silence@gmail.com>
9864 L:      io-uring@vger.kernel.org
9865 S:      Maintained
9866 T:      git git://git.kernel.dk/linux-block
9867 T:      git git://git.kernel.dk/liburing
9868 F:      fs/io-wq.c
9869 F:      fs/io-wq.h
9870 F:      fs/io_uring.c
9871 F:      include/linux/io_uring.h
9872 F:      include/uapi/linux/io_uring.h
9873 F:      tools/io_uring/
9874
9875 IPMI SUBSYSTEM
9876 M:      Corey Minyard <minyard@acm.org>
9877 L:      openipmi-developer@lists.sourceforge.net (moderated for non-subscribers)
9878 S:      Supported
9879 W:      http://openipmi.sourceforge.net/
9880 F:      Documentation/driver-api/ipmi.rst
9881 F:      Documentation/devicetree/bindings/ipmi/
9882 F:      drivers/char/ipmi/
9883 F:      include/linux/ipmi*
9884 F:      include/uapi/linux/ipmi*
9885
9886 IPS SCSI RAID DRIVER
9887 M:      Adaptec OEM Raid Solutions <aacraid@microsemi.com>
9888 L:      linux-scsi@vger.kernel.org
9889 S:      Maintained
9890 W:      http://www.adaptec.com/
9891 F:      drivers/scsi/ips*
9892
9893 IPVS
9894 M:      Simon Horman <horms@verge.net.au>
9895 M:      Julian Anastasov <ja@ssi.bg>
9896 L:      netdev@vger.kernel.org
9897 L:      lvs-devel@vger.kernel.org
9898 S:      Maintained
9899 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs-next.git
9900 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/horms/ipvs.git
9901 F:      Documentation/networking/ipvs-sysctl.rst
9902 F:      include/net/ip_vs.h
9903 F:      include/uapi/linux/ip_vs.h
9904 F:      net/netfilter/ipvs/
9905
9906 IPWIRELESS DRIVER
9907 M:      Jiri Kosina <jikos@kernel.org>
9908 M:      David Sterba <dsterba@suse.com>
9909 S:      Odd Fixes
9910 F:      drivers/tty/ipwireless/
9911
9912 IRQ DOMAINS (IRQ NUMBER MAPPING LIBRARY)
9913 M:      Marc Zyngier <maz@kernel.org>
9914 S:      Maintained
9915 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
9916 F:      Documentation/core-api/irq/irq-domain.rst
9917 F:      include/linux/irqdomain.h
9918 F:      kernel/irq/irqdomain.c
9919 F:      kernel/irq/msi.c
9920
9921 IRQ SUBSYSTEM
9922 M:      Thomas Gleixner <tglx@linutronix.de>
9923 L:      linux-kernel@vger.kernel.org
9924 S:      Maintained
9925 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
9926 F:      kernel/irq/
9927
9928 IRQCHIP DRIVERS
9929 M:      Thomas Gleixner <tglx@linutronix.de>
9930 M:      Marc Zyngier <maz@kernel.org>
9931 L:      linux-kernel@vger.kernel.org
9932 S:      Maintained
9933 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git irq/core
9934 F:      Documentation/devicetree/bindings/interrupt-controller/
9935 F:      drivers/irqchip/
9936
9937 ISA
9938 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
9939 S:      Maintained
9940 F:      Documentation/driver-api/isa.rst
9941 F:      drivers/base/isa.c
9942 F:      include/linux/isa.h
9943
9944 ISA RADIO MODULE
9945 M:      Hans Verkuil <hverkuil@xs4all.nl>
9946 L:      linux-media@vger.kernel.org
9947 S:      Maintained
9948 W:      https://linuxtv.org
9949 T:      git git://linuxtv.org/media_tree.git
9950 F:      drivers/media/radio/radio-isa*
9951
9952 ISAPNP
9953 M:      Jaroslav Kysela <perex@perex.cz>
9954 S:      Maintained
9955 F:      Documentation/driver-api/isapnp.rst
9956 F:      drivers/pnp/isapnp/
9957 F:      include/linux/isapnp.h
9958
9959 ISCSI
9960 M:      Lee Duncan <lduncan@suse.com>
9961 M:      Chris Leech <cleech@redhat.com>
9962 L:      open-iscsi@googlegroups.com
9963 L:      linux-scsi@vger.kernel.org
9964 S:      Maintained
9965 W:      www.open-iscsi.com
9966 F:      drivers/scsi/*iscsi*
9967 F:      include/scsi/*iscsi*
9968
9969 iSCSI BOOT FIRMWARE TABLE (iBFT) DRIVER
9970 M:      Peter Jones <pjones@redhat.com>
9971 M:      Konrad Rzeszutek Wilk <konrad@kernel.org>
9972 S:      Maintained
9973 F:      drivers/firmware/iscsi_ibft*
9974
9975 ISCSI EXTENSIONS FOR RDMA (ISER) INITIATOR
9976 M:      Sagi Grimberg <sagi@grimberg.me>
9977 M:      Max Gurtovoy <mgurtovoy@nvidia.com>
9978 L:      linux-rdma@vger.kernel.org
9979 S:      Supported
9980 W:      http://www.openfabrics.org
9981 W:      www.open-iscsi.org
9982 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
9983 F:      drivers/infiniband/ulp/iser/
9984
9985 ISCSI EXTENSIONS FOR RDMA (ISER) TARGET
9986 M:      Sagi Grimberg <sagi@grimberg.me>
9987 L:      linux-rdma@vger.kernel.org
9988 L:      target-devel@vger.kernel.org
9989 S:      Supported
9990 W:      http://www.linux-iscsi.org
9991 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nab/target-pending.git master
9992 F:      drivers/infiniband/ulp/isert
9993
9994 ISDN/CMTP OVER BLUETOOTH
9995 M:      Karsten Keil <isdn@linux-pingi.de>
9996 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
9997 L:      netdev@vger.kernel.org
9998 S:      Odd Fixes
9999 W:      http://www.isdn4linux.de
10000 F:      Documentation/isdn/
10001 F:      drivers/isdn/capi/
10002 F:      include/linux/isdn/
10003 F:      include/uapi/linux/isdn/
10004 F:      net/bluetooth/cmtp/
10005
10006 ISDN/mISDN SUBSYSTEM
10007 M:      Karsten Keil <isdn@linux-pingi.de>
10008 L:      isdn4linux@listserv.isdn4linux.de (subscribers-only)
10009 L:      netdev@vger.kernel.org
10010 S:      Maintained
10011 W:      http://www.isdn4linux.de
10012 F:      drivers/isdn/Kconfig
10013 F:      drivers/isdn/Makefile
10014 F:      drivers/isdn/hardware/
10015 F:      drivers/isdn/mISDN/
10016
10017 IT87 HARDWARE MONITORING DRIVER
10018 M:      Jean Delvare <jdelvare@suse.com>
10019 L:      linux-hwmon@vger.kernel.org
10020 S:      Maintained
10021 F:      Documentation/hwmon/it87.rst
10022 F:      drivers/hwmon/it87.c
10023
10024 IT913X MEDIA DRIVER
10025 M:      Antti Palosaari <crope@iki.fi>
10026 L:      linux-media@vger.kernel.org
10027 S:      Maintained
10028 W:      https://linuxtv.org
10029 W:      http://palosaari.fi/linux/
10030 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10031 T:      git git://linuxtv.org/anttip/media_tree.git
10032 F:      drivers/media/tuners/it913x*
10033
10034 ITE IT66121 HDMI BRIDGE DRIVER
10035 M:      Phong LE <ple@baylibre.com>
10036 M:      Neil Armstrong <narmstrong@baylibre.com>
10037 S:      Maintained
10038 T:      git git://anongit.freedesktop.org/drm/drm-misc
10039 F:      Documentation/devicetree/bindings/display/bridge/ite,it66121.yaml
10040 F:      drivers/gpu/drm/bridge/ite-it66121.c
10041
10042 IVTV VIDEO4LINUX DRIVER
10043 M:      Andy Walls <awalls@md.metrocast.net>
10044 L:      linux-media@vger.kernel.org
10045 S:      Maintained
10046 W:      https://linuxtv.org
10047 T:      git git://linuxtv.org/media_tree.git
10048 F:      Documentation/admin-guide/media/ivtv*
10049 F:      drivers/media/pci/ivtv/
10050 F:      include/uapi/linux/ivtv*
10051
10052 IX2505V MEDIA DRIVER
10053 M:      Malcolm Priestley <tvboxspy@gmail.com>
10054 L:      linux-media@vger.kernel.org
10055 S:      Maintained
10056 W:      https://linuxtv.org
10057 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10058 F:      drivers/media/dvb-frontends/ix2505v*
10059
10060 JAILHOUSE HYPERVISOR INTERFACE
10061 M:      Jan Kiszka <jan.kiszka@siemens.com>
10062 L:      jailhouse-dev@googlegroups.com
10063 S:      Maintained
10064 F:      arch/x86/include/asm/jailhouse_para.h
10065 F:      arch/x86/kernel/jailhouse.c
10066
10067 JC42.4 TEMPERATURE SENSOR DRIVER
10068 M:      Guenter Roeck <linux@roeck-us.net>
10069 L:      linux-hwmon@vger.kernel.org
10070 S:      Maintained
10071 F:      Documentation/hwmon/jc42.rst
10072 F:      drivers/hwmon/jc42.c
10073
10074 JFS FILESYSTEM
10075 M:      Dave Kleikamp <shaggy@kernel.org>
10076 L:      jfs-discussion@lists.sourceforge.net
10077 S:      Maintained
10078 W:      http://jfs.sourceforge.net/
10079 T:      git git://github.com/kleikamp/linux-shaggy.git
10080 F:      Documentation/admin-guide/jfs.rst
10081 F:      fs/jfs/
10082
10083 JME NETWORK DRIVER
10084 M:      Guo-Fu Tseng <cooldavid@cooldavid.org>
10085 L:      netdev@vger.kernel.org
10086 S:      Maintained
10087 F:      drivers/net/ethernet/jme.*
10088
10089 JOURNALLING FLASH FILE SYSTEM V2 (JFFS2)
10090 M:      David Woodhouse <dwmw2@infradead.org>
10091 M:      Richard Weinberger <richard@nod.at>
10092 L:      linux-mtd@lists.infradead.org
10093 S:      Odd Fixes
10094 W:      http://www.linux-mtd.infradead.org/doc/jffs2.html
10095 T:      git git://git.infradead.org/ubifs-2.6.git
10096 F:      fs/jffs2/
10097 F:      include/uapi/linux/jffs2.h
10098
10099 JOURNALLING LAYER FOR BLOCK DEVICES (JBD2)
10100 M:      "Theodore Ts'o" <tytso@mit.edu>
10101 M:      Jan Kara <jack@suse.com>
10102 L:      linux-ext4@vger.kernel.org
10103 S:      Maintained
10104 F:      fs/jbd2/
10105 F:      include/linux/jbd2.h
10106
10107 JPU V4L2 MEM2MEM DRIVER FOR RENESAS
10108 M:      Mikhail Ulyanov <mikhail.ulyanov@cogentembedded.com>
10109 L:      linux-media@vger.kernel.org
10110 S:      Maintained
10111 F:      drivers/media/platform/rcar_jpu.c
10112
10113 JSM Neo PCI based serial card
10114 L:      linux-serial@vger.kernel.org
10115 S:      Orphan
10116 F:      drivers/tty/serial/jsm/
10117
10118 K10TEMP HARDWARE MONITORING DRIVER
10119 M:      Clemens Ladisch <clemens@ladisch.de>
10120 L:      linux-hwmon@vger.kernel.org
10121 S:      Maintained
10122 F:      Documentation/hwmon/k10temp.rst
10123 F:      drivers/hwmon/k10temp.c
10124
10125 K8TEMP HARDWARE MONITORING DRIVER
10126 M:      Rudolf Marek <r.marek@assembler.cz>
10127 L:      linux-hwmon@vger.kernel.org
10128 S:      Maintained
10129 F:      Documentation/hwmon/k8temp.rst
10130 F:      drivers/hwmon/k8temp.c
10131
10132 KASAN
10133 M:      Andrey Ryabinin <ryabinin.a.a@gmail.com>
10134 R:      Alexander Potapenko <glider@google.com>
10135 R:      Andrey Konovalov <andreyknvl@gmail.com>
10136 R:      Dmitry Vyukov <dvyukov@google.com>
10137 L:      kasan-dev@googlegroups.com
10138 S:      Maintained
10139 F:      Documentation/dev-tools/kasan.rst
10140 F:      arch/*/include/asm/*kasan.h
10141 F:      arch/*/mm/kasan_init*
10142 F:      include/linux/kasan*.h
10143 F:      lib/Kconfig.kasan
10144 F:      lib/test_kasan*.c
10145 F:      mm/kasan/
10146 F:      scripts/Makefile.kasan
10147
10148 KCONFIG
10149 M:      Masahiro Yamada <masahiroy@kernel.org>
10150 L:      linux-kbuild@vger.kernel.org
10151 S:      Maintained
10152 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git kconfig
10153 F:      Documentation/kbuild/kconfig*
10154 F:      scripts/Kconfig.include
10155 F:      scripts/kconfig/
10156
10157 KCOV
10158 R:      Dmitry Vyukov <dvyukov@google.com>
10159 R:      Andrey Konovalov <andreyknvl@gmail.com>
10160 L:      kasan-dev@googlegroups.com
10161 S:      Maintained
10162 F:      Documentation/dev-tools/kcov.rst
10163 F:      include/linux/kcov.h
10164 F:      include/uapi/linux/kcov.h
10165 F:      kernel/kcov.c
10166 F:      scripts/Makefile.kcov
10167
10168 KCSAN
10169 M:      Marco Elver <elver@google.com>
10170 R:      Dmitry Vyukov <dvyukov@google.com>
10171 L:      kasan-dev@googlegroups.com
10172 S:      Maintained
10173 F:      Documentation/dev-tools/kcsan.rst
10174 F:      include/linux/kcsan*.h
10175 F:      kernel/kcsan/
10176 F:      lib/Kconfig.kcsan
10177 F:      scripts/Makefile.kcsan
10178
10179 KDUMP
10180 M:      Dave Young <dyoung@redhat.com>
10181 M:      Baoquan He <bhe@redhat.com>
10182 R:      Vivek Goyal <vgoyal@redhat.com>
10183 L:      kexec@lists.infradead.org
10184 S:      Maintained
10185 W:      http://lse.sourceforge.net/kdump/
10186 F:      Documentation/admin-guide/kdump/
10187 F:      fs/proc/vmcore.c
10188 F:      include/linux/crash_core.h
10189 F:      include/linux/crash_dump.h
10190 F:      include/uapi/linux/vmcore.h
10191 F:      kernel/crash_*.c
10192
10193 KEENE FM RADIO TRANSMITTER DRIVER
10194 M:      Hans Verkuil <hverkuil@xs4all.nl>
10195 L:      linux-media@vger.kernel.org
10196 S:      Maintained
10197 W:      https://linuxtv.org
10198 T:      git git://linuxtv.org/media_tree.git
10199 F:      drivers/media/radio/radio-keene*
10200
10201 KERNEL AUTOMOUNTER
10202 M:      Ian Kent <raven@themaw.net>
10203 L:      autofs@vger.kernel.org
10204 S:      Maintained
10205 F:      fs/autofs/
10206
10207 KERNEL BUILD + files below scripts/ (unless maintained elsewhere)
10208 M:      Masahiro Yamada <masahiroy@kernel.org>
10209 M:      Michal Marek <michal.lkml@markovi.net>
10210 R:      Nick Desaulniers <ndesaulniers@google.com>
10211 L:      linux-kbuild@vger.kernel.org
10212 S:      Maintained
10213 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git
10214 F:      Documentation/kbuild/
10215 F:      Makefile
10216 F:      scripts/*vmlinux*
10217 F:      scripts/Kbuild*
10218 F:      scripts/Makefile*
10219 F:      scripts/basic/
10220 F:      scripts/dummy-tools/
10221 F:      scripts/mk*
10222 F:      scripts/mod/
10223 F:      scripts/package/
10224
10225 KERNEL JANITORS
10226 L:      kernel-janitors@vger.kernel.org
10227 S:      Odd Fixes
10228 W:      http://kernelnewbies.org/KernelJanitors
10229
10230 KERNEL NFSD, SUNRPC, AND LOCKD SERVERS
10231 M:      "J. Bruce Fields" <bfields@fieldses.org>
10232 M:      Chuck Lever <chuck.lever@oracle.com>
10233 L:      linux-nfs@vger.kernel.org
10234 S:      Supported
10235 W:      http://nfs.sourceforge.net/
10236 T:      git git://linux-nfs.org/~bfields/linux.git
10237 F:      fs/lockd/
10238 F:      fs/nfs_common/
10239 F:      fs/nfsd/
10240 F:      include/linux/lockd/
10241 F:      include/linux/sunrpc/
10242 F:      include/uapi/linux/nfsd/
10243 F:      include/uapi/linux/sunrpc/
10244 F:      net/sunrpc/
10245 F:      Documentation/filesystems/nfs/
10246
10247 KERNEL REGRESSIONS
10248 M:      Thorsten Leemhuis <linux@leemhuis.info>
10249 L:      regressions@lists.linux.dev
10250 S:      Supported
10251
10252 KERNEL SELFTEST FRAMEWORK
10253 M:      Shuah Khan <shuah@kernel.org>
10254 M:      Shuah Khan <skhan@linuxfoundation.org>
10255 L:      linux-kselftest@vger.kernel.org
10256 S:      Maintained
10257 Q:      https://patchwork.kernel.org/project/linux-kselftest/list/
10258 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest.git
10259 F:      Documentation/dev-tools/kselftest*
10260 F:      tools/testing/selftests/
10261
10262 KERNEL SMB3 SERVER (KSMBD)
10263 M:      Namjae Jeon <linkinjeon@kernel.org>
10264 M:      Sergey Senozhatsky <senozhatsky@chromium.org>
10265 M:      Steve French <sfrench@samba.org>
10266 M:      Hyunchul Lee <hyc.lee@gmail.com>
10267 L:      linux-cifs@vger.kernel.org
10268 S:      Maintained
10269 T:      git git://git.samba.org/ksmbd.git
10270 F:      fs/ksmbd/
10271 F:      fs/smbfs_common/
10272
10273 KERNEL UNIT TESTING FRAMEWORK (KUnit)
10274 M:      Brendan Higgins <brendanhiggins@google.com>
10275 L:      linux-kselftest@vger.kernel.org
10276 L:      kunit-dev@googlegroups.com
10277 S:      Maintained
10278 W:      https://google.github.io/kunit-docs/third_party/kernel/docs/
10279 F:      Documentation/dev-tools/kunit/
10280 F:      include/kunit/
10281 F:      lib/kunit/
10282 F:      tools/testing/kunit/
10283
10284 KERNEL USERMODE HELPER
10285 M:      Luis Chamberlain <mcgrof@kernel.org>
10286 L:      linux-kernel@vger.kernel.org
10287 S:      Maintained
10288 F:      include/linux/umh.h
10289 F:      kernel/umh.c
10290
10291 KERNEL VIRTUAL MACHINE (KVM)
10292 M:      Paolo Bonzini <pbonzini@redhat.com>
10293 L:      kvm@vger.kernel.org
10294 S:      Supported
10295 W:      http://www.linux-kvm.org
10296 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
10297 F:      Documentation/virt/kvm/
10298 F:      include/asm-generic/kvm*
10299 F:      include/kvm/iodev.h
10300 F:      include/linux/kvm*
10301 F:      include/trace/events/kvm.h
10302 F:      include/uapi/asm-generic/kvm*
10303 F:      include/uapi/linux/kvm*
10304 F:      tools/kvm/
10305 F:      tools/testing/selftests/kvm/
10306 F:      virt/kvm/*
10307
10308 KERNEL VIRTUAL MACHINE FOR ARM64 (KVM/arm64)
10309 M:      Marc Zyngier <maz@kernel.org>
10310 R:      James Morse <james.morse@arm.com>
10311 R:      Alexandru Elisei <alexandru.elisei@arm.com>
10312 R:      Suzuki K Poulose <suzuki.poulose@arm.com>
10313 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
10314 L:      kvmarm@lists.cs.columbia.edu (moderated for non-subscribers)
10315 S:      Maintained
10316 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvmarm/kvmarm.git
10317 F:      arch/arm64/include/asm/kvm*
10318 F:      arch/arm64/include/uapi/asm/kvm*
10319 F:      arch/arm64/kvm/
10320 F:      include/kvm/arm_*
10321 F:      tools/testing/selftests/kvm/*/aarch64/
10322 F:      tools/testing/selftests/kvm/aarch64/
10323
10324 KERNEL VIRTUAL MACHINE FOR MIPS (KVM/mips)
10325 M:      Huacai Chen <chenhuacai@kernel.org>
10326 M:      Aleksandar Markovic <aleksandar.qemu.devel@gmail.com>
10327 L:      linux-mips@vger.kernel.org
10328 L:      kvm@vger.kernel.org
10329 S:      Maintained
10330 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
10331 F:      arch/mips/include/asm/kvm*
10332 F:      arch/mips/include/uapi/asm/kvm*
10333 F:      arch/mips/kvm/
10334
10335 KERNEL VIRTUAL MACHINE FOR POWERPC (KVM/powerpc)
10336 M:      Paul Mackerras <paulus@ozlabs.org>
10337 L:      kvm-ppc@vger.kernel.org
10338 S:      Supported
10339 W:      http://www.linux-kvm.org/
10340 T:      git git://github.com/agraf/linux-2.6.git
10341 F:      arch/powerpc/include/asm/kvm*
10342 F:      arch/powerpc/include/uapi/asm/kvm*
10343 F:      arch/powerpc/kernel/kvm*
10344 F:      arch/powerpc/kvm/
10345
10346 KERNEL VIRTUAL MACHINE for s390 (KVM/s390)
10347 M:      Christian Borntraeger <borntraeger@de.ibm.com>
10348 M:      Janosch Frank <frankja@linux.ibm.com>
10349 R:      David Hildenbrand <david@redhat.com>
10350 R:      Claudio Imbrenda <imbrenda@linux.ibm.com>
10351 L:      kvm@vger.kernel.org
10352 S:      Supported
10353 W:      http://www.ibm.com/developerworks/linux/linux390/
10354 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvms390/linux.git
10355 F:      Documentation/virt/kvm/s390*
10356 F:      arch/s390/include/asm/gmap.h
10357 F:      arch/s390/include/asm/kvm*
10358 F:      arch/s390/include/uapi/asm/kvm*
10359 F:      arch/s390/kernel/uv.c
10360 F:      arch/s390/kvm/
10361 F:      arch/s390/mm/gmap.c
10362 F:      tools/testing/selftests/kvm/*/s390x/
10363 F:      tools/testing/selftests/kvm/s390x/
10364
10365 KERNEL VIRTUAL MACHINE FOR X86 (KVM/x86)
10366 M:      Paolo Bonzini <pbonzini@redhat.com>
10367 R:      Sean Christopherson <seanjc@google.com>
10368 R:      Vitaly Kuznetsov <vkuznets@redhat.com>
10369 R:      Wanpeng Li <wanpengli@tencent.com>
10370 R:      Jim Mattson <jmattson@google.com>
10371 R:      Joerg Roedel <joro@8bytes.org>
10372 L:      kvm@vger.kernel.org
10373 S:      Supported
10374 W:      http://www.linux-kvm.org
10375 T:      git git://git.kernel.org/pub/scm/virt/kvm/kvm.git
10376 F:      arch/x86/include/asm/kvm*
10377 F:      arch/x86/include/asm/pvclock-abi.h
10378 F:      arch/x86/include/asm/svm.h
10379 F:      arch/x86/include/asm/vmx*.h
10380 F:      arch/x86/include/uapi/asm/kvm*
10381 F:      arch/x86/include/uapi/asm/svm.h
10382 F:      arch/x86/include/uapi/asm/vmx.h
10383 F:      arch/x86/kernel/kvm.c
10384 F:      arch/x86/kernel/kvmclock.c
10385 F:      arch/x86/kvm/
10386 F:      arch/x86/kvm/*/
10387
10388 KERNFS
10389 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10390 M:      Tejun Heo <tj@kernel.org>
10391 S:      Supported
10392 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core.git
10393 F:      fs/kernfs/
10394 F:      include/linux/kernfs.h
10395
10396 KEXEC
10397 M:      Eric Biederman <ebiederm@xmission.com>
10398 L:      kexec@lists.infradead.org
10399 S:      Maintained
10400 W:      http://kernel.org/pub/linux/utils/kernel/kexec/
10401 F:      include/linux/kexec.h
10402 F:      include/uapi/linux/kexec.h
10403 F:      kernel/kexec*
10404
10405 KEYS-ENCRYPTED
10406 M:      Mimi Zohar <zohar@linux.ibm.com>
10407 L:      linux-integrity@vger.kernel.org
10408 L:      keyrings@vger.kernel.org
10409 S:      Supported
10410 F:      Documentation/security/keys/trusted-encrypted.rst
10411 F:      include/keys/encrypted-type.h
10412 F:      security/keys/encrypted-keys/
10413
10414 KEYS-TRUSTED
10415 M:      James Bottomley <jejb@linux.ibm.com>
10416 M:      Jarkko Sakkinen <jarkko@kernel.org>
10417 M:      Mimi Zohar <zohar@linux.ibm.com>
10418 L:      linux-integrity@vger.kernel.org
10419 L:      keyrings@vger.kernel.org
10420 S:      Supported
10421 F:      Documentation/security/keys/trusted-encrypted.rst
10422 F:      include/keys/trusted-type.h
10423 F:      include/keys/trusted_tpm.h
10424 F:      security/keys/trusted-keys/
10425
10426 KEYS-TRUSTED-TEE
10427 M:      Sumit Garg <sumit.garg@linaro.org>
10428 L:      linux-integrity@vger.kernel.org
10429 L:      keyrings@vger.kernel.org
10430 S:      Supported
10431 F:      include/keys/trusted_tee.h
10432 F:      security/keys/trusted-keys/trusted_tee.c
10433
10434 KEYS/KEYRINGS
10435 M:      David Howells <dhowells@redhat.com>
10436 M:      Jarkko Sakkinen <jarkko@kernel.org>
10437 L:      keyrings@vger.kernel.org
10438 S:      Maintained
10439 F:      Documentation/security/keys/core.rst
10440 F:      include/keys/
10441 F:      include/linux/key-type.h
10442 F:      include/linux/key.h
10443 F:      include/linux/keyctl.h
10444 F:      include/uapi/linux/keyctl.h
10445 F:      security/keys/
10446
10447 KFENCE
10448 M:      Alexander Potapenko <glider@google.com>
10449 M:      Marco Elver <elver@google.com>
10450 R:      Dmitry Vyukov <dvyukov@google.com>
10451 L:      kasan-dev@googlegroups.com
10452 S:      Maintained
10453 F:      Documentation/dev-tools/kfence.rst
10454 F:      arch/*/include/asm/kfence.h
10455 F:      include/linux/kfence.h
10456 F:      lib/Kconfig.kfence
10457 F:      mm/kfence/
10458
10459 KFIFO
10460 M:      Stefani Seibold <stefani@seibold.net>
10461 S:      Maintained
10462 F:      include/linux/kfifo.h
10463 F:      lib/kfifo.c
10464 F:      samples/kfifo/
10465
10466 KGDB / KDB /debug_core
10467 M:      Jason Wessel <jason.wessel@windriver.com>
10468 M:      Daniel Thompson <daniel.thompson@linaro.org>
10469 R:      Douglas Anderson <dianders@chromium.org>
10470 L:      kgdb-bugreport@lists.sourceforge.net
10471 S:      Maintained
10472 W:      http://kgdb.wiki.kernel.org/
10473 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jwessel/kgdb.git
10474 F:      Documentation/dev-tools/kgdb.rst
10475 F:      drivers/misc/kgdbts.c
10476 F:      drivers/tty/serial/kgdboc.c
10477 F:      include/linux/kdb.h
10478 F:      include/linux/kgdb.h
10479 F:      kernel/debug/
10480
10481 KHADAS MCU MFD DRIVER
10482 M:      Neil Armstrong <narmstrong@baylibre.com>
10483 L:      linux-amlogic@lists.infradead.org
10484 S:      Maintained
10485 F:      Documentation/devicetree/bindings/mfd/khadas,mcu.yaml
10486 F:      drivers/mfd/khadas-mcu.c
10487 F:      include/linux/mfd/khadas-mcu.h
10488 F:      drivers/thermal/khadas_mcu_fan.c
10489
10490 KMEMLEAK
10491 M:      Catalin Marinas <catalin.marinas@arm.com>
10492 S:      Maintained
10493 F:      Documentation/dev-tools/kmemleak.rst
10494 F:      include/linux/kmemleak.h
10495 F:      mm/kmemleak.c
10496 F:      samples/kmemleak/kmemleak-test.c
10497
10498 KMOD KERNEL MODULE LOADER - USERMODE HELPER
10499 M:      Luis Chamberlain <mcgrof@kernel.org>
10500 L:      linux-kernel@vger.kernel.org
10501 S:      Maintained
10502 F:      include/linux/kmod.h
10503 F:      kernel/kmod.c
10504 F:      lib/test_kmod.c
10505 F:      tools/testing/selftests/kmod/
10506
10507 KPROBES
10508 M:      Naveen N. Rao <naveen.n.rao@linux.ibm.com>
10509 M:      Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
10510 M:      "David S. Miller" <davem@davemloft.net>
10511 M:      Masami Hiramatsu <mhiramat@kernel.org>
10512 S:      Maintained
10513 F:      Documentation/trace/kprobes.rst
10514 F:      include/asm-generic/kprobes.h
10515 F:      include/linux/kprobes.h
10516 F:      kernel/kprobes.c
10517
10518 KS0108 LCD CONTROLLER DRIVER
10519 M:      Miguel Ojeda <ojeda@kernel.org>
10520 S:      Maintained
10521 F:      Documentation/admin-guide/auxdisplay/ks0108.rst
10522 F:      drivers/auxdisplay/ks0108.c
10523 F:      include/linux/ks0108.h
10524
10525 KTD253 BACKLIGHT DRIVER
10526 M:      Linus Walleij <linus.walleij@linaro.org>
10527 S:      Maintained
10528 F:      Documentation/devicetree/bindings/leds/backlight/kinetic,ktd253.yaml
10529 F:      drivers/video/backlight/ktd253-backlight.c
10530
10531 KTEST
10532 M:      Steven Rostedt <rostedt@goodmis.org>
10533 M:      John Hawley <warthog9@eaglescrag.net>
10534 S:      Maintained
10535 F:      tools/testing/ktest
10536
10537 L3MDEV
10538 M:      David Ahern <dsahern@kernel.org>
10539 L:      netdev@vger.kernel.org
10540 S:      Maintained
10541 F:      include/net/l3mdev.h
10542 F:      net/l3mdev
10543
10544 L7 BPF FRAMEWORK
10545 M:      John Fastabend <john.fastabend@gmail.com>
10546 M:      Daniel Borkmann <daniel@iogearbox.net>
10547 M:      Jakub Sitnicki <jakub@cloudflare.com>
10548 M:      Lorenz Bauer <lmb@cloudflare.com>
10549 L:      netdev@vger.kernel.org
10550 L:      bpf@vger.kernel.org
10551 S:      Maintained
10552 F:      include/linux/skmsg.h
10553 F:      net/core/skmsg.c
10554 F:      net/core/sock_map.c
10555 F:      net/ipv4/tcp_bpf.c
10556 F:      net/ipv4/udp_bpf.c
10557 F:      net/unix/unix_bpf.c
10558
10559 LANDLOCK SECURITY MODULE
10560 M:      Mickaël Salaün <mic@digikod.net>
10561 L:      linux-security-module@vger.kernel.org
10562 S:      Supported
10563 W:      https://landlock.io
10564 T:      git https://github.com/landlock-lsm/linux.git
10565 F:      Documentation/security/landlock.rst
10566 F:      Documentation/userspace-api/landlock.rst
10567 F:      include/uapi/linux/landlock.h
10568 F:      samples/landlock/
10569 F:      security/landlock/
10570 F:      tools/testing/selftests/landlock/
10571 K:      landlock
10572 K:      LANDLOCK
10573
10574 LANTIQ / INTEL Ethernet drivers
10575 M:      Hauke Mehrtens <hauke@hauke-m.de>
10576 L:      netdev@vger.kernel.org
10577 S:      Maintained
10578 F:      drivers/net/dsa/lantiq_gswip.c
10579 F:      drivers/net/dsa/lantiq_pce.h
10580 F:      drivers/net/ethernet/lantiq_xrx200.c
10581 F:      net/dsa/tag_gswip.c
10582
10583 LANTIQ MIPS ARCHITECTURE
10584 M:      John Crispin <john@phrozen.org>
10585 L:      linux-mips@vger.kernel.org
10586 S:      Maintained
10587 F:      arch/mips/lantiq
10588 F:      drivers/soc/lantiq
10589
10590 LASI 53c700 driver for PARISC
10591 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
10592 L:      linux-scsi@vger.kernel.org
10593 S:      Maintained
10594 F:      Documentation/scsi/53c700.rst
10595 F:      drivers/scsi/53c700*
10596
10597 LEAKING_ADDRESSES
10598 M:      Tobin C. Harding <me@tobin.cc>
10599 M:      Tycho Andersen <tycho@tycho.pizza>
10600 L:      linux-hardening@vger.kernel.org
10601 S:      Maintained
10602 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tobin/leaks.git
10603 F:      scripts/leaking_addresses.pl
10604
10605 LED SUBSYSTEM
10606 M:      Pavel Machek <pavel@ucw.cz>
10607 L:      linux-leds@vger.kernel.org
10608 S:      Maintained
10609 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pavel/linux-leds.git
10610 F:      Documentation/devicetree/bindings/leds/
10611 F:      drivers/leds/
10612 F:      include/linux/leds.h
10613
10614 LEGACY EEPROM DRIVER
10615 M:      Jean Delvare <jdelvare@suse.com>
10616 S:      Maintained
10617 F:      Documentation/misc-devices/eeprom.rst
10618 F:      drivers/misc/eeprom/eeprom.c
10619
10620 LEGO MINDSTORMS EV3
10621 R:      David Lechner <david@lechnology.com>
10622 S:      Maintained
10623 F:      Documentation/devicetree/bindings/power/supply/lego,ev3-battery.yaml
10624 F:      arch/arm/boot/dts/da850-lego-ev3.dts
10625 F:      drivers/power/supply/lego_ev3_battery.c
10626
10627 LEGO USB Tower driver
10628 M:      Juergen Stuber <starblue@users.sourceforge.net>
10629 L:      legousb-devel@lists.sourceforge.net
10630 S:      Maintained
10631 W:      http://legousb.sourceforge.net/
10632 F:      drivers/usb/misc/legousbtower.c
10633
10634 LG LAPTOP EXTRAS
10635 M:      Matan Ziv-Av <matan@svgalib.org>
10636 L:      platform-driver-x86@vger.kernel.org
10637 S:      Maintained
10638 F:      Documentation/ABI/testing/sysfs-platform-lg-laptop
10639 F:      Documentation/admin-guide/laptops/lg-laptop.rst
10640 F:      drivers/platform/x86/lg-laptop.c
10641
10642 LG2160 MEDIA DRIVER
10643 M:      Michael Krufky <mkrufky@linuxtv.org>
10644 L:      linux-media@vger.kernel.org
10645 S:      Maintained
10646 W:      https://linuxtv.org
10647 W:      http://github.com/mkrufky
10648 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10649 T:      git git://linuxtv.org/mkrufky/tuners.git
10650 F:      drivers/media/dvb-frontends/lg2160.*
10651
10652 LGDT3305 MEDIA DRIVER
10653 M:      Michael Krufky <mkrufky@linuxtv.org>
10654 L:      linux-media@vger.kernel.org
10655 S:      Maintained
10656 W:      https://linuxtv.org
10657 W:      http://github.com/mkrufky
10658 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10659 T:      git git://linuxtv.org/mkrufky/tuners.git
10660 F:      drivers/media/dvb-frontends/lgdt3305.*
10661
10662 LIBATA PATA ARASAN COMPACT FLASH CONTROLLER
10663 M:      Viresh Kumar <vireshk@kernel.org>
10664 L:      linux-ide@vger.kernel.org
10665 S:      Maintained
10666 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
10667 F:      drivers/ata/pata_arasan_cf.c
10668 F:      include/linux/pata_arasan_cf_data.h
10669
10670 LIBATA PATA FARADAY FTIDE010 AND GEMINI SATA BRIDGE DRIVERS
10671 M:      Linus Walleij <linus.walleij@linaro.org>
10672 L:      linux-ide@vger.kernel.org
10673 S:      Maintained
10674 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
10675 F:      drivers/ata/pata_ftide010.c
10676 F:      drivers/ata/sata_gemini.c
10677 F:      drivers/ata/sata_gemini.h
10678
10679 LIBATA SATA AHCI PLATFORM devices support
10680 M:      Hans de Goede <hdegoede@redhat.com>
10681 M:      Jens Axboe <axboe@kernel.dk>
10682 L:      linux-ide@vger.kernel.org
10683 S:      Maintained
10684 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
10685 F:      drivers/ata/ahci_platform.c
10686 F:      drivers/ata/libahci_platform.c
10687 F:      include/linux/ahci_platform.h
10688
10689 LIBATA SATA PROMISE TX2/TX4 CONTROLLER DRIVER
10690 M:      Mikael Pettersson <mikpelinux@gmail.com>
10691 L:      linux-ide@vger.kernel.org
10692 S:      Maintained
10693 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/axboe/linux-block.git
10694 F:      drivers/ata/sata_promise.*
10695
10696 LIBATA SUBSYSTEM (Serial and Parallel ATA drivers)
10697 M:      Damien Le Moal <damien.lemoal@opensource.wdc.com>
10698 L:      linux-ide@vger.kernel.org
10699 S:      Maintained
10700 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dlemoal/libata.git
10701 F:      Documentation/devicetree/bindings/ata/
10702 F:      drivers/ata/
10703 F:      include/linux/ata.h
10704 F:      include/linux/libata.h
10705
10706 LIBLOCKDEP
10707 M:      Sasha Levin <alexander.levin@microsoft.com>
10708 S:      Maintained
10709 F:      tools/lib/lockdep/
10710
10711 LIBNVDIMM BLK: MMIO-APERTURE DRIVER
10712 M:      Dan Williams <dan.j.williams@intel.com>
10713 M:      Vishal Verma <vishal.l.verma@intel.com>
10714 M:      Dave Jiang <dave.jiang@intel.com>
10715 L:      nvdimm@lists.linux.dev
10716 S:      Supported
10717 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10718 P:      Documentation/nvdimm/maintainer-entry-profile.rst
10719 F:      drivers/nvdimm/blk.c
10720 F:      drivers/nvdimm/region_devs.c
10721
10722 LIBNVDIMM BTT: BLOCK TRANSLATION TABLE
10723 M:      Vishal Verma <vishal.l.verma@intel.com>
10724 M:      Dan Williams <dan.j.williams@intel.com>
10725 M:      Dave Jiang <dave.jiang@intel.com>
10726 L:      nvdimm@lists.linux.dev
10727 S:      Supported
10728 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10729 P:      Documentation/nvdimm/maintainer-entry-profile.rst
10730 F:      drivers/nvdimm/btt*
10731
10732 LIBNVDIMM PMEM: PERSISTENT MEMORY DRIVER
10733 M:      Dan Williams <dan.j.williams@intel.com>
10734 M:      Vishal Verma <vishal.l.verma@intel.com>
10735 M:      Dave Jiang <dave.jiang@intel.com>
10736 L:      nvdimm@lists.linux.dev
10737 S:      Supported
10738 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10739 P:      Documentation/nvdimm/maintainer-entry-profile.rst
10740 F:      drivers/nvdimm/pmem*
10741
10742 LIBNVDIMM: DEVICETREE BINDINGS
10743 M:      Oliver O'Halloran <oohall@gmail.com>
10744 L:      nvdimm@lists.linux.dev
10745 S:      Supported
10746 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10747 F:      Documentation/devicetree/bindings/pmem/pmem-region.txt
10748 F:      drivers/nvdimm/of_pmem.c
10749
10750 LIBNVDIMM: NON-VOLATILE MEMORY DEVICE SUBSYSTEM
10751 M:      Dan Williams <dan.j.williams@intel.com>
10752 M:      Vishal Verma <vishal.l.verma@intel.com>
10753 M:      Dave Jiang <dave.jiang@intel.com>
10754 M:      Ira Weiny <ira.weiny@intel.com>
10755 L:      nvdimm@lists.linux.dev
10756 S:      Supported
10757 Q:      https://patchwork.kernel.org/project/linux-nvdimm/list/
10758 P:      Documentation/nvdimm/maintainer-entry-profile.rst
10759 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nvdimm/nvdimm.git
10760 F:      drivers/acpi/nfit/*
10761 F:      drivers/nvdimm/*
10762 F:      include/linux/libnvdimm.h
10763 F:      include/linux/nd.h
10764 F:      include/uapi/linux/ndctl.h
10765 F:      tools/testing/nvdimm/
10766
10767 LICENSES and SPDX stuff
10768 M:      Thomas Gleixner <tglx@linutronix.de>
10769 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
10770 L:      linux-spdx@vger.kernel.org
10771 S:      Maintained
10772 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/spdx.git
10773 F:      COPYING
10774 F:      Documentation/process/license-rules.rst
10775 F:      LICENSES/
10776 F:      scripts/spdxcheck-test.sh
10777 F:      scripts/spdxcheck.py
10778
10779 LINEAR RANGES HELPERS
10780 M:      Mark Brown <broonie@kernel.org>
10781 R:      Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
10782 F:      lib/linear_ranges.c
10783 F:      lib/test_linear_ranges.c
10784 F:      include/linux/linear_range.h
10785
10786 LINUX FOR POWER MACINTOSH
10787 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
10788 L:      linuxppc-dev@lists.ozlabs.org
10789 S:      Odd Fixes
10790 F:      arch/powerpc/platforms/powermac/
10791 F:      drivers/macintosh/
10792
10793 LINUX FOR POWERPC (32-BIT AND 64-BIT)
10794 M:      Michael Ellerman <mpe@ellerman.id.au>
10795 R:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
10796 R:      Paul Mackerras <paulus@samba.org>
10797 L:      linuxppc-dev@lists.ozlabs.org
10798 S:      Supported
10799 W:      https://github.com/linuxppc/wiki/wiki
10800 Q:      http://patchwork.ozlabs.org/project/linuxppc-dev/list/
10801 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux.git
10802 F:      Documentation/ABI/stable/sysfs-firmware-opal-*
10803 F:      Documentation/devicetree/bindings/i2c/i2c-opal.txt
10804 F:      Documentation/devicetree/bindings/powerpc/
10805 F:      Documentation/devicetree/bindings/rtc/rtc-opal.txt
10806 F:      Documentation/powerpc/
10807 F:      arch/powerpc/
10808 F:      drivers/*/*/*pasemi*
10809 F:      drivers/*/*pasemi*
10810 F:      drivers/char/tpm/tpm_ibmvtpm*
10811 F:      drivers/crypto/nx/
10812 F:      drivers/crypto/vmx/
10813 F:      drivers/i2c/busses/i2c-opal.c
10814 F:      drivers/net/ethernet/ibm/ibmveth.*
10815 F:      drivers/net/ethernet/ibm/ibmvnic.*
10816 F:      drivers/pci/hotplug/pnv_php.c
10817 F:      drivers/pci/hotplug/rpa*
10818 F:      drivers/rtc/rtc-opal.c
10819 F:      drivers/scsi/ibmvscsi/
10820 F:      drivers/tty/hvc/hvc_opal.c
10821 F:      drivers/watchdog/wdrtas.c
10822 F:      tools/testing/selftests/powerpc
10823 N:      /pmac
10824 N:      powermac
10825 N:      powernv
10826 N:      [^a-z0-9]ps3
10827 N:      pseries
10828
10829 LINUX FOR POWERPC EMBEDDED MPC5XXX
10830 M:      Anatolij Gustschin <agust@denx.de>
10831 L:      linuxppc-dev@lists.ozlabs.org
10832 S:      Odd Fixes
10833 F:      arch/powerpc/platforms/512x/
10834 F:      arch/powerpc/platforms/52xx/
10835
10836 LINUX FOR POWERPC EMBEDDED PPC4XX
10837 L:      linuxppc-dev@lists.ozlabs.org
10838 S:      Orphan
10839 F:      arch/powerpc/platforms/40x/
10840 F:      arch/powerpc/platforms/44x/
10841
10842 LINUX FOR POWERPC EMBEDDED PPC83XX AND PPC85XX
10843 M:      Scott Wood <oss@buserror.net>
10844 L:      linuxppc-dev@lists.ozlabs.org
10845 S:      Odd fixes
10846 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/scottwood/linux.git
10847 F:      Documentation/devicetree/bindings/powerpc/fsl/
10848 F:      arch/powerpc/platforms/83xx/
10849 F:      arch/powerpc/platforms/85xx/
10850
10851 LINUX FOR POWERPC EMBEDDED PPC8XX
10852 M:      Christophe Leroy <christophe.leroy@csgroup.eu>
10853 L:      linuxppc-dev@lists.ozlabs.org
10854 S:      Maintained
10855 F:      arch/powerpc/platforms/8xx/
10856
10857 LINUX KERNEL DUMP TEST MODULE (LKDTM)
10858 M:      Kees Cook <keescook@chromium.org>
10859 S:      Maintained
10860 F:      drivers/misc/lkdtm/*
10861 F:      tools/testing/selftests/lkdtm/*
10862
10863 LINUX KERNEL MEMORY CONSISTENCY MODEL (LKMM)
10864 M:      Alan Stern <stern@rowland.harvard.edu>
10865 M:      Andrea Parri <parri.andrea@gmail.com>
10866 M:      Will Deacon <will@kernel.org>
10867 M:      Peter Zijlstra <peterz@infradead.org>
10868 M:      Boqun Feng <boqun.feng@gmail.com>
10869 M:      Nicholas Piggin <npiggin@gmail.com>
10870 M:      David Howells <dhowells@redhat.com>
10871 M:      Jade Alglave <j.alglave@ucl.ac.uk>
10872 M:      Luc Maranget <luc.maranget@inria.fr>
10873 M:      "Paul E. McKenney" <paulmck@kernel.org>
10874 R:      Akira Yokosawa <akiyks@gmail.com>
10875 R:      Daniel Lustig <dlustig@nvidia.com>
10876 R:      Joel Fernandes <joel@joelfernandes.org>
10877 L:      linux-kernel@vger.kernel.org
10878 L:      linux-arch@vger.kernel.org
10879 S:      Supported
10880 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
10881 F:      Documentation/atomic_bitops.txt
10882 F:      Documentation/atomic_t.txt
10883 F:      Documentation/core-api/refcount-vs-atomic.rst
10884 F:      Documentation/litmus-tests/
10885 F:      Documentation/memory-barriers.txt
10886 F:      tools/memory-model/
10887
10888 LIS3LV02D ACCELEROMETER DRIVER
10889 M:      Eric Piel <eric.piel@tremplin-utc.net>
10890 S:      Maintained
10891 F:      Documentation/misc-devices/lis3lv02d.rst
10892 F:      drivers/misc/lis3lv02d/
10893 F:      drivers/platform/x86/hp_accel.c
10894
10895 LIST KUNIT TEST
10896 M:      David Gow <davidgow@google.com>
10897 L:      linux-kselftest@vger.kernel.org
10898 L:      kunit-dev@googlegroups.com
10899 S:      Maintained
10900 F:      lib/list-test.c
10901
10902 LITEX PLATFORM
10903 M:      Karol Gugala <kgugala@antmicro.com>
10904 M:      Mateusz Holenko <mholenko@antmicro.com>
10905 S:      Maintained
10906 F:      Documentation/devicetree/bindings/*/litex,*.yaml
10907 F:      arch/openrisc/boot/dts/or1klitex.dts
10908 F:      drivers/soc/litex/litex_soc_ctrl.c
10909 F:      drivers/tty/serial/liteuart.c
10910 F:      include/linux/litex.h
10911
10912 LIVE PATCHING
10913 M:      Josh Poimboeuf <jpoimboe@redhat.com>
10914 M:      Jiri Kosina <jikos@kernel.org>
10915 M:      Miroslav Benes <mbenes@suse.cz>
10916 M:      Petr Mladek <pmladek@suse.com>
10917 R:      Joe Lawrence <joe.lawrence@redhat.com>
10918 L:      live-patching@vger.kernel.org
10919 S:      Maintained
10920 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/livepatching/livepatching.git
10921 F:      Documentation/ABI/testing/sysfs-kernel-livepatch
10922 F:      Documentation/livepatch/
10923 F:      arch/powerpc/include/asm/livepatch.h
10924 F:      arch/s390/include/asm/livepatch.h
10925 F:      arch/x86/include/asm/livepatch.h
10926 F:      include/linux/livepatch.h
10927 F:      kernel/livepatch/
10928 F:      lib/livepatch/
10929 F:      samples/livepatch/
10930 F:      tools/testing/selftests/livepatch/
10931
10932 LLC (802.2)
10933 L:      netdev@vger.kernel.org
10934 S:      Odd fixes
10935 F:      include/linux/llc.h
10936 F:      include/net/llc*
10937 F:      include/uapi/linux/llc.h
10938 F:      net/llc/
10939
10940 LM73 HARDWARE MONITOR DRIVER
10941 M:      Guillaume Ligneul <guillaume.ligneul@gmail.com>
10942 L:      linux-hwmon@vger.kernel.org
10943 S:      Maintained
10944 F:      drivers/hwmon/lm73.c
10945
10946 LM78 HARDWARE MONITOR DRIVER
10947 M:      Jean Delvare <jdelvare@suse.com>
10948 L:      linux-hwmon@vger.kernel.org
10949 S:      Maintained
10950 F:      Documentation/hwmon/lm78.rst
10951 F:      drivers/hwmon/lm78.c
10952
10953 LM83 HARDWARE MONITOR DRIVER
10954 M:      Jean Delvare <jdelvare@suse.com>
10955 L:      linux-hwmon@vger.kernel.org
10956 S:      Maintained
10957 F:      Documentation/hwmon/lm83.rst
10958 F:      drivers/hwmon/lm83.c
10959
10960 LM90 HARDWARE MONITOR DRIVER
10961 M:      Jean Delvare <jdelvare@suse.com>
10962 L:      linux-hwmon@vger.kernel.org
10963 S:      Maintained
10964 F:      Documentation/devicetree/bindings/hwmon/lm90.txt
10965 F:      Documentation/hwmon/lm90.rst
10966 F:      drivers/hwmon/lm90.c
10967 F:      include/dt-bindings/thermal/lm90.h
10968
10969 LM95234 HARDWARE MONITOR DRIVER
10970 M:      Guenter Roeck <linux@roeck-us.net>
10971 L:      linux-hwmon@vger.kernel.org
10972 S:      Maintained
10973 F:      Documentation/hwmon/lm95234.rst
10974 F:      drivers/hwmon/lm95234.c
10975
10976 LME2510 MEDIA DRIVER
10977 M:      Malcolm Priestley <tvboxspy@gmail.com>
10978 L:      linux-media@vger.kernel.org
10979 S:      Maintained
10980 W:      https://linuxtv.org
10981 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
10982 F:      drivers/media/usb/dvb-usb-v2/lmedm04*
10983
10984 LOADPIN SECURITY MODULE
10985 M:      Kees Cook <keescook@chromium.org>
10986 S:      Supported
10987 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git lsm/loadpin
10988 F:      Documentation/admin-guide/LSM/LoadPin.rst
10989 F:      security/loadpin/
10990
10991 LOCKING PRIMITIVES
10992 M:      Peter Zijlstra <peterz@infradead.org>
10993 M:      Ingo Molnar <mingo@redhat.com>
10994 M:      Will Deacon <will@kernel.org>
10995 R:      Waiman Long <longman@redhat.com>
10996 R:      Boqun Feng <boqun.feng@gmail.com> (LOCKDEP)
10997 L:      linux-kernel@vger.kernel.org
10998 S:      Maintained
10999 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git locking/core
11000 F:      Documentation/locking/
11001 F:      arch/*/include/asm/spinlock*.h
11002 F:      include/linux/lockdep.h
11003 F:      include/linux/mutex*.h
11004 F:      include/linux/rwlock*.h
11005 F:      include/linux/rwsem*.h
11006 F:      include/linux/seqlock.h
11007 F:      include/linux/spinlock*.h
11008 F:      kernel/locking/
11009 F:      lib/locking*.[ch]
11010 X:      kernel/locking/locktorture.c
11011
11012 LOGICAL DISK MANAGER SUPPORT (LDM, Windows 2000/XP/Vista Dynamic Disks)
11013 M:      "Richard Russon (FlatCap)" <ldm@flatcap.org>
11014 L:      linux-ntfs-dev@lists.sourceforge.net
11015 S:      Maintained
11016 W:      http://www.linux-ntfs.org/content/view/19/37/
11017 F:      Documentation/admin-guide/ldm.rst
11018 F:      block/partitions/ldm.*
11019
11020 LOGITECH HID GAMING KEYBOARDS
11021 M:      Hans de Goede <hdegoede@redhat.com>
11022 L:      linux-input@vger.kernel.org
11023 S:      Maintained
11024 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
11025 F:      drivers/hid/hid-lg-g15.c
11026
11027 LONTIUM LT8912B MIPI TO HDMI BRIDGE
11028 M:      Adrien Grassein <adrien.grassein@gmail.com>
11029 S:      Maintained
11030 F:      Documentation/devicetree/bindings/display/bridge/lontium,lt8912b.yaml
11031 F:      drivers/gpu/drm/bridge/lontium-lt8912b.c
11032
11033 LSILOGIC MPT FUSION DRIVERS (FC/SAS/SPI)
11034 M:      Sathya Prakash <sathya.prakash@broadcom.com>
11035 M:      Sreekanth Reddy <sreekanth.reddy@broadcom.com>
11036 M:      Suganath Prabu Subramani <suganath-prabu.subramani@broadcom.com>
11037 L:      MPT-FusionLinux.pdl@broadcom.com
11038 L:      linux-scsi@vger.kernel.org
11039 S:      Supported
11040 W:      http://www.avagotech.com/support/
11041 F:      drivers/message/fusion/
11042 F:      drivers/scsi/mpt3sas/
11043
11044 LSILOGIC/SYMBIOS/NCR 53C8XX and 53C1010 PCI-SCSI drivers
11045 M:      Matthew Wilcox <willy@infradead.org>
11046 L:      linux-scsi@vger.kernel.org
11047 S:      Maintained
11048 F:      drivers/scsi/sym53c8xx_2/
11049
11050 LTC1660 DAC DRIVER
11051 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
11052 L:      linux-iio@vger.kernel.org
11053 S:      Maintained
11054 F:      Documentation/devicetree/bindings/iio/dac/lltc,ltc1660.yaml
11055 F:      drivers/iio/dac/ltc1660.c
11056
11057 LTC2947 HARDWARE MONITOR DRIVER
11058 M:      Nuno Sá <nuno.sa@analog.com>
11059 L:      linux-hwmon@vger.kernel.org
11060 S:      Supported
11061 W:      http://ez.analog.com/community/linux-device-drivers
11062 F:      Documentation/devicetree/bindings/hwmon/adi,ltc2947.yaml
11063 F:      drivers/hwmon/ltc2947-core.c
11064 F:      drivers/hwmon/ltc2947-i2c.c
11065 F:      drivers/hwmon/ltc2947-spi.c
11066 F:      drivers/hwmon/ltc2947.h
11067
11068 LTC2983 IIO TEMPERATURE DRIVER
11069 M:      Nuno Sá <nuno.sa@analog.com>
11070 L:      linux-iio@vger.kernel.org
11071 S:      Supported
11072 W:      http://ez.analog.com/community/linux-device-drivers
11073 F:      Documentation/devicetree/bindings/iio/temperature/adi,ltc2983.yaml
11074 F:      drivers/iio/temperature/ltc2983.c
11075
11076 LTC4261 HARDWARE MONITOR DRIVER
11077 M:      Guenter Roeck <linux@roeck-us.net>
11078 L:      linux-hwmon@vger.kernel.org
11079 S:      Maintained
11080 F:      Documentation/hwmon/ltc4261.rst
11081 F:      drivers/hwmon/ltc4261.c
11082
11083 LTC4306 I2C MULTIPLEXER DRIVER
11084 M:      Michael Hennerich <michael.hennerich@analog.com>
11085 L:      linux-i2c@vger.kernel.org
11086 S:      Supported
11087 W:      http://ez.analog.com/community/linux-device-drivers
11088 F:      Documentation/devicetree/bindings/i2c/i2c-mux-ltc4306.txt
11089 F:      drivers/i2c/muxes/i2c-mux-ltc4306.c
11090
11091 LTP (Linux Test Project)
11092 M:      Mike Frysinger <vapier@gentoo.org>
11093 M:      Cyril Hrubis <chrubis@suse.cz>
11094 M:      Wanlong Gao <wanlong.gao@gmail.com>
11095 M:      Jan Stancek <jstancek@redhat.com>
11096 M:      Stanislav Kholmanskikh <stanislav.kholmanskikh@oracle.com>
11097 M:      Alexey Kodanev <alexey.kodanev@oracle.com>
11098 L:      ltp@lists.linux.it (subscribers-only)
11099 S:      Maintained
11100 W:      http://linux-test-project.github.io/
11101 T:      git git://github.com/linux-test-project/ltp.git
11102
11103 LYNX PCS MODULE
11104 M:      Ioana Ciornei <ioana.ciornei@nxp.com>
11105 L:      netdev@vger.kernel.org
11106 S:      Supported
11107 F:      drivers/net/pcs/pcs-lynx.c
11108 F:      include/linux/pcs-lynx.h
11109
11110 M68K ARCHITECTURE
11111 M:      Geert Uytterhoeven <geert@linux-m68k.org>
11112 L:      linux-m68k@lists.linux-m68k.org
11113 S:      Maintained
11114 W:      http://www.linux-m68k.org/
11115 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/linux-m68k.git
11116 F:      arch/m68k/
11117 F:      drivers/zorro/
11118
11119 M68K ON APPLE MACINTOSH
11120 M:      Joshua Thompson <funaho@jurai.org>
11121 L:      linux-m68k@lists.linux-m68k.org
11122 S:      Maintained
11123 W:      http://www.mac.linux-m68k.org/
11124 F:      arch/m68k/mac/
11125 F:      drivers/macintosh/adb-iop.c
11126 F:      drivers/macintosh/via-macii.c
11127
11128 M68K ON HP9000/300
11129 M:      Philip Blundell <philb@gnu.org>
11130 S:      Maintained
11131 W:      http://www.tazenda.demon.co.uk/phil/linux-hp
11132 F:      arch/m68k/hp300/
11133
11134 M88DS3103 MEDIA DRIVER
11135 M:      Antti Palosaari <crope@iki.fi>
11136 L:      linux-media@vger.kernel.org
11137 S:      Maintained
11138 W:      https://linuxtv.org
11139 W:      http://palosaari.fi/linux/
11140 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11141 T:      git git://linuxtv.org/anttip/media_tree.git
11142 F:      drivers/media/dvb-frontends/m88ds3103*
11143
11144 M88RS2000 MEDIA DRIVER
11145 M:      Malcolm Priestley <tvboxspy@gmail.com>
11146 L:      linux-media@vger.kernel.org
11147 S:      Maintained
11148 W:      https://linuxtv.org
11149 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
11150 F:      drivers/media/dvb-frontends/m88rs2000*
11151
11152 MA901 MASTERKIT USB FM RADIO DRIVER
11153 M:      Alexey Klimov <klimov.linux@gmail.com>
11154 L:      linux-media@vger.kernel.org
11155 S:      Maintained
11156 T:      git git://linuxtv.org/media_tree.git
11157 F:      drivers/media/radio/radio-ma901.c
11158
11159 MAC80211
11160 M:      Johannes Berg <johannes@sipsolutions.net>
11161 L:      linux-wireless@vger.kernel.org
11162 S:      Maintained
11163 W:      https://wireless.wiki.kernel.org/
11164 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
11165 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
11166 F:      Documentation/networking/mac80211-injection.rst
11167 F:      Documentation/networking/mac80211_hwsim/mac80211_hwsim.rst
11168 F:      drivers/net/wireless/mac80211_hwsim.[ch]
11169 F:      include/net/mac80211.h
11170 F:      net/mac80211/
11171
11172 MAILBOX API
11173 M:      Jassi Brar <jassisinghbrar@gmail.com>
11174 L:      linux-kernel@vger.kernel.org
11175 S:      Maintained
11176 F:      drivers/mailbox/
11177 F:      include/linux/mailbox_client.h
11178 F:      include/linux/mailbox_controller.h
11179 F:      include/dt-bindings/mailbox/
11180 F:      Documentation/devicetree/bindings/mailbox/
11181
11182 MAILBOX ARM MHUv2
11183 M:      Viresh Kumar <viresh.kumar@linaro.org>
11184 M:      Tushar Khandelwal <Tushar.Khandelwal@arm.com>
11185 L:      linux-kernel@vger.kernel.org
11186 S:      Maintained
11187 F:      drivers/mailbox/arm_mhuv2.c
11188 F:      include/linux/mailbox/arm_mhuv2_message.h
11189 F:      Documentation/devicetree/bindings/mailbox/arm,mhuv2.yaml
11190
11191 MANAGEMENT COMPONENT TRANSPORT PROTOCOL (MCTP)
11192 M:      Jeremy Kerr <jk@codeconstruct.com.au>
11193 M:      Matt Johnston <matt@codeconstruct.com.au>
11194 L:      netdev@vger.kernel.org
11195 S:      Maintained
11196 F:      Documentation/networking/mctp.rst
11197 F:      drivers/net/mctp/
11198 F:      include/net/mctp.h
11199 F:      include/net/mctpdevice.h
11200 F:      include/net/netns/mctp.h
11201 F:      net/mctp/
11202
11203 MAN-PAGES: MANUAL PAGES FOR LINUX -- Sections 2, 3, 4, 5, and 7
11204 M:      Michael Kerrisk <mtk.manpages@gmail.com>
11205 L:      linux-man@vger.kernel.org
11206 S:      Maintained
11207 W:      http://www.kernel.org/doc/man-pages
11208
11209 MARDUK (CREATOR CI40) DEVICE TREE SUPPORT
11210 M:      Rahul Bedarkar <rahulbedarkar89@gmail.com>
11211 L:      linux-mips@vger.kernel.org
11212 S:      Maintained
11213 F:      arch/mips/boot/dts/img/pistachio*
11214
11215 MARVELL 88E6XXX ETHERNET SWITCH FABRIC DRIVER
11216 M:      Andrew Lunn <andrew@lunn.ch>
11217 M:      Vivien Didelot <vivien.didelot@gmail.com>
11218 L:      netdev@vger.kernel.org
11219 S:      Maintained
11220 F:      Documentation/devicetree/bindings/net/dsa/marvell.txt
11221 F:      Documentation/networking/devlink/mv88e6xxx.rst
11222 F:      drivers/net/dsa/mv88e6xxx/
11223 F:      include/linux/dsa/mv88e6xxx.h
11224 F:      include/linux/platform_data/mv88e6xxx.h
11225
11226 MARVELL ARMADA 3700 PHY DRIVERS
11227 M:      Miquel Raynal <miquel.raynal@bootlin.com>
11228 S:      Maintained
11229 F:      Documentation/devicetree/bindings/phy/phy-mvebu-comphy.txt
11230 F:      Documentation/devicetree/bindings/phy/marvell,armada-3700-utmi-phy.yaml
11231 F:      drivers/phy/marvell/phy-mvebu-a3700-comphy.c
11232 F:      drivers/phy/marvell/phy-mvebu-a3700-utmi.c
11233
11234 MARVELL ARMADA DRM SUPPORT
11235 M:      Russell King <linux@armlinux.org.uk>
11236 S:      Maintained
11237 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-devel
11238 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-armada-fixes
11239 F:      Documentation/devicetree/bindings/display/armada/
11240 F:      drivers/gpu/drm/armada/
11241 F:      include/uapi/drm/armada_drm.h
11242
11243 MARVELL CRYPTO DRIVER
11244 M:      Boris Brezillon <bbrezillon@kernel.org>
11245 M:      Arnaud Ebalard <arno@natisbad.org>
11246 M:      Srujana Challa <schalla@marvell.com>
11247 L:      linux-crypto@vger.kernel.org
11248 S:      Maintained
11249 F:      drivers/crypto/marvell/
11250 F:      include/linux/soc/marvell/octeontx2/
11251
11252 MARVELL GIGABIT ETHERNET DRIVERS (skge/sky2)
11253 M:      Mirko Lindner <mlindner@marvell.com>
11254 M:      Stephen Hemminger <stephen@networkplumber.org>
11255 L:      netdev@vger.kernel.org
11256 S:      Maintained
11257 F:      drivers/net/ethernet/marvell/sk*
11258
11259 MARVELL LIBERTAS WIRELESS DRIVER
11260 L:      libertas-dev@lists.infradead.org
11261 S:      Orphan
11262 F:      drivers/net/wireless/marvell/libertas/
11263
11264 MARVELL MACCHIATOBIN SUPPORT
11265 M:      Russell King <linux@armlinux.org.uk>
11266 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11267 S:      Maintained
11268 F:      arch/arm64/boot/dts/marvell/armada-8040-mcbin.dts
11269
11270 MARVELL MV643XX ETHERNET DRIVER
11271 M:      Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com>
11272 L:      netdev@vger.kernel.org
11273 S:      Maintained
11274 F:      drivers/net/ethernet/marvell/mv643xx_eth.*
11275 F:      include/linux/mv643xx.h
11276
11277 MARVELL MV88X3310 PHY DRIVER
11278 M:      Russell King <linux@armlinux.org.uk>
11279 M:      Marek Behún <kabel@kernel.org>
11280 L:      netdev@vger.kernel.org
11281 S:      Maintained
11282 F:      drivers/net/phy/marvell10g.c
11283
11284 MARVELL MVEBU THERMAL DRIVER
11285 M:      Miquel Raynal <miquel.raynal@bootlin.com>
11286 S:      Maintained
11287 F:      drivers/thermal/armada_thermal.c
11288
11289 MARVELL MVNETA ETHERNET DRIVER
11290 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
11291 L:      netdev@vger.kernel.org
11292 S:      Maintained
11293 F:      drivers/net/ethernet/marvell/mvneta.*
11294
11295 MARVELL MVPP2 ETHERNET DRIVER
11296 M:      Marcin Wojtas <mw@semihalf.com>
11297 M:      Russell King <linux@armlinux.org.uk>
11298 L:      netdev@vger.kernel.org
11299 S:      Maintained
11300 F:      Documentation/devicetree/bindings/net/marvell-pp2.txt
11301 F:      drivers/net/ethernet/marvell/mvpp2/
11302
11303 MARVELL MWIFIEX WIRELESS DRIVER
11304 M:      Amitkumar Karwar <amitkarwar@gmail.com>
11305 M:      Ganapathi Bhat <ganapathi017@gmail.com>
11306 M:      Sharvari Harisangam <sharvari.harisangam@nxp.com>
11307 M:      Xinming Hu <huxinming820@gmail.com>
11308 L:      linux-wireless@vger.kernel.org
11309 S:      Maintained
11310 F:      drivers/net/wireless/marvell/mwifiex/
11311
11312 MARVELL MWL8K WIRELESS DRIVER
11313 M:      Lennert Buytenhek <buytenh@wantstofly.org>
11314 L:      linux-wireless@vger.kernel.org
11315 S:      Odd Fixes
11316 F:      drivers/net/wireless/marvell/mwl8k.c
11317
11318 MARVELL NAND CONTROLLER DRIVER
11319 M:      Miquel Raynal <miquel.raynal@bootlin.com>
11320 L:      linux-mtd@lists.infradead.org
11321 S:      Maintained
11322 F:      Documentation/devicetree/bindings/mtd/marvell-nand.txt
11323 F:      drivers/mtd/nand/raw/marvell_nand.c
11324
11325 MARVELL OCTEONTX2 PHYSICAL FUNCTION DRIVER
11326 M:      Sunil Goutham <sgoutham@marvell.com>
11327 M:      Geetha sowjanya <gakula@marvell.com>
11328 M:      Subbaraya Sundeep <sbhatta@marvell.com>
11329 M:      hariprasad <hkelam@marvell.com>
11330 L:      netdev@vger.kernel.org
11331 S:      Supported
11332 F:      drivers/net/ethernet/marvell/octeontx2/nic/
11333 F:      include/linux/soc/marvell/octeontx2/
11334
11335 MARVELL OCTEONTX2 RVU ADMIN FUNCTION DRIVER
11336 M:      Sunil Goutham <sgoutham@marvell.com>
11337 M:      Linu Cherian <lcherian@marvell.com>
11338 M:      Geetha sowjanya <gakula@marvell.com>
11339 M:      Jerin Jacob <jerinj@marvell.com>
11340 M:      hariprasad <hkelam@marvell.com>
11341 M:      Subbaraya Sundeep <sbhatta@marvell.com>
11342 L:      netdev@vger.kernel.org
11343 S:      Supported
11344 F:      Documentation/networking/device_drivers/ethernet/marvell/octeontx2.rst
11345 F:      drivers/net/ethernet/marvell/octeontx2/af/
11346
11347 MARVELL PRESTERA ETHERNET SWITCH DRIVER
11348 M:      Taras Chornyi <tchornyi@marvell.com>
11349 S:      Supported
11350 W:      https://github.com/Marvell-switching/switchdev-prestera
11351 F:      drivers/net/ethernet/marvell/prestera/
11352
11353 MARVELL SOC MMC/SD/SDIO CONTROLLER DRIVER
11354 M:      Nicolas Pitre <nico@fluxnic.net>
11355 S:      Odd Fixes
11356 F:      drivers/mmc/host/mvsdio.*
11357
11358 MARVELL USB MDIO CONTROLLER DRIVER
11359 M:      Tobias Waldekranz <tobias@waldekranz.com>
11360 L:      netdev@vger.kernel.org
11361 S:      Maintained
11362 F:      Documentation/devicetree/bindings/net/marvell,mvusb.yaml
11363 F:      drivers/net/mdio/mdio-mvusb.c
11364
11365 MARVELL XENON MMC/SD/SDIO HOST CONTROLLER DRIVER
11366 M:      Hu Ziji <huziji@marvell.com>
11367 L:      linux-mmc@vger.kernel.org
11368 S:      Supported
11369 F:      Documentation/devicetree/bindings/mmc/marvell,xenon-sdhci.txt
11370 F:      drivers/mmc/host/sdhci-xenon*
11371
11372 MATROX FRAMEBUFFER DRIVER
11373 L:      linux-fbdev@vger.kernel.org
11374 S:      Orphan
11375 F:      drivers/video/fbdev/matrox/matroxfb_*
11376 F:      include/uapi/linux/matroxfb.h
11377
11378 MAX15301 DRIVER
11379 M:      Daniel Nilsson <daniel.nilsson@flex.com>
11380 L:      linux-hwmon@vger.kernel.org
11381 S:      Maintained
11382 F:      Documentation/hwmon/max15301.rst
11383 F:      drivers/hwmon/pmbus/max15301.c
11384
11385 MAX16065 HARDWARE MONITOR DRIVER
11386 M:      Guenter Roeck <linux@roeck-us.net>
11387 L:      linux-hwmon@vger.kernel.org
11388 S:      Maintained
11389 F:      Documentation/hwmon/max16065.rst
11390 F:      drivers/hwmon/max16065.c
11391
11392 MAX2175 SDR TUNER DRIVER
11393 M:      Ramesh Shanmugasundaram <rashanmu@gmail.com>
11394 L:      linux-media@vger.kernel.org
11395 S:      Maintained
11396 T:      git git://linuxtv.org/media_tree.git
11397 F:      Documentation/devicetree/bindings/media/i2c/max2175.txt
11398 F:      Documentation/userspace-api/media/drivers/max2175.rst
11399 F:      drivers/media/i2c/max2175*
11400 F:      include/uapi/linux/max2175.h
11401
11402 MAX6650 HARDWARE MONITOR AND FAN CONTROLLER DRIVER
11403 L:      linux-hwmon@vger.kernel.org
11404 S:      Orphan
11405 F:      Documentation/hwmon/max6650.rst
11406 F:      drivers/hwmon/max6650.c
11407
11408 MAX6697 HARDWARE MONITOR DRIVER
11409 M:      Guenter Roeck <linux@roeck-us.net>
11410 L:      linux-hwmon@vger.kernel.org
11411 S:      Maintained
11412 F:      Documentation/devicetree/bindings/hwmon/max6697.txt
11413 F:      Documentation/hwmon/max6697.rst
11414 F:      drivers/hwmon/max6697.c
11415 F:      include/linux/platform_data/max6697.h
11416
11417 MAX9286 QUAD GMSL DESERIALIZER DRIVER
11418 M:      Jacopo Mondi <jacopo+renesas@jmondi.org>
11419 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
11420 M:      Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
11421 M:      Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
11422 L:      linux-media@vger.kernel.org
11423 S:      Maintained
11424 F:      Documentation/devicetree/bindings/media/i2c/maxim,max9286.yaml
11425 F:      drivers/media/i2c/max9286.c
11426
11427 MAX9860 MONO AUDIO VOICE CODEC DRIVER
11428 M:      Peter Rosin <peda@axentia.se>
11429 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
11430 S:      Maintained
11431 F:      Documentation/devicetree/bindings/sound/max9860.txt
11432 F:      sound/soc/codecs/max9860.*
11433
11434 MAXBOTIX ULTRASONIC RANGER IIO DRIVER
11435 M:      Andreas Klinger <ak@it-klinger.de>
11436 L:      linux-iio@vger.kernel.org
11437 S:      Maintained
11438 F:      Documentation/devicetree/bindings/iio/proximity/maxbotix,mb1232.yaml
11439 F:      drivers/iio/proximity/mb1232.c
11440
11441 MAXIM MAX77650 PMIC MFD DRIVER
11442 M:      Bartosz Golaszewski <brgl@bgdev.pl>
11443 L:      linux-kernel@vger.kernel.org
11444 S:      Maintained
11445 F:      Documentation/devicetree/bindings/*/*max77650.yaml
11446 F:      Documentation/devicetree/bindings/*/max77650*.yaml
11447 F:      drivers/gpio/gpio-max77650.c
11448 F:      drivers/input/misc/max77650-onkey.c
11449 F:      drivers/leds/leds-max77650.c
11450 F:      drivers/mfd/max77650.c
11451 F:      drivers/power/supply/max77650-charger.c
11452 F:      drivers/regulator/max77650-regulator.c
11453 F:      include/linux/mfd/max77650.h
11454
11455 MAXIM MAX77802 PMIC REGULATOR DEVICE DRIVER
11456 M:      Javier Martinez Canillas <javier@dowhile0.org>
11457 L:      linux-kernel@vger.kernel.org
11458 S:      Supported
11459 F:      Documentation/devicetree/bindings/*/*max77802.txt
11460 F:      drivers/regulator/max77802-regulator.c
11461 F:      include/dt-bindings/*/*max77802.h
11462
11463 MAXIM MUIC CHARGER DRIVERS FOR EXYNOS BASED BOARDS
11464 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
11465 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
11466 L:      linux-pm@vger.kernel.org
11467 S:      Supported
11468 F:      drivers/power/supply/max14577_charger.c
11469 F:      drivers/power/supply/max77693_charger.c
11470
11471 MAXIM PMIC AND MUIC DRIVERS FOR EXYNOS BASED BOARDS
11472 M:      Chanwoo Choi <cw00.choi@samsung.com>
11473 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
11474 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
11475 L:      linux-kernel@vger.kernel.org
11476 S:      Supported
11477 F:      Documentation/devicetree/bindings/*/max77686.txt
11478 F:      Documentation/devicetree/bindings/clock/maxim,max77686.txt
11479 F:      Documentation/devicetree/bindings/mfd/max14577.txt
11480 F:      Documentation/devicetree/bindings/mfd/max77693.txt
11481 F:      drivers/*/max14577*.c
11482 F:      drivers/*/max77686*.c
11483 F:      drivers/*/max77693*.c
11484 F:      drivers/clk/clk-max77686.c
11485 F:      drivers/extcon/extcon-max14577.c
11486 F:      drivers/extcon/extcon-max77693.c
11487 F:      drivers/rtc/rtc-max77686.c
11488 F:      include/linux/mfd/max14577*.h
11489 F:      include/linux/mfd/max77686*.h
11490 F:      include/linux/mfd/max77693*.h
11491
11492 MAXIRADIO FM RADIO RECEIVER DRIVER
11493 M:      Hans Verkuil <hverkuil@xs4all.nl>
11494 L:      linux-media@vger.kernel.org
11495 S:      Maintained
11496 W:      https://linuxtv.org
11497 T:      git git://linuxtv.org/media_tree.git
11498 F:      drivers/media/radio/radio-maxiradio*
11499
11500 MAXLINEAR ETHERNET PHY DRIVER
11501 M:      Xu Liang <lxu@maxlinear.com>
11502 L:      netdev@vger.kernel.org
11503 S:      Supported
11504 F:      drivers/net/phy/mxl-gpy.c
11505
11506 MCBA MICROCHIP CAN BUS ANALYZER TOOL DRIVER
11507 R:      Yasushi SHOJI <yashi@spacecubics.com>
11508 L:      linux-can@vger.kernel.org
11509 S:      Maintained
11510 F:      drivers/net/can/usb/mcba_usb.c
11511
11512 MCAN MMIO DEVICE DRIVER
11513 M:      Chandrasekar Ramakrishnan <rcsekar@samsung.com>
11514 L:      linux-can@vger.kernel.org
11515 S:      Maintained
11516 F:      Documentation/devicetree/bindings/net/can/bosch,m_can.yaml
11517 F:      drivers/net/can/m_can/m_can.c
11518 F:      drivers/net/can/m_can/m_can.h
11519 F:      drivers/net/can/m_can/m_can_platform.c
11520
11521 MCP2221A MICROCHIP USB-HID TO I2C BRIDGE DRIVER
11522 M:      Rishi Gupta <gupt21@gmail.com>
11523 L:      linux-i2c@vger.kernel.org
11524 L:      linux-input@vger.kernel.org
11525 S:      Maintained
11526 F:      drivers/hid/hid-mcp2221.c
11527
11528 MCP251XFD SPI-CAN NETWORK DRIVER
11529 M:      Marc Kleine-Budde <mkl@pengutronix.de>
11530 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
11531 R:      Thomas Kopp <thomas.kopp@microchip.com>
11532 L:      linux-can@vger.kernel.org
11533 S:      Maintained
11534 F:      Documentation/devicetree/bindings/net/can/microchip,mcp251xfd.yaml
11535 F:      drivers/net/can/spi/mcp251xfd/
11536
11537 MCP4018 AND MCP4531 MICROCHIP DIGITAL POTENTIOMETER DRIVERS
11538 M:      Peter Rosin <peda@axentia.se>
11539 L:      linux-iio@vger.kernel.org
11540 S:      Maintained
11541 F:      Documentation/ABI/testing/sysfs-bus-iio-potentiometer-mcp4531
11542 F:      drivers/iio/potentiometer/mcp4018.c
11543 F:      drivers/iio/potentiometer/mcp4531.c
11544
11545 MCR20A IEEE-802.15.4 RADIO DRIVER
11546 M:      Xue Liu <liuxuenetmail@gmail.com>
11547 L:      linux-wpan@vger.kernel.org
11548 S:      Maintained
11549 W:      https://github.com/xueliu/mcr20a-linux
11550 F:      Documentation/devicetree/bindings/net/ieee802154/mcr20a.txt
11551 F:      drivers/net/ieee802154/mcr20a.c
11552 F:      drivers/net/ieee802154/mcr20a.h
11553
11554 MEASUREMENT COMPUTING CIO-DAC IIO DRIVER
11555 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
11556 L:      linux-iio@vger.kernel.org
11557 S:      Maintained
11558 F:      drivers/iio/dac/cio-dac.c
11559
11560 MEDIA CONTROLLER FRAMEWORK
11561 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
11562 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11563 L:      linux-media@vger.kernel.org
11564 S:      Supported
11565 W:      https://www.linuxtv.org
11566 T:      git git://linuxtv.org/media_tree.git
11567 F:      drivers/media/mc/
11568 F:      include/media/media-*.h
11569 F:      include/uapi/linux/media.h
11570
11571 MEDIA DRIVER FOR FREESCALE IMX PXP
11572 M:      Philipp Zabel <p.zabel@pengutronix.de>
11573 L:      linux-media@vger.kernel.org
11574 S:      Maintained
11575 T:      git git://linuxtv.org/media_tree.git
11576 F:      drivers/media/platform/imx-pxp.[ch]
11577
11578 MEDIA DRIVERS FOR ASCOT2E
11579 M:      Sergey Kozlov <serjk@netup.ru>
11580 M:      Abylay Ospan <aospan@netup.ru>
11581 L:      linux-media@vger.kernel.org
11582 S:      Supported
11583 W:      https://linuxtv.org
11584 W:      http://netup.tv/
11585 T:      git git://linuxtv.org/media_tree.git
11586 F:      drivers/media/dvb-frontends/ascot2e*
11587
11588 MEDIA DRIVERS FOR CXD2099AR CI CONTROLLERS
11589 M:      Jasmin Jessich <jasmin@anw.at>
11590 L:      linux-media@vger.kernel.org
11591 S:      Maintained
11592 W:      https://linuxtv.org
11593 T:      git git://linuxtv.org/media_tree.git
11594 F:      drivers/media/dvb-frontends/cxd2099*
11595
11596 MEDIA DRIVERS FOR CXD2841ER
11597 M:      Sergey Kozlov <serjk@netup.ru>
11598 M:      Abylay Ospan <aospan@netup.ru>
11599 L:      linux-media@vger.kernel.org
11600 S:      Supported
11601 W:      https://linuxtv.org
11602 W:      http://netup.tv/
11603 T:      git git://linuxtv.org/media_tree.git
11604 F:      drivers/media/dvb-frontends/cxd2841er*
11605
11606 MEDIA DRIVERS FOR CXD2880
11607 M:      Yasunari Takiguchi <Yasunari.Takiguchi@sony.com>
11608 L:      linux-media@vger.kernel.org
11609 S:      Supported
11610 W:      http://linuxtv.org/
11611 T:      git git://linuxtv.org/media_tree.git
11612 F:      drivers/media/dvb-frontends/cxd2880/*
11613 F:      drivers/media/spi/cxd2880*
11614
11615 MEDIA DRIVERS FOR DIGITAL DEVICES PCIE DEVICES
11616 L:      linux-media@vger.kernel.org
11617 S:      Orphan
11618 W:      https://linuxtv.org
11619 T:      git git://linuxtv.org/media_tree.git
11620 F:      drivers/media/pci/ddbridge/*
11621
11622 MEDIA DRIVERS FOR FREESCALE IMX
11623 M:      Steve Longerbeam <slongerbeam@gmail.com>
11624 M:      Philipp Zabel <p.zabel@pengutronix.de>
11625 L:      linux-media@vger.kernel.org
11626 S:      Maintained
11627 T:      git git://linuxtv.org/media_tree.git
11628 F:      Documentation/admin-guide/media/imx.rst
11629 F:      Documentation/devicetree/bindings/media/imx.txt
11630 F:      drivers/staging/media/imx/
11631 F:      include/linux/imx-media.h
11632 F:      include/media/imx.h
11633
11634 MEDIA DRIVERS FOR FREESCALE IMX7
11635 M:      Rui Miguel Silva <rmfrfs@gmail.com>
11636 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11637 L:      linux-media@vger.kernel.org
11638 S:      Maintained
11639 T:      git git://linuxtv.org/media_tree.git
11640 F:      Documentation/admin-guide/media/imx7.rst
11641 F:      Documentation/devicetree/bindings/media/nxp,imx7-csi.yaml
11642 F:      Documentation/devicetree/bindings/media/nxp,imx7-mipi-csi2.yaml
11643 F:      drivers/staging/media/imx/imx7-media-csi.c
11644 F:      drivers/staging/media/imx/imx7-mipi-csis.c
11645
11646 MEDIA DRIVERS FOR HELENE
11647 M:      Abylay Ospan <aospan@netup.ru>
11648 L:      linux-media@vger.kernel.org
11649 S:      Supported
11650 W:      https://linuxtv.org
11651 W:      http://netup.tv/
11652 T:      git git://linuxtv.org/media_tree.git
11653 F:      drivers/media/dvb-frontends/helene*
11654
11655 MEDIA DRIVERS FOR HORUS3A
11656 M:      Sergey Kozlov <serjk@netup.ru>
11657 M:      Abylay Ospan <aospan@netup.ru>
11658 L:      linux-media@vger.kernel.org
11659 S:      Supported
11660 W:      https://linuxtv.org
11661 W:      http://netup.tv/
11662 T:      git git://linuxtv.org/media_tree.git
11663 F:      drivers/media/dvb-frontends/horus3a*
11664
11665 MEDIA DRIVERS FOR LNBH25
11666 M:      Sergey Kozlov <serjk@netup.ru>
11667 M:      Abylay Ospan <aospan@netup.ru>
11668 L:      linux-media@vger.kernel.org
11669 S:      Supported
11670 W:      https://linuxtv.org
11671 W:      http://netup.tv/
11672 T:      git git://linuxtv.org/media_tree.git
11673 F:      drivers/media/dvb-frontends/lnbh25*
11674
11675 MEDIA DRIVERS FOR MXL5XX TUNER DEMODULATORS
11676 L:      linux-media@vger.kernel.org
11677 S:      Orphan
11678 W:      https://linuxtv.org
11679 T:      git git://linuxtv.org/media_tree.git
11680 F:      drivers/media/dvb-frontends/mxl5xx*
11681
11682 MEDIA DRIVERS FOR NETUP PCI UNIVERSAL DVB devices
11683 M:      Sergey Kozlov <serjk@netup.ru>
11684 M:      Abylay Ospan <aospan@netup.ru>
11685 L:      linux-media@vger.kernel.org
11686 S:      Supported
11687 W:      https://linuxtv.org
11688 W:      http://netup.tv/
11689 T:      git git://linuxtv.org/media_tree.git
11690 F:      drivers/media/pci/netup_unidvb/*
11691
11692 MEDIA DRIVERS FOR NVIDIA TEGRA - VDE
11693 M:      Dmitry Osipenko <digetx@gmail.com>
11694 L:      linux-media@vger.kernel.org
11695 L:      linux-tegra@vger.kernel.org
11696 S:      Maintained
11697 T:      git git://linuxtv.org/media_tree.git
11698 F:      Documentation/devicetree/bindings/media/nvidia,tegra-vde.txt
11699 F:      drivers/staging/media/tegra-vde/
11700
11701 MEDIA DRIVERS FOR RENESAS - CEU
11702 M:      Jacopo Mondi <jacopo@jmondi.org>
11703 L:      linux-media@vger.kernel.org
11704 L:      linux-renesas-soc@vger.kernel.org
11705 S:      Supported
11706 T:      git git://linuxtv.org/media_tree.git
11707 F:      Documentation/devicetree/bindings/media/renesas,ceu.yaml
11708 F:      drivers/media/platform/renesas-ceu.c
11709 F:      include/media/drv-intf/renesas-ceu.h
11710
11711 MEDIA DRIVERS FOR RENESAS - DRIF
11712 M:      Fabrizio Castro <fabrizio.castro.jz@renesas.com>
11713 L:      linux-media@vger.kernel.org
11714 L:      linux-renesas-soc@vger.kernel.org
11715 S:      Supported
11716 T:      git git://linuxtv.org/media_tree.git
11717 F:      Documentation/devicetree/bindings/media/renesas,drif.yaml
11718 F:      drivers/media/platform/rcar_drif.c
11719
11720 MEDIA DRIVERS FOR RENESAS - FCP
11721 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11722 L:      linux-media@vger.kernel.org
11723 L:      linux-renesas-soc@vger.kernel.org
11724 S:      Supported
11725 T:      git git://linuxtv.org/media_tree.git
11726 F:      Documentation/devicetree/bindings/media/renesas,fcp.yaml
11727 F:      drivers/media/platform/rcar-fcp.c
11728 F:      include/media/rcar-fcp.h
11729
11730 MEDIA DRIVERS FOR RENESAS - FDP1
11731 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
11732 L:      linux-media@vger.kernel.org
11733 L:      linux-renesas-soc@vger.kernel.org
11734 S:      Supported
11735 T:      git git://linuxtv.org/media_tree.git
11736 F:      Documentation/devicetree/bindings/media/renesas,fdp1.yaml
11737 F:      drivers/media/platform/rcar_fdp1.c
11738
11739 MEDIA DRIVERS FOR RENESAS - VIN
11740 M:      Niklas Söderlund <niklas.soderlund@ragnatech.se>
11741 L:      linux-media@vger.kernel.org
11742 L:      linux-renesas-soc@vger.kernel.org
11743 S:      Supported
11744 T:      git git://linuxtv.org/media_tree.git
11745 F:      Documentation/devicetree/bindings/media/renesas,csi2.yaml
11746 F:      Documentation/devicetree/bindings/media/renesas,isp.yaml
11747 F:      Documentation/devicetree/bindings/media/renesas,vin.yaml
11748 F:      drivers/media/platform/rcar-vin/
11749
11750 MEDIA DRIVERS FOR RENESAS - VSP1
11751 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
11752 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
11753 L:      linux-media@vger.kernel.org
11754 L:      linux-renesas-soc@vger.kernel.org
11755 S:      Supported
11756 T:      git git://linuxtv.org/media_tree.git
11757 F:      Documentation/devicetree/bindings/media/renesas,vsp1.yaml
11758 F:      drivers/media/platform/vsp1/
11759
11760 MEDIA DRIVERS FOR ST STV0910 DEMODULATOR ICs
11761 L:      linux-media@vger.kernel.org
11762 S:      Orphan
11763 W:      https://linuxtv.org
11764 T:      git git://linuxtv.org/media_tree.git
11765 F:      drivers/media/dvb-frontends/stv0910*
11766
11767 MEDIA DRIVERS FOR ST STV6111 TUNER ICs
11768 L:      linux-media@vger.kernel.org
11769 S:      Orphan
11770 W:      https://linuxtv.org
11771 T:      git git://linuxtv.org/media_tree.git
11772 F:      drivers/media/dvb-frontends/stv6111*
11773
11774 MEDIA DRIVERS FOR STM32 - DCMI
11775 M:      Hugues Fruchet <hugues.fruchet@foss.st.com>
11776 L:      linux-media@vger.kernel.org
11777 S:      Supported
11778 T:      git git://linuxtv.org/media_tree.git
11779 F:      Documentation/devicetree/bindings/media/st,stm32-dcmi.yaml
11780 F:      drivers/media/platform/stm32/stm32-dcmi.c
11781
11782 MEDIA INPUT INFRASTRUCTURE (V4L/DVB)
11783 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
11784 L:      linux-media@vger.kernel.org
11785 S:      Maintained
11786 W:      https://linuxtv.org
11787 Q:      http://patchwork.kernel.org/project/linux-media/list/
11788 T:      git git://linuxtv.org/media_tree.git
11789 F:      Documentation/admin-guide/media/
11790 F:      Documentation/devicetree/bindings/media/
11791 F:      Documentation/driver-api/media/
11792 F:      Documentation/userspace-api/media/
11793 F:      drivers/media/
11794 F:      drivers/staging/media/
11795 F:      include/linux/platform_data/media/
11796 F:      include/media/
11797 F:      include/uapi/linux/dvb/
11798 F:      include/uapi/linux/ivtv*
11799 F:      include/uapi/linux/media.h
11800 F:      include/uapi/linux/meye.h
11801 F:      include/uapi/linux/uvcvideo.h
11802 F:      include/uapi/linux/v4l2-*
11803 F:      include/uapi/linux/videodev2.h
11804
11805 MEDIATEK BLUETOOTH DRIVER
11806 M:      Sean Wang <sean.wang@mediatek.com>
11807 L:      linux-bluetooth@vger.kernel.org
11808 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
11809 S:      Maintained
11810 F:      Documentation/devicetree/bindings/net/mediatek-bluetooth.txt
11811 F:      drivers/bluetooth/btmtkuart.c
11812
11813 MEDIATEK BOARD LEVEL SHUTDOWN DRIVERS
11814 M:      Sean Wang <sean.wang@mediatek.com>
11815 L:      linux-pm@vger.kernel.org
11816 S:      Maintained
11817 F:      Documentation/devicetree/bindings/power/reset/mt6323-poweroff.txt
11818 F:      drivers/power/reset/mt6323-poweroff.c
11819
11820 MEDIATEK CIR DRIVER
11821 M:      Sean Wang <sean.wang@mediatek.com>
11822 S:      Maintained
11823 F:      drivers/media/rc/mtk-cir.c
11824
11825 MEDIATEK DMA DRIVER
11826 M:      Sean Wang <sean.wang@mediatek.com>
11827 L:      dmaengine@vger.kernel.org
11828 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11829 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
11830 S:      Maintained
11831 F:      Documentation/devicetree/bindings/dma/mtk-*
11832 F:      drivers/dma/mediatek/
11833
11834 MEDIATEK ETHERNET DRIVER
11835 M:      Felix Fietkau <nbd@nbd.name>
11836 M:      John Crispin <john@phrozen.org>
11837 M:      Sean Wang <sean.wang@mediatek.com>
11838 M:      Mark Lee <Mark-MC.Lee@mediatek.com>
11839 L:      netdev@vger.kernel.org
11840 S:      Maintained
11841 F:      drivers/net/ethernet/mediatek/
11842
11843 MEDIATEK I2C CONTROLLER DRIVER
11844 M:      Qii Wang <qii.wang@mediatek.com>
11845 L:      linux-i2c@vger.kernel.org
11846 S:      Maintained
11847 F:      Documentation/devicetree/bindings/i2c/i2c-mt65xx.txt
11848 F:      drivers/i2c/busses/i2c-mt65xx.c
11849
11850 MEDIATEK IOMMU DRIVER
11851 M:      Yong Wu <yong.wu@mediatek.com>
11852 L:      iommu@lists.linux-foundation.org
11853 L:      iommu@lists.linux.dev
11854 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
11855 S:      Supported
11856 F:      Documentation/devicetree/bindings/iommu/mediatek*
11857 F:      drivers/iommu/mtk_iommu*
11858 F:      include/dt-bindings/memory/mt*-port.h
11859
11860 MEDIATEK JPEG DRIVER
11861 M:      Rick Chang <rick.chang@mediatek.com>
11862 M:      Bin Liu <bin.liu@mediatek.com>
11863 S:      Supported
11864 F:      Documentation/devicetree/bindings/media/mediatek-jpeg-decoder.txt
11865 F:      drivers/media/platform/mtk-jpeg/
11866
11867 MEDIATEK MDP DRIVER
11868 M:      Minghsiu Tsai <minghsiu.tsai@mediatek.com>
11869 M:      Houlong Wei <houlong.wei@mediatek.com>
11870 M:      Andrew-CT Chen <andrew-ct.chen@mediatek.com>
11871 S:      Supported
11872 F:      Documentation/devicetree/bindings/media/mediatek-mdp.txt
11873 F:      drivers/media/platform/mtk-mdp/
11874 F:      drivers/media/platform/mtk-vpu/
11875
11876 MEDIATEK MEDIA DRIVER
11877 M:      Tiffany Lin <tiffany.lin@mediatek.com>
11878 M:      Andrew-CT Chen <andrew-ct.chen@mediatek.com>
11879 S:      Supported
11880 F:      Documentation/devicetree/bindings/media/mediatek-vcodec.txt
11881 F:      Documentation/devicetree/bindings/media/mediatek-vpu.txt
11882 F:      drivers/media/platform/mtk-vcodec/
11883 F:      drivers/media/platform/mtk-vpu/
11884
11885 MEDIATEK MMC/SD/SDIO DRIVER
11886 M:      Chaotian Jing <chaotian.jing@mediatek.com>
11887 S:      Maintained
11888 F:      Documentation/devicetree/bindings/mmc/mtk-sd.yaml
11889 F:      drivers/mmc/host/mtk-sd.c
11890
11891 MEDIATEK MT76 WIRELESS LAN DRIVER
11892 M:      Felix Fietkau <nbd@nbd.name>
11893 M:      Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
11894 R:      Ryder Lee <ryder.lee@mediatek.com>
11895 L:      linux-wireless@vger.kernel.org
11896 S:      Maintained
11897 F:      drivers/net/wireless/mediatek/mt76/
11898
11899 MEDIATEK MT7601U WIRELESS LAN DRIVER
11900 M:      Jakub Kicinski <kubakici@wp.pl>
11901 L:      linux-wireless@vger.kernel.org
11902 S:      Maintained
11903 F:      drivers/net/wireless/mediatek/mt7601u/
11904
11905 MEDIATEK MT7621 CLOCK DRIVER
11906 M:      Sergio Paracuellos <sergio.paracuellos@gmail.com>
11907 S:      Maintained
11908 F:      Documentation/devicetree/bindings/clock/mediatek,mt7621-sysc.yaml
11909 F:      drivers/clk/ralink/clk-mt7621.c
11910
11911 MEDIATEK MT7621/28/88 I2C DRIVER
11912 M:      Stefan Roese <sr@denx.de>
11913 L:      linux-i2c@vger.kernel.org
11914 S:      Maintained
11915 F:      Documentation/devicetree/bindings/i2c/i2c-mt7621.txt
11916 F:      drivers/i2c/busses/i2c-mt7621.c
11917
11918 MEDIATEK MT7621 PHY PCI DRIVER
11919 M:      Sergio Paracuellos <sergio.paracuellos@gmail.com>
11920 S:      Maintained
11921 F:      Documentation/devicetree/bindings/phy/mediatek,mt7621-pci-phy.yaml
11922 F:      drivers/phy/ralink/phy-mt7621-pci.c
11923
11924 MEDIATEK NAND CONTROLLER DRIVER
11925 L:      linux-mtd@lists.infradead.org
11926 S:      Orphan
11927 F:      Documentation/devicetree/bindings/mtd/mtk-nand.txt
11928 F:      drivers/mtd/nand/raw/mtk_*
11929
11930 MEDIATEK PMIC LED DRIVER
11931 M:      Sean Wang <sean.wang@mediatek.com>
11932 S:      Maintained
11933 F:      Documentation/devicetree/bindings/leds/leds-mt6323.txt
11934 F:      drivers/leds/leds-mt6323.c
11935
11936 MEDIATEK RANDOM NUMBER GENERATOR SUPPORT
11937 M:      Sean Wang <sean.wang@mediatek.com>
11938 S:      Maintained
11939 F:      drivers/char/hw_random/mtk-rng.c
11940
11941 MEDIATEK SWITCH DRIVER
11942 M:      Sean Wang <sean.wang@mediatek.com>
11943 M:      Landen Chao <Landen.Chao@mediatek.com>
11944 M:      DENG Qingfang <dqfext@gmail.com>
11945 L:      netdev@vger.kernel.org
11946 S:      Maintained
11947 F:      drivers/net/dsa/mt7530.*
11948 F:      net/dsa/tag_mtk.c
11949
11950 MEDIATEK USB3 DRD IP DRIVER
11951 M:      Chunfeng Yun <chunfeng.yun@mediatek.com>
11952 L:      linux-usb@vger.kernel.org
11953 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
11954 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
11955 S:      Maintained
11956 F:      Documentation/devicetree/bindings/usb/mediatek,*
11957 F:      drivers/usb/host/xhci-mtk*
11958 F:      drivers/usb/mtu3/
11959
11960 MEGACHIPS STDPXXXX-GE-B850V3-FW LVDS/DP++ BRIDGES
11961 M:      Peter Senna Tschudin <peter.senna@gmail.com>
11962 M:      Martin Donnelly <martin.donnelly@ge.com>
11963 M:      Martyn Welch <martyn.welch@collabora.co.uk>
11964 S:      Maintained
11965 F:      Documentation/devicetree/bindings/display/bridge/megachips-stdpxxxx-ge-b850v3-fw.txt
11966 F:      drivers/gpu/drm/bridge/megachips-stdpxxxx-ge-b850v3-fw.c
11967
11968 MEGARAID SCSI/SAS DRIVERS
11969 M:      Kashyap Desai <kashyap.desai@broadcom.com>
11970 M:      Sumit Saxena <sumit.saxena@broadcom.com>
11971 M:      Shivasharan S <shivasharan.srikanteshwara@broadcom.com>
11972 L:      megaraidlinux.pdl@broadcom.com
11973 L:      linux-scsi@vger.kernel.org
11974 S:      Maintained
11975 W:      http://www.avagotech.com/support/
11976 F:      Documentation/scsi/megaraid.rst
11977 F:      drivers/scsi/megaraid.*
11978 F:      drivers/scsi/megaraid/
11979
11980 MELEXIS MLX90614 DRIVER
11981 M:      Crt Mori <cmo@melexis.com>
11982 L:      linux-iio@vger.kernel.org
11983 S:      Supported
11984 W:      http://www.melexis.com
11985 F:      drivers/iio/temperature/mlx90614.c
11986
11987 MELEXIS MLX90632 DRIVER
11988 M:      Crt Mori <cmo@melexis.com>
11989 L:      linux-iio@vger.kernel.org
11990 S:      Supported
11991 W:      http://www.melexis.com
11992 F:      drivers/iio/temperature/mlx90632.c
11993
11994 MELFAS MIP4 TOUCHSCREEN DRIVER
11995 M:      Sangwon Jee <jeesw@melfas.com>
11996 S:      Supported
11997 W:      http://www.melfas.com
11998 F:      Documentation/devicetree/bindings/input/touchscreen/melfas_mip4.txt
11999 F:      drivers/input/touchscreen/melfas_mip4.c
12000
12001 MELLANOX BLUEFIELD I2C DRIVER
12002 M:      Khalil Blaiech <kblaiech@nvidia.com>
12003 L:      linux-i2c@vger.kernel.org
12004 S:      Supported
12005 F:      Documentation/devicetree/bindings/i2c/mellanox,i2c-mlxbf.yaml
12006 F:      drivers/i2c/busses/i2c-mlxbf.c
12007
12008 MELLANOX ETHERNET DRIVER (mlx4_en)
12009 M:      Tariq Toukan <tariqt@nvidia.com>
12010 L:      netdev@vger.kernel.org
12011 S:      Supported
12012 W:      http://www.mellanox.com
12013 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12014 F:      drivers/net/ethernet/mellanox/mlx4/en_*
12015
12016 MELLANOX ETHERNET DRIVER (mlx5e)
12017 M:      Saeed Mahameed <saeedm@nvidia.com>
12018 L:      netdev@vger.kernel.org
12019 S:      Supported
12020 W:      http://www.mellanox.com
12021 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12022 F:      drivers/net/ethernet/mellanox/mlx5/core/en_*
12023
12024 MELLANOX ETHERNET INNOVA DRIVERS
12025 R:      Boris Pismenny <borisp@nvidia.com>
12026 L:      netdev@vger.kernel.org
12027 S:      Supported
12028 W:      http://www.mellanox.com
12029 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12030 F:      drivers/net/ethernet/mellanox/mlx5/core/accel/*
12031 F:      drivers/net/ethernet/mellanox/mlx5/core/en_accel/*
12032 F:      drivers/net/ethernet/mellanox/mlx5/core/fpga/*
12033 F:      include/linux/mlx5/mlx5_ifc_fpga.h
12034
12035 MELLANOX ETHERNET SWITCH DRIVERS
12036 M:      Jiri Pirko <jiri@nvidia.com>
12037 M:      Ido Schimmel <idosch@nvidia.com>
12038 L:      netdev@vger.kernel.org
12039 S:      Supported
12040 W:      http://www.mellanox.com
12041 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12042 F:      drivers/net/ethernet/mellanox/mlxsw/
12043 F:      tools/testing/selftests/drivers/net/mlxsw/
12044
12045 MELLANOX FIRMWARE FLASH LIBRARY (mlxfw)
12046 M:      mlxsw@nvidia.com
12047 L:      netdev@vger.kernel.org
12048 S:      Supported
12049 W:      http://www.mellanox.com
12050 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12051 F:      drivers/net/ethernet/mellanox/mlxfw/
12052
12053 MELLANOX HARDWARE PLATFORM SUPPORT
12054 M:      Hans de Goede <hdegoede@redhat.com>
12055 M:      Mark Gross <mgross@linux.intel.com>
12056 M:      Vadim Pasternak <vadimp@nvidia.com>
12057 L:      platform-driver-x86@vger.kernel.org
12058 S:      Supported
12059 F:      Documentation/ABI/testing/sysfs-platform-mellanox-bootctl
12060 F:      drivers/platform/mellanox/
12061 F:      include/linux/platform_data/mlxreg.h
12062
12063 MELLANOX MLX4 core VPI driver
12064 M:      Tariq Toukan <tariqt@nvidia.com>
12065 L:      netdev@vger.kernel.org
12066 L:      linux-rdma@vger.kernel.org
12067 S:      Supported
12068 W:      http://www.mellanox.com
12069 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12070 F:      drivers/net/ethernet/mellanox/mlx4/
12071 F:      include/linux/mlx4/
12072
12073 MELLANOX MLX4 IB driver
12074 M:      Yishai Hadas <yishaih@nvidia.com>
12075 L:      linux-rdma@vger.kernel.org
12076 S:      Supported
12077 W:      http://www.mellanox.com
12078 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
12079 F:      drivers/infiniband/hw/mlx4/
12080 F:      include/linux/mlx4/
12081 F:      include/uapi/rdma/mlx4-abi.h
12082
12083 MELLANOX MLX5 core VPI driver
12084 M:      Saeed Mahameed <saeedm@nvidia.com>
12085 M:      Leon Romanovsky <leonro@nvidia.com>
12086 L:      netdev@vger.kernel.org
12087 L:      linux-rdma@vger.kernel.org
12088 S:      Supported
12089 W:      http://www.mellanox.com
12090 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
12091 F:      Documentation/networking/device_drivers/ethernet/mellanox/
12092 F:      drivers/net/ethernet/mellanox/mlx5/core/
12093 F:      include/linux/mlx5/
12094
12095 MELLANOX MLX5 IB driver
12096 M:      Leon Romanovsky <leonro@nvidia.com>
12097 L:      linux-rdma@vger.kernel.org
12098 S:      Supported
12099 W:      http://www.mellanox.com
12100 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
12101 F:      drivers/infiniband/hw/mlx5/
12102 F:      include/linux/mlx5/
12103 F:      include/uapi/rdma/mlx5-abi.h
12104
12105 MELLANOX MLXCPLD I2C AND MUX DRIVER
12106 M:      Vadim Pasternak <vadimp@nvidia.com>
12107 M:      Michael Shych <michaelsh@nvidia.com>
12108 L:      linux-i2c@vger.kernel.org
12109 S:      Supported
12110 F:      Documentation/i2c/busses/i2c-mlxcpld.rst
12111 F:      drivers/i2c/busses/i2c-mlxcpld.c
12112 F:      drivers/i2c/muxes/i2c-mux-mlxcpld.c
12113
12114 MELLANOX MLXCPLD LED DRIVER
12115 M:      Vadim Pasternak <vadimp@nvidia.com>
12116 L:      linux-leds@vger.kernel.org
12117 S:      Supported
12118 F:      Documentation/leds/leds-mlxcpld.rst
12119 F:      drivers/leds/leds-mlxcpld.c
12120 F:      drivers/leds/leds-mlxreg.c
12121
12122 MELLANOX PLATFORM DRIVER
12123 M:      Vadim Pasternak <vadimp@nvidia.com>
12124 L:      platform-driver-x86@vger.kernel.org
12125 S:      Supported
12126 F:      drivers/platform/x86/mlx-platform.c
12127
12128 MEMBARRIER SUPPORT
12129 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
12130 M:      "Paul E. McKenney" <paulmck@kernel.org>
12131 L:      linux-kernel@vger.kernel.org
12132 S:      Supported
12133 F:      arch/powerpc/include/asm/membarrier.h
12134 F:      include/uapi/linux/membarrier.h
12135 F:      kernel/sched/membarrier.c
12136
12137 MEMBLOCK
12138 M:      Mike Rapoport <rppt@linux.ibm.com>
12139 L:      linux-mm@kvack.org
12140 S:      Maintained
12141 F:      Documentation/core-api/boot-time-mm.rst
12142 F:      include/linux/memblock.h
12143 F:      mm/memblock.c
12144
12145 MEMORY CONTROLLER DRIVERS
12146 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
12147 L:      linux-kernel@vger.kernel.org
12148 S:      Maintained
12149 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/krzk/linux-mem-ctrl.git
12150 F:      Documentation/devicetree/bindings/memory-controllers/
12151 F:      drivers/memory/
12152 F:      include/dt-bindings/memory/
12153 F:      include/memory/
12154
12155 MEMORY FREQUENCY SCALING DRIVERS FOR NVIDIA TEGRA
12156 M:      Dmitry Osipenko <digetx@gmail.com>
12157 L:      linux-pm@vger.kernel.org
12158 L:      linux-tegra@vger.kernel.org
12159 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/chanwoo/linux.git
12160 S:      Maintained
12161 F:      drivers/devfreq/tegra30-devfreq.c
12162
12163 MEMORY MANAGEMENT
12164 M:      Andrew Morton <akpm@linux-foundation.org>
12165 L:      linux-mm@kvack.org
12166 S:      Maintained
12167 W:      http://www.linux-mm.org
12168 T:      quilt https://ozlabs.org/~akpm/mmotm/
12169 T:      quilt https://ozlabs.org/~akpm/mmots/
12170 T:      git git://github.com/hnaz/linux-mm.git
12171 F:      include/linux/gfp.h
12172 F:      include/linux/memory_hotplug.h
12173 F:      include/linux/mm.h
12174 F:      include/linux/mmzone.h
12175 F:      include/linux/pagewalk.h
12176 F:      include/linux/vmalloc.h
12177 F:      mm/
12178 F:      tools/testing/selftests/vm/
12179
12180 MEMORY TECHNOLOGY DEVICES (MTD)
12181 M:      Miquel Raynal <miquel.raynal@bootlin.com>
12182 M:      Richard Weinberger <richard@nod.at>
12183 M:      Vignesh Raghavendra <vigneshr@ti.com>
12184 L:      linux-mtd@lists.infradead.org
12185 S:      Maintained
12186 W:      http://www.linux-mtd.infradead.org/
12187 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
12188 C:      irc://irc.oftc.net/mtd
12189 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/fixes
12190 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git mtd/next
12191 F:      Documentation/devicetree/bindings/mtd/
12192 F:      drivers/mtd/
12193 F:      include/linux/mtd/
12194 F:      include/uapi/mtd/
12195
12196 MEN A21 WATCHDOG DRIVER
12197 M:      Johannes Thumshirn <morbidrsa@gmail.com>
12198 L:      linux-watchdog@vger.kernel.org
12199 S:      Maintained
12200 F:      drivers/watchdog/mena21_wdt.c
12201
12202 MEN CHAMELEON BUS (mcb)
12203 M:      Johannes Thumshirn <morbidrsa@gmail.com>
12204 S:      Maintained
12205 F:      Documentation/driver-api/men-chameleon-bus.rst
12206 F:      drivers/mcb/
12207 F:      include/linux/mcb.h
12208
12209 MEN F21BMC (Board Management Controller)
12210 M:      Andreas Werner <andreas.werner@men.de>
12211 S:      Supported
12212 F:      Documentation/hwmon/menf21bmc.rst
12213 F:      drivers/hwmon/menf21bmc_hwmon.c
12214 F:      drivers/leds/leds-menf21bmc.c
12215 F:      drivers/mfd/menf21bmc.c
12216 F:      drivers/watchdog/menf21bmc_wdt.c
12217
12218 MEN Z069 WATCHDOG DRIVER
12219 M:      Johannes Thumshirn <jth@kernel.org>
12220 L:      linux-watchdog@vger.kernel.org
12221 S:      Maintained
12222 F:      drivers/watchdog/menz69_wdt.c
12223
12224 MESON AO CEC DRIVER FOR AMLOGIC SOCS
12225 M:      Neil Armstrong <narmstrong@baylibre.com>
12226 L:      linux-media@vger.kernel.org
12227 L:      linux-amlogic@lists.infradead.org
12228 S:      Supported
12229 W:      http://linux-meson.com/
12230 T:      git git://linuxtv.org/media_tree.git
12231 F:      Documentation/devicetree/bindings/media/amlogic,meson-gx-ao-cec.yaml
12232 F:      drivers/media/cec/platform/meson/ao-cec-g12a.c
12233 F:      drivers/media/cec/platform/meson/ao-cec.c
12234
12235 MESON GE2D DRIVER FOR AMLOGIC SOCS
12236 M:      Neil Armstrong <narmstrong@baylibre.com>
12237 L:      linux-media@vger.kernel.org
12238 L:      linux-amlogic@lists.infradead.org
12239 S:      Supported
12240 T:      git git://linuxtv.org/media_tree.git
12241 F:      Documentation/devicetree/bindings/media/amlogic,axg-ge2d.yaml
12242 F:      drivers/media/platform/meson/ge2d/
12243
12244 MESON NAND CONTROLLER DRIVER FOR AMLOGIC SOCS
12245 M:      Liang Yang <liang.yang@amlogic.com>
12246 L:      linux-mtd@lists.infradead.org
12247 S:      Maintained
12248 F:      Documentation/devicetree/bindings/mtd/amlogic,meson-nand.txt
12249 F:      drivers/mtd/nand/raw/meson_*
12250
12251 MESON VIDEO DECODER DRIVER FOR AMLOGIC SOCS
12252 M:      Neil Armstrong <narmstrong@baylibre.com>
12253 L:      linux-media@vger.kernel.org
12254 L:      linux-amlogic@lists.infradead.org
12255 S:      Supported
12256 T:      git git://linuxtv.org/media_tree.git
12257 F:      Documentation/devicetree/bindings/media/amlogic,gx-vdec.yaml
12258 F:      drivers/staging/media/meson/vdec/
12259
12260 METHODE UDPU SUPPORT
12261 M:      Vladimir Vid <vladimir.vid@sartura.hr>
12262 S:      Maintained
12263 F:      arch/arm64/boot/dts/marvell/armada-3720-uDPU.dts
12264
12265 MHI BUS
12266 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
12267 M:      Hemant Kumar <hemantk@codeaurora.org>
12268 L:      linux-arm-msm@vger.kernel.org
12269 S:      Maintained
12270 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mani/mhi.git
12271 F:      Documentation/ABI/stable/sysfs-bus-mhi
12272 F:      Documentation/mhi/
12273 F:      drivers/bus/mhi/
12274 F:      include/linux/mhi.h
12275
12276 MICROBLAZE ARCHITECTURE
12277 M:      Michal Simek <monstr@monstr.eu>
12278 S:      Supported
12279 W:      http://www.monstr.eu/fdt/
12280 T:      git git://git.monstr.eu/linux-2.6-microblaze.git
12281 F:      arch/microblaze/
12282
12283 MICROCHIP AT91 DMA DRIVERS
12284 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
12285 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
12286 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12287 L:      dmaengine@vger.kernel.org
12288 S:      Supported
12289 F:      Documentation/devicetree/bindings/dma/atmel-dma.txt
12290 F:      drivers/dma/at_hdmac.c
12291 F:      drivers/dma/at_hdmac_regs.h
12292 F:      drivers/dma/at_xdmac.c
12293 F:      include/dt-bindings/dma/at91.h
12294
12295 MICROCHIP AT91 SERIAL DRIVER
12296 M:      Richard Genoud <richard.genoud@gmail.com>
12297 S:      Maintained
12298 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
12299 F:      drivers/tty/serial/atmel_serial.c
12300 F:      drivers/tty/serial/atmel_serial.h
12301
12302 MICROCHIP AT91 USART MFD DRIVER
12303 M:      Radu Pirea <radu_nicolae.pirea@upb.ro>
12304 L:      linux-kernel@vger.kernel.org
12305 S:      Supported
12306 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
12307 F:      drivers/mfd/at91-usart.c
12308 F:      include/dt-bindings/mfd/at91-usart.h
12309
12310 MICROCHIP AT91 USART SPI DRIVER
12311 M:      Radu Pirea <radu_nicolae.pirea@upb.ro>
12312 L:      linux-spi@vger.kernel.org
12313 S:      Supported
12314 F:      Documentation/devicetree/bindings/mfd/atmel-usart.txt
12315 F:      drivers/spi/spi-at91-usart.c
12316
12317 MICROCHIP AUDIO ASOC DRIVERS
12318 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
12319 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12320 S:      Supported
12321 F:      sound/soc/atmel
12322
12323 MICROCHIP ECC DRIVER
12324 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
12325 L:      linux-crypto@vger.kernel.org
12326 S:      Maintained
12327 F:      drivers/crypto/atmel-ecc.*
12328
12329 MICROCHIP I2C DRIVER
12330 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
12331 L:      linux-i2c@vger.kernel.org
12332 S:      Supported
12333 F:      drivers/i2c/busses/i2c-at91-*.c
12334 F:      drivers/i2c/busses/i2c-at91.h
12335
12336 MICROCHIP ISC DRIVER
12337 M:      Eugen Hristev <eugen.hristev@microchip.com>
12338 L:      linux-media@vger.kernel.org
12339 S:      Supported
12340 F:      Documentation/devicetree/bindings/media/atmel,isc.yaml
12341 F:      Documentation/devicetree/bindings/media/microchip,xisc.yaml
12342 F:      drivers/media/platform/atmel/atmel-isc-base.c
12343 F:      drivers/media/platform/atmel/atmel-isc-regs.h
12344 F:      drivers/media/platform/atmel/atmel-isc.h
12345 F:      drivers/media/platform/atmel/atmel-sama5d2-isc.c
12346 F:      drivers/media/platform/atmel/atmel-sama7g5-isc.c
12347 F:      include/linux/atmel-isc-media.h
12348
12349 MICROCHIP ISI DRIVER
12350 M:      Eugen Hristev <eugen.hristev@microchip.com>
12351 L:      linux-media@vger.kernel.org
12352 S:      Supported
12353 F:      drivers/media/platform/atmel/atmel-isi.c
12354 F:      drivers/media/platform/atmel/atmel-isi.h
12355
12356 MICROCHIP KSZ SERIES ETHERNET SWITCH DRIVER
12357 M:      Woojung Huh <woojung.huh@microchip.com>
12358 M:      UNGLinuxDriver@microchip.com
12359 L:      netdev@vger.kernel.org
12360 S:      Maintained
12361 F:      Documentation/devicetree/bindings/net/dsa/microchip,ksz.yaml
12362 F:      drivers/net/dsa/microchip/*
12363 F:      include/linux/platform_data/microchip-ksz.h
12364 F:      net/dsa/tag_ksz.c
12365
12366 MICROCHIP LAN743X ETHERNET DRIVER
12367 M:      Bryan Whitehead <bryan.whitehead@microchip.com>
12368 M:      UNGLinuxDriver@microchip.com
12369 L:      netdev@vger.kernel.org
12370 S:      Maintained
12371 F:      drivers/net/ethernet/microchip/lan743x_*
12372
12373 MICROCHIP LCDFB DRIVER
12374 M:      Nicolas Ferre <nicolas.ferre@microchip.com>
12375 L:      linux-fbdev@vger.kernel.org
12376 S:      Maintained
12377 F:      drivers/video/fbdev/atmel_lcdfb.c
12378 F:      include/video/atmel_lcdc.h
12379
12380 MICROCHIP MCP16502 PMIC DRIVER
12381 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
12382 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12383 S:      Supported
12384 F:      Documentation/devicetree/bindings/regulator/mcp16502-regulator.txt
12385 F:      drivers/regulator/mcp16502.c
12386
12387 MICROCHIP MCP3911 ADC DRIVER
12388 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
12389 M:      Kent Gustavsson <kent@minoris.se>
12390 L:      linux-iio@vger.kernel.org
12391 S:      Supported
12392 F:      Documentation/devicetree/bindings/iio/adc/microchip,mcp3911.yaml
12393 F:      drivers/iio/adc/mcp3911.c
12394
12395 MICROCHIP MMC/SD/SDIO MCI DRIVER
12396 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
12397 S:      Maintained
12398 F:      drivers/mmc/host/atmel-mci.c
12399
12400 MICROCHIP NAND DRIVER
12401 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
12402 L:      linux-mtd@lists.infradead.org
12403 S:      Supported
12404 F:      Documentation/devicetree/bindings/mtd/atmel-nand.txt
12405 F:      drivers/mtd/nand/raw/atmel/*
12406
12407 MICROCHIP PWM DRIVER
12408 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
12409 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12410 L:      linux-pwm@vger.kernel.org
12411 S:      Supported
12412 F:      Documentation/devicetree/bindings/pwm/atmel-pwm.txt
12413 F:      drivers/pwm/pwm-atmel.c
12414
12415 MICROCHIP SAMA5D2-COMPATIBLE ADC DRIVER
12416 M:      Eugen Hristev <eugen.hristev@microchip.com>
12417 L:      linux-iio@vger.kernel.org
12418 S:      Supported
12419 F:      Documentation/devicetree/bindings/iio/adc/atmel,sama5d2-adc.yaml
12420 F:      drivers/iio/adc/at91-sama5d2_adc.c
12421 F:      include/dt-bindings/iio/adc/at91-sama5d2_adc.h
12422
12423 MICROCHIP SAMA5D2-COMPATIBLE SHUTDOWN CONTROLLER
12424 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
12425 S:      Supported
12426 F:      drivers/power/reset/at91-sama5d2_shdwc.c
12427
12428 MICROCHIP SPI DRIVER
12429 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
12430 S:      Supported
12431 F:      drivers/spi/spi-atmel.*
12432
12433 MICROCHIP SSC DRIVER
12434 M:      Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
12435 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12436 S:      Supported
12437 F:      drivers/misc/atmel-ssc.c
12438 F:      include/linux/atmel-ssc.h
12439
12440 MICROCHIP USB251XB DRIVER
12441 M:      Richard Leitner <richard.leitner@skidata.com>
12442 L:      linux-usb@vger.kernel.org
12443 S:      Maintained
12444 F:      Documentation/devicetree/bindings/usb/usb251xb.txt
12445 F:      drivers/usb/misc/usb251xb.c
12446
12447 MICROCHIP USBA UDC DRIVER
12448 M:      Cristian Birsan <cristian.birsan@microchip.com>
12449 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12450 S:      Supported
12451 F:      drivers/usb/gadget/udc/atmel_usba_udc.*
12452
12453 MICROCHIP WILC1000 WIFI DRIVER
12454 M:      Ajay Singh <ajay.kathat@microchip.com>
12455 M:      Claudiu Beznea <claudiu.beznea@microchip.com>
12456 L:      linux-wireless@vger.kernel.org
12457 S:      Supported
12458 F:      drivers/net/wireless/microchip/wilc1000/
12459
12460 MICROSEMI MIPS SOCS
12461 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
12462 M:      UNGLinuxDriver@microchip.com
12463 L:      linux-mips@vger.kernel.org
12464 S:      Supported
12465 F:      Documentation/devicetree/bindings/mips/mscc.txt
12466 F:      Documentation/devicetree/bindings/power/reset/ocelot-reset.txt
12467 F:      arch/mips/boot/dts/mscc/
12468 F:      arch/mips/configs/generic/board-ocelot.config
12469 F:      arch/mips/generic/board-ocelot.c
12470
12471 MICROSEMI SMART ARRAY SMARTPQI DRIVER (smartpqi)
12472 M:      Don Brace <don.brace@microchip.com>
12473 L:      storagedev@microchip.com
12474 L:      linux-scsi@vger.kernel.org
12475 S:      Supported
12476 F:      Documentation/scsi/smartpqi.rst
12477 F:      drivers/scsi/smartpqi/Kconfig
12478 F:      drivers/scsi/smartpqi/Makefile
12479 F:      drivers/scsi/smartpqi/smartpqi*.[ch]
12480 F:      include/linux/cciss*.h
12481 F:      include/uapi/linux/cciss*.h
12482
12483 MICROSOFT SURFACE BATTERY AND AC DRIVERS
12484 M:      Maximilian Luz <luzmaximilian@gmail.com>
12485 L:      linux-pm@vger.kernel.org
12486 L:      platform-driver-x86@vger.kernel.org
12487 S:      Maintained
12488 F:      drivers/power/supply/surface_battery.c
12489 F:      drivers/power/supply/surface_charger.c
12490
12491 MICROSOFT SURFACE DTX DRIVER
12492 M:      Maximilian Luz <luzmaximilian@gmail.com>
12493 L:      platform-driver-x86@vger.kernel.org
12494 S:      Maintained
12495 F:      Documentation/driver-api/surface_aggregator/clients/dtx.rst
12496 F:      drivers/platform/surface/surface_dtx.c
12497 F:      include/uapi/linux/surface_aggregator/dtx.h
12498
12499 MICROSOFT SURFACE GPE LID SUPPORT DRIVER
12500 M:      Maximilian Luz <luzmaximilian@gmail.com>
12501 L:      platform-driver-x86@vger.kernel.org
12502 S:      Maintained
12503 F:      drivers/platform/surface/surface_gpe.c
12504
12505 MICROSOFT SURFACE HARDWARE PLATFORM SUPPORT
12506 M:      Hans de Goede <hdegoede@redhat.com>
12507 M:      Mark Gross <mgross@linux.intel.com>
12508 M:      Maximilian Luz <luzmaximilian@gmail.com>
12509 L:      platform-driver-x86@vger.kernel.org
12510 S:      Maintained
12511 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
12512 F:      drivers/platform/surface/
12513
12514 MICROSOFT SURFACE HID TRANSPORT DRIVER
12515 M:      Maximilian Luz <luzmaximilian@gmail.com>
12516 L:      linux-input@vger.kernel.org
12517 L:      platform-driver-x86@vger.kernel.org
12518 S:      Maintained
12519 F:      drivers/hid/surface-hid/
12520
12521 MICROSOFT SURFACE HOT-PLUG DRIVER
12522 M:      Maximilian Luz <luzmaximilian@gmail.com>
12523 L:      platform-driver-x86@vger.kernel.org
12524 S:      Maintained
12525 F:      drivers/platform/surface/surface_hotplug.c
12526
12527 MICROSOFT SURFACE PLATFORM PROFILE DRIVER
12528 M:      Maximilian Luz <luzmaximilian@gmail.com>
12529 L:      platform-driver-x86@vger.kernel.org
12530 S:      Maintained
12531 F:      drivers/platform/surface/surface_platform_profile.c
12532
12533 MICROSOFT SURFACE PRO 3 BUTTON DRIVER
12534 M:      Chen Yu <yu.c.chen@intel.com>
12535 L:      platform-driver-x86@vger.kernel.org
12536 S:      Supported
12537 F:      drivers/platform/surface/surfacepro3_button.c
12538
12539 MICROSOFT SURFACE SYSTEM AGGREGATOR SUBSYSTEM
12540 M:      Maximilian Luz <luzmaximilian@gmail.com>
12541 L:      platform-driver-x86@vger.kernel.org
12542 S:      Maintained
12543 W:      https://github.com/linux-surface/surface-aggregator-module
12544 C:      irc://irc.libera.chat/linux-surface
12545 F:      Documentation/driver-api/surface_aggregator/
12546 F:      drivers/platform/surface/aggregator/
12547 F:      drivers/platform/surface/surface_acpi_notify.c
12548 F:      drivers/platform/surface/surface_aggregator_cdev.c
12549 F:      drivers/platform/surface/surface_aggregator_registry.c
12550 F:      include/linux/surface_acpi_notify.h
12551 F:      include/linux/surface_aggregator/
12552 F:      include/uapi/linux/surface_aggregator/
12553
12554 MICROTEK X6 SCANNER
12555 M:      Oliver Neukum <oliver@neukum.org>
12556 S:      Maintained
12557 F:      drivers/usb/image/microtek.*
12558
12559 MIKROTIK CRS3XX 98DX3236 BOARD SUPPORT
12560 M:      Luka Kovacic <luka.kovacic@sartura.hr>
12561 M:      Luka Perkov <luka.perkov@sartura.hr>
12562 S:      Maintained
12563 F:      arch/arm/boot/dts/armada-xp-crs305-1g-4s-bit.dts
12564 F:      arch/arm/boot/dts/armada-xp-crs305-1g-4s.dts
12565 F:      arch/arm/boot/dts/armada-xp-crs326-24g-2s-bit.dts
12566 F:      arch/arm/boot/dts/armada-xp-crs326-24g-2s.dts
12567 F:      arch/arm/boot/dts/armada-xp-crs328-4c-20s-4s-bit.dts
12568 F:      arch/arm/boot/dts/armada-xp-crs328-4c-20s-4s.dts
12569
12570 MIPI CCS, SMIA AND SMIA++ IMAGE SENSOR DRIVER
12571 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
12572 L:      linux-media@vger.kernel.org
12573 S:      Maintained
12574 F:      Documentation/devicetree/bindings/media/i2c/mipi-ccs.yaml
12575 F:      Documentation/driver-api/media/drivers/ccs/
12576 F:      Documentation/userspace-api/media/drivers/ccs.rst
12577 F:      drivers/media/i2c/ccs-pll.c
12578 F:      drivers/media/i2c/ccs-pll.h
12579 F:      drivers/media/i2c/ccs/
12580 F:      include/uapi/linux/ccs.h
12581 F:      include/uapi/linux/smiapp.h
12582
12583 MIPS
12584 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
12585 L:      linux-mips@vger.kernel.org
12586 S:      Maintained
12587 W:      http://www.linux-mips.org/
12588 Q:      https://patchwork.kernel.org/project/linux-mips/list/
12589 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mips/linux.git
12590 F:      Documentation/devicetree/bindings/mips/
12591 F:      Documentation/mips/
12592 F:      arch/mips/
12593 F:      drivers/platform/mips/
12594
12595 MIPS BOSTON DEVELOPMENT BOARD
12596 M:      Paul Burton <paulburton@kernel.org>
12597 L:      linux-mips@vger.kernel.org
12598 S:      Maintained
12599 F:      Documentation/devicetree/bindings/clock/img,boston-clock.txt
12600 F:      arch/mips/boot/dts/img/boston.dts
12601 F:      arch/mips/configs/generic/board-boston.config
12602 F:      drivers/clk/imgtec/clk-boston.c
12603 F:      include/dt-bindings/clock/boston-clock.h
12604
12605 MIPS CORE DRIVERS
12606 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
12607 M:      Serge Semin <fancer.lancer@gmail.com>
12608 L:      linux-mips@vger.kernel.org
12609 S:      Supported
12610 F:      drivers/bus/mips_cdmm.c
12611 F:      drivers/clocksource/mips-gic-timer.c
12612 F:      drivers/cpuidle/cpuidle-cps.c
12613 F:      drivers/irqchip/irq-mips-cpu.c
12614 F:      drivers/irqchip/irq-mips-gic.c
12615
12616 MIPS GENERIC PLATFORM
12617 M:      Paul Burton <paulburton@kernel.org>
12618 L:      linux-mips@vger.kernel.org
12619 S:      Supported
12620 F:      Documentation/devicetree/bindings/power/mti,mips-cpc.yaml
12621 F:      arch/mips/generic/
12622 F:      arch/mips/tools/generic-board-config.sh
12623
12624 MIPS RINT INSTRUCTION EMULATION
12625 M:      Aleksandar Markovic <aleksandar.markovic@mips.com>
12626 L:      linux-mips@vger.kernel.org
12627 S:      Supported
12628 F:      arch/mips/math-emu/dp_rint.c
12629 F:      arch/mips/math-emu/sp_rint.c
12630
12631 MIPS/LOONGSON1 ARCHITECTURE
12632 M:      Keguang Zhang <keguang.zhang@gmail.com>
12633 L:      linux-mips@vger.kernel.org
12634 S:      Maintained
12635 F:      arch/mips/include/asm/mach-loongson32/
12636 F:      arch/mips/loongson32/
12637 F:      drivers/*/*/*loongson1*
12638 F:      drivers/*/*loongson1*
12639
12640 MIPS/LOONGSON2EF ARCHITECTURE
12641 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
12642 L:      linux-mips@vger.kernel.org
12643 S:      Maintained
12644 F:      arch/mips/include/asm/mach-loongson2ef/
12645 F:      arch/mips/loongson2ef/
12646 F:      drivers/cpufreq/loongson2_cpufreq.c
12647
12648 MIPS/LOONGSON64 ARCHITECTURE
12649 M:      Huacai Chen <chenhuacai@kernel.org>
12650 M:      Jiaxun Yang <jiaxun.yang@flygoat.com>
12651 L:      linux-mips@vger.kernel.org
12652 S:      Maintained
12653 F:      arch/mips/include/asm/mach-loongson64/
12654 F:      arch/mips/loongson64/
12655 F:      drivers/irqchip/irq-loongson*
12656 F:      drivers/platform/mips/cpu_hwmon.c
12657
12658 MIROSOUND PCM20 FM RADIO RECEIVER DRIVER
12659 M:      Hans Verkuil <hverkuil@xs4all.nl>
12660 L:      linux-media@vger.kernel.org
12661 S:      Odd Fixes
12662 W:      https://linuxtv.org
12663 T:      git git://linuxtv.org/media_tree.git
12664 F:      drivers/media/radio/radio-miropcm20*
12665
12666 MMP SUPPORT
12667 R:      Lubomir Rintel <lkundrak@v3.sk>
12668 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12669 S:      Odd Fixes
12670 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lkundrak/linux-mmp.git
12671 F:      arch/arm/boot/dts/mmp*
12672 F:      arch/arm/mach-mmp/
12673 F:      include/linux/soc/mmp/
12674
12675 MMP USB PHY DRIVERS
12676 R:      Lubomir Rintel <lkundrak@v3.sk>
12677 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
12678 S:      Maintained
12679 F:      drivers/phy/marvell/phy-mmp3-usb.c
12680 F:      drivers/phy/marvell/phy-pxa-usb.c
12681
12682 MMU GATHER AND TLB INVALIDATION
12683 M:      Will Deacon <will@kernel.org>
12684 M:      "Aneesh Kumar K.V" <aneesh.kumar@linux.ibm.com>
12685 M:      Andrew Morton <akpm@linux-foundation.org>
12686 M:      Nick Piggin <npiggin@gmail.com>
12687 M:      Peter Zijlstra <peterz@infradead.org>
12688 L:      linux-arch@vger.kernel.org
12689 L:      linux-mm@kvack.org
12690 S:      Maintained
12691 F:      arch/*/include/asm/tlb.h
12692 F:      include/asm-generic/tlb.h
12693 F:      mm/mmu_gather.c
12694
12695 MN88472 MEDIA DRIVER
12696 M:      Antti Palosaari <crope@iki.fi>
12697 L:      linux-media@vger.kernel.org
12698 S:      Maintained
12699 W:      https://linuxtv.org
12700 W:      http://palosaari.fi/linux/
12701 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12702 F:      drivers/media/dvb-frontends/mn88472*
12703
12704 MN88473 MEDIA DRIVER
12705 M:      Antti Palosaari <crope@iki.fi>
12706 L:      linux-media@vger.kernel.org
12707 S:      Maintained
12708 W:      https://linuxtv.org
12709 W:      http://palosaari.fi/linux/
12710 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12711 F:      drivers/media/dvb-frontends/mn88473*
12712
12713 MODULE SUPPORT
12714 M:      Luis Chamberlain <mcgrof@kernel.org>
12715 M:      Jessica Yu <jeyu@kernel.org>
12716 S:      Maintained
12717 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jeyu/linux.git modules-next
12718 F:      include/linux/module.h
12719 F:      kernel/module.c
12720
12721 MONOLITHIC POWER SYSTEM PMIC DRIVER
12722 M:      Saravanan Sekar <sravanhome@gmail.com>
12723 S:      Maintained
12724 F:      Documentation/devicetree/bindings/mfd/mps,mp2629.yaml
12725 F:      Documentation/devicetree/bindings/regulator/mps,mp*.yaml
12726 F:      drivers/iio/adc/mp2629_adc.c
12727 F:      drivers/mfd/mp2629.c
12728 F:      drivers/power/supply/mp2629_charger.c
12729 F:      drivers/regulator/mp5416.c
12730 F:      drivers/regulator/mpq7920.c
12731 F:      drivers/regulator/mpq7920.h
12732 F:      include/linux/mfd/mp2629.h
12733
12734 MOTION EYE VAIO PICTUREBOOK CAMERA DRIVER
12735 S:      Orphan
12736 W:      http://popies.net/meye/
12737 F:      Documentation/userspace-api/media/drivers/meye*
12738 F:      drivers/media/pci/meye/
12739 F:      include/uapi/linux/meye.h
12740
12741 MOTORCOMM PHY DRIVER
12742 M:      Peter Geis <pgwipeout@gmail.com>
12743 L:      netdev@vger.kernel.org
12744 S:      Maintained
12745 F:      drivers/net/phy/motorcomm.c
12746
12747 MOXA SMARTIO/INDUSTIO/INTELLIO SERIAL CARD
12748 M:      Jiri Slaby <jirislaby@kernel.org>
12749 S:      Maintained
12750 F:      Documentation/driver-api/serial/moxa-smartio.rst
12751 F:      drivers/tty/mxser.*
12752
12753 MR800 AVERMEDIA USB FM RADIO DRIVER
12754 M:      Alexey Klimov <klimov.linux@gmail.com>
12755 L:      linux-media@vger.kernel.org
12756 S:      Maintained
12757 T:      git git://linuxtv.org/media_tree.git
12758 F:      drivers/media/radio/radio-mr800.c
12759
12760 MRF24J40 IEEE 802.15.4 RADIO DRIVER
12761 M:      Alan Ott <alan@signal11.us>
12762 L:      linux-wpan@vger.kernel.org
12763 S:      Maintained
12764 F:      Documentation/devicetree/bindings/net/ieee802154/mrf24j40.txt
12765 F:      drivers/net/ieee802154/mrf24j40.c
12766
12767 MSI LAPTOP SUPPORT
12768 M:      "Lee, Chun-Yi" <jlee@suse.com>
12769 L:      platform-driver-x86@vger.kernel.org
12770 S:      Maintained
12771 F:      drivers/platform/x86/msi-laptop.c
12772
12773 MSI WMI SUPPORT
12774 L:      platform-driver-x86@vger.kernel.org
12775 S:      Orphan
12776 F:      drivers/platform/x86/msi-wmi.c
12777
12778 MSI001 MEDIA DRIVER
12779 M:      Antti Palosaari <crope@iki.fi>
12780 L:      linux-media@vger.kernel.org
12781 S:      Maintained
12782 W:      https://linuxtv.org
12783 W:      http://palosaari.fi/linux/
12784 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12785 T:      git git://linuxtv.org/anttip/media_tree.git
12786 F:      drivers/media/tuners/msi001*
12787
12788 MSI2500 MEDIA DRIVER
12789 M:      Antti Palosaari <crope@iki.fi>
12790 L:      linux-media@vger.kernel.org
12791 S:      Maintained
12792 W:      https://linuxtv.org
12793 W:      http://palosaari.fi/linux/
12794 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12795 T:      git git://linuxtv.org/anttip/media_tree.git
12796 F:      drivers/media/usb/msi2500/
12797
12798 MSTAR INTERRUPT CONTROLLER DRIVER
12799 M:      Mark-PK Tsai <mark-pk.tsai@mediatek.com>
12800 M:      Daniel Palmer <daniel@thingy.jp>
12801 S:      Maintained
12802 F:      Documentation/devicetree/bindings/interrupt-controller/mstar,mst-intc.yaml
12803 F:      drivers/irqchip/irq-mst-intc.c
12804
12805 MSYSTEMS DISKONCHIP G3 MTD DRIVER
12806 M:      Robert Jarzmik <robert.jarzmik@free.fr>
12807 L:      linux-mtd@lists.infradead.org
12808 S:      Maintained
12809 F:      drivers/mtd/devices/docg3*
12810
12811 MT9M032 APTINA SENSOR DRIVER
12812 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12813 L:      linux-media@vger.kernel.org
12814 S:      Maintained
12815 T:      git git://linuxtv.org/media_tree.git
12816 F:      drivers/media/i2c/mt9m032.c
12817 F:      include/media/i2c/mt9m032.h
12818
12819 MT9P031 APTINA CAMERA SENSOR
12820 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12821 L:      linux-media@vger.kernel.org
12822 S:      Maintained
12823 T:      git git://linuxtv.org/media_tree.git
12824 F:      drivers/media/i2c/mt9p031.c
12825 F:      include/media/i2c/mt9p031.h
12826
12827 MT9T001 APTINA CAMERA SENSOR
12828 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12829 L:      linux-media@vger.kernel.org
12830 S:      Maintained
12831 T:      git git://linuxtv.org/media_tree.git
12832 F:      drivers/media/i2c/mt9t001.c
12833 F:      include/media/i2c/mt9t001.h
12834
12835 MT9T112 APTINA CAMERA SENSOR
12836 M:      Jacopo Mondi <jacopo@jmondi.org>
12837 L:      linux-media@vger.kernel.org
12838 S:      Odd Fixes
12839 T:      git git://linuxtv.org/media_tree.git
12840 F:      drivers/media/i2c/mt9t112.c
12841 F:      include/media/i2c/mt9t112.h
12842
12843 MT9V032 APTINA CAMERA SENSOR
12844 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
12845 L:      linux-media@vger.kernel.org
12846 S:      Maintained
12847 T:      git git://linuxtv.org/media_tree.git
12848 F:      Documentation/devicetree/bindings/media/i2c/mt9v032.txt
12849 F:      drivers/media/i2c/mt9v032.c
12850 F:      include/media/i2c/mt9v032.h
12851
12852 MT9V111 APTINA CAMERA SENSOR
12853 M:      Jacopo Mondi <jacopo@jmondi.org>
12854 L:      linux-media@vger.kernel.org
12855 S:      Maintained
12856 T:      git git://linuxtv.org/media_tree.git
12857 F:      Documentation/devicetree/bindings/media/i2c/aptina,mt9v111.yaml
12858 F:      drivers/media/i2c/mt9v111.c
12859
12860 MULTIFUNCTION DEVICES (MFD)
12861 M:      Lee Jones <lee.jones@linaro.org>
12862 S:      Supported
12863 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
12864 F:      Documentation/devicetree/bindings/mfd/
12865 F:      drivers/mfd/
12866 F:      include/dt-bindings/mfd/
12867 F:      include/linux/mfd/
12868
12869 MULTIMEDIA CARD (MMC) ETC. OVER SPI
12870 S:      Orphan
12871 F:      drivers/mmc/host/mmc_spi.c
12872 F:      include/linux/spi/mmc_spi.h
12873
12874 MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
12875 M:      Ulf Hansson <ulf.hansson@linaro.org>
12876 L:      linux-mmc@vger.kernel.org
12877 S:      Maintained
12878 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
12879 F:      Documentation/devicetree/bindings/mmc/
12880 F:      drivers/mmc/
12881 F:      include/linux/mmc/
12882 F:      include/uapi/linux/mmc/
12883
12884 MULTIPLEXER SUBSYSTEM
12885 M:      Peter Rosin <peda@axentia.se>
12886 S:      Maintained
12887 F:      Documentation/ABI/testing/sysfs-class-mux*
12888 F:      Documentation/devicetree/bindings/mux/
12889 F:      drivers/mux/
12890 F:      include/dt-bindings/mux/
12891 F:      include/linux/mux/
12892
12893 MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
12894 M:      Bin Liu <b-liu@ti.com>
12895 L:      linux-usb@vger.kernel.org
12896 S:      Maintained
12897 F:      drivers/usb/musb/
12898
12899 MXL301RF MEDIA DRIVER
12900 M:      Akihiro Tsukada <tskd08@gmail.com>
12901 L:      linux-media@vger.kernel.org
12902 S:      Odd Fixes
12903 F:      drivers/media/tuners/mxl301rf*
12904
12905 MXL5007T MEDIA DRIVER
12906 M:      Michael Krufky <mkrufky@linuxtv.org>
12907 L:      linux-media@vger.kernel.org
12908 S:      Maintained
12909 W:      https://linuxtv.org
12910 W:      http://github.com/mkrufky
12911 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
12912 T:      git git://linuxtv.org/mkrufky/tuners.git
12913 F:      drivers/media/tuners/mxl5007t.*
12914
12915 MXSFB DRM DRIVER
12916 M:      Marek Vasut <marex@denx.de>
12917 M:      Stefan Agner <stefan@agner.ch>
12918 L:      dri-devel@lists.freedesktop.org
12919 S:      Supported
12920 T:      git git://anongit.freedesktop.org/drm/drm-misc
12921 F:      Documentation/devicetree/bindings/display/fsl,lcdif.yaml
12922 F:      drivers/gpu/drm/mxsfb/
12923
12924 MYLEX DAC960 PCI RAID Controller
12925 M:      Hannes Reinecke <hare@kernel.org>
12926 L:      linux-scsi@vger.kernel.org
12927 S:      Supported
12928 F:      drivers/scsi/myrb.*
12929 F:      drivers/scsi/myrs.*
12930
12931 MYRICOM MYRI-10G 10GbE DRIVER (MYRI10GE)
12932 M:      Chris Lee <christopher.lee@cspi.com>
12933 L:      netdev@vger.kernel.org
12934 S:      Supported
12935 W:      https://www.cspi.com/ethernet-products/support/downloads/
12936 F:      drivers/net/ethernet/myricom/myri10ge/
12937
12938 NAND FLASH SUBSYSTEM
12939 M:      Miquel Raynal <miquel.raynal@bootlin.com>
12940 R:      Richard Weinberger <richard@nod.at>
12941 L:      linux-mtd@lists.infradead.org
12942 S:      Maintained
12943 W:      http://www.linux-mtd.infradead.org/
12944 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
12945 C:      irc://irc.oftc.net/mtd
12946 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git nand/next
12947 F:      drivers/mtd/nand/
12948 F:      include/linux/mtd/*nand*.h
12949
12950 NATIVE INSTRUMENTS USB SOUND INTERFACE DRIVER
12951 M:      Daniel Mack <zonque@gmail.com>
12952 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
12953 S:      Maintained
12954 W:      http://www.native-instruments.com
12955 F:      sound/usb/caiaq/
12956
12957 NATSEMI ETHERNET DRIVER (DP8381x)
12958 S:      Orphan
12959 F:      drivers/net/ethernet/natsemi/natsemi.c
12960
12961 NCR 5380 SCSI DRIVERS
12962 M:      Finn Thain <fthain@linux-m68k.org>
12963 M:      Michael Schmitz <schmitzmic@gmail.com>
12964 L:      linux-scsi@vger.kernel.org
12965 S:      Maintained
12966 F:      Documentation/scsi/g_NCR5380.rst
12967 F:      drivers/scsi/NCR5380.*
12968 F:      drivers/scsi/arm/cumana_1.c
12969 F:      drivers/scsi/arm/oak.c
12970 F:      drivers/scsi/atari_scsi.*
12971 F:      drivers/scsi/dmx3191d.c
12972 F:      drivers/scsi/g_NCR5380.*
12973 F:      drivers/scsi/mac_scsi.*
12974 F:      drivers/scsi/sun3_scsi.*
12975 F:      drivers/scsi/sun3_scsi_vme.c
12976
12977 NCSI LIBRARY
12978 M:      Samuel Mendoza-Jonas <sam@mendozajonas.com>
12979 S:      Maintained
12980 F:      net/ncsi/
12981
12982 NCT6775 HARDWARE MONITOR DRIVER
12983 M:      Guenter Roeck <linux@roeck-us.net>
12984 L:      linux-hwmon@vger.kernel.org
12985 S:      Maintained
12986 F:      Documentation/hwmon/nct6775.rst
12987 F:      drivers/hwmon/nct6775.c
12988
12989 NETDEVSIM
12990 M:      Jakub Kicinski <kuba@kernel.org>
12991 S:      Maintained
12992 F:      drivers/net/netdevsim/*
12993
12994 NETEM NETWORK EMULATOR
12995 M:      Stephen Hemminger <stephen@networkplumber.org>
12996 L:      netdev@vger.kernel.org
12997 S:      Maintained
12998 F:      net/sched/sch_netem.c
12999
13000 NETERION 10GbE DRIVERS (s2io/vxge)
13001 M:      Jon Mason <jdmason@kudzu.us>
13002 L:      netdev@vger.kernel.org
13003 S:      Supported
13004 F:      Documentation/networking/device_drivers/ethernet/neterion/s2io.rst
13005 F:      Documentation/networking/device_drivers/ethernet/neterion/vxge.rst
13006 F:      drivers/net/ethernet/neterion/
13007
13008 NETFILTER
13009 M:      Pablo Neira Ayuso <pablo@netfilter.org>
13010 M:      Jozsef Kadlecsik <kadlec@netfilter.org>
13011 M:      Florian Westphal <fw@strlen.de>
13012 L:      netfilter-devel@vger.kernel.org
13013 L:      coreteam@netfilter.org
13014 S:      Maintained
13015 W:      http://www.netfilter.org/
13016 W:      http://www.iptables.org/
13017 W:      http://www.nftables.org/
13018 Q:      http://patchwork.ozlabs.org/project/netfilter-devel/list/
13019 C:      irc://irc.libera.chat/netfilter
13020 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf.git
13021 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-next.git
13022 F:      include/linux/netfilter*
13023 F:      include/linux/netfilter/
13024 F:      include/net/netfilter/
13025 F:      include/uapi/linux/netfilter*
13026 F:      include/uapi/linux/netfilter/
13027 F:      net/*/netfilter.c
13028 F:      net/*/netfilter/
13029 F:      net/bridge/br_netfilter*.c
13030 F:      net/netfilter/
13031
13032 NETROM NETWORK LAYER
13033 M:      Ralf Baechle <ralf@linux-mips.org>
13034 L:      linux-hams@vger.kernel.org
13035 S:      Maintained
13036 W:      http://www.linux-ax25.org/
13037 F:      include/net/netrom.h
13038 F:      include/uapi/linux/netrom.h
13039 F:      net/netrom/
13040
13041 NETRONIX EMBEDDED CONTROLLER
13042 M:      Jonathan Neuschäfer <j.neuschaefer@gmx.net>
13043 S:      Maintained
13044 F:      Documentation/devicetree/bindings/mfd/netronix,ntxec.yaml
13045 F:      drivers/mfd/ntxec.c
13046 F:      drivers/pwm/pwm-ntxec.c
13047 F:      drivers/rtc/rtc-ntxec.c
13048 F:      include/linux/mfd/ntxec.h
13049
13050 NETRONOME ETHERNET DRIVERS
13051 M:      Simon Horman <simon.horman@corigine.com>
13052 R:      Jakub Kicinski <kuba@kernel.org>
13053 L:      oss-drivers@corigine.com
13054 S:      Maintained
13055 F:      drivers/net/ethernet/netronome/
13056
13057 NETWORK BLOCK DEVICE (NBD)
13058 M:      Josef Bacik <josef@toxicpanda.com>
13059 L:      linux-block@vger.kernel.org
13060 L:      nbd@other.debian.org
13061 S:      Maintained
13062 F:      Documentation/admin-guide/blockdev/nbd.rst
13063 F:      drivers/block/nbd.c
13064 F:      include/trace/events/nbd.h
13065 F:      include/uapi/linux/nbd.h
13066
13067 NETWORK DROP MONITOR
13068 M:      Neil Horman <nhorman@tuxdriver.com>
13069 L:      netdev@vger.kernel.org
13070 S:      Maintained
13071 W:      https://fedorahosted.org/dropwatch/
13072 F:      include/uapi/linux/net_dropmon.h
13073 F:      net/core/drop_monitor.c
13074
13075 NETWORKING DRIVERS
13076 M:      "David S. Miller" <davem@davemloft.net>
13077 M:      Jakub Kicinski <kuba@kernel.org>
13078 L:      netdev@vger.kernel.org
13079 S:      Maintained
13080 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
13081 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
13082 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
13083 F:      Documentation/devicetree/bindings/net/
13084 F:      drivers/connector/
13085 F:      drivers/net/
13086 F:      include/linux/etherdevice.h
13087 F:      include/linux/fcdevice.h
13088 F:      include/linux/fddidevice.h
13089 F:      include/linux/hippidevice.h
13090 F:      include/linux/if_*
13091 F:      include/linux/inetdevice.h
13092 F:      include/linux/netdevice.h
13093 F:      include/uapi/linux/if_*
13094 F:      include/uapi/linux/netdevice.h
13095
13096 NETWORKING DRIVERS (WIRELESS)
13097 M:      Kalle Valo <kvalo@codeaurora.org>
13098 L:      linux-wireless@vger.kernel.org
13099 S:      Maintained
13100 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
13101 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers.git
13102 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/wireless-drivers-next.git
13103 F:      Documentation/devicetree/bindings/net/wireless/
13104 F:      drivers/net/wireless/
13105
13106 NETWORKING [DSA]
13107 M:      Andrew Lunn <andrew@lunn.ch>
13108 M:      Vivien Didelot <vivien.didelot@gmail.com>
13109 M:      Florian Fainelli <f.fainelli@gmail.com>
13110 M:      Vladimir Oltean <olteanv@gmail.com>
13111 S:      Maintained
13112 F:      Documentation/devicetree/bindings/net/dsa/
13113 F:      drivers/net/dsa/
13114 F:      include/linux/dsa/
13115 F:      include/linux/platform_data/dsa.h
13116 F:      include/net/dsa.h
13117 F:      net/dsa/
13118
13119 NETWORKING [GENERAL]
13120 M:      "David S. Miller" <davem@davemloft.net>
13121 M:      Jakub Kicinski <kuba@kernel.org>
13122 L:      netdev@vger.kernel.org
13123 S:      Maintained
13124 Q:      https://patchwork.kernel.org/project/netdevbpf/list/
13125 B:      mailto:netdev@vger.kernel.org
13126 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
13127 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next.git
13128 F:      Documentation/networking/
13129 F:      include/linux/in.h
13130 F:      include/linux/net.h
13131 F:      include/linux/netdevice.h
13132 F:      include/net/
13133 F:      include/uapi/linux/in.h
13134 F:      include/uapi/linux/net.h
13135 F:      include/uapi/linux/net_namespace.h
13136 F:      include/uapi/linux/netdevice.h
13137 F:      lib/net_utils.c
13138 F:      lib/random32.c
13139 F:      net/
13140 F:      tools/testing/selftests/net/
13141
13142 NETWORKING [IPSEC]
13143 M:      Steffen Klassert <steffen.klassert@secunet.com>
13144 M:      Herbert Xu <herbert@gondor.apana.org.au>
13145 M:      "David S. Miller" <davem@davemloft.net>
13146 L:      netdev@vger.kernel.org
13147 S:      Maintained
13148 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec.git
13149 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/klassert/ipsec-next.git
13150 F:      include/net/xfrm.h
13151 F:      include/uapi/linux/xfrm.h
13152 F:      net/ipv4/ah4.c
13153 F:      net/ipv4/esp4*
13154 F:      net/ipv4/ip_vti.c
13155 F:      net/ipv4/ipcomp.c
13156 F:      net/ipv4/xfrm*
13157 F:      net/ipv6/ah6.c
13158 F:      net/ipv6/esp6*
13159 F:      net/ipv6/ip6_vti.c
13160 F:      net/ipv6/ipcomp6.c
13161 F:      net/ipv6/xfrm*
13162 F:      net/key/
13163 F:      net/xfrm/
13164 F:      tools/testing/selftests/net/ipsec.c
13165
13166 NETWORKING [IPv4/IPv6]
13167 M:      "David S. Miller" <davem@davemloft.net>
13168 M:      Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
13169 M:      David Ahern <dsahern@kernel.org>
13170 L:      netdev@vger.kernel.org
13171 S:      Maintained
13172 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git
13173 F:      arch/x86/net/*
13174 F:      include/net/ip*
13175 F:      net/ipv4/
13176 F:      net/ipv6/
13177
13178 NETWORKING [LABELED] (NetLabel, Labeled IPsec, SECMARK)
13179 M:      Paul Moore <paul@paul-moore.com>
13180 L:      netdev@vger.kernel.org
13181 L:      linux-security-module@vger.kernel.org
13182 S:      Maintained
13183 W:      https://github.com/netlabel
13184 F:      Documentation/netlabel/
13185 F:      include/net/calipso.h
13186 F:      include/net/cipso_ipv4.h
13187 F:      include/net/netlabel.h
13188 F:      include/uapi/linux/netfilter/xt_CONNSECMARK.h
13189 F:      include/uapi/linux/netfilter/xt_SECMARK.h
13190 F:      net/ipv4/cipso_ipv4.c
13191 F:      net/ipv6/calipso.c
13192 F:      net/netfilter/xt_CONNSECMARK.c
13193 F:      net/netfilter/xt_SECMARK.c
13194 F:      net/netlabel/
13195
13196 NETWORKING [MPTCP]
13197 M:      Mat Martineau <mathew.j.martineau@linux.intel.com>
13198 M:      Matthieu Baerts <matthieu.baerts@tessares.net>
13199 L:      netdev@vger.kernel.org
13200 L:      mptcp@lists.linux.dev
13201 S:      Maintained
13202 W:      https://github.com/multipath-tcp/mptcp_net-next/wiki
13203 B:      https://github.com/multipath-tcp/mptcp_net-next/issues
13204 F:      Documentation/networking/mptcp-sysctl.rst
13205 F:      include/net/mptcp.h
13206 F:      include/trace/events/mptcp.h
13207 F:      include/uapi/linux/mptcp.h
13208 F:      net/mptcp/
13209 F:      tools/testing/selftests/net/mptcp/
13210
13211 NETWORKING [TCP]
13212 M:      Eric Dumazet <edumazet@google.com>
13213 L:      netdev@vger.kernel.org
13214 S:      Maintained
13215 F:      include/linux/tcp.h
13216 F:      include/net/tcp.h
13217 F:      include/trace/events/tcp.h
13218 F:      include/uapi/linux/tcp.h
13219 F:      net/ipv4/syncookies.c
13220 F:      net/ipv4/tcp*.c
13221 F:      net/ipv6/syncookies.c
13222 F:      net/ipv6/tcp*.c
13223
13224 NETWORKING [TLS]
13225 M:      Boris Pismenny <borisp@nvidia.com>
13226 M:      John Fastabend <john.fastabend@gmail.com>
13227 M:      Daniel Borkmann <daniel@iogearbox.net>
13228 M:      Jakub Kicinski <kuba@kernel.org>
13229 L:      netdev@vger.kernel.org
13230 S:      Maintained
13231 F:      include/net/tls.h
13232 F:      include/uapi/linux/tls.h
13233 F:      net/tls/*
13234
13235 NETWORKING [WIRELESS]
13236 L:      linux-wireless@vger.kernel.org
13237 Q:      http://patchwork.kernel.org/project/linux-wireless/list/
13238
13239 NETXEN (1/10) GbE SUPPORT
13240 M:      Manish Chopra <manishc@marvell.com>
13241 M:      Rahul Verma <rahulv@marvell.com>
13242 M:      GR-Linux-NIC-Dev@marvell.com
13243 L:      netdev@vger.kernel.org
13244 S:      Supported
13245 F:      drivers/net/ethernet/qlogic/netxen/
13246
13247 NET_FAILOVER MODULE
13248 M:      Sridhar Samudrala <sridhar.samudrala@intel.com>
13249 L:      netdev@vger.kernel.org
13250 S:      Supported
13251 F:      Documentation/networking/net_failover.rst
13252 F:      drivers/net/net_failover.c
13253 F:      include/net/net_failover.h
13254
13255 NEXTHOP
13256 M:      David Ahern <dsahern@kernel.org>
13257 L:      netdev@vger.kernel.org
13258 S:      Maintained
13259 F:      include/net/netns/nexthop.h
13260 F:      include/net/nexthop.h
13261 F:      include/uapi/linux/nexthop.h
13262 F:      net/ipv4/nexthop.c
13263
13264 NFC SUBSYSTEM
13265 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
13266 L:      linux-nfc@lists.01.org (subscribers-only)
13267 L:      netdev@vger.kernel.org
13268 S:      Maintained
13269 F:      Documentation/devicetree/bindings/net/nfc/
13270 F:      drivers/nfc/
13271 F:      include/linux/platform_data/nfcmrvl.h
13272 F:      include/net/nfc/
13273 F:      include/uapi/linux/nfc.h
13274 F:      net/nfc/
13275
13276 NFC VIRTUAL NCI DEVICE DRIVER
13277 M:      Bongsu Jeon <bongsu.jeon@samsung.com>
13278 L:      netdev@vger.kernel.org
13279 L:      linux-nfc@lists.01.org (subscribers-only)
13280 S:      Supported
13281 F:      drivers/nfc/virtual_ncidev.c
13282 F:      tools/testing/selftests/nci/
13283
13284 NFS, SUNRPC, AND LOCKD CLIENTS
13285 M:      Trond Myklebust <trond.myklebust@hammerspace.com>
13286 M:      Anna Schumaker <anna.schumaker@netapp.com>
13287 L:      linux-nfs@vger.kernel.org
13288 S:      Maintained
13289 W:      http://client.linux-nfs.org
13290 T:      git git://git.linux-nfs.org/projects/trondmy/linux-nfs.git
13291 F:      fs/lockd/
13292 F:      fs/nfs/
13293 F:      fs/nfs_common/
13294 F:      include/linux/lockd/
13295 F:      include/linux/nfs*
13296 F:      include/linux/sunrpc/
13297 F:      include/uapi/linux/nfs*
13298 F:      include/uapi/linux/sunrpc/
13299 F:      net/sunrpc/
13300 F:      Documentation/filesystems/nfs/
13301
13302 NILFS2 FILESYSTEM
13303 M:      Ryusuke Konishi <konishi.ryusuke@gmail.com>
13304 L:      linux-nilfs@vger.kernel.org
13305 S:      Supported
13306 W:      https://nilfs.sourceforge.io/
13307 W:      https://nilfs.osdn.jp/
13308 T:      git git://github.com/konis/nilfs2.git
13309 F:      Documentation/filesystems/nilfs2.rst
13310 F:      fs/nilfs2/
13311 F:      include/trace/events/nilfs2.h
13312 F:      include/uapi/linux/nilfs2_api.h
13313 F:      include/uapi/linux/nilfs2_ondisk.h
13314
13315 NINJA SCSI-3 / NINJA SCSI-32Bi (16bit/CardBus) PCMCIA SCSI HOST ADAPTER DRIVER
13316 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
13317 S:      Maintained
13318 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
13319 F:      Documentation/scsi/NinjaSCSI.rst
13320 F:      drivers/scsi/pcmcia/nsp_*
13321
13322 NINJA SCSI-32Bi/UDE PCI/CARDBUS SCSI HOST ADAPTER DRIVER
13323 M:      GOTO Masanori <gotom@debian.or.jp>
13324 M:      YOKOTA Hiroshi <yokota@netlab.is.tsukuba.ac.jp>
13325 S:      Maintained
13326 W:      http://www.netlab.is.tsukuba.ac.jp/~yokota/izumi/ninja/
13327 F:      Documentation/scsi/NinjaSCSI.rst
13328 F:      drivers/scsi/nsp32*
13329
13330 NIOS2 ARCHITECTURE
13331 M:      Dinh Nguyen <dinguyen@kernel.org>
13332 S:      Maintained
13333 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dinguyen/linux.git
13334 F:      arch/nios2/
13335
13336 NITRO ENCLAVES (NE)
13337 M:      Andra Paraschiv <andraprs@amazon.com>
13338 M:      Alexandru Vasile <lexnv@amazon.com>
13339 M:      Alexandru Ciobotaru <alcioa@amazon.com>
13340 L:      linux-kernel@vger.kernel.org
13341 S:      Supported
13342 W:      https://aws.amazon.com/ec2/nitro/nitro-enclaves/
13343 F:      Documentation/virt/ne_overview.rst
13344 F:      drivers/virt/nitro_enclaves/
13345 F:      include/linux/nitro_enclaves.h
13346 F:      include/uapi/linux/nitro_enclaves.h
13347 F:      samples/nitro_enclaves/
13348
13349 NOHZ, DYNTICKS SUPPORT
13350 M:      Frederic Weisbecker <fweisbec@gmail.com>
13351 M:      Thomas Gleixner <tglx@linutronix.de>
13352 M:      Ingo Molnar <mingo@kernel.org>
13353 L:      linux-kernel@vger.kernel.org
13354 S:      Maintained
13355 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/nohz
13356 F:      include/linux/sched/nohz.h
13357 F:      include/linux/tick.h
13358 F:      kernel/time/tick*.*
13359
13360 NOKIA N900 CAMERA SUPPORT (ET8EK8 SENSOR, AD5820 FOCUS)
13361 M:      Pavel Machek <pavel@ucw.cz>
13362 M:      Sakari Ailus <sakari.ailus@iki.fi>
13363 L:      linux-media@vger.kernel.org
13364 S:      Maintained
13365 F:      drivers/media/i2c/ad5820.c
13366 F:      drivers/media/i2c/et8ek8
13367
13368 NOKIA N900 POWER SUPPLY DRIVERS
13369 R:      Pali Rohár <pali@kernel.org>
13370 F:      drivers/power/supply/bq2415x_charger.c
13371 F:      drivers/power/supply/bq27xxx_battery.c
13372 F:      drivers/power/supply/bq27xxx_battery_i2c.c
13373 F:      drivers/power/supply/isp1704_charger.c
13374 F:      drivers/power/supply/rx51_battery.c
13375 F:      include/linux/power/bq2415x_charger.h
13376 F:      include/linux/power/bq27xxx_battery.h
13377
13378 NOLIBC HEADER FILE
13379 M:      Willy Tarreau <w@1wt.eu>
13380 S:      Maintained
13381 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/wtarreau/nolibc.git
13382 F:      tools/include/nolibc/
13383
13384 NSDEPS
13385 M:      Matthias Maennich <maennich@google.com>
13386 S:      Maintained
13387 F:      Documentation/core-api/symbol-namespaces.rst
13388 F:      scripts/nsdeps
13389
13390 NTB AMD DRIVER
13391 M:      Sanjay R Mehta <sanju.mehta@amd.com>
13392 M:      Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
13393 L:      linux-ntb@googlegroups.com
13394 S:      Supported
13395 F:      drivers/ntb/hw/amd/
13396
13397 NTB DRIVER CORE
13398 M:      Jon Mason <jdmason@kudzu.us>
13399 M:      Dave Jiang <dave.jiang@intel.com>
13400 M:      Allen Hubbe <allenbh@gmail.com>
13401 L:      linux-ntb@googlegroups.com
13402 S:      Supported
13403 W:      https://github.com/jonmason/ntb/wiki
13404 T:      git git://github.com/jonmason/ntb.git
13405 F:      drivers/net/ntb_netdev.c
13406 F:      drivers/ntb/
13407 F:      include/linux/ntb.h
13408 F:      include/linux/ntb_transport.h
13409 F:      tools/testing/selftests/ntb/
13410
13411 NTB IDT DRIVER
13412 M:      Serge Semin <fancer.lancer@gmail.com>
13413 L:      linux-ntb@googlegroups.com
13414 S:      Supported
13415 F:      drivers/ntb/hw/idt/
13416
13417 NTB INTEL DRIVER
13418 M:      Dave Jiang <dave.jiang@intel.com>
13419 L:      linux-ntb@googlegroups.com
13420 S:      Supported
13421 W:      https://github.com/davejiang/linux/wiki
13422 T:      git https://github.com/davejiang/linux.git
13423 F:      drivers/ntb/hw/intel/
13424
13425 NTFS FILESYSTEM
13426 M:      Anton Altaparmakov <anton@tuxera.com>
13427 L:      linux-ntfs-dev@lists.sourceforge.net
13428 S:      Supported
13429 W:      http://www.tuxera.com/
13430 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/aia21/ntfs.git
13431 F:      Documentation/filesystems/ntfs.rst
13432 F:      fs/ntfs/
13433
13434 NTFS3 FILESYSTEM
13435 M:      Konstantin Komarov <almaz.alexandrovich@paragon-software.com>
13436 L:      ntfs3@lists.linux.dev
13437 S:      Supported
13438 W:      http://www.paragon-software.com/
13439 T:      git https://github.com/Paragon-Software-Group/linux-ntfs3.git
13440 F:      Documentation/filesystems/ntfs3.rst
13441 F:      fs/ntfs3/
13442
13443 NUBUS SUBSYSTEM
13444 M:      Finn Thain <fthain@linux-m68k.org>
13445 L:      linux-m68k@lists.linux-m68k.org
13446 S:      Maintained
13447 F:      arch/*/include/asm/nubus.h
13448 F:      drivers/nubus/
13449 F:      include/linux/nubus.h
13450 F:      include/uapi/linux/nubus.h
13451
13452 NVIDIA (rivafb and nvidiafb) FRAMEBUFFER DRIVER
13453 M:      Antonino Daplas <adaplas@gmail.com>
13454 L:      linux-fbdev@vger.kernel.org
13455 S:      Maintained
13456 F:      drivers/video/fbdev/nvidia/
13457 F:      drivers/video/fbdev/riva/
13458
13459 NVM EXPRESS DRIVER
13460 M:      Keith Busch <kbusch@kernel.org>
13461 M:      Jens Axboe <axboe@fb.com>
13462 M:      Christoph Hellwig <hch@lst.de>
13463 M:      Sagi Grimberg <sagi@grimberg.me>
13464 L:      linux-nvme@lists.infradead.org
13465 S:      Supported
13466 W:      http://git.infradead.org/nvme.git
13467 T:      git://git.infradead.org/nvme.git
13468 F:      drivers/nvme/host/
13469 F:      include/linux/nvme.h
13470 F:      include/uapi/linux/nvme_ioctl.h
13471
13472 NVM EXPRESS FC TRANSPORT DRIVERS
13473 M:      James Smart <james.smart@broadcom.com>
13474 L:      linux-nvme@lists.infradead.org
13475 S:      Supported
13476 F:      drivers/nvme/host/fc.c
13477 F:      drivers/nvme/target/fc.c
13478 F:      drivers/nvme/target/fcloop.c
13479 F:      include/linux/nvme-fc-driver.h
13480 F:      include/linux/nvme-fc.h
13481
13482 NVM EXPRESS TARGET DRIVER
13483 M:      Christoph Hellwig <hch@lst.de>
13484 M:      Sagi Grimberg <sagi@grimberg.me>
13485 M:      Chaitanya Kulkarni <kch@nvidia.com>
13486 L:      linux-nvme@lists.infradead.org
13487 S:      Supported
13488 W:      http://git.infradead.org/nvme.git
13489 T:      git://git.infradead.org/nvme.git
13490 F:      drivers/nvme/target/
13491
13492 NVMEM FRAMEWORK
13493 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
13494 S:      Maintained
13495 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/srini/nvmem.git
13496 F:      Documentation/ABI/stable/sysfs-bus-nvmem
13497 F:      Documentation/devicetree/bindings/nvmem/
13498 F:      drivers/nvmem/
13499 F:      include/linux/nvmem-consumer.h
13500 F:      include/linux/nvmem-provider.h
13501
13502 NXP C45 TJA11XX PHY DRIVER
13503 M:      Radu Pirea <radu-nicolae.pirea@oss.nxp.com>
13504 L:      netdev@vger.kernel.org
13505 S:      Maintained
13506 F:      drivers/net/phy/nxp-c45-tja11xx.c
13507
13508 NXP FSPI DRIVER
13509 M:      Ashish Kumar <ashish.kumar@nxp.com>
13510 R:      Yogesh Gaur <yogeshgaur.83@gmail.com>
13511 L:      linux-spi@vger.kernel.org
13512 S:      Maintained
13513 F:      Documentation/devicetree/bindings/spi/spi-nxp-fspi.txt
13514 F:      drivers/spi/spi-nxp-fspi.c
13515
13516 NXP FXAS21002C DRIVER
13517 M:      Rui Miguel Silva <rmfrfs@gmail.com>
13518 L:      linux-iio@vger.kernel.org
13519 S:      Maintained
13520 F:      Documentation/devicetree/bindings/iio/gyroscope/nxp,fxas21002c.yaml
13521 F:      drivers/iio/gyro/fxas21002c.h
13522 F:      drivers/iio/gyro/fxas21002c_core.c
13523 F:      drivers/iio/gyro/fxas21002c_i2c.c
13524 F:      drivers/iio/gyro/fxas21002c_spi.c
13525
13526 NXP i.MX CLOCK DRIVERS
13527 M:      Abel Vesa <abel.vesa@nxp.com>
13528 L:      linux-clk@vger.kernel.org
13529 L:      linux-imx@nxp.com
13530 S:      Maintained
13531 F:      drivers/clk/imx/
13532
13533 NXP i.MX 8MQ DCSS DRIVER
13534 M:      Laurentiu Palcu <laurentiu.palcu@oss.nxp.com>
13535 R:      Lucas Stach <l.stach@pengutronix.de>
13536 L:      dri-devel@lists.freedesktop.org
13537 S:      Maintained
13538 F:      Documentation/devicetree/bindings/display/imx/nxp,imx8mq-dcss.yaml
13539 F:      drivers/gpu/drm/imx/dcss/
13540
13541 NXP PF8100/PF8121A/PF8200 PMIC REGULATOR DEVICE DRIVER
13542 M:      Jagan Teki <jagan@amarulasolutions.com>
13543 S:      Maintained
13544 F:      Documentation/devicetree/bindings/regulator/nxp,pf8x00-regulator.yaml
13545 F:      drivers/regulator/pf8x00-regulator.c
13546
13547 NXP PTN5150A CC LOGIC AND EXTCON DRIVER
13548 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
13549 L:      linux-kernel@vger.kernel.org
13550 S:      Maintained
13551 F:      Documentation/devicetree/bindings/extcon/extcon-ptn5150.yaml
13552 F:      drivers/extcon/extcon-ptn5150.c
13553
13554 NXP SGTL5000 DRIVER
13555 M:      Fabio Estevam <festevam@gmail.com>
13556 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
13557 S:      Maintained
13558 F:      Documentation/devicetree/bindings/sound/sgtl5000.yaml
13559 F:      sound/soc/codecs/sgtl5000*
13560
13561 NXP SJA1105 ETHERNET SWITCH DRIVER
13562 M:      Vladimir Oltean <olteanv@gmail.com>
13563 L:      linux-kernel@vger.kernel.org
13564 S:      Maintained
13565 F:      drivers/net/dsa/sja1105
13566 F:      drivers/net/pcs/pcs-xpcs-nxp.c
13567
13568 NXP TDA998X DRM DRIVER
13569 M:      Russell King <linux@armlinux.org.uk>
13570 S:      Maintained
13571 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-devel
13572 T:      git git://git.armlinux.org.uk/~rmk/linux-arm.git drm-tda998x-fixes
13573 F:      drivers/gpu/drm/i2c/tda998x_drv.c
13574 F:      include/drm/i2c/tda998x.h
13575 F:      include/dt-bindings/display/tda998x.h
13576 K:      "nxp,tda998x"
13577
13578 NXP TFA9879 DRIVER
13579 M:      Peter Rosin <peda@axentia.se>
13580 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
13581 S:      Maintained
13582 F:      Documentation/devicetree/bindings/sound/tfa9879.txt
13583 F:      sound/soc/codecs/tfa9879*
13584
13585 NXP/Goodix TFA989X (TFA1) DRIVER
13586 M:      Stephan Gerhold <stephan@gerhold.net>
13587 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
13588 S:      Maintained
13589 F:      Documentation/devicetree/bindings/sound/nxp,tfa989x.yaml
13590 F:      sound/soc/codecs/tfa989x.c
13591
13592 NXP-NCI NFC DRIVER
13593 R:      Charles Gorand <charles.gorand@effinnov.com>
13594 L:      linux-nfc@lists.01.org (subscribers-only)
13595 S:      Supported
13596 F:      drivers/nfc/nxp-nci
13597
13598 NXP i.MX 8QXP/8QM JPEG V4L2 DRIVER
13599 M:      Mirela Rabulea <mirela.rabulea@nxp.com>
13600 R:      NXP Linux Team <linux-imx@nxp.com>
13601 L:      linux-media@vger.kernel.org
13602 S:      Maintained
13603 F:      Documentation/devicetree/bindings/media/imx8-jpeg.yaml
13604 F:      drivers/media/platform/imx-jpeg
13605
13606 NZXT-KRAKEN2 HARDWARE MONITORING DRIVER
13607 M:      Jonas Malaco <jonas@protocubo.io>
13608 L:      linux-hwmon@vger.kernel.org
13609 S:      Maintained
13610 F:      Documentation/hwmon/nzxt-kraken2.rst
13611 F:      drivers/hwmon/nzxt-kraken2.c
13612
13613 OBJAGG
13614 M:      Jiri Pirko <jiri@nvidia.com>
13615 L:      netdev@vger.kernel.org
13616 S:      Supported
13617 F:      include/linux/objagg.h
13618 F:      lib/objagg.c
13619 F:      lib/test_objagg.c
13620
13621 OBJTOOL
13622 M:      Josh Poimboeuf <jpoimboe@redhat.com>
13623 M:      Peter Zijlstra <peterz@infradead.org>
13624 S:      Supported
13625 F:      tools/objtool/
13626 F:      include/linux/objtool.h
13627
13628 OCELOT ETHERNET SWITCH DRIVER
13629 M:      Vladimir Oltean <vladimir.oltean@nxp.com>
13630 M:      Claudiu Manoil <claudiu.manoil@nxp.com>
13631 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
13632 M:      UNGLinuxDriver@microchip.com
13633 L:      netdev@vger.kernel.org
13634 S:      Supported
13635 F:      drivers/net/dsa/ocelot/*
13636 F:      drivers/net/ethernet/mscc/
13637 F:      include/soc/mscc/ocelot*
13638 F:      net/dsa/tag_ocelot.c
13639 F:      net/dsa/tag_ocelot_8021q.c
13640 F:      tools/testing/selftests/drivers/net/ocelot/*
13641
13642 OCXL (Open Coherent Accelerator Processor Interface OpenCAPI) DRIVER
13643 M:      Frederic Barrat <fbarrat@linux.ibm.com>
13644 M:      Andrew Donnellan <ajd@linux.ibm.com>
13645 L:      linuxppc-dev@lists.ozlabs.org
13646 S:      Supported
13647 F:      Documentation/userspace-api/accelerators/ocxl.rst
13648 F:      arch/powerpc/include/asm/pnv-ocxl.h
13649 F:      arch/powerpc/platforms/powernv/ocxl.c
13650 F:      drivers/misc/ocxl/
13651 F:      include/misc/ocxl*
13652 F:      include/uapi/misc/ocxl.h
13653
13654 OMAP AUDIO SUPPORT
13655 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
13656 M:      Jarkko Nikula <jarkko.nikula@bitmer.com>
13657 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
13658 L:      linux-omap@vger.kernel.org
13659 S:      Maintained
13660 F:      sound/soc/ti/n810.c
13661 F:      sound/soc/ti/omap*
13662 F:      sound/soc/ti/rx51.c
13663 F:      sound/soc/ti/sdma-pcm.*
13664
13665 OMAP CLOCK FRAMEWORK SUPPORT
13666 M:      Paul Walmsley <paul@pwsan.com>
13667 L:      linux-omap@vger.kernel.org
13668 S:      Maintained
13669 F:      arch/arm/*omap*/*clock*
13670
13671 OMAP DEVICE TREE SUPPORT
13672 M:      Benoît Cousson <bcousson@baylibre.com>
13673 M:      Tony Lindgren <tony@atomide.com>
13674 L:      linux-omap@vger.kernel.org
13675 L:      devicetree@vger.kernel.org
13676 S:      Maintained
13677 F:      arch/arm/boot/dts/*am3*
13678 F:      arch/arm/boot/dts/*am4*
13679 F:      arch/arm/boot/dts/*am5*
13680 F:      arch/arm/boot/dts/*dra7*
13681 F:      arch/arm/boot/dts/*omap*
13682 F:      arch/arm/boot/dts/logicpd-som-lv*
13683 F:      arch/arm/boot/dts/logicpd-torpedo*
13684
13685 OMAP DISPLAY SUBSYSTEM and FRAMEBUFFER SUPPORT (DSS2)
13686 L:      linux-omap@vger.kernel.org
13687 L:      linux-fbdev@vger.kernel.org
13688 S:      Orphan
13689 F:      Documentation/arm/omap/dss.rst
13690 F:      drivers/video/fbdev/omap2/
13691
13692 OMAP FRAMEBUFFER SUPPORT
13693 L:      linux-fbdev@vger.kernel.org
13694 L:      linux-omap@vger.kernel.org
13695 S:      Orphan
13696 F:      drivers/video/fbdev/omap/
13697
13698 OMAP GENERAL PURPOSE MEMORY CONTROLLER SUPPORT
13699 M:      Roger Quadros <rogerq@kernel.org>
13700 M:      Tony Lindgren <tony@atomide.com>
13701 L:      linux-omap@vger.kernel.org
13702 S:      Maintained
13703 F:      arch/arm/mach-omap2/*gpmc*
13704 F:      drivers/memory/omap-gpmc.c
13705
13706 OMAP GPIO DRIVER
13707 M:      Grygorii Strashko <grygorii.strashko@ti.com>
13708 M:      Santosh Shilimkar <ssantosh@kernel.org>
13709 M:      Kevin Hilman <khilman@kernel.org>
13710 L:      linux-omap@vger.kernel.org
13711 S:      Maintained
13712 F:      Documentation/devicetree/bindings/gpio/ti,omap-gpio.yaml
13713 F:      drivers/gpio/gpio-omap.c
13714
13715 OMAP HARDWARE SPINLOCK SUPPORT
13716 M:      Ohad Ben-Cohen <ohad@wizery.com>
13717 L:      linux-omap@vger.kernel.org
13718 S:      Maintained
13719 F:      drivers/hwspinlock/omap_hwspinlock.c
13720
13721 OMAP HS MMC SUPPORT
13722 L:      linux-mmc@vger.kernel.org
13723 L:      linux-omap@vger.kernel.org
13724 S:      Orphan
13725 F:      drivers/mmc/host/omap_hsmmc.c
13726
13727 OMAP HWMOD DATA
13728 M:      Paul Walmsley <paul@pwsan.com>
13729 L:      linux-omap@vger.kernel.org
13730 S:      Maintained
13731 F:      arch/arm/mach-omap2/omap_hwmod*data*
13732
13733 OMAP HWMOD SUPPORT
13734 M:      Benoît Cousson <bcousson@baylibre.com>
13735 M:      Paul Walmsley <paul@pwsan.com>
13736 L:      linux-omap@vger.kernel.org
13737 S:      Maintained
13738 F:      arch/arm/mach-omap2/omap_hwmod.*
13739
13740 OMAP I2C DRIVER
13741 M:      Vignesh R <vigneshr@ti.com>
13742 L:      linux-omap@vger.kernel.org
13743 L:      linux-i2c@vger.kernel.org
13744 S:      Maintained
13745 F:      Documentation/devicetree/bindings/i2c/ti,omap4-i2c.yaml
13746 F:      drivers/i2c/busses/i2c-omap.c
13747
13748 OMAP IMAGING SUBSYSTEM (OMAP3 ISP and OMAP4 ISS)
13749 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
13750 L:      linux-media@vger.kernel.org
13751 S:      Maintained
13752 F:      Documentation/devicetree/bindings/media/ti,omap3isp.txt
13753 F:      drivers/media/platform/omap3isp/
13754 F:      drivers/staging/media/omap4iss/
13755
13756 OMAP MMC SUPPORT
13757 M:      Aaro Koskinen <aaro.koskinen@iki.fi>
13758 L:      linux-omap@vger.kernel.org
13759 S:      Odd Fixes
13760 F:      drivers/mmc/host/omap.c
13761
13762 OMAP POWER MANAGEMENT SUPPORT
13763 M:      Kevin Hilman <khilman@kernel.org>
13764 L:      linux-omap@vger.kernel.org
13765 S:      Maintained
13766 F:      arch/arm/*omap*/*pm*
13767 F:      drivers/cpufreq/omap-cpufreq.c
13768
13769 OMAP POWERDOMAIN SOC ADAPTATION LAYER SUPPORT
13770 M:      Rajendra Nayak <rnayak@codeaurora.org>
13771 M:      Paul Walmsley <paul@pwsan.com>
13772 L:      linux-omap@vger.kernel.org
13773 S:      Maintained
13774 F:      arch/arm/mach-omap2/prm*
13775
13776 OMAP RANDOM NUMBER GENERATOR SUPPORT
13777 M:      Deepak Saxena <dsaxena@plexity.net>
13778 S:      Maintained
13779 F:      drivers/char/hw_random/omap-rng.c
13780
13781 OMAP USB SUPPORT
13782 L:      linux-usb@vger.kernel.org
13783 L:      linux-omap@vger.kernel.org
13784 S:      Orphan
13785 F:      arch/arm/*omap*/usb*
13786 F:      drivers/usb/*/*omap*
13787
13788 OMAP/NEWFLOW NANOBONE MACHINE SUPPORT
13789 M:      Mark Jackson <mpfj@newflow.co.uk>
13790 L:      linux-omap@vger.kernel.org
13791 S:      Maintained
13792 F:      arch/arm/boot/dts/am335x-nano.dts
13793
13794 OMAP1 SUPPORT
13795 M:      Aaro Koskinen <aaro.koskinen@iki.fi>
13796 M:      Tony Lindgren <tony@atomide.com>
13797 L:      linux-omap@vger.kernel.org
13798 S:      Maintained
13799 Q:      http://patchwork.kernel.org/project/linux-omap/list/
13800 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
13801 F:      arch/arm/configs/omap1_defconfig
13802 F:      arch/arm/mach-omap1/
13803 F:      arch/arm/plat-omap/
13804 F:      drivers/i2c/busses/i2c-omap.c
13805 F:      include/linux/platform_data/ams-delta-fiq.h
13806 F:      include/linux/platform_data/i2c-omap.h
13807
13808 OMAP2+ SUPPORT
13809 M:      Tony Lindgren <tony@atomide.com>
13810 L:      linux-omap@vger.kernel.org
13811 S:      Maintained
13812 W:      http://www.muru.com/linux/omap/
13813 W:      http://linux.omap.com/
13814 Q:      http://patchwork.kernel.org/project/linux-omap/list/
13815 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git
13816 F:      arch/arm/configs/omap2plus_defconfig
13817 F:      arch/arm/mach-omap2/
13818 F:      arch/arm/plat-omap/
13819 F:      drivers/bus/ti-sysc.c
13820 F:      drivers/i2c/busses/i2c-omap.c
13821 F:      drivers/irqchip/irq-omap-intc.c
13822 F:      drivers/mfd/*omap*.c
13823 F:      drivers/mfd/menelaus.c
13824 F:      drivers/mfd/palmas.c
13825 F:      drivers/mfd/tps65217.c
13826 F:      drivers/mfd/tps65218.c
13827 F:      drivers/mfd/tps65910.c
13828 F:      drivers/mfd/twl-core.[ch]
13829 F:      drivers/mfd/twl4030*.c
13830 F:      drivers/mfd/twl6030*.c
13831 F:      drivers/mfd/twl6040*.c
13832 F:      drivers/regulator/palmas-regulator*.c
13833 F:      drivers/regulator/pbias-regulator.c
13834 F:      drivers/regulator/tps65217-regulator.c
13835 F:      drivers/regulator/tps65218-regulator.c
13836 F:      drivers/regulator/tps65910-regulator.c
13837 F:      drivers/regulator/twl-regulator.c
13838 F:      drivers/regulator/twl6030-regulator.c
13839 F:      include/linux/platform_data/i2c-omap.h
13840 F:      include/linux/platform_data/ti-sysc.h
13841
13842 OMFS FILESYSTEM
13843 M:      Bob Copeland <me@bobcopeland.com>
13844 L:      linux-karma-devel@lists.sourceforge.net
13845 S:      Maintained
13846 F:      Documentation/filesystems/omfs.rst
13847 F:      fs/omfs/
13848
13849 OMNIKEY CARDMAN 4000 DRIVER
13850 M:      Harald Welte <laforge@gnumonks.org>
13851 S:      Maintained
13852 F:      drivers/char/pcmcia/cm4000_cs.c
13853 F:      include/linux/cm4000_cs.h
13854 F:      include/uapi/linux/cm4000_cs.h
13855
13856 OMNIKEY CARDMAN 4040 DRIVER
13857 M:      Harald Welte <laforge@gnumonks.org>
13858 S:      Maintained
13859 F:      drivers/char/pcmcia/cm4040_cs.*
13860
13861 OMNIVISION OV02A10 SENSOR DRIVER
13862 M:      Dongchun Zhu <dongchun.zhu@mediatek.com>
13863 L:      linux-media@vger.kernel.org
13864 S:      Maintained
13865 T:      git git://linuxtv.org/media_tree.git
13866 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov02a10.yaml
13867 F:      drivers/media/i2c/ov02a10.c
13868
13869 OMNIVISION OV13858 SENSOR DRIVER
13870 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
13871 L:      linux-media@vger.kernel.org
13872 S:      Maintained
13873 T:      git git://linuxtv.org/media_tree.git
13874 F:      drivers/media/i2c/ov13858.c
13875
13876 OMNIVISION OV2680 SENSOR DRIVER
13877 M:      Rui Miguel Silva <rmfrfs@gmail.com>
13878 L:      linux-media@vger.kernel.org
13879 S:      Maintained
13880 T:      git git://linuxtv.org/media_tree.git
13881 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov2680.yaml
13882 F:      drivers/media/i2c/ov2680.c
13883
13884 OMNIVISION OV2685 SENSOR DRIVER
13885 M:      Shunqian Zheng <zhengsq@rock-chips.com>
13886 L:      linux-media@vger.kernel.org
13887 S:      Maintained
13888 T:      git git://linuxtv.org/media_tree.git
13889 F:      drivers/media/i2c/ov2685.c
13890
13891 OMNIVISION OV2740 SENSOR DRIVER
13892 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
13893 R:      Shawn Tu <shawnx.tu@intel.com>
13894 R:      Bingbu Cao <bingbu.cao@intel.com>
13895 L:      linux-media@vger.kernel.org
13896 S:      Maintained
13897 T:      git git://linuxtv.org/media_tree.git
13898 F:      drivers/media/i2c/ov2740.c
13899
13900 OMNIVISION OV5640 SENSOR DRIVER
13901 M:      Steve Longerbeam <slongerbeam@gmail.com>
13902 L:      linux-media@vger.kernel.org
13903 S:      Maintained
13904 T:      git git://linuxtv.org/media_tree.git
13905 F:      drivers/media/i2c/ov5640.c
13906
13907 OMNIVISION OV5647 SENSOR DRIVER
13908 M:      Dave Stevenson <dave.stevenson@raspberrypi.com>
13909 M:      Jacopo Mondi <jacopo@jmondi.org>
13910 L:      linux-media@vger.kernel.org
13911 S:      Maintained
13912 T:      git git://linuxtv.org/media_tree.git
13913 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov5647.yaml
13914 F:      drivers/media/i2c/ov5647.c
13915
13916 OMNIVISION OV5670 SENSOR DRIVER
13917 M:      Chiranjeevi Rapolu <chiranjeevi.rapolu@intel.com>
13918 M:      Hyungwoo Yang <hyungwoo.yang@intel.com>
13919 L:      linux-media@vger.kernel.org
13920 S:      Maintained
13921 T:      git git://linuxtv.org/media_tree.git
13922 F:      drivers/media/i2c/ov5670.c
13923
13924 OMNIVISION OV5675 SENSOR DRIVER
13925 M:      Shawn Tu <shawnx.tu@intel.com>
13926 L:      linux-media@vger.kernel.org
13927 S:      Maintained
13928 T:      git git://linuxtv.org/media_tree.git
13929 F:      drivers/media/i2c/ov5675.c
13930
13931 OMNIVISION OV5695 SENSOR DRIVER
13932 M:      Shunqian Zheng <zhengsq@rock-chips.com>
13933 L:      linux-media@vger.kernel.org
13934 S:      Maintained
13935 T:      git git://linuxtv.org/media_tree.git
13936 F:      drivers/media/i2c/ov5695.c
13937
13938 OMNIVISION OV7670 SENSOR DRIVER
13939 L:      linux-media@vger.kernel.org
13940 S:      Orphan
13941 T:      git git://linuxtv.org/media_tree.git
13942 F:      Documentation/devicetree/bindings/media/i2c/ov7670.txt
13943 F:      drivers/media/i2c/ov7670.c
13944
13945 OMNIVISION OV772x SENSOR DRIVER
13946 M:      Jacopo Mondi <jacopo@jmondi.org>
13947 L:      linux-media@vger.kernel.org
13948 S:      Odd fixes
13949 T:      git git://linuxtv.org/media_tree.git
13950 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov772x.yaml
13951 F:      drivers/media/i2c/ov772x.c
13952 F:      include/media/i2c/ov772x.h
13953
13954 OMNIVISION OV7740 SENSOR DRIVER
13955 M:      Wenyou Yang <wenyou.yang@microchip.com>
13956 L:      linux-media@vger.kernel.org
13957 S:      Maintained
13958 T:      git git://linuxtv.org/media_tree.git
13959 F:      Documentation/devicetree/bindings/media/i2c/ov7740.txt
13960 F:      drivers/media/i2c/ov7740.c
13961
13962 OMNIVISION OV8856 SENSOR DRIVER
13963 M:      Dongchun Zhu <dongchun.zhu@mediatek.com>
13964 L:      linux-media@vger.kernel.org
13965 S:      Maintained
13966 T:      git git://linuxtv.org/media_tree.git
13967 F:      Documentation/devicetree/bindings/media/i2c/ov8856.yaml
13968 F:      drivers/media/i2c/ov8856.c
13969
13970 OMNIVISION OV9282 SENSOR DRIVER
13971 M:      Paul J. Murphy <paul.j.murphy@intel.com>
13972 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
13973 L:      linux-media@vger.kernel.org
13974 S:      Maintained
13975 T:      git git://linuxtv.org/media_tree.git
13976 F:      Documentation/devicetree/bindings/media/i2c/ovti,ov9282.yaml
13977 F:      drivers/media/i2c/ov9282.c
13978
13979 OMNIVISION OV9640 SENSOR DRIVER
13980 M:      Petr Cvek <petrcvekcz@gmail.com>
13981 L:      linux-media@vger.kernel.org
13982 S:      Maintained
13983 F:      drivers/media/i2c/ov9640.*
13984
13985 OMNIVISION OV9650 SENSOR DRIVER
13986 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
13987 R:      Akinobu Mita <akinobu.mita@gmail.com>
13988 R:      Sylwester Nawrocki <s.nawrocki@samsung.com>
13989 L:      linux-media@vger.kernel.org
13990 S:      Maintained
13991 T:      git git://linuxtv.org/media_tree.git
13992 F:      Documentation/devicetree/bindings/media/i2c/ov9650.txt
13993 F:      drivers/media/i2c/ov9650.c
13994
13995 OMNIVISION OV9734 SENSOR DRIVER
13996 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
13997 R:      Bingbu Cao <bingbu.cao@intel.com>
13998 L:      linux-media@vger.kernel.org
13999 S:      Maintained
14000 T:      git git://linuxtv.org/media_tree.git
14001 F:      drivers/media/i2c/ov9734.c
14002
14003 ONENAND FLASH DRIVER
14004 M:      Kyungmin Park <kyungmin.park@samsung.com>
14005 L:      linux-mtd@lists.infradead.org
14006 S:      Maintained
14007 F:      drivers/mtd/nand/onenand/
14008 F:      include/linux/mtd/onenand*.h
14009
14010 ONION OMEGA2+ BOARD
14011 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
14012 L:      linux-mips@vger.kernel.org
14013 S:      Maintained
14014 F:      arch/mips/boot/dts/ralink/omega2p.dts
14015
14016 OP-TEE DRIVER
14017 M:      Jens Wiklander <jens.wiklander@linaro.org>
14018 L:      op-tee@lists.trustedfirmware.org
14019 S:      Maintained
14020 F:      Documentation/ABI/testing/sysfs-bus-optee-devices
14021 F:      drivers/tee/optee/
14022
14023 OP-TEE RANDOM NUMBER GENERATOR (RNG) DRIVER
14024 M:      Sumit Garg <sumit.garg@linaro.org>
14025 L:      op-tee@lists.trustedfirmware.org
14026 S:      Maintained
14027 F:      drivers/char/hw_random/optee-rng.c
14028
14029 OPA-VNIC DRIVER
14030 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
14031 M:      Mike Marciniszyn <mike.marciniszyn@cornelisnetworks.com>
14032 L:      linux-rdma@vger.kernel.org
14033 S:      Supported
14034 F:      drivers/infiniband/ulp/opa_vnic
14035
14036 OPEN FIRMWARE AND DEVICE TREE OVERLAYS
14037 M:      Pantelis Antoniou <pantelis.antoniou@konsulko.com>
14038 M:      Frank Rowand <frowand.list@gmail.com>
14039 L:      devicetree@vger.kernel.org
14040 S:      Maintained
14041 F:      Documentation/devicetree/dynamic-resolution-notes.rst
14042 F:      Documentation/devicetree/overlay-notes.rst
14043 F:      drivers/of/overlay.c
14044 F:      drivers/of/resolver.c
14045 K:      of_overlay_notifier_
14046
14047 OPEN FIRMWARE AND FLATTENED DEVICE TREE
14048 M:      Rob Herring <robh+dt@kernel.org>
14049 M:      Frank Rowand <frowand.list@gmail.com>
14050 L:      devicetree@vger.kernel.org
14051 S:      Maintained
14052 W:      http://www.devicetree.org/
14053 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
14054 F:      Documentation/ABI/testing/sysfs-firmware-ofw
14055 F:      drivers/of/
14056 F:      include/linux/of*.h
14057 F:      scripts/dtc/
14058
14059 OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS
14060 M:      Rob Herring <robh+dt@kernel.org>
14061 L:      devicetree@vger.kernel.org
14062 S:      Maintained
14063 Q:      http://patchwork.ozlabs.org/project/devicetree-bindings/list/
14064 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux.git
14065 F:      Documentation/devicetree/
14066 F:      arch/*/boot/dts/
14067 F:      include/dt-bindings/
14068
14069 OPENCOMPUTE PTP CLOCK DRIVER
14070 M:      Jonathan Lemon <jonathan.lemon@gmail.com>
14071 L:      netdev@vger.kernel.org
14072 S:      Maintained
14073 F:      drivers/ptp/ptp_ocp.c
14074
14075 OPENCORES I2C BUS DRIVER
14076 M:      Peter Korsgaard <peter@korsgaard.com>
14077 M:      Andrew Lunn <andrew@lunn.ch>
14078 L:      linux-i2c@vger.kernel.org
14079 S:      Maintained
14080 F:      Documentation/devicetree/bindings/i2c/i2c-ocores.txt
14081 F:      Documentation/i2c/busses/i2c-ocores.rst
14082 F:      drivers/i2c/busses/i2c-ocores.c
14083 F:      include/linux/platform_data/i2c-ocores.h
14084
14085 OPENRISC ARCHITECTURE
14086 M:      Jonas Bonn <jonas@southpole.se>
14087 M:      Stefan Kristiansson <stefan.kristiansson@saunalahti.fi>
14088 M:      Stafford Horne <shorne@gmail.com>
14089 L:      openrisc@lists.librecores.org
14090 S:      Maintained
14091 W:      http://openrisc.io
14092 T:      git git://github.com/openrisc/linux.git
14093 F:      Documentation/devicetree/bindings/openrisc/
14094 F:      Documentation/openrisc/
14095 F:      arch/openrisc/
14096 F:      drivers/irqchip/irq-ompic.c
14097 F:      drivers/irqchip/irq-or1k-*
14098
14099 OPENVSWITCH
14100 M:      Pravin B Shelar <pshelar@ovn.org>
14101 L:      netdev@vger.kernel.org
14102 L:      dev@openvswitch.org
14103 S:      Maintained
14104 W:      http://openvswitch.org
14105 F:      include/uapi/linux/openvswitch.h
14106 F:      net/openvswitch/
14107
14108 OPERATING PERFORMANCE POINTS (OPP)
14109 M:      Viresh Kumar <vireshk@kernel.org>
14110 M:      Nishanth Menon <nm@ti.com>
14111 M:      Stephen Boyd <sboyd@kernel.org>
14112 L:      linux-pm@vger.kernel.org
14113 S:      Maintained
14114 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vireshk/pm.git
14115 F:      Documentation/devicetree/bindings/opp/
14116 F:      Documentation/power/opp.rst
14117 F:      drivers/opp/
14118 F:      include/linux/pm_opp.h
14119
14120 OPL4 DRIVER
14121 M:      Clemens Ladisch <clemens@ladisch.de>
14122 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
14123 S:      Maintained
14124 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
14125 F:      sound/drivers/opl4/
14126
14127 ORACLE CLUSTER FILESYSTEM 2 (OCFS2)
14128 M:      Mark Fasheh <mark@fasheh.com>
14129 M:      Joel Becker <jlbec@evilplan.org>
14130 M:      Joseph Qi <joseph.qi@linux.alibaba.com>
14131 L:      ocfs2-devel@oss.oracle.com (moderated for non-subscribers)
14132 S:      Supported
14133 W:      http://ocfs2.wiki.kernel.org
14134 F:      Documentation/filesystems/dlmfs.rst
14135 F:      Documentation/filesystems/ocfs2.rst
14136 F:      fs/ocfs2/
14137
14138 ORANGEFS FILESYSTEM
14139 M:      Mike Marshall <hubcap@omnibond.com>
14140 R:      Martin Brandenburg <martin@omnibond.com>
14141 L:      devel@lists.orangefs.org
14142 S:      Supported
14143 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hubcap/linux.git
14144 F:      Documentation/filesystems/orangefs.rst
14145 F:      fs/orangefs/
14146
14147 ORINOCO DRIVER
14148 L:      linux-wireless@vger.kernel.org
14149 S:      Orphan
14150 W:      https://wireless.wiki.kernel.org/en/users/Drivers/orinoco
14151 W:      http://www.nongnu.org/orinoco/
14152 F:      drivers/net/wireless/intersil/orinoco/
14153
14154 OV2659 OMNIVISION SENSOR DRIVER
14155 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
14156 L:      linux-media@vger.kernel.org
14157 S:      Maintained
14158 W:      https://linuxtv.org
14159 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
14160 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
14161 F:      drivers/media/i2c/ov2659.c
14162 F:      include/media/i2c/ov2659.h
14163
14164 OVERLAY FILESYSTEM
14165 M:      Miklos Szeredi <miklos@szeredi.hu>
14166 L:      linux-unionfs@vger.kernel.org
14167 S:      Supported
14168 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mszeredi/vfs.git
14169 F:      Documentation/filesystems/overlayfs.rst
14170 F:      fs/overlayfs/
14171
14172 P54 WIRELESS DRIVER
14173 M:      Christian Lamparter <chunkeey@googlemail.com>
14174 L:      linux-wireless@vger.kernel.org
14175 S:      Maintained
14176 W:      https://wireless.wiki.kernel.org/en/users/Drivers/p54
14177 F:      drivers/net/wireless/intersil/p54/
14178
14179 PACKING
14180 M:      Vladimir Oltean <olteanv@gmail.com>
14181 L:      netdev@vger.kernel.org
14182 S:      Supported
14183 F:      Documentation/core-api/packing.rst
14184 F:      include/linux/packing.h
14185 F:      lib/packing.c
14186
14187 PADATA PARALLEL EXECUTION MECHANISM
14188 M:      Steffen Klassert <steffen.klassert@secunet.com>
14189 M:      Daniel Jordan <daniel.m.jordan@oracle.com>
14190 L:      linux-crypto@vger.kernel.org
14191 L:      linux-kernel@vger.kernel.org
14192 S:      Maintained
14193 F:      Documentation/core-api/padata.rst
14194 F:      include/linux/padata.h
14195 F:      kernel/padata.c
14196
14197 PAGE POOL
14198 M:      Jesper Dangaard Brouer <hawk@kernel.org>
14199 M:      Ilias Apalodimas <ilias.apalodimas@linaro.org>
14200 L:      netdev@vger.kernel.org
14201 S:      Supported
14202 F:      Documentation/networking/page_pool.rst
14203 F:      include/net/page_pool.h
14204 F:      include/trace/events/page_pool.h
14205 F:      net/core/page_pool.c
14206
14207 PANASONIC LAPTOP ACPI EXTRAS DRIVER
14208 M:      Kenneth Chan <kenneth.t.chan@gmail.com>
14209 L:      platform-driver-x86@vger.kernel.org
14210 S:      Maintained
14211 F:      drivers/platform/x86/panasonic-laptop.c
14212
14213 PARALLAX PING IIO SENSOR DRIVER
14214 M:      Andreas Klinger <ak@it-klinger.de>
14215 L:      linux-iio@vger.kernel.org
14216 S:      Maintained
14217 F:      Documentation/devicetree/bindings/iio/proximity/parallax-ping.yaml
14218 F:      drivers/iio/proximity/ping.c
14219
14220 PARALLEL LCD/KEYPAD PANEL DRIVER
14221 M:      Willy Tarreau <willy@haproxy.com>
14222 M:      Ksenija Stanojevic <ksenija.stanojevic@gmail.com>
14223 S:      Odd Fixes
14224 F:      Documentation/admin-guide/lcd-panel-cgram.rst
14225 F:      drivers/auxdisplay/panel.c
14226
14227 PARALLEL PORT SUBSYSTEM
14228 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
14229 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
14230 L:      linux-parport@lists.infradead.org (subscribers-only)
14231 S:      Maintained
14232 F:      Documentation/driver-api/parport*.rst
14233 F:      drivers/char/ppdev.c
14234 F:      drivers/parport/
14235 F:      include/linux/parport*.h
14236 F:      include/uapi/linux/ppdev.h
14237
14238 PARAVIRT_OPS INTERFACE
14239 M:      Juergen Gross <jgross@suse.com>
14240 M:      Deep Shah <sdeep@vmware.com>
14241 M:      "VMware, Inc." <pv-drivers@vmware.com>
14242 L:      virtualization@lists.linux-foundation.org
14243 S:      Supported
14244 F:      Documentation/virt/paravirt_ops.rst
14245 F:      arch/*/include/asm/paravirt*.h
14246 F:      arch/*/kernel/paravirt*
14247 F:      include/linux/hypervisor.h
14248
14249 PARIDE DRIVERS FOR PARALLEL PORT IDE DEVICES
14250 M:      Tim Waugh <tim@cyberelk.net>
14251 L:      linux-parport@lists.infradead.org (subscribers-only)
14252 S:      Maintained
14253 F:      Documentation/admin-guide/blockdev/paride.rst
14254 F:      drivers/block/paride/
14255
14256 PARISC ARCHITECTURE
14257 M:      "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com>
14258 M:      Helge Deller <deller@gmx.de>
14259 L:      linux-parisc@vger.kernel.org
14260 S:      Maintained
14261 W:      https://parisc.wiki.kernel.org
14262 Q:      http://patchwork.kernel.org/project/linux-parisc/list/
14263 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/parisc-2.6.git
14264 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/deller/parisc-linux.git
14265 F:      Documentation/parisc/
14266 F:      arch/parisc/
14267 F:      drivers/char/agp/parisc-agp.c
14268 F:      drivers/input/misc/hp_sdc_rtc.c
14269 F:      drivers/input/serio/gscps2.c
14270 F:      drivers/input/serio/hp_sdc*
14271 F:      drivers/parisc/
14272 F:      drivers/parport/parport_gsc.*
14273 F:      drivers/tty/serial/8250/8250_gsc.c
14274 F:      drivers/video/console/sti*
14275 F:      drivers/video/fbdev/sti*
14276 F:      drivers/video/logo/logo_parisc*
14277 F:      include/linux/hp_sdc.h
14278
14279 PARMAN
14280 M:      Jiri Pirko <jiri@nvidia.com>
14281 L:      netdev@vger.kernel.org
14282 S:      Supported
14283 F:      include/linux/parman.h
14284 F:      lib/parman.c
14285 F:      lib/test_parman.c
14286
14287 PC ENGINES APU BOARD DRIVER
14288 M:      Enrico Weigelt, metux IT consult <info@metux.net>
14289 S:      Maintained
14290 F:      drivers/platform/x86/pcengines-apuv2.c
14291
14292 PC87360 HARDWARE MONITORING DRIVER
14293 M:      Jim Cromie <jim.cromie@gmail.com>
14294 L:      linux-hwmon@vger.kernel.org
14295 S:      Maintained
14296 F:      Documentation/hwmon/pc87360.rst
14297 F:      drivers/hwmon/pc87360.c
14298
14299 PC8736x GPIO DRIVER
14300 M:      Jim Cromie <jim.cromie@gmail.com>
14301 S:      Maintained
14302 F:      drivers/char/pc8736x_gpio.c
14303
14304 PC87427 HARDWARE MONITORING DRIVER
14305 M:      Jean Delvare <jdelvare@suse.com>
14306 L:      linux-hwmon@vger.kernel.org
14307 S:      Maintained
14308 F:      Documentation/hwmon/pc87427.rst
14309 F:      drivers/hwmon/pc87427.c
14310
14311 PCA9532 LED DRIVER
14312 M:      Riku Voipio <riku.voipio@iki.fi>
14313 S:      Maintained
14314 F:      drivers/leds/leds-pca9532.c
14315 F:      include/linux/leds-pca9532.h
14316
14317 PCA9541 I2C BUS MASTER SELECTOR DRIVER
14318 M:      Guenter Roeck <linux@roeck-us.net>
14319 L:      linux-i2c@vger.kernel.org
14320 S:      Maintained
14321 F:      drivers/i2c/muxes/i2c-mux-pca9541.c
14322
14323 PCDP - PRIMARY CONSOLE AND DEBUG PORT
14324 M:      Khalid Aziz <khalid@gonehiking.org>
14325 S:      Maintained
14326 F:      drivers/firmware/pcdp.*
14327
14328 PCI DRIVER FOR AARDVARK (Marvell Armada 3700)
14329 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
14330 M:      Pali Rohár <pali@kernel.org>
14331 L:      linux-pci@vger.kernel.org
14332 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14333 S:      Maintained
14334 F:      Documentation/devicetree/bindings/pci/aardvark-pci.txt
14335 F:      drivers/pci/controller/pci-aardvark.c
14336
14337 PCI DRIVER FOR ALTERA PCIE IP
14338 M:      Joyce Ooi <joyce.ooi@intel.com>
14339 L:      linux-pci@vger.kernel.org
14340 S:      Supported
14341 F:      Documentation/devicetree/bindings/pci/altera-pcie.txt
14342 F:      drivers/pci/controller/pcie-altera.c
14343
14344 PCI DRIVER FOR APPLIEDMICRO XGENE
14345 M:      Toan Le <toan@os.amperecomputing.com>
14346 L:      linux-pci@vger.kernel.org
14347 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14348 S:      Maintained
14349 F:      Documentation/devicetree/bindings/pci/xgene-pci.txt
14350 F:      drivers/pci/controller/pci-xgene.c
14351
14352 PCI DRIVER FOR ARM VERSATILE PLATFORM
14353 M:      Rob Herring <robh@kernel.org>
14354 L:      linux-pci@vger.kernel.org
14355 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14356 S:      Maintained
14357 F:      Documentation/devicetree/bindings/pci/versatile.yaml
14358 F:      drivers/pci/controller/pci-versatile.c
14359
14360 PCI DRIVER FOR ARMADA 8K
14361 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
14362 L:      linux-pci@vger.kernel.org
14363 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14364 S:      Maintained
14365 F:      Documentation/devicetree/bindings/pci/pci-armada8k.txt
14366 F:      drivers/pci/controller/dwc/pcie-armada8k.c
14367
14368 PCI DRIVER FOR CADENCE PCIE IP
14369 M:      Tom Joseph <tjoseph@cadence.com>
14370 L:      linux-pci@vger.kernel.org
14371 S:      Maintained
14372 F:      Documentation/devicetree/bindings/pci/cdns,*
14373 F:      drivers/pci/controller/cadence/
14374
14375 PCI DRIVER FOR FREESCALE LAYERSCAPE
14376 M:      Minghuan Lian <minghuan.Lian@nxp.com>
14377 M:      Mingkai Hu <mingkai.hu@nxp.com>
14378 M:      Roy Zang <roy.zang@nxp.com>
14379 L:      linuxppc-dev@lists.ozlabs.org
14380 L:      linux-pci@vger.kernel.org
14381 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14382 S:      Maintained
14383 F:      drivers/pci/controller/dwc/*layerscape*
14384
14385 PCI DRIVER FOR GENERIC OF HOSTS
14386 M:      Will Deacon <will@kernel.org>
14387 L:      linux-pci@vger.kernel.org
14388 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14389 S:      Maintained
14390 F:      Documentation/devicetree/bindings/pci/host-generic-pci.yaml
14391 F:      drivers/pci/controller/pci-host-common.c
14392 F:      drivers/pci/controller/pci-host-generic.c
14393
14394 PCI DRIVER FOR IMX6
14395 M:      Richard Zhu <hongxing.zhu@nxp.com>
14396 M:      Lucas Stach <l.stach@pengutronix.de>
14397 L:      linux-pci@vger.kernel.org
14398 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14399 S:      Maintained
14400 F:      Documentation/devicetree/bindings/pci/fsl,imx6q-pcie.yaml
14401 F:      drivers/pci/controller/dwc/*imx6*
14402
14403 PCI DRIVER FOR FU740
14404 M:      Paul Walmsley <paul.walmsley@sifive.com>
14405 M:      Greentime Hu <greentime.hu@sifive.com>
14406 L:      linux-pci@vger.kernel.org
14407 S:      Maintained
14408 F:      Documentation/devicetree/bindings/pci/sifive,fu740-pcie.yaml
14409 F:      drivers/pci/controller/dwc/pcie-fu740.c
14410
14411 PCI DRIVER FOR INTEL IXP4XX
14412 M:      Linus Walleij <linus.walleij@linaro.org>
14413 S:      Maintained
14414 F:      Documentation/devicetree/bindings/pci/intel,ixp4xx-pci.yaml
14415 F:      drivers/pci/controller/pci-ixp4xx.c
14416
14417 PCI DRIVER FOR INTEL VOLUME MANAGEMENT DEVICE (VMD)
14418 M:      Nirmal Patel <nirmal.patel@linux.intel.com>
14419 R:      Jonathan Derrick <jonathan.derrick@linux.dev>
14420 L:      linux-pci@vger.kernel.org
14421 S:      Supported
14422 F:      drivers/pci/controller/vmd.c
14423
14424 PCI DRIVER FOR MICROSEMI SWITCHTEC
14425 M:      Kurt Schwemmer <kurt.schwemmer@microsemi.com>
14426 M:      Logan Gunthorpe <logang@deltatee.com>
14427 L:      linux-pci@vger.kernel.org
14428 S:      Maintained
14429 F:      Documentation/ABI/testing/sysfs-class-switchtec
14430 F:      Documentation/driver-api/switchtec.rst
14431 F:      drivers/ntb/hw/mscc/
14432 F:      drivers/pci/switch/switchtec*
14433 F:      include/linux/switchtec.h
14434 F:      include/uapi/linux/switchtec_ioctl.h
14435
14436 PCI DRIVER FOR MOBIVEIL PCIE IP
14437 M:      Karthikeyan Mitran <m.karthikeyan@mobiveil.co.in>
14438 M:      Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
14439 L:      linux-pci@vger.kernel.org
14440 S:      Supported
14441 F:      Documentation/devicetree/bindings/pci/mobiveil-pcie.txt
14442 F:      drivers/pci/controller/mobiveil/pcie-mobiveil*
14443
14444 PCI DRIVER FOR MVEBU (Marvell Armada 370 and Armada XP SOC support)
14445 M:      Thomas Petazzoni <thomas.petazzoni@bootlin.com>
14446 L:      linux-pci@vger.kernel.org
14447 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14448 S:      Maintained
14449 F:      drivers/pci/controller/*mvebu*
14450
14451 PCI DRIVER FOR NVIDIA TEGRA
14452 M:      Thierry Reding <thierry.reding@gmail.com>
14453 L:      linux-tegra@vger.kernel.org
14454 L:      linux-pci@vger.kernel.org
14455 S:      Supported
14456 F:      Documentation/devicetree/bindings/pci/nvidia,tegra20-pcie.txt
14457 F:      drivers/pci/controller/pci-tegra.c
14458
14459 PCI DRIVER FOR NXP LAYERSCAPE GEN4 CONTROLLER
14460 M:      Hou Zhiqiang <Zhiqiang.Hou@nxp.com>
14461 L:      linux-pci@vger.kernel.org
14462 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14463 S:      Maintained
14464 F:      Documentation/devicetree/bindings/pci/layerscape-pcie-gen4.txt
14465 F:      drivers/pci/controller/mobiveil/pcie-layerscape-gen4.c
14466
14467 PCI DRIVER FOR RENESAS R-CAR
14468 M:      Marek Vasut <marek.vasut+renesas@gmail.com>
14469 M:      Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
14470 L:      linux-pci@vger.kernel.org
14471 L:      linux-renesas-soc@vger.kernel.org
14472 S:      Maintained
14473 F:      Documentation/devicetree/bindings/pci/*rcar*
14474 F:      drivers/pci/controller/*rcar*
14475
14476 PCI DRIVER FOR SAMSUNG EXYNOS
14477 M:      Jingoo Han <jingoohan1@gmail.com>
14478 L:      linux-pci@vger.kernel.org
14479 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14480 L:      linux-samsung-soc@vger.kernel.org
14481 S:      Maintained
14482 F:      drivers/pci/controller/dwc/pci-exynos.c
14483
14484 PCI DRIVER FOR SYNOPSYS DESIGNWARE
14485 M:      Jingoo Han <jingoohan1@gmail.com>
14486 M:      Gustavo Pimentel <gustavo.pimentel@synopsys.com>
14487 L:      linux-pci@vger.kernel.org
14488 S:      Maintained
14489 F:      Documentation/devicetree/bindings/pci/snps,dw-pcie.yaml
14490 F:      Documentation/devicetree/bindings/pci/snps,dw-pcie-ep.yaml
14491 F:      drivers/pci/controller/dwc/*designware*
14492
14493 PCI DRIVER FOR TI DRA7XX/J721E
14494 M:      Kishon Vijay Abraham I <kishon@ti.com>
14495 L:      linux-omap@vger.kernel.org
14496 L:      linux-pci@vger.kernel.org
14497 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14498 S:      Supported
14499 F:      Documentation/devicetree/bindings/pci/ti-pci.txt
14500 F:      drivers/pci/controller/cadence/pci-j721e.c
14501 F:      drivers/pci/controller/dwc/pci-dra7xx.c
14502
14503 PCI DRIVER FOR V3 SEMICONDUCTOR V360EPC
14504 M:      Linus Walleij <linus.walleij@linaro.org>
14505 L:      linux-pci@vger.kernel.org
14506 S:      Maintained
14507 F:      Documentation/devicetree/bindings/pci/v3-v360epc-pci.txt
14508 F:      drivers/pci/controller/pci-v3-semi.c
14509
14510 PCI ENDPOINT SUBSYSTEM
14511 M:      Kishon Vijay Abraham I <kishon@ti.com>
14512 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
14513 R:      Krzysztof Wilczyński <kw@linux.com>
14514 L:      linux-pci@vger.kernel.org
14515 S:      Supported
14516 F:      Documentation/PCI/endpoint/*
14517 F:      Documentation/misc-devices/pci-endpoint-test.rst
14518 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kishon/pci-endpoint.git
14519 F:      drivers/misc/pci_endpoint_test.c
14520 F:      drivers/pci/endpoint/
14521 F:      tools/pci/
14522
14523 PCI ENHANCED ERROR HANDLING (EEH) FOR POWERPC
14524 M:      Russell Currey <ruscur@russell.cc>
14525 M:      Oliver O'Halloran <oohall@gmail.com>
14526 L:      linuxppc-dev@lists.ozlabs.org
14527 S:      Supported
14528 F:      Documentation/PCI/pci-error-recovery.rst
14529 F:      Documentation/powerpc/eeh-pci-error-recovery.rst
14530 F:      arch/powerpc/include/*/eeh*.h
14531 F:      arch/powerpc/kernel/eeh*.c
14532 F:      arch/powerpc/platforms/*/eeh*.c
14533 F:      drivers/pci/pcie/aer.c
14534 F:      drivers/pci/pcie/dpc.c
14535 F:      drivers/pci/pcie/err.c
14536
14537 PCI ERROR RECOVERY
14538 M:      Linas Vepstas <linasvepstas@gmail.com>
14539 L:      linux-pci@vger.kernel.org
14540 S:      Supported
14541 F:      Documentation/PCI/pci-error-recovery.rst
14542
14543 PCI MSI DRIVER FOR ALTERA MSI IP
14544 M:      Joyce Ooi <joyce.ooi@intel.com>
14545 L:      linux-pci@vger.kernel.org
14546 S:      Supported
14547 F:      Documentation/devicetree/bindings/pci/altera-pcie-msi.txt
14548 F:      drivers/pci/controller/pcie-altera-msi.c
14549
14550 PCI MSI DRIVER FOR APPLIEDMICRO XGENE
14551 M:      Toan Le <toan@os.amperecomputing.com>
14552 L:      linux-pci@vger.kernel.org
14553 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14554 S:      Maintained
14555 F:      Documentation/devicetree/bindings/pci/xgene-pci-msi.txt
14556 F:      drivers/pci/controller/pci-xgene-msi.c
14557
14558 PCI NATIVE HOST BRIDGE AND ENDPOINT DRIVERS
14559 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
14560 R:      Rob Herring <robh@kernel.org>
14561 R:      Krzysztof Wilczyński <kw@linux.com>
14562 L:      linux-pci@vger.kernel.org
14563 S:      Supported
14564 Q:      http://patchwork.ozlabs.org/project/linux-pci/list/
14565 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lpieralisi/pci.git/
14566 F:      drivers/pci/controller/
14567
14568 PCI SUBSYSTEM
14569 M:      Bjorn Helgaas <bhelgaas@google.com>
14570 L:      linux-pci@vger.kernel.org
14571 S:      Supported
14572 Q:      http://patchwork.ozlabs.org/project/linux-pci/list/
14573 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci.git
14574 F:      Documentation/PCI/
14575 F:      Documentation/devicetree/bindings/pci/
14576 F:      arch/x86/kernel/early-quirks.c
14577 F:      arch/x86/kernel/quirks.c
14578 F:      arch/x86/pci/
14579 F:      drivers/acpi/pci*
14580 F:      drivers/pci/
14581 F:      include/asm-generic/pci*
14582 F:      include/linux/of_pci.h
14583 F:      include/linux/pci*
14584 F:      include/uapi/linux/pci*
14585 F:      lib/pci*
14586
14587 PCIE DRIVER FOR AMAZON ANNAPURNA LABS
14588 M:      Jonathan Chocron <jonnyc@amazon.com>
14589 L:      linux-pci@vger.kernel.org
14590 S:      Maintained
14591 F:      Documentation/devicetree/bindings/pci/pcie-al.txt
14592 F:      drivers/pci/controller/dwc/pcie-al.c
14593
14594 PCIE DRIVER FOR AMLOGIC MESON
14595 M:      Yue Wang <yue.wang@Amlogic.com>
14596 L:      linux-pci@vger.kernel.org
14597 L:      linux-amlogic@lists.infradead.org
14598 S:      Maintained
14599 F:      drivers/pci/controller/dwc/pci-meson.c
14600
14601 PCIE DRIVER FOR AXIS ARTPEC
14602 M:      Jesper Nilsson <jesper.nilsson@axis.com>
14603 L:      linux-arm-kernel@axis.com
14604 L:      linux-pci@vger.kernel.org
14605 S:      Maintained
14606 F:      Documentation/devicetree/bindings/pci/axis,artpec*
14607 F:      drivers/pci/controller/dwc/*artpec*
14608
14609 PCIE DRIVER FOR CAVIUM THUNDERX
14610 M:      Robert Richter <rric@kernel.org>
14611 L:      linux-pci@vger.kernel.org
14612 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14613 S:      Odd Fixes
14614 F:      drivers/pci/controller/pci-thunder-*
14615
14616 PCIE DRIVER FOR HISILICON
14617 M:      Zhou Wang <wangzhou1@hisilicon.com>
14618 L:      linux-pci@vger.kernel.org
14619 S:      Maintained
14620 F:      drivers/pci/controller/dwc/pcie-hisi.c
14621
14622 PCIE DRIVER FOR HISILICON KIRIN
14623 M:      Xiaowei Song <songxiaowei@hisilicon.com>
14624 M:      Binghui Wang <wangbinghui@hisilicon.com>
14625 L:      linux-pci@vger.kernel.org
14626 S:      Maintained
14627 F:      Documentation/devicetree/bindings/pci/hisilicon,kirin-pcie.yaml
14628 F:      drivers/pci/controller/dwc/pcie-kirin.c
14629
14630 PCIE DRIVER FOR HISILICON STB
14631 M:      Shawn Guo <shawn.guo@linaro.org>
14632 L:      linux-pci@vger.kernel.org
14633 S:      Maintained
14634 F:      Documentation/devicetree/bindings/pci/hisilicon-histb-pcie.txt
14635 F:      drivers/pci/controller/dwc/pcie-histb.c
14636
14637 PCIE DRIVER FOR INTEL KEEM BAY
14638 M:      Srikanth Thokala <srikanth.thokala@intel.com>
14639 L:      linux-pci@vger.kernel.org
14640 S:      Supported
14641 F:      Documentation/devicetree/bindings/pci/intel,keembay-pcie*
14642 F:      drivers/pci/controller/dwc/pcie-keembay.c
14643
14644 PCIE DRIVER FOR INTEL LGM GW SOC
14645 M:      Rahul Tanwar <rtanwar@maxlinear.com>
14646 L:      linux-pci@vger.kernel.org
14647 S:      Maintained
14648 F:      Documentation/devicetree/bindings/pci/intel-gw-pcie.yaml
14649 F:      drivers/pci/controller/dwc/pcie-intel-gw.c
14650
14651 PCIE DRIVER FOR MEDIATEK
14652 M:      Ryder Lee <ryder.lee@mediatek.com>
14653 M:      Jianjun Wang <jianjun.wang@mediatek.com>
14654 L:      linux-pci@vger.kernel.org
14655 L:      linux-mediatek@lists.infradead.org
14656 S:      Supported
14657 F:      Documentation/devicetree/bindings/pci/mediatek*
14658 F:      drivers/pci/controller/*mediatek*
14659
14660 PCIE DRIVER FOR MICROCHIP
14661 M:      Daire McNamara <daire.mcnamara@microchip.com>
14662 L:      linux-pci@vger.kernel.org
14663 S:      Supported
14664 F:      Documentation/devicetree/bindings/pci/microchip*
14665 F:      drivers/pci/controller/*microchip*
14666
14667 PCIE DRIVER FOR QUALCOMM MSM
14668 M:      Stanimir Varbanov <svarbanov@mm-sol.com>
14669 L:      linux-pci@vger.kernel.org
14670 L:      linux-arm-msm@vger.kernel.org
14671 S:      Maintained
14672 F:      drivers/pci/controller/dwc/*qcom*
14673
14674 PCIE DRIVER FOR ROCKCHIP
14675 M:      Shawn Lin <shawn.lin@rock-chips.com>
14676 L:      linux-pci@vger.kernel.org
14677 L:      linux-rockchip@lists.infradead.org
14678 S:      Maintained
14679 F:      Documentation/devicetree/bindings/pci/rockchip-pcie*
14680 F:      drivers/pci/controller/pcie-rockchip*
14681
14682 PCIE DRIVER FOR SOCIONEXT UNIPHIER
14683 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
14684 L:      linux-pci@vger.kernel.org
14685 S:      Maintained
14686 F:      Documentation/devicetree/bindings/pci/uniphier-pcie*
14687 F:      drivers/pci/controller/dwc/pcie-uniphier*
14688
14689 PCIE DRIVER FOR ST SPEAR13XX
14690 M:      Pratyush Anand <pratyush.anand@gmail.com>
14691 L:      linux-pci@vger.kernel.org
14692 S:      Maintained
14693 F:      drivers/pci/controller/dwc/*spear*
14694
14695 PCMCIA SUBSYSTEM
14696 M:      Dominik Brodowski <linux@dominikbrodowski.net>
14697 S:      Odd Fixes
14698 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brodo/pcmcia.git
14699 F:      Documentation/pcmcia/
14700 F:      drivers/pcmcia/
14701 F:      include/pcmcia/
14702 F:      tools/pcmcia/
14703
14704 PCNET32 NETWORK DRIVER
14705 M:      Don Fry <pcnet32@frontier.com>
14706 L:      netdev@vger.kernel.org
14707 S:      Maintained
14708 F:      drivers/net/ethernet/amd/pcnet32.c
14709
14710 PCRYPT PARALLEL CRYPTO ENGINE
14711 M:      Steffen Klassert <steffen.klassert@secunet.com>
14712 L:      linux-crypto@vger.kernel.org
14713 S:      Maintained
14714 F:      crypto/pcrypt.c
14715 F:      include/crypto/pcrypt.h
14716
14717 PEAQ WMI HOTKEYS DRIVER
14718 M:      Hans de Goede <hdegoede@redhat.com>
14719 L:      platform-driver-x86@vger.kernel.org
14720 S:      Maintained
14721 F:      drivers/platform/x86/peaq-wmi.c
14722
14723 PENSANDO ETHERNET DRIVERS
14724 M:      Shannon Nelson <snelson@pensando.io>
14725 M:      drivers@pensando.io
14726 L:      netdev@vger.kernel.org
14727 S:      Supported
14728 F:      Documentation/networking/device_drivers/ethernet/pensando/ionic.rst
14729 F:      drivers/net/ethernet/pensando/
14730
14731 PER-CPU MEMORY ALLOCATOR
14732 M:      Dennis Zhou <dennis@kernel.org>
14733 M:      Tejun Heo <tj@kernel.org>
14734 M:      Christoph Lameter <cl@linux.com>
14735 L:      linux-mm@kvack.org
14736 S:      Maintained
14737 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dennis/percpu.git
14738 F:      arch/*/include/asm/percpu.h
14739 F:      include/linux/percpu*.h
14740 F:      lib/percpu*.c
14741 F:      mm/percpu*.c
14742
14743 PER-TASK DELAY ACCOUNTING
14744 M:      Balbir Singh <bsingharora@gmail.com>
14745 S:      Maintained
14746 F:      include/linux/delayacct.h
14747 F:      kernel/delayacct.c
14748
14749 PERFORMANCE EVENTS SUBSYSTEM
14750 M:      Peter Zijlstra <peterz@infradead.org>
14751 M:      Ingo Molnar <mingo@redhat.com>
14752 M:      Arnaldo Carvalho de Melo <acme@kernel.org>
14753 R:      Mark Rutland <mark.rutland@arm.com>
14754 R:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
14755 R:      Jiri Olsa <jolsa@redhat.com>
14756 R:      Namhyung Kim <namhyung@kernel.org>
14757 L:      linux-perf-users@vger.kernel.org
14758 L:      linux-kernel@vger.kernel.org
14759 S:      Supported
14760 W:      https://perf.wiki.kernel.org/
14761 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
14762 F:      arch/*/events/*
14763 F:      arch/*/events/*/*
14764 F:      arch/*/include/asm/perf_event.h
14765 F:      arch/*/kernel/*/*/perf_event*.c
14766 F:      arch/*/kernel/*/perf_event*.c
14767 F:      arch/*/kernel/perf_callchain.c
14768 F:      arch/*/kernel/perf_event*.c
14769 F:      include/linux/perf_event.h
14770 F:      include/uapi/linux/perf_event.h
14771 F:      kernel/events/*
14772 F:      tools/lib/perf/
14773 F:      tools/perf/
14774
14775 PERFORMANCE EVENTS TOOLING ARM64
14776 R:      John Garry <john.garry@huawei.com>
14777 R:      Will Deacon <will@kernel.org>
14778 R:      Mathieu Poirier <mathieu.poirier@linaro.org>
14779 R:      Leo Yan <leo.yan@linaro.org>
14780 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14781 S:      Supported
14782 F:      tools/build/feature/test-libopencsd.c
14783 F:      tools/perf/arch/arm*/
14784 F:      tools/perf/pmu-events/arch/arm64/
14785 F:      tools/perf/util/arm-spe*
14786 F:      tools/perf/util/cs-etm*
14787
14788 PERSONALITY HANDLING
14789 M:      Christoph Hellwig <hch@infradead.org>
14790 L:      linux-abi-devel@lists.sourceforge.net
14791 S:      Maintained
14792 F:      include/linux/personality.h
14793 F:      include/uapi/linux/personality.h
14794
14795 PHOENIX RC FLIGHT CONTROLLER ADAPTER
14796 M:      Marcus Folkesson <marcus.folkesson@gmail.com>
14797 L:      linux-input@vger.kernel.org
14798 S:      Maintained
14799 F:      Documentation/input/devices/pxrc.rst
14800 F:      drivers/input/joystick/pxrc.c
14801
14802 PHONET PROTOCOL
14803 M:      Remi Denis-Courmont <courmisch@gmail.com>
14804 S:      Supported
14805 F:      Documentation/networking/phonet.rst
14806 F:      include/linux/phonet.h
14807 F:      include/net/phonet/
14808 F:      include/uapi/linux/phonet.h
14809 F:      net/phonet/
14810
14811 PHRAM MTD DRIVER
14812 M:      Joern Engel <joern@lazybastard.org>
14813 L:      linux-mtd@lists.infradead.org
14814 S:      Maintained
14815 F:      drivers/mtd/devices/phram.c
14816
14817 PICOLCD HID DRIVER
14818 M:      Bruno Prémont <bonbons@linux-vserver.org>
14819 L:      linux-input@vger.kernel.org
14820 S:      Maintained
14821 F:      drivers/hid/hid-picolcd*
14822
14823 PIDFD API
14824 M:      Christian Brauner <christian@brauner.io>
14825 L:      linux-kernel@vger.kernel.org
14826 S:      Maintained
14827 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/brauner/linux.git
14828 F:      samples/pidfd/
14829 F:      tools/testing/selftests/clone3/
14830 F:      tools/testing/selftests/pid_namespace/
14831 F:      tools/testing/selftests/pidfd/
14832 K:      (?i)pidfd
14833 K:      (?i)clone3
14834 K:      \b(clone_args|kernel_clone_args)\b
14835
14836 PIN CONTROL SUBSYSTEM
14837 M:      Linus Walleij <linus.walleij@linaro.org>
14838 L:      linux-gpio@vger.kernel.org
14839 S:      Maintained
14840 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl.git
14841 F:      Documentation/devicetree/bindings/pinctrl/
14842 F:      Documentation/driver-api/pin-control.rst
14843 F:      drivers/pinctrl/
14844 F:      include/linux/pinctrl/
14845
14846 PIN CONTROLLER - AMD
14847 M:      Basavaraj Natikar <Basavaraj.Natikar@amd.com>
14848 M:      Shyam Sundar S K <Shyam-sundar.S-k@amd.com>
14849 S:      Maintained
14850 F:      drivers/pinctrl/pinctrl-amd.c
14851
14852 PIN CONTROLLER - FREESCALE
14853 M:      Dong Aisheng <aisheng.dong@nxp.com>
14854 M:      Fabio Estevam <festevam@gmail.com>
14855 M:      Shawn Guo <shawnguo@kernel.org>
14856 M:      Stefan Agner <stefan@agner.ch>
14857 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
14858 L:      linux-gpio@vger.kernel.org
14859 S:      Maintained
14860 F:      Documentation/devicetree/bindings/pinctrl/fsl,*
14861 F:      drivers/pinctrl/freescale/
14862
14863 PIN CONTROLLER - INTEL
14864 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
14865 M:      Andy Shevchenko <andy@kernel.org>
14866 S:      Maintained
14867 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/intel.git
14868 F:      drivers/pinctrl/intel/
14869
14870 PIN CONTROLLER - KEEMBAY
14871 M:      Lakshmi Sowjanya D <lakshmi.sowjanya.d@intel.com>
14872 S:      Supported
14873 F:      drivers/pinctrl/pinctrl-keembay*
14874
14875 PIN CONTROLLER - MEDIATEK
14876 M:      Sean Wang <sean.wang@kernel.org>
14877 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
14878 S:      Maintained
14879 F:      Documentation/devicetree/bindings/pinctrl/mediatek,mt65xx-pinctrl.yaml
14880 F:      Documentation/devicetree/bindings/pinctrl/mediatek,mt6797-pinctrl.yaml
14881 F:      Documentation/devicetree/bindings/pinctrl/mediatek,mt7622-pinctrl.yaml
14882 F:      Documentation/devicetree/bindings/pinctrl/mediatek,mt8183-pinctrl.yaml
14883 F:      drivers/pinctrl/mediatek/
14884
14885 PIN CONTROLLER - MICROCHIP AT91
14886 M:      Ludovic Desroches <ludovic.desroches@microchip.com>
14887 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14888 L:      linux-gpio@vger.kernel.org
14889 S:      Supported
14890 F:      drivers/gpio/gpio-sama5d2-piobu.c
14891 F:      drivers/pinctrl/pinctrl-at91*
14892
14893 PIN CONTROLLER - QUALCOMM
14894 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
14895 L:      linux-arm-msm@vger.kernel.org
14896 S:      Maintained
14897 F:      Documentation/devicetree/bindings/pinctrl/qcom,*.txt
14898 F:      drivers/pinctrl/qcom/
14899
14900 PIN CONTROLLER - RENESAS
14901 M:      Geert Uytterhoeven <geert+renesas@glider.be>
14902 L:      linux-renesas-soc@vger.kernel.org
14903 S:      Supported
14904 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git renesas-pinctrl
14905 F:      Documentation/devicetree/bindings/pinctrl/renesas,*
14906 F:      drivers/pinctrl/renesas/
14907
14908 PIN CONTROLLER - SAMSUNG
14909 M:      Tomasz Figa <tomasz.figa@gmail.com>
14910 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
14911 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
14912 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14913 L:      linux-samsung-soc@vger.kernel.org
14914 S:      Maintained
14915 Q:      https://patchwork.kernel.org/project/linux-samsung-soc/list/
14916 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pinctrl/samsung.git
14917 F:      Documentation/devicetree/bindings/pinctrl/samsung-pinctrl.txt
14918 F:      drivers/pinctrl/samsung/
14919 F:      include/dt-bindings/pinctrl/samsung.h
14920
14921 PIN CONTROLLER - SINGLE
14922 M:      Tony Lindgren <tony@atomide.com>
14923 M:      Haojian Zhuang <haojian.zhuang@linaro.org>
14924 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14925 L:      linux-omap@vger.kernel.org
14926 S:      Maintained
14927 F:      drivers/pinctrl/pinctrl-single.c
14928
14929 PIN CONTROLLER - ST SPEAR
14930 M:      Viresh Kumar <vireshk@kernel.org>
14931 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
14932 S:      Maintained
14933 W:      http://www.st.com/spear
14934 F:      drivers/pinctrl/spear/
14935
14936 PKTCDVD DRIVER
14937 M:      linux-block@vger.kernel.org
14938 S:      Orphan
14939 F:      drivers/block/pktcdvd.c
14940 F:      include/linux/pktcdvd.h
14941 F:      include/uapi/linux/pktcdvd.h
14942
14943 PLANTOWER PMS7003 AIR POLLUTION SENSOR DRIVER
14944 M:      Tomasz Duszynski <tduszyns@gmail.com>
14945 S:      Maintained
14946 F:      Documentation/devicetree/bindings/iio/chemical/plantower,pms7003.yaml
14947 F:      drivers/iio/chemical/pms7003.c
14948
14949 PLDMFW LIBRARY
14950 M:      Jacob Keller <jacob.e.keller@intel.com>
14951 S:      Maintained
14952 F:      Documentation/driver-api/pldmfw/
14953 F:      include/linux/pldmfw.h
14954 F:      lib/pldmfw/
14955
14956 PLX DMA DRIVER
14957 M:      Logan Gunthorpe <logang@deltatee.com>
14958 S:      Maintained
14959 F:      drivers/dma/plx_dma.c
14960
14961 PM6764TR DRIVER
14962 M:      Charles Hsu     <hsu.yungteng@gmail.com>
14963 L:      linux-hwmon@vger.kernel.org
14964 S:      Maintained
14965 F:      Documentation/hwmon/pm6764tr.rst
14966 F:      drivers/hwmon/pmbus/pm6764tr.c
14967
14968 PM-GRAPH UTILITY
14969 M:      "Todd E Brandt" <todd.e.brandt@linux.intel.com>
14970 L:      linux-pm@vger.kernel.org
14971 S:      Supported
14972 W:      https://01.org/pm-graph
14973 B:      https://bugzilla.kernel.org/buglist.cgi?component=pm-graph&product=Tools
14974 T:      git git://github.com/intel/pm-graph
14975 F:      tools/power/pm-graph
14976
14977 PMBUS HARDWARE MONITORING DRIVERS
14978 M:      Guenter Roeck <linux@roeck-us.net>
14979 L:      linux-hwmon@vger.kernel.org
14980 S:      Maintained
14981 W:      http://hwmon.wiki.kernel.org/
14982 W:      http://www.roeck-us.net/linux/drivers/
14983 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
14984 F:      Documentation/devicetree/bindings/hwmon/ibm,cffps1.txt
14985 F:      Documentation/devicetree/bindings/hwmon/ltc2978.txt
14986 F:      Documentation/devicetree/bindings/hwmon/max31785.txt
14987 F:      Documentation/hwmon/adm1275.rst
14988 F:      Documentation/hwmon/ibm-cffps.rst
14989 F:      Documentation/hwmon/ir35221.rst
14990 F:      Documentation/hwmon/lm25066.rst
14991 F:      Documentation/hwmon/ltc2978.rst
14992 F:      Documentation/hwmon/ltc3815.rst
14993 F:      Documentation/hwmon/max16064.rst
14994 F:      Documentation/hwmon/max20751.rst
14995 F:      Documentation/hwmon/max31785.rst
14996 F:      Documentation/hwmon/max34440.rst
14997 F:      Documentation/hwmon/max8688.rst
14998 F:      Documentation/hwmon/pmbus-core.rst
14999 F:      Documentation/hwmon/pmbus.rst
15000 F:      Documentation/hwmon/tps40422.rst
15001 F:      Documentation/hwmon/ucd9000.rst
15002 F:      Documentation/hwmon/ucd9200.rst
15003 F:      Documentation/hwmon/zl6100.rst
15004 F:      drivers/hwmon/pmbus/
15005 F:      include/linux/pmbus.h
15006
15007 PMC SIERRA MaxRAID DRIVER
15008 L:      linux-scsi@vger.kernel.org
15009 S:      Orphan
15010 W:      http://www.pmc-sierra.com/
15011 F:      drivers/scsi/pmcraid.*
15012
15013 PMC SIERRA PM8001 DRIVER
15014 M:      Jack Wang <jinpu.wang@cloud.ionos.com>
15015 L:      linux-scsi@vger.kernel.org
15016 S:      Supported
15017 F:      drivers/scsi/pm8001/
15018
15019 PNI RM3100 IIO DRIVER
15020 M:      Song Qiang <songqiang1304521@gmail.com>
15021 L:      linux-iio@vger.kernel.org
15022 S:      Maintained
15023 F:      Documentation/devicetree/bindings/iio/magnetometer/pni,rm3100.yaml
15024 F:      drivers/iio/magnetometer/rm3100*
15025
15026 PNP SUPPORT
15027 M:      "Rafael J. Wysocki" <rafael.j.wysocki@intel.com>
15028 L:      linux-acpi@vger.kernel.org
15029 S:      Maintained
15030 F:      drivers/pnp/
15031 F:      include/linux/pnp.h
15032
15033 POSIX CLOCKS and TIMERS
15034 M:      Thomas Gleixner <tglx@linutronix.de>
15035 L:      linux-kernel@vger.kernel.org
15036 S:      Maintained
15037 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
15038 F:      fs/timerfd.c
15039 F:      include/linux/time_namespace.h
15040 F:      include/linux/timer*
15041 F:      kernel/time/*timer*
15042 F:      kernel/time/namespace.c
15043
15044 POWER MANAGEMENT CORE
15045 M:      "Rafael J. Wysocki" <rafael@kernel.org>
15046 L:      linux-pm@vger.kernel.org
15047 S:      Supported
15048 B:      https://bugzilla.kernel.org
15049 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
15050 F:      drivers/base/power/
15051 F:      drivers/powercap/
15052 F:      include/linux/intel_rapl.h
15053 F:      include/linux/pm.h
15054 F:      include/linux/pm_*
15055 F:      include/linux/powercap.h
15056 F:      kernel/configs/nopm.config
15057
15058 DYNAMIC THERMAL POWER MANAGEMENT (DTPM)
15059 M:      Daniel Lezcano <daniel.lezcano@kernel.org>
15060 L:      linux-pm@vger.kernel.org
15061 S:      Supported
15062 B:      https://bugzilla.kernel.org
15063 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
15064 F:      drivers/powercap/dtpm*
15065 F:      include/linux/dtpm.h
15066
15067 POWER STATE COORDINATION INTERFACE (PSCI)
15068 M:      Mark Rutland <mark.rutland@arm.com>
15069 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
15070 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15071 S:      Maintained
15072 F:      drivers/firmware/psci/
15073 F:      include/linux/psci.h
15074 F:      include/uapi/linux/psci.h
15075
15076 POWER SUPPLY CLASS/SUBSYSTEM and DRIVERS
15077 M:      Sebastian Reichel <sre@kernel.org>
15078 L:      linux-pm@vger.kernel.org
15079 S:      Maintained
15080 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
15081 F:      Documentation/ABI/testing/sysfs-class-power
15082 F:      Documentation/devicetree/bindings/power/supply/
15083 F:      drivers/power/supply/
15084 F:      include/linux/power/
15085 F:      include/linux/power_supply.h
15086
15087 POWERNV OPERATOR PANEL LCD DISPLAY DRIVER
15088 M:      Suraj Jitindar Singh <sjitindarsingh@gmail.com>
15089 L:      linuxppc-dev@lists.ozlabs.org
15090 S:      Maintained
15091 F:      drivers/char/powernv-op-panel.c
15092
15093 PPP OVER ATM (RFC 2364)
15094 M:      Mitchell Blank Jr <mitch@sfgoth.com>
15095 S:      Maintained
15096 F:      include/uapi/linux/atmppp.h
15097 F:      net/atm/pppoatm.c
15098
15099 PPP OVER ETHERNET
15100 M:      Michal Ostrowski <mostrows@earthlink.net>
15101 S:      Maintained
15102 F:      drivers/net/ppp/pppoe.c
15103 F:      drivers/net/ppp/pppox.c
15104
15105 PPP OVER L2TP
15106 M:      James Chapman <jchapman@katalix.com>
15107 S:      Maintained
15108 F:      include/linux/if_pppol2tp.h
15109 F:      include/uapi/linux/if_pppol2tp.h
15110 F:      net/l2tp/l2tp_ppp.c
15111
15112 PPP PROTOCOL DRIVERS AND COMPRESSORS
15113 M:      Paul Mackerras <paulus@samba.org>
15114 L:      linux-ppp@vger.kernel.org
15115 S:      Maintained
15116 F:      drivers/net/ppp/ppp_*
15117
15118 PPS SUPPORT
15119 M:      Rodolfo Giometti <giometti@enneenne.com>
15120 L:      linuxpps@ml.enneenne.com (subscribers-only)
15121 S:      Maintained
15122 W:      http://wiki.enneenne.com/index.php/LinuxPPS_support
15123 F:      Documentation/ABI/testing/sysfs-pps
15124 F:      Documentation/devicetree/bindings/pps/pps-gpio.txt
15125 F:      Documentation/driver-api/pps.rst
15126 F:      drivers/pps/
15127 F:      include/linux/pps*.h
15128 F:      include/uapi/linux/pps.h
15129
15130 PPTP DRIVER
15131 M:      Dmitry Kozlov <xeb@mail.ru>
15132 L:      netdev@vger.kernel.org
15133 S:      Maintained
15134 W:      http://sourceforge.net/projects/accel-pptp
15135 F:      drivers/net/ppp/pptp.c
15136
15137 PRESSURE STALL INFORMATION (PSI)
15138 M:      Johannes Weiner <hannes@cmpxchg.org>
15139 S:      Maintained
15140 F:      include/linux/psi*
15141 F:      kernel/sched/psi.c
15142
15143 PRINTK
15144 M:      Petr Mladek <pmladek@suse.com>
15145 M:      Sergey Senozhatsky <senozhatsky@chromium.org>
15146 R:      Steven Rostedt <rostedt@goodmis.org>
15147 R:      John Ogness <john.ogness@linutronix.de>
15148 S:      Maintained
15149 F:      include/linux/printk.h
15150 F:      kernel/printk/
15151
15152 PRINTK INDEXING
15153 R:      Chris Down <chris@chrisdown.name>
15154 S:      Maintained
15155 F:      kernel/printk/index.c
15156
15157 PROC FILESYSTEM
15158 L:      linux-kernel@vger.kernel.org
15159 L:      linux-fsdevel@vger.kernel.org
15160 S:      Maintained
15161 F:      Documentation/filesystems/proc.rst
15162 F:      fs/proc/
15163 F:      include/linux/proc_fs.h
15164 F:      tools/testing/selftests/proc/
15165
15166 PROC SYSCTL
15167 M:      Luis Chamberlain <mcgrof@kernel.org>
15168 M:      Kees Cook <keescook@chromium.org>
15169 M:      Iurii Zaikin <yzaikin@google.com>
15170 L:      linux-kernel@vger.kernel.org
15171 L:      linux-fsdevel@vger.kernel.org
15172 S:      Maintained
15173 F:      fs/proc/proc_sysctl.c
15174 F:      include/linux/sysctl.h
15175 F:      kernel/sysctl-test.c
15176 F:      kernel/sysctl.c
15177 F:      tools/testing/selftests/sysctl/
15178
15179 PS3 NETWORK SUPPORT
15180 M:      Geoff Levand <geoff@infradead.org>
15181 L:      netdev@vger.kernel.org
15182 L:      linuxppc-dev@lists.ozlabs.org
15183 S:      Maintained
15184 F:      drivers/net/ethernet/toshiba/ps3_gelic_net.*
15185
15186 PS3 PLATFORM SUPPORT
15187 M:      Geoff Levand <geoff@infradead.org>
15188 L:      linuxppc-dev@lists.ozlabs.org
15189 S:      Maintained
15190 F:      arch/powerpc/boot/ps3*
15191 F:      arch/powerpc/include/asm/lv1call.h
15192 F:      arch/powerpc/include/asm/ps3*.h
15193 F:      arch/powerpc/platforms/ps3/
15194 F:      drivers/*/ps3*
15195 F:      drivers/ps3/
15196 F:      drivers/rtc/rtc-ps3.c
15197 F:      drivers/usb/host/*ps3.c
15198 F:      sound/ppc/snd_ps3*
15199
15200 PS3VRAM DRIVER
15201 M:      Jim Paris <jim@jtan.com>
15202 M:      Geoff Levand <geoff@infradead.org>
15203 L:      linuxppc-dev@lists.ozlabs.org
15204 S:      Maintained
15205 F:      drivers/block/ps3vram.c
15206
15207 PSAMPLE PACKET SAMPLING SUPPORT
15208 M:      Yotam Gigi <yotam.gi@gmail.com>
15209 S:      Maintained
15210 F:      include/net/psample.h
15211 F:      include/uapi/linux/psample.h
15212 F:      net/psample
15213
15214 PSTORE FILESYSTEM
15215 M:      Kees Cook <keescook@chromium.org>
15216 M:      Anton Vorontsov <anton@enomsg.org>
15217 M:      Colin Cross <ccross@android.com>
15218 M:      Tony Luck <tony.luck@intel.com>
15219 S:      Maintained
15220 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git for-next/pstore
15221 F:      Documentation/admin-guide/ramoops.rst
15222 F:      Documentation/admin-guide/pstore-blk.rst
15223 F:      Documentation/devicetree/bindings/reserved-memory/ramoops.txt
15224 F:      drivers/acpi/apei/erst.c
15225 F:      drivers/firmware/efi/efi-pstore.c
15226 F:      fs/pstore/
15227 F:      include/linux/pstore*
15228 K:      \b(pstore|ramoops)
15229
15230 PTP HARDWARE CLOCK SUPPORT
15231 M:      Richard Cochran <richardcochran@gmail.com>
15232 L:      netdev@vger.kernel.org
15233 S:      Maintained
15234 W:      http://linuxptp.sourceforge.net/
15235 F:      Documentation/ABI/testing/sysfs-ptp
15236 F:      Documentation/driver-api/ptp.rst
15237 F:      drivers/net/phy/dp83640*
15238 F:      drivers/ptp/*
15239 F:      include/linux/ptp_cl*
15240
15241 PTP VIRTUAL CLOCK SUPPORT
15242 M:      Yangbo Lu <yangbo.lu@nxp.com>
15243 L:      netdev@vger.kernel.org
15244 S:      Maintained
15245 F:      drivers/ptp/ptp_vclock.c
15246 F:      net/ethtool/phc_vclocks.c
15247
15248 PTRACE SUPPORT
15249 M:      Oleg Nesterov <oleg@redhat.com>
15250 S:      Maintained
15251 F:      arch/*/*/ptrace*.c
15252 F:      arch/*/include/asm/ptrace*.h
15253 F:      arch/*/ptrace*.c
15254 F:      include/asm-generic/syscall.h
15255 F:      include/linux/ptrace.h
15256 F:      include/linux/regset.h
15257 F:      include/linux/tracehook.h
15258 F:      include/uapi/linux/ptrace.h
15259 F:      include/uapi/linux/ptrace.h
15260 F:      kernel/ptrace.c
15261
15262 PULSE8-CEC DRIVER
15263 M:      Hans Verkuil <hverkuil@xs4all.nl>
15264 L:      linux-media@vger.kernel.org
15265 S:      Maintained
15266 T:      git git://linuxtv.org/media_tree.git
15267 F:      Documentation/admin-guide/media/pulse8-cec.rst
15268 F:      drivers/media/cec/usb/pulse8/
15269
15270 PVRUSB2 VIDEO4LINUX DRIVER
15271 M:      Mike Isely <isely@pobox.com>
15272 L:      pvrusb2@isely.net       (subscribers-only)
15273 L:      linux-media@vger.kernel.org
15274 S:      Maintained
15275 W:      http://www.isely.net/pvrusb2/
15276 T:      git git://linuxtv.org/media_tree.git
15277 F:      Documentation/driver-api/media/drivers/pvrusb2*
15278 F:      drivers/media/usb/pvrusb2/
15279
15280 PWC WEBCAM DRIVER
15281 M:      Hans Verkuil <hverkuil@xs4all.nl>
15282 L:      linux-media@vger.kernel.org
15283 S:      Odd Fixes
15284 T:      git git://linuxtv.org/media_tree.git
15285 F:      drivers/media/usb/pwc/*
15286 F:      include/trace/events/pwc.h
15287
15288 PWM FAN DRIVER
15289 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
15290 L:      linux-hwmon@vger.kernel.org
15291 S:      Supported
15292 F:      Documentation/devicetree/bindings/hwmon/pwm-fan.txt
15293 F:      Documentation/hwmon/pwm-fan.rst
15294 F:      drivers/hwmon/pwm-fan.c
15295
15296 PWM IR Transmitter
15297 M:      Sean Young <sean@mess.org>
15298 L:      linux-media@vger.kernel.org
15299 S:      Maintained
15300 F:      drivers/media/rc/pwm-ir-tx.c
15301
15302 PWM SUBSYSTEM
15303 M:      Thierry Reding <thierry.reding@gmail.com>
15304 R:      Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
15305 M:      Lee Jones <lee.jones@linaro.org>
15306 L:      linux-pwm@vger.kernel.org
15307 S:      Maintained
15308 Q:      https://patchwork.ozlabs.org/project/linux-pwm/list/
15309 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/thierry.reding/linux-pwm.git
15310 F:      Documentation/devicetree/bindings/gpio/gpio-mvebu.txt
15311 F:      Documentation/devicetree/bindings/pwm/
15312 F:      Documentation/driver-api/pwm.rst
15313 F:      drivers/gpio/gpio-mvebu.c
15314 F:      drivers/pwm/
15315 F:      drivers/video/backlight/pwm_bl.c
15316 F:      include/linux/pwm.h
15317 F:      include/linux/pwm_backlight.h
15318 K:      pwm_(config|apply_state|ops)
15319
15320 PXA GPIO DRIVER
15321 M:      Robert Jarzmik <robert.jarzmik@free.fr>
15322 L:      linux-gpio@vger.kernel.org
15323 S:      Maintained
15324 F:      drivers/gpio/gpio-pxa.c
15325
15326 PXA MMCI DRIVER
15327 S:      Orphan
15328
15329 PXA RTC DRIVER
15330 M:      Robert Jarzmik <robert.jarzmik@free.fr>
15331 L:      linux-rtc@vger.kernel.org
15332 S:      Maintained
15333
15334 PXA2xx/PXA3xx SUPPORT
15335 M:      Daniel Mack <daniel@zonque.org>
15336 M:      Haojian Zhuang <haojian.zhuang@gmail.com>
15337 M:      Robert Jarzmik <robert.jarzmik@free.fr>
15338 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15339 S:      Maintained
15340 T:      git git://github.com/hzhuang1/linux.git
15341 T:      git git://github.com/rjarzmik/linux.git
15342 F:      arch/arm/boot/dts/pxa*
15343 F:      arch/arm/mach-pxa/
15344 F:      drivers/dma/pxa*
15345 F:      drivers/pcmcia/pxa2xx*
15346 F:      drivers/pinctrl/pxa/
15347 F:      drivers/spi/spi-pxa2xx*
15348 F:      drivers/usb/gadget/udc/pxa2*
15349 F:      include/sound/pxa2xx-lib.h
15350 F:      sound/arm/pxa*
15351 F:      sound/soc/pxa/
15352
15353 QAT DRIVER
15354 M:      Giovanni Cabiddu <giovanni.cabiddu@intel.com>
15355 L:      qat-linux@intel.com
15356 S:      Supported
15357 F:      drivers/crypto/qat/
15358
15359 QCOM AUDIO (ASoC) DRIVERS
15360 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
15361 M:      Banajit Goswami <bgoswami@codeaurora.org>
15362 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
15363 S:      Supported
15364 F:      sound/soc/codecs/lpass-va-macro.c
15365 F:      sound/soc/codecs/lpass-wsa-macro.*
15366 F:      sound/soc/codecs/msm8916-wcd-analog.c
15367 F:      sound/soc/codecs/msm8916-wcd-digital.c
15368 F:      sound/soc/codecs/wcd9335.*
15369 F:      sound/soc/codecs/wcd934x.c
15370 F:      sound/soc/codecs/wcd-clsh-v2.*
15371 F:      sound/soc/codecs/wsa881x.c
15372 F:      sound/soc/qcom/
15373
15374 QCOM IPA DRIVER
15375 M:      Alex Elder <elder@kernel.org>
15376 L:      netdev@vger.kernel.org
15377 S:      Supported
15378 F:      drivers/net/ipa/
15379
15380 QEMU MACHINE EMULATOR AND VIRTUALIZER SUPPORT
15381 M:      Gabriel Somlo <somlo@cmu.edu>
15382 M:      "Michael S. Tsirkin" <mst@redhat.com>
15383 L:      qemu-devel@nongnu.org
15384 S:      Maintained
15385 F:      drivers/firmware/qemu_fw_cfg.c
15386 F:      include/uapi/linux/qemu_fw_cfg.h
15387
15388 QIB DRIVER
15389 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
15390 M:      Mike Marciniszyn <mike.marciniszyn@cornelisnetworks.com>
15391 L:      linux-rdma@vger.kernel.org
15392 S:      Supported
15393 F:      drivers/infiniband/hw/qib/
15394
15395 QLOGIC QL41xxx FCOE DRIVER
15396 M:      Saurav Kashyap <skashyap@marvell.com>
15397 M:      Javed Hasan <jhasan@marvell.com>
15398 M:      GR-QLogic-Storage-Upstream@marvell.com
15399 L:      linux-scsi@vger.kernel.org
15400 S:      Supported
15401 F:      drivers/scsi/qedf/
15402
15403 QLOGIC QL41xxx ISCSI DRIVER
15404 M:      Nilesh Javali <njavali@marvell.com>
15405 M:      Manish Rangankar <mrangankar@marvell.com>
15406 M:      GR-QLogic-Storage-Upstream@marvell.com
15407 L:      linux-scsi@vger.kernel.org
15408 S:      Supported
15409 F:      drivers/scsi/qedi/
15410
15411 QLOGIC QL4xxx ETHERNET DRIVER
15412 M:      Ariel Elior <aelior@marvell.com>
15413 M:      GR-everest-linux-l2@marvell.com
15414 L:      netdev@vger.kernel.org
15415 S:      Supported
15416 F:      drivers/net/ethernet/qlogic/qed/
15417 F:      drivers/net/ethernet/qlogic/qede/
15418 F:      include/linux/qed/
15419
15420 QLOGIC QL4xxx RDMA DRIVER
15421 M:      Michal Kalderon <mkalderon@marvell.com>
15422 M:      Ariel Elior <aelior@marvell.com>
15423 L:      linux-rdma@vger.kernel.org
15424 S:      Supported
15425 F:      drivers/infiniband/hw/qedr/
15426 F:      include/uapi/rdma/qedr-abi.h
15427
15428 QLOGIC QLA1280 SCSI DRIVER
15429 M:      Michael Reed <mdr@sgi.com>
15430 L:      linux-scsi@vger.kernel.org
15431 S:      Maintained
15432 F:      drivers/scsi/qla1280.[ch]
15433
15434 QLOGIC QLA2XXX FC-SCSI DRIVER
15435 M:      Nilesh Javali <njavali@marvell.com>
15436 M:      GR-QLogic-Storage-Upstream@marvell.com
15437 L:      linux-scsi@vger.kernel.org
15438 S:      Supported
15439 F:      drivers/scsi/qla2xxx/
15440
15441 QLOGIC QLA3XXX NETWORK DRIVER
15442 M:      GR-Linux-NIC-Dev@marvell.com
15443 L:      netdev@vger.kernel.org
15444 S:      Supported
15445 F:      drivers/net/ethernet/qlogic/qla3xxx.*
15446
15447 QLOGIC QLA4XXX iSCSI DRIVER
15448 M:      Nilesh Javali <njavali@marvell.com>
15449 M:      Manish Rangankar <mrangankar@marvell.com>
15450 M:      GR-QLogic-Storage-Upstream@marvell.com
15451 L:      linux-scsi@vger.kernel.org
15452 S:      Supported
15453 F:      drivers/scsi/qla4xxx/
15454
15455 QLOGIC QLCNIC (1/10)Gb ETHERNET DRIVER
15456 M:      Shahed Shaikh <shshaikh@marvell.com>
15457 M:      Manish Chopra <manishc@marvell.com>
15458 M:      GR-Linux-NIC-Dev@marvell.com
15459 L:      netdev@vger.kernel.org
15460 S:      Supported
15461 F:      drivers/net/ethernet/qlogic/qlcnic/
15462
15463 QLOGIC QLGE 10Gb ETHERNET DRIVER
15464 M:      Manish Chopra <manishc@marvell.com>
15465 M:      GR-Linux-NIC-Dev@marvell.com
15466 M:      Coiby Xu <coiby.xu@gmail.com>
15467 L:      netdev@vger.kernel.org
15468 S:      Supported
15469 F:      Documentation/networking/device_drivers/qlogic/qlge.rst
15470 F:      drivers/staging/qlge/
15471
15472 QM1D1B0004 MEDIA DRIVER
15473 M:      Akihiro Tsukada <tskd08@gmail.com>
15474 L:      linux-media@vger.kernel.org
15475 S:      Odd Fixes
15476 F:      drivers/media/tuners/qm1d1b0004*
15477
15478 QM1D1C0042 MEDIA DRIVER
15479 M:      Akihiro Tsukada <tskd08@gmail.com>
15480 L:      linux-media@vger.kernel.org
15481 S:      Odd Fixes
15482 F:      drivers/media/tuners/qm1d1c0042*
15483
15484 QNX4 FILESYSTEM
15485 M:      Anders Larsen <al@alarsen.net>
15486 S:      Maintained
15487 W:      http://www.alarsen.net/linux/qnx4fs/
15488 F:      fs/qnx4/
15489 F:      include/uapi/linux/qnx4_fs.h
15490 F:      include/uapi/linux/qnxtypes.h
15491
15492 QORIQ DPAA2 FSL-MC BUS DRIVER
15493 M:      Stuart Yoder <stuyoder@gmail.com>
15494 M:      Laurentiu Tudor <laurentiu.tudor@nxp.com>
15495 L:      linux-kernel@vger.kernel.org
15496 S:      Maintained
15497 F:      Documentation/ABI/stable/sysfs-bus-fsl-mc
15498 F:      Documentation/devicetree/bindings/misc/fsl,qoriq-mc.txt
15499 F:      Documentation/networking/device_drivers/ethernet/freescale/dpaa2/overview.rst
15500 F:      drivers/bus/fsl-mc/
15501 F:      include/uapi/linux/fsl_mc.h
15502
15503 QT1010 MEDIA DRIVER
15504 M:      Antti Palosaari <crope@iki.fi>
15505 L:      linux-media@vger.kernel.org
15506 S:      Maintained
15507 W:      https://linuxtv.org
15508 W:      http://palosaari.fi/linux/
15509 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
15510 T:      git git://linuxtv.org/anttip/media_tree.git
15511 F:      drivers/media/tuners/qt1010*
15512
15513 QUALCOMM ATHEROS ATH10K WIRELESS DRIVER
15514 M:      Kalle Valo <kvalo@codeaurora.org>
15515 L:      ath10k@lists.infradead.org
15516 S:      Supported
15517 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath10k
15518 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
15519 F:      drivers/net/wireless/ath/ath10k/
15520
15521 QUALCOMM ATHEROS ATH11K WIRELESS DRIVER
15522 M:      Kalle Valo <kvalo@codeaurora.org>
15523 L:      ath11k@lists.infradead.org
15524 S:      Supported
15525 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kvalo/ath.git
15526 F:      drivers/net/wireless/ath/ath11k/
15527
15528 QUALCOMM ATHEROS ATH9K WIRELESS DRIVER
15529 M:      ath9k-devel@qca.qualcomm.com
15530 L:      linux-wireless@vger.kernel.org
15531 S:      Supported
15532 W:      https://wireless.wiki.kernel.org/en/users/Drivers/ath9k
15533 F:      drivers/net/wireless/ath/ath9k/
15534
15535 QUALCOMM CAMERA SUBSYSTEM DRIVER
15536 M:      Robert Foss <robert.foss@linaro.org>
15537 M:      Todor Tomov <todor.too@gmail.com>
15538 L:      linux-media@vger.kernel.org
15539 S:      Maintained
15540 F:      Documentation/admin-guide/media/qcom_camss.rst
15541 F:      Documentation/devicetree/bindings/media/*camss*
15542 F:      drivers/media/platform/qcom/camss/
15543
15544 QUALCOMM CORE POWER REDUCTION (CPR) AVS DRIVER
15545 M:      Niklas Cassel <nks@flawful.org>
15546 L:      linux-pm@vger.kernel.org
15547 L:      linux-arm-msm@vger.kernel.org
15548 S:      Maintained
15549 F:      Documentation/devicetree/bindings/power/avs/qcom,cpr.txt
15550 F:      drivers/soc/qcom/cpr.c
15551
15552 QUALCOMM CPUFREQ DRIVER MSM8996/APQ8096
15553 M:      Ilia Lin <ilia.lin@kernel.org>
15554 L:      linux-pm@vger.kernel.org
15555 S:      Maintained
15556 F:      Documentation/devicetree/bindings/opp/qcom-nvmem-cpufreq.txt
15557 F:      drivers/cpufreq/qcom-cpufreq-nvmem.c
15558
15559 QUALCOMM CRYPTO DRIVERS
15560 M:      Thara Gopinath <thara.gopinath@linaro.org>
15561 L:      linux-crypto@vger.kernel.org
15562 L:      linux-arm-msm@vger.kernel.org
15563 S:      Maintained
15564 F:      drivers/crypto/qce/
15565
15566 QUALCOMM EMAC GIGABIT ETHERNET DRIVER
15567 M:      Timur Tabi <timur@kernel.org>
15568 L:      netdev@vger.kernel.org
15569 S:      Maintained
15570 F:      drivers/net/ethernet/qualcomm/emac/
15571
15572 QUALCOMM ETHQOS ETHERNET DRIVER
15573 M:      Vinod Koul <vkoul@kernel.org>
15574 L:      netdev@vger.kernel.org
15575 S:      Maintained
15576 F:      Documentation/devicetree/bindings/net/qcom,ethqos.txt
15577 F:      drivers/net/ethernet/stmicro/stmmac/dwmac-qcom-ethqos.c
15578
15579 QUALCOMM GENERIC INTERFACE I2C DRIVER
15580 M:      Akash Asthana <akashast@codeaurora.org>
15581 M:      Mukesh Savaliya <msavaliy@codeaurora.org>
15582 L:      linux-i2c@vger.kernel.org
15583 L:      linux-arm-msm@vger.kernel.org
15584 S:      Supported
15585 F:      drivers/i2c/busses/i2c-qcom-geni.c
15586
15587 QUALCOMM HEXAGON ARCHITECTURE
15588 M:      Brian Cain <bcain@codeaurora.org>
15589 L:      linux-hexagon@vger.kernel.org
15590 S:      Supported
15591 F:      arch/hexagon/
15592
15593 QUALCOMM HIDMA DRIVER
15594 M:      Sinan Kaya <okaya@kernel.org>
15595 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
15596 L:      linux-arm-msm@vger.kernel.org
15597 L:      dmaengine@vger.kernel.org
15598 S:      Supported
15599 F:      drivers/dma/qcom/hidma*
15600
15601 QUALCOMM I2C CCI DRIVER
15602 M:      Loic Poulain <loic.poulain@linaro.org>
15603 M:      Robert Foss <robert.foss@linaro.org>
15604 L:      linux-i2c@vger.kernel.org
15605 L:      linux-arm-msm@vger.kernel.org
15606 S:      Maintained
15607 F:      Documentation/devicetree/bindings/i2c/i2c-qcom-cci.txt
15608 F:      drivers/i2c/busses/i2c-qcom-cci.c
15609
15610 QUALCOMM IOMMU
15611 M:      Rob Clark <robdclark@gmail.com>
15612 L:      iommu@lists.linux-foundation.org
15613 L:      iommu@lists.linux.dev
15614 L:      linux-arm-msm@vger.kernel.org
15615 S:      Maintained
15616 F:      drivers/iommu/arm/arm-smmu/qcom_iommu.c
15617
15618 QUALCOMM IPC ROUTER (QRTR) DRIVER
15619 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
15620 L:      linux-arm-msm@vger.kernel.org
15621 S:      Maintained
15622 F:      include/trace/events/qrtr.h
15623 F:      include/uapi/linux/qrtr.h
15624 F:      net/qrtr/
15625
15626 QUALCOMM IPCC MAILBOX DRIVER
15627 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
15628 L:      linux-arm-msm@vger.kernel.org
15629 S:      Supported
15630 F:      Documentation/devicetree/bindings/mailbox/qcom-ipcc.yaml
15631 F:      drivers/mailbox/qcom-ipcc.c
15632 F:      include/dt-bindings/mailbox/qcom-ipcc.h
15633
15634 QUALCOMM IPQ4019 USB PHY DRIVER
15635 M:      Robert Marko <robert.marko@sartura.hr>
15636 M:      Luka Perkov <luka.perkov@sartura.hr>
15637 L:      linux-arm-msm@vger.kernel.org
15638 S:      Maintained
15639 F:      Documentation/devicetree/bindings/phy/qcom-usb-ipq4019-phy.yaml
15640 F:      drivers/phy/qualcomm/phy-qcom-ipq4019-usb.c
15641
15642 QUALCOMM IPQ4019 VQMMC REGULATOR DRIVER
15643 M:      Robert Marko <robert.marko@sartura.hr>
15644 M:      Luka Perkov <luka.perkov@sartura.hr>
15645 L:      linux-arm-msm@vger.kernel.org
15646 S:      Maintained
15647 F:      Documentation/devicetree/bindings/regulator/vqmmc-ipq4019-regulator.yaml
15648 F:      drivers/regulator/vqmmc-ipq4019-regulator.c
15649
15650 QUALCOMM RMNET DRIVER
15651 M:      Subash Abhinov Kasiviswanathan <subashab@codeaurora.org>
15652 M:      Sean Tranchetti <stranche@codeaurora.org>
15653 L:      netdev@vger.kernel.org
15654 S:      Maintained
15655 F:      Documentation/networking/device_drivers/cellular/qualcomm/rmnet.rst
15656 F:      drivers/net/ethernet/qualcomm/rmnet/
15657 F:      include/linux/if_rmnet.h
15658
15659 QUALCOMM TSENS THERMAL DRIVER
15660 M:      Amit Kucheria <amitk@kernel.org>
15661 M:      Thara Gopinath <thara.gopinath@linaro.org>
15662 L:      linux-pm@vger.kernel.org
15663 L:      linux-arm-msm@vger.kernel.org
15664 S:      Maintained
15665 F:      Documentation/devicetree/bindings/thermal/qcom-tsens.yaml
15666 F:      drivers/thermal/qcom/
15667
15668 QUALCOMM VENUS VIDEO ACCELERATOR DRIVER
15669 M:      Stanimir Varbanov <stanimir.varbanov@linaro.org>
15670 L:      linux-media@vger.kernel.org
15671 L:      linux-arm-msm@vger.kernel.org
15672 S:      Maintained
15673 T:      git git://linuxtv.org/media_tree.git
15674 F:      Documentation/devicetree/bindings/media/*venus*
15675 F:      drivers/media/platform/qcom/venus/
15676
15677 QUALCOMM WCN36XX WIRELESS DRIVER
15678 M:      Kalle Valo <kvalo@codeaurora.org>
15679 L:      wcn36xx@lists.infradead.org
15680 S:      Supported
15681 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wcn36xx
15682 T:      git git://github.com/KrasnikovEugene/wcn36xx.git
15683 F:      drivers/net/wireless/ath/wcn36xx/
15684
15685 QUANTENNA QTNFMAC WIRELESS DRIVER
15686 M:      Igor Mitsyanko <imitsyanko@quantenna.com>
15687 R:      Sergey Matyukevich <geomatsi@gmail.com>
15688 L:      linux-wireless@vger.kernel.org
15689 S:      Maintained
15690 F:      drivers/net/wireless/quantenna
15691
15692 RADEON and AMDGPU DRM DRIVERS
15693 M:      Alex Deucher <alexander.deucher@amd.com>
15694 M:      Christian König <christian.koenig@amd.com>
15695 M:      Pan, Xinhui <Xinhui.Pan@amd.com>
15696 L:      amd-gfx@lists.freedesktop.org
15697 S:      Supported
15698 T:      git https://gitlab.freedesktop.org/agd5f/linux.git
15699 B:      https://gitlab.freedesktop.org/drm/amd/-/issues
15700 C:      irc://irc.oftc.net/radeon
15701 F:      drivers/gpu/drm/amd/
15702 F:      drivers/gpu/drm/radeon/
15703 F:      include/uapi/drm/amdgpu_drm.h
15704 F:      include/uapi/drm/radeon_drm.h
15705
15706 RADEON FRAMEBUFFER DISPLAY DRIVER
15707 M:      Benjamin Herrenschmidt <benh@kernel.crashing.org>
15708 L:      linux-fbdev@vger.kernel.org
15709 S:      Maintained
15710 F:      drivers/video/fbdev/aty/radeon*
15711 F:      include/uapi/linux/radeonfb.h
15712
15713 RADIOSHARK RADIO DRIVER
15714 M:      Hans Verkuil <hverkuil@xs4all.nl>
15715 L:      linux-media@vger.kernel.org
15716 S:      Maintained
15717 T:      git git://linuxtv.org/media_tree.git
15718 F:      drivers/media/radio/radio-shark.c
15719
15720 RADIOSHARK2 RADIO DRIVER
15721 M:      Hans Verkuil <hverkuil@xs4all.nl>
15722 L:      linux-media@vger.kernel.org
15723 S:      Maintained
15724 T:      git git://linuxtv.org/media_tree.git
15725 F:      drivers/media/radio/radio-shark2.c
15726 F:      drivers/media/radio/radio-tea5777.c
15727
15728 RADOS BLOCK DEVICE (RBD)
15729 M:      Ilya Dryomov <idryomov@gmail.com>
15730 R:      Dongsheng Yang <dongsheng.yang@easystack.cn>
15731 L:      ceph-devel@vger.kernel.org
15732 S:      Supported
15733 W:      http://ceph.com/
15734 T:      git git://github.com/ceph/ceph-client.git
15735 F:      Documentation/ABI/testing/sysfs-bus-rbd
15736 F:      drivers/block/rbd.c
15737 F:      drivers/block/rbd_types.h
15738
15739 RAGE128 FRAMEBUFFER DISPLAY DRIVER
15740 M:      Paul Mackerras <paulus@samba.org>
15741 L:      linux-fbdev@vger.kernel.org
15742 S:      Maintained
15743 F:      drivers/video/fbdev/aty/aty128fb.c
15744
15745 RAINSHADOW-CEC DRIVER
15746 M:      Hans Verkuil <hverkuil@xs4all.nl>
15747 L:      linux-media@vger.kernel.org
15748 S:      Maintained
15749 T:      git git://linuxtv.org/media_tree.git
15750 F:      drivers/media/cec/usb/rainshadow/
15751
15752 RALINK MIPS ARCHITECTURE
15753 M:      John Crispin <john@phrozen.org>
15754 L:      linux-mips@vger.kernel.org
15755 S:      Maintained
15756 F:      arch/mips/ralink
15757
15758 RALINK RT2X00 WIRELESS LAN DRIVER
15759 M:      Stanislaw Gruszka <stf_xl@wp.pl>
15760 M:      Helmut Schaa <helmut.schaa@googlemail.com>
15761 L:      linux-wireless@vger.kernel.org
15762 S:      Maintained
15763 F:      drivers/net/wireless/ralink/rt2x00/
15764
15765 RAMDISK RAM BLOCK DEVICE DRIVER
15766 M:      Jens Axboe <axboe@kernel.dk>
15767 S:      Maintained
15768 F:      Documentation/admin-guide/blockdev/ramdisk.rst
15769 F:      drivers/block/brd.c
15770
15771 RANCHU VIRTUAL BOARD FOR MIPS
15772 M:      Miodrag Dinic <miodrag.dinic@mips.com>
15773 L:      linux-mips@vger.kernel.org
15774 S:      Supported
15775 F:      arch/mips/configs/generic/board-ranchu.config
15776 F:      arch/mips/generic/board-ranchu.c
15777
15778 RANDOM NUMBER DRIVER
15779 M:      "Theodore Ts'o" <tytso@mit.edu>
15780 M:      Jason A. Donenfeld <Jason@zx2c4.com>
15781 T:      git https://git.kernel.org/pub/scm/linux/kernel/git/crng/random.git
15782 S:      Maintained
15783 F:      drivers/char/random.c
15784
15785 RAPIDIO SUBSYSTEM
15786 M:      Matt Porter <mporter@kernel.crashing.org>
15787 M:      Alexandre Bounine <alex.bou9@gmail.com>
15788 S:      Maintained
15789 F:      drivers/rapidio/
15790
15791 RAS INFRASTRUCTURE
15792 M:      Tony Luck <tony.luck@intel.com>
15793 M:      Borislav Petkov <bp@alien8.de>
15794 L:      linux-edac@vger.kernel.org
15795 S:      Maintained
15796 F:      Documentation/admin-guide/ras.rst
15797 F:      drivers/ras/
15798 F:      include/linux/ras.h
15799 F:      include/ras/ras_event.h
15800
15801 RAYLINK/WEBGEAR 802.11 WIRELESS LAN DRIVER
15802 L:      linux-wireless@vger.kernel.org
15803 S:      Orphan
15804 F:      drivers/net/wireless/ray*
15805
15806 RC-CORE / LIRC FRAMEWORK
15807 M:      Sean Young <sean@mess.org>
15808 L:      linux-media@vger.kernel.org
15809 S:      Maintained
15810 W:      http://linuxtv.org
15811 T:      git git://linuxtv.org/media_tree.git
15812 F:      Documentation/driver-api/media/rc-core.rst
15813 F:      Documentation/userspace-api/media/rc/
15814 F:      drivers/media/rc/
15815 F:      include/media/rc-map.h
15816 F:      include/media/rc-core.h
15817 F:      include/uapi/linux/lirc.h
15818
15819 RCMM REMOTE CONTROLS DECODER
15820 M:      Patrick Lerda <patrick9876@free.fr>
15821 S:      Maintained
15822 F:      drivers/media/rc/ir-rcmm-decoder.c
15823
15824 RCUTORTURE TEST FRAMEWORK
15825 M:      "Paul E. McKenney" <paulmck@kernel.org>
15826 M:      Josh Triplett <josh@joshtriplett.org>
15827 R:      Steven Rostedt <rostedt@goodmis.org>
15828 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
15829 R:      Lai Jiangshan <jiangshanlai@gmail.com>
15830 L:      rcu@vger.kernel.org
15831 S:      Supported
15832 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
15833 F:      tools/testing/selftests/rcutorture
15834
15835 RDACM20 Camera Sensor
15836 M:      Jacopo Mondi <jacopo+renesas@jmondi.org>
15837 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
15838 M:      Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
15839 M:      Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
15840 L:      linux-media@vger.kernel.org
15841 S:      Maintained
15842 F:      Documentation/devicetree/bindings/media/i2c/imi,rdacm2x-gmsl.yaml
15843 F:      drivers/media/i2c/max9271.c
15844 F:      drivers/media/i2c/max9271.h
15845 F:      drivers/media/i2c/rdacm20.c
15846
15847 RDACM21 Camera Sensor
15848 M:      Jacopo Mondi <jacopo+renesas@jmondi.org>
15849 M:      Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>
15850 M:      Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
15851 M:      Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se>
15852 L:      linux-media@vger.kernel.org
15853 S:      Maintained
15854 F:      Documentation/devicetree/bindings/media/i2c/imi,rdacm2x-gmsl.yaml
15855 F:      drivers/media/i2c/max9271.c
15856 F:      drivers/media/i2c/max9271.h
15857 F:      drivers/media/i2c/rdacm21.c
15858
15859 RDC R-321X SoC
15860 M:      Florian Fainelli <florian@openwrt.org>
15861 S:      Maintained
15862
15863 RDC R6040 FAST ETHERNET DRIVER
15864 M:      Florian Fainelli <f.fainelli@gmail.com>
15865 L:      netdev@vger.kernel.org
15866 S:      Maintained
15867 F:      drivers/net/ethernet/rdc/r6040.c
15868
15869 RDMAVT - RDMA verbs software
15870 M:      Dennis Dalessandro <dennis.dalessandro@cornelisnetworks.com>
15871 M:      Mike Marciniszyn <mike.marciniszyn@cornelisnetworks.com>
15872 L:      linux-rdma@vger.kernel.org
15873 S:      Supported
15874 F:      drivers/infiniband/sw/rdmavt
15875
15876 RDS - RELIABLE DATAGRAM SOCKETS
15877 M:      Santosh Shilimkar <santosh.shilimkar@oracle.com>
15878 L:      netdev@vger.kernel.org
15879 L:      linux-rdma@vger.kernel.org
15880 L:      rds-devel@oss.oracle.com (moderated for non-subscribers)
15881 S:      Supported
15882 W:      https://oss.oracle.com/projects/rds/
15883 F:      Documentation/networking/rds.rst
15884 F:      net/rds/
15885
15886 RDT - RESOURCE ALLOCATION
15887 M:      Fenghua Yu <fenghua.yu@intel.com>
15888 M:      Reinette Chatre <reinette.chatre@intel.com>
15889 L:      linux-kernel@vger.kernel.org
15890 S:      Supported
15891 F:      Documentation/x86/resctrl*
15892 F:      arch/x86/include/asm/resctrl.h
15893 F:      arch/x86/kernel/cpu/resctrl/
15894 F:      tools/testing/selftests/resctrl/
15895
15896 READ-COPY UPDATE (RCU)
15897 M:      "Paul E. McKenney" <paulmck@kernel.org>
15898 M:      Josh Triplett <josh@joshtriplett.org>
15899 R:      Steven Rostedt <rostedt@goodmis.org>
15900 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
15901 R:      Lai Jiangshan <jiangshanlai@gmail.com>
15902 R:      Joel Fernandes <joel@joelfernandes.org>
15903 L:      rcu@vger.kernel.org
15904 S:      Supported
15905 W:      http://www.rdrop.com/users/paulmck/RCU/
15906 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
15907 F:      Documentation/RCU/
15908 F:      include/linux/rcu*
15909 F:      kernel/rcu/
15910 X:      Documentation/RCU/torture.rst
15911 X:      include/linux/srcu*.h
15912 X:      kernel/rcu/srcu*.c
15913
15914 REAL TIME CLOCK (RTC) SUBSYSTEM
15915 M:      Alessandro Zummo <a.zummo@towertech.it>
15916 M:      Alexandre Belloni <alexandre.belloni@bootlin.com>
15917 L:      linux-rtc@vger.kernel.org
15918 S:      Maintained
15919 Q:      http://patchwork.ozlabs.org/project/rtc-linux/list/
15920 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux.git
15921 F:      Documentation/admin-guide/rtc.rst
15922 F:      Documentation/devicetree/bindings/rtc/
15923 F:      drivers/rtc/
15924 F:      include/linux/platform_data/rtc-*
15925 F:      include/linux/rtc.h
15926 F:      include/linux/rtc/
15927 F:      include/uapi/linux/rtc.h
15928 F:      tools/testing/selftests/rtc/
15929
15930 REALTEK AUDIO CODECS
15931 M:      Oder Chiou <oder_chiou@realtek.com>
15932 S:      Maintained
15933 F:      include/sound/rt*.h
15934 F:      sound/soc/codecs/rt*
15935
15936 REALTEK RTL83xx SMI DSA ROUTER CHIPS
15937 M:      Linus Walleij <linus.walleij@linaro.org>
15938 S:      Maintained
15939 F:      Documentation/devicetree/bindings/net/dsa/realtek-smi.txt
15940 F:      drivers/net/dsa/realtek-smi*
15941 F:      drivers/net/dsa/rtl83*
15942
15943 REALTEK WIRELESS DRIVER (rtlwifi family)
15944 M:      Ping-Ke Shih <pkshih@realtek.com>
15945 L:      linux-wireless@vger.kernel.org
15946 S:      Maintained
15947 W:      https://wireless.wiki.kernel.org/
15948 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
15949 F:      drivers/net/wireless/realtek/rtlwifi/
15950
15951 REALTEK WIRELESS DRIVER (rtw88)
15952 M:      Yan-Hsuan Chuang <tony0620emma@gmail.com>
15953 L:      linux-wireless@vger.kernel.org
15954 S:      Maintained
15955 F:      drivers/net/wireless/realtek/rtw88/
15956
15957 REDPINE WIRELESS DRIVER
15958 M:      Amitkumar Karwar <amitkarwar@gmail.com>
15959 M:      Siva Rebbagondla <siva8118@gmail.com>
15960 L:      linux-wireless@vger.kernel.org
15961 S:      Maintained
15962 F:      drivers/net/wireless/rsi/
15963
15964 REGISTER MAP ABSTRACTION
15965 M:      Mark Brown <broonie@kernel.org>
15966 L:      linux-kernel@vger.kernel.org
15967 S:      Supported
15968 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regmap.git
15969 F:      Documentation/devicetree/bindings/regmap/
15970 F:      drivers/base/regmap/
15971 F:      include/linux/regmap.h
15972
15973 REISERFS FILE SYSTEM
15974 L:      reiserfs-devel@vger.kernel.org
15975 S:      Supported
15976 F:      fs/reiserfs/
15977
15978 REMOTE PROCESSOR (REMOTEPROC) SUBSYSTEM
15979 M:      Ohad Ben-Cohen <ohad@wizery.com>
15980 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
15981 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
15982 L:      linux-remoteproc@vger.kernel.org
15983 S:      Maintained
15984 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git rproc-next
15985 F:      Documentation/ABI/testing/sysfs-class-remoteproc
15986 F:      Documentation/devicetree/bindings/remoteproc/
15987 F:      Documentation/staging/remoteproc.rst
15988 F:      drivers/remoteproc/
15989 F:      include/linux/remoteproc.h
15990 F:      include/linux/remoteproc/
15991
15992 REMOTE PROCESSOR MESSAGING (RPMSG) SUBSYSTEM
15993 M:      Ohad Ben-Cohen <ohad@wizery.com>
15994 M:      Bjorn Andersson <bjorn.andersson@linaro.org>
15995 M:      Mathieu Poirier <mathieu.poirier@linaro.org>
15996 L:      linux-remoteproc@vger.kernel.org
15997 S:      Maintained
15998 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/andersson/remoteproc.git rpmsg-next
15999 F:      Documentation/ABI/testing/sysfs-bus-rpmsg
16000 F:      Documentation/staging/rpmsg.rst
16001 F:      drivers/rpmsg/
16002 F:      include/linux/rpmsg.h
16003 F:      include/linux/rpmsg/
16004 F:      include/uapi/linux/rpmsg.h
16005 F:      samples/rpmsg/
16006
16007 REMOTE PROCESSOR MESSAGING (RPMSG) WWAN CONTROL DRIVER
16008 M:      Stephan Gerhold <stephan@gerhold.net>
16009 L:      netdev@vger.kernel.org
16010 L:      linux-remoteproc@vger.kernel.org
16011 S:      Maintained
16012 F:      drivers/net/wwan/rpmsg_wwan_ctrl.c
16013
16014 RENESAS CLOCK DRIVERS
16015 M:      Geert Uytterhoeven <geert+renesas@glider.be>
16016 L:      linux-renesas-soc@vger.kernel.org
16017 S:      Supported
16018 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git renesas-clk
16019 F:      Documentation/devicetree/bindings/clock/renesas,*
16020 F:      drivers/clk/renesas/
16021
16022 RENESAS EMEV2 I2C DRIVER
16023 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
16024 L:      linux-renesas-soc@vger.kernel.org
16025 S:      Supported
16026 F:      Documentation/devicetree/bindings/i2c/renesas,iic-emev2.yaml
16027 F:      drivers/i2c/busses/i2c-emev2.c
16028
16029 RENESAS ETHERNET DRIVERS
16030 R:      Sergey Shtylyov <s.shtylyov@omp.ru>
16031 L:      netdev@vger.kernel.org
16032 L:      linux-renesas-soc@vger.kernel.org
16033 F:      Documentation/devicetree/bindings/net/renesas,*.yaml
16034 F:      drivers/net/ethernet/renesas/
16035 F:      include/linux/sh_eth.h
16036
16037 RENESAS R-CAR GYROADC DRIVER
16038 M:      Marek Vasut <marek.vasut@gmail.com>
16039 L:      linux-iio@vger.kernel.org
16040 S:      Supported
16041 F:      Documentation/devicetree/bindings/iio/adc/renesas,rcar-gyroadc.yaml
16042 F:      drivers/iio/adc/rcar-gyroadc.c
16043
16044 RENESAS R-CAR I2C DRIVERS
16045 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
16046 L:      linux-renesas-soc@vger.kernel.org
16047 S:      Supported
16048 F:      Documentation/devicetree/bindings/i2c/renesas,rcar-i2c.yaml
16049 F:      Documentation/devicetree/bindings/i2c/renesas,rmobile-iic.yaml
16050 F:      drivers/i2c/busses/i2c-rcar.c
16051 F:      drivers/i2c/busses/i2c-sh_mobile.c
16052
16053 RENESAS R-CAR THERMAL DRIVERS
16054 M:      Niklas Söderlund <niklas.soderlund@ragnatech.se>
16055 L:      linux-renesas-soc@vger.kernel.org
16056 S:      Supported
16057 F:      Documentation/devicetree/bindings/thermal/rcar-gen3-thermal.yaml
16058 F:      Documentation/devicetree/bindings/thermal/rcar-thermal.yaml
16059 F:      drivers/thermal/rcar_gen3_thermal.c
16060 F:      drivers/thermal/rcar_thermal.c
16061
16062 RENESAS RIIC DRIVER
16063 M:      Chris Brandt <chris.brandt@renesas.com>
16064 L:      linux-renesas-soc@vger.kernel.org
16065 S:      Supported
16066 F:      Documentation/devicetree/bindings/i2c/renesas,riic.yaml
16067 F:      drivers/i2c/busses/i2c-riic.c
16068
16069 RENESAS USB PHY DRIVER
16070 M:      Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
16071 L:      linux-renesas-soc@vger.kernel.org
16072 S:      Maintained
16073 F:      drivers/phy/renesas/phy-rcar-gen3-usb*.c
16074
16075 RENESAS RZ/G2L A/D DRIVER
16076 M:      Lad Prabhakar <prabhakar.mahadev-lad.rj@bp.renesas.com>
16077 L:      linux-iio@vger.kernel.org
16078 L:      linux-renesas-soc@vger.kernel.org
16079 S:      Supported
16080 F:      Documentation/devicetree/bindings/iio/adc/renesas,rzg2l-adc.yaml
16081 F:      drivers/iio/adc/rzg2l_adc.c
16082
16083 RESET CONTROLLER FRAMEWORK
16084 M:      Philipp Zabel <p.zabel@pengutronix.de>
16085 S:      Maintained
16086 T:      git git://git.pengutronix.de/git/pza/linux
16087 F:      Documentation/devicetree/bindings/reset/
16088 F:      Documentation/driver-api/reset.rst
16089 F:      drivers/reset/
16090 F:      include/dt-bindings/reset/
16091 F:      include/linux/reset-controller.h
16092 F:      include/linux/reset.h
16093 F:      include/linux/reset/
16094 K:      \b(?:devm_|of_)?reset_control(?:ler_[a-z]+|_[a-z_]+)?\b
16095
16096 RESTARTABLE SEQUENCES SUPPORT
16097 M:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
16098 M:      Peter Zijlstra <peterz@infradead.org>
16099 M:      "Paul E. McKenney" <paulmck@kernel.org>
16100 M:      Boqun Feng <boqun.feng@gmail.com>
16101 L:      linux-kernel@vger.kernel.org
16102 S:      Supported
16103 F:      include/trace/events/rseq.h
16104 F:      include/uapi/linux/rseq.h
16105 F:      kernel/rseq.c
16106 F:      tools/testing/selftests/rseq/
16107
16108 RFKILL
16109 M:      Johannes Berg <johannes@sipsolutions.net>
16110 L:      linux-wireless@vger.kernel.org
16111 S:      Maintained
16112 W:      https://wireless.wiki.kernel.org/
16113 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211.git
16114 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jberg/mac80211-next.git
16115 F:      Documentation/ABI/stable/sysfs-class-rfkill
16116 F:      Documentation/driver-api/rfkill.rst
16117 F:      include/linux/rfkill.h
16118 F:      include/uapi/linux/rfkill.h
16119 F:      net/rfkill/
16120
16121 RHASHTABLE
16122 M:      Thomas Graf <tgraf@suug.ch>
16123 M:      Herbert Xu <herbert@gondor.apana.org.au>
16124 L:      netdev@vger.kernel.org
16125 S:      Maintained
16126 F:      include/linux/rhashtable-types.h
16127 F:      include/linux/rhashtable.h
16128 F:      lib/rhashtable.c
16129 F:      lib/test_rhashtable.c
16130
16131 RICOH R5C592 MEMORYSTICK DRIVER
16132 M:      Maxim Levitsky <maximlevitsky@gmail.com>
16133 S:      Maintained
16134 F:      drivers/memstick/host/r592.*
16135
16136 RICOH SMARTMEDIA/XD DRIVER
16137 M:      Maxim Levitsky <maximlevitsky@gmail.com>
16138 S:      Maintained
16139 F:      drivers/mtd/nand/raw/r852.c
16140 F:      drivers/mtd/nand/raw/r852.h
16141
16142 RISC-V ARCHITECTURE
16143 M:      Paul Walmsley <paul.walmsley@sifive.com>
16144 M:      Palmer Dabbelt <palmer@dabbelt.com>
16145 M:      Albert Ou <aou@eecs.berkeley.edu>
16146 L:      linux-riscv@lists.infradead.org
16147 S:      Supported
16148 P:      Documentation/riscv/patch-acceptance.rst
16149 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/riscv/linux.git
16150 F:      arch/riscv/
16151 N:      riscv
16152 K:      riscv
16153
16154 RISC-V/MICROCHIP POLARFIRE SOC SUPPORT
16155 M:      Lewis Hanly <lewis.hanly@microchip.com>
16156 L:      linux-riscv@lists.infradead.org
16157 S:      Supported
16158 F:      drivers/mailbox/mailbox-mpfs.c
16159 F:      drivers/soc/microchip/
16160 F:      include/soc/microchip/mpfs.h
16161
16162 RNBD BLOCK DRIVERS
16163 M:      Md. Haris Iqbal <haris.iqbal@ionos.com>
16164 M:      Jack Wang <jinpu.wang@ionos.com>
16165 L:      linux-block@vger.kernel.org
16166 S:      Maintained
16167 F:      drivers/block/rnbd/
16168
16169 ROCCAT DRIVERS
16170 M:      Stefan Achatz <erazor_de@users.sourceforge.net>
16171 S:      Maintained
16172 W:      http://sourceforge.net/projects/roccat/
16173 F:      Documentation/ABI/*/sysfs-driver-hid-roccat*
16174 F:      drivers/hid/hid-roccat*
16175 F:      include/linux/hid-roccat*
16176
16177 ROCKCHIP ISP V1 DRIVER
16178 M:      Helen Koike <helen.koike@collabora.com>
16179 M:      Dafna Hirschfeld <dafna.hirschfeld@collabora.com>
16180 L:      linux-media@vger.kernel.org
16181 L:      linux-rockchip@lists.infradead.org
16182 S:      Maintained
16183 F:      Documentation/admin-guide/media/rkisp1.rst
16184 F:      Documentation/devicetree/bindings/media/rockchip-isp1.yaml
16185 F:      Documentation/userspace-api/media/v4l/pixfmt-meta-rkisp1.rst
16186 F:      drivers/media/platform/rockchip/rkisp1
16187 F:      include/uapi/linux/rkisp1-config.h
16188
16189 ROCKCHIP RASTER 2D GRAPHIC ACCELERATION UNIT DRIVER
16190 M:      Jacob Chen <jacob-chen@iotwrt.com>
16191 M:      Ezequiel Garcia <ezequiel@collabora.com>
16192 L:      linux-media@vger.kernel.org
16193 L:      linux-rockchip@lists.infradead.org
16194 S:      Maintained
16195 F:      Documentation/devicetree/bindings/media/rockchip-rga.yaml
16196 F:      drivers/media/platform/rockchip/rga/
16197
16198 ROCKCHIP VIDEO DECODER DRIVER
16199 M:      Ezequiel Garcia <ezequiel@collabora.com>
16200 L:      linux-media@vger.kernel.org
16201 L:      linux-rockchip@lists.infradead.org
16202 S:      Maintained
16203 F:      Documentation/devicetree/bindings/media/rockchip,vdec.yaml
16204 F:      drivers/staging/media/rkvdec/
16205
16206 ROCKER DRIVER
16207 M:      Jiri Pirko <jiri@resnulli.us>
16208 L:      netdev@vger.kernel.org
16209 S:      Supported
16210 F:      drivers/net/ethernet/rocker/
16211
16212 ROCKETPORT EXPRESS/INFINITY DRIVER
16213 M:      Kevin Cernekee <cernekee@gmail.com>
16214 L:      linux-serial@vger.kernel.org
16215 S:      Odd Fixes
16216 F:      drivers/tty/serial/rp2.*
16217
16218 ROHM BD99954 CHARGER IC
16219 R:      Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
16220 L:      linux-power@fi.rohmeurope.com
16221 S:      Supported
16222 F:      drivers/power/supply/bd99954-charger.c
16223 F:      drivers/power/supply/bd99954-charger.h
16224
16225 ROHM BH1750 AMBIENT LIGHT SENSOR DRIVER
16226 M:      Tomasz Duszynski <tduszyns@gmail.com>
16227 S:      Maintained
16228 F:      Documentation/devicetree/bindings/iio/light/bh1750.yaml
16229 F:      drivers/iio/light/bh1750.c
16230
16231 ROHM MULTIFUNCTION BD9571MWV-M PMIC DEVICE DRIVERS
16232 M:      Marek Vasut <marek.vasut+renesas@gmail.com>
16233 L:      linux-kernel@vger.kernel.org
16234 L:      linux-renesas-soc@vger.kernel.org
16235 S:      Supported
16236 F:      Documentation/devicetree/bindings/mfd/bd9571mwv.txt
16237 F:      drivers/gpio/gpio-bd9571mwv.c
16238 F:      drivers/mfd/bd9571mwv.c
16239 F:      drivers/regulator/bd9571mwv-regulator.c
16240 F:      include/linux/mfd/bd9571mwv.h
16241
16242 ROHM POWER MANAGEMENT IC DEVICE DRIVERS
16243 R:      Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
16244 L:      linux-power@fi.rohmeurope.com
16245 S:      Supported
16246 F:      Documentation/devicetree/bindings/mfd/rohm,bd70528-pmic.txt
16247 F:      Documentation/devicetree/bindings/regulator/rohm,bd70528-regulator.txt
16248 F:      drivers/clk/clk-bd718x7.c
16249 F:      drivers/gpio/gpio-bd70528.c
16250 F:      drivers/gpio/gpio-bd71815.c
16251 F:      drivers/gpio/gpio-bd71828.c
16252 F:      drivers/mfd/rohm-bd70528.c
16253 F:      drivers/mfd/rohm-bd71828.c
16254 F:      drivers/mfd/rohm-bd718x7.c
16255 F:      drivers/mfd/rohm-bd9576.c
16256 F:      drivers/power/supply/bd70528-charger.c
16257 F:      drivers/regulator/bd70528-regulator.c
16258 F:      drivers/regulator/bd71815-regulator.c
16259 F:      drivers/regulator/bd71828-regulator.c
16260 F:      drivers/regulator/bd718x7-regulator.c
16261 F:      drivers/regulator/bd9576-regulator.c
16262 F:      drivers/regulator/rohm-regulator.c
16263 F:      drivers/rtc/rtc-bd70528.c
16264 F:      drivers/watchdog/bd70528_wdt.c
16265 F:      drivers/watchdog/bd9576_wdt.c
16266 F:      include/linux/mfd/rohm-bd70528.h
16267 F:      include/linux/mfd/rohm-bd71815.h
16268 F:      include/linux/mfd/rohm-bd71828.h
16269 F:      include/linux/mfd/rohm-bd718x7.h
16270 F:      include/linux/mfd/rohm-bd957x.h
16271 F:      include/linux/mfd/rohm-generic.h
16272 F:      include/linux/mfd/rohm-shared.h
16273
16274 ROSE NETWORK LAYER
16275 M:      Ralf Baechle <ralf@linux-mips.org>
16276 L:      linux-hams@vger.kernel.org
16277 S:      Maintained
16278 W:      http://www.linux-ax25.org/
16279 F:      include/net/rose.h
16280 F:      include/uapi/linux/rose.h
16281 F:      net/rose/
16282
16283 ROTATION DRIVER FOR ALLWINNER A83T
16284 M:      Jernej Skrabec <jernej.skrabec@gmail.com>
16285 L:      linux-media@vger.kernel.org
16286 S:      Maintained
16287 T:      git git://linuxtv.org/media_tree.git
16288 F:      Documentation/devicetree/bindings/media/allwinner,sun8i-a83t-de2-rotate.yaml
16289 F:      drivers/media/platform/sunxi/sun8i-rotate/
16290
16291 RTL2830 MEDIA DRIVER
16292 M:      Antti Palosaari <crope@iki.fi>
16293 L:      linux-media@vger.kernel.org
16294 S:      Maintained
16295 W:      https://linuxtv.org
16296 W:      http://palosaari.fi/linux/
16297 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16298 T:      git git://linuxtv.org/anttip/media_tree.git
16299 F:      drivers/media/dvb-frontends/rtl2830*
16300
16301 RTL2832 MEDIA DRIVER
16302 M:      Antti Palosaari <crope@iki.fi>
16303 L:      linux-media@vger.kernel.org
16304 S:      Maintained
16305 W:      https://linuxtv.org
16306 W:      http://palosaari.fi/linux/
16307 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16308 T:      git git://linuxtv.org/anttip/media_tree.git
16309 F:      drivers/media/dvb-frontends/rtl2832*
16310
16311 RTL2832_SDR MEDIA DRIVER
16312 M:      Antti Palosaari <crope@iki.fi>
16313 L:      linux-media@vger.kernel.org
16314 S:      Maintained
16315 W:      https://linuxtv.org
16316 W:      http://palosaari.fi/linux/
16317 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
16318 T:      git git://linuxtv.org/anttip/media_tree.git
16319 F:      drivers/media/dvb-frontends/rtl2832_sdr*
16320
16321 RTL8180 WIRELESS DRIVER
16322 L:      linux-wireless@vger.kernel.org
16323 S:      Orphan
16324 W:      https://wireless.wiki.kernel.org/
16325 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
16326 F:      drivers/net/wireless/realtek/rtl818x/rtl8180/
16327
16328 RTL8187 WIRELESS DRIVER
16329 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
16330 M:      Hin-Tak Leung <htl10@users.sourceforge.net>
16331 M:      Larry Finger <Larry.Finger@lwfinger.net>
16332 L:      linux-wireless@vger.kernel.org
16333 S:      Maintained
16334 W:      https://wireless.wiki.kernel.org/
16335 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/linville/wireless-testing.git
16336 F:      drivers/net/wireless/realtek/rtl818x/rtl8187/
16337
16338 RTL8XXXU WIRELESS DRIVER (rtl8xxxu)
16339 M:      Jes Sorensen <Jes.Sorensen@gmail.com>
16340 L:      linux-wireless@vger.kernel.org
16341 S:      Maintained
16342 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jes/linux.git rtl8xxxu-devel
16343 F:      drivers/net/wireless/realtek/rtl8xxxu/
16344
16345 RTRS TRANSPORT DRIVERS
16346 M:      Md. Haris Iqbal <haris.iqbal@ionos.com>
16347 M:      Jack Wang <jinpu.wang@ionos.com>
16348 L:      linux-rdma@vger.kernel.org
16349 S:      Maintained
16350 F:      drivers/infiniband/ulp/rtrs/
16351
16352 RXRPC SOCKETS (AF_RXRPC)
16353 M:      David Howells <dhowells@redhat.com>
16354 M:      Marc Dionne <marc.dionne@auristor.com>
16355 L:      linux-afs@lists.infradead.org
16356 S:      Supported
16357 W:      https://www.infradead.org/~dhowells/kafs/
16358 F:      Documentation/networking/rxrpc.rst
16359 F:      include/keys/rxrpc-type.h
16360 F:      include/net/af_rxrpc.h
16361 F:      include/trace/events/rxrpc.h
16362 F:      include/uapi/linux/rxrpc.h
16363 F:      net/rxrpc/
16364
16365 S3 SAVAGE FRAMEBUFFER DRIVER
16366 M:      Antonino Daplas <adaplas@gmail.com>
16367 L:      linux-fbdev@vger.kernel.org
16368 S:      Maintained
16369 F:      drivers/video/fbdev/savage/
16370
16371 S390
16372 M:      Heiko Carstens <hca@linux.ibm.com>
16373 M:      Vasily Gorbik <gor@linux.ibm.com>
16374 M:      Christian Borntraeger <borntraeger@de.ibm.com>
16375 R:      Alexander Gordeev <agordeev@linux.ibm.com>
16376 L:      linux-s390@vger.kernel.org
16377 S:      Supported
16378 W:      http://www.ibm.com/developerworks/linux/linux390/
16379 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/s390/linux.git
16380 F:      Documentation/driver-api/s390-drivers.rst
16381 F:      Documentation/s390/
16382 F:      arch/s390/
16383 F:      drivers/s390/
16384
16385 S390 COMMON I/O LAYER
16386 M:      Vineeth Vijayan <vneethv@linux.ibm.com>
16387 M:      Peter Oberparleiter <oberpar@linux.ibm.com>
16388 L:      linux-s390@vger.kernel.org
16389 S:      Supported
16390 W:      http://www.ibm.com/developerworks/linux/linux390/
16391 F:      drivers/s390/cio/
16392
16393 S390 DASD DRIVER
16394 M:      Stefan Haberland <sth@linux.ibm.com>
16395 M:      Jan Hoeppner <hoeppner@linux.ibm.com>
16396 L:      linux-s390@vger.kernel.org
16397 S:      Supported
16398 W:      http://www.ibm.com/developerworks/linux/linux390/
16399 F:      block/partitions/ibm.c
16400 F:      drivers/s390/block/dasd*
16401 F:      include/linux/dasd_mod.h
16402
16403 S390 IOMMU (PCI)
16404 M:      Matthew Rosato <mjrosato@linux.ibm.com>
16405 M:      Gerald Schaefer <gerald.schaefer@linux.ibm.com>
16406 L:      linux-s390@vger.kernel.org
16407 S:      Supported
16408 W:      http://www.ibm.com/developerworks/linux/linux390/
16409 F:      drivers/iommu/s390-iommu.c
16410
16411 S390 IUCV NETWORK LAYER
16412 M:      Julian Wiedmann <jwi@linux.ibm.com>
16413 M:      Karsten Graul <kgraul@linux.ibm.com>
16414 L:      linux-s390@vger.kernel.org
16415 L:      netdev@vger.kernel.org
16416 S:      Supported
16417 W:      http://www.ibm.com/developerworks/linux/linux390/
16418 F:      drivers/s390/net/*iucv*
16419 F:      include/net/iucv/
16420 F:      net/iucv/
16421
16422 S390 NETWORK DRIVERS
16423 M:      Julian Wiedmann <jwi@linux.ibm.com>
16424 M:      Karsten Graul <kgraul@linux.ibm.com>
16425 L:      linux-s390@vger.kernel.org
16426 L:      netdev@vger.kernel.org
16427 S:      Supported
16428 W:      http://www.ibm.com/developerworks/linux/linux390/
16429 F:      drivers/s390/net/
16430
16431 S390 PCI SUBSYSTEM
16432 M:      Niklas Schnelle <schnelle@linux.ibm.com>
16433 M:      Gerald Schaefer <gerald.schaefer@linux.ibm.com>
16434 L:      linux-s390@vger.kernel.org
16435 S:      Supported
16436 W:      http://www.ibm.com/developerworks/linux/linux390/
16437 F:      arch/s390/pci/
16438 F:      drivers/pci/hotplug/s390_pci_hpc.c
16439 F:      Documentation/s390/pci.rst
16440
16441 S390 VFIO AP DRIVER
16442 M:      Tony Krowiak <akrowiak@linux.ibm.com>
16443 M:      Halil Pasic <pasic@linux.ibm.com>
16444 M:      Jason Herne <jjherne@linux.ibm.com>
16445 L:      linux-s390@vger.kernel.org
16446 S:      Supported
16447 W:      http://www.ibm.com/developerworks/linux/linux390/
16448 F:      Documentation/s390/vfio-ap.rst
16449 F:      drivers/s390/crypto/vfio_ap_drv.c
16450 F:      drivers/s390/crypto/vfio_ap_ops.c
16451 F:      drivers/s390/crypto/vfio_ap_private.h
16452
16453 S390 VFIO-CCW DRIVER
16454 M:      Eric Farman <farman@linux.ibm.com>
16455 M:      Matthew Rosato <mjrosato@linux.ibm.com>
16456 R:      Halil Pasic <pasic@linux.ibm.com>
16457 L:      linux-s390@vger.kernel.org
16458 L:      kvm@vger.kernel.org
16459 S:      Supported
16460 F:      Documentation/s390/vfio-ccw.rst
16461 F:      drivers/s390/cio/vfio_ccw*
16462 F:      include/uapi/linux/vfio_ccw.h
16463
16464 S390 VFIO-PCI DRIVER
16465 M:      Matthew Rosato <mjrosato@linux.ibm.com>
16466 M:      Eric Farman <farman@linux.ibm.com>
16467 L:      linux-s390@vger.kernel.org
16468 L:      kvm@vger.kernel.org
16469 S:      Supported
16470 F:      drivers/vfio/pci/vfio_pci_zdev.c
16471 F:      include/uapi/linux/vfio_zdev.h
16472
16473 S390 ZCRYPT DRIVER
16474 M:      Harald Freudenberger <freude@linux.ibm.com>
16475 L:      linux-s390@vger.kernel.org
16476 S:      Supported
16477 W:      http://www.ibm.com/developerworks/linux/linux390/
16478 F:      drivers/s390/crypto/
16479
16480 S390 ZFCP DRIVER
16481 M:      Steffen Maier <maier@linux.ibm.com>
16482 M:      Benjamin Block <bblock@linux.ibm.com>
16483 L:      linux-s390@vger.kernel.org
16484 S:      Supported
16485 W:      http://www.ibm.com/developerworks/linux/linux390/
16486 F:      drivers/s390/scsi/zfcp_*
16487
16488 S3C ADC BATTERY DRIVER
16489 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16490 L:      linux-samsung-soc@vger.kernel.org
16491 S:      Odd Fixes
16492 F:      drivers/power/supply/s3c_adc_battery.c
16493 F:      include/linux/s3c_adc_battery.h
16494
16495 S3C24XX SD/MMC Driver
16496 M:      Ben Dooks <ben-linux@fluff.org>
16497 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
16498 S:      Supported
16499 F:      drivers/mmc/host/s3cmci.*
16500
16501 SAA6588 RDS RECEIVER DRIVER
16502 M:      Hans Verkuil <hverkuil@xs4all.nl>
16503 L:      linux-media@vger.kernel.org
16504 S:      Odd Fixes
16505 W:      https://linuxtv.org
16506 T:      git git://linuxtv.org/media_tree.git
16507 F:      drivers/media/i2c/saa6588*
16508
16509 SAA7134 VIDEO4LINUX DRIVER
16510 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
16511 L:      linux-media@vger.kernel.org
16512 S:      Odd fixes
16513 W:      https://linuxtv.org
16514 T:      git git://linuxtv.org/media_tree.git
16515 F:      Documentation/driver-api/media/drivers/saa7134*
16516 F:      drivers/media/pci/saa7134/
16517
16518 SAA7146 VIDEO4LINUX-2 DRIVER
16519 M:      Hans Verkuil <hverkuil@xs4all.nl>
16520 L:      linux-media@vger.kernel.org
16521 S:      Maintained
16522 T:      git git://linuxtv.org/media_tree.git
16523 F:      drivers/media/common/saa7146/
16524 F:      drivers/media/pci/saa7146/
16525 F:      include/media/drv-intf/saa7146*
16526
16527 SAFESETID SECURITY MODULE
16528 M:      Micah Morton <mortonm@chromium.org>
16529 S:      Supported
16530 F:      Documentation/admin-guide/LSM/SafeSetID.rst
16531 F:      security/safesetid/
16532
16533 SAMSUNG AUDIO (ASoC) DRIVERS
16534 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16535 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
16536 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16537 S:      Supported
16538 F:      Documentation/devicetree/bindings/sound/samsung*
16539 F:      sound/soc/samsung/
16540
16541 SAMSUNG EXYNOS PSEUDO RANDOM NUMBER GENERATOR (RNG) DRIVER
16542 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16543 L:      linux-crypto@vger.kernel.org
16544 L:      linux-samsung-soc@vger.kernel.org
16545 S:      Maintained
16546 F:      Documentation/devicetree/bindings/rng/samsung,exynos4-rng.yaml
16547 F:      drivers/crypto/exynos-rng.c
16548
16549 SAMSUNG EXYNOS TRUE RANDOM NUMBER GENERATOR (TRNG) DRIVER
16550 M:      Łukasz Stelmach <l.stelmach@samsung.com>
16551 L:      linux-samsung-soc@vger.kernel.org
16552 S:      Maintained
16553 F:      Documentation/devicetree/bindings/rng/samsung,exynos5250-trng.yaml
16554 F:      drivers/char/hw_random/exynos-trng.c
16555
16556 SAMSUNG FRAMEBUFFER DRIVER
16557 M:      Jingoo Han <jingoohan1@gmail.com>
16558 L:      linux-fbdev@vger.kernel.org
16559 S:      Maintained
16560 F:      drivers/video/fbdev/s3c-fb.c
16561
16562 SAMSUNG INTERCONNECT DRIVERS
16563 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
16564 M:      Artur Świgoń <a.swigon@samsung.com>
16565 L:      linux-pm@vger.kernel.org
16566 L:      linux-samsung-soc@vger.kernel.org
16567 S:      Supported
16568 F:      drivers/interconnect/samsung/
16569
16570 SAMSUNG LAPTOP DRIVER
16571 M:      Corentin Chary <corentin.chary@gmail.com>
16572 L:      platform-driver-x86@vger.kernel.org
16573 S:      Maintained
16574 F:      drivers/platform/x86/samsung-laptop.c
16575
16576 SAMSUNG MULTIFUNCTION PMIC DEVICE DRIVERS
16577 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16578 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
16579 L:      linux-kernel@vger.kernel.org
16580 L:      linux-samsung-soc@vger.kernel.org
16581 S:      Supported
16582 F:      Documentation/devicetree/bindings/clock/samsung,s2mps11.txt
16583 F:      Documentation/devicetree/bindings/mfd/samsung,sec-core.txt
16584 F:      Documentation/devicetree/bindings/regulator/samsung,s2m*.txt
16585 F:      Documentation/devicetree/bindings/regulator/samsung,s5m*.txt
16586 F:      drivers/clk/clk-s2mps11.c
16587 F:      drivers/mfd/sec*.c
16588 F:      drivers/regulator/s2m*.c
16589 F:      drivers/regulator/s5m*.c
16590 F:      drivers/rtc/rtc-s5m.c
16591 F:      include/linux/mfd/samsung/
16592
16593 SAMSUNG S3C24XX/S3C64XX SOC SERIES CAMIF DRIVER
16594 M:      Sylwester Nawrocki <sylvester.nawrocki@gmail.com>
16595 L:      linux-media@vger.kernel.org
16596 L:      linux-samsung-soc@vger.kernel.org
16597 S:      Maintained
16598 F:      drivers/media/platform/s3c-camif/
16599 F:      include/media/drv-intf/s3c_camif.h
16600
16601 SAMSUNG S3FWRN5 NFC DRIVER
16602 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16603 M:      Krzysztof Opasiak <k.opasiak@samsung.com>
16604 L:      linux-nfc@lists.01.org (subscribers-only)
16605 S:      Maintained
16606 F:      Documentation/devicetree/bindings/net/nfc/samsung,s3fwrn5.yaml
16607 F:      drivers/nfc/s3fwrn5
16608
16609 SAMSUNG S5C73M3 CAMERA DRIVER
16610 M:      Andrzej Hajda <a.hajda@samsung.com>
16611 L:      linux-media@vger.kernel.org
16612 S:      Supported
16613 F:      drivers/media/i2c/s5c73m3/*
16614
16615 SAMSUNG S5K5BAF CAMERA DRIVER
16616 M:      Andrzej Hajda <a.hajda@samsung.com>
16617 L:      linux-media@vger.kernel.org
16618 S:      Supported
16619 F:      drivers/media/i2c/s5k5baf.c
16620
16621 SAMSUNG S5P Security SubSystem (SSS) DRIVER
16622 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16623 M:      Vladimir Zapolskiy <vz@mleia.com>
16624 L:      linux-crypto@vger.kernel.org
16625 L:      linux-samsung-soc@vger.kernel.org
16626 S:      Maintained
16627 F:      Documentation/devicetree/bindings/crypto/samsung-slimsss.yaml
16628 F:      Documentation/devicetree/bindings/crypto/samsung-sss.yaml
16629 F:      drivers/crypto/s5p-sss.c
16630
16631 SAMSUNG S5P/EXYNOS4 SOC SERIES CAMERA SUBSYSTEM DRIVERS
16632 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
16633 L:      linux-media@vger.kernel.org
16634 S:      Supported
16635 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
16636 F:      drivers/media/platform/exynos4-is/
16637
16638 SAMSUNG SOC CLOCK DRIVERS
16639 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
16640 M:      Tomasz Figa <tomasz.figa@gmail.com>
16641 M:      Chanwoo Choi <cw00.choi@samsung.com>
16642 L:      linux-samsung-soc@vger.kernel.org
16643 S:      Supported
16644 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/snawrocki/clk.git
16645 F:      Documentation/devicetree/bindings/clock/exynos*.txt
16646 F:      Documentation/devicetree/bindings/clock/samsung,*.yaml
16647 F:      Documentation/devicetree/bindings/clock/samsung,s3c*
16648 F:      Documentation/devicetree/bindings/clock/samsung,s5p*
16649 F:      drivers/clk/samsung/
16650 F:      include/dt-bindings/clock/exynos*.h
16651 F:      include/dt-bindings/clock/s3c*.h
16652 F:      include/dt-bindings/clock/s5p*.h
16653 F:      include/dt-bindings/clock/samsung,*.h
16654 F:      include/linux/clk/samsung.h
16655 F:      include/linux/platform_data/clk-s3c2410.h
16656
16657 SAMSUNG SPI DRIVERS
16658 M:      Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com>
16659 M:      Andi Shyti <andi@etezian.org>
16660 L:      linux-spi@vger.kernel.org
16661 L:      linux-samsung-soc@vger.kernel.org
16662 S:      Maintained
16663 F:      Documentation/devicetree/bindings/spi/spi-samsung.txt
16664 F:      drivers/spi/spi-s3c*
16665 F:      include/linux/platform_data/spi-s3c64xx.h
16666 F:      include/linux/spi/s3c24xx-fiq.h
16667
16668 SAMSUNG SXGBE DRIVERS
16669 M:      Byungho An <bh74.an@samsung.com>
16670 L:      netdev@vger.kernel.org
16671 S:      Supported
16672 F:      drivers/net/ethernet/samsung/sxgbe/
16673
16674 SAMSUNG THERMAL DRIVER
16675 M:      Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
16676 L:      linux-pm@vger.kernel.org
16677 L:      linux-samsung-soc@vger.kernel.org
16678 S:      Supported
16679 T:      git https://github.com/lmajewski/linux-samsung-thermal.git
16680 F:      drivers/thermal/samsung/
16681
16682 SAMSUNG USB2 PHY DRIVER
16683 M:      Sylwester Nawrocki <s.nawrocki@samsung.com>
16684 L:      linux-kernel@vger.kernel.org
16685 S:      Supported
16686 F:      Documentation/devicetree/bindings/phy/samsung-phy.txt
16687 F:      Documentation/driver-api/phy/samsung-usb2.rst
16688 F:      drivers/phy/samsung/phy-exynos4210-usb2.c
16689 F:      drivers/phy/samsung/phy-exynos4x12-usb2.c
16690 F:      drivers/phy/samsung/phy-exynos5250-usb2.c
16691 F:      drivers/phy/samsung/phy-s5pv210-usb2.c
16692 F:      drivers/phy/samsung/phy-samsung-usb2.c
16693 F:      drivers/phy/samsung/phy-samsung-usb2.h
16694
16695 SANCLOUD BEAGLEBONE ENHANCED DEVICE TREE
16696 M:      Paul Barker <paul.barker@sancloud.com>
16697 R:      Marc Murphy <marc.murphy@sancloud.com>
16698 S:      Supported
16699 F:      arch/arm/boot/dts/am335x-sancloud*
16700
16701 SC1200 WDT DRIVER
16702 M:      Zwane Mwaikambo <zwanem@gmail.com>
16703 S:      Maintained
16704 F:      drivers/watchdog/sc1200wdt.c
16705
16706 SCHEDULER
16707 M:      Ingo Molnar <mingo@redhat.com>
16708 M:      Peter Zijlstra <peterz@infradead.org>
16709 M:      Juri Lelli <juri.lelli@redhat.com> (SCHED_DEADLINE)
16710 M:      Vincent Guittot <vincent.guittot@linaro.org> (SCHED_NORMAL)
16711 R:      Dietmar Eggemann <dietmar.eggemann@arm.com> (SCHED_NORMAL)
16712 R:      Steven Rostedt <rostedt@goodmis.org> (SCHED_FIFO/SCHED_RR)
16713 R:      Ben Segall <bsegall@google.com> (CONFIG_CFS_BANDWIDTH)
16714 R:      Mel Gorman <mgorman@suse.de> (CONFIG_NUMA_BALANCING)
16715 R:      Daniel Bristot de Oliveira <bristot@redhat.com> (SCHED_DEADLINE)
16716 L:      linux-kernel@vger.kernel.org
16717 S:      Maintained
16718 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git sched/core
16719 F:      include/linux/preempt.h
16720 F:      include/linux/sched.h
16721 F:      include/linux/wait.h
16722 F:      include/uapi/linux/sched.h
16723 F:      kernel/sched/
16724
16725 SCR24X CHIP CARD INTERFACE DRIVER
16726 M:      Lubomir Rintel <lkundrak@v3.sk>
16727 S:      Supported
16728 F:      drivers/char/pcmcia/scr24x_cs.c
16729
16730 SCSI RDMA PROTOCOL (SRP) INITIATOR
16731 M:      Bart Van Assche <bvanassche@acm.org>
16732 L:      linux-rdma@vger.kernel.org
16733 S:      Supported
16734 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
16735 F:      drivers/infiniband/ulp/srp/
16736 F:      include/scsi/srp.h
16737
16738 SCSI RDMA PROTOCOL (SRP) TARGET
16739 M:      Bart Van Assche <bvanassche@acm.org>
16740 L:      linux-rdma@vger.kernel.org
16741 L:      target-devel@vger.kernel.org
16742 S:      Supported
16743 Q:      http://patchwork.kernel.org/project/linux-rdma/list/
16744 F:      drivers/infiniband/ulp/srpt/
16745
16746 SCSI SG DRIVER
16747 M:      Doug Gilbert <dgilbert@interlog.com>
16748 L:      linux-scsi@vger.kernel.org
16749 S:      Maintained
16750 W:      http://sg.danny.cz/sg
16751 F:      Documentation/scsi/scsi-generic.rst
16752 F:      drivers/scsi/sg.c
16753 F:      include/scsi/sg.h
16754
16755 SCSI SUBSYSTEM
16756 M:      "James E.J. Bottomley" <jejb@linux.ibm.com>
16757 M:      "Martin K. Petersen" <martin.petersen@oracle.com>
16758 L:      linux-scsi@vger.kernel.org
16759 S:      Maintained
16760 Q:      https://patchwork.kernel.org/project/linux-scsi/list/
16761 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi.git
16762 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
16763 F:      Documentation/devicetree/bindings/scsi/
16764 F:      drivers/scsi/
16765 F:      include/scsi/
16766
16767 SCSI TAPE DRIVER
16768 M:      Kai Mäkisara <Kai.Makisara@kolumbus.fi>
16769 L:      linux-scsi@vger.kernel.org
16770 S:      Maintained
16771 F:      Documentation/scsi/st.rst
16772 F:      drivers/scsi/st.*
16773 F:      drivers/scsi/st_*.h
16774
16775 SCSI TARGET CORE USER DRIVER
16776 M:      Bodo Stroesser <bostroesser@gmail.com>
16777 L:      linux-scsi@vger.kernel.org
16778 L:      target-devel@vger.kernel.org
16779 S:      Supported
16780 F:      Documentation/target/tcmu-design.rst
16781 F:      drivers/target/target_core_user.c
16782 F:      include/uapi/linux/target_core_user.h
16783
16784 SCSI TARGET SUBSYSTEM
16785 M:      "Martin K. Petersen" <martin.petersen@oracle.com>
16786 L:      linux-scsi@vger.kernel.org
16787 L:      target-devel@vger.kernel.org
16788 S:      Supported
16789 W:      http://www.linux-iscsi.org
16790 Q:      https://patchwork.kernel.org/project/target-devel/list/
16791 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mkp/scsi.git
16792 F:      Documentation/target/
16793 F:      drivers/target/
16794 F:      include/target/
16795
16796 SCTP PROTOCOL
16797 M:      Vlad Yasevich <vyasevich@gmail.com>
16798 M:      Neil Horman <nhorman@tuxdriver.com>
16799 M:      Marcelo Ricardo Leitner <marcelo.leitner@gmail.com>
16800 L:      linux-sctp@vger.kernel.org
16801 S:      Maintained
16802 W:      http://lksctp.sourceforge.net
16803 F:      Documentation/networking/sctp.rst
16804 F:      include/linux/sctp.h
16805 F:      include/net/sctp/
16806 F:      include/uapi/linux/sctp.h
16807 F:      net/sctp/
16808
16809 SCx200 CPU SUPPORT
16810 M:      Jim Cromie <jim.cromie@gmail.com>
16811 S:      Odd Fixes
16812 F:      Documentation/i2c/busses/scx200_acb.rst
16813 F:      arch/x86/platform/scx200/
16814 F:      drivers/i2c/busses/scx200*
16815 F:      drivers/mtd/maps/scx200_docflash.c
16816 F:      drivers/watchdog/scx200_wdt.c
16817 F:      include/linux/scx200.h
16818
16819 SCx200 GPIO DRIVER
16820 M:      Jim Cromie <jim.cromie@gmail.com>
16821 S:      Maintained
16822 F:      drivers/char/scx200_gpio.c
16823 F:      include/linux/scx200_gpio.h
16824
16825 SCx200 HRT CLOCKSOURCE DRIVER
16826 M:      Jim Cromie <jim.cromie@gmail.com>
16827 S:      Maintained
16828 F:      drivers/clocksource/scx200_hrt.c
16829
16830 SDRICOH_CS MMC/SD HOST CONTROLLER INTERFACE DRIVER
16831 M:      Sascha Sommer <saschasommer@freenet.de>
16832 L:      sdricohcs-devel@lists.sourceforge.net (subscribers-only)
16833 S:      Maintained
16834 F:      drivers/mmc/host/sdricoh_cs.c
16835
16836 SECO BOARDS CEC DRIVER
16837 M:      Ettore Chimenti <ek5.chimenti@gmail.com>
16838 S:      Maintained
16839 F:      drivers/media/cec/platform/seco/seco-cec.c
16840 F:      drivers/media/cec/platform/seco/seco-cec.h
16841
16842 SECURE COMPUTING
16843 M:      Kees Cook <keescook@chromium.org>
16844 R:      Andy Lutomirski <luto@amacapital.net>
16845 R:      Will Drewry <wad@chromium.org>
16846 S:      Supported
16847 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git seccomp
16848 F:      Documentation/userspace-api/seccomp_filter.rst
16849 F:      include/linux/seccomp.h
16850 F:      include/uapi/linux/seccomp.h
16851 F:      kernel/seccomp.c
16852 F:      tools/testing/selftests/kselftest_harness.h
16853 F:      tools/testing/selftests/seccomp/*
16854 K:      \bsecure_computing
16855 K:      \bTIF_SECCOMP\b
16856
16857 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) Broadcom BRCMSTB DRIVER
16858 M:      Al Cooper <alcooperx@gmail.com>
16859 L:      linux-mmc@vger.kernel.org
16860 L:      bcm-kernel-feedback-list@broadcom.com
16861 S:      Maintained
16862 F:      drivers/mmc/host/sdhci-brcmstb*
16863
16864 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
16865 M:      Adrian Hunter <adrian.hunter@intel.com>
16866 L:      linux-mmc@vger.kernel.org
16867 S:      Maintained
16868 F:      drivers/mmc/host/sdhci*
16869 F:      include/linux/mmc/sdhci*
16870
16871 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) MICROCHIP DRIVER
16872 M:      Eugen Hristev <eugen.hristev@microchip.com>
16873 L:      linux-mmc@vger.kernel.org
16874 S:      Supported
16875 F:      drivers/mmc/host/sdhci-of-at91.c
16876
16877 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) SAMSUNG DRIVER
16878 M:      Ben Dooks <ben-linux@fluff.org>
16879 M:      Jaehoon Chung <jh80.chung@samsung.com>
16880 L:      linux-mmc@vger.kernel.org
16881 S:      Maintained
16882 F:      drivers/mmc/host/sdhci-s3c*
16883
16884 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) ST SPEAR DRIVER
16885 M:      Viresh Kumar <vireshk@kernel.org>
16886 L:      linux-mmc@vger.kernel.org
16887 S:      Maintained
16888 F:      drivers/mmc/host/sdhci-spear.c
16889
16890 SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) TI OMAP DRIVER
16891 M:      Kishon Vijay Abraham I <kishon@ti.com>
16892 L:      linux-mmc@vger.kernel.org
16893 S:      Maintained
16894 F:      drivers/mmc/host/sdhci-omap.c
16895
16896 SECURE ENCRYPTING DEVICE (SED) OPAL DRIVER
16897 M:      Jonathan Derrick <jonathan.derrick@intel.com>
16898 M:      Revanth Rajashekar <revanth.rajashekar@intel.com>
16899 L:      linux-block@vger.kernel.org
16900 S:      Supported
16901 F:      block/opal_proto.h
16902 F:      block/sed*
16903 F:      include/linux/sed*
16904 F:      include/uapi/linux/sed*
16905
16906 SECURITY CONTACT
16907 M:      Security Officers <security@kernel.org>
16908 S:      Supported
16909 F:      Documentation/admin-guide/security-bugs.rst
16910
16911 SECURITY SUBSYSTEM
16912 M:      James Morris <jmorris@namei.org>
16913 M:      "Serge E. Hallyn" <serge@hallyn.com>
16914 L:      linux-security-module@vger.kernel.org (suggested Cc:)
16915 S:      Supported
16916 W:      http://kernsec.org/
16917 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/linux-security.git
16918 F:      security/
16919 X:      security/selinux/
16920
16921 SELINUX SECURITY MODULE
16922 M:      Paul Moore <paul@paul-moore.com>
16923 M:      Stephen Smalley <stephen.smalley.work@gmail.com>
16924 M:      Eric Paris <eparis@parisplace.org>
16925 L:      selinux@vger.kernel.org
16926 S:      Supported
16927 W:      https://selinuxproject.org
16928 W:      https://github.com/SELinuxProject
16929 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/selinux.git
16930 F:      Documentation/ABI/obsolete/sysfs-selinux-checkreqprot
16931 F:      Documentation/ABI/obsolete/sysfs-selinux-disable
16932 F:      Documentation/admin-guide/LSM/SELinux.rst
16933 F:      include/trace/events/avc.h
16934 F:      include/uapi/linux/selinux_netlink.h
16935 F:      scripts/selinux/
16936 F:      security/selinux/
16937
16938 SENSABLE PHANTOM
16939 M:      Jiri Slaby <jirislaby@kernel.org>
16940 S:      Maintained
16941 F:      drivers/misc/phantom.c
16942 F:      include/uapi/linux/phantom.h
16943
16944 SENSIRION SCD30 CARBON DIOXIDE SENSOR DRIVER
16945 M:      Tomasz Duszynski <tomasz.duszynski@octakon.com>
16946 S:      Maintained
16947 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,scd30.yaml
16948 F:      drivers/iio/chemical/scd30.h
16949 F:      drivers/iio/chemical/scd30_core.c
16950 F:      drivers/iio/chemical/scd30_i2c.c
16951 F:      drivers/iio/chemical/scd30_serial.c
16952
16953 SENSIRION SGP40 GAS SENSOR DRIVER
16954 M:      Andreas Klinger <ak@it-klinger.de>
16955 S:      Maintained
16956 F:      Documentation/ABI/testing/sysfs-bus-iio-chemical-sgp40
16957 F:      drivers/iio/chemical/sgp40.c
16958
16959 SENSIRION SPS30 AIR POLLUTION SENSOR DRIVER
16960 M:      Tomasz Duszynski <tduszyns@gmail.com>
16961 S:      Maintained
16962 F:      Documentation/devicetree/bindings/iio/chemical/sensirion,sps30.yaml
16963 F:      drivers/iio/chemical/sps30.c
16964 F:      drivers/iio/chemical/sps30_i2c.c
16965 F:      drivers/iio/chemical/sps30_serial.c
16966
16967 SERIAL DEVICE BUS
16968 M:      Rob Herring <robh@kernel.org>
16969 L:      linux-serial@vger.kernel.org
16970 S:      Maintained
16971 F:      Documentation/devicetree/bindings/serial/serial.yaml
16972 F:      drivers/tty/serdev/
16973 F:      include/linux/serdev.h
16974
16975 SERIAL DRIVERS
16976 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
16977 L:      linux-serial@vger.kernel.org
16978 S:      Maintained
16979 F:      Documentation/devicetree/bindings/serial/
16980 F:      drivers/tty/serial/
16981
16982 SERIAL IR RECEIVER
16983 M:      Sean Young <sean@mess.org>
16984 L:      linux-media@vger.kernel.org
16985 S:      Maintained
16986 F:      drivers/media/rc/serial_ir.c
16987
16988 SERIAL LOW-POWER INTER-CHIP MEDIA BUS (SLIMbus)
16989 M:      Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
16990 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
16991 S:      Maintained
16992 F:      Documentation/devicetree/bindings/slimbus/
16993 F:      drivers/slimbus/
16994 F:      include/linux/slimbus.h
16995
16996 SFC NETWORK DRIVER
16997 M:      Edward Cree <ecree.xilinx@gmail.com>
16998 M:      Martin Habets <habetsm.xilinx@gmail.com>
16999 L:      netdev@vger.kernel.org
17000 S:      Supported
17001 F:      drivers/net/ethernet/sfc/
17002
17003 SFF/SFP/SFP+ MODULE SUPPORT
17004 M:      Russell King <linux@armlinux.org.uk>
17005 L:      netdev@vger.kernel.org
17006 S:      Maintained
17007 F:      drivers/net/phy/phylink.c
17008 F:      drivers/net/phy/sfp*
17009 F:      include/linux/mdio/mdio-i2c.h
17010 F:      include/linux/phylink.h
17011 F:      include/linux/sfp.h
17012 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)
17013
17014 SGI GRU DRIVER
17015 M:      Dimitri Sivanich <dimitri.sivanich@hpe.com>
17016 S:      Maintained
17017 F:      drivers/misc/sgi-gru/
17018
17019 SGI XP/XPC/XPNET DRIVER
17020 M:      Robin Holt <robinmholt@gmail.com>
17021 M:      Steve Wahl <steve.wahl@hpe.com>
17022 R:      Mike Travis <mike.travis@hpe.com>
17023 S:      Maintained
17024 F:      drivers/misc/sgi-xp/
17025
17026 SHARED MEMORY COMMUNICATIONS (SMC) SOCKETS
17027 M:      Karsten Graul <kgraul@linux.ibm.com>
17028 L:      linux-s390@vger.kernel.org
17029 S:      Supported
17030 W:      http://www.ibm.com/developerworks/linux/linux390/
17031 F:      net/smc/
17032
17033 SHARP GP2AP002A00F/GP2AP002S00F SENSOR DRIVER
17034 M:      Linus Walleij <linus.walleij@linaro.org>
17035 L:      linux-iio@vger.kernel.org
17036 S:      Maintained
17037 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jic23/iio.git
17038 F:      Documentation/devicetree/bindings/iio/light/sharp,gp2ap002.yaml
17039 F:      drivers/iio/light/gp2ap002.c
17040
17041 SHARP RJ54N1CB0C SENSOR DRIVER
17042 M:      Jacopo Mondi <jacopo@jmondi.org>
17043 L:      linux-media@vger.kernel.org
17044 S:      Odd fixes
17045 T:      git git://linuxtv.org/media_tree.git
17046 F:      drivers/media/i2c/rj54n1cb0c.c
17047 F:      include/media/i2c/rj54n1cb0c.h
17048
17049 SH_VOU V4L2 OUTPUT DRIVER
17050 L:      linux-media@vger.kernel.org
17051 S:      Orphan
17052 F:      drivers/media/platform/sh_vou.c
17053 F:      include/media/drv-intf/sh_vou.h
17054
17055 SI2157 MEDIA DRIVER
17056 M:      Antti Palosaari <crope@iki.fi>
17057 L:      linux-media@vger.kernel.org
17058 S:      Maintained
17059 W:      https://linuxtv.org
17060 W:      http://palosaari.fi/linux/
17061 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17062 T:      git git://linuxtv.org/anttip/media_tree.git
17063 F:      drivers/media/tuners/si2157*
17064
17065 SI2165 MEDIA DRIVER
17066 M:      Matthias Schwarzott <zzam@gentoo.org>
17067 L:      linux-media@vger.kernel.org
17068 S:      Maintained
17069 W:      https://linuxtv.org
17070 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17071 F:      drivers/media/dvb-frontends/si2165*
17072
17073 SI2168 MEDIA DRIVER
17074 M:      Antti Palosaari <crope@iki.fi>
17075 L:      linux-media@vger.kernel.org
17076 S:      Maintained
17077 W:      https://linuxtv.org
17078 W:      http://palosaari.fi/linux/
17079 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17080 T:      git git://linuxtv.org/anttip/media_tree.git
17081 F:      drivers/media/dvb-frontends/si2168*
17082
17083 SI470X FM RADIO RECEIVER I2C DRIVER
17084 M:      Hans Verkuil <hverkuil@xs4all.nl>
17085 L:      linux-media@vger.kernel.org
17086 S:      Odd Fixes
17087 W:      https://linuxtv.org
17088 T:      git git://linuxtv.org/media_tree.git
17089 F:      drivers/media/radio/si470x/radio-si470x-i2c.c
17090
17091 SI470X FM RADIO RECEIVER USB DRIVER
17092 M:      Hans Verkuil <hverkuil@xs4all.nl>
17093 L:      linux-media@vger.kernel.org
17094 S:      Maintained
17095 W:      https://linuxtv.org
17096 T:      git git://linuxtv.org/media_tree.git
17097 F:      drivers/media/radio/si470x/radio-si470x-common.c
17098 F:      drivers/media/radio/si470x/radio-si470x-usb.c
17099 F:      drivers/media/radio/si470x/radio-si470x.h
17100
17101 SI4713 FM RADIO TRANSMITTER I2C DRIVER
17102 M:      Eduardo Valentin <edubezval@gmail.com>
17103 L:      linux-media@vger.kernel.org
17104 S:      Odd Fixes
17105 W:      https://linuxtv.org
17106 T:      git git://linuxtv.org/media_tree.git
17107 F:      drivers/media/radio/si4713/si4713.?
17108
17109 SI4713 FM RADIO TRANSMITTER PLATFORM DRIVER
17110 M:      Eduardo Valentin <edubezval@gmail.com>
17111 L:      linux-media@vger.kernel.org
17112 S:      Odd Fixes
17113 W:      https://linuxtv.org
17114 T:      git git://linuxtv.org/media_tree.git
17115 F:      drivers/media/radio/si4713/radio-platform-si4713.c
17116
17117 SI4713 FM RADIO TRANSMITTER USB DRIVER
17118 M:      Hans Verkuil <hverkuil@xs4all.nl>
17119 L:      linux-media@vger.kernel.org
17120 S:      Maintained
17121 W:      https://linuxtv.org
17122 T:      git git://linuxtv.org/media_tree.git
17123 F:      drivers/media/radio/si4713/radio-usb-si4713.c
17124
17125 SIANO DVB DRIVER
17126 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
17127 L:      linux-media@vger.kernel.org
17128 S:      Odd fixes
17129 W:      https://linuxtv.org
17130 T:      git git://linuxtv.org/media_tree.git
17131 F:      drivers/media/common/siano/
17132 F:      drivers/media/mmc/siano/
17133 F:      drivers/media/usb/siano/
17134 F:      drivers/media/usb/siano/
17135
17136 SIFIVE DRIVERS
17137 M:      Palmer Dabbelt <palmer@dabbelt.com>
17138 M:      Paul Walmsley <paul.walmsley@sifive.com>
17139 L:      linux-riscv@lists.infradead.org
17140 S:      Supported
17141 T:      git git://github.com/sifive/riscv-linux.git
17142 N:      sifive
17143 K:      [^@]sifive
17144
17145 SIFIVE FU540 SYSTEM-ON-CHIP
17146 M:      Paul Walmsley <paul.walmsley@sifive.com>
17147 M:      Palmer Dabbelt <palmer@dabbelt.com>
17148 L:      linux-riscv@lists.infradead.org
17149 S:      Supported
17150 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pjw/sifive.git
17151 N:      fu540
17152 K:      fu540
17153
17154 SIFIVE PDMA DRIVER
17155 M:      Green Wan <green.wan@sifive.com>
17156 S:      Maintained
17157 F:      Documentation/devicetree/bindings/dma/sifive,fu540-c000-pdma.yaml
17158 F:      drivers/dma/sf-pdma/
17159
17160 SILEAD TOUCHSCREEN DRIVER
17161 M:      Hans de Goede <hdegoede@redhat.com>
17162 L:      linux-input@vger.kernel.org
17163 L:      platform-driver-x86@vger.kernel.org
17164 S:      Maintained
17165 F:      drivers/input/touchscreen/silead.c
17166 F:      drivers/platform/x86/touchscreen_dmi.c
17167
17168 SILICON LABS WIRELESS DRIVERS (for WFxxx series)
17169 M:      Jérôme Pouiller <jerome.pouiller@silabs.com>
17170 S:      Supported
17171 F:      drivers/staging/wfx/
17172
17173 SILICON MOTION SM712 FRAME BUFFER DRIVER
17174 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
17175 M:      Teddy Wang <teddy.wang@siliconmotion.com>
17176 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
17177 L:      linux-fbdev@vger.kernel.org
17178 S:      Maintained
17179 F:      Documentation/fb/sm712fb.rst
17180 F:      drivers/video/fbdev/sm712*
17181
17182 SILVACO I3C DUAL-ROLE MASTER
17183 M:      Miquel Raynal <miquel.raynal@bootlin.com>
17184 M:      Conor Culhane <conor.culhane@silvaco.com>
17185 L:      linux-i3c@lists.infradead.org
17186 S:      Maintained
17187 F:      Documentation/devicetree/bindings/i3c/silvaco,i3c-master.yaml
17188 F:      drivers/i3c/master/svc-i3c-master.c
17189
17190 SIMPLEFB FB DRIVER
17191 M:      Hans de Goede <hdegoede@redhat.com>
17192 L:      linux-fbdev@vger.kernel.org
17193 S:      Maintained
17194 F:      Documentation/devicetree/bindings/display/simple-framebuffer.yaml
17195 F:      drivers/video/fbdev/simplefb.c
17196 F:      include/linux/platform_data/simplefb.h
17197
17198 SIMTEC EB110ATX (Chalice CATS)
17199 M:      Simtec Linux Team <linux@simtec.co.uk>
17200 S:      Supported
17201 W:      http://www.simtec.co.uk/products/EB110ATX/
17202
17203 SIMTEC EB2410ITX (BAST)
17204 M:      Simtec Linux Team <linux@simtec.co.uk>
17205 S:      Supported
17206 W:      http://www.simtec.co.uk/products/EB2410ITX/
17207 F:      arch/arm/mach-s3c/bast-ide.c
17208 F:      arch/arm/mach-s3c/bast-irq.c
17209 F:      arch/arm/mach-s3c/mach-bast.c
17210
17211 SIOX
17212 M:      Thorsten Scherer <t.scherer@eckelmann.de>
17213 M:      Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
17214 R:      Pengutronix Kernel Team <kernel@pengutronix.de>
17215 S:      Supported
17216 F:      drivers/gpio/gpio-siox.c
17217 F:      drivers/siox/*
17218 F:      include/trace/events/siox.h
17219
17220 SIPHASH PRF ROUTINES
17221 M:      Jason A. Donenfeld <Jason@zx2c4.com>
17222 S:      Maintained
17223 F:      include/linux/siphash.h
17224 F:      lib/siphash.c
17225 F:      lib/test_siphash.c
17226
17227 SIS 190 ETHERNET DRIVER
17228 M:      Francois Romieu <romieu@fr.zoreil.com>
17229 L:      netdev@vger.kernel.org
17230 S:      Maintained
17231 F:      drivers/net/ethernet/sis/sis190.c
17232
17233 SIS 900/7016 FAST ETHERNET DRIVER
17234 M:      Daniele Venzano <venza@brownhat.org>
17235 L:      netdev@vger.kernel.org
17236 S:      Maintained
17237 W:      http://www.brownhat.org/sis900.html
17238 F:      drivers/net/ethernet/sis/sis900.*
17239
17240 SIS FRAMEBUFFER DRIVER
17241 M:      Thomas Winischhofer <thomas@winischhofer.net>
17242 S:      Maintained
17243 W:      http://www.winischhofer.net/linuxsisvga.shtml
17244 F:      Documentation/fb/sisfb.rst
17245 F:      drivers/video/fbdev/sis/
17246 F:      include/video/sisfb.h
17247
17248 SIS I2C TOUCHSCREEN DRIVER
17249 M:      Mika Penttilä <mika.penttila@nextfour.com>
17250 L:      linux-input@vger.kernel.org
17251 S:      Maintained
17252 F:      Documentation/devicetree/bindings/input/touchscreen/sis_i2c.txt
17253 F:      drivers/input/touchscreen/sis_i2c.c
17254
17255 SIS USB2VGA DRIVER
17256 M:      Thomas Winischhofer <thomas@winischhofer.net>
17257 S:      Maintained
17258 W:      http://www.winischhofer.at/linuxsisusbvga.shtml
17259 F:      drivers/usb/misc/sisusbvga/
17260
17261 SLAB ALLOCATOR
17262 M:      Christoph Lameter <cl@linux.com>
17263 M:      Pekka Enberg <penberg@kernel.org>
17264 M:      David Rientjes <rientjes@google.com>
17265 M:      Joonsoo Kim <iamjoonsoo.kim@lge.com>
17266 M:      Andrew Morton <akpm@linux-foundation.org>
17267 M:      Vlastimil Babka <vbabka@suse.cz>
17268 L:      linux-mm@kvack.org
17269 S:      Maintained
17270 F:      include/linux/sl?b*.h
17271 F:      mm/sl?b*
17272
17273 SLEEPABLE READ-COPY UPDATE (SRCU)
17274 M:      Lai Jiangshan <jiangshanlai@gmail.com>
17275 M:      "Paul E. McKenney" <paulmck@kernel.org>
17276 M:      Josh Triplett <josh@joshtriplett.org>
17277 R:      Steven Rostedt <rostedt@goodmis.org>
17278 R:      Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
17279 L:      rcu@vger.kernel.org
17280 S:      Supported
17281 W:      http://www.rdrop.com/users/paulmck/RCU/
17282 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
17283 F:      include/linux/srcu*.h
17284 F:      kernel/rcu/srcu*.c
17285
17286 SMACK SECURITY MODULE
17287 M:      Casey Schaufler <casey@schaufler-ca.com>
17288 L:      linux-security-module@vger.kernel.org
17289 S:      Maintained
17290 W:      http://schaufler-ca.com
17291 T:      git git://github.com/cschaufler/smack-next
17292 F:      Documentation/admin-guide/LSM/Smack.rst
17293 F:      security/smack/
17294
17295 SMC91x ETHERNET DRIVER
17296 M:      Nicolas Pitre <nico@fluxnic.net>
17297 S:      Odd Fixes
17298 F:      drivers/net/ethernet/smsc/smc91x.*
17299
17300 SECURE MONITOR CALL(SMC) CALLING CONVENTION (SMCCC)
17301 M:      Mark Rutland <mark.rutland@arm.com>
17302 M:      Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
17303 M:      Sudeep Holla <sudeep.holla@arm.com>
17304 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
17305 S:      Maintained
17306 F:      drivers/firmware/smccc/
17307 F:      include/linux/arm-smccc.h
17308
17309 SMM665 HARDWARE MONITOR DRIVER
17310 M:      Guenter Roeck <linux@roeck-us.net>
17311 L:      linux-hwmon@vger.kernel.org
17312 S:      Maintained
17313 F:      Documentation/hwmon/smm665.rst
17314 F:      drivers/hwmon/smm665.c
17315
17316 SMSC EMC2103 HARDWARE MONITOR DRIVER
17317 M:      Steve Glendinning <steve.glendinning@shawell.net>
17318 L:      linux-hwmon@vger.kernel.org
17319 S:      Maintained
17320 F:      Documentation/hwmon/emc2103.rst
17321 F:      drivers/hwmon/emc2103.c
17322
17323 SMSC SCH5627 HARDWARE MONITOR DRIVER
17324 M:      Hans de Goede <hdegoede@redhat.com>
17325 L:      linux-hwmon@vger.kernel.org
17326 S:      Supported
17327 F:      Documentation/hwmon/sch5627.rst
17328 F:      drivers/hwmon/sch5627.c
17329
17330 SMSC UFX6000 and UFX7000 USB to VGA DRIVER
17331 M:      Steve Glendinning <steve.glendinning@shawell.net>
17332 L:      linux-fbdev@vger.kernel.org
17333 S:      Maintained
17334 F:      drivers/video/fbdev/smscufx.c
17335
17336 SMSC47B397 HARDWARE MONITOR DRIVER
17337 M:      Jean Delvare <jdelvare@suse.com>
17338 L:      linux-hwmon@vger.kernel.org
17339 S:      Maintained
17340 F:      Documentation/hwmon/smsc47b397.rst
17341 F:      drivers/hwmon/smsc47b397.c
17342
17343 SMSC911x ETHERNET DRIVER
17344 M:      Steve Glendinning <steve.glendinning@shawell.net>
17345 L:      netdev@vger.kernel.org
17346 S:      Maintained
17347 F:      drivers/net/ethernet/smsc/smsc911x.*
17348 F:      include/linux/smsc911x.h
17349
17350 SMSC9420 PCI ETHERNET DRIVER
17351 M:      Steve Glendinning <steve.glendinning@shawell.net>
17352 L:      netdev@vger.kernel.org
17353 S:      Maintained
17354 F:      drivers/net/ethernet/smsc/smsc9420.*
17355
17356 SOCIONEXT (SNI) AVE NETWORK DRIVER
17357 M:      Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
17358 L:      netdev@vger.kernel.org
17359 S:      Maintained
17360 F:      Documentation/devicetree/bindings/net/socionext,uniphier-ave4.yaml
17361 F:      drivers/net/ethernet/socionext/sni_ave.c
17362
17363 SOCIONEXT (SNI) NETSEC NETWORK DRIVER
17364 M:      Jassi Brar <jaswinder.singh@linaro.org>
17365 M:      Ilias Apalodimas <ilias.apalodimas@linaro.org>
17366 L:      netdev@vger.kernel.org
17367 S:      Maintained
17368 F:      Documentation/devicetree/bindings/net/socionext-netsec.txt
17369 F:      drivers/net/ethernet/socionext/netsec.c
17370
17371 SOCIONEXT (SNI) Synquacer SPI DRIVER
17372 M:      Masahisa Kojima <masahisa.kojima@linaro.org>
17373 M:      Jassi Brar <jaswinder.singh@linaro.org>
17374 L:      linux-spi@vger.kernel.org
17375 S:      Maintained
17376 F:      Documentation/devicetree/bindings/spi/spi-synquacer.txt
17377 F:      drivers/spi/spi-synquacer.c
17378
17379 SOCIONEXT SYNQUACER I2C DRIVER
17380 M:      Ard Biesheuvel <ardb@kernel.org>
17381 L:      linux-i2c@vger.kernel.org
17382 S:      Maintained
17383 F:      Documentation/devicetree/bindings/i2c/i2c-synquacer.txt
17384 F:      drivers/i2c/busses/i2c-synquacer.c
17385
17386 SOCIONEXT UNIPHIER SOUND DRIVER
17387 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17388 S:      Orphan
17389 F:      sound/soc/uniphier/
17390
17391 SOEKRIS NET48XX LED SUPPORT
17392 M:      Chris Boot <bootc@bootc.net>
17393 S:      Maintained
17394 F:      drivers/leds/leds-net48xx.c
17395
17396 SOFT-IWARP DRIVER (siw)
17397 M:      Bernard Metzler <bmt@zurich.ibm.com>
17398 L:      linux-rdma@vger.kernel.org
17399 S:      Supported
17400 F:      drivers/infiniband/sw/siw/
17401 F:      include/uapi/rdma/siw-abi.h
17402
17403 SOFT-ROCE DRIVER (rxe)
17404 M:      Zhu Yanjun <zyjzyj2000@gmail.com>
17405 L:      linux-rdma@vger.kernel.org
17406 S:      Supported
17407 F:      drivers/infiniband/sw/rxe/
17408 F:      include/uapi/rdma/rdma_user_rxe.h
17409
17410 SOFTLOGIC 6x10 MPEG CODEC
17411 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
17412 M:      Anton Sviridenko <anton@corp.bluecherry.net>
17413 M:      Andrey Utkin <andrey_utkin@fastmail.com>
17414 M:      Ismael Luceno <ismael@iodev.co.uk>
17415 L:      linux-media@vger.kernel.org
17416 S:      Supported
17417 F:      drivers/media/pci/solo6x10/
17418
17419 SOFTWARE DELEGATED EXCEPTION INTERFACE (SDEI)
17420 M:      James Morse <james.morse@arm.com>
17421 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
17422 S:      Maintained
17423 F:      Documentation/devicetree/bindings/arm/firmware/sdei.txt
17424 F:      drivers/firmware/arm_sdei.c
17425 F:      include/linux/arm_sdei.h
17426 F:      include/uapi/linux/arm_sdei.h
17427
17428 SOFTWARE NODES
17429 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
17430 R:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
17431 L:      linux-acpi@vger.kernel.org
17432 S:      Maintained
17433 F:      drivers/base/swnode.c
17434
17435 SOFTWARE RAID (Multiple Disks) SUPPORT
17436 M:      Song Liu <song@kernel.org>
17437 L:      linux-raid@vger.kernel.org
17438 S:      Supported
17439 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/song/md.git
17440 F:      drivers/md/Kconfig
17441 F:      drivers/md/Makefile
17442 F:      drivers/md/md*
17443 F:      drivers/md/raid*
17444 F:      include/linux/raid/
17445 F:      include/uapi/linux/raid/
17446
17447 SOLIDRUN CLEARFOG SUPPORT
17448 M:      Russell King <linux@armlinux.org.uk>
17449 S:      Maintained
17450 F:      arch/arm/boot/dts/armada-388-clearfog*
17451 F:      arch/arm/boot/dts/armada-38x-solidrun-*
17452
17453 SOLIDRUN CUBOX-I/HUMMINGBOARD SUPPORT
17454 M:      Russell King <linux@armlinux.org.uk>
17455 S:      Maintained
17456 F:      arch/arm/boot/dts/imx6*-cubox-i*
17457 F:      arch/arm/boot/dts/imx6*-hummingboard*
17458 F:      arch/arm/boot/dts/imx6*-sr-*
17459
17460 SONIC NETWORK DRIVER
17461 M:      Thomas Bogendoerfer <tsbogend@alpha.franken.de>
17462 L:      netdev@vger.kernel.org
17463 S:      Maintained
17464 F:      drivers/net/ethernet/natsemi/sonic.*
17465
17466 SONICS SILICON BACKPLANE DRIVER (SSB)
17467 M:      Michael Buesch <m@bues.ch>
17468 L:      linux-wireless@vger.kernel.org
17469 S:      Maintained
17470 F:      drivers/ssb/
17471 F:      include/linux/ssb/
17472
17473 SONY IMX208 SENSOR DRIVER
17474 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
17475 L:      linux-media@vger.kernel.org
17476 S:      Maintained
17477 T:      git git://linuxtv.org/media_tree.git
17478 F:      drivers/media/i2c/imx208.c
17479
17480 SONY IMX214 SENSOR DRIVER
17481 M:      Ricardo Ribalda <ribalda@kernel.org>
17482 L:      linux-media@vger.kernel.org
17483 S:      Maintained
17484 T:      git git://linuxtv.org/media_tree.git
17485 F:      Documentation/devicetree/bindings/media/i2c/sony,imx214.yaml
17486 F:      drivers/media/i2c/imx214.c
17487
17488 SONY IMX219 SENSOR DRIVER
17489 M:      Dave Stevenson <dave.stevenson@raspberrypi.com>
17490 L:      linux-media@vger.kernel.org
17491 S:      Maintained
17492 T:      git git://linuxtv.org/media_tree.git
17493 F:      Documentation/devicetree/bindings/media/i2c/imx219.yaml
17494 F:      drivers/media/i2c/imx219.c
17495
17496 SONY IMX258 SENSOR DRIVER
17497 M:      Sakari Ailus <sakari.ailus@linux.intel.com>
17498 L:      linux-media@vger.kernel.org
17499 S:      Maintained
17500 T:      git git://linuxtv.org/media_tree.git
17501 F:      Documentation/devicetree/bindings/media/i2c/imx258.yaml
17502 F:      drivers/media/i2c/imx258.c
17503
17504 SONY IMX274 SENSOR DRIVER
17505 M:      Leon Luo <leonl@leopardimaging.com>
17506 L:      linux-media@vger.kernel.org
17507 S:      Maintained
17508 T:      git git://linuxtv.org/media_tree.git
17509 F:      Documentation/devicetree/bindings/media/i2c/sony,imx274.yaml
17510 F:      drivers/media/i2c/imx274.c
17511
17512 SONY IMX290 SENSOR DRIVER
17513 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
17514 L:      linux-media@vger.kernel.org
17515 S:      Maintained
17516 T:      git git://linuxtv.org/media_tree.git
17517 F:      Documentation/devicetree/bindings/media/i2c/imx290.txt
17518 F:      drivers/media/i2c/imx290.c
17519
17520 SONY IMX296 SENSOR DRIVER
17521 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
17522 M:      Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
17523 L:      linux-media@vger.kernel.org
17524 S:      Maintained
17525 T:      git git://linuxtv.org/media_tree.git
17526 F:      Documentation/devicetree/bindings/media/i2c/sony,imx296.yaml
17527 F:      drivers/media/i2c/imx296.c
17528
17529 SONY IMX319 SENSOR DRIVER
17530 M:      Bingbu Cao <bingbu.cao@intel.com>
17531 L:      linux-media@vger.kernel.org
17532 S:      Maintained
17533 T:      git git://linuxtv.org/media_tree.git
17534 F:      drivers/media/i2c/imx319.c
17535
17536 SONY IMX334 SENSOR DRIVER
17537 M:      Paul J. Murphy <paul.j.murphy@intel.com>
17538 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
17539 L:      linux-media@vger.kernel.org
17540 S:      Maintained
17541 T:      git git://linuxtv.org/media_tree.git
17542 F:      Documentation/devicetree/bindings/media/i2c/sony,imx334.yaml
17543 F:      drivers/media/i2c/imx334.c
17544
17545 SONY IMX335 SENSOR DRIVER
17546 M:      Paul J. Murphy <paul.j.murphy@intel.com>
17547 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
17548 L:      linux-media@vger.kernel.org
17549 S:      Maintained
17550 T:      git git://linuxtv.org/media_tree.git
17551 F:      Documentation/devicetree/bindings/media/i2c/sony,imx335.yaml
17552 F:      drivers/media/i2c/imx335.c
17553
17554 SONY IMX355 SENSOR DRIVER
17555 M:      Tianshu Qiu <tian.shu.qiu@intel.com>
17556 L:      linux-media@vger.kernel.org
17557 S:      Maintained
17558 T:      git git://linuxtv.org/media_tree.git
17559 F:      drivers/media/i2c/imx355.c
17560
17561 SONY IMX412 SENSOR DRIVER
17562 M:      Paul J. Murphy <paul.j.murphy@intel.com>
17563 M:      Daniele Alessandrelli <daniele.alessandrelli@intel.com>
17564 L:      linux-media@vger.kernel.org
17565 S:      Maintained
17566 T:      git git://linuxtv.org/media_tree.git
17567 F:      Documentation/devicetree/bindings/media/i2c/sony,imx412.yaml
17568 F:      drivers/media/i2c/imx412.c
17569
17570 SONY IMX477 SENSOR DRIVER
17571 M:      Raspberry Pi Kernel Maintenance <kernel-list@raspberrypi.com>
17572 L:      linux-media@vger.kernel.org
17573 S:      Maintained
17574 T:      git git://linuxtv.org/media_tree.git
17575 F:      Documentation/devicetree/bindings/media/i2c/imx378.yaml
17576 F:      Documentation/devicetree/bindings/media/i2c/imx477.yaml
17577 F:      drivers/media/i2c/imx477.c
17578
17579 SONY IMX519 SENSOR DRIVER
17580 M:      Arducam Kernel Maintenance <info@arducam.com>
17581 L:      linux-media@vger.kernel.org
17582 S:      Maintained
17583 T:      git git://linuxtv.org/media_tree.git
17584 F:      Documentation/devicetree/bindings/media/i2c/imx519.yaml
17585 F:      drivers/media/i2c/imx519.c
17586
17587 SONY IMX708 SENSOR DRIVER
17588 M:      Raspberry Pi Kernel Maintenance <kernel-list@raspberrypi.com>
17589 L:      linux-media@vger.kernel.org
17590 S:      Maintained
17591 T:      git git://linuxtv.org/media_tree.git
17592 F:      Documentation/devicetree/bindings/media/i2c/imx708.yaml
17593 F:      drivers/media/i2c/imx708.c
17594
17595 SONY MEMORYSTICK SUBSYSTEM
17596 M:      Maxim Levitsky <maximlevitsky@gmail.com>
17597 M:      Alex Dubov <oakad@yahoo.com>
17598 M:      Ulf Hansson <ulf.hansson@linaro.org>
17599 L:      linux-mmc@vger.kernel.org
17600 S:      Maintained
17601 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ulfh/mmc.git
17602 F:      drivers/memstick/
17603 F:      include/linux/memstick.h
17604
17605 SONY VAIO CONTROL DEVICE DRIVER
17606 M:      Mattia Dongili <malattia@linux.it>
17607 L:      platform-driver-x86@vger.kernel.org
17608 S:      Maintained
17609 W:      http://www.linux.it/~malattia/wiki/index.php/Sony_drivers
17610 F:      Documentation/admin-guide/laptops/sony-laptop.rst
17611 F:      drivers/char/sonypi.c
17612 F:      drivers/platform/x86/sony-laptop.c
17613 F:      include/linux/sony-laptop.h
17614
17615 SOUND
17616 M:      Jaroslav Kysela <perex@perex.cz>
17617 M:      Takashi Iwai <tiwai@suse.com>
17618 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17619 S:      Maintained
17620 W:      http://www.alsa-project.org/
17621 Q:      http://patchwork.kernel.org/project/alsa-devel/list/
17622 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
17623 F:      Documentation/sound/
17624 F:      include/sound/
17625 F:      include/uapi/sound/
17626 F:      sound/
17627
17628 SOUND - COMPRESSED AUDIO
17629 M:      Vinod Koul <vkoul@kernel.org>
17630 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17631 S:      Supported
17632 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
17633 F:      Documentation/sound/designs/compress-offload.rst
17634 F:      include/sound/compress_driver.h
17635 F:      include/uapi/sound/compress_*
17636 F:      sound/core/compress_offload.c
17637 F:      sound/soc/soc-compress.c
17638
17639 SOUND - DMAENGINE HELPERS
17640 M:      Lars-Peter Clausen <lars@metafoo.de>
17641 S:      Supported
17642 F:      include/sound/dmaengine_pcm.h
17643 F:      sound/core/pcm_dmaengine.c
17644 F:      sound/soc/soc-generic-dmaengine-pcm.c
17645
17646 SOUND - SOC LAYER / DYNAMIC AUDIO POWER MANAGEMENT (ASoC)
17647 M:      Liam Girdwood <lgirdwood@gmail.com>
17648 M:      Mark Brown <broonie@kernel.org>
17649 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17650 S:      Supported
17651 W:      http://alsa-project.org/main/index.php/ASoC
17652 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git
17653 F:      Documentation/devicetree/bindings/sound/
17654 F:      Documentation/sound/soc/
17655 F:      include/dt-bindings/sound/
17656 F:      include/sound/soc*
17657 F:      sound/soc/
17658
17659 SOUND - SOUND OPEN FIRMWARE (SOF) DRIVERS
17660 M:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
17661 M:      Liam Girdwood <lgirdwood@gmail.com>
17662 M:      Ranjani Sridharan <ranjani.sridharan@linux.intel.com>
17663 M:      Kai Vehmanen <kai.vehmanen@linux.intel.com>
17664 M:      Daniel Baluta <daniel.baluta@nxp.com>
17665 L:      sound-open-firmware@alsa-project.org (moderated for non-subscribers)
17666 S:      Supported
17667 W:      https://github.com/thesofproject/linux/
17668 F:      sound/soc/sof/
17669
17670 SOUNDWIRE SUBSYSTEM
17671 M:      Vinod Koul <vkoul@kernel.org>
17672 M:      Bard Liao <yung-chuan.liao@linux.intel.com>
17673 R:      Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>
17674 R:      Sanyog Kale <sanyog.r.kale@intel.com>
17675 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17676 S:      Supported
17677 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vkoul/soundwire.git
17678 F:      Documentation/driver-api/soundwire/
17679 F:      drivers/soundwire/
17680 F:      include/linux/soundwire/
17681
17682 SP2 MEDIA DRIVER
17683 M:      Olli Salonen <olli.salonen@iki.fi>
17684 L:      linux-media@vger.kernel.org
17685 S:      Maintained
17686 W:      https://linuxtv.org
17687 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
17688 F:      drivers/media/dvb-frontends/sp2*
17689
17690 SPARC + UltraSPARC (sparc/sparc64)
17691 M:      "David S. Miller" <davem@davemloft.net>
17692 L:      sparclinux@vger.kernel.org
17693 S:      Maintained
17694 Q:      http://patchwork.ozlabs.org/project/sparclinux/list/
17695 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
17696 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
17697 F:      arch/sparc/
17698 F:      drivers/sbus/
17699
17700 SPARC SERIAL DRIVERS
17701 M:      "David S. Miller" <davem@davemloft.net>
17702 L:      sparclinux@vger.kernel.org
17703 S:      Maintained
17704 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc.git
17705 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc-next.git
17706 F:      drivers/tty/serial/suncore.c
17707 F:      drivers/tty/serial/sunhv.c
17708 F:      drivers/tty/serial/sunsab.c
17709 F:      drivers/tty/serial/sunsab.h
17710 F:      drivers/tty/serial/sunsu.c
17711 F:      drivers/tty/serial/sunzilog.c
17712 F:      drivers/tty/serial/sunzilog.h
17713 F:      drivers/tty/vcc.c
17714 F:      include/linux/sunserialcore.h
17715
17716 SPARSE CHECKER
17717 M:      "Luc Van Oostenryck" <luc.vanoostenryck@gmail.com>
17718 L:      linux-sparse@vger.kernel.org
17719 S:      Maintained
17720 W:      https://sparse.docs.kernel.org/
17721 T:      git git://git.kernel.org/pub/scm/devel/sparse/sparse.git
17722 Q:      https://patchwork.kernel.org/project/linux-sparse/list/
17723 B:      https://bugzilla.kernel.org/enter_bug.cgi?component=Sparse&product=Tools
17724 F:      include/linux/compiler.h
17725
17726 SPEAKUP CONSOLE SPEECH DRIVER
17727 M:      William Hubbs <w.d.hubbs@gmail.com>
17728 M:      Chris Brannon <chris@the-brannons.com>
17729 M:      Kirk Reiser <kirk@reisers.ca>
17730 M:      Samuel Thibault <samuel.thibault@ens-lyon.org>
17731 L:      speakup@linux-speakup.org
17732 S:      Odd Fixes
17733 W:      http://www.linux-speakup.org/
17734 W:      https://github.com/linux-speakup/speakup
17735 B:      https://github.com/linux-speakup/speakup/issues
17736 F:      drivers/accessibility/speakup/
17737
17738 SPEAR CLOCK FRAMEWORK SUPPORT
17739 M:      Viresh Kumar <vireshk@kernel.org>
17740 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
17741 S:      Maintained
17742 W:      http://www.st.com/spear
17743 F:      drivers/clk/spear/
17744
17745 SPEAR PLATFORM SUPPORT
17746 M:      Viresh Kumar <vireshk@kernel.org>
17747 M:      Shiraz Hashim <shiraz.linux.kernel@gmail.com>
17748 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
17749 S:      Maintained
17750 W:      http://www.st.com/spear
17751 F:      arch/arm/boot/dts/spear*
17752 F:      arch/arm/mach-spear/
17753
17754 SPI NOR SUBSYSTEM
17755 M:      Tudor Ambarus <tudor.ambarus@microchip.com>
17756 R:      Michael Walle <michael@walle.cc>
17757 R:      Pratyush Yadav <p.yadav@ti.com>
17758 L:      linux-mtd@lists.infradead.org
17759 S:      Maintained
17760 W:      http://www.linux-mtd.infradead.org/
17761 Q:      http://patchwork.ozlabs.org/project/linux-mtd/list/
17762 C:      irc://irc.oftc.net/mtd
17763 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git spi-nor/next
17764 F:      drivers/mtd/spi-nor/
17765 F:      include/linux/mtd/spi-nor.h
17766
17767 SPI SUBSYSTEM
17768 M:      Mark Brown <broonie@kernel.org>
17769 L:      linux-spi@vger.kernel.org
17770 S:      Maintained
17771 Q:      http://patchwork.kernel.org/project/spi-devel-general/list/
17772 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git
17773 F:      Documentation/devicetree/bindings/spi/
17774 F:      Documentation/spi/
17775 F:      drivers/spi/
17776 F:      include/linux/spi/
17777 F:      include/uapi/linux/spi/
17778 F:      tools/spi/
17779
17780 SPIDERNET NETWORK DRIVER for CELL
17781 M:      Ishizaki Kou <kou.ishizaki@toshiba.co.jp>
17782 M:      Geoff Levand <geoff@infradead.org>
17783 L:      netdev@vger.kernel.org
17784 L:      linuxppc-dev@lists.ozlabs.org
17785 S:      Maintained
17786 F:      Documentation/networking/device_drivers/ethernet/toshiba/spider_net.rst
17787 F:      drivers/net/ethernet/toshiba/spider_net*
17788
17789 SPMI SUBSYSTEM
17790 M:      Stephen Boyd <sboyd@kernel.org>
17791 L:      linux-kernel@vger.kernel.org
17792 S:      Maintained
17793 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sboyd/spmi.git
17794 F:      Documentation/devicetree/bindings/spmi/
17795 F:      drivers/spmi/
17796 F:      include/dt-bindings/spmi/spmi.h
17797 F:      include/linux/spmi.h
17798 F:      include/trace/events/spmi.h
17799
17800 SPU FILE SYSTEM
17801 M:      Jeremy Kerr <jk@ozlabs.org>
17802 L:      linuxppc-dev@lists.ozlabs.org
17803 S:      Supported
17804 W:      http://www.ibm.com/developerworks/power/cell/
17805 F:      Documentation/filesystems/spufs/spufs.rst
17806 F:      arch/powerpc/platforms/cell/spufs/
17807
17808 SQUASHFS FILE SYSTEM
17809 M:      Phillip Lougher <phillip@squashfs.org.uk>
17810 L:      squashfs-devel@lists.sourceforge.net (subscribers-only)
17811 S:      Maintained
17812 W:      http://squashfs.org.uk
17813 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pkl/squashfs-next.git
17814 F:      Documentation/filesystems/squashfs.rst
17815 F:      fs/squashfs/
17816
17817 SRM (Alpha) environment access
17818 M:      Jan-Benedict Glaw <jbglaw@lug-owl.de>
17819 S:      Maintained
17820 F:      arch/alpha/kernel/srm_env.c
17821
17822 ST LSM6DSx IMU IIO DRIVER
17823 M:      Lorenzo Bianconi <lorenzo.bianconi83@gmail.com>
17824 L:      linux-iio@vger.kernel.org
17825 S:      Maintained
17826 W:      http://www.st.com/
17827 F:      Documentation/devicetree/bindings/iio/imu/st,lsm6dsx.yaml
17828 F:      drivers/iio/imu/st_lsm6dsx/
17829
17830 ST MIPID02 CSI-2 TO PARALLEL BRIDGE DRIVER
17831 M:      Mickael Guene <mickael.guene@st.com>
17832 L:      linux-media@vger.kernel.org
17833 S:      Maintained
17834 T:      git git://linuxtv.org/media_tree.git
17835 F:      Documentation/devicetree/bindings/media/i2c/st,st-mipid02.txt
17836 F:      drivers/media/i2c/st-mipid02.c
17837
17838 ST STM32 I2C/SMBUS DRIVER
17839 M:      Pierre-Yves MORDRET <pierre-yves.mordret@foss.st.com>
17840 M:      Alain Volmat <alain.volmat@foss.st.com>
17841 L:      linux-i2c@vger.kernel.org
17842 S:      Maintained
17843 F:      drivers/i2c/busses/i2c-stm32*
17844
17845 ST STM32 SPI DRIVER
17846 M:      Alain Volmat <alain.volmat@foss.st.com>
17847 L:      linux-spi@vger.kernel.org
17848 S:      Maintained
17849 F:      drivers/spi/spi-stm32.c
17850
17851 ST STPDDC60 DRIVER
17852 M:      Daniel Nilsson <daniel.nilsson@flex.com>
17853 L:      linux-hwmon@vger.kernel.org
17854 S:      Maintained
17855 F:      Documentation/hwmon/stpddc60.rst
17856 F:      drivers/hwmon/pmbus/stpddc60.c
17857
17858 ST VL53L0X ToF RANGER(I2C) IIO DRIVER
17859 M:      Song Qiang <songqiang1304521@gmail.com>
17860 L:      linux-iio@vger.kernel.org
17861 S:      Maintained
17862 F:      Documentation/devicetree/bindings/iio/proximity/st,vl53l0x.yaml
17863 F:      drivers/iio/proximity/vl53l0x-i2c.c
17864
17865 STABLE BRANCH
17866 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
17867 M:      Sasha Levin <sashal@kernel.org>
17868 L:      stable@vger.kernel.org
17869 S:      Supported
17870 F:      Documentation/process/stable-kernel-rules.rst
17871
17872 STAGING - ATOMISP DRIVER
17873 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
17874 R:      Sakari Ailus <sakari.ailus@linux.intel.com>
17875 L:      linux-media@vger.kernel.org
17876 S:      Maintained
17877 F:      drivers/staging/media/atomisp/
17878
17879 STAGING - FIELDBUS SUBSYSTEM
17880 M:      Sven Van Asbroeck <TheSven73@gmail.com>
17881 S:      Maintained
17882 F:      drivers/staging/fieldbus/*
17883 F:      drivers/staging/fieldbus/Documentation/
17884
17885 STAGING - HMS ANYBUS-S BUS
17886 M:      Sven Van Asbroeck <TheSven73@gmail.com>
17887 S:      Maintained
17888 F:      drivers/staging/fieldbus/anybuss/
17889
17890 STAGING - INDUSTRIAL IO
17891 M:      Jonathan Cameron <jic23@kernel.org>
17892 L:      linux-iio@vger.kernel.org
17893 S:      Odd Fixes
17894 F:      Documentation/devicetree/bindings/staging/iio/
17895 F:      drivers/staging/iio/
17896
17897 STAGING - NVIDIA COMPLIANT EMBEDDED CONTROLLER INTERFACE (nvec)
17898 M:      Marc Dietrich <marvin24@gmx.de>
17899 L:      ac100@lists.launchpad.net (moderated for non-subscribers)
17900 L:      linux-tegra@vger.kernel.org
17901 S:      Maintained
17902 F:      drivers/staging/nvec/
17903
17904 STAGING - OLPC SECONDARY DISPLAY CONTROLLER (DCON)
17905 M:      Jens Frederich <jfrederich@gmail.com>
17906 M:      Jon Nettleton <jon.nettleton@gmail.com>
17907 S:      Maintained
17908 W:      http://wiki.laptop.org/go/DCON
17909 F:      drivers/staging/olpc_dcon/
17910
17911 STAGING - REALTEK RTL8188EU DRIVERS
17912 M:      Larry Finger <Larry.Finger@lwfinger.net>
17913 M:      Phillip Potter <phil@philpotter.co.uk>
17914 S:      Supported
17915 F:      drivers/staging/r8188eu/
17916
17917 STAGING - REALTEK RTL8712U DRIVERS
17918 M:      Larry Finger <Larry.Finger@lwfinger.net>
17919 M:      Florian Schilhabel <florian.c.schilhabel@googlemail.com>.
17920 S:      Odd Fixes
17921 F:      drivers/staging/rtl8712/
17922
17923 STAGING - SEPS525 LCD CONTROLLER DRIVERS
17924 M:      Michael Hennerich <michael.hennerich@analog.com>
17925 L:      linux-fbdev@vger.kernel.org
17926 S:      Supported
17927 F:      Documentation/devicetree/bindings/iio/adc/adi,ad7606.yaml
17928 F:      drivers/staging/fbtft/fb_seps525.c
17929
17930 STAGING - SILICON MOTION SM750 FRAME BUFFER DRIVER
17931 M:      Sudip Mukherjee <sudipm.mukherjee@gmail.com>
17932 M:      Teddy Wang <teddy.wang@siliconmotion.com>
17933 M:      Sudip Mukherjee <sudip.mukherjee@codethink.co.uk>
17934 L:      linux-fbdev@vger.kernel.org
17935 S:      Maintained
17936 F:      drivers/staging/sm750fb/
17937
17938 STAGING - VIA VT665X DRIVERS
17939 M:      Forest Bond <forest@alittletooquiet.net>
17940 S:      Odd Fixes
17941 F:      drivers/staging/vt665?/
17942
17943 STAGING SUBSYSTEM
17944 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
17945 L:      linux-staging@lists.linux.dev
17946 S:      Supported
17947 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging.git
17948 F:      drivers/staging/
17949
17950 STARFIRE/DURALAN NETWORK DRIVER
17951 M:      Ion Badulescu <ionut@badula.org>
17952 S:      Odd Fixes
17953 F:      drivers/net/ethernet/adaptec/starfire*
17954
17955 STATIC BRANCH/CALL
17956 M:      Peter Zijlstra <peterz@infradead.org>
17957 M:      Josh Poimboeuf <jpoimboe@redhat.com>
17958 M:      Jason Baron <jbaron@akamai.com>
17959 R:      Steven Rostedt <rostedt@goodmis.org>
17960 R:      Ard Biesheuvel <ardb@kernel.org>
17961 S:      Supported
17962 F:      arch/*/include/asm/jump_label*.h
17963 F:      arch/*/include/asm/static_call*.h
17964 F:      arch/*/kernel/jump_label.c
17965 F:      arch/*/kernel/static_call.c
17966 F:      include/linux/jump_label*.h
17967 F:      include/linux/static_call*.h
17968 F:      kernel/jump_label.c
17969 F:      kernel/static_call.c
17970
17971 STI AUDIO (ASoC) DRIVERS
17972 M:      Arnaud Pouliquen <arnaud.pouliquen@foss.st.com>
17973 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17974 S:      Maintained
17975 F:      Documentation/devicetree/bindings/sound/st,sti-asoc-card.txt
17976 F:      sound/soc/sti/
17977
17978 STI CEC DRIVER
17979 M:      Benjamin Gaignard <benjamin.gaignard@linaro.org>
17980 S:      Maintained
17981 F:      Documentation/devicetree/bindings/media/stih-cec.txt
17982 F:      drivers/media/cec/platform/sti/
17983
17984 STK1160 USB VIDEO CAPTURE DRIVER
17985 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
17986 L:      linux-media@vger.kernel.org
17987 S:      Maintained
17988 T:      git git://linuxtv.org/media_tree.git
17989 F:      drivers/media/usb/stk1160/
17990
17991 STM32 AUDIO (ASoC) DRIVERS
17992 M:      Olivier Moysan <olivier.moysan@foss.st.com>
17993 M:      Arnaud Pouliquen <arnaud.pouliquen@foss.st.com>
17994 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
17995 S:      Maintained
17996 F:      Documentation/devicetree/bindings/iio/adc/st,stm32-dfsdm-adc.yaml
17997 F:      Documentation/devicetree/bindings/sound/st,stm32-*.yaml
17998 F:      sound/soc/stm/
17999
18000 STM32 TIMER/LPTIMER DRIVERS
18001 M:      Fabrice Gasnier <fabrice.gasnier@foss.st.com>
18002 S:      Maintained
18003 F:      Documentation/ABI/testing/*timer-stm32
18004 F:      Documentation/devicetree/bindings/*/*stm32-*timer*
18005 F:      drivers/*/stm32-*timer*
18006 F:      drivers/pwm/pwm-stm32*
18007 F:      include/linux/*/stm32-*tim*
18008
18009 STMMAC ETHERNET DRIVER
18010 M:      Giuseppe Cavallaro <peppe.cavallaro@st.com>
18011 M:      Alexandre Torgue <alexandre.torgue@foss.st.com>
18012 M:      Jose Abreu <joabreu@synopsys.com>
18013 L:      netdev@vger.kernel.org
18014 S:      Supported
18015 W:      http://www.stlinux.com
18016 F:      Documentation/networking/device_drivers/ethernet/stmicro/
18017 F:      drivers/net/ethernet/stmicro/stmmac/
18018
18019 SUN3/3X
18020 M:      Sam Creasey <sammy@sammy.net>
18021 S:      Maintained
18022 W:      http://sammy.net/sun3/
18023 F:      arch/m68k/include/asm/sun3*
18024 F:      arch/m68k/kernel/*sun3*
18025 F:      arch/m68k/sun3*/
18026 F:      drivers/net/ethernet/i825xx/sun3*
18027
18028 SUN4I LOW RES ADC ATTACHED TABLET KEYS DRIVER
18029 M:      Hans de Goede <hdegoede@redhat.com>
18030 L:      linux-input@vger.kernel.org
18031 S:      Maintained
18032 F:      Documentation/devicetree/bindings/input/allwinner,sun4i-a10-lradc-keys.yaml
18033 F:      drivers/input/keyboard/sun4i-lradc-keys.c
18034
18035 SUNDANCE NETWORK DRIVER
18036 M:      Denis Kirjanov <kda@linux-powerpc.org>
18037 L:      netdev@vger.kernel.org
18038 S:      Maintained
18039 F:      drivers/net/ethernet/dlink/sundance.c
18040
18041 SUPERH
18042 M:      Yoshinori Sato <ysato@users.sourceforge.jp>
18043 M:      Rich Felker <dalias@libc.org>
18044 L:      linux-sh@vger.kernel.org
18045 S:      Maintained
18046 Q:      http://patchwork.kernel.org/project/linux-sh/list/
18047 F:      Documentation/sh/
18048 F:      arch/sh/
18049 F:      drivers/sh/
18050
18051 SUSPEND TO RAM
18052 M:      "Rafael J. Wysocki" <rafael@kernel.org>
18053 M:      Len Brown <len.brown@intel.com>
18054 M:      Pavel Machek <pavel@ucw.cz>
18055 L:      linux-pm@vger.kernel.org
18056 S:      Supported
18057 B:      https://bugzilla.kernel.org
18058 F:      Documentation/power/
18059 F:      arch/x86/kernel/acpi/
18060 F:      drivers/base/power/
18061 F:      include/linux/freezer.h
18062 F:      include/linux/pm.h
18063 F:      include/linux/suspend.h
18064 F:      kernel/power/
18065
18066 SVGA HANDLING
18067 M:      Martin Mares <mj@ucw.cz>
18068 L:      linux-video@atrey.karlin.mff.cuni.cz
18069 S:      Maintained
18070 F:      Documentation/admin-guide/svga.rst
18071 F:      arch/x86/boot/video*
18072
18073 SWIOTLB SUBSYSTEM
18074 M:      Christoph Hellwig <hch@infradead.org>
18075 L:      iommu@lists.linux-foundation.org
18076 L:      iommu@lists.linux.dev
18077 S:      Supported
18078 W:      http://git.infradead.org/users/hch/dma-mapping.git
18079 T:      git git://git.infradead.org/users/hch/dma-mapping.git
18080 F:      arch/*/kernel/pci-swiotlb.c
18081 F:      include/linux/swiotlb.h
18082 F:      kernel/dma/swiotlb.c
18083
18084 SWITCHDEV
18085 M:      Jiri Pirko <jiri@resnulli.us>
18086 M:      Ivan Vecera <ivecera@redhat.com>
18087 L:      netdev@vger.kernel.org
18088 S:      Supported
18089 F:      include/net/switchdev.h
18090 F:      net/switchdev/
18091
18092 SY8106A REGULATOR DRIVER
18093 M:      Icenowy Zheng <icenowy@aosc.io>
18094 S:      Maintained
18095 F:      Documentation/devicetree/bindings/regulator/silergy,sy8106a.yaml
18096 F:      drivers/regulator/sy8106a-regulator.c
18097
18098 SYNC FILE FRAMEWORK
18099 M:      Sumit Semwal <sumit.semwal@linaro.org>
18100 R:      Gustavo Padovan <gustavo@padovan.org>
18101 L:      linux-media@vger.kernel.org
18102 L:      dri-devel@lists.freedesktop.org
18103 S:      Maintained
18104 T:      git git://anongit.freedesktop.org/drm/drm-misc
18105 F:      Documentation/driver-api/sync_file.rst
18106 F:      drivers/dma-buf/dma-fence*
18107 F:      drivers/dma-buf/sw_sync.c
18108 F:      drivers/dma-buf/sync_*
18109 F:      include/linux/sync_file.h
18110 F:      include/uapi/linux/sync_file.h
18111
18112 SYNOPSYS ARC ARCHITECTURE
18113 M:      Vineet Gupta <vgupta@kernel.org>
18114 L:      linux-snps-arc@lists.infradead.org
18115 S:      Supported
18116 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc.git
18117 F:      Documentation/devicetree/bindings/arc/*
18118 F:      Documentation/devicetree/bindings/interrupt-controller/snps,arc*
18119 F:      arch/arc/
18120 F:      drivers/clocksource/arc_timer.c
18121 F:      drivers/tty/serial/arc_uart.c
18122
18123 SYNOPSYS ARC HSDK SDP pll clock driver
18124 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
18125 S:      Supported
18126 F:      Documentation/devicetree/bindings/clock/snps,hsdk-pll-clock.txt
18127 F:      drivers/clk/clk-hsdk-pll.c
18128
18129 SYNOPSYS ARC SDP clock driver
18130 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
18131 S:      Supported
18132 F:      Documentation/devicetree/bindings/clock/snps,pll-clock.txt
18133 F:      drivers/clk/axs10x/*
18134
18135 SYNOPSYS ARC SDP platform support
18136 M:      Alexey Brodkin <abrodkin@synopsys.com>
18137 S:      Supported
18138 F:      Documentation/devicetree/bindings/arc/axs10*
18139 F:      arch/arc/boot/dts/ax*
18140 F:      arch/arc/plat-axs10x
18141
18142 SYNOPSYS AXS10x RESET CONTROLLER DRIVER
18143 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
18144 S:      Supported
18145 F:      Documentation/devicetree/bindings/reset/snps,axs10x-reset.txt
18146 F:      drivers/reset/reset-axs10x.c
18147
18148 SYNOPSYS CREG GPIO DRIVER
18149 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
18150 S:      Maintained
18151 F:      Documentation/devicetree/bindings/gpio/snps,creg-gpio.txt
18152 F:      drivers/gpio/gpio-creg-snps.c
18153
18154 SYNOPSYS DESIGNWARE 8250 UART DRIVER
18155 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
18156 S:      Maintained
18157 F:      drivers/tty/serial/8250/8250_dw.c
18158 F:      drivers/tty/serial/8250/8250_dwlib.*
18159 F:      drivers/tty/serial/8250/8250_lpss.c
18160
18161 SYNOPSYS DESIGNWARE APB GPIO DRIVER
18162 M:      Hoan Tran <hoan@os.amperecomputing.com>
18163 M:      Serge Semin <fancer.lancer@gmail.com>
18164 L:      linux-gpio@vger.kernel.org
18165 S:      Maintained
18166 F:      Documentation/devicetree/bindings/gpio/snps,dw-apb-gpio.yaml
18167 F:      drivers/gpio/gpio-dwapb.c
18168
18169 SYNOPSYS DESIGNWARE APB SSI DRIVER
18170 M:      Serge Semin <fancer.lancer@gmail.com>
18171 L:      linux-spi@vger.kernel.org
18172 S:      Supported
18173 F:      Documentation/devicetree/bindings/spi/snps,dw-apb-ssi.yaml
18174 F:      drivers/spi/spi-dw*
18175
18176 SYNOPSYS DESIGNWARE AXI DMAC DRIVER
18177 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
18178 S:      Maintained
18179 F:      Documentation/devicetree/bindings/dma/snps,dw-axi-dmac.yaml
18180 F:      drivers/dma/dw-axi-dmac/
18181
18182 SYNOPSYS DESIGNWARE DMAC DRIVER
18183 M:      Viresh Kumar <vireshk@kernel.org>
18184 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
18185 S:      Maintained
18186 F:      Documentation/devicetree/bindings/dma/snps,dma-spear1340.yaml
18187 F:      drivers/dma/dw/
18188 F:      include/dt-bindings/dma/dw-dmac.h
18189 F:      include/linux/dma/dw.h
18190 F:      include/linux/platform_data/dma-dw.h
18191
18192 SYNOPSYS DESIGNWARE ENTERPRISE ETHERNET DRIVER
18193 M:      Jose Abreu <Jose.Abreu@synopsys.com>
18194 L:      netdev@vger.kernel.org
18195 S:      Supported
18196 F:      drivers/net/ethernet/synopsys/
18197
18198 SYNOPSYS DESIGNWARE ETHERNET XPCS DRIVER
18199 M:      Jose Abreu <Jose.Abreu@synopsys.com>
18200 L:      netdev@vger.kernel.org
18201 S:      Supported
18202 F:      drivers/net/pcs/pcs-xpcs.c
18203 F:      drivers/net/pcs/pcs-xpcs.h
18204 F:      include/linux/pcs/pcs-xpcs.h
18205
18206 SYNOPSYS DESIGNWARE I2C DRIVER
18207 M:      Jarkko Nikula <jarkko.nikula@linux.intel.com>
18208 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
18209 R:      Mika Westerberg <mika.westerberg@linux.intel.com>
18210 L:      linux-i2c@vger.kernel.org
18211 S:      Maintained
18212 F:      drivers/i2c/busses/i2c-designware-*
18213
18214 SYNOPSYS DESIGNWARE MMC/SD/SDIO DRIVER
18215 M:      Jaehoon Chung <jh80.chung@samsung.com>
18216 L:      linux-mmc@vger.kernel.org
18217 S:      Maintained
18218 F:      drivers/mmc/host/dw_mmc*
18219
18220 SYNOPSYS HSDK RESET CONTROLLER DRIVER
18221 M:      Eugeniy Paltsev <Eugeniy.Paltsev@synopsys.com>
18222 S:      Supported
18223 F:      Documentation/devicetree/bindings/reset/snps,hsdk-reset.txt
18224 F:      drivers/reset/reset-hsdk.c
18225 F:      include/dt-bindings/reset/snps,hsdk-reset.h
18226
18227 SYNOPSYS SDHCI COMPLIANT DWC MSHC DRIVER
18228 M:      Prabu Thangamuthu <prabu.t@synopsys.com>
18229 M:      Manjunath M B <manjumb@synopsys.com>
18230 L:      linux-mmc@vger.kernel.org
18231 S:      Maintained
18232 F:      drivers/mmc/host/sdhci-pci-dwc-mshc.c
18233
18234 SYSTEM CONFIGURATION (SYSCON)
18235 M:      Lee Jones <lee.jones@linaro.org>
18236 M:      Arnd Bergmann <arnd@arndb.de>
18237 S:      Supported
18238 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git
18239 F:      drivers/mfd/syscon.c
18240
18241 SYSTEM CONTROL & POWER/MANAGEMENT INTERFACE (SCPI/SCMI) Message Protocol drivers
18242 M:      Sudeep Holla <sudeep.holla@arm.com>
18243 R:      Cristian Marussi <cristian.marussi@arm.com>
18244 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
18245 S:      Maintained
18246 F:      Documentation/devicetree/bindings/firmware/arm,sc[mp]i.yaml
18247 F:      drivers/clk/clk-sc[mp]i.c
18248 F:      drivers/cpufreq/sc[mp]i-cpufreq.c
18249 F:      drivers/firmware/arm_scmi/
18250 F:      drivers/firmware/arm_scpi.c
18251 F:      drivers/regulator/scmi-regulator.c
18252 F:      drivers/reset/reset-scmi.c
18253 F:      include/linux/sc[mp]i_protocol.h
18254 F:      include/trace/events/scmi.h
18255 F:      include/uapi/linux/virtio_scmi.h
18256
18257 SYSTEM RESET/SHUTDOWN DRIVERS
18258 M:      Sebastian Reichel <sre@kernel.org>
18259 L:      linux-pm@vger.kernel.org
18260 S:      Maintained
18261 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git
18262 F:      Documentation/devicetree/bindings/power/reset/
18263 F:      drivers/power/reset/
18264
18265 SYSTEM TRACE MODULE CLASS
18266 M:      Alexander Shishkin <alexander.shishkin@linux.intel.com>
18267 S:      Maintained
18268 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ash/stm.git
18269 F:      Documentation/trace/stm.rst
18270 F:      drivers/hwtracing/stm/
18271 F:      include/linux/stm.h
18272 F:      include/uapi/linux/stm.h
18273
18274 SYSTEM76 ACPI DRIVER
18275 M:      Jeremy Soller <jeremy@system76.com>
18276 M:      System76 Product Development <productdev@system76.com>
18277 L:      platform-driver-x86@vger.kernel.org
18278 S:      Maintained
18279 F:      drivers/platform/x86/system76_acpi.c
18280
18281 SYSV FILESYSTEM
18282 M:      Christoph Hellwig <hch@infradead.org>
18283 S:      Maintained
18284 F:      Documentation/filesystems/sysv-fs.rst
18285 F:      fs/sysv/
18286 F:      include/linux/sysv_fs.h
18287
18288 TASKSTATS STATISTICS INTERFACE
18289 M:      Balbir Singh <bsingharora@gmail.com>
18290 S:      Maintained
18291 F:      Documentation/accounting/taskstats*
18292 F:      include/linux/taskstats*
18293 F:      kernel/taskstats.c
18294
18295 TC subsystem
18296 M:      Jamal Hadi Salim <jhs@mojatatu.com>
18297 M:      Cong Wang <xiyou.wangcong@gmail.com>
18298 M:      Jiri Pirko <jiri@resnulli.us>
18299 L:      netdev@vger.kernel.org
18300 S:      Maintained
18301 F:      include/net/pkt_cls.h
18302 F:      include/net/pkt_sched.h
18303 F:      include/net/tc_act/
18304 F:      include/uapi/linux/pkt_cls.h
18305 F:      include/uapi/linux/pkt_sched.h
18306 F:      include/uapi/linux/tc_act/
18307 F:      include/uapi/linux/tc_ematch/
18308 F:      net/sched/
18309
18310 TC90522 MEDIA DRIVER
18311 M:      Akihiro Tsukada <tskd08@gmail.com>
18312 L:      linux-media@vger.kernel.org
18313 S:      Odd Fixes
18314 F:      drivers/media/dvb-frontends/tc90522*
18315
18316 TCP LOW PRIORITY MODULE
18317 M:      "Wong Hoi Sing, Edison" <hswong3i@gmail.com>
18318 M:      "Hung Hing Lun, Mike" <hlhung3i@gmail.com>
18319 S:      Maintained
18320 W:      http://tcp-lp-mod.sourceforge.net/
18321 F:      net/ipv4/tcp_lp.c
18322
18323 TDA10071 MEDIA DRIVER
18324 M:      Antti Palosaari <crope@iki.fi>
18325 L:      linux-media@vger.kernel.org
18326 S:      Maintained
18327 W:      https://linuxtv.org
18328 W:      http://palosaari.fi/linux/
18329 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18330 T:      git git://linuxtv.org/anttip/media_tree.git
18331 F:      drivers/media/dvb-frontends/tda10071*
18332
18333 TDA18212 MEDIA DRIVER
18334 M:      Antti Palosaari <crope@iki.fi>
18335 L:      linux-media@vger.kernel.org
18336 S:      Maintained
18337 W:      https://linuxtv.org
18338 W:      http://palosaari.fi/linux/
18339 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18340 T:      git git://linuxtv.org/anttip/media_tree.git
18341 F:      drivers/media/tuners/tda18212*
18342
18343 TDA18218 MEDIA DRIVER
18344 M:      Antti Palosaari <crope@iki.fi>
18345 L:      linux-media@vger.kernel.org
18346 S:      Maintained
18347 W:      https://linuxtv.org
18348 W:      http://palosaari.fi/linux/
18349 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18350 T:      git git://linuxtv.org/anttip/media_tree.git
18351 F:      drivers/media/tuners/tda18218*
18352
18353 TDA18250 MEDIA DRIVER
18354 M:      Olli Salonen <olli.salonen@iki.fi>
18355 L:      linux-media@vger.kernel.org
18356 S:      Maintained
18357 W:      https://linuxtv.org
18358 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18359 T:      git git://linuxtv.org/media_tree.git
18360 F:      drivers/media/tuners/tda18250*
18361
18362 TDA18271 MEDIA DRIVER
18363 M:      Michael Krufky <mkrufky@linuxtv.org>
18364 L:      linux-media@vger.kernel.org
18365 S:      Maintained
18366 W:      https://linuxtv.org
18367 W:      http://github.com/mkrufky
18368 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18369 T:      git git://linuxtv.org/mkrufky/tuners.git
18370 F:      drivers/media/tuners/tda18271*
18371
18372 TDA1997x MEDIA DRIVER
18373 M:      Tim Harvey <tharvey@gateworks.com>
18374 L:      linux-media@vger.kernel.org
18375 S:      Maintained
18376 W:      https://linuxtv.org
18377 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18378 F:      drivers/media/i2c/tda1997x.*
18379
18380 TDA827x MEDIA DRIVER
18381 M:      Michael Krufky <mkrufky@linuxtv.org>
18382 L:      linux-media@vger.kernel.org
18383 S:      Maintained
18384 W:      https://linuxtv.org
18385 W:      http://github.com/mkrufky
18386 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18387 T:      git git://linuxtv.org/mkrufky/tuners.git
18388 F:      drivers/media/tuners/tda8290.*
18389
18390 TDA8290 MEDIA DRIVER
18391 M:      Michael Krufky <mkrufky@linuxtv.org>
18392 L:      linux-media@vger.kernel.org
18393 S:      Maintained
18394 W:      https://linuxtv.org
18395 W:      http://github.com/mkrufky
18396 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18397 T:      git git://linuxtv.org/mkrufky/tuners.git
18398 F:      drivers/media/tuners/tda8290.*
18399
18400 TDA9840 MEDIA DRIVER
18401 M:      Hans Verkuil <hverkuil@xs4all.nl>
18402 L:      linux-media@vger.kernel.org
18403 S:      Maintained
18404 W:      https://linuxtv.org
18405 T:      git git://linuxtv.org/media_tree.git
18406 F:      drivers/media/i2c/tda9840*
18407
18408 TEA5761 TUNER DRIVER
18409 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
18410 L:      linux-media@vger.kernel.org
18411 S:      Odd fixes
18412 W:      https://linuxtv.org
18413 T:      git git://linuxtv.org/media_tree.git
18414 F:      drivers/media/tuners/tea5761.*
18415
18416 TEA5767 TUNER DRIVER
18417 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
18418 L:      linux-media@vger.kernel.org
18419 S:      Maintained
18420 W:      https://linuxtv.org
18421 T:      git git://linuxtv.org/media_tree.git
18422 F:      drivers/media/tuners/tea5767.*
18423
18424 TEA6415C MEDIA DRIVER
18425 M:      Hans Verkuil <hverkuil@xs4all.nl>
18426 L:      linux-media@vger.kernel.org
18427 S:      Maintained
18428 W:      https://linuxtv.org
18429 T:      git git://linuxtv.org/media_tree.git
18430 F:      drivers/media/i2c/tea6415c*
18431
18432 TEA6420 MEDIA DRIVER
18433 M:      Hans Verkuil <hverkuil@xs4all.nl>
18434 L:      linux-media@vger.kernel.org
18435 S:      Maintained
18436 W:      https://linuxtv.org
18437 T:      git git://linuxtv.org/media_tree.git
18438 F:      drivers/media/i2c/tea6420*
18439
18440 TEAM DRIVER
18441 M:      Jiri Pirko <jiri@resnulli.us>
18442 L:      netdev@vger.kernel.org
18443 S:      Supported
18444 F:      drivers/net/team/
18445 F:      include/linux/if_team.h
18446 F:      include/uapi/linux/if_team.h
18447
18448 TECHNOLOGIC SYSTEMS TS-5500 PLATFORM SUPPORT
18449 M:      "Savoir-faire Linux Inc." <kernel@savoirfairelinux.com>
18450 S:      Maintained
18451 F:      arch/x86/platform/ts5500/
18452
18453 TECHNOTREND USB IR RECEIVER
18454 M:      Sean Young <sean@mess.org>
18455 L:      linux-media@vger.kernel.org
18456 S:      Maintained
18457 F:      drivers/media/rc/ttusbir.c
18458
18459 TECHWELL TW9910 VIDEO DECODER
18460 L:      linux-media@vger.kernel.org
18461 S:      Orphan
18462 F:      drivers/media/i2c/tw9910.c
18463 F:      include/media/i2c/tw9910.h
18464
18465 TEE SUBSYSTEM
18466 M:      Jens Wiklander <jens.wiklander@linaro.org>
18467 R:      Sumit Garg <sumit.garg@linaro.org>
18468 L:      op-tee@lists.trustedfirmware.org
18469 S:      Maintained
18470 F:      Documentation/staging/tee.rst
18471 F:      drivers/tee/
18472 F:      include/linux/tee_drv.h
18473 F:      include/uapi/linux/tee.h
18474
18475 TEGRA ARCHITECTURE SUPPORT
18476 M:      Thierry Reding <thierry.reding@gmail.com>
18477 M:      Jonathan Hunter <jonathanh@nvidia.com>
18478 L:      linux-tegra@vger.kernel.org
18479 S:      Supported
18480 Q:      http://patchwork.ozlabs.org/project/linux-tegra/list/
18481 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tegra/linux.git
18482 N:      [^a-z]tegra
18483
18484 TEGRA CLOCK DRIVER
18485 M:      Peter De Schrijver <pdeschrijver@nvidia.com>
18486 M:      Prashant Gaikwad <pgaikwad@nvidia.com>
18487 S:      Supported
18488 F:      drivers/clk/tegra/
18489
18490 TEGRA DMA DRIVERS
18491 M:      Laxman Dewangan <ldewangan@nvidia.com>
18492 M:      Jon Hunter <jonathanh@nvidia.com>
18493 S:      Supported
18494 F:      drivers/dma/tegra*
18495
18496 TEGRA I2C DRIVER
18497 M:      Laxman Dewangan <ldewangan@nvidia.com>
18498 R:      Dmitry Osipenko <digetx@gmail.com>
18499 S:      Supported
18500 F:      drivers/i2c/busses/i2c-tegra.c
18501
18502 TEGRA IOMMU DRIVERS
18503 M:      Thierry Reding <thierry.reding@gmail.com>
18504 R:      Krishna Reddy <vdumpa@nvidia.com>
18505 L:      linux-tegra@vger.kernel.org
18506 S:      Supported
18507 F:      drivers/iommu/arm/arm-smmu/arm-smmu-nvidia.c
18508 F:      drivers/iommu/tegra*
18509
18510 TEGRA KBC DRIVER
18511 M:      Laxman Dewangan <ldewangan@nvidia.com>
18512 S:      Supported
18513 F:      drivers/input/keyboard/tegra-kbc.c
18514
18515 TEGRA NAND DRIVER
18516 M:      Stefan Agner <stefan@agner.ch>
18517 M:      Lucas Stach <dev@lynxeye.de>
18518 S:      Maintained
18519 F:      Documentation/devicetree/bindings/mtd/nvidia-tegra20-nand.txt
18520 F:      drivers/mtd/nand/raw/tegra_nand.c
18521
18522 TEGRA PWM DRIVER
18523 M:      Thierry Reding <thierry.reding@gmail.com>
18524 S:      Supported
18525 F:      drivers/pwm/pwm-tegra.c
18526
18527 TEGRA SERIAL DRIVER
18528 M:      Laxman Dewangan <ldewangan@nvidia.com>
18529 S:      Supported
18530 F:      drivers/tty/serial/serial-tegra.c
18531
18532 TEGRA SPI DRIVER
18533 M:      Laxman Dewangan <ldewangan@nvidia.com>
18534 S:      Supported
18535 F:      drivers/spi/spi-tegra*
18536
18537 TEGRA QUAD SPI DRIVER
18538 M:      Thierry Reding <thierry.reding@gmail.com>
18539 M:      Jonathan Hunter <jonathanh@nvidia.com>
18540 M:      Sowjanya Komatineni <skomatineni@nvidia.com>
18541 L:      linux-tegra@vger.kernel.org
18542 S:      Maintained
18543 F:      drivers/spi/spi-tegra210-quad.c
18544
18545 TEGRA VIDEO DRIVER
18546 M:      Thierry Reding <thierry.reding@gmail.com>
18547 M:      Jonathan Hunter <jonathanh@nvidia.com>
18548 M:      Sowjanya Komatineni <skomatineni@nvidia.com>
18549 L:      linux-media@vger.kernel.org
18550 L:      linux-tegra@vger.kernel.org
18551 S:      Maintained
18552 F:      Documentation/devicetree/bindings/display/tegra/nvidia,tegra20-host1x.txt
18553 F:      drivers/staging/media/tegra-video/
18554
18555 TEGRA XUSB PADCTL DRIVER
18556 M:      JC Kuo <jckuo@nvidia.com>
18557 S:      Supported
18558 F:      drivers/phy/tegra/xusb*
18559
18560 TEHUTI ETHERNET DRIVER
18561 M:      Andy Gospodarek <andy@greyhouse.net>
18562 L:      netdev@vger.kernel.org
18563 S:      Supported
18564 F:      drivers/net/ethernet/tehuti/*
18565
18566 TELECOM CLOCK DRIVER FOR MCPL0010
18567 M:      Mark Gross <mark.gross@intel.com>
18568 S:      Supported
18569 F:      drivers/char/tlclk.c
18570
18571 TEMPO SEMICONDUCTOR DRIVERS
18572 M:      Steven Eckhoff <steven.eckhoff.opensource@gmail.com>
18573 S:      Maintained
18574 F:      Documentation/devicetree/bindings/sound/tscs*.txt
18575 F:      sound/soc/codecs/tscs*.c
18576 F:      sound/soc/codecs/tscs*.h
18577
18578 TENSILICA XTENSA PORT (xtensa)
18579 M:      Chris Zankel <chris@zankel.net>
18580 M:      Max Filippov <jcmvbkbc@gmail.com>
18581 L:      linux-xtensa@linux-xtensa.org
18582 S:      Maintained
18583 T:      git git://github.com/czankel/xtensa-linux.git
18584 F:      arch/xtensa/
18585 F:      drivers/irqchip/irq-xtensa-*
18586
18587 TEXAS INSTRUMENTS ASoC DRIVERS
18588 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
18589 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18590 S:      Maintained
18591 F:      sound/soc/ti/
18592
18593 TEXAS INSTRUMENTS' DAC7612 DAC DRIVER
18594 M:      Ricardo Ribalda <ribalda@kernel.org>
18595 L:      linux-iio@vger.kernel.org
18596 S:      Supported
18597 F:      Documentation/devicetree/bindings/iio/dac/ti,dac7612.yaml
18598 F:      drivers/iio/dac/ti-dac7612.c
18599
18600 TEXAS INSTRUMENTS DMA DRIVERS
18601 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
18602 L:      dmaengine@vger.kernel.org
18603 S:      Maintained
18604 F:      Documentation/devicetree/bindings/dma/ti-dma-crossbar.txt
18605 F:      Documentation/devicetree/bindings/dma/ti-edma.txt
18606 F:      Documentation/devicetree/bindings/dma/ti/
18607 F:      drivers/dma/ti/
18608 X:      drivers/dma/ti/cppi41.c
18609 F:      include/linux/dma/k3-udma-glue.h
18610 F:      include/linux/dma/ti-cppi5.h
18611 F:      include/linux/dma/k3-psil.h
18612
18613 TEXAS INSTRUMENTS' SYSTEM CONTROL INTERFACE (TISCI) PROTOCOL DRIVER
18614 M:      Nishanth Menon <nm@ti.com>
18615 M:      Tero Kristo <kristo@kernel.org>
18616 M:      Santosh Shilimkar <ssantosh@kernel.org>
18617 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
18618 S:      Maintained
18619 F:      Documentation/devicetree/bindings/arm/keystone/ti,k3-sci-common.yaml
18620 F:      Documentation/devicetree/bindings/arm/keystone/ti,sci.txt
18621 F:      Documentation/devicetree/bindings/clock/ti,sci-clk.yaml
18622 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-inta.yaml
18623 F:      Documentation/devicetree/bindings/interrupt-controller/ti,sci-intr.yaml
18624 F:      Documentation/devicetree/bindings/reset/ti,sci-reset.yaml
18625 F:      Documentation/devicetree/bindings/soc/ti/sci-pm-domain.yaml
18626 F:      drivers/clk/keystone/sci-clk.c
18627 F:      drivers/firmware/ti_sci*
18628 F:      drivers/irqchip/irq-ti-sci-inta.c
18629 F:      drivers/irqchip/irq-ti-sci-intr.c
18630 F:      drivers/reset/reset-ti-sci.c
18631 F:      drivers/soc/ti/ti_sci_inta_msi.c
18632 F:      drivers/soc/ti/ti_sci_pm_domains.c
18633 F:      include/dt-bindings/soc/ti,sci_pm_domain.h
18634 F:      include/linux/soc/ti/ti_sci_inta_msi.h
18635 F:      include/linux/soc/ti/ti_sci_protocol.h
18636
18637 TEXAS INSTRUMENTS TPS23861 PoE PSE DRIVER
18638 M:      Robert Marko <robert.marko@sartura.hr>
18639 M:      Luka Perkov <luka.perkov@sartura.hr>
18640 L:      linux-hwmon@vger.kernel.org
18641 S:      Maintained
18642 F:      Documentation/devicetree/bindings/hwmon/ti,tps23861.yaml
18643 F:      Documentation/hwmon/tps23861.rst
18644 F:      drivers/hwmon/tps23861.c
18645
18646 TEXAS INSTRUMENTS' TMP117 TEMPERATURE SENSOR DRIVER
18647 M:      Puranjay Mohan <puranjay12@gmail.com>
18648 L:      linux-iio@vger.kernel.org
18649 S:      Supported
18650 F:      Documentation/devicetree/bindings/iio/temperature/ti,tmp117.yaml
18651 F:      drivers/iio/temperature/tmp117.c
18652
18653 THANKO'S RAREMONO AM/FM/SW RADIO RECEIVER USB DRIVER
18654 M:      Hans Verkuil <hverkuil@xs4all.nl>
18655 L:      linux-media@vger.kernel.org
18656 S:      Maintained
18657 W:      https://linuxtv.org
18658 T:      git git://linuxtv.org/media_tree.git
18659 F:      drivers/media/radio/radio-raremono.c
18660
18661 THERMAL
18662 M:      Rafael J. Wysocki <rafael@kernel.org>
18663 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
18664 R:      Amit Kucheria <amitk@kernel.org>
18665 R:      Zhang Rui <rui.zhang@intel.com>
18666 L:      linux-pm@vger.kernel.org
18667 S:      Supported
18668 Q:      https://patchwork.kernel.org/project/linux-pm/list/
18669 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm.git thermal
18670 F:      Documentation/devicetree/bindings/thermal/
18671 F:      drivers/thermal/
18672 F:      include/linux/cpu_cooling.h
18673 F:      include/linux/thermal.h
18674 F:      include/uapi/linux/thermal.h
18675 F:      tools/thermal/
18676
18677 THERMAL DRIVER FOR AMLOGIC SOCS
18678 M:      Guillaume La Roque <glaroque@baylibre.com>
18679 L:      linux-pm@vger.kernel.org
18680 L:      linux-amlogic@lists.infradead.org
18681 S:      Supported
18682 W:      http://linux-meson.com/
18683 F:      Documentation/devicetree/bindings/thermal/amlogic,thermal.yaml
18684 F:      drivers/thermal/amlogic_thermal.c
18685
18686 THERMAL/CPU_COOLING
18687 M:      Amit Daniel Kachhap <amit.kachhap@gmail.com>
18688 M:      Daniel Lezcano <daniel.lezcano@linaro.org>
18689 M:      Viresh Kumar <viresh.kumar@linaro.org>
18690 R:      Lukasz Luba <lukasz.luba@arm.com>
18691 L:      linux-pm@vger.kernel.org
18692 S:      Supported
18693 F:      Documentation/driver-api/thermal/cpu-cooling-api.rst
18694 F:      Documentation/driver-api/thermal/cpu-idle-cooling.rst
18695 F:      drivers/thermal/cpufreq_cooling.c
18696 F:      drivers/thermal/cpuidle_cooling.c
18697 F:      include/linux/cpu_cooling.h
18698
18699 THERMAL/POWER_ALLOCATOR
18700 M:      Lukasz Luba <lukasz.luba@arm.com>
18701 L:      linux-pm@vger.kernel.org
18702 S:      Maintained
18703 F:      Documentation/driver-api/thermal/power_allocator.rst
18704 F:      drivers/thermal/gov_power_allocator.c
18705 F:      include/trace/events/thermal_power_allocator.h
18706
18707 THINKPAD ACPI EXTRAS DRIVER
18708 M:      Henrique de Moraes Holschuh <hmh@hmh.eng.br>
18709 L:      ibm-acpi-devel@lists.sourceforge.net
18710 L:      platform-driver-x86@vger.kernel.org
18711 S:      Maintained
18712 W:      http://ibm-acpi.sourceforge.net
18713 W:      http://thinkwiki.org/wiki/Ibm-acpi
18714 T:      git git://repo.or.cz/linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git
18715 F:      drivers/platform/x86/thinkpad_acpi.c
18716
18717 THINKPAD LMI DRIVER
18718 M:      Mark Pearson <markpearson@lenovo.com>
18719 L:      platform-driver-x86@vger.kernel.org
18720 S:      Maintained
18721 F:      Documentation/ABI/testing/sysfs-class-firmware-attributes
18722 F:      drivers/platform/x86/think-lmi.?
18723
18724 THUNDERBOLT DMA TRAFFIC TEST DRIVER
18725 M:      Isaac Hazan <isaac.hazan@intel.com>
18726 L:      linux-usb@vger.kernel.org
18727 S:      Maintained
18728 F:      drivers/thunderbolt/dma_test.c
18729
18730 THUNDERBOLT DRIVER
18731 M:      Andreas Noever <andreas.noever@gmail.com>
18732 M:      Michael Jamet <michael.jamet@intel.com>
18733 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
18734 M:      Yehezkel Bernat <YehezkelShB@gmail.com>
18735 L:      linux-usb@vger.kernel.org
18736 S:      Maintained
18737 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/westeri/thunderbolt.git
18738 F:      Documentation/admin-guide/thunderbolt.rst
18739 F:      drivers/thunderbolt/
18740 F:      include/linux/thunderbolt.h
18741
18742 THUNDERBOLT NETWORK DRIVER
18743 M:      Michael Jamet <michael.jamet@intel.com>
18744 M:      Mika Westerberg <mika.westerberg@linux.intel.com>
18745 M:      Yehezkel Bernat <YehezkelShB@gmail.com>
18746 L:      netdev@vger.kernel.org
18747 S:      Maintained
18748 F:      drivers/net/thunderbolt.c
18749
18750 THUNDERX GPIO DRIVER
18751 M:      Robert Richter <rric@kernel.org>
18752 S:      Odd Fixes
18753 F:      drivers/gpio/gpio-thunderx.c
18754
18755 TI ADS131E0X ADC SERIES DRIVER
18756 M:      Tomislav Denis <tomislav.denis@avl.com>
18757 L:      linux-iio@vger.kernel.org
18758 S:      Maintained
18759 F:      Documentation/devicetree/bindings/iio/adc/ti,ads131e08.yaml
18760 F:      drivers/iio/adc/ti-ads131e08.c
18761
18762 TI AM437X VPFE DRIVER
18763 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
18764 L:      linux-media@vger.kernel.org
18765 S:      Maintained
18766 W:      https://linuxtv.org
18767 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18768 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
18769 F:      drivers/media/platform/am437x/
18770
18771 TI BANDGAP AND THERMAL DRIVER
18772 M:      Eduardo Valentin <edubezval@gmail.com>
18773 M:      Keerthy <j-keerthy@ti.com>
18774 L:      linux-pm@vger.kernel.org
18775 L:      linux-omap@vger.kernel.org
18776 S:      Maintained
18777 F:      drivers/thermal/ti-soc-thermal/
18778
18779 TI BQ27XXX POWER SUPPLY DRIVER
18780 F:      drivers/power/supply/bq27xxx_battery.c
18781 F:      drivers/power/supply/bq27xxx_battery_i2c.c
18782 F:      include/linux/power/bq27xxx_battery.h
18783
18784 TI CDCE706 CLOCK DRIVER
18785 M:      Max Filippov <jcmvbkbc@gmail.com>
18786 S:      Maintained
18787 F:      drivers/clk/clk-cdce706.c
18788
18789 TI CLOCK DRIVER
18790 M:      Tero Kristo <kristo@kernel.org>
18791 L:      linux-omap@vger.kernel.org
18792 S:      Odd Fixes
18793 F:      drivers/clk/ti/
18794 F:      include/linux/clk/ti.h
18795
18796 TI DAVINCI MACHINE SUPPORT
18797 M:      Sekhar Nori <nsekhar@ti.com>
18798 R:      Bartosz Golaszewski <brgl@bgdev.pl>
18799 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
18800 S:      Supported
18801 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/nsekhar/linux-davinci.git
18802 F:      Documentation/devicetree/bindings/i2c/i2c-davinci.txt
18803 F:      arch/arm/boot/dts/da850*
18804 F:      arch/arm/mach-davinci/
18805 F:      drivers/i2c/busses/i2c-davinci.c
18806
18807 TI DAVINCI SERIES CLOCK DRIVER
18808 M:      David Lechner <david@lechnology.com>
18809 R:      Sekhar Nori <nsekhar@ti.com>
18810 S:      Maintained
18811 F:      Documentation/devicetree/bindings/clock/ti/davinci/
18812 F:      drivers/clk/davinci/
18813
18814 TI DAVINCI SERIES GPIO DRIVER
18815 M:      Keerthy <j-keerthy@ti.com>
18816 L:      linux-gpio@vger.kernel.org
18817 S:      Maintained
18818 F:      Documentation/devicetree/bindings/gpio/gpio-davinci.yaml
18819 F:      drivers/gpio/gpio-davinci.c
18820
18821 TI DAVINCI SERIES MEDIA DRIVER
18822 M:      "Lad, Prabhakar" <prabhakar.csengg@gmail.com>
18823 L:      linux-media@vger.kernel.org
18824 S:      Maintained
18825 W:      https://linuxtv.org
18826 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18827 T:      git git://linuxtv.org/mhadli/v4l-dvb-davinci_devices.git
18828 F:      drivers/media/platform/davinci/
18829 F:      include/media/davinci/
18830
18831 TI ENHANCED QUADRATURE ENCODER PULSE (eQEP) DRIVER
18832 R:      David Lechner <david@lechnology.com>
18833 L:      linux-iio@vger.kernel.org
18834 F:      Documentation/devicetree/bindings/counter/ti-eqep.yaml
18835 F:      drivers/counter/ti-eqep.c
18836
18837 TI ETHERNET SWITCH DRIVER (CPSW)
18838 R:      Grygorii Strashko <grygorii.strashko@ti.com>
18839 L:      linux-omap@vger.kernel.org
18840 L:      netdev@vger.kernel.org
18841 S:      Maintained
18842 F:      drivers/net/ethernet/ti/cpsw*
18843 F:      drivers/net/ethernet/ti/davinci*
18844
18845 TI FLASH MEDIA MEMORYSTICK/MMC DRIVERS
18846 M:      Alex Dubov <oakad@yahoo.com>
18847 S:      Maintained
18848 W:      http://tifmxx.berlios.de/
18849 F:      drivers/memstick/host/tifm_ms.c
18850 F:      drivers/misc/tifm*
18851 F:      drivers/mmc/host/tifm_sd.c
18852 F:      include/linux/tifm.h
18853
18854 TI KEYSTONE MULTICORE NAVIGATOR DRIVERS
18855 M:      Santosh Shilimkar <ssantosh@kernel.org>
18856 L:      linux-kernel@vger.kernel.org
18857 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
18858 S:      Maintained
18859 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git
18860 F:      drivers/soc/ti/*
18861
18862 TI LM49xxx FAMILY ASoC CODEC DRIVERS
18863 M:      M R Swami Reddy <mr.swami.reddy@ti.com>
18864 M:      Vishwas A Deshpande <vishwas.a.deshpande@ti.com>
18865 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18866 S:      Maintained
18867 F:      sound/soc/codecs/isabelle*
18868 F:      sound/soc/codecs/lm49453*
18869
18870 TI PCM3060 ASoC CODEC DRIVER
18871 M:      Kirill Marinushkin <kmarinushkin@birdec.com>
18872 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18873 S:      Maintained
18874 F:      Documentation/devicetree/bindings/sound/pcm3060.txt
18875 F:      sound/soc/codecs/pcm3060*
18876
18877 TI TAS571X FAMILY ASoC CODEC DRIVER
18878 M:      Kevin Cernekee <cernekee@chromium.org>
18879 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18880 S:      Odd Fixes
18881 F:      sound/soc/codecs/tas571x*
18882
18883 TI TRF7970A NFC DRIVER
18884 M:      Mark Greer <mgreer@animalcreek.com>
18885 L:      linux-wireless@vger.kernel.org
18886 L:      linux-nfc@lists.01.org (subscribers-only)
18887 S:      Supported
18888 F:      Documentation/devicetree/bindings/net/nfc/trf7970a.txt
18889 F:      drivers/nfc/trf7970a.c
18890
18891 TI TSC2046 ADC DRIVER
18892 M:      Oleksij Rempel <o.rempel@pengutronix.de>
18893 R:      kernel@pengutronix.de
18894 L:      linux-iio@vger.kernel.org
18895 S:      Maintained
18896 F:      Documentation/devicetree/bindings/iio/adc/ti,tsc2046.yaml
18897 F:      drivers/iio/adc/ti-tsc2046.c
18898
18899 TI TWL4030 SERIES SOC CODEC DRIVER
18900 M:      Peter Ujfalusi <peter.ujfalusi@gmail.com>
18901 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
18902 S:      Maintained
18903 F:      sound/soc/codecs/twl4030*
18904
18905 TI VPE/CAL DRIVERS
18906 M:      Benoit Parrot <bparrot@ti.com>
18907 L:      linux-media@vger.kernel.org
18908 S:      Maintained
18909 W:      http://linuxtv.org/
18910 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
18911 F:      Documentation/devicetree/bindings/media/ti,cal.yaml
18912 F:      Documentation/devicetree/bindings/media/ti,vpe.yaml
18913 F:      drivers/media/platform/ti-vpe/
18914
18915 TI WILINK WIRELESS DRIVERS
18916 L:      linux-wireless@vger.kernel.org
18917 S:      Orphan
18918 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wl12xx
18919 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wl1251
18920 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/luca/wl12xx.git
18921 F:      drivers/net/wireless/ti/
18922 F:      include/linux/wl12xx.h
18923
18924 TIMEKEEPING, CLOCKSOURCE CORE, NTP, ALARMTIMER
18925 M:      John Stultz <john.stultz@linaro.org>
18926 M:      Thomas Gleixner <tglx@linutronix.de>
18927 R:      Stephen Boyd <sboyd@kernel.org>
18928 L:      linux-kernel@vger.kernel.org
18929 S:      Supported
18930 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git timers/core
18931 F:      include/linux/clocksource.h
18932 F:      include/linux/time.h
18933 F:      include/linux/timex.h
18934 F:      include/uapi/linux/time.h
18935 F:      include/uapi/linux/timex.h
18936 F:      kernel/time/alarmtimer.c
18937 F:      kernel/time/clocksource.c
18938 F:      kernel/time/ntp.c
18939 F:      kernel/time/time*.c
18940 F:      tools/testing/selftests/timers/
18941
18942 TIPC NETWORK LAYER
18943 M:      Jon Maloy <jmaloy@redhat.com>
18944 M:      Ying Xue <ying.xue@windriver.com>
18945 L:      netdev@vger.kernel.org (core kernel code)
18946 L:      tipc-discussion@lists.sourceforge.net (user apps, general discussion)
18947 S:      Maintained
18948 W:      http://tipc.sourceforge.net/
18949 F:      include/uapi/linux/tipc*.h
18950 F:      net/tipc/
18951
18952 TLAN NETWORK DRIVER
18953 M:      Samuel Chessman <chessman@tux.org>
18954 L:      tlan-devel@lists.sourceforge.net (subscribers-only)
18955 S:      Maintained
18956 W:      http://sourceforge.net/projects/tlan/
18957 F:      Documentation/networking/device_drivers/ethernet/ti/tlan.rst
18958 F:      drivers/net/ethernet/ti/tlan.*
18959
18960 TM6000 VIDEO4LINUX DRIVER
18961 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
18962 L:      linux-media@vger.kernel.org
18963 S:      Odd fixes
18964 W:      https://linuxtv.org
18965 T:      git git://linuxtv.org/media_tree.git
18966 F:      Documentation/admin-guide/media/tm6000*
18967 F:      drivers/media/usb/tm6000/
18968
18969 TMIO/SDHI MMC DRIVER
18970 M:      Wolfram Sang <wsa+renesas@sang-engineering.com>
18971 L:      linux-mmc@vger.kernel.org
18972 S:      Supported
18973 F:      drivers/mmc/host/renesas_sdhi*
18974 F:      drivers/mmc/host/tmio_mmc*
18975 F:      include/linux/mfd/tmio.h
18976
18977 TMP401 HARDWARE MONITOR DRIVER
18978 M:      Guenter Roeck <linux@roeck-us.net>
18979 L:      linux-hwmon@vger.kernel.org
18980 S:      Maintained
18981 F:      Documentation/hwmon/tmp401.rst
18982 F:      drivers/hwmon/tmp401.c
18983
18984 TMP513 HARDWARE MONITOR DRIVER
18985 M:      Eric Tremblay <etremblay@distech-controls.com>
18986 L:      linux-hwmon@vger.kernel.org
18987 S:      Maintained
18988 F:      Documentation/hwmon/tmp513.rst
18989 F:      drivers/hwmon/tmp513.c
18990
18991 TMPFS (SHMEM FILESYSTEM)
18992 M:      Hugh Dickins <hughd@google.com>
18993 L:      linux-mm@kvack.org
18994 S:      Maintained
18995 F:      include/linux/shmem_fs.h
18996 F:      mm/shmem.c
18997
18998 TOMOYO SECURITY MODULE
18999 M:      Kentaro Takeda <takedakn@nttdata.co.jp>
19000 M:      Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp>
19001 L:      tomoyo-dev-en@lists.osdn.me (subscribers-only, for developers in English)
19002 L:      tomoyo-users-en@lists.osdn.me (subscribers-only, for users in English)
19003 L:      tomoyo-dev@lists.osdn.me (subscribers-only, for developers in Japanese)
19004 L:      tomoyo-users@lists.osdn.me (subscribers-only, for users in Japanese)
19005 S:      Maintained
19006 W:      https://tomoyo.osdn.jp/
19007 F:      security/tomoyo/
19008
19009 TOPSTAR LAPTOP EXTRAS DRIVER
19010 M:      Herton Ronaldo Krzesinski <herton@canonical.com>
19011 L:      platform-driver-x86@vger.kernel.org
19012 S:      Maintained
19013 F:      drivers/platform/x86/topstar-laptop.c
19014
19015 TORTURE-TEST MODULES
19016 M:      Davidlohr Bueso <dave@stgolabs.net>
19017 M:      "Paul E. McKenney" <paulmck@kernel.org>
19018 M:      Josh Triplett <josh@joshtriplett.org>
19019 L:      linux-kernel@vger.kernel.org
19020 S:      Supported
19021 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu.git dev
19022 F:      Documentation/RCU/torture.rst
19023 F:      kernel/locking/locktorture.c
19024 F:      kernel/rcu/rcuscale.c
19025 F:      kernel/rcu/rcutorture.c
19026 F:      kernel/rcu/refscale.c
19027 F:      kernel/torture.c
19028
19029 TOSHIBA ACPI EXTRAS DRIVER
19030 M:      Azael Avalos <coproscefalo@gmail.com>
19031 L:      platform-driver-x86@vger.kernel.org
19032 S:      Maintained
19033 F:      drivers/platform/x86/toshiba_acpi.c
19034
19035 TOSHIBA BLUETOOTH DRIVER
19036 M:      Azael Avalos <coproscefalo@gmail.com>
19037 L:      platform-driver-x86@vger.kernel.org
19038 S:      Maintained
19039 F:      drivers/platform/x86/toshiba_bluetooth.c
19040
19041 TOSHIBA HDD ACTIVE PROTECTION SENSOR DRIVER
19042 M:      Azael Avalos <coproscefalo@gmail.com>
19043 L:      platform-driver-x86@vger.kernel.org
19044 S:      Maintained
19045 F:      drivers/platform/x86/toshiba_haps.c
19046
19047 TOSHIBA SMM DRIVER
19048 M:      Jonathan Buzzard <jonathan@buzzard.org.uk>
19049 S:      Maintained
19050 W:      http://www.buzzard.org.uk/toshiba/
19051 F:      drivers/char/toshiba.c
19052 F:      include/linux/toshiba.h
19053 F:      include/uapi/linux/toshiba.h
19054
19055 TOSHIBA TC358743 DRIVER
19056 M:      Mats Randgaard <matrandg@cisco.com>
19057 L:      linux-media@vger.kernel.org
19058 S:      Maintained
19059 F:      drivers/media/i2c/tc358743*
19060 F:      include/media/i2c/tc358743.h
19061
19062 TOSHIBA WMI HOTKEYS DRIVER
19063 M:      Azael Avalos <coproscefalo@gmail.com>
19064 L:      platform-driver-x86@vger.kernel.org
19065 S:      Maintained
19066 F:      drivers/platform/x86/toshiba-wmi.c
19067
19068 TPM DEVICE DRIVER
19069 M:      Peter Huewe <peterhuewe@gmx.de>
19070 M:      Jarkko Sakkinen <jarkko@kernel.org>
19071 R:      Jason Gunthorpe <jgg@ziepe.ca>
19072 L:      linux-integrity@vger.kernel.org
19073 S:      Maintained
19074 W:      https://kernsec.org/wiki/index.php/Linux_Kernel_Integrity
19075 Q:      https://patchwork.kernel.org/project/linux-integrity/list/
19076 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jarkko/linux-tpmdd.git
19077 F:      drivers/char/tpm/
19078
19079 TRACING
19080 M:      Steven Rostedt <rostedt@goodmis.org>
19081 M:      Ingo Molnar <mingo@redhat.com>
19082 S:      Maintained
19083 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git perf/core
19084 F:      Documentation/trace/ftrace.rst
19085 F:      arch/*/*/*/ftrace.h
19086 F:      arch/*/kernel/ftrace.c
19087 F:      fs/tracefs/
19088 F:      include/*/ftrace.h
19089 F:      include/linux/trace*.h
19090 F:      include/trace/
19091 F:      kernel/trace/
19092 F:      tools/testing/selftests/ftrace/
19093
19094 TRACING MMIO ACCESSES (MMIOTRACE)
19095 M:      Steven Rostedt <rostedt@goodmis.org>
19096 M:      Ingo Molnar <mingo@kernel.org>
19097 R:      Karol Herbst <karolherbst@gmail.com>
19098 R:      Pekka Paalanen <ppaalanen@gmail.com>
19099 L:      linux-kernel@vger.kernel.org
19100 L:      nouveau@lists.freedesktop.org
19101 S:      Maintained
19102 F:      arch/x86/mm/kmmio.c
19103 F:      arch/x86/mm/mmio-mod.c
19104 F:      arch/x86/mm/testmmiotrace.c
19105 F:      include/linux/mmiotrace.h
19106 F:      kernel/trace/trace_mmiotrace.c
19107
19108 TRACING OS NOISE / LATENCY TRACERS
19109 M:      Steven Rostedt <rostedt@goodmis.org>
19110 M:      Daniel Bristot de Oliveira <bristot@kernel.org>
19111 S:      Maintained
19112 F:      kernel/trace/trace_osnoise.c
19113 F:      include/trace/events/osnoise.h
19114 F:      kernel/trace/trace_hwlat.c
19115 F:      kernel/trace/trace_irqsoff.c
19116 F:      kernel/trace/trace_sched_wakeup.c
19117 F:      Documentation/trace/osnoise-tracer.rst
19118 F:      Documentation/trace/timerlat-tracer.rst
19119 F:      Documentation/trace/hwlat_detector.rst
19120 F:      arch/*/kernel/trace.c
19121
19122 TRADITIONAL CHINESE DOCUMENTATION
19123 M:      Hu Haowen <src.res@email.cn>
19124 L:      linux-doc-tw-discuss@lists.sourceforge.net
19125 S:      Maintained
19126 W:      https://github.com/srcres258/linux-doc
19127 T:      git git://github.com/srcres258/linux-doc.git doc-zh-tw
19128 F:      Documentation/translations/zh_TW/
19129
19130 TRIVIAL PATCHES
19131 M:      Jiri Kosina <trivial@kernel.org>
19132 S:      Maintained
19133 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/jikos/trivial.git
19134 K:      ^Subject:.*(?i)trivial
19135
19136 TTY LAYER
19137 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
19138 M:      Jiri Slaby <jirislaby@kernel.org>
19139 S:      Supported
19140 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty.git
19141 F:      Documentation/driver-api/serial/
19142 F:      drivers/tty/
19143 F:      drivers/tty/serial/serial_core.c
19144 F:      include/linux/selection.h
19145 F:      include/linux/serial.h
19146 F:      include/linux/serial_core.h
19147 F:      include/linux/sysrq.h
19148 F:      include/linux/tty*.h
19149 F:      include/linux/vt.h
19150 F:      include/linux/vt_*.h
19151 F:      include/uapi/linux/serial.h
19152 F:      include/uapi/linux/serial_core.h
19153 F:      include/uapi/linux/tty.h
19154
19155 TUA9001 MEDIA DRIVER
19156 M:      Antti Palosaari <crope@iki.fi>
19157 L:      linux-media@vger.kernel.org
19158 S:      Maintained
19159 W:      https://linuxtv.org
19160 W:      http://palosaari.fi/linux/
19161 Q:      http://patchwork.linuxtv.org/project/linux-media/list/
19162 T:      git git://linuxtv.org/anttip/media_tree.git
19163 F:      drivers/media/tuners/tua9001*
19164
19165 TULIP NETWORK DRIVERS
19166 L:      netdev@vger.kernel.org
19167 L:      linux-parisc@vger.kernel.org
19168 S:      Orphan
19169 F:      drivers/net/ethernet/dec/tulip/
19170
19171 TUN/TAP driver
19172 M:      Maxim Krasnyansky <maxk@qti.qualcomm.com>
19173 S:      Maintained
19174 W:      http://vtun.sourceforge.net/tun
19175 F:      Documentation/networking/tuntap.rst
19176 F:      arch/um/os-Linux/drivers/
19177
19178 TURBOCHANNEL SUBSYSTEM
19179 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
19180 M:      Ralf Baechle <ralf@linux-mips.org>
19181 L:      linux-mips@vger.kernel.org
19182 S:      Maintained
19183 Q:      http://patchwork.linux-mips.org/project/linux-mips/list/
19184 F:      drivers/tc/
19185 F:      include/linux/tc.h
19186
19187 TURBOSTAT UTILITY
19188 M:      "Len Brown" <lenb@kernel.org>
19189 L:      linux-pm@vger.kernel.org
19190 S:      Supported
19191 Q:      https://patchwork.kernel.org/project/linux-pm/list/
19192 B:      https://bugzilla.kernel.org
19193 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux.git turbostat
19194 F:      tools/power/x86/turbostat/
19195
19196 TW5864 VIDEO4LINUX DRIVER
19197 M:      Bluecherry Maintainers <maintainers@bluecherrydvr.com>
19198 M:      Anton Sviridenko <anton@corp.bluecherry.net>
19199 M:      Andrey Utkin <andrey.utkin@corp.bluecherry.net>
19200 M:      Andrey Utkin <andrey_utkin@fastmail.com>
19201 L:      linux-media@vger.kernel.org
19202 S:      Supported
19203 F:      drivers/media/pci/tw5864/
19204
19205 TW68 VIDEO4LINUX DRIVER
19206 M:      Hans Verkuil <hverkuil@xs4all.nl>
19207 L:      linux-media@vger.kernel.org
19208 S:      Odd Fixes
19209 W:      https://linuxtv.org
19210 T:      git git://linuxtv.org/media_tree.git
19211 F:      drivers/media/pci/tw68/
19212
19213 TW686X VIDEO4LINUX DRIVER
19214 M:      Ezequiel Garcia <ezequiel@vanguardiasur.com.ar>
19215 L:      linux-media@vger.kernel.org
19216 S:      Maintained
19217 W:      http://linuxtv.org
19218 T:      git git://linuxtv.org/media_tree.git
19219 F:      drivers/media/pci/tw686x/
19220
19221 UACCE ACCELERATOR FRAMEWORK
19222 M:      Zhangfei Gao <zhangfei.gao@linaro.org>
19223 M:      Zhou Wang <wangzhou1@hisilicon.com>
19224 L:      linux-accelerators@lists.ozlabs.org
19225 L:      linux-kernel@vger.kernel.org
19226 S:      Maintained
19227 F:      Documentation/ABI/testing/sysfs-driver-uacce
19228 F:      Documentation/misc-devices/uacce.rst
19229 F:      drivers/misc/uacce/
19230 F:      include/linux/uacce.h
19231 F:      include/uapi/misc/uacce/
19232
19233 UBI FILE SYSTEM (UBIFS)
19234 M:      Richard Weinberger <richard@nod.at>
19235 L:      linux-mtd@lists.infradead.org
19236 S:      Supported
19237 W:      http://www.linux-mtd.infradead.org/doc/ubifs.html
19238 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
19239 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
19240 F:      Documentation/filesystems/ubifs-authentication.rst
19241 F:      Documentation/filesystems/ubifs.rst
19242 F:      fs/ubifs/
19243
19244 UCLINUX (M68KNOMMU AND COLDFIRE)
19245 M:      Greg Ungerer <gerg@linux-m68k.org>
19246 L:      linux-m68k@lists.linux-m68k.org
19247 L:      uclinux-dev@uclinux.org  (subscribers-only)
19248 S:      Maintained
19249 W:      http://www.linux-m68k.org/
19250 W:      http://www.uclinux.org/
19251 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gerg/m68knommu.git
19252 F:      arch/m68k/*/*_no.*
19253 F:      arch/m68k/68*/
19254 F:      arch/m68k/coldfire/
19255 F:      arch/m68k/include/asm/*_no.*
19256
19257 UDF FILESYSTEM
19258 M:      Jan Kara <jack@suse.com>
19259 S:      Maintained
19260 F:      Documentation/filesystems/udf.rst
19261 F:      fs/udf/
19262
19263 UDRAW TABLET
19264 M:      Bastien Nocera <hadess@hadess.net>
19265 L:      linux-input@vger.kernel.org
19266 S:      Maintained
19267 F:      drivers/hid/hid-udraw-ps3.c
19268
19269 UFS FILESYSTEM
19270 M:      Evgeniy Dushistov <dushistov@mail.ru>
19271 S:      Maintained
19272 F:      Documentation/admin-guide/ufs.rst
19273 F:      fs/ufs/
19274
19275 UHID USERSPACE HID IO DRIVER
19276 M:      David Rheinsberg <david.rheinsberg@gmail.com>
19277 L:      linux-input@vger.kernel.org
19278 S:      Maintained
19279 F:      drivers/hid/uhid.c
19280 F:      include/uapi/linux/uhid.h
19281
19282 ULPI BUS
19283 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
19284 L:      linux-usb@vger.kernel.org
19285 S:      Maintained
19286 F:      drivers/usb/common/ulpi.c
19287 F:      include/linux/ulpi/
19288
19289 UNICODE SUBSYSTEM
19290 M:      Gabriel Krisman Bertazi <krisman@collabora.com>
19291 L:      linux-fsdevel@vger.kernel.org
19292 S:      Supported
19293 F:      fs/unicode/
19294
19295 UNIFDEF
19296 M:      Tony Finch <dot@dotat.at>
19297 S:      Maintained
19298 W:      http://dotat.at/prog/unifdef
19299 F:      scripts/unifdef.c
19300
19301 UNIFORM CDROM DRIVER
19302 M:      Phillip Potter <phil@philpotter.co.uk>
19303 S:      Maintained
19304 F:      Documentation/cdrom/
19305 F:      drivers/cdrom/cdrom.c
19306 F:      include/linux/cdrom.h
19307 F:      include/uapi/linux/cdrom.h
19308
19309 UNISYS S-PAR DRIVERS
19310 M:      David Kershner <david.kershner@unisys.com>
19311 L:      sparmaintainer@unisys.com (Unisys internal)
19312 S:      Supported
19313 F:      drivers/staging/unisys/
19314 F:      drivers/visorbus/
19315 F:      include/linux/visorbus.h
19316
19317 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER
19318 R:      Alim Akhtar <alim.akhtar@samsung.com>
19319 R:      Avri Altman <avri.altman@wdc.com>
19320 L:      linux-scsi@vger.kernel.org
19321 S:      Supported
19322 F:      Documentation/scsi/ufs.rst
19323 F:      drivers/scsi/ufs/
19324
19325 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER DWC HOOKS
19326 M:      Pedro Sousa <pedrom.sousa@synopsys.com>
19327 L:      linux-scsi@vger.kernel.org
19328 S:      Supported
19329 F:      drivers/scsi/ufs/*dwc*
19330
19331 UNIVERSAL FLASH STORAGE HOST CONTROLLER DRIVER MEDIATEK HOOKS
19332 M:      Stanley Chu <stanley.chu@mediatek.com>
19333 L:      linux-scsi@vger.kernel.org
19334 L:      linux-mediatek@lists.infradead.org (moderated for non-subscribers)
19335 S:      Maintained
19336 F:      drivers/scsi/ufs/ufs-mediatek*
19337
19338 UNSORTED BLOCK IMAGES (UBI)
19339 M:      Richard Weinberger <richard@nod.at>
19340 L:      linux-mtd@lists.infradead.org
19341 S:      Supported
19342 W:      http://www.linux-mtd.infradead.org/
19343 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git next
19344 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/ubifs.git fixes
19345 F:      drivers/mtd/ubi/
19346 F:      include/linux/mtd/ubi.h
19347 F:      include/uapi/mtd/ubi-user.h
19348
19349 USB "USBNET" DRIVER FRAMEWORK
19350 M:      Oliver Neukum <oneukum@suse.com>
19351 L:      netdev@vger.kernel.org
19352 S:      Maintained
19353 W:      http://www.linux-usb.org/usbnet
19354 F:      drivers/net/usb/usbnet.c
19355 F:      include/linux/usb/usbnet.h
19356
19357 USB ACM DRIVER
19358 M:      Oliver Neukum <oneukum@suse.com>
19359 L:      linux-usb@vger.kernel.org
19360 S:      Maintained
19361 F:      Documentation/usb/acm.rst
19362 F:      drivers/usb/class/cdc-acm.*
19363
19364 USB APPLE MFI FASTCHARGE DRIVER
19365 M:      Bastien Nocera <hadess@hadess.net>
19366 L:      linux-usb@vger.kernel.org
19367 S:      Maintained
19368 F:      drivers/usb/misc/apple-mfi-fastcharge.c
19369
19370 USB AR5523 WIRELESS DRIVER
19371 M:      Pontus Fuchs <pontus.fuchs@gmail.com>
19372 L:      linux-wireless@vger.kernel.org
19373 S:      Maintained
19374 F:      drivers/net/wireless/ath/ar5523/
19375
19376 USB ATTACHED SCSI
19377 M:      Oliver Neukum <oneukum@suse.com>
19378 L:      linux-usb@vger.kernel.org
19379 L:      linux-scsi@vger.kernel.org
19380 S:      Maintained
19381 F:      drivers/usb/storage/uas.c
19382
19383 USB CDC ETHERNET DRIVER
19384 M:      Oliver Neukum <oliver@neukum.org>
19385 L:      linux-usb@vger.kernel.org
19386 S:      Maintained
19387 F:      drivers/net/usb/cdc_*.c
19388 F:      include/uapi/linux/usb/cdc.h
19389
19390 USB CHAOSKEY DRIVER
19391 M:      Keith Packard <keithp@keithp.com>
19392 L:      linux-usb@vger.kernel.org
19393 S:      Maintained
19394 F:      drivers/usb/misc/chaoskey.c
19395
19396 USB CYPRESS C67X00 DRIVER
19397 L:      linux-usb@vger.kernel.org
19398 S:      Orphan
19399 F:      drivers/usb/c67x00/
19400
19401 USB DAVICOM DM9601 DRIVER
19402 M:      Peter Korsgaard <peter@korsgaard.com>
19403 L:      netdev@vger.kernel.org
19404 S:      Maintained
19405 W:      http://www.linux-usb.org/usbnet
19406 F:      drivers/net/usb/dm9601.c
19407
19408 USB EHCI DRIVER
19409 M:      Alan Stern <stern@rowland.harvard.edu>
19410 L:      linux-usb@vger.kernel.org
19411 S:      Maintained
19412 F:      Documentation/usb/ehci.rst
19413 F:      drivers/usb/host/ehci*
19414
19415 USB GADGET/PERIPHERAL SUBSYSTEM
19416 M:      Felipe Balbi <balbi@kernel.org>
19417 L:      linux-usb@vger.kernel.org
19418 S:      Maintained
19419 W:      http://www.linux-usb.org/gadget
19420 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
19421 F:      drivers/usb/gadget/
19422 F:      include/linux/usb/gadget*
19423
19424 USB HID/HIDBP DRIVERS (USB KEYBOARDS, MICE, REMOTE CONTROLS, ...)
19425 M:      Jiri Kosina <jikos@kernel.org>
19426 M:      Benjamin Tissoires <benjamin.tissoires@redhat.com>
19427 L:      linux-usb@vger.kernel.org
19428 S:      Maintained
19429 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/hid/hid.git
19430 F:      Documentation/hid/hiddev.rst
19431 F:      drivers/hid/usbhid/
19432
19433 USB INTEL XHCI ROLE MUX DRIVER
19434 M:      Hans de Goede <hdegoede@redhat.com>
19435 L:      linux-usb@vger.kernel.org
19436 S:      Maintained
19437 F:      drivers/usb/roles/intel-xhci-usb-role-switch.c
19438
19439 USB IP DRIVER FOR HISILICON KIRIN 960
19440 M:      Yu Chen <chenyu56@huawei.com>
19441 M:      Binghui Wang <wangbinghui@hisilicon.com>
19442 L:      linux-usb@vger.kernel.org
19443 S:      Maintained
19444 F:      Documentation/devicetree/bindings/phy/hisilicon,hi3660-usb3.yaml
19445 F:      drivers/phy/hisilicon/phy-hi3660-usb3.c
19446
19447 USB IP DRIVER FOR HISILICON KIRIN 970
19448 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
19449 L:      linux-usb@vger.kernel.org
19450 S:      Maintained
19451 F:      Documentation/devicetree/bindings/phy/hisilicon,hi3670-usb3.yaml
19452 F:      drivers/phy/hisilicon/phy-hi3670-usb3.c
19453
19454 USB ISP116X DRIVER
19455 M:      Olav Kongas <ok@artecdesign.ee>
19456 L:      linux-usb@vger.kernel.org
19457 S:      Maintained
19458 F:      drivers/usb/host/isp116x*
19459 F:      include/linux/usb/isp116x.h
19460
19461 USB ISP1760 DRIVER
19462 M:      Rui Miguel Silva <rui.silva@linaro.org>
19463 L:      linux-usb@vger.kernel.org
19464 S:      Maintained
19465 F:      drivers/usb/isp1760/*
19466 F:      Documentation/devicetree/bindings/usb/nxp,isp1760.yaml
19467
19468 USB LAN78XX ETHERNET DRIVER
19469 M:      Woojung Huh <woojung.huh@microchip.com>
19470 M:      UNGLinuxDriver@microchip.com
19471 L:      netdev@vger.kernel.org
19472 S:      Maintained
19473 F:      Documentation/devicetree/bindings/net/microchip,lan78xx.txt
19474 F:      drivers/net/usb/lan78xx.*
19475 F:      include/dt-bindings/net/microchip-lan78xx.h
19476
19477 USB MASS STORAGE DRIVER
19478 M:      Alan Stern <stern@rowland.harvard.edu>
19479 L:      linux-usb@vger.kernel.org
19480 L:      usb-storage@lists.one-eyed-alien.net
19481 S:      Maintained
19482 F:      drivers/usb/storage/
19483
19484 USB MIDI DRIVER
19485 M:      Clemens Ladisch <clemens@ladisch.de>
19486 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
19487 S:      Maintained
19488 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound.git
19489 F:      sound/usb/midi.*
19490
19491 USB NETWORKING DRIVERS
19492 L:      linux-usb@vger.kernel.org
19493 S:      Odd Fixes
19494 F:      drivers/net/usb/
19495
19496 USB OHCI DRIVER
19497 M:      Alan Stern <stern@rowland.harvard.edu>
19498 L:      linux-usb@vger.kernel.org
19499 S:      Maintained
19500 F:      Documentation/usb/ohci.rst
19501 F:      drivers/usb/host/ohci*
19502
19503 USB OTG FSM (Finite State Machine)
19504 M:      Peter Chen <peter.chen@kernel.org>
19505 L:      linux-usb@vger.kernel.org
19506 S:      Maintained
19507 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/peter.chen/usb.git
19508 F:      drivers/usb/common/usb-otg-fsm.c
19509
19510 USB OVER IP DRIVER
19511 M:      Valentina Manea <valentina.manea.m@gmail.com>
19512 M:      Shuah Khan <shuah@kernel.org>
19513 M:      Shuah Khan <skhan@linuxfoundation.org>
19514 L:      linux-usb@vger.kernel.org
19515 S:      Maintained
19516 F:      Documentation/usb/usbip_protocol.rst
19517 F:      drivers/usb/usbip/
19518 F:      tools/testing/selftests/drivers/usb/usbip/
19519 F:      tools/usb/usbip/
19520
19521 USB PEGASUS DRIVER
19522 M:      Petko Manolov <petkan@nucleusys.com>
19523 L:      linux-usb@vger.kernel.org
19524 L:      netdev@vger.kernel.org
19525 S:      Maintained
19526 W:      https://github.com/petkan/pegasus
19527 T:      git git://github.com/petkan/pegasus.git
19528 F:      drivers/net/usb/pegasus.*
19529
19530 USB PHY LAYER
19531 M:      Felipe Balbi <balbi@kernel.org>
19532 L:      linux-usb@vger.kernel.org
19533 S:      Maintained
19534 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/balbi/usb.git
19535 F:      drivers/usb/phy/
19536
19537 USB PRINTER DRIVER (usblp)
19538 M:      Pete Zaitcev <zaitcev@redhat.com>
19539 L:      linux-usb@vger.kernel.org
19540 S:      Supported
19541 F:      drivers/usb/class/usblp.c
19542
19543 USB RAW GADGET DRIVER
19544 R:      Andrey Konovalov <andreyknvl@gmail.com>
19545 L:      linux-usb@vger.kernel.org
19546 S:      Maintained
19547 F:      Documentation/usb/raw-gadget.rst
19548 F:      drivers/usb/gadget/legacy/raw_gadget.c
19549 F:      include/uapi/linux/usb/raw_gadget.h
19550
19551 USB QMI WWAN NETWORK DRIVER
19552 M:      Bjørn Mork <bjorn@mork.no>
19553 L:      netdev@vger.kernel.org
19554 S:      Maintained
19555 F:      Documentation/ABI/testing/sysfs-class-net-qmi
19556 F:      drivers/net/usb/qmi_wwan.c
19557
19558 USB RTL8150 DRIVER
19559 M:      Petko Manolov <petkan@nucleusys.com>
19560 L:      linux-usb@vger.kernel.org
19561 L:      netdev@vger.kernel.org
19562 S:      Maintained
19563 W:      https://github.com/petkan/rtl8150
19564 T:      git git://github.com/petkan/rtl8150.git
19565 F:      drivers/net/usb/rtl8150.c
19566
19567 USB SERIAL SUBSYSTEM
19568 M:      Johan Hovold <johan@kernel.org>
19569 L:      linux-usb@vger.kernel.org
19570 S:      Maintained
19571 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/johan/usb-serial.git
19572 F:      Documentation/usb/usb-serial.rst
19573 F:      drivers/usb/serial/
19574 F:      include/linux/usb/serial.h
19575
19576 USB SMSC75XX ETHERNET DRIVER
19577 M:      Steve Glendinning <steve.glendinning@shawell.net>
19578 L:      netdev@vger.kernel.org
19579 S:      Maintained
19580 F:      drivers/net/usb/smsc75xx.*
19581
19582 USB SMSC95XX ETHERNET DRIVER
19583 M:      Steve Glendinning <steve.glendinning@shawell.net>
19584 M:      UNGLinuxDriver@microchip.com
19585 L:      netdev@vger.kernel.org
19586 S:      Maintained
19587 F:      drivers/net/usb/smsc95xx.*
19588
19589 USB SUBSYSTEM
19590 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
19591 L:      linux-usb@vger.kernel.org
19592 S:      Supported
19593 W:      http://www.linux-usb.org
19594 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git
19595 F:      Documentation/devicetree/bindings/usb/
19596 F:      Documentation/usb/
19597 F:      drivers/usb/
19598 F:      include/linux/usb.h
19599 F:      include/linux/usb/
19600
19601 USB TYPEC BUS FOR ALTERNATE MODES
19602 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
19603 L:      linux-usb@vger.kernel.org
19604 S:      Maintained
19605 F:      Documentation/ABI/testing/sysfs-bus-typec
19606 F:      Documentation/driver-api/usb/typec_bus.rst
19607 F:      drivers/usb/typec/altmodes/
19608 F:      include/linux/usb/typec_altmode.h
19609
19610 USB TYPEC CLASS
19611 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
19612 L:      linux-usb@vger.kernel.org
19613 S:      Maintained
19614 F:      Documentation/ABI/testing/sysfs-class-typec
19615 F:      Documentation/driver-api/usb/typec.rst
19616 F:      drivers/usb/typec/
19617 F:      include/linux/usb/typec.h
19618
19619 USB TYPEC INTEL PMC MUX DRIVER
19620 M:      Heikki Krogerus <heikki.krogerus@linux.intel.com>
19621 L:      linux-usb@vger.kernel.org
19622 S:      Maintained
19623 F:      Documentation/firmware-guide/acpi/intel-pmc-mux.rst
19624 F:      drivers/usb/typec/mux/intel_pmc_mux.c
19625
19626 USB TYPEC PI3USB30532 MUX DRIVER
19627 M:      Hans de Goede <hdegoede@redhat.com>
19628 L:      linux-usb@vger.kernel.org
19629 S:      Maintained
19630 F:      drivers/usb/typec/mux/pi3usb30532.c
19631
19632 USB TYPEC PORT CONTROLLER DRIVERS
19633 M:      Guenter Roeck <linux@roeck-us.net>
19634 L:      linux-usb@vger.kernel.org
19635 S:      Maintained
19636 F:      drivers/usb/typec/tcpm/
19637
19638 USB UHCI DRIVER
19639 M:      Alan Stern <stern@rowland.harvard.edu>
19640 L:      linux-usb@vger.kernel.org
19641 S:      Maintained
19642 F:      drivers/usb/host/uhci*
19643
19644 USB VIDEO CLASS
19645 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
19646 L:      linux-uvc-devel@lists.sourceforge.net (subscribers-only)
19647 L:      linux-media@vger.kernel.org
19648 S:      Maintained
19649 W:      http://www.ideasonboard.org/uvc/
19650 T:      git git://linuxtv.org/media_tree.git
19651 F:      drivers/media/usb/uvc/
19652 F:      include/uapi/linux/uvcvideo.h
19653
19654 USB WEBCAM GADGET
19655 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
19656 L:      linux-usb@vger.kernel.org
19657 S:      Maintained
19658 F:      drivers/usb/gadget/function/*uvc*
19659 F:      drivers/usb/gadget/legacy/webcam.c
19660 F:      include/uapi/linux/usb/g_uvc.h
19661
19662 USB WIRELESS RNDIS DRIVER (rndis_wlan)
19663 M:      Jussi Kivilinna <jussi.kivilinna@iki.fi>
19664 L:      linux-wireless@vger.kernel.org
19665 S:      Maintained
19666 F:      drivers/net/wireless/rndis_wlan.c
19667
19668 USB XHCI DRIVER
19669 M:      Mathias Nyman <mathias.nyman@intel.com>
19670 L:      linux-usb@vger.kernel.org
19671 S:      Supported
19672 F:      drivers/usb/host/pci-quirks*
19673 F:      drivers/usb/host/xhci*
19674
19675 USB ZD1201 DRIVER
19676 L:      linux-wireless@vger.kernel.org
19677 S:      Orphan
19678 W:      http://linux-lc100020.sourceforge.net
19679 F:      drivers/net/wireless/zydas/zd1201.*
19680
19681 USB ZR364XX DRIVER
19682 M:      Antoine Jacquet <royale@zerezo.com>
19683 L:      linux-usb@vger.kernel.org
19684 L:      linux-media@vger.kernel.org
19685 S:      Maintained
19686 W:      http://royale.zerezo.com/zr364xx/
19687 T:      git git://linuxtv.org/media_tree.git
19688 F:      Documentation/admin-guide/media/zr364xx*
19689 F:      drivers/media/usb/zr364xx/
19690
19691 USER-MODE LINUX (UML)
19692 M:      Jeff Dike <jdike@addtoit.com>
19693 M:      Richard Weinberger <richard@nod.at>
19694 M:      Anton Ivanov <anton.ivanov@cambridgegreys.com>
19695 L:      linux-um@lists.infradead.org
19696 S:      Maintained
19697 W:      http://user-mode-linux.sourceforge.net
19698 Q:      https://patchwork.ozlabs.org/project/linux-um/list/
19699 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/rw/uml.git
19700 F:      Documentation/virt/uml/
19701 F:      arch/um/
19702 F:      arch/x86/um/
19703 F:      fs/hostfs/
19704
19705 USERSPACE COPYIN/COPYOUT (UIOVEC)
19706 M:      Alexander Viro <viro@zeniv.linux.org.uk>
19707 S:      Maintained
19708 F:      include/linux/uio.h
19709 F:      lib/iov_iter.c
19710
19711 USERSPACE DMA BUFFER DRIVER
19712 M:      Gerd Hoffmann <kraxel@redhat.com>
19713 L:      dri-devel@lists.freedesktop.org
19714 S:      Maintained
19715 T:      git git://anongit.freedesktop.org/drm/drm-misc
19716 F:      drivers/dma-buf/udmabuf.c
19717 F:      include/uapi/linux/udmabuf.h
19718
19719 USERSPACE I/O (UIO)
19720 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
19721 S:      Maintained
19722 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
19723 F:      Documentation/driver-api/uio-howto.rst
19724 F:      drivers/uio/
19725 F:      include/linux/uio_driver.h
19726
19727 UTIL-LINUX PACKAGE
19728 M:      Karel Zak <kzak@redhat.com>
19729 L:      util-linux@vger.kernel.org
19730 S:      Maintained
19731 W:      http://en.wikipedia.org/wiki/Util-linux
19732 T:      git git://git.kernel.org/pub/scm/utils/util-linux/util-linux.git
19733
19734 UUID HELPERS
19735 M:      Christoph Hellwig <hch@lst.de>
19736 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
19737 L:      linux-kernel@vger.kernel.org
19738 S:      Maintained
19739 T:      git git://git.infradead.org/users/hch/uuid.git
19740 F:      include/linux/uuid.h
19741 F:      include/uapi/linux/uuid.h
19742 F:      lib/test_uuid.c
19743 F:      lib/uuid.c
19744
19745 UV SYSFS DRIVER
19746 M:      Justin Ernst <justin.ernst@hpe.com>
19747 L:      platform-driver-x86@vger.kernel.org
19748 S:      Maintained
19749 F:      drivers/platform/x86/uv_sysfs.c
19750
19751 UVESAFB DRIVER
19752 M:      Michal Januszewski <spock@gentoo.org>
19753 L:      linux-fbdev@vger.kernel.org
19754 S:      Maintained
19755 W:      https://github.com/mjanusz/v86d
19756 F:      Documentation/fb/uvesafb.rst
19757 F:      drivers/video/fbdev/uvesafb.*
19758
19759 Ux500 CLOCK DRIVERS
19760 M:      Ulf Hansson <ulf.hansson@linaro.org>
19761 L:      linux-clk@vger.kernel.org
19762 L:      linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
19763 S:      Maintained
19764 F:      drivers/clk/ux500/
19765
19766 VF610 NAND DRIVER
19767 M:      Stefan Agner <stefan@agner.ch>
19768 L:      linux-mtd@lists.infradead.org
19769 S:      Supported
19770 F:      drivers/mtd/nand/raw/vf610_nfc.c
19771
19772 VFAT/FAT/MSDOS FILESYSTEM
19773 M:      OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>
19774 S:      Maintained
19775 F:      Documentation/filesystems/vfat.rst
19776 F:      fs/fat/
19777
19778 VFIO DRIVER
19779 M:      Alex Williamson <alex.williamson@redhat.com>
19780 R:      Cornelia Huck <cohuck@redhat.com>
19781 L:      kvm@vger.kernel.org
19782 S:      Maintained
19783 T:      git git://github.com/awilliam/linux-vfio.git
19784 F:      Documentation/driver-api/vfio.rst
19785 F:      drivers/vfio/
19786 F:      include/linux/vfio.h
19787 F:      include/linux/vfio_pci_core.h
19788 F:      include/uapi/linux/vfio.h
19789
19790 VFIO FSL-MC DRIVER
19791 M:      Diana Craciun <diana.craciun@oss.nxp.com>
19792 L:      kvm@vger.kernel.org
19793 S:      Maintained
19794 F:      drivers/vfio/fsl-mc/
19795
19796 VFIO MEDIATED DEVICE DRIVERS
19797 M:      Kirti Wankhede <kwankhede@nvidia.com>
19798 L:      kvm@vger.kernel.org
19799 S:      Maintained
19800 F:      Documentation/driver-api/vfio-mediated-device.rst
19801 F:      drivers/vfio/mdev/
19802 F:      include/linux/mdev.h
19803 F:      samples/vfio-mdev/
19804
19805 VFIO PLATFORM DRIVER
19806 M:      Eric Auger <eric.auger@redhat.com>
19807 L:      kvm@vger.kernel.org
19808 S:      Maintained
19809 F:      drivers/vfio/platform/
19810
19811 VGA_SWITCHEROO
19812 R:      Lukas Wunner <lukas@wunner.de>
19813 S:      Maintained
19814 T:      git git://anongit.freedesktop.org/drm/drm-misc
19815 F:      Documentation/gpu/vga-switcheroo.rst
19816 F:      drivers/gpu/vga/vga_switcheroo.c
19817 F:      include/linux/vga_switcheroo.h
19818
19819 VIA RHINE NETWORK DRIVER
19820 S:      Maintained
19821 M:      Kevin Brace <kevinbrace@bracecomputerlab.com>
19822 F:      drivers/net/ethernet/via/via-rhine.c
19823
19824 VIA SD/MMC CARD CONTROLLER DRIVER
19825 M:      Bruce Chang <brucechang@via.com.tw>
19826 M:      Harald Welte <HaraldWelte@viatech.com>
19827 S:      Maintained
19828 F:      drivers/mmc/host/via-sdmmc.c
19829
19830 VIA UNICHROME(PRO)/CHROME9 FRAMEBUFFER DRIVER
19831 M:      Florian Tobias Schandinat <FlorianSchandinat@gmx.de>
19832 L:      linux-fbdev@vger.kernel.org
19833 S:      Maintained
19834 F:      drivers/video/fbdev/via/
19835 F:      include/linux/via-core.h
19836 F:      include/linux/via-gpio.h
19837 F:      include/linux/via_i2c.h
19838
19839 VIA VELOCITY NETWORK DRIVER
19840 M:      Francois Romieu <romieu@fr.zoreil.com>
19841 L:      netdev@vger.kernel.org
19842 S:      Maintained
19843 F:      drivers/net/ethernet/via/via-velocity.*
19844
19845 VICODEC VIRTUAL CODEC DRIVER
19846 M:      Hans Verkuil <hverkuil-cisco@xs4all.nl>
19847 L:      linux-media@vger.kernel.org
19848 S:      Maintained
19849 W:      https://linuxtv.org
19850 T:      git git://linuxtv.org/media_tree.git
19851 F:      drivers/media/test-drivers/vicodec/*
19852
19853 VIDEO I2C POLLING DRIVER
19854 M:      Matt Ranostay <matt.ranostay@konsulko.com>
19855 L:      linux-media@vger.kernel.org
19856 S:      Maintained
19857 F:      drivers/media/i2c/video-i2c.c
19858
19859 VIDEO MULTIPLEXER DRIVER
19860 M:      Philipp Zabel <p.zabel@pengutronix.de>
19861 L:      linux-media@vger.kernel.org
19862 S:      Maintained
19863 F:      drivers/media/platform/video-mux.c
19864
19865 VIDEOBUF2 FRAMEWORK
19866 M:      Tomasz Figa <tfiga@chromium.org>
19867 M:      Marek Szyprowski <m.szyprowski@samsung.com>
19868 L:      linux-media@vger.kernel.org
19869 S:      Maintained
19870 F:      drivers/media/common/videobuf2/*
19871 F:      include/media/videobuf2-*
19872
19873 VIMC VIRTUAL MEDIA CONTROLLER DRIVER
19874 M:      Helen Koike <helen.koike@collabora.com>
19875 R:      Shuah Khan <skhan@linuxfoundation.org>
19876 L:      linux-media@vger.kernel.org
19877 S:      Maintained
19878 W:      https://linuxtv.org
19879 T:      git git://linuxtv.org/media_tree.git
19880 F:      drivers/media/test-drivers/vimc/*
19881
19882 VIRT LIB
19883 M:      Alex Williamson <alex.williamson@redhat.com>
19884 M:      Paolo Bonzini <pbonzini@redhat.com>
19885 L:      kvm@vger.kernel.org
19886 S:      Supported
19887 F:      virt/lib/
19888
19889 VIRTIO AND VHOST VSOCK DRIVER
19890 M:      Stefan Hajnoczi <stefanha@redhat.com>
19891 M:      Stefano Garzarella <sgarzare@redhat.com>
19892 L:      kvm@vger.kernel.org
19893 L:      virtualization@lists.linux-foundation.org
19894 L:      netdev@vger.kernel.org
19895 S:      Maintained
19896 F:      drivers/vhost/vsock.c
19897 F:      include/linux/virtio_vsock.h
19898 F:      include/uapi/linux/virtio_vsock.h
19899 F:      net/vmw_vsock/virtio_transport.c
19900 F:      net/vmw_vsock/virtio_transport_common.c
19901
19902 VIRTIO BLOCK AND SCSI DRIVERS
19903 M:      "Michael S. Tsirkin" <mst@redhat.com>
19904 M:      Jason Wang <jasowang@redhat.com>
19905 R:      Paolo Bonzini <pbonzini@redhat.com>
19906 R:      Stefan Hajnoczi <stefanha@redhat.com>
19907 L:      virtualization@lists.linux-foundation.org
19908 S:      Maintained
19909 F:      drivers/block/virtio_blk.c
19910 F:      drivers/scsi/virtio_scsi.c
19911 F:      drivers/vhost/scsi.c
19912 F:      include/uapi/linux/virtio_blk.h
19913 F:      include/uapi/linux/virtio_scsi.h
19914
19915 VIRTIO CONSOLE DRIVER
19916 M:      Amit Shah <amit@kernel.org>
19917 L:      virtualization@lists.linux-foundation.org
19918 S:      Maintained
19919 F:      drivers/char/virtio_console.c
19920 F:      include/linux/virtio_console.h
19921 F:      include/uapi/linux/virtio_console.h
19922
19923 VIRTIO CORE AND NET DRIVERS
19924 M:      "Michael S. Tsirkin" <mst@redhat.com>
19925 M:      Jason Wang <jasowang@redhat.com>
19926 L:      virtualization@lists.linux-foundation.org
19927 S:      Maintained
19928 F:      Documentation/devicetree/bindings/virtio/
19929 F:      drivers/block/virtio_blk.c
19930 F:      drivers/crypto/virtio/
19931 F:      drivers/net/virtio_net.c
19932 F:      drivers/vdpa/
19933 F:      drivers/virtio/
19934 F:      include/linux/vdpa.h
19935 F:      include/linux/virtio*.h
19936 F:      include/uapi/linux/virtio_*.h
19937 F:      tools/virtio/
19938
19939 VIRTIO BALLOON
19940 M:      "Michael S. Tsirkin" <mst@redhat.com>
19941 M:      David Hildenbrand <david@redhat.com>
19942 L:      virtualization@lists.linux-foundation.org
19943 S:      Maintained
19944 F:      drivers/virtio/virtio_balloon.c
19945 F:      include/uapi/linux/virtio_balloon.h
19946 F:      include/linux/balloon_compaction.h
19947 F:      mm/balloon_compaction.c
19948
19949 VIRTIO CRYPTO DRIVER
19950 M:      Gonglei <arei.gonglei@huawei.com>
19951 L:      virtualization@lists.linux-foundation.org
19952 L:      linux-crypto@vger.kernel.org
19953 S:      Maintained
19954 F:      drivers/crypto/virtio/
19955 F:      include/uapi/linux/virtio_crypto.h
19956
19957 VIRTIO DRIVERS FOR S390
19958 M:      Cornelia Huck <cohuck@redhat.com>
19959 M:      Halil Pasic <pasic@linux.ibm.com>
19960 L:      linux-s390@vger.kernel.org
19961 L:      virtualization@lists.linux-foundation.org
19962 L:      kvm@vger.kernel.org
19963 S:      Supported
19964 F:      arch/s390/include/uapi/asm/virtio-ccw.h
19965 F:      drivers/s390/virtio/
19966
19967 VIRTIO FILE SYSTEM
19968 M:      Vivek Goyal <vgoyal@redhat.com>
19969 M:      Stefan Hajnoczi <stefanha@redhat.com>
19970 M:      Miklos Szeredi <miklos@szeredi.hu>
19971 L:      virtualization@lists.linux-foundation.org
19972 L:      linux-fsdevel@vger.kernel.org
19973 S:      Supported
19974 W:      https://virtio-fs.gitlab.io/
19975 F:      Documentation/filesystems/virtiofs.rst
19976 F:      fs/fuse/virtio_fs.c
19977 F:      include/uapi/linux/virtio_fs.h
19978
19979 VIRTIO GPIO DRIVER
19980 M:      Enrico Weigelt, metux IT consult <info@metux.net>
19981 M:      Viresh Kumar <vireshk@kernel.org>
19982 L:      linux-gpio@vger.kernel.org
19983 L:      virtualization@lists.linux-foundation.org
19984 S:      Maintained
19985 F:      drivers/gpio/gpio-virtio.c
19986 F:      include/uapi/linux/virtio_gpio.h
19987
19988 VIRTIO GPU DRIVER
19989 M:      David Airlie <airlied@linux.ie>
19990 M:      Gerd Hoffmann <kraxel@redhat.com>
19991 L:      dri-devel@lists.freedesktop.org
19992 L:      virtualization@lists.linux-foundation.org
19993 S:      Maintained
19994 T:      git git://anongit.freedesktop.org/drm/drm-misc
19995 F:      drivers/gpu/drm/virtio/
19996 F:      include/uapi/linux/virtio_gpu.h
19997
19998 VIRTIO HOST (VHOST)
19999 M:      "Michael S. Tsirkin" <mst@redhat.com>
20000 M:      Jason Wang <jasowang@redhat.com>
20001 L:      kvm@vger.kernel.org
20002 L:      virtualization@lists.linux-foundation.org
20003 L:      netdev@vger.kernel.org
20004 S:      Maintained
20005 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost.git
20006 F:      drivers/vhost/
20007 F:      include/linux/vhost_iotlb.h
20008 F:      include/uapi/linux/vhost.h
20009
20010 VIRTIO INPUT DRIVER
20011 M:      Gerd Hoffmann <kraxel@redhat.com>
20012 S:      Maintained
20013 F:      drivers/virtio/virtio_input.c
20014 F:      include/uapi/linux/virtio_input.h
20015
20016 VIRTIO IOMMU DRIVER
20017 M:      Jean-Philippe Brucker <jean-philippe@linaro.org>
20018 L:      virtualization@lists.linux-foundation.org
20019 S:      Maintained
20020 F:      drivers/iommu/virtio-iommu.c
20021 F:      include/uapi/linux/virtio_iommu.h
20022
20023 VIRTIO MEM DRIVER
20024 M:      David Hildenbrand <david@redhat.com>
20025 L:      virtualization@lists.linux-foundation.org
20026 S:      Maintained
20027 W:      https://virtio-mem.gitlab.io/
20028 F:      drivers/virtio/virtio_mem.c
20029 F:      include/uapi/linux/virtio_mem.h
20030
20031 VIRTIO SOUND DRIVER
20032 M:      Anton Yakovlev <anton.yakovlev@opensynergy.com>
20033 M:      "Michael S. Tsirkin" <mst@redhat.com>
20034 L:      virtualization@lists.linux-foundation.org
20035 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
20036 S:      Maintained
20037 F:      include/uapi/linux/virtio_snd.h
20038 F:      sound/virtio/*
20039
20040 VIRTIO I2C DRIVER
20041 M:      Jie Deng <jie.deng@intel.com>
20042 M:      Viresh Kumar <viresh.kumar@linaro.org>
20043 L:      linux-i2c@vger.kernel.org
20044 L:      virtualization@lists.linux-foundation.org
20045 S:      Maintained
20046 F:      drivers/i2c/busses/i2c-virtio.c
20047 F:      include/uapi/linux/virtio_i2c.h
20048
20049 VIRTUAL BOX GUEST DEVICE DRIVER
20050 M:      Hans de Goede <hdegoede@redhat.com>
20051 M:      Arnd Bergmann <arnd@arndb.de>
20052 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
20053 S:      Maintained
20054 F:      drivers/virt/vboxguest/
20055 F:      include/linux/vbox_utils.h
20056 F:      include/uapi/linux/vbox*.h
20057
20058 VIRTUAL BOX SHARED FOLDER VFS DRIVER
20059 M:      Hans de Goede <hdegoede@redhat.com>
20060 L:      linux-fsdevel@vger.kernel.org
20061 S:      Maintained
20062 F:      fs/vboxsf/*
20063
20064 VIRTUAL SERIO DEVICE DRIVER
20065 M:      Stephen Chandler Paul <thatslyude@gmail.com>
20066 S:      Maintained
20067 F:      drivers/input/serio/userio.c
20068 F:      include/uapi/linux/userio.h
20069
20070 VIVID VIRTUAL VIDEO DRIVER
20071 M:      Hans Verkuil <hverkuil@xs4all.nl>
20072 L:      linux-media@vger.kernel.org
20073 S:      Maintained
20074 W:      https://linuxtv.org
20075 T:      git git://linuxtv.org/media_tree.git
20076 F:      drivers/media/test-drivers/vivid/*
20077
20078 VIDTV VIRTUAL DIGITAL TV DRIVER
20079 M:      Daniel W. S. Almeida <dwlsalmeida@gmail.com>
20080 L:      linux-media@vger.kernel.org
20081 S:      Maintained
20082 W:      https://linuxtv.org
20083 T:      git git://linuxtv.org/media_tree.git
20084 F:      drivers/media/test-drivers/vidtv/*
20085
20086 VLYNQ BUS
20087 M:      Florian Fainelli <f.fainelli@gmail.com>
20088 L:      openwrt-devel@lists.openwrt.org (subscribers-only)
20089 S:      Maintained
20090 F:      drivers/vlynq/vlynq.c
20091 F:      include/linux/vlynq.h
20092
20093 VME SUBSYSTEM
20094 M:      Martyn Welch <martyn@welchs.me.uk>
20095 M:      Manohar Vanga <manohar.vanga@gmail.com>
20096 M:      Greg Kroah-Hartman <gregkh@linuxfoundation.org>
20097 L:      linux-kernel@vger.kernel.org
20098 S:      Maintained
20099 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc.git
20100 F:      Documentation/driver-api/vme.rst
20101 F:      drivers/staging/vme/
20102 F:      drivers/vme/
20103 F:      include/linux/vme*
20104
20105 VM SOCKETS (AF_VSOCK)
20106 M:      Stefano Garzarella <sgarzare@redhat.com>
20107 L:      virtualization@lists.linux-foundation.org
20108 L:      netdev@vger.kernel.org
20109 S:      Maintained
20110 F:      drivers/net/vsockmon.c
20111 F:      include/net/af_vsock.h
20112 F:      include/uapi/linux/vm_sockets.h
20113 F:      include/uapi/linux/vm_sockets_diag.h
20114 F:      include/uapi/linux/vsockmon.h
20115 F:      net/vmw_vsock/
20116 F:      tools/testing/vsock/
20117
20118 VMWARE BALLOON DRIVER
20119 M:      Nadav Amit <namit@vmware.com>
20120 M:      "VMware, Inc." <pv-drivers@vmware.com>
20121 L:      linux-kernel@vger.kernel.org
20122 S:      Maintained
20123 F:      drivers/misc/vmw_balloon.c
20124
20125 VMWARE HYPERVISOR INTERFACE
20126 M:      Deep Shah <sdeep@vmware.com>
20127 M:      "VMware, Inc." <pv-drivers@vmware.com>
20128 L:      virtualization@lists.linux-foundation.org
20129 S:      Supported
20130 F:      arch/x86/include/asm/vmware.h
20131 F:      arch/x86/kernel/cpu/vmware.c
20132
20133 VMWARE PVRDMA DRIVER
20134 M:      Adit Ranadive <aditr@vmware.com>
20135 M:      VMware PV-Drivers <pv-drivers@vmware.com>
20136 L:      linux-rdma@vger.kernel.org
20137 S:      Maintained
20138 F:      drivers/infiniband/hw/vmw_pvrdma/
20139
20140 VMware PVSCSI driver
20141 M:      Vishal Bhakta <vbhakta@vmware.com>
20142 M:      VMware PV-Drivers <pv-drivers@vmware.com>
20143 L:      linux-scsi@vger.kernel.org
20144 S:      Maintained
20145 F:      drivers/scsi/vmw_pvscsi.c
20146 F:      drivers/scsi/vmw_pvscsi.h
20147
20148 VMWARE VIRTUAL PTP CLOCK DRIVER
20149 M:      Vivek Thampi <vithampi@vmware.com>
20150 M:      "VMware, Inc." <pv-drivers@vmware.com>
20151 L:      netdev@vger.kernel.org
20152 S:      Supported
20153 F:      drivers/ptp/ptp_vmw.c
20154
20155 VMWARE VMCI DRIVER
20156 M:      Jorgen Hansen <jhansen@vmware.com>
20157 M:      Vishnu Dasa <vdasa@vmware.com>
20158 L:      linux-kernel@vger.kernel.org
20159 L:      pv-drivers@vmware.com (private)
20160 S:      Maintained
20161 F:      drivers/misc/vmw_vmci/
20162
20163 VMWARE VMMOUSE SUBDRIVER
20164 M:      "VMware Graphics" <linux-graphics-maintainer@vmware.com>
20165 M:      "VMware, Inc." <pv-drivers@vmware.com>
20166 L:      linux-input@vger.kernel.org
20167 S:      Maintained
20168 F:      drivers/input/mouse/vmmouse.c
20169 F:      drivers/input/mouse/vmmouse.h
20170
20171 VMWARE VMXNET3 ETHERNET DRIVER
20172 M:      Ronak Doshi <doshir@vmware.com>
20173 M:      pv-drivers@vmware.com
20174 L:      netdev@vger.kernel.org
20175 S:      Maintained
20176 F:      drivers/net/vmxnet3/
20177
20178 VOCORE VOCORE2 BOARD
20179 M:      Harvey Hunt <harveyhuntnexus@gmail.com>
20180 L:      linux-mips@vger.kernel.org
20181 S:      Maintained
20182 F:      arch/mips/boot/dts/ralink/vocore2.dts
20183
20184 VOLTAGE AND CURRENT REGULATOR FRAMEWORK
20185 M:      Liam Girdwood <lgirdwood@gmail.com>
20186 M:      Mark Brown <broonie@kernel.org>
20187 L:      linux-kernel@vger.kernel.org
20188 S:      Supported
20189 W:      http://www.slimlogic.co.uk/?p=48
20190 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator.git
20191 F:      Documentation/devicetree/bindings/regulator/
20192 F:      Documentation/power/regulator/
20193 F:      drivers/regulator/
20194 F:      include/dt-bindings/regulator/
20195 F:      include/linux/regulator/
20196 K:      regulator_get_optional
20197
20198 VOLTAGE AND CURRENT REGULATOR IRQ HELPERS
20199 R:      Matti Vaittinen <matti.vaittinen@fi.rohmeurope.com>
20200 F:      drivers/regulator/irq_helpers.c
20201
20202 VRF
20203 M:      David Ahern <dsahern@kernel.org>
20204 L:      netdev@vger.kernel.org
20205 S:      Maintained
20206 F:      Documentation/networking/vrf.rst
20207 F:      drivers/net/vrf.c
20208
20209 VSPRINTF
20210 M:      Petr Mladek <pmladek@suse.com>
20211 M:      Steven Rostedt <rostedt@goodmis.org>
20212 M:      Sergey Senozhatsky <senozhatsky@chromium.org>
20213 R:      Andy Shevchenko <andriy.shevchenko@linux.intel.com>
20214 R:      Rasmus Villemoes <linux@rasmusvillemoes.dk>
20215 S:      Maintained
20216 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pmladek/printk.git
20217 F:      Documentation/core-api/printk-formats.rst
20218 F:      lib/test_printf.c
20219 F:      lib/test_scanf.c
20220 F:      lib/vsprintf.c
20221
20222 VT1211 HARDWARE MONITOR DRIVER
20223 M:      Juerg Haefliger <juergh@gmail.com>
20224 L:      linux-hwmon@vger.kernel.org
20225 S:      Maintained
20226 F:      Documentation/hwmon/vt1211.rst
20227 F:      drivers/hwmon/vt1211.c
20228
20229 VT8231 HARDWARE MONITOR DRIVER
20230 M:      Roger Lucas <vt8231@hiddenengine.co.uk>
20231 L:      linux-hwmon@vger.kernel.org
20232 S:      Maintained
20233 F:      drivers/hwmon/vt8231.c
20234
20235 VUB300 USB to SDIO/SD/MMC bridge chip
20236 L:      linux-mmc@vger.kernel.org
20237 S:      Orphan
20238 F:      drivers/mmc/host/vub300.c
20239
20240 W1 DALLAS'S 1-WIRE BUS
20241 M:      Evgeniy Polyakov <zbr@ioremap.net>
20242 S:      Maintained
20243 F:      Documentation/devicetree/bindings/w1/
20244 F:      Documentation/w1/
20245 F:      drivers/w1/
20246 F:      include/linux/w1.h
20247
20248 W83791D HARDWARE MONITORING DRIVER
20249 M:      Marc Hulsman <m.hulsman@tudelft.nl>
20250 L:      linux-hwmon@vger.kernel.org
20251 S:      Maintained
20252 F:      Documentation/hwmon/w83791d.rst
20253 F:      drivers/hwmon/w83791d.c
20254
20255 W83793 HARDWARE MONITORING DRIVER
20256 M:      Rudolf Marek <r.marek@assembler.cz>
20257 L:      linux-hwmon@vger.kernel.org
20258 S:      Maintained
20259 F:      Documentation/hwmon/w83793.rst
20260 F:      drivers/hwmon/w83793.c
20261
20262 W83795 HARDWARE MONITORING DRIVER
20263 M:      Jean Delvare <jdelvare@suse.com>
20264 L:      linux-hwmon@vger.kernel.org
20265 S:      Maintained
20266 F:      drivers/hwmon/w83795.c
20267
20268 W83L51xD SD/MMC CARD INTERFACE DRIVER
20269 M:      Pierre Ossman <pierre@ossman.eu>
20270 S:      Maintained
20271 F:      drivers/mmc/host/wbsd.*
20272
20273 WACOM PROTOCOL 4 SERIAL TABLETS
20274 M:      Julian Squires <julian@cipht.net>
20275 M:      Hans de Goede <hdegoede@redhat.com>
20276 L:      linux-input@vger.kernel.org
20277 S:      Maintained
20278 F:      drivers/input/tablet/wacom_serial4.c
20279
20280 WATCHDOG DEVICE DRIVERS
20281 M:      Wim Van Sebroeck <wim@linux-watchdog.org>
20282 M:      Guenter Roeck <linux@roeck-us.net>
20283 L:      linux-watchdog@vger.kernel.org
20284 S:      Maintained
20285 W:      http://www.linux-watchdog.org/
20286 T:      git git://www.linux-watchdog.org/linux-watchdog.git
20287 F:      Documentation/devicetree/bindings/watchdog/
20288 F:      Documentation/watchdog/
20289 F:      drivers/watchdog/
20290 F:      include/linux/watchdog.h
20291 F:      include/uapi/linux/watchdog.h
20292
20293 WHISKEYCOVE PMIC GPIO DRIVER
20294 M:      Kuppuswamy Sathyanarayanan <sathyanarayanan.kuppuswamy@linux.intel.com>
20295 L:      linux-gpio@vger.kernel.org
20296 S:      Maintained
20297 F:      drivers/gpio/gpio-wcove.c
20298
20299 WHWAVE RTC DRIVER
20300 M:      Dianlong Li <long17.cool@163.com>
20301 L:      linux-rtc@vger.kernel.org
20302 S:      Maintained
20303 F:      drivers/rtc/rtc-sd3078.c
20304
20305 WIIMOTE HID DRIVER
20306 M:      David Rheinsberg <david.rheinsberg@gmail.com>
20307 L:      linux-input@vger.kernel.org
20308 S:      Maintained
20309 F:      drivers/hid/hid-wiimote*
20310
20311 WILOCITY WIL6210 WIRELESS DRIVER
20312 M:      Maya Erez <merez@codeaurora.org>
20313 L:      linux-wireless@vger.kernel.org
20314 L:      wil6210@qti.qualcomm.com
20315 S:      Supported
20316 W:      https://wireless.wiki.kernel.org/en/users/Drivers/wil6210
20317 F:      drivers/net/wireless/ath/wil6210/
20318
20319 WINBOND CIR DRIVER
20320 M:      David Härdeman <david@hardeman.nu>
20321 S:      Maintained
20322 F:      drivers/media/rc/winbond-cir.c
20323
20324 WINSYSTEMS EBC-C384 WATCHDOG DRIVER
20325 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
20326 L:      linux-watchdog@vger.kernel.org
20327 S:      Maintained
20328 F:      drivers/watchdog/ebc-c384_wdt.c
20329
20330 WINSYSTEMS WS16C48 GPIO DRIVER
20331 M:      William Breathitt Gray <vilhelm.gray@gmail.com>
20332 L:      linux-gpio@vger.kernel.org
20333 S:      Maintained
20334 F:      drivers/gpio/gpio-ws16c48.c
20335
20336 WIREGUARD SECURE NETWORK TUNNEL
20337 M:      Jason A. Donenfeld <Jason@zx2c4.com>
20338 L:      wireguard@lists.zx2c4.com
20339 L:      netdev@vger.kernel.org
20340 S:      Maintained
20341 F:      drivers/net/wireguard/
20342 F:      tools/testing/selftests/wireguard/
20343
20344 WISTRON LAPTOP BUTTON DRIVER
20345 M:      Miloslav Trmac <mitr@volny.cz>
20346 S:      Maintained
20347 F:      drivers/input/misc/wistron_btns.c
20348
20349 WL3501 WIRELESS PCMCIA CARD DRIVER
20350 L:      linux-wireless@vger.kernel.org
20351 S:      Odd fixes
20352 F:      drivers/net/wireless/wl3501*
20353
20354 WOLFSON MICROELECTRONICS DRIVERS
20355 L:      patches@opensource.cirrus.com
20356 S:      Supported
20357 W:      https://github.com/CirrusLogic/linux-drivers/wiki
20358 T:      git https://github.com/CirrusLogic/linux-drivers.git
20359 F:      Documentation/devicetree/bindings/extcon/wlf,arizona.yaml
20360 F:      Documentation/devicetree/bindings/mfd/wlf,arizona.yaml
20361 F:      Documentation/devicetree/bindings/mfd/wm831x.txt
20362 F:      Documentation/devicetree/bindings/regulator/wlf,arizona.yaml
20363 F:      Documentation/devicetree/bindings/sound/wlf,*.yaml
20364 F:      Documentation/devicetree/bindings/sound/wm*
20365 F:      Documentation/hwmon/wm83??.rst
20366 F:      arch/arm/mach-s3c/mach-crag6410*
20367 F:      drivers/clk/clk-wm83*.c
20368 F:      drivers/gpio/gpio-*wm*.c
20369 F:      drivers/gpio/gpio-arizona.c
20370 F:      drivers/hwmon/wm83??-hwmon.c
20371 F:      drivers/input/misc/wm831x-on.c
20372 F:      drivers/input/touchscreen/wm831x-ts.c
20373 F:      drivers/input/touchscreen/wm97*.c
20374 F:      drivers/leds/leds-wm83*.c
20375 F:      drivers/mfd/arizona*
20376 F:      drivers/mfd/cs47l24*
20377 F:      drivers/mfd/wm*.c
20378 F:      drivers/power/supply/wm83*.c
20379 F:      drivers/regulator/arizona*
20380 F:      drivers/regulator/wm8*.c
20381 F:      drivers/rtc/rtc-wm83*.c
20382 F:      drivers/video/backlight/wm83*_bl.c
20383 F:      drivers/watchdog/wm83*_wdt.c
20384 F:      include/linux/mfd/arizona/
20385 F:      include/linux/mfd/wm831x/
20386 F:      include/linux/mfd/wm8350/
20387 F:      include/linux/mfd/wm8400*
20388 F:      include/linux/regulator/arizona*
20389 F:      include/linux/wm97xx.h
20390 F:      include/sound/wm????.h
20391 F:      sound/soc/codecs/arizona*
20392 F:      sound/soc/codecs/cs47l24*
20393 F:      sound/soc/codecs/wm*
20394
20395 WORKQUEUE
20396 M:      Tejun Heo <tj@kernel.org>
20397 R:      Lai Jiangshan <jiangshanlai@gmail.com>
20398 S:      Maintained
20399 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tj/wq.git
20400 F:      Documentation/core-api/workqueue.rst
20401 F:      include/linux/workqueue.h
20402 F:      kernel/workqueue.c
20403
20404 WWAN DRIVERS
20405 M:      Loic Poulain <loic.poulain@linaro.org>
20406 M:      Sergey Ryazanov <ryazanov.s.a@gmail.com>
20407 R:      Johannes Berg <johannes@sipsolutions.net>
20408 L:      netdev@vger.kernel.org
20409 S:      Maintained
20410 F:      drivers/net/wwan/
20411 F:      include/linux/wwan.h
20412 F:      include/uapi/linux/wwan.h
20413
20414 X-POWERS AXP288 PMIC DRIVERS
20415 M:      Hans de Goede <hdegoede@redhat.com>
20416 S:      Maintained
20417 F:      drivers/acpi/pmic/intel_pmic_xpower.c
20418 N:      axp288
20419
20420 X-POWERS MULTIFUNCTION PMIC DEVICE DRIVERS
20421 M:      Chen-Yu Tsai <wens@csie.org>
20422 L:      linux-kernel@vger.kernel.org
20423 S:      Maintained
20424 N:      axp[128]
20425
20426 X.25 STACK
20427 M:      Martin Schiller <ms@dev.tdt.de>
20428 L:      linux-x25@vger.kernel.org
20429 S:      Maintained
20430 F:      Documentation/networking/lapb-module.rst
20431 F:      Documentation/networking/x25*
20432 F:      drivers/net/wan/hdlc_x25.c
20433 F:      drivers/net/wan/lapbether.c
20434 F:      include/*/lapb.h
20435 F:      include/net/x25*
20436 F:      include/uapi/linux/x25.h
20437 F:      net/lapb/
20438 F:      net/x25/
20439
20440 X86 ARCHITECTURE (32-BIT AND 64-BIT)
20441 M:      Thomas Gleixner <tglx@linutronix.de>
20442 M:      Ingo Molnar <mingo@redhat.com>
20443 M:      Borislav Petkov <bp@alien8.de>
20444 M:      Dave Hansen <dave.hansen@linux.intel.com>
20445 M:      x86@kernel.org
20446 R:      "H. Peter Anvin" <hpa@zytor.com>
20447 L:      linux-kernel@vger.kernel.org
20448 S:      Maintained
20449 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
20450 F:      Documentation/devicetree/bindings/x86/
20451 F:      Documentation/x86/
20452 F:      arch/x86/
20453
20454 X86 ENTRY CODE
20455 M:      Andy Lutomirski <luto@kernel.org>
20456 L:      linux-kernel@vger.kernel.org
20457 S:      Maintained
20458 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/asm
20459 F:      arch/x86/entry/
20460
20461 X86 MCE INFRASTRUCTURE
20462 M:      Tony Luck <tony.luck@intel.com>
20463 M:      Borislav Petkov <bp@alien8.de>
20464 L:      linux-edac@vger.kernel.org
20465 S:      Maintained
20466 F:      arch/x86/kernel/cpu/mce/*
20467
20468 X86 MICROCODE UPDATE SUPPORT
20469 M:      Borislav Petkov <bp@alien8.de>
20470 S:      Maintained
20471 F:      arch/x86/kernel/cpu/microcode/*
20472
20473 X86 MM
20474 M:      Dave Hansen <dave.hansen@linux.intel.com>
20475 M:      Andy Lutomirski <luto@kernel.org>
20476 M:      Peter Zijlstra <peterz@infradead.org>
20477 L:      linux-kernel@vger.kernel.org
20478 S:      Maintained
20479 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/mm
20480 F:      arch/x86/mm/
20481
20482 X86 PLATFORM DRIVERS
20483 M:      Hans de Goede <hdegoede@redhat.com>
20484 M:      Mark Gross <mgross@linux.intel.com>
20485 L:      platform-driver-x86@vger.kernel.org
20486 S:      Maintained
20487 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/pdx86/platform-drivers-x86.git
20488 F:      drivers/platform/olpc/
20489 F:      drivers/platform/x86/
20490
20491 X86 PLATFORM DRIVERS - ARCH
20492 R:      Darren Hart <dvhart@infradead.org>
20493 R:      Andy Shevchenko <andy@infradead.org>
20494 L:      platform-driver-x86@vger.kernel.org
20495 L:      x86@kernel.org
20496 S:      Maintained
20497 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/core
20498 F:      arch/x86/platform
20499
20500 X86 PLATFORM UV HPE SUPERDOME FLEX
20501 M:      Steve Wahl <steve.wahl@hpe.com>
20502 R:      Mike Travis <mike.travis@hpe.com>
20503 R:      Dimitri Sivanich <dimitri.sivanich@hpe.com>
20504 R:      Russ Anderson <russ.anderson@hpe.com>
20505 S:      Supported
20506 F:      arch/x86/include/asm/uv/
20507 F:      arch/x86/kernel/apic/x2apic_uv_x.c
20508 F:      arch/x86/platform/uv/
20509
20510 X86 VDSO
20511 M:      Andy Lutomirski <luto@kernel.org>
20512 L:      linux-kernel@vger.kernel.org
20513 S:      Maintained
20514 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git x86/vdso
20515 F:      arch/x86/entry/vdso/
20516
20517 XARRAY
20518 M:      Matthew Wilcox <willy@infradead.org>
20519 L:      linux-fsdevel@vger.kernel.org
20520 S:      Supported
20521 F:      Documentation/core-api/xarray.rst
20522 F:      include/linux/idr.h
20523 F:      include/linux/xarray.h
20524 F:      lib/idr.c
20525 F:      lib/xarray.c
20526 F:      tools/testing/radix-tree
20527
20528 XBOX DVD IR REMOTE
20529 M:      Benjamin Valentin <benpicco@googlemail.com>
20530 S:      Maintained
20531 F:      drivers/media/rc/keymaps/rc-xbox-dvd.c
20532 F:      drivers/media/rc/xbox_remote.c
20533
20534 XC2028/3028 TUNER DRIVER
20535 M:      Mauro Carvalho Chehab <mchehab@kernel.org>
20536 L:      linux-media@vger.kernel.org
20537 S:      Maintained
20538 W:      https://linuxtv.org
20539 T:      git git://linuxtv.org/media_tree.git
20540 F:      drivers/media/tuners/tuner-xc2028.*
20541
20542 XDP (eXpress Data Path)
20543 M:      Alexei Starovoitov <ast@kernel.org>
20544 M:      Daniel Borkmann <daniel@iogearbox.net>
20545 M:      David S. Miller <davem@davemloft.net>
20546 M:      Jakub Kicinski <kuba@kernel.org>
20547 M:      Jesper Dangaard Brouer <hawk@kernel.org>
20548 M:      John Fastabend <john.fastabend@gmail.com>
20549 L:      netdev@vger.kernel.org
20550 L:      bpf@vger.kernel.org
20551 S:      Supported
20552 F:      include/net/xdp.h
20553 F:      include/net/xdp_priv.h
20554 F:      include/trace/events/xdp.h
20555 F:      kernel/bpf/cpumap.c
20556 F:      kernel/bpf/devmap.c
20557 F:      net/core/xdp.c
20558 F:      samples/bpf/xdp*
20559 F:      tools/testing/selftests/bpf/*xdp*
20560 F:      tools/testing/selftests/bpf/*/*xdp*
20561 F:      drivers/net/ethernet/*/*/*/*/*xdp*
20562 F:      drivers/net/ethernet/*/*/*xdp*
20563 K:      (?:\b|_)xdp(?:\b|_)
20564
20565 XDP SOCKETS (AF_XDP)
20566 M:      Björn Töpel <bjorn@kernel.org>
20567 M:      Magnus Karlsson <magnus.karlsson@intel.com>
20568 R:      Jonathan Lemon <jonathan.lemon@gmail.com>
20569 L:      netdev@vger.kernel.org
20570 L:      bpf@vger.kernel.org
20571 S:      Maintained
20572 F:      Documentation/networking/af_xdp.rst
20573 F:      include/net/xdp_sock*
20574 F:      include/net/xsk_buff_pool.h
20575 F:      include/uapi/linux/if_xdp.h
20576 F:      include/uapi/linux/xdp_diag.h
20577 F:      include/net/netns/xdp.h
20578 F:      net/xdp/
20579 F:      samples/bpf/xdpsock*
20580 F:      tools/lib/bpf/xsk*
20581
20582 XEN BLOCK SUBSYSTEM
20583 M:      Roger Pau Monné <roger.pau@citrix.com>
20584 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
20585 S:      Supported
20586 F:      drivers/block/xen*
20587 F:      drivers/block/xen-blkback/*
20588
20589 XEN HYPERVISOR ARM
20590 M:      Stefano Stabellini <sstabellini@kernel.org>
20591 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
20592 S:      Maintained
20593 F:      arch/arm/include/asm/xen/
20594 F:      arch/arm/xen/
20595
20596 XEN HYPERVISOR ARM64
20597 M:      Stefano Stabellini <sstabellini@kernel.org>
20598 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
20599 S:      Maintained
20600 F:      arch/arm64/include/asm/xen/
20601 F:      arch/arm64/xen/
20602
20603 XEN HYPERVISOR INTERFACE
20604 M:      Boris Ostrovsky <boris.ostrovsky@oracle.com>
20605 M:      Juergen Gross <jgross@suse.com>
20606 R:      Stefano Stabellini <sstabellini@kernel.org>
20607 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
20608 S:      Supported
20609 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/xen/tip.git
20610 F:      Documentation/ABI/stable/sysfs-hypervisor-xen
20611 F:      Documentation/ABI/testing/sysfs-hypervisor-xen
20612 F:      arch/x86/include/asm/pvclock-abi.h
20613 F:      arch/x86/include/asm/xen/
20614 F:      arch/x86/platform/pvh/
20615 F:      arch/x86/xen/
20616 F:      drivers/*/xen-*front.c
20617 F:      drivers/xen/
20618 F:      include/uapi/xen/
20619 F:      include/xen/
20620
20621 XEN NETWORK BACKEND DRIVER
20622 M:      Wei Liu <wei.liu@kernel.org>
20623 M:      Paul Durrant <paul@xen.org>
20624 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
20625 L:      netdev@vger.kernel.org
20626 S:      Supported
20627 F:      drivers/net/xen-netback/*
20628
20629 XEN PCI SUBSYSTEM
20630 M:      Juergen Gross <jgross@suse.com>
20631 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
20632 S:      Supported
20633 F:      arch/x86/pci/*xen*
20634 F:      drivers/pci/*xen*
20635
20636 XEN PVSCSI DRIVERS
20637 M:      Juergen Gross <jgross@suse.com>
20638 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
20639 L:      linux-scsi@vger.kernel.org
20640 S:      Supported
20641 F:      drivers/scsi/xen-scsifront.c
20642 F:      drivers/xen/xen-scsiback.c
20643 F:      include/xen/interface/io/vscsiif.h
20644
20645 XEN SOUND FRONTEND DRIVER
20646 M:      Oleksandr Andrushchenko <oleksandr_andrushchenko@epam.com>
20647 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
20648 L:      alsa-devel@alsa-project.org (moderated for non-subscribers)
20649 S:      Supported
20650 F:      sound/xen/*
20651
20652 XEN SWIOTLB SUBSYSTEM
20653 M:      Juergen Gross <jgross@suse.com>
20654 M:      Stefano Stabellini <sstabellini@kernel.org>
20655 L:      xen-devel@lists.xenproject.org (moderated for non-subscribers)
20656 L:      iommu@lists.linux-foundation.org
20657 L:      iommu@lists.linux.dev
20658 S:      Supported
20659 F:      arch/x86/xen/*swiotlb*
20660 F:      drivers/xen/*swiotlb*
20661
20662 XFS FILESYSTEM
20663 C:      irc://irc.oftc.net/xfs
20664 M:      Leah Rumancik <leah.rumancik@gmail.com>
20665 M:      Darrick J. Wong <djwong@kernel.org>
20666 M:      linux-xfs@vger.kernel.org
20667 L:      linux-xfs@vger.kernel.org
20668 S:      Supported
20669 W:      http://xfs.org/
20670 T:      git git://git.kernel.org/pub/scm/fs/xfs/xfs-linux.git
20671 F:      Documentation/ABI/testing/sysfs-fs-xfs
20672 F:      Documentation/admin-guide/xfs.rst
20673 F:      Documentation/filesystems/xfs-delayed-logging-design.rst
20674 F:      Documentation/filesystems/xfs-self-describing-metadata.rst
20675 F:      fs/xfs/
20676 F:      include/uapi/linux/dqblk_xfs.h
20677 F:      include/uapi/linux/fsmap.h
20678
20679 XILINX AXI ETHERNET DRIVER
20680 M:      Radhey Shyam Pandey <radhey.shyam.pandey@xilinx.com>
20681 S:      Maintained
20682 F:      drivers/net/ethernet/xilinx/xilinx_axienet*
20683
20684 XILINX CAN DRIVER
20685 M:      Appana Durga Kedareswara rao <appana.durga.rao@xilinx.com>
20686 R:      Naga Sureshkumar Relli <naga.sureshkumar.relli@xilinx.com>
20687 L:      linux-can@vger.kernel.org
20688 S:      Maintained
20689 F:      Documentation/devicetree/bindings/net/can/xilinx_can.txt
20690 F:      drivers/net/can/xilinx_can.c
20691
20692 XILINX GPIO DRIVER
20693 M:      Shubhrajyoti Datta <shubhrajyoti.datta@xilinx.com>
20694 R:      Srinivas Neeli <srinivas.neeli@xilinx.com>
20695 R:      Michal Simek <michal.simek@xilinx.com>
20696 S:      Maintained
20697 F:      Documentation/devicetree/bindings/gpio/gpio-xilinx.txt
20698 F:      Documentation/devicetree/bindings/gpio/gpio-zynq.yaml
20699 F:      drivers/gpio/gpio-xilinx.c
20700 F:      drivers/gpio/gpio-zynq.c
20701
20702 XILINX SD-FEC IP CORES
20703 M:      Derek Kiernan <derek.kiernan@xilinx.com>
20704 M:      Dragan Cvetic <dragan.cvetic@xilinx.com>
20705 S:      Maintained
20706 F:      Documentation/devicetree/bindings/misc/xlnx,sd-fec.txt
20707 F:      Documentation/misc-devices/xilinx_sdfec.rst
20708 F:      drivers/misc/Kconfig
20709 F:      drivers/misc/Makefile
20710 F:      drivers/misc/xilinx_sdfec.c
20711 F:      include/uapi/misc/xilinx_sdfec.h
20712
20713 XILINX UARTLITE SERIAL DRIVER
20714 M:      Peter Korsgaard <jacmet@sunsite.dk>
20715 L:      linux-serial@vger.kernel.org
20716 S:      Maintained
20717 F:      drivers/tty/serial/uartlite.c
20718
20719 XILINX VIDEO IP CORES
20720 M:      Hyun Kwon <hyun.kwon@xilinx.com>
20721 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
20722 L:      linux-media@vger.kernel.org
20723 S:      Supported
20724 T:      git git://linuxtv.org/media_tree.git
20725 F:      Documentation/devicetree/bindings/media/xilinx/
20726 F:      drivers/media/platform/xilinx/
20727 F:      include/uapi/linux/xilinx-v4l2-controls.h
20728
20729 XILINX ZYNQMP DPDMA DRIVER
20730 M:      Hyun Kwon <hyun.kwon@xilinx.com>
20731 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
20732 L:      dmaengine@vger.kernel.org
20733 S:      Supported
20734 F:      Documentation/devicetree/bindings/dma/xilinx/xlnx,zynqmp-dpdma.yaml
20735 F:      drivers/dma/xilinx/xilinx_dpdma.c
20736 F:      include/dt-bindings/dma/xlnx-zynqmp-dpdma.h
20737
20738 XILINX ZYNQMP PSGTR PHY DRIVER
20739 M:      Anurag Kumar Vulisha <anurag.kumar.vulisha@xilinx.com>
20740 M:      Laurent Pinchart <laurent.pinchart@ideasonboard.com>
20741 L:      linux-kernel@vger.kernel.org
20742 S:      Supported
20743 T:      git https://github.com/Xilinx/linux-xlnx.git
20744 F:      Documentation/devicetree/bindings/phy/xlnx,zynqmp-psgtr.yaml
20745 F:      drivers/phy/xilinx/phy-zynqmp.c
20746
20747 XILLYBUS DRIVER
20748 M:      Eli Billauer <eli.billauer@gmail.com>
20749 L:      linux-kernel@vger.kernel.org
20750 S:      Supported
20751 F:      drivers/char/xillybus/
20752
20753 XLP9XX I2C DRIVER
20754 M:      George Cherian <gcherian@marvell.com>
20755 L:      linux-i2c@vger.kernel.org
20756 S:      Supported
20757 W:      http://www.marvell.com
20758 F:      Documentation/devicetree/bindings/i2c/i2c-xlp9xx.txt
20759 F:      drivers/i2c/busses/i2c-xlp9xx.c
20760
20761 XRA1403 GPIO EXPANDER
20762 M:      Nandor Han <nandor.han@ge.com>
20763 M:      Semi Malinen <semi.malinen@ge.com>
20764 L:      linux-gpio@vger.kernel.org
20765 S:      Maintained
20766 F:      Documentation/devicetree/bindings/gpio/gpio-xra1403.txt
20767 F:      drivers/gpio/gpio-xra1403.c
20768
20769 XTENSA XTFPGA PLATFORM SUPPORT
20770 M:      Max Filippov <jcmvbkbc@gmail.com>
20771 L:      linux-xtensa@linux-xtensa.org
20772 S:      Maintained
20773 F:      drivers/spi/spi-xtensa-xtfpga.c
20774 F:      sound/soc/xtensa/xtfpga-i2s.c
20775
20776 YAM DRIVER FOR AX.25
20777 M:      Jean-Paul Roubelat <jpr@f6fbb.org>
20778 L:      linux-hams@vger.kernel.org
20779 S:      Maintained
20780 F:      drivers/net/hamradio/yam*
20781 F:      include/linux/yam.h
20782
20783 YAMA SECURITY MODULE
20784 M:      Kees Cook <keescook@chromium.org>
20785 S:      Supported
20786 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux.git yama/tip
20787 F:      Documentation/admin-guide/LSM/Yama.rst
20788 F:      security/yama/
20789
20790 YEALINK PHONE DRIVER
20791 M:      Henk Vergonet <Henk.Vergonet@gmail.com>
20792 L:      usbb2k-api-dev@nongnu.org
20793 S:      Maintained
20794 F:      Documentation/input/devices/yealink.rst
20795 F:      drivers/input/misc/yealink.*
20796
20797 Z8530 DRIVER FOR AX.25
20798 M:      Joerg Reuter <jreuter@yaina.de>
20799 L:      linux-hams@vger.kernel.org
20800 S:      Maintained
20801 W:      http://yaina.de/jreuter/
20802 W:      http://www.qsl.net/dl1bke/
20803 F:      Documentation/networking/device_drivers/hamradio/z8530drv.rst
20804 F:      drivers/net/hamradio/*scc.c
20805 F:      drivers/net/hamradio/z8530.h
20806
20807 ZBUD COMPRESSED PAGE ALLOCATOR
20808 M:      Seth Jennings <sjenning@redhat.com>
20809 M:      Dan Streetman <ddstreet@ieee.org>
20810 L:      linux-mm@kvack.org
20811 S:      Maintained
20812 F:      mm/zbud.c
20813
20814 ZD1211RW WIRELESS DRIVER
20815 M:      Ulrich Kunitz <kune@deine-taler.de>
20816 L:      linux-wireless@vger.kernel.org
20817 L:      zd1211-devs@lists.sourceforge.net (subscribers-only)
20818 S:      Maintained
20819 W:      http://zd1211.ath.cx/wiki/DriverRewrite
20820 F:      drivers/net/wireless/zydas/zd1211rw/
20821
20822 ZD1301 MEDIA DRIVER
20823 M:      Antti Palosaari <crope@iki.fi>
20824 L:      linux-media@vger.kernel.org
20825 S:      Maintained
20826 W:      https://linuxtv.org/
20827 W:      http://palosaari.fi/linux/
20828 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
20829 F:      drivers/media/usb/dvb-usb-v2/zd1301*
20830
20831 ZD1301_DEMOD MEDIA DRIVER
20832 M:      Antti Palosaari <crope@iki.fi>
20833 L:      linux-media@vger.kernel.org
20834 S:      Maintained
20835 W:      https://linuxtv.org/
20836 W:      http://palosaari.fi/linux/
20837 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
20838 F:      drivers/media/dvb-frontends/zd1301_demod*
20839
20840 ZHAOXIN PROCESSOR SUPPORT
20841 M:      Tony W Wang-oc <TonyWWang-oc@zhaoxin.com>
20842 L:      linux-kernel@vger.kernel.org
20843 S:      Maintained
20844 F:      arch/x86/kernel/cpu/zhaoxin.c
20845
20846 ZONEFS FILESYSTEM
20847 M:      Damien Le Moal <damien.lemoal@wdc.com>
20848 M:      Naohiro Aota <naohiro.aota@wdc.com>
20849 R:      Johannes Thumshirn <jth@kernel.org>
20850 L:      linux-fsdevel@vger.kernel.org
20851 S:      Maintained
20852 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/dlemoal/zonefs.git
20853 F:      Documentation/filesystems/zonefs.rst
20854 F:      fs/zonefs/
20855
20856 ZPOOL COMPRESSED PAGE STORAGE API
20857 M:      Dan Streetman <ddstreet@ieee.org>
20858 L:      linux-mm@kvack.org
20859 S:      Maintained
20860 F:      include/linux/zpool.h
20861 F:      mm/zpool.c
20862
20863 ZR36067 VIDEO FOR LINUX DRIVER
20864 M:      Corentin Labbe <clabbe@baylibre.com>
20865 L:      mjpeg-users@lists.sourceforge.net
20866 L:      linux-media@vger.kernel.org
20867 S:      Maintained
20868 W:      http://mjpeg.sourceforge.net/driver-zoran/
20869 Q:      https://patchwork.linuxtv.org/project/linux-media/list/
20870 F:      Documentation/driver-api/media/drivers/zoran.rst
20871 F:      drivers/staging/media/zoran/
20872
20873 ZRAM COMPRESSED RAM BLOCK DEVICE DRVIER
20874 M:      Minchan Kim <minchan@kernel.org>
20875 M:      Nitin Gupta <ngupta@vflare.org>
20876 R:      Sergey Senozhatsky <senozhatsky@chromium.org>
20877 L:      linux-kernel@vger.kernel.org
20878 S:      Maintained
20879 F:      Documentation/admin-guide/blockdev/zram.rst
20880 F:      drivers/block/zram/
20881
20882 ZS DECSTATION Z85C30 SERIAL DRIVER
20883 M:      "Maciej W. Rozycki" <macro@orcam.me.uk>
20884 S:      Maintained
20885 F:      drivers/tty/serial/zs.*
20886
20887 ZSMALLOC COMPRESSED SLAB MEMORY ALLOCATOR
20888 M:      Minchan Kim <minchan@kernel.org>
20889 M:      Nitin Gupta <ngupta@vflare.org>
20890 R:      Sergey Senozhatsky <senozhatsky@chromium.org>
20891 L:      linux-mm@kvack.org
20892 S:      Maintained
20893 F:      Documentation/vm/zsmalloc.rst
20894 F:      include/linux/zsmalloc.h
20895 F:      mm/zsmalloc.c
20896
20897 ZSWAP COMPRESSED SWAP CACHING
20898 M:      Seth Jennings <sjenning@redhat.com>
20899 M:      Dan Streetman <ddstreet@ieee.org>
20900 M:      Vitaly Wool <vitaly.wool@konsulko.com>
20901 L:      linux-mm@kvack.org
20902 S:      Maintained
20903 F:      mm/zswap.c
20904
20905 THE REST
20906 M:      Linus Torvalds <torvalds@linux-foundation.org>
20907 L:      linux-kernel@vger.kernel.org
20908 S:      Buried alive in reporters
20909 Q:      http://patchwork.kernel.org/project/LKML/list/
20910 T:      git git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
20911 F:      *
20912 F:      */